file.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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 "ext4.h"
  26. #include "ext4_jbd2.h"
  27. #include "xattr.h"
  28. #include "acl.h"
  29. /*
  30. * Called when an inode is released. Note that this is different
  31. * from ext4_file_open: open gets called at every open, but release
  32. * gets called only when /all/ the files are closed.
  33. */
  34. static int ext4_release_file(struct inode *inode, struct file *filp)
  35. {
  36. if (EXT4_I(inode)->i_state & EXT4_STATE_DA_ALLOC_CLOSE) {
  37. ext4_alloc_da_blocks(inode);
  38. EXT4_I(inode)->i_state &= ~EXT4_STATE_DA_ALLOC_CLOSE;
  39. }
  40. /* if we are the last writer on the inode, drop the block reservation */
  41. if ((filp->f_mode & FMODE_WRITE) &&
  42. (atomic_read(&inode->i_writecount) == 1) &&
  43. !EXT4_I(inode)->i_reserved_data_blocks)
  44. {
  45. down_write(&EXT4_I(inode)->i_data_sem);
  46. ext4_discard_preallocations(inode);
  47. up_write(&EXT4_I(inode)->i_data_sem);
  48. }
  49. if (is_dx(inode) && filp->private_data)
  50. ext4_htree_free_dir_info(filp->private_data);
  51. return 0;
  52. }
  53. static ssize_t
  54. ext4_file_write(struct kiocb *iocb, const struct iovec *iov,
  55. unsigned long nr_segs, loff_t pos)
  56. {
  57. struct inode *inode = iocb->ki_filp->f_path.dentry->d_inode;
  58. /*
  59. * If we have encountered a bitmap-format file, the size limit
  60. * is smaller than s_maxbytes, which is for extent-mapped files.
  61. */
  62. if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) {
  63. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  64. size_t length = iov_length(iov, nr_segs);
  65. if (pos > sbi->s_bitmap_maxbytes)
  66. return -EFBIG;
  67. if (pos + length > sbi->s_bitmap_maxbytes) {
  68. nr_segs = iov_shorten((struct iovec *)iov, nr_segs,
  69. sbi->s_bitmap_maxbytes - pos);
  70. }
  71. }
  72. return generic_file_aio_write(iocb, iov, nr_segs, pos);
  73. }
  74. static const struct vm_operations_struct ext4_file_vm_ops = {
  75. .fault = filemap_fault,
  76. .page_mkwrite = ext4_page_mkwrite,
  77. };
  78. static int ext4_file_mmap(struct file *file, struct vm_area_struct *vma)
  79. {
  80. struct address_space *mapping = file->f_mapping;
  81. if (!mapping->a_ops->readpage)
  82. return -ENOEXEC;
  83. file_accessed(file);
  84. vma->vm_ops = &ext4_file_vm_ops;
  85. vma->vm_flags |= VM_CAN_NONLINEAR;
  86. return 0;
  87. }
  88. static int ext4_file_open(struct inode * inode, struct file * filp)
  89. {
  90. struct super_block *sb = inode->i_sb;
  91. struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
  92. struct vfsmount *mnt = filp->f_path.mnt;
  93. struct path path;
  94. char buf[64], *cp;
  95. if (unlikely(!(sbi->s_mount_flags & EXT4_MF_MNTDIR_SAMPLED) &&
  96. !(sb->s_flags & MS_RDONLY))) {
  97. sbi->s_mount_flags |= EXT4_MF_MNTDIR_SAMPLED;
  98. /*
  99. * Sample where the filesystem has been mounted and
  100. * store it in the superblock for sysadmin convenience
  101. * when trying to sort through large numbers of block
  102. * devices or filesystem images.
  103. */
  104. memset(buf, 0, sizeof(buf));
  105. path.mnt = mnt->mnt_parent;
  106. path.dentry = mnt->mnt_mountpoint;
  107. path_get(&path);
  108. cp = d_path(&path, buf, sizeof(buf));
  109. path_put(&path);
  110. if (!IS_ERR(cp)) {
  111. memcpy(sbi->s_es->s_last_mounted, cp,
  112. sizeof(sbi->s_es->s_last_mounted));
  113. sb->s_dirt = 1;
  114. }
  115. }
  116. return generic_file_open(inode, filp);
  117. }
  118. const struct file_operations ext4_file_operations = {
  119. .llseek = generic_file_llseek,
  120. .read = do_sync_read,
  121. .write = do_sync_write,
  122. .aio_read = generic_file_aio_read,
  123. .aio_write = ext4_file_write,
  124. .unlocked_ioctl = ext4_ioctl,
  125. #ifdef CONFIG_COMPAT
  126. .compat_ioctl = ext4_compat_ioctl,
  127. #endif
  128. .mmap = ext4_file_mmap,
  129. .open = ext4_file_open,
  130. .release = ext4_release_file,
  131. .fsync = ext4_sync_file,
  132. .splice_read = generic_file_splice_read,
  133. .splice_write = generic_file_splice_write,
  134. };
  135. const struct inode_operations ext4_file_inode_operations = {
  136. .truncate = ext4_truncate,
  137. .setattr = ext4_setattr,
  138. .getattr = ext4_getattr,
  139. #ifdef CONFIG_EXT4_FS_XATTR
  140. .setxattr = generic_setxattr,
  141. .getxattr = generic_getxattr,
  142. .listxattr = ext4_listxattr,
  143. .removexattr = generic_removexattr,
  144. #endif
  145. .check_acl = ext4_check_acl,
  146. .fallocate = ext4_fallocate,
  147. .fiemap = ext4_fiemap,
  148. };