root.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:15k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* -*- c -*- --------------------------------------------------------------- *
  2.  *
  3.  * linux/fs/autofs/root.c
  4.  *
  5.  *  Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
  6.  *  Copyright 1999-2000 Jeremy Fitzhardinge <jeremy@goop.org>
  7.  *
  8.  * This file is part of the Linux kernel and is made available under
  9.  * the terms of the GNU General Public License, version 2, or at your
  10.  * option, any later version, incorporated herein by reference.
  11.  *
  12.  * ------------------------------------------------------------------------- */
  13. #include <linux/errno.h>
  14. #include <linux/stat.h>
  15. #include <linux/param.h>
  16. #include <linux/sched.h>
  17. #include <linux/smp_lock.h>
  18. #include "autofs_i.h"
  19. static struct dentry *autofs4_dir_lookup(struct inode *,struct dentry *);
  20. static int autofs4_dir_symlink(struct inode *,struct dentry *,const char *);
  21. static int autofs4_dir_unlink(struct inode *,struct dentry *);
  22. static int autofs4_dir_rmdir(struct inode *,struct dentry *);
  23. static int autofs4_dir_mkdir(struct inode *,struct dentry *,int);
  24. static int autofs4_root_ioctl(struct inode *, struct file *,unsigned int,unsigned long);
  25. static struct dentry *autofs4_root_lookup(struct inode *,struct dentry *);
  26. struct file_operations autofs4_root_operations = {
  27. open: dcache_dir_open,
  28. release: dcache_dir_close,
  29. llseek: dcache_dir_lseek,
  30. read: generic_read_dir,
  31. readdir: dcache_readdir,
  32. fsync: dcache_dir_fsync,
  33. ioctl: autofs4_root_ioctl,
  34. };
  35. struct inode_operations autofs4_root_inode_operations = {
  36. lookup: autofs4_root_lookup,
  37. unlink: autofs4_dir_unlink,
  38. symlink: autofs4_dir_symlink,
  39. mkdir: autofs4_dir_mkdir,
  40. rmdir: autofs4_dir_rmdir,
  41. };
  42. struct inode_operations autofs4_dir_inode_operations = {
  43. lookup: autofs4_dir_lookup,
  44. unlink: autofs4_dir_unlink,
  45. symlink: autofs4_dir_symlink,
  46. mkdir: autofs4_dir_mkdir,
  47. rmdir: autofs4_dir_rmdir,
  48. };
  49. /* Update usage from here to top of tree, so that scan of
  50.    top-level directories will give a useful result */
  51. static void autofs4_update_usage(struct dentry *dentry)
  52. {
  53. struct dentry *top = dentry->d_sb->s_root;
  54. for(; dentry != top; dentry = dentry->d_parent) {
  55. struct autofs_info *ino = autofs4_dentry_ino(dentry);
  56. if (ino) {
  57. update_atime(dentry->d_inode);
  58. ino->last_used = jiffies;
  59. }
  60. }
  61. }
  62. static int try_to_fill_dentry(struct dentry *dentry, 
  63.       struct super_block *sb,
  64.       struct autofs_sb_info *sbi)
  65. {
  66. struct autofs_info *de_info = autofs4_dentry_ino(dentry);
  67. int status = 0;
  68. /* Block on any pending expiry here; invalidate the dentry
  69.            when expiration is done to trigger mount request with a new
  70.            dentry */
  71. if (de_info && (de_info->flags & AUTOFS_INF_EXPIRING)) {
  72. DPRINTK(("try_to_fill_entry: waiting for expire %p name=%.*s, flags&PENDING=%s de_info=%p de_info->flags=%xn",
  73.  dentry, dentry->d_name.len, dentry->d_name.name, 
  74.  dentry->d_flags & DCACHE_AUTOFS_PENDING?"t":"f",
  75.  de_info, de_info?de_info->flags:0));
  76. status = autofs4_wait(sbi, &dentry->d_name, NFY_NONE);
  77. DPRINTK(("try_to_fill_entry: expire done status=%dn", status));
  78. return 0;
  79. }
  80. DPRINTK(("try_to_fill_entry: dentry=%p %.*s ino=%pn", 
  81.  dentry, dentry->d_name.len, dentry->d_name.name, dentry->d_inode));
  82. /* Wait for a pending mount, triggering one if there isn't one already */
  83. while(dentry->d_inode == NULL) {
  84. DPRINTK(("try_to_fill_entry: waiting for mount name=%.*s, de_info=%p de_info->flags=%xn",
  85.  dentry->d_name.len, dentry->d_name.name, 
  86.  de_info, de_info?de_info->flags:0));
  87. status = autofs4_wait(sbi, &dentry->d_name, NFY_MOUNT);
  88.  
  89. DPRINTK(("try_to_fill_entry: mount done status=%dn", status));
  90. if (status && dentry->d_inode)
  91. return 0; /* Try to get the kernel to invalidate this dentry */
  92. /* Turn this into a real negative dentry? */
  93. if (status == -ENOENT) {
  94. dentry->d_time = jiffies + AUTOFS_NEGATIVE_TIMEOUT;
  95. dentry->d_flags &= ~DCACHE_AUTOFS_PENDING;
  96. return 1;
  97. } else if (status) {
  98. /* Return a negative dentry, but leave it "pending" */
  99. return 1;
  100. }
  101. }
  102. /* If this is an unused directory that isn't a mount point,
  103.    bitch at the daemon and fix it in user space */
  104. spin_lock(&dcache_lock);
  105. if (S_ISDIR(dentry->d_inode->i_mode) &&
  106.     !d_mountpoint(dentry) && 
  107.     list_empty(&dentry->d_subdirs)) {
  108. DPRINTK(("try_to_fill_entry: mounting existing dirn"));
  109. spin_unlock(&dcache_lock);
  110. return autofs4_wait(sbi, &dentry->d_name, NFY_MOUNT) == 0;
  111. }
  112. spin_unlock(&dcache_lock);
  113. /* We don't update the usages for the autofs daemon itself, this
  114.    is necessary for recursive autofs mounts */
  115. if (!autofs4_oz_mode(sbi))
  116. autofs4_update_usage(dentry);
  117. dentry->d_flags &= ~DCACHE_AUTOFS_PENDING;
  118. return 1;
  119. }
  120. /*
  121.  * Revalidate is called on every cache lookup.  Some of those
  122.  * cache lookups may actually happen while the dentry is not
  123.  * yet completely filled in, and revalidate has to delay such
  124.  * lookups..
  125.  */
  126. static int autofs4_root_revalidate(struct dentry * dentry, int flags)
  127. {
  128. struct inode * dir = dentry->d_parent->d_inode;
  129. struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
  130. struct autofs_info *ino;
  131. int oz_mode = autofs4_oz_mode(sbi);
  132. /* Pending dentry */
  133. if (autofs4_ispending(dentry)) {
  134. if (autofs4_oz_mode(sbi))
  135. return 1;
  136. else
  137. return try_to_fill_dentry(dentry, dir->i_sb, sbi);
  138. }
  139. /* Negative dentry.. invalidate if "old" */
  140. if (dentry->d_inode == NULL)
  141. return (dentry->d_time - jiffies <= AUTOFS_NEGATIVE_TIMEOUT);
  142. ino = autofs4_dentry_ino(dentry);
  143. /* Check for a non-mountpoint directory with no contents */
  144. spin_lock(&dcache_lock);
  145. if (S_ISDIR(dentry->d_inode->i_mode) &&
  146.     !d_mountpoint(dentry) && 
  147.     list_empty(&dentry->d_subdirs)) {
  148. DPRINTK(("autofs_root_revalidate: dentry=%p %.*s, emptydirn",
  149.  dentry, dentry->d_name.len, dentry->d_name.name));
  150. spin_unlock(&dcache_lock);
  151. if (oz_mode)
  152. return 1;
  153. else
  154. return try_to_fill_dentry(dentry, dir->i_sb, sbi);
  155. }
  156. spin_unlock(&dcache_lock);
  157. /* Update the usage list */
  158. if (!oz_mode)
  159. autofs4_update_usage(dentry);
  160. return 1;
  161. }
  162. static int autofs4_revalidate(struct dentry *dentry, int flags)
  163. {
  164. struct autofs_sb_info *sbi = autofs4_sbi(dentry->d_sb);
  165. if (!autofs4_oz_mode(sbi))
  166. autofs4_update_usage(dentry);
  167. return 1;
  168. }
  169. static void autofs4_dentry_release(struct dentry *de)
  170. {
  171. struct autofs_info *inf;
  172. lock_kernel();
  173. DPRINTK(("autofs4_dentry_release: releasing %pn", de));
  174. inf = autofs4_dentry_ino(de);
  175. de->d_fsdata = NULL;
  176. if (inf) {
  177. inf->dentry = NULL;
  178. inf->inode = NULL;
  179. autofs4_free_ino(inf);
  180. }
  181. unlock_kernel();
  182. }
  183. /* For dentries of directories in the root dir */
  184. static struct dentry_operations autofs4_root_dentry_operations = {
  185. d_revalidate: autofs4_root_revalidate,
  186. d_release: autofs4_dentry_release,
  187. };
  188. /* For other dentries */
  189. static struct dentry_operations autofs4_dentry_operations = {
  190. d_revalidate: autofs4_revalidate,
  191. d_release: autofs4_dentry_release,
  192. };
  193. /* Lookups in non-root dirs never find anything - if it's there, it's
  194.    already in the dcache */
  195. static struct dentry *autofs4_dir_lookup(struct inode *dir, struct dentry *dentry)
  196. {
  197. #if 0
  198. DPRINTK(("autofs_dir_lookup: ignoring lookup of %.*s/%.*sn",
  199.  dentry->d_parent->d_name.len, dentry->d_parent->d_name.name,
  200.  dentry->d_name.len, dentry->d_name.name));
  201. #endif
  202. dentry->d_fsdata = NULL;
  203. d_add(dentry, NULL);
  204. return NULL;
  205. }
  206. /* Lookups in the root directory */
  207. static struct dentry *autofs4_root_lookup(struct inode *dir, struct dentry *dentry)
  208. {
  209. struct autofs_sb_info *sbi;
  210. int oz_mode;
  211. DPRINTK(("autofs_root_lookup: name = %.*sn", 
  212.  dentry->d_name.len, dentry->d_name.name));
  213. if (dentry->d_name.len > NAME_MAX)
  214. return ERR_PTR(-ENAMETOOLONG);/* File name too long to exist */
  215. sbi = autofs4_sbi(dir->i_sb);
  216. oz_mode = autofs4_oz_mode(sbi);
  217. DPRINTK(("autofs_lookup: pid = %u, pgrp = %u, catatonic = %d, oz_mode = %dn",
  218.  current->pid, current->pgrp, sbi->catatonic, oz_mode));
  219. /*
  220.  * Mark the dentry incomplete, but add it. This is needed so
  221.  * that the VFS layer knows about the dentry, and we can count
  222.  * on catching any lookups through the revalidate.
  223.  *
  224.  * Let all the hard work be done by the revalidate function that
  225.  * needs to be able to do this anyway..
  226.  *
  227.  * We need to do this before we release the directory semaphore.
  228.  */
  229. dentry->d_op = &autofs4_root_dentry_operations;
  230. if (!oz_mode)
  231. dentry->d_flags |= DCACHE_AUTOFS_PENDING;
  232. dentry->d_fsdata = NULL;
  233. d_add(dentry, NULL);
  234. if (dentry->d_op && dentry->d_op->d_revalidate) {
  235. up(&dir->i_sem);
  236. (dentry->d_op->d_revalidate)(dentry, 0);
  237. down(&dir->i_sem);
  238. }
  239. /*
  240.  * If we are still pending, check if we had to handle
  241.  * a signal. If so we can force a restart..
  242.  */
  243. if (dentry->d_flags & DCACHE_AUTOFS_PENDING) {
  244. if (signal_pending(current))
  245. return ERR_PTR(-ERESTARTNOINTR);
  246. }
  247. /*
  248.  * If this dentry is unhashed, then we shouldn't honour this
  249.  * lookup even if the dentry is positive.  Returning ENOENT here
  250.  * doesn't do the right thing for all system calls, but it should
  251.  * be OK for the operations we permit from an autofs.
  252.  */
  253. if ( dentry->d_inode && d_unhashed(dentry) )
  254. return ERR_PTR(-ENOENT);
  255. return NULL;
  256. }
  257. static int autofs4_dir_symlink(struct inode *dir, 
  258.        struct dentry *dentry,
  259.        const char *symname)
  260. {
  261. struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
  262. struct autofs_info *ino = autofs4_dentry_ino(dentry);
  263. struct inode *inode;
  264. char *cp;
  265. DPRINTK(("autofs_dir_symlink: %s <- %.*sn", symname, 
  266.  dentry->d_name.len, dentry->d_name.name));
  267. if (!autofs4_oz_mode(sbi))
  268. return -EACCES;
  269. ino = autofs4_init_ino(ino, sbi, S_IFLNK | 0555);
  270. if (ino == NULL)
  271. return -ENOSPC;
  272. ino->size = strlen(symname);
  273. ino->u.symlink = cp = kmalloc(ino->size + 1, GFP_KERNEL);
  274. if (cp == NULL) {
  275. kfree(ino);
  276. return -ENOSPC;
  277. }
  278. strcpy(cp, symname);
  279. inode = autofs4_get_inode(dir->i_sb, ino);
  280. d_instantiate(dentry, inode);
  281. if (dir == dir->i_sb->s_root->d_inode)
  282. dentry->d_op = &autofs4_root_dentry_operations;
  283. else
  284. dentry->d_op = &autofs4_dentry_operations;
  285. dentry->d_fsdata = ino;
  286. ino->dentry = dget(dentry);
  287. ino->inode = inode;
  288. dir->i_mtime = CURRENT_TIME;
  289. return 0;
  290. }
  291. /*
  292.  * NOTE!
  293.  *
  294.  * Normal filesystems would do a "d_delete()" to tell the VFS dcache
  295.  * that the file no longer exists. However, doing that means that the
  296.  * VFS layer can turn the dentry into a negative dentry.  We don't want
  297.  * this, because since the unlink is probably the result of an expire.
  298.  * We simply d_drop it, which allows the dentry lookup to remount it
  299.  * if necessary.
  300.  *
  301.  * If a process is blocked on the dentry waiting for the expire to finish,
  302.  * it will invalidate the dentry and try to mount with a new one.
  303.  *
  304.  * Also see autofs_dir_rmdir().. 
  305.  */
  306. static int autofs4_dir_unlink(struct inode *dir, struct dentry *dentry)
  307. {
  308. struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
  309. struct autofs_info *ino = autofs4_dentry_ino(dentry);
  310. /* This allows root to remove symlinks */
  311. if ( !autofs4_oz_mode(sbi) && !capable(CAP_SYS_ADMIN) )
  312. return -EACCES;
  313. dput(ino->dentry);
  314. dentry->d_inode->i_size = 0;
  315. dentry->d_inode->i_nlink = 0;
  316. dir->i_mtime = CURRENT_TIME;
  317. d_drop(dentry);
  318. return 0;
  319. }
  320. static int autofs4_dir_rmdir(struct inode *dir, struct dentry *dentry)
  321. {
  322. struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
  323. struct autofs_info *ino = autofs4_dentry_ino(dentry);
  324. if (!autofs4_oz_mode(sbi))
  325. return -EACCES;
  326. spin_lock(&dcache_lock);
  327. if (!list_empty(&dentry->d_subdirs)) {
  328. spin_unlock(&dcache_lock);
  329. return -ENOTEMPTY;
  330. }
  331. list_del_init(&dentry->d_hash);
  332. spin_unlock(&dcache_lock);
  333. dput(ino->dentry);
  334. dentry->d_inode->i_size = 0;
  335. dentry->d_inode->i_nlink = 0;
  336. if (dir->i_nlink)
  337. dir->i_nlink--;
  338. return 0;
  339. }
  340. static int autofs4_dir_mkdir(struct inode *dir, struct dentry *dentry, int mode)
  341. {
  342. struct autofs_sb_info *sbi = autofs4_sbi(dir->i_sb);
  343. struct autofs_info *ino = autofs4_dentry_ino(dentry);
  344. struct inode *inode;
  345. if ( !autofs4_oz_mode(sbi) )
  346. return -EACCES;
  347. DPRINTK(("autofs_dir_mkdir: dentry %p, creating %.*sn",
  348.  dentry, dentry->d_name.len, dentry->d_name.name));
  349. ino = autofs4_init_ino(ino, sbi, S_IFDIR | 0555);
  350. if (ino == NULL)
  351. return -ENOSPC;
  352. inode = autofs4_get_inode(dir->i_sb, ino);
  353. d_instantiate(dentry, inode);
  354. if (dir == dir->i_sb->s_root->d_inode)
  355. dentry->d_op = &autofs4_root_dentry_operations;
  356. else
  357. dentry->d_op = &autofs4_dentry_operations;
  358. dentry->d_fsdata = ino;
  359. ino->dentry = dget(dentry);
  360. ino->inode = inode;
  361. dir->i_nlink++;
  362. dir->i_mtime = CURRENT_TIME;
  363. return 0;
  364. }
  365. /* Get/set timeout ioctl() operation */
  366. static inline int autofs4_get_set_timeout(struct autofs_sb_info *sbi,
  367.  unsigned long *p)
  368. {
  369. int rv;
  370. unsigned long ntimeout;
  371. if ( (rv = get_user(ntimeout, p)) ||
  372.      (rv = put_user(sbi->exp_timeout/HZ, p)) )
  373. return rv;
  374. if ( ntimeout > ULONG_MAX/HZ )
  375. sbi->exp_timeout = 0;
  376. else
  377. sbi->exp_timeout = ntimeout * HZ;
  378. return 0;
  379. }
  380. /* Return protocol version */
  381. static inline int autofs4_get_protover(struct autofs_sb_info *sbi, int *p)
  382. {
  383. return put_user(sbi->version, p);
  384. }
  385. /* Identify autofs_dentries - this is so we can tell if there's
  386.    an extra dentry refcount or not.  We only hold a refcount on the
  387.    dentry if its non-negative (ie, d_inode != NULL)
  388. */
  389. int is_autofs4_dentry(struct dentry *dentry)
  390. {
  391. return dentry && dentry->d_inode &&
  392. (dentry->d_op == &autofs4_root_dentry_operations ||
  393.  dentry->d_op == &autofs4_dentry_operations) &&
  394. dentry->d_fsdata != NULL;
  395. }
  396. /*
  397.  * ioctl()'s on the root directory is the chief method for the daemon to
  398.  * generate kernel reactions
  399.  */
  400. static int autofs4_root_ioctl(struct inode *inode, struct file *filp,
  401.      unsigned int cmd, unsigned long arg)
  402. {
  403. struct autofs_sb_info *sbi = autofs4_sbi(inode->i_sb);
  404. DPRINTK(("autofs_ioctl: cmd = 0x%08x, arg = 0x%08lx, sbi = %p, pgrp = %un",
  405.  cmd,arg,sbi,current->pgrp));
  406. if ( _IOC_TYPE(cmd) != _IOC_TYPE(AUTOFS_IOC_FIRST) ||
  407.      _IOC_NR(cmd) - _IOC_NR(AUTOFS_IOC_FIRST) >= AUTOFS_IOC_COUNT )
  408. return -ENOTTY;
  409. if ( !autofs4_oz_mode(sbi) && !capable(CAP_SYS_ADMIN) )
  410. return -EPERM;
  411. switch(cmd) {
  412. case AUTOFS_IOC_READY: /* Wait queue: go ahead and retry */
  413. return autofs4_wait_release(sbi,(autofs_wqt_t)arg,0);
  414. case AUTOFS_IOC_FAIL: /* Wait queue: fail with ENOENT */
  415. return autofs4_wait_release(sbi,(autofs_wqt_t)arg,-ENOENT);
  416. case AUTOFS_IOC_CATATONIC: /* Enter catatonic mode (daemon shutdown) */
  417. autofs4_catatonic_mode(sbi);
  418. return 0;
  419. case AUTOFS_IOC_PROTOVER: /* Get protocol version */
  420. return autofs4_get_protover(sbi, (int *)arg);
  421. case AUTOFS_IOC_SETTIMEOUT:
  422. return autofs4_get_set_timeout(sbi,(unsigned long *)arg);
  423. /* return a single thing to expire */
  424. case AUTOFS_IOC_EXPIRE:
  425. return autofs4_expire_run(inode->i_sb,filp->f_vfsmnt,sbi,
  426.   (struct autofs_packet_expire *)arg);
  427. /* same as above, but can send multiple expires through pipe */
  428. case AUTOFS_IOC_EXPIRE_MULTI:
  429. return autofs4_expire_multi(inode->i_sb,filp->f_vfsmnt,sbi,
  430.     (int *)arg);
  431. default:
  432. return -ENOSYS;
  433. }
  434. }