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
|
load("//tools:defs.bzl", "go_library", "go_test")
load("//tools:deps.bzl", "deps_test")
load("//tools/go_generics:defs.bzl", "go_template_instance")
package(licenses = ["notice"])
go_template_instance(
name = "sock_err_list",
out = "sock_err_list.go",
package = "tcpip",
prefix = "sockError",
template = "//pkg/ilist:generic_list",
types = {
"Element": "*SockError",
"Linker": "*SockError",
},
)
go_library(
name = "tcpip",
srcs = [
"errors.go",
"sock_err_list.go",
"socketops.go",
"stdclock.go",
"stdclock_state.go",
"tcpip.go",
"tcpip_state.go",
"timer.go",
],
visibility = ["//visibility:public"],
deps = [
"//pkg/atomicbitops",
"//pkg/sync",
"//pkg/tcpip/buffer",
"//pkg/waiter",
],
)
deps_test(
name = "netstack_deps_test",
allowed = [
# gVisor deps.
"//pkg/atomicbitops",
"//pkg/buffer",
"//pkg/context",
"//pkg/gohacks",
"//pkg/goid",
"//pkg/ilist",
"//pkg/linewriter",
"//pkg/log",
"//pkg/rand",
"//pkg/sleep",
"//pkg/state",
"//pkg/state/wire",
"//pkg/sync",
"//pkg/waiter",
# Other deps.
"@com_github_google_btree//:go_default_library",
"@org_golang_x_sys//unix:go_default_library",
"@org_golang_x_time//rate:go_default_library",
],
allowed_prefixes = [
"//pkg/tcpip",
"@org_golang_x_sys//internal/unsafeheader",
],
targets = [
"//pkg/tcpip",
"//pkg/tcpip/header",
"//pkg/tcpip/link/fdbased",
"//pkg/tcpip/link/loopback",
"//pkg/tcpip/link/qdisc/fifo",
"//pkg/tcpip/link/sniffer",
"//pkg/tcpip/network/arp",
"//pkg/tcpip/network/ipv4",
"//pkg/tcpip/network/ipv6",
"//pkg/tcpip/stack",
"//pkg/tcpip/transport/icmp",
"//pkg/tcpip/transport/raw",
"//pkg/tcpip/transport/tcp",
"//pkg/tcpip/transport/udp",
],
)
go_test(
name = "tcpip_test",
size = "small",
srcs = ["tcpip_test.go"],
library = ":tcpip",
deps = ["@com_github_google_go_cmp//cmp:go_default_library"],
)
go_test(
name = "tcpip_x_test",
size = "small",
srcs = ["timer_test.go"],
deps = [":tcpip"],
)
|