autofs: change catatonic setting to a bit flag
[linux-2.6-block.git] / fs / autofs / autofs_i.h
CommitLineData
ebc921ca
IK
1/*
2 * Copyright 1997-1998 Transmeta Corporation - All Rights Reserved
3 * Copyright 2005-2006 Ian Kent <raven@themaw.net>
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.
8 */
9
10/* Internal header file for autofs */
11
12#include <linux/auto_fs.h>
13#include <linux/auto_dev-ioctl.h>
14
15#include <linux/kernel.h>
16#include <linux/slab.h>
17#include <linux/time.h>
18#include <linux/string.h>
19#include <linux/wait.h>
20#include <linux/sched.h>
2c470475 21#include <linux/sched/signal.h>
ebc921ca
IK
22#include <linux/mount.h>
23#include <linux/namei.h>
24#include <linux/uaccess.h>
25#include <linux/mutex.h>
26#include <linux/spinlock.h>
27#include <linux/list.h>
28#include <linux/completion.h>
6471e938 29#include <linux/file.h>
0633da48 30#include <linux/magic.h>
ebc921ca
IK
31
32/* This is the range of ioctl() numbers we claim as ours */
33#define AUTOFS_IOC_FIRST AUTOFS_IOC_READY
34#define AUTOFS_IOC_COUNT 32
35
36#define AUTOFS_DEV_IOCTL_IOC_FIRST (AUTOFS_DEV_IOCTL_VERSION)
37#define AUTOFS_DEV_IOCTL_IOC_COUNT \
38 (AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD - AUTOFS_DEV_IOCTL_VERSION_CMD)
39
40#ifdef pr_fmt
41#undef pr_fmt
42#endif
43#define pr_fmt(fmt) KBUILD_MODNAME ":pid:%d:%s: " fmt, current->pid, __func__
44
55f0d820
IK
45extern struct file_system_type autofs_fs_type;
46
ebc921ca
IK
47/*
48 * Unified info structure. This is pointed to by both the dentry and
49 * inode structures. Each file in the filesystem has an instance of this
50 * structure. It holds a reference to the dentry, so dentries are never
51 * flushed while the file exists. All name lookups are dealt with at the
52 * dentry level, although the filesystem can interfere in the validation
53 * process. Readdir is implemented by traversing the dentry lists.
54 */
55struct autofs_info {
56 struct dentry *dentry;
57 struct inode *inode;
58
59 int flags;
60
61 struct completion expire_complete;
62
63 struct list_head active;
64 int active_count;
65
66 struct list_head expiring;
67
68 struct autofs_sb_info *sbi;
69 unsigned long last_used;
70 atomic_t count;
71
72 kuid_t uid;
73 kgid_t gid;
74};
75
76#define AUTOFS_INF_EXPIRING (1<<0) /* dentry in the process of expiring */
77#define AUTOFS_INF_WANT_EXPIRE (1<<1) /* the dentry is being considered
78 * for expiry, so RCU_walk is
79 * not permitted. If it progresses to
80 * actual expiry attempt, the flag is
81 * not cleared when EXPIRING is set -
82 * in that case it gets cleared only
83 * when it comes to clearing EXPIRING.
84 */
85#define AUTOFS_INF_PENDING (1<<2) /* dentry pending mount */
86
87struct autofs_wait_queue {
88 wait_queue_head_t queue;
89 struct autofs_wait_queue *next;
90 autofs_wqt_t wait_queue_token;
91 /* We use the following to see what we are waiting for */
92 struct qstr name;
93 u32 dev;
94 u64 ino;
95 kuid_t uid;
96 kgid_t gid;
97 pid_t pid;
98 pid_t tgid;
99 /* This is for status reporting upon return */
100 int status;
101 unsigned int wait_ctr;
102};
103
104#define AUTOFS_SBI_MAGIC 0x6d4a556d
105
9d8719a4
IK
106#define AUTOFS_SBI_CATATONIC 0x0001
107
ebc921ca
IK
108struct autofs_sb_info {
109 u32 magic;
110 int pipefd;
111 struct file *pipe;
112 struct pid *oz_pgrp;
ebc921ca
IK
113 int version;
114 int sub_version;
115 int min_proto;
116 int max_proto;
9d8719a4 117 unsigned int flags;
ebc921ca
IK
118 unsigned long exp_timeout;
119 unsigned int type;
120 struct super_block *sb;
121 struct mutex wq_mutex;
122 struct mutex pipe_mutex;
123 spinlock_t fs_lock;
124 struct autofs_wait_queue *queues; /* Wait queue pointer */
125 spinlock_t lookup_lock;
126 struct list_head active_list;
127 struct list_head expiring_list;
128 struct rcu_head rcu;
129};
130
131static inline struct autofs_sb_info *autofs_sbi(struct super_block *sb)
132{
55f0d820 133 return (struct autofs_sb_info *)(sb->s_fs_info);
ebc921ca
IK
134}
135
136static inline struct autofs_info *autofs_dentry_ino(struct dentry *dentry)
137{
138 return (struct autofs_info *)(dentry->d_fsdata);
139}
140
141/* autofs_oz_mode(): do we see the man behind the curtain? (The
142 * processes which do manipulations for us in user space sees the raw
143 * filesystem without "magic".)
144 */
145static inline int autofs_oz_mode(struct autofs_sb_info *sbi)
146{
9d8719a4
IK
147 return ((sbi->flags & AUTOFS_SBI_CATATONIC) ||
148 task_pgrp(current) == sbi->oz_pgrp);
ebc921ca
IK
149}
150
151struct inode *autofs_get_inode(struct super_block *, umode_t);
152void autofs_free_ino(struct autofs_info *);
153
154/* Expiration */
155int is_autofs_dentry(struct dentry *);
156int autofs_expire_wait(const struct path *path, int rcu_walk);
157int autofs_expire_run(struct super_block *, struct vfsmount *,
158 struct autofs_sb_info *,
159 struct autofs_packet_expire __user *);
160int autofs_do_expire_multi(struct super_block *sb, struct vfsmount *mnt,
e5c85e1f 161 struct autofs_sb_info *sbi, unsigned int how);
ebc921ca
IK
162int autofs_expire_multi(struct super_block *, struct vfsmount *,
163 struct autofs_sb_info *, int __user *);
ebc921ca
IK
164
165/* Device node initialization */
166
167int autofs_dev_ioctl_init(void);
168void autofs_dev_ioctl_exit(void);
169
170/* Operations structures */
171
172extern const struct inode_operations autofs_symlink_inode_operations;
173extern const struct inode_operations autofs_dir_inode_operations;
174extern const struct file_operations autofs_dir_operations;
175extern const struct file_operations autofs_root_operations;
176extern const struct dentry_operations autofs_dentry_operations;
177
178/* VFS automount flags management functions */
179static inline void __managed_dentry_set_managed(struct dentry *dentry)
180{
181 dentry->d_flags |= (DCACHE_NEED_AUTOMOUNT|DCACHE_MANAGE_TRANSIT);
182}
183
184static inline void managed_dentry_set_managed(struct dentry *dentry)
185{
186 spin_lock(&dentry->d_lock);
187 __managed_dentry_set_managed(dentry);
188 spin_unlock(&dentry->d_lock);
189}
190
191static inline void __managed_dentry_clear_managed(struct dentry *dentry)
192{
193 dentry->d_flags &= ~(DCACHE_NEED_AUTOMOUNT|DCACHE_MANAGE_TRANSIT);
194}
195
196static inline void managed_dentry_clear_managed(struct dentry *dentry)
197{
198 spin_lock(&dentry->d_lock);
199 __managed_dentry_clear_managed(dentry);
200 spin_unlock(&dentry->d_lock);
201}
202
203/* Initializing function */
204
205int autofs_fill_super(struct super_block *, void *, int);
206struct autofs_info *autofs_new_ino(struct autofs_sb_info *);
207void autofs_clean_ino(struct autofs_info *);
208
209static inline int autofs_prepare_pipe(struct file *pipe)
210{
211 if (!(pipe->f_mode & FMODE_CAN_WRITE))
212 return -EINVAL;
213 if (!S_ISFIFO(file_inode(pipe)->i_mode))
214 return -EINVAL;
215 /* We want a packet pipe */
216 pipe->f_flags |= O_DIRECT;
217 return 0;
218}
219
220/* Queue management functions */
221
222int autofs_wait(struct autofs_sb_info *,
223 const struct path *, enum autofs_notify);
224int autofs_wait_release(struct autofs_sb_info *, autofs_wqt_t, int);
225void autofs_catatonic_mode(struct autofs_sb_info *);
226
227static inline u32 autofs_get_dev(struct autofs_sb_info *sbi)
228{
229 return new_encode_dev(sbi->sb->s_dev);
230}
231
232static inline u64 autofs_get_ino(struct autofs_sb_info *sbi)
233{
234 return d_inode(sbi->sb->s_root)->i_ino;
235}
236
237static inline void __autofs_add_expiring(struct dentry *dentry)
238{
239 struct autofs_sb_info *sbi = autofs_sbi(dentry->d_sb);
240 struct autofs_info *ino = autofs_dentry_ino(dentry);
241
242 if (ino) {
243 if (list_empty(&ino->expiring))
244 list_add(&ino->expiring, &sbi->expiring_list);
245 }
246}
247
248static inline void autofs_add_expiring(struct dentry *dentry)
249{
250 struct autofs_sb_info *sbi = autofs_sbi(dentry->d_sb);
251 struct autofs_info *ino = autofs_dentry_ino(dentry);
252
253 if (ino) {
254 spin_lock(&sbi->lookup_lock);
255 if (list_empty(&ino->expiring))
256 list_add(&ino->expiring, &sbi->expiring_list);
257 spin_unlock(&sbi->lookup_lock);
258 }
259}
260
261static inline void autofs_del_expiring(struct dentry *dentry)
262{
263 struct autofs_sb_info *sbi = autofs_sbi(dentry->d_sb);
264 struct autofs_info *ino = autofs_dentry_ino(dentry);
265
266 if (ino) {
267 spin_lock(&sbi->lookup_lock);
268 if (!list_empty(&ino->expiring))
269 list_del_init(&ino->expiring);
270 spin_unlock(&sbi->lookup_lock);
271 }
272}
273
274void autofs_kill_sb(struct super_block *);