Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/ext2/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 | * ext2 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 | |
| 21 | #include <linux/time.h> |
Jan Kara | 48bde86 | 2009-12-15 16:46:49 -0800 | [diff] [blame] | 22 | #include <linux/pagemap.h> |
Matthew Wilcox | c94c2ac | 2015-09-08 14:58:40 -0700 | [diff] [blame] | 23 | #include <linux/dax.h> |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 24 | #include <linux/quotaops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include "ext2.h" |
| 26 | #include "xattr.h" |
| 27 | #include "acl.h" |
| 28 | |
Matthew Wilcox | 6cd176a | 2015-02-16 15:59:25 -0800 | [diff] [blame] | 29 | #ifdef CONFIG_FS_DAX |
Matthew Wilcox | f7ca90b | 2015-02-16 15:59:02 -0800 | [diff] [blame] | 30 | static int ext2_dax_fault(struct vm_area_struct *vma, struct vm_fault *vmf) |
| 31 | { |
Dave Chinner | e842f29 | 2015-06-04 09:18:18 +1000 | [diff] [blame] | 32 | return dax_fault(vma, vmf, ext2_get_block, NULL); |
Matthew Wilcox | f7ca90b | 2015-02-16 15:59:02 -0800 | [diff] [blame] | 33 | } |
| 34 | |
Matthew Wilcox | e7b1ea2 | 2015-09-08 14:59:00 -0700 | [diff] [blame] | 35 | static int ext2_dax_pmd_fault(struct vm_area_struct *vma, unsigned long addr, |
| 36 | pmd_t *pmd, unsigned int flags) |
| 37 | { |
| 38 | return dax_pmd_fault(vma, addr, pmd, flags, ext2_get_block, NULL); |
| 39 | } |
| 40 | |
Matthew Wilcox | f7ca90b | 2015-02-16 15:59:02 -0800 | [diff] [blame] | 41 | static int ext2_dax_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) |
| 42 | { |
Dave Chinner | e842f29 | 2015-06-04 09:18:18 +1000 | [diff] [blame] | 43 | return dax_mkwrite(vma, vmf, ext2_get_block, NULL); |
Matthew Wilcox | f7ca90b | 2015-02-16 15:59:02 -0800 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | static const struct vm_operations_struct ext2_dax_vm_ops = { |
| 47 | .fault = ext2_dax_fault, |
Matthew Wilcox | e7b1ea2 | 2015-09-08 14:59:00 -0700 | [diff] [blame] | 48 | .pmd_fault = ext2_dax_pmd_fault, |
Matthew Wilcox | f7ca90b | 2015-02-16 15:59:02 -0800 | [diff] [blame] | 49 | .page_mkwrite = ext2_dax_mkwrite, |
Boaz Harrosh | 0e3b210 | 2015-04-15 16:15:14 -0700 | [diff] [blame] | 50 | .pfn_mkwrite = dax_pfn_mkwrite, |
Matthew Wilcox | f7ca90b | 2015-02-16 15:59:02 -0800 | [diff] [blame] | 51 | }; |
| 52 | |
| 53 | static int ext2_file_mmap(struct file *file, struct vm_area_struct *vma) |
| 54 | { |
| 55 | if (!IS_DAX(file_inode(file))) |
| 56 | return generic_file_mmap(file, vma); |
| 57 | |
| 58 | file_accessed(file); |
| 59 | vma->vm_ops = &ext2_dax_vm_ops; |
Matthew Wilcox | e7b1ea2 | 2015-09-08 14:59:00 -0700 | [diff] [blame] | 60 | vma->vm_flags |= VM_MIXEDMAP | VM_HUGEPAGE; |
Matthew Wilcox | f7ca90b | 2015-02-16 15:59:02 -0800 | [diff] [blame] | 61 | return 0; |
| 62 | } |
| 63 | #else |
| 64 | #define ext2_file_mmap generic_file_mmap |
| 65 | #endif |
| 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | /* |
Jan Kara | a6739af | 2007-07-15 23:40:22 -0700 | [diff] [blame] | 68 | * Called when filp is released. This happens when all file descriptors |
| 69 | * for a single struct file are closed. Note that different open() calls |
| 70 | * for the same file yield different struct file structures. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | */ |
| 72 | static int ext2_release_file (struct inode * inode, struct file * filp) |
| 73 | { |
Martin J. Bligh | a686cd8 | 2007-10-16 23:30:46 -0700 | [diff] [blame] | 74 | if (filp->f_mode & FMODE_WRITE) { |
| 75 | mutex_lock(&EXT2_I(inode)->truncate_mutex); |
| 76 | ext2_discard_reservation(inode); |
| 77 | mutex_unlock(&EXT2_I(inode)->truncate_mutex); |
| 78 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | return 0; |
| 80 | } |
| 81 | |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 82 | int ext2_fsync(struct file *file, loff_t start, loff_t end, int datasync) |
Jan Kara | 48bde86 | 2009-12-15 16:46:49 -0800 | [diff] [blame] | 83 | { |
| 84 | int ret; |
Christoph Hellwig | 7ea8085 | 2010-05-26 17:53:25 +0200 | [diff] [blame] | 85 | struct super_block *sb = file->f_mapping->host->i_sb; |
Jan Kara | 48bde86 | 2009-12-15 16:46:49 -0800 | [diff] [blame] | 86 | struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping; |
| 87 | |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 88 | ret = generic_file_fsync(file, start, end, datasync); |
Jan Kara | 48bde86 | 2009-12-15 16:46:49 -0800 | [diff] [blame] | 89 | if (ret == -EIO || test_and_clear_bit(AS_EIO, &mapping->flags)) { |
| 90 | /* We don't really know where the IO error happened... */ |
| 91 | ext2_error(sb, __func__, |
| 92 | "detected IO error when writing metadata buffers"); |
| 93 | ret = -EIO; |
| 94 | } |
| 95 | return ret; |
| 96 | } |
| 97 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | /* |
| 99 | * We have mostly NULL's here: the current defaults are ok for |
| 100 | * the ext2 filesystem. |
| 101 | */ |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 102 | const struct file_operations ext2_file_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | .llseek = generic_file_llseek, |
Al Viro | aad4f8b | 2014-04-02 14:33:16 -0400 | [diff] [blame] | 104 | .read_iter = generic_file_read_iter, |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 105 | .write_iter = generic_file_write_iter, |
Andi Kleen | 14f9f7b | 2008-02-06 01:40:10 -0800 | [diff] [blame] | 106 | .unlocked_ioctl = ext2_ioctl, |
David Howells | e322ff0 | 2006-08-29 19:06:20 +0100 | [diff] [blame] | 107 | #ifdef CONFIG_COMPAT |
| 108 | .compat_ioctl = ext2_compat_ioctl, |
| 109 | #endif |
Matthew Wilcox | f7ca90b | 2015-02-16 15:59:02 -0800 | [diff] [blame] | 110 | .mmap = ext2_file_mmap, |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 111 | .open = dquot_file_open, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | .release = ext2_release_file, |
Jan Kara | 48bde86 | 2009-12-15 16:46:49 -0800 | [diff] [blame] | 113 | .fsync = ext2_fsync, |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 114 | .splice_read = generic_file_splice_read, |
Al Viro | 8d02076 | 2014-04-05 04:27:08 -0400 | [diff] [blame] | 115 | .splice_write = iter_file_splice_write, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | }; |
| 117 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 118 | const struct inode_operations ext2_file_inode_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | #ifdef CONFIG_EXT2_FS_XATTR |
| 120 | .setxattr = generic_setxattr, |
| 121 | .getxattr = generic_getxattr, |
| 122 | .listxattr = ext2_listxattr, |
| 123 | .removexattr = generic_removexattr, |
| 124 | #endif |
| 125 | .setattr = ext2_setattr, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 126 | .get_acl = ext2_get_acl, |
Christoph Hellwig | 64e178a | 2013-12-20 05:16:44 -0800 | [diff] [blame] | 127 | .set_acl = ext2_set_acl, |
Josef Bacik | 68c9d70 | 2008-10-03 17:32:43 -0400 | [diff] [blame] | 128 | .fiemap = ext2_fiemap, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | }; |