summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem
AgeCommit message (Expand)Author
2020-01-19TmpFS: Grow the underlying inode buffer with 2x factor when written toAndreas Kling
2020-01-18Kernel: Move setting file flags and r/w mode to VFS::open()Sergey Bugaev
2020-01-18Kernel: Fix identifier casingSergey Bugaev
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-17Kernel: Misc tweaksSergey Bugaev
2020-01-17ProcFS: Implement symlink magicSergey Bugaev
2020-01-17Kernel: Let inodes provide pre-open file descriptionsSergey Bugaev
2020-01-17Kernel: Let symlinks resolve themselvesSergey Bugaev
2020-01-17Kernel: Simplify VFS::resolve_path() furtherSergey Bugaev
2020-01-15Kernel: Trying to sys$link() a directory should fail with EPERMAndreas Kling
2020-01-15Ext2FS: Assert that inline symlink read/write always uses offset=0Andreas Kling
2020-01-15Kernel: Avoid an extra call to read_bytes() in Inode::read_entire()Andreas Kling
2020-01-15Ext2FS: Don't allow creating new files in removed directoriesAndreas Kling
2020-01-15Kernel: Use Vector::unstable_remove() in a couple of placesAndreas Kling
2020-01-14Kernel: Refactor/rewrite VFS::resolve_path()Sergey Bugaev
2020-01-12Kernel: read() and write() should EOVERFLOW if (offset+size) overflowsAndreas Kling
2020-01-12Kernel: Add a basic lock to FileDescriptionAndreas Kling
2020-01-12Kernel: Don't forget to copy & destroy root_directory_for_procfsSergey Bugaev
2020-01-12Kernel+Base: Mount root as nodev,nosuidSergey Bugaev
2020-01-12Kernel: Properly propagate bind mount flagsSergey Bugaev
2020-01-12Kernel: Allow getting a Device from a FileDescriptionSergey Bugaev
2020-01-12Kernel: Put some VFS debug spam behind VFS_DEBUGAndreas Kling
2020-01-11ProcFS: Expose process pledge promises in /proc/allAndreas Kling
2020-01-11Kernel: Implement bind mountsSergey Bugaev
2020-01-11Kernel+LibC: Implement a few mount flagsSergey Bugaev
2020-01-11Kernel+LibC: Add O_EXEC, move exec permission checking to VFS::open()Sergey Bugaev
2020-01-11Kernel+LibC: Add support for mount flagsSergey Bugaev
2020-01-11Kernel: Simplify VFS::Mount handlingSergey Bugaev
2020-01-10Kernel: Expose a process's filesystem root as a /proc/PID/root symlinkAndreas Kling
2020-01-10Kernel: Add a basic chroot() syscall :^)Andreas Kling
2020-01-10Kernel: Custody::absolute_path() should always return "/" for rootsAndreas Kling
2020-01-10Kernel: unlink() should not follow symlinksAndreas Kling
2020-01-10TmpFS: Synthesize "." and ".." in traverse_as_directory()Andreas Kling
2020-01-10ProcFS: Don't expose kernel-only regions to users via /proc/PID/vmAndreas Kling
2020-01-08Kernel: Opening a file with O_TRUNC should update mtimeAndreas Kling
2020-01-08Kernel: ftruncate() should update mtimeAndreas Kling
2020-01-08ProcFS: Reads past the end of a generated file should be zero-lengthAndreas Kling
2020-01-08TmpFS: Reads past the end of a file should be zero-lengthAndreas Kling
2020-01-07Kernel: Take const Process& in InodeMetadata::may_{read,write,execute}Andreas Kling
2020-01-07Kernel: Make Process::file_description() vend a RefPtr<FileDescription>Andreas Kling
2020-01-07TmpFS: Add ASSERT(offset >= 0) to read_bytes() and write_bytes()Andreas Kling
2020-01-07TmpFS: Add "." and ".." entries to all directoriesAndreas Kling
2020-01-07Kernel: Don't leak kmalloc pointers through FIFO absolute pathsAndreas Kling
2020-01-05Kernel: Start implementing x86 SMAP supportAndreas Kling
2020-01-04Kernel: Entries in /dev/pts should be accessible only to the ownerAndreas Kling
2020-01-04Kernel: File::open() should apply r/w mode from the provided optionsAndreas Kling
2020-01-04Kernel: The root inode of a TmpFS should have the sticky bit setAndreas Kling
2020-01-03Kernel: Allow fchmod() and fchown() on pre-bind() local socketsAndreas Kling
2020-01-03Kernel: Allow passing initial UID and GID when creating new inodesAndreas Kling
2020-01-03Ext2FS: Take the inode lock in Ext2FSInode::metadata()Andreas Kling