]> rtime.felk.cvut.cz Git - zynq/linux.git/blob - fs/autofs4/autofs_i.h
autofs: fix dev ioctl number range check
[zynq/linux.git] / fs / autofs4 / autofs_i.h
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_fs4.h>
13 #include <linux/auto_dev-ioctl.h>
14 #include <linux/mutex.h>
15 #include <linux/spinlock.h>
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
22 #define AUTOFS_DEV_IOCTL_IOC_FIRST      (AUTOFS_DEV_IOCTL_VERSION)
23 #define AUTOFS_DEV_IOCTL_IOC_COUNT \
24         (AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD - AUTOFS_DEV_IOCTL_VERSION_CMD)
25
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>
35 #include <linux/uaccess.h>
36
37 /* #define DEBUG */
38
39 #ifdef pr_fmt
40 #undef pr_fmt
41 #endif
42 #define pr_fmt(fmt) KBUILD_MODNAME ":pid:%d:%s: " fmt, current->pid, __func__
43
44 /*
45  * Unified info structure.  This is pointed to by both the dentry and
46  * inode structures.  Each file in the filesystem has an instance of this
47  * structure.  It holds a reference to the dentry, so dentries are never
48  * flushed while the file exists.  All name lookups are dealt with at the
49  * dentry level, although the filesystem can interfere in the validation
50  * process.  Readdir is implemented by traversing the dentry lists.
51  */
52 struct autofs_info {
53         struct dentry   *dentry;
54         struct inode    *inode;
55
56         int             flags;
57
58         struct completion expire_complete;
59
60         struct list_head active;
61         int active_count;
62
63         struct list_head expiring;
64
65         struct autofs_sb_info *sbi;
66         unsigned long last_used;
67         atomic_t count;
68
69         kuid_t uid;
70         kgid_t gid;
71 };
72
73 #define AUTOFS_INF_EXPIRING     (1<<0) /* dentry in the process of expiring */
74 #define AUTOFS_INF_WANT_EXPIRE  (1<<1) /* the dentry is being considered
75                                         * for expiry, so RCU_walk is
76                                         * not permitted.  If it progresses to
77                                         * actual expiry attempt, the flag is
78                                         * not cleared when EXPIRING is set -
79                                         * in that case it gets cleared only
80                                         * when it comes to clearing EXPIRING.
81                                         */
82 #define AUTOFS_INF_PENDING      (1<<2) /* dentry pending mount */
83
84 struct autofs_wait_queue {
85         wait_queue_head_t queue;
86         struct autofs_wait_queue *next;
87         autofs_wqt_t wait_queue_token;
88         /* We use the following to see what we are waiting for */
89         struct qstr name;
90         u32 dev;
91         u64 ino;
92         kuid_t uid;
93         kgid_t gid;
94         pid_t pid;
95         pid_t tgid;
96         /* This is for status reporting upon return */
97         int status;
98         unsigned int wait_ctr;
99 };
100
101 #define AUTOFS_SBI_MAGIC 0x6d4a556d
102
103 struct autofs_sb_info {
104         u32 magic;
105         int pipefd;
106         struct file *pipe;
107         struct pid *oz_pgrp;
108         int catatonic;
109         int version;
110         int sub_version;
111         int min_proto;
112         int max_proto;
113         unsigned long exp_timeout;
114         unsigned int type;
115         struct super_block *sb;
116         struct mutex wq_mutex;
117         struct mutex pipe_mutex;
118         spinlock_t fs_lock;
119         struct autofs_wait_queue *queues; /* Wait queue pointer */
120         spinlock_t lookup_lock;
121         struct list_head active_list;
122         struct list_head expiring_list;
123         struct rcu_head rcu;
124 };
125
126 static inline struct autofs_sb_info *autofs4_sbi(struct super_block *sb)
127 {
128         return (struct autofs_sb_info *)(sb->s_fs_info);
129 }
130
131 static inline struct autofs_info *autofs4_dentry_ino(struct dentry *dentry)
132 {
133         return (struct autofs_info *)(dentry->d_fsdata);
134 }
135
136 /* autofs4_oz_mode(): do we see the man behind the curtain?  (The
137  * processes which do manipulations for us in user space sees the raw
138  * filesystem without "magic".)
139  */
140 static inline int autofs4_oz_mode(struct autofs_sb_info *sbi)
141 {
142         return sbi->catatonic || task_pgrp(current) == sbi->oz_pgrp;
143 }
144
145 struct inode *autofs4_get_inode(struct super_block *, umode_t);
146 void autofs4_free_ino(struct autofs_info *);
147
148 /* Expiration */
149 int is_autofs4_dentry(struct dentry *);
150 int autofs4_expire_wait(struct dentry *dentry, int rcu_walk);
151 int autofs4_expire_run(struct super_block *, struct vfsmount *,
152                        struct autofs_sb_info *,
153                        struct autofs_packet_expire __user *);
154 int autofs4_do_expire_multi(struct super_block *sb, struct vfsmount *mnt,
155                             struct autofs_sb_info *sbi, int when);
156 int autofs4_expire_multi(struct super_block *, struct vfsmount *,
157                          struct autofs_sb_info *, int __user *);
158 struct dentry *autofs4_expire_direct(struct super_block *sb,
159                                      struct vfsmount *mnt,
160                                      struct autofs_sb_info *sbi, int how);
161 struct dentry *autofs4_expire_indirect(struct super_block *sb,
162                                        struct vfsmount *mnt,
163                                        struct autofs_sb_info *sbi, int how);
164
165 /* Device node initialization */
166
167 int autofs_dev_ioctl_init(void);
168 void autofs_dev_ioctl_exit(void);
169
170 /* Operations structures */
171
172 extern const struct inode_operations autofs4_symlink_inode_operations;
173 extern const struct inode_operations autofs4_dir_inode_operations;
174 extern const struct file_operations autofs4_dir_operations;
175 extern const struct file_operations autofs4_root_operations;
176 extern const struct dentry_operations autofs4_dentry_operations;
177
178 /* VFS automount flags management functions */
179 static inline void __managed_dentry_set_managed(struct dentry *dentry)
180 {
181         dentry->d_flags |= (DCACHE_NEED_AUTOMOUNT|DCACHE_MANAGE_TRANSIT);
182 }
183
184 static 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
191 static inline void __managed_dentry_clear_managed(struct dentry *dentry)
192 {
193         dentry->d_flags &= ~(DCACHE_NEED_AUTOMOUNT|DCACHE_MANAGE_TRANSIT);
194 }
195
196 static 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
205 int autofs4_fill_super(struct super_block *, void *, int);
206 struct autofs_info *autofs4_new_ino(struct autofs_sb_info *);
207 void autofs4_clean_ino(struct autofs_info *);
208
209 static 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
222 int autofs4_wait(struct autofs_sb_info *, struct dentry *, enum autofs_notify);
223 int autofs4_wait_release(struct autofs_sb_info *, autofs_wqt_t, int);
224 void autofs4_catatonic_mode(struct autofs_sb_info *);
225
226 static inline u32 autofs4_get_dev(struct autofs_sb_info *sbi)
227 {
228         return new_encode_dev(sbi->sb->s_dev);
229 }
230
231 static inline u64 autofs4_get_ino(struct autofs_sb_info *sbi)
232 {
233         return d_inode(sbi->sb->s_root)->i_ino;
234 }
235
236 static inline void __autofs4_add_expiring(struct dentry *dentry)
237 {
238         struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
239         struct autofs_info *ino = autofs4_dentry_ino(dentry);
240
241         if (ino) {
242                 if (list_empty(&ino->expiring))
243                         list_add(&ino->expiring, &sbi->expiring_list);
244         }
245 }
246
247 static inline void autofs4_add_expiring(struct dentry *dentry)
248 {
249         struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
250         struct autofs_info *ino = autofs4_dentry_ino(dentry);
251
252         if (ino) {
253                 spin_lock(&sbi->lookup_lock);
254                 if (list_empty(&ino->expiring))
255                         list_add(&ino->expiring, &sbi->expiring_list);
256                 spin_unlock(&sbi->lookup_lock);
257         }
258 }
259
260 static inline void autofs4_del_expiring(struct dentry *dentry)
261 {
262         struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
263         struct autofs_info *ino = autofs4_dentry_ino(dentry);
264
265         if (ino) {
266                 spin_lock(&sbi->lookup_lock);
267                 if (!list_empty(&ino->expiring))
268                         list_del_init(&ino->expiring);
269                 spin_unlock(&sbi->lookup_lock);
270         }
271 }
272
273 void autofs4_kill_sb(struct super_block *);