usb: gadget: f_mtp: Avoid race between mtp_read and mtp_function_disable
[GitHub/exynos8895/android_kernel_samsung_universal8895.git] / fs / mount.h
CommitLineData
b2dba1af 1#include <linux/mount.h>
0226f492
AV
2#include <linux/seq_file.h>
3#include <linux/poll.h>
435d5f4b 4#include <linux/ns_common.h>
87b95ce0 5#include <linux/fs_pin.h>
0226f492
AV
6
7struct mnt_namespace {
8 atomic_t count;
435d5f4b 9 struct ns_common ns;
be08d6d2 10 struct mount * root;
0226f492 11 struct list_head list;
771b1371 12 struct user_namespace *user_ns;
8823c079 13 u64 seq; /* Sequence number to prevent loops */
0226f492 14 wait_queue_head_t poll;
c7999c36 15 u64 event;
c50fd34e
EB
16 unsigned int mounts; /* # of mounts in the namespace */
17 unsigned int pending_mounts;
0226f492 18};
b2dba1af 19
68e8a9fe
AV
20struct mnt_pcp {
21 int mnt_count;
22 int mnt_writers;
23};
24
84d17192 25struct mountpoint {
0818bf27 26 struct hlist_node m_hash;
84d17192 27 struct dentry *m_dentry;
0a5eb7c8 28 struct hlist_head m_list;
84d17192
AV
29 int m_count;
30};
31
7d6fec45 32struct mount {
38129a13 33 struct hlist_node mnt_hash;
0714a533 34 struct mount *mnt_parent;
a73324da 35 struct dentry *mnt_mountpoint;
1cac41cb
MB
36#ifdef CONFIG_RKP_NS_PROT
37 struct vfsmount *mnt;
38#else
7d6fec45 39 struct vfsmount mnt;
1cac41cb 40#endif
9ea459e1
AV
41 union {
42 struct rcu_head mnt_rcu;
43 struct llist_node mnt_llist;
44 };
68e8a9fe
AV
45#ifdef CONFIG_SMP
46 struct mnt_pcp __percpu *mnt_pcp;
68e8a9fe
AV
47#else
48 int mnt_count;
49 int mnt_writers;
50#endif
6b41d536
AV
51 struct list_head mnt_mounts; /* list of children, anchored here */
52 struct list_head mnt_child; /* and going through their mnt_child */
39f7c4db 53 struct list_head mnt_instance; /* mount instance on sb->s_mounts */
52ba1621 54 const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
1a4eeaf2 55 struct list_head mnt_list;
6776db3d
AV
56 struct list_head mnt_expire; /* link in fs-specific expiry list */
57 struct list_head mnt_share; /* circular list of shared mounts */
58 struct list_head mnt_slave_list;/* list of slave mounts */
59 struct list_head mnt_slave; /* slave list entry */
32301920 60 struct mount *mnt_master; /* slave is on master->mnt_slave_list */
143c8c91 61 struct mnt_namespace *mnt_ns; /* containing namespace */
84d17192 62 struct mountpoint *mnt_mp; /* where is it mounted */
0a5eb7c8 63 struct hlist_node mnt_mp_list; /* list mounts with the same mountpoint */
fdb8f104 64 struct list_head mnt_umounting; /* list entry for umount propagation */
c63181e6
AV
65#ifdef CONFIG_FSNOTIFY
66 struct hlist_head mnt_fsnotify_marks;
67 __u32 mnt_fsnotify_mask;
68#endif
15169fe7
AV
69 int mnt_id; /* mount identifier */
70 int mnt_group_id; /* peer group identifier */
863d684f 71 int mnt_expiry_mark; /* true if marked for expiry */
215752fc 72 struct hlist_head mnt_pins;
87b95ce0
AV
73 struct fs_pin mnt_umount;
74 struct dentry *mnt_ex_mountpoint;
7d6fec45
AV
75};
76
f7a99c5b
AV
77#define MNT_NS_INTERNAL ERR_PTR(-EINVAL) /* distinct from any mnt_namespace */
78
7d6fec45
AV
79static inline struct mount *real_mount(struct vfsmount *mnt)
80{
1cac41cb
MB
81#ifdef CONFIG_RKP_NS_PROT
82 return mnt->bp_mount;
83#else
7d6fec45 84 return container_of(mnt, struct mount, mnt);
1cac41cb 85#endif
7d6fec45
AV
86}
87
676da58d 88static inline int mnt_has_parent(struct mount *mnt)
b2dba1af 89{
0714a533 90 return mnt != mnt->mnt_parent;
b2dba1af 91}
c7105365 92
f7a99c5b
AV
93static inline int is_mounted(struct vfsmount *mnt)
94{
95 /* neither detached nor internal? */
260a459d 96 return !IS_ERR_OR_NULL(real_mount(mnt)->mnt_ns);
f7a99c5b
AV
97}
98
474279dc 99extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *);
0226f492 100
294d71ff 101extern int __legitimize_mnt(struct vfsmount *, unsigned);
48a066e7
AV
102extern bool legitimize_mnt(struct vfsmount *, unsigned);
103
80b5dce8
EB
104extern void __detach_mounts(struct dentry *dentry);
105
106static inline void detach_mounts(struct dentry *dentry)
107{
108 if (!d_mountpoint(dentry))
109 return;
110 __detach_mounts(dentry);
111}
112
0226f492
AV
113static inline void get_mnt_ns(struct mnt_namespace *ns)
114{
115 atomic_inc(&ns->count);
116}
117
48a066e7 118extern seqlock_t mount_lock;
719ea2fb
AV
119
120static inline void lock_mount_hash(void)
121{
48a066e7 122 write_seqlock(&mount_lock);
719ea2fb
AV
123}
124
125static inline void unlock_mount_hash(void)
126{
48a066e7 127 write_sequnlock(&mount_lock);
719ea2fb
AV
128}
129
0226f492 130struct proc_mounts {
0226f492
AV
131 struct mnt_namespace *ns;
132 struct path root;
133 int (*show)(struct seq_file *, struct vfsmount *);
c7999c36
AV
134 void *cached_mount;
135 u64 cached_event;
136 loff_t cached_index;
0226f492
AV
137};
138
139extern const struct seq_operations mounts_op;
7af1364f
EB
140
141extern bool __is_local_mountpoint(struct dentry *dentry);
142static inline bool is_local_mountpoint(struct dentry *dentry)
143{
144 if (!d_mountpoint(dentry))
145 return false;
146
147 return __is_local_mountpoint(dentry);
148}