blob: e037981d8351657d94a987010d45418c2f488bff [file] [log] [blame]
Al Virob2dba1a2011-11-23 19:26:23 -05001#include <linux/mount.h>
Al Viro0226f492011-12-06 12:21:54 -05002#include <linux/seq_file.h>
3#include <linux/poll.h>
Al Viro435d5f42014-10-31 22:56:04 -04004#include <linux/ns_common.h>
Al Viro87b95ce2015-01-10 19:01:08 -05005#include <linux/fs_pin.h>
Al Viro0226f492011-12-06 12:21:54 -05006
7struct mnt_namespace {
8 atomic_t count;
Al Viro435d5f42014-10-31 22:56:04 -04009 struct ns_common ns;
Al Virobe08d6d2011-12-06 13:32:36 -050010 struct mount * root;
Al Viro0226f492011-12-06 12:21:54 -050011 struct list_head list;
Eric W. Biederman771b1372012-07-26 21:08:32 -070012 struct user_namespace *user_ns;
Eric W. Biederman537f7cc2016-08-08 14:37:37 -050013 struct ucounts *ucounts;
Eric W. Biederman8823c072010-03-07 18:49:36 -080014 u64 seq; /* Sequence number to prevent loops */
Al Viro0226f492011-12-06 12:21:54 -050015 wait_queue_head_t poll;
Al Viroc7999c32014-02-27 14:40:10 -050016 u64 event;
Al Viro0226f492011-12-06 12:21:54 -050017};
Al Virob2dba1a2011-11-23 19:26:23 -050018
Al Viro68e8a9f2011-11-24 22:53:09 -050019struct mnt_pcp {
20 int mnt_count;
21 int mnt_writers;
22};
23
Al Viro84d17192013-03-15 10:53:28 -040024struct mountpoint {
Al Viro0818bf22014-02-28 13:46:44 -050025 struct hlist_node m_hash;
Al Viro84d17192013-03-15 10:53:28 -040026 struct dentry *m_dentry;
Eric W. Biederman0a5eb7c2013-09-22 19:37:01 -070027 struct hlist_head m_list;
Al Viro84d17192013-03-15 10:53:28 -040028 int m_count;
29};
30
Al Viro7d6fec42011-11-23 12:14:10 -050031struct mount {
Al Viro38129a12014-03-20 21:10:51 -040032 struct hlist_node mnt_hash;
Al Viro0714a532011-11-24 22:19:58 -050033 struct mount *mnt_parent;
Al Viroa73324d2011-11-24 22:25:07 -050034 struct dentry *mnt_mountpoint;
Al Viro7d6fec42011-11-23 12:14:10 -050035 struct vfsmount mnt;
Al Viro9ea459e2014-08-08 13:08:20 -040036 union {
37 struct rcu_head mnt_rcu;
38 struct llist_node mnt_llist;
39 };
Al Viro68e8a9f2011-11-24 22:53:09 -050040#ifdef CONFIG_SMP
41 struct mnt_pcp __percpu *mnt_pcp;
Al Viro68e8a9f2011-11-24 22:53:09 -050042#else
43 int mnt_count;
44 int mnt_writers;
45#endif
Al Viro6b41d532011-11-24 23:24:33 -050046 struct list_head mnt_mounts; /* list of children, anchored here */
47 struct list_head mnt_child; /* and going through their mnt_child */
Miklos Szeredi39f7c4d2011-11-21 12:11:30 +010048 struct list_head mnt_instance; /* mount instance on sb->s_mounts */
Al Viro52ba1622011-11-25 02:25:17 -050049 const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
Al Viro1a4eeaf2011-11-25 02:19:55 -050050 struct list_head mnt_list;
Al Viro6776db3d2011-11-25 00:22:05 -050051 struct list_head mnt_expire; /* link in fs-specific expiry list */
52 struct list_head mnt_share; /* circular list of shared mounts */
53 struct list_head mnt_slave_list;/* list of slave mounts */
54 struct list_head mnt_slave; /* slave list entry */
Al Viro32301922011-11-25 00:10:28 -050055 struct mount *mnt_master; /* slave is on master->mnt_slave_list */
Al Viro143c8c92011-11-25 00:46:35 -050056 struct mnt_namespace *mnt_ns; /* containing namespace */
Al Viro84d17192013-03-15 10:53:28 -040057 struct mountpoint *mnt_mp; /* where is it mounted */
Eric W. Biederman0a5eb7c2013-09-22 19:37:01 -070058 struct hlist_node mnt_mp_list; /* list mounts with the same mountpoint */
Al Viroc63181e2011-11-25 02:35:16 -050059#ifdef CONFIG_FSNOTIFY
60 struct hlist_head mnt_fsnotify_marks;
61 __u32 mnt_fsnotify_mask;
62#endif
Al Viro15169fe2011-11-25 00:50:41 -050063 int mnt_id; /* mount identifier */
64 int mnt_group_id; /* peer group identifier */
Al Viro863d6842011-11-25 00:57:42 -050065 int mnt_expiry_mark; /* true if marked for expiry */
Al Viro215752f2014-08-07 06:23:41 -040066 struct hlist_head mnt_pins;
Al Viro87b95ce2015-01-10 19:01:08 -050067 struct fs_pin mnt_umount;
68 struct dentry *mnt_ex_mountpoint;
Al Viro7d6fec42011-11-23 12:14:10 -050069};
70
Al Virof7a99c52012-06-09 00:59:08 -040071#define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */
72
Al Viro7d6fec42011-11-23 12:14:10 -050073static inline struct mount *real_mount(struct vfsmount *mnt)
74{
75 return container_of(mnt, struct mount, mnt);
76}
77
Al Viro676da582011-11-24 21:47:05 -050078static inline int mnt_has_parent(struct mount *mnt)
Al Virob2dba1a2011-11-23 19:26:23 -050079{
Al Viro0714a532011-11-24 22:19:58 -050080 return mnt != mnt->mnt_parent;
Al Virob2dba1a2011-11-23 19:26:23 -050081}
Al Viroc7105362011-11-24 18:22:03 -050082
Al Virof7a99c52012-06-09 00:59:08 -040083static inline int is_mounted(struct vfsmount *mnt)
84{
85 /* neither detached nor internal? */
Eric W. Biederman260a4592014-01-20 15:26:15 -080086 return !IS_ERR_OR_NULL(real_mount(mnt)->mnt_ns);
Al Virof7a99c52012-06-09 00:59:08 -040087}
88
Al Viro474279d2013-10-01 16:11:26 -040089extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *);
90extern struct mount *__lookup_mnt_last(struct vfsmount *, struct dentry *);
Al Viro0226f492011-12-06 12:21:54 -050091
Al Viro294d71f2015-05-08 11:43:53 -040092extern int __legitimize_mnt(struct vfsmount *, unsigned);
Al Viro48a066e2013-09-29 22:06:07 -040093extern bool legitimize_mnt(struct vfsmount *, unsigned);
94
Eric W. Biederman80b5dce2013-10-03 01:31:18 -070095extern void __detach_mounts(struct dentry *dentry);
96
97static inline void detach_mounts(struct dentry *dentry)
98{
99 if (!d_mountpoint(dentry))
100 return;
101 __detach_mounts(dentry);
102}
103
Al Viro0226f492011-12-06 12:21:54 -0500104static inline void get_mnt_ns(struct mnt_namespace *ns)
105{
106 atomic_inc(&ns->count);
107}
108
Al Viro48a066e2013-09-29 22:06:07 -0400109extern seqlock_t mount_lock;
Al Viro719ea2f2013-09-29 11:24:49 -0400110
111static inline void lock_mount_hash(void)
112{
Al Viro48a066e2013-09-29 22:06:07 -0400113 write_seqlock(&mount_lock);
Al Viro719ea2f2013-09-29 11:24:49 -0400114}
115
116static inline void unlock_mount_hash(void)
117{
Al Viro48a066e2013-09-29 22:06:07 -0400118 write_sequnlock(&mount_lock);
Al Viro719ea2f2013-09-29 11:24:49 -0400119}
120
Al Viro0226f492011-12-06 12:21:54 -0500121struct proc_mounts {
Al Viro0226f492011-12-06 12:21:54 -0500122 struct mnt_namespace *ns;
123 struct path root;
124 int (*show)(struct seq_file *, struct vfsmount *);
Al Viroc7999c32014-02-27 14:40:10 -0500125 void *cached_mount;
126 u64 cached_event;
127 loff_t cached_index;
Al Viro0226f492011-12-06 12:21:54 -0500128};
129
130extern const struct seq_operations mounts_op;
Eric W. Biederman7af13642013-10-04 19:15:13 -0700131
132extern bool __is_local_mountpoint(struct dentry *dentry);
133static inline bool is_local_mountpoint(struct dentry *dentry)
134{
135 if (!d_mountpoint(dentry))
136 return false;
137
138 return __is_local_mountpoint(dentry);
139}