blob: e903d5aae139a29ae64463bd86f99f16571c4954 [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 Viro2527b282019-05-12 17:09:01 -040017struct user_namespace;
Andrew Morton5e6d12b2006-08-31 12:55:23 +020018
David Howells07f3f052006-09-30 20:52:18 +020019/*
20 * block_dev.c
21 */
David Howells93614012006-09-30 20:45:40 +020022#ifdef CONFIG_BLOCK
David Howells07f3f052006-09-30 20:52:18 +020023extern void __init bdev_cache_init(void);
24
Jan Kara5cee5812009-04-27 16:43:51 +020025extern int __sync_blockdev(struct block_device *bdev, int wait);
26
Andrew Morton5e6d12b2006-08-31 12:55:23 +020027#else
28static inline void bdev_cache_init(void)
29{
30}
31
Jan Kara5cee5812009-04-27 16:43:51 +020032static inline int __sync_blockdev(struct block_device *bdev, int wait)
33{
34 return 0;
35}
David Howells93614012006-09-30 20:45:40 +020036#endif
David Howells7b0de422006-08-29 19:06:07 +010037
David Howells07f3f052006-09-30 20:52:18 +020038/*
Akinobu Mita4db96b72014-10-09 15:26:55 -070039 * buffer.c
40 */
Christoph Hellwigae259a92016-06-21 09:23:11 +100041extern int __block_write_begin_int(struct page *page, loff_t pos, unsigned len,
42 get_block_t *get_block, struct iomap *iomap);
Akinobu Mita4db96b72014-10-09 15:26:55 -070043
44/*
David Howells07f3f052006-09-30 20:52:18 +020045 * char_dev.c
46 */
47extern void __init chrdev_init(void);
48
49/*
David Howells9bc61ab2018-11-04 03:19:03 -050050 * fs_context.c
51 */
David Howellsecdab1502018-11-01 23:36:09 +000052extern const struct fs_context_operations legacy_fs_context_ops;
David Howells9bc61ab2018-11-04 03:19:03 -050053extern int parse_monolithic_mount_data(struct fs_context *, void *);
Al Viroc9ce29e2018-12-20 15:04:50 -050054extern void fc_drop_locked(struct fs_context *);
David Howellsecdab1502018-11-01 23:36:09 +000055extern void vfs_clean_context(struct fs_context *fc);
56extern int finish_clean_context(struct fs_context *fc);
David Howells9bc61ab2018-11-04 03:19:03 -050057
58/*
David Howells0bdaea92012-06-25 12:55:46 +010059 * namei.c
60 */
David Howells31d921c2018-11-01 23:07:24 +000061extern int filename_lookup(int dfd, struct filename *name, unsigned flags,
62 struct path *path, struct path *root);
Al Viro197df042013-09-08 14:03:27 -040063extern int vfs_path_lookup(struct dentry *, struct vfsmount *,
64 const char *, unsigned int, struct path *);
Dominik Brodowski87c4e192018-03-11 11:34:50 +010065long do_mknodat(int dfd, const char __user *filename, umode_t mode,
66 unsigned int dev);
Dominik Brodowski0101db72018-03-11 11:34:49 +010067long do_mkdirat(int dfd, const char __user *pathname, umode_t mode);
Christoph Hellwige24ab0e2020-07-21 10:48:15 +020068long do_rmdir(int dfd, struct filename *name);
Christoph Hellwigda2f1362017-11-04 13:44:45 +030069long do_unlinkat(int dfd, struct filename *name);
Dominik Brodowskib724e842018-03-11 11:34:49 +010070long do_symlinkat(const char __user *oldname, int newdfd,
71 const char __user *newname);
Dominik Brodowski46ea89e2018-03-11 11:34:53 +010072int do_linkat(int olddfd, const char __user *oldname, int newdfd,
73 const char __user *newname, int flags);
David Howells0bdaea92012-06-25 12:55:46 +010074
75/*
David Howells07f3f052006-09-30 20:52:18 +020076 * namespace.c
77 */
Al Virob40ef862015-12-14 18:44:44 -050078extern void *copy_mount_options(const void __user *);
Tim Gardnerb8850d12014-08-28 11:26:03 -060079extern char *copy_mount_string(const void __user *);
Al Viro6d59e7f2008-03-22 15:48:17 -040080
Al Viroca71cf72016-11-20 19:45:28 -050081extern struct vfsmount *lookup_mnt(const struct path *);
Al Viro19a167a2011-01-17 01:35:23 -050082extern int finish_automount(struct vfsmount *, struct path *);
Al Viro6d59e7f2008-03-22 15:48:17 -040083
Miklos Szeredi4ed5e82f2011-11-21 12:11:31 +010084extern int sb_prepare_remount_readonly(struct super_block *);
Al Virof03c6592011-01-14 22:30:21 -050085
Al Viro6d59e7f2008-03-22 15:48:17 -040086extern void __init mnt_init(void);
Al Viro3e93cd62009-03-29 19:00:13 -040087
Jan Karaeb04c282012-06-12 16:20:35 +020088extern int __mnt_want_write_file(struct file *);
Jan Karaeb04c282012-06-12 16:20:35 +020089extern void __mnt_drop_write_file(struct file *);
Al Viro47cd8132010-02-05 02:01:14 -050090
Al Viroa07b2002018-11-05 17:40:30 +000091extern void dissolve_on_fput(struct vfsmount *);
Al Viro3e93cd62009-03-29 19:00:13 -040092/*
93 * fs_struct.c
94 */
Al Virodcf787f2013-03-01 23:51:07 -050095extern void chroot_fs_refs(const struct path *, const struct path *);
npiggin@suse.de864d7c42009-04-26 20:25:56 +100096
97/*
98 * file_table.c
99 */
Al Viroea73ea72018-07-11 15:00:04 -0400100extern struct file *alloc_empty_file(int, const struct cred *);
Miklos Szeredid3b10842018-07-18 15:44:40 +0200101extern struct file *alloc_empty_file_noaccount(int, const struct cred *);
Al Viro62c69432009-05-07 03:12:29 -0400102
103/*
104 * super.c
105 */
David Howells8d0347f2018-11-04 09:28:36 -0500106extern int reconfigure_super(struct fs_context *);
Konstantin Khlebnikoveb6ef3d2015-02-19 20:19:35 +0300107extern bool trylock_super(struct super_block *sb);
Al Virocf31e702012-01-02 22:28:36 -0500108extern struct super_block *user_get_super(dev_t);
Al Viro20284ab2019-05-12 17:31:45 -0400109extern bool mount_capable(struct fs_context *);
Al Viro482928d2009-12-19 10:10:39 -0500110
111/*
112 * open.c
113 */
Al Viro47c805d2011-02-23 17:44:09 -0500114struct open_flags {
115 int open_flag;
Al Viroa218d0f2011-11-21 14:59:34 -0500116 umode_t mode;
Al Viro47c805d2011-02-23 17:44:09 -0500117 int acc_mode;
118 int intent;
Al Virof9652e12013-06-11 08:23:01 +0400119 int lookup_flags;
Al Viro47c805d2011-02-23 17:44:09 -0500120};
Jeff Layton669abf42012-10-10 16:43:10 -0400121extern struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +0400122 const struct open_flags *op);
Al Viro73d049a2011-03-11 12:08:24 -0500123extern struct file *do_file_open_root(struct dentry *, struct vfsmount *,
Al Virof9652e12013-06-11 08:23:01 +0400124 const char *, const struct open_flags *);
Jens Axboe35cb6d52019-12-13 11:10:11 -0700125extern struct open_how build_open_how(int flags, umode_t mode);
126extern int build_open_flags(const struct open_how *how, struct open_flags *op);
Al Viroa8dade32010-10-24 11:13:10 -0400127
Dominik Brodowski411d9472018-03-11 11:34:54 +0100128long do_sys_ftruncate(unsigned int fd, loff_t length, int small);
Dominik Brodowski03450e22018-03-11 11:34:53 +0100129int do_fchmodat(int dfd, const char __user *filename, umode_t mode);
Dominik Brodowski55731b32018-03-11 11:34:55 +0100130int do_fchownat(int dfd, const char __user *filename, uid_t user, gid_t group,
131 int flag);
Dominik Brodowski03450e22018-03-11 11:34:53 +0100132
Al Viroae2bb292018-07-10 13:22:28 -0400133extern int vfs_open(const struct path *, struct file *);
Aneesh Kumar K.Vbecfd1f2011-01-29 18:43:26 +0530134
Al Viroa8dade32010-10-24 11:13:10 -0400135/*
136 * inode.c
137 */
Vladimir Davydov503c3582015-02-12 14:58:47 -0800138extern long prune_icache_sb(struct super_block *sb, struct shrink_control *sc);
Jan Kara4eff96d2012-11-26 16:29:51 -0800139extern void inode_add_lru(struct inode *inode);
Miklos Szeredif0fce872016-08-03 13:44:27 +0200140extern int dentry_needs_remove_privs(struct dentry *dentry);
Dave Chinner55fa6092011-03-22 22:23:40 +1100141
Dave Chinnera66979a2011-03-22 22:23:41 +1100142/*
143 * fs-writeback.c
144 */
Glauber Costa3942c072013-08-28 10:17:53 +1000145extern long get_nr_dirty_inodes(void);
NeilBrown93b270f2011-02-24 17:25:47 +1100146extern int invalidate_inodes(struct super_block *, bool);
Al Viroa4464db2011-07-07 15:03:58 -0400147
148/*
149 * dcache.c
150 */
Miklos Szeredieed81002013-09-05 14:39:11 +0200151extern int d_set_mounted(struct dentry *dentry);
Vladimir Davydov503c3582015-02-12 14:58:47 -0800152extern long prune_dcache_sb(struct super_block *sb, struct shrink_control *sc);
Al Viroba65dc52016-06-10 11:32:47 -0400153extern struct dentry *d_alloc_cursor(struct dentry *);
Al Viroab1152d2019-03-15 22:58:11 -0400154extern struct dentry * d_alloc_pseudo(struct super_block *, const struct qstr *);
Al Viro7e5f7bb2019-05-20 13:44:57 +0100155extern char *simple_dname(struct dentry *, char *, int);
Al Viro9bdebc22019-06-29 18:31:24 -0400156extern void dput_to_list(struct dentry *, struct list_head *);
157extern void shrink_dentry_list(struct list_head *);
Al Viro06ae43f2013-03-20 13:19:30 -0400158
159/*
160 * read_write.c
161 */
Al Viro68d70d02013-06-19 15:26:04 +0400162extern int rw_verify_area(int, struct file *, const loff_t *, size_t);
Al Viro599a0ac2013-03-12 09:58:10 -0400163
164/*
165 * pipe.c
166 */
167extern const struct file_operations pipefifo_fops;
Al Viro8fa1f1c2014-05-21 18:22:52 -0400168
169/*
170 * fs_pin.c
171 */
Al Virofdab6842015-01-11 10:57:27 -0500172extern void group_pin_kill(struct hlist_head *p);
Al Viro8fa1f1c2014-05-21 18:22:52 -0400173extern void mnt_pin_kill(struct mount *m);
Al Viroe149ed22014-11-01 10:57:28 -0400174
175/*
176 * fs/nsfs.c
177 */
Rasmus Villemoesbe218aa2016-09-15 00:15:34 +0200178extern const struct dentry_operations ns_dentry_operations;
Al Viro66cf1912016-01-07 09:53:30 -0500179
Christoph Hellwigec1b8262016-11-30 14:33:53 +1100180/* direct-io.c: */
181int sb_init_dio_done_wq(struct super_block *sb);
Jens Axboe3934e362019-12-14 13:26:33 -0700182
183/*
184 * fs/stat.c:
185 */
Bijan Mottahedeh00187842020-05-22 21:31:17 -0700186int do_statx(int dfd, const char __user *filename, unsigned flags,
187 unsigned int mask, struct statx __user *buffer);