Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README |
| 3 | */ |
| 4 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/time.h> |
Al Viro | f466c6f | 2012-03-17 01:16:43 -0400 | [diff] [blame] | 6 | #include "reiserfs.h" |
Al Viro | a3063ab | 2012-03-17 01:03:10 -0400 | [diff] [blame] | 7 | #include "acl.h" |
Al Viro | c45ac88 | 2012-03-17 00:59:06 -0400 | [diff] [blame] | 8 | #include "xattr.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <asm/uaccess.h> |
| 10 | #include <linux/pagemap.h> |
| 11 | #include <linux/swap.h> |
| 12 | #include <linux/writeback.h> |
| 13 | #include <linux/blkdev.h> |
| 14 | #include <linux/buffer_head.h> |
| 15 | #include <linux/quotaops.h> |
| 16 | |
| 17 | /* |
| 18 | ** We pack the tails of files on file close, not at the time they are written. |
| 19 | ** This implies an unnecessary copy of the tail and an unnecessary indirect item |
| 20 | ** insertion/balancing, for files that are written in one write. |
| 21 | ** It avoids unnecessary tail packings (balances) for files that are written in |
| 22 | ** multiple writes and are small enough to have tails. |
Jeff Mahoney | 0222e65 | 2009-03-30 14:02:44 -0400 | [diff] [blame] | 23 | ** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | ** file_release is called by the VFS layer when the file is closed. If |
| 25 | ** this is the last open file descriptor, and the file |
| 26 | ** small enough to have a tail, and the tail is currently in an |
| 27 | ** unformatted node, the tail is converted back into a direct item. |
Jeff Mahoney | 0222e65 | 2009-03-30 14:02:44 -0400 | [diff] [blame] | 28 | ** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | ** We use reiserfs_truncate_file to pack the tail, since it already has |
Jeff Mahoney | 0222e65 | 2009-03-30 14:02:44 -0400 | [diff] [blame] | 30 | ** all the conditions coded. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | */ |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 32 | static int reiserfs_file_release(struct inode *inode, struct file *filp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | { |
| 34 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 35 | struct reiserfs_transaction_handle th; |
| 36 | int err; |
| 37 | int jbegin_failure = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
Eric Sesterhenn | 14a6144 | 2006-10-03 23:36:38 +0200 | [diff] [blame] | 39 | BUG_ON(!S_ISREG(inode->i_mode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Al Viro | 0e4f6a7 | 2010-07-04 12:18:57 +0400 | [diff] [blame] | 41 | if (atomic_add_unless(&REISERFS_I(inode)->openers, -1, 1)) |
| 42 | return 0; |
| 43 | |
| 44 | mutex_lock(&(REISERFS_I(inode)->tailpack)); |
| 45 | |
| 46 | if (!atomic_dec_and_test(&REISERFS_I(inode)->openers)) { |
| 47 | mutex_unlock(&(REISERFS_I(inode)->tailpack)); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 48 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | } |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 50 | |
Al Viro | 0e4f6a7 | 2010-07-04 12:18:57 +0400 | [diff] [blame] | 51 | /* fast out for when nothing needs to be done */ |
| 52 | if ((!(REISERFS_I(inode)->i_flags & i_pack_on_close_mask) || |
| 53 | !tail_has_to_be_packed(inode)) && |
| 54 | REISERFS_I(inode)->i_prealloc_count <= 0) { |
| 55 | mutex_unlock(&(REISERFS_I(inode)->tailpack)); |
| 56 | return 0; |
| 57 | } |
Vladimir Saveliev | de14569 | 2007-01-22 20:40:46 -0800 | [diff] [blame] | 58 | |
Chris Mason | b5f3953 | 2006-08-05 12:15:08 -0700 | [diff] [blame] | 59 | reiserfs_write_lock(inode->i_sb); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 60 | /* freeing preallocation only involves relogging blocks that |
| 61 | * are already in the current transaction. preallocation gets |
| 62 | * freed at the end of each transaction, so it is impossible for |
| 63 | * us to log any additional blocks (including quota blocks) |
| 64 | */ |
| 65 | err = journal_begin(&th, inode->i_sb, 1); |
| 66 | if (err) { |
| 67 | /* uh oh, we can't allow the inode to go away while there |
| 68 | * is still preallocation blocks pending. Try to join the |
| 69 | * aborted transaction |
| 70 | */ |
| 71 | jbegin_failure = err; |
| 72 | err = journal_join_abort(&th, inode->i_sb, 1); |
| 73 | |
| 74 | if (err) { |
| 75 | /* hmpf, our choices here aren't good. We can pin the inode |
| 76 | * which will disallow unmount from every happening, we can |
| 77 | * do nothing, which will corrupt random memory on unmount, |
| 78 | * or we can forcibly remove the file from the preallocation |
| 79 | * list, which will leak blocks on disk. Lets pin the inode |
| 80 | * and let the admin know what is going on. |
| 81 | */ |
| 82 | igrab(inode); |
Jeff Mahoney | 45b03d5 | 2009-03-30 14:02:21 -0400 | [diff] [blame] | 83 | reiserfs_warning(inode->i_sb, "clm-9001", |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 84 | "pinning inode %lu because the " |
Alexey Dobriyan | 533221f | 2006-11-25 11:09:30 -0800 | [diff] [blame] | 85 | "preallocation can't be freed", |
| 86 | inode->i_ino); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 87 | goto out; |
| 88 | } |
| 89 | } |
| 90 | reiserfs_update_inode_transaction(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | #ifdef REISERFS_PREALLOCATE |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 93 | reiserfs_discard_prealloc(&th, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | #endif |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 95 | err = journal_end(&th, inode->i_sb, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 97 | /* copy back the error code from journal_begin */ |
| 98 | if (!err) |
| 99 | err = jbegin_failure; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Al Viro | 0e4f6a7 | 2010-07-04 12:18:57 +0400 | [diff] [blame] | 101 | if (!err && |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 102 | (REISERFS_I(inode)->i_flags & i_pack_on_close_mask) && |
| 103 | tail_has_to_be_packed(inode)) { |
Al Viro | 0e4f6a7 | 2010-07-04 12:18:57 +0400 | [diff] [blame] | 104 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 105 | /* if regular file is released by last holder and it has been |
| 106 | appended (we append by unformatted node only) or its direct |
| 107 | item(s) had to be converted, then it may have to be |
| 108 | indirect2direct converted */ |
| 109 | err = reiserfs_truncate_file(inode, 0); |
| 110 | } |
| 111 | out: |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 112 | reiserfs_write_unlock(inode->i_sb); |
Al Viro | 0e4f6a7 | 2010-07-04 12:18:57 +0400 | [diff] [blame] | 113 | mutex_unlock(&(REISERFS_I(inode)->tailpack)); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 114 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Al Viro | 0e4f6a7 | 2010-07-04 12:18:57 +0400 | [diff] [blame] | 117 | static int reiserfs_file_open(struct inode *inode, struct file *file) |
Vladimir Saveliev | de14569 | 2007-01-22 20:40:46 -0800 | [diff] [blame] | 118 | { |
Al Viro | 0e4f6a7 | 2010-07-04 12:18:57 +0400 | [diff] [blame] | 119 | int err = dquot_file_open(inode, file); |
| 120 | if (!atomic_inc_not_zero(&REISERFS_I(inode)->openers)) { |
| 121 | /* somebody might be tailpacking on final close; wait for it */ |
| 122 | mutex_lock(&(REISERFS_I(inode)->tailpack)); |
| 123 | atomic_inc(&REISERFS_I(inode)->openers); |
| 124 | mutex_unlock(&(REISERFS_I(inode)->tailpack)); |
| 125 | } |
| 126 | return err; |
Vladimir Saveliev | de14569 | 2007-01-22 20:40:46 -0800 | [diff] [blame] | 127 | } |
| 128 | |
Marco Stornelli | cfac4b4 | 2012-12-15 11:47:31 +0100 | [diff] [blame] | 129 | void reiserfs_vfs_truncate_file(struct inode *inode) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 130 | { |
Al Viro | 0e4f6a7 | 2010-07-04 12:18:57 +0400 | [diff] [blame] | 131 | mutex_lock(&(REISERFS_I(inode)->tailpack)); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 132 | reiserfs_truncate_file(inode, 1); |
Al Viro | 0e4f6a7 | 2010-07-04 12:18:57 +0400 | [diff] [blame] | 133 | mutex_unlock(&(REISERFS_I(inode)->tailpack)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | /* Sync a reiserfs file. */ |
| 137 | |
| 138 | /* |
| 139 | * FIXME: sync_mapping_buffers() never has anything to sync. Can |
| 140 | * be removed... |
| 141 | */ |
| 142 | |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 143 | static int reiserfs_sync_file(struct file *filp, loff_t start, loff_t end, |
| 144 | int datasync) |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 145 | { |
Christoph Hellwig | 7ea8085 | 2010-05-26 17:53:25 +0200 | [diff] [blame] | 146 | struct inode *inode = filp->f_mapping->host; |
Jeff Mahoney | ee93961 | 2009-03-30 14:02:50 -0400 | [diff] [blame] | 147 | int err; |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 148 | int barrier_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 150 | err = filemap_write_and_wait_range(inode->i_mapping, start, end); |
| 151 | if (err) |
| 152 | return err; |
| 153 | |
| 154 | mutex_lock(&inode->i_mutex); |
Jeff Mahoney | 995c762 | 2009-03-30 14:02:47 -0400 | [diff] [blame] | 155 | BUG_ON(!S_ISREG(inode->i_mode)); |
Jeff Mahoney | ee93961 | 2009-03-30 14:02:50 -0400 | [diff] [blame] | 156 | err = sync_mapping_buffers(inode->i_mapping); |
Jeff Mahoney | 995c762 | 2009-03-30 14:02:47 -0400 | [diff] [blame] | 157 | reiserfs_write_lock(inode->i_sb); |
| 158 | barrier_done = reiserfs_commit_for_inode(inode); |
| 159 | reiserfs_write_unlock(inode->i_sb); |
| 160 | if (barrier_done != 1 && reiserfs_barrier_flush(inode->i_sb)) |
Christoph Hellwig | dd3932e | 2010-09-16 20:51:46 +0200 | [diff] [blame] | 161 | blkdev_issue_flush(inode->i_sb->s_bdev, GFP_KERNEL, NULL); |
Josef Bacik | 02c24a8 | 2011-07-16 20:44:56 -0400 | [diff] [blame] | 162 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 163 | if (barrier_done < 0) |
| 164 | return barrier_done; |
Jeff Mahoney | ee93961 | 2009-03-30 14:02:50 -0400 | [diff] [blame] | 165 | return (err < 0) ? -EIO : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | } |
| 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | /* taken fs/buffer.c:__block_commit_write */ |
| 169 | int reiserfs_commit_page(struct inode *inode, struct page *page, |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 170 | unsigned from, unsigned to) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 172 | unsigned block_start, block_end; |
| 173 | int partial = 0; |
| 174 | unsigned blocksize; |
| 175 | struct buffer_head *bh, *head; |
| 176 | unsigned long i_size_index = inode->i_size >> PAGE_CACHE_SHIFT; |
| 177 | int new; |
| 178 | int logit = reiserfs_file_data_log(inode); |
| 179 | struct super_block *s = inode->i_sb; |
| 180 | int bh_per_page = PAGE_CACHE_SIZE / s->s_blocksize; |
| 181 | struct reiserfs_transaction_handle th; |
| 182 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 184 | th.t_trans_id = 0; |
| 185 | blocksize = 1 << inode->i_blkbits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 187 | if (logit) { |
| 188 | reiserfs_write_lock(s); |
| 189 | ret = journal_begin(&th, s, bh_per_page + 1); |
| 190 | if (ret) |
| 191 | goto drop_write_lock; |
| 192 | reiserfs_update_inode_transaction(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | } |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 194 | for (bh = head = page_buffers(page), block_start = 0; |
| 195 | bh != head || !block_start; |
| 196 | block_start = block_end, bh = bh->b_this_page) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 198 | new = buffer_new(bh); |
| 199 | clear_buffer_new(bh); |
| 200 | block_end = block_start + blocksize; |
| 201 | if (block_end <= from || block_start >= to) { |
| 202 | if (!buffer_uptodate(bh)) |
| 203 | partial = 1; |
| 204 | } else { |
| 205 | set_buffer_uptodate(bh); |
| 206 | if (logit) { |
| 207 | reiserfs_prepare_for_journal(s, bh, 1); |
| 208 | journal_mark_dirty(&th, s, bh); |
| 209 | } else if (!buffer_dirty(bh)) { |
| 210 | mark_buffer_dirty(bh); |
| 211 | /* do data=ordered on any page past the end |
| 212 | * of file and any buffer marked BH_New. |
| 213 | */ |
| 214 | if (reiserfs_data_ordered(inode->i_sb) && |
| 215 | (new || page->index >= i_size_index)) { |
| 216 | reiserfs_add_ordered_list(inode, bh); |
| 217 | } |
| 218 | } |
| 219 | } |
| 220 | } |
| 221 | if (logit) { |
| 222 | ret = journal_end(&th, s, bh_per_page + 1); |
| 223 | drop_write_lock: |
| 224 | reiserfs_write_unlock(s); |
| 225 | } |
| 226 | /* |
| 227 | * If this is a partial write which happened to make all buffers |
| 228 | * uptodate then we can optimize away a bogus readpage() for |
| 229 | * the next read(). Here we 'discover' whether the page went |
| 230 | * uptodate as a result of this (potentially partial) write. |
| 231 | */ |
| 232 | if (!partial) |
| 233 | SetPageUptodate(page); |
| 234 | return ret; |
| 235 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 237 | const struct file_operations reiserfs_file_operations = { |
Badari Pulavarty | 027445c | 2006-09-30 23:28:46 -0700 | [diff] [blame] | 238 | .read = do_sync_read, |
Al Viro | d5daaaf | 2013-03-19 19:46:45 -0400 | [diff] [blame] | 239 | .write = do_sync_write, |
Frederic Weisbecker | 205cb37 | 2009-10-14 23:22:17 +0200 | [diff] [blame] | 240 | .unlocked_ioctl = reiserfs_ioctl, |
David Howells | 52b499c | 2006-08-29 19:06:18 +0100 | [diff] [blame] | 241 | #ifdef CONFIG_COMPAT |
| 242 | .compat_ioctl = reiserfs_compat_ioctl, |
| 243 | #endif |
Al Viro | 0e4f6a7 | 2010-07-04 12:18:57 +0400 | [diff] [blame] | 244 | .mmap = generic_file_mmap, |
| 245 | .open = reiserfs_file_open, |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 246 | .release = reiserfs_file_release, |
| 247 | .fsync = reiserfs_sync_file, |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 248 | .aio_read = generic_file_aio_read, |
Alexey Dobriyan | 9637f28 | 2006-06-26 00:24:57 -0700 | [diff] [blame] | 249 | .aio_write = generic_file_aio_write, |
Jens Axboe | 5274f05 | 2006-03-30 15:15:30 +0200 | [diff] [blame] | 250 | .splice_read = generic_file_splice_read, |
| 251 | .splice_write = generic_file_splice_write, |
Christoph Hellwig | 91efc16 | 2008-09-08 19:42:50 +0200 | [diff] [blame] | 252 | .llseek = generic_file_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | }; |
| 254 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 255 | const struct inode_operations reiserfs_file_inode_operations = { |
Linus Torvalds | bd4c625 | 2005-07-12 20:21:28 -0700 | [diff] [blame] | 256 | .setattr = reiserfs_setattr, |
| 257 | .setxattr = reiserfs_setxattr, |
| 258 | .getxattr = reiserfs_getxattr, |
| 259 | .listxattr = reiserfs_listxattr, |
| 260 | .removexattr = reiserfs_removexattr, |
| 261 | .permission = reiserfs_permission, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 262 | .get_acl = reiserfs_get_acl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | }; |