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