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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/hfs/file.c
  3.  *
  4.  * Copyright (C) 1995, 1996  Paul H. Hargrove
  5.  * This file may be distributed under the terms of the GNU General Public License.
  6.  *
  7.  * This file contains the file-related functions which are independent of
  8.  * which scheme is being used to represent forks.
  9.  *
  10.  * Based on the minix file system code, (C) 1991, 1992 by Linus Torvalds
  11.  *
  12.  * "XXX" in a comment is a note to myself to consider changing something.
  13.  *
  14.  * In function preconditions the term "valid" applied to a pointer to
  15.  * a structure means that the pointer is non-NULL and the structure it
  16.  * points to has all fields initialized to consistent values.
  17.  */
  18. #include "hfs.h"
  19. #include <linux/hfs_fs_sb.h>
  20. #include <linux/hfs_fs_i.h>
  21. #include <linux/hfs_fs.h>
  22. /*================ Forward declarations ================*/
  23. static hfs_rwret_t hfs_file_read(struct file *, char *, hfs_rwarg_t,
  24.  loff_t *);
  25. static hfs_rwret_t hfs_file_write(struct file *, const char *, hfs_rwarg_t,
  26.   loff_t *);
  27. static void hfs_file_truncate(struct inode *);
  28. /*================ Global variables ================*/
  29. struct file_operations hfs_file_operations = {
  30. llseek: generic_file_llseek,
  31. read: hfs_file_read,
  32. write: hfs_file_write,
  33. mmap: generic_file_mmap,
  34. fsync: file_fsync,
  35. };
  36. struct inode_operations hfs_file_inode_operations = {
  37. truncate: hfs_file_truncate,
  38. setattr: hfs_notify_change,
  39. };
  40. /*================ Variable-like macros ================*/
  41. /* maximum number of blocks to try to read in at once */
  42. #define NBUF 32
  43. /*================ File-local functions ================*/
  44. /*
  45.  * hfs_getblk()
  46.  *
  47.  * Given an hfs_fork and a block number return the buffer_head for
  48.  * that block from the fork.  If 'create' is non-zero then allocate
  49.  * the necessary block(s) to the fork.
  50.  */
  51. struct buffer_head *hfs_getblk(struct hfs_fork *fork, int block, int create)
  52. {
  53. int tmp;
  54. struct super_block *sb = fork->entry->mdb->sys_mdb;
  55. tmp = hfs_extent_map(fork, block, create);
  56. if (create) {
  57. /* If writing the block, then we have exclusive access
  58.    to the file until we return, so it can't have moved.
  59. */
  60. if (tmp) {
  61. hfs_cat_mark_dirty(fork->entry);
  62. return sb_getblk(sb, tmp);
  63. }
  64. return NULL;
  65. } else {
  66. /* If reading the block, then retry since the
  67.    location on disk could have changed while
  68.    we waited on the I/O in getblk to complete.
  69. */
  70. do {
  71. struct buffer_head *bh = sb_getblk(sb, tmp);
  72. int tmp2 = hfs_extent_map(fork, block, 0);
  73. if (tmp2 == tmp) {
  74. return bh;
  75. } else {
  76. /* The block moved or no longer exists. */
  77. brelse(bh);
  78. tmp = tmp2;
  79. }
  80. } while (tmp != 0);
  81. /* The block no longer exists. */
  82. return NULL;
  83. }
  84. }
  85. /*
  86.  * hfs_get_block
  87.  *
  88.  * This is the hfs_get_block() field in the inode_operations structure for
  89.  * "regular" (non-header) files.  The purpose is to translate an inode
  90.  * and a block number within the corresponding file into a physical
  91.  * block number.  This function just calls hfs_extent_map() to do the
  92.  * real work and then stuffs the appropriate info into the buffer_head.
  93.  */
  94. int hfs_get_block(struct inode *inode, long iblock, struct buffer_head *bh_result, int create)
  95. {
  96. unsigned long phys;
  97. phys = hfs_extent_map(HFS_I(inode)->fork, iblock, create);
  98. if (phys) {
  99. bh_result->b_dev = inode->i_dev;
  100. bh_result->b_blocknr = phys;
  101. bh_result->b_state |= (1UL << BH_Mapped);
  102. if (create)
  103. bh_result->b_state |= (1UL << BH_New);
  104. return 0;
  105. }
  106. if (!create)
  107. return 0;
  108. /* we tried to add stuff, but we couldn't. send back an out-of-space
  109.  * error. */
  110. return -ENOSPC;
  111. }
  112. /*
  113.  * hfs_file_read()
  114.  *
  115.  * This is the read field in the inode_operations structure for
  116.  * "regular" (non-header) files.  The purpose is to transfer up to
  117.  * 'count' bytes from the file corresponding to 'inode', beginning at
  118.  * 'filp->offset' bytes into the file. The data is transferred to
  119.  * user-space at the address 'buf'.  Returns the number of bytes
  120.  * successfully transferred.  This function checks the arguments, does
  121.  * some setup and then calls hfs_do_read() to do the actual transfer.  */
  122. static hfs_rwret_t hfs_file_read(struct file * filp, char * buf, 
  123.  hfs_rwarg_t count, loff_t *ppos)
  124. {
  125.         struct inode *inode = filp->f_dentry->d_inode;
  126. hfs_s32 read, left, pos, size;
  127. if (!S_ISREG(inode->i_mode)) {
  128. hfs_warn("hfs_file_read: mode = %07on",inode->i_mode);
  129. return -EINVAL;
  130. }
  131. pos = *ppos;
  132. if (pos >= HFS_FORK_MAX) {
  133. return 0;
  134. }
  135. size = inode->i_size;
  136. if (pos > size) {
  137. left = 0;
  138. } else {
  139. left = size - pos;
  140. }
  141. if (left > count) {
  142. left = count;
  143. }
  144. if (left <= 0) {
  145. return 0;
  146. }
  147. if ((read = hfs_do_read(inode, HFS_I(inode)->fork, pos,
  148. buf, left, filp->f_reada != 0)) > 0) {
  149.         *ppos += read;
  150. filp->f_reada = 1;
  151. }
  152. return read;
  153. }
  154. /*
  155.  * hfs_file_write()
  156.  *
  157.  * This is the write() entry in the file_operations structure for
  158.  * "regular" files.  The purpose is to transfer up to 'count' bytes
  159.  * to the file corresponding to 'inode' beginning at offset
  160.  * 'file->f_pos' from user-space at the address 'buf'.  The return
  161.  * value is the number of bytes actually transferred.
  162.  */
  163. static hfs_rwret_t hfs_file_write(struct file * filp, const char * buf,
  164.   hfs_rwarg_t count, loff_t *ppos)
  165. {
  166.         struct inode    *inode = filp->f_dentry->d_inode;
  167. struct hfs_fork *fork = HFS_I(inode)->fork;
  168. hfs_s32 written, pos;
  169. if (!S_ISREG(inode->i_mode)) {
  170. hfs_warn("hfs_file_write: mode = %07on", inode->i_mode);
  171. return -EINVAL;
  172. }
  173. pos = (filp->f_flags & O_APPEND) ? inode->i_size : *ppos;
  174. if (pos >= HFS_FORK_MAX) {
  175. return 0;
  176. }
  177. if (count > HFS_FORK_MAX) {
  178. count = HFS_FORK_MAX;
  179. }
  180. if ((written = hfs_do_write(inode, fork, pos, buf, count)) > 0)
  181.         pos += written;
  182. *ppos = pos;
  183. if (*ppos > inode->i_size) {
  184.         inode->i_size = *ppos;
  185. mark_inode_dirty(inode);
  186. }
  187. return written;
  188. }
  189. /*
  190.  * hfs_file_truncate()
  191.  *
  192.  * This is the truncate() entry in the file_operations structure for
  193.  * "regular" files.  The purpose is to change the length of the file
  194.  * corresponding to the given inode.  Changes can either lengthen or
  195.  * shorten the file.
  196.  */
  197. static void hfs_file_truncate(struct inode * inode)
  198. {
  199. struct hfs_fork *fork = HFS_I(inode)->fork;
  200. fork->lsize = inode->i_size;
  201. hfs_extent_adj(fork);
  202. hfs_cat_mark_dirty(HFS_I(inode)->entry);
  203. inode->i_size = fork->lsize;
  204. inode->i_blocks = fork->psize;
  205. mark_inode_dirty(inode);
  206. }
  207. /*
  208.  * xlate_to_user()
  209.  *
  210.  * Like copy_to_user() while translating CR->NL.
  211.  */
  212. static inline void xlate_to_user(char *buf, const char *data, int count)
  213. {
  214. char ch;
  215. while (count--) {
  216. ch = *(data++);
  217. put_user((ch == 'r') ? 'n' : ch, buf++);
  218. }
  219. }
  220. /*
  221.  * xlate_from_user()
  222.  *
  223.  * Like copy_from_user() while translating NL->CR;
  224.  */
  225. static inline int xlate_from_user(char *data, const char *buf, int count)
  226. {
  227. int i;
  228. i = copy_from_user(data, buf, count);
  229. count -= i;
  230. while (count--) {
  231. if (*data == 'n') {
  232. *data = 'r';
  233. }
  234. ++data;
  235. }
  236. return i;
  237. }
  238. /*================ Global functions ================*/
  239. /*
  240.  * hfs_do_read()
  241.  *
  242.  * This function transfers actual data from disk to user-space memory,
  243.  * returning the number of bytes successfully transferred.  'fork' tells
  244.  * which file on the disk to read from.  'pos' gives the offset into
  245.  * the Linux file at which to begin the transfer.  Note that this will
  246.  * differ from 'filp->offset' in the case of an AppleDouble header file
  247.  * due to the block of metadata at the beginning of the file, which has
  248.  * no corresponding place in the HFS file.  'count' tells how many
  249.  * bytes to transfer.  'buf' gives an address in user-space to transfer
  250.  * the data to.
  251.  * 
  252.  * This is based on Linus's minix_file_read().
  253.  * It has been changed to take into account that HFS files have no holes.
  254.  */
  255. hfs_s32 hfs_do_read(struct inode *inode, struct hfs_fork * fork, hfs_u32 pos,
  256.     char * buf, hfs_u32 count, int reada)
  257. {
  258. kdev_t dev = inode->i_dev;
  259. hfs_s32 size, chars, offset, block, blocks, read = 0;
  260. int bhrequest, uptodate;
  261. int convert = HFS_I(inode)->convert;
  262. struct buffer_head ** bhb, ** bhe;
  263. struct buffer_head * bhreq[NBUF];
  264. struct buffer_head * buflist[NBUF];
  265. /* split 'pos' in to block and (byte) offset components */
  266. block = pos >> HFS_SECTOR_SIZE_BITS;
  267. offset = pos & (HFS_SECTOR_SIZE-1);
  268. /* compute the logical size of the fork in blocks */
  269. size = (fork->lsize + (HFS_SECTOR_SIZE-1)) >> HFS_SECTOR_SIZE_BITS;
  270. /* compute the number of physical blocks to be transferred */
  271. blocks = (count+offset+HFS_SECTOR_SIZE-1) >> HFS_SECTOR_SIZE_BITS;
  272. bhb = bhe = buflist;
  273. if (reada) {
  274. if (blocks < read_ahead[MAJOR(dev)] / (HFS_SECTOR_SIZE>>9)) {
  275. blocks = read_ahead[MAJOR(dev)] / (HFS_SECTOR_SIZE>>9);
  276. }
  277. if (block + blocks > size) {
  278. blocks = size - block;
  279. }
  280. }
  281. /* We do this in a two stage process.  We first try and
  282.    request as many blocks as we can, then we wait for the
  283.    first one to complete, and then we try and wrap up as many
  284.    as are actually done.
  285.    
  286.    This routine is optimized to make maximum use of the
  287.    various buffers and caches. */
  288. do {
  289. bhrequest = 0;
  290. uptodate = 1;
  291. while (blocks) {
  292. --blocks;
  293. *bhb = hfs_getblk(fork, block++, 0);
  294. if (!(*bhb)) {
  295. /* Since there are no holes in HFS files
  296.    we must have encountered an error.
  297.    So, stop adding blocks to the queue. */
  298. blocks = 0;
  299. break;
  300. }
  301. if (!buffer_uptodate(*bhb)) {
  302. uptodate = 0;
  303. bhreq[bhrequest++] = *bhb;
  304. }
  305. if (++bhb == &buflist[NBUF]) {
  306. bhb = buflist;
  307. }
  308. /* If the block we have on hand is uptodate,
  309.    go ahead and complete processing. */
  310. if (uptodate) {
  311. break;
  312. }
  313. if (bhb == bhe) {
  314. break;
  315. }
  316. }
  317. /* If the only block in the queue is bad then quit */
  318. if (!(*bhe)) {
  319. break;
  320. }
  321. /* Now request them all */
  322. if (bhrequest) {
  323. ll_rw_block(READ, bhrequest, bhreq);
  324. }
  325. do {  /* Finish off all I/O that has actually completed */
  326. char *p;
  327. wait_on_buffer(*bhe);
  328. if (!buffer_uptodate(*bhe)) {
  329. /* read error? */
  330. brelse(*bhe);
  331. if (++bhe == &buflist[NBUF]) {
  332. bhe = buflist;
  333. }
  334. count = 0;
  335. break;
  336. }
  337. if (count < HFS_SECTOR_SIZE - offset) {
  338. chars = count;
  339. } else {
  340. chars = HFS_SECTOR_SIZE - offset;
  341. }
  342. p = (*bhe)->b_data + offset;
  343. if (convert) {
  344. xlate_to_user(buf, p, chars);
  345. } else {
  346. chars -= copy_to_user(buf, p, chars);
  347. if (!chars) {
  348. brelse(*bhe);
  349. count = 0;
  350. if (!read)
  351. read = -EFAULT;
  352. break;
  353. }
  354. }
  355. brelse(*bhe);
  356. count -= chars;
  357. buf += chars;
  358. read += chars;
  359. offset = 0;
  360. if (++bhe == &buflist[NBUF]) {
  361. bhe = buflist;
  362. }
  363. } while (count && (bhe != bhb) && !buffer_locked(*bhe));
  364. } while (count);
  365. /* Release the read-ahead blocks */
  366. while (bhe != bhb) {
  367. brelse(*bhe);
  368. if (++bhe == &buflist[NBUF]) {
  369. bhe = buflist;
  370. }
  371. }
  372. if (!read) {
  373. return -EIO;
  374. }
  375. return read;
  376. }
  377.  
  378. /*
  379.  * hfs_do_write()
  380.  *
  381.  * This function transfers actual data from user-space memory to disk,
  382.  * returning the number of bytes successfully transferred.  'fork' tells
  383.  * which file on the disk to write to.  'pos' gives the offset into
  384.  * the Linux file at which to begin the transfer.  Note that this will
  385.  * differ from 'filp->offset' in the case of an AppleDouble header file
  386.  * due to the block of metadata at the beginning of the file, which has
  387.  * no corresponding place in the HFS file.  'count' tells how many
  388.  * bytes to transfer.  'buf' gives an address in user-space to transfer
  389.  * the data from.
  390.  * 
  391.  * This is just a minor edit of Linus's minix_file_write().
  392.  */
  393. hfs_s32 hfs_do_write(struct inode *inode, struct hfs_fork * fork, hfs_u32 pos,
  394.      const char * buf, hfs_u32 count)
  395. {
  396. hfs_s32 written, c;
  397. struct buffer_head * bh;
  398. char * p;
  399. int convert = HFS_I(inode)->convert;
  400. written = 0;
  401. while (written < count) {
  402. bh = hfs_getblk(fork, pos/HFS_SECTOR_SIZE, 1);
  403. if (!bh) {
  404. if (!written) {
  405. written = -ENOSPC;
  406. }
  407. break;
  408. }
  409. c = HFS_SECTOR_SIZE - (pos % HFS_SECTOR_SIZE);
  410. if (c > count - written) {
  411. c = count - written;
  412. }
  413. if (c != HFS_SECTOR_SIZE && !buffer_uptodate(bh)) {
  414. ll_rw_block(READ, 1, &bh);
  415. wait_on_buffer(bh);
  416. if (!buffer_uptodate(bh)) {
  417. brelse(bh);
  418. if (!written) {
  419. written = -EIO;
  420. }
  421. break;
  422. }
  423. }
  424. p = (pos % HFS_SECTOR_SIZE) + bh->b_data;
  425. c -= convert ? xlate_from_user(p, buf, c) :
  426. copy_from_user(p, buf, c);
  427. if (!c) {
  428. brelse(bh);
  429. if (!written)
  430. written = -EFAULT;
  431. break;
  432. }
  433. pos += c;
  434. written += c;
  435. buf += c;
  436. mark_buffer_uptodate(bh, 1);
  437. mark_buffer_dirty(bh);
  438. brelse(bh);
  439. }
  440. if (written > 0) {
  441. struct hfs_cat_entry *entry = fork->entry;
  442. inode->i_mtime = inode->i_ctime = CURRENT_TIME;
  443. if (pos > fork->lsize) {
  444. fork->lsize = pos;
  445. }
  446. entry->modify_date = hfs_u_to_mtime(CURRENT_TIME);
  447. hfs_cat_mark_dirty(entry);
  448. }
  449. return written;
  450. }
  451. /*
  452.  * hfs_file_fix_mode()
  453.  *
  454.  * Fixes up the permissions on a file after changing the write-inhibit bit.
  455.  */
  456. void hfs_file_fix_mode(struct hfs_cat_entry *entry)
  457. {
  458. struct dentry **de = entry->sys_entry;
  459. int i;
  460. if (entry->u.file.flags & HFS_FIL_LOCK) {
  461. for (i = 0; i < 4; ++i) {
  462. if (de[i]) {
  463. de[i]->d_inode->i_mode &= ~S_IWUGO;
  464. }
  465. }
  466. } else {
  467. for (i = 0; i < 4; ++i) {
  468. if (de[i]) {
  469.         struct inode *inode = de[i]->d_inode;
  470. inode->i_mode |= S_IWUGO;
  471. inode->i_mode &= 
  472.   ~HFS_SB(inode->i_sb)->s_umask;
  473. }
  474. }
  475. }
  476. }