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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/isofs/dir.c
  3.  *
  4.  *  (C) 1992, 1993, 1994  Eric Youngdale Modified for ISO 9660 filesystem.
  5.  *
  6.  *  (C) 1991  Linus Torvalds - minix filesystem
  7.  *
  8.  *  Steve Beynon        : Missing last directory entries fixed
  9.  *  (stephen@askone.demon.co.uk)      : 21st June 1996
  10.  * 
  11.  *  isofs directory handling functions
  12.  */
  13. #include <linux/errno.h>
  14. #include <linux/fs.h>
  15. #include <linux/iso_fs.h>
  16. #include <linux/kernel.h>
  17. #include <linux/stat.h>
  18. #include <linux/string.h>
  19. #include <linux/mm.h>
  20. #include <linux/slab.h>
  21. #include <linux/sched.h>
  22. #include <linux/locks.h>
  23. #include <linux/config.h>
  24. #include <asm/uaccess.h>
  25. static int isofs_readdir(struct file *, void *, filldir_t);
  26. struct file_operations isofs_dir_operations =
  27. {
  28. read: generic_read_dir,
  29. readdir: isofs_readdir,
  30. };
  31. /*
  32.  * directories can handle most operations...
  33.  */
  34. struct inode_operations isofs_dir_inode_operations =
  35. {
  36. lookup: isofs_lookup,
  37. };
  38. int isofs_name_translate(struct iso_directory_record *de, char *new, struct inode *inode)
  39. {
  40. char * old = de->name;
  41. int len = de->name_len[0];
  42. int i;
  43. for (i = 0; i < len; i++) {
  44. unsigned char c = old[i];
  45. if (!c)
  46. break;
  47. if (c >= 'A' && c <= 'Z')
  48. c |= 0x20; /* lower case */
  49. /* Drop trailing '.;1' (ISO 9660:1988 7.5.1 requires period) */
  50. if (c == '.' && i == len - 3 && old[i + 1] == ';' && old[i + 2] == '1')
  51. break;
  52. /* Drop trailing ';1' */
  53. if (c == ';' && i == len - 2 && old[i + 1] == '1')
  54. break;
  55. /* Convert remaining ';' to '.' */
  56. if (c == ';')
  57. c = '.';
  58. new[i] = c;
  59. }
  60. return i;
  61. }
  62. /* Acorn extensions written by Matthew Wilcox <willy@bofh.ai> 1998 */
  63. int get_acorn_filename(struct iso_directory_record * de,
  64.     char * retname, struct inode * inode)
  65. {
  66. int std;
  67. unsigned char * chr;
  68. int retnamlen = isofs_name_translate(de, retname, inode);
  69. if (retnamlen == 0) return 0;
  70. std = sizeof(struct iso_directory_record) + de->name_len[0];
  71. if (std & 1) std++;
  72. if ((*((unsigned char *) de) - std) != 32) return retnamlen;
  73. chr = ((unsigned char *) de) + std;
  74. if (strncmp(chr, "ARCHIMEDES", 10)) return retnamlen;
  75. if ((*retname == '_') && ((chr[19] & 1) == 1)) *retname = '!';
  76. if (((de->flags[0] & 2) == 0) && (chr[13] == 0xff)
  77. && ((chr[12] & 0xf0) == 0xf0))
  78. {
  79. retname[retnamlen] = ',';
  80. sprintf(retname+retnamlen+1, "%3.3x",
  81. ((chr[12] & 0xf) << 8) | chr[11]);
  82. retnamlen += 4;
  83. }
  84. return retnamlen;
  85. }
  86. /*
  87.  * This should _really_ be cleaned up some day..
  88.  */
  89. static int do_isofs_readdir(struct inode *inode, struct file *filp,
  90. void *dirent, filldir_t filldir,
  91. char * tmpname, struct iso_directory_record * tmpde)
  92. {
  93. unsigned long bufsize = ISOFS_BUFFER_SIZE(inode);
  94. unsigned char bufbits = ISOFS_BUFFER_BITS(inode);
  95. unsigned int block, offset;
  96. int inode_number = 0; /* Quiet GCC */
  97. struct buffer_head *bh = NULL;
  98. int len;
  99. int map;
  100. int high_sierra;
  101. int first_de = 1;
  102. char *p = NULL; /* Quiet GCC */
  103. struct iso_directory_record *de;
  104. offset = filp->f_pos & (bufsize - 1);
  105. block = filp->f_pos >> bufbits;
  106. high_sierra = inode->i_sb->u.isofs_sb.s_high_sierra;
  107. while (filp->f_pos < inode->i_size) {
  108. int de_len;
  109. if (!bh) {
  110. bh = isofs_bread(inode, block);
  111. if (!bh)
  112. return 0;
  113. }
  114. de = (struct iso_directory_record *) (bh->b_data + offset);
  115. if (first_de)
  116. inode_number = (bh->b_blocknr << bufbits) + offset;
  117. de_len = *(unsigned char *) de;
  118. /* If the length byte is zero, we should move on to the next
  119.    CDROM sector.  If we are at the end of the directory, we
  120.    kick out of the while loop. */
  121. if (de_len == 0) {
  122. brelse(bh);
  123. bh = NULL;
  124. filp->f_pos = (filp->f_pos + ISOFS_BLOCK_SIZE) & ~(ISOFS_BLOCK_SIZE - 1);
  125. block = filp->f_pos >> bufbits;
  126. offset = 0;
  127. continue;
  128. }
  129. offset += de_len;
  130. /* Make sure we have a full directory entry */
  131. if (offset >= bufsize) {
  132. int slop = bufsize - offset + de_len;
  133. memcpy(tmpde, de, slop);
  134. offset &= bufsize - 1;
  135. block++;
  136. brelse(bh);
  137. bh = NULL;
  138. if (offset) {
  139. bh = isofs_bread(inode, block);
  140. if (!bh)
  141. return 0;
  142. memcpy((void *) tmpde + slop, bh->b_data, offset);
  143. }
  144. de = tmpde;
  145. }
  146. if (de->flags[-high_sierra] & 0x80) {
  147. first_de = 0;
  148. filp->f_pos += de_len;
  149. continue;
  150. }
  151. first_de = 1;
  152. /* Handle the case of the '.' directory */
  153. if (de->name_len[0] == 1 && de->name[0] == 0) {
  154. if (filldir(dirent, ".", 1, filp->f_pos, inode->i_ino, DT_DIR) < 0)
  155. break;
  156. filp->f_pos += de_len;
  157. continue;
  158. }
  159. len = 0;
  160. /* Handle the case of the '..' directory */
  161. if (de->name_len[0] == 1 && de->name[0] == 1) {
  162. inode_number = filp->f_dentry->d_parent->d_inode->i_ino;
  163. if (filldir(dirent, "..", 2, filp->f_pos, inode_number, DT_DIR) < 0)
  164. break;
  165. filp->f_pos += de_len;
  166. continue;
  167. }
  168. /* Handle everything else.  Do name translation if there
  169.    is no Rock Ridge NM field. */
  170. if (inode->i_sb->u.isofs_sb.s_unhide == 'n') {
  171. /* Do not report hidden or associated files */
  172. if (de->flags[-high_sierra] & 5) {
  173. filp->f_pos += de_len;
  174. continue;
  175. }
  176. }
  177. map = 1;
  178. if (inode->i_sb->u.isofs_sb.s_rock) {
  179. len = get_rock_ridge_filename(de, tmpname, inode);
  180. if (len != 0) { /* may be -1 */
  181. p = tmpname;
  182. map = 0;
  183. }
  184. }
  185. if (map) {
  186. #ifdef CONFIG_JOLIET
  187. if (inode->i_sb->u.isofs_sb.s_joliet_level) {
  188. len = get_joliet_filename(de, tmpname, inode);
  189. p = tmpname;
  190. } else
  191. #endif
  192. if (inode->i_sb->u.isofs_sb.s_mapping == 'a') {
  193. len = get_acorn_filename(de, tmpname, inode);
  194. p = tmpname;
  195. } else
  196. if (inode->i_sb->u.isofs_sb.s_mapping == 'n') {
  197. len = isofs_name_translate(de, tmpname, inode);
  198. p = tmpname;
  199. } else {
  200. p = de->name;
  201. len = de->name_len[0];
  202. }
  203. }
  204. if (len > 0) {
  205. if (filldir(dirent, p, len, filp->f_pos, inode_number, DT_UNKNOWN) < 0)
  206. break;
  207. }
  208. filp->f_pos += de_len;
  209. continue;
  210. }
  211. if (bh) brelse(bh);
  212. return 0;
  213. }
  214. /*
  215.  * Handle allocation of temporary space for name translation and
  216.  * handling split directory entries.. The real work is done by
  217.  * "do_isofs_readdir()".
  218.  */
  219. static int isofs_readdir(struct file *filp,
  220. void *dirent, filldir_t filldir)
  221. {
  222. int result;
  223. char * tmpname;
  224. struct iso_directory_record * tmpde;
  225. struct inode *inode = filp->f_dentry->d_inode;
  226. tmpname = (char *) __get_free_page(GFP_KERNEL);
  227. if (!tmpname)
  228. return -ENOMEM;
  229. tmpde = (struct iso_directory_record *) (tmpname+1024);
  230. result = do_isofs_readdir(inode, filp, dirent, filldir, tmpname, tmpde);
  231. free_page((unsigned long) tmpname);
  232. return result;
  233. }