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