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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- linux-c -*- --------------------------------------------------------- *
  2.  *
  3.  * linux/fs/autofs/inode.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/kernel.h>
  13. #include <linux/slab.h>
  14. #include <linux/file.h>
  15. #include <linux/locks.h>
  16. #include <asm/bitops.h>
  17. #include "autofs_i.h"
  18. #define __NO_VERSION__
  19. #include <linux/module.h>
  20. static void autofs_put_super(struct super_block *sb)
  21. {
  22. struct autofs_sb_info *sbi = autofs_sbi(sb);
  23. unsigned int n;
  24. if ( !sbi->catatonic )
  25. autofs_catatonic_mode(sbi); /* Free wait queues, close pipe */
  26. autofs_hash_nuke(&sbi->dirhash);
  27. for ( n = 0 ; n < AUTOFS_MAX_SYMLINKS ; n++ ) {
  28. if ( test_bit(n, sbi->symlink_bitmap) )
  29. kfree(sbi->symlink[n].data);
  30. }
  31. kfree(sb->u.generic_sbp);
  32. DPRINTK(("autofs: shutting downn"));
  33. }
  34. static int autofs_statfs(struct super_block *sb, struct statfs *buf);
  35. static void autofs_read_inode(struct inode *inode);
  36. static struct super_operations autofs_sops = {
  37. read_inode: autofs_read_inode,
  38. put_super: autofs_put_super,
  39. statfs: autofs_statfs,
  40. };
  41. static int parse_options(char *options, int *pipefd, uid_t *uid, gid_t *gid, pid_t *pgrp, int *minproto, int *maxproto)
  42. {
  43. char *this_char, *value;
  44. *uid = current->uid;
  45. *gid = current->gid;
  46. *pgrp = current->pgrp;
  47. *minproto = *maxproto = AUTOFS_PROTO_VERSION;
  48. *pipefd = -1;
  49. if ( !options ) return 1;
  50. for (this_char = strtok(options,","); this_char; this_char = strtok(NULL,",")) {
  51. if ((value = strchr(this_char,'=')) != NULL)
  52. *value++ = 0;
  53. if (!strcmp(this_char,"fd")) {
  54. if (!value || !*value)
  55. return 1;
  56. *pipefd = simple_strtoul(value,&value,0);
  57. if (*value)
  58. return 1;
  59. }
  60. else if (!strcmp(this_char,"uid")) {
  61. if (!value || !*value)
  62. return 1;
  63. *uid = simple_strtoul(value,&value,0);
  64. if (*value)
  65. return 1;
  66. }
  67. else if (!strcmp(this_char,"gid")) {
  68. if (!value || !*value)
  69. return 1;
  70. *gid = simple_strtoul(value,&value,0);
  71. if (*value)
  72. return 1;
  73. }
  74. else if (!strcmp(this_char,"pgrp")) {
  75. if (!value || !*value)
  76. return 1;
  77. *pgrp = simple_strtoul(value,&value,0);
  78. if (*value)
  79. return 1;
  80. }
  81. else if (!strcmp(this_char,"minproto")) {
  82. if (!value || !*value)
  83. return 1;
  84. *minproto = simple_strtoul(value,&value,0);
  85. if (*value)
  86. return 1;
  87. }
  88. else if (!strcmp(this_char,"maxproto")) {
  89. if (!value || !*value)
  90. return 1;
  91. *maxproto = simple_strtoul(value,&value,0);
  92. if (*value)
  93. return 1;
  94. }
  95. else break;
  96. }
  97. return (*pipefd < 0);
  98. }
  99. struct super_block *autofs_read_super(struct super_block *s, void *data,
  100.       int silent)
  101. {
  102. struct inode * root_inode;
  103. struct dentry * root;
  104. struct file * pipe;
  105. int pipefd;
  106. struct autofs_sb_info *sbi;
  107. int minproto, maxproto;
  108. sbi = (struct autofs_sb_info *) kmalloc(sizeof(struct autofs_sb_info), GFP_KERNEL);
  109. if ( !sbi )
  110. goto fail_unlock;
  111. DPRINTK(("autofs: starting up, sbi = %pn",sbi));
  112. s->u.generic_sbp = sbi;
  113. sbi->magic = AUTOFS_SBI_MAGIC;
  114. sbi->catatonic = 0;
  115. sbi->exp_timeout = 0;
  116. sbi->oz_pgrp = current->pgrp;
  117. autofs_initialize_hash(&sbi->dirhash);
  118. sbi->queues = NULL;
  119. memset(sbi->symlink_bitmap, 0, sizeof(long)*AUTOFS_SYMLINK_BITMAP_LEN);
  120. sbi->next_dir_ino = AUTOFS_FIRST_DIR_INO;
  121. s->s_blocksize = 1024;
  122. s->s_blocksize_bits = 10;
  123. s->s_magic = AUTOFS_SUPER_MAGIC;
  124. s->s_op = &autofs_sops;
  125. root_inode = iget(s, AUTOFS_ROOT_INO);
  126. root = d_alloc_root(root_inode);
  127. pipe = NULL;
  128. if (!root)
  129. goto fail_iput;
  130. /* Can this call block?  - WTF cares? s is locked. */
  131. if ( parse_options(data,&pipefd,&root_inode->i_uid,&root_inode->i_gid,&sbi->oz_pgrp,&minproto,&maxproto) ) {
  132. printk("autofs: called with bogus optionsn");
  133. goto fail_dput;
  134. }
  135. /* Couldn't this be tested earlier? */
  136. if ( minproto > AUTOFS_PROTO_VERSION || 
  137.      maxproto < AUTOFS_PROTO_VERSION ) {
  138. printk("autofs: kernel does not match daemon versionn");
  139. goto fail_dput;
  140. }
  141. DPRINTK(("autofs: pipe fd = %d, pgrp = %un", pipefd, sbi->oz_pgrp));
  142. pipe = fget(pipefd);
  143. if ( !pipe ) {
  144. printk("autofs: could not open pipe file descriptorn");
  145. goto fail_dput;
  146. }
  147. if ( !pipe->f_op || !pipe->f_op->write )
  148. goto fail_fput;
  149. sbi->pipe = pipe;
  150. /*
  151.  * Success! Install the root dentry now to indicate completion.
  152.  */
  153. s->s_root = root;
  154. return s;
  155. fail_fput:
  156. printk("autofs: pipe file descriptor does not contain proper opsn");
  157. fput(pipe);
  158. fail_dput:
  159. dput(root);
  160. goto fail_free;
  161. fail_iput:
  162. printk("autofs: get root dentry failedn");
  163. iput(root_inode);
  164. fail_free:
  165. kfree(sbi);
  166. fail_unlock:
  167. return NULL;
  168. }
  169. static int autofs_statfs(struct super_block *sb, struct statfs *buf)
  170. {
  171. buf->f_type = AUTOFS_SUPER_MAGIC;
  172. buf->f_bsize = 1024;
  173. buf->f_namelen = NAME_MAX;
  174. return 0;
  175. }
  176. static void autofs_read_inode(struct inode *inode)
  177. {
  178. ino_t ino = inode->i_ino;
  179. unsigned int n;
  180. struct autofs_sb_info *sbi = autofs_sbi(inode->i_sb);
  181. /* Initialize to the default case (stub directory) */
  182. inode->i_op = &autofs_dir_inode_operations;
  183. inode->i_fop = &autofs_dir_operations;
  184. inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO;
  185. inode->i_nlink = 2;
  186. inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
  187. inode->i_blocks = 0;
  188. inode->i_blksize = 1024;
  189. if ( ino == AUTOFS_ROOT_INO ) {
  190. inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO | S_IWUSR;
  191. inode->i_op = &autofs_root_inode_operations;
  192. inode->i_fop = &autofs_root_operations;
  193. inode->i_uid = inode->i_gid = 0; /* Changed in read_super */
  194. return;
  195. inode->i_uid = inode->i_sb->s_root->d_inode->i_uid;
  196. inode->i_gid = inode->i_sb->s_root->d_inode->i_gid;
  197. if ( ino >= AUTOFS_FIRST_SYMLINK && ino < AUTOFS_FIRST_DIR_INO ) {
  198. /* Symlink inode - should be in symlink list */
  199. struct autofs_symlink *sl;
  200. n = ino - AUTOFS_FIRST_SYMLINK;
  201. if ( n >= AUTOFS_MAX_SYMLINKS || !test_bit(n,sbi->symlink_bitmap)) {
  202. printk("autofs: Looking for bad symlink inode %un", (unsigned int) ino);
  203. return;
  204. }
  205. inode->i_op = &autofs_symlink_inode_operations;
  206. sl = &sbi->symlink[n];
  207. inode->u.generic_ip = sl;
  208. inode->i_mode = S_IFLNK | S_IRWXUGO;
  209. inode->i_mtime = inode->i_ctime = sl->mtime;
  210. inode->i_size = sl->len;
  211. inode->i_nlink = 1;
  212. }
  213. }