blob: 5615a9eb59db43fff4123f438457d69c813134e7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * Definitions for mount interface. This describes the in the kernel build
4 * linkedlist with mounted filesystems.
5 *
6 * Author: Marco van Wieringen <mvw@planets.elm.net>
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9#ifndef _LINUX_MOUNT_H
10#define _LINUX_MOUNT_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Andrew Mortond53d9f12005-07-12 13:58:07 -070012#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/list.h>
Dave Hansen3d733632008-02-15 14:37:59 -080014#include <linux/nodemask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/spinlock.h>
Nick Pigginb3e19d92011-01-07 17:50:11 +110016#include <linux/seqlock.h>
Arun Sharma600634972011-07-26 16:09:06 -070017#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
David Howells726c3342006-06-23 02:02:58 -070019struct super_block;
20struct vfsmount;
21struct dentry;
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080022struct mnt_namespace;
David Howells726c3342006-06-23 02:02:58 -070023
Ram Pai07b20882005-11-07 17:19:07 -050024#define MNT_NOSUID 0x01
25#define MNT_NODEV 0x02
26#define MNT_NOEXEC 0x04
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -080027#define MNT_NOATIME 0x08
28#define MNT_NODIRATIME 0x10
Valerie Henson47ae32d2006-12-13 00:34:34 -080029#define MNT_RELATIME 0x20
Dave Hansen2e4b7fc2008-02-15 14:38:00 -080030#define MNT_READONLY 0x40 /* does the user want this to be r/o? */
Miklos Szeredibf066c72006-01-08 01:03:19 -080031
Trond Myklebust5528f9112006-06-09 09:34:17 -040032#define MNT_SHRINKABLE 0x100
npiggin@suse.ded3ef3d72009-04-26 20:25:54 +100033#define MNT_WRITE_HOLD 0x200
Trond Myklebust5528f9112006-06-09 09:34:17 -040034
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -080035#define MNT_SHARED 0x1000 /* if the vfsmount is a shared mount */
36#define MNT_UNBINDABLE 0x2000 /* if the vfsmount is a unbindable mount */
Valerie Aurora495d6c92010-01-26 14:20:47 -050037/*
38 * MNT_SHARED_MASK is the set of flags that should be cleared when a
39 * mount becomes shared. Currently, this is only the flag that says a
40 * mount cannot be bind mounted, since this is how we create a mount
41 * that shares events with another mount. If you add a new MNT_*
42 * flag, consider how it interacts with shared mounts.
43 */
44#define MNT_SHARED_MASK (MNT_UNBINDABLE)
Eric W. Biedermana6138db2014-07-28 16:26:53 -070045#define MNT_USER_SETTABLE_MASK (MNT_NOSUID | MNT_NODEV | MNT_NOEXEC \
46 | MNT_NOATIME | MNT_NODIRATIME | MNT_RELATIME \
47 | MNT_READONLY)
Eric W. Biederman9566d672014-07-28 17:26:07 -070048#define MNT_ATIME_MASK (MNT_NOATIME | MNT_NODIRATIME | MNT_RELATIME )
Valerie Aurora495d6c92010-01-26 14:20:47 -050049
Al Virof2ebb3a2014-02-27 09:35:45 -050050#define MNT_INTERNAL_FLAGS (MNT_SHARED | MNT_WRITE_HOLD | MNT_INTERNAL | \
51 MNT_DOOMED | MNT_SYNC_UMOUNT | MNT_MARKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Al Viro80893522010-02-05 09:30:46 -050053#define MNT_INTERNAL 0x4000
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Eric W. Biederman9566d672014-07-28 17:26:07 -070055#define MNT_LOCK_ATIME 0x040000
56#define MNT_LOCK_NOEXEC 0x080000
57#define MNT_LOCK_NOSUID 0x100000
58#define MNT_LOCK_NODEV 0x200000
Eric W. Biederman90563b12013-03-22 03:10:15 -070059#define MNT_LOCK_READONLY 0x400000
Eric W. Biederman5ff9d8a2013-03-29 21:04:39 -070060#define MNT_LOCKED 0x800000
Al Viro48a066e2013-09-29 22:06:07 -040061#define MNT_DOOMED 0x1000000
62#define MNT_SYNC_UMOUNT 0x2000000
Al Virof2ebb3a2014-02-27 09:35:45 -050063#define MNT_MARKED 0x4000000
Eric W. Biederman590ce4b2014-12-22 18:30:08 -060064#define MNT_UMOUNT 0x8000000
Eric W. Biederman90563b12013-03-22 03:10:15 -070065
Ram Pai07b20882005-11-07 17:19:07 -050066struct vfsmount {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct dentry *mnt_root; /* root of the mounted tree */
68 struct super_block *mnt_sb; /* pointer to superblock */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 int mnt_flags;
Daniel Rosenberg1aaf05b2016-10-26 15:29:51 -070070 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
npiggin@suse.de96029c42009-04-26 20:25:55 +100073struct file; /* forward dec */
Al Viro3064c352014-08-07 09:12:31 -040074struct path;
npiggin@suse.de96029c42009-04-26 20:25:55 +100075
Dave Hansen83660252008-02-15 14:37:30 -080076extern int mnt_want_write(struct vfsmount *mnt);
npiggin@suse.de96029c42009-04-26 20:25:55 +100077extern int mnt_want_write_file(struct file *file);
78extern int mnt_clone_write(struct vfsmount *mnt);
Dave Hansen83660252008-02-15 14:37:30 -080079extern void mnt_drop_write(struct vfsmount *mnt);
Al Viro2a79f172011-12-09 08:06:57 -050080extern void mnt_drop_write_file(struct file *file);
Nick Pigginb3e19d92011-01-07 17:50:11 +110081extern void mntput(struct vfsmount *mnt);
82extern struct vfsmount *mntget(struct vfsmount *mnt);
Al Viro3064c352014-08-07 09:12:31 -040083extern struct vfsmount *mnt_clone_internal(struct path *path);
Dave Hansen83660252008-02-15 14:37:30 -080084extern int __mnt_is_readonly(struct vfsmount *mnt);
Andy Lutomirski380cf5b2016-06-23 16:41:05 -050085extern bool mnt_may_suid(struct vfsmount *mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Miklos Szeredic771d682014-10-24 00:14:36 +020087struct path;
88extern struct vfsmount *clone_private_mount(struct path *path);
89
Trond Myklebustbb4a58b2006-06-09 09:34:15 -040090struct file_system_type;
91extern struct vfsmount *vfs_kern_mount(struct file_system_type *type,
92 int flags, const char *name,
93 void *data);
Eric W. Biedermand3381fa2017-02-01 06:06:16 +130094extern struct vfsmount *vfs_submount(const struct dentry *mountpoint,
95 struct file_system_type *type,
96 const char *name, void *data);
Trond Myklebustbb4a58b2006-06-09 09:34:15 -040097
David Howellsea5b7782011-01-14 19:10:03 +000098extern void mnt_set_expiry(struct vfsmount *mnt, struct list_head *expiry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099extern void mark_mounts_for_expiry(struct list_head *mounts);
100
Dan Ehrenberge6e20a72015-02-10 15:20:49 -0800101extern dev_t name_to_dev_t(const char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Eric W. Biedermand2921682016-09-28 00:27:17 -0500103extern unsigned int sysctl_mount_max;
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#endif /* _LINUX_MOUNT_H */