Al Viro | b2dba1a | 2011-11-23 19:26:23 -0500 | [diff] [blame] | 1 | #include <linux/mount.h> |
Al Viro | 0226f49 | 2011-12-06 12:21:54 -0500 | [diff] [blame] | 2 | #include <linux/seq_file.h> |
| 3 | #include <linux/poll.h> |
Al Viro | 435d5f4 | 2014-10-31 22:56:04 -0400 | [diff] [blame] | 4 | #include <linux/ns_common.h> |
Al Viro | 87b95ce | 2015-01-10 19:01:08 -0500 | [diff] [blame] | 5 | #include <linux/fs_pin.h> |
Al Viro | 0226f49 | 2011-12-06 12:21:54 -0500 | [diff] [blame] | 6 | |
| 7 | struct mnt_namespace { |
| 8 | atomic_t count; |
Al Viro | 435d5f4 | 2014-10-31 22:56:04 -0400 | [diff] [blame] | 9 | struct ns_common ns; |
Al Viro | be08d6d | 2011-12-06 13:32:36 -0500 | [diff] [blame] | 10 | struct mount * root; |
Al Viro | 0226f49 | 2011-12-06 12:21:54 -0500 | [diff] [blame] | 11 | struct list_head list; |
Eric W. Biederman | 771b137 | 2012-07-26 21:08:32 -0700 | [diff] [blame] | 12 | struct user_namespace *user_ns; |
Eric W. Biederman | 537f7cc | 2016-08-08 14:37:37 -0500 | [diff] [blame] | 13 | struct ucounts *ucounts; |
Eric W. Biederman | 8823c07 | 2010-03-07 18:49:36 -0800 | [diff] [blame] | 14 | u64 seq; /* Sequence number to prevent loops */ |
Al Viro | 0226f49 | 2011-12-06 12:21:54 -0500 | [diff] [blame] | 15 | wait_queue_head_t poll; |
Al Viro | c7999c3 | 2014-02-27 14:40:10 -0500 | [diff] [blame] | 16 | u64 event; |
Eric W. Biederman | d292168 | 2016-09-28 00:27:17 -0500 | [diff] [blame] | 17 | unsigned int mounts; /* # of mounts in the namespace */ |
| 18 | unsigned int pending_mounts; |
Al Viro | 0226f49 | 2011-12-06 12:21:54 -0500 | [diff] [blame] | 19 | }; |
Al Viro | b2dba1a | 2011-11-23 19:26:23 -0500 | [diff] [blame] | 20 | |
Al Viro | 68e8a9f | 2011-11-24 22:53:09 -0500 | [diff] [blame] | 21 | struct mnt_pcp { |
| 22 | int mnt_count; |
| 23 | int mnt_writers; |
| 24 | }; |
| 25 | |
Al Viro | 84d1719 | 2013-03-15 10:53:28 -0400 | [diff] [blame] | 26 | struct mountpoint { |
Al Viro | 0818bf2 | 2014-02-28 13:46:44 -0500 | [diff] [blame] | 27 | struct hlist_node m_hash; |
Al Viro | 84d1719 | 2013-03-15 10:53:28 -0400 | [diff] [blame] | 28 | struct dentry *m_dentry; |
Eric W. Biederman | 0a5eb7c | 2013-09-22 19:37:01 -0700 | [diff] [blame] | 29 | struct hlist_head m_list; |
Al Viro | 84d1719 | 2013-03-15 10:53:28 -0400 | [diff] [blame] | 30 | int m_count; |
| 31 | }; |
| 32 | |
Al Viro | 7d6fec4 | 2011-11-23 12:14:10 -0500 | [diff] [blame] | 33 | struct mount { |
Al Viro | 38129a1 | 2014-03-20 21:10:51 -0400 | [diff] [blame] | 34 | struct hlist_node mnt_hash; |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 35 | struct mount *mnt_parent; |
Al Viro | a73324d | 2011-11-24 22:25:07 -0500 | [diff] [blame] | 36 | struct dentry *mnt_mountpoint; |
Al Viro | 7d6fec4 | 2011-11-23 12:14:10 -0500 | [diff] [blame] | 37 | struct vfsmount mnt; |
Al Viro | 9ea459e | 2014-08-08 13:08:20 -0400 | [diff] [blame] | 38 | union { |
| 39 | struct rcu_head mnt_rcu; |
| 40 | struct llist_node mnt_llist; |
| 41 | }; |
Al Viro | 68e8a9f | 2011-11-24 22:53:09 -0500 | [diff] [blame] | 42 | #ifdef CONFIG_SMP |
| 43 | struct mnt_pcp __percpu *mnt_pcp; |
Al Viro | 68e8a9f | 2011-11-24 22:53:09 -0500 | [diff] [blame] | 44 | #else |
| 45 | int mnt_count; |
| 46 | int mnt_writers; |
| 47 | #endif |
Al Viro | 6b41d53 | 2011-11-24 23:24:33 -0500 | [diff] [blame] | 48 | struct list_head mnt_mounts; /* list of children, anchored here */ |
| 49 | struct list_head mnt_child; /* and going through their mnt_child */ |
Miklos Szeredi | 39f7c4d | 2011-11-21 12:11:30 +0100 | [diff] [blame] | 50 | struct list_head mnt_instance; /* mount instance on sb->s_mounts */ |
Al Viro | 52ba162 | 2011-11-25 02:25:17 -0500 | [diff] [blame] | 51 | const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */ |
Al Viro | 1a4eeaf | 2011-11-25 02:19:55 -0500 | [diff] [blame] | 52 | struct list_head mnt_list; |
Al Viro | 6776db3d | 2011-11-25 00:22:05 -0500 | [diff] [blame] | 53 | struct list_head mnt_expire; /* link in fs-specific expiry list */ |
| 54 | struct list_head mnt_share; /* circular list of shared mounts */ |
| 55 | struct list_head mnt_slave_list;/* list of slave mounts */ |
| 56 | struct list_head mnt_slave; /* slave list entry */ |
Al Viro | 3230192 | 2011-11-25 00:10:28 -0500 | [diff] [blame] | 57 | struct mount *mnt_master; /* slave is on master->mnt_slave_list */ |
Al Viro | 143c8c9 | 2011-11-25 00:46:35 -0500 | [diff] [blame] | 58 | struct mnt_namespace *mnt_ns; /* containing namespace */ |
Al Viro | 84d1719 | 2013-03-15 10:53:28 -0400 | [diff] [blame] | 59 | struct mountpoint *mnt_mp; /* where is it mounted */ |
Eric W. Biederman | 0a5eb7c | 2013-09-22 19:37:01 -0700 | [diff] [blame] | 60 | struct hlist_node mnt_mp_list; /* list mounts with the same mountpoint */ |
Al Viro | c63181e | 2011-11-25 02:35:16 -0500 | [diff] [blame] | 61 | #ifdef CONFIG_FSNOTIFY |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 62 | struct fsnotify_mark_connector __rcu *mnt_fsnotify_marks; |
Al Viro | c63181e | 2011-11-25 02:35:16 -0500 | [diff] [blame] | 63 | __u32 mnt_fsnotify_mask; |
| 64 | #endif |
Al Viro | 15169fe | 2011-11-25 00:50:41 -0500 | [diff] [blame] | 65 | int mnt_id; /* mount identifier */ |
| 66 | int mnt_group_id; /* peer group identifier */ |
Al Viro | 863d684 | 2011-11-25 00:57:42 -0500 | [diff] [blame] | 67 | int mnt_expiry_mark; /* true if marked for expiry */ |
Al Viro | 215752f | 2014-08-07 06:23:41 -0400 | [diff] [blame] | 68 | struct hlist_head mnt_pins; |
Al Viro | 87b95ce | 2015-01-10 19:01:08 -0500 | [diff] [blame] | 69 | struct fs_pin mnt_umount; |
| 70 | struct dentry *mnt_ex_mountpoint; |
Al Viro | 7d6fec4 | 2011-11-23 12:14:10 -0500 | [diff] [blame] | 71 | }; |
| 72 | |
Al Viro | f7a99c5 | 2012-06-09 00:59:08 -0400 | [diff] [blame] | 73 | #define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */ |
| 74 | |
Al Viro | 7d6fec4 | 2011-11-23 12:14:10 -0500 | [diff] [blame] | 75 | static inline struct mount *real_mount(struct vfsmount *mnt) |
| 76 | { |
| 77 | return container_of(mnt, struct mount, mnt); |
| 78 | } |
| 79 | |
Al Viro | 676da58 | 2011-11-24 21:47:05 -0500 | [diff] [blame] | 80 | static inline int mnt_has_parent(struct mount *mnt) |
Al Viro | b2dba1a | 2011-11-23 19:26:23 -0500 | [diff] [blame] | 81 | { |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 82 | return mnt != mnt->mnt_parent; |
Al Viro | b2dba1a | 2011-11-23 19:26:23 -0500 | [diff] [blame] | 83 | } |
Al Viro | c710536 | 2011-11-24 18:22:03 -0500 | [diff] [blame] | 84 | |
Al Viro | f7a99c5 | 2012-06-09 00:59:08 -0400 | [diff] [blame] | 85 | static inline int is_mounted(struct vfsmount *mnt) |
| 86 | { |
| 87 | /* neither detached nor internal? */ |
Eric W. Biederman | 260a459 | 2014-01-20 15:26:15 -0800 | [diff] [blame] | 88 | return !IS_ERR_OR_NULL(real_mount(mnt)->mnt_ns); |
Al Viro | f7a99c5 | 2012-06-09 00:59:08 -0400 | [diff] [blame] | 89 | } |
| 90 | |
Al Viro | 474279d | 2013-10-01 16:11:26 -0400 | [diff] [blame] | 91 | extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *); |
Al Viro | 0226f49 | 2011-12-06 12:21:54 -0500 | [diff] [blame] | 92 | |
Al Viro | 294d71f | 2015-05-08 11:43:53 -0400 | [diff] [blame] | 93 | extern int __legitimize_mnt(struct vfsmount *, unsigned); |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 94 | extern bool legitimize_mnt(struct vfsmount *, unsigned); |
| 95 | |
Ian Kent | c6609c0 | 2016-11-24 08:03:41 +1100 | [diff] [blame] | 96 | static inline bool __path_is_mountpoint(const struct path *path) |
| 97 | { |
| 98 | struct mount *m = __lookup_mnt(path->mnt, path->dentry); |
| 99 | return m && likely(!(m->mnt.mnt_flags & MNT_SYNC_UMOUNT)); |
| 100 | } |
| 101 | |
Eric W. Biederman | 80b5dce | 2013-10-03 01:31:18 -0700 | [diff] [blame] | 102 | extern void __detach_mounts(struct dentry *dentry); |
| 103 | |
| 104 | static inline void detach_mounts(struct dentry *dentry) |
| 105 | { |
| 106 | if (!d_mountpoint(dentry)) |
| 107 | return; |
| 108 | __detach_mounts(dentry); |
| 109 | } |
| 110 | |
Al Viro | 0226f49 | 2011-12-06 12:21:54 -0500 | [diff] [blame] | 111 | static inline void get_mnt_ns(struct mnt_namespace *ns) |
| 112 | { |
| 113 | atomic_inc(&ns->count); |
| 114 | } |
| 115 | |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 116 | extern seqlock_t mount_lock; |
Al Viro | 719ea2f | 2013-09-29 11:24:49 -0400 | [diff] [blame] | 117 | |
| 118 | static inline void lock_mount_hash(void) |
| 119 | { |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 120 | write_seqlock(&mount_lock); |
Al Viro | 719ea2f | 2013-09-29 11:24:49 -0400 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | static inline void unlock_mount_hash(void) |
| 124 | { |
Al Viro | 48a066e | 2013-09-29 22:06:07 -0400 | [diff] [blame] | 125 | write_sequnlock(&mount_lock); |
Al Viro | 719ea2f | 2013-09-29 11:24:49 -0400 | [diff] [blame] | 126 | } |
| 127 | |
Al Viro | 0226f49 | 2011-12-06 12:21:54 -0500 | [diff] [blame] | 128 | struct proc_mounts { |
Al Viro | 0226f49 | 2011-12-06 12:21:54 -0500 | [diff] [blame] | 129 | struct mnt_namespace *ns; |
| 130 | struct path root; |
| 131 | int (*show)(struct seq_file *, struct vfsmount *); |
Al Viro | c7999c3 | 2014-02-27 14:40:10 -0500 | [diff] [blame] | 132 | void *cached_mount; |
| 133 | u64 cached_event; |
| 134 | loff_t cached_index; |
Al Viro | 0226f49 | 2011-12-06 12:21:54 -0500 | [diff] [blame] | 135 | }; |
| 136 | |
| 137 | extern const struct seq_operations mounts_op; |
Eric W. Biederman | 7af1364 | 2013-10-04 19:15:13 -0700 | [diff] [blame] | 138 | |
| 139 | extern bool __is_local_mountpoint(struct dentry *dentry); |
| 140 | static inline bool is_local_mountpoint(struct dentry *dentry) |
| 141 | { |
| 142 | if (!d_mountpoint(dentry)) |
| 143 | return false; |
| 144 | |
| 145 | return __is_local_mountpoint(dentry); |
| 146 | } |