summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/vfs
AgeCommit message (Expand)Author
2020-06-18Fix vfs2 tmpfs link permission checks.Dean Deng
2020-06-18Remove various uses of 'whitelist'Michael Pratt
2020-06-17Implement POSIX locksFabricio Voznika
2020-06-11Add //pkg/sentry/fsimpl/overlay.Jamie Liu
2020-06-09Implement flock(2) in VFS2Fabricio Voznika
2020-06-05Implement mount(2) and umount2(2) for VFS2.Rahat Mahmood
2020-06-03Take Mount reference in VFS.connectLocked.Jamie Liu
2020-05-29Update Go version build tagsMichael Pratt
2020-05-29Implement IN_EXCL_UNLINK inotify option in vfs2.Dean Deng
2020-05-29Port inotify to vfs2, with support in tmpfs.Dean Deng
2020-05-28Split VFS.MountAt into VFS.MountDisconnected and VFS.ConnectMountAt.Jamie Liu
2020-05-26Implement splice(2) and tee(2) for VFS2.Jamie Liu
2020-05-07Allocate device numbers for VFS2 filesystems.Jamie Liu
2020-05-07Move pkg/sentry/vfs/{eventfd,timerfd} to new packages in pkg/sentry/fsimpl.Nicolas Lacasse
2020-05-07Port signalfd to vfs2.Nicolas Lacasse
2020-05-07Remove outdated TODO for VFS2 AccessAt.Dean Deng
2020-05-06Remove vfs.FileDescriptionOptions.InvalidWrite.Jamie Liu
2020-05-04Port eventfd to VFS2.Nicolas Lacasse
2020-05-04Add TTY support on VFS2 to runscFabricio Voznika
2020-04-28Fix Unix socket permissions.Dean Deng
2020-04-28Support pipes and sockets in VFS2 gofer fs.Dean Deng
2020-04-24Fixes for procfsFabricio Voznika
2020-04-23Add vfs.MkdirOptions.ForSyntheticMountpoint.Jamie Liu
2020-04-21Misc VFS2 fixesFabricio Voznika
2020-04-21Remove filesystem structure from vfs.Dentry.Jamie Liu
2020-04-16Implement pipe(2) and pipe2(2) for VFS2.Jamie Liu
2020-04-14Pass O_LARGEFILE in syscalls/linux/vfs2.openat.Jamie Liu
2020-04-10Port extended attributes to VFS2.Dean Deng
2020-04-08Clean up TODOsFabricio Voznika
2020-04-06Port timerfd to VFS2.Nicolas Lacasse
2020-04-04Record VFS2 sockets in global socket map.Dean Deng
2020-04-03Add FileDescriptionImpl for Unix sockets.Dean Deng
2020-04-02Fix typo in TODO comments.Dean Deng
2020-04-02Add equivalents to FMODE_PREAD/PWRITE to VFS2.Jamie Liu
2020-03-31Fix /proc/self/mounts and /proc/self/mountinfo in VFS2.Nicolas Lacasse
2020-03-27Add vfs.PathnameReachable().Jamie Liu
2020-03-27Add FilesystemType.Name method, and FilesystemType field to Filesystem struct.Nicolas Lacasse
2020-03-26Add BoundEndpointAt filesystem operation.Dean Deng
2020-03-26Add unique ID to Mount type.Nicolas Lacasse
2020-03-26Combine file mode and isDir argumentsFabricio Voznika
2020-03-25Remove TODO to push down exec permission checkFabricio Voznika
2020-03-25Misc fixes to make stat_test pass (almost)Fabricio Voznika
2020-03-16Enforce file size rlimits in VFS2Fabricio Voznika
2020-03-16Add calls to vfs.CheckSetStat to fsimplsFabricio Voznika
2020-03-13Implement access/faccessat for VFS2.Dean Deng
2020-03-13Add support for mount flagsFabricio Voznika
2020-03-06Add plumbing for importing fds in VFS2, along with non-socket, non-TTY impl.Dean Deng
2020-02-25Add VFS.NewDisconnectedMount().Jamie Liu
2020-02-25Port most syscalls to VFS2.Jamie Liu
2020-02-14Remove linux.EpollEvent.Fd.gVisor bot