file.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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_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. return generic_file_aio_write(iocb, iov, nr_segs, pos);
  74. }
  75. static const struct vm_operations_struct ext4_file_vm_ops = {
  76. .fault = filemap_fault,
  77. .page_mkwrite = ext4_page_mkwrite,
  78. };
  79. static int ext4_file_mmap(struct file *file, struct vm_area_struct *vma)
  80. {
  81. struct address_space *mapping = file->f_mapping;
  82. if (!mapping->a_ops->readpage)
  83. return -ENOEXEC;
  84. file_accessed(file);
  85. vma->vm_ops = &ext4_file_vm_ops;
  86. vma->vm_flags |= VM_CAN_NONLINEAR;
  87. return 0;
  88. }
  89. static int ext4_file_open(struct inode * inode, struct file * filp)
  90. {
  91. struct super_block *sb = inode->i_sb;
  92. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  93. struct vfsmount *mnt = filp->f_path.mnt;
  94. struct path path;
  95. char buf[64], *cp;
  96. if (unlikely(!(sbi->s_mount_flags & EXT4_MF_MNTDIR_SAMPLED) &&
  97. !(sb->s_flags & MS_RDONLY))) {
  98. sbi->s_mount_flags |= EXT4_MF_MNTDIR_SAMPLED;
  99. /*
  100. * Sample where the filesystem has been mounted and
  101. * store it in the superblock for sysadmin convenience
  102. * when trying to sort through large numbers of block
  103. * devices or filesystem images.
  104. */
  105. memset(buf, 0, sizeof(buf));
  106. path.mnt = mnt;
  107. path.dentry = mnt->mnt_root;
  108. cp = d_path(&path, buf, sizeof(buf));
  109. if (!IS_ERR(cp)) {
  110. memcpy(sbi->s_es->s_last_mounted, cp,
  111. sizeof(sbi->s_es->s_last_mounted));
  112. sb->s_dirt = 1;
  113. }
  114. }
  115. return dquot_file_open(inode, filp);
  116. }
  117. const struct file_operations ext4_file_operations = {
  118. .llseek = generic_file_llseek,
  119. .read = do_sync_read,
  120. .write = do_sync_write,
  121. .aio_read = generic_file_aio_read,
  122. .aio_write = ext4_file_write,
  123. .unlocked_ioctl = ext4_ioctl,
  124. #ifdef CONFIG_COMPAT
  125. .compat_ioctl = ext4_compat_ioctl,
  126. #endif
  127. .mmap = ext4_file_mmap,
  128. .open = ext4_file_open,
  129. .release = ext4_release_file,
  130. .fsync = ext4_sync_file,
  131. .splice_read = generic_file_splice_read,
  132. .splice_write = generic_file_splice_write,
  133. };
  134. const struct inode_operations ext4_file_inode_operations = {
  135. .truncate = ext4_truncate,
  136. .setattr = ext4_setattr,
  137. .getattr = ext4_getattr,
  138. #ifdef CONFIG_EXT4_FS_XATTR
  139. .setxattr = generic_setxattr,
  140. .getxattr = generic_getxattr,
  141. .listxattr = ext4_listxattr,
  142. .removexattr = generic_removexattr,
  143. #endif
  144. .check_acl = ext4_check_acl,
  145. .fallocate = ext4_fallocate,
  146. .fiemap = ext4_fiemap,
  147. };