file.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * linux/fs/ext3/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. * ext3 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/jbd.h>
  23. #include <linux/ext3_fs.h>
  24. #include <linux/ext3_jbd.h>
  25. #include "xattr.h"
  26. #include "acl.h"
  27. /*
  28. * Called when an inode is released. Note that this is different
  29. * from ext3_file_open: open gets called at every open, but release
  30. * gets called only when /all/ the files are closed.
  31. */
  32. static int ext3_release_file (struct inode * inode, struct file * filp)
  33. {
  34. if (EXT3_I(inode)->i_state & EXT3_STATE_FLUSH_ON_CLOSE) {
  35. filemap_flush(inode->i_mapping);
  36. EXT3_I(inode)->i_state &= ~EXT3_STATE_FLUSH_ON_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. {
  42. mutex_lock(&EXT3_I(inode)->truncate_mutex);
  43. ext3_discard_reservation(inode);
  44. mutex_unlock(&EXT3_I(inode)->truncate_mutex);
  45. }
  46. if (is_dx(inode) && filp->private_data)
  47. ext3_htree_free_dir_info(filp->private_data);
  48. return 0;
  49. }
  50. static ssize_t
  51. ext3_file_write(struct kiocb *iocb, const struct iovec *iov,
  52. unsigned long nr_segs, loff_t pos)
  53. {
  54. struct file *file = iocb->ki_filp;
  55. struct inode *inode = file->f_path.dentry->d_inode;
  56. ssize_t ret;
  57. int err;
  58. ret = generic_file_aio_write(iocb, iov, nr_segs, pos);
  59. /*
  60. * Skip flushing if there was an error, or if nothing was written.
  61. */
  62. if (ret <= 0)
  63. return ret;
  64. /*
  65. * If the inode is IS_SYNC, or is O_SYNC and we are doing data
  66. * journalling then we need to make sure that we force the transaction
  67. * to disk to keep all metadata uptodate synchronously.
  68. */
  69. if (file->f_flags & O_SYNC) {
  70. /*
  71. * If we are non-data-journaled, then the dirty data has
  72. * already been flushed to backing store by generic_osync_inode,
  73. * and the inode has been flushed too if there have been any
  74. * modifications other than mere timestamp updates.
  75. *
  76. * Open question --- do we care about flushing timestamps too
  77. * if the inode is IS_SYNC?
  78. */
  79. if (!ext3_should_journal_data(inode))
  80. return ret;
  81. goto force_commit;
  82. }
  83. /*
  84. * So we know that there has been no forced data flush. If the inode
  85. * is marked IS_SYNC, we need to force one ourselves.
  86. */
  87. if (!IS_SYNC(inode))
  88. return ret;
  89. /*
  90. * Open question #2 --- should we force data to disk here too? If we
  91. * don't, the only impact is that data=writeback filesystems won't
  92. * flush data to disk automatically on IS_SYNC, only metadata (but
  93. * historically, that is what ext2 has done.)
  94. */
  95. force_commit:
  96. err = ext3_force_commit(inode->i_sb);
  97. if (err)
  98. return err;
  99. return ret;
  100. }
  101. const struct file_operations ext3_file_operations = {
  102. .llseek = generic_file_llseek,
  103. .read = do_sync_read,
  104. .write = do_sync_write,
  105. .aio_read = generic_file_aio_read,
  106. .aio_write = ext3_file_write,
  107. .unlocked_ioctl = ext3_ioctl,
  108. #ifdef CONFIG_COMPAT
  109. .compat_ioctl = ext3_compat_ioctl,
  110. #endif
  111. .mmap = generic_file_mmap,
  112. .open = generic_file_open,
  113. .release = ext3_release_file,
  114. .fsync = ext3_sync_file,
  115. .splice_read = generic_file_splice_read,
  116. .splice_write = generic_file_splice_write,
  117. };
  118. const struct inode_operations ext3_file_inode_operations = {
  119. .truncate = ext3_truncate,
  120. .setattr = ext3_setattr,
  121. #ifdef CONFIG_EXT3_FS_XATTR
  122. .setxattr = generic_setxattr,
  123. .getxattr = generic_getxattr,
  124. .listxattr = ext3_listxattr,
  125. .removexattr = generic_removexattr,
  126. #endif
  127. .permission = ext3_permission,
  128. .fiemap = ext3_fiemap,
  129. };