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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/ext3/dir.c
  3.  *
  4.  * Copyright (C) 1992, 1993, 1994, 1995
  5.  * Remy Card (card@masi.ibp.fr)
  6.  * Laboratoire MASI - Institut Blaise Pascal
  7.  * Universite Pierre et Marie Curie (Paris VI)
  8.  *
  9.  *  from
  10.  *
  11.  *  linux/fs/minix/dir.c
  12.  *
  13.  *  Copyright (C) 1991, 1992  Linus Torvalds
  14.  *
  15.  *  ext3 directory handling functions
  16.  *
  17.  *  Big-endian to little-endian byte-swapping/bitmaps by
  18.  *        David S. Miller (davem@caip.rutgers.edu), 1995
  19.  */
  20. #include <linux/fs.h>
  21. #include <linux/jbd.h>
  22. #include <linux/ext3_fs.h>
  23. static unsigned char ext3_filetype_table[] = {
  24. DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
  25. };
  26. static int ext3_readdir(struct file *, void *, filldir_t);
  27. struct file_operations ext3_dir_operations = {
  28. read: generic_read_dir,
  29. readdir: ext3_readdir, /* BKL held */
  30. ioctl: ext3_ioctl, /* BKL held */
  31. fsync: ext3_sync_file, /* BKL held */
  32. };
  33. int ext3_check_dir_entry (const char * function, struct inode * dir,
  34.   struct ext3_dir_entry_2 * de,
  35.   struct buffer_head * bh,
  36.   unsigned long offset)
  37. {
  38. const char * error_msg = NULL;
  39.   const int rlen = le16_to_cpu(de->rec_len);
  40. if (rlen < EXT3_DIR_REC_LEN(1))
  41. error_msg = "rec_len is smaller than minimal";
  42. else if (rlen % 4 != 0)
  43. error_msg = "rec_len % 4 != 0";
  44. else if (rlen < EXT3_DIR_REC_LEN(de->name_len))
  45. error_msg = "rec_len is too small for name_len";
  46. else if (((char *) de - bh->b_data) + rlen > dir->i_sb->s_blocksize)
  47. error_msg = "directory entry across blocks";
  48. else if (le32_to_cpu(de->inode) >
  49. le32_to_cpu(dir->i_sb->u.ext3_sb.s_es->s_inodes_count))
  50. error_msg = "inode out of bounds";
  51. if (error_msg != NULL)
  52. ext3_error (dir->i_sb, function,
  53. "bad entry in directory #%lu: %s - "
  54. "offset=%lu, inode=%lu, rec_len=%d, name_len=%d",
  55. dir->i_ino, error_msg, offset,
  56. (unsigned long) le32_to_cpu(de->inode),
  57. rlen, de->name_len);
  58. return error_msg == NULL ? 1 : 0;
  59. }
  60. static int ext3_readdir(struct file * filp,
  61.  void * dirent, filldir_t filldir)
  62. {
  63. int error = 0;
  64. unsigned long offset, blk;
  65. int i, num, stored;
  66. struct buffer_head * bh, * tmp, * bha[16];
  67. struct ext3_dir_entry_2 * de;
  68. struct super_block * sb;
  69. int err;
  70. struct inode *inode = filp->f_dentry->d_inode;
  71. sb = inode->i_sb;
  72. stored = 0;
  73. bh = NULL;
  74. offset = filp->f_pos & (sb->s_blocksize - 1);
  75. while (!error && !stored && filp->f_pos < inode->i_size) {
  76. blk = (filp->f_pos) >> EXT3_BLOCK_SIZE_BITS(sb);
  77. bh = ext3_bread (0, inode, blk, 0, &err);
  78. if (!bh) {
  79. ext3_error (sb, "ext3_readdir",
  80. "directory #%lu contains a hole at offset %lu",
  81. inode->i_ino, (unsigned long)filp->f_pos);
  82. filp->f_pos += sb->s_blocksize - offset;
  83. continue;
  84. }
  85. /*
  86.  * Do the readahead
  87.  */
  88. if (!offset) {
  89. for (i = 16 >> (EXT3_BLOCK_SIZE_BITS(sb) - 9), num = 0;
  90.      i > 0; i--) {
  91. tmp = ext3_getblk (NULL, inode, ++blk, 0, &err);
  92. if (tmp && !buffer_uptodate(tmp) &&
  93. !buffer_locked(tmp))
  94. bha[num++] = tmp;
  95. else
  96. brelse (tmp);
  97. }
  98. if (num) {
  99. ll_rw_block (READA, num, bha);
  100. for (i = 0; i < num; i++)
  101. brelse (bha[i]);
  102. }
  103. }
  104. revalidate:
  105. /* If the dir block has changed since the last call to
  106.  * readdir(2), then we might be pointing to an invalid
  107.  * dirent right now.  Scan from the start of the block
  108.  * to make sure. */
  109. if (filp->f_version != inode->i_version) {
  110. for (i = 0; i < sb->s_blocksize && i < offset; ) {
  111. de = (struct ext3_dir_entry_2 *) 
  112. (bh->b_data + i);
  113. /* It's too expensive to do a full
  114.  * dirent test each time round this
  115.  * loop, but we do have to test at
  116.  * least that it is non-zero.  A
  117.  * failure will be detected in the
  118.  * dirent test below. */
  119. if (le16_to_cpu(de->rec_len) <
  120. EXT3_DIR_REC_LEN(1))
  121. break;
  122. i += le16_to_cpu(de->rec_len);
  123. }
  124. offset = i;
  125. filp->f_pos = (filp->f_pos & ~(sb->s_blocksize - 1))
  126. | offset;
  127. filp->f_version = inode->i_version;
  128. }
  129. while (!error && filp->f_pos < inode->i_size 
  130.        && offset < sb->s_blocksize) {
  131. de = (struct ext3_dir_entry_2 *) (bh->b_data + offset);
  132. if (!ext3_check_dir_entry ("ext3_readdir", inode, de,
  133.    bh, offset)) {
  134. /* On error, skip the f_pos to the
  135.                                    next block. */
  136. filp->f_pos = (filp->f_pos |
  137. (sb->s_blocksize - 1)) + 1;
  138. brelse (bh);
  139. return stored;
  140. }
  141. offset += le16_to_cpu(de->rec_len);
  142. if (le32_to_cpu(de->inode)) {
  143. /* We might block in the next section
  144.  * if the data destination is
  145.  * currently swapped out.  So, use a
  146.  * version stamp to detect whether or
  147.  * not the directory has been modified
  148.  * during the copy operation.
  149.  */
  150. unsigned long version = filp->f_version;
  151. unsigned char d_type = DT_UNKNOWN;
  152. if (EXT3_HAS_INCOMPAT_FEATURE(sb,
  153. EXT3_FEATURE_INCOMPAT_FILETYPE)
  154. && de->file_type < EXT3_FT_MAX)
  155. d_type =
  156.   ext3_filetype_table[de->file_type];
  157. error = filldir(dirent, de->name,
  158. de->name_len,
  159. filp->f_pos,
  160. le32_to_cpu(de->inode),
  161. d_type);
  162. if (error)
  163. break;
  164. if (version != filp->f_version)
  165. goto revalidate;
  166. stored ++;
  167. }
  168. filp->f_pos += le16_to_cpu(de->rec_len);
  169. }
  170. offset = 0;
  171. brelse (bh);
  172. }
  173. UPDATE_ATIME(inode);
  174. return 0;
  175. }