file.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. /*
  2. * linux/fs/ext4/file.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/file.c
  12. *
  13. * Copyright (C) 1991, 1992 Linus Torvalds
  14. *
  15. * ext4 fs regular file handling primitives
  16. *
  17. * 64-bit file support on 64-bit platforms by Jakub Jelinek
  18. * (jj@sunsite.ms.mff.cuni.cz)
  19. */
  20. #include <linux/time.h>
  21. #include <linux/fs.h>
  22. #include <linux/jbd2.h>
  23. #include "ext4.h"
  24. #include "ext4_jbd2.h"
  25. #include "xattr.h"
  26. #include "acl.h"
  27. /*
  28. * Called when an inode is released. Note that this is different
  29. * from ext4_file_open: open gets called at every open, but release
  30. * gets called only when /all/ the files are closed.
  31. */
  32. static int ext4_release_file(struct inode *inode, struct file *filp)
  33. {
  34. if (EXT4_I(inode)->i_state & EXT4_STATE_DA_ALLOC_CLOSE) {
  35. ext4_alloc_da_blocks(inode);
  36. EXT4_I(inode)->i_state &= ~EXT4_STATE_DA_ALLOC_CLOSE;
  37. }
  38. /* if we are the last writer on the inode, drop the block reservation */
  39. if ((filp->f_mode & FMODE_WRITE) &&
  40. (atomic_read(&inode->i_writecount) == 1) &&
  41. !EXT4_I(inode)->i_reserved_data_blocks)
  42. {
  43. down_write(&EXT4_I(inode)->i_data_sem);
  44. ext4_discard_preallocations(inode);
  45. up_write(&EXT4_I(inode)->i_data_sem);
  46. }
  47. if (is_dx(inode) && filp->private_data)
  48. ext4_htree_free_dir_info(filp->private_data);
  49. return 0;
  50. }
  51. static ssize_t
  52. ext4_file_write(struct kiocb *iocb, const struct iovec *iov,
  53. unsigned long nr_segs, loff_t pos)
  54. {
  55. struct file *file = iocb->ki_filp;
  56. struct inode *inode = file->f_path.dentry->d_inode;
  57. ssize_t ret;
  58. int err;
  59. /*
  60. * If we have encountered a bitmap-format file, the size limit
  61. * is smaller than s_maxbytes, which is for extent-mapped files.
  62. */
  63. if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) {
  64. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  65. size_t length = iov_length(iov, nr_segs);
  66. if (pos > sbi->s_bitmap_maxbytes)
  67. return -EFBIG;
  68. if (pos + length > sbi->s_bitmap_maxbytes) {
  69. nr_segs = iov_shorten((struct iovec *)iov, nr_segs,
  70. sbi->s_bitmap_maxbytes - pos);
  71. }
  72. }
  73. ret = generic_file_aio_write(iocb, iov, nr_segs, pos);
  74. /*
  75. * Skip flushing if there was an error, or if nothing was written.
  76. */
  77. if (ret <= 0)
  78. return ret;
  79. /*
  80. * If the inode is IS_SYNC, or is O_SYNC and we are doing data
  81. * journalling then we need to make sure that we force the transaction
  82. * to disk to keep all metadata uptodate synchronously.
  83. */
  84. if (file->f_flags & O_SYNC) {
  85. /*
  86. * If we are non-data-journaled, then the dirty data has
  87. * already been flushed to backing store by generic_osync_inode,
  88. * and the inode has been flushed too if there have been any
  89. * modifications other than mere timestamp updates.
  90. *
  91. * Open question --- do we care about flushing timestamps too
  92. * if the inode is IS_SYNC?
  93. */
  94. if (!ext4_should_journal_data(inode))
  95. return ret;
  96. goto force_commit;
  97. }
  98. /*
  99. * So we know that there has been no forced data flush. If the inode
  100. * is marked IS_SYNC, we need to force one ourselves.
  101. */
  102. if (!IS_SYNC(inode))
  103. return ret;
  104. /*
  105. * Open question #2 --- should we force data to disk here too? If we
  106. * don't, the only impact is that data=writeback filesystems won't
  107. * flush data to disk automatically on IS_SYNC, only metadata (but
  108. * historically, that is what ext2 has done.)
  109. */
  110. force_commit:
  111. err = ext4_force_commit(inode->i_sb);
  112. if (err)
  113. return err;
  114. return ret;
  115. }
  116. static struct vm_operations_struct ext4_file_vm_ops = {
  117. .fault = filemap_fault,
  118. .page_mkwrite = ext4_page_mkwrite,
  119. };
  120. static int ext4_file_mmap(struct file *file, struct vm_area_struct *vma)
  121. {
  122. struct address_space *mapping = file->f_mapping;
  123. if (!mapping->a_ops->readpage)
  124. return -ENOEXEC;
  125. file_accessed(file);
  126. vma->vm_ops = &ext4_file_vm_ops;
  127. vma->vm_flags |= VM_CAN_NONLINEAR;
  128. return 0;
  129. }
  130. const struct file_operations ext4_file_operations = {
  131. .llseek = generic_file_llseek,
  132. .read = do_sync_read,
  133. .write = do_sync_write,
  134. .aio_read = generic_file_aio_read,
  135. .aio_write = ext4_file_write,
  136. .unlocked_ioctl = ext4_ioctl,
  137. #ifdef CONFIG_COMPAT
  138. .compat_ioctl = ext4_compat_ioctl,
  139. #endif
  140. .mmap = ext4_file_mmap,
  141. .open = generic_file_open,
  142. .release = ext4_release_file,
  143. .fsync = ext4_sync_file,
  144. .splice_read = generic_file_splice_read,
  145. .splice_write = generic_file_splice_write,
  146. };
  147. const struct inode_operations ext4_file_inode_operations = {
  148. .truncate = ext4_truncate,
  149. .setattr = ext4_setattr,
  150. .getattr = ext4_getattr,
  151. #ifdef CONFIG_EXT4_FS_XATTR
  152. .setxattr = generic_setxattr,
  153. .getxattr = generic_getxattr,
  154. .listxattr = ext4_listxattr,
  155. .removexattr = generic_removexattr,
  156. #endif
  157. .permission = ext4_permission,
  158. .fallocate = ext4_fallocate,
  159. .fiemap = ext4_fiemap,
  160. };