blob: 630fafc616bb690b3b389375483051e210ac90d2 [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;
Al Virobe08d6d2011-12-06 13:32:36 -05007 struct mount * root;
Al Viro0226f492011-12-06 12:21:54 -05008 struct list_head list;
Eric W. Biederman771b1372012-07-26 21:08:32 -07009 struct user_namespace *user_ns;
Eric W. Biederman8823c072010-03-07 18:49:36 -080010 u64 seq; /* Sequence number to prevent loops */
Al Viro0226f492011-12-06 12:21:54 -050011 wait_queue_head_t poll;
12 int event;
13};
Al Virob2dba1a2011-11-23 19:26:23 -050014
Al Viro68e8a9f2011-11-24 22:53:09 -050015struct mnt_pcp {
16 int mnt_count;
17 int mnt_writers;
18};
19
Al Viro7d6fec42011-11-23 12:14:10 -050020struct mount {
Al Viro1b8e5562011-11-24 21:01:32 -050021 struct list_head mnt_hash;
Al Viro0714a532011-11-24 22:19:58 -050022 struct mount *mnt_parent;
Al Viroa73324d2011-11-24 22:25:07 -050023 struct dentry *mnt_mountpoint;
Al Viro7d6fec42011-11-23 12:14:10 -050024 struct vfsmount mnt;
Al Viro68e8a9f2011-11-24 22:53:09 -050025#ifdef CONFIG_SMP
26 struct mnt_pcp __percpu *mnt_pcp;
Al Viro68e8a9f2011-11-24 22:53:09 -050027#else
28 int mnt_count;
29 int mnt_writers;
30#endif
Al Viro6b41d532011-11-24 23:24:33 -050031 struct list_head mnt_mounts; /* list of children, anchored here */
32 struct list_head mnt_child; /* and going through their mnt_child */
Miklos Szeredi39f7c4d2011-11-21 12:11:30 +010033 struct list_head mnt_instance; /* mount instance on sb->s_mounts */
Al Viro52ba1622011-11-25 02:25:17 -050034 const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
Al Viro1a4eeaf2011-11-25 02:19:55 -050035 struct list_head mnt_list;
Al Viro6776db3d2011-11-25 00:22:05 -050036 struct list_head mnt_expire; /* link in fs-specific expiry list */
37 struct list_head mnt_share; /* circular list of shared mounts */
38 struct list_head mnt_slave_list;/* list of slave mounts */
39 struct list_head mnt_slave; /* slave list entry */
Al Viro32301922011-11-25 00:10:28 -050040 struct mount *mnt_master; /* slave is on master->mnt_slave_list */
Al Viro143c8c92011-11-25 00:46:35 -050041 struct mnt_namespace *mnt_ns; /* containing namespace */
Al Viroc63181e2011-11-25 02:35:16 -050042#ifdef CONFIG_FSNOTIFY
43 struct hlist_head mnt_fsnotify_marks;
44 __u32 mnt_fsnotify_mask;
45#endif
Al Viro15169fe2011-11-25 00:50:41 -050046 int mnt_id; /* mount identifier */
47 int mnt_group_id; /* peer group identifier */
Al Viro863d6842011-11-25 00:57:42 -050048 int mnt_expiry_mark; /* true if marked for expiry */
49 int mnt_pinned;
50 int mnt_ghosts;
Al Viro7d6fec42011-11-23 12:14:10 -050051};
52
Al Virof7a99c52012-06-09 00:59:08 -040053#define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */
54
Al Viro7d6fec42011-11-23 12:14:10 -050055static inline struct mount *real_mount(struct vfsmount *mnt)
56{
57 return container_of(mnt, struct mount, mnt);
58}
59
Al Viro676da582011-11-24 21:47:05 -050060static inline int mnt_has_parent(struct mount *mnt)
Al Virob2dba1a2011-11-23 19:26:23 -050061{
Al Viro0714a532011-11-24 22:19:58 -050062 return mnt != mnt->mnt_parent;
Al Virob2dba1a2011-11-23 19:26:23 -050063}
Al Viroc7105362011-11-24 18:22:03 -050064
Al Virof7a99c52012-06-09 00:59:08 -040065static inline int is_mounted(struct vfsmount *mnt)
66{
67 /* neither detached nor internal? */
68 return !IS_ERR_OR_NULL(real_mount(mnt));
69}
70
Al Viroc7105362011-11-24 18:22:03 -050071extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *, int);
Al Viro0226f492011-12-06 12:21:54 -050072
73static inline void get_mnt_ns(struct mnt_namespace *ns)
74{
75 atomic_inc(&ns->count);
76}
77
78struct proc_mounts {
Al Viro6ce6e242012-06-09 01:16:59 -040079 struct seq_file m;
Al Viro0226f492011-12-06 12:21:54 -050080 struct mnt_namespace *ns;
81 struct path root;
82 int (*show)(struct seq_file *, struct vfsmount *);
83};
84
Al Viro6ce6e242012-06-09 01:16:59 -040085#define proc_mounts(p) (container_of((p), struct proc_mounts, m))
86
Al Viro0226f492011-12-06 12:21:54 -050087extern const struct seq_operations mounts_op;