file.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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 <linux/mount.h>
  24. #include <linux/path.h>
  25. #include <linux/quotaops.h>
  26. #include "ext4.h"
  27. #include "ext4_jbd2.h"
  28. #include "xattr.h"
  29. #include "acl.h"
  30. /*
  31. * Called when an inode is released. Note that this is different
  32. * from ext4_file_open: open gets called at every open, but release
  33. * gets called only when /all/ the files are closed.
  34. */
  35. static int ext4_release_file(struct inode *inode, struct file *filp)
  36. {
  37. if (ext4_test_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE)) {
  38. ext4_alloc_da_blocks(inode);
  39. ext4_clear_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE);
  40. }
  41. /* if we are the last writer on the inode, drop the block reservation */
  42. if ((filp->f_mode & FMODE_WRITE) &&
  43. (atomic_read(&inode->i_writecount) == 1) &&
  44. !EXT4_I(inode)->i_reserved_data_blocks)
  45. {
  46. down_write(&EXT4_I(inode)->i_data_sem);
  47. ext4_discard_preallocations(inode);
  48. up_write(&EXT4_I(inode)->i_data_sem);
  49. }
  50. if (is_dx(inode) && filp->private_data)
  51. ext4_htree_free_dir_info(filp->private_data);
  52. return 0;
  53. }
  54. static ssize_t
  55. ext4_file_write(struct kiocb *iocb, const struct iovec *iov,
  56. unsigned long nr_segs, loff_t pos)
  57. {
  58. struct inode *inode = iocb->ki_filp->f_path.dentry->d_inode;
  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_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
  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. (pos == sbi->s_bitmap_maxbytes && length > 0)))
  68. return -EFBIG;
  69. if (pos + length > sbi->s_bitmap_maxbytes) {
  70. nr_segs = iov_shorten((struct iovec *)iov, nr_segs,
  71. sbi->s_bitmap_maxbytes - pos);
  72. }
  73. }
  74. return generic_file_aio_write(iocb, iov, nr_segs, pos);
  75. }
  76. static const struct vm_operations_struct ext4_file_vm_ops = {
  77. .fault = filemap_fault,
  78. .page_mkwrite = ext4_page_mkwrite,
  79. };
  80. static int ext4_file_mmap(struct file *file, struct vm_area_struct *vma)
  81. {
  82. struct address_space *mapping = file->f_mapping;
  83. if (!mapping->a_ops->readpage)
  84. return -ENOEXEC;
  85. file_accessed(file);
  86. vma->vm_ops = &ext4_file_vm_ops;
  87. vma->vm_flags |= VM_CAN_NONLINEAR;
  88. return 0;
  89. }
  90. static int ext4_file_open(struct inode * inode, struct file * filp)
  91. {
  92. struct super_block *sb = inode->i_sb;
  93. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  94. struct ext4_inode_info *ei = EXT4_I(inode);
  95. struct vfsmount *mnt = filp->f_path.mnt;
  96. struct path path;
  97. char buf[64], *cp;
  98. if (unlikely(!(sbi->s_mount_flags & EXT4_MF_MNTDIR_SAMPLED) &&
  99. !(sb->s_flags & MS_RDONLY))) {
  100. sbi->s_mount_flags |= EXT4_MF_MNTDIR_SAMPLED;
  101. /*
  102. * Sample where the filesystem has been mounted and
  103. * store it in the superblock for sysadmin convenience
  104. * when trying to sort through large numbers of block
  105. * devices or filesystem images.
  106. */
  107. memset(buf, 0, sizeof(buf));
  108. path.mnt = mnt;
  109. path.dentry = mnt->mnt_root;
  110. cp = d_path(&path, buf, sizeof(buf));
  111. if (!IS_ERR(cp)) {
  112. memcpy(sbi->s_es->s_last_mounted, cp,
  113. sizeof(sbi->s_es->s_last_mounted));
  114. ext4_mark_super_dirty(sb);
  115. }
  116. }
  117. /*
  118. * Set up the jbd2_inode if we are opening the inode for
  119. * writing and the journal is present
  120. */
  121. if (sbi->s_journal && !ei->jinode && (filp->f_mode & FMODE_WRITE)) {
  122. struct jbd2_inode *jinode = jbd2_alloc_inode(GFP_KERNEL);
  123. spin_lock(&inode->i_lock);
  124. if (!ei->jinode) {
  125. if (!jinode) {
  126. spin_unlock(&inode->i_lock);
  127. return -ENOMEM;
  128. }
  129. ei->jinode = jinode;
  130. jbd2_journal_init_jbd_inode(ei->jinode, inode);
  131. jinode = NULL;
  132. }
  133. spin_unlock(&inode->i_lock);
  134. if (unlikely(jinode != NULL))
  135. jbd2_free_inode(jinode);
  136. }
  137. return dquot_file_open(inode, filp);
  138. }
  139. /*
  140. * ext4_llseek() copied from generic_file_llseek() to handle both
  141. * block-mapped and extent-mapped maxbytes values. This should
  142. * otherwise be identical with generic_file_llseek().
  143. */
  144. loff_t ext4_llseek(struct file *file, loff_t offset, int origin)
  145. {
  146. struct inode *inode = file->f_mapping->host;
  147. loff_t maxbytes;
  148. if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)))
  149. maxbytes = EXT4_SB(inode->i_sb)->s_bitmap_maxbytes;
  150. else
  151. maxbytes = inode->i_sb->s_maxbytes;
  152. mutex_lock(&inode->i_mutex);
  153. switch (origin) {
  154. case SEEK_END:
  155. offset += inode->i_size;
  156. break;
  157. case SEEK_CUR:
  158. if (offset == 0) {
  159. mutex_unlock(&inode->i_mutex);
  160. return file->f_pos;
  161. }
  162. offset += file->f_pos;
  163. break;
  164. }
  165. if (offset < 0 || offset > maxbytes) {
  166. mutex_unlock(&inode->i_mutex);
  167. return -EINVAL;
  168. }
  169. if (offset != file->f_pos) {
  170. file->f_pos = offset;
  171. file->f_version = 0;
  172. }
  173. mutex_unlock(&inode->i_mutex);
  174. return offset;
  175. }
  176. const struct file_operations ext4_file_operations = {
  177. .llseek = ext4_llseek,
  178. .read = do_sync_read,
  179. .write = do_sync_write,
  180. .aio_read = generic_file_aio_read,
  181. .aio_write = ext4_file_write,
  182. .unlocked_ioctl = ext4_ioctl,
  183. #ifdef CONFIG_COMPAT
  184. .compat_ioctl = ext4_compat_ioctl,
  185. #endif
  186. .mmap = ext4_file_mmap,
  187. .open = ext4_file_open,
  188. .release = ext4_release_file,
  189. .fsync = ext4_sync_file,
  190. .splice_read = generic_file_splice_read,
  191. .splice_write = generic_file_splice_write,
  192. };
  193. const struct inode_operations ext4_file_inode_operations = {
  194. .truncate = ext4_truncate,
  195. .setattr = ext4_setattr,
  196. .getattr = ext4_getattr,
  197. #ifdef CONFIG_EXT4_FS_XATTR
  198. .setxattr = generic_setxattr,
  199. .getxattr = generic_getxattr,
  200. .listxattr = ext4_listxattr,
  201. .removexattr = generic_removexattr,
  202. #endif
  203. .check_acl = ext4_check_acl,
  204. .fallocate = ext4_fallocate,
  205. .fiemap = ext4_fiemap,
  206. };