summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem
AgeCommit message (Expand)Author
2020-01-28Kernel: Tweak some include statementsAndreas Kling
2020-01-27Kernel+LibC+Userland: Switch to 64-bit time_tAndreas Kling
2020-01-26Ext2FS: Give names to some KBuffersAndreas Kling
2020-01-26Ext2FS: allocate_blocks allocates contiguous blocks (#1095)Marios Prokopakis
2020-01-25Ext2FS: Use more dbg() in Ext2FS codeAndreas Kling
2020-01-25Meta: Remove some copyright headers added in errorAndreas Kling
2020-01-24Meta: Claim copyright for files created by meSergey Bugaev
2020-01-21Kernel: Rename UnveilState to VeilStateAndreas Kling
2020-01-21SystemMonitor: Show process unveil() state as "Veil"Andreas Kling
2020-01-21Kernel: Tidy up debug logging a little bitAndreas Kling
2020-01-21Kernel+LibC: Clean up open() flag (O_*) definitionsAndreas Kling
2020-01-21Kernel: Make O_RDONLY non-zeroAndreas Kling
2020-01-20ProcFS: Add /proc/PID/unveilAndreas Kling
2020-01-20Kernel: Add a basic implementation of unveil()Andreas Kling
2020-01-20Kernel: Make DoubleBuffer use a KBuffer instead of kmalloc()ingAndreas Kling
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