Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2 | * linux/fs/ext4/inode.c |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 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/inode.c |
| 12 | * |
| 13 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 14 | * |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 15 | * 64-bit file support on 64-bit platforms by Jakub Jelinek |
| 16 | * (jj@sunsite.ms.mff.cuni.cz) |
| 17 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 18 | * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000 |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 19 | */ |
| 20 | |
| 21 | #include <linux/module.h> |
| 22 | #include <linux/fs.h> |
| 23 | #include <linux/time.h> |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 24 | #include <linux/jbd2.h> |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 25 | #include <linux/highuid.h> |
| 26 | #include <linux/pagemap.h> |
| 27 | #include <linux/quotaops.h> |
| 28 | #include <linux/string.h> |
| 29 | #include <linux/buffer_head.h> |
| 30 | #include <linux/writeback.h> |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 31 | #include <linux/pagevec.h> |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 32 | #include <linux/mpage.h> |
Duane Griffin | e83c139 | 2008-12-19 20:47:15 +0000 | [diff] [blame] | 33 | #include <linux/namei.h> |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 34 | #include <linux/uio.h> |
| 35 | #include <linux/bio.h> |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 36 | #include <linux/workqueue.h> |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 37 | #include <linux/kernel.h> |
Andrew Morton | 6db26ff | 2011-01-12 16:59:13 -0800 | [diff] [blame] | 38 | #include <linux/printk.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 39 | #include <linux/slab.h> |
Theodore Ts'o | a8901d3 | 2010-12-17 10:40:47 -0500 | [diff] [blame] | 40 | #include <linux/ratelimit.h> |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 41 | |
Christoph Hellwig | 3dcf545 | 2008-04-29 18:13:32 -0400 | [diff] [blame] | 42 | #include "ext4_jbd2.h" |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 43 | #include "xattr.h" |
| 44 | #include "acl.h" |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 45 | #include "ext4_extents.h" |
Theodore Ts'o | 9f125d6 | 2011-06-27 19:16:04 -0400 | [diff] [blame] | 46 | #include "truncate.h" |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 47 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 48 | #include <trace/events/ext4.h> |
| 49 | |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 50 | #define MPAGE_DA_EXTENT_TAIL 0x01 |
| 51 | |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 52 | static inline int ext4_begin_ordered_truncate(struct inode *inode, |
| 53 | loff_t new_size) |
| 54 | { |
Theodore Ts'o | 7ff9c07 | 2010-11-08 13:51:33 -0500 | [diff] [blame] | 55 | trace_ext4_begin_ordered_truncate(inode, new_size); |
Theodore Ts'o | 8aefcd5 | 2011-01-10 12:29:43 -0500 | [diff] [blame] | 56 | /* |
| 57 | * If jinode is zero, then we never opened the file for |
| 58 | * writing, so there's no need to call |
| 59 | * jbd2_journal_begin_ordered_truncate() since there's no |
| 60 | * outstanding writes we need to flush. |
| 61 | */ |
| 62 | if (!EXT4_I(inode)->jinode) |
| 63 | return 0; |
| 64 | return jbd2_journal_begin_ordered_truncate(EXT4_JOURNAL(inode), |
| 65 | EXT4_I(inode)->jinode, |
| 66 | new_size); |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 67 | } |
| 68 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 69 | static void ext4_invalidatepage(struct page *page, unsigned long offset); |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 70 | static int noalloc_get_block_write(struct inode *inode, sector_t iblock, |
| 71 | struct buffer_head *bh_result, int create); |
| 72 | static int ext4_set_bh_endio(struct buffer_head *bh, struct inode *inode); |
| 73 | static void ext4_end_io_buffer_write(struct buffer_head *bh, int uptodate); |
| 74 | static int __ext4_journalled_writepage(struct page *page, unsigned int len); |
| 75 | static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 76 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 77 | /* |
| 78 | * Test whether an inode is a fast symlink. |
| 79 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 80 | static int ext4_inode_is_fast_symlink(struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 81 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 82 | int ea_blocks = EXT4_I(inode)->i_file_acl ? |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 83 | (inode->i_sb->s_blocksize >> 9) : 0; |
| 84 | |
| 85 | return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0); |
| 86 | } |
| 87 | |
| 88 | /* |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 89 | * Restart the transaction associated with *handle. This does a commit, |
| 90 | * so before we call here everything must be consistently dirtied against |
| 91 | * this transaction. |
| 92 | */ |
Aneesh Kumar K.V | fa5d111 | 2009-11-02 18:50:49 -0500 | [diff] [blame] | 93 | int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode, |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 94 | int nblocks) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 95 | { |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 96 | int ret; |
| 97 | |
| 98 | /* |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 99 | * Drop i_data_sem to avoid deadlock with ext4_map_blocks. At this |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 100 | * moment, get_block can be called only for blocks inside i_size since |
| 101 | * page cache has been already dropped and writes are blocked by |
| 102 | * i_mutex. So we can safely drop the i_data_sem here. |
| 103 | */ |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 104 | BUG_ON(EXT4_JOURNAL(inode) == NULL); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 105 | jbd_debug(2, "restarting handle %p\n", handle); |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 106 | up_write(&EXT4_I(inode)->i_data_sem); |
Amir Goldstein | 8e8eaab | 2011-02-27 23:32:12 -0500 | [diff] [blame] | 107 | ret = ext4_journal_restart(handle, nblocks); |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 108 | down_write(&EXT4_I(inode)->i_data_sem); |
Aneesh Kumar K.V | fa5d111 | 2009-11-02 18:50:49 -0500 | [diff] [blame] | 109 | ext4_discard_preallocations(inode); |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 110 | |
| 111 | return ret; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | /* |
| 115 | * Called at the last iput() if i_nlink is zero. |
| 116 | */ |
Al Viro | 0930fcc | 2010-06-07 13:16:22 -0400 | [diff] [blame] | 117 | void ext4_evict_inode(struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 118 | { |
| 119 | handle_t *handle; |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 120 | int err; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 121 | |
Theodore Ts'o | 7ff9c07 | 2010-11-08 13:51:33 -0500 | [diff] [blame] | 122 | trace_ext4_evict_inode(inode); |
Al Viro | 0930fcc | 2010-06-07 13:16:22 -0400 | [diff] [blame] | 123 | if (inode->i_nlink) { |
Jan Kara | 2d859db | 2011-07-26 09:07:11 -0400 | [diff] [blame] | 124 | /* |
| 125 | * When journalling data dirty buffers are tracked only in the |
| 126 | * journal. So although mm thinks everything is clean and |
| 127 | * ready for reaping the inode might still have some pages to |
| 128 | * write in the running transaction or waiting to be |
| 129 | * checkpointed. Thus calling jbd2_journal_invalidatepage() |
| 130 | * (via truncate_inode_pages()) to discard these buffers can |
| 131 | * cause data loss. Also even if we did not discard these |
| 132 | * buffers, we would have no way to find them after the inode |
| 133 | * is reaped and thus user could see stale data if he tries to |
| 134 | * read them before the transaction is checkpointed. So be |
| 135 | * careful and force everything to disk here... We use |
| 136 | * ei->i_datasync_tid to store the newest transaction |
| 137 | * containing inode's data. |
| 138 | * |
| 139 | * Note that directories do not have this problem because they |
| 140 | * don't use page cache. |
| 141 | */ |
| 142 | if (ext4_should_journal_data(inode) && |
| 143 | (S_ISLNK(inode->i_mode) || S_ISREG(inode->i_mode))) { |
| 144 | journal_t *journal = EXT4_SB(inode->i_sb)->s_journal; |
| 145 | tid_t commit_tid = EXT4_I(inode)->i_datasync_tid; |
| 146 | |
| 147 | jbd2_log_start_commit(journal, commit_tid); |
| 148 | jbd2_log_wait_commit(journal, commit_tid); |
| 149 | filemap_write_and_wait(&inode->i_data); |
| 150 | } |
Al Viro | 0930fcc | 2010-06-07 13:16:22 -0400 | [diff] [blame] | 151 | truncate_inode_pages(&inode->i_data, 0); |
| 152 | goto no_delete; |
| 153 | } |
| 154 | |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 155 | if (!is_bad_inode(inode)) |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 156 | dquot_initialize(inode); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 157 | |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 158 | if (ext4_should_order_data(inode)) |
| 159 | ext4_begin_ordered_truncate(inode, 0); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 160 | truncate_inode_pages(&inode->i_data, 0); |
| 161 | |
| 162 | if (is_bad_inode(inode)) |
| 163 | goto no_delete; |
| 164 | |
Theodore Ts'o | 9f125d6 | 2011-06-27 19:16:04 -0400 | [diff] [blame] | 165 | handle = ext4_journal_start(inode, ext4_blocks_for_truncate(inode)+3); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 166 | if (IS_ERR(handle)) { |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 167 | ext4_std_error(inode->i_sb, PTR_ERR(handle)); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 168 | /* |
| 169 | * If we're going to skip the normal cleanup, we still need to |
| 170 | * make sure that the in-core orphan linked list is properly |
| 171 | * cleaned up. |
| 172 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 173 | ext4_orphan_del(NULL, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 174 | goto no_delete; |
| 175 | } |
| 176 | |
| 177 | if (IS_SYNC(inode)) |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 178 | ext4_handle_sync(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 179 | inode->i_size = 0; |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 180 | err = ext4_mark_inode_dirty(handle, inode); |
| 181 | if (err) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 182 | ext4_warning(inode->i_sb, |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 183 | "couldn't mark inode dirty (err %d)", err); |
| 184 | goto stop_handle; |
| 185 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 186 | if (inode->i_blocks) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 187 | ext4_truncate(inode); |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 188 | |
| 189 | /* |
| 190 | * ext4_ext_truncate() doesn't reserve any slop when it |
| 191 | * restarts journal transactions; therefore there may not be |
| 192 | * enough credits left in the handle to remove the inode from |
| 193 | * the orphan list and set the dtime field. |
| 194 | */ |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 195 | if (!ext4_handle_has_enough_credits(handle, 3)) { |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 196 | err = ext4_journal_extend(handle, 3); |
| 197 | if (err > 0) |
| 198 | err = ext4_journal_restart(handle, 3); |
| 199 | if (err != 0) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 200 | ext4_warning(inode->i_sb, |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 201 | "couldn't extend journal (err %d)", err); |
| 202 | stop_handle: |
| 203 | ext4_journal_stop(handle); |
Theodore Ts'o | 4538821 | 2010-07-29 15:06:10 -0400 | [diff] [blame] | 204 | ext4_orphan_del(NULL, inode); |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 205 | goto no_delete; |
| 206 | } |
| 207 | } |
| 208 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 209 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 210 | * Kill off the orphan record which ext4_truncate created. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 211 | * AKPM: I think this can be inside the above `if'. |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 212 | * Note that ext4_orphan_del() has to be able to cope with the |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 213 | * deletion of a non-existent orphan - this is because we don't |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 214 | * know if ext4_truncate() actually created an orphan record. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 215 | * (Well, we could do this if we need to, but heck - it works) |
| 216 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 217 | ext4_orphan_del(handle, inode); |
| 218 | EXT4_I(inode)->i_dtime = get_seconds(); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 219 | |
| 220 | /* |
| 221 | * One subtle ordering requirement: if anything has gone wrong |
| 222 | * (transaction abort, IO errors, whatever), then we can still |
| 223 | * do these next steps (the fs will already have been marked as |
| 224 | * having errors), but we can't free the inode if the mark_dirty |
| 225 | * fails. |
| 226 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 227 | if (ext4_mark_inode_dirty(handle, inode)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 228 | /* If that failed, just do the required in-core inode clear. */ |
Al Viro | 0930fcc | 2010-06-07 13:16:22 -0400 | [diff] [blame] | 229 | ext4_clear_inode(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 230 | else |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 231 | ext4_free_inode(handle, inode); |
| 232 | ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 233 | return; |
| 234 | no_delete: |
Al Viro | 0930fcc | 2010-06-07 13:16:22 -0400 | [diff] [blame] | 235 | ext4_clear_inode(inode); /* We must guarantee clearing of inode... */ |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 236 | } |
| 237 | |
Dmitry Monakhov | a9e7f44 | 2009-12-14 15:21:14 +0300 | [diff] [blame] | 238 | #ifdef CONFIG_QUOTA |
| 239 | qsize_t *ext4_get_reserved_space(struct inode *inode) |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 240 | { |
Dmitry Monakhov | a9e7f44 | 2009-12-14 15:21:14 +0300 | [diff] [blame] | 241 | return &EXT4_I(inode)->i_reserved_quota; |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 242 | } |
Dmitry Monakhov | a9e7f44 | 2009-12-14 15:21:14 +0300 | [diff] [blame] | 243 | #endif |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 244 | |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 245 | /* |
| 246 | * Calculate the number of metadata blocks need to reserve |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 247 | * to allocate a block located at @lblock |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 248 | */ |
Theodore Ts'o | 01f49d0 | 2011-01-10 12:13:03 -0500 | [diff] [blame] | 249 | static int ext4_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock) |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 250 | { |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 251 | if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 252 | return ext4_ext_calc_metadata_amount(inode, lblock); |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 253 | |
Amir Goldstein | 8bb2b24 | 2011-06-27 17:10:28 -0400 | [diff] [blame] | 254 | return ext4_ind_calc_metadata_amount(inode, lblock); |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 255 | } |
| 256 | |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 257 | /* |
| 258 | * Called with i_data_sem down, which is important since we can call |
| 259 | * ext4_discard_preallocations() from here. |
| 260 | */ |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 261 | void ext4_da_update_reserve_space(struct inode *inode, |
| 262 | int used, int quota_claim) |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 263 | { |
| 264 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 265 | struct ext4_inode_info *ei = EXT4_I(inode); |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 266 | |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 267 | spin_lock(&ei->i_block_reservation_lock); |
Theodore Ts'o | f8ec9d68 | 2010-01-01 01:00:21 -0500 | [diff] [blame] | 268 | trace_ext4_da_update_reserve_space(inode, used); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 269 | if (unlikely(used > ei->i_reserved_data_blocks)) { |
| 270 | ext4_msg(inode->i_sb, KERN_NOTICE, "%s: ino %lu, used %d " |
| 271 | "with only %d reserved data blocks\n", |
| 272 | __func__, inode->i_ino, used, |
| 273 | ei->i_reserved_data_blocks); |
| 274 | WARN_ON(1); |
| 275 | used = ei->i_reserved_data_blocks; |
Aneesh Kumar K.V | 6bc6e63 | 2008-10-10 09:39:00 -0400 | [diff] [blame] | 276 | } |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 277 | |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 278 | /* Update per-inode reservations */ |
| 279 | ei->i_reserved_data_blocks -= used; |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 280 | ei->i_reserved_meta_blocks -= ei->i_allocated_meta_blocks; |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 281 | percpu_counter_sub(&sbi->s_dirtyblocks_counter, |
| 282 | used + ei->i_allocated_meta_blocks); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 283 | ei->i_allocated_meta_blocks = 0; |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 284 | |
| 285 | if (ei->i_reserved_data_blocks == 0) { |
| 286 | /* |
| 287 | * We can release all of the reserved metadata blocks |
| 288 | * only when we have written all of the delayed |
| 289 | * allocation blocks. |
| 290 | */ |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 291 | percpu_counter_sub(&sbi->s_dirtyblocks_counter, |
| 292 | ei->i_reserved_meta_blocks); |
Theodore Ts'o | ee5f4d9 | 2010-01-01 02:36:15 -0500 | [diff] [blame] | 293 | ei->i_reserved_meta_blocks = 0; |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 294 | ei->i_da_metadata_calc_len = 0; |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 295 | } |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 296 | spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 297 | |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 298 | /* Update quota subsystem for data blocks */ |
| 299 | if (quota_claim) |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 300 | dquot_claim_block(inode, used); |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 301 | else { |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 302 | /* |
| 303 | * We did fallocate with an offset that is already delayed |
| 304 | * allocated. So on delayed allocated writeback we should |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 305 | * not re-claim the quota for fallocated blocks. |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 306 | */ |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 307 | dquot_release_reservation_block(inode, used); |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 308 | } |
Aneesh Kumar K.V | d601430 | 2009-03-27 22:36:43 -0400 | [diff] [blame] | 309 | |
| 310 | /* |
| 311 | * If we have done all the pending block allocations and if |
| 312 | * there aren't any writers on the inode, we can discard the |
| 313 | * inode's preallocations. |
| 314 | */ |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 315 | if ((ei->i_reserved_data_blocks == 0) && |
| 316 | (atomic_read(&inode->i_writecount) == 0)) |
Aneesh Kumar K.V | d601430 | 2009-03-27 22:36:43 -0400 | [diff] [blame] | 317 | ext4_discard_preallocations(inode); |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 318 | } |
| 319 | |
Theodore Ts'o | e29136f | 2010-06-29 12:54:28 -0400 | [diff] [blame] | 320 | static int __check_block_validity(struct inode *inode, const char *func, |
Theodore Ts'o | c398eda | 2010-07-27 11:56:40 -0400 | [diff] [blame] | 321 | unsigned int line, |
| 322 | struct ext4_map_blocks *map) |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 323 | { |
Theodore Ts'o | 24676da | 2010-05-16 21:00:00 -0400 | [diff] [blame] | 324 | if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), map->m_pblk, |
| 325 | map->m_len)) { |
Theodore Ts'o | c398eda | 2010-07-27 11:56:40 -0400 | [diff] [blame] | 326 | ext4_error_inode(inode, func, line, map->m_pblk, |
| 327 | "lblock %lu mapped to illegal pblock " |
| 328 | "(length %d)", (unsigned long) map->m_lblk, |
| 329 | map->m_len); |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 330 | return -EIO; |
| 331 | } |
| 332 | return 0; |
| 333 | } |
| 334 | |
Theodore Ts'o | e29136f | 2010-06-29 12:54:28 -0400 | [diff] [blame] | 335 | #define check_block_validity(inode, map) \ |
Theodore Ts'o | c398eda | 2010-07-27 11:56:40 -0400 | [diff] [blame] | 336 | __check_block_validity((inode), __func__, __LINE__, (map)) |
Theodore Ts'o | e29136f | 2010-06-29 12:54:28 -0400 | [diff] [blame] | 337 | |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 338 | /* |
Theodore Ts'o | 1f94533 | 2009-09-30 22:57:41 -0400 | [diff] [blame] | 339 | * Return the number of contiguous dirty pages in a given inode |
| 340 | * starting at page frame idx. |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 341 | */ |
| 342 | static pgoff_t ext4_num_dirty_pages(struct inode *inode, pgoff_t idx, |
| 343 | unsigned int max_pages) |
| 344 | { |
| 345 | struct address_space *mapping = inode->i_mapping; |
| 346 | pgoff_t index; |
| 347 | struct pagevec pvec; |
| 348 | pgoff_t num = 0; |
| 349 | int i, nr_pages, done = 0; |
| 350 | |
| 351 | if (max_pages == 0) |
| 352 | return 0; |
| 353 | pagevec_init(&pvec, 0); |
| 354 | while (!done) { |
| 355 | index = idx; |
| 356 | nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, |
| 357 | PAGECACHE_TAG_DIRTY, |
| 358 | (pgoff_t)PAGEVEC_SIZE); |
| 359 | if (nr_pages == 0) |
| 360 | break; |
| 361 | for (i = 0; i < nr_pages; i++) { |
| 362 | struct page *page = pvec.pages[i]; |
| 363 | struct buffer_head *bh, *head; |
| 364 | |
| 365 | lock_page(page); |
| 366 | if (unlikely(page->mapping != mapping) || |
| 367 | !PageDirty(page) || |
| 368 | PageWriteback(page) || |
| 369 | page->index != idx) { |
| 370 | done = 1; |
| 371 | unlock_page(page); |
| 372 | break; |
| 373 | } |
Theodore Ts'o | 1f94533 | 2009-09-30 22:57:41 -0400 | [diff] [blame] | 374 | if (page_has_buffers(page)) { |
| 375 | bh = head = page_buffers(page); |
| 376 | do { |
| 377 | if (!buffer_delay(bh) && |
| 378 | !buffer_unwritten(bh)) |
| 379 | done = 1; |
| 380 | bh = bh->b_this_page; |
| 381 | } while (!done && (bh != head)); |
| 382 | } |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 383 | unlock_page(page); |
| 384 | if (done) |
| 385 | break; |
| 386 | idx++; |
| 387 | num++; |
Eric Sandeen | 659c600 | 2010-10-27 21:30:03 -0400 | [diff] [blame] | 388 | if (num >= max_pages) { |
| 389 | done = 1; |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 390 | break; |
Eric Sandeen | 659c600 | 2010-10-27 21:30:03 -0400 | [diff] [blame] | 391 | } |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 392 | } |
| 393 | pagevec_release(&pvec); |
| 394 | } |
| 395 | return num; |
| 396 | } |
| 397 | |
| 398 | /* |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 399 | * The ext4_map_blocks() function tries to look up the requested blocks, |
Theodore Ts'o | 2b2d6d0 | 2008-07-26 16:15:44 -0400 | [diff] [blame] | 400 | * and returns if the blocks are already mapped. |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 401 | * |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 402 | * Otherwise it takes the write lock of the i_data_sem and allocate blocks |
| 403 | * and store the allocated blocks in the result buffer head and mark it |
| 404 | * mapped. |
| 405 | * |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 406 | * If file type is extents based, it will call ext4_ext_map_blocks(), |
| 407 | * Otherwise, call with ext4_ind_map_blocks() to handle indirect mapping |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 408 | * based files |
| 409 | * |
| 410 | * On success, it returns the number of blocks being mapped or allocate. |
| 411 | * if create==0 and the blocks are pre-allocated and uninitialized block, |
| 412 | * the result buffer head is unmapped. If the create ==1, it will make sure |
| 413 | * the buffer head is mapped. |
| 414 | * |
| 415 | * It returns 0 if plain look up failed (blocks have not been allocated), in |
| 416 | * that casem, buffer head is unmapped |
| 417 | * |
| 418 | * It returns the error in case of allocation failure. |
| 419 | */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 420 | int ext4_map_blocks(handle_t *handle, struct inode *inode, |
| 421 | struct ext4_map_blocks *map, int flags) |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 422 | { |
| 423 | int retval; |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 424 | |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 425 | map->m_flags = 0; |
| 426 | ext_debug("ext4_map_blocks(): inode %lu, flag %d, max_blocks %u," |
| 427 | "logical block %lu\n", inode->i_ino, flags, map->m_len, |
| 428 | (unsigned long) map->m_lblk); |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 429 | /* |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 430 | * Try to see if we can get the block without requesting a new |
| 431 | * file system block. |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 432 | */ |
| 433 | down_read((&EXT4_I(inode)->i_data_sem)); |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 434 | if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 435 | retval = ext4_ext_map_blocks(handle, inode, map, 0); |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 436 | } else { |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 437 | retval = ext4_ind_map_blocks(handle, inode, map, 0); |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 438 | } |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 439 | up_read((&EXT4_I(inode)->i_data_sem)); |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 440 | |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 441 | if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { |
Theodore Ts'o | e29136f | 2010-06-29 12:54:28 -0400 | [diff] [blame] | 442 | int ret = check_block_validity(inode, map); |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 443 | if (ret != 0) |
| 444 | return ret; |
| 445 | } |
| 446 | |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 447 | /* If it is only a block(s) look up */ |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 448 | if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 449 | return retval; |
| 450 | |
| 451 | /* |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 452 | * Returns if the blocks have already allocated |
| 453 | * |
| 454 | * Note that if blocks have been preallocated |
| 455 | * ext4_ext_get_block() returns th create = 0 |
| 456 | * with buffer head unmapped. |
| 457 | */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 458 | if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 459 | return retval; |
| 460 | |
| 461 | /* |
Aneesh Kumar K.V | 2a8964d | 2009-05-14 17:05:39 -0400 | [diff] [blame] | 462 | * When we call get_blocks without the create flag, the |
| 463 | * BH_Unwritten flag could have gotten set if the blocks |
| 464 | * requested were part of a uninitialized extent. We need to |
| 465 | * clear this flag now that we are committed to convert all or |
| 466 | * part of the uninitialized extent to be an initialized |
| 467 | * extent. This is because we need to avoid the combination |
| 468 | * of BH_Unwritten and BH_Mapped flags being simultaneously |
| 469 | * set on the buffer_head. |
| 470 | */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 471 | map->m_flags &= ~EXT4_MAP_UNWRITTEN; |
Aneesh Kumar K.V | 2a8964d | 2009-05-14 17:05:39 -0400 | [diff] [blame] | 472 | |
| 473 | /* |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 474 | * New blocks allocate and/or writing to uninitialized extent |
| 475 | * will possibly result in updating i_data, so we take |
| 476 | * the write lock of i_data_sem, and call get_blocks() |
| 477 | * with create == 1 flag. |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 478 | */ |
| 479 | down_write((&EXT4_I(inode)->i_data_sem)); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 480 | |
| 481 | /* |
| 482 | * if the caller is from delayed allocation writeout path |
| 483 | * we have already reserved fs blocks for allocation |
| 484 | * let the underlying get_block() function know to |
| 485 | * avoid double accounting |
| 486 | */ |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 487 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) |
Theodore Ts'o | f232109 | 2011-01-10 12:12:36 -0500 | [diff] [blame] | 488 | ext4_set_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED); |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 489 | /* |
| 490 | * We need to check for EXT4 here because migrate |
| 491 | * could have changed the inode type in between |
| 492 | */ |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 493 | if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 494 | retval = ext4_ext_map_blocks(handle, inode, map, flags); |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 495 | } else { |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 496 | retval = ext4_ind_map_blocks(handle, inode, map, flags); |
Aneesh Kumar K.V | 267e4db | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 497 | |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 498 | if (retval > 0 && map->m_flags & EXT4_MAP_NEW) { |
Aneesh Kumar K.V | 267e4db | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 499 | /* |
| 500 | * We allocated new blocks which will result in |
| 501 | * i_data's format changing. Force the migrate |
| 502 | * to fail by clearing migrate flags |
| 503 | */ |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 504 | ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE); |
Aneesh Kumar K.V | 267e4db | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 505 | } |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 506 | |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 507 | /* |
| 508 | * Update reserved blocks/metadata blocks after successful |
| 509 | * block allocation which had been deferred till now. We don't |
| 510 | * support fallocate for non extent files. So we can update |
| 511 | * reserve space here. |
| 512 | */ |
| 513 | if ((retval > 0) && |
Aneesh Kumar K.V | 1296cc8 | 2010-01-15 01:27:59 -0500 | [diff] [blame] | 514 | (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)) |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 515 | ext4_da_update_reserve_space(inode, retval, 1); |
| 516 | } |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 517 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) |
Theodore Ts'o | f232109 | 2011-01-10 12:12:36 -0500 | [diff] [blame] | 518 | ext4_clear_inode_state(inode, EXT4_STATE_DELALLOC_RESERVED); |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 519 | |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 520 | up_write((&EXT4_I(inode)->i_data_sem)); |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 521 | if (retval > 0 && map->m_flags & EXT4_MAP_MAPPED) { |
Theodore Ts'o | e29136f | 2010-06-29 12:54:28 -0400 | [diff] [blame] | 522 | int ret = check_block_validity(inode, map); |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 523 | if (ret != 0) |
| 524 | return ret; |
| 525 | } |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 526 | return retval; |
| 527 | } |
| 528 | |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 529 | /* Maximum number of blocks we map for direct IO at once. */ |
| 530 | #define DIO_MAX_BLOCKS 4096 |
| 531 | |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 532 | static int _ext4_get_block(struct inode *inode, sector_t iblock, |
| 533 | struct buffer_head *bh, int flags) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 534 | { |
Dmitriy Monakhov | 3e4fdaf | 2007-02-10 01:46:35 -0800 | [diff] [blame] | 535 | handle_t *handle = ext4_journal_current_handle(); |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 536 | struct ext4_map_blocks map; |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 537 | int ret = 0, started = 0; |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 538 | int dio_credits; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 539 | |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 540 | map.m_lblk = iblock; |
| 541 | map.m_len = bh->b_size >> inode->i_blkbits; |
| 542 | |
| 543 | if (flags && !handle) { |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 544 | /* Direct IO write... */ |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 545 | if (map.m_len > DIO_MAX_BLOCKS) |
| 546 | map.m_len = DIO_MAX_BLOCKS; |
| 547 | dio_credits = ext4_chunk_trans_blocks(inode, map.m_len); |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 548 | handle = ext4_journal_start(inode, dio_credits); |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 549 | if (IS_ERR(handle)) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 550 | ret = PTR_ERR(handle); |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 551 | return ret; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 552 | } |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 553 | started = 1; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 554 | } |
| 555 | |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 556 | ret = ext4_map_blocks(handle, inode, &map, flags); |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 557 | if (ret > 0) { |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 558 | map_bh(bh, inode->i_sb, map.m_pblk); |
| 559 | bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; |
| 560 | bh->b_size = inode->i_sb->s_blocksize * map.m_len; |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 561 | ret = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 562 | } |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 563 | if (started) |
| 564 | ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 565 | return ret; |
| 566 | } |
| 567 | |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 568 | int ext4_get_block(struct inode *inode, sector_t iblock, |
| 569 | struct buffer_head *bh, int create) |
| 570 | { |
| 571 | return _ext4_get_block(inode, iblock, bh, |
| 572 | create ? EXT4_GET_BLOCKS_CREATE : 0); |
| 573 | } |
| 574 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 575 | /* |
| 576 | * `handle' can be NULL if create is zero |
| 577 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 578 | struct buffer_head *ext4_getblk(handle_t *handle, struct inode *inode, |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 579 | ext4_lblk_t block, int create, int *errp) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 580 | { |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 581 | struct ext4_map_blocks map; |
| 582 | struct buffer_head *bh; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 583 | int fatal = 0, err; |
| 584 | |
| 585 | J_ASSERT(handle != NULL || create == 0); |
| 586 | |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 587 | map.m_lblk = block; |
| 588 | map.m_len = 1; |
| 589 | err = ext4_map_blocks(handle, inode, &map, |
| 590 | create ? EXT4_GET_BLOCKS_CREATE : 0); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 591 | |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 592 | if (err < 0) |
| 593 | *errp = err; |
| 594 | if (err <= 0) |
| 595 | return NULL; |
| 596 | *errp = 0; |
| 597 | |
| 598 | bh = sb_getblk(inode->i_sb, map.m_pblk); |
| 599 | if (!bh) { |
| 600 | *errp = -EIO; |
| 601 | return NULL; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 602 | } |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 603 | if (map.m_flags & EXT4_MAP_NEW) { |
| 604 | J_ASSERT(create != 0); |
| 605 | J_ASSERT(handle != NULL); |
| 606 | |
| 607 | /* |
| 608 | * Now that we do not always journal data, we should |
| 609 | * keep in mind whether this should always journal the |
| 610 | * new buffer as metadata. For now, regular file |
| 611 | * writes use ext4_get_block instead, so it's not a |
| 612 | * problem. |
| 613 | */ |
| 614 | lock_buffer(bh); |
| 615 | BUFFER_TRACE(bh, "call get_create_access"); |
| 616 | fatal = ext4_journal_get_create_access(handle, bh); |
| 617 | if (!fatal && !buffer_uptodate(bh)) { |
| 618 | memset(bh->b_data, 0, inode->i_sb->s_blocksize); |
| 619 | set_buffer_uptodate(bh); |
| 620 | } |
| 621 | unlock_buffer(bh); |
| 622 | BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); |
| 623 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
| 624 | if (!fatal) |
| 625 | fatal = err; |
| 626 | } else { |
| 627 | BUFFER_TRACE(bh, "not a new buffer"); |
| 628 | } |
| 629 | if (fatal) { |
| 630 | *errp = fatal; |
| 631 | brelse(bh); |
| 632 | bh = NULL; |
| 633 | } |
| 634 | return bh; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 635 | } |
| 636 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 637 | struct buffer_head *ext4_bread(handle_t *handle, struct inode *inode, |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 638 | ext4_lblk_t block, int create, int *err) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 639 | { |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 640 | struct buffer_head *bh; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 641 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 642 | bh = ext4_getblk(handle, inode, block, create, err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 643 | if (!bh) |
| 644 | return bh; |
| 645 | if (buffer_uptodate(bh)) |
| 646 | return bh; |
| 647 | ll_rw_block(READ_META, 1, &bh); |
| 648 | wait_on_buffer(bh); |
| 649 | if (buffer_uptodate(bh)) |
| 650 | return bh; |
| 651 | put_bh(bh); |
| 652 | *err = -EIO; |
| 653 | return NULL; |
| 654 | } |
| 655 | |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 656 | static int walk_page_buffers(handle_t *handle, |
| 657 | struct buffer_head *head, |
| 658 | unsigned from, |
| 659 | unsigned to, |
| 660 | int *partial, |
| 661 | int (*fn)(handle_t *handle, |
| 662 | struct buffer_head *bh)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 663 | { |
| 664 | struct buffer_head *bh; |
| 665 | unsigned block_start, block_end; |
| 666 | unsigned blocksize = head->b_size; |
| 667 | int err, ret = 0; |
| 668 | struct buffer_head *next; |
| 669 | |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 670 | for (bh = head, block_start = 0; |
| 671 | ret == 0 && (bh != head || !block_start); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 672 | block_start = block_end, bh = next) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 673 | next = bh->b_this_page; |
| 674 | block_end = block_start + blocksize; |
| 675 | if (block_end <= from || block_start >= to) { |
| 676 | if (partial && !buffer_uptodate(bh)) |
| 677 | *partial = 1; |
| 678 | continue; |
| 679 | } |
| 680 | err = (*fn)(handle, bh); |
| 681 | if (!ret) |
| 682 | ret = err; |
| 683 | } |
| 684 | return ret; |
| 685 | } |
| 686 | |
| 687 | /* |
| 688 | * To preserve ordering, it is essential that the hole instantiation and |
| 689 | * the data write be encapsulated in a single transaction. We cannot |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 690 | * close off a transaction and start a new one between the ext4_get_block() |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 691 | * and the commit_write(). So doing the jbd2_journal_start at the start of |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 692 | * prepare_write() is the right place. |
| 693 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 694 | * Also, this function can nest inside ext4_writepage() -> |
| 695 | * block_write_full_page(). In that case, we *know* that ext4_writepage() |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 696 | * has generated enough buffer credits to do the whole page. So we won't |
| 697 | * block on the journal in that case, which is good, because the caller may |
| 698 | * be PF_MEMALLOC. |
| 699 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 700 | * By accident, ext4 can be reentered when a transaction is open via |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 701 | * quota file writes. If we were to commit the transaction while thus |
| 702 | * reentered, there can be a deadlock - we would be holding a quota |
| 703 | * lock, and the commit would never complete if another thread had a |
| 704 | * transaction open and was blocking on the quota lock - a ranking |
| 705 | * violation. |
| 706 | * |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 707 | * So what we do is to rely on the fact that jbd2_journal_stop/journal_start |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 708 | * will _not_ run commit under these circumstances because handle->h_ref |
| 709 | * is elevated. We'll still have enough credits for the tiny quotafile |
| 710 | * write. |
| 711 | */ |
| 712 | static int do_journal_get_write_access(handle_t *handle, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 713 | struct buffer_head *bh) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 714 | { |
Jan Kara | 56d35a4 | 2010-08-05 14:41:42 -0400 | [diff] [blame] | 715 | int dirty = buffer_dirty(bh); |
| 716 | int ret; |
| 717 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 718 | if (!buffer_mapped(bh) || buffer_freed(bh)) |
| 719 | return 0; |
Jan Kara | 56d35a4 | 2010-08-05 14:41:42 -0400 | [diff] [blame] | 720 | /* |
Christoph Hellwig | ebdec24 | 2010-10-06 10:47:23 +0200 | [diff] [blame] | 721 | * __block_write_begin() could have dirtied some buffers. Clean |
Jan Kara | 56d35a4 | 2010-08-05 14:41:42 -0400 | [diff] [blame] | 722 | * the dirty bit as jbd2_journal_get_write_access() could complain |
| 723 | * otherwise about fs integrity issues. Setting of the dirty bit |
Christoph Hellwig | ebdec24 | 2010-10-06 10:47:23 +0200 | [diff] [blame] | 724 | * by __block_write_begin() isn't a real problem here as we clear |
Jan Kara | 56d35a4 | 2010-08-05 14:41:42 -0400 | [diff] [blame] | 725 | * the bit before releasing a page lock and thus writeback cannot |
| 726 | * ever write the buffer. |
| 727 | */ |
| 728 | if (dirty) |
| 729 | clear_buffer_dirty(bh); |
| 730 | ret = ext4_journal_get_write_access(handle, bh); |
| 731 | if (!ret && dirty) |
| 732 | ret = ext4_handle_dirty_metadata(handle, NULL, bh); |
| 733 | return ret; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 734 | } |
| 735 | |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 736 | static int ext4_get_block_write(struct inode *inode, sector_t iblock, |
| 737 | struct buffer_head *bh_result, int create); |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 738 | static int ext4_write_begin(struct file *file, struct address_space *mapping, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 739 | loff_t pos, unsigned len, unsigned flags, |
| 740 | struct page **pagep, void **fsdata) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 741 | { |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 742 | struct inode *inode = mapping->host; |
Aneesh Kumar K.V | 1938a15 | 2009-06-05 01:00:26 -0400 | [diff] [blame] | 743 | int ret, needed_blocks; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 744 | handle_t *handle; |
| 745 | int retries = 0; |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 746 | struct page *page; |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 747 | pgoff_t index; |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 748 | unsigned from, to; |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 749 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 750 | trace_ext4_write_begin(inode, pos, len, flags); |
Aneesh Kumar K.V | 1938a15 | 2009-06-05 01:00:26 -0400 | [diff] [blame] | 751 | /* |
| 752 | * Reserve one block more for addition to orphan list in case |
| 753 | * we allocate blocks but write fails for some reason |
| 754 | */ |
| 755 | needed_blocks = ext4_writepage_trans_blocks(inode) + 1; |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 756 | index = pos >> PAGE_CACHE_SHIFT; |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 757 | from = pos & (PAGE_CACHE_SIZE - 1); |
| 758 | to = from + len; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 759 | |
| 760 | retry: |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 761 | handle = ext4_journal_start(inode, needed_blocks); |
| 762 | if (IS_ERR(handle)) { |
| 763 | ret = PTR_ERR(handle); |
| 764 | goto out; |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 765 | } |
| 766 | |
Jan Kara | ebd3610 | 2009-02-22 21:09:59 -0500 | [diff] [blame] | 767 | /* We cannot recurse into the filesystem as the transaction is already |
| 768 | * started */ |
| 769 | flags |= AOP_FLAG_NOFS; |
| 770 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 771 | page = grab_cache_page_write_begin(mapping, index, flags); |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 772 | if (!page) { |
| 773 | ext4_journal_stop(handle); |
| 774 | ret = -ENOMEM; |
| 775 | goto out; |
| 776 | } |
| 777 | *pagep = page; |
| 778 | |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 779 | if (ext4_should_dioread_nolock(inode)) |
Christoph Hellwig | 6e1db88 | 2010-06-04 11:29:57 +0200 | [diff] [blame] | 780 | ret = __block_write_begin(page, pos, len, ext4_get_block_write); |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 781 | else |
Christoph Hellwig | 6e1db88 | 2010-06-04 11:29:57 +0200 | [diff] [blame] | 782 | ret = __block_write_begin(page, pos, len, ext4_get_block); |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 783 | |
| 784 | if (!ret && ext4_should_journal_data(inode)) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 785 | ret = walk_page_buffers(handle, page_buffers(page), |
| 786 | from, to, NULL, do_journal_get_write_access); |
| 787 | } |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 788 | |
| 789 | if (ret) { |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 790 | unlock_page(page); |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 791 | page_cache_release(page); |
Aneesh Kumar K.V | ae4d537 | 2008-09-13 13:10:25 -0400 | [diff] [blame] | 792 | /* |
Christoph Hellwig | 6e1db88 | 2010-06-04 11:29:57 +0200 | [diff] [blame] | 793 | * __block_write_begin may have instantiated a few blocks |
Aneesh Kumar K.V | ae4d537 | 2008-09-13 13:10:25 -0400 | [diff] [blame] | 794 | * outside i_size. Trim these off again. Don't need |
| 795 | * i_size_read because we hold i_mutex. |
Aneesh Kumar K.V | 1938a15 | 2009-06-05 01:00:26 -0400 | [diff] [blame] | 796 | * |
| 797 | * Add inode to orphan list in case we crash before |
| 798 | * truncate finishes |
Aneesh Kumar K.V | ae4d537 | 2008-09-13 13:10:25 -0400 | [diff] [blame] | 799 | */ |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 800 | if (pos + len > inode->i_size && ext4_can_truncate(inode)) |
Aneesh Kumar K.V | 1938a15 | 2009-06-05 01:00:26 -0400 | [diff] [blame] | 801 | ext4_orphan_add(handle, inode); |
| 802 | |
| 803 | ext4_journal_stop(handle); |
| 804 | if (pos + len > inode->i_size) { |
Jan Kara | b9a4207 | 2009-12-08 21:24:33 -0500 | [diff] [blame] | 805 | ext4_truncate_failed_write(inode); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 806 | /* |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 807 | * If truncate failed early the inode might |
Aneesh Kumar K.V | 1938a15 | 2009-06-05 01:00:26 -0400 | [diff] [blame] | 808 | * still be on the orphan list; we need to |
| 809 | * make sure the inode is removed from the |
| 810 | * orphan list in that case. |
| 811 | */ |
| 812 | if (inode->i_nlink) |
| 813 | ext4_orphan_del(NULL, inode); |
| 814 | } |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 815 | } |
| 816 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 817 | if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 818 | goto retry; |
Andrew Morton | 7479d2b | 2007-04-01 23:49:44 -0700 | [diff] [blame] | 819 | out: |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 820 | return ret; |
| 821 | } |
| 822 | |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 823 | /* For write_end() in data=journal mode */ |
| 824 | static int write_end_fn(handle_t *handle, struct buffer_head *bh) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 825 | { |
| 826 | if (!buffer_mapped(bh) || buffer_freed(bh)) |
| 827 | return 0; |
| 828 | set_buffer_uptodate(bh); |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 829 | return ext4_handle_dirty_metadata(handle, NULL, bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 830 | } |
| 831 | |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 832 | static int ext4_generic_write_end(struct file *file, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 833 | struct address_space *mapping, |
| 834 | loff_t pos, unsigned len, unsigned copied, |
| 835 | struct page *page, void *fsdata) |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 836 | { |
| 837 | int i_size_changed = 0; |
| 838 | struct inode *inode = mapping->host; |
| 839 | handle_t *handle = ext4_journal_current_handle(); |
| 840 | |
| 841 | copied = block_write_end(file, mapping, pos, len, copied, page, fsdata); |
| 842 | |
| 843 | /* |
| 844 | * No need to use i_size_read() here, the i_size |
| 845 | * cannot change under us because we hold i_mutex. |
| 846 | * |
| 847 | * But it's important to update i_size while still holding page lock: |
| 848 | * page writeout could otherwise come in and zero beyond i_size. |
| 849 | */ |
| 850 | if (pos + copied > inode->i_size) { |
| 851 | i_size_write(inode, pos + copied); |
| 852 | i_size_changed = 1; |
| 853 | } |
| 854 | |
| 855 | if (pos + copied > EXT4_I(inode)->i_disksize) { |
| 856 | /* We need to mark inode dirty even if |
| 857 | * new_i_size is less that inode->i_size |
| 858 | * bu greater than i_disksize.(hint delalloc) |
| 859 | */ |
| 860 | ext4_update_i_disksize(inode, (pos + copied)); |
| 861 | i_size_changed = 1; |
| 862 | } |
| 863 | unlock_page(page); |
| 864 | page_cache_release(page); |
| 865 | |
| 866 | /* |
| 867 | * Don't mark the inode dirty under page lock. First, it unnecessarily |
| 868 | * makes the holding time of page lock longer. Second, it forces lock |
| 869 | * ordering of page lock and transaction start for journaling |
| 870 | * filesystems. |
| 871 | */ |
| 872 | if (i_size_changed) |
| 873 | ext4_mark_inode_dirty(handle, inode); |
| 874 | |
| 875 | return copied; |
| 876 | } |
| 877 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 878 | /* |
| 879 | * We need to pick up the new inode size which generic_commit_write gave us |
| 880 | * `file' can be NULL - eg, when called from page_symlink(). |
| 881 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 882 | * ext4 never places buffers on inode->i_mapping->private_list. metadata |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 883 | * buffers are managed internally. |
| 884 | */ |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 885 | static int ext4_ordered_write_end(struct file *file, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 886 | struct address_space *mapping, |
| 887 | loff_t pos, unsigned len, unsigned copied, |
| 888 | struct page *page, void *fsdata) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 889 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 890 | handle_t *handle = ext4_journal_current_handle(); |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 891 | struct inode *inode = mapping->host; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 892 | int ret = 0, ret2; |
| 893 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 894 | trace_ext4_ordered_write_end(inode, pos, len, copied); |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 895 | ret = ext4_jbd2_file_inode(handle, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 896 | |
| 897 | if (ret == 0) { |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 898 | ret2 = ext4_generic_write_end(file, mapping, pos, len, copied, |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 899 | page, fsdata); |
Roel Kluin | f8a87d8 | 2008-04-29 22:01:18 -0400 | [diff] [blame] | 900 | copied = ret2; |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 901 | if (pos + len > inode->i_size && ext4_can_truncate(inode)) |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 902 | /* if we have allocated more blocks and copied |
| 903 | * less. We will have blocks allocated outside |
| 904 | * inode->i_size. So truncate them |
| 905 | */ |
| 906 | ext4_orphan_add(handle, inode); |
Roel Kluin | f8a87d8 | 2008-04-29 22:01:18 -0400 | [diff] [blame] | 907 | if (ret2 < 0) |
| 908 | ret = ret2; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 909 | } |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 910 | ret2 = ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 911 | if (!ret) |
| 912 | ret = ret2; |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 913 | |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 914 | if (pos + len > inode->i_size) { |
Jan Kara | b9a4207 | 2009-12-08 21:24:33 -0500 | [diff] [blame] | 915 | ext4_truncate_failed_write(inode); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 916 | /* |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 917 | * If truncate failed early the inode might still be |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 918 | * on the orphan list; we need to make sure the inode |
| 919 | * is removed from the orphan list in that case. |
| 920 | */ |
| 921 | if (inode->i_nlink) |
| 922 | ext4_orphan_del(NULL, inode); |
| 923 | } |
| 924 | |
| 925 | |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 926 | return ret ? ret : copied; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 927 | } |
| 928 | |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 929 | static int ext4_writeback_write_end(struct file *file, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 930 | struct address_space *mapping, |
| 931 | loff_t pos, unsigned len, unsigned copied, |
| 932 | struct page *page, void *fsdata) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 933 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 934 | handle_t *handle = ext4_journal_current_handle(); |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 935 | struct inode *inode = mapping->host; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 936 | int ret = 0, ret2; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 937 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 938 | trace_ext4_writeback_write_end(inode, pos, len, copied); |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 939 | ret2 = ext4_generic_write_end(file, mapping, pos, len, copied, |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 940 | page, fsdata); |
Roel Kluin | f8a87d8 | 2008-04-29 22:01:18 -0400 | [diff] [blame] | 941 | copied = ret2; |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 942 | if (pos + len > inode->i_size && ext4_can_truncate(inode)) |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 943 | /* if we have allocated more blocks and copied |
| 944 | * less. We will have blocks allocated outside |
| 945 | * inode->i_size. So truncate them |
| 946 | */ |
| 947 | ext4_orphan_add(handle, inode); |
| 948 | |
Roel Kluin | f8a87d8 | 2008-04-29 22:01:18 -0400 | [diff] [blame] | 949 | if (ret2 < 0) |
| 950 | ret = ret2; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 951 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 952 | ret2 = ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 953 | if (!ret) |
| 954 | ret = ret2; |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 955 | |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 956 | if (pos + len > inode->i_size) { |
Jan Kara | b9a4207 | 2009-12-08 21:24:33 -0500 | [diff] [blame] | 957 | ext4_truncate_failed_write(inode); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 958 | /* |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 959 | * If truncate failed early the inode might still be |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 960 | * on the orphan list; we need to make sure the inode |
| 961 | * is removed from the orphan list in that case. |
| 962 | */ |
| 963 | if (inode->i_nlink) |
| 964 | ext4_orphan_del(NULL, inode); |
| 965 | } |
| 966 | |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 967 | return ret ? ret : copied; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 968 | } |
| 969 | |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 970 | static int ext4_journalled_write_end(struct file *file, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 971 | struct address_space *mapping, |
| 972 | loff_t pos, unsigned len, unsigned copied, |
| 973 | struct page *page, void *fsdata) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 974 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 975 | handle_t *handle = ext4_journal_current_handle(); |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 976 | struct inode *inode = mapping->host; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 977 | int ret = 0, ret2; |
| 978 | int partial = 0; |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 979 | unsigned from, to; |
Aneesh Kumar K.V | cf17fea | 2008-09-13 13:06:18 -0400 | [diff] [blame] | 980 | loff_t new_i_size; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 981 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 982 | trace_ext4_journalled_write_end(inode, pos, len, copied); |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 983 | from = pos & (PAGE_CACHE_SIZE - 1); |
| 984 | to = from + len; |
| 985 | |
| 986 | if (copied < len) { |
| 987 | if (!PageUptodate(page)) |
| 988 | copied = 0; |
| 989 | page_zero_new_buffers(page, from+copied, to); |
| 990 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 991 | |
| 992 | ret = walk_page_buffers(handle, page_buffers(page), from, |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 993 | to, &partial, write_end_fn); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 994 | if (!partial) |
| 995 | SetPageUptodate(page); |
Aneesh Kumar K.V | cf17fea | 2008-09-13 13:06:18 -0400 | [diff] [blame] | 996 | new_i_size = pos + copied; |
| 997 | if (new_i_size > inode->i_size) |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 998 | i_size_write(inode, pos+copied); |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 999 | ext4_set_inode_state(inode, EXT4_STATE_JDATA); |
Jan Kara | 2d859db | 2011-07-26 09:07:11 -0400 | [diff] [blame] | 1000 | EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; |
Aneesh Kumar K.V | cf17fea | 2008-09-13 13:06:18 -0400 | [diff] [blame] | 1001 | if (new_i_size > EXT4_I(inode)->i_disksize) { |
| 1002 | ext4_update_i_disksize(inode, new_i_size); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1003 | ret2 = ext4_mark_inode_dirty(handle, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1004 | if (!ret) |
| 1005 | ret = ret2; |
| 1006 | } |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1007 | |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1008 | unlock_page(page); |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1009 | page_cache_release(page); |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 1010 | if (pos + len > inode->i_size && ext4_can_truncate(inode)) |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1011 | /* if we have allocated more blocks and copied |
| 1012 | * less. We will have blocks allocated outside |
| 1013 | * inode->i_size. So truncate them |
| 1014 | */ |
| 1015 | ext4_orphan_add(handle, inode); |
| 1016 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1017 | ret2 = ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1018 | if (!ret) |
| 1019 | ret = ret2; |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1020 | if (pos + len > inode->i_size) { |
Jan Kara | b9a4207 | 2009-12-08 21:24:33 -0500 | [diff] [blame] | 1021 | ext4_truncate_failed_write(inode); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1022 | /* |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 1023 | * If truncate failed early the inode might still be |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1024 | * on the orphan list; we need to make sure the inode |
| 1025 | * is removed from the orphan list in that case. |
| 1026 | */ |
| 1027 | if (inode->i_nlink) |
| 1028 | ext4_orphan_del(NULL, inode); |
| 1029 | } |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1030 | |
| 1031 | return ret ? ret : copied; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1032 | } |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1033 | |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1034 | /* |
| 1035 | * Reserve a single block located at lblock |
| 1036 | */ |
Theodore Ts'o | 01f49d0 | 2011-01-10 12:13:03 -0500 | [diff] [blame] | 1037 | static int ext4_da_reserve_space(struct inode *inode, ext4_lblk_t lblock) |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1038 | { |
Aneesh Kumar K.V | 030ba6b | 2008-09-08 23:14:50 -0400 | [diff] [blame] | 1039 | int retries = 0; |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 1040 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1041 | struct ext4_inode_info *ei = EXT4_I(inode); |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 1042 | unsigned long md_needed; |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 1043 | int ret; |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1044 | |
| 1045 | /* |
| 1046 | * recalculate the amount of metadata blocks to reserve |
| 1047 | * in order to allocate nrblocks |
| 1048 | * worse case is one extent per block |
| 1049 | */ |
Aneesh Kumar K.V | 030ba6b | 2008-09-08 23:14:50 -0400 | [diff] [blame] | 1050 | repeat: |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1051 | spin_lock(&ei->i_block_reservation_lock); |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1052 | md_needed = ext4_calc_metadata_amount(inode, lblock); |
Theodore Ts'o | f8ec9d68 | 2010-01-01 01:00:21 -0500 | [diff] [blame] | 1053 | trace_ext4_da_reserve_space(inode, md_needed); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1054 | spin_unlock(&ei->i_block_reservation_lock); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1055 | |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 1056 | /* |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 1057 | * We will charge metadata quota at writeout time; this saves |
| 1058 | * us from metadata over-estimation, though we may go over by |
| 1059 | * a small amount in the end. Here we just reserve for data. |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 1060 | */ |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 1061 | ret = dquot_reserve_block(inode, 1); |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 1062 | if (ret) |
| 1063 | return ret; |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 1064 | /* |
| 1065 | * We do still charge estimated metadata to the sb though; |
| 1066 | * we cannot afford to run out of free blocks. |
| 1067 | */ |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 1068 | if (ext4_claim_free_blocks(sbi, md_needed + 1, 0)) { |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 1069 | dquot_release_reservation_block(inode, 1); |
Aneesh Kumar K.V | 030ba6b | 2008-09-08 23:14:50 -0400 | [diff] [blame] | 1070 | if (ext4_should_retry_alloc(inode->i_sb, &retries)) { |
| 1071 | yield(); |
| 1072 | goto repeat; |
| 1073 | } |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1074 | return -ENOSPC; |
| 1075 | } |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1076 | spin_lock(&ei->i_block_reservation_lock); |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1077 | ei->i_reserved_data_blocks++; |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1078 | ei->i_reserved_meta_blocks += md_needed; |
| 1079 | spin_unlock(&ei->i_block_reservation_lock); |
Dmitry Monakhov | 39bc680 | 2009-12-10 16:36:27 +0000 | [diff] [blame] | 1080 | |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1081 | return 0; /* success */ |
| 1082 | } |
| 1083 | |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1084 | static void ext4_da_release_space(struct inode *inode, int to_free) |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1085 | { |
| 1086 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1087 | struct ext4_inode_info *ei = EXT4_I(inode); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1088 | |
Mingming Cao | cd21322 | 2008-08-19 22:16:59 -0400 | [diff] [blame] | 1089 | if (!to_free) |
| 1090 | return; /* Nothing to release, exit */ |
| 1091 | |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1092 | spin_lock(&EXT4_I(inode)->i_block_reservation_lock); |
Mingming Cao | cd21322 | 2008-08-19 22:16:59 -0400 | [diff] [blame] | 1093 | |
Li Zefan | 5a58ec8 | 2010-05-17 02:00:00 -0400 | [diff] [blame] | 1094 | trace_ext4_da_release_space(inode, to_free); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1095 | if (unlikely(to_free > ei->i_reserved_data_blocks)) { |
Mingming Cao | cd21322 | 2008-08-19 22:16:59 -0400 | [diff] [blame] | 1096 | /* |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1097 | * if there aren't enough reserved blocks, then the |
| 1098 | * counter is messed up somewhere. Since this |
| 1099 | * function is called from invalidate page, it's |
| 1100 | * harmless to return without any action. |
Mingming Cao | cd21322 | 2008-08-19 22:16:59 -0400 | [diff] [blame] | 1101 | */ |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1102 | ext4_msg(inode->i_sb, KERN_NOTICE, "ext4_da_release_space: " |
| 1103 | "ino %lu, to_free %d with only %d reserved " |
| 1104 | "data blocks\n", inode->i_ino, to_free, |
| 1105 | ei->i_reserved_data_blocks); |
| 1106 | WARN_ON(1); |
| 1107 | to_free = ei->i_reserved_data_blocks; |
| 1108 | } |
| 1109 | ei->i_reserved_data_blocks -= to_free; |
| 1110 | |
| 1111 | if (ei->i_reserved_data_blocks == 0) { |
| 1112 | /* |
| 1113 | * We can release all of the reserved metadata blocks |
| 1114 | * only when we have written all of the delayed |
| 1115 | * allocation blocks. |
| 1116 | */ |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 1117 | percpu_counter_sub(&sbi->s_dirtyblocks_counter, |
| 1118 | ei->i_reserved_meta_blocks); |
Theodore Ts'o | ee5f4d9 | 2010-01-01 02:36:15 -0500 | [diff] [blame] | 1119 | ei->i_reserved_meta_blocks = 0; |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1120 | ei->i_da_metadata_calc_len = 0; |
Mingming Cao | cd21322 | 2008-08-19 22:16:59 -0400 | [diff] [blame] | 1121 | } |
| 1122 | |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 1123 | /* update fs dirty data blocks counter */ |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1124 | percpu_counter_sub(&sbi->s_dirtyblocks_counter, to_free); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1125 | |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1126 | spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 1127 | |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 1128 | dquot_release_reservation_block(inode, to_free); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1129 | } |
| 1130 | |
| 1131 | static void ext4_da_page_release_reservation(struct page *page, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1132 | unsigned long offset) |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1133 | { |
| 1134 | int to_release = 0; |
| 1135 | struct buffer_head *head, *bh; |
| 1136 | unsigned int curr_off = 0; |
| 1137 | |
| 1138 | head = page_buffers(page); |
| 1139 | bh = head; |
| 1140 | do { |
| 1141 | unsigned int next_off = curr_off + bh->b_size; |
| 1142 | |
| 1143 | if ((offset <= curr_off) && (buffer_delay(bh))) { |
| 1144 | to_release++; |
| 1145 | clear_buffer_delay(bh); |
| 1146 | } |
| 1147 | curr_off = next_off; |
| 1148 | } while ((bh = bh->b_this_page) != head); |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1149 | ext4_da_release_space(page->mapping->host, to_release); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1150 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1151 | |
| 1152 | /* |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1153 | * Delayed allocation stuff |
| 1154 | */ |
| 1155 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1156 | /* |
| 1157 | * mpage_da_submit_io - walks through extent of pages and try to write |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 1158 | * them with writepage() call back |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1159 | * |
| 1160 | * @mpd->inode: inode |
| 1161 | * @mpd->first_page: first page of the extent |
| 1162 | * @mpd->next_page: page after the last page of the extent |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1163 | * |
| 1164 | * By the time mpage_da_submit_io() is called we expect all blocks |
| 1165 | * to be allocated. this may be wrong if allocation failed. |
| 1166 | * |
| 1167 | * As pages are already locked by write_cache_pages(), we can't use it |
| 1168 | */ |
Theodore Ts'o | 1de3e3d | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1169 | static int mpage_da_submit_io(struct mpage_da_data *mpd, |
| 1170 | struct ext4_map_blocks *map) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1171 | { |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 1172 | struct pagevec pvec; |
| 1173 | unsigned long index, end; |
| 1174 | int ret = 0, err, nr_pages, i; |
| 1175 | struct inode *inode = mpd->inode; |
| 1176 | struct address_space *mapping = inode->i_mapping; |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1177 | loff_t size = i_size_read(inode); |
Theodore Ts'o | 3ecdb3a | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1178 | unsigned int len, block_start; |
| 1179 | struct buffer_head *bh, *page_bufs = NULL; |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1180 | int journal_data = ext4_should_journal_data(inode); |
Theodore Ts'o | 1de3e3d | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1181 | sector_t pblock = 0, cur_logical = 0; |
Theodore Ts'o | bd2d021 | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1182 | struct ext4_io_submit io_submit; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1183 | |
| 1184 | BUG_ON(mpd->next_page <= mpd->first_page); |
Theodore Ts'o | bd2d021 | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1185 | memset(&io_submit, 0, sizeof(io_submit)); |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 1186 | /* |
| 1187 | * We need to start from the first_page to the next_page - 1 |
| 1188 | * to make sure we also write the mapped dirty buffer_heads. |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 1189 | * If we look at mpd->b_blocknr we would only be looking |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 1190 | * at the currently mapped buffer_heads. |
| 1191 | */ |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1192 | index = mpd->first_page; |
| 1193 | end = mpd->next_page - 1; |
| 1194 | |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 1195 | pagevec_init(&pvec, 0); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1196 | while (index <= end) { |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 1197 | nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1198 | if (nr_pages == 0) |
| 1199 | break; |
| 1200 | for (i = 0; i < nr_pages; i++) { |
Theodore Ts'o | 9749895 | 2011-02-26 14:08:01 -0500 | [diff] [blame] | 1201 | int commit_write = 0, skip_page = 0; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1202 | struct page *page = pvec.pages[i]; |
| 1203 | |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 1204 | index = page->index; |
| 1205 | if (index > end) |
| 1206 | break; |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1207 | |
| 1208 | if (index == size >> PAGE_CACHE_SHIFT) |
| 1209 | len = size & ~PAGE_CACHE_MASK; |
| 1210 | else |
| 1211 | len = PAGE_CACHE_SIZE; |
Theodore Ts'o | 1de3e3d | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1212 | if (map) { |
| 1213 | cur_logical = index << (PAGE_CACHE_SHIFT - |
| 1214 | inode->i_blkbits); |
| 1215 | pblock = map->m_pblk + (cur_logical - |
| 1216 | map->m_lblk); |
| 1217 | } |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 1218 | index++; |
| 1219 | |
| 1220 | BUG_ON(!PageLocked(page)); |
| 1221 | BUG_ON(PageWriteback(page)); |
| 1222 | |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1223 | /* |
| 1224 | * If the page does not have buffers (for |
| 1225 | * whatever reason), try to create them using |
Theodore Ts'o | a107e5a | 2010-10-27 23:44:47 -0400 | [diff] [blame] | 1226 | * __block_write_begin. If this fails, |
Theodore Ts'o | 9749895 | 2011-02-26 14:08:01 -0500 | [diff] [blame] | 1227 | * skip the page and move on. |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1228 | */ |
| 1229 | if (!page_has_buffers(page)) { |
Theodore Ts'o | a107e5a | 2010-10-27 23:44:47 -0400 | [diff] [blame] | 1230 | if (__block_write_begin(page, 0, len, |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1231 | noalloc_get_block_write)) { |
Theodore Ts'o | 9749895 | 2011-02-26 14:08:01 -0500 | [diff] [blame] | 1232 | skip_page: |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1233 | unlock_page(page); |
| 1234 | continue; |
| 1235 | } |
| 1236 | commit_write = 1; |
| 1237 | } |
Theodore Ts'o | 3ecdb3a | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1238 | |
| 1239 | bh = page_bufs = page_buffers(page); |
| 1240 | block_start = 0; |
| 1241 | do { |
Theodore Ts'o | 1de3e3d | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1242 | if (!bh) |
Theodore Ts'o | 9749895 | 2011-02-26 14:08:01 -0500 | [diff] [blame] | 1243 | goto skip_page; |
Theodore Ts'o | 1de3e3d | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1244 | if (map && (cur_logical >= map->m_lblk) && |
| 1245 | (cur_logical <= (map->m_lblk + |
| 1246 | (map->m_len - 1)))) { |
| 1247 | if (buffer_delay(bh)) { |
| 1248 | clear_buffer_delay(bh); |
| 1249 | bh->b_blocknr = pblock; |
| 1250 | } |
| 1251 | if (buffer_unwritten(bh) || |
| 1252 | buffer_mapped(bh)) |
| 1253 | BUG_ON(bh->b_blocknr != pblock); |
| 1254 | if (map->m_flags & EXT4_MAP_UNINIT) |
| 1255 | set_buffer_uninit(bh); |
| 1256 | clear_buffer_unwritten(bh); |
| 1257 | } |
| 1258 | |
Theodore Ts'o | 9749895 | 2011-02-26 14:08:01 -0500 | [diff] [blame] | 1259 | /* skip page if block allocation undone */ |
Theodore Ts'o | 1de3e3d | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1260 | if (buffer_delay(bh) || buffer_unwritten(bh)) |
Theodore Ts'o | 9749895 | 2011-02-26 14:08:01 -0500 | [diff] [blame] | 1261 | skip_page = 1; |
Theodore Ts'o | 3ecdb3a | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1262 | bh = bh->b_this_page; |
| 1263 | block_start += bh->b_size; |
Theodore Ts'o | 1de3e3d | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1264 | cur_logical++; |
| 1265 | pblock++; |
| 1266 | } while (bh != page_bufs); |
| 1267 | |
Theodore Ts'o | 9749895 | 2011-02-26 14:08:01 -0500 | [diff] [blame] | 1268 | if (skip_page) |
| 1269 | goto skip_page; |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1270 | |
| 1271 | if (commit_write) |
| 1272 | /* mark the buffer_heads as dirty & uptodate */ |
| 1273 | block_commit_write(page, 0, len); |
| 1274 | |
Theodore Ts'o | 9749895 | 2011-02-26 14:08:01 -0500 | [diff] [blame] | 1275 | clear_page_dirty_for_io(page); |
Theodore Ts'o | bd2d021 | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1276 | /* |
| 1277 | * Delalloc doesn't support data journalling, |
| 1278 | * but eventually maybe we'll lift this |
| 1279 | * restriction. |
| 1280 | */ |
| 1281 | if (unlikely(journal_data && PageChecked(page))) |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1282 | err = __ext4_journalled_writepage(page, len); |
Theodore Ts'o | 1449032 | 2010-12-14 15:27:50 -0500 | [diff] [blame] | 1283 | else if (test_opt(inode->i_sb, MBLK_IO_SUBMIT)) |
Theodore Ts'o | bd2d021 | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1284 | err = ext4_bio_write_page(&io_submit, page, |
| 1285 | len, mpd->wbc); |
Theodore Ts'o | 1449032 | 2010-12-14 15:27:50 -0500 | [diff] [blame] | 1286 | else |
| 1287 | err = block_write_full_page(page, |
| 1288 | noalloc_get_block_write, mpd->wbc); |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1289 | |
| 1290 | if (!err) |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 1291 | mpd->pages_written++; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1292 | /* |
| 1293 | * In error case, we have to continue because |
| 1294 | * remaining pages are still locked |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1295 | */ |
| 1296 | if (ret == 0) |
| 1297 | ret = err; |
| 1298 | } |
| 1299 | pagevec_release(&pvec); |
| 1300 | } |
Theodore Ts'o | bd2d021 | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1301 | ext4_io_submit(&io_submit); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1302 | return ret; |
| 1303 | } |
| 1304 | |
Curt Wohlgemuth | c7f5938 | 2011-02-26 12:27:52 -0500 | [diff] [blame] | 1305 | static void ext4_da_block_invalidatepages(struct mpage_da_data *mpd) |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 1306 | { |
| 1307 | int nr_pages, i; |
| 1308 | pgoff_t index, end; |
| 1309 | struct pagevec pvec; |
| 1310 | struct inode *inode = mpd->inode; |
| 1311 | struct address_space *mapping = inode->i_mapping; |
| 1312 | |
Curt Wohlgemuth | c7f5938 | 2011-02-26 12:27:52 -0500 | [diff] [blame] | 1313 | index = mpd->first_page; |
| 1314 | end = mpd->next_page - 1; |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 1315 | while (index <= end) { |
| 1316 | nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); |
| 1317 | if (nr_pages == 0) |
| 1318 | break; |
| 1319 | for (i = 0; i < nr_pages; i++) { |
| 1320 | struct page *page = pvec.pages[i]; |
Jan Kara | 9b1d0998 | 2010-03-03 16:19:32 -0500 | [diff] [blame] | 1321 | if (page->index > end) |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 1322 | break; |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 1323 | BUG_ON(!PageLocked(page)); |
| 1324 | BUG_ON(PageWriteback(page)); |
| 1325 | block_invalidatepage(page, 0); |
| 1326 | ClearPageUptodate(page); |
| 1327 | unlock_page(page); |
| 1328 | } |
Jan Kara | 9b1d0998 | 2010-03-03 16:19:32 -0500 | [diff] [blame] | 1329 | index = pvec.pages[nr_pages - 1]->index + 1; |
| 1330 | pagevec_release(&pvec); |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 1331 | } |
| 1332 | return; |
| 1333 | } |
| 1334 | |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 1335 | static void ext4_print_free_blocks(struct inode *inode) |
| 1336 | { |
| 1337 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Theodore Ts'o | 1693918 | 2009-09-26 17:43:59 -0400 | [diff] [blame] | 1338 | printk(KERN_CRIT "Total free blocks count %lld\n", |
| 1339 | ext4_count_free_blocks(inode->i_sb)); |
| 1340 | printk(KERN_CRIT "Free/Dirty block details\n"); |
| 1341 | printk(KERN_CRIT "free_blocks=%lld\n", |
| 1342 | (long long) percpu_counter_sum(&sbi->s_freeblocks_counter)); |
| 1343 | printk(KERN_CRIT "dirty_blocks=%lld\n", |
| 1344 | (long long) percpu_counter_sum(&sbi->s_dirtyblocks_counter)); |
| 1345 | printk(KERN_CRIT "Block reservation details\n"); |
| 1346 | printk(KERN_CRIT "i_reserved_data_blocks=%u\n", |
| 1347 | EXT4_I(inode)->i_reserved_data_blocks); |
| 1348 | printk(KERN_CRIT "i_reserved_meta_blocks=%u\n", |
| 1349 | EXT4_I(inode)->i_reserved_meta_blocks); |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 1350 | return; |
| 1351 | } |
| 1352 | |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 1353 | /* |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1354 | * mpage_da_map_and_submit - go through given space, map them |
| 1355 | * if necessary, and then submit them for I/O |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1356 | * |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 1357 | * @mpd - bh describing space |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1358 | * |
| 1359 | * The function skips space we know is already mapped to disk blocks. |
| 1360 | * |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1361 | */ |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1362 | static void mpage_da_map_and_submit(struct mpage_da_data *mpd) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1363 | { |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 1364 | int err, blks, get_blocks_flags; |
Theodore Ts'o | 1de3e3d | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1365 | struct ext4_map_blocks map, *mapp = NULL; |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 1366 | sector_t next = mpd->b_blocknr; |
| 1367 | unsigned max_blocks = mpd->b_size >> mpd->inode->i_blkbits; |
| 1368 | loff_t disksize = EXT4_I(mpd->inode)->i_disksize; |
| 1369 | handle_t *handle = NULL; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1370 | |
| 1371 | /* |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1372 | * If the blocks are mapped already, or we couldn't accumulate |
| 1373 | * any blocks, then proceed immediately to the submission stage. |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1374 | */ |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1375 | if ((mpd->b_size == 0) || |
| 1376 | ((mpd->b_state & (1 << BH_Mapped)) && |
| 1377 | !(mpd->b_state & (1 << BH_Delay)) && |
| 1378 | !(mpd->b_state & (1 << BH_Unwritten)))) |
| 1379 | goto submit_io; |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 1380 | |
| 1381 | handle = ext4_journal_current_handle(); |
| 1382 | BUG_ON(!handle); |
| 1383 | |
Aneesh Kumar K.V | 79ffab3 | 2009-05-13 15:13:42 -0400 | [diff] [blame] | 1384 | /* |
Eric Sandeen | 79e8303 | 2010-07-27 11:56:07 -0400 | [diff] [blame] | 1385 | * Call ext4_map_blocks() to allocate any delayed allocation |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 1386 | * blocks, or to convert an uninitialized extent to be |
| 1387 | * initialized (in the case where we have written into |
| 1388 | * one or more preallocated blocks). |
| 1389 | * |
| 1390 | * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE to |
| 1391 | * indicate that we are on the delayed allocation path. This |
| 1392 | * affects functions in many different parts of the allocation |
| 1393 | * call path. This flag exists primarily because we don't |
Eric Sandeen | 79e8303 | 2010-07-27 11:56:07 -0400 | [diff] [blame] | 1394 | * want to change *many* call functions, so ext4_map_blocks() |
Theodore Ts'o | f232109 | 2011-01-10 12:12:36 -0500 | [diff] [blame] | 1395 | * will set the EXT4_STATE_DELALLOC_RESERVED flag once the |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 1396 | * inode's allocation semaphore is taken. |
| 1397 | * |
| 1398 | * If the blocks in questions were delalloc blocks, set |
| 1399 | * EXT4_GET_BLOCKS_DELALLOC_RESERVE so the delalloc accounting |
| 1400 | * variables are updated after the blocks have been allocated. |
Aneesh Kumar K.V | 79ffab3 | 2009-05-13 15:13:42 -0400 | [diff] [blame] | 1401 | */ |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 1402 | map.m_lblk = next; |
| 1403 | map.m_len = max_blocks; |
Aneesh Kumar K.V | 1296cc8 | 2010-01-15 01:27:59 -0500 | [diff] [blame] | 1404 | get_blocks_flags = EXT4_GET_BLOCKS_CREATE; |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 1405 | if (ext4_should_dioread_nolock(mpd->inode)) |
| 1406 | get_blocks_flags |= EXT4_GET_BLOCKS_IO_CREATE_EXT; |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 1407 | if (mpd->b_state & (1 << BH_Delay)) |
Aneesh Kumar K.V | 1296cc8 | 2010-01-15 01:27:59 -0500 | [diff] [blame] | 1408 | get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE; |
| 1409 | |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 1410 | blks = ext4_map_blocks(handle, mpd->inode, &map, get_blocks_flags); |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 1411 | if (blks < 0) { |
Eric Sandeen | e357063 | 2010-07-27 11:56:08 -0400 | [diff] [blame] | 1412 | struct super_block *sb = mpd->inode->i_sb; |
| 1413 | |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 1414 | err = blks; |
Theodore Ts'o | ed5bde0 | 2009-02-23 10:48:07 -0500 | [diff] [blame] | 1415 | /* |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1416 | * If get block returns EAGAIN or ENOSPC and there |
Theodore Ts'o | 9749895 | 2011-02-26 14:08:01 -0500 | [diff] [blame] | 1417 | * appears to be free blocks we will just let |
| 1418 | * mpage_da_submit_io() unlock all of the pages. |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 1419 | */ |
| 1420 | if (err == -EAGAIN) |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1421 | goto submit_io; |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 1422 | |
| 1423 | if (err == -ENOSPC && |
Eric Sandeen | e357063 | 2010-07-27 11:56:08 -0400 | [diff] [blame] | 1424 | ext4_count_free_blocks(sb)) { |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 1425 | mpd->retval = err; |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1426 | goto submit_io; |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 1427 | } |
| 1428 | |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 1429 | /* |
Theodore Ts'o | ed5bde0 | 2009-02-23 10:48:07 -0500 | [diff] [blame] | 1430 | * get block failure will cause us to loop in |
| 1431 | * writepages, because a_ops->writepage won't be able |
| 1432 | * to make progress. The page will be redirtied by |
| 1433 | * writepage and writepages will again try to write |
| 1434 | * the same. |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 1435 | */ |
Eric Sandeen | e357063 | 2010-07-27 11:56:08 -0400 | [diff] [blame] | 1436 | if (!(EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)) { |
| 1437 | ext4_msg(sb, KERN_CRIT, |
| 1438 | "delayed block allocation failed for inode %lu " |
| 1439 | "at logical offset %llu with max blocks %zd " |
| 1440 | "with error %d", mpd->inode->i_ino, |
| 1441 | (unsigned long long) next, |
| 1442 | mpd->b_size >> mpd->inode->i_blkbits, err); |
| 1443 | ext4_msg(sb, KERN_CRIT, |
| 1444 | "This should not happen!! Data will be lost\n"); |
| 1445 | if (err == -ENOSPC) |
| 1446 | ext4_print_free_blocks(mpd->inode); |
Aneesh Kumar K.V | 030ba6b | 2008-09-08 23:14:50 -0400 | [diff] [blame] | 1447 | } |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 1448 | /* invalidate all the pages */ |
Curt Wohlgemuth | c7f5938 | 2011-02-26 12:27:52 -0500 | [diff] [blame] | 1449 | ext4_da_block_invalidatepages(mpd); |
Curt Wohlgemuth | e0fd9b9 | 2011-02-26 12:25:52 -0500 | [diff] [blame] | 1450 | |
| 1451 | /* Mark this page range as having been completed */ |
| 1452 | mpd->io_done = 1; |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1453 | return; |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 1454 | } |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 1455 | BUG_ON(blks == 0); |
| 1456 | |
Theodore Ts'o | 1de3e3d | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1457 | mapp = ↦ |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 1458 | if (map.m_flags & EXT4_MAP_NEW) { |
| 1459 | struct block_device *bdev = mpd->inode->i_sb->s_bdev; |
| 1460 | int i; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1461 | |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 1462 | for (i = 0; i < map.m_len; i++) |
| 1463 | unmap_underlying_metadata(bdev, map.m_pblk + i); |
| 1464 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1465 | |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 1466 | if (ext4_should_order_data(mpd->inode)) { |
| 1467 | err = ext4_jbd2_file_inode(handle, mpd->inode); |
| 1468 | if (err) |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1469 | /* This only happens if the journal is aborted */ |
| 1470 | return; |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 1471 | } |
| 1472 | |
| 1473 | /* |
Jan Kara | 03f5d8b | 2009-06-09 00:17:05 -0400 | [diff] [blame] | 1474 | * Update on-disk size along with block allocation. |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 1475 | */ |
| 1476 | disksize = ((loff_t) next + blks) << mpd->inode->i_blkbits; |
| 1477 | if (disksize > i_size_read(mpd->inode)) |
| 1478 | disksize = i_size_read(mpd->inode); |
| 1479 | if (disksize > EXT4_I(mpd->inode)->i_disksize) { |
| 1480 | ext4_update_i_disksize(mpd->inode, disksize); |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1481 | err = ext4_mark_inode_dirty(handle, mpd->inode); |
| 1482 | if (err) |
| 1483 | ext4_error(mpd->inode->i_sb, |
| 1484 | "Failed to mark inode %lu dirty", |
| 1485 | mpd->inode->i_ino); |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 1486 | } |
| 1487 | |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1488 | submit_io: |
Theodore Ts'o | 1de3e3d | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 1489 | mpage_da_submit_io(mpd, mapp); |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1490 | mpd->io_done = 1; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1491 | } |
| 1492 | |
Aneesh Kumar K.V | bf068ee | 2008-08-19 22:16:43 -0400 | [diff] [blame] | 1493 | #define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \ |
| 1494 | (1 << BH_Delay) | (1 << BH_Unwritten)) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1495 | |
| 1496 | /* |
| 1497 | * mpage_add_bh_to_extent - try to add one more block to extent of blocks |
| 1498 | * |
| 1499 | * @mpd->lbh - extent of blocks |
| 1500 | * @logical - logical number of the block in the file |
| 1501 | * @bh - bh of the block (used to access block's state) |
| 1502 | * |
| 1503 | * the function is used to collect contig. blocks in same state |
| 1504 | */ |
| 1505 | static void mpage_add_bh_to_extent(struct mpage_da_data *mpd, |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 1506 | sector_t logical, size_t b_size, |
| 1507 | unsigned long b_state) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1508 | { |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1509 | sector_t next; |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 1510 | int nrblocks = mpd->b_size >> mpd->inode->i_blkbits; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1511 | |
Eric Sandeen | c445e3e | 2010-05-16 04:00:00 -0400 | [diff] [blame] | 1512 | /* |
| 1513 | * XXX Don't go larger than mballoc is willing to allocate |
| 1514 | * This is a stopgap solution. We eventually need to fold |
| 1515 | * mpage_da_submit_io() into this function and then call |
Eric Sandeen | 79e8303 | 2010-07-27 11:56:07 -0400 | [diff] [blame] | 1516 | * ext4_map_blocks() multiple times in a loop |
Eric Sandeen | c445e3e | 2010-05-16 04:00:00 -0400 | [diff] [blame] | 1517 | */ |
| 1518 | if (nrblocks >= 8*1024*1024/mpd->inode->i_sb->s_blocksize) |
| 1519 | goto flush_it; |
| 1520 | |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 1521 | /* check if thereserved journal credits might overflow */ |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 1522 | if (!(ext4_test_inode_flag(mpd->inode, EXT4_INODE_EXTENTS))) { |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 1523 | if (nrblocks >= EXT4_MAX_TRANS_DATA) { |
| 1524 | /* |
| 1525 | * With non-extent format we are limited by the journal |
| 1526 | * credit available. Total credit needed to insert |
| 1527 | * nrblocks contiguous blocks is dependent on the |
| 1528 | * nrblocks. So limit nrblocks. |
| 1529 | */ |
| 1530 | goto flush_it; |
| 1531 | } else if ((nrblocks + (b_size >> mpd->inode->i_blkbits)) > |
| 1532 | EXT4_MAX_TRANS_DATA) { |
| 1533 | /* |
| 1534 | * Adding the new buffer_head would make it cross the |
| 1535 | * allowed limit for which we have journal credit |
| 1536 | * reserved. So limit the new bh->b_size |
| 1537 | */ |
| 1538 | b_size = (EXT4_MAX_TRANS_DATA - nrblocks) << |
| 1539 | mpd->inode->i_blkbits; |
| 1540 | /* we will do mpage_da_submit_io in the next loop */ |
| 1541 | } |
| 1542 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1543 | /* |
| 1544 | * First block in the extent |
| 1545 | */ |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 1546 | if (mpd->b_size == 0) { |
| 1547 | mpd->b_blocknr = logical; |
| 1548 | mpd->b_size = b_size; |
| 1549 | mpd->b_state = b_state & BH_FLAGS; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1550 | return; |
| 1551 | } |
| 1552 | |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 1553 | next = mpd->b_blocknr + nrblocks; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1554 | /* |
| 1555 | * Can we merge the block to our big extent? |
| 1556 | */ |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 1557 | if (logical == next && (b_state & BH_FLAGS) == mpd->b_state) { |
| 1558 | mpd->b_size += b_size; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1559 | return; |
| 1560 | } |
| 1561 | |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 1562 | flush_it: |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1563 | /* |
| 1564 | * We couldn't merge the block to our extent, so we |
| 1565 | * need to flush current extent and start new one |
| 1566 | */ |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1567 | mpage_da_map_and_submit(mpd); |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 1568 | return; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1569 | } |
| 1570 | |
Aneesh Kumar K.V | c364b22 | 2009-06-14 17:57:10 -0400 | [diff] [blame] | 1571 | static int ext4_bh_delay_or_unwritten(handle_t *handle, struct buffer_head *bh) |
Aneesh Kumar K.V | 29fa89d | 2009-05-12 16:30:27 -0400 | [diff] [blame] | 1572 | { |
Aneesh Kumar K.V | c364b22 | 2009-06-14 17:57:10 -0400 | [diff] [blame] | 1573 | return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh); |
Aneesh Kumar K.V | 29fa89d | 2009-05-12 16:30:27 -0400 | [diff] [blame] | 1574 | } |
| 1575 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1576 | /* |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 1577 | * This is a special get_blocks_t callback which is used by |
| 1578 | * ext4_da_write_begin(). It will either return mapped block or |
| 1579 | * reserve space for a single block. |
Aneesh Kumar K.V | 29fa89d | 2009-05-12 16:30:27 -0400 | [diff] [blame] | 1580 | * |
| 1581 | * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set. |
| 1582 | * We also have b_blocknr = -1 and b_bdev initialized properly |
| 1583 | * |
| 1584 | * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set. |
| 1585 | * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev |
| 1586 | * initialized properly. |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1587 | */ |
| 1588 | static int ext4_da_get_block_prep(struct inode *inode, sector_t iblock, |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 1589 | struct buffer_head *bh, int create) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1590 | { |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 1591 | struct ext4_map_blocks map; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1592 | int ret = 0; |
Aneesh Kumar K.V | 33b9817 | 2009-05-12 14:40:37 -0400 | [diff] [blame] | 1593 | sector_t invalid_block = ~((sector_t) 0xffff); |
| 1594 | |
| 1595 | if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es)) |
| 1596 | invalid_block = ~0; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1597 | |
| 1598 | BUG_ON(create == 0); |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 1599 | BUG_ON(bh->b_size != inode->i_sb->s_blocksize); |
| 1600 | |
| 1601 | map.m_lblk = iblock; |
| 1602 | map.m_len = 1; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1603 | |
| 1604 | /* |
| 1605 | * first, we need to know whether the block is allocated already |
| 1606 | * preallocated blocks are unmapped but should treated |
| 1607 | * the same as allocated blocks. |
| 1608 | */ |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 1609 | ret = ext4_map_blocks(NULL, inode, &map, 0); |
| 1610 | if (ret < 0) |
| 1611 | return ret; |
| 1612 | if (ret == 0) { |
| 1613 | if (buffer_delay(bh)) |
| 1614 | return 0; /* Not sure this could or should happen */ |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1615 | /* |
Christoph Hellwig | ebdec24 | 2010-10-06 10:47:23 +0200 | [diff] [blame] | 1616 | * XXX: __block_write_begin() unmaps passed block, is it OK? |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1617 | */ |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1618 | ret = ext4_da_reserve_space(inode, iblock); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1619 | if (ret) |
| 1620 | /* not enough space to reserve */ |
| 1621 | return ret; |
| 1622 | |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 1623 | map_bh(bh, inode->i_sb, invalid_block); |
| 1624 | set_buffer_new(bh); |
| 1625 | set_buffer_delay(bh); |
| 1626 | return 0; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1627 | } |
| 1628 | |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 1629 | map_bh(bh, inode->i_sb, map.m_pblk); |
| 1630 | bh->b_state = (bh->b_state & ~EXT4_MAP_FLAGS) | map.m_flags; |
| 1631 | |
| 1632 | if (buffer_unwritten(bh)) { |
| 1633 | /* A delayed write to unwritten bh should be marked |
| 1634 | * new and mapped. Mapped ensures that we don't do |
| 1635 | * get_block multiple times when we write to the same |
| 1636 | * offset and new ensures that we do proper zero out |
| 1637 | * for partial write. |
| 1638 | */ |
| 1639 | set_buffer_new(bh); |
Theodore Ts'o | c820563 | 2011-04-10 22:30:07 -0400 | [diff] [blame] | 1640 | set_buffer_mapped(bh); |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 1641 | } |
| 1642 | return 0; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1643 | } |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1644 | |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 1645 | /* |
| 1646 | * This function is used as a standard get_block_t calback function |
| 1647 | * when there is no desire to allocate any blocks. It is used as a |
Christoph Hellwig | ebdec24 | 2010-10-06 10:47:23 +0200 | [diff] [blame] | 1648 | * callback function for block_write_begin() and block_write_full_page(). |
Christoph Hellwig | 206f7ab | 2010-06-14 14:42:49 -0400 | [diff] [blame] | 1649 | * These functions should only try to map a single block at a time. |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 1650 | * |
| 1651 | * Since this function doesn't do block allocations even if the caller |
| 1652 | * requests it by passing in create=1, it is critically important that |
| 1653 | * any caller checks to make sure that any buffer heads are returned |
| 1654 | * by this function are either all already mapped or marked for |
Christoph Hellwig | 206f7ab | 2010-06-14 14:42:49 -0400 | [diff] [blame] | 1655 | * delayed allocation before calling block_write_full_page(). Otherwise, |
| 1656 | * b_blocknr could be left unitialized, and the page write functions will |
| 1657 | * be taken by surprise. |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 1658 | */ |
| 1659 | static int noalloc_get_block_write(struct inode *inode, sector_t iblock, |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1660 | struct buffer_head *bh_result, int create) |
| 1661 | { |
Theodore Ts'o | a2dc52b | 2009-05-12 13:51:29 -0400 | [diff] [blame] | 1662 | BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize); |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 1663 | return _ext4_get_block(inode, iblock, bh_result, 0); |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1664 | } |
| 1665 | |
Aneesh Kumar K.V | 62e086b | 2009-06-14 17:59:34 -0400 | [diff] [blame] | 1666 | static int bget_one(handle_t *handle, struct buffer_head *bh) |
| 1667 | { |
| 1668 | get_bh(bh); |
| 1669 | return 0; |
| 1670 | } |
| 1671 | |
| 1672 | static int bput_one(handle_t *handle, struct buffer_head *bh) |
| 1673 | { |
| 1674 | put_bh(bh); |
| 1675 | return 0; |
| 1676 | } |
| 1677 | |
| 1678 | static int __ext4_journalled_writepage(struct page *page, |
Aneesh Kumar K.V | 62e086b | 2009-06-14 17:59:34 -0400 | [diff] [blame] | 1679 | unsigned int len) |
| 1680 | { |
| 1681 | struct address_space *mapping = page->mapping; |
| 1682 | struct inode *inode = mapping->host; |
| 1683 | struct buffer_head *page_bufs; |
| 1684 | handle_t *handle = NULL; |
| 1685 | int ret = 0; |
| 1686 | int err; |
| 1687 | |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1688 | ClearPageChecked(page); |
Aneesh Kumar K.V | 62e086b | 2009-06-14 17:59:34 -0400 | [diff] [blame] | 1689 | page_bufs = page_buffers(page); |
| 1690 | BUG_ON(!page_bufs); |
| 1691 | walk_page_buffers(handle, page_bufs, 0, len, NULL, bget_one); |
| 1692 | /* As soon as we unlock the page, it can go away, but we have |
| 1693 | * references to buffers so we are safe */ |
| 1694 | unlock_page(page); |
| 1695 | |
| 1696 | handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode)); |
| 1697 | if (IS_ERR(handle)) { |
| 1698 | ret = PTR_ERR(handle); |
| 1699 | goto out; |
| 1700 | } |
| 1701 | |
| 1702 | ret = walk_page_buffers(handle, page_bufs, 0, len, NULL, |
| 1703 | do_journal_get_write_access); |
| 1704 | |
| 1705 | err = walk_page_buffers(handle, page_bufs, 0, len, NULL, |
| 1706 | write_end_fn); |
| 1707 | if (ret == 0) |
| 1708 | ret = err; |
Jan Kara | 2d859db | 2011-07-26 09:07:11 -0400 | [diff] [blame] | 1709 | EXT4_I(inode)->i_datasync_tid = handle->h_transaction->t_tid; |
Aneesh Kumar K.V | 62e086b | 2009-06-14 17:59:34 -0400 | [diff] [blame] | 1710 | err = ext4_journal_stop(handle); |
| 1711 | if (!ret) |
| 1712 | ret = err; |
| 1713 | |
| 1714 | walk_page_buffers(handle, page_bufs, 0, len, NULL, bput_one); |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 1715 | ext4_set_inode_state(inode, EXT4_STATE_JDATA); |
Aneesh Kumar K.V | 62e086b | 2009-06-14 17:59:34 -0400 | [diff] [blame] | 1716 | out: |
| 1717 | return ret; |
| 1718 | } |
| 1719 | |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 1720 | static int ext4_set_bh_endio(struct buffer_head *bh, struct inode *inode); |
| 1721 | static void ext4_end_io_buffer_write(struct buffer_head *bh, int uptodate); |
| 1722 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1723 | /* |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 1724 | * Note that we don't need to start a transaction unless we're journaling data |
| 1725 | * because we should have holes filled from ext4_page_mkwrite(). We even don't |
| 1726 | * need to file the inode to the transaction's list in ordered mode because if |
| 1727 | * we are writing back data added by write(), the inode is already there and if |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1728 | * we are writing back data modified via mmap(), no one guarantees in which |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 1729 | * transaction the data will hit the disk. In case we are journaling data, we |
| 1730 | * cannot start transaction directly because transaction start ranks above page |
| 1731 | * lock so we have to do some magic. |
| 1732 | * |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 1733 | * This function can get called via... |
| 1734 | * - ext4_da_writepages after taking page lock (have journal handle) |
| 1735 | * - journal_submit_inode_data_buffers (no journal handle) |
| 1736 | * - shrink_page_list via pdflush (no journal handle) |
| 1737 | * - grab_page_cache when doing write_begin (have journal handle) |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 1738 | * |
| 1739 | * We don't do any block allocation in this function. If we have page with |
| 1740 | * multiple blocks we need to write those buffer_heads that are mapped. This |
| 1741 | * is important for mmaped based write. So if we do with blocksize 1K |
| 1742 | * truncate(f, 1024); |
| 1743 | * a = mmap(f, 0, 4096); |
| 1744 | * a[0] = 'a'; |
| 1745 | * truncate(f, 4096); |
| 1746 | * we have in the page first buffer_head mapped via page_mkwrite call back |
| 1747 | * but other bufer_heads would be unmapped but dirty(dirty done via the |
| 1748 | * do_wp_page). So writepage should write the first block. If we modify |
| 1749 | * the mmap area beyond 1024 we will again get a page_fault and the |
| 1750 | * page_mkwrite callback will do the block allocation and mark the |
| 1751 | * buffer_heads mapped. |
| 1752 | * |
| 1753 | * We redirty the page if we have any buffer_heads that is either delay or |
| 1754 | * unwritten in the page. |
| 1755 | * |
| 1756 | * We can get recursively called as show below. |
| 1757 | * |
| 1758 | * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() -> |
| 1759 | * ext4_writepage() |
| 1760 | * |
| 1761 | * But since we don't do any block allocation we should not deadlock. |
| 1762 | * Page also have the dirty flag cleared so we don't get recurive page_lock. |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1763 | */ |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 1764 | static int ext4_writepage(struct page *page, |
Aneesh Kumar K.V | 62e086b | 2009-06-14 17:59:34 -0400 | [diff] [blame] | 1765 | struct writeback_control *wbc) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1766 | { |
Theodore Ts'o | a42afc5 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1767 | int ret = 0, commit_write = 0; |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1768 | loff_t size; |
Theodore Ts'o | 498e5f2 | 2008-11-05 00:14:04 -0500 | [diff] [blame] | 1769 | unsigned int len; |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 1770 | struct buffer_head *page_bufs = NULL; |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1771 | struct inode *inode = page->mapping->host; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1772 | |
Lukas Czerner | a9c667f | 2011-06-06 09:51:52 -0400 | [diff] [blame] | 1773 | trace_ext4_writepage(page); |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1774 | size = i_size_read(inode); |
| 1775 | if (page->index == size >> PAGE_CACHE_SHIFT) |
| 1776 | len = size & ~PAGE_CACHE_MASK; |
| 1777 | else |
| 1778 | len = PAGE_CACHE_SIZE; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1779 | |
Theodore Ts'o | a42afc5 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1780 | /* |
| 1781 | * If the page does not have buffers (for whatever reason), |
Theodore Ts'o | a107e5a | 2010-10-27 23:44:47 -0400 | [diff] [blame] | 1782 | * try to create them using __block_write_begin. If this |
Theodore Ts'o | a42afc5 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1783 | * fails, redirty the page and move on. |
| 1784 | */ |
Theodore Ts'o | b1142e8 | 2010-10-28 17:33:57 -0400 | [diff] [blame] | 1785 | if (!page_has_buffers(page)) { |
Theodore Ts'o | a107e5a | 2010-10-27 23:44:47 -0400 | [diff] [blame] | 1786 | if (__block_write_begin(page, 0, len, |
Theodore Ts'o | a42afc5 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1787 | noalloc_get_block_write)) { |
| 1788 | redirty_page: |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1789 | redirty_page_for_writepage(wbc, page); |
| 1790 | unlock_page(page); |
| 1791 | return 0; |
| 1792 | } |
Theodore Ts'o | a42afc5 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1793 | commit_write = 1; |
| 1794 | } |
| 1795 | page_bufs = page_buffers(page); |
| 1796 | if (walk_page_buffers(NULL, page_bufs, 0, len, NULL, |
| 1797 | ext4_bh_delay_or_unwritten)) { |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1798 | /* |
Theodore Ts'o | b1142e8 | 2010-10-28 17:33:57 -0400 | [diff] [blame] | 1799 | * We don't want to do block allocation, so redirty |
| 1800 | * the page and return. We may reach here when we do |
| 1801 | * a journal commit via journal_submit_inode_data_buffers. |
| 1802 | * We can also reach here via shrink_page_list |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1803 | */ |
Theodore Ts'o | a42afc5 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1804 | goto redirty_page; |
| 1805 | } |
| 1806 | if (commit_write) |
Aneesh Kumar K.V | ed9b3e3 | 2008-11-07 09:06:45 -0500 | [diff] [blame] | 1807 | /* now mark the buffer_heads as dirty and uptodate */ |
Aneesh Kumar K.V | b767e78 | 2009-06-04 08:06:06 -0400 | [diff] [blame] | 1808 | block_commit_write(page, 0, len); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1809 | |
Theodore Ts'o | cb20d51 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1810 | if (PageChecked(page) && ext4_should_journal_data(inode)) |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 1811 | /* |
| 1812 | * It's mmapped pagecache. Add buffers and journal it. There |
| 1813 | * doesn't seem much point in redirtying the page here. |
| 1814 | */ |
Wu Fengguang | 3f0ca30 | 2009-11-24 11:15:44 -0500 | [diff] [blame] | 1815 | return __ext4_journalled_writepage(page, len); |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 1816 | |
Theodore Ts'o | a42afc5 | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 1817 | if (buffer_uninit(page_bufs)) { |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 1818 | ext4_set_bh_endio(page_bufs, inode); |
| 1819 | ret = block_write_full_page_endio(page, noalloc_get_block_write, |
| 1820 | wbc, ext4_end_io_buffer_write); |
| 1821 | } else |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 1822 | ret = block_write_full_page(page, noalloc_get_block_write, |
| 1823 | wbc); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1824 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1825 | return ret; |
| 1826 | } |
| 1827 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1828 | /* |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 1829 | * This is called via ext4_da_writepages() to |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1830 | * calculate the total number of credits to reserve to fit |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 1831 | * a single extent allocation into a single transaction, |
| 1832 | * ext4_da_writpeages() will loop calling this before |
| 1833 | * the block allocation. |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1834 | */ |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 1835 | |
| 1836 | static int ext4_da_writepages_trans_blocks(struct inode *inode) |
| 1837 | { |
| 1838 | int max_blocks = EXT4_I(inode)->i_reserved_data_blocks; |
| 1839 | |
| 1840 | /* |
| 1841 | * With non-extent format the journal credit needed to |
| 1842 | * insert nrblocks contiguous block is dependent on |
| 1843 | * number of contiguous block. So we will limit |
| 1844 | * number of contiguous block to a sane value |
| 1845 | */ |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 1846 | if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) && |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 1847 | (max_blocks > EXT4_MAX_TRANS_DATA)) |
| 1848 | max_blocks = EXT4_MAX_TRANS_DATA; |
| 1849 | |
| 1850 | return ext4_chunk_trans_blocks(inode, max_blocks); |
| 1851 | } |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1852 | |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1853 | /* |
| 1854 | * write_cache_pages_da - walk the list of dirty pages of the given |
Theodore Ts'o | 8eb9e5c | 2011-02-26 14:07:31 -0500 | [diff] [blame] | 1855 | * address space and accumulate pages that need writing, and call |
Theodore Ts'o | 168fc02 | 2011-02-26 14:09:20 -0500 | [diff] [blame] | 1856 | * mpage_da_map_and_submit to map a single contiguous memory region |
| 1857 | * and then write them. |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1858 | */ |
| 1859 | static int write_cache_pages_da(struct address_space *mapping, |
| 1860 | struct writeback_control *wbc, |
Eric Sandeen | 72f84e6 | 2010-10-27 21:30:13 -0400 | [diff] [blame] | 1861 | struct mpage_da_data *mpd, |
| 1862 | pgoff_t *done_index) |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1863 | { |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1864 | struct buffer_head *bh, *head; |
Theodore Ts'o | 168fc02 | 2011-02-26 14:09:20 -0500 | [diff] [blame] | 1865 | struct inode *inode = mapping->host; |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1866 | struct pagevec pvec; |
| 1867 | unsigned int nr_pages; |
| 1868 | sector_t logical; |
| 1869 | pgoff_t index, end; |
| 1870 | long nr_to_write = wbc->nr_to_write; |
| 1871 | int i, tag, ret = 0; |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1872 | |
Theodore Ts'o | 168fc02 | 2011-02-26 14:09:20 -0500 | [diff] [blame] | 1873 | memset(mpd, 0, sizeof(struct mpage_da_data)); |
| 1874 | mpd->wbc = wbc; |
| 1875 | mpd->inode = inode; |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1876 | pagevec_init(&pvec, 0); |
| 1877 | index = wbc->range_start >> PAGE_CACHE_SHIFT; |
| 1878 | end = wbc->range_end >> PAGE_CACHE_SHIFT; |
| 1879 | |
Wu Fengguang | 6e6938b | 2010-06-06 10:38:15 -0600 | [diff] [blame] | 1880 | if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) |
Eric Sandeen | 5b41d92 | 2010-10-27 21:30:13 -0400 | [diff] [blame] | 1881 | tag = PAGECACHE_TAG_TOWRITE; |
| 1882 | else |
| 1883 | tag = PAGECACHE_TAG_DIRTY; |
| 1884 | |
Eric Sandeen | 72f84e6 | 2010-10-27 21:30:13 -0400 | [diff] [blame] | 1885 | *done_index = index; |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1886 | while (index <= end) { |
Eric Sandeen | 5b41d92 | 2010-10-27 21:30:13 -0400 | [diff] [blame] | 1887 | nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag, |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1888 | min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1); |
| 1889 | if (nr_pages == 0) |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1890 | return 0; |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1891 | |
| 1892 | for (i = 0; i < nr_pages; i++) { |
| 1893 | struct page *page = pvec.pages[i]; |
| 1894 | |
| 1895 | /* |
| 1896 | * At this point, the page may be truncated or |
| 1897 | * invalidated (changing page->mapping to NULL), or |
| 1898 | * even swizzled back from swapper_space to tmpfs file |
| 1899 | * mapping. However, page->index will not change |
| 1900 | * because we have a reference on the page. |
| 1901 | */ |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1902 | if (page->index > end) |
| 1903 | goto out; |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1904 | |
Eric Sandeen | 72f84e6 | 2010-10-27 21:30:13 -0400 | [diff] [blame] | 1905 | *done_index = page->index + 1; |
| 1906 | |
Theodore Ts'o | 78aaced | 2011-02-26 14:09:14 -0500 | [diff] [blame] | 1907 | /* |
| 1908 | * If we can't merge this page, and we have |
| 1909 | * accumulated an contiguous region, write it |
| 1910 | */ |
| 1911 | if ((mpd->next_page != page->index) && |
| 1912 | (mpd->next_page != mpd->first_page)) { |
| 1913 | mpage_da_map_and_submit(mpd); |
| 1914 | goto ret_extent_tail; |
| 1915 | } |
| 1916 | |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1917 | lock_page(page); |
| 1918 | |
| 1919 | /* |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1920 | * If the page is no longer dirty, or its |
| 1921 | * mapping no longer corresponds to inode we |
| 1922 | * are writing (which means it has been |
| 1923 | * truncated or invalidated), or the page is |
| 1924 | * already under writeback and we are not |
| 1925 | * doing a data integrity writeback, skip the page |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1926 | */ |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1927 | if (!PageDirty(page) || |
| 1928 | (PageWriteback(page) && |
| 1929 | (wbc->sync_mode == WB_SYNC_NONE)) || |
| 1930 | unlikely(page->mapping != mapping)) { |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1931 | unlock_page(page); |
| 1932 | continue; |
| 1933 | } |
| 1934 | |
Darrick J. Wong | 7cb1a53 | 2011-05-18 13:53:20 -0400 | [diff] [blame] | 1935 | wait_on_page_writeback(page); |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1936 | BUG_ON(PageWriteback(page)); |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1937 | |
Theodore Ts'o | 168fc02 | 2011-02-26 14:09:20 -0500 | [diff] [blame] | 1938 | if (mpd->next_page != page->index) |
Theodore Ts'o | 8eb9e5c | 2011-02-26 14:07:31 -0500 | [diff] [blame] | 1939 | mpd->first_page = page->index; |
Theodore Ts'o | 8eb9e5c | 2011-02-26 14:07:31 -0500 | [diff] [blame] | 1940 | mpd->next_page = page->index + 1; |
| 1941 | logical = (sector_t) page->index << |
| 1942 | (PAGE_CACHE_SHIFT - inode->i_blkbits); |
| 1943 | |
| 1944 | if (!page_has_buffers(page)) { |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1945 | mpage_add_bh_to_extent(mpd, logical, |
| 1946 | PAGE_CACHE_SIZE, |
Theodore Ts'o | 8eb9e5c | 2011-02-26 14:07:31 -0500 | [diff] [blame] | 1947 | (1 << BH_Dirty) | (1 << BH_Uptodate)); |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1948 | if (mpd->io_done) |
| 1949 | goto ret_extent_tail; |
Theodore Ts'o | 8eb9e5c | 2011-02-26 14:07:31 -0500 | [diff] [blame] | 1950 | } else { |
| 1951 | /* |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1952 | * Page with regular buffer heads, |
| 1953 | * just add all dirty ones |
Theodore Ts'o | 8eb9e5c | 2011-02-26 14:07:31 -0500 | [diff] [blame] | 1954 | */ |
| 1955 | head = page_buffers(page); |
| 1956 | bh = head; |
| 1957 | do { |
| 1958 | BUG_ON(buffer_locked(bh)); |
| 1959 | /* |
| 1960 | * We need to try to allocate |
| 1961 | * unmapped blocks in the same page. |
| 1962 | * Otherwise we won't make progress |
| 1963 | * with the page in ext4_writepage |
| 1964 | */ |
| 1965 | if (ext4_bh_delay_or_unwritten(NULL, bh)) { |
| 1966 | mpage_add_bh_to_extent(mpd, logical, |
| 1967 | bh->b_size, |
| 1968 | bh->b_state); |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1969 | if (mpd->io_done) |
| 1970 | goto ret_extent_tail; |
Theodore Ts'o | 8eb9e5c | 2011-02-26 14:07:31 -0500 | [diff] [blame] | 1971 | } else if (buffer_dirty(bh) && (buffer_mapped(bh))) { |
| 1972 | /* |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1973 | * mapped dirty buffer. We need |
| 1974 | * to update the b_state |
| 1975 | * because we look at b_state |
| 1976 | * in mpage_da_map_blocks. We |
| 1977 | * don't update b_size because |
| 1978 | * if we find an unmapped |
| 1979 | * buffer_head later we need to |
| 1980 | * use the b_state flag of that |
| 1981 | * buffer_head. |
Theodore Ts'o | 8eb9e5c | 2011-02-26 14:07:31 -0500 | [diff] [blame] | 1982 | */ |
| 1983 | if (mpd->b_size == 0) |
| 1984 | mpd->b_state = bh->b_state & BH_FLAGS; |
| 1985 | } |
| 1986 | logical++; |
| 1987 | } while ((bh = bh->b_this_page) != head); |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1988 | } |
| 1989 | |
| 1990 | if (nr_to_write > 0) { |
| 1991 | nr_to_write--; |
| 1992 | if (nr_to_write == 0 && |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 1993 | wbc->sync_mode == WB_SYNC_NONE) |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 1994 | /* |
| 1995 | * We stop writing back only if we are |
| 1996 | * not doing integrity sync. In case of |
| 1997 | * integrity sync we have to keep going |
| 1998 | * because someone may be concurrently |
| 1999 | * dirtying pages, and we might have |
| 2000 | * synced a lot of newly appeared dirty |
| 2001 | * pages, but have not synced all of the |
| 2002 | * old dirty pages. |
| 2003 | */ |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 2004 | goto out; |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 2005 | } |
| 2006 | } |
| 2007 | pagevec_release(&pvec); |
| 2008 | cond_resched(); |
| 2009 | } |
Theodore Ts'o | 4f01b02 | 2011-02-26 14:07:37 -0500 | [diff] [blame] | 2010 | return 0; |
| 2011 | ret_extent_tail: |
| 2012 | ret = MPAGE_DA_EXTENT_TAIL; |
Theodore Ts'o | 8eb9e5c | 2011-02-26 14:07:31 -0500 | [diff] [blame] | 2013 | out: |
| 2014 | pagevec_release(&pvec); |
| 2015 | cond_resched(); |
Theodore Ts'o | 8e48dcf | 2010-05-16 18:00:00 -0400 | [diff] [blame] | 2016 | return ret; |
| 2017 | } |
| 2018 | |
| 2019 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2020 | static int ext4_da_writepages(struct address_space *mapping, |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2021 | struct writeback_control *wbc) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2022 | { |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2023 | pgoff_t index; |
| 2024 | int range_whole = 0; |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2025 | handle_t *handle = NULL; |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2026 | struct mpage_da_data mpd; |
Aneesh Kumar K.V | 5e745b0 | 2008-08-18 18:00:57 -0400 | [diff] [blame] | 2027 | struct inode *inode = mapping->host; |
Theodore Ts'o | 498e5f2 | 2008-11-05 00:14:04 -0500 | [diff] [blame] | 2028 | int pages_written = 0; |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 2029 | unsigned int max_pages; |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2030 | int range_cyclic, cycled = 1, io_done = 0; |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 2031 | int needed_blocks, ret = 0; |
| 2032 | long desired_nr_to_write, nr_to_writebump = 0; |
Theodore Ts'o | de89de6 | 2009-08-31 17:00:59 -0400 | [diff] [blame] | 2033 | loff_t range_start = wbc->range_start; |
Aneesh Kumar K.V | 5e745b0 | 2008-08-18 18:00:57 -0400 | [diff] [blame] | 2034 | struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb); |
Eric Sandeen | 72f84e6 | 2010-10-27 21:30:13 -0400 | [diff] [blame] | 2035 | pgoff_t done_index = 0; |
Eric Sandeen | 5b41d92 | 2010-10-27 21:30:13 -0400 | [diff] [blame] | 2036 | pgoff_t end; |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2037 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 2038 | trace_ext4_da_writepages(inode, wbc); |
Theodore Ts'o | ba80b10 | 2009-01-03 20:03:21 -0500 | [diff] [blame] | 2039 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2040 | /* |
| 2041 | * No pages to write? This is mainly a kludge to avoid starting |
| 2042 | * a transaction for special inodes like journal inode on last iput() |
| 2043 | * because that could violate lock ordering on umount |
| 2044 | */ |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2045 | if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2046 | return 0; |
Theodore Ts'o | 2a21e37 | 2008-11-05 09:22:24 -0500 | [diff] [blame] | 2047 | |
| 2048 | /* |
| 2049 | * If the filesystem has aborted, it is read-only, so return |
| 2050 | * right away instead of dumping stack traces later on that |
| 2051 | * will obscure the real source of the problem. We test |
Theodore Ts'o | 4ab2f15 | 2009-06-13 10:09:36 -0400 | [diff] [blame] | 2052 | * EXT4_MF_FS_ABORTED instead of sb->s_flag's MS_RDONLY because |
Theodore Ts'o | 2a21e37 | 2008-11-05 09:22:24 -0500 | [diff] [blame] | 2053 | * the latter could be true if the filesystem is mounted |
| 2054 | * read-only, and in that case, ext4_da_writepages should |
| 2055 | * *never* be called, so if that ever happens, we would want |
| 2056 | * the stack trace. |
| 2057 | */ |
Theodore Ts'o | 4ab2f15 | 2009-06-13 10:09:36 -0400 | [diff] [blame] | 2058 | if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) |
Theodore Ts'o | 2a21e37 | 2008-11-05 09:22:24 -0500 | [diff] [blame] | 2059 | return -EROFS; |
| 2060 | |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2061 | if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) |
| 2062 | range_whole = 1; |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2063 | |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2064 | range_cyclic = wbc->range_cyclic; |
| 2065 | if (wbc->range_cyclic) { |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2066 | index = mapping->writeback_index; |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2067 | if (index) |
| 2068 | cycled = 0; |
| 2069 | wbc->range_start = index << PAGE_CACHE_SHIFT; |
| 2070 | wbc->range_end = LLONG_MAX; |
| 2071 | wbc->range_cyclic = 0; |
Eric Sandeen | 5b41d92 | 2010-10-27 21:30:13 -0400 | [diff] [blame] | 2072 | end = -1; |
| 2073 | } else { |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2074 | index = wbc->range_start >> PAGE_CACHE_SHIFT; |
Eric Sandeen | 5b41d92 | 2010-10-27 21:30:13 -0400 | [diff] [blame] | 2075 | end = wbc->range_end >> PAGE_CACHE_SHIFT; |
| 2076 | } |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2077 | |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 2078 | /* |
| 2079 | * This works around two forms of stupidity. The first is in |
| 2080 | * the writeback code, which caps the maximum number of pages |
| 2081 | * written to be 1024 pages. This is wrong on multiple |
| 2082 | * levels; different architectues have a different page size, |
| 2083 | * which changes the maximum amount of data which gets |
| 2084 | * written. Secondly, 4 megabytes is way too small. XFS |
| 2085 | * forces this value to be 16 megabytes by multiplying |
| 2086 | * nr_to_write parameter by four, and then relies on its |
| 2087 | * allocator to allocate larger extents to make them |
| 2088 | * contiguous. Unfortunately this brings us to the second |
| 2089 | * stupidity, which is that ext4's mballoc code only allocates |
| 2090 | * at most 2048 blocks. So we force contiguous writes up to |
| 2091 | * the number of dirty blocks in the inode, or |
| 2092 | * sbi->max_writeback_mb_bump whichever is smaller. |
| 2093 | */ |
| 2094 | max_pages = sbi->s_max_writeback_mb_bump << (20 - PAGE_CACHE_SHIFT); |
Eric Sandeen | b443e73 | 2010-10-27 21:30:03 -0400 | [diff] [blame] | 2095 | if (!range_cyclic && range_whole) { |
| 2096 | if (wbc->nr_to_write == LONG_MAX) |
| 2097 | desired_nr_to_write = wbc->nr_to_write; |
| 2098 | else |
| 2099 | desired_nr_to_write = wbc->nr_to_write * 8; |
| 2100 | } else |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 2101 | desired_nr_to_write = ext4_num_dirty_pages(inode, index, |
| 2102 | max_pages); |
| 2103 | if (desired_nr_to_write > max_pages) |
| 2104 | desired_nr_to_write = max_pages; |
| 2105 | |
| 2106 | if (wbc->nr_to_write < desired_nr_to_write) { |
| 2107 | nr_to_writebump = desired_nr_to_write - wbc->nr_to_write; |
| 2108 | wbc->nr_to_write = desired_nr_to_write; |
| 2109 | } |
| 2110 | |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2111 | retry: |
Wu Fengguang | 6e6938b | 2010-06-06 10:38:15 -0600 | [diff] [blame] | 2112 | if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) |
Eric Sandeen | 5b41d92 | 2010-10-27 21:30:13 -0400 | [diff] [blame] | 2113 | tag_pages_for_writeback(mapping, index, end); |
| 2114 | |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2115 | while (!ret && wbc->nr_to_write > 0) { |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2116 | |
| 2117 | /* |
| 2118 | * we insert one extent at a time. So we need |
| 2119 | * credit needed for single extent allocation. |
| 2120 | * journalled mode is currently not supported |
| 2121 | * by delalloc |
| 2122 | */ |
| 2123 | BUG_ON(ext4_should_journal_data(inode)); |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2124 | needed_blocks = ext4_da_writepages_trans_blocks(inode); |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2125 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2126 | /* start a new transaction*/ |
| 2127 | handle = ext4_journal_start(inode, needed_blocks); |
| 2128 | if (IS_ERR(handle)) { |
| 2129 | ret = PTR_ERR(handle); |
Theodore Ts'o | 1693918 | 2009-09-26 17:43:59 -0400 | [diff] [blame] | 2130 | ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: " |
Curt Wohlgemuth | fbe845d | 2010-05-16 13:00:00 -0400 | [diff] [blame] | 2131 | "%ld pages, ino %lu; err %d", __func__, |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2132 | wbc->nr_to_write, inode->i_ino, ret); |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2133 | goto out_writepages; |
| 2134 | } |
Theodore Ts'o | f63e600 | 2009-02-23 16:42:39 -0500 | [diff] [blame] | 2135 | |
| 2136 | /* |
Theodore Ts'o | 8eb9e5c | 2011-02-26 14:07:31 -0500 | [diff] [blame] | 2137 | * Now call write_cache_pages_da() to find the next |
Theodore Ts'o | f63e600 | 2009-02-23 16:42:39 -0500 | [diff] [blame] | 2138 | * contiguous region of logical blocks that need |
Theodore Ts'o | 8eb9e5c | 2011-02-26 14:07:31 -0500 | [diff] [blame] | 2139 | * blocks to be allocated by ext4 and submit them. |
Theodore Ts'o | f63e600 | 2009-02-23 16:42:39 -0500 | [diff] [blame] | 2140 | */ |
Eric Sandeen | 72f84e6 | 2010-10-27 21:30:13 -0400 | [diff] [blame] | 2141 | ret = write_cache_pages_da(mapping, wbc, &mpd, &done_index); |
Theodore Ts'o | f63e600 | 2009-02-23 16:42:39 -0500 | [diff] [blame] | 2142 | /* |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 2143 | * If we have a contiguous extent of pages and we |
Theodore Ts'o | f63e600 | 2009-02-23 16:42:39 -0500 | [diff] [blame] | 2144 | * haven't done the I/O yet, map the blocks and submit |
| 2145 | * them for I/O. |
| 2146 | */ |
| 2147 | if (!mpd.io_done && mpd.next_page != mpd.first_page) { |
Theodore Ts'o | 5a87b7a | 2010-10-27 21:30:09 -0400 | [diff] [blame] | 2148 | mpage_da_map_and_submit(&mpd); |
Theodore Ts'o | f63e600 | 2009-02-23 16:42:39 -0500 | [diff] [blame] | 2149 | ret = MPAGE_DA_EXTENT_TAIL; |
| 2150 | } |
Theodore Ts'o | b3a3ca8 | 2009-08-31 23:13:11 -0400 | [diff] [blame] | 2151 | trace_ext4_da_write_pages(inode, &mpd); |
Theodore Ts'o | f63e600 | 2009-02-23 16:42:39 -0500 | [diff] [blame] | 2152 | wbc->nr_to_write -= mpd.pages_written; |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2153 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2154 | ext4_journal_stop(handle); |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2155 | |
Eric Sandeen | 8f64b32 | 2009-02-26 00:57:35 -0500 | [diff] [blame] | 2156 | if ((mpd.retval == -ENOSPC) && sbi->s_journal) { |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2157 | /* commit the transaction which would |
| 2158 | * free blocks released in the transaction |
| 2159 | * and try again |
| 2160 | */ |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2161 | jbd2_journal_force_commit_nested(sbi->s_journal); |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2162 | ret = 0; |
| 2163 | } else if (ret == MPAGE_DA_EXTENT_TAIL) { |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2164 | /* |
| 2165 | * got one extent now try with |
| 2166 | * rest of the pages |
| 2167 | */ |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2168 | pages_written += mpd.pages_written; |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2169 | ret = 0; |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2170 | io_done = 1; |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2171 | } else if (wbc->nr_to_write) |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2172 | /* |
| 2173 | * There is no more writeout needed |
| 2174 | * or we requested for a noblocking writeout |
| 2175 | * and we found the device congested |
| 2176 | */ |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2177 | break; |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2178 | } |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2179 | if (!io_done && !cycled) { |
| 2180 | cycled = 1; |
| 2181 | index = 0; |
| 2182 | wbc->range_start = index << PAGE_CACHE_SHIFT; |
| 2183 | wbc->range_end = mapping->writeback_index - 1; |
| 2184 | goto retry; |
| 2185 | } |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2186 | |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2187 | /* Update index */ |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2188 | wbc->range_cyclic = range_cyclic; |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2189 | if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) |
| 2190 | /* |
| 2191 | * set the writeback_index so that range_cyclic |
| 2192 | * mode will write it back later |
| 2193 | */ |
Eric Sandeen | 72f84e6 | 2010-10-27 21:30:13 -0400 | [diff] [blame] | 2194 | mapping->writeback_index = done_index; |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2195 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2196 | out_writepages: |
Richard Kennedy | 2faf2e1 | 2009-12-25 15:46:07 -0500 | [diff] [blame] | 2197 | wbc->nr_to_write -= nr_to_writebump; |
Theodore Ts'o | de89de6 | 2009-08-31 17:00:59 -0400 | [diff] [blame] | 2198 | wbc->range_start = range_start; |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 2199 | trace_ext4_da_writepages_result(inode, wbc, ret, pages_written); |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2200 | return ret; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2201 | } |
| 2202 | |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 2203 | #define FALL_BACK_TO_NONDELALLOC 1 |
| 2204 | static int ext4_nonda_switch(struct super_block *sb) |
| 2205 | { |
| 2206 | s64 free_blocks, dirty_blocks; |
| 2207 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 2208 | |
| 2209 | /* |
| 2210 | * switch to non delalloc mode if we are running low |
| 2211 | * on free block. The free block accounting via percpu |
Eric Dumazet | 179f7eb | 2009-01-06 14:41:04 -0800 | [diff] [blame] | 2212 | * counters can get slightly wrong with percpu_counter_batch getting |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 2213 | * accumulated on each CPU without updating global counters |
| 2214 | * Delalloc need an accurate free block accounting. So switch |
| 2215 | * to non delalloc when we are near to error range. |
| 2216 | */ |
| 2217 | free_blocks = percpu_counter_read_positive(&sbi->s_freeblocks_counter); |
| 2218 | dirty_blocks = percpu_counter_read_positive(&sbi->s_dirtyblocks_counter); |
| 2219 | if (2 * free_blocks < 3 * dirty_blocks || |
| 2220 | free_blocks < (dirty_blocks + EXT4_FREEBLOCKS_WATERMARK)) { |
| 2221 | /* |
Eric Sandeen | c8afb44 | 2009-12-23 07:58:12 -0500 | [diff] [blame] | 2222 | * free block count is less than 150% of dirty blocks |
| 2223 | * or free blocks is less than watermark |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 2224 | */ |
| 2225 | return 1; |
| 2226 | } |
Eric Sandeen | c8afb44 | 2009-12-23 07:58:12 -0500 | [diff] [blame] | 2227 | /* |
| 2228 | * Even if we don't switch but are nearing capacity, |
| 2229 | * start pushing delalloc when 1/2 of free blocks are dirty. |
| 2230 | */ |
| 2231 | if (free_blocks < 2 * dirty_blocks) |
| 2232 | writeback_inodes_sb_if_idle(sb); |
| 2233 | |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 2234 | return 0; |
| 2235 | } |
| 2236 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2237 | static int ext4_da_write_begin(struct file *file, struct address_space *mapping, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 2238 | loff_t pos, unsigned len, unsigned flags, |
| 2239 | struct page **pagep, void **fsdata) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2240 | { |
Eric Sandeen | 72b8ab9 | 2010-05-16 11:00:00 -0400 | [diff] [blame] | 2241 | int ret, retries = 0; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2242 | struct page *page; |
| 2243 | pgoff_t index; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2244 | struct inode *inode = mapping->host; |
| 2245 | handle_t *handle; |
| 2246 | |
| 2247 | index = pos >> PAGE_CACHE_SHIFT; |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 2248 | |
| 2249 | if (ext4_nonda_switch(inode->i_sb)) { |
| 2250 | *fsdata = (void *)FALL_BACK_TO_NONDELALLOC; |
| 2251 | return ext4_write_begin(file, mapping, pos, |
| 2252 | len, flags, pagep, fsdata); |
| 2253 | } |
| 2254 | *fsdata = (void *)0; |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 2255 | trace_ext4_da_write_begin(inode, pos, len, flags); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 2256 | retry: |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2257 | /* |
| 2258 | * With delayed allocation, we don't log the i_disksize update |
| 2259 | * if there is delayed block allocation. But we still need |
| 2260 | * to journalling the i_disksize update if writes to the end |
| 2261 | * of file which has an already mapped buffer. |
| 2262 | */ |
| 2263 | handle = ext4_journal_start(inode, 1); |
| 2264 | if (IS_ERR(handle)) { |
| 2265 | ret = PTR_ERR(handle); |
| 2266 | goto out; |
| 2267 | } |
Jan Kara | ebd3610 | 2009-02-22 21:09:59 -0500 | [diff] [blame] | 2268 | /* We cannot recurse into the filesystem as the transaction is already |
| 2269 | * started */ |
| 2270 | flags |= AOP_FLAG_NOFS; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2271 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 2272 | page = grab_cache_page_write_begin(mapping, index, flags); |
Eric Sandeen | d5a0d4f | 2008-08-02 18:51:06 -0400 | [diff] [blame] | 2273 | if (!page) { |
| 2274 | ext4_journal_stop(handle); |
| 2275 | ret = -ENOMEM; |
| 2276 | goto out; |
| 2277 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2278 | *pagep = page; |
| 2279 | |
Christoph Hellwig | 6e1db88 | 2010-06-04 11:29:57 +0200 | [diff] [blame] | 2280 | ret = __block_write_begin(page, pos, len, ext4_da_get_block_prep); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2281 | if (ret < 0) { |
| 2282 | unlock_page(page); |
| 2283 | ext4_journal_stop(handle); |
| 2284 | page_cache_release(page); |
Aneesh Kumar K.V | ae4d537 | 2008-09-13 13:10:25 -0400 | [diff] [blame] | 2285 | /* |
| 2286 | * block_write_begin may have instantiated a few blocks |
| 2287 | * outside i_size. Trim these off again. Don't need |
| 2288 | * i_size_read because we hold i_mutex. |
| 2289 | */ |
| 2290 | if (pos + len > inode->i_size) |
Jan Kara | b9a4207 | 2009-12-08 21:24:33 -0500 | [diff] [blame] | 2291 | ext4_truncate_failed_write(inode); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2292 | } |
| 2293 | |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 2294 | if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) |
| 2295 | goto retry; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2296 | out: |
| 2297 | return ret; |
| 2298 | } |
| 2299 | |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2300 | /* |
| 2301 | * Check if we should update i_disksize |
| 2302 | * when write to the end of file but not require block allocation |
| 2303 | */ |
| 2304 | static int ext4_da_should_update_i_disksize(struct page *page, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 2305 | unsigned long offset) |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2306 | { |
| 2307 | struct buffer_head *bh; |
| 2308 | struct inode *inode = page->mapping->host; |
| 2309 | unsigned int idx; |
| 2310 | int i; |
| 2311 | |
| 2312 | bh = page_buffers(page); |
| 2313 | idx = offset >> inode->i_blkbits; |
| 2314 | |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 2315 | for (i = 0; i < idx; i++) |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2316 | bh = bh->b_this_page; |
| 2317 | |
Aneesh Kumar K.V | 29fa89d | 2009-05-12 16:30:27 -0400 | [diff] [blame] | 2318 | if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh)) |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2319 | return 0; |
| 2320 | return 1; |
| 2321 | } |
| 2322 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2323 | static int ext4_da_write_end(struct file *file, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 2324 | struct address_space *mapping, |
| 2325 | loff_t pos, unsigned len, unsigned copied, |
| 2326 | struct page *page, void *fsdata) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2327 | { |
| 2328 | struct inode *inode = mapping->host; |
| 2329 | int ret = 0, ret2; |
| 2330 | handle_t *handle = ext4_journal_current_handle(); |
| 2331 | loff_t new_i_size; |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2332 | unsigned long start, end; |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 2333 | int write_mode = (int)(unsigned long)fsdata; |
| 2334 | |
| 2335 | if (write_mode == FALL_BACK_TO_NONDELALLOC) { |
| 2336 | if (ext4_should_order_data(inode)) { |
| 2337 | return ext4_ordered_write_end(file, mapping, pos, |
| 2338 | len, copied, page, fsdata); |
| 2339 | } else if (ext4_should_writeback_data(inode)) { |
| 2340 | return ext4_writeback_write_end(file, mapping, pos, |
| 2341 | len, copied, page, fsdata); |
| 2342 | } else { |
| 2343 | BUG(); |
| 2344 | } |
| 2345 | } |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2346 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 2347 | trace_ext4_da_write_end(inode, pos, len, copied); |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2348 | start = pos & (PAGE_CACHE_SIZE - 1); |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 2349 | end = start + copied - 1; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2350 | |
| 2351 | /* |
| 2352 | * generic_write_end() will run mark_inode_dirty() if i_size |
| 2353 | * changes. So let's piggyback the i_disksize mark_inode_dirty |
| 2354 | * into that. |
| 2355 | */ |
| 2356 | |
| 2357 | new_i_size = pos + copied; |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2358 | if (new_i_size > EXT4_I(inode)->i_disksize) { |
| 2359 | if (ext4_da_should_update_i_disksize(page, end)) { |
| 2360 | down_write(&EXT4_I(inode)->i_data_sem); |
| 2361 | if (new_i_size > EXT4_I(inode)->i_disksize) { |
| 2362 | /* |
| 2363 | * Updating i_disksize when extending file |
| 2364 | * without needing block allocation |
| 2365 | */ |
| 2366 | if (ext4_should_order_data(inode)) |
| 2367 | ret = ext4_jbd2_file_inode(handle, |
| 2368 | inode); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2369 | |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2370 | EXT4_I(inode)->i_disksize = new_i_size; |
| 2371 | } |
| 2372 | up_write(&EXT4_I(inode)->i_data_sem); |
Aneesh Kumar K.V | cf17fea | 2008-09-13 13:06:18 -0400 | [diff] [blame] | 2373 | /* We need to mark inode dirty even if |
| 2374 | * new_i_size is less that inode->i_size |
| 2375 | * bu greater than i_disksize.(hint delalloc) |
| 2376 | */ |
| 2377 | ext4_mark_inode_dirty(handle, inode); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2378 | } |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2379 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2380 | ret2 = generic_write_end(file, mapping, pos, len, copied, |
| 2381 | page, fsdata); |
| 2382 | copied = ret2; |
| 2383 | if (ret2 < 0) |
| 2384 | ret = ret2; |
| 2385 | ret2 = ext4_journal_stop(handle); |
| 2386 | if (!ret) |
| 2387 | ret = ret2; |
| 2388 | |
| 2389 | return ret ? ret : copied; |
| 2390 | } |
| 2391 | |
| 2392 | static void ext4_da_invalidatepage(struct page *page, unsigned long offset) |
| 2393 | { |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2394 | /* |
| 2395 | * Drop reserved blocks |
| 2396 | */ |
| 2397 | BUG_ON(!PageLocked(page)); |
| 2398 | if (!page_has_buffers(page)) |
| 2399 | goto out; |
| 2400 | |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 2401 | ext4_da_page_release_reservation(page, offset); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2402 | |
| 2403 | out: |
| 2404 | ext4_invalidatepage(page, offset); |
| 2405 | |
| 2406 | return; |
| 2407 | } |
| 2408 | |
Theodore Ts'o | ccd2506 | 2009-02-26 01:04:07 -0500 | [diff] [blame] | 2409 | /* |
| 2410 | * Force all delayed allocation blocks to be allocated for a given inode. |
| 2411 | */ |
| 2412 | int ext4_alloc_da_blocks(struct inode *inode) |
| 2413 | { |
Theodore Ts'o | fb40ba0 | 2009-09-16 19:30:40 -0400 | [diff] [blame] | 2414 | trace_ext4_alloc_da_blocks(inode); |
| 2415 | |
Theodore Ts'o | ccd2506 | 2009-02-26 01:04:07 -0500 | [diff] [blame] | 2416 | if (!EXT4_I(inode)->i_reserved_data_blocks && |
| 2417 | !EXT4_I(inode)->i_reserved_meta_blocks) |
| 2418 | return 0; |
| 2419 | |
| 2420 | /* |
| 2421 | * We do something simple for now. The filemap_flush() will |
| 2422 | * also start triggering a write of the data blocks, which is |
| 2423 | * not strictly speaking necessary (and for users of |
| 2424 | * laptop_mode, not even desirable). However, to do otherwise |
| 2425 | * would require replicating code paths in: |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 2426 | * |
Theodore Ts'o | ccd2506 | 2009-02-26 01:04:07 -0500 | [diff] [blame] | 2427 | * ext4_da_writepages() -> |
| 2428 | * write_cache_pages() ---> (via passed in callback function) |
| 2429 | * __mpage_da_writepage() --> |
| 2430 | * mpage_add_bh_to_extent() |
| 2431 | * mpage_da_map_blocks() |
| 2432 | * |
| 2433 | * The problem is that write_cache_pages(), located in |
| 2434 | * mm/page-writeback.c, marks pages clean in preparation for |
| 2435 | * doing I/O, which is not desirable if we're not planning on |
| 2436 | * doing I/O at all. |
| 2437 | * |
| 2438 | * We could call write_cache_pages(), and then redirty all of |
Wu Fengguang | 380cf09 | 2010-11-11 19:23:29 +0800 | [diff] [blame] | 2439 | * the pages by calling redirty_page_for_writepage() but that |
Theodore Ts'o | ccd2506 | 2009-02-26 01:04:07 -0500 | [diff] [blame] | 2440 | * would be ugly in the extreme. So instead we would need to |
| 2441 | * replicate parts of the code in the above functions, |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2442 | * simplifying them because we wouldn't actually intend to |
Theodore Ts'o | ccd2506 | 2009-02-26 01:04:07 -0500 | [diff] [blame] | 2443 | * write out the pages, but rather only collect contiguous |
| 2444 | * logical block extents, call the multi-block allocator, and |
| 2445 | * then update the buffer heads with the block allocations. |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 2446 | * |
Theodore Ts'o | ccd2506 | 2009-02-26 01:04:07 -0500 | [diff] [blame] | 2447 | * For now, though, we'll cheat by calling filemap_flush(), |
| 2448 | * which will map the blocks, and start the I/O, but not |
| 2449 | * actually wait for the I/O to complete. |
| 2450 | */ |
| 2451 | return filemap_flush(inode->i_mapping); |
| 2452 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2453 | |
| 2454 | /* |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2455 | * bmap() is special. It gets used by applications such as lilo and by |
| 2456 | * the swapper to find the on-disk block of a specific piece of data. |
| 2457 | * |
| 2458 | * Naturally, this is dangerous if the block concerned is still in the |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2459 | * journal. If somebody makes a swapfile on an ext4 data-journaling |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2460 | * filesystem and enables swap, then they may get a nasty shock when the |
| 2461 | * data getting swapped to that swapfile suddenly gets overwritten by |
| 2462 | * the original zero's written out previously to the journal and |
| 2463 | * awaiting writeback in the kernel's buffer cache. |
| 2464 | * |
| 2465 | * So, if we see any bmap calls here on a modified, data-journaled file, |
| 2466 | * take extra steps to flush any blocks which might be in the cache. |
| 2467 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2468 | static sector_t ext4_bmap(struct address_space *mapping, sector_t block) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2469 | { |
| 2470 | struct inode *inode = mapping->host; |
| 2471 | journal_t *journal; |
| 2472 | int err; |
| 2473 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2474 | if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) && |
| 2475 | test_opt(inode->i_sb, DELALLOC)) { |
| 2476 | /* |
| 2477 | * With delalloc we want to sync the file |
| 2478 | * so that we can make sure we allocate |
| 2479 | * blocks for file |
| 2480 | */ |
| 2481 | filemap_write_and_wait(mapping); |
| 2482 | } |
| 2483 | |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 2484 | if (EXT4_JOURNAL(inode) && |
| 2485 | ext4_test_inode_state(inode, EXT4_STATE_JDATA)) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2486 | /* |
| 2487 | * This is a REALLY heavyweight approach, but the use of |
| 2488 | * bmap on dirty files is expected to be extremely rare: |
| 2489 | * only if we run lilo or swapon on a freshly made file |
| 2490 | * do we expect this to happen. |
| 2491 | * |
| 2492 | * (bmap requires CAP_SYS_RAWIO so this does not |
| 2493 | * represent an unprivileged user DOS attack --- we'd be |
| 2494 | * in trouble if mortal users could trigger this path at |
| 2495 | * will.) |
| 2496 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2497 | * NB. EXT4_STATE_JDATA is not set on files other than |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2498 | * regular files. If somebody wants to bmap a directory |
| 2499 | * or symlink and gets confused because the buffer |
| 2500 | * hasn't yet been flushed to disk, they deserve |
| 2501 | * everything they get. |
| 2502 | */ |
| 2503 | |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 2504 | ext4_clear_inode_state(inode, EXT4_STATE_JDATA); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2505 | journal = EXT4_JOURNAL(inode); |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 2506 | jbd2_journal_lock_updates(journal); |
| 2507 | err = jbd2_journal_flush(journal); |
| 2508 | jbd2_journal_unlock_updates(journal); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2509 | |
| 2510 | if (err) |
| 2511 | return 0; |
| 2512 | } |
| 2513 | |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 2514 | return generic_block_bmap(mapping, block, ext4_get_block); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2515 | } |
| 2516 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2517 | static int ext4_readpage(struct file *file, struct page *page) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2518 | { |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 2519 | trace_ext4_readpage(page); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2520 | return mpage_readpage(page, ext4_get_block); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2521 | } |
| 2522 | |
| 2523 | static int |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2524 | ext4_readpages(struct file *file, struct address_space *mapping, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2525 | struct list_head *pages, unsigned nr_pages) |
| 2526 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2527 | return mpage_readpages(mapping, pages, nr_pages, ext4_get_block); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2528 | } |
| 2529 | |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 2530 | static void ext4_invalidatepage_free_endio(struct page *page, unsigned long offset) |
| 2531 | { |
| 2532 | struct buffer_head *head, *bh; |
| 2533 | unsigned int curr_off = 0; |
| 2534 | |
| 2535 | if (!page_has_buffers(page)) |
| 2536 | return; |
| 2537 | head = bh = page_buffers(page); |
| 2538 | do { |
| 2539 | if (offset <= curr_off && test_clear_buffer_uninit(bh) |
| 2540 | && bh->b_private) { |
| 2541 | ext4_free_io_end(bh->b_private); |
| 2542 | bh->b_private = NULL; |
| 2543 | bh->b_end_io = NULL; |
| 2544 | } |
| 2545 | curr_off = curr_off + bh->b_size; |
| 2546 | bh = bh->b_this_page; |
| 2547 | } while (bh != head); |
| 2548 | } |
| 2549 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2550 | static void ext4_invalidatepage(struct page *page, unsigned long offset) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2551 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2552 | journal_t *journal = EXT4_JOURNAL(page->mapping->host); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2553 | |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 2554 | trace_ext4_invalidatepage(page, offset); |
| 2555 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2556 | /* |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 2557 | * free any io_end structure allocated for buffers to be discarded |
| 2558 | */ |
| 2559 | if (ext4_should_dioread_nolock(page->mapping->host)) |
| 2560 | ext4_invalidatepage_free_endio(page, offset); |
| 2561 | /* |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2562 | * If it's a full truncate we just forget about the pending dirtying |
| 2563 | */ |
| 2564 | if (offset == 0) |
| 2565 | ClearPageChecked(page); |
| 2566 | |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 2567 | if (journal) |
| 2568 | jbd2_journal_invalidatepage(journal, page, offset); |
| 2569 | else |
| 2570 | block_invalidatepage(page, offset); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2571 | } |
| 2572 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2573 | static int ext4_releasepage(struct page *page, gfp_t wait) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2574 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2575 | journal_t *journal = EXT4_JOURNAL(page->mapping->host); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2576 | |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 2577 | trace_ext4_releasepage(page); |
| 2578 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2579 | WARN_ON(PageChecked(page)); |
| 2580 | if (!page_has_buffers(page)) |
| 2581 | return 0; |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 2582 | if (journal) |
| 2583 | return jbd2_journal_try_to_free_buffers(journal, page, wait); |
| 2584 | else |
| 2585 | return try_to_free_buffers(page); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2586 | } |
| 2587 | |
| 2588 | /* |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 2589 | * ext4_get_block used when preparing for a DIO write or buffer write. |
| 2590 | * We allocate an uinitialized extent if blocks haven't been allocated. |
| 2591 | * The extent will be converted to initialized after the IO is complete. |
| 2592 | */ |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 2593 | static int ext4_get_block_write(struct inode *inode, sector_t iblock, |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2594 | struct buffer_head *bh_result, int create) |
| 2595 | { |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 2596 | ext4_debug("ext4_get_block_write: inode %lu, create flag %d\n", |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2597 | inode->i_ino, create); |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 2598 | return _ext4_get_block(inode, iblock, bh_result, |
| 2599 | EXT4_GET_BLOCKS_IO_CREATE_EXT); |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2600 | } |
| 2601 | |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2602 | static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset, |
Christoph Hellwig | 552ef80 | 2010-07-27 11:56:06 -0400 | [diff] [blame] | 2603 | ssize_t size, void *private, int ret, |
| 2604 | bool is_async) |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2605 | { |
Christoph Hellwig | 72c5052 | 2011-06-24 14:29:48 -0400 | [diff] [blame] | 2606 | struct inode *inode = iocb->ki_filp->f_path.dentry->d_inode; |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2607 | ext4_io_end_t *io_end = iocb->private; |
| 2608 | struct workqueue_struct *wq; |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 2609 | unsigned long flags; |
| 2610 | struct ext4_inode_info *ei; |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2611 | |
Mingming | 4b70df1 | 2009-11-03 14:44:54 -0500 | [diff] [blame] | 2612 | /* if not async direct IO or dio with 0 bytes write, just return */ |
| 2613 | if (!io_end || !size) |
Christoph Hellwig | 552ef80 | 2010-07-27 11:56:06 -0400 | [diff] [blame] | 2614 | goto out; |
Mingming | 4b70df1 | 2009-11-03 14:44:54 -0500 | [diff] [blame] | 2615 | |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2616 | ext_debug("ext4_end_io_dio(): io_end 0x%p" |
| 2617 | "for inode %lu, iocb 0x%p, offset %llu, size %llu\n", |
| 2618 | iocb->private, io_end->inode->i_ino, iocb, offset, |
| 2619 | size); |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2620 | |
| 2621 | /* if not aio dio with unwritten extents, just free io and return */ |
Theodore Ts'o | bd2d021 | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 2622 | if (!(io_end->flag & EXT4_IO_END_UNWRITTEN)) { |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2623 | ext4_free_io_end(io_end); |
| 2624 | iocb->private = NULL; |
jiayingz@google.com (Jiaying Zhang) | 5b3ff23 | 2010-07-27 11:56:06 -0400 | [diff] [blame] | 2625 | out: |
| 2626 | if (is_async) |
| 2627 | aio_complete(iocb, ret, 0); |
Christoph Hellwig | 72c5052 | 2011-06-24 14:29:48 -0400 | [diff] [blame] | 2628 | inode_dio_done(inode); |
jiayingz@google.com (Jiaying Zhang) | 5b3ff23 | 2010-07-27 11:56:06 -0400 | [diff] [blame] | 2629 | return; |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2630 | } |
| 2631 | |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2632 | io_end->offset = offset; |
| 2633 | io_end->size = size; |
jiayingz@google.com (Jiaying Zhang) | 5b3ff23 | 2010-07-27 11:56:06 -0400 | [diff] [blame] | 2634 | if (is_async) { |
| 2635 | io_end->iocb = iocb; |
| 2636 | io_end->result = ret; |
| 2637 | } |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2638 | wq = EXT4_SB(io_end->inode->i_sb)->dio_unwritten_wq; |
| 2639 | |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2640 | /* Add the io_end to per-inode completed aio dio list*/ |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 2641 | ei = EXT4_I(io_end->inode); |
| 2642 | spin_lock_irqsave(&ei->i_completed_io_lock, flags); |
| 2643 | list_add_tail(&io_end->list, &ei->i_completed_io_list); |
| 2644 | spin_unlock_irqrestore(&ei->i_completed_io_lock, flags); |
Eric Sandeen | c999af2 | 2010-10-27 21:30:07 -0400 | [diff] [blame] | 2645 | |
| 2646 | /* queue the work to convert unwritten extents to written */ |
| 2647 | queue_work(wq, &io_end->work); |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2648 | iocb->private = NULL; |
Christoph Hellwig | 72c5052 | 2011-06-24 14:29:48 -0400 | [diff] [blame] | 2649 | |
| 2650 | /* XXX: probably should move into the real I/O completion handler */ |
| 2651 | inode_dio_done(inode); |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2652 | } |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 2653 | |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 2654 | static void ext4_end_io_buffer_write(struct buffer_head *bh, int uptodate) |
| 2655 | { |
| 2656 | ext4_io_end_t *io_end = bh->b_private; |
| 2657 | struct workqueue_struct *wq; |
| 2658 | struct inode *inode; |
| 2659 | unsigned long flags; |
| 2660 | |
| 2661 | if (!test_clear_buffer_uninit(bh) || !io_end) |
| 2662 | goto out; |
| 2663 | |
| 2664 | if (!(io_end->inode->i_sb->s_flags & MS_ACTIVE)) { |
| 2665 | printk("sb umounted, discard end_io request for inode %lu\n", |
| 2666 | io_end->inode->i_ino); |
| 2667 | ext4_free_io_end(io_end); |
| 2668 | goto out; |
| 2669 | } |
| 2670 | |
Theodore Ts'o | bd2d021 | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 2671 | io_end->flag = EXT4_IO_END_UNWRITTEN; |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 2672 | inode = io_end->inode; |
| 2673 | |
| 2674 | /* Add the io_end to per-inode completed io list*/ |
| 2675 | spin_lock_irqsave(&EXT4_I(inode)->i_completed_io_lock, flags); |
| 2676 | list_add_tail(&io_end->list, &EXT4_I(inode)->i_completed_io_list); |
| 2677 | spin_unlock_irqrestore(&EXT4_I(inode)->i_completed_io_lock, flags); |
| 2678 | |
| 2679 | wq = EXT4_SB(inode->i_sb)->dio_unwritten_wq; |
| 2680 | /* queue the work to convert unwritten extents to written */ |
| 2681 | queue_work(wq, &io_end->work); |
| 2682 | out: |
| 2683 | bh->b_private = NULL; |
| 2684 | bh->b_end_io = NULL; |
| 2685 | clear_buffer_uninit(bh); |
| 2686 | end_buffer_async_write(bh, uptodate); |
| 2687 | } |
| 2688 | |
| 2689 | static int ext4_set_bh_endio(struct buffer_head *bh, struct inode *inode) |
| 2690 | { |
| 2691 | ext4_io_end_t *io_end; |
| 2692 | struct page *page = bh->b_page; |
| 2693 | loff_t offset = (sector_t)page->index << PAGE_CACHE_SHIFT; |
| 2694 | size_t size = bh->b_size; |
| 2695 | |
| 2696 | retry: |
| 2697 | io_end = ext4_init_io_end(inode, GFP_ATOMIC); |
| 2698 | if (!io_end) { |
Andrew Morton | 6db26ff | 2011-01-12 16:59:13 -0800 | [diff] [blame] | 2699 | pr_warn_ratelimited("%s: allocation fail\n", __func__); |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 2700 | schedule(); |
| 2701 | goto retry; |
| 2702 | } |
| 2703 | io_end->offset = offset; |
| 2704 | io_end->size = size; |
| 2705 | /* |
| 2706 | * We need to hold a reference to the page to make sure it |
| 2707 | * doesn't get evicted before ext4_end_io_work() has a chance |
| 2708 | * to convert the extent from written to unwritten. |
| 2709 | */ |
| 2710 | io_end->page = page; |
| 2711 | get_page(io_end->page); |
| 2712 | |
| 2713 | bh->b_private = io_end; |
| 2714 | bh->b_end_io = ext4_end_io_buffer_write; |
| 2715 | return 0; |
| 2716 | } |
| 2717 | |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2718 | /* |
| 2719 | * For ext4 extent files, ext4 will do direct-io write to holes, |
| 2720 | * preallocated extents, and those write extend the file, no need to |
| 2721 | * fall back to buffered IO. |
| 2722 | * |
Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 2723 | * For holes, we fallocate those blocks, mark them as uninitialized |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2724 | * If those blocks were preallocated, we mark sure they are splited, but |
Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 2725 | * still keep the range to write as uninitialized. |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2726 | * |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2727 | * The unwrritten extents will be converted to written when DIO is completed. |
| 2728 | * For async direct IO, since the IO may still pending when return, we |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2729 | * set up an end_io call back function, which will do the conversion |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2730 | * when async direct IO completed. |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2731 | * |
| 2732 | * If the O_DIRECT write will extend the file then add this inode to the |
| 2733 | * orphan list. So recovery will truncate it back to the original size |
| 2734 | * if the machine crashes during the write. |
| 2735 | * |
| 2736 | */ |
| 2737 | static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb, |
| 2738 | const struct iovec *iov, loff_t offset, |
| 2739 | unsigned long nr_segs) |
| 2740 | { |
| 2741 | struct file *file = iocb->ki_filp; |
| 2742 | struct inode *inode = file->f_mapping->host; |
| 2743 | ssize_t ret; |
| 2744 | size_t count = iov_length(iov, nr_segs); |
| 2745 | |
| 2746 | loff_t final_size = offset + count; |
| 2747 | if (rw == WRITE && final_size <= inode->i_size) { |
| 2748 | /* |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2749 | * We could direct write to holes and fallocate. |
| 2750 | * |
| 2751 | * Allocated blocks to fill the hole are marked as uninitialized |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2752 | * to prevent parallel buffered read to expose the stale data |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2753 | * before DIO complete the data IO. |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2754 | * |
| 2755 | * As to previously fallocated extents, ext4 get_block |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2756 | * will just simply mark the buffer mapped but still |
| 2757 | * keep the extents uninitialized. |
| 2758 | * |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2759 | * for non AIO case, we will convert those unwritten extents |
| 2760 | * to written after return back from blockdev_direct_IO. |
| 2761 | * |
| 2762 | * for async DIO, the conversion needs to be defered when |
| 2763 | * the IO is completed. The ext4 end_io callback function |
| 2764 | * will be called to take care of the conversion work. |
| 2765 | * Here for async case, we allocate an io_end structure to |
| 2766 | * hook to the iocb. |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2767 | */ |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2768 | iocb->private = NULL; |
| 2769 | EXT4_I(inode)->cur_aio_dio = NULL; |
| 2770 | if (!is_sync_kiocb(iocb)) { |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 2771 | iocb->private = ext4_init_io_end(inode, GFP_NOFS); |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2772 | if (!iocb->private) |
| 2773 | return -ENOMEM; |
| 2774 | /* |
| 2775 | * we save the io structure for current async |
Eric Sandeen | 79e8303 | 2010-07-27 11:56:07 -0400 | [diff] [blame] | 2776 | * direct IO, so that later ext4_map_blocks() |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2777 | * could flag the io structure whether there |
| 2778 | * is a unwritten extents needs to be converted |
| 2779 | * when IO is completed. |
| 2780 | */ |
| 2781 | EXT4_I(inode)->cur_aio_dio = iocb->private; |
| 2782 | } |
| 2783 | |
Christoph Hellwig | aacfc19 | 2011-06-24 14:29:47 -0400 | [diff] [blame] | 2784 | ret = __blockdev_direct_IO(rw, iocb, inode, |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2785 | inode->i_sb->s_bdev, iov, |
| 2786 | offset, nr_segs, |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 2787 | ext4_get_block_write, |
Christoph Hellwig | aacfc19 | 2011-06-24 14:29:47 -0400 | [diff] [blame] | 2788 | ext4_end_io_dio, |
| 2789 | NULL, |
| 2790 | DIO_LOCKING | DIO_SKIP_HOLES); |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2791 | if (iocb->private) |
| 2792 | EXT4_I(inode)->cur_aio_dio = NULL; |
| 2793 | /* |
| 2794 | * The io_end structure takes a reference to the inode, |
| 2795 | * that structure needs to be destroyed and the |
| 2796 | * reference to the inode need to be dropped, when IO is |
| 2797 | * complete, even with 0 byte write, or failed. |
| 2798 | * |
| 2799 | * In the successful AIO DIO case, the io_end structure will be |
| 2800 | * desctroyed and the reference to the inode will be dropped |
| 2801 | * after the end_io call back function is called. |
| 2802 | * |
| 2803 | * In the case there is 0 byte write, or error case, since |
| 2804 | * VFS direct IO won't invoke the end_io call back function, |
| 2805 | * we need to free the end_io structure here. |
| 2806 | */ |
| 2807 | if (ret != -EIOCBQUEUED && ret <= 0 && iocb->private) { |
| 2808 | ext4_free_io_end(iocb->private); |
| 2809 | iocb->private = NULL; |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 2810 | } else if (ret > 0 && ext4_test_inode_state(inode, |
| 2811 | EXT4_STATE_DIO_UNWRITTEN)) { |
Mingming | 109f556 | 2009-11-10 10:48:08 -0500 | [diff] [blame] | 2812 | int err; |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2813 | /* |
| 2814 | * for non AIO case, since the IO is already |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2815 | * completed, we could do the conversion right here |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2816 | */ |
Mingming | 109f556 | 2009-11-10 10:48:08 -0500 | [diff] [blame] | 2817 | err = ext4_convert_unwritten_extents(inode, |
| 2818 | offset, ret); |
| 2819 | if (err < 0) |
| 2820 | ret = err; |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 2821 | ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); |
Mingming | 109f556 | 2009-11-10 10:48:08 -0500 | [diff] [blame] | 2822 | } |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2823 | return ret; |
| 2824 | } |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 2825 | |
| 2826 | /* for write the the end of file case, we fall back to old way */ |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2827 | return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs); |
| 2828 | } |
| 2829 | |
| 2830 | static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb, |
| 2831 | const struct iovec *iov, loff_t offset, |
| 2832 | unsigned long nr_segs) |
| 2833 | { |
| 2834 | struct file *file = iocb->ki_filp; |
| 2835 | struct inode *inode = file->f_mapping->host; |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 2836 | ssize_t ret; |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2837 | |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 2838 | trace_ext4_direct_IO_enter(inode, offset, iov_length(iov, nr_segs), rw); |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 2839 | if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 2840 | ret = ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs); |
| 2841 | else |
| 2842 | ret = ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs); |
| 2843 | trace_ext4_direct_IO_exit(inode, offset, |
| 2844 | iov_length(iov, nr_segs), rw, ret); |
| 2845 | return ret; |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 2846 | } |
| 2847 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2848 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2849 | * Pages can be marked dirty completely asynchronously from ext4's journalling |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2850 | * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do |
| 2851 | * much here because ->set_page_dirty is called under VFS locks. The page is |
| 2852 | * not necessarily locked. |
| 2853 | * |
| 2854 | * We cannot just dirty the page and leave attached buffers clean, because the |
| 2855 | * buffers' dirty state is "definitive". We cannot just set the buffers dirty |
| 2856 | * or jbddirty because all the journalling code will explode. |
| 2857 | * |
| 2858 | * So what we do is to mark the page "pending dirty" and next time writepage |
| 2859 | * is called, propagate that into the buffers appropriately. |
| 2860 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2861 | static int ext4_journalled_set_page_dirty(struct page *page) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2862 | { |
| 2863 | SetPageChecked(page); |
| 2864 | return __set_page_dirty_nobuffers(page); |
| 2865 | } |
| 2866 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2867 | static const struct address_space_operations ext4_ordered_aops = { |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 2868 | .readpage = ext4_readpage, |
| 2869 | .readpages = ext4_readpages, |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 2870 | .writepage = ext4_writepage, |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 2871 | .write_begin = ext4_write_begin, |
| 2872 | .write_end = ext4_ordered_write_end, |
| 2873 | .bmap = ext4_bmap, |
| 2874 | .invalidatepage = ext4_invalidatepage, |
| 2875 | .releasepage = ext4_releasepage, |
| 2876 | .direct_IO = ext4_direct_IO, |
| 2877 | .migratepage = buffer_migrate_page, |
| 2878 | .is_partially_uptodate = block_is_partially_uptodate, |
Andi Kleen | aa261f5 | 2009-09-16 11:50:16 +0200 | [diff] [blame] | 2879 | .error_remove_page = generic_error_remove_page, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2880 | }; |
| 2881 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2882 | static const struct address_space_operations ext4_writeback_aops = { |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 2883 | .readpage = ext4_readpage, |
| 2884 | .readpages = ext4_readpages, |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 2885 | .writepage = ext4_writepage, |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 2886 | .write_begin = ext4_write_begin, |
| 2887 | .write_end = ext4_writeback_write_end, |
| 2888 | .bmap = ext4_bmap, |
| 2889 | .invalidatepage = ext4_invalidatepage, |
| 2890 | .releasepage = ext4_releasepage, |
| 2891 | .direct_IO = ext4_direct_IO, |
| 2892 | .migratepage = buffer_migrate_page, |
| 2893 | .is_partially_uptodate = block_is_partially_uptodate, |
Andi Kleen | aa261f5 | 2009-09-16 11:50:16 +0200 | [diff] [blame] | 2894 | .error_remove_page = generic_error_remove_page, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2895 | }; |
| 2896 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2897 | static const struct address_space_operations ext4_journalled_aops = { |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 2898 | .readpage = ext4_readpage, |
| 2899 | .readpages = ext4_readpages, |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 2900 | .writepage = ext4_writepage, |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 2901 | .write_begin = ext4_write_begin, |
| 2902 | .write_end = ext4_journalled_write_end, |
| 2903 | .set_page_dirty = ext4_journalled_set_page_dirty, |
| 2904 | .bmap = ext4_bmap, |
| 2905 | .invalidatepage = ext4_invalidatepage, |
| 2906 | .releasepage = ext4_releasepage, |
| 2907 | .is_partially_uptodate = block_is_partially_uptodate, |
Andi Kleen | aa261f5 | 2009-09-16 11:50:16 +0200 | [diff] [blame] | 2908 | .error_remove_page = generic_error_remove_page, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2909 | }; |
| 2910 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2911 | static const struct address_space_operations ext4_da_aops = { |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 2912 | .readpage = ext4_readpage, |
| 2913 | .readpages = ext4_readpages, |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 2914 | .writepage = ext4_writepage, |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 2915 | .writepages = ext4_da_writepages, |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 2916 | .write_begin = ext4_da_write_begin, |
| 2917 | .write_end = ext4_da_write_end, |
| 2918 | .bmap = ext4_bmap, |
| 2919 | .invalidatepage = ext4_da_invalidatepage, |
| 2920 | .releasepage = ext4_releasepage, |
| 2921 | .direct_IO = ext4_direct_IO, |
| 2922 | .migratepage = buffer_migrate_page, |
| 2923 | .is_partially_uptodate = block_is_partially_uptodate, |
Andi Kleen | aa261f5 | 2009-09-16 11:50:16 +0200 | [diff] [blame] | 2924 | .error_remove_page = generic_error_remove_page, |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2925 | }; |
| 2926 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2927 | void ext4_set_aops(struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2928 | { |
Aneesh Kumar K.V | cd1aac3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2929 | if (ext4_should_order_data(inode) && |
| 2930 | test_opt(inode->i_sb, DELALLOC)) |
| 2931 | inode->i_mapping->a_ops = &ext4_da_aops; |
| 2932 | else if (ext4_should_order_data(inode)) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2933 | inode->i_mapping->a_ops = &ext4_ordered_aops; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2934 | else if (ext4_should_writeback_data(inode) && |
| 2935 | test_opt(inode->i_sb, DELALLOC)) |
| 2936 | inode->i_mapping->a_ops = &ext4_da_aops; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2937 | else if (ext4_should_writeback_data(inode)) |
| 2938 | inode->i_mapping->a_ops = &ext4_writeback_aops; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2939 | else |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2940 | inode->i_mapping->a_ops = &ext4_journalled_aops; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2941 | } |
| 2942 | |
| 2943 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2944 | * ext4_block_truncate_page() zeroes out a mapping from file offset `from' |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2945 | * up to the end of the block which corresponds to `from'. |
| 2946 | * This required during truncate. We need to physically zero the tail end |
| 2947 | * of that block so it doesn't yield old data if the file is later grown. |
| 2948 | */ |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2949 | int ext4_block_truncate_page(handle_t *handle, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2950 | struct address_space *mapping, loff_t from) |
| 2951 | { |
Allison Henderson | 3084885 | 2011-05-25 07:41:32 -0400 | [diff] [blame] | 2952 | unsigned offset = from & (PAGE_CACHE_SIZE-1); |
| 2953 | unsigned length; |
| 2954 | unsigned blocksize; |
| 2955 | struct inode *inode = mapping->host; |
| 2956 | |
| 2957 | blocksize = inode->i_sb->s_blocksize; |
| 2958 | length = blocksize - (offset & (blocksize - 1)); |
| 2959 | |
| 2960 | return ext4_block_zero_page_range(handle, mapping, from, length); |
| 2961 | } |
| 2962 | |
| 2963 | /* |
| 2964 | * ext4_block_zero_page_range() zeros out a mapping of length 'length' |
| 2965 | * starting from file offset 'from'. The range to be zero'd must |
| 2966 | * be contained with in one block. If the specified range exceeds |
| 2967 | * the end of the block it will be shortened to end of the block |
| 2968 | * that cooresponds to 'from' |
| 2969 | */ |
| 2970 | int ext4_block_zero_page_range(handle_t *handle, |
| 2971 | struct address_space *mapping, loff_t from, loff_t length) |
| 2972 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 2973 | ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2974 | unsigned offset = from & (PAGE_CACHE_SIZE-1); |
Allison Henderson | 3084885 | 2011-05-25 07:41:32 -0400 | [diff] [blame] | 2975 | unsigned blocksize, max, pos; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2976 | ext4_lblk_t iblock; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2977 | struct inode *inode = mapping->host; |
| 2978 | struct buffer_head *bh; |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2979 | struct page *page; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2980 | int err = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2981 | |
Theodore Ts'o | f4a0101 | 2009-07-05 22:08:16 -0400 | [diff] [blame] | 2982 | page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT, |
| 2983 | mapping_gfp_mask(mapping) & ~__GFP_FS); |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2984 | if (!page) |
| 2985 | return -EINVAL; |
| 2986 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2987 | blocksize = inode->i_sb->s_blocksize; |
Allison Henderson | 3084885 | 2011-05-25 07:41:32 -0400 | [diff] [blame] | 2988 | max = blocksize - (offset & (blocksize - 1)); |
| 2989 | |
| 2990 | /* |
| 2991 | * correct length if it does not fall between |
| 2992 | * 'from' and the end of the block |
| 2993 | */ |
| 2994 | if (length > max || length < 0) |
| 2995 | length = max; |
| 2996 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2997 | iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits); |
| 2998 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 2999 | if (!page_has_buffers(page)) |
| 3000 | create_empty_buffers(page, blocksize, 0); |
| 3001 | |
| 3002 | /* Find the buffer that contains "offset" */ |
| 3003 | bh = page_buffers(page); |
| 3004 | pos = blocksize; |
| 3005 | while (offset >= pos) { |
| 3006 | bh = bh->b_this_page; |
| 3007 | iblock++; |
| 3008 | pos += blocksize; |
| 3009 | } |
| 3010 | |
| 3011 | err = 0; |
| 3012 | if (buffer_freed(bh)) { |
| 3013 | BUFFER_TRACE(bh, "freed: skip"); |
| 3014 | goto unlock; |
| 3015 | } |
| 3016 | |
| 3017 | if (!buffer_mapped(bh)) { |
| 3018 | BUFFER_TRACE(bh, "unmapped"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3019 | ext4_get_block(inode, iblock, bh, 0); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3020 | /* unmapped? It's a hole - nothing to do */ |
| 3021 | if (!buffer_mapped(bh)) { |
| 3022 | BUFFER_TRACE(bh, "still unmapped"); |
| 3023 | goto unlock; |
| 3024 | } |
| 3025 | } |
| 3026 | |
| 3027 | /* Ok, it's mapped. Make sure it's up-to-date */ |
| 3028 | if (PageUptodate(page)) |
| 3029 | set_buffer_uptodate(bh); |
| 3030 | |
| 3031 | if (!buffer_uptodate(bh)) { |
| 3032 | err = -EIO; |
| 3033 | ll_rw_block(READ, 1, &bh); |
| 3034 | wait_on_buffer(bh); |
| 3035 | /* Uhhuh. Read error. Complain and punt. */ |
| 3036 | if (!buffer_uptodate(bh)) |
| 3037 | goto unlock; |
| 3038 | } |
| 3039 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3040 | if (ext4_should_journal_data(inode)) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3041 | BUFFER_TRACE(bh, "get write access"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3042 | err = ext4_journal_get_write_access(handle, bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3043 | if (err) |
| 3044 | goto unlock; |
| 3045 | } |
| 3046 | |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 3047 | zero_user(page, offset, length); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3048 | |
| 3049 | BUFFER_TRACE(bh, "zeroed end of block"); |
| 3050 | |
| 3051 | err = 0; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3052 | if (ext4_should_journal_data(inode)) { |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 3053 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3054 | } else { |
Theodore Ts'o | 8aefcd5 | 2011-01-10 12:29:43 -0500 | [diff] [blame] | 3055 | if (ext4_should_order_data(inode) && EXT4_I(inode)->jinode) |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3056 | err = ext4_jbd2_file_inode(handle, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3057 | mark_buffer_dirty(bh); |
| 3058 | } |
| 3059 | |
| 3060 | unlock: |
| 3061 | unlock_page(page); |
| 3062 | page_cache_release(page); |
| 3063 | return err; |
| 3064 | } |
| 3065 | |
Duane Griffin | 91ef4ca | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3066 | int ext4_can_truncate(struct inode *inode) |
| 3067 | { |
Duane Griffin | 91ef4ca | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3068 | if (S_ISREG(inode->i_mode)) |
| 3069 | return 1; |
| 3070 | if (S_ISDIR(inode->i_mode)) |
| 3071 | return 1; |
| 3072 | if (S_ISLNK(inode->i_mode)) |
| 3073 | return !ext4_inode_is_fast_symlink(inode); |
| 3074 | return 0; |
| 3075 | } |
| 3076 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3077 | /* |
Allison Henderson | a4bb6b6 | 2011-05-25 07:41:50 -0400 | [diff] [blame] | 3078 | * ext4_punch_hole: punches a hole in a file by releaseing the blocks |
| 3079 | * associated with the given offset and length |
| 3080 | * |
| 3081 | * @inode: File inode |
| 3082 | * @offset: The offset where the hole will begin |
| 3083 | * @len: The length of the hole |
| 3084 | * |
| 3085 | * Returns: 0 on sucess or negative on failure |
| 3086 | */ |
| 3087 | |
| 3088 | int ext4_punch_hole(struct file *file, loff_t offset, loff_t length) |
| 3089 | { |
| 3090 | struct inode *inode = file->f_path.dentry->d_inode; |
| 3091 | if (!S_ISREG(inode->i_mode)) |
| 3092 | return -ENOTSUPP; |
| 3093 | |
| 3094 | if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { |
| 3095 | /* TODO: Add support for non extent hole punching */ |
| 3096 | return -ENOTSUPP; |
| 3097 | } |
| 3098 | |
| 3099 | return ext4_ext_punch_hole(file, offset, length); |
| 3100 | } |
| 3101 | |
| 3102 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3103 | * ext4_truncate() |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3104 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3105 | * We block out ext4_get_block() block instantiations across the entire |
| 3106 | * transaction, and VFS/VM ensures that ext4_truncate() cannot run |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3107 | * simultaneously on behalf of the same inode. |
| 3108 | * |
| 3109 | * As we work through the truncate and commmit bits of it to the journal there |
| 3110 | * is one core, guiding principle: the file's tree must always be consistent on |
| 3111 | * disk. We must be able to restart the truncate after a crash. |
| 3112 | * |
| 3113 | * The file's tree may be transiently inconsistent in memory (although it |
| 3114 | * probably isn't), but whenever we close off and commit a journal transaction, |
| 3115 | * the contents of (the filesystem + the journal) must be consistent and |
| 3116 | * restartable. It's pretty simple, really: bottom up, right to left (although |
| 3117 | * left-to-right works OK too). |
| 3118 | * |
| 3119 | * Note that at recovery time, journal replay occurs *before* the restart of |
| 3120 | * truncate against the orphan inode list. |
| 3121 | * |
| 3122 | * The committed inode has the new, desired i_size (which is the same as |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3123 | * i_disksize in this case). After a crash, ext4_orphan_cleanup() will see |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3124 | * that this inode's truncate did not complete and it will again call |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3125 | * ext4_truncate() to have another go. So there will be instantiated blocks |
| 3126 | * to the right of the truncation point in a crashed ext4 filesystem. But |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3127 | * that's fine - as long as they are linked from the inode, the post-crash |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3128 | * ext4_truncate() run will find them and release them. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3129 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3130 | void ext4_truncate(struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3131 | { |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 3132 | trace_ext4_truncate_enter(inode); |
| 3133 | |
Duane Griffin | 91ef4ca | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3134 | if (!ext4_can_truncate(inode)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3135 | return; |
| 3136 | |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 3137 | ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS); |
Jiaying Zhang | c8d46e4 | 2010-02-24 09:52:53 -0500 | [diff] [blame] | 3138 | |
Theodore Ts'o | 5534fb5 | 2009-09-17 09:34:16 -0400 | [diff] [blame] | 3139 | if (inode->i_size == 0 && !test_opt(inode->i_sb, NO_AUTO_DA_ALLOC)) |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 3140 | ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE); |
Theodore Ts'o | 7d8f9f7 | 2009-02-24 08:21:14 -0500 | [diff] [blame] | 3141 | |
Amir Goldstein | ff9893d | 2011-06-27 16:36:31 -0400 | [diff] [blame] | 3142 | if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3143 | ext4_ext_truncate(inode); |
Amir Goldstein | ff9893d | 2011-06-27 16:36:31 -0400 | [diff] [blame] | 3144 | else |
| 3145 | ext4_ind_truncate(inode); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3146 | |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 3147 | trace_ext4_truncate_exit(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3148 | } |
| 3149 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3150 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3151 | * ext4_get_inode_loc returns with an extra refcount against the inode's |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3152 | * underlying buffer_head on success. If 'in_mem' is true, we have all |
| 3153 | * data in memory that is needed to recreate the on-disk version of this |
| 3154 | * inode. |
| 3155 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3156 | static int __ext4_get_inode_loc(struct inode *inode, |
| 3157 | struct ext4_iloc *iloc, int in_mem) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3158 | { |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 3159 | struct ext4_group_desc *gdp; |
| 3160 | struct buffer_head *bh; |
| 3161 | struct super_block *sb = inode->i_sb; |
| 3162 | ext4_fsblk_t block; |
| 3163 | int inodes_per_block, inode_offset; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3164 | |
Aneesh Kumar K.V | 3a06d77 | 2008-11-22 15:04:59 -0500 | [diff] [blame] | 3165 | iloc->bh = NULL; |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 3166 | if (!ext4_valid_inum(sb, inode->i_ino)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3167 | return -EIO; |
| 3168 | |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 3169 | iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb); |
| 3170 | gdp = ext4_get_group_desc(sb, iloc->block_group, NULL); |
| 3171 | if (!gdp) |
| 3172 | return -EIO; |
| 3173 | |
| 3174 | /* |
| 3175 | * Figure out the offset within the block group inode table |
| 3176 | */ |
Tao Ma | 00d0988 | 2011-05-09 10:26:41 -0400 | [diff] [blame] | 3177 | inodes_per_block = EXT4_SB(sb)->s_inodes_per_block; |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 3178 | inode_offset = ((inode->i_ino - 1) % |
| 3179 | EXT4_INODES_PER_GROUP(sb)); |
| 3180 | block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block); |
| 3181 | iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb); |
| 3182 | |
| 3183 | bh = sb_getblk(sb, block); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3184 | if (!bh) { |
Theodore Ts'o | c398eda | 2010-07-27 11:56:40 -0400 | [diff] [blame] | 3185 | EXT4_ERROR_INODE_BLOCK(inode, block, |
| 3186 | "unable to read itable block"); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3187 | return -EIO; |
| 3188 | } |
| 3189 | if (!buffer_uptodate(bh)) { |
| 3190 | lock_buffer(bh); |
Hidehiro Kawai | 9c83a92 | 2008-07-26 16:39:26 -0400 | [diff] [blame] | 3191 | |
| 3192 | /* |
| 3193 | * If the buffer has the write error flag, we have failed |
| 3194 | * to write out another inode in the same block. In this |
| 3195 | * case, we don't have to read the block because we may |
| 3196 | * read the old inode data successfully. |
| 3197 | */ |
| 3198 | if (buffer_write_io_error(bh) && !buffer_uptodate(bh)) |
| 3199 | set_buffer_uptodate(bh); |
| 3200 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3201 | if (buffer_uptodate(bh)) { |
| 3202 | /* someone brought it uptodate while we waited */ |
| 3203 | unlock_buffer(bh); |
| 3204 | goto has_buffer; |
| 3205 | } |
| 3206 | |
| 3207 | /* |
| 3208 | * If we have all information of the inode in memory and this |
| 3209 | * is the only valid inode in the block, we need not read the |
| 3210 | * block. |
| 3211 | */ |
| 3212 | if (in_mem) { |
| 3213 | struct buffer_head *bitmap_bh; |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 3214 | int i, start; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3215 | |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 3216 | start = inode_offset & ~(inodes_per_block - 1); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3217 | |
| 3218 | /* Is the inode bitmap in cache? */ |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 3219 | bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp)); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3220 | if (!bitmap_bh) |
| 3221 | goto make_io; |
| 3222 | |
| 3223 | /* |
| 3224 | * If the inode bitmap isn't in cache then the |
| 3225 | * optimisation may end up performing two reads instead |
| 3226 | * of one, so skip it. |
| 3227 | */ |
| 3228 | if (!buffer_uptodate(bitmap_bh)) { |
| 3229 | brelse(bitmap_bh); |
| 3230 | goto make_io; |
| 3231 | } |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 3232 | for (i = start; i < start + inodes_per_block; i++) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3233 | if (i == inode_offset) |
| 3234 | continue; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3235 | if (ext4_test_bit(i, bitmap_bh->b_data)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3236 | break; |
| 3237 | } |
| 3238 | brelse(bitmap_bh); |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 3239 | if (i == start + inodes_per_block) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3240 | /* all other inodes are free, so skip I/O */ |
| 3241 | memset(bh->b_data, 0, bh->b_size); |
| 3242 | set_buffer_uptodate(bh); |
| 3243 | unlock_buffer(bh); |
| 3244 | goto has_buffer; |
| 3245 | } |
| 3246 | } |
| 3247 | |
| 3248 | make_io: |
| 3249 | /* |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 3250 | * If we need to do any I/O, try to pre-readahead extra |
| 3251 | * blocks from the inode table. |
| 3252 | */ |
| 3253 | if (EXT4_SB(sb)->s_inode_readahead_blks) { |
| 3254 | ext4_fsblk_t b, end, table; |
| 3255 | unsigned num; |
| 3256 | |
| 3257 | table = ext4_inode_table(sb, gdp); |
Theodore Ts'o | b713a5e | 2009-03-31 09:11:14 -0400 | [diff] [blame] | 3258 | /* s_inode_readahead_blks is always a power of 2 */ |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 3259 | b = block & ~(EXT4_SB(sb)->s_inode_readahead_blks-1); |
| 3260 | if (table > b) |
| 3261 | b = table; |
| 3262 | end = b + EXT4_SB(sb)->s_inode_readahead_blks; |
| 3263 | num = EXT4_INODES_PER_GROUP(sb); |
| 3264 | if (EXT4_HAS_RO_COMPAT_FEATURE(sb, |
| 3265 | EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) |
Aneesh Kumar K.V | 560671a | 2009-01-05 22:20:24 -0500 | [diff] [blame] | 3266 | num -= ext4_itable_unused_count(sb, gdp); |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 3267 | table += num / inodes_per_block; |
| 3268 | if (end > table) |
| 3269 | end = table; |
| 3270 | while (b <= end) |
| 3271 | sb_breadahead(sb, b++); |
| 3272 | } |
| 3273 | |
| 3274 | /* |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3275 | * There are other valid inodes in the buffer, this inode |
| 3276 | * has in-inode xattrs, or we don't have this inode in memory. |
| 3277 | * Read the block from disk. |
| 3278 | */ |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 3279 | trace_ext4_load_inode(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3280 | get_bh(bh); |
| 3281 | bh->b_end_io = end_buffer_read_sync; |
| 3282 | submit_bh(READ_META, bh); |
| 3283 | wait_on_buffer(bh); |
| 3284 | if (!buffer_uptodate(bh)) { |
Theodore Ts'o | c398eda | 2010-07-27 11:56:40 -0400 | [diff] [blame] | 3285 | EXT4_ERROR_INODE_BLOCK(inode, block, |
| 3286 | "unable to read itable block"); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3287 | brelse(bh); |
| 3288 | return -EIO; |
| 3289 | } |
| 3290 | } |
| 3291 | has_buffer: |
| 3292 | iloc->bh = bh; |
| 3293 | return 0; |
| 3294 | } |
| 3295 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3296 | int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3297 | { |
| 3298 | /* We have all inode data except xattrs in memory here. */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3299 | return __ext4_get_inode_loc(inode, iloc, |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 3300 | !ext4_test_inode_state(inode, EXT4_STATE_XATTR)); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3301 | } |
| 3302 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3303 | void ext4_set_inode_flags(struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3304 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3305 | unsigned int flags = EXT4_I(inode)->i_flags; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3306 | |
| 3307 | inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3308 | if (flags & EXT4_SYNC_FL) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3309 | inode->i_flags |= S_SYNC; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3310 | if (flags & EXT4_APPEND_FL) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3311 | inode->i_flags |= S_APPEND; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3312 | if (flags & EXT4_IMMUTABLE_FL) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3313 | inode->i_flags |= S_IMMUTABLE; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3314 | if (flags & EXT4_NOATIME_FL) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3315 | inode->i_flags |= S_NOATIME; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3316 | if (flags & EXT4_DIRSYNC_FL) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3317 | inode->i_flags |= S_DIRSYNC; |
| 3318 | } |
| 3319 | |
Jan Kara | ff9ddf7 | 2007-07-18 09:24:20 -0400 | [diff] [blame] | 3320 | /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */ |
| 3321 | void ext4_get_inode_flags(struct ext4_inode_info *ei) |
| 3322 | { |
Dmitry Monakhov | 84a8dce | 2010-06-05 11:51:27 -0400 | [diff] [blame] | 3323 | unsigned int vfs_fl; |
| 3324 | unsigned long old_fl, new_fl; |
Jan Kara | ff9ddf7 | 2007-07-18 09:24:20 -0400 | [diff] [blame] | 3325 | |
Dmitry Monakhov | 84a8dce | 2010-06-05 11:51:27 -0400 | [diff] [blame] | 3326 | do { |
| 3327 | vfs_fl = ei->vfs_inode.i_flags; |
| 3328 | old_fl = ei->i_flags; |
| 3329 | new_fl = old_fl & ~(EXT4_SYNC_FL|EXT4_APPEND_FL| |
| 3330 | EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL| |
| 3331 | EXT4_DIRSYNC_FL); |
| 3332 | if (vfs_fl & S_SYNC) |
| 3333 | new_fl |= EXT4_SYNC_FL; |
| 3334 | if (vfs_fl & S_APPEND) |
| 3335 | new_fl |= EXT4_APPEND_FL; |
| 3336 | if (vfs_fl & S_IMMUTABLE) |
| 3337 | new_fl |= EXT4_IMMUTABLE_FL; |
| 3338 | if (vfs_fl & S_NOATIME) |
| 3339 | new_fl |= EXT4_NOATIME_FL; |
| 3340 | if (vfs_fl & S_DIRSYNC) |
| 3341 | new_fl |= EXT4_DIRSYNC_FL; |
| 3342 | } while (cmpxchg(&ei->i_flags, old_fl, new_fl) != old_fl); |
Jan Kara | ff9ddf7 | 2007-07-18 09:24:20 -0400 | [diff] [blame] | 3343 | } |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 3344 | |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3345 | static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 3346 | struct ext4_inode_info *ei) |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3347 | { |
| 3348 | blkcnt_t i_blocks ; |
Aneesh Kumar K.V | 8180a56 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3349 | struct inode *inode = &(ei->vfs_inode); |
| 3350 | struct super_block *sb = inode->i_sb; |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3351 | |
| 3352 | if (EXT4_HAS_RO_COMPAT_FEATURE(sb, |
| 3353 | EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) { |
| 3354 | /* we are using combined 48 bit field */ |
| 3355 | i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 | |
| 3356 | le32_to_cpu(raw_inode->i_blocks_lo); |
Theodore Ts'o | 07a0382 | 2010-06-14 09:54:48 -0400 | [diff] [blame] | 3357 | if (ext4_test_inode_flag(inode, EXT4_INODE_HUGE_FILE)) { |
Aneesh Kumar K.V | 8180a56 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3358 | /* i_blocks represent file system block size */ |
| 3359 | return i_blocks << (inode->i_blkbits - 9); |
| 3360 | } else { |
| 3361 | return i_blocks; |
| 3362 | } |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3363 | } else { |
| 3364 | return le32_to_cpu(raw_inode->i_blocks_lo); |
| 3365 | } |
| 3366 | } |
Jan Kara | ff9ddf7 | 2007-07-18 09:24:20 -0400 | [diff] [blame] | 3367 | |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 3368 | struct inode *ext4_iget(struct super_block *sb, unsigned long ino) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3369 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3370 | struct ext4_iloc iloc; |
| 3371 | struct ext4_inode *raw_inode; |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 3372 | struct ext4_inode_info *ei; |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 3373 | struct inode *inode; |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 3374 | journal_t *journal = EXT4_SB(sb)->s_journal; |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 3375 | long ret; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3376 | int block; |
| 3377 | |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 3378 | inode = iget_locked(sb, ino); |
| 3379 | if (!inode) |
| 3380 | return ERR_PTR(-ENOMEM); |
| 3381 | if (!(inode->i_state & I_NEW)) |
| 3382 | return inode; |
| 3383 | |
| 3384 | ei = EXT4_I(inode); |
Peter Huewe | 7dc5761 | 2011-02-21 21:01:42 -0500 | [diff] [blame] | 3385 | iloc.bh = NULL; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3386 | |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 3387 | ret = __ext4_get_inode_loc(inode, &iloc, 0); |
| 3388 | if (ret < 0) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3389 | goto bad_inode; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3390 | raw_inode = ext4_raw_inode(&iloc); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3391 | inode->i_mode = le16_to_cpu(raw_inode->i_mode); |
| 3392 | inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low); |
| 3393 | inode->i_gid = (gid_t)le16_to_cpu(raw_inode->i_gid_low); |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 3394 | if (!(test_opt(inode->i_sb, NO_UID32))) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3395 | inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16; |
| 3396 | inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16; |
| 3397 | } |
| 3398 | inode->i_nlink = le16_to_cpu(raw_inode->i_links_count); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3399 | |
Theodore Ts'o | 353eb83 | 2011-01-10 12:18:25 -0500 | [diff] [blame] | 3400 | ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3401 | ei->i_dir_start_lookup = 0; |
| 3402 | ei->i_dtime = le32_to_cpu(raw_inode->i_dtime); |
| 3403 | /* We now have enough fields to check if the inode was active or not. |
| 3404 | * This is needed because nfsd might try to access dead inodes |
| 3405 | * the test is that same one that e2fsck uses |
| 3406 | * NeilBrown 1999oct15 |
| 3407 | */ |
| 3408 | if (inode->i_nlink == 0) { |
| 3409 | if (inode->i_mode == 0 || |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3410 | !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3411 | /* this inode is deleted */ |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 3412 | ret = -ESTALE; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3413 | goto bad_inode; |
| 3414 | } |
| 3415 | /* The only unlinked inodes we let through here have |
| 3416 | * valid i_mode and are being read by the orphan |
| 3417 | * recovery code: that's fine, we're about to complete |
| 3418 | * the process of deleting those. */ |
| 3419 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3420 | ei->i_flags = le32_to_cpu(raw_inode->i_flags); |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3421 | inode->i_blocks = ext4_inode_blocks(raw_inode, ei); |
Aneesh Kumar K.V | 7973c0c | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3422 | ei->i_file_acl = le32_to_cpu(raw_inode->i_file_acl_lo); |
Theodore Ts'o | a9e8174 | 2009-04-24 16:11:18 -0400 | [diff] [blame] | 3423 | if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) |
Badari Pulavarty | a1ddeb7 | 2006-10-11 01:21:09 -0700 | [diff] [blame] | 3424 | ei->i_file_acl |= |
| 3425 | ((__u64)le16_to_cpu(raw_inode->i_file_acl_high)) << 32; |
Aneesh Kumar K.V | a48380f | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3426 | inode->i_size = ext4_isize(raw_inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3427 | ei->i_disksize = inode->i_size; |
Dmitry Monakhov | a9e7f44 | 2009-12-14 15:21:14 +0300 | [diff] [blame] | 3428 | #ifdef CONFIG_QUOTA |
| 3429 | ei->i_reserved_quota = 0; |
| 3430 | #endif |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3431 | inode->i_generation = le32_to_cpu(raw_inode->i_generation); |
| 3432 | ei->i_block_group = iloc.block_group; |
Theodore Ts'o | a491212 | 2009-03-12 12:18:34 -0400 | [diff] [blame] | 3433 | ei->i_last_alloc_group = ~0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3434 | /* |
| 3435 | * NOTE! The in-memory inode i_data array is in little-endian order |
| 3436 | * even on big-endian machines: we do NOT byteswap the block numbers! |
| 3437 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3438 | for (block = 0; block < EXT4_N_BLOCKS; block++) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3439 | ei->i_data[block] = raw_inode->i_block[block]; |
| 3440 | INIT_LIST_HEAD(&ei->i_orphan); |
| 3441 | |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 3442 | /* |
| 3443 | * Set transaction id's of transactions that have to be committed |
| 3444 | * to finish f[data]sync. We set them to currently running transaction |
| 3445 | * as we cannot be sure that the inode or some of its metadata isn't |
| 3446 | * part of the transaction - the inode could have been reclaimed and |
| 3447 | * now it is reread from disk. |
| 3448 | */ |
| 3449 | if (journal) { |
| 3450 | transaction_t *transaction; |
| 3451 | tid_t tid; |
| 3452 | |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 3453 | read_lock(&journal->j_state_lock); |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 3454 | if (journal->j_running_transaction) |
| 3455 | transaction = journal->j_running_transaction; |
| 3456 | else |
| 3457 | transaction = journal->j_committing_transaction; |
| 3458 | if (transaction) |
| 3459 | tid = transaction->t_tid; |
| 3460 | else |
| 3461 | tid = journal->j_commit_sequence; |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 3462 | read_unlock(&journal->j_state_lock); |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 3463 | ei->i_sync_tid = tid; |
| 3464 | ei->i_datasync_tid = tid; |
| 3465 | } |
| 3466 | |
Eric Sandeen | 0040d98 | 2008-02-05 22:36:43 -0500 | [diff] [blame] | 3467 | if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3468 | ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3469 | if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > |
Kirill Korotaev | e5d2861 | 2007-06-23 17:16:51 -0700 | [diff] [blame] | 3470 | EXT4_INODE_SIZE(inode->i_sb)) { |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 3471 | ret = -EIO; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3472 | goto bad_inode; |
Kirill Korotaev | e5d2861 | 2007-06-23 17:16:51 -0700 | [diff] [blame] | 3473 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3474 | if (ei->i_extra_isize == 0) { |
| 3475 | /* The extra space is currently unused. Use it. */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3476 | ei->i_extra_isize = sizeof(struct ext4_inode) - |
| 3477 | EXT4_GOOD_OLD_INODE_SIZE; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3478 | } else { |
| 3479 | __le32 *magic = (void *)raw_inode + |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3480 | EXT4_GOOD_OLD_INODE_SIZE + |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3481 | ei->i_extra_isize; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3482 | if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 3483 | ext4_set_inode_state(inode, EXT4_STATE_XATTR); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3484 | } |
| 3485 | } else |
| 3486 | ei->i_extra_isize = 0; |
| 3487 | |
Kalpak Shah | ef7f383 | 2007-07-18 09:15:20 -0400 | [diff] [blame] | 3488 | EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode); |
| 3489 | EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode); |
| 3490 | EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode); |
| 3491 | EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode); |
| 3492 | |
Jean Noel Cordenner | 25ec56b | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3493 | inode->i_version = le32_to_cpu(raw_inode->i_disk_version); |
| 3494 | if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { |
| 3495 | if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) |
| 3496 | inode->i_version |= |
| 3497 | (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32; |
| 3498 | } |
| 3499 | |
Theodore Ts'o | c4b5a61 | 2009-04-24 18:45:35 -0400 | [diff] [blame] | 3500 | ret = 0; |
Theodore Ts'o | 485c26e | 2009-04-24 13:43:20 -0400 | [diff] [blame] | 3501 | if (ei->i_file_acl && |
Theodore Ts'o | 1032988 | 2009-11-15 15:29:56 -0500 | [diff] [blame] | 3502 | !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) { |
Theodore Ts'o | 24676da | 2010-05-16 21:00:00 -0400 | [diff] [blame] | 3503 | EXT4_ERROR_INODE(inode, "bad extended attribute block %llu", |
| 3504 | ei->i_file_acl); |
Theodore Ts'o | 485c26e | 2009-04-24 13:43:20 -0400 | [diff] [blame] | 3505 | ret = -EIO; |
| 3506 | goto bad_inode; |
Theodore Ts'o | 07a0382 | 2010-06-14 09:54:48 -0400 | [diff] [blame] | 3507 | } else if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { |
Theodore Ts'o | c4b5a61 | 2009-04-24 18:45:35 -0400 | [diff] [blame] | 3508 | if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || |
| 3509 | (S_ISLNK(inode->i_mode) && |
| 3510 | !ext4_inode_is_fast_symlink(inode))) |
| 3511 | /* Validate extent which is part of inode */ |
| 3512 | ret = ext4_ext_check_inode(inode); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 3513 | } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || |
Thiemo Nagel | fe2c819 | 2009-03-31 08:36:10 -0400 | [diff] [blame] | 3514 | (S_ISLNK(inode->i_mode) && |
| 3515 | !ext4_inode_is_fast_symlink(inode))) { |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 3516 | /* Validate block references which are part of inode */ |
Theodore Ts'o | 1f7d1e7 | 2011-06-27 19:16:02 -0400 | [diff] [blame] | 3517 | ret = ext4_ind_check_inode(inode); |
Thiemo Nagel | fe2c819 | 2009-03-31 08:36:10 -0400 | [diff] [blame] | 3518 | } |
Theodore Ts'o | 567f3e9 | 2009-11-14 08:19:05 -0500 | [diff] [blame] | 3519 | if (ret) |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 3520 | goto bad_inode; |
Aneesh Kumar K.V | 7a262f7 | 2009-03-27 16:39:58 -0400 | [diff] [blame] | 3521 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3522 | if (S_ISREG(inode->i_mode)) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3523 | inode->i_op = &ext4_file_inode_operations; |
| 3524 | inode->i_fop = &ext4_file_operations; |
| 3525 | ext4_set_aops(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3526 | } else if (S_ISDIR(inode->i_mode)) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3527 | inode->i_op = &ext4_dir_inode_operations; |
| 3528 | inode->i_fop = &ext4_dir_operations; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3529 | } else if (S_ISLNK(inode->i_mode)) { |
Duane Griffin | e83c139 | 2008-12-19 20:47:15 +0000 | [diff] [blame] | 3530 | if (ext4_inode_is_fast_symlink(inode)) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3531 | inode->i_op = &ext4_fast_symlink_inode_operations; |
Duane Griffin | e83c139 | 2008-12-19 20:47:15 +0000 | [diff] [blame] | 3532 | nd_terminate_link(ei->i_data, inode->i_size, |
| 3533 | sizeof(ei->i_data) - 1); |
| 3534 | } else { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3535 | inode->i_op = &ext4_symlink_inode_operations; |
| 3536 | ext4_set_aops(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3537 | } |
Theodore Ts'o | 563bdd6 | 2009-03-26 00:06:19 -0400 | [diff] [blame] | 3538 | } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) || |
| 3539 | S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3540 | inode->i_op = &ext4_special_inode_operations; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3541 | if (raw_inode->i_block[0]) |
| 3542 | init_special_inode(inode, inode->i_mode, |
| 3543 | old_decode_dev(le32_to_cpu(raw_inode->i_block[0]))); |
| 3544 | else |
| 3545 | init_special_inode(inode, inode->i_mode, |
| 3546 | new_decode_dev(le32_to_cpu(raw_inode->i_block[1]))); |
Theodore Ts'o | 563bdd6 | 2009-03-26 00:06:19 -0400 | [diff] [blame] | 3547 | } else { |
Theodore Ts'o | 563bdd6 | 2009-03-26 00:06:19 -0400 | [diff] [blame] | 3548 | ret = -EIO; |
Theodore Ts'o | 24676da | 2010-05-16 21:00:00 -0400 | [diff] [blame] | 3549 | EXT4_ERROR_INODE(inode, "bogus i_mode (%o)", inode->i_mode); |
Theodore Ts'o | 563bdd6 | 2009-03-26 00:06:19 -0400 | [diff] [blame] | 3550 | goto bad_inode; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3551 | } |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 3552 | brelse(iloc.bh); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3553 | ext4_set_inode_flags(inode); |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 3554 | unlock_new_inode(inode); |
| 3555 | return inode; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3556 | |
| 3557 | bad_inode: |
Theodore Ts'o | 567f3e9 | 2009-11-14 08:19:05 -0500 | [diff] [blame] | 3558 | brelse(iloc.bh); |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 3559 | iget_failed(inode); |
| 3560 | return ERR_PTR(ret); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3561 | } |
| 3562 | |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3563 | static int ext4_inode_blocks_set(handle_t *handle, |
| 3564 | struct ext4_inode *raw_inode, |
| 3565 | struct ext4_inode_info *ei) |
| 3566 | { |
| 3567 | struct inode *inode = &(ei->vfs_inode); |
| 3568 | u64 i_blocks = inode->i_blocks; |
| 3569 | struct super_block *sb = inode->i_sb; |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3570 | |
| 3571 | if (i_blocks <= ~0U) { |
| 3572 | /* |
| 3573 | * i_blocks can be represnted in a 32 bit variable |
| 3574 | * as multiple of 512 bytes |
| 3575 | */ |
Aneesh Kumar K.V | 8180a56 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3576 | raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3577 | raw_inode->i_blocks_high = 0; |
Dmitry Monakhov | 84a8dce | 2010-06-05 11:51:27 -0400 | [diff] [blame] | 3578 | ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); |
Theodore Ts'o | f287a1a | 2008-10-16 22:50:48 -0400 | [diff] [blame] | 3579 | return 0; |
| 3580 | } |
| 3581 | if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) |
| 3582 | return -EFBIG; |
| 3583 | |
| 3584 | if (i_blocks <= 0xffffffffffffULL) { |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3585 | /* |
| 3586 | * i_blocks can be represented in a 48 bit variable |
| 3587 | * as multiple of 512 bytes |
| 3588 | */ |
Aneesh Kumar K.V | 8180a56 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3589 | raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3590 | raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); |
Dmitry Monakhov | 84a8dce | 2010-06-05 11:51:27 -0400 | [diff] [blame] | 3591 | ext4_clear_inode_flag(inode, EXT4_INODE_HUGE_FILE); |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3592 | } else { |
Dmitry Monakhov | 84a8dce | 2010-06-05 11:51:27 -0400 | [diff] [blame] | 3593 | ext4_set_inode_flag(inode, EXT4_INODE_HUGE_FILE); |
Aneesh Kumar K.V | 8180a56 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3594 | /* i_block is stored in file system block size */ |
| 3595 | i_blocks = i_blocks >> (inode->i_blkbits - 9); |
| 3596 | raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); |
| 3597 | raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3598 | } |
Theodore Ts'o | f287a1a | 2008-10-16 22:50:48 -0400 | [diff] [blame] | 3599 | return 0; |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3600 | } |
| 3601 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3602 | /* |
| 3603 | * Post the struct inode info into an on-disk inode location in the |
| 3604 | * buffer-cache. This gobbles the caller's reference to the |
| 3605 | * buffer_head in the inode location struct. |
| 3606 | * |
| 3607 | * The caller must have write access to iloc->bh. |
| 3608 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3609 | static int ext4_do_update_inode(handle_t *handle, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3610 | struct inode *inode, |
Frank Mayhar | 830156c | 2009-09-29 10:07:47 -0400 | [diff] [blame] | 3611 | struct ext4_iloc *iloc) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3612 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3613 | struct ext4_inode *raw_inode = ext4_raw_inode(iloc); |
| 3614 | struct ext4_inode_info *ei = EXT4_I(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3615 | struct buffer_head *bh = iloc->bh; |
| 3616 | int err = 0, rc, block; |
| 3617 | |
| 3618 | /* For fields not not tracking in the in-memory inode, |
| 3619 | * initialise them to zero for new inodes. */ |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 3620 | if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3621 | memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3622 | |
Jan Kara | ff9ddf7 | 2007-07-18 09:24:20 -0400 | [diff] [blame] | 3623 | ext4_get_inode_flags(ei); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3624 | raw_inode->i_mode = cpu_to_le16(inode->i_mode); |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 3625 | if (!(test_opt(inode->i_sb, NO_UID32))) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3626 | raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid)); |
| 3627 | raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid)); |
| 3628 | /* |
| 3629 | * Fix up interoperability with old kernels. Otherwise, old inodes get |
| 3630 | * re-used with the upper 16 bits of the uid/gid intact |
| 3631 | */ |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 3632 | if (!ei->i_dtime) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3633 | raw_inode->i_uid_high = |
| 3634 | cpu_to_le16(high_16_bits(inode->i_uid)); |
| 3635 | raw_inode->i_gid_high = |
| 3636 | cpu_to_le16(high_16_bits(inode->i_gid)); |
| 3637 | } else { |
| 3638 | raw_inode->i_uid_high = 0; |
| 3639 | raw_inode->i_gid_high = 0; |
| 3640 | } |
| 3641 | } else { |
| 3642 | raw_inode->i_uid_low = |
| 3643 | cpu_to_le16(fs_high2lowuid(inode->i_uid)); |
| 3644 | raw_inode->i_gid_low = |
| 3645 | cpu_to_le16(fs_high2lowgid(inode->i_gid)); |
| 3646 | raw_inode->i_uid_high = 0; |
| 3647 | raw_inode->i_gid_high = 0; |
| 3648 | } |
| 3649 | raw_inode->i_links_count = cpu_to_le16(inode->i_nlink); |
Kalpak Shah | ef7f383 | 2007-07-18 09:15:20 -0400 | [diff] [blame] | 3650 | |
| 3651 | EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode); |
| 3652 | EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode); |
| 3653 | EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode); |
| 3654 | EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode); |
| 3655 | |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3656 | if (ext4_inode_blocks_set(handle, raw_inode, ei)) |
| 3657 | goto out_brelse; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3658 | raw_inode->i_dtime = cpu_to_le32(ei->i_dtime); |
Theodore Ts'o | 353eb83 | 2011-01-10 12:18:25 -0500 | [diff] [blame] | 3659 | raw_inode->i_flags = cpu_to_le32(ei->i_flags & 0xFFFFFFFF); |
Mingming Cao | 9b8f1f0 | 2006-10-11 01:21:13 -0700 | [diff] [blame] | 3660 | if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != |
| 3661 | cpu_to_le32(EXT4_OS_HURD)) |
Badari Pulavarty | a1ddeb7 | 2006-10-11 01:21:09 -0700 | [diff] [blame] | 3662 | raw_inode->i_file_acl_high = |
| 3663 | cpu_to_le16(ei->i_file_acl >> 32); |
Aneesh Kumar K.V | 7973c0c | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3664 | raw_inode->i_file_acl_lo = cpu_to_le32(ei->i_file_acl); |
Aneesh Kumar K.V | a48380f | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3665 | ext4_isize_set(raw_inode, ei->i_disksize); |
| 3666 | if (ei->i_disksize > 0x7fffffffULL) { |
| 3667 | struct super_block *sb = inode->i_sb; |
| 3668 | if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, |
| 3669 | EXT4_FEATURE_RO_COMPAT_LARGE_FILE) || |
| 3670 | EXT4_SB(sb)->s_es->s_rev_level == |
| 3671 | cpu_to_le32(EXT4_GOOD_OLD_REV)) { |
| 3672 | /* If this is the first large file |
| 3673 | * created, add a flag to the superblock. |
| 3674 | */ |
| 3675 | err = ext4_journal_get_write_access(handle, |
| 3676 | EXT4_SB(sb)->s_sbh); |
| 3677 | if (err) |
| 3678 | goto out_brelse; |
| 3679 | ext4_update_dynamic_rev(sb); |
| 3680 | EXT4_SET_RO_COMPAT_FEATURE(sb, |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3681 | EXT4_FEATURE_RO_COMPAT_LARGE_FILE); |
Aneesh Kumar K.V | a48380f | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3682 | sb->s_dirt = 1; |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 3683 | ext4_handle_sync(handle); |
Curt Wohlgemuth | 73b50c1 | 2010-02-16 15:06:29 -0500 | [diff] [blame] | 3684 | err = ext4_handle_dirty_metadata(handle, NULL, |
Aneesh Kumar K.V | a48380f | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3685 | EXT4_SB(sb)->s_sbh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3686 | } |
| 3687 | } |
| 3688 | raw_inode->i_generation = cpu_to_le32(inode->i_generation); |
| 3689 | if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { |
| 3690 | if (old_valid_dev(inode->i_rdev)) { |
| 3691 | raw_inode->i_block[0] = |
| 3692 | cpu_to_le32(old_encode_dev(inode->i_rdev)); |
| 3693 | raw_inode->i_block[1] = 0; |
| 3694 | } else { |
| 3695 | raw_inode->i_block[0] = 0; |
| 3696 | raw_inode->i_block[1] = |
| 3697 | cpu_to_le32(new_encode_dev(inode->i_rdev)); |
| 3698 | raw_inode->i_block[2] = 0; |
| 3699 | } |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 3700 | } else |
| 3701 | for (block = 0; block < EXT4_N_BLOCKS; block++) |
| 3702 | raw_inode->i_block[block] = ei->i_data[block]; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3703 | |
Jean Noel Cordenner | 25ec56b | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3704 | raw_inode->i_disk_version = cpu_to_le32(inode->i_version); |
| 3705 | if (ei->i_extra_isize) { |
| 3706 | if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) |
| 3707 | raw_inode->i_version_hi = |
| 3708 | cpu_to_le32(inode->i_version >> 32); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3709 | raw_inode->i_extra_isize = cpu_to_le16(ei->i_extra_isize); |
Jean Noel Cordenner | 25ec56b | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3710 | } |
| 3711 | |
Frank Mayhar | 830156c | 2009-09-29 10:07:47 -0400 | [diff] [blame] | 3712 | BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); |
Curt Wohlgemuth | 73b50c1 | 2010-02-16 15:06:29 -0500 | [diff] [blame] | 3713 | rc = ext4_handle_dirty_metadata(handle, NULL, bh); |
Frank Mayhar | 830156c | 2009-09-29 10:07:47 -0400 | [diff] [blame] | 3714 | if (!err) |
| 3715 | err = rc; |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 3716 | ext4_clear_inode_state(inode, EXT4_STATE_NEW); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3717 | |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 3718 | ext4_update_inode_fsync_trans(handle, inode, 0); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3719 | out_brelse: |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 3720 | brelse(bh); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3721 | ext4_std_error(inode->i_sb, err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3722 | return err; |
| 3723 | } |
| 3724 | |
| 3725 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3726 | * ext4_write_inode() |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3727 | * |
| 3728 | * We are called from a few places: |
| 3729 | * |
| 3730 | * - Within generic_file_write() for O_SYNC files. |
| 3731 | * Here, there will be no transaction running. We wait for any running |
| 3732 | * trasnaction to commit. |
| 3733 | * |
| 3734 | * - Within sys_sync(), kupdate and such. |
| 3735 | * We wait on commit, if tol to. |
| 3736 | * |
| 3737 | * - Within prune_icache() (PF_MEMALLOC == true) |
| 3738 | * Here we simply return. We can't afford to block kswapd on the |
| 3739 | * journal commit. |
| 3740 | * |
| 3741 | * In all cases it is actually safe for us to return without doing anything, |
| 3742 | * because the inode has been copied into a raw inode buffer in |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3743 | * ext4_mark_inode_dirty(). This is a correctness thing for O_SYNC and for |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3744 | * knfsd. |
| 3745 | * |
| 3746 | * Note that we are absolutely dependent upon all inode dirtiers doing the |
| 3747 | * right thing: they *must* call mark_inode_dirty() after dirtying info in |
| 3748 | * which we are interested. |
| 3749 | * |
| 3750 | * It would be a bug for them to not do this. The code: |
| 3751 | * |
| 3752 | * mark_inode_dirty(inode) |
| 3753 | * stuff(); |
| 3754 | * inode->i_size = expr; |
| 3755 | * |
| 3756 | * is in error because a kswapd-driven write_inode() could occur while |
| 3757 | * `stuff()' is running, and the new i_size will be lost. Plus the inode |
| 3758 | * will no longer be on the superblock's dirty inode list. |
| 3759 | */ |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 3760 | int ext4_write_inode(struct inode *inode, struct writeback_control *wbc) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3761 | { |
Frank Mayhar | 91ac6f4 | 2009-09-09 22:33:47 -0400 | [diff] [blame] | 3762 | int err; |
| 3763 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3764 | if (current->flags & PF_MEMALLOC) |
| 3765 | return 0; |
| 3766 | |
Frank Mayhar | 91ac6f4 | 2009-09-09 22:33:47 -0400 | [diff] [blame] | 3767 | if (EXT4_SB(inode->i_sb)->s_journal) { |
| 3768 | if (ext4_journal_current_handle()) { |
| 3769 | jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n"); |
| 3770 | dump_stack(); |
| 3771 | return -EIO; |
| 3772 | } |
| 3773 | |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 3774 | if (wbc->sync_mode != WB_SYNC_ALL) |
Frank Mayhar | 91ac6f4 | 2009-09-09 22:33:47 -0400 | [diff] [blame] | 3775 | return 0; |
| 3776 | |
| 3777 | err = ext4_force_commit(inode->i_sb); |
| 3778 | } else { |
| 3779 | struct ext4_iloc iloc; |
| 3780 | |
Curt Wohlgemuth | 8b472d7 | 2010-04-03 16:45:06 -0400 | [diff] [blame] | 3781 | err = __ext4_get_inode_loc(inode, &iloc, 0); |
Frank Mayhar | 91ac6f4 | 2009-09-09 22:33:47 -0400 | [diff] [blame] | 3782 | if (err) |
| 3783 | return err; |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 3784 | if (wbc->sync_mode == WB_SYNC_ALL) |
Frank Mayhar | 830156c | 2009-09-29 10:07:47 -0400 | [diff] [blame] | 3785 | sync_dirty_buffer(iloc.bh); |
| 3786 | if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) { |
Theodore Ts'o | c398eda | 2010-07-27 11:56:40 -0400 | [diff] [blame] | 3787 | EXT4_ERROR_INODE_BLOCK(inode, iloc.bh->b_blocknr, |
| 3788 | "IO error syncing inode"); |
Frank Mayhar | 830156c | 2009-09-29 10:07:47 -0400 | [diff] [blame] | 3789 | err = -EIO; |
| 3790 | } |
Curt Wohlgemuth | fd2dd9f | 2010-04-03 17:44:16 -0400 | [diff] [blame] | 3791 | brelse(iloc.bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3792 | } |
Frank Mayhar | 91ac6f4 | 2009-09-09 22:33:47 -0400 | [diff] [blame] | 3793 | return err; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3794 | } |
| 3795 | |
| 3796 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3797 | * ext4_setattr() |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3798 | * |
| 3799 | * Called from notify_change. |
| 3800 | * |
| 3801 | * We want to trap VFS attempts to truncate the file as soon as |
| 3802 | * possible. In particular, we want to make sure that when the VFS |
| 3803 | * shrinks i_size, we put the inode on the orphan list and modify |
| 3804 | * i_disksize immediately, so that during the subsequent flushing of |
| 3805 | * dirty pages and freeing of disk blocks, we can guarantee that any |
| 3806 | * commit will leave the blocks being flushed in an unused state on |
| 3807 | * disk. (On recovery, the inode will get truncated and the blocks will |
| 3808 | * be freed, so we have a strong guarantee that no future commit will |
| 3809 | * leave these blocks visible to the user.) |
| 3810 | * |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3811 | * Another thing we have to assure is that if we are in ordered mode |
| 3812 | * and inode is still attached to the committing transaction, we must |
| 3813 | * we start writeout of all the dirty pages which are being truncated. |
| 3814 | * This way we are sure that all the data written in the previous |
| 3815 | * transaction are already on disk (truncate waits for pages under |
| 3816 | * writeback). |
| 3817 | * |
| 3818 | * Called with inode->i_mutex down. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3819 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3820 | int ext4_setattr(struct dentry *dentry, struct iattr *attr) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3821 | { |
| 3822 | struct inode *inode = dentry->d_inode; |
| 3823 | int error, rc = 0; |
Dmitry Monakhov | 3d287de | 2010-10-27 22:08:46 -0400 | [diff] [blame] | 3824 | int orphan = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3825 | const unsigned int ia_valid = attr->ia_valid; |
| 3826 | |
| 3827 | error = inode_change_ok(inode, attr); |
| 3828 | if (error) |
| 3829 | return error; |
| 3830 | |
Dmitry Monakhov | 1275562 | 2010-04-08 22:04:20 +0400 | [diff] [blame] | 3831 | if (is_quota_modification(inode, attr)) |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 3832 | dquot_initialize(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3833 | if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) || |
| 3834 | (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) { |
| 3835 | handle_t *handle; |
| 3836 | |
| 3837 | /* (user+group)*(old+new) structure, inode write (sb, |
| 3838 | * inode block, ? - but truncate inode update has it) */ |
Dmitry Monakhov | 5aca07e | 2009-12-08 22:42:15 -0500 | [diff] [blame] | 3839 | handle = ext4_journal_start(inode, (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb)+ |
Dmitry Monakhov | 194074a | 2009-12-08 22:42:28 -0500 | [diff] [blame] | 3840 | EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb))+3); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3841 | if (IS_ERR(handle)) { |
| 3842 | error = PTR_ERR(handle); |
| 3843 | goto err_out; |
| 3844 | } |
Christoph Hellwig | b43fa82 | 2010-03-03 09:05:03 -0500 | [diff] [blame] | 3845 | error = dquot_transfer(inode, attr); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3846 | if (error) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3847 | ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3848 | return error; |
| 3849 | } |
| 3850 | /* Update corresponding info in inode so that everything is in |
| 3851 | * one transaction */ |
| 3852 | if (attr->ia_valid & ATTR_UID) |
| 3853 | inode->i_uid = attr->ia_uid; |
| 3854 | if (attr->ia_valid & ATTR_GID) |
| 3855 | inode->i_gid = attr->ia_gid; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3856 | error = ext4_mark_inode_dirty(handle, inode); |
| 3857 | ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3858 | } |
| 3859 | |
Eric Sandeen | e2b4657 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3860 | if (attr->ia_valid & ATTR_SIZE) { |
Christoph Hellwig | 562c72a | 2011-06-24 14:29:45 -0400 | [diff] [blame] | 3861 | inode_dio_wait(inode); |
| 3862 | |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 3863 | if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { |
Eric Sandeen | e2b4657 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3864 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
| 3865 | |
Theodore Ts'o | 0c095c7 | 2010-07-27 11:56:06 -0400 | [diff] [blame] | 3866 | if (attr->ia_size > sbi->s_bitmap_maxbytes) |
| 3867 | return -EFBIG; |
Eric Sandeen | e2b4657 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3868 | } |
| 3869 | } |
| 3870 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3871 | if (S_ISREG(inode->i_mode) && |
Jiaying Zhang | c8d46e4 | 2010-02-24 09:52:53 -0500 | [diff] [blame] | 3872 | attr->ia_valid & ATTR_SIZE && |
Theodore Ts'o | 072bd7e | 2011-05-23 15:13:02 -0400 | [diff] [blame] | 3873 | (attr->ia_size < inode->i_size)) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3874 | handle_t *handle; |
| 3875 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3876 | handle = ext4_journal_start(inode, 3); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3877 | if (IS_ERR(handle)) { |
| 3878 | error = PTR_ERR(handle); |
| 3879 | goto err_out; |
| 3880 | } |
Dmitry Monakhov | 3d287de | 2010-10-27 22:08:46 -0400 | [diff] [blame] | 3881 | if (ext4_handle_valid(handle)) { |
| 3882 | error = ext4_orphan_add(handle, inode); |
| 3883 | orphan = 1; |
| 3884 | } |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3885 | EXT4_I(inode)->i_disksize = attr->ia_size; |
| 3886 | rc = ext4_mark_inode_dirty(handle, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3887 | if (!error) |
| 3888 | error = rc; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3889 | ext4_journal_stop(handle); |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3890 | |
| 3891 | if (ext4_should_order_data(inode)) { |
| 3892 | error = ext4_begin_ordered_truncate(inode, |
| 3893 | attr->ia_size); |
| 3894 | if (error) { |
| 3895 | /* Do as much error cleanup as possible */ |
| 3896 | handle = ext4_journal_start(inode, 3); |
| 3897 | if (IS_ERR(handle)) { |
| 3898 | ext4_orphan_del(NULL, inode); |
| 3899 | goto err_out; |
| 3900 | } |
| 3901 | ext4_orphan_del(handle, inode); |
Dmitry Monakhov | 3d287de | 2010-10-27 22:08:46 -0400 | [diff] [blame] | 3902 | orphan = 0; |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3903 | ext4_journal_stop(handle); |
| 3904 | goto err_out; |
| 3905 | } |
| 3906 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3907 | } |
| 3908 | |
Theodore Ts'o | 072bd7e | 2011-05-23 15:13:02 -0400 | [diff] [blame] | 3909 | if (attr->ia_valid & ATTR_SIZE) { |
| 3910 | if (attr->ia_size != i_size_read(inode)) { |
| 3911 | truncate_setsize(inode, attr->ia_size); |
| 3912 | ext4_truncate(inode); |
| 3913 | } else if (ext4_test_inode_flag(inode, EXT4_INODE_EOFBLOCKS)) |
| 3914 | ext4_truncate(inode); |
| 3915 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3916 | |
Christoph Hellwig | 1025774 | 2010-06-04 11:30:02 +0200 | [diff] [blame] | 3917 | if (!rc) { |
| 3918 | setattr_copy(inode, attr); |
| 3919 | mark_inode_dirty(inode); |
| 3920 | } |
| 3921 | |
| 3922 | /* |
| 3923 | * If the call to ext4_truncate failed to get a transaction handle at |
| 3924 | * all, we need to clean up the in-core orphan list manually. |
| 3925 | */ |
Dmitry Monakhov | 3d287de | 2010-10-27 22:08:46 -0400 | [diff] [blame] | 3926 | if (orphan && inode->i_nlink) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3927 | ext4_orphan_del(NULL, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3928 | |
| 3929 | if (!rc && (ia_valid & ATTR_MODE)) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3930 | rc = ext4_acl_chmod(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3931 | |
| 3932 | err_out: |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3933 | ext4_std_error(inode->i_sb, error); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3934 | if (!error) |
| 3935 | error = rc; |
| 3936 | return error; |
| 3937 | } |
| 3938 | |
Mingming Cao | 3e3398a | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3939 | int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry, |
| 3940 | struct kstat *stat) |
| 3941 | { |
| 3942 | struct inode *inode; |
| 3943 | unsigned long delalloc_blocks; |
| 3944 | |
| 3945 | inode = dentry->d_inode; |
| 3946 | generic_fillattr(inode, stat); |
| 3947 | |
| 3948 | /* |
| 3949 | * We can't update i_blocks if the block allocation is delayed |
| 3950 | * otherwise in the case of system crash before the real block |
| 3951 | * allocation is done, we will have i_blocks inconsistent with |
| 3952 | * on-disk file blocks. |
| 3953 | * We always keep i_blocks updated together with real |
| 3954 | * allocation. But to not confuse with user, stat |
| 3955 | * will return the blocks that include the delayed allocation |
| 3956 | * blocks for this file. |
| 3957 | */ |
Mingming Cao | 3e3398a | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3958 | delalloc_blocks = EXT4_I(inode)->i_reserved_data_blocks; |
Mingming Cao | 3e3398a | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3959 | |
| 3960 | stat->blocks += (delalloc_blocks << inode->i_sb->s_blocksize_bits)>>9; |
| 3961 | return 0; |
| 3962 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3963 | |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 3964 | static int ext4_index_trans_blocks(struct inode *inode, int nrblocks, int chunk) |
| 3965 | { |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 3966 | if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) |
Amir Goldstein | 8bb2b24 | 2011-06-27 17:10:28 -0400 | [diff] [blame] | 3967 | return ext4_ind_trans_blocks(inode, nrblocks, chunk); |
Theodore Ts'o | ac51d83 | 2008-11-06 16:49:36 -0500 | [diff] [blame] | 3968 | return ext4_ext_index_trans_blocks(inode, nrblocks, chunk); |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 3969 | } |
Theodore Ts'o | ac51d83 | 2008-11-06 16:49:36 -0500 | [diff] [blame] | 3970 | |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 3971 | /* |
| 3972 | * Account for index blocks, block groups bitmaps and block group |
| 3973 | * descriptor blocks if modify datablocks and index blocks |
| 3974 | * worse case, the indexs blocks spread over different block groups |
| 3975 | * |
| 3976 | * If datablocks are discontiguous, they are possible to spread over |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 3977 | * different block groups too. If they are contiuguous, with flexbg, |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 3978 | * they could still across block group boundary. |
| 3979 | * |
| 3980 | * Also account for superblock, inode, quota and xattr blocks |
| 3981 | */ |
Theodore Ts'o | 1f109d5 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 3982 | static int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk) |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 3983 | { |
Theodore Ts'o | 8df9675 | 2009-05-01 08:50:38 -0400 | [diff] [blame] | 3984 | ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb); |
| 3985 | int gdpblocks; |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 3986 | int idxblocks; |
| 3987 | int ret = 0; |
| 3988 | |
| 3989 | /* |
| 3990 | * How many index blocks need to touch to modify nrblocks? |
| 3991 | * The "Chunk" flag indicating whether the nrblocks is |
| 3992 | * physically contiguous on disk |
| 3993 | * |
| 3994 | * For Direct IO and fallocate, they calls get_block to allocate |
| 3995 | * one single extent at a time, so they could set the "Chunk" flag |
| 3996 | */ |
| 3997 | idxblocks = ext4_index_trans_blocks(inode, nrblocks, chunk); |
| 3998 | |
| 3999 | ret = idxblocks; |
| 4000 | |
| 4001 | /* |
| 4002 | * Now let's see how many group bitmaps and group descriptors need |
| 4003 | * to account |
| 4004 | */ |
| 4005 | groups = idxblocks; |
| 4006 | if (chunk) |
| 4007 | groups += 1; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4008 | else |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 4009 | groups += nrblocks; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4010 | |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 4011 | gdpblocks = groups; |
Theodore Ts'o | 8df9675 | 2009-05-01 08:50:38 -0400 | [diff] [blame] | 4012 | if (groups > ngroups) |
| 4013 | groups = ngroups; |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 4014 | if (groups > EXT4_SB(inode->i_sb)->s_gdb_count) |
| 4015 | gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count; |
| 4016 | |
| 4017 | /* bitmaps and block group descriptor blocks */ |
| 4018 | ret += groups + gdpblocks; |
| 4019 | |
| 4020 | /* Blocks for super block, inode, quota and xattr blocks */ |
| 4021 | ret += EXT4_META_TRANS_BLOCKS(inode->i_sb); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4022 | |
| 4023 | return ret; |
| 4024 | } |
| 4025 | |
| 4026 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 4027 | * Calculate the total number of credits to reserve to fit |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 4028 | * the modification of a single pages into a single transaction, |
| 4029 | * which may include multiple chunks of block allocations. |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 4030 | * |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 4031 | * This could be called via ext4_write_begin() |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 4032 | * |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 4033 | * We need to consider the worse case, when |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 4034 | * one new block per extent. |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 4035 | */ |
| 4036 | int ext4_writepage_trans_blocks(struct inode *inode) |
| 4037 | { |
| 4038 | int bpp = ext4_journal_blocks_per_page(inode); |
| 4039 | int ret; |
| 4040 | |
| 4041 | ret = ext4_meta_trans_blocks(inode, bpp, 0); |
| 4042 | |
| 4043 | /* Account for data blocks for journalled mode */ |
| 4044 | if (ext4_should_journal_data(inode)) |
| 4045 | ret += bpp; |
| 4046 | return ret; |
| 4047 | } |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 4048 | |
| 4049 | /* |
| 4050 | * Calculate the journal credits for a chunk of data modification. |
| 4051 | * |
| 4052 | * This is called from DIO, fallocate or whoever calling |
Eric Sandeen | 79e8303 | 2010-07-27 11:56:07 -0400 | [diff] [blame] | 4053 | * ext4_map_blocks() to map/allocate a chunk of contiguous disk blocks. |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 4054 | * |
| 4055 | * journal buffers for data blocks are not included here, as DIO |
| 4056 | * and fallocate do no need to journal data buffers. |
| 4057 | */ |
| 4058 | int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks) |
| 4059 | { |
| 4060 | return ext4_meta_trans_blocks(inode, nrblocks, 1); |
| 4061 | } |
| 4062 | |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 4063 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4064 | * The caller must have previously called ext4_reserve_inode_write(). |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4065 | * Give this, we know that the caller already has write access to iloc->bh. |
| 4066 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4067 | int ext4_mark_iloc_dirty(handle_t *handle, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 4068 | struct inode *inode, struct ext4_iloc *iloc) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4069 | { |
| 4070 | int err = 0; |
| 4071 | |
Jean Noel Cordenner | 25ec56b | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4072 | if (test_opt(inode->i_sb, I_VERSION)) |
| 4073 | inode_inc_iversion(inode); |
| 4074 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4075 | /* the do_update_inode consumes one bh->b_count */ |
| 4076 | get_bh(iloc->bh); |
| 4077 | |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 4078 | /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */ |
Frank Mayhar | 830156c | 2009-09-29 10:07:47 -0400 | [diff] [blame] | 4079 | err = ext4_do_update_inode(handle, inode, iloc); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4080 | put_bh(iloc->bh); |
| 4081 | return err; |
| 4082 | } |
| 4083 | |
| 4084 | /* |
| 4085 | * On success, We end up with an outstanding reference count against |
| 4086 | * iloc->bh. This _must_ be cleaned up later. |
| 4087 | */ |
| 4088 | |
| 4089 | int |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4090 | ext4_reserve_inode_write(handle_t *handle, struct inode *inode, |
| 4091 | struct ext4_iloc *iloc) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4092 | { |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4093 | int err; |
| 4094 | |
| 4095 | err = ext4_get_inode_loc(inode, iloc); |
| 4096 | if (!err) { |
| 4097 | BUFFER_TRACE(iloc->bh, "get_write_access"); |
| 4098 | err = ext4_journal_get_write_access(handle, iloc->bh); |
| 4099 | if (err) { |
| 4100 | brelse(iloc->bh); |
| 4101 | iloc->bh = NULL; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4102 | } |
| 4103 | } |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4104 | ext4_std_error(inode->i_sb, err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4105 | return err; |
| 4106 | } |
| 4107 | |
| 4108 | /* |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 4109 | * Expand an inode by new_extra_isize bytes. |
| 4110 | * Returns 0 on success or negative error number on failure. |
| 4111 | */ |
Aneesh Kumar K.V | 1d03ec9 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4112 | static int ext4_expand_extra_isize(struct inode *inode, |
| 4113 | unsigned int new_extra_isize, |
| 4114 | struct ext4_iloc iloc, |
| 4115 | handle_t *handle) |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 4116 | { |
| 4117 | struct ext4_inode *raw_inode; |
| 4118 | struct ext4_xattr_ibody_header *header; |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 4119 | |
| 4120 | if (EXT4_I(inode)->i_extra_isize >= new_extra_isize) |
| 4121 | return 0; |
| 4122 | |
| 4123 | raw_inode = ext4_raw_inode(&iloc); |
| 4124 | |
| 4125 | header = IHDR(inode, raw_inode); |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 4126 | |
| 4127 | /* No extended attributes present */ |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 4128 | if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) || |
| 4129 | header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) { |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 4130 | memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0, |
| 4131 | new_extra_isize); |
| 4132 | EXT4_I(inode)->i_extra_isize = new_extra_isize; |
| 4133 | return 0; |
| 4134 | } |
| 4135 | |
| 4136 | /* try to expand with EAs present */ |
| 4137 | return ext4_expand_extra_isize_ea(inode, new_extra_isize, |
| 4138 | raw_inode, handle); |
| 4139 | } |
| 4140 | |
| 4141 | /* |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4142 | * What we do here is to mark the in-core inode as clean with respect to inode |
| 4143 | * dirtiness (it may still be data-dirty). |
| 4144 | * This means that the in-core inode may be reaped by prune_icache |
| 4145 | * without having to perform any I/O. This is a very good thing, |
| 4146 | * because *any* task may call prune_icache - even ones which |
| 4147 | * have a transaction open against a different journal. |
| 4148 | * |
| 4149 | * Is this cheating? Not really. Sure, we haven't written the |
| 4150 | * inode out, but prune_icache isn't a user-visible syncing function. |
| 4151 | * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync) |
| 4152 | * we start and wait on commits. |
| 4153 | * |
| 4154 | * Is this efficient/effective? Well, we're being nice to the system |
| 4155 | * by cleaning up our inodes proactively so they can be reaped |
| 4156 | * without I/O. But we are potentially leaving up to five seconds' |
| 4157 | * worth of inodes floating about which prune_icache wants us to |
| 4158 | * write out. One way to fix that would be to get prune_icache() |
| 4159 | * to do a write_super() to free up some memory. It has the desired |
| 4160 | * effect. |
| 4161 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4162 | int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4163 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4164 | struct ext4_iloc iloc; |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 4165 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
| 4166 | static unsigned int mnt_count; |
| 4167 | int err, ret; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4168 | |
| 4169 | might_sleep(); |
Theodore Ts'o | 7ff9c07 | 2010-11-08 13:51:33 -0500 | [diff] [blame] | 4170 | trace_ext4_mark_inode_dirty(inode, _RET_IP_); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4171 | err = ext4_reserve_inode_write(handle, inode, &iloc); |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4172 | if (ext4_handle_valid(handle) && |
| 4173 | EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize && |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 4174 | !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) { |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 4175 | /* |
| 4176 | * We need extra buffer credits since we may write into EA block |
| 4177 | * with this same handle. If journal_extend fails, then it will |
| 4178 | * only result in a minor loss of functionality for that inode. |
| 4179 | * If this is felt to be critical, then e2fsck should be run to |
| 4180 | * force a large enough s_min_extra_isize. |
| 4181 | */ |
| 4182 | if ((jbd2_journal_extend(handle, |
| 4183 | EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) { |
| 4184 | ret = ext4_expand_extra_isize(inode, |
| 4185 | sbi->s_want_extra_isize, |
| 4186 | iloc, handle); |
| 4187 | if (ret) { |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 4188 | ext4_set_inode_state(inode, |
| 4189 | EXT4_STATE_NO_EXPAND); |
Aneesh Kumar K.V | c1bddad | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 4190 | if (mnt_count != |
| 4191 | le16_to_cpu(sbi->s_es->s_mnt_count)) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 4192 | ext4_warning(inode->i_sb, |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 4193 | "Unable to expand inode %lu. Delete" |
| 4194 | " some EAs or run e2fsck.", |
| 4195 | inode->i_ino); |
Aneesh Kumar K.V | c1bddad | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 4196 | mnt_count = |
| 4197 | le16_to_cpu(sbi->s_es->s_mnt_count); |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 4198 | } |
| 4199 | } |
| 4200 | } |
| 4201 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4202 | if (!err) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4203 | err = ext4_mark_iloc_dirty(handle, inode, &iloc); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4204 | return err; |
| 4205 | } |
| 4206 | |
| 4207 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4208 | * ext4_dirty_inode() is called from __mark_inode_dirty() |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4209 | * |
| 4210 | * We're really interested in the case where a file is being extended. |
| 4211 | * i_size has been changed by generic_commit_write() and we thus need |
| 4212 | * to include the updated inode in the current transaction. |
| 4213 | * |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 4214 | * Also, dquot_alloc_block() will always dirty the inode when blocks |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4215 | * are allocated to the file. |
| 4216 | * |
| 4217 | * If the inode is marked synchronous, we don't honour that here - doing |
| 4218 | * so would cause a commit on atime updates, which we don't bother doing. |
| 4219 | * We handle synchronous inodes at the highest possible level. |
| 4220 | */ |
Christoph Hellwig | aa38572 | 2011-05-27 06:53:02 -0400 | [diff] [blame] | 4221 | void ext4_dirty_inode(struct inode *inode, int flags) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4222 | { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4223 | handle_t *handle; |
| 4224 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4225 | handle = ext4_journal_start(inode, 2); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4226 | if (IS_ERR(handle)) |
| 4227 | goto out; |
Curt Wohlgemuth | f3dc272 | 2009-09-29 16:06:01 -0400 | [diff] [blame] | 4228 | |
Curt Wohlgemuth | f3dc272 | 2009-09-29 16:06:01 -0400 | [diff] [blame] | 4229 | ext4_mark_inode_dirty(handle, inode); |
| 4230 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4231 | ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4232 | out: |
| 4233 | return; |
| 4234 | } |
| 4235 | |
| 4236 | #if 0 |
| 4237 | /* |
| 4238 | * Bind an inode's backing buffer_head into this transaction, to prevent |
| 4239 | * it from being flushed to disk early. Unlike |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4240 | * ext4_reserve_inode_write, this leaves behind no bh reference and |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4241 | * returns no iloc structure, so the caller needs to repeat the iloc |
| 4242 | * lookup to mark the inode dirty later. |
| 4243 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4244 | static int ext4_pin_inode(handle_t *handle, struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4245 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4246 | struct ext4_iloc iloc; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4247 | |
| 4248 | int err = 0; |
| 4249 | if (handle) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4250 | err = ext4_get_inode_loc(inode, &iloc); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4251 | if (!err) { |
| 4252 | BUFFER_TRACE(iloc.bh, "get_write_access"); |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 4253 | err = jbd2_journal_get_write_access(handle, iloc.bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4254 | if (!err) |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4255 | err = ext4_handle_dirty_metadata(handle, |
Curt Wohlgemuth | 73b50c1 | 2010-02-16 15:06:29 -0500 | [diff] [blame] | 4256 | NULL, |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4257 | iloc.bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4258 | brelse(iloc.bh); |
| 4259 | } |
| 4260 | } |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4261 | ext4_std_error(inode->i_sb, err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4262 | return err; |
| 4263 | } |
| 4264 | #endif |
| 4265 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4266 | int ext4_change_inode_journal_flag(struct inode *inode, int val) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4267 | { |
| 4268 | journal_t *journal; |
| 4269 | handle_t *handle; |
| 4270 | int err; |
| 4271 | |
| 4272 | /* |
| 4273 | * We have to be very careful here: changing a data block's |
| 4274 | * journaling status dynamically is dangerous. If we write a |
| 4275 | * data block to the journal, change the status and then delete |
| 4276 | * that block, we risk forgetting to revoke the old log record |
| 4277 | * from the journal and so a subsequent replay can corrupt data. |
| 4278 | * So, first we make sure that the journal is empty and that |
| 4279 | * nobody is changing anything. |
| 4280 | */ |
| 4281 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4282 | journal = EXT4_JOURNAL(inode); |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4283 | if (!journal) |
| 4284 | return 0; |
Dave Hansen | d699594 | 2007-07-18 08:33:51 -0400 | [diff] [blame] | 4285 | if (is_journal_aborted(journal)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4286 | return -EROFS; |
| 4287 | |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 4288 | jbd2_journal_lock_updates(journal); |
| 4289 | jbd2_journal_flush(journal); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4290 | |
| 4291 | /* |
| 4292 | * OK, there are no updates running now, and all cached data is |
| 4293 | * synced to disk. We are now in a completely consistent state |
| 4294 | * which doesn't have anything in the journal, and we know that |
| 4295 | * no filesystem updates are running, so it is safe to modify |
| 4296 | * the inode's in-core data-journaling state flag now. |
| 4297 | */ |
| 4298 | |
| 4299 | if (val) |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 4300 | ext4_set_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4301 | else |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 4302 | ext4_clear_inode_flag(inode, EXT4_INODE_JOURNAL_DATA); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4303 | ext4_set_aops(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4304 | |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 4305 | jbd2_journal_unlock_updates(journal); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4306 | |
| 4307 | /* Finally we can mark the inode as dirty. */ |
| 4308 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4309 | handle = ext4_journal_start(inode, 1); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4310 | if (IS_ERR(handle)) |
| 4311 | return PTR_ERR(handle); |
| 4312 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4313 | err = ext4_mark_inode_dirty(handle, inode); |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4314 | ext4_handle_sync(handle); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4315 | ext4_journal_stop(handle); |
| 4316 | ext4_std_error(inode->i_sb, err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4317 | |
| 4318 | return err; |
| 4319 | } |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4320 | |
| 4321 | static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh) |
| 4322 | { |
| 4323 | return !buffer_mapped(bh); |
| 4324 | } |
| 4325 | |
Nick Piggin | c2ec175 | 2009-03-31 15:23:21 -0700 | [diff] [blame] | 4326 | int ext4_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4327 | { |
Nick Piggin | c2ec175 | 2009-03-31 15:23:21 -0700 | [diff] [blame] | 4328 | struct page *page = vmf->page; |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4329 | loff_t size; |
| 4330 | unsigned long len; |
Jan Kara | 9ea7df5 | 2011-06-24 14:29:41 -0400 | [diff] [blame] | 4331 | int ret; |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4332 | struct file *file = vma->vm_file; |
| 4333 | struct inode *inode = file->f_path.dentry->d_inode; |
| 4334 | struct address_space *mapping = inode->i_mapping; |
Jan Kara | 9ea7df5 | 2011-06-24 14:29:41 -0400 | [diff] [blame] | 4335 | handle_t *handle; |
| 4336 | get_block_t *get_block; |
| 4337 | int retries = 0; |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4338 | |
| 4339 | /* |
Jan Kara | 9ea7df5 | 2011-06-24 14:29:41 -0400 | [diff] [blame] | 4340 | * This check is racy but catches the common case. We rely on |
| 4341 | * __block_page_mkwrite() to do a reliable check. |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4342 | */ |
Jan Kara | 9ea7df5 | 2011-06-24 14:29:41 -0400 | [diff] [blame] | 4343 | vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE); |
| 4344 | /* Delalloc case is easy... */ |
| 4345 | if (test_opt(inode->i_sb, DELALLOC) && |
| 4346 | !ext4_should_journal_data(inode) && |
| 4347 | !ext4_nonda_switch(inode->i_sb)) { |
| 4348 | do { |
| 4349 | ret = __block_page_mkwrite(vma, vmf, |
| 4350 | ext4_da_get_block_prep); |
| 4351 | } while (ret == -ENOSPC && |
| 4352 | ext4_should_retry_alloc(inode->i_sb, &retries)); |
| 4353 | goto out_ret; |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4354 | } |
Darrick J. Wong | 0e49989 | 2011-05-18 13:55:20 -0400 | [diff] [blame] | 4355 | |
| 4356 | lock_page(page); |
Jan Kara | 9ea7df5 | 2011-06-24 14:29:41 -0400 | [diff] [blame] | 4357 | size = i_size_read(inode); |
| 4358 | /* Page got truncated from under us? */ |
| 4359 | if (page->mapping != mapping || page_offset(page) > size) { |
| 4360 | unlock_page(page); |
| 4361 | ret = VM_FAULT_NOPAGE; |
| 4362 | goto out; |
Darrick J. Wong | 0e49989 | 2011-05-18 13:55:20 -0400 | [diff] [blame] | 4363 | } |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4364 | |
| 4365 | if (page->index == size >> PAGE_CACHE_SHIFT) |
| 4366 | len = size & ~PAGE_CACHE_MASK; |
| 4367 | else |
| 4368 | len = PAGE_CACHE_SIZE; |
Aneesh Kumar K.V | a827eaf | 2009-09-09 22:36:03 -0400 | [diff] [blame] | 4369 | /* |
Jan Kara | 9ea7df5 | 2011-06-24 14:29:41 -0400 | [diff] [blame] | 4370 | * Return if we have all the buffers mapped. This avoids the need to do |
| 4371 | * journal_start/journal_stop which can block and take a long time |
Aneesh Kumar K.V | a827eaf | 2009-09-09 22:36:03 -0400 | [diff] [blame] | 4372 | */ |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4373 | if (page_has_buffers(page)) { |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4374 | if (!walk_page_buffers(NULL, page_buffers(page), 0, len, NULL, |
Aneesh Kumar K.V | a827eaf | 2009-09-09 22:36:03 -0400 | [diff] [blame] | 4375 | ext4_bh_unmapped)) { |
Jan Kara | 9ea7df5 | 2011-06-24 14:29:41 -0400 | [diff] [blame] | 4376 | /* Wait so that we don't change page under IO */ |
| 4377 | wait_on_page_writeback(page); |
| 4378 | ret = VM_FAULT_LOCKED; |
| 4379 | goto out; |
Aneesh Kumar K.V | a827eaf | 2009-09-09 22:36:03 -0400 | [diff] [blame] | 4380 | } |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4381 | } |
Aneesh Kumar K.V | a827eaf | 2009-09-09 22:36:03 -0400 | [diff] [blame] | 4382 | unlock_page(page); |
Jan Kara | 9ea7df5 | 2011-06-24 14:29:41 -0400 | [diff] [blame] | 4383 | /* OK, we need to fill the hole... */ |
| 4384 | if (ext4_should_dioread_nolock(inode)) |
| 4385 | get_block = ext4_get_block_write; |
| 4386 | else |
| 4387 | get_block = ext4_get_block; |
| 4388 | retry_alloc: |
| 4389 | handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode)); |
| 4390 | if (IS_ERR(handle)) { |
Nick Piggin | c2ec175 | 2009-03-31 15:23:21 -0700 | [diff] [blame] | 4391 | ret = VM_FAULT_SIGBUS; |
Jan Kara | 9ea7df5 | 2011-06-24 14:29:41 -0400 | [diff] [blame] | 4392 | goto out; |
| 4393 | } |
| 4394 | ret = __block_page_mkwrite(vma, vmf, get_block); |
| 4395 | if (!ret && ext4_should_journal_data(inode)) { |
| 4396 | if (walk_page_buffers(handle, page_buffers(page), 0, |
| 4397 | PAGE_CACHE_SIZE, NULL, do_journal_get_write_access)) { |
| 4398 | unlock_page(page); |
| 4399 | ret = VM_FAULT_SIGBUS; |
| 4400 | goto out; |
| 4401 | } |
| 4402 | ext4_set_inode_state(inode, EXT4_STATE_JDATA); |
| 4403 | } |
| 4404 | ext4_journal_stop(handle); |
| 4405 | if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) |
| 4406 | goto retry_alloc; |
| 4407 | out_ret: |
| 4408 | ret = block_page_mkwrite_return(ret); |
| 4409 | out: |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4410 | return ret; |
| 4411 | } |