summaryrefslogtreecommitdiff
path: root/Kernel/FileSystem/ProcFS.h
AgeCommit message (Expand)Author
2021-05-05Kernel: Fix `write`s to `ProcFS` (#6879)Spencer Dixon
2021-05-04Kernel: Remove unused function ProcFS::add_sys_stringBrian Gianforcaro
2021-05-02Kernel: Change Inode::{read/write}_bytes interface to KResultOr<ssize_t>Brian Gianforcaro
2021-04-23AK: Rename adopt() to adopt_ref()Andreas Kling
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-02-28Kernel: Use default con/de-structorsBen Wiederhake
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-19ProcFS: Fix /proc/PID/* hardening bypassAndreas Kling
2021-02-12Kernel: Add distinct InodeIndex typeAndreas Kling
2021-01-20Kernel+LibC: Turn errno codes into a strongly typed enumAndreas Kling
2021-01-03Kernel: Improve ProcFS behavior in low memory conditionsTom
2020-12-18Kernel: Move KBufferBuilder to the fallible KBuffer APIAndreas Kling
2020-09-25Meta+Kernel: Make clang-format-10 cleanBen Wiederhake
2020-09-19Kernel: Simplify ProcFS callbacks by using function pointers directlyTom
2020-09-13Kernel: Make copy_to/from_user safe and remove unnecessary checksTom
2020-08-18Kernel: Add DirectoryEntryView for VFS directory traversalAndreas Kling
2020-08-05Kernel: Make Inode::directory_entry_count errors observable.Brian Gianforcaro
2020-06-25Kernel: Port mounts to reference inodes directlySergey Bugaev
2020-06-25Kernel: Deemphasize inode identifiersSergey Bugaev
2020-05-26Kernel: Plumb KResult through FileDescription::read_entire_file() implementat...Brian Gianforcaro
2020-05-26Kernel: Clang format file system in prep for changes.Brian Gianforcaro
2020-02-16Kernel: Add forward declaration headerAndreas Kling
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-02-08Kernel: Simplify FS::create_inode() a little bitAndreas Kling
2020-02-08Kernel: Simplify FS::create_directory() a little bitAndreas Kling
2020-02-01Kernel: Make Inode::lookup() return a RefPtr<Inode>Andreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-17ProcFS: Implement symlink magicSergey Bugaev
2020-01-03Kernel: Allow passing initial UID and GID when creating new inodesAndreas Kling
2019-12-31ProcFS: Reduce the amount of info accessible to non-superusersAndreas Kling
2019-08-17ProcFS: Do not assume there is one of itSergey Bugaev
2019-08-05Kernel: Use KBuffers for ProcFS and SynthFSAndreas Kling
2019-07-16Kernel: Remove use of [[gnu::pure]].Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-06-21AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.Andreas Kling
2019-06-09Kernel: Use StringView more in Inode and subclasses.Andreas Kling
2019-06-07Kernel: Rename FileDescriptor to FileDescription.Andreas Kling
2019-06-01FileSystem: Make Inode::lookup() take a StringView.Andreas Kling
2019-06-01FileSystem: Remove now-unused Inode::parent() and Inode::reverse_lookup().Andreas Kling
2019-05-31FileSystem: Pass mode_t to Inode::add_child().Andreas Kling
2019-05-28Add clang-format fileRobin Burchell
2019-05-16Kernel: Move Inode to its own files.Andreas Kling
2019-05-03Kernel+Userland: Implement mknod() syscall and add a /bin/mknod program.Andreas Kling
2019-04-23Do a pass of compiler warning fixes.Andreas Kling
2019-04-15Kernel: Make it possible to have kmalloc() dump call stacks.Andreas Kling
2019-04-03Kernel: Move FS-related files into Kernel/FileSystem/Andreas Kling