diff options
author | Dean Deng <deandeng@google.com> | 2020-04-03 14:07:42 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-04-03 14:08:54 -0700 |
commit | 5818663ebe26857845685702d99db41c7aa2cf3d (patch) | |
tree | 36337a4b8c1cd0577f29dfacd0fcfdac84c85aee /pkg/sentry/fsimpl/sockfs/BUILD | |
parent | a94309628ebbc2e6c4997890f1b966fa7a16be20 (diff) |
Add FileDescriptionImpl for Unix sockets.
This change involves several steps:
- Refactor the VFS1 unix socket implementation to share methods between VFS1
and VFS2 where possible. Re-implement the rest.
- Override the default PRead, Read, PWrite, Write, Ioctl, Release methods in
FileDescriptionDefaultImpl.
- Add functions to create and initialize a new Dentry/Inode and FileDescription
for a Unix socket file.
Updates #1476
PiperOrigin-RevId: 304689796
Diffstat (limited to 'pkg/sentry/fsimpl/sockfs/BUILD')
-rw-r--r-- | pkg/sentry/fsimpl/sockfs/BUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/sentry/fsimpl/sockfs/BUILD b/pkg/sentry/fsimpl/sockfs/BUILD index 790d50e65..52084ddb5 100644 --- a/pkg/sentry/fsimpl/sockfs/BUILD +++ b/pkg/sentry/fsimpl/sockfs/BUILD @@ -7,6 +7,7 @@ go_library( srcs = ["sockfs.go"], visibility = ["//pkg/sentry:internal"], deps = [ + "//pkg/abi/linux", "//pkg/context", "//pkg/sentry/fsimpl/kernfs", "//pkg/sentry/kernel/auth", |