mount.h 2.9 KB
Newer Older
1
#include <linux/mount.h>
2 3 4 5 6
#include <linux/seq_file.h>
#include <linux/poll.h>

struct mnt_namespace {
	atomic_t		count;
7
	unsigned int		proc_inum;
8
	struct mount *	root;
9
	struct list_head	list;
10
	struct user_namespace	*user_ns;
11
	u64			seq;	/* Sequence number to prevent loops */
12
	wait_queue_head_t poll;
A
Al Viro 已提交
13
	u64 event;
14
};
15

16 17 18 19 20
struct mnt_pcp {
	int mnt_count;
	int mnt_writers;
};

21
struct mountpoint {
A
Al Viro 已提交
22
	struct hlist_node m_hash;
23 24 25 26
	struct dentry *m_dentry;
	int m_count;
};

A
Al Viro 已提交
27
struct mount {
A
Al Viro 已提交
28
	struct hlist_node mnt_hash;
29
	struct mount *mnt_parent;
30
	struct dentry *mnt_mountpoint;
A
Al Viro 已提交
31
	struct vfsmount mnt;
A
Al Viro 已提交
32
	struct rcu_head mnt_rcu;
33 34 35 36 37 38
#ifdef CONFIG_SMP
	struct mnt_pcp __percpu *mnt_pcp;
#else
	int mnt_count;
	int mnt_writers;
#endif
39 40
	struct list_head mnt_mounts;	/* list of children, anchored here */
	struct list_head mnt_child;	/* and going through their mnt_child */
41
	struct list_head mnt_instance;	/* mount instance on sb->s_mounts */
A
Al Viro 已提交
42
	const char *mnt_devname;	/* Name of device e.g. /dev/dsk/hda1 */
A
Al Viro 已提交
43
	struct list_head mnt_list;
44 45 46 47
	struct list_head mnt_expire;	/* link in fs-specific expiry list */
	struct list_head mnt_share;	/* circular list of shared mounts */
	struct list_head mnt_slave_list;/* list of slave mounts */
	struct list_head mnt_slave;	/* slave list entry */
48
	struct mount *mnt_master;	/* slave is on master->mnt_slave_list */
A
Al Viro 已提交
49
	struct mnt_namespace *mnt_ns;	/* containing namespace */
50
	struct mountpoint *mnt_mp;	/* where is it mounted */
51 52 53 54
#ifdef CONFIG_FSNOTIFY
	struct hlist_head mnt_fsnotify_marks;
	__u32 mnt_fsnotify_mask;
#endif
A
Al Viro 已提交
55 56
	int mnt_id;			/* mount identifier */
	int mnt_group_id;		/* peer group identifier */
57 58
	int mnt_expiry_mark;		/* true if marked for expiry */
	int mnt_pinned;
A
Al Viro 已提交
59
	struct path mnt_ex_mountpoint;
A
Al Viro 已提交
60 61
};

A
Al Viro 已提交
62 63
#define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */

A
Al Viro 已提交
64 65 66 67 68
static inline struct mount *real_mount(struct vfsmount *mnt)
{
	return container_of(mnt, struct mount, mnt);
}

69
static inline int mnt_has_parent(struct mount *mnt)
70
{
71
	return mnt != mnt->mnt_parent;
72
}
73

A
Al Viro 已提交
74 75 76
static inline int is_mounted(struct vfsmount *mnt)
{
	/* neither detached nor internal? */
77
	return !IS_ERR_OR_NULL(real_mount(mnt)->mnt_ns);
A
Al Viro 已提交
78 79
}

A
Al Viro 已提交
80 81
extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *);
extern struct mount *__lookup_mnt_last(struct vfsmount *, struct dentry *);
82

A
Al Viro 已提交
83 84
extern bool legitimize_mnt(struct vfsmount *, unsigned);

85 86 87 88 89
static inline void get_mnt_ns(struct mnt_namespace *ns)
{
	atomic_inc(&ns->count);
}

A
Al Viro 已提交
90
extern seqlock_t mount_lock;
91 92 93

static inline void lock_mount_hash(void)
{
A
Al Viro 已提交
94
	write_seqlock(&mount_lock);
95 96 97 98
}

static inline void unlock_mount_hash(void)
{
A
Al Viro 已提交
99
	write_sequnlock(&mount_lock);
100 101
}

102
struct proc_mounts {
A
Al Viro 已提交
103
	struct seq_file m;
104 105 106
	struct mnt_namespace *ns;
	struct path root;
	int (*show)(struct seq_file *, struct vfsmount *);
A
Al Viro 已提交
107 108 109
	void *cached_mount;
	u64 cached_event;
	loff_t cached_index;
110 111
};

A
Al Viro 已提交
112 113
#define proc_mounts(p) (container_of((p), struct proc_mounts, m))

114
extern const struct seq_operations mounts_op;