mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-21 01:31:55 +00:00
FileSystem: Route chown() and fchown() through VFS for access control.
This commit is contained in:
parent
aa35c08633
commit
e67bfdb7f6
Notes:
sideshowbarker
2024-07-19 13:47:12 +09:00
Author: https://github.com/awesomekling
Commit: e67bfdb7f6
3 changed files with 13 additions and 8 deletions
|
@ -70,6 +70,7 @@ public:
|
|||
KResult chmod(StringView path, mode_t, Custody& base);
|
||||
KResult fchmod(Inode&, mode_t);
|
||||
KResult chown(StringView path, uid_t, gid_t, Custody& base);
|
||||
KResult chown(Inode&, uid_t, gid_t);
|
||||
KResult access(StringView path, int mode, Custody& base);
|
||||
KResult stat(StringView path, int options, Custody& base, struct stat&);
|
||||
KResult utime(StringView path, Custody& base, time_t atime, time_t mtime);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue