1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
load("//tools:defs.bzl", "go_library", "go_test", "most_shards")
load("//tools/go_generics:defs.bzl", "go_template_instance")
package(licenses = ["notice"])
go_template_instance(
name = "neighbor_entry_list",
out = "neighbor_entry_list.go",
package = "stack",
prefix = "neighborEntry",
template = "//pkg/ilist:generic_list",
types = {
"Element": "*neighborEntry",
"Linker": "*neighborEntry",
},
)
go_template_instance(
name = "packet_buffer_list",
out = "packet_buffer_list.go",
package = "stack",
prefix = "PacketBuffer",
template = "//pkg/ilist:generic_list",
types = {
"Element": "*PacketBuffer",
"Linker": "*PacketBuffer",
},
)
go_template_instance(
name = "tuple_list",
out = "tuple_list.go",
package = "stack",
prefix = "tuple",
template = "//pkg/ilist:generic_list",
types = {
"Element": "*tuple",
"Linker": "*tuple",
},
)
go_library(
name = "stack",
srcs = [
"addressable_endpoint_state.go",
"conntrack.go",
"headertype_string.go",
"hook_string.go",
"icmp_rate_limit.go",
"iptables.go",
"iptables_state.go",
"iptables_targets.go",
"iptables_types.go",
"neighbor_cache.go",
"neighbor_entry.go",
"neighbor_entry_list.go",
"neighborstate_string.go",
"nic.go",
"nic_stats.go",
"nud.go",
"packet_buffer.go",
"packet_buffer_list.go",
"packet_buffer_unsafe.go",
"pending_packets.go",
"rand.go",
"registration.go",
"route.go",
"stack.go",
"stack_global_state.go",
"stack_options.go",
"tcp.go",
"transport_demuxer.go",
"tuple_list.go",
],
visibility = ["//visibility:public"],
deps = [
"//pkg/atomicbitops",
"//pkg/buffer",
"//pkg/ilist",
"//pkg/log",
"//pkg/rand",
"//pkg/sleep",
"//pkg/sync",
"//pkg/tcpip",
"//pkg/tcpip/buffer",
"//pkg/tcpip/hash/jenkins",
"//pkg/tcpip/header",
"//pkg/tcpip/ports",
"//pkg/tcpip/seqnum",
"//pkg/tcpip/transport/tcpconntrack",
"//pkg/waiter",
"@org_golang_x_time//rate:go_default_library",
],
)
go_test(
name = "stack_x_test",
size = "medium",
srcs = [
"addressable_endpoint_state_test.go",
"ndp_test.go",
"nud_test.go",
"stack_test.go",
"transport_demuxer_test.go",
"transport_test.go",
],
shard_count = most_shards,
deps = [
":stack",
"//pkg/rand",
"//pkg/sync",
"//pkg/tcpip",
"//pkg/tcpip/buffer",
"//pkg/tcpip/checker",
"//pkg/tcpip/faketime",
"//pkg/tcpip/header",
"//pkg/tcpip/link/channel",
"//pkg/tcpip/link/loopback",
"//pkg/tcpip/network/arp",
"//pkg/tcpip/network/ipv4",
"//pkg/tcpip/network/ipv6",
"//pkg/tcpip/ports",
"//pkg/tcpip/testutil",
"//pkg/tcpip/transport/icmp",
"//pkg/tcpip/transport/udp",
"//pkg/waiter",
"@com_github_google_go_cmp//cmp:go_default_library",
],
)
go_test(
name = "stack_test",
size = "small",
srcs = [
"forwarding_test.go",
"neighbor_cache_test.go",
"neighbor_entry_test.go",
"nic_test.go",
"packet_buffer_test.go",
],
library = ":stack",
deps = [
"//pkg/sync",
"//pkg/tcpip",
"//pkg/tcpip/buffer",
"//pkg/tcpip/faketime",
"//pkg/tcpip/header",
"//pkg/tcpip/testutil",
"@com_github_google_go_cmp//cmp:go_default_library",
"@com_github_google_go_cmp//cmp/cmpopts:go_default_library",
],
)
|