root.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:14k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- linux-c -*- --------------------------------------------------------- *
  2.  *
  3.  * linux/fs/autofs/root.c
  4.  *
  5.  *  Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
  6.  *
  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.
  10.  *
  11.  * ------------------------------------------------------------------------- */
  12. #include <linux/errno.h>
  13. #include <linux/stat.h>
  14. #include <linux/param.h>
  15. #include <linux/sched.h>
  16. #include <linux/smp_lock.h>
  17. #include "autofs_i.h"
  18. static int autofs_root_readdir(struct file *,void *,filldir_t);
  19. static struct dentry *autofs_root_lookup(struct inode *,struct dentry *);
  20. static int autofs_root_symlink(struct inode *,struct dentry *,const char *);
  21. static int autofs_root_unlink(struct inode *,struct dentry *);
  22. static int autofs_root_rmdir(struct inode *,struct dentry *);
  23. static int autofs_root_mkdir(struct inode *,struct dentry *,int);
  24. static int autofs_root_ioctl(struct inode *, struct file *,unsigned int,unsigned long);
  25. struct file_operations autofs_root_operations = {
  26. read: generic_read_dir,
  27. readdir: autofs_root_readdir,
  28. ioctl: autofs_root_ioctl,
  29. };
  30. struct inode_operations autofs_root_inode_operations = {
  31.         lookup: autofs_root_lookup,
  32.         unlink: autofs_root_unlink,
  33.         symlink: autofs_root_symlink,
  34.         mkdir: autofs_root_mkdir,
  35.         rmdir: autofs_root_rmdir,
  36. };
  37. static int autofs_root_readdir(struct file *filp, void *dirent, filldir_t filldir)
  38. {
  39. struct autofs_dir_ent *ent = NULL;
  40. struct autofs_dirhash *dirhash;
  41. struct autofs_sb_info *sbi;
  42. struct inode * inode = filp->f_dentry->d_inode;
  43. off_t onr, nr;
  44. sbi = autofs_sbi(inode->i_sb);
  45. dirhash = &sbi->dirhash;
  46. nr = filp->f_pos;
  47. switch(nr)
  48. {
  49. case 0:
  50. if (filldir(dirent, ".", 1, nr, inode->i_ino, DT_DIR) < 0)
  51. return 0;
  52. filp->f_pos = ++nr;
  53. /* fall through */
  54. case 1:
  55. if (filldir(dirent, "..", 2, nr, inode->i_ino, DT_DIR) < 0)
  56. return 0;
  57. filp->f_pos = ++nr;
  58. /* fall through */
  59. default:
  60. while ( onr = nr, ent = autofs_hash_enum(dirhash,&nr,ent) ) {
  61. if ( !ent->dentry || d_mountpoint(ent->dentry) ) {
  62. if (filldir(dirent,ent->name,ent->len,onr,ent->ino,DT_UNKNOWN) < 0)
  63. return 0;
  64. filp->f_pos = nr;
  65. }
  66. }
  67. break;
  68. }
  69. return 0;
  70. }
  71. static int try_to_fill_dentry(struct dentry *dentry, struct super_block *sb, struct autofs_sb_info *sbi)
  72. {
  73. struct inode * inode;
  74. struct autofs_dir_ent *ent;
  75. int status = 0;
  76. if ( !(ent = autofs_hash_lookup(&sbi->dirhash, &dentry->d_name)) ) {
  77. do {
  78. if ( status && dentry->d_inode ) {
  79. if ( status != -ENOENT )
  80. printk("autofs warning: lookup failure on positive dentry, status = %d, name = %sn", status, dentry->d_name.name);
  81. return 0; /* Try to get the kernel to invalidate this dentry */
  82. }
  83. /* Turn this into a real negative dentry? */
  84. if (status == -ENOENT) {
  85. dentry->d_time = jiffies + AUTOFS_NEGATIVE_TIMEOUT;
  86. dentry->d_flags &= ~DCACHE_AUTOFS_PENDING;
  87. return 1;
  88. } else if (status) {
  89. /* Return a negative dentry, but leave it "pending" */
  90. return 1;
  91. }
  92. status = autofs_wait(sbi, &dentry->d_name);
  93. } while (!(ent = autofs_hash_lookup(&sbi->dirhash, &dentry->d_name)) );
  94. }
  95. /* Abuse this field as a pointer to the directory entry, used to
  96.    find the expire list pointers */
  97. dentry->d_time = (unsigned long) ent;
  98. if (!dentry->d_inode) {
  99. inode = iget(sb, ent->ino);
  100. if (!inode) {
  101. /* Failed, but leave pending for next time */
  102. return 1;
  103. }
  104. dentry->d_inode = inode;
  105. }
  106. /* If this is a directory that isn't a mount point, bitch at the
  107.    daemon and fix it in user space */
  108. if ( S_ISDIR(dentry->d_inode->i_mode) && !d_mountpoint(dentry) ) {
  109. return !autofs_wait(sbi, &dentry->d_name);
  110. }
  111. /* We don't update the usages for the autofs daemon itself, this
  112.    is necessary for recursive autofs mounts */
  113. if ( !autofs_oz_mode(sbi) ) {
  114. autofs_update_usage(&sbi->dirhash,ent);
  115. }
  116. dentry->d_flags &= ~DCACHE_AUTOFS_PENDING;
  117. return 1;
  118. }
  119. /*
  120.  * Revalidate is called on every cache lookup.  Some of those
  121.  * cache lookups may actually happen while the dentry is not
  122.  * yet completely filled in, and revalidate has to delay such
  123.  * lookups..
  124.  */
  125. static int autofs_revalidate(struct dentry * dentry, int flags)
  126. {
  127. struct inode * dir;
  128. struct autofs_sb_info *sbi;
  129. struct autofs_dir_ent *ent;
  130. int res;
  131. lock_kernel();
  132. dir = dentry->d_parent->d_inode;
  133. sbi = autofs_sbi(dir->i_sb);
  134. /* Pending dentry */
  135. if ( dentry->d_flags & DCACHE_AUTOFS_PENDING ) {
  136. if (autofs_oz_mode(sbi))
  137. res = 1;
  138. else
  139. res = try_to_fill_dentry(dentry, dir->i_sb, sbi);
  140. unlock_kernel();
  141. return res;
  142. }
  143. /* Negative dentry.. invalidate if "old" */
  144. if (!dentry->d_inode) {
  145. unlock_kernel();
  146. return (dentry->d_time - jiffies <= AUTOFS_NEGATIVE_TIMEOUT);
  147. }
  148. /* Check for a non-mountpoint directory */
  149. if ( S_ISDIR(dentry->d_inode->i_mode) && !d_mountpoint(dentry) ) {
  150. if (autofs_oz_mode(sbi))
  151. res = 1;
  152. else
  153. res = try_to_fill_dentry(dentry, dir->i_sb, sbi);
  154. unlock_kernel();
  155. return res;
  156. }
  157. /* Update the usage list */
  158. if ( !autofs_oz_mode(sbi) ) {
  159. ent = (struct autofs_dir_ent *) dentry->d_time;
  160. if ( ent )
  161. autofs_update_usage(&sbi->dirhash,ent);
  162. }
  163. unlock_kernel();
  164. return 1;
  165. }
  166. static struct dentry_operations autofs_dentry_operations = {
  167. d_revalidate: autofs_revalidate,
  168. };
  169. static struct dentry *autofs_root_lookup(struct inode *dir, struct dentry *dentry)
  170. {
  171. struct autofs_sb_info *sbi;
  172. int oz_mode;
  173. DPRINTK(("autofs_root_lookup: name = "));
  174. autofs_say(dentry->d_name.name,dentry->d_name.len);
  175. if (dentry->d_name.len > NAME_MAX)
  176. return ERR_PTR(-ENAMETOOLONG);/* File name too long to exist */
  177. sbi = autofs_sbi(dir->i_sb);
  178. oz_mode = autofs_oz_mode(sbi);
  179. DPRINTK(("autofs_lookup: pid = %u, pgrp = %u, catatonic = %d, oz_mode = %dn",
  180.  current->pid, current->pgrp, sbi->catatonic, oz_mode));
  181. /*
  182.  * Mark the dentry incomplete, but add it. This is needed so
  183.  * that the VFS layer knows about the dentry, and we can count
  184.  * on catching any lookups through the revalidate.
  185.  *
  186.  * Let all the hard work be done by the revalidate function that
  187.  * needs to be able to do this anyway..
  188.  *
  189.  * We need to do this before we release the directory semaphore.
  190.  */
  191. dentry->d_op = &autofs_dentry_operations;
  192. dentry->d_flags |= DCACHE_AUTOFS_PENDING;
  193. d_add(dentry, NULL);
  194. up(&dir->i_sem);
  195. autofs_revalidate(dentry, 0);
  196. down(&dir->i_sem);
  197. /*
  198.  * If we are still pending, check if we had to handle
  199.  * a signal. If so we can force a restart..
  200.  */
  201. if (dentry->d_flags & DCACHE_AUTOFS_PENDING) {
  202. if (signal_pending(current))
  203. return ERR_PTR(-ERESTARTNOINTR);
  204. }
  205. /*
  206.  * If this dentry is unhashed, then we shouldn't honour this
  207.  * lookup even if the dentry is positive.  Returning ENOENT here
  208.  * doesn't do the right thing for all system calls, but it should
  209.  * be OK for the operations we permit from an autofs.
  210.  */
  211. if ( dentry->d_inode && d_unhashed(dentry) )
  212. return ERR_PTR(-ENOENT);
  213. return NULL;
  214. }
  215. static int autofs_root_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
  216. {
  217. struct autofs_sb_info *sbi = autofs_sbi(dir->i_sb);
  218. struct autofs_dirhash *dh = &sbi->dirhash;
  219. struct autofs_dir_ent *ent;
  220. unsigned int n;
  221. int slsize;
  222. struct autofs_symlink *sl;
  223. DPRINTK(("autofs_root_symlink: %s <- ", symname));
  224. autofs_say(dentry->d_name.name,dentry->d_name.len);
  225. if ( !autofs_oz_mode(sbi) )
  226. return -EACCES;
  227. if ( autofs_hash_lookup(dh, &dentry->d_name) )
  228. return -EEXIST;
  229. n = find_first_zero_bit(sbi->symlink_bitmap,AUTOFS_MAX_SYMLINKS);
  230. if ( n >= AUTOFS_MAX_SYMLINKS )
  231. return -ENOSPC;
  232. set_bit(n,sbi->symlink_bitmap);
  233. sl = &sbi->symlink[n];
  234. sl->len = strlen(symname);
  235. sl->data = kmalloc(slsize = sl->len+1, GFP_KERNEL);
  236. if ( !sl->data ) {
  237. clear_bit(n,sbi->symlink_bitmap);
  238. return -ENOSPC;
  239. }
  240. ent = kmalloc(sizeof(struct autofs_dir_ent), GFP_KERNEL);
  241. if ( !ent ) {
  242. kfree(sl->data);
  243. clear_bit(n,sbi->symlink_bitmap);
  244. return -ENOSPC;
  245. }
  246. ent->name = kmalloc(dentry->d_name.len+1, GFP_KERNEL);
  247. if ( !ent->name ) {
  248. kfree(sl->data);
  249. kfree(ent);
  250. clear_bit(n,sbi->symlink_bitmap);
  251. return -ENOSPC;
  252. }
  253. memcpy(sl->data,symname,slsize);
  254. sl->mtime = CURRENT_TIME;
  255. ent->ino = AUTOFS_FIRST_SYMLINK + n;
  256. ent->hash = dentry->d_name.hash;
  257. memcpy(ent->name, dentry->d_name.name, 1+(ent->len = dentry->d_name.len));
  258. ent->dentry = NULL; /* We don't keep the dentry for symlinks */
  259. autofs_hash_insert(dh,ent);
  260. d_instantiate(dentry, iget(dir->i_sb,ent->ino));
  261. return 0;
  262. }
  263. /*
  264.  * NOTE!
  265.  *
  266.  * Normal filesystems would do a "d_delete()" to tell the VFS dcache
  267.  * that the file no longer exists. However, doing that means that the
  268.  * VFS layer can turn the dentry into a negative dentry, which we
  269.  * obviously do not want (we're dropping the entry not because it
  270.  * doesn't exist, but because it has timed out).
  271.  *
  272.  * Also see autofs_root_rmdir()..
  273.  */
  274. static int autofs_root_unlink(struct inode *dir, struct dentry *dentry)
  275. {
  276. struct autofs_sb_info *sbi = autofs_sbi(dir->i_sb);
  277. struct autofs_dirhash *dh = &sbi->dirhash;
  278. struct autofs_dir_ent *ent;
  279. unsigned int n;
  280. /* This allows root to remove symlinks */
  281. if ( !autofs_oz_mode(sbi) && !capable(CAP_SYS_ADMIN) )
  282. return -EACCES;
  283. ent = autofs_hash_lookup(dh, &dentry->d_name);
  284. if ( !ent )
  285. return -ENOENT;
  286. n = ent->ino - AUTOFS_FIRST_SYMLINK;
  287. if ( n >= AUTOFS_MAX_SYMLINKS )
  288. return -EISDIR; /* It's a directory, dummy */
  289. if ( !test_bit(n,sbi->symlink_bitmap) )
  290. return -EINVAL; /* Nonexistent symlink?  Shouldn't happen */
  291. dentry->d_time = (unsigned long)(struct autofs_dirhash *)NULL;
  292. autofs_hash_delete(ent);
  293. clear_bit(n,sbi->symlink_bitmap);
  294. kfree(sbi->symlink[n].data);
  295. d_drop(dentry);
  296. return 0;
  297. }
  298. static int autofs_root_rmdir(struct inode *dir, struct dentry *dentry)
  299. {
  300. struct autofs_sb_info *sbi = autofs_sbi(dir->i_sb);
  301. struct autofs_dirhash *dh = &sbi->dirhash;
  302. struct autofs_dir_ent *ent;
  303. if ( !autofs_oz_mode(sbi) )
  304. return -EACCES;
  305. ent = autofs_hash_lookup(dh, &dentry->d_name);
  306. if ( !ent )
  307. return -ENOENT;
  308. if ( (unsigned int)ent->ino < AUTOFS_FIRST_DIR_INO )
  309. return -ENOTDIR; /* Not a directory */
  310. if ( ent->dentry != dentry ) {
  311. printk("autofs_rmdir: odentry != dentry for entry %sn", dentry->d_name.name);
  312. }
  313. dentry->d_time = (unsigned long)(struct autofs_dir_ent *)NULL;
  314. autofs_hash_delete(ent);
  315. dir->i_nlink--;
  316. d_drop(dentry);
  317. return 0;
  318. }
  319. static int autofs_root_mkdir(struct inode *dir, struct dentry *dentry, int mode)
  320. {
  321. struct autofs_sb_info *sbi = autofs_sbi(dir->i_sb);
  322. struct autofs_dirhash *dh = &sbi->dirhash;
  323. struct autofs_dir_ent *ent;
  324. ino_t ino;
  325. if ( !autofs_oz_mode(sbi) )
  326. return -EACCES;
  327. ent = autofs_hash_lookup(dh, &dentry->d_name);
  328. if ( ent )
  329. return -EEXIST;
  330. if ( sbi->next_dir_ino < AUTOFS_FIRST_DIR_INO ) {
  331. printk("autofs: Out of inode numbers -- what the heck did you do??n");
  332. return -ENOSPC;
  333. }
  334. ino = sbi->next_dir_ino++;
  335. ent = kmalloc(sizeof(struct autofs_dir_ent), GFP_KERNEL);
  336. if ( !ent )
  337. return -ENOSPC;
  338. ent->name = kmalloc(dentry->d_name.len+1, GFP_KERNEL);
  339. if ( !ent->name ) {
  340. kfree(ent);
  341. return -ENOSPC;
  342. }
  343. ent->hash = dentry->d_name.hash;
  344. memcpy(ent->name, dentry->d_name.name, 1+(ent->len = dentry->d_name.len));
  345. ent->ino = ino;
  346. ent->dentry = dentry;
  347. autofs_hash_insert(dh,ent);
  348. dir->i_nlink++;
  349. d_instantiate(dentry, iget(dir->i_sb,ino));
  350. return 0;
  351. }
  352. /* Get/set timeout ioctl() operation */
  353. static inline int autofs_get_set_timeout(struct autofs_sb_info *sbi,
  354.  unsigned long *p)
  355. {
  356. unsigned long ntimeout;
  357. if (get_user(ntimeout, p) ||
  358.     put_user(sbi->exp_timeout / HZ, p))
  359. return -EFAULT;
  360. if ( ntimeout > ULONG_MAX/HZ )
  361. sbi->exp_timeout = 0;
  362. else
  363. sbi->exp_timeout = ntimeout * HZ;
  364. return 0;
  365. }
  366. /* Return protocol version */
  367. static inline int autofs_get_protover(int *p)
  368. {
  369. return put_user(AUTOFS_PROTO_VERSION, p);
  370. }
  371. /* Perform an expiry operation */
  372. static inline int autofs_expire_run(struct super_block *sb,
  373.     struct autofs_sb_info *sbi,
  374.     struct vfsmount *mnt,
  375.     struct autofs_packet_expire *pkt_p)
  376. {
  377. struct autofs_dir_ent *ent;
  378. struct autofs_packet_expire pkt;
  379. memset(&pkt,0,sizeof pkt);
  380. pkt.hdr.proto_version = AUTOFS_PROTO_VERSION;
  381. pkt.hdr.type = autofs_ptype_expire;
  382. if ( !sbi->exp_timeout ||
  383.      !(ent = autofs_expire(sb,sbi,mnt)) )
  384. return -EAGAIN;
  385. pkt.len = ent->len;
  386. memcpy(pkt.name, ent->name, pkt.len);
  387. pkt.name[pkt.len] = '';
  388. if ( copy_to_user(pkt_p, &pkt, sizeof(struct autofs_packet_expire)) )
  389. return -EFAULT;
  390. return 0;
  391. }
  392. /*
  393.  * ioctl()'s on the root directory is the chief method for the daemon to
  394.  * generate kernel reactions
  395.  */
  396. static int autofs_root_ioctl(struct inode *inode, struct file *filp,
  397.      unsigned int cmd, unsigned long arg)
  398. {
  399. struct autofs_sb_info *sbi = autofs_sbi(inode->i_sb);
  400. DPRINTK(("autofs_ioctl: cmd = 0x%08x, arg = 0x%08lx, sbi = %p, pgrp = %un",cmd,arg,sbi,current->pgrp));
  401. if ( _IOC_TYPE(cmd) != _IOC_TYPE(AUTOFS_IOC_FIRST) ||
  402.      _IOC_NR(cmd) - _IOC_NR(AUTOFS_IOC_FIRST) >= AUTOFS_IOC_COUNT )
  403. return -ENOTTY;
  404. if ( !autofs_oz_mode(sbi) && !capable(CAP_SYS_ADMIN) )
  405. return -EPERM;
  406. switch(cmd) {
  407. case AUTOFS_IOC_READY: /* Wait queue: go ahead and retry */
  408. return autofs_wait_release(sbi,(autofs_wqt_t)arg,0);
  409. case AUTOFS_IOC_FAIL: /* Wait queue: fail with ENOENT */
  410. return autofs_wait_release(sbi,(autofs_wqt_t)arg,-ENOENT);
  411. case AUTOFS_IOC_CATATONIC: /* Enter catatonic mode (daemon shutdown) */
  412. autofs_catatonic_mode(sbi);
  413. return 0;
  414. case AUTOFS_IOC_PROTOVER: /* Get protocol version */
  415. return autofs_get_protover((int *)arg);
  416. case AUTOFS_IOC_SETTIMEOUT:
  417. return autofs_get_set_timeout(sbi,(unsigned long *)arg);
  418. case AUTOFS_IOC_EXPIRE:
  419. return autofs_expire_run(inode->i_sb, sbi, filp->f_vfsmnt,
  420.  (struct autofs_packet_expire *)arg);
  421. default:
  422. return -ENOSYS;
  423. }
  424. }