blob: 8f2a14ae38a20ea8132316a9c7573ecb3ed156b1 [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>
4
5struct mnt_namespace {
6 atomic_t count;
Eric W. Biederman98f842e2011-06-15 10:21:48 -07007 unsigned int proc_inum;
Al Virobe08d6d2011-12-06 13:32:36 -05008 struct mount * root;
Al Viro0226f492011-12-06 12:21:54 -05009 struct list_head list;
Eric W. Biederman771b1372012-07-26 21:08:32 -070010 struct user_namespace *user_ns;
Eric W. Biederman8823c072010-03-07 18:49:36 -080011 u64 seq; /* Sequence number to prevent loops */
Al Viro0226f492011-12-06 12:21:54 -050012 wait_queue_head_t poll;
Al Viroc7999c32014-02-27 14:40:10 -050013 u64 event;
Al Viro0226f492011-12-06 12:21:54 -050014};
Al Virob2dba1a2011-11-23 19:26:23 -050015
Al Viro68e8a9f2011-11-24 22:53:09 -050016struct mnt_pcp {
17 int mnt_count;
18 int mnt_writers;
19};
20
Al Viro84d17192013-03-15 10:53:28 -040021struct mountpoint {
Al Viro0818bf22014-02-28 13:46:44 -050022 struct hlist_node m_hash;
Al Viro84d17192013-03-15 10:53:28 -040023 struct dentry *m_dentry;
24 int m_count;
25};
26
Al Viro7d6fec42011-11-23 12:14:10 -050027struct mount {
Al Viro38129a12014-03-20 21:10:51 -040028 struct hlist_node mnt_hash;
Al Viro0714a532011-11-24 22:19:58 -050029 struct mount *mnt_parent;
Al Viroa73324d2011-11-24 22:25:07 -050030 struct dentry *mnt_mountpoint;
Al Viro7d6fec42011-11-23 12:14:10 -050031 struct vfsmount mnt;
Al Viro9ea459e2014-08-08 13:08:20 -040032 union {
33 struct rcu_head mnt_rcu;
34 struct llist_node mnt_llist;
35 };
Al Viro68e8a9f2011-11-24 22:53:09 -050036#ifdef CONFIG_SMP
37 struct mnt_pcp __percpu *mnt_pcp;
Al Viro68e8a9f2011-11-24 22:53:09 -050038#else
39 int mnt_count;
40 int mnt_writers;
41#endif
Al Viro6b41d532011-11-24 23:24:33 -050042 struct list_head mnt_mounts; /* list of children, anchored here */
43 struct list_head mnt_child; /* and going through their mnt_child */
Miklos Szeredi39f7c4d2011-11-21 12:11:30 +010044 struct list_head mnt_instance; /* mount instance on sb->s_mounts */
Al Viro52ba1622011-11-25 02:25:17 -050045 const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
Al Viro1a4eeaf2011-11-25 02:19:55 -050046 struct list_head mnt_list;
Al Viro6776db3d2011-11-25 00:22:05 -050047 struct list_head mnt_expire; /* link in fs-specific expiry list */
48 struct list_head mnt_share; /* circular list of shared mounts */
49 struct list_head mnt_slave_list;/* list of slave mounts */
50 struct list_head mnt_slave; /* slave list entry */
Al Viro32301922011-11-25 00:10:28 -050051 struct mount *mnt_master; /* slave is on master->mnt_slave_list */
Al Viro143c8c92011-11-25 00:46:35 -050052 struct mnt_namespace *mnt_ns; /* containing namespace */
Al Viro84d17192013-03-15 10:53:28 -040053 struct mountpoint *mnt_mp; /* where is it mounted */
Al Viroc63181e2011-11-25 02:35:16 -050054#ifdef CONFIG_FSNOTIFY
55 struct hlist_head mnt_fsnotify_marks;
56 __u32 mnt_fsnotify_mask;
57#endif
Al Viro15169fe2011-11-25 00:50:41 -050058 int mnt_id; /* mount identifier */
59 int mnt_group_id; /* peer group identifier */
Al Viro863d6842011-11-25 00:57:42 -050060 int mnt_expiry_mark; /* true if marked for expiry */
Al Viro215752f2014-08-07 06:23:41 -040061 struct hlist_head mnt_pins;
Al Viroaba809cf2013-09-28 23:10:55 -040062 struct path mnt_ex_mountpoint;
Al Viro7d6fec42011-11-23 12:14:10 -050063};
64
Al Virof7a99c52012-06-09 00:59:08 -040065#define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */
66
Al Viro7d6fec42011-11-23 12:14:10 -050067static inline struct mount *real_mount(struct vfsmount *mnt)
68{
69 return container_of(mnt, struct mount, mnt);
70}
71
Al Viro676da582011-11-24 21:47:05 -050072static inline int mnt_has_parent(struct mount *mnt)
Al Virob2dba1a2011-11-23 19:26:23 -050073{
Al Viro0714a532011-11-24 22:19:58 -050074 return mnt != mnt->mnt_parent;
Al Virob2dba1a2011-11-23 19:26:23 -050075}
Al Viroc7105362011-11-24 18:22:03 -050076
Al Virof7a99c52012-06-09 00:59:08 -040077static inline int is_mounted(struct vfsmount *mnt)
78{
79 /* neither detached nor internal? */
Eric W. Biederman260a4592014-01-20 15:26:15 -080080 return !IS_ERR_OR_NULL(real_mount(mnt)->mnt_ns);
Al Virof7a99c52012-06-09 00:59:08 -040081}
82
Al Viro474279d2013-10-01 16:11:26 -040083extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *);
84extern struct mount *__lookup_mnt_last(struct vfsmount *, struct dentry *);
Al Viro0226f492011-12-06 12:21:54 -050085
Al Viro48a066e2013-09-29 22:06:07 -040086extern bool legitimize_mnt(struct vfsmount *, unsigned);
87
Al Viro0226f492011-12-06 12:21:54 -050088static inline void get_mnt_ns(struct mnt_namespace *ns)
89{
90 atomic_inc(&ns->count);
91}
92
Al Viro48a066e2013-09-29 22:06:07 -040093extern seqlock_t mount_lock;
Al Viro719ea2f2013-09-29 11:24:49 -040094
95static inline void lock_mount_hash(void)
96{
Al Viro48a066e2013-09-29 22:06:07 -040097 write_seqlock(&mount_lock);
Al Viro719ea2f2013-09-29 11:24:49 -040098}
99
100static inline void unlock_mount_hash(void)
101{
Al Viro48a066e2013-09-29 22:06:07 -0400102 write_sequnlock(&mount_lock);
Al Viro719ea2f2013-09-29 11:24:49 -0400103}
104
Al Viro0226f492011-12-06 12:21:54 -0500105struct proc_mounts {
Al Viro6ce6e242012-06-09 01:16:59 -0400106 struct seq_file m;
Al Viro0226f492011-12-06 12:21:54 -0500107 struct mnt_namespace *ns;
108 struct path root;
109 int (*show)(struct seq_file *, struct vfsmount *);
Al Viroc7999c32014-02-27 14:40:10 -0500110 void *cached_mount;
111 u64 cached_event;
112 loff_t cached_index;
Al Viro0226f492011-12-06 12:21:54 -0500113};
114
Al Viro6ce6e242012-06-09 01:16:59 -0400115#define proc_mounts(p) (container_of((p), struct proc_mounts, m))
116
Al Viro0226f492011-12-06 12:21:54 -0500117extern const struct seq_operations mounts_op;