blob: a63da5e961488779a53d7b34e9f285869c615b14 [file] [log] [blame]
David Howells07f3f052006-09-30 20:52:18 +02001/* fs/ internal definitions
2 *
3 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Andrew Morton5e6d12b2006-08-31 12:55:23 +020012struct super_block;
Al Viro9d412a42011-03-17 22:08:28 -040013struct file_system_type;
Christoph Hellwigae259a92016-06-21 09:23:11 +100014struct iomap;
David Howellsa6f76f22008-11-14 10:39:24 +110015struct linux_binprm;
Al Viro3e93cd62009-03-29 19:00:13 -040016struct path;
Al Viroc7105362011-11-24 18:22:03 -050017struct mount;
Vladimir Davydov503c3582015-02-12 14:58:47 -080018struct shrink_control;
Andrew Morton5e6d12b2006-08-31 12:55:23 +020019
David Howells07f3f052006-09-30 20:52:18 +020020/*
21 * block_dev.c
22 */
David Howells93614012006-09-30 20:45:40 +020023#ifdef CONFIG_BLOCK
David Howells07f3f052006-09-30 20:52:18 +020024extern void __init bdev_cache_init(void);
25
Jan Kara5cee5812009-04-27 16:43:51 +020026extern int __sync_blockdev(struct block_device *bdev, int wait);
27
Andrew Morton5e6d12b2006-08-31 12:55:23 +020028#else
29static inline void bdev_cache_init(void)
30{
31}
32
Jan Kara5cee5812009-04-27 16:43:51 +020033static inline int __sync_blockdev(struct block_device *bdev, int wait)
34{
35 return 0;
36}
David Howells93614012006-09-30 20:45:40 +020037#endif
David Howells7b0de422006-08-29 19:06:07 +010038
David Howells07f3f052006-09-30 20:52:18 +020039/*
Akinobu Mita4db96b72014-10-09 15:26:55 -070040 * buffer.c
41 */
42extern void guard_bio_eod(int rw, struct bio *bio);
Christoph Hellwigae259a92016-06-21 09:23:11 +100043extern int __block_write_begin_int(struct page *page, loff_t pos, unsigned len,
44 get_block_t *get_block, struct iomap *iomap);
Akinobu Mita4db96b72014-10-09 15:26:55 -070045
46/*
David Howells07f3f052006-09-30 20:52:18 +020047 * char_dev.c
48 */
49extern void __init chrdev_init(void);
50
51/*
David Howells0bdaea92012-06-25 12:55:46 +010052 * namei.c
53 */
Al Viro197df042013-09-08 14:03:27 -040054extern int user_path_mountpoint_at(int, const char __user *, unsigned int, struct path *);
55extern int vfs_path_lookup(struct dentry *, struct vfsmount *,
56 const char *, unsigned int, struct path *);
David Howells0bdaea92012-06-25 12:55:46 +010057
58/*
David Howells07f3f052006-09-30 20:52:18 +020059 * namespace.c
60 */
Al Virob40ef862015-12-14 18:44:44 -050061extern void *copy_mount_options(const void __user *);
Tim Gardnerb8850d12014-08-28 11:26:03 -060062extern char *copy_mount_string(const void __user *);
Al Viro6d59e7f2008-03-22 15:48:17 -040063
David Howells0f60f242011-03-21 14:28:58 +000064extern struct vfsmount *lookup_mnt(struct path *);
Al Viro19a167a2011-01-17 01:35:23 -050065extern int finish_automount(struct vfsmount *, struct path *);
Al Viro6d59e7f2008-03-22 15:48:17 -040066
Miklos Szeredi4ed5e822011-11-21 12:11:31 +010067extern int sb_prepare_remount_readonly(struct super_block *);
Al Virof03c6592011-01-14 22:30:21 -050068
Al Viro6d59e7f2008-03-22 15:48:17 -040069extern void __init mnt_init(void);
Al Viro3e93cd62009-03-29 19:00:13 -040070
Jan Karaeb04c282012-06-12 16:20:35 +020071extern int __mnt_want_write(struct vfsmount *);
72extern int __mnt_want_write_file(struct file *);
73extern void __mnt_drop_write(struct vfsmount *);
74extern void __mnt_drop_write_file(struct file *);
Al Viro47cd8132010-02-05 02:01:14 -050075
Al Viro3e93cd62009-03-29 19:00:13 -040076/*
77 * fs_struct.c
78 */
Al Virodcf787f2013-03-01 23:51:07 -050079extern void chroot_fs_refs(const struct path *, const struct path *);
npiggin@suse.de864d7c42009-04-26 20:25:56 +100080
81/*
82 * file_table.c
83 */
Eric Parise81e3f42009-12-04 15:47:36 -050084extern struct file *get_empty_filp(void);
Al Viro62c69432009-05-07 03:12:29 -040085
86/*
87 * super.c
88 */
89extern int do_remount_sb(struct super_block *, int, void *, int);
Konstantin Khlebnikoveb6ef3d2015-02-19 20:19:35 +030090extern bool trylock_super(struct super_block *sb);
Al Viro9d412a42011-03-17 22:08:28 -040091extern struct dentry *mount_fs(struct file_system_type *,
92 int, const char *, void *);
Al Virocf31e702012-01-02 22:28:36 -050093extern struct super_block *user_get_super(dev_t);
Al Viro482928d2009-12-19 10:10:39 -050094
95/*
96 * open.c
97 */
Al Viro47c805d2011-02-23 17:44:09 -050098struct open_flags {
99 int open_flag;
Al Viroa218d0f2011-11-21 14:59:34 -0500100 umode_t mode;
Al Viro47c805d2011-02-23 17:44:09 -0500101 int acc_mode;
102 int intent;
Al Virof9652e12013-06-11 08:23:01 +0400103 int lookup_flags;
Al Viro47c805d2011-02-23 17:44:09 -0500104};
Jeff Layton669abf42012-10-10 16:43:10 -0400105extern struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +0400106 const struct open_flags *op);
Al Viro73d049a2011-03-11 12:08:24 -0500107extern struct file *do_file_open_root(struct dentry *, struct vfsmount *,
Al Virof9652e12013-06-11 08:23:01 +0400108 const char *, const struct open_flags *);
Al Viroa8dade32010-10-24 11:13:10 -0400109
Aneesh Kumar K.Vbecfd1f2011-01-29 18:43:26 +0530110extern long do_handle_open(int mountdirfd,
111 struct file_handle __user *ufh, int open_flag);
Miklos Szeredi90ad1a82012-05-21 17:30:15 +0200112extern int open_check_o_direct(struct file *f);
David Howells4bacc9c2015-06-18 14:32:31 +0100113extern int vfs_open(const struct path *, struct file *, const struct cred *);
James Bottomley9a08c352016-02-17 16:49:38 -0800114extern struct file *filp_clone_open(struct file *);
Aneesh Kumar K.Vbecfd1f2011-01-29 18:43:26 +0530115
Al Viroa8dade32010-10-24 11:13:10 -0400116/*
117 * inode.c
118 */
Vladimir Davydov503c3582015-02-12 14:58:47 -0800119extern long prune_icache_sb(struct super_block *sb, struct shrink_control *sc);
Jan Kara4eff96d2012-11-26 16:29:51 -0800120extern void inode_add_lru(struct inode *inode);
Miklos Szeredif0fce872016-08-03 13:44:27 +0200121extern int dentry_needs_remove_privs(struct dentry *dentry);
Dave Chinner55fa6092011-03-22 22:23:40 +1100122
Miklos Szeredi598e3c82016-09-16 12:44:20 +0200123extern bool __atime_needs_update(const struct path *, struct inode *, bool);
124static inline bool atime_needs_update_rcu(const struct path *path,
125 struct inode *inode)
126{
127 return __atime_needs_update(path, inode, true);
128}
129
130extern bool atime_needs_update_rcu(const struct path *, struct inode *);
131
Dave Chinnera66979a2011-03-22 22:23:41 +1100132/*
133 * fs-writeback.c
134 */
Dave Chinnerc7f54082015-03-04 14:07:22 -0500135extern void inode_io_list_del(struct inode *inode);
Dave Chinnera66979a2011-03-22 22:23:41 +1100136
Glauber Costa3942c072013-08-28 10:17:53 +1000137extern long get_nr_dirty_inodes(void);
Al Viroa4cdbd82010-10-29 05:49:13 -0400138extern void evict_inodes(struct super_block *);
NeilBrown93b270f2011-02-24 17:25:47 +1100139extern int invalidate_inodes(struct super_block *, bool);
Al Viroa4464db2011-07-07 15:03:58 -0400140
141/*
142 * dcache.c
143 */
144extern struct dentry *__d_alloc(struct super_block *, const struct qstr *);
Miklos Szeredieed81002013-09-05 14:39:11 +0200145extern int d_set_mounted(struct dentry *dentry);
Vladimir Davydov503c3582015-02-12 14:58:47 -0800146extern long prune_dcache_sb(struct super_block *sb, struct shrink_control *sc);
Al Viroba65dc52016-06-10 11:32:47 -0400147extern struct dentry *d_alloc_cursor(struct dentry *);
Al Viro06ae43f2013-03-20 13:19:30 -0400148
149/*
150 * read_write.c
151 */
Al Viro68d70d02013-06-19 15:26:04 +0400152extern int rw_verify_area(int, struct file *, const loff_t *, size_t);
Al Viro599a0ac2013-03-12 09:58:10 -0400153
154/*
155 * pipe.c
156 */
157extern const struct file_operations pipefifo_fops;
Al Viro8fa1f1c2014-05-21 18:22:52 -0400158
159/*
160 * fs_pin.c
161 */
Al Virofdab6842015-01-11 10:57:27 -0500162extern void group_pin_kill(struct hlist_head *p);
Al Viro8fa1f1c2014-05-21 18:22:52 -0400163extern void mnt_pin_kill(struct mount *m);
Al Viroe149ed22014-11-01 10:57:28 -0400164
165/*
166 * fs/nsfs.c
167 */
168extern struct dentry_operations ns_dentry_operations;
Al Viro66cf1912016-01-07 09:53:30 -0500169
170/*
171 * fs/ioctl.c
172 */
173extern int do_vfs_ioctl(struct file *file, unsigned int fd, unsigned int cmd,
174 unsigned long arg);
175extern long vfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg);