1 /* -*- linux-c -*- --------------------------------------------------------- *
3 * linux/fs/autofs/root.c
5 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
7 * This file is part of the Linux kernel and is made available under
8 * the terms of the GNU General Public License, version 2, or at your
9 * option, any later version, incorporated herein by reference.
11 * ------------------------------------------------------------------------- */
13 #include <linux/capability.h>
14 #include <linux/errno.h>
15 #include <linux/stat.h>
16 #include <linux/slab.h>
17 #include <linux/param.h>
18 #include <linux/time.h>
19 #include <linux/compat.h>
20 #include <linux/smp_lock.h>
23 static int autofs_root_readdir(struct file
*,void *,filldir_t
);
24 static struct dentry
*autofs_root_lookup(struct inode
*,struct dentry
*, struct nameidata
*);
25 static int autofs_root_symlink(struct inode
*,struct dentry
*,const char *);
26 static int autofs_root_unlink(struct inode
*,struct dentry
*);
27 static int autofs_root_rmdir(struct inode
*,struct dentry
*);
28 static int autofs_root_mkdir(struct inode
*,struct dentry
*,int);
29 static long autofs_root_ioctl(struct file
*,unsigned int,unsigned long);
30 static long autofs_root_compat_ioctl(struct file
*,unsigned int,unsigned long);
32 const struct file_operations autofs_root_operations
= {
33 .llseek
= generic_file_llseek
,
34 .read
= generic_read_dir
,
35 .readdir
= autofs_root_readdir
,
36 .unlocked_ioctl
= autofs_root_ioctl
,
38 .compat_ioctl
= autofs_root_compat_ioctl
,
42 const struct inode_operations autofs_root_inode_operations
= {
43 .lookup
= autofs_root_lookup
,
44 .unlink
= autofs_root_unlink
,
45 .symlink
= autofs_root_symlink
,
46 .mkdir
= autofs_root_mkdir
,
47 .rmdir
= autofs_root_rmdir
,
50 static int autofs_root_readdir(struct file
*filp
, void *dirent
, filldir_t filldir
)
52 struct autofs_dir_ent
*ent
= NULL
;
53 struct autofs_dirhash
*dirhash
;
54 struct autofs_sb_info
*sbi
;
55 struct inode
* inode
= filp
->f_path
.dentry
->d_inode
;
60 sbi
= autofs_sbi(inode
->i_sb
);
61 dirhash
= &sbi
->dirhash
;
67 if (filldir(dirent
, ".", 1, nr
, inode
->i_ino
, DT_DIR
) < 0)
72 if (filldir(dirent
, "..", 2, nr
, inode
->i_ino
, DT_DIR
) < 0)
77 while (onr
= nr
, ent
= autofs_hash_enum(dirhash
,&nr
,ent
)) {
78 if (!ent
->dentry
|| d_mountpoint(ent
->dentry
)) {
79 if (filldir(dirent
,ent
->name
,ent
->len
,onr
,ent
->ino
,DT_UNKNOWN
) < 0)
92 static int try_to_fill_dentry(struct dentry
*dentry
, struct super_block
*sb
, struct autofs_sb_info
*sbi
)
95 struct autofs_dir_ent
*ent
;
98 if (!(ent
= autofs_hash_lookup(&sbi
->dirhash
, &dentry
->d_name
))) {
100 if (status
&& dentry
->d_inode
) {
101 if (status
!= -ENOENT
)
102 printk("autofs warning: lookup failure on positive dentry, status = %d, name = %s\n", status
, dentry
->d_name
.name
);
103 return 0; /* Try to get the kernel to invalidate this dentry */
106 /* Turn this into a real negative dentry? */
107 if (status
== -ENOENT
) {
108 dentry
->d_time
= jiffies
+ AUTOFS_NEGATIVE_TIMEOUT
;
109 dentry
->d_flags
&= ~DCACHE_AUTOFS_PENDING
;
112 /* Return a negative dentry, but leave it "pending" */
115 status
= autofs_wait(sbi
, &dentry
->d_name
);
116 } while (!(ent
= autofs_hash_lookup(&sbi
->dirhash
, &dentry
->d_name
)));
119 /* Abuse this field as a pointer to the directory entry, used to
120 find the expire list pointers */
121 dentry
->d_time
= (unsigned long) ent
;
123 if (!dentry
->d_inode
) {
124 inode
= autofs_iget(sb
, ent
->ino
);
126 /* Failed, but leave pending for next time */
129 dentry
->d_inode
= inode
;
132 /* If this is a directory that isn't a mount point, bitch at the
133 daemon and fix it in user space */
134 if (S_ISDIR(dentry
->d_inode
->i_mode
) && !d_mountpoint(dentry
)) {
135 return !autofs_wait(sbi
, &dentry
->d_name
);
138 /* We don't update the usages for the autofs daemon itself, this
139 is necessary for recursive autofs mounts */
140 if (!autofs_oz_mode(sbi
)) {
141 autofs_update_usage(&sbi
->dirhash
,ent
);
144 dentry
->d_flags
&= ~DCACHE_AUTOFS_PENDING
;
150 * Revalidate is called on every cache lookup. Some of those
151 * cache lookups may actually happen while the dentry is not
152 * yet completely filled in, and revalidate has to delay such
155 static int autofs_revalidate(struct dentry
* dentry
, struct nameidata
*nd
)
158 struct autofs_sb_info
*sbi
;
159 struct autofs_dir_ent
*ent
;
163 dir
= dentry
->d_parent
->d_inode
;
164 sbi
= autofs_sbi(dir
->i_sb
);
167 if (dentry
->d_flags
& DCACHE_AUTOFS_PENDING
) {
168 if (autofs_oz_mode(sbi
))
171 res
= try_to_fill_dentry(dentry
, dir
->i_sb
, sbi
);
176 /* Negative dentry.. invalidate if "old" */
177 if (!dentry
->d_inode
) {
179 return (dentry
->d_time
- jiffies
<= AUTOFS_NEGATIVE_TIMEOUT
);
182 /* Check for a non-mountpoint directory */
183 if (S_ISDIR(dentry
->d_inode
->i_mode
) && !d_mountpoint(dentry
)) {
184 if (autofs_oz_mode(sbi
))
187 res
= try_to_fill_dentry(dentry
, dir
->i_sb
, sbi
);
192 /* Update the usage list */
193 if (!autofs_oz_mode(sbi
)) {
194 ent
= (struct autofs_dir_ent
*) dentry
->d_time
;
196 autofs_update_usage(&sbi
->dirhash
,ent
);
202 static const struct dentry_operations autofs_dentry_operations
= {
203 .d_revalidate
= autofs_revalidate
,
206 static struct dentry
*autofs_root_lookup(struct inode
*dir
, struct dentry
*dentry
, struct nameidata
*nd
)
208 struct autofs_sb_info
*sbi
;
211 DPRINTK(("autofs_root_lookup: name = "));
213 autofs_say(dentry
->d_name
.name
,dentry
->d_name
.len
);
215 if (dentry
->d_name
.len
> NAME_MAX
) {
217 return ERR_PTR(-ENAMETOOLONG
);/* File name too long to exist */
220 sbi
= autofs_sbi(dir
->i_sb
);
222 oz_mode
= autofs_oz_mode(sbi
);
223 DPRINTK(("autofs_lookup: pid = %u, pgrp = %u, catatonic = %d, "
224 "oz_mode = %d\n", task_pid_nr(current
),
225 task_pgrp_nr(current
), sbi
->catatonic
,
229 * Mark the dentry incomplete, but add it. This is needed so
230 * that the VFS layer knows about the dentry, and we can count
231 * on catching any lookups through the revalidate.
233 * Let all the hard work be done by the revalidate function that
234 * needs to be able to do this anyway..
236 * We need to do this before we release the directory semaphore.
238 dentry
->d_op
= &autofs_dentry_operations
;
239 dentry
->d_flags
|= DCACHE_AUTOFS_PENDING
;
242 mutex_unlock(&dir
->i_mutex
);
243 autofs_revalidate(dentry
, nd
);
244 mutex_lock(&dir
->i_mutex
);
247 * If we are still pending, check if we had to handle
248 * a signal. If so we can force a restart..
250 if (dentry
->d_flags
& DCACHE_AUTOFS_PENDING
) {
251 /* See if we were interrupted */
252 if (signal_pending(current
)) {
253 sigset_t
*sigset
= ¤t
->pending
.signal
;
254 if (sigismember (sigset
, SIGKILL
) ||
255 sigismember (sigset
, SIGQUIT
) ||
256 sigismember (sigset
, SIGINT
)) {
258 return ERR_PTR(-ERESTARTNOINTR
);
265 * If this dentry is unhashed, then we shouldn't honour this
266 * lookup even if the dentry is positive. Returning ENOENT here
267 * doesn't do the right thing for all system calls, but it should
268 * be OK for the operations we permit from an autofs.
270 if (dentry
->d_inode
&& d_unhashed(dentry
))
271 return ERR_PTR(-ENOENT
);
276 static int autofs_root_symlink(struct inode
*dir
, struct dentry
*dentry
, const char *symname
)
278 struct autofs_sb_info
*sbi
= autofs_sbi(dir
->i_sb
);
279 struct autofs_dirhash
*dh
= &sbi
->dirhash
;
280 struct autofs_dir_ent
*ent
;
283 struct autofs_symlink
*sl
;
286 DPRINTK(("autofs_root_symlink: %s <- ", symname
));
287 autofs_say(dentry
->d_name
.name
,dentry
->d_name
.len
);
290 if (!autofs_oz_mode(sbi
)) {
295 if (autofs_hash_lookup(dh
, &dentry
->d_name
)) {
300 n
= find_first_zero_bit(sbi
->symlink_bitmap
,AUTOFS_MAX_SYMLINKS
);
301 if (n
>= AUTOFS_MAX_SYMLINKS
) {
306 set_bit(n
,sbi
->symlink_bitmap
);
307 sl
= &sbi
->symlink
[n
];
308 sl
->len
= strlen(symname
);
309 sl
->data
= kmalloc(slsize
= sl
->len
+1, GFP_KERNEL
);
311 clear_bit(n
,sbi
->symlink_bitmap
);
316 ent
= kmalloc(sizeof(struct autofs_dir_ent
), GFP_KERNEL
);
319 clear_bit(n
,sbi
->symlink_bitmap
);
324 ent
->name
= kmalloc(dentry
->d_name
.len
+1, GFP_KERNEL
);
328 clear_bit(n
,sbi
->symlink_bitmap
);
333 memcpy(sl
->data
,symname
,slsize
);
334 sl
->mtime
= get_seconds();
336 ent
->ino
= AUTOFS_FIRST_SYMLINK
+ n
;
337 ent
->hash
= dentry
->d_name
.hash
;
338 memcpy(ent
->name
, dentry
->d_name
.name
, 1+(ent
->len
= dentry
->d_name
.len
));
339 ent
->dentry
= NULL
; /* We don't keep the dentry for symlinks */
341 autofs_hash_insert(dh
,ent
);
343 inode
= autofs_iget(dir
->i_sb
, ent
->ino
);
345 return PTR_ERR(inode
);
347 d_instantiate(dentry
, inode
);
355 * Normal filesystems would do a "d_delete()" to tell the VFS dcache
356 * that the file no longer exists. However, doing that means that the
357 * VFS layer can turn the dentry into a negative dentry, which we
358 * obviously do not want (we're dropping the entry not because it
359 * doesn't exist, but because it has timed out).
361 * Also see autofs_root_rmdir()..
363 static int autofs_root_unlink(struct inode
*dir
, struct dentry
*dentry
)
365 struct autofs_sb_info
*sbi
= autofs_sbi(dir
->i_sb
);
366 struct autofs_dirhash
*dh
= &sbi
->dirhash
;
367 struct autofs_dir_ent
*ent
;
370 /* This allows root to remove symlinks */
372 if (!autofs_oz_mode(sbi
) && !capable(CAP_SYS_ADMIN
)) {
377 ent
= autofs_hash_lookup(dh
, &dentry
->d_name
);
383 n
= ent
->ino
- AUTOFS_FIRST_SYMLINK
;
384 if (n
>= AUTOFS_MAX_SYMLINKS
) {
386 return -EISDIR
; /* It's a directory, dummy */
388 if (!test_bit(n
,sbi
->symlink_bitmap
)) {
390 return -EINVAL
; /* Nonexistent symlink? Shouldn't happen */
393 dentry
->d_time
= (unsigned long)(struct autofs_dirhash
*)NULL
;
394 autofs_hash_delete(ent
);
395 clear_bit(n
,sbi
->symlink_bitmap
);
396 kfree(sbi
->symlink
[n
].data
);
403 static int autofs_root_rmdir(struct inode
*dir
, struct dentry
*dentry
)
405 struct autofs_sb_info
*sbi
= autofs_sbi(dir
->i_sb
);
406 struct autofs_dirhash
*dh
= &sbi
->dirhash
;
407 struct autofs_dir_ent
*ent
;
410 if (!autofs_oz_mode(sbi
)) {
415 ent
= autofs_hash_lookup(dh
, &dentry
->d_name
);
421 if ((unsigned int)ent
->ino
< AUTOFS_FIRST_DIR_INO
) {
423 return -ENOTDIR
; /* Not a directory */
426 if (ent
->dentry
!= dentry
) {
427 printk("autofs_rmdir: odentry != dentry for entry %s\n", dentry
->d_name
.name
);
430 dentry
->d_time
= (unsigned long)(struct autofs_dir_ent
*)NULL
;
431 autofs_hash_delete(ent
);
439 static int autofs_root_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
)
441 struct autofs_sb_info
*sbi
= autofs_sbi(dir
->i_sb
);
442 struct autofs_dirhash
*dh
= &sbi
->dirhash
;
443 struct autofs_dir_ent
*ent
;
448 if (!autofs_oz_mode(sbi
)) {
453 ent
= autofs_hash_lookup(dh
, &dentry
->d_name
);
459 if (sbi
->next_dir_ino
< AUTOFS_FIRST_DIR_INO
) {
460 printk("autofs: Out of inode numbers -- what the heck did you do??\n");
464 ino
= sbi
->next_dir_ino
++;
466 ent
= kmalloc(sizeof(struct autofs_dir_ent
), GFP_KERNEL
);
472 ent
->name
= kmalloc(dentry
->d_name
.len
+1, GFP_KERNEL
);
479 ent
->hash
= dentry
->d_name
.hash
;
480 memcpy(ent
->name
, dentry
->d_name
.name
, 1+(ent
->len
= dentry
->d_name
.len
));
482 ent
->dentry
= dentry
;
483 autofs_hash_insert(dh
,ent
);
487 inode
= autofs_iget(dir
->i_sb
, ino
);
490 return PTR_ERR(inode
);
493 d_instantiate(dentry
, inode
);
499 /* Get/set timeout ioctl() operation */
501 static inline int autofs_compat_get_set_timeout(struct autofs_sb_info
*sbi
,
502 unsigned int __user
*p
)
504 unsigned long ntimeout
;
506 if (get_user(ntimeout
, p
) ||
507 put_user(sbi
->exp_timeout
/ HZ
, p
))
510 if (ntimeout
> UINT_MAX
/HZ
)
511 sbi
->exp_timeout
= 0;
513 sbi
->exp_timeout
= ntimeout
* HZ
;
519 static inline int autofs_get_set_timeout(struct autofs_sb_info
*sbi
,
520 unsigned long __user
*p
)
522 unsigned long ntimeout
;
524 if (get_user(ntimeout
, p
) ||
525 put_user(sbi
->exp_timeout
/ HZ
, p
))
528 if (ntimeout
> ULONG_MAX
/HZ
)
529 sbi
->exp_timeout
= 0;
531 sbi
->exp_timeout
= ntimeout
* HZ
;
536 /* Return protocol version */
537 static inline int autofs_get_protover(int __user
*p
)
539 return put_user(AUTOFS_PROTO_VERSION
, p
);
542 /* Perform an expiry operation */
543 static inline int autofs_expire_run(struct super_block
*sb
,
544 struct autofs_sb_info
*sbi
,
545 struct vfsmount
*mnt
,
546 struct autofs_packet_expire __user
*pkt_p
)
548 struct autofs_dir_ent
*ent
;
549 struct autofs_packet_expire pkt
;
551 memset(&pkt
,0,sizeof pkt
);
553 pkt
.hdr
.proto_version
= AUTOFS_PROTO_VERSION
;
554 pkt
.hdr
.type
= autofs_ptype_expire
;
556 if (!sbi
->exp_timeout
|| !(ent
= autofs_expire(sb
,sbi
,mnt
)))
560 memcpy(pkt
.name
, ent
->name
, pkt
.len
);
561 pkt
.name
[pkt
.len
] = '\0';
563 if (copy_to_user(pkt_p
, &pkt
, sizeof(struct autofs_packet_expire
)))
570 * ioctl()'s on the root directory is the chief method for the daemon to
571 * generate kernel reactions
573 static int autofs_do_root_ioctl(struct inode
*inode
, struct file
*filp
,
574 unsigned int cmd
, unsigned long arg
)
576 struct autofs_sb_info
*sbi
= autofs_sbi(inode
->i_sb
);
577 void __user
*argp
= (void __user
*)arg
;
579 DPRINTK(("autofs_ioctl: cmd = 0x%08x, arg = 0x%08lx, sbi = %p, pgrp = %u\n",cmd
,arg
,sbi
,task_pgrp_nr(current
)));
581 if (_IOC_TYPE(cmd
) != _IOC_TYPE(AUTOFS_IOC_FIRST
) ||
582 _IOC_NR(cmd
) - _IOC_NR(AUTOFS_IOC_FIRST
) >= AUTOFS_IOC_COUNT
)
585 if (!autofs_oz_mode(sbi
) && !capable(CAP_SYS_ADMIN
))
589 case AUTOFS_IOC_READY
: /* Wait queue: go ahead and retry */
590 return autofs_wait_release(sbi
,(autofs_wqt_t
)arg
,0);
591 case AUTOFS_IOC_FAIL
: /* Wait queue: fail with ENOENT */
592 return autofs_wait_release(sbi
,(autofs_wqt_t
)arg
,-ENOENT
);
593 case AUTOFS_IOC_CATATONIC
: /* Enter catatonic mode (daemon shutdown) */
594 autofs_catatonic_mode(sbi
);
596 case AUTOFS_IOC_PROTOVER
: /* Get protocol version */
597 return autofs_get_protover(argp
);
599 case AUTOFS_IOC_SETTIMEOUT32
:
600 return autofs_compat_get_set_timeout(sbi
, argp
);
602 case AUTOFS_IOC_SETTIMEOUT
:
603 return autofs_get_set_timeout(sbi
, argp
);
604 case AUTOFS_IOC_EXPIRE
:
605 return autofs_expire_run(inode
->i_sb
, sbi
, filp
->f_path
.mnt
,
613 static long autofs_root_ioctl(struct file
*filp
,
614 unsigned int cmd
, unsigned long arg
)
619 ret
= autofs_do_root_ioctl(filp
->f_path
.dentry
->d_inode
,
627 static long autofs_root_compat_ioctl(struct file
*filp
,
628 unsigned int cmd
, unsigned long arg
)
630 struct inode
*inode
= filp
->f_path
.dentry
->d_inode
;
634 if (cmd
== AUTOFS_IOC_READY
|| cmd
== AUTOFS_IOC_FAIL
)
635 ret
= autofs_do_root_ioctl(inode
, filp
, cmd
, arg
);
637 ret
= autofs_do_root_ioctl(inode
, filp
, cmd
,
638 (unsigned long)compat_ptr(arg
));