file.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * file.c - NTFS kernel file operations. Part of the Linux-NTFS project.
  3. *
  4. * Copyright (c) 2001-2005 Anton Altaparmakov
  5. *
  6. * This program/include file is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as published
  8. * by the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program/include file is distributed in the hope that it will be
  12. * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  13. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program (in the main directory of the Linux-NTFS
  18. * distribution in the file COPYING); if not, write to the Free Software
  19. * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/pagemap.h>
  22. #include <linux/buffer_head.h>
  23. #include "inode.h"
  24. #include "debug.h"
  25. #include "ntfs.h"
  26. /**
  27. * ntfs_file_open - called when an inode is about to be opened
  28. * @vi: inode to be opened
  29. * @filp: file structure describing the inode
  30. *
  31. * Limit file size to the page cache limit on architectures where unsigned long
  32. * is 32-bits. This is the most we can do for now without overflowing the page
  33. * cache page index. Doing it this way means we don't run into problems because
  34. * of existing too large files. It would be better to allow the user to read
  35. * the beginning of the file but I doubt very much anyone is going to hit this
  36. * check on a 32-bit architecture, so there is no point in adding the extra
  37. * complexity required to support this.
  38. *
  39. * On 64-bit architectures, the check is hopefully optimized away by the
  40. * compiler.
  41. *
  42. * After the check passes, just call generic_file_open() to do its work.
  43. */
  44. static int ntfs_file_open(struct inode *vi, struct file *filp)
  45. {
  46. if (sizeof(unsigned long) < 8) {
  47. if (i_size_read(vi) > MAX_LFS_FILESIZE)
  48. return -EFBIG;
  49. }
  50. return generic_file_open(vi, filp);
  51. }
  52. #ifdef NTFS_RW
  53. /**
  54. * ntfs_file_fsync - sync a file to disk
  55. * @filp: file to be synced
  56. * @dentry: dentry describing the file to sync
  57. * @datasync: if non-zero only flush user data and not metadata
  58. *
  59. * Data integrity sync of a file to disk. Used for fsync, fdatasync, and msync
  60. * system calls. This function is inspired by fs/buffer.c::file_fsync().
  61. *
  62. * If @datasync is false, write the mft record and all associated extent mft
  63. * records as well as the $DATA attribute and then sync the block device.
  64. *
  65. * If @datasync is true and the attribute is non-resident, we skip the writing
  66. * of the mft record and all associated extent mft records (this might still
  67. * happen due to the write_inode_now() call).
  68. *
  69. * Also, if @datasync is true, we do not wait on the inode to be written out
  70. * but we always wait on the page cache pages to be written out.
  71. *
  72. * Note: In the past @filp could be NULL so we ignore it as we don't need it
  73. * anyway.
  74. *
  75. * Locking: Caller must hold i_sem on the inode.
  76. *
  77. * TODO: We should probably also write all attribute/index inodes associated
  78. * with this inode but since we have no simple way of getting to them we ignore
  79. * this problem for now.
  80. */
  81. static int ntfs_file_fsync(struct file *filp, struct dentry *dentry,
  82. int datasync)
  83. {
  84. struct inode *vi = dentry->d_inode;
  85. int err, ret = 0;
  86. ntfs_debug("Entering for inode 0x%lx.", vi->i_ino);
  87. BUG_ON(S_ISDIR(vi->i_mode));
  88. if (!datasync || !NInoNonResident(NTFS_I(vi)))
  89. ret = ntfs_write_inode(vi, 1);
  90. write_inode_now(vi, !datasync);
  91. /*
  92. * NOTE: If we were to use mapping->private_list (see ext2 and
  93. * fs/buffer.c) for dirty blocks then we could optimize the below to be
  94. * sync_mapping_buffers(vi->i_mapping).
  95. */
  96. err = sync_blockdev(vi->i_sb->s_bdev);
  97. if (unlikely(err && !ret))
  98. ret = err;
  99. if (likely(!ret))
  100. ntfs_debug("Done.");
  101. else
  102. ntfs_warning(vi->i_sb, "Failed to f%ssync inode 0x%lx. Error "
  103. "%u.", datasync ? "data" : "", vi->i_ino, -ret);
  104. return ret;
  105. }
  106. #endif /* NTFS_RW */
  107. struct file_operations ntfs_file_ops = {
  108. .llseek = generic_file_llseek, /* Seek inside file. */
  109. .read = generic_file_read, /* Read from file. */
  110. .aio_read = generic_file_aio_read, /* Async read from file. */
  111. .readv = generic_file_readv, /* Read from file. */
  112. #ifdef NTFS_RW
  113. .write = generic_file_write, /* Write to file. */
  114. .aio_write = generic_file_aio_write, /* Async write to file. */
  115. .writev = generic_file_writev, /* Write to file. */
  116. /*.release = ,*/ /* Last file is closed. See
  117. fs/ext2/file.c::
  118. ext2_release_file() for
  119. how to use this to discard
  120. preallocated space for
  121. write opened files. */
  122. .fsync = ntfs_file_fsync, /* Sync a file to disk. */
  123. /*.aio_fsync = ,*/ /* Sync all outstanding async
  124. i/o operations on a
  125. kiocb. */
  126. #endif /* NTFS_RW */
  127. /*.ioctl = ,*/ /* Perform function on the
  128. mounted filesystem. */
  129. .mmap = generic_file_mmap, /* Mmap file. */
  130. .open = ntfs_file_open, /* Open file. */
  131. .sendfile = generic_file_sendfile, /* Zero-copy data send with
  132. the data source being on
  133. the ntfs partition. We
  134. do not need to care about
  135. the data destination. */
  136. /*.sendpage = ,*/ /* Zero-copy data send with
  137. the data destination being
  138. on the ntfs partition. We
  139. do not need to care about
  140. the data source. */
  141. };
  142. struct inode_operations ntfs_file_inode_ops = {
  143. #ifdef NTFS_RW
  144. .truncate = ntfs_truncate_vfs,
  145. .setattr = ntfs_setattr,
  146. #endif /* NTFS_RW */
  147. };
  148. struct file_operations ntfs_empty_file_ops = {};
  149. struct inode_operations ntfs_empty_inode_ops = {};