file.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. /*
  2. * linux/fs/hpfs/file.c
  3. *
  4. * Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
  5. *
  6. * file VFS functions
  7. */
  8. #include "hpfs_fn.h"
  9. #include <linux/mpage.h>
  10. #define BLOCKS(size) (((size) + 511) >> 9)
  11. static int hpfs_file_release(struct inode *inode, struct file *file)
  12. {
  13. hpfs_lock(inode->i_sb);
  14. hpfs_write_if_changed(inode);
  15. hpfs_unlock(inode->i_sb);
  16. return 0;
  17. }
  18. int hpfs_file_fsync(struct file *file, loff_t start, loff_t end, int datasync)
  19. {
  20. struct inode *inode = file->f_mapping->host;
  21. int ret;
  22. ret = filemap_write_and_wait_range(file->f_mapping, start, end);
  23. if (ret)
  24. return ret;
  25. return sync_blockdev(inode->i_sb->s_bdev);
  26. }
  27. /*
  28. * generic_file_read often calls bmap with non-existing sector,
  29. * so we must ignore such errors.
  30. */
  31. static secno hpfs_bmap(struct inode *inode, unsigned file_secno, unsigned *n_secs)
  32. {
  33. struct hpfs_inode_info *hpfs_inode = hpfs_i(inode);
  34. unsigned n, disk_secno;
  35. struct fnode *fnode;
  36. struct buffer_head *bh;
  37. if (BLOCKS(hpfs_i(inode)->mmu_private) <= file_secno) return 0;
  38. n = file_secno - hpfs_inode->i_file_sec;
  39. if (n < hpfs_inode->i_n_secs) {
  40. *n_secs = hpfs_inode->i_n_secs - n;
  41. return hpfs_inode->i_disk_sec + n;
  42. }
  43. if (!(fnode = hpfs_map_fnode(inode->i_sb, inode->i_ino, &bh))) return 0;
  44. disk_secno = hpfs_bplus_lookup(inode->i_sb, inode, &fnode->btree, file_secno, bh);
  45. if (disk_secno == -1) return 0;
  46. if (hpfs_chk_sectors(inode->i_sb, disk_secno, 1, "bmap")) return 0;
  47. n = file_secno - hpfs_inode->i_file_sec;
  48. if (n < hpfs_inode->i_n_secs) {
  49. *n_secs = hpfs_inode->i_n_secs - n;
  50. return hpfs_inode->i_disk_sec + n;
  51. }
  52. *n_secs = 1;
  53. return disk_secno;
  54. }
  55. void hpfs_truncate(struct inode *i)
  56. {
  57. if (IS_IMMUTABLE(i)) return /*-EPERM*/;
  58. hpfs_lock_assert(i->i_sb);
  59. hpfs_i(i)->i_n_secs = 0;
  60. i->i_blocks = 1 + ((i->i_size + 511) >> 9);
  61. hpfs_i(i)->mmu_private = i->i_size;
  62. hpfs_truncate_btree(i->i_sb, i->i_ino, 1, ((i->i_size + 511) >> 9));
  63. hpfs_write_inode(i);
  64. hpfs_i(i)->i_n_secs = 0;
  65. }
  66. static int hpfs_get_block(struct inode *inode, sector_t iblock, struct buffer_head *bh_result, int create)
  67. {
  68. int r;
  69. secno s;
  70. unsigned n_secs;
  71. hpfs_lock(inode->i_sb);
  72. s = hpfs_bmap(inode, iblock, &n_secs);
  73. if (s) {
  74. if (bh_result->b_size >> 9 < n_secs)
  75. n_secs = bh_result->b_size >> 9;
  76. n_secs = hpfs_search_hotfix_map_for_range(inode->i_sb, s, n_secs);
  77. if (unlikely(!n_secs)) {
  78. s = hpfs_search_hotfix_map(inode->i_sb, s);
  79. n_secs = 1;
  80. }
  81. map_bh(bh_result, inode->i_sb, s);
  82. bh_result->b_size = n_secs << 9;
  83. goto ret_0;
  84. }
  85. if (!create) goto ret_0;
  86. if (iblock<<9 != hpfs_i(inode)->mmu_private) {
  87. BUG();
  88. r = -EIO;
  89. goto ret_r;
  90. }
  91. if ((s = hpfs_add_sector_to_btree(inode->i_sb, inode->i_ino, 1, inode->i_blocks - 1)) == -1) {
  92. hpfs_truncate_btree(inode->i_sb, inode->i_ino, 1, inode->i_blocks - 1);
  93. r = -ENOSPC;
  94. goto ret_r;
  95. }
  96. inode->i_blocks++;
  97. hpfs_i(inode)->mmu_private += 512;
  98. set_buffer_new(bh_result);
  99. map_bh(bh_result, inode->i_sb, hpfs_search_hotfix_map(inode->i_sb, s));
  100. ret_0:
  101. r = 0;
  102. ret_r:
  103. hpfs_unlock(inode->i_sb);
  104. return r;
  105. }
  106. static int hpfs_readpage(struct file *file, struct page *page)
  107. {
  108. return mpage_readpage(page, hpfs_get_block);
  109. }
  110. static int hpfs_writepage(struct page *page, struct writeback_control *wbc)
  111. {
  112. return block_write_full_page(page, hpfs_get_block, wbc);
  113. }
  114. static int hpfs_readpages(struct file *file, struct address_space *mapping,
  115. struct list_head *pages, unsigned nr_pages)
  116. {
  117. return mpage_readpages(mapping, pages, nr_pages, hpfs_get_block);
  118. }
  119. static int hpfs_writepages(struct address_space *mapping,
  120. struct writeback_control *wbc)
  121. {
  122. return mpage_writepages(mapping, wbc, hpfs_get_block);
  123. }
  124. static void hpfs_write_failed(struct address_space *mapping, loff_t to)
  125. {
  126. struct inode *inode = mapping->host;
  127. hpfs_lock(inode->i_sb);
  128. if (to > inode->i_size) {
  129. truncate_pagecache(inode, inode->i_size);
  130. hpfs_truncate(inode);
  131. }
  132. hpfs_unlock(inode->i_sb);
  133. }
  134. static int hpfs_write_begin(struct file *file, struct address_space *mapping,
  135. loff_t pos, unsigned len, unsigned flags,
  136. struct page **pagep, void **fsdata)
  137. {
  138. int ret;
  139. *pagep = NULL;
  140. ret = cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
  141. hpfs_get_block,
  142. &hpfs_i(mapping->host)->mmu_private);
  143. if (unlikely(ret))
  144. hpfs_write_failed(mapping, pos + len);
  145. return ret;
  146. }
  147. static int hpfs_write_end(struct file *file, struct address_space *mapping,
  148. loff_t pos, unsigned len, unsigned copied,
  149. struct page *pagep, void *fsdata)
  150. {
  151. struct inode *inode = mapping->host;
  152. int err;
  153. err = generic_write_end(file, mapping, pos, len, copied, pagep, fsdata);
  154. if (err < len)
  155. hpfs_write_failed(mapping, pos + len);
  156. if (!(err < 0)) {
  157. /* make sure we write it on close, if not earlier */
  158. hpfs_lock(inode->i_sb);
  159. hpfs_i(inode)->i_dirty = 1;
  160. hpfs_unlock(inode->i_sb);
  161. }
  162. return err;
  163. }
  164. static sector_t _hpfs_bmap(struct address_space *mapping, sector_t block)
  165. {
  166. return generic_block_bmap(mapping, block, hpfs_get_block);
  167. }
  168. const struct address_space_operations hpfs_aops = {
  169. .readpage = hpfs_readpage,
  170. .writepage = hpfs_writepage,
  171. .readpages = hpfs_readpages,
  172. .writepages = hpfs_writepages,
  173. .write_begin = hpfs_write_begin,
  174. .write_end = hpfs_write_end,
  175. .bmap = _hpfs_bmap
  176. };
  177. const struct file_operations hpfs_file_ops =
  178. {
  179. .llseek = generic_file_llseek,
  180. .read_iter = generic_file_read_iter,
  181. .write_iter = generic_file_write_iter,
  182. .mmap = generic_file_mmap,
  183. .release = hpfs_file_release,
  184. .fsync = hpfs_file_fsync,
  185. .splice_read = generic_file_splice_read,
  186. .unlocked_ioctl = hpfs_ioctl,
  187. };
  188. const struct inode_operations hpfs_file_iops =
  189. {
  190. .setattr = hpfs_setattr,
  191. };