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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/fat/misc.c
  3.  *
  4.  *  Written 1992,1993 by Werner Almesberger
  5.  *  22/11/2000 - Fixed fat_date_unix2dos for dates earlier than 01/01/1980
  6.  *  and date_dos2unix for date==0 by Igor Zhbanov(bsg@uniyar.ac.ru)
  7.  */
  8. #include <linux/fs.h>
  9. #include <linux/msdos_fs.h>
  10. #include <linux/sched.h>
  11. #include <linux/kernel.h>
  12. #include <linux/errno.h>
  13. #include <linux/string.h>
  14. #include <linux/stat.h>
  15. #if 0
  16. #  define PRINTK(x) printk x
  17. #else
  18. #  define PRINTK(x)
  19. #endif
  20. #define Printk(x) printk x
  21. /* Well-known binary file extensions - of course there are many more */
  22. static char ascii_extensions[] =
  23.   "TXT" "ME " "HTM" "1ST" "LOG" "   "  /* text files */
  24.   "C  " "H  " "CPP" "LIS" "PAS" "FOR"  /* programming languages */
  25.   "F  " "MAK" "INC" "BAS"  /* programming languages */
  26.   "BAT" "SH " /* program code :) */
  27.   "INI" /* config files */
  28.   "PBM" "PGM" "DXF" /* graphics */
  29.   "TEX"; /* TeX */
  30. /*
  31.  * fat_fs_panic reports a severe file system problem and sets the file system
  32.  * read-only. The file system can be made writable again by remounting it.
  33.  */
  34. void fat_fs_panic(struct super_block *s,const char *msg)
  35. {
  36. int not_ro;
  37. not_ro = !(s->s_flags & MS_RDONLY);
  38. if (not_ro) s->s_flags |= MS_RDONLY;
  39. printk("Filesystem panic (dev %s).n  %sn", kdevname(s->s_dev), msg);
  40. if (not_ro)
  41. printk("  File system has been set read-onlyn");
  42. }
  43. /*
  44.  * fat_is_binary selects optional text conversion based on the conversion mode
  45.  * and the extension part of the file name.
  46.  */
  47. int fat_is_binary(char conversion,char *extension)
  48. {
  49. char *walk;
  50. switch (conversion) {
  51. case 'b':
  52. return 1;
  53. case 't':
  54. return 0;
  55. case 'a':
  56. for (walk = ascii_extensions; *walk; walk += 3)
  57. if (!strncmp(extension,walk,3)) return 0;
  58. return 1; /* default binary conversion */
  59. default:
  60. printk("Invalid conversion mode - defaulting to "
  61.     "binary.n");
  62. return 1;
  63. }
  64. }
  65. void lock_fat(struct super_block *sb)
  66. {
  67. down(&(MSDOS_SB(sb)->fat_lock));
  68. }
  69. void unlock_fat(struct super_block *sb)
  70. {
  71. up(&(MSDOS_SB(sb)->fat_lock));
  72. }
  73. /* Flushes the number of free clusters on FAT32 */
  74. /* XXX: Need to write one per FSINFO block.  Currently only writes 1 */
  75. void fat_clusters_flush(struct super_block *sb)
  76. {
  77. struct buffer_head *bh;
  78. struct fat_boot_fsinfo *fsinfo;
  79. bh = fat_bread(sb, MSDOS_SB(sb)->fsinfo_sector);
  80. if (bh == NULL) {
  81. printk("FAT bread failed in fat_clusters_flushn");
  82. return;
  83. }
  84. fsinfo = (struct fat_boot_fsinfo *)bh->b_data;
  85. /* Sanity check */
  86. if (!IS_FSINFO(fsinfo)) {
  87. printk("FAT: Did not find valid FSINFO signature.n"
  88.        "Found signature1 0x%x signature2 0x%x sector=%ld.n",
  89.        CF_LE_L(fsinfo->signature1), CF_LE_L(fsinfo->signature2),
  90.        MSDOS_SB(sb)->fsinfo_sector);
  91. return;
  92. }
  93. fsinfo->free_clusters = CF_LE_L(MSDOS_SB(sb)->free_clusters);
  94. fat_mark_buffer_dirty(sb, bh);
  95. fat_brelse(sb, bh);
  96. }
  97. /*
  98.  * fat_add_cluster tries to allocate a new cluster and adds it to the
  99.  * file represented by inode.
  100.  */
  101. int fat_add_cluster(struct inode *inode)
  102. {
  103. struct super_block *sb = inode->i_sb;
  104. int count, nr, limit, last, curr, file_cluster;
  105. int cluster_size = MSDOS_SB(sb)->cluster_size;
  106. int res = -ENOSPC;
  107. lock_fat(sb);
  108. if (MSDOS_SB(sb)->free_clusters == 0) {
  109. unlock_fat(sb);
  110. return res;
  111. }
  112. limit = MSDOS_SB(sb)->clusters;
  113. nr = limit; /* to keep GCC happy */
  114. for (count = 0; count < limit; count++) {
  115. nr = ((count + MSDOS_SB(sb)->prev_free) % limit) + 2;
  116. if (fat_access(sb, nr, -1) == 0)
  117. break;
  118. }
  119. if (count >= limit) {
  120. MSDOS_SB(sb)->free_clusters = 0;
  121. unlock_fat(sb);
  122. return res;
  123. }
  124. MSDOS_SB(sb)->prev_free = (count + MSDOS_SB(sb)->prev_free + 1) % limit;
  125. fat_access(sb, nr, EOF_FAT(sb));
  126. if (MSDOS_SB(sb)->free_clusters != -1)
  127. MSDOS_SB(sb)->free_clusters--;
  128. if (MSDOS_SB(sb)->fat_bits == 32)
  129. fat_clusters_flush(sb);
  130. unlock_fat(sb);
  131. /* We must locate the last cluster of the file to add this
  132.    new one (nr) to the end of the link list (the FAT).
  133.    
  134.    Here file_cluster will be the number of the last cluster of the
  135.    file (before we add nr).
  136.    
  137.    last is the corresponding cluster number on the disk. We will
  138.    use last to plug the nr cluster. We will use file_cluster to
  139.    update the cache.
  140. */
  141. last = file_cluster = 0;
  142. if ((curr = MSDOS_I(inode)->i_start) != 0) {
  143. fat_cache_lookup(inode, INT_MAX, &last, &curr);
  144. file_cluster = last;
  145. while (curr && curr != -1){
  146. file_cluster++;
  147. if (!(curr = fat_access(sb, last = curr,-1))) {
  148. fat_fs_panic(sb, "File without EOF");
  149. return res;
  150. }
  151. }
  152. }
  153. if (last) {
  154. fat_access(sb, last, nr);
  155. fat_cache_add(inode, file_cluster, nr);
  156. } else {
  157. MSDOS_I(inode)->i_start = nr;
  158. MSDOS_I(inode)->i_logstart = nr;
  159. mark_inode_dirty(inode);
  160. }
  161. if (file_cluster
  162.     != inode->i_blocks / cluster_size / (sb->s_blocksize / 512)) {
  163. printk ("file_cluster badly computed!!! %d <> %ldn",
  164. file_cluster,
  165. inode->i_blocks / cluster_size / (sb->s_blocksize / 512));
  166. fat_cache_inval_inode(inode);
  167. }
  168. inode->i_blocks += (1 << MSDOS_SB(sb)->cluster_bits) / 512;
  169. return nr;
  170. }
  171. struct buffer_head *fat_extend_dir(struct inode *inode)
  172. {
  173. struct super_block *sb = inode->i_sb;
  174. int nr, sector, last_sector;
  175. struct buffer_head *bh, *res = NULL;
  176. int cluster_size = MSDOS_SB(sb)->cluster_size;
  177. if (MSDOS_SB(sb)->fat_bits != 32) {
  178. if (inode->i_ino == MSDOS_ROOT_INO)
  179. return res;
  180. }
  181. nr = fat_add_cluster(inode);
  182. if (nr < 0)
  183. return res;
  184. sector = MSDOS_SB(sb)->data_start + (nr - 2) * cluster_size;
  185. last_sector = sector + cluster_size;
  186. if (MSDOS_SB(sb)->cvf_format && MSDOS_SB(sb)->cvf_format->zero_out_cluster)
  187. MSDOS_SB(sb)->cvf_format->zero_out_cluster(inode, nr);
  188. else {
  189. for ( ; sector < last_sector; sector++) {
  190. #ifdef DEBUG
  191. printk("zeroing sector %dn", sector);
  192. #endif
  193. if (!(bh = fat_getblk(sb, sector)))
  194. printk("getblk failedn");
  195. else {
  196. memset(bh->b_data, 0, sb->s_blocksize);
  197. fat_set_uptodate(sb, bh, 1);
  198. fat_mark_buffer_dirty(sb, bh);
  199. if (!res)
  200. res = bh;
  201. else
  202. fat_brelse(sb, bh);
  203. }
  204. }
  205. }
  206. if (inode->i_size & (sb->s_blocksize - 1)) {
  207. fat_fs_panic(sb, "Odd directory size");
  208. inode->i_size = (inode->i_size + sb->s_blocksize)
  209. & ~(sb->s_blocksize - 1);
  210. }
  211. inode->i_size += 1 << MSDOS_SB(sb)->cluster_bits;
  212. MSDOS_I(inode)->mmu_private += 1 << MSDOS_SB(sb)->cluster_bits;
  213. mark_inode_dirty(inode);
  214. return res;
  215. }
  216. /* Linear day numbers of the respective 1sts in non-leap years. */
  217. static int day_n[] = { 0,31,59,90,120,151,181,212,243,273,304,334,0,0,0,0 };
  218.   /* JanFebMarApr May Jun Jul Aug Sep Oct Nov Dec */
  219. extern struct timezone sys_tz;
  220. /* Convert a MS-DOS time/date pair to a UNIX date (seconds since 1 1 70). */
  221. int date_dos2unix(unsigned short time,unsigned short date)
  222. {
  223. int month,year,secs;
  224. /* first subtract and mask after that... Otherwise, if
  225.    date == 0, bad things happen */
  226. month = ((date >> 5) - 1) & 15;
  227. year = date >> 9;
  228. secs = (time & 31)*2+60*((time >> 5) & 63)+(time >> 11)*3600+86400*
  229.     ((date & 31)-1+day_n[month]+(year/4)+year*365-((year & 3) == 0 &&
  230.     month < 2 ? 1 : 0)+3653);
  231. /* days since 1.1.70 plus 80's leap day */
  232. secs += sys_tz.tz_minuteswest*60;
  233. return secs;
  234. }
  235. /* Convert linear UNIX date to a MS-DOS time/date pair. */
  236. void fat_date_unix2dos(int unix_date,unsigned short *time,
  237.     unsigned short *date)
  238. {
  239. int day,year,nl_day,month;
  240. unix_date -= sys_tz.tz_minuteswest*60;
  241. /* Jan 1 GMT 00:00:00 1980. But what about another time zone? */
  242. if (unix_date < 315532800)
  243. unix_date = 315532800;
  244. *time = (unix_date % 60)/2+(((unix_date/60) % 60) << 5)+
  245.     (((unix_date/3600) % 24) << 11);
  246. day = unix_date/86400-3652;
  247. year = day/365;
  248. if ((year+3)/4+365*year > day) year--;
  249. day -= (year+3)/4+365*year;
  250. if (day == 59 && !(year & 3)) {
  251. nl_day = day;
  252. month = 2;
  253. }
  254. else {
  255. nl_day = (year & 3) || day <= 59 ? day : day-1;
  256. for (month = 0; month < 12; month++)
  257. if (day_n[month] > nl_day) break;
  258. }
  259. *date = nl_day-day_n[month-1]+1+(month << 5)+(year << 9);
  260. }
  261. /* Returns the inode number of the directory entry at offset pos. If bh is
  262.    non-NULL, it is brelse'd before. Pos is incremented. The buffer header is
  263.    returned in bh.
  264.    AV. Most often we do it item-by-item. Makes sense to optimize.
  265.    AV. OK, there we go: if both bh and de are non-NULL we assume that we just
  266.    AV. want the next entry (took one explicit de=NULL in vfat/namei.c).
  267.    AV. It's done in fat_get_entry() (inlined), here the slow case lives.
  268.    AV. Additionally, when we return -1 (i.e. reached the end of directory)
  269.    AV. we make bh NULL. 
  270.  */
  271. int fat__get_entry(struct inode *dir, loff_t *pos,struct buffer_head **bh,
  272.     struct msdos_dir_entry **de, int *ino)
  273. {
  274. struct super_block *sb = dir->i_sb;
  275. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  276. int sector, offset;
  277. while (1) {
  278. offset = *pos;
  279. PRINTK (("get_entry offset %dn",offset));
  280. if (*bh)
  281. fat_brelse(sb, *bh);
  282. *bh = NULL;
  283. if ((sector = fat_bmap(dir,offset >> sb->s_blocksize_bits)) == -1)
  284. return -1;
  285. PRINTK (("get_entry sector %d %pn",sector,*bh));
  286. PRINTK (("get_entry sector apres brelsen"));
  287. if (!sector)
  288. return -1; /* beyond EOF */
  289. *pos += sizeof(struct msdos_dir_entry);
  290. if (!(*bh = fat_bread(sb, sector))) {
  291. printk("Directory sread (sector 0x%x) failedn",sector);
  292. continue;
  293. }
  294. PRINTK (("get_entry apres sreadn"));
  295. offset &= sb->s_blocksize - 1;
  296. *de = (struct msdos_dir_entry *) ((*bh)->b_data + offset);
  297. *ino = (sector << sbi->dir_per_block_bits) + (offset >> MSDOS_DIR_BITS);
  298. return 0;
  299. }
  300. }
  301. /*
  302.  * Now an ugly part: this set of directory scan routines works on clusters
  303.  * rather than on inodes and sectors. They are necessary to locate the '..'
  304.  * directory "inode". raw_scan_sector operates in four modes:
  305.  *
  306.  * name     number   ino      action
  307.  * -------- -------- -------- -------------------------------------------------
  308.  * non-NULL -        X        Find an entry with that name
  309.  * NULL     non-NULL non-NULL Find an entry whose data starts at *number
  310.  * NULL     non-NULL NULL     Count subdirectories in *number. (*)
  311.  * NULL     NULL     non-NULL Find an empty entry
  312.  *
  313.  * (*) The return code should be ignored. It DOES NOT indicate success or
  314.  *     failure. *number has to be initialized to zero.
  315.  *
  316.  * - = not used, X = a value is returned unless NULL
  317.  *
  318.  * If res_bh is non-NULL, the buffer is not deallocated but returned to the
  319.  * caller on success. res_de is set accordingly.
  320.  *
  321.  * If cont is non-zero, raw_found continues with the entry after the one
  322.  * res_bh/res_de point to.
  323.  */
  324. #define RSS_NAME /* search for name */ 
  325.     done = !strncmp(data[entry].name,name,MSDOS_NAME) && 
  326.      !(data[entry].attr & ATTR_VOLUME);
  327. #define RSS_START /* search for start cluster */ 
  328.     done = !IS_FREE(data[entry].name) 
  329.       && ( 
  330.            ( 
  331.              (MSDOS_SB(sb)->fat_bits != 32) ? 0 : (CF_LE_W(data[entry].starthi) << 16) 
  332.            ) 
  333.            | CF_LE_W(data[entry].start) 
  334.          ) == *number;
  335. #define RSS_FREE /* search for free entry */ 
  336.     { 
  337. done = IS_FREE(data[entry].name); 
  338.     }
  339. #define RSS_COUNT /* count subdirectories */ 
  340.     { 
  341. done = 0; 
  342. if (!IS_FREE(data[entry].name) && (data[entry].attr & ATTR_DIR)) 
  343.     (*number)++; 
  344.     }
  345. static int raw_scan_sector(struct super_block *sb,int sector,const char *name,
  346.     int *number,int *ino,struct buffer_head **res_bh,
  347.     struct msdos_dir_entry **res_de)
  348. {
  349. struct buffer_head *bh;
  350. struct msdos_dir_entry *data;
  351. int entry,start,done;
  352. if (!(bh = fat_bread(sb,sector)))
  353. return -EIO;
  354. data = (struct msdos_dir_entry *) bh->b_data;
  355. for (entry = 0; entry < MSDOS_SB(sb)->dir_per_block; entry++) {
  356. /* RSS_COUNT:  if (data[entry].name == name) done=true else done=false. */
  357. if (name) {
  358. RSS_NAME
  359. } else {
  360. if (!ino) RSS_COUNT
  361. else {
  362. if (number) RSS_START
  363. else RSS_FREE
  364. }
  365. }
  366. if (done) {
  367. if (ino)
  368. *ino = sector * MSDOS_SB(sb)->dir_per_block + entry;
  369. start = CF_LE_W(data[entry].start);
  370. if (MSDOS_SB(sb)->fat_bits == 32) {
  371. start |= (CF_LE_W(data[entry].starthi) << 16);
  372. }
  373. if (!res_bh)
  374. fat_brelse(sb, bh);
  375. else {
  376. *res_bh = bh;
  377. *res_de = &data[entry];
  378. }
  379. return start;
  380. }
  381. }
  382. fat_brelse(sb, bh);
  383. return -ENOENT;
  384. }
  385. /*
  386.  * raw_scan_root performs raw_scan_sector on the root directory until the
  387.  * requested entry is found or the end of the directory is reached.
  388.  */
  389. static int raw_scan_root(struct super_block *sb,const char *name,int *number,int *ino,
  390.     struct buffer_head **res_bh,struct msdos_dir_entry **res_de)
  391. {
  392. int count,cluster;
  393. for (count = 0;
  394.      count < MSDOS_SB(sb)->dir_entries / MSDOS_SB(sb)->dir_per_block;
  395.      count++) {
  396. if ((cluster = raw_scan_sector(sb,MSDOS_SB(sb)->dir_start+count,
  397.        name,number,ino,res_bh,res_de)) >= 0)
  398. return cluster;
  399. }
  400. return -ENOENT;
  401. }
  402. /*
  403.  * raw_scan_nonroot performs raw_scan_sector on a non-root directory until the
  404.  * requested entry is found or the end of the directory is reached.
  405.  */
  406. static int raw_scan_nonroot(struct super_block *sb,int start,const char *name,
  407.     int *number,int *ino,struct buffer_head **res_bh,struct msdos_dir_entry
  408.     **res_de)
  409. {
  410. int count,cluster;
  411. #ifdef DEBUG
  412. printk("raw_scan_nonroot: start=%dn",start);
  413. #endif
  414. do {
  415. for (count = 0; count < MSDOS_SB(sb)->cluster_size; count++) {
  416. if ((cluster = raw_scan_sector(sb,(start-2)*
  417.     MSDOS_SB(sb)->cluster_size+MSDOS_SB(sb)->data_start+
  418.     count,name,number,ino,res_bh,res_de)) >= 0)
  419. return cluster;
  420. }
  421. if (!(start = fat_access(sb,start,-1))) {
  422. fat_fs_panic(sb,"FAT error");
  423. break;
  424. }
  425. #ifdef DEBUG
  426. printk("next start: %dn",start);
  427. #endif
  428. }
  429. while (start != -1);
  430. return -ENOENT;
  431. }
  432. /*
  433.  * raw_scan performs raw_scan_sector on any sector.
  434.  *
  435.  * NOTE: raw_scan must not be used on a directory that is is the process of
  436.  *       being created.
  437.  */
  438. static int raw_scan(struct super_block *sb, int start, const char *name,
  439.     int *number, int *ino, struct buffer_head **res_bh,
  440.     struct msdos_dir_entry **res_de)
  441. {
  442. if (start)
  443. return raw_scan_nonroot(sb,start,name,number,ino,res_bh,res_de);
  444. else
  445. return raw_scan_root(sb,name,number,ino,res_bh,res_de);
  446. }
  447. /*
  448.  * fat_subdirs counts the number of sub-directories of dir. It can be run
  449.  * on directories being created.
  450.  */
  451. int fat_subdirs(struct inode *dir)
  452. {
  453. int count;
  454. count = 0;
  455. if ((dir->i_ino == MSDOS_ROOT_INO) &&
  456.     (MSDOS_SB(dir->i_sb)->fat_bits != 32)) {
  457. (void) raw_scan_root(dir->i_sb,NULL,&count,NULL,NULL,NULL);
  458. } else {
  459. if ((dir->i_ino != MSDOS_ROOT_INO) &&
  460.     !MSDOS_I(dir)->i_start) return 0; /* in mkdir */
  461. else (void) raw_scan_nonroot(dir->i_sb,MSDOS_I(dir)->i_start,
  462.     NULL,&count,NULL,NULL,NULL);
  463. }
  464. return count;
  465. }
  466. /*
  467.  * Scans a directory for a given file (name points to its formatted name) or
  468.  * for an empty directory slot (name is NULL). Returns an error code or zero.
  469.  */
  470. int fat_scan(struct inode *dir,const char *name,struct buffer_head **res_bh,
  471.     struct msdos_dir_entry **res_de,int *ino)
  472. {
  473. int res;
  474. res = raw_scan(dir->i_sb,MSDOS_I(dir)->i_start,
  475.        name, NULL, ino, res_bh, res_de);
  476. return res<0 ? res : 0;
  477. }