]>
Commit | Line | Data |
---|---|---|
e9a7c2f1 IK |
1 | /* |
2 | * Copyright 1997-1998 Transmeta Corporation - All Rights Reserved | |
3 | * Copyright 2005-2006 Ian Kent <[email protected]> | |
1da177e4 LT |
4 | * |
5 | * This file is part of the Linux kernel and is made available under | |
6 | * the terms of the GNU General Public License, version 2, or at your | |
7 | * option, any later version, incorporated herein by reference. | |
e9a7c2f1 | 8 | */ |
1da177e4 LT |
9 | |
10 | /* Internal header file for autofs */ | |
11 | ||
12 | #include <linux/auto_fs4.h> | |
8d7b48e0 | 13 | #include <linux/auto_dev-ioctl.h> |
1d5599e3 | 14 | #include <linux/mutex.h> |
b5c84bf6 | 15 | #include <linux/spinlock.h> |
1da177e4 LT |
16 | #include <linux/list.h> |
17 | ||
18 | /* This is the range of ioctl() numbers we claim as ours */ | |
19 | #define AUTOFS_IOC_FIRST AUTOFS_IOC_READY | |
20 | #define AUTOFS_IOC_COUNT 32 | |
21 | ||
8d7b48e0 | 22 | #define AUTOFS_DEV_IOCTL_IOC_FIRST (AUTOFS_DEV_IOCTL_VERSION) |
aa841936 IK |
23 | #define AUTOFS_DEV_IOCTL_IOC_COUNT \ |
24 | (AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD - AUTOFS_DEV_IOCTL_VERSION_CMD) | |
8d7b48e0 | 25 | |
1da177e4 LT |
26 | #include <linux/kernel.h> |
27 | #include <linux/slab.h> | |
28 | #include <linux/time.h> | |
29 | #include <linux/string.h> | |
30 | #include <linux/wait.h> | |
31 | #include <linux/sched.h> | |
32 | #include <linux/mount.h> | |
33 | #include <linux/namei.h> | |
34 | #include <asm/current.h> | |
e9a7c2f1 | 35 | #include <linux/uaccess.h> |
1da177e4 | 36 | |
8a78d593 IK |
37 | #ifdef pr_fmt |
38 | #undef pr_fmt | |
39 | #endif | |
40 | #define pr_fmt(fmt) KBUILD_MODNAME ":pid:%d:%s: " fmt, current->pid, __func__ | |
8d7b48e0 | 41 | |
e9a7c2f1 IK |
42 | /* |
43 | * Unified info structure. This is pointed to by both the dentry and | |
44 | * inode structures. Each file in the filesystem has an instance of this | |
45 | * structure. It holds a reference to the dentry, so dentries are never | |
46 | * flushed while the file exists. All name lookups are dealt with at the | |
47 | * dentry level, although the filesystem can interfere in the validation | |
48 | * process. Readdir is implemented by traversing the dentry lists. | |
49 | */ | |
1da177e4 LT |
50 | struct autofs_info { |
51 | struct dentry *dentry; | |
52 | struct inode *inode; | |
53 | ||
54 | int flags; | |
55 | ||
6e60a9ab IK |
56 | struct completion expire_complete; |
57 | ||
25767378 | 58 | struct list_head active; |
4f8427d1 IK |
59 | int active_count; |
60 | ||
5f6f4f28 | 61 | struct list_head expiring; |
f50b6f86 | 62 | |
1da177e4 LT |
63 | struct autofs_sb_info *sbi; |
64 | unsigned long last_used; | |
1aff3c8b | 65 | atomic_t count; |
1da177e4 | 66 | |
45634cd8 EB |
67 | kuid_t uid; |
68 | kgid_t gid; | |
1da177e4 LT |
69 | }; |
70 | ||
e9a7c2f1 | 71 | #define AUTOFS_INF_EXPIRING (1<<0) /* dentry in the process of expiring */ |
ea01a184 | 72 | #define AUTOFS_INF_WANT_EXPIRE (1<<1) /* the dentry is being considered |
4d885f90 | 73 | * for expiry, so RCU_walk is |
ea01a184 AV |
74 | * not permitted. If it progresses to |
75 | * actual expiry attempt, the flag is | |
76 | * not cleared when EXPIRING is set - | |
77 | * in that case it gets cleared only | |
78 | * when it comes to clearing EXPIRING. | |
4d885f90 | 79 | */ |
aa952eb2 | 80 | #define AUTOFS_INF_PENDING (1<<2) /* dentry pending mount */ |
1da177e4 LT |
81 | |
82 | struct autofs_wait_queue { | |
83 | wait_queue_head_t queue; | |
84 | struct autofs_wait_queue *next; | |
85 | autofs_wqt_t wait_queue_token; | |
86 | /* We use the following to see what we are waiting for */ | |
70b52a0a | 87 | struct qstr name; |
5c0a32fc IK |
88 | u32 dev; |
89 | u64 ino; | |
45634cd8 EB |
90 | kuid_t uid; |
91 | kgid_t gid; | |
5c0a32fc IK |
92 | pid_t pid; |
93 | pid_t tgid; | |
1da177e4 LT |
94 | /* This is for status reporting upon return */ |
95 | int status; | |
296f7bf7 | 96 | unsigned int wait_ctr; |
1da177e4 LT |
97 | }; |
98 | ||
99 | #define AUTOFS_SBI_MAGIC 0x6d4a556d | |
100 | ||
101 | struct autofs_sb_info { | |
102 | u32 magic; | |
d7c4a5f1 | 103 | int pipefd; |
1da177e4 | 104 | struct file *pipe; |
6eaba35b | 105 | struct pid *oz_pgrp; |
1da177e4 LT |
106 | int catatonic; |
107 | int version; | |
108 | int sub_version; | |
d7c4a5f1 IK |
109 | int min_proto; |
110 | int max_proto; | |
1da177e4 | 111 | unsigned long exp_timeout; |
34ca959c | 112 | unsigned int type; |
1da177e4 | 113 | struct super_block *sb; |
1d5599e3 | 114 | struct mutex wq_mutex; |
d668dc56 | 115 | struct mutex pipe_mutex; |
3a9720ce | 116 | spinlock_t fs_lock; |
1da177e4 | 117 | struct autofs_wait_queue *queues; /* Wait queue pointer */ |
5f6f4f28 | 118 | spinlock_t lookup_lock; |
25767378 | 119 | struct list_head active_list; |
5f6f4f28 | 120 | struct list_head expiring_list; |
baa40671 | 121 | struct rcu_head rcu; |
1da177e4 LT |
122 | }; |
123 | ||
124 | static inline struct autofs_sb_info *autofs4_sbi(struct super_block *sb) | |
125 | { | |
126 | return (struct autofs_sb_info *)(sb->s_fs_info); | |
127 | } | |
128 | ||
129 | static inline struct autofs_info *autofs4_dentry_ino(struct dentry *dentry) | |
130 | { | |
131 | return (struct autofs_info *)(dentry->d_fsdata); | |
132 | } | |
133 | ||
134 | /* autofs4_oz_mode(): do we see the man behind the curtain? (The | |
e9a7c2f1 IK |
135 | * processes which do manipulations for us in user space sees the raw |
136 | * filesystem without "magic".) | |
137 | */ | |
138 | static inline int autofs4_oz_mode(struct autofs_sb_info *sbi) | |
139 | { | |
6eaba35b | 140 | return sbi->catatonic || task_pgrp(current) == sbi->oz_pgrp; |
1da177e4 LT |
141 | } |
142 | ||
030a8ba4 | 143 | struct inode *autofs4_get_inode(struct super_block *, umode_t); |
1da177e4 LT |
144 | void autofs4_free_ino(struct autofs_info *); |
145 | ||
146 | /* Expiration */ | |
147 | int is_autofs4_dentry(struct dentry *); | |
23bfc2a2 | 148 | int autofs4_expire_wait(struct dentry *dentry, int rcu_walk); |
1da177e4 | 149 | int autofs4_expire_run(struct super_block *, struct vfsmount *, |
e9a7c2f1 IK |
150 | struct autofs_sb_info *, |
151 | struct autofs_packet_expire __user *); | |
56fcef75 IK |
152 | int autofs4_do_expire_multi(struct super_block *sb, struct vfsmount *mnt, |
153 | struct autofs_sb_info *sbi, int when); | |
1da177e4 | 154 | int autofs4_expire_multi(struct super_block *, struct vfsmount *, |
e9a7c2f1 | 155 | struct autofs_sb_info *, int __user *); |
8d7b48e0 IK |
156 | struct dentry *autofs4_expire_direct(struct super_block *sb, |
157 | struct vfsmount *mnt, | |
158 | struct autofs_sb_info *sbi, int how); | |
159 | struct dentry *autofs4_expire_indirect(struct super_block *sb, | |
160 | struct vfsmount *mnt, | |
161 | struct autofs_sb_info *sbi, int how); | |
162 | ||
163 | /* Device node initialization */ | |
164 | ||
165 | int autofs_dev_ioctl_init(void); | |
166 | void autofs_dev_ioctl_exit(void); | |
1da177e4 LT |
167 | |
168 | /* Operations structures */ | |
169 | ||
754661f1 AV |
170 | extern const struct inode_operations autofs4_symlink_inode_operations; |
171 | extern const struct inode_operations autofs4_dir_inode_operations; | |
4b6f5d20 AV |
172 | extern const struct file_operations autofs4_dir_operations; |
173 | extern const struct file_operations autofs4_root_operations; | |
71e469db | 174 | extern const struct dentry_operations autofs4_dentry_operations; |
10584211 IK |
175 | |
176 | /* VFS automount flags management functions */ | |
b5b80177 IK |
177 | static inline void __managed_dentry_set_managed(struct dentry *dentry) |
178 | { | |
179 | dentry->d_flags |= (DCACHE_NEED_AUTOMOUNT|DCACHE_MANAGE_TRANSIT); | |
180 | } | |
181 | ||
182 | static inline void managed_dentry_set_managed(struct dentry *dentry) | |
183 | { | |
184 | spin_lock(&dentry->d_lock); | |
185 | __managed_dentry_set_managed(dentry); | |
186 | spin_unlock(&dentry->d_lock); | |
187 | } | |
188 | ||
189 | static inline void __managed_dentry_clear_managed(struct dentry *dentry) | |
190 | { | |
191 | dentry->d_flags &= ~(DCACHE_NEED_AUTOMOUNT|DCACHE_MANAGE_TRANSIT); | |
192 | } | |
193 | ||
194 | static inline void managed_dentry_clear_managed(struct dentry *dentry) | |
195 | { | |
196 | spin_lock(&dentry->d_lock); | |
197 | __managed_dentry_clear_managed(dentry); | |
198 | spin_unlock(&dentry->d_lock); | |
199 | } | |
200 | ||
1da177e4 LT |
201 | /* Initializing function */ |
202 | ||
203 | int autofs4_fill_super(struct super_block *, void *, int); | |
26e6c910 AV |
204 | struct autofs_info *autofs4_new_ino(struct autofs_sb_info *); |
205 | void autofs4_clean_ino(struct autofs_info *); | |
1da177e4 | 206 | |
64f371bc LT |
207 | static inline int autofs_prepare_pipe(struct file *pipe) |
208 | { | |
a35fb914 | 209 | if (!(pipe->f_mode & FMODE_CAN_WRITE)) |
64f371bc | 210 | return -EINVAL; |
496ad9aa | 211 | if (!S_ISFIFO(file_inode(pipe)->i_mode)) |
64f371bc LT |
212 | return -EINVAL; |
213 | /* We want a packet pipe */ | |
214 | pipe->f_flags |= O_DIRECT; | |
215 | return 0; | |
216 | } | |
217 | ||
1da177e4 LT |
218 | /* Queue management functions */ |
219 | ||
e9a7c2f1 IK |
220 | int autofs4_wait(struct autofs_sb_info *, struct dentry *, enum autofs_notify); |
221 | int autofs4_wait_release(struct autofs_sb_info *, autofs_wqt_t, int); | |
1da177e4 LT |
222 | void autofs4_catatonic_mode(struct autofs_sb_info *); |
223 | ||
5c0a32fc IK |
224 | static inline u32 autofs4_get_dev(struct autofs_sb_info *sbi) |
225 | { | |
226 | return new_encode_dev(sbi->sb->s_dev); | |
227 | } | |
228 | ||
229 | static inline u64 autofs4_get_ino(struct autofs_sb_info *sbi) | |
230 | { | |
2b0143b5 | 231 | return d_inode(sbi->sb->s_root)->i_ino; |
5c0a32fc IK |
232 | } |
233 | ||
2fd6b7f5 NP |
234 | static inline void __autofs4_add_expiring(struct dentry *dentry) |
235 | { | |
236 | struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb); | |
237 | struct autofs_info *ino = autofs4_dentry_ino(dentry); | |
e9a7c2f1 | 238 | |
2fd6b7f5 NP |
239 | if (ino) { |
240 | if (list_empty(&ino->expiring)) | |
241 | list_add(&ino->expiring, &sbi->expiring_list); | |
242 | } | |
2fd6b7f5 NP |
243 | } |
244 | ||
c4cd70b3 IK |
245 | static inline void autofs4_add_expiring(struct dentry *dentry) |
246 | { | |
247 | struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb); | |
248 | struct autofs_info *ino = autofs4_dentry_ino(dentry); | |
e9a7c2f1 | 249 | |
c4cd70b3 IK |
250 | if (ino) { |
251 | spin_lock(&sbi->lookup_lock); | |
252 | if (list_empty(&ino->expiring)) | |
253 | list_add(&ino->expiring, &sbi->expiring_list); | |
254 | spin_unlock(&sbi->lookup_lock); | |
255 | } | |
c4cd70b3 IK |
256 | } |
257 | ||
258 | static inline void autofs4_del_expiring(struct dentry *dentry) | |
259 | { | |
260 | struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb); | |
261 | struct autofs_info *ino = autofs4_dentry_ino(dentry); | |
e9a7c2f1 | 262 | |
c4cd70b3 IK |
263 | if (ino) { |
264 | spin_lock(&sbi->lookup_lock); | |
265 | if (!list_empty(&ino->expiring)) | |
266 | list_del_init(&ino->expiring); | |
267 | spin_unlock(&sbi->lookup_lock); | |
268 | } | |
c4cd70b3 IK |
269 | } |
270 | ||
4a44c185 | 271 | void autofs4_kill_sb(struct super_block *); |