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
153
|
package(licenses = ["notice"]) # Apache 2.0
load("//tools/go_generics:defs.bzl", "go_template_instance")
load("//tools/go_stateify:defs.bzl", "go_library", "go_stateify", "go_test")
go_stateify(
name = "fs_state",
srcs = [
"attr.go",
"dentry.go",
"dirent.go",
"dirent_cache.go",
"dirent_list.go",
"dirent_state.go",
"file.go",
"file_overlay.go",
"file_state.go",
"filesystems.go",
"flags.go",
"inode.go",
"inode_inotify.go",
"inode_operations.go",
"inode_overlay.go",
"inotify.go",
"inotify_event.go",
"inotify_watch.go",
"mock.go",
"mount.go",
"mount_overlay.go",
"mount_state.go",
"mounts.go",
"overlay.go",
"path.go",
],
out = "fs_state.go",
package = "fs",
)
go_library(
name = "fs",
srcs = [
"attr.go",
"context.go",
"copy_up.go",
"dentry.go",
"dirent.go",
"dirent_cache.go",
"dirent_list.go",
"dirent_state.go",
"file.go",
"file_operations.go",
"file_overlay.go",
"file_state.go",
"filesystems.go",
"flags.go",
"fs.go",
"fs_state.go",
"inode.go",
"inode_inotify.go",
"inode_operations.go",
"inode_overlay.go",
"inotify.go",
"inotify_event.go",
"inotify_watch.go",
"mock.go",
"mount.go",
"mount_overlay.go",
"mount_state.go",
"mounts.go",
"offset.go",
"overlay.go",
"path.go",
"restore.go",
"save.go",
"seek.go",
"sync.go",
],
importpath = "gvisor.googlesource.com/gvisor/pkg/sentry/fs",
visibility = ["//pkg/sentry:internal"],
deps = [
"//pkg/abi/linux",
"//pkg/amutex",
"//pkg/ilist",
"//pkg/log",
"//pkg/p9",
"//pkg/refs",
"//pkg/sentry/arch",
"//pkg/sentry/context",
"//pkg/sentry/device",
"//pkg/sentry/fs/lock",
"//pkg/sentry/kernel/auth",
"//pkg/sentry/kernel/time",
"//pkg/sentry/limits",
"//pkg/sentry/memmap",
"//pkg/sentry/platform",
"//pkg/sentry/uniqueid",
"//pkg/sentry/usage",
"//pkg/sentry/usermem",
"//pkg/state",
"//pkg/syserror",
"//pkg/tcpip",
"//pkg/tcpip/transport/unix",
"//pkg/waiter",
],
)
go_template_instance(
name = "dirent_list",
out = "dirent_list.go",
package = "fs",
prefix = "dirent",
template = "//pkg/ilist:generic_list",
types = {
"Linker": "*Dirent",
},
)
go_test(
name = "fs_x_test",
size = "small",
srcs = [
"copy_up_test.go",
"file_overlay_test.go",
"inode_overlay_test.go",
"mounts_test.go",
],
deps = [
":fs",
"//pkg/sentry/context",
"//pkg/sentry/context/contexttest",
"//pkg/sentry/fs/ramfs/test",
"//pkg/sentry/fs/tmpfs",
"//pkg/sentry/usermem",
"//pkg/syserror",
],
)
go_test(
name = "fs_test",
size = "small",
srcs = [
"dirent_cache_test.go",
"dirent_refs_test.go",
"file_test.go",
"mount_test.go",
"path_test.go",
],
embed = [":fs"],
deps = [
"//pkg/sentry/context",
"//pkg/sentry/context/contexttest",
],
)
|