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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.  * QNX4 file system, Linux implementation.
  3.  * 
  4.  * Version : 0.2.1
  5.  * 
  6.  * Using parts of the xiafs filesystem.
  7.  * 
  8.  * History :
  9.  * 
  10.  * 01-06-1998 by Richard Frowijn : first release.
  11.  * 21-06-1998 by Frank Denis : dcache support, fixed error codes.
  12.  * 04-07-1998 by Frank Denis : first step for rmdir/unlink.
  13.  */
  14. #include <linux/config.h>
  15. #include <linux/sched.h>
  16. #include <linux/qnx4_fs.h>
  17. #include <linux/kernel.h>
  18. #include <linux/string.h>
  19. #include <linux/stat.h>
  20. #include <linux/fcntl.h>
  21. #include <linux/errno.h>
  22. #include <asm/segment.h>
  23. /*
  24.  * check if the filename is correct. For some obscure reason, qnx writes a
  25.  * new file twice in the directory entry, first with all possible options at 0
  26.  * and for a second time the way it is, they want us not to access the qnx
  27.  * filesystem when whe are using linux.
  28.  */
  29. static int qnx4_match(int len, const char *name,
  30.       struct buffer_head *bh, unsigned long *offset)
  31. {
  32. struct qnx4_inode_entry *de;
  33. int namelen, thislen;
  34. if (bh == NULL) {
  35. printk("qnx4: matching unassigned buffer !n");
  36. return 0;
  37. }
  38. de = (struct qnx4_inode_entry *) (bh->b_data + *offset);
  39. *offset += QNX4_DIR_ENTRY_SIZE;
  40. if ((de->di_status & QNX4_FILE_LINK) != 0) {
  41. namelen = QNX4_NAME_MAX;
  42. } else {
  43. namelen = QNX4_SHORT_NAME_MAX;
  44. }
  45. /* "" means "." ---> so paths like "/usr/lib//libc.a" work */
  46. if (!len && (de->di_fname[0] == '.') && (de->di_fname[1] == '')) {
  47. return 1;
  48. }
  49. thislen = strlen( de->di_fname );
  50. if ( thislen > namelen )
  51. thislen = namelen;
  52. if (len != thislen) {
  53. return 0;
  54. }
  55. if (strncmp(name, de->di_fname, len) == 0) {
  56. if ((de->di_status & (QNX4_FILE_USED|QNX4_FILE_LINK)) != 0) {
  57. return 1;
  58. }
  59. }
  60. return 0;
  61. }
  62. static struct buffer_head *qnx4_find_entry(int len, struct inode *dir,
  63.    const char *name, struct qnx4_inode_entry **res_dir, int *ino)
  64. {
  65. unsigned long block, offset, blkofs;
  66. struct buffer_head *bh;
  67. *res_dir = NULL;
  68. if (!dir->i_sb) {
  69. printk("qnx4: no superblock on dir.n");
  70. return NULL;
  71. }
  72. bh = NULL;
  73. block = offset = blkofs = 0;
  74. while (blkofs * QNX4_BLOCK_SIZE + offset < dir->i_size) {
  75. if (!bh) {
  76. bh = qnx4_bread(dir, blkofs, 0);
  77. if (!bh) {
  78. blkofs++;
  79. continue;
  80. }
  81. }
  82. *res_dir = (struct qnx4_inode_entry *) (bh->b_data + offset);
  83. if (qnx4_match(len, name, bh, &offset)) {
  84. block = qnx4_block_map( dir, blkofs );
  85. *ino = block * QNX4_INODES_PER_BLOCK +
  86.     (offset / QNX4_DIR_ENTRY_SIZE) - 1;
  87. return bh;
  88. }
  89. if (offset < bh->b_size) {
  90. continue;
  91. }
  92. brelse(bh);
  93. bh = NULL;
  94. offset = 0;
  95. blkofs++;
  96. }
  97. brelse(bh);
  98. *res_dir = NULL;
  99. return NULL;
  100. }
  101. struct dentry * qnx4_lookup(struct inode *dir, struct dentry *dentry)
  102. {
  103. int ino;
  104. struct qnx4_inode_entry *de;
  105. struct qnx4_link_info *lnk;
  106. struct buffer_head *bh;
  107. const char *name = dentry->d_name.name;
  108. int len = dentry->d_name.len;
  109. struct inode *foundinode = NULL;
  110. if (!(bh = qnx4_find_entry(len, dir, name, &de, &ino)))
  111. goto out;
  112. /* The entry is linked, let's get the real info */
  113. if ((de->di_status & QNX4_FILE_LINK) == QNX4_FILE_LINK) {
  114. lnk = (struct qnx4_link_info *) de;
  115. ino = (le32_to_cpu(lnk->dl_inode_blk) - 1) *
  116.                     QNX4_INODES_PER_BLOCK +
  117.     lnk->dl_inode_ndx;
  118. }
  119. brelse(bh);
  120. if ((foundinode = iget(dir->i_sb, ino)) == NULL) {
  121. QNX4DEBUG(("qnx4: lookup->iget -> NULLn"));
  122. return ERR_PTR(-EACCES);
  123. }
  124. out:
  125. d_add(dentry, foundinode);
  126. return NULL;
  127. }
  128. #ifdef CONFIG_QNX4FS_RW
  129. int qnx4_create(struct inode *dir, struct dentry *dentry, int mode)
  130. {
  131. QNX4DEBUG(("qnx4: qnx4_createn"));
  132. if (dir == NULL) {
  133. return -ENOENT;
  134. }
  135. return -ENOSPC;
  136. }
  137. int qnx4_rmdir(struct inode *dir, struct dentry *dentry)
  138. {
  139. struct buffer_head *bh;
  140. struct qnx4_inode_entry *de;
  141. struct inode *inode;
  142. int retval;
  143. int ino;
  144. QNX4DEBUG(("qnx4: qnx4_rmdir [%s]n", dentry->d_name.name));
  145. bh = qnx4_find_entry(dentry->d_name.len, dir, dentry->d_name.name,
  146.      &de, &ino);
  147. if (bh == NULL) {
  148. return -ENOENT;
  149. }
  150. inode = dentry->d_inode;
  151. if (inode->i_ino != ino) {
  152. retval = -EIO;
  153. goto end_rmdir;
  154. }
  155. #if 0
  156. if (!empty_dir(inode)) {
  157. retval = -ENOTEMPTY;
  158. goto end_rmdir;
  159. }
  160. #endif
  161. if (inode->i_nlink != 2) {
  162. QNX4DEBUG(("empty directory has nlink!=2 (%d)n", inode->i_nlink));
  163. }
  164. QNX4DEBUG(("qnx4: deleting directoryn"));
  165. de->di_status = 0;
  166. memset(de->di_fname, 0, sizeof de->di_fname);
  167. de->di_mode = 0;
  168. mark_buffer_dirty(bh);
  169. inode->i_nlink = 0;
  170. mark_inode_dirty(inode);
  171. inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
  172. dir->i_nlink--;
  173. mark_inode_dirty(dir);
  174. retval = 0;
  175.       end_rmdir:
  176. brelse(bh);
  177. return retval;
  178. }
  179. int qnx4_unlink(struct inode *dir, struct dentry *dentry)
  180. {
  181. struct buffer_head *bh;
  182. struct qnx4_inode_entry *de;
  183. struct inode *inode;
  184. int retval;
  185. int ino;
  186. QNX4DEBUG(("qnx4: qnx4_unlink [%s]n", dentry->d_name.name));
  187. bh = qnx4_find_entry(dentry->d_name.len, dir, dentry->d_name.name,
  188.      &de, &ino);
  189. if (bh == NULL) {
  190. return -ENOENT;
  191. }
  192. inode = dentry->d_inode;
  193. if (inode->i_ino != ino) {
  194. retval = -EIO;
  195. goto end_unlink;
  196. }
  197. retval = -EPERM;
  198. if (!inode->i_nlink) {
  199. QNX4DEBUG(("Deleting nonexistent file (%s:%lu), %dn",
  200.    kdevname(inode->i_dev),
  201.    inode->i_ino, inode->i_nlink));
  202. inode->i_nlink = 1;
  203. }
  204. de->di_status = 0;
  205. memset(de->di_fname, 0, sizeof de->di_fname);
  206. de->di_mode = 0;
  207. mark_buffer_dirty(bh);
  208. dir->i_ctime = dir->i_mtime = CURRENT_TIME;
  209. mark_inode_dirty(dir);
  210. inode->i_nlink--;
  211. inode->i_ctime = dir->i_ctime;
  212. mark_inode_dirty(inode);
  213. retval = 0;
  214.       end_unlink:
  215. brelse(bh);
  216. return retval;
  217. }
  218. #endif