Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
David Howells | 07f3f05 | 2006-09-30 20:52:18 +0200 | [diff] [blame] | 2 | /* fs/ internal definitions |
| 3 | * |
| 4 | * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved. |
| 5 | * Written by David Howells (dhowells@redhat.com) |
David Howells | 07f3f05 | 2006-09-30 20:52:18 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
Andrew Morton | 5e6d12b | 2006-08-31 12:55:23 +0200 | [diff] [blame] | 8 | struct super_block; |
Al Viro | 9d412a4 | 2011-03-17 22:08:28 -0400 | [diff] [blame] | 9 | struct file_system_type; |
Christoph Hellwig | ae259a9 | 2016-06-21 09:23:11 +1000 | [diff] [blame] | 10 | struct iomap; |
Christoph Hellwig | befb503 | 2016-09-19 11:24:49 +1000 | [diff] [blame] | 11 | struct iomap_ops; |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 12 | struct linux_binprm; |
Al Viro | 3e93cd6 | 2009-03-29 19:00:13 -0400 | [diff] [blame] | 13 | struct path; |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 14 | struct mount; |
Vladimir Davydov | 503c358 | 2015-02-12 14:58:47 -0800 | [diff] [blame] | 15 | struct shrink_control; |
David Howells | 9bc61ab | 2018-11-04 03:19:03 -0500 | [diff] [blame] | 16 | struct fs_context; |
Al Viro | b964bf5 | 2021-01-25 22:24:28 -0500 | [diff] [blame] | 17 | struct pipe_inode_info; |
Al Viro | 06bbaa6 | 2022-09-26 11:59:14 -0400 | [diff] [blame] | 18 | struct iov_iter; |
Christian Brauner | 3707d84 | 2023-01-13 12:49:33 +0100 | [diff] [blame] | 19 | struct mnt_idmap; |
Andrew Morton | 5e6d12b | 2006-08-31 12:55:23 +0200 | [diff] [blame] | 20 | |
David Howells | 07f3f05 | 2006-09-30 20:52:18 +0200 | [diff] [blame] | 21 | /* |
Christoph Hellwig | 0dca446 | 2021-09-07 16:13:03 +0200 | [diff] [blame] | 22 | * block/bdev.c |
David Howells | 07f3f05 | 2006-09-30 20:52:18 +0200 | [diff] [blame] | 23 | */ |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 24 | #ifdef CONFIG_BLOCK |
David Howells | 07f3f05 | 2006-09-30 20:52:18 +0200 | [diff] [blame] | 25 | extern void __init bdev_cache_init(void); |
Andrew Morton | 5e6d12b | 2006-08-31 12:55:23 +0200 | [diff] [blame] | 26 | #else |
| 27 | static inline void bdev_cache_init(void) |
| 28 | { |
| 29 | } |
Christoph Hellwig | 3f1266f | 2020-06-20 09:16:41 +0200 | [diff] [blame] | 30 | #endif /* CONFIG_BLOCK */ |
David Howells | 7b0de42d | 2006-08-29 19:06:07 +0100 | [diff] [blame] | 31 | |
David Howells | 07f3f05 | 2006-09-30 20:52:18 +0200 | [diff] [blame] | 32 | /* |
Akinobu Mita | 4db96b7 | 2014-10-09 15:26:55 -0700 | [diff] [blame] | 33 | * buffer.c |
| 34 | */ |
Matthew Wilcox (Oracle) | d1bd0b4 | 2021-11-03 14:05:47 -0400 | [diff] [blame] | 35 | int __block_write_begin_int(struct folio *folio, loff_t pos, unsigned len, |
Christoph Hellwig | 6d49cc8 | 2021-08-10 18:33:05 -0700 | [diff] [blame] | 36 | get_block_t *get_block, const struct iomap *iomap); |
Akinobu Mita | 4db96b7 | 2014-10-09 15:26:55 -0700 | [diff] [blame] | 37 | |
| 38 | /* |
David Howells | 07f3f05 | 2006-09-30 20:52:18 +0200 | [diff] [blame] | 39 | * char_dev.c |
| 40 | */ |
| 41 | extern void __init chrdev_init(void); |
| 42 | |
| 43 | /* |
David Howells | 9bc61ab | 2018-11-04 03:19:03 -0500 | [diff] [blame] | 44 | * fs_context.c |
| 45 | */ |
David Howells | ecdab150 | 2018-11-01 23:36:09 +0000 | [diff] [blame] | 46 | extern const struct fs_context_operations legacy_fs_context_ops; |
David Howells | 9bc61ab | 2018-11-04 03:19:03 -0500 | [diff] [blame] | 47 | extern int parse_monolithic_mount_data(struct fs_context *, void *); |
David Howells | ecdab150 | 2018-11-01 23:36:09 +0000 | [diff] [blame] | 48 | extern void vfs_clean_context(struct fs_context *fc); |
| 49 | extern int finish_clean_context(struct fs_context *fc); |
David Howells | 9bc61ab | 2018-11-04 03:19:03 -0500 | [diff] [blame] | 50 | |
| 51 | /* |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 52 | * namei.c |
| 53 | */ |
David Howells | 31d921c | 2018-11-01 23:07:24 +0000 | [diff] [blame] | 54 | extern int filename_lookup(int dfd, struct filename *name, unsigned flags, |
| 55 | struct path *path, struct path *root); |
Dmitry Kadashev | 45f30da | 2021-07-08 13:34:44 +0700 | [diff] [blame] | 56 | int do_rmdir(int dfd, struct filename *name); |
| 57 | int do_unlinkat(int dfd, struct filename *name); |
Christian Brauner | 4609e1f | 2023-01-13 12:49:22 +0100 | [diff] [blame] | 58 | int may_linkat(struct mnt_idmap *idmap, const struct path *link); |
Jens Axboe | e886663 | 2020-09-26 17:20:17 -0600 | [diff] [blame] | 59 | int do_renameat2(int olddfd, struct filename *oldname, int newdfd, |
| 60 | struct filename *newname, unsigned int flags); |
Dmitry Kadashev | 45f30da | 2021-07-08 13:34:44 +0700 | [diff] [blame] | 61 | int do_mkdirat(int dfd, struct filename *name, umode_t mode); |
Dmitry Kadashev | 7a8721f | 2021-07-08 13:34:46 +0700 | [diff] [blame] | 62 | int do_symlinkat(struct filename *from, int newdfd, struct filename *to); |
Dmitry Kadashev | cf30da9 | 2021-07-08 13:34:47 +0700 | [diff] [blame] | 63 | int do_linkat(int olddfd, struct filename *old, int newdfd, |
| 64 | struct filename *new, int flags); |
David Howells | 0bdaea9 | 2012-06-25 12:55:46 +0100 | [diff] [blame] | 65 | |
| 66 | /* |
David Howells | 07f3f05 | 2006-09-30 20:52:18 +0200 | [diff] [blame] | 67 | * namespace.c |
| 68 | */ |
Al Viro | ca71cf7 | 2016-11-20 19:45:28 -0500 | [diff] [blame] | 69 | extern struct vfsmount *lookup_mnt(const struct path *); |
Al Viro | 1e2d8464 | 2021-06-18 20:27:57 -0400 | [diff] [blame] | 70 | extern int finish_automount(struct vfsmount *, const struct path *); |
Al Viro | 6d59e7f | 2008-03-22 15:48:17 -0400 | [diff] [blame] | 71 | |
Miklos Szeredi | 4ed5e82f | 2011-11-21 12:11:31 +0100 | [diff] [blame] | 72 | extern int sb_prepare_remount_readonly(struct super_block *); |
Al Viro | f03c659 | 2011-01-14 22:30:21 -0500 | [diff] [blame] | 73 | |
Al Viro | 6d59e7f | 2008-03-22 15:48:17 -0400 | [diff] [blame] | 74 | extern void __init mnt_init(void); |
Al Viro | 3e93cd6 | 2009-03-29 19:00:13 -0400 | [diff] [blame] | 75 | |
Jan Kara | eb04c28 | 2012-06-12 16:20:35 +0200 | [diff] [blame] | 76 | extern int __mnt_want_write_file(struct file *); |
Jan Kara | eb04c28 | 2012-06-12 16:20:35 +0200 | [diff] [blame] | 77 | extern void __mnt_drop_write_file(struct file *); |
Al Viro | 47cd813f | 2010-02-05 02:01:14 -0500 | [diff] [blame] | 78 | |
Al Viro | a07b200 | 2018-11-05 17:40:30 +0000 | [diff] [blame] | 79 | extern void dissolve_on_fput(struct vfsmount *); |
Al Viro | a5f85d7 | 2022-03-01 00:05:29 -0500 | [diff] [blame] | 80 | extern bool may_mount(void); |
Christoph Hellwig | c60166f | 2020-07-21 11:12:08 +0200 | [diff] [blame] | 81 | |
| 82 | int path_mount(const char *dev_name, struct path *path, |
| 83 | const char *type_page, unsigned long flags, void *data_page); |
Christoph Hellwig | 09267de | 2020-07-23 08:23:08 +0200 | [diff] [blame] | 84 | int path_umount(struct path *path, int flags); |
Christoph Hellwig | c60166f | 2020-07-21 11:12:08 +0200 | [diff] [blame] | 85 | |
Al Viro | 3e93cd6 | 2009-03-29 19:00:13 -0400 | [diff] [blame] | 86 | /* |
| 87 | * fs_struct.c |
| 88 | */ |
Al Viro | dcf787f | 2013-03-01 23:51:07 -0500 | [diff] [blame] | 89 | extern void chroot_fs_refs(const struct path *, const struct path *); |
npiggin@suse.de | 864d7c4 | 2009-04-26 20:25:56 +1000 | [diff] [blame] | 90 | |
| 91 | /* |
| 92 | * file_table.c |
| 93 | */ |
Amir Goldstein | 62d53c4 | 2023-06-15 14:22:28 +0300 | [diff] [blame] | 94 | struct file *alloc_empty_file(int flags, const struct cred *cred); |
| 95 | struct file *alloc_empty_file_noaccount(int flags, const struct cred *cred); |
| 96 | struct file *alloc_empty_backing_file(int flags, const struct cred *cred); |
Al Viro | 62c6943 | 2009-05-07 03:12:29 -0400 | [diff] [blame] | 97 | |
Amir Goldstein | d6da19c | 2022-08-16 17:53:17 +0300 | [diff] [blame] | 98 | static inline void put_file_access(struct file *file) |
| 99 | { |
| 100 | if ((file->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ) { |
| 101 | i_readcount_dec(file->f_inode); |
| 102 | } else if (file->f_mode & FMODE_WRITER) { |
| 103 | put_write_access(file->f_inode); |
| 104 | __mnt_drop_write(file->f_path.mnt); |
| 105 | } |
| 106 | } |
| 107 | |
Al Viro | 62c6943 | 2009-05-07 03:12:29 -0400 | [diff] [blame] | 108 | /* |
| 109 | * super.c |
| 110 | */ |
David Howells | 8d0347f | 2018-11-04 09:28:36 -0500 | [diff] [blame] | 111 | extern int reconfigure_super(struct fs_context *); |
Christian Brauner | d8ce82e | 2023-08-18 16:00:49 +0200 | [diff] [blame] | 112 | extern bool super_trylock_shared(struct super_block *sb); |
Christoph Hellwig | 4e7b567 | 2020-11-23 13:38:40 +0100 | [diff] [blame] | 113 | struct super_block *user_get_super(dev_t, bool excl); |
Christoph Hellwig | 60b4988 | 2020-11-16 15:21:18 +0100 | [diff] [blame] | 114 | void put_super(struct super_block *sb); |
Al Viro | 20284ab | 2019-05-12 17:31:45 -0400 | [diff] [blame] | 115 | extern bool mount_capable(struct fs_context *); |
Christoph Hellwig | 439bc39 | 2023-01-25 07:58:38 +0100 | [diff] [blame] | 116 | int sb_init_dio_done_wq(struct super_block *sb); |
Al Viro | 482928d | 2009-12-19 10:10:39 -0500 | [diff] [blame] | 117 | |
| 118 | /* |
Jan Kara | d7439fb | 2023-06-20 13:28:32 +0200 | [diff] [blame] | 119 | * Prepare superblock for changing its read-only state (i.e., either remount |
| 120 | * read-write superblock read-only or vice versa). After this function returns |
| 121 | * mnt_is_readonly() will return true for any mount of the superblock if its |
| 122 | * caller is able to observe any changes done by the remount. This holds until |
| 123 | * sb_end_ro_state_change() is called. |
| 124 | */ |
| 125 | static inline void sb_start_ro_state_change(struct super_block *sb) |
| 126 | { |
| 127 | WRITE_ONCE(sb->s_readonly_remount, 1); |
| 128 | /* |
| 129 | * For RO->RW transition, the barrier pairs with the barrier in |
| 130 | * mnt_is_readonly() making sure if mnt_is_readonly() sees SB_RDONLY |
| 131 | * cleared, it will see s_readonly_remount set. |
| 132 | * For RW->RO transition, the barrier pairs with the barrier in |
| 133 | * __mnt_want_write() before the mnt_is_readonly() check. The barrier |
| 134 | * makes sure if __mnt_want_write() sees MNT_WRITE_HOLD already |
| 135 | * cleared, it will see s_readonly_remount set. |
| 136 | */ |
| 137 | smp_wmb(); |
| 138 | } |
| 139 | |
| 140 | /* |
| 141 | * Ends section changing read-only state of the superblock. After this function |
| 142 | * returns if mnt_is_readonly() returns false, the caller will be able to |
| 143 | * observe all the changes remount did to the superblock. |
| 144 | */ |
| 145 | static inline void sb_end_ro_state_change(struct super_block *sb) |
| 146 | { |
| 147 | /* |
| 148 | * This barrier provides release semantics that pairs with |
| 149 | * the smp_rmb() acquire semantics in mnt_is_readonly(). |
| 150 | * This barrier pair ensure that when mnt_is_readonly() sees |
| 151 | * 0 for sb->s_readonly_remount, it will also see all the |
| 152 | * preceding flag changes that were made during the RO state |
| 153 | * change. |
| 154 | */ |
| 155 | smp_wmb(); |
| 156 | WRITE_ONCE(sb->s_readonly_remount, 0); |
| 157 | } |
| 158 | |
| 159 | /* |
Al Viro | 482928d | 2009-12-19 10:10:39 -0500 | [diff] [blame] | 160 | * open.c |
| 161 | */ |
Al Viro | 47c805d | 2011-02-23 17:44:09 -0500 | [diff] [blame] | 162 | struct open_flags { |
| 163 | int open_flag; |
Al Viro | a218d0f | 2011-11-21 14:59:34 -0500 | [diff] [blame] | 164 | umode_t mode; |
Al Viro | 47c805d | 2011-02-23 17:44:09 -0500 | [diff] [blame] | 165 | int acc_mode; |
| 166 | int intent; |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 167 | int lookup_flags; |
Al Viro | 47c805d | 2011-02-23 17:44:09 -0500 | [diff] [blame] | 168 | }; |
Jeff Layton | 669abf4 | 2012-10-10 16:43:10 -0400 | [diff] [blame] | 169 | extern struct file *do_filp_open(int dfd, struct filename *pathname, |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 170 | const struct open_flags *op); |
Al Viro | ffb37ca | 2021-04-01 19:00:57 -0400 | [diff] [blame] | 171 | extern struct file *do_file_open_root(const struct path *, |
Al Viro | f9652e1 | 2013-06-11 08:23:01 +0400 | [diff] [blame] | 172 | const char *, const struct open_flags *); |
Jens Axboe | 35cb6d5 | 2019-12-13 11:10:11 -0700 | [diff] [blame] | 173 | extern struct open_how build_open_how(int flags, umode_t mode); |
| 174 | extern int build_open_flags(const struct open_how *how, struct open_flags *op); |
Al Viro | 6319194e | 2022-05-12 17:08:03 -0400 | [diff] [blame] | 175 | extern struct file *__close_fd_get_file(unsigned int fd); |
Al Viro | a8dade3 | 2010-10-24 11:13:10 -0400 | [diff] [blame] | 176 | |
Dominik Brodowski | 411d947 | 2018-03-11 11:34:54 +0100 | [diff] [blame] | 177 | long do_sys_ftruncate(unsigned int fd, loff_t length, int small); |
Christoph Hellwig | 1097742 | 2020-07-22 11:41:02 +0200 | [diff] [blame] | 178 | int chmod_common(const struct path *path, umode_t mode); |
Dominik Brodowski | 55731b3 | 2018-03-11 11:34:55 +0100 | [diff] [blame] | 179 | int do_fchownat(int dfd, const char __user *filename, uid_t user, gid_t group, |
| 180 | int flag); |
Christoph Hellwig | b873498 | 2020-07-22 11:13:26 +0200 | [diff] [blame] | 181 | int chown_common(const struct path *path, uid_t user, gid_t group); |
Al Viro | ae2bb29 | 2018-07-10 13:22:28 -0400 | [diff] [blame] | 182 | extern int vfs_open(const struct path *, struct file *); |
Aneesh Kumar K.V | becfd1f | 2011-01-29 18:43:26 +0530 | [diff] [blame] | 183 | |
Al Viro | a8dade3 | 2010-10-24 11:13:10 -0400 | [diff] [blame] | 184 | /* |
| 185 | * inode.c |
| 186 | */ |
Vladimir Davydov | 503c358 | 2015-02-12 14:58:47 -0800 | [diff] [blame] | 187 | extern long prune_icache_sb(struct super_block *sb, struct shrink_control *sc); |
Christian Brauner | 9452e93 | 2023-01-13 12:49:27 +0100 | [diff] [blame] | 188 | int dentry_needs_remove_privs(struct mnt_idmap *, struct dentry *dentry); |
| 189 | bool in_group_or_capable(struct mnt_idmap *idmap, |
Christian Brauner | 11c2a87 | 2022-10-17 17:06:34 +0200 | [diff] [blame] | 190 | const struct inode *inode, vfsgid_t vfsgid); |
Jan Kara | f23ce75 | 2023-06-01 12:58:24 +0200 | [diff] [blame] | 191 | void lock_two_inodes(struct inode *inode1, struct inode *inode2, |
| 192 | unsigned subclass1, unsigned subclass2); |
Dave Chinner | 55fa609 | 2011-03-22 22:23:40 +1100 | [diff] [blame] | 193 | |
Dave Chinner | a66979a | 2011-03-22 22:23:41 +1100 | [diff] [blame] | 194 | /* |
| 195 | * fs-writeback.c |
| 196 | */ |
Glauber Costa | 3942c07 | 2013-08-28 10:17:53 +1000 | [diff] [blame] | 197 | extern long get_nr_dirty_inodes(void); |
Christoph Hellwig | e127b9b | 2023-08-11 12:08:28 +0200 | [diff] [blame] | 198 | void invalidate_inodes(struct super_block *sb); |
Al Viro | a4464db | 2011-07-07 15:03:58 -0400 | [diff] [blame] | 199 | |
| 200 | /* |
| 201 | * dcache.c |
| 202 | */ |
Miklos Szeredi | eed8100 | 2013-09-05 14:39:11 +0200 | [diff] [blame] | 203 | extern int d_set_mounted(struct dentry *dentry); |
Vladimir Davydov | 503c358 | 2015-02-12 14:58:47 -0800 | [diff] [blame] | 204 | extern long prune_dcache_sb(struct super_block *sb, struct shrink_control *sc); |
Al Viro | ba65dc5 | 2016-06-10 11:32:47 -0400 | [diff] [blame] | 205 | extern struct dentry *d_alloc_cursor(struct dentry *); |
Al Viro | ab1152d | 2019-03-15 22:58:11 -0400 | [diff] [blame] | 206 | extern struct dentry * d_alloc_pseudo(struct super_block *, const struct qstr *); |
Al Viro | 7e5f7bb | 2019-05-20 13:44:57 +0100 | [diff] [blame] | 207 | extern char *simple_dname(struct dentry *, char *, int); |
Al Viro | 9bdebc2 | 2019-06-29 18:31:24 -0400 | [diff] [blame] | 208 | extern void dput_to_list(struct dentry *, struct list_head *); |
| 209 | extern void shrink_dentry_list(struct list_head *); |
Al Viro | 06ae43f3 | 2013-03-20 13:19:30 -0400 | [diff] [blame] | 210 | |
| 211 | /* |
Al Viro | 599a0ac | 2013-03-12 09:58:10 -0400 | [diff] [blame] | 212 | * pipe.c |
| 213 | */ |
| 214 | extern const struct file_operations pipefifo_fops; |
Al Viro | 8fa1f1c | 2014-05-21 18:22:52 -0400 | [diff] [blame] | 215 | |
| 216 | /* |
| 217 | * fs_pin.c |
| 218 | */ |
Al Viro | fdab684 | 2015-01-11 10:57:27 -0500 | [diff] [blame] | 219 | extern void group_pin_kill(struct hlist_head *p); |
Al Viro | 8fa1f1c | 2014-05-21 18:22:52 -0400 | [diff] [blame] | 220 | extern void mnt_pin_kill(struct mount *m); |
Al Viro | e149ed2 | 2014-11-01 10:57:28 -0400 | [diff] [blame] | 221 | |
| 222 | /* |
| 223 | * fs/nsfs.c |
| 224 | */ |
Rasmus Villemoes | be218aa | 2016-09-15 00:15:34 +0200 | [diff] [blame] | 225 | extern const struct dentry_operations ns_dentry_operations; |
Al Viro | 66cf191 | 2016-01-07 09:53:30 -0500 | [diff] [blame] | 226 | |
Jens Axboe | 3934e36 | 2019-12-14 13:26:33 -0700 | [diff] [blame] | 227 | /* |
| 228 | * fs/stat.c: |
| 229 | */ |
Stefan Roesch | 1b6fe6e | 2022-02-25 10:53:26 -0800 | [diff] [blame] | 230 | |
| 231 | int getname_statx_lookup_flags(int flags); |
| 232 | int do_statx(int dfd, struct filename *filename, unsigned int flags, |
Bijan Mottahedeh | 0018784 | 2020-05-22 21:31:17 -0700 | [diff] [blame] | 233 | unsigned int mask, struct statx __user *buffer); |
Al Viro | b964bf5 | 2021-01-25 22:24:28 -0500 | [diff] [blame] | 234 | |
| 235 | /* |
| 236 | * fs/splice.c: |
| 237 | */ |
| 238 | long splice_file_to_pipe(struct file *in, |
| 239 | struct pipe_inode_info *opipe, |
| 240 | loff_t *offset, |
| 241 | size_t len, unsigned int flags); |
Stefan Roesch | 1a91794 | 2022-04-24 18:10:46 -0600 | [diff] [blame] | 242 | |
| 243 | /* |
| 244 | * fs/xattr.c: |
| 245 | */ |
| 246 | struct xattr_name { |
| 247 | char name[XATTR_NAME_MAX + 1]; |
| 248 | }; |
| 249 | |
| 250 | struct xattr_ctx { |
| 251 | /* Value of attribute */ |
| 252 | union { |
| 253 | const void __user *cvalue; |
| 254 | void __user *value; |
| 255 | }; |
| 256 | void *kvalue; |
| 257 | size_t size; |
| 258 | /* Attribute name */ |
| 259 | struct xattr_name *kname; |
| 260 | unsigned int flags; |
| 261 | }; |
| 262 | |
Stefan Roesch | c975cad | 2022-04-24 18:13:50 -0600 | [diff] [blame] | 263 | |
Christian Brauner | 5a6f52d | 2022-10-28 09:56:20 +0200 | [diff] [blame] | 264 | ssize_t do_getxattr(struct mnt_idmap *idmap, |
Stefan Roesch | c975cad | 2022-04-24 18:13:50 -0600 | [diff] [blame] | 265 | struct dentry *d, |
| 266 | struct xattr_ctx *ctx); |
| 267 | |
Stefan Roesch | 1a91794 | 2022-04-24 18:10:46 -0600 | [diff] [blame] | 268 | int setxattr_copy(const char __user *name, struct xattr_ctx *ctx); |
Christian Brauner | 5a6f52d | 2022-10-28 09:56:20 +0200 | [diff] [blame] | 269 | int do_setxattr(struct mnt_idmap *idmap, struct dentry *dentry, |
Stefan Roesch | 1a91794 | 2022-04-24 18:10:46 -0600 | [diff] [blame] | 270 | struct xattr_ctx *ctx); |
Christian Brauner | 4609e1f | 2023-01-13 12:49:22 +0100 | [diff] [blame] | 271 | int may_write_xattr(struct mnt_idmap *idmap, struct inode *inode); |
Al Viro | 06bbaa6 | 2022-09-26 11:59:14 -0400 | [diff] [blame] | 272 | |
Christian Brauner | 318e668 | 2022-09-22 17:17:22 +0200 | [diff] [blame] | 273 | #ifdef CONFIG_FS_POSIX_ACL |
Christian Brauner | 5a6f52d | 2022-10-28 09:56:20 +0200 | [diff] [blame] | 274 | int do_set_acl(struct mnt_idmap *idmap, struct dentry *dentry, |
Christian Brauner | 318e668 | 2022-09-22 17:17:22 +0200 | [diff] [blame] | 275 | const char *acl_name, const void *kvalue, size_t size); |
Christian Brauner | 5a6f52d | 2022-10-28 09:56:20 +0200 | [diff] [blame] | 276 | ssize_t do_get_acl(struct mnt_idmap *idmap, struct dentry *dentry, |
Christian Brauner | 318e668 | 2022-09-22 17:17:22 +0200 | [diff] [blame] | 277 | const char *acl_name, void *kvalue, size_t size); |
| 278 | #else |
Christian Brauner | 5a6f52d | 2022-10-28 09:56:20 +0200 | [diff] [blame] | 279 | static inline int do_set_acl(struct mnt_idmap *idmap, |
Christian Brauner | 318e668 | 2022-09-22 17:17:22 +0200 | [diff] [blame] | 280 | struct dentry *dentry, const char *acl_name, |
| 281 | const void *kvalue, size_t size) |
| 282 | { |
| 283 | return -EOPNOTSUPP; |
| 284 | } |
Christian Brauner | 5a6f52d | 2022-10-28 09:56:20 +0200 | [diff] [blame] | 285 | static inline ssize_t do_get_acl(struct mnt_idmap *idmap, |
Christian Brauner | 318e668 | 2022-09-22 17:17:22 +0200 | [diff] [blame] | 286 | struct dentry *dentry, const char *acl_name, |
| 287 | void *kvalue, size_t size) |
| 288 | { |
| 289 | return -EOPNOTSUPP; |
| 290 | } |
| 291 | #endif |
Al Viro | 06bbaa6 | 2022-09-26 11:59:14 -0400 | [diff] [blame] | 292 | |
| 293 | ssize_t __kernel_write_iter(struct file *file, struct iov_iter *from, loff_t *pos); |
Christian Brauner | 72ae017 | 2022-10-17 17:06:36 +0200 | [diff] [blame] | 294 | |
| 295 | /* |
| 296 | * fs/attr.c |
| 297 | */ |
Christian Brauner | 3707d84 | 2023-01-13 12:49:33 +0100 | [diff] [blame] | 298 | struct mnt_idmap *alloc_mnt_idmap(struct user_namespace *mnt_userns); |
| 299 | struct mnt_idmap *mnt_idmap_get(struct mnt_idmap *idmap); |
| 300 | void mnt_idmap_put(struct mnt_idmap *idmap); |