blob: d64ae03998cce9dcffdad33baa3e52f4f7dc8983 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
David Howells07f3f052006-09-30 20:52:18 +02002/* fs/ internal definitions
3 *
4 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howells07f3f052006-09-30 20:52:18 +02006 */
7
Andrew Morton5e6d12b2006-08-31 12:55:23 +02008struct super_block;
Al Viro9d412a42011-03-17 22:08:28 -04009struct file_system_type;
Christoph Hellwigae259a92016-06-21 09:23:11 +100010struct iomap;
Christoph Hellwigbefb5032016-09-19 11:24:49 +100011struct iomap_ops;
David Howellsa6f76f22008-11-14 10:39:24 +110012struct linux_binprm;
Al Viro3e93cd62009-03-29 19:00:13 -040013struct path;
Al Viroc7105362011-11-24 18:22:03 -050014struct mount;
Vladimir Davydov503c3582015-02-12 14:58:47 -080015struct shrink_control;
David Howells9bc61ab2018-11-04 03:19:03 -050016struct fs_context;
Al Virob964bf52021-01-25 22:24:28 -050017struct pipe_inode_info;
Al Viro06bbaa62022-09-26 11:59:14 -040018struct iov_iter;
Christian Brauner3707d842023-01-13 12:49:33 +010019struct mnt_idmap;
Andrew Morton5e6d12b2006-08-31 12:55:23 +020020
David Howells07f3f052006-09-30 20:52:18 +020021/*
Christoph Hellwig0dca4462021-09-07 16:13:03 +020022 * block/bdev.c
David Howells07f3f052006-09-30 20:52:18 +020023 */
David Howells93614012006-09-30 20:45:40 +020024#ifdef CONFIG_BLOCK
David Howells07f3f052006-09-30 20:52:18 +020025extern void __init bdev_cache_init(void);
Andrew Morton5e6d12b2006-08-31 12:55:23 +020026#else
27static inline void bdev_cache_init(void)
28{
29}
Christoph Hellwig3f1266f2020-06-20 09:16:41 +020030#endif /* CONFIG_BLOCK */
David Howells7b0de42d2006-08-29 19:06:07 +010031
David Howells07f3f052006-09-30 20:52:18 +020032/*
Akinobu Mita4db96b72014-10-09 15:26:55 -070033 * buffer.c
34 */
Matthew Wilcox (Oracle)d1bd0b42021-11-03 14:05:47 -040035int __block_write_begin_int(struct folio *folio, loff_t pos, unsigned len,
Christoph Hellwig6d49cc82021-08-10 18:33:05 -070036 get_block_t *get_block, const struct iomap *iomap);
Akinobu Mita4db96b72014-10-09 15:26:55 -070037
38/*
David Howells07f3f052006-09-30 20:52:18 +020039 * char_dev.c
40 */
41extern void __init chrdev_init(void);
42
43/*
David Howells9bc61ab2018-11-04 03:19:03 -050044 * fs_context.c
45 */
David Howellsecdab1502018-11-01 23:36:09 +000046extern const struct fs_context_operations legacy_fs_context_ops;
David Howells9bc61ab2018-11-04 03:19:03 -050047extern int parse_monolithic_mount_data(struct fs_context *, void *);
David Howellsecdab1502018-11-01 23:36:09 +000048extern void vfs_clean_context(struct fs_context *fc);
49extern int finish_clean_context(struct fs_context *fc);
David Howells9bc61ab2018-11-04 03:19:03 -050050
51/*
David Howells0bdaea92012-06-25 12:55:46 +010052 * namei.c
53 */
David Howells31d921c2018-11-01 23:07:24 +000054extern int filename_lookup(int dfd, struct filename *name, unsigned flags,
55 struct path *path, struct path *root);
Dmitry Kadashev45f30da2021-07-08 13:34:44 +070056int do_rmdir(int dfd, struct filename *name);
57int do_unlinkat(int dfd, struct filename *name);
Christian Brauner4609e1f2023-01-13 12:49:22 +010058int may_linkat(struct mnt_idmap *idmap, const struct path *link);
Jens Axboee8866632020-09-26 17:20:17 -060059int do_renameat2(int olddfd, struct filename *oldname, int newdfd,
60 struct filename *newname, unsigned int flags);
Dmitry Kadashev45f30da2021-07-08 13:34:44 +070061int do_mkdirat(int dfd, struct filename *name, umode_t mode);
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +070062int do_symlinkat(struct filename *from, int newdfd, struct filename *to);
Dmitry Kadashevcf30da92021-07-08 13:34:47 +070063int do_linkat(int olddfd, struct filename *old, int newdfd,
64 struct filename *new, int flags);
David Howells0bdaea92012-06-25 12:55:46 +010065
66/*
David Howells07f3f052006-09-30 20:52:18 +020067 * namespace.c
68 */
Al Viroca71cf72016-11-20 19:45:28 -050069extern struct vfsmount *lookup_mnt(const struct path *);
Al Viro1e2d84642021-06-18 20:27:57 -040070extern int finish_automount(struct vfsmount *, const struct path *);
Al Viro6d59e7f2008-03-22 15:48:17 -040071
Miklos Szeredi4ed5e82f2011-11-21 12:11:31 +010072extern int sb_prepare_remount_readonly(struct super_block *);
Al Virof03c6592011-01-14 22:30:21 -050073
Al Viro6d59e7f2008-03-22 15:48:17 -040074extern void __init mnt_init(void);
Al Viro3e93cd62009-03-29 19:00:13 -040075
Jan Karaeb04c282012-06-12 16:20:35 +020076extern int __mnt_want_write_file(struct file *);
Jan Karaeb04c282012-06-12 16:20:35 +020077extern void __mnt_drop_write_file(struct file *);
Al Viro47cd813f2010-02-05 02:01:14 -050078
Al Viroa07b2002018-11-05 17:40:30 +000079extern void dissolve_on_fput(struct vfsmount *);
Al Viroa5f85d72022-03-01 00:05:29 -050080extern bool may_mount(void);
Christoph Hellwigc60166f2020-07-21 11:12:08 +020081
82int path_mount(const char *dev_name, struct path *path,
83 const char *type_page, unsigned long flags, void *data_page);
Christoph Hellwig09267de2020-07-23 08:23:08 +020084int path_umount(struct path *path, int flags);
Christoph Hellwigc60166f2020-07-21 11:12:08 +020085
Al Viro3e93cd62009-03-29 19:00:13 -040086/*
87 * fs_struct.c
88 */
Al Virodcf787f2013-03-01 23:51:07 -050089extern void chroot_fs_refs(const struct path *, const struct path *);
npiggin@suse.de864d7c42009-04-26 20:25:56 +100090
91/*
92 * file_table.c
93 */
Amir Goldstein62d53c42023-06-15 14:22:28 +030094struct file *alloc_empty_file(int flags, const struct cred *cred);
95struct file *alloc_empty_file_noaccount(int flags, const struct cred *cred);
96struct file *alloc_empty_backing_file(int flags, const struct cred *cred);
Al Viro62c69432009-05-07 03:12:29 -040097
Amir Goldsteind6da19c2022-08-16 17:53:17 +030098static 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 Viro62c69432009-05-07 03:12:29 -0400108/*
109 * super.c
110 */
David Howells8d0347f2018-11-04 09:28:36 -0500111extern int reconfigure_super(struct fs_context *);
Christian Braunerd8ce82e2023-08-18 16:00:49 +0200112extern bool super_trylock_shared(struct super_block *sb);
Christoph Hellwig4e7b5672020-11-23 13:38:40 +0100113struct super_block *user_get_super(dev_t, bool excl);
Christoph Hellwig60b49882020-11-16 15:21:18 +0100114void put_super(struct super_block *sb);
Al Viro20284ab2019-05-12 17:31:45 -0400115extern bool mount_capable(struct fs_context *);
Christoph Hellwig439bc392023-01-25 07:58:38 +0100116int sb_init_dio_done_wq(struct super_block *sb);
Al Viro482928d2009-12-19 10:10:39 -0500117
118/*
Jan Karad7439fb2023-06-20 13:28:32 +0200119 * 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 */
125static 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 */
145static 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 Viro482928d2009-12-19 10:10:39 -0500160 * open.c
161 */
Al Viro47c805d2011-02-23 17:44:09 -0500162struct open_flags {
163 int open_flag;
Al Viroa218d0f2011-11-21 14:59:34 -0500164 umode_t mode;
Al Viro47c805d2011-02-23 17:44:09 -0500165 int acc_mode;
166 int intent;
Al Virof9652e12013-06-11 08:23:01 +0400167 int lookup_flags;
Al Viro47c805d2011-02-23 17:44:09 -0500168};
Jeff Layton669abf42012-10-10 16:43:10 -0400169extern struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +0400170 const struct open_flags *op);
Al Viroffb37ca2021-04-01 19:00:57 -0400171extern struct file *do_file_open_root(const struct path *,
Al Virof9652e12013-06-11 08:23:01 +0400172 const char *, const struct open_flags *);
Jens Axboe35cb6d52019-12-13 11:10:11 -0700173extern struct open_how build_open_how(int flags, umode_t mode);
174extern int build_open_flags(const struct open_how *how, struct open_flags *op);
Al Viro6319194e2022-05-12 17:08:03 -0400175extern struct file *__close_fd_get_file(unsigned int fd);
Al Viroa8dade32010-10-24 11:13:10 -0400176
Dominik Brodowski411d9472018-03-11 11:34:54 +0100177long do_sys_ftruncate(unsigned int fd, loff_t length, int small);
Christoph Hellwig10977422020-07-22 11:41:02 +0200178int chmod_common(const struct path *path, umode_t mode);
Dominik Brodowski55731b32018-03-11 11:34:55 +0100179int do_fchownat(int dfd, const char __user *filename, uid_t user, gid_t group,
180 int flag);
Christoph Hellwigb8734982020-07-22 11:13:26 +0200181int chown_common(const struct path *path, uid_t user, gid_t group);
Al Viroae2bb292018-07-10 13:22:28 -0400182extern int vfs_open(const struct path *, struct file *);
Aneesh Kumar K.Vbecfd1f2011-01-29 18:43:26 +0530183
Al Viroa8dade32010-10-24 11:13:10 -0400184/*
185 * inode.c
186 */
Vladimir Davydov503c3582015-02-12 14:58:47 -0800187extern long prune_icache_sb(struct super_block *sb, struct shrink_control *sc);
Christian Brauner9452e932023-01-13 12:49:27 +0100188int dentry_needs_remove_privs(struct mnt_idmap *, struct dentry *dentry);
189bool in_group_or_capable(struct mnt_idmap *idmap,
Christian Brauner11c2a872022-10-17 17:06:34 +0200190 const struct inode *inode, vfsgid_t vfsgid);
Jan Karaf23ce752023-06-01 12:58:24 +0200191void lock_two_inodes(struct inode *inode1, struct inode *inode2,
192 unsigned subclass1, unsigned subclass2);
Dave Chinner55fa6092011-03-22 22:23:40 +1100193
Dave Chinnera66979a2011-03-22 22:23:41 +1100194/*
195 * fs-writeback.c
196 */
Glauber Costa3942c072013-08-28 10:17:53 +1000197extern long get_nr_dirty_inodes(void);
Christoph Hellwige127b9b2023-08-11 12:08:28 +0200198void invalidate_inodes(struct super_block *sb);
Al Viroa4464db2011-07-07 15:03:58 -0400199
200/*
201 * dcache.c
202 */
Miklos Szeredieed81002013-09-05 14:39:11 +0200203extern int d_set_mounted(struct dentry *dentry);
Vladimir Davydov503c3582015-02-12 14:58:47 -0800204extern long prune_dcache_sb(struct super_block *sb, struct shrink_control *sc);
Al Viroba65dc52016-06-10 11:32:47 -0400205extern struct dentry *d_alloc_cursor(struct dentry *);
Al Viroab1152d2019-03-15 22:58:11 -0400206extern struct dentry * d_alloc_pseudo(struct super_block *, const struct qstr *);
Al Viro7e5f7bb2019-05-20 13:44:57 +0100207extern char *simple_dname(struct dentry *, char *, int);
Al Viro9bdebc22019-06-29 18:31:24 -0400208extern void dput_to_list(struct dentry *, struct list_head *);
209extern void shrink_dentry_list(struct list_head *);
Al Viro06ae43f32013-03-20 13:19:30 -0400210
211/*
Al Viro599a0ac2013-03-12 09:58:10 -0400212 * pipe.c
213 */
214extern const struct file_operations pipefifo_fops;
Al Viro8fa1f1c2014-05-21 18:22:52 -0400215
216/*
217 * fs_pin.c
218 */
Al Virofdab6842015-01-11 10:57:27 -0500219extern void group_pin_kill(struct hlist_head *p);
Al Viro8fa1f1c2014-05-21 18:22:52 -0400220extern void mnt_pin_kill(struct mount *m);
Al Viroe149ed22014-11-01 10:57:28 -0400221
222/*
223 * fs/nsfs.c
224 */
Rasmus Villemoesbe218aa2016-09-15 00:15:34 +0200225extern const struct dentry_operations ns_dentry_operations;
Al Viro66cf1912016-01-07 09:53:30 -0500226
Jens Axboe3934e362019-12-14 13:26:33 -0700227/*
228 * fs/stat.c:
229 */
Stefan Roesch1b6fe6e2022-02-25 10:53:26 -0800230
231int getname_statx_lookup_flags(int flags);
232int do_statx(int dfd, struct filename *filename, unsigned int flags,
Bijan Mottahedeh00187842020-05-22 21:31:17 -0700233 unsigned int mask, struct statx __user *buffer);
Al Virob964bf52021-01-25 22:24:28 -0500234
235/*
236 * fs/splice.c:
237 */
238long 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 Roesch1a917942022-04-24 18:10:46 -0600242
243/*
244 * fs/xattr.c:
245 */
246struct xattr_name {
247 char name[XATTR_NAME_MAX + 1];
248};
249
250struct 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 Roeschc975cad2022-04-24 18:13:50 -0600263
Christian Brauner5a6f52d2022-10-28 09:56:20 +0200264ssize_t do_getxattr(struct mnt_idmap *idmap,
Stefan Roeschc975cad2022-04-24 18:13:50 -0600265 struct dentry *d,
266 struct xattr_ctx *ctx);
267
Stefan Roesch1a917942022-04-24 18:10:46 -0600268int setxattr_copy(const char __user *name, struct xattr_ctx *ctx);
Christian Brauner5a6f52d2022-10-28 09:56:20 +0200269int do_setxattr(struct mnt_idmap *idmap, struct dentry *dentry,
Stefan Roesch1a917942022-04-24 18:10:46 -0600270 struct xattr_ctx *ctx);
Christian Brauner4609e1f2023-01-13 12:49:22 +0100271int may_write_xattr(struct mnt_idmap *idmap, struct inode *inode);
Al Viro06bbaa62022-09-26 11:59:14 -0400272
Christian Brauner318e6682022-09-22 17:17:22 +0200273#ifdef CONFIG_FS_POSIX_ACL
Christian Brauner5a6f52d2022-10-28 09:56:20 +0200274int do_set_acl(struct mnt_idmap *idmap, struct dentry *dentry,
Christian Brauner318e6682022-09-22 17:17:22 +0200275 const char *acl_name, const void *kvalue, size_t size);
Christian Brauner5a6f52d2022-10-28 09:56:20 +0200276ssize_t do_get_acl(struct mnt_idmap *idmap, struct dentry *dentry,
Christian Brauner318e6682022-09-22 17:17:22 +0200277 const char *acl_name, void *kvalue, size_t size);
278#else
Christian Brauner5a6f52d2022-10-28 09:56:20 +0200279static inline int do_set_acl(struct mnt_idmap *idmap,
Christian Brauner318e6682022-09-22 17:17:22 +0200280 struct dentry *dentry, const char *acl_name,
281 const void *kvalue, size_t size)
282{
283 return -EOPNOTSUPP;
284}
Christian Brauner5a6f52d2022-10-28 09:56:20 +0200285static inline ssize_t do_get_acl(struct mnt_idmap *idmap,
Christian Brauner318e6682022-09-22 17:17:22 +0200286 struct dentry *dentry, const char *acl_name,
287 void *kvalue, size_t size)
288{
289 return -EOPNOTSUPP;
290}
291#endif
Al Viro06bbaa62022-09-26 11:59:14 -0400292
293ssize_t __kernel_write_iter(struct file *file, struct iov_iter *from, loff_t *pos);
Christian Brauner72ae0172022-10-17 17:06:36 +0200294
295/*
296 * fs/attr.c
297 */
Christian Brauner3707d842023-01-13 12:49:33 +0100298struct mnt_idmap *alloc_mnt_idmap(struct user_namespace *mnt_userns);
299struct mnt_idmap *mnt_idmap_get(struct mnt_idmap *idmap);
300void mnt_idmap_put(struct mnt_idmap *idmap);