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 | * |
| 15 | * Goal-directed block allocation by Stephen Tweedie |
| 16 | * (sct@redhat.com), 1993, 1998 |
| 17 | * Big-endian to little-endian byte-swapping/bitmaps by |
| 18 | * David S. Miller (davem@caip.rutgers.edu), 1995 |
| 19 | * 64-bit file support on 64-bit platforms by Jakub Jelinek |
| 20 | * (jj@sunsite.ms.mff.cuni.cz) |
| 21 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 22 | * Assorted race fixes, rewrite of ext4_get_block() by Al Viro, 2000 |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 23 | */ |
| 24 | |
| 25 | #include <linux/module.h> |
| 26 | #include <linux/fs.h> |
| 27 | #include <linux/time.h> |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 28 | #include <linux/jbd2.h> |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 29 | #include <linux/highuid.h> |
| 30 | #include <linux/pagemap.h> |
| 31 | #include <linux/quotaops.h> |
| 32 | #include <linux/string.h> |
| 33 | #include <linux/buffer_head.h> |
| 34 | #include <linux/writeback.h> |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 35 | #include <linux/pagevec.h> |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 36 | #include <linux/mpage.h> |
Duane Griffin | e83c139 | 2008-12-19 20:47:15 +0000 | [diff] [blame] | 37 | #include <linux/namei.h> |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 38 | #include <linux/uio.h> |
| 39 | #include <linux/bio.h> |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 40 | #include <linux/workqueue.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" |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 46 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 47 | #include <trace/events/ext4.h> |
| 48 | |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 49 | #define MPAGE_DA_EXTENT_TAIL 0x01 |
| 50 | |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 51 | static inline int ext4_begin_ordered_truncate(struct inode *inode, |
| 52 | loff_t new_size) |
| 53 | { |
Jan Kara | 7f5aa21 | 2009-02-10 11:15:34 -0500 | [diff] [blame] | 54 | return jbd2_journal_begin_ordered_truncate( |
| 55 | EXT4_SB(inode->i_sb)->s_journal, |
| 56 | &EXT4_I(inode)->jinode, |
| 57 | new_size); |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 58 | } |
| 59 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 60 | static void ext4_invalidatepage(struct page *page, unsigned long offset); |
| 61 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 62 | /* |
| 63 | * Test whether an inode is a fast symlink. |
| 64 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 65 | static int ext4_inode_is_fast_symlink(struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 66 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 67 | int ea_blocks = EXT4_I(inode)->i_file_acl ? |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 68 | (inode->i_sb->s_blocksize >> 9) : 0; |
| 69 | |
| 70 | return (S_ISLNK(inode->i_mode) && inode->i_blocks - ea_blocks == 0); |
| 71 | } |
| 72 | |
| 73 | /* |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 74 | * Work out how many blocks we need to proceed with the next chunk of a |
| 75 | * truncate transaction. |
| 76 | */ |
| 77 | static unsigned long blocks_for_truncate(struct inode *inode) |
| 78 | { |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 79 | ext4_lblk_t needed; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 80 | |
| 81 | needed = inode->i_blocks >> (inode->i_sb->s_blocksize_bits - 9); |
| 82 | |
| 83 | /* Give ourselves just enough room to cope with inodes in which |
| 84 | * i_blocks is corrupt: we've seen disk corruptions in the past |
| 85 | * which resulted in random data in an inode which looked enough |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 86 | * like a regular file for ext4 to try to delete it. Things |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 87 | * will go a bit crazy if that happens, but at least we should |
| 88 | * try not to panic the whole kernel. */ |
| 89 | if (needed < 2) |
| 90 | needed = 2; |
| 91 | |
| 92 | /* But we need to bound the transaction so we don't overflow the |
| 93 | * journal. */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 94 | if (needed > EXT4_MAX_TRANS_DATA) |
| 95 | needed = EXT4_MAX_TRANS_DATA; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 96 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 97 | return EXT4_DATA_TRANS_BLOCKS(inode->i_sb) + needed; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | /* |
| 101 | * Truncate transactions can be complex and absolutely huge. So we need to |
| 102 | * be able to restart the transaction at a conventient checkpoint to make |
| 103 | * sure we don't overflow the journal. |
| 104 | * |
| 105 | * start_transaction gets us a new handle for a truncate transaction, |
| 106 | * and extend_transaction tries to extend the existing one a bit. If |
| 107 | * extend fails, we need to propagate the failure up and restart the |
| 108 | * transaction in the top-level truncate loop. --sct |
| 109 | */ |
| 110 | static handle_t *start_transaction(struct inode *inode) |
| 111 | { |
| 112 | handle_t *result; |
| 113 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 114 | result = ext4_journal_start(inode, blocks_for_truncate(inode)); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 115 | if (!IS_ERR(result)) |
| 116 | return result; |
| 117 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 118 | ext4_std_error(inode->i_sb, PTR_ERR(result)); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 119 | return result; |
| 120 | } |
| 121 | |
| 122 | /* |
| 123 | * Try to extend this transaction for the purposes of truncation. |
| 124 | * |
| 125 | * Returns 0 if we managed to create more room. If we can't create more |
| 126 | * room, and the transaction must be restarted we return 1. |
| 127 | */ |
| 128 | static int try_to_extend_transaction(handle_t *handle, struct inode *inode) |
| 129 | { |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 130 | if (!ext4_handle_valid(handle)) |
| 131 | return 0; |
| 132 | if (ext4_handle_has_enough_credits(handle, EXT4_RESERVE_TRANS_BLOCKS+1)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 133 | return 0; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 134 | if (!ext4_journal_extend(handle, blocks_for_truncate(inode))) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 135 | return 0; |
| 136 | return 1; |
| 137 | } |
| 138 | |
| 139 | /* |
| 140 | * Restart the transaction associated with *handle. This does a commit, |
| 141 | * so before we call here everything must be consistently dirtied against |
| 142 | * this transaction. |
| 143 | */ |
Aneesh Kumar K.V | fa5d111 | 2009-11-02 18:50:49 -0500 | [diff] [blame] | 144 | int ext4_truncate_restart_trans(handle_t *handle, struct inode *inode, |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 145 | int nblocks) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 146 | { |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 147 | int ret; |
| 148 | |
| 149 | /* |
| 150 | * Drop i_data_sem to avoid deadlock with ext4_get_blocks At this |
| 151 | * moment, get_block can be called only for blocks inside i_size since |
| 152 | * page cache has been already dropped and writes are blocked by |
| 153 | * i_mutex. So we can safely drop the i_data_sem here. |
| 154 | */ |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 155 | BUG_ON(EXT4_JOURNAL(inode) == NULL); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 156 | jbd_debug(2, "restarting handle %p\n", handle); |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 157 | up_write(&EXT4_I(inode)->i_data_sem); |
| 158 | ret = ext4_journal_restart(handle, blocks_for_truncate(inode)); |
| 159 | down_write(&EXT4_I(inode)->i_data_sem); |
Aneesh Kumar K.V | fa5d111 | 2009-11-02 18:50:49 -0500 | [diff] [blame] | 160 | ext4_discard_preallocations(inode); |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 161 | |
| 162 | return ret; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | /* |
| 166 | * Called at the last iput() if i_nlink is zero. |
| 167 | */ |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 168 | void ext4_delete_inode(struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 169 | { |
| 170 | handle_t *handle; |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 171 | int err; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 172 | |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 173 | if (ext4_should_order_data(inode)) |
| 174 | ext4_begin_ordered_truncate(inode, 0); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 175 | truncate_inode_pages(&inode->i_data, 0); |
| 176 | |
| 177 | if (is_bad_inode(inode)) |
| 178 | goto no_delete; |
| 179 | |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 180 | handle = ext4_journal_start(inode, blocks_for_truncate(inode)+3); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 181 | if (IS_ERR(handle)) { |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 182 | ext4_std_error(inode->i_sb, PTR_ERR(handle)); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 183 | /* |
| 184 | * If we're going to skip the normal cleanup, we still need to |
| 185 | * make sure that the in-core orphan linked list is properly |
| 186 | * cleaned up. |
| 187 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 188 | ext4_orphan_del(NULL, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 189 | goto no_delete; |
| 190 | } |
| 191 | |
| 192 | if (IS_SYNC(inode)) |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 193 | ext4_handle_sync(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 194 | inode->i_size = 0; |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 195 | err = ext4_mark_inode_dirty(handle, inode); |
| 196 | if (err) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 197 | ext4_warning(inode->i_sb, |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 198 | "couldn't mark inode dirty (err %d)", err); |
| 199 | goto stop_handle; |
| 200 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 201 | if (inode->i_blocks) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 202 | ext4_truncate(inode); |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 203 | |
| 204 | /* |
| 205 | * ext4_ext_truncate() doesn't reserve any slop when it |
| 206 | * restarts journal transactions; therefore there may not be |
| 207 | * enough credits left in the handle to remove the inode from |
| 208 | * the orphan list and set the dtime field. |
| 209 | */ |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 210 | if (!ext4_handle_has_enough_credits(handle, 3)) { |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 211 | err = ext4_journal_extend(handle, 3); |
| 212 | if (err > 0) |
| 213 | err = ext4_journal_restart(handle, 3); |
| 214 | if (err != 0) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 215 | ext4_warning(inode->i_sb, |
Theodore Ts'o | bc965ab | 2008-08-02 21:10:38 -0400 | [diff] [blame] | 216 | "couldn't extend journal (err %d)", err); |
| 217 | stop_handle: |
| 218 | ext4_journal_stop(handle); |
| 219 | goto no_delete; |
| 220 | } |
| 221 | } |
| 222 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 223 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 224 | * Kill off the orphan record which ext4_truncate created. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 225 | * AKPM: I think this can be inside the above `if'. |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 226 | * 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] | 227 | * deletion of a non-existent orphan - this is because we don't |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 228 | * know if ext4_truncate() actually created an orphan record. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 229 | * (Well, we could do this if we need to, but heck - it works) |
| 230 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 231 | ext4_orphan_del(handle, inode); |
| 232 | EXT4_I(inode)->i_dtime = get_seconds(); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 233 | |
| 234 | /* |
| 235 | * One subtle ordering requirement: if anything has gone wrong |
| 236 | * (transaction abort, IO errors, whatever), then we can still |
| 237 | * do these next steps (the fs will already have been marked as |
| 238 | * having errors), but we can't free the inode if the mark_dirty |
| 239 | * fails. |
| 240 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 241 | if (ext4_mark_inode_dirty(handle, inode)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 242 | /* If that failed, just do the required in-core inode clear. */ |
| 243 | clear_inode(inode); |
| 244 | else |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 245 | ext4_free_inode(handle, inode); |
| 246 | ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 247 | return; |
| 248 | no_delete: |
| 249 | clear_inode(inode); /* We must guarantee clearing of inode... */ |
| 250 | } |
| 251 | |
| 252 | typedef struct { |
| 253 | __le32 *p; |
| 254 | __le32 key; |
| 255 | struct buffer_head *bh; |
| 256 | } Indirect; |
| 257 | |
| 258 | static inline void add_chain(Indirect *p, struct buffer_head *bh, __le32 *v) |
| 259 | { |
| 260 | p->key = *(p->p = v); |
| 261 | p->bh = bh; |
| 262 | } |
| 263 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 264 | /** |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 265 | * ext4_block_to_path - parse the block number into array of offsets |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 266 | * @inode: inode in question (we are only interested in its superblock) |
| 267 | * @i_block: block number to be parsed |
| 268 | * @offsets: array to store the offsets in |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 269 | * @boundary: set this non-zero if the referred-to block is likely to be |
| 270 | * followed (on disk) by an indirect block. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 271 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 272 | * To store the locations of file's data ext4 uses a data structure common |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 273 | * for UNIX filesystems - tree of pointers anchored in the inode, with |
| 274 | * data blocks at leaves and indirect blocks in intermediate nodes. |
| 275 | * This function translates the block number into path in that tree - |
| 276 | * return value is the path length and @offsets[n] is the offset of |
| 277 | * pointer to (n+1)th node in the nth one. If @block is out of range |
| 278 | * (negative or too large) warning is printed and zero returned. |
| 279 | * |
| 280 | * Note: function doesn't find node addresses, so no IO is needed. All |
| 281 | * we need to know is the capacity of indirect blocks (taken from the |
| 282 | * inode->i_sb). |
| 283 | */ |
| 284 | |
| 285 | /* |
| 286 | * Portability note: the last comparison (check that we fit into triple |
| 287 | * indirect block) is spelled differently, because otherwise on an |
| 288 | * architecture with 32-bit longs and 8Kb pages we might get into trouble |
| 289 | * if our filesystem had 8Kb blocks. We might use long long, but that would |
| 290 | * kill us on x86. Oh, well, at least the sign propagation does not matter - |
| 291 | * i_block would have to be negative in the very beginning, so we would not |
| 292 | * get there at all. |
| 293 | */ |
| 294 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 295 | static int ext4_block_to_path(struct inode *inode, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 296 | ext4_lblk_t i_block, |
| 297 | ext4_lblk_t offsets[4], int *boundary) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 298 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 299 | int ptrs = EXT4_ADDR_PER_BLOCK(inode->i_sb); |
| 300 | int ptrs_bits = EXT4_ADDR_PER_BLOCK_BITS(inode->i_sb); |
| 301 | const long direct_blocks = EXT4_NDIR_BLOCKS, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 302 | indirect_blocks = ptrs, |
| 303 | double_blocks = (1 << (ptrs_bits * 2)); |
| 304 | int n = 0; |
| 305 | int final = 0; |
| 306 | |
Roel Kluin | c333e07 | 2009-08-10 22:47:22 -0400 | [diff] [blame] | 307 | if (i_block < direct_blocks) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 308 | offsets[n++] = i_block; |
| 309 | final = direct_blocks; |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 310 | } else if ((i_block -= direct_blocks) < indirect_blocks) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 311 | offsets[n++] = EXT4_IND_BLOCK; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 312 | offsets[n++] = i_block; |
| 313 | final = ptrs; |
| 314 | } else if ((i_block -= indirect_blocks) < double_blocks) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 315 | offsets[n++] = EXT4_DIND_BLOCK; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 316 | offsets[n++] = i_block >> ptrs_bits; |
| 317 | offsets[n++] = i_block & (ptrs - 1); |
| 318 | final = ptrs; |
| 319 | } else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 320 | offsets[n++] = EXT4_TIND_BLOCK; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 321 | offsets[n++] = i_block >> (ptrs_bits * 2); |
| 322 | offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1); |
| 323 | offsets[n++] = i_block & (ptrs - 1); |
| 324 | final = ptrs; |
| 325 | } else { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 326 | ext4_warning(inode->i_sb, "block %lu > max in inode %lu", |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 327 | i_block + direct_blocks + |
| 328 | indirect_blocks + double_blocks, inode->i_ino); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 329 | } |
| 330 | if (boundary) |
| 331 | *boundary = final - 1 - (i_block & (ptrs - 1)); |
| 332 | return n; |
| 333 | } |
| 334 | |
Thiemo Nagel | fe2c819 | 2009-03-31 08:36:10 -0400 | [diff] [blame] | 335 | static int __ext4_check_blockref(const char *function, struct inode *inode, |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 336 | __le32 *p, unsigned int max) |
| 337 | { |
Thiemo Nagel | f73953c | 2009-04-07 18:46:47 -0400 | [diff] [blame] | 338 | __le32 *bref = p; |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 339 | unsigned int blk; |
| 340 | |
Thiemo Nagel | fe2c819 | 2009-03-31 08:36:10 -0400 | [diff] [blame] | 341 | while (bref < p+max) { |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 342 | blk = le32_to_cpu(*bref++); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 343 | if (blk && |
| 344 | unlikely(!ext4_data_block_valid(EXT4_SB(inode->i_sb), |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 345 | blk, 1))) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 346 | __ext4_error(inode->i_sb, function, |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 347 | "invalid block reference %u " |
| 348 | "in inode #%lu", blk, inode->i_ino); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 349 | return -EIO; |
| 350 | } |
| 351 | } |
| 352 | return 0; |
Thiemo Nagel | fe2c819 | 2009-03-31 08:36:10 -0400 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | |
| 356 | #define ext4_check_indirect_blockref(inode, bh) \ |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 357 | __ext4_check_blockref(__func__, inode, (__le32 *)(bh)->b_data, \ |
Thiemo Nagel | fe2c819 | 2009-03-31 08:36:10 -0400 | [diff] [blame] | 358 | EXT4_ADDR_PER_BLOCK((inode)->i_sb)) |
| 359 | |
| 360 | #define ext4_check_inode_blockref(inode) \ |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 361 | __ext4_check_blockref(__func__, inode, EXT4_I(inode)->i_data, \ |
Thiemo Nagel | fe2c819 | 2009-03-31 08:36:10 -0400 | [diff] [blame] | 362 | EXT4_NDIR_BLOCKS) |
| 363 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 364 | /** |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 365 | * ext4_get_branch - read the chain of indirect blocks leading to data |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 366 | * @inode: inode in question |
| 367 | * @depth: depth of the chain (1 - direct pointer, etc.) |
| 368 | * @offsets: offsets of pointers in inode/indirect blocks |
| 369 | * @chain: place to store the result |
| 370 | * @err: here we store the error value |
| 371 | * |
| 372 | * Function fills the array of triples <key, p, bh> and returns %NULL |
| 373 | * if everything went OK or the pointer to the last filled triple |
| 374 | * (incomplete one) otherwise. Upon the return chain[i].key contains |
| 375 | * the number of (i+1)-th block in the chain (as it is stored in memory, |
| 376 | * i.e. little-endian 32-bit), chain[i].p contains the address of that |
| 377 | * number (it points into struct inode for i==0 and into the bh->b_data |
| 378 | * for i>0) and chain[i].bh points to the buffer_head of i-th indirect |
| 379 | * block for i>0 and NULL for i==0. In other words, it holds the block |
| 380 | * numbers of the chain, addresses they were taken from (and where we can |
| 381 | * verify that chain did not change) and buffer_heads hosting these |
| 382 | * numbers. |
| 383 | * |
| 384 | * Function stops when it stumbles upon zero pointer (absent block) |
| 385 | * (pointer to last triple returned, *@err == 0) |
| 386 | * or when it gets an IO error reading an indirect block |
| 387 | * (ditto, *@err == -EIO) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 388 | * or when it reads all @depth-1 indirect blocks successfully and finds |
| 389 | * the whole chain, all way to the data (returns %NULL, *err == 0). |
Aneesh Kumar K.V | c278bfe | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 390 | * |
| 391 | * Need to be called with |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 392 | * down_read(&EXT4_I(inode)->i_data_sem) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 393 | */ |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 394 | static Indirect *ext4_get_branch(struct inode *inode, int depth, |
| 395 | ext4_lblk_t *offsets, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 396 | Indirect chain[4], int *err) |
| 397 | { |
| 398 | struct super_block *sb = inode->i_sb; |
| 399 | Indirect *p = chain; |
| 400 | struct buffer_head *bh; |
| 401 | |
| 402 | *err = 0; |
| 403 | /* i_data is not going away, no lock needed */ |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 404 | add_chain(chain, NULL, EXT4_I(inode)->i_data + *offsets); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 405 | if (!p->key) |
| 406 | goto no_block; |
| 407 | while (--depth) { |
Thiemo Nagel | fe2c819 | 2009-03-31 08:36:10 -0400 | [diff] [blame] | 408 | bh = sb_getblk(sb, le32_to_cpu(p->key)); |
| 409 | if (unlikely(!bh)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 410 | goto failure; |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 411 | |
Thiemo Nagel | fe2c819 | 2009-03-31 08:36:10 -0400 | [diff] [blame] | 412 | if (!bh_uptodate_or_lock(bh)) { |
| 413 | if (bh_submit_read(bh) < 0) { |
| 414 | put_bh(bh); |
| 415 | goto failure; |
| 416 | } |
| 417 | /* validate block references */ |
| 418 | if (ext4_check_indirect_blockref(inode, bh)) { |
| 419 | put_bh(bh); |
| 420 | goto failure; |
| 421 | } |
| 422 | } |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 423 | |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 424 | add_chain(++p, bh, (__le32 *)bh->b_data + *++offsets); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 425 | /* Reader: end */ |
| 426 | if (!p->key) |
| 427 | goto no_block; |
| 428 | } |
| 429 | return NULL; |
| 430 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 431 | failure: |
| 432 | *err = -EIO; |
| 433 | no_block: |
| 434 | return p; |
| 435 | } |
| 436 | |
| 437 | /** |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 438 | * ext4_find_near - find a place for allocation with sufficient locality |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 439 | * @inode: owner |
| 440 | * @ind: descriptor of indirect block. |
| 441 | * |
Benoit Boissinot | 1cc8dcf | 2008-04-21 22:45:55 +0000 | [diff] [blame] | 442 | * This function returns the preferred place for block allocation. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 443 | * It is used when heuristic for sequential allocation fails. |
| 444 | * Rules are: |
| 445 | * + if there is a block to the left of our position - allocate near it. |
| 446 | * + if pointer will live in indirect block - allocate near that block. |
| 447 | * + if pointer will live in inode - allocate in the same |
| 448 | * cylinder group. |
| 449 | * |
| 450 | * In the latter case we colour the starting block by the callers PID to |
| 451 | * prevent it from clashing with concurrent allocations for a different inode |
| 452 | * in the same block group. The PID is used here so that functionally related |
| 453 | * files will be close-by on-disk. |
| 454 | * |
| 455 | * Caller must make sure that @ind is valid and will stay that way. |
| 456 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 457 | static ext4_fsblk_t ext4_find_near(struct inode *inode, Indirect *ind) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 458 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 459 | struct ext4_inode_info *ei = EXT4_I(inode); |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 460 | __le32 *start = ind->bh ? (__le32 *) ind->bh->b_data : ei->i_data; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 461 | __le32 *p; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 462 | ext4_fsblk_t bg_start; |
Valerie Clement | 74d3487 | 2008-02-15 13:43:07 -0500 | [diff] [blame] | 463 | ext4_fsblk_t last_block; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 464 | ext4_grpblk_t colour; |
Theodore Ts'o | a491212 | 2009-03-12 12:18:34 -0400 | [diff] [blame] | 465 | ext4_group_t block_group; |
| 466 | int flex_size = ext4_flex_bg_size(EXT4_SB(inode->i_sb)); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 467 | |
| 468 | /* Try to find previous block */ |
| 469 | for (p = ind->p - 1; p >= start; p--) { |
| 470 | if (*p) |
| 471 | return le32_to_cpu(*p); |
| 472 | } |
| 473 | |
| 474 | /* No such thing, so let's try location of indirect block */ |
| 475 | if (ind->bh) |
| 476 | return ind->bh->b_blocknr; |
| 477 | |
| 478 | /* |
| 479 | * It is going to be referred to from the inode itself? OK, just put it |
| 480 | * into the same cylinder group then. |
| 481 | */ |
Theodore Ts'o | a491212 | 2009-03-12 12:18:34 -0400 | [diff] [blame] | 482 | block_group = ei->i_block_group; |
| 483 | if (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) { |
| 484 | block_group &= ~(flex_size-1); |
| 485 | if (S_ISREG(inode->i_mode)) |
| 486 | block_group++; |
| 487 | } |
| 488 | bg_start = ext4_group_first_block_no(inode->i_sb, block_group); |
Valerie Clement | 74d3487 | 2008-02-15 13:43:07 -0500 | [diff] [blame] | 489 | last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1; |
| 490 | |
Theodore Ts'o | a491212 | 2009-03-12 12:18:34 -0400 | [diff] [blame] | 491 | /* |
| 492 | * If we are doing delayed allocation, we don't need take |
| 493 | * colour into account. |
| 494 | */ |
| 495 | if (test_opt(inode->i_sb, DELALLOC)) |
| 496 | return bg_start; |
| 497 | |
Valerie Clement | 74d3487 | 2008-02-15 13:43:07 -0500 | [diff] [blame] | 498 | if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block) |
| 499 | colour = (current->pid % 16) * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 500 | (EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16); |
Valerie Clement | 74d3487 | 2008-02-15 13:43:07 -0500 | [diff] [blame] | 501 | else |
| 502 | colour = (current->pid % 16) * ((last_block - bg_start) / 16); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 503 | return bg_start + colour; |
| 504 | } |
| 505 | |
| 506 | /** |
Benoit Boissinot | 1cc8dcf | 2008-04-21 22:45:55 +0000 | [diff] [blame] | 507 | * ext4_find_goal - find a preferred place for allocation. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 508 | * @inode: owner |
| 509 | * @block: block we want |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 510 | * @partial: pointer to the last triple within a chain |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 511 | * |
Benoit Boissinot | 1cc8dcf | 2008-04-21 22:45:55 +0000 | [diff] [blame] | 512 | * Normally this function find the preferred place for block allocation, |
Akinobu Mita | fb01bfd | 2008-02-06 01:40:16 -0800 | [diff] [blame] | 513 | * returns it. |
Eric Sandeen | fb0a387 | 2009-09-16 14:45:10 -0400 | [diff] [blame] | 514 | * Because this is only used for non-extent files, we limit the block nr |
| 515 | * to 32 bits. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 516 | */ |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 517 | static ext4_fsblk_t ext4_find_goal(struct inode *inode, ext4_lblk_t block, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 518 | Indirect *partial) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 519 | { |
Eric Sandeen | fb0a387 | 2009-09-16 14:45:10 -0400 | [diff] [blame] | 520 | ext4_fsblk_t goal; |
| 521 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 522 | /* |
Theodore Ts'o | c2ea3fd | 2008-10-10 09:40:52 -0400 | [diff] [blame] | 523 | * XXX need to get goal block from mballoc's data structures |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 524 | */ |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 525 | |
Eric Sandeen | fb0a387 | 2009-09-16 14:45:10 -0400 | [diff] [blame] | 526 | goal = ext4_find_near(inode, partial); |
| 527 | goal = goal & EXT4_MAX_BLOCK_FILE_PHYS; |
| 528 | return goal; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | /** |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 532 | * ext4_blks_to_allocate: Look up the block map and count the number |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 533 | * of direct blocks need to be allocated for the given branch. |
| 534 | * |
| 535 | * @branch: chain of indirect blocks |
| 536 | * @k: number of blocks need for indirect blocks |
| 537 | * @blks: number of data blocks to be mapped. |
| 538 | * @blocks_to_boundary: the offset in the indirect block |
| 539 | * |
| 540 | * return the total number of blocks to be allocate, including the |
| 541 | * direct and indirect blocks. |
| 542 | */ |
Theodore Ts'o | 498e5f2 | 2008-11-05 00:14:04 -0500 | [diff] [blame] | 543 | static int ext4_blks_to_allocate(Indirect *branch, int k, unsigned int blks, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 544 | int blocks_to_boundary) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 545 | { |
Theodore Ts'o | 498e5f2 | 2008-11-05 00:14:04 -0500 | [diff] [blame] | 546 | unsigned int count = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 547 | |
| 548 | /* |
| 549 | * Simple case, [t,d]Indirect block(s) has not allocated yet |
| 550 | * then it's clear blocks on that path have not allocated |
| 551 | */ |
| 552 | if (k > 0) { |
| 553 | /* right now we don't handle cross boundary allocation */ |
| 554 | if (blks < blocks_to_boundary + 1) |
| 555 | count += blks; |
| 556 | else |
| 557 | count += blocks_to_boundary + 1; |
| 558 | return count; |
| 559 | } |
| 560 | |
| 561 | count++; |
| 562 | while (count < blks && count <= blocks_to_boundary && |
| 563 | le32_to_cpu(*(branch[0].p + count)) == 0) { |
| 564 | count++; |
| 565 | } |
| 566 | return count; |
| 567 | } |
| 568 | |
| 569 | /** |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 570 | * ext4_alloc_blocks: multiple allocate blocks needed for a branch |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 571 | * @indirect_blks: the number of blocks need to allocate for indirect |
| 572 | * blocks |
| 573 | * |
| 574 | * @new_blocks: on return it will store the new block numbers for |
| 575 | * the indirect blocks(if needed) and the first direct block, |
| 576 | * @blks: on return it will store the total number of allocated |
| 577 | * direct blocks |
| 578 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 579 | static int ext4_alloc_blocks(handle_t *handle, struct inode *inode, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 580 | ext4_lblk_t iblock, ext4_fsblk_t goal, |
| 581 | int indirect_blks, int blks, |
| 582 | ext4_fsblk_t new_blocks[4], int *err) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 583 | { |
Theodore Ts'o | 815a113 | 2009-01-01 23:59:43 -0500 | [diff] [blame] | 584 | struct ext4_allocation_request ar; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 585 | int target, i; |
Aneesh Kumar K.V | 7061eba | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 586 | unsigned long count = 0, blk_allocated = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 587 | int index = 0; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 588 | ext4_fsblk_t current_block = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 589 | int ret = 0; |
| 590 | |
| 591 | /* |
| 592 | * Here we try to allocate the requested multiple blocks at once, |
| 593 | * on a best-effort basis. |
| 594 | * To build a branch, we should allocate blocks for |
| 595 | * the indirect blocks(if not allocated yet), and at least |
| 596 | * the first direct block of this branch. That's the |
| 597 | * minimum number of blocks need to allocate(required) |
| 598 | */ |
Aneesh Kumar K.V | 7061eba | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 599 | /* first we try to allocate the indirect blocks */ |
| 600 | target = indirect_blks; |
| 601 | while (target > 0) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 602 | count = target; |
| 603 | /* allocating blocks for indirect blocks and direct blocks */ |
Aneesh Kumar K.V | 7061eba | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 604 | current_block = ext4_new_meta_blocks(handle, inode, |
| 605 | goal, &count, err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 606 | if (*err) |
| 607 | goto failed_out; |
| 608 | |
Eric Sandeen | fb0a387 | 2009-09-16 14:45:10 -0400 | [diff] [blame] | 609 | BUG_ON(current_block + count > EXT4_MAX_BLOCK_FILE_PHYS); |
| 610 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 611 | target -= count; |
| 612 | /* allocate blocks for indirect blocks */ |
| 613 | while (index < indirect_blks && count) { |
| 614 | new_blocks[index++] = current_block++; |
| 615 | count--; |
| 616 | } |
Aneesh Kumar K.V | 7061eba | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 617 | if (count > 0) { |
| 618 | /* |
| 619 | * save the new block number |
| 620 | * for the first direct block |
| 621 | */ |
| 622 | new_blocks[index] = current_block; |
| 623 | printk(KERN_INFO "%s returned more blocks than " |
| 624 | "requested\n", __func__); |
| 625 | WARN_ON(1); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 626 | break; |
Aneesh Kumar K.V | 7061eba | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 627 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 628 | } |
| 629 | |
Aneesh Kumar K.V | 7061eba | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 630 | target = blks - count ; |
| 631 | blk_allocated = count; |
| 632 | if (!target) |
| 633 | goto allocated; |
| 634 | /* Now allocate data blocks */ |
Theodore Ts'o | 815a113 | 2009-01-01 23:59:43 -0500 | [diff] [blame] | 635 | memset(&ar, 0, sizeof(ar)); |
| 636 | ar.inode = inode; |
| 637 | ar.goal = goal; |
| 638 | ar.len = target; |
| 639 | ar.logical = iblock; |
| 640 | if (S_ISREG(inode->i_mode)) |
| 641 | /* enable in-core preallocation only for regular files */ |
| 642 | ar.flags = EXT4_MB_HINT_DATA; |
| 643 | |
| 644 | current_block = ext4_mb_new_blocks(handle, &ar, err); |
Eric Sandeen | fb0a387 | 2009-09-16 14:45:10 -0400 | [diff] [blame] | 645 | BUG_ON(current_block + ar.len > EXT4_MAX_BLOCK_FILE_PHYS); |
Theodore Ts'o | 815a113 | 2009-01-01 23:59:43 -0500 | [diff] [blame] | 646 | |
Aneesh Kumar K.V | 7061eba | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 647 | if (*err && (target == blks)) { |
| 648 | /* |
| 649 | * if the allocation failed and we didn't allocate |
| 650 | * any blocks before |
| 651 | */ |
| 652 | goto failed_out; |
| 653 | } |
| 654 | if (!*err) { |
| 655 | if (target == blks) { |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 656 | /* |
| 657 | * save the new block number |
| 658 | * for the first direct block |
| 659 | */ |
Aneesh Kumar K.V | 7061eba | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 660 | new_blocks[index] = current_block; |
| 661 | } |
Theodore Ts'o | 815a113 | 2009-01-01 23:59:43 -0500 | [diff] [blame] | 662 | blk_allocated += ar.len; |
Aneesh Kumar K.V | 7061eba | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 663 | } |
| 664 | allocated: |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 665 | /* total number of blocks allocated for direct blocks */ |
Aneesh Kumar K.V | 7061eba | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 666 | ret = blk_allocated; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 667 | *err = 0; |
| 668 | return ret; |
| 669 | failed_out: |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 670 | for (i = 0; i < index; i++) |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 671 | ext4_free_blocks(handle, inode, 0, new_blocks[i], 1, 0); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 672 | return ret; |
| 673 | } |
| 674 | |
| 675 | /** |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 676 | * ext4_alloc_branch - allocate and set up a chain of blocks. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 677 | * @inode: owner |
| 678 | * @indirect_blks: number of allocated indirect blocks |
| 679 | * @blks: number of allocated direct blocks |
| 680 | * @offsets: offsets (in the blocks) to store the pointers to next. |
| 681 | * @branch: place to store the chain in. |
| 682 | * |
| 683 | * This function allocates blocks, zeroes out all but the last one, |
| 684 | * links them into chain and (if we are synchronous) writes them to disk. |
| 685 | * In other words, it prepares a branch that can be spliced onto the |
| 686 | * inode. It stores the information about that chain in the branch[], in |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 687 | * the same format as ext4_get_branch() would do. We are calling it after |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 688 | * we had read the existing part of chain and partial points to the last |
| 689 | * triple of that (one with zero ->key). Upon the exit we have the same |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 690 | * picture as after the successful ext4_get_block(), except that in one |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 691 | * place chain is disconnected - *branch->p is still zero (we did not |
| 692 | * set the last link), but branch->key contains the number that should |
| 693 | * be placed into *branch->p to fill that gap. |
| 694 | * |
| 695 | * If allocation fails we free all blocks we've allocated (and forget |
| 696 | * their buffer_heads) and return the error value the from failed |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 697 | * ext4_alloc_block() (normally -ENOSPC). Otherwise we set the chain |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 698 | * as described above and return 0. |
| 699 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 700 | static int ext4_alloc_branch(handle_t *handle, struct inode *inode, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 701 | ext4_lblk_t iblock, int indirect_blks, |
| 702 | int *blks, ext4_fsblk_t goal, |
| 703 | ext4_lblk_t *offsets, Indirect *branch) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 704 | { |
| 705 | int blocksize = inode->i_sb->s_blocksize; |
| 706 | int i, n = 0; |
| 707 | int err = 0; |
| 708 | struct buffer_head *bh; |
| 709 | int num; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 710 | ext4_fsblk_t new_blocks[4]; |
| 711 | ext4_fsblk_t current_block; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 712 | |
Aneesh Kumar K.V | 7061eba | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 713 | num = ext4_alloc_blocks(handle, inode, iblock, goal, indirect_blks, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 714 | *blks, new_blocks, &err); |
| 715 | if (err) |
| 716 | return err; |
| 717 | |
| 718 | branch[0].key = cpu_to_le32(new_blocks[0]); |
| 719 | /* |
| 720 | * metadata blocks and data blocks are allocated. |
| 721 | */ |
| 722 | for (n = 1; n <= indirect_blks; n++) { |
| 723 | /* |
| 724 | * Get buffer_head for parent block, zero it out |
| 725 | * and set the pointer to new one, then send |
| 726 | * parent to disk. |
| 727 | */ |
| 728 | bh = sb_getblk(inode->i_sb, new_blocks[n-1]); |
| 729 | branch[n].bh = bh; |
| 730 | lock_buffer(bh); |
| 731 | BUFFER_TRACE(bh, "call get_create_access"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 732 | err = ext4_journal_get_create_access(handle, bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 733 | if (err) { |
Curt Wohlgemuth | 6487a9d | 2009-07-17 10:54:08 -0400 | [diff] [blame] | 734 | /* Don't brelse(bh) here; it's done in |
| 735 | * ext4_journal_forget() below */ |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 736 | unlock_buffer(bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 737 | goto failed; |
| 738 | } |
| 739 | |
| 740 | memset(bh->b_data, 0, blocksize); |
| 741 | branch[n].p = (__le32 *) bh->b_data + offsets[n]; |
| 742 | branch[n].key = cpu_to_le32(new_blocks[n]); |
| 743 | *branch[n].p = branch[n].key; |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 744 | if (n == indirect_blks) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 745 | current_block = new_blocks[n]; |
| 746 | /* |
| 747 | * End of chain, update the last new metablock of |
| 748 | * the chain to point to the new allocated |
| 749 | * data blocks numbers |
| 750 | */ |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 751 | for (i = 1; i < num; i++) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 752 | *(branch[n].p + i) = cpu_to_le32(++current_block); |
| 753 | } |
| 754 | BUFFER_TRACE(bh, "marking uptodate"); |
| 755 | set_buffer_uptodate(bh); |
| 756 | unlock_buffer(bh); |
| 757 | |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 758 | BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); |
| 759 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 760 | if (err) |
| 761 | goto failed; |
| 762 | } |
| 763 | *blks = num; |
| 764 | return err; |
| 765 | failed: |
| 766 | /* Allocation failed, free what we already allocated */ |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 767 | ext4_free_blocks(handle, inode, 0, new_blocks[0], 1, 0); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 768 | for (i = 1; i <= n ; i++) { |
Theodore Ts'o | b7e57e7 | 2009-11-22 21:00:13 -0500 | [diff] [blame] | 769 | /* |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 770 | * branch[i].bh is newly allocated, so there is no |
| 771 | * need to revoke the block, which is why we don't |
| 772 | * need to set EXT4_FREE_BLOCKS_METADATA. |
Theodore Ts'o | b7e57e7 | 2009-11-22 21:00:13 -0500 | [diff] [blame] | 773 | */ |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 774 | ext4_free_blocks(handle, inode, 0, new_blocks[i], 1, |
| 775 | EXT4_FREE_BLOCKS_FORGET); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 776 | } |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 777 | for (i = n+1; i < indirect_blks; i++) |
| 778 | ext4_free_blocks(handle, inode, 0, new_blocks[i], 1, 0); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 779 | |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 780 | ext4_free_blocks(handle, inode, 0, new_blocks[i], num, 0); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 781 | |
| 782 | return err; |
| 783 | } |
| 784 | |
| 785 | /** |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 786 | * ext4_splice_branch - splice the allocated branch onto inode. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 787 | * @inode: owner |
| 788 | * @block: (logical) number of block we are adding |
| 789 | * @chain: chain of indirect blocks (with a missing link - see |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 790 | * ext4_alloc_branch) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 791 | * @where: location of missing link |
| 792 | * @num: number of indirect blocks we are adding |
| 793 | * @blks: number of direct blocks we are adding |
| 794 | * |
| 795 | * This function fills the missing link and does all housekeeping needed in |
| 796 | * inode (->i_blocks, etc.). In case of success we end up with the full |
| 797 | * chain to new block and return 0. |
| 798 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 799 | static int ext4_splice_branch(handle_t *handle, struct inode *inode, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 800 | ext4_lblk_t block, Indirect *where, int num, |
| 801 | int blks) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 802 | { |
| 803 | int i; |
| 804 | int err = 0; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 805 | ext4_fsblk_t current_block; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 806 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 807 | /* |
| 808 | * If we're splicing into a [td]indirect block (as opposed to the |
| 809 | * inode) then we need to get write access to the [td]indirect block |
| 810 | * before the splice. |
| 811 | */ |
| 812 | if (where->bh) { |
| 813 | BUFFER_TRACE(where->bh, "get_write_access"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 814 | err = ext4_journal_get_write_access(handle, where->bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 815 | if (err) |
| 816 | goto err_out; |
| 817 | } |
| 818 | /* That's it */ |
| 819 | |
| 820 | *where->p = where->key; |
| 821 | |
| 822 | /* |
| 823 | * Update the host buffer_head or inode to point to more just allocated |
| 824 | * direct blocks blocks |
| 825 | */ |
| 826 | if (num == 0 && blks > 1) { |
| 827 | current_block = le32_to_cpu(where->key) + 1; |
| 828 | for (i = 1; i < blks; i++) |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 829 | *(where->p + i) = cpu_to_le32(current_block++); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 830 | } |
| 831 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 832 | /* We are done with atomic stuff, now do the rest of housekeeping */ |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 833 | /* had we spliced it onto indirect block? */ |
| 834 | if (where->bh) { |
| 835 | /* |
| 836 | * If we spliced it onto an indirect block, we haven't |
| 837 | * altered the inode. Note however that if it is being spliced |
| 838 | * onto an indirect block at the very end of the file (the |
| 839 | * file is growing) then we *will* alter the inode to reflect |
| 840 | * the new i_size. But that is not done here - it is done in |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 841 | * generic_commit_write->__mark_inode_dirty->ext4_dirty_inode. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 842 | */ |
| 843 | jbd_debug(5, "splicing indirect only\n"); |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 844 | BUFFER_TRACE(where->bh, "call ext4_handle_dirty_metadata"); |
| 845 | err = ext4_handle_dirty_metadata(handle, inode, where->bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 846 | if (err) |
| 847 | goto err_out; |
| 848 | } else { |
| 849 | /* |
| 850 | * OK, we spliced it into the inode itself on a direct block. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 851 | */ |
Theodore Ts'o | 4159175 | 2009-06-15 03:41:23 -0400 | [diff] [blame] | 852 | ext4_mark_inode_dirty(handle, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 853 | jbd_debug(5, "splicing direct\n"); |
| 854 | } |
| 855 | return err; |
| 856 | |
| 857 | err_out: |
| 858 | for (i = 1; i <= num; i++) { |
Theodore Ts'o | b7e57e7 | 2009-11-22 21:00:13 -0500 | [diff] [blame] | 859 | /* |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 860 | * branch[i].bh is newly allocated, so there is no |
| 861 | * need to revoke the block, which is why we don't |
| 862 | * need to set EXT4_FREE_BLOCKS_METADATA. |
Theodore Ts'o | b7e57e7 | 2009-11-22 21:00:13 -0500 | [diff] [blame] | 863 | */ |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 864 | ext4_free_blocks(handle, inode, where[i].bh, 0, 1, |
| 865 | EXT4_FREE_BLOCKS_FORGET); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 866 | } |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 867 | ext4_free_blocks(handle, inode, 0, le32_to_cpu(where[num].key), |
| 868 | blks, 0); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 869 | |
| 870 | return err; |
| 871 | } |
| 872 | |
| 873 | /* |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 874 | * The ext4_ind_get_blocks() function handles non-extents inodes |
| 875 | * (i.e., using the traditional indirect/double-indirect i_blocks |
| 876 | * scheme) for ext4_get_blocks(). |
| 877 | * |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 878 | * Allocation strategy is simple: if we have to allocate something, we will |
| 879 | * have to go the whole way to leaf. So let's do it before attaching anything |
| 880 | * to tree, set linkage between the newborn blocks, write them if sync is |
| 881 | * required, recheck the path, free and repeat if check fails, otherwise |
| 882 | * set the last missing link (that will protect us from any truncate-generated |
| 883 | * removals - all blocks on the path are immune now) and possibly force the |
| 884 | * write on the parent block. |
| 885 | * That has a nice additional property: no special recovery from the failed |
| 886 | * allocations is needed - we simply release blocks and do not touch anything |
| 887 | * reachable from inode. |
| 888 | * |
| 889 | * `handle' can be NULL if create == 0. |
| 890 | * |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 891 | * return > 0, # of blocks mapped or allocated. |
| 892 | * return = 0, if plain lookup failed. |
| 893 | * return < 0, error case. |
Aneesh Kumar K.V | c278bfe | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 894 | * |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 895 | * The ext4_ind_get_blocks() function should be called with |
| 896 | * down_write(&EXT4_I(inode)->i_data_sem) if allocating filesystem |
| 897 | * blocks (i.e., flags has EXT4_GET_BLOCKS_CREATE set) or |
| 898 | * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system |
| 899 | * blocks. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 900 | */ |
Theodore Ts'o | e4d996c | 2009-05-12 00:25:28 -0400 | [diff] [blame] | 901 | static int ext4_ind_get_blocks(handle_t *handle, struct inode *inode, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 902 | ext4_lblk_t iblock, unsigned int maxblocks, |
| 903 | struct buffer_head *bh_result, |
| 904 | int flags) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 905 | { |
| 906 | int err = -EIO; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 907 | ext4_lblk_t offsets[4]; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 908 | Indirect chain[4]; |
| 909 | Indirect *partial; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 910 | ext4_fsblk_t goal; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 911 | int indirect_blks; |
| 912 | int blocks_to_boundary = 0; |
| 913 | int depth; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 914 | int count = 0; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 915 | ext4_fsblk_t first_block = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 916 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 917 | J_ASSERT(!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)); |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 918 | J_ASSERT(handle != NULL || (flags & EXT4_GET_BLOCKS_CREATE) == 0); |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 919 | depth = ext4_block_to_path(inode, iblock, offsets, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 920 | &blocks_to_boundary); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 921 | |
| 922 | if (depth == 0) |
| 923 | goto out; |
| 924 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 925 | partial = ext4_get_branch(inode, depth, offsets, chain, &err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 926 | |
| 927 | /* Simplest case - block found, no allocation needed */ |
| 928 | if (!partial) { |
| 929 | first_block = le32_to_cpu(chain[depth - 1].key); |
| 930 | clear_buffer_new(bh_result); |
| 931 | count++; |
| 932 | /*map more blocks*/ |
| 933 | while (count < maxblocks && count <= blocks_to_boundary) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 934 | ext4_fsblk_t blk; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 935 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 936 | blk = le32_to_cpu(*(chain[depth-1].p + count)); |
| 937 | |
| 938 | if (blk == first_block + count) |
| 939 | count++; |
| 940 | else |
| 941 | break; |
| 942 | } |
Aneesh Kumar K.V | c278bfe | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 943 | goto got_it; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 944 | } |
| 945 | |
| 946 | /* Next simple case - plain lookup or failed read of indirect block */ |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 947 | if ((flags & EXT4_GET_BLOCKS_CREATE) == 0 || err == -EIO) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 948 | goto cleanup; |
| 949 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 950 | /* |
Theodore Ts'o | c2ea3fd | 2008-10-10 09:40:52 -0400 | [diff] [blame] | 951 | * Okay, we need to do block allocation. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 952 | */ |
Akinobu Mita | fb01bfd | 2008-02-06 01:40:16 -0800 | [diff] [blame] | 953 | goal = ext4_find_goal(inode, iblock, partial); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 954 | |
| 955 | /* the number of blocks need to allocate for [d,t]indirect blocks */ |
| 956 | indirect_blks = (chain + depth) - partial - 1; |
| 957 | |
| 958 | /* |
| 959 | * Next look up the indirect map to count the totoal number of |
| 960 | * direct blocks to allocate for this branch. |
| 961 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 962 | count = ext4_blks_to_allocate(partial, indirect_blks, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 963 | maxblocks, blocks_to_boundary); |
| 964 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 965 | * Block out ext4_truncate while we alter the tree |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 966 | */ |
Aneesh Kumar K.V | 7061eba | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 967 | err = ext4_alloc_branch(handle, inode, iblock, indirect_blks, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 968 | &count, goal, |
| 969 | offsets + (partial - chain), partial); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 970 | |
| 971 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 972 | * The ext4_splice_branch call will free and forget any buffers |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 973 | * on the new chain if there is a failure, but that risks using |
| 974 | * up transaction credits, especially for bitmaps where the |
| 975 | * credits cannot be returned. Can we handle this somehow? We |
| 976 | * may need to return -EAGAIN upwards in the worst case. --sct |
| 977 | */ |
| 978 | if (!err) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 979 | err = ext4_splice_branch(handle, inode, iblock, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 980 | partial, indirect_blks, count); |
Jan Kara | 2bba702 | 2009-11-23 07:24:48 -0500 | [diff] [blame] | 981 | if (err) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 982 | goto cleanup; |
| 983 | |
| 984 | set_buffer_new(bh_result); |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 985 | |
| 986 | ext4_update_inode_fsync_trans(handle, inode, 1); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 987 | got_it: |
| 988 | map_bh(bh_result, inode->i_sb, le32_to_cpu(chain[depth-1].key)); |
| 989 | if (count > blocks_to_boundary) |
| 990 | set_buffer_boundary(bh_result); |
| 991 | err = count; |
| 992 | /* Clean up and exit */ |
| 993 | partial = chain + depth - 1; /* the whole chain */ |
| 994 | cleanup: |
| 995 | while (partial > chain) { |
| 996 | BUFFER_TRACE(partial->bh, "call brelse"); |
| 997 | brelse(partial->bh); |
| 998 | partial--; |
| 999 | } |
| 1000 | BUFFER_TRACE(bh_result, "returned"); |
| 1001 | out: |
| 1002 | return err; |
| 1003 | } |
| 1004 | |
Dmitry Monakhov | a9e7f44 | 2009-12-14 15:21:14 +0300 | [diff] [blame] | 1005 | #ifdef CONFIG_QUOTA |
| 1006 | qsize_t *ext4_get_reserved_space(struct inode *inode) |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 1007 | { |
Dmitry Monakhov | a9e7f44 | 2009-12-14 15:21:14 +0300 | [diff] [blame] | 1008 | return &EXT4_I(inode)->i_reserved_quota; |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 1009 | } |
Dmitry Monakhov | a9e7f44 | 2009-12-14 15:21:14 +0300 | [diff] [blame] | 1010 | #endif |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1011 | |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1012 | /* |
| 1013 | * Calculate the number of metadata blocks need to reserve |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1014 | * to allocate a new block at @lblocks for non extent file based file |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1015 | */ |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1016 | static int ext4_indirect_calc_metadata_amount(struct inode *inode, |
| 1017 | sector_t lblock) |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1018 | { |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1019 | struct ext4_inode_info *ei = EXT4_I(inode); |
| 1020 | int dind_mask = EXT4_ADDR_PER_BLOCK(inode->i_sb) - 1; |
| 1021 | int blk_bits; |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1022 | |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1023 | if (lblock < EXT4_NDIR_BLOCKS) |
| 1024 | return 0; |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1025 | |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1026 | lblock -= EXT4_NDIR_BLOCKS; |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1027 | |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1028 | if (ei->i_da_metadata_calc_len && |
| 1029 | (lblock & dind_mask) == ei->i_da_metadata_calc_last_lblock) { |
| 1030 | ei->i_da_metadata_calc_len++; |
| 1031 | return 0; |
| 1032 | } |
| 1033 | ei->i_da_metadata_calc_last_lblock = lblock & dind_mask; |
| 1034 | ei->i_da_metadata_calc_len = 1; |
| 1035 | blk_bits = roundup_pow_of_two(lblock + 1); |
| 1036 | return (blk_bits / EXT4_ADDR_PER_BLOCK_BITS(inode->i_sb)) + 1; |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1037 | } |
| 1038 | |
| 1039 | /* |
| 1040 | * Calculate the number of metadata blocks need to reserve |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1041 | * to allocate a block located at @lblock |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1042 | */ |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1043 | static int ext4_calc_metadata_amount(struct inode *inode, sector_t lblock) |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1044 | { |
| 1045 | if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1046 | return ext4_ext_calc_metadata_amount(inode, lblock); |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1047 | |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1048 | return ext4_indirect_calc_metadata_amount(inode, lblock); |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1049 | } |
| 1050 | |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1051 | /* |
| 1052 | * Called with i_data_sem down, which is important since we can call |
| 1053 | * ext4_discard_preallocations() from here. |
| 1054 | */ |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 1055 | void ext4_da_update_reserve_space(struct inode *inode, |
| 1056 | int used, int quota_claim) |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1057 | { |
| 1058 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1059 | struct ext4_inode_info *ei = EXT4_I(inode); |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 1060 | int mdb_free = 0, allocated_meta_blocks = 0; |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1061 | |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1062 | spin_lock(&ei->i_block_reservation_lock); |
Theodore Ts'o | f8ec9d68 | 2010-01-01 01:00:21 -0500 | [diff] [blame] | 1063 | trace_ext4_da_update_reserve_space(inode, used); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1064 | if (unlikely(used > ei->i_reserved_data_blocks)) { |
| 1065 | ext4_msg(inode->i_sb, KERN_NOTICE, "%s: ino %lu, used %d " |
| 1066 | "with only %d reserved data blocks\n", |
| 1067 | __func__, inode->i_ino, used, |
| 1068 | ei->i_reserved_data_blocks); |
| 1069 | WARN_ON(1); |
| 1070 | used = ei->i_reserved_data_blocks; |
Aneesh Kumar K.V | 6bc6e63 | 2008-10-10 09:39:00 -0400 | [diff] [blame] | 1071 | } |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1072 | |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1073 | /* Update per-inode reservations */ |
| 1074 | ei->i_reserved_data_blocks -= used; |
| 1075 | used += ei->i_allocated_meta_blocks; |
| 1076 | ei->i_reserved_meta_blocks -= ei->i_allocated_meta_blocks; |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 1077 | allocated_meta_blocks = ei->i_allocated_meta_blocks; |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1078 | ei->i_allocated_meta_blocks = 0; |
| 1079 | percpu_counter_sub(&sbi->s_dirtyblocks_counter, used); |
| 1080 | |
| 1081 | if (ei->i_reserved_data_blocks == 0) { |
| 1082 | /* |
| 1083 | * We can release all of the reserved metadata blocks |
| 1084 | * only when we have written all of the delayed |
| 1085 | * allocation blocks. |
| 1086 | */ |
Theodore Ts'o | ee5f4d9 | 2010-01-01 02:36:15 -0500 | [diff] [blame] | 1087 | mdb_free = ei->i_reserved_meta_blocks; |
| 1088 | ei->i_reserved_meta_blocks = 0; |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1089 | ei->i_da_metadata_calc_len = 0; |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1090 | percpu_counter_sub(&sbi->s_dirtyblocks_counter, mdb_free); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1091 | } |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1092 | spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 1093 | |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1094 | /* Update quota subsystem */ |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 1095 | if (quota_claim) { |
| 1096 | vfs_dq_claim_block(inode, used); |
| 1097 | if (mdb_free) |
| 1098 | vfs_dq_release_reservation_block(inode, mdb_free); |
| 1099 | } else { |
| 1100 | /* |
| 1101 | * We did fallocate with an offset that is already delayed |
| 1102 | * allocated. So on delayed allocated writeback we should |
| 1103 | * not update the quota for allocated blocks. But then |
| 1104 | * converting an fallocate region to initialized region would |
| 1105 | * have caused a metadata allocation. So claim quota for |
| 1106 | * that |
| 1107 | */ |
| 1108 | if (allocated_meta_blocks) |
| 1109 | vfs_dq_claim_block(inode, allocated_meta_blocks); |
| 1110 | vfs_dq_release_reservation_block(inode, mdb_free + used); |
| 1111 | } |
Aneesh Kumar K.V | d601430 | 2009-03-27 22:36:43 -0400 | [diff] [blame] | 1112 | |
| 1113 | /* |
| 1114 | * If we have done all the pending block allocations and if |
| 1115 | * there aren't any writers on the inode, we can discard the |
| 1116 | * inode's preallocations. |
| 1117 | */ |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1118 | if ((ei->i_reserved_data_blocks == 0) && |
| 1119 | (atomic_read(&inode->i_writecount) == 0)) |
Aneesh Kumar K.V | d601430 | 2009-03-27 22:36:43 -0400 | [diff] [blame] | 1120 | ext4_discard_preallocations(inode); |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1121 | } |
| 1122 | |
Theodore Ts'o | 80e4246 | 2009-09-08 08:21:26 -0400 | [diff] [blame] | 1123 | static int check_block_validity(struct inode *inode, const char *msg, |
| 1124 | sector_t logical, sector_t phys, int len) |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 1125 | { |
| 1126 | if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), phys, len)) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 1127 | __ext4_error(inode->i_sb, msg, |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 1128 | "inode #%lu logical block %llu mapped to %llu " |
| 1129 | "(size %d)", inode->i_ino, |
| 1130 | (unsigned long long) logical, |
| 1131 | (unsigned long long) phys, len); |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 1132 | return -EIO; |
| 1133 | } |
| 1134 | return 0; |
| 1135 | } |
| 1136 | |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 1137 | /* |
Theodore Ts'o | 1f94533 | 2009-09-30 22:57:41 -0400 | [diff] [blame] | 1138 | * Return the number of contiguous dirty pages in a given inode |
| 1139 | * starting at page frame idx. |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 1140 | */ |
| 1141 | static pgoff_t ext4_num_dirty_pages(struct inode *inode, pgoff_t idx, |
| 1142 | unsigned int max_pages) |
| 1143 | { |
| 1144 | struct address_space *mapping = inode->i_mapping; |
| 1145 | pgoff_t index; |
| 1146 | struct pagevec pvec; |
| 1147 | pgoff_t num = 0; |
| 1148 | int i, nr_pages, done = 0; |
| 1149 | |
| 1150 | if (max_pages == 0) |
| 1151 | return 0; |
| 1152 | pagevec_init(&pvec, 0); |
| 1153 | while (!done) { |
| 1154 | index = idx; |
| 1155 | nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, |
| 1156 | PAGECACHE_TAG_DIRTY, |
| 1157 | (pgoff_t)PAGEVEC_SIZE); |
| 1158 | if (nr_pages == 0) |
| 1159 | break; |
| 1160 | for (i = 0; i < nr_pages; i++) { |
| 1161 | struct page *page = pvec.pages[i]; |
| 1162 | struct buffer_head *bh, *head; |
| 1163 | |
| 1164 | lock_page(page); |
| 1165 | if (unlikely(page->mapping != mapping) || |
| 1166 | !PageDirty(page) || |
| 1167 | PageWriteback(page) || |
| 1168 | page->index != idx) { |
| 1169 | done = 1; |
| 1170 | unlock_page(page); |
| 1171 | break; |
| 1172 | } |
Theodore Ts'o | 1f94533 | 2009-09-30 22:57:41 -0400 | [diff] [blame] | 1173 | if (page_has_buffers(page)) { |
| 1174 | bh = head = page_buffers(page); |
| 1175 | do { |
| 1176 | if (!buffer_delay(bh) && |
| 1177 | !buffer_unwritten(bh)) |
| 1178 | done = 1; |
| 1179 | bh = bh->b_this_page; |
| 1180 | } while (!done && (bh != head)); |
| 1181 | } |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 1182 | unlock_page(page); |
| 1183 | if (done) |
| 1184 | break; |
| 1185 | idx++; |
| 1186 | num++; |
| 1187 | if (num >= max_pages) |
| 1188 | break; |
| 1189 | } |
| 1190 | pagevec_release(&pvec); |
| 1191 | } |
| 1192 | return num; |
| 1193 | } |
| 1194 | |
| 1195 | /* |
Theodore Ts'o | 12b7ac1 | 2009-05-14 00:57:44 -0400 | [diff] [blame] | 1196 | * The ext4_get_blocks() function tries to look up the requested blocks, |
Theodore Ts'o | 2b2d6d0 | 2008-07-26 16:15:44 -0400 | [diff] [blame] | 1197 | * and returns if the blocks are already mapped. |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 1198 | * |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 1199 | * Otherwise it takes the write lock of the i_data_sem and allocate blocks |
| 1200 | * and store the allocated blocks in the result buffer head and mark it |
| 1201 | * mapped. |
| 1202 | * |
| 1203 | * If file type is extents based, it will call ext4_ext_get_blocks(), |
Theodore Ts'o | e4d996c | 2009-05-12 00:25:28 -0400 | [diff] [blame] | 1204 | * Otherwise, call with ext4_ind_get_blocks() to handle indirect mapping |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 1205 | * based files |
| 1206 | * |
| 1207 | * On success, it returns the number of blocks being mapped or allocate. |
| 1208 | * if create==0 and the blocks are pre-allocated and uninitialized block, |
| 1209 | * the result buffer head is unmapped. If the create ==1, it will make sure |
| 1210 | * the buffer head is mapped. |
| 1211 | * |
| 1212 | * It returns 0 if plain look up failed (blocks have not been allocated), in |
| 1213 | * that casem, buffer head is unmapped |
| 1214 | * |
| 1215 | * It returns the error in case of allocation failure. |
| 1216 | */ |
Theodore Ts'o | 12b7ac1 | 2009-05-14 00:57:44 -0400 | [diff] [blame] | 1217 | int ext4_get_blocks(handle_t *handle, struct inode *inode, sector_t block, |
| 1218 | unsigned int max_blocks, struct buffer_head *bh, |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 1219 | int flags) |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 1220 | { |
| 1221 | int retval; |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 1222 | |
| 1223 | clear_buffer_mapped(bh); |
Aneesh Kumar K.V | 2a8964d | 2009-05-14 17:05:39 -0400 | [diff] [blame] | 1224 | clear_buffer_unwritten(bh); |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 1225 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 1226 | ext_debug("ext4_get_blocks(): inode %lu, flag %d, max_blocks %u," |
| 1227 | "logical block %lu\n", inode->i_ino, flags, max_blocks, |
| 1228 | (unsigned long)block); |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 1229 | /* |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 1230 | * Try to see if we can get the block without requesting a new |
| 1231 | * file system block. |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 1232 | */ |
| 1233 | down_read((&EXT4_I(inode)->i_data_sem)); |
| 1234 | if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) { |
| 1235 | retval = ext4_ext_get_blocks(handle, inode, block, max_blocks, |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 1236 | bh, 0); |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 1237 | } else { |
Theodore Ts'o | e4d996c | 2009-05-12 00:25:28 -0400 | [diff] [blame] | 1238 | retval = ext4_ind_get_blocks(handle, inode, block, max_blocks, |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 1239 | bh, 0); |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 1240 | } |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 1241 | up_read((&EXT4_I(inode)->i_data_sem)); |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 1242 | |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 1243 | if (retval > 0 && buffer_mapped(bh)) { |
Theodore Ts'o | 80e4246 | 2009-09-08 08:21:26 -0400 | [diff] [blame] | 1244 | int ret = check_block_validity(inode, "file system corruption", |
| 1245 | block, bh->b_blocknr, retval); |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 1246 | if (ret != 0) |
| 1247 | return ret; |
| 1248 | } |
| 1249 | |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 1250 | /* If it is only a block(s) look up */ |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 1251 | if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 1252 | return retval; |
| 1253 | |
| 1254 | /* |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 1255 | * Returns if the blocks have already allocated |
| 1256 | * |
| 1257 | * Note that if blocks have been preallocated |
| 1258 | * ext4_ext_get_block() returns th create = 0 |
| 1259 | * with buffer head unmapped. |
| 1260 | */ |
| 1261 | if (retval > 0 && buffer_mapped(bh)) |
| 1262 | return retval; |
| 1263 | |
| 1264 | /* |
Aneesh Kumar K.V | 2a8964d | 2009-05-14 17:05:39 -0400 | [diff] [blame] | 1265 | * When we call get_blocks without the create flag, the |
| 1266 | * BH_Unwritten flag could have gotten set if the blocks |
| 1267 | * requested were part of a uninitialized extent. We need to |
| 1268 | * clear this flag now that we are committed to convert all or |
| 1269 | * part of the uninitialized extent to be an initialized |
| 1270 | * extent. This is because we need to avoid the combination |
| 1271 | * of BH_Unwritten and BH_Mapped flags being simultaneously |
| 1272 | * set on the buffer_head. |
| 1273 | */ |
| 1274 | clear_buffer_unwritten(bh); |
| 1275 | |
| 1276 | /* |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 1277 | * New blocks allocate and/or writing to uninitialized extent |
| 1278 | * will possibly result in updating i_data, so we take |
| 1279 | * the write lock of i_data_sem, and call get_blocks() |
| 1280 | * with create == 1 flag. |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 1281 | */ |
| 1282 | down_write((&EXT4_I(inode)->i_data_sem)); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1283 | |
| 1284 | /* |
| 1285 | * if the caller is from delayed allocation writeout path |
| 1286 | * we have already reserved fs blocks for allocation |
| 1287 | * let the underlying get_block() function know to |
| 1288 | * avoid double accounting |
| 1289 | */ |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 1290 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1291 | EXT4_I(inode)->i_delalloc_reserved_flag = 1; |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 1292 | /* |
| 1293 | * We need to check for EXT4 here because migrate |
| 1294 | * could have changed the inode type in between |
| 1295 | */ |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 1296 | if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) { |
| 1297 | retval = ext4_ext_get_blocks(handle, inode, block, max_blocks, |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 1298 | bh, flags); |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 1299 | } else { |
Theodore Ts'o | e4d996c | 2009-05-12 00:25:28 -0400 | [diff] [blame] | 1300 | retval = ext4_ind_get_blocks(handle, inode, block, |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 1301 | max_blocks, bh, flags); |
Aneesh Kumar K.V | 267e4db | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 1302 | |
| 1303 | if (retval > 0 && buffer_new(bh)) { |
| 1304 | /* |
| 1305 | * We allocated new blocks which will result in |
| 1306 | * i_data's format changing. Force the migrate |
| 1307 | * to fail by clearing migrate flags |
| 1308 | */ |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 1309 | ext4_clear_inode_state(inode, EXT4_STATE_EXT_MIGRATE); |
Aneesh Kumar K.V | 267e4db | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 1310 | } |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1311 | |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 1312 | /* |
| 1313 | * Update reserved blocks/metadata blocks after successful |
| 1314 | * block allocation which had been deferred till now. We don't |
| 1315 | * support fallocate for non extent files. So we can update |
| 1316 | * reserve space here. |
| 1317 | */ |
| 1318 | if ((retval > 0) && |
Aneesh Kumar K.V | 1296cc8 | 2010-01-15 01:27:59 -0500 | [diff] [blame] | 1319 | (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE)) |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 1320 | ext4_da_update_reserve_space(inode, retval, 1); |
| 1321 | } |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 1322 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1323 | EXT4_I(inode)->i_delalloc_reserved_flag = 0; |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 1324 | |
Aneesh Kumar K.V | 4df3d26 | 2008-01-28 23:58:29 -0500 | [diff] [blame] | 1325 | up_write((&EXT4_I(inode)->i_data_sem)); |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 1326 | if (retval > 0 && buffer_mapped(bh)) { |
Theodore Ts'o | 80e4246 | 2009-09-08 08:21:26 -0400 | [diff] [blame] | 1327 | int ret = check_block_validity(inode, "file system " |
| 1328 | "corruption after allocation", |
| 1329 | block, bh->b_blocknr, retval); |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 1330 | if (ret != 0) |
| 1331 | return ret; |
| 1332 | } |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 1333 | return retval; |
| 1334 | } |
| 1335 | |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 1336 | /* Maximum number of blocks we map for direct IO at once. */ |
| 1337 | #define DIO_MAX_BLOCKS 4096 |
| 1338 | |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 1339 | int ext4_get_block(struct inode *inode, sector_t iblock, |
| 1340 | struct buffer_head *bh_result, int create) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1341 | { |
Dmitriy Monakhov | 3e4fdaf | 2007-02-10 01:46:35 -0800 | [diff] [blame] | 1342 | handle_t *handle = ext4_journal_current_handle(); |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 1343 | int ret = 0, started = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1344 | unsigned max_blocks = bh_result->b_size >> inode->i_blkbits; |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 1345 | int dio_credits; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1346 | |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 1347 | if (create && !handle) { |
| 1348 | /* Direct IO write... */ |
| 1349 | if (max_blocks > DIO_MAX_BLOCKS) |
| 1350 | max_blocks = DIO_MAX_BLOCKS; |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 1351 | dio_credits = ext4_chunk_trans_blocks(inode, max_blocks); |
| 1352 | handle = ext4_journal_start(inode, dio_credits); |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 1353 | if (IS_ERR(handle)) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1354 | ret = PTR_ERR(handle); |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 1355 | goto out; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1356 | } |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 1357 | started = 1; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1358 | } |
| 1359 | |
Theodore Ts'o | 12b7ac1 | 2009-05-14 00:57:44 -0400 | [diff] [blame] | 1360 | ret = ext4_get_blocks(handle, inode, iblock, max_blocks, bh_result, |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 1361 | create ? EXT4_GET_BLOCKS_CREATE : 0); |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 1362 | if (ret > 0) { |
| 1363 | bh_result->b_size = (ret << inode->i_blkbits); |
| 1364 | ret = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1365 | } |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 1366 | if (started) |
| 1367 | ext4_journal_stop(handle); |
| 1368 | out: |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1369 | return ret; |
| 1370 | } |
| 1371 | |
| 1372 | /* |
| 1373 | * `handle' can be NULL if create is zero |
| 1374 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1375 | 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] | 1376 | ext4_lblk_t block, int create, int *errp) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1377 | { |
| 1378 | struct buffer_head dummy; |
| 1379 | int fatal = 0, err; |
Jan Kara | 03f5d8b | 2009-06-09 00:17:05 -0400 | [diff] [blame] | 1380 | int flags = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1381 | |
| 1382 | J_ASSERT(handle != NULL || create == 0); |
| 1383 | |
| 1384 | dummy.b_state = 0; |
| 1385 | dummy.b_blocknr = -1000; |
| 1386 | buffer_trace_init(&dummy.b_history); |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 1387 | if (create) |
| 1388 | flags |= EXT4_GET_BLOCKS_CREATE; |
| 1389 | err = ext4_get_blocks(handle, inode, block, 1, &dummy, flags); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1390 | /* |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 1391 | * ext4_get_blocks() returns number of blocks mapped. 0 in |
| 1392 | * case of a HOLE. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1393 | */ |
| 1394 | if (err > 0) { |
| 1395 | if (err > 1) |
| 1396 | WARN_ON(1); |
| 1397 | err = 0; |
| 1398 | } |
| 1399 | *errp = err; |
| 1400 | if (!err && buffer_mapped(&dummy)) { |
| 1401 | struct buffer_head *bh; |
| 1402 | bh = sb_getblk(inode->i_sb, dummy.b_blocknr); |
| 1403 | if (!bh) { |
| 1404 | *errp = -EIO; |
| 1405 | goto err; |
| 1406 | } |
| 1407 | if (buffer_new(&dummy)) { |
| 1408 | J_ASSERT(create != 0); |
Aneesh Kumar K.V | ac39849 | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 1409 | J_ASSERT(handle != NULL); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1410 | |
| 1411 | /* |
| 1412 | * Now that we do not always journal data, we should |
| 1413 | * keep in mind whether this should always journal the |
| 1414 | * new buffer as metadata. For now, regular file |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1415 | * writes use ext4_get_block instead, so it's not a |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1416 | * problem. |
| 1417 | */ |
| 1418 | lock_buffer(bh); |
| 1419 | BUFFER_TRACE(bh, "call get_create_access"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1420 | fatal = ext4_journal_get_create_access(handle, bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1421 | if (!fatal && !buffer_uptodate(bh)) { |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1422 | memset(bh->b_data, 0, inode->i_sb->s_blocksize); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1423 | set_buffer_uptodate(bh); |
| 1424 | } |
| 1425 | unlock_buffer(bh); |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 1426 | BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); |
| 1427 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1428 | if (!fatal) |
| 1429 | fatal = err; |
| 1430 | } else { |
| 1431 | BUFFER_TRACE(bh, "not a new buffer"); |
| 1432 | } |
| 1433 | if (fatal) { |
| 1434 | *errp = fatal; |
| 1435 | brelse(bh); |
| 1436 | bh = NULL; |
| 1437 | } |
| 1438 | return bh; |
| 1439 | } |
| 1440 | err: |
| 1441 | return NULL; |
| 1442 | } |
| 1443 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1444 | 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] | 1445 | ext4_lblk_t block, int create, int *err) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1446 | { |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1447 | struct buffer_head *bh; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1448 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1449 | bh = ext4_getblk(handle, inode, block, create, err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1450 | if (!bh) |
| 1451 | return bh; |
| 1452 | if (buffer_uptodate(bh)) |
| 1453 | return bh; |
| 1454 | ll_rw_block(READ_META, 1, &bh); |
| 1455 | wait_on_buffer(bh); |
| 1456 | if (buffer_uptodate(bh)) |
| 1457 | return bh; |
| 1458 | put_bh(bh); |
| 1459 | *err = -EIO; |
| 1460 | return NULL; |
| 1461 | } |
| 1462 | |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1463 | static int walk_page_buffers(handle_t *handle, |
| 1464 | struct buffer_head *head, |
| 1465 | unsigned from, |
| 1466 | unsigned to, |
| 1467 | int *partial, |
| 1468 | int (*fn)(handle_t *handle, |
| 1469 | struct buffer_head *bh)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1470 | { |
| 1471 | struct buffer_head *bh; |
| 1472 | unsigned block_start, block_end; |
| 1473 | unsigned blocksize = head->b_size; |
| 1474 | int err, ret = 0; |
| 1475 | struct buffer_head *next; |
| 1476 | |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1477 | for (bh = head, block_start = 0; |
| 1478 | ret == 0 && (bh != head || !block_start); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1479 | block_start = block_end, bh = next) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1480 | next = bh->b_this_page; |
| 1481 | block_end = block_start + blocksize; |
| 1482 | if (block_end <= from || block_start >= to) { |
| 1483 | if (partial && !buffer_uptodate(bh)) |
| 1484 | *partial = 1; |
| 1485 | continue; |
| 1486 | } |
| 1487 | err = (*fn)(handle, bh); |
| 1488 | if (!ret) |
| 1489 | ret = err; |
| 1490 | } |
| 1491 | return ret; |
| 1492 | } |
| 1493 | |
| 1494 | /* |
| 1495 | * To preserve ordering, it is essential that the hole instantiation and |
| 1496 | * the data write be encapsulated in a single transaction. We cannot |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1497 | * 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] | 1498 | * 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] | 1499 | * prepare_write() is the right place. |
| 1500 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1501 | * Also, this function can nest inside ext4_writepage() -> |
| 1502 | * block_write_full_page(). In that case, we *know* that ext4_writepage() |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1503 | * has generated enough buffer credits to do the whole page. So we won't |
| 1504 | * block on the journal in that case, which is good, because the caller may |
| 1505 | * be PF_MEMALLOC. |
| 1506 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1507 | * By accident, ext4 can be reentered when a transaction is open via |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1508 | * quota file writes. If we were to commit the transaction while thus |
| 1509 | * reentered, there can be a deadlock - we would be holding a quota |
| 1510 | * lock, and the commit would never complete if another thread had a |
| 1511 | * transaction open and was blocking on the quota lock - a ranking |
| 1512 | * violation. |
| 1513 | * |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 1514 | * 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] | 1515 | * will _not_ run commit under these circumstances because handle->h_ref |
| 1516 | * is elevated. We'll still have enough credits for the tiny quotafile |
| 1517 | * write. |
| 1518 | */ |
| 1519 | static int do_journal_get_write_access(handle_t *handle, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1520 | struct buffer_head *bh) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1521 | { |
| 1522 | if (!buffer_mapped(bh) || buffer_freed(bh)) |
| 1523 | return 0; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1524 | return ext4_journal_get_write_access(handle, bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1525 | } |
| 1526 | |
Jan Kara | b9a4207 | 2009-12-08 21:24:33 -0500 | [diff] [blame] | 1527 | /* |
| 1528 | * Truncate blocks that were not used by write. We have to truncate the |
| 1529 | * pagecache as well so that corresponding buffers get properly unmapped. |
| 1530 | */ |
| 1531 | static void ext4_truncate_failed_write(struct inode *inode) |
| 1532 | { |
| 1533 | truncate_inode_pages(inode->i_mapping, inode->i_size); |
| 1534 | ext4_truncate(inode); |
| 1535 | } |
| 1536 | |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1537 | 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] | 1538 | loff_t pos, unsigned len, unsigned flags, |
| 1539 | struct page **pagep, void **fsdata) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1540 | { |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1541 | struct inode *inode = mapping->host; |
Aneesh Kumar K.V | 1938a15 | 2009-06-05 01:00:26 -0400 | [diff] [blame] | 1542 | int ret, needed_blocks; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1543 | handle_t *handle; |
| 1544 | int retries = 0; |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1545 | struct page *page; |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1546 | pgoff_t index; |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1547 | unsigned from, to; |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1548 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 1549 | trace_ext4_write_begin(inode, pos, len, flags); |
Aneesh Kumar K.V | 1938a15 | 2009-06-05 01:00:26 -0400 | [diff] [blame] | 1550 | /* |
| 1551 | * Reserve one block more for addition to orphan list in case |
| 1552 | * we allocate blocks but write fails for some reason |
| 1553 | */ |
| 1554 | needed_blocks = ext4_writepage_trans_blocks(inode) + 1; |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1555 | index = pos >> PAGE_CACHE_SHIFT; |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1556 | from = pos & (PAGE_CACHE_SIZE - 1); |
| 1557 | to = from + len; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1558 | |
| 1559 | retry: |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1560 | handle = ext4_journal_start(inode, needed_blocks); |
| 1561 | if (IS_ERR(handle)) { |
| 1562 | ret = PTR_ERR(handle); |
| 1563 | goto out; |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1564 | } |
| 1565 | |
Jan Kara | ebd3610 | 2009-02-22 21:09:59 -0500 | [diff] [blame] | 1566 | /* We cannot recurse into the filesystem as the transaction is already |
| 1567 | * started */ |
| 1568 | flags |= AOP_FLAG_NOFS; |
| 1569 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 1570 | page = grab_cache_page_write_begin(mapping, index, flags); |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1571 | if (!page) { |
| 1572 | ext4_journal_stop(handle); |
| 1573 | ret = -ENOMEM; |
| 1574 | goto out; |
| 1575 | } |
| 1576 | *pagep = page; |
| 1577 | |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1578 | ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata, |
Jan Kara | ebd3610 | 2009-02-22 21:09:59 -0500 | [diff] [blame] | 1579 | ext4_get_block); |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1580 | |
| 1581 | if (!ret && ext4_should_journal_data(inode)) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1582 | ret = walk_page_buffers(handle, page_buffers(page), |
| 1583 | from, to, NULL, do_journal_get_write_access); |
| 1584 | } |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1585 | |
| 1586 | if (ret) { |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1587 | unlock_page(page); |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1588 | page_cache_release(page); |
Aneesh Kumar K.V | ae4d537 | 2008-09-13 13:10:25 -0400 | [diff] [blame] | 1589 | /* |
| 1590 | * block_write_begin may have instantiated a few blocks |
| 1591 | * outside i_size. Trim these off again. Don't need |
| 1592 | * i_size_read because we hold i_mutex. |
Aneesh Kumar K.V | 1938a15 | 2009-06-05 01:00:26 -0400 | [diff] [blame] | 1593 | * |
| 1594 | * Add inode to orphan list in case we crash before |
| 1595 | * truncate finishes |
Aneesh Kumar K.V | ae4d537 | 2008-09-13 13:10:25 -0400 | [diff] [blame] | 1596 | */ |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 1597 | if (pos + len > inode->i_size && ext4_can_truncate(inode)) |
Aneesh Kumar K.V | 1938a15 | 2009-06-05 01:00:26 -0400 | [diff] [blame] | 1598 | ext4_orphan_add(handle, inode); |
| 1599 | |
| 1600 | ext4_journal_stop(handle); |
| 1601 | if (pos + len > inode->i_size) { |
Jan Kara | b9a4207 | 2009-12-08 21:24:33 -0500 | [diff] [blame] | 1602 | ext4_truncate_failed_write(inode); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1603 | /* |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 1604 | * If truncate failed early the inode might |
Aneesh Kumar K.V | 1938a15 | 2009-06-05 01:00:26 -0400 | [diff] [blame] | 1605 | * still be on the orphan list; we need to |
| 1606 | * make sure the inode is removed from the |
| 1607 | * orphan list in that case. |
| 1608 | */ |
| 1609 | if (inode->i_nlink) |
| 1610 | ext4_orphan_del(NULL, inode); |
| 1611 | } |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1612 | } |
| 1613 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1614 | if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1615 | goto retry; |
Andrew Morton | 7479d2b | 2007-04-01 23:49:44 -0700 | [diff] [blame] | 1616 | out: |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1617 | return ret; |
| 1618 | } |
| 1619 | |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1620 | /* For write_end() in data=journal mode */ |
| 1621 | static int write_end_fn(handle_t *handle, struct buffer_head *bh) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1622 | { |
| 1623 | if (!buffer_mapped(bh) || buffer_freed(bh)) |
| 1624 | return 0; |
| 1625 | set_buffer_uptodate(bh); |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 1626 | return ext4_handle_dirty_metadata(handle, NULL, bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1627 | } |
| 1628 | |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1629 | static int ext4_generic_write_end(struct file *file, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1630 | struct address_space *mapping, |
| 1631 | loff_t pos, unsigned len, unsigned copied, |
| 1632 | struct page *page, void *fsdata) |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1633 | { |
| 1634 | int i_size_changed = 0; |
| 1635 | struct inode *inode = mapping->host; |
| 1636 | handle_t *handle = ext4_journal_current_handle(); |
| 1637 | |
| 1638 | copied = block_write_end(file, mapping, pos, len, copied, page, fsdata); |
| 1639 | |
| 1640 | /* |
| 1641 | * No need to use i_size_read() here, the i_size |
| 1642 | * cannot change under us because we hold i_mutex. |
| 1643 | * |
| 1644 | * But it's important to update i_size while still holding page lock: |
| 1645 | * page writeout could otherwise come in and zero beyond i_size. |
| 1646 | */ |
| 1647 | if (pos + copied > inode->i_size) { |
| 1648 | i_size_write(inode, pos + copied); |
| 1649 | i_size_changed = 1; |
| 1650 | } |
| 1651 | |
| 1652 | if (pos + copied > EXT4_I(inode)->i_disksize) { |
| 1653 | /* We need to mark inode dirty even if |
| 1654 | * new_i_size is less that inode->i_size |
| 1655 | * bu greater than i_disksize.(hint delalloc) |
| 1656 | */ |
| 1657 | ext4_update_i_disksize(inode, (pos + copied)); |
| 1658 | i_size_changed = 1; |
| 1659 | } |
| 1660 | unlock_page(page); |
| 1661 | page_cache_release(page); |
| 1662 | |
| 1663 | /* |
| 1664 | * Don't mark the inode dirty under page lock. First, it unnecessarily |
| 1665 | * makes the holding time of page lock longer. Second, it forces lock |
| 1666 | * ordering of page lock and transaction start for journaling |
| 1667 | * filesystems. |
| 1668 | */ |
| 1669 | if (i_size_changed) |
| 1670 | ext4_mark_inode_dirty(handle, inode); |
| 1671 | |
| 1672 | return copied; |
| 1673 | } |
| 1674 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1675 | /* |
| 1676 | * We need to pick up the new inode size which generic_commit_write gave us |
| 1677 | * `file' can be NULL - eg, when called from page_symlink(). |
| 1678 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1679 | * ext4 never places buffers on inode->i_mapping->private_list. metadata |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1680 | * buffers are managed internally. |
| 1681 | */ |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1682 | static int ext4_ordered_write_end(struct file *file, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1683 | struct address_space *mapping, |
| 1684 | loff_t pos, unsigned len, unsigned copied, |
| 1685 | struct page *page, void *fsdata) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1686 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1687 | handle_t *handle = ext4_journal_current_handle(); |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1688 | struct inode *inode = mapping->host; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1689 | int ret = 0, ret2; |
| 1690 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 1691 | trace_ext4_ordered_write_end(inode, pos, len, copied); |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1692 | ret = ext4_jbd2_file_inode(handle, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1693 | |
| 1694 | if (ret == 0) { |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1695 | ret2 = ext4_generic_write_end(file, mapping, pos, len, copied, |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1696 | page, fsdata); |
Roel Kluin | f8a87d8 | 2008-04-29 22:01:18 -0400 | [diff] [blame] | 1697 | copied = ret2; |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 1698 | if (pos + len > inode->i_size && ext4_can_truncate(inode)) |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1699 | /* if we have allocated more blocks and copied |
| 1700 | * less. We will have blocks allocated outside |
| 1701 | * inode->i_size. So truncate them |
| 1702 | */ |
| 1703 | ext4_orphan_add(handle, inode); |
Roel Kluin | f8a87d8 | 2008-04-29 22:01:18 -0400 | [diff] [blame] | 1704 | if (ret2 < 0) |
| 1705 | ret = ret2; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1706 | } |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1707 | ret2 = ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1708 | if (!ret) |
| 1709 | ret = ret2; |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1710 | |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1711 | if (pos + len > inode->i_size) { |
Jan Kara | b9a4207 | 2009-12-08 21:24:33 -0500 | [diff] [blame] | 1712 | ext4_truncate_failed_write(inode); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1713 | /* |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 1714 | * If truncate failed early the inode might still be |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1715 | * on the orphan list; we need to make sure the inode |
| 1716 | * is removed from the orphan list in that case. |
| 1717 | */ |
| 1718 | if (inode->i_nlink) |
| 1719 | ext4_orphan_del(NULL, inode); |
| 1720 | } |
| 1721 | |
| 1722 | |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1723 | return ret ? ret : copied; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1724 | } |
| 1725 | |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1726 | static int ext4_writeback_write_end(struct file *file, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1727 | struct address_space *mapping, |
| 1728 | loff_t pos, unsigned len, unsigned copied, |
| 1729 | struct page *page, void *fsdata) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1730 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1731 | handle_t *handle = ext4_journal_current_handle(); |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1732 | struct inode *inode = mapping->host; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1733 | int ret = 0, ret2; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1734 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 1735 | trace_ext4_writeback_write_end(inode, pos, len, copied); |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1736 | ret2 = ext4_generic_write_end(file, mapping, pos, len, copied, |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1737 | page, fsdata); |
Roel Kluin | f8a87d8 | 2008-04-29 22:01:18 -0400 | [diff] [blame] | 1738 | copied = ret2; |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 1739 | if (pos + len > inode->i_size && ext4_can_truncate(inode)) |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1740 | /* if we have allocated more blocks and copied |
| 1741 | * less. We will have blocks allocated outside |
| 1742 | * inode->i_size. So truncate them |
| 1743 | */ |
| 1744 | ext4_orphan_add(handle, inode); |
| 1745 | |
Roel Kluin | f8a87d8 | 2008-04-29 22:01:18 -0400 | [diff] [blame] | 1746 | if (ret2 < 0) |
| 1747 | ret = ret2; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1748 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1749 | ret2 = ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1750 | if (!ret) |
| 1751 | ret = ret2; |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1752 | |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1753 | if (pos + len > inode->i_size) { |
Jan Kara | b9a4207 | 2009-12-08 21:24:33 -0500 | [diff] [blame] | 1754 | ext4_truncate_failed_write(inode); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1755 | /* |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 1756 | * If truncate failed early the inode might still be |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1757 | * on the orphan list; we need to make sure the inode |
| 1758 | * is removed from the orphan list in that case. |
| 1759 | */ |
| 1760 | if (inode->i_nlink) |
| 1761 | ext4_orphan_del(NULL, inode); |
| 1762 | } |
| 1763 | |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1764 | return ret ? ret : copied; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1765 | } |
| 1766 | |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1767 | static int ext4_journalled_write_end(struct file *file, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1768 | struct address_space *mapping, |
| 1769 | loff_t pos, unsigned len, unsigned copied, |
| 1770 | struct page *page, void *fsdata) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1771 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1772 | handle_t *handle = ext4_journal_current_handle(); |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1773 | struct inode *inode = mapping->host; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1774 | int ret = 0, ret2; |
| 1775 | int partial = 0; |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1776 | unsigned from, to; |
Aneesh Kumar K.V | cf17fea | 2008-09-13 13:06:18 -0400 | [diff] [blame] | 1777 | loff_t new_i_size; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1778 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 1779 | trace_ext4_journalled_write_end(inode, pos, len, copied); |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1780 | from = pos & (PAGE_CACHE_SIZE - 1); |
| 1781 | to = from + len; |
| 1782 | |
| 1783 | if (copied < len) { |
| 1784 | if (!PageUptodate(page)) |
| 1785 | copied = 0; |
| 1786 | page_zero_new_buffers(page, from+copied, to); |
| 1787 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1788 | |
| 1789 | ret = walk_page_buffers(handle, page_buffers(page), from, |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1790 | to, &partial, write_end_fn); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1791 | if (!partial) |
| 1792 | SetPageUptodate(page); |
Aneesh Kumar K.V | cf17fea | 2008-09-13 13:06:18 -0400 | [diff] [blame] | 1793 | new_i_size = pos + copied; |
| 1794 | if (new_i_size > inode->i_size) |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1795 | i_size_write(inode, pos+copied); |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 1796 | ext4_set_inode_state(inode, EXT4_STATE_JDATA); |
Aneesh Kumar K.V | cf17fea | 2008-09-13 13:06:18 -0400 | [diff] [blame] | 1797 | if (new_i_size > EXT4_I(inode)->i_disksize) { |
| 1798 | ext4_update_i_disksize(inode, new_i_size); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1799 | ret2 = ext4_mark_inode_dirty(handle, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1800 | if (!ret) |
| 1801 | ret = ret2; |
| 1802 | } |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1803 | |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1804 | unlock_page(page); |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1805 | page_cache_release(page); |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 1806 | if (pos + len > inode->i_size && ext4_can_truncate(inode)) |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1807 | /* if we have allocated more blocks and copied |
| 1808 | * less. We will have blocks allocated outside |
| 1809 | * inode->i_size. So truncate them |
| 1810 | */ |
| 1811 | ext4_orphan_add(handle, inode); |
| 1812 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 1813 | ret2 = ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1814 | if (!ret) |
| 1815 | ret = ret2; |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1816 | if (pos + len > inode->i_size) { |
Jan Kara | b9a4207 | 2009-12-08 21:24:33 -0500 | [diff] [blame] | 1817 | ext4_truncate_failed_write(inode); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1818 | /* |
Jan Kara | ffacfa7 | 2009-07-13 16:22:22 -0400 | [diff] [blame] | 1819 | * If truncate failed early the inode might still be |
Aneesh Kumar K.V | f851408 | 2009-06-05 00:56:49 -0400 | [diff] [blame] | 1820 | * on the orphan list; we need to make sure the inode |
| 1821 | * is removed from the orphan list in that case. |
| 1822 | */ |
| 1823 | if (inode->i_nlink) |
| 1824 | ext4_orphan_del(NULL, inode); |
| 1825 | } |
Nick Piggin | bfc1af6 | 2007-10-16 01:25:05 -0700 | [diff] [blame] | 1826 | |
| 1827 | return ret ? ret : copied; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1828 | } |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1829 | |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1830 | /* |
| 1831 | * Reserve a single block located at lblock |
| 1832 | */ |
| 1833 | static int ext4_da_reserve_space(struct inode *inode, sector_t lblock) |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1834 | { |
Aneesh Kumar K.V | 030ba6b | 2008-09-08 23:14:50 -0400 | [diff] [blame] | 1835 | int retries = 0; |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 1836 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1837 | struct ext4_inode_info *ei = EXT4_I(inode); |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1838 | unsigned long md_needed, md_reserved; |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1839 | |
| 1840 | /* |
| 1841 | * recalculate the amount of metadata blocks to reserve |
| 1842 | * in order to allocate nrblocks |
| 1843 | * worse case is one extent per block |
| 1844 | */ |
Aneesh Kumar K.V | 030ba6b | 2008-09-08 23:14:50 -0400 | [diff] [blame] | 1845 | repeat: |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1846 | spin_lock(&ei->i_block_reservation_lock); |
| 1847 | md_reserved = ei->i_reserved_meta_blocks; |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1848 | md_needed = ext4_calc_metadata_amount(inode, lblock); |
Theodore Ts'o | f8ec9d68 | 2010-01-01 01:00:21 -0500 | [diff] [blame] | 1849 | trace_ext4_da_reserve_space(inode, md_needed); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1850 | spin_unlock(&ei->i_block_reservation_lock); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1851 | |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 1852 | /* |
| 1853 | * Make quota reservation here to prevent quota overflow |
| 1854 | * later. Real quota accounting is done at pages writeout |
| 1855 | * time. |
| 1856 | */ |
Aneesh Kumar K.V | 1db9138 | 2010-01-22 17:06:20 -0500 | [diff] [blame] | 1857 | if (vfs_dq_reserve_block(inode, md_needed + 1)) |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 1858 | return -EDQUOT; |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 1859 | |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1860 | if (ext4_claim_free_blocks(sbi, md_needed + 1)) { |
| 1861 | vfs_dq_release_reservation_block(inode, md_needed + 1); |
Aneesh Kumar K.V | 030ba6b | 2008-09-08 23:14:50 -0400 | [diff] [blame] | 1862 | if (ext4_should_retry_alloc(inode->i_sb, &retries)) { |
| 1863 | yield(); |
| 1864 | goto repeat; |
| 1865 | } |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1866 | return -ENOSPC; |
| 1867 | } |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1868 | spin_lock(&ei->i_block_reservation_lock); |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1869 | ei->i_reserved_data_blocks++; |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1870 | ei->i_reserved_meta_blocks += md_needed; |
| 1871 | spin_unlock(&ei->i_block_reservation_lock); |
Dmitry Monakhov | 39bc680 | 2009-12-10 16:36:27 +0000 | [diff] [blame] | 1872 | |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1873 | return 0; /* success */ |
| 1874 | } |
| 1875 | |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1876 | static void ext4_da_release_space(struct inode *inode, int to_free) |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1877 | { |
| 1878 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1879 | struct ext4_inode_info *ei = EXT4_I(inode); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1880 | |
Mingming Cao | cd21322 | 2008-08-19 22:16:59 -0400 | [diff] [blame] | 1881 | if (!to_free) |
| 1882 | return; /* Nothing to release, exit */ |
| 1883 | |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1884 | spin_lock(&EXT4_I(inode)->i_block_reservation_lock); |
Mingming Cao | cd21322 | 2008-08-19 22:16:59 -0400 | [diff] [blame] | 1885 | |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1886 | if (unlikely(to_free > ei->i_reserved_data_blocks)) { |
Mingming Cao | cd21322 | 2008-08-19 22:16:59 -0400 | [diff] [blame] | 1887 | /* |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1888 | * if there aren't enough reserved blocks, then the |
| 1889 | * counter is messed up somewhere. Since this |
| 1890 | * function is called from invalidate page, it's |
| 1891 | * harmless to return without any action. |
Mingming Cao | cd21322 | 2008-08-19 22:16:59 -0400 | [diff] [blame] | 1892 | */ |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1893 | ext4_msg(inode->i_sb, KERN_NOTICE, "ext4_da_release_space: " |
| 1894 | "ino %lu, to_free %d with only %d reserved " |
| 1895 | "data blocks\n", inode->i_ino, to_free, |
| 1896 | ei->i_reserved_data_blocks); |
| 1897 | WARN_ON(1); |
| 1898 | to_free = ei->i_reserved_data_blocks; |
| 1899 | } |
| 1900 | ei->i_reserved_data_blocks -= to_free; |
| 1901 | |
| 1902 | if (ei->i_reserved_data_blocks == 0) { |
| 1903 | /* |
| 1904 | * We can release all of the reserved metadata blocks |
| 1905 | * only when we have written all of the delayed |
| 1906 | * allocation blocks. |
| 1907 | */ |
Theodore Ts'o | ee5f4d9 | 2010-01-01 02:36:15 -0500 | [diff] [blame] | 1908 | to_free += ei->i_reserved_meta_blocks; |
| 1909 | ei->i_reserved_meta_blocks = 0; |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 1910 | ei->i_da_metadata_calc_len = 0; |
Mingming Cao | cd21322 | 2008-08-19 22:16:59 -0400 | [diff] [blame] | 1911 | } |
| 1912 | |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1913 | /* update fs dirty blocks counter */ |
| 1914 | percpu_counter_sub(&sbi->s_dirtyblocks_counter, to_free); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1915 | |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1916 | spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); |
Mingming Cao | 60e58e0 | 2009-01-22 18:13:05 +0100 | [diff] [blame] | 1917 | |
Theodore Ts'o | 0637c6f | 2009-12-30 14:20:45 -0500 | [diff] [blame] | 1918 | vfs_dq_release_reservation_block(inode, to_free); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1919 | } |
| 1920 | |
| 1921 | static void ext4_da_page_release_reservation(struct page *page, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 1922 | unsigned long offset) |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1923 | { |
| 1924 | int to_release = 0; |
| 1925 | struct buffer_head *head, *bh; |
| 1926 | unsigned int curr_off = 0; |
| 1927 | |
| 1928 | head = page_buffers(page); |
| 1929 | bh = head; |
| 1930 | do { |
| 1931 | unsigned int next_off = curr_off + bh->b_size; |
| 1932 | |
| 1933 | if ((offset <= curr_off) && (buffer_delay(bh))) { |
| 1934 | to_release++; |
| 1935 | clear_buffer_delay(bh); |
| 1936 | } |
| 1937 | curr_off = next_off; |
| 1938 | } while ((bh = bh->b_this_page) != head); |
Aneesh Kumar K.V | 12219ae | 2008-07-17 16:12:08 -0400 | [diff] [blame] | 1939 | ext4_da_release_space(page->mapping->host, to_release); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 1940 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 1941 | |
| 1942 | /* |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1943 | * Delayed allocation stuff |
| 1944 | */ |
| 1945 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1946 | /* |
| 1947 | * 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] | 1948 | * them with writepage() call back |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1949 | * |
| 1950 | * @mpd->inode: inode |
| 1951 | * @mpd->first_page: first page of the extent |
| 1952 | * @mpd->next_page: page after the last page of the extent |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1953 | * |
| 1954 | * By the time mpage_da_submit_io() is called we expect all blocks |
| 1955 | * to be allocated. this may be wrong if allocation failed. |
| 1956 | * |
| 1957 | * As pages are already locked by write_cache_pages(), we can't use it |
| 1958 | */ |
| 1959 | static int mpage_da_submit_io(struct mpage_da_data *mpd) |
| 1960 | { |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 1961 | long pages_skipped; |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 1962 | struct pagevec pvec; |
| 1963 | unsigned long index, end; |
| 1964 | int ret = 0, err, nr_pages, i; |
| 1965 | struct inode *inode = mpd->inode; |
| 1966 | struct address_space *mapping = inode->i_mapping; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1967 | |
| 1968 | BUG_ON(mpd->next_page <= mpd->first_page); |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 1969 | /* |
| 1970 | * We need to start from the first_page to the next_page - 1 |
| 1971 | * to make sure we also write the mapped dirty buffer_heads. |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 1972 | * 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] | 1973 | * at the currently mapped buffer_heads. |
| 1974 | */ |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1975 | index = mpd->first_page; |
| 1976 | end = mpd->next_page - 1; |
| 1977 | |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 1978 | pagevec_init(&pvec, 0); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1979 | while (index <= end) { |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 1980 | nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1981 | if (nr_pages == 0) |
| 1982 | break; |
| 1983 | for (i = 0; i < nr_pages; i++) { |
| 1984 | struct page *page = pvec.pages[i]; |
| 1985 | |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 1986 | index = page->index; |
| 1987 | if (index > end) |
| 1988 | break; |
| 1989 | index++; |
| 1990 | |
| 1991 | BUG_ON(!PageLocked(page)); |
| 1992 | BUG_ON(PageWriteback(page)); |
| 1993 | |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 1994 | pages_skipped = mpd->wbc->pages_skipped; |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 1995 | err = mapping->a_ops->writepage(page, mpd->wbc); |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 1996 | if (!err && (pages_skipped == mpd->wbc->pages_skipped)) |
| 1997 | /* |
| 1998 | * have successfully written the page |
| 1999 | * without skipping the same |
| 2000 | */ |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2001 | mpd->pages_written++; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2002 | /* |
| 2003 | * In error case, we have to continue because |
| 2004 | * remaining pages are still locked |
| 2005 | * XXX: unlock and re-dirty them? |
| 2006 | */ |
| 2007 | if (ret == 0) |
| 2008 | ret = err; |
| 2009 | } |
| 2010 | pagevec_release(&pvec); |
| 2011 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2012 | return ret; |
| 2013 | } |
| 2014 | |
| 2015 | /* |
| 2016 | * mpage_put_bnr_to_bhs - walk blocks and assign them actual numbers |
| 2017 | * |
| 2018 | * @mpd->inode - inode to walk through |
| 2019 | * @exbh->b_blocknr - first block on a disk |
| 2020 | * @exbh->b_size - amount of space in bytes |
| 2021 | * @logical - first logical block to start assignment with |
| 2022 | * |
| 2023 | * the function goes through all passed space and put actual disk |
Aneesh Kumar K.V | 29fa89d | 2009-05-12 16:30:27 -0400 | [diff] [blame] | 2024 | * block numbers into buffer heads, dropping BH_Delay and BH_Unwritten |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2025 | */ |
| 2026 | static void mpage_put_bnr_to_bhs(struct mpage_da_data *mpd, sector_t logical, |
| 2027 | struct buffer_head *exbh) |
| 2028 | { |
| 2029 | struct inode *inode = mpd->inode; |
| 2030 | struct address_space *mapping = inode->i_mapping; |
| 2031 | int blocks = exbh->b_size >> inode->i_blkbits; |
| 2032 | sector_t pblock = exbh->b_blocknr, cur_logical; |
| 2033 | struct buffer_head *head, *bh; |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2034 | pgoff_t index, end; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2035 | struct pagevec pvec; |
| 2036 | int nr_pages, i; |
| 2037 | |
| 2038 | index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits); |
| 2039 | end = (logical + blocks - 1) >> (PAGE_CACHE_SHIFT - inode->i_blkbits); |
| 2040 | cur_logical = index << (PAGE_CACHE_SHIFT - inode->i_blkbits); |
| 2041 | |
| 2042 | pagevec_init(&pvec, 0); |
| 2043 | |
| 2044 | while (index <= end) { |
| 2045 | /* XXX: optimize tail */ |
| 2046 | nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); |
| 2047 | if (nr_pages == 0) |
| 2048 | break; |
| 2049 | for (i = 0; i < nr_pages; i++) { |
| 2050 | struct page *page = pvec.pages[i]; |
| 2051 | |
| 2052 | index = page->index; |
| 2053 | if (index > end) |
| 2054 | break; |
| 2055 | index++; |
| 2056 | |
| 2057 | BUG_ON(!PageLocked(page)); |
| 2058 | BUG_ON(PageWriteback(page)); |
| 2059 | BUG_ON(!page_has_buffers(page)); |
| 2060 | |
| 2061 | bh = page_buffers(page); |
| 2062 | head = bh; |
| 2063 | |
| 2064 | /* skip blocks out of the range */ |
| 2065 | do { |
| 2066 | if (cur_logical >= logical) |
| 2067 | break; |
| 2068 | cur_logical++; |
| 2069 | } while ((bh = bh->b_this_page) != head); |
| 2070 | |
| 2071 | do { |
| 2072 | if (cur_logical >= logical + blocks) |
| 2073 | break; |
Aneesh Kumar K.V | 29fa89d | 2009-05-12 16:30:27 -0400 | [diff] [blame] | 2074 | |
| 2075 | if (buffer_delay(bh) || |
| 2076 | buffer_unwritten(bh)) { |
| 2077 | |
| 2078 | BUG_ON(bh->b_bdev != inode->i_sb->s_bdev); |
| 2079 | |
| 2080 | if (buffer_delay(bh)) { |
| 2081 | clear_buffer_delay(bh); |
| 2082 | bh->b_blocknr = pblock; |
| 2083 | } else { |
| 2084 | /* |
| 2085 | * unwritten already should have |
| 2086 | * blocknr assigned. Verify that |
| 2087 | */ |
| 2088 | clear_buffer_unwritten(bh); |
| 2089 | BUG_ON(bh->b_blocknr != pblock); |
| 2090 | } |
| 2091 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2092 | } else if (buffer_mapped(bh)) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2093 | BUG_ON(bh->b_blocknr != pblock); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2094 | |
| 2095 | cur_logical++; |
| 2096 | pblock++; |
| 2097 | } while ((bh = bh->b_this_page) != head); |
| 2098 | } |
| 2099 | pagevec_release(&pvec); |
| 2100 | } |
| 2101 | } |
| 2102 | |
| 2103 | |
| 2104 | /* |
| 2105 | * __unmap_underlying_blocks - just a helper function to unmap |
| 2106 | * set of blocks described by @bh |
| 2107 | */ |
| 2108 | static inline void __unmap_underlying_blocks(struct inode *inode, |
| 2109 | struct buffer_head *bh) |
| 2110 | { |
| 2111 | struct block_device *bdev = inode->i_sb->s_bdev; |
| 2112 | int blocks, i; |
| 2113 | |
| 2114 | blocks = bh->b_size >> inode->i_blkbits; |
| 2115 | for (i = 0; i < blocks; i++) |
| 2116 | unmap_underlying_metadata(bdev, bh->b_blocknr + i); |
| 2117 | } |
| 2118 | |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 2119 | static void ext4_da_block_invalidatepages(struct mpage_da_data *mpd, |
| 2120 | sector_t logical, long blk_cnt) |
| 2121 | { |
| 2122 | int nr_pages, i; |
| 2123 | pgoff_t index, end; |
| 2124 | struct pagevec pvec; |
| 2125 | struct inode *inode = mpd->inode; |
| 2126 | struct address_space *mapping = inode->i_mapping; |
| 2127 | |
| 2128 | index = logical >> (PAGE_CACHE_SHIFT - inode->i_blkbits); |
| 2129 | end = (logical + blk_cnt - 1) >> |
| 2130 | (PAGE_CACHE_SHIFT - inode->i_blkbits); |
| 2131 | while (index <= end) { |
| 2132 | nr_pages = pagevec_lookup(&pvec, mapping, index, PAGEVEC_SIZE); |
| 2133 | if (nr_pages == 0) |
| 2134 | break; |
| 2135 | for (i = 0; i < nr_pages; i++) { |
| 2136 | struct page *page = pvec.pages[i]; |
| 2137 | index = page->index; |
| 2138 | if (index > end) |
| 2139 | break; |
| 2140 | index++; |
| 2141 | |
| 2142 | BUG_ON(!PageLocked(page)); |
| 2143 | BUG_ON(PageWriteback(page)); |
| 2144 | block_invalidatepage(page, 0); |
| 2145 | ClearPageUptodate(page); |
| 2146 | unlock_page(page); |
| 2147 | } |
| 2148 | } |
| 2149 | return; |
| 2150 | } |
| 2151 | |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2152 | static void ext4_print_free_blocks(struct inode *inode) |
| 2153 | { |
| 2154 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Theodore Ts'o | 1693918 | 2009-09-26 17:43:59 -0400 | [diff] [blame] | 2155 | printk(KERN_CRIT "Total free blocks count %lld\n", |
| 2156 | ext4_count_free_blocks(inode->i_sb)); |
| 2157 | printk(KERN_CRIT "Free/Dirty block details\n"); |
| 2158 | printk(KERN_CRIT "free_blocks=%lld\n", |
| 2159 | (long long) percpu_counter_sum(&sbi->s_freeblocks_counter)); |
| 2160 | printk(KERN_CRIT "dirty_blocks=%lld\n", |
| 2161 | (long long) percpu_counter_sum(&sbi->s_dirtyblocks_counter)); |
| 2162 | printk(KERN_CRIT "Block reservation details\n"); |
| 2163 | printk(KERN_CRIT "i_reserved_data_blocks=%u\n", |
| 2164 | EXT4_I(inode)->i_reserved_data_blocks); |
| 2165 | printk(KERN_CRIT "i_reserved_meta_blocks=%u\n", |
| 2166 | EXT4_I(inode)->i_reserved_meta_blocks); |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2167 | return; |
| 2168 | } |
| 2169 | |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 2170 | /* |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2171 | * mpage_da_map_blocks - go through given space |
| 2172 | * |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2173 | * @mpd - bh describing space |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2174 | * |
| 2175 | * The function skips space we know is already mapped to disk blocks. |
| 2176 | * |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2177 | */ |
Theodore Ts'o | ed5bde0 | 2009-02-23 10:48:07 -0500 | [diff] [blame] | 2178 | static int mpage_da_map_blocks(struct mpage_da_data *mpd) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2179 | { |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 2180 | int err, blks, get_blocks_flags; |
Aneesh Kumar K.V | 030ba6b | 2008-09-08 23:14:50 -0400 | [diff] [blame] | 2181 | struct buffer_head new; |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 2182 | sector_t next = mpd->b_blocknr; |
| 2183 | unsigned max_blocks = mpd->b_size >> mpd->inode->i_blkbits; |
| 2184 | loff_t disksize = EXT4_I(mpd->inode)->i_disksize; |
| 2185 | handle_t *handle = NULL; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2186 | |
| 2187 | /* |
| 2188 | * We consider only non-mapped and non-allocated blocks |
| 2189 | */ |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2190 | if ((mpd->b_state & (1 << BH_Mapped)) && |
Aneesh Kumar K.V | 29fa89d | 2009-05-12 16:30:27 -0400 | [diff] [blame] | 2191 | !(mpd->b_state & (1 << BH_Delay)) && |
| 2192 | !(mpd->b_state & (1 << BH_Unwritten))) |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 2193 | return 0; |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 2194 | |
| 2195 | /* |
| 2196 | * If we didn't accumulate anything to write simply return |
| 2197 | */ |
| 2198 | if (!mpd->b_size) |
| 2199 | return 0; |
| 2200 | |
| 2201 | handle = ext4_journal_current_handle(); |
| 2202 | BUG_ON(!handle); |
| 2203 | |
Aneesh Kumar K.V | 79ffab3 | 2009-05-13 15:13:42 -0400 | [diff] [blame] | 2204 | /* |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 2205 | * Call ext4_get_blocks() to allocate any delayed allocation |
| 2206 | * blocks, or to convert an uninitialized extent to be |
| 2207 | * initialized (in the case where we have written into |
| 2208 | * one or more preallocated blocks). |
| 2209 | * |
| 2210 | * We pass in the magic EXT4_GET_BLOCKS_DELALLOC_RESERVE to |
| 2211 | * indicate that we are on the delayed allocation path. This |
| 2212 | * affects functions in many different parts of the allocation |
| 2213 | * call path. This flag exists primarily because we don't |
| 2214 | * want to change *many* call functions, so ext4_get_blocks() |
| 2215 | * will set the magic i_delalloc_reserved_flag once the |
| 2216 | * inode's allocation semaphore is taken. |
| 2217 | * |
| 2218 | * If the blocks in questions were delalloc blocks, set |
| 2219 | * EXT4_GET_BLOCKS_DELALLOC_RESERVE so the delalloc accounting |
| 2220 | * variables are updated after the blocks have been allocated. |
Aneesh Kumar K.V | 79ffab3 | 2009-05-13 15:13:42 -0400 | [diff] [blame] | 2221 | */ |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 2222 | new.b_state = 0; |
Aneesh Kumar K.V | 1296cc8 | 2010-01-15 01:27:59 -0500 | [diff] [blame] | 2223 | get_blocks_flags = EXT4_GET_BLOCKS_CREATE; |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 2224 | if (mpd->b_state & (1 << BH_Delay)) |
Aneesh Kumar K.V | 1296cc8 | 2010-01-15 01:27:59 -0500 | [diff] [blame] | 2225 | get_blocks_flags |= EXT4_GET_BLOCKS_DELALLOC_RESERVE; |
| 2226 | |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 2227 | blks = ext4_get_blocks(handle, mpd->inode, next, max_blocks, |
Theodore Ts'o | 2ac3b6e | 2009-05-14 13:57:08 -0400 | [diff] [blame] | 2228 | &new, get_blocks_flags); |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 2229 | if (blks < 0) { |
| 2230 | err = blks; |
Theodore Ts'o | ed5bde0 | 2009-02-23 10:48:07 -0500 | [diff] [blame] | 2231 | /* |
| 2232 | * If get block returns with error we simply |
| 2233 | * return. Later writepage will redirty the page and |
| 2234 | * writepages will find the dirty page again |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 2235 | */ |
| 2236 | if (err == -EAGAIN) |
| 2237 | return 0; |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2238 | |
| 2239 | if (err == -ENOSPC && |
Theodore Ts'o | ed5bde0 | 2009-02-23 10:48:07 -0500 | [diff] [blame] | 2240 | ext4_count_free_blocks(mpd->inode->i_sb)) { |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2241 | mpd->retval = err; |
| 2242 | return 0; |
| 2243 | } |
| 2244 | |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 2245 | /* |
Theodore Ts'o | ed5bde0 | 2009-02-23 10:48:07 -0500 | [diff] [blame] | 2246 | * get block failure will cause us to loop in |
| 2247 | * writepages, because a_ops->writepage won't be able |
| 2248 | * to make progress. The page will be redirtied by |
| 2249 | * writepage and writepages will again try to write |
| 2250 | * the same. |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 2251 | */ |
Theodore Ts'o | 1693918 | 2009-09-26 17:43:59 -0400 | [diff] [blame] | 2252 | ext4_msg(mpd->inode->i_sb, KERN_CRIT, |
| 2253 | "delayed block allocation failed for inode %lu at " |
| 2254 | "logical offset %llu with max blocks %zd with " |
| 2255 | "error %d\n", mpd->inode->i_ino, |
| 2256 | (unsigned long long) next, |
| 2257 | mpd->b_size >> mpd->inode->i_blkbits, err); |
| 2258 | printk(KERN_CRIT "This should not happen!! " |
| 2259 | "Data will be lost\n"); |
Aneesh Kumar K.V | 030ba6b | 2008-09-08 23:14:50 -0400 | [diff] [blame] | 2260 | if (err == -ENOSPC) { |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2261 | ext4_print_free_blocks(mpd->inode); |
Aneesh Kumar K.V | 030ba6b | 2008-09-08 23:14:50 -0400 | [diff] [blame] | 2262 | } |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 2263 | /* invalidate all the pages */ |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 2264 | ext4_da_block_invalidatepages(mpd, next, |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2265 | mpd->b_size >> mpd->inode->i_blkbits); |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 2266 | return err; |
| 2267 | } |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 2268 | BUG_ON(blks == 0); |
| 2269 | |
| 2270 | new.b_size = (blks << mpd->inode->i_blkbits); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2271 | |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2272 | if (buffer_new(&new)) |
| 2273 | __unmap_underlying_blocks(mpd->inode, &new); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2274 | |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2275 | /* |
| 2276 | * If blocks are delayed marked, we need to |
| 2277 | * put actual blocknr and drop delayed bit |
| 2278 | */ |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2279 | if ((mpd->b_state & (1 << BH_Delay)) || |
| 2280 | (mpd->b_state & (1 << BH_Unwritten))) |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2281 | mpage_put_bnr_to_bhs(mpd, next, &new); |
| 2282 | |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 2283 | if (ext4_should_order_data(mpd->inode)) { |
| 2284 | err = ext4_jbd2_file_inode(handle, mpd->inode); |
| 2285 | if (err) |
| 2286 | return err; |
| 2287 | } |
| 2288 | |
| 2289 | /* |
Jan Kara | 03f5d8b | 2009-06-09 00:17:05 -0400 | [diff] [blame] | 2290 | * Update on-disk size along with block allocation. |
Theodore Ts'o | 2fa3cdf | 2009-05-14 09:29:45 -0400 | [diff] [blame] | 2291 | */ |
| 2292 | disksize = ((loff_t) next + blks) << mpd->inode->i_blkbits; |
| 2293 | if (disksize > i_size_read(mpd->inode)) |
| 2294 | disksize = i_size_read(mpd->inode); |
| 2295 | if (disksize > EXT4_I(mpd->inode)->i_disksize) { |
| 2296 | ext4_update_i_disksize(mpd->inode, disksize); |
| 2297 | return ext4_mark_inode_dirty(handle, mpd->inode); |
| 2298 | } |
| 2299 | |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 2300 | return 0; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2301 | } |
| 2302 | |
Aneesh Kumar K.V | bf068ee | 2008-08-19 22:16:43 -0400 | [diff] [blame] | 2303 | #define BH_FLAGS ((1 << BH_Uptodate) | (1 << BH_Mapped) | \ |
| 2304 | (1 << BH_Delay) | (1 << BH_Unwritten)) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2305 | |
| 2306 | /* |
| 2307 | * mpage_add_bh_to_extent - try to add one more block to extent of blocks |
| 2308 | * |
| 2309 | * @mpd->lbh - extent of blocks |
| 2310 | * @logical - logical number of the block in the file |
| 2311 | * @bh - bh of the block (used to access block's state) |
| 2312 | * |
| 2313 | * the function is used to collect contig. blocks in same state |
| 2314 | */ |
| 2315 | 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] | 2316 | sector_t logical, size_t b_size, |
| 2317 | unsigned long b_state) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2318 | { |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2319 | sector_t next; |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2320 | int nrblocks = mpd->b_size >> mpd->inode->i_blkbits; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2321 | |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2322 | /* check if thereserved journal credits might overflow */ |
| 2323 | if (!(EXT4_I(mpd->inode)->i_flags & EXT4_EXTENTS_FL)) { |
| 2324 | if (nrblocks >= EXT4_MAX_TRANS_DATA) { |
| 2325 | /* |
| 2326 | * With non-extent format we are limited by the journal |
| 2327 | * credit available. Total credit needed to insert |
| 2328 | * nrblocks contiguous blocks is dependent on the |
| 2329 | * nrblocks. So limit nrblocks. |
| 2330 | */ |
| 2331 | goto flush_it; |
| 2332 | } else if ((nrblocks + (b_size >> mpd->inode->i_blkbits)) > |
| 2333 | EXT4_MAX_TRANS_DATA) { |
| 2334 | /* |
| 2335 | * Adding the new buffer_head would make it cross the |
| 2336 | * allowed limit for which we have journal credit |
| 2337 | * reserved. So limit the new bh->b_size |
| 2338 | */ |
| 2339 | b_size = (EXT4_MAX_TRANS_DATA - nrblocks) << |
| 2340 | mpd->inode->i_blkbits; |
| 2341 | /* we will do mpage_da_submit_io in the next loop */ |
| 2342 | } |
| 2343 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2344 | /* |
| 2345 | * First block in the extent |
| 2346 | */ |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2347 | if (mpd->b_size == 0) { |
| 2348 | mpd->b_blocknr = logical; |
| 2349 | mpd->b_size = b_size; |
| 2350 | mpd->b_state = b_state & BH_FLAGS; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2351 | return; |
| 2352 | } |
| 2353 | |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2354 | next = mpd->b_blocknr + nrblocks; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2355 | /* |
| 2356 | * Can we merge the block to our big extent? |
| 2357 | */ |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2358 | if (logical == next && (b_state & BH_FLAGS) == mpd->b_state) { |
| 2359 | mpd->b_size += b_size; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2360 | return; |
| 2361 | } |
| 2362 | |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2363 | flush_it: |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2364 | /* |
| 2365 | * We couldn't merge the block to our extent, so we |
| 2366 | * need to flush current extent and start new one |
| 2367 | */ |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 2368 | if (mpage_da_map_blocks(mpd) == 0) |
| 2369 | mpage_da_submit_io(mpd); |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2370 | mpd->io_done = 1; |
| 2371 | return; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2372 | } |
| 2373 | |
Aneesh Kumar K.V | c364b22 | 2009-06-14 17:57:10 -0400 | [diff] [blame] | 2374 | 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] | 2375 | { |
Aneesh Kumar K.V | c364b22 | 2009-06-14 17:57:10 -0400 | [diff] [blame] | 2376 | return (buffer_delay(bh) || buffer_unwritten(bh)) && buffer_dirty(bh); |
Aneesh Kumar K.V | 29fa89d | 2009-05-12 16:30:27 -0400 | [diff] [blame] | 2377 | } |
| 2378 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2379 | /* |
| 2380 | * __mpage_da_writepage - finds extent of pages and blocks |
| 2381 | * |
| 2382 | * @page: page to consider |
| 2383 | * @wbc: not used, we just follow rules |
| 2384 | * @data: context |
| 2385 | * |
| 2386 | * The function finds extents of pages and scan them for all blocks. |
| 2387 | */ |
| 2388 | static int __mpage_da_writepage(struct page *page, |
| 2389 | struct writeback_control *wbc, void *data) |
| 2390 | { |
| 2391 | struct mpage_da_data *mpd = data; |
| 2392 | struct inode *inode = mpd->inode; |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2393 | struct buffer_head *bh, *head; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2394 | sector_t logical; |
| 2395 | |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2396 | if (mpd->io_done) { |
| 2397 | /* |
| 2398 | * Rest of the page in the page_vec |
| 2399 | * redirty then and skip then. We will |
Anand Gadiyar | fd589a8 | 2009-07-16 17:13:03 +0200 | [diff] [blame] | 2400 | * try to write them again after |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2401 | * starting a new transaction |
| 2402 | */ |
| 2403 | redirty_page_for_writepage(wbc, page); |
| 2404 | unlock_page(page); |
| 2405 | return MPAGE_DA_EXTENT_TAIL; |
| 2406 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2407 | /* |
| 2408 | * Can we merge this page to current extent? |
| 2409 | */ |
| 2410 | if (mpd->next_page != page->index) { |
| 2411 | /* |
| 2412 | * Nope, we can't. So, we map non-allocated blocks |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2413 | * and start IO on them using writepage() |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2414 | */ |
| 2415 | if (mpd->next_page != mpd->first_page) { |
Aneesh Kumar K.V | c4a0c46 | 2008-08-19 21:08:18 -0400 | [diff] [blame] | 2416 | if (mpage_da_map_blocks(mpd) == 0) |
| 2417 | mpage_da_submit_io(mpd); |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2418 | /* |
| 2419 | * skip rest of the page in the page_vec |
| 2420 | */ |
| 2421 | mpd->io_done = 1; |
| 2422 | redirty_page_for_writepage(wbc, page); |
| 2423 | unlock_page(page); |
| 2424 | return MPAGE_DA_EXTENT_TAIL; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2425 | } |
| 2426 | |
| 2427 | /* |
| 2428 | * Start next extent of pages ... |
| 2429 | */ |
| 2430 | mpd->first_page = page->index; |
| 2431 | |
| 2432 | /* |
| 2433 | * ... and blocks |
| 2434 | */ |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2435 | mpd->b_size = 0; |
| 2436 | mpd->b_state = 0; |
| 2437 | mpd->b_blocknr = 0; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2438 | } |
| 2439 | |
| 2440 | mpd->next_page = page->index + 1; |
| 2441 | logical = (sector_t) page->index << |
| 2442 | (PAGE_CACHE_SHIFT - inode->i_blkbits); |
| 2443 | |
| 2444 | if (!page_has_buffers(page)) { |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2445 | mpage_add_bh_to_extent(mpd, logical, PAGE_CACHE_SIZE, |
| 2446 | (1 << BH_Dirty) | (1 << BH_Uptodate)); |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2447 | if (mpd->io_done) |
| 2448 | return MPAGE_DA_EXTENT_TAIL; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2449 | } else { |
| 2450 | /* |
| 2451 | * Page with regular buffer heads, just add all dirty ones |
| 2452 | */ |
| 2453 | head = page_buffers(page); |
| 2454 | bh = head; |
| 2455 | do { |
| 2456 | BUG_ON(buffer_locked(bh)); |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 2457 | /* |
| 2458 | * We need to try to allocate |
| 2459 | * unmapped blocks in the same page. |
| 2460 | * Otherwise we won't make progress |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 2461 | * with the page in ext4_writepage |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 2462 | */ |
Aneesh Kumar K.V | c364b22 | 2009-06-14 17:57:10 -0400 | [diff] [blame] | 2463 | if (ext4_bh_delay_or_unwritten(NULL, bh)) { |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2464 | mpage_add_bh_to_extent(mpd, logical, |
| 2465 | bh->b_size, |
| 2466 | bh->b_state); |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2467 | if (mpd->io_done) |
| 2468 | return MPAGE_DA_EXTENT_TAIL; |
Aneesh Kumar K.V | 791b7f0 | 2009-01-05 21:50:43 -0500 | [diff] [blame] | 2469 | } else if (buffer_dirty(bh) && (buffer_mapped(bh))) { |
| 2470 | /* |
| 2471 | * mapped dirty buffer. We need to update |
| 2472 | * the b_state because we look at |
| 2473 | * b_state in mpage_da_map_blocks. We don't |
| 2474 | * update b_size because if we find an |
| 2475 | * unmapped buffer_head later we need to |
| 2476 | * use the b_state flag of that buffer_head. |
| 2477 | */ |
Theodore Ts'o | 8dc207c | 2009-02-23 06:46:01 -0500 | [diff] [blame] | 2478 | if (mpd->b_size == 0) |
| 2479 | mpd->b_state = bh->b_state & BH_FLAGS; |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2480 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2481 | logical++; |
| 2482 | } while ((bh = bh->b_this_page) != head); |
| 2483 | } |
| 2484 | |
| 2485 | return 0; |
| 2486 | } |
| 2487 | |
| 2488 | /* |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 2489 | * This is a special get_blocks_t callback which is used by |
| 2490 | * ext4_da_write_begin(). It will either return mapped block or |
| 2491 | * reserve space for a single block. |
Aneesh Kumar K.V | 29fa89d | 2009-05-12 16:30:27 -0400 | [diff] [blame] | 2492 | * |
| 2493 | * For delayed buffer_head we have BH_Mapped, BH_New, BH_Delay set. |
| 2494 | * We also have b_blocknr = -1 and b_bdev initialized properly |
| 2495 | * |
| 2496 | * For unwritten buffer_head we have BH_Mapped, BH_New, BH_Unwritten set. |
| 2497 | * We also have b_blocknr = physicalblock mapping unwritten extent and b_bdev |
| 2498 | * initialized properly. |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2499 | */ |
| 2500 | static int ext4_da_get_block_prep(struct inode *inode, sector_t iblock, |
| 2501 | struct buffer_head *bh_result, int create) |
| 2502 | { |
| 2503 | int ret = 0; |
Aneesh Kumar K.V | 33b9817 | 2009-05-12 14:40:37 -0400 | [diff] [blame] | 2504 | sector_t invalid_block = ~((sector_t) 0xffff); |
| 2505 | |
| 2506 | if (invalid_block < ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es)) |
| 2507 | invalid_block = ~0; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2508 | |
| 2509 | BUG_ON(create == 0); |
| 2510 | BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize); |
| 2511 | |
| 2512 | /* |
| 2513 | * first, we need to know whether the block is allocated already |
| 2514 | * preallocated blocks are unmapped but should treated |
| 2515 | * the same as allocated blocks. |
| 2516 | */ |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 2517 | ret = ext4_get_blocks(NULL, inode, iblock, 1, bh_result, 0); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 2518 | if ((ret == 0) && !buffer_delay(bh_result)) { |
| 2519 | /* the block isn't (pre)allocated yet, let's reserve space */ |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2520 | /* |
| 2521 | * XXX: __block_prepare_write() unmaps passed block, |
| 2522 | * is it OK? |
| 2523 | */ |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 2524 | ret = ext4_da_reserve_space(inode, iblock); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 2525 | if (ret) |
| 2526 | /* not enough space to reserve */ |
| 2527 | return ret; |
| 2528 | |
Aneesh Kumar K.V | 33b9817 | 2009-05-12 14:40:37 -0400 | [diff] [blame] | 2529 | map_bh(bh_result, inode->i_sb, invalid_block); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2530 | set_buffer_new(bh_result); |
| 2531 | set_buffer_delay(bh_result); |
| 2532 | } else if (ret > 0) { |
| 2533 | bh_result->b_size = (ret << inode->i_blkbits); |
Aneesh Kumar K.V | 29fa89d | 2009-05-12 16:30:27 -0400 | [diff] [blame] | 2534 | if (buffer_unwritten(bh_result)) { |
| 2535 | /* A delayed write to unwritten bh should |
| 2536 | * be marked new and mapped. Mapped ensures |
| 2537 | * that we don't do get_block multiple times |
| 2538 | * when we write to the same offset and new |
| 2539 | * ensures that we do proper zero out for |
| 2540 | * partial write. |
| 2541 | */ |
Aneesh Kumar K.V | 9c1ee18 | 2009-05-13 18:36:58 -0400 | [diff] [blame] | 2542 | set_buffer_new(bh_result); |
Aneesh Kumar K.V | 29fa89d | 2009-05-12 16:30:27 -0400 | [diff] [blame] | 2543 | set_buffer_mapped(bh_result); |
| 2544 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2545 | ret = 0; |
| 2546 | } |
| 2547 | |
| 2548 | return ret; |
| 2549 | } |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2550 | |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 2551 | /* |
| 2552 | * This function is used as a standard get_block_t calback function |
| 2553 | * when there is no desire to allocate any blocks. It is used as a |
| 2554 | * callback function for block_prepare_write(), nobh_writepage(), and |
| 2555 | * block_write_full_page(). These functions should only try to map a |
| 2556 | * single block at a time. |
| 2557 | * |
| 2558 | * Since this function doesn't do block allocations even if the caller |
| 2559 | * requests it by passing in create=1, it is critically important that |
| 2560 | * any caller checks to make sure that any buffer heads are returned |
| 2561 | * by this function are either all already mapped or marked for |
| 2562 | * delayed allocation before calling nobh_writepage() or |
| 2563 | * block_write_full_page(). Otherwise, b_blocknr could be left |
| 2564 | * unitialized, and the page write functions will be taken by |
| 2565 | * surprise. |
| 2566 | */ |
| 2567 | 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] | 2568 | struct buffer_head *bh_result, int create) |
| 2569 | { |
| 2570 | int ret = 0; |
| 2571 | unsigned max_blocks = bh_result->b_size >> inode->i_blkbits; |
| 2572 | |
Theodore Ts'o | a2dc52b | 2009-05-12 13:51:29 -0400 | [diff] [blame] | 2573 | BUG_ON(bh_result->b_size != inode->i_sb->s_blocksize); |
| 2574 | |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2575 | /* |
| 2576 | * we don't want to do block allocation in writepage |
| 2577 | * so call get_block_wrap with create = 0 |
| 2578 | */ |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 2579 | ret = ext4_get_blocks(NULL, inode, iblock, max_blocks, bh_result, 0); |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2580 | if (ret > 0) { |
| 2581 | bh_result->b_size = (ret << inode->i_blkbits); |
| 2582 | ret = 0; |
| 2583 | } |
| 2584 | return ret; |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2585 | } |
| 2586 | |
Aneesh Kumar K.V | 62e086b | 2009-06-14 17:59:34 -0400 | [diff] [blame] | 2587 | static int bget_one(handle_t *handle, struct buffer_head *bh) |
| 2588 | { |
| 2589 | get_bh(bh); |
| 2590 | return 0; |
| 2591 | } |
| 2592 | |
| 2593 | static int bput_one(handle_t *handle, struct buffer_head *bh) |
| 2594 | { |
| 2595 | put_bh(bh); |
| 2596 | return 0; |
| 2597 | } |
| 2598 | |
| 2599 | static int __ext4_journalled_writepage(struct page *page, |
Aneesh Kumar K.V | 62e086b | 2009-06-14 17:59:34 -0400 | [diff] [blame] | 2600 | unsigned int len) |
| 2601 | { |
| 2602 | struct address_space *mapping = page->mapping; |
| 2603 | struct inode *inode = mapping->host; |
| 2604 | struct buffer_head *page_bufs; |
| 2605 | handle_t *handle = NULL; |
| 2606 | int ret = 0; |
| 2607 | int err; |
| 2608 | |
| 2609 | page_bufs = page_buffers(page); |
| 2610 | BUG_ON(!page_bufs); |
| 2611 | walk_page_buffers(handle, page_bufs, 0, len, NULL, bget_one); |
| 2612 | /* As soon as we unlock the page, it can go away, but we have |
| 2613 | * references to buffers so we are safe */ |
| 2614 | unlock_page(page); |
| 2615 | |
| 2616 | handle = ext4_journal_start(inode, ext4_writepage_trans_blocks(inode)); |
| 2617 | if (IS_ERR(handle)) { |
| 2618 | ret = PTR_ERR(handle); |
| 2619 | goto out; |
| 2620 | } |
| 2621 | |
| 2622 | ret = walk_page_buffers(handle, page_bufs, 0, len, NULL, |
| 2623 | do_journal_get_write_access); |
| 2624 | |
| 2625 | err = walk_page_buffers(handle, page_bufs, 0, len, NULL, |
| 2626 | write_end_fn); |
| 2627 | if (ret == 0) |
| 2628 | ret = err; |
| 2629 | err = ext4_journal_stop(handle); |
| 2630 | if (!ret) |
| 2631 | ret = err; |
| 2632 | |
| 2633 | walk_page_buffers(handle, page_bufs, 0, len, NULL, bput_one); |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 2634 | ext4_set_inode_state(inode, EXT4_STATE_JDATA); |
Aneesh Kumar K.V | 62e086b | 2009-06-14 17:59:34 -0400 | [diff] [blame] | 2635 | out: |
| 2636 | return ret; |
| 2637 | } |
| 2638 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2639 | /* |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 2640 | * Note that we don't need to start a transaction unless we're journaling data |
| 2641 | * because we should have holes filled from ext4_page_mkwrite(). We even don't |
| 2642 | * need to file the inode to the transaction's list in ordered mode because if |
| 2643 | * we are writing back data added by write(), the inode is already there and if |
| 2644 | * we are writing back data modified via mmap(), noone guarantees in which |
| 2645 | * transaction the data will hit the disk. In case we are journaling data, we |
| 2646 | * cannot start transaction directly because transaction start ranks above page |
| 2647 | * lock so we have to do some magic. |
| 2648 | * |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 2649 | * This function can get called via... |
| 2650 | * - ext4_da_writepages after taking page lock (have journal handle) |
| 2651 | * - journal_submit_inode_data_buffers (no journal handle) |
| 2652 | * - shrink_page_list via pdflush (no journal handle) |
| 2653 | * - grab_page_cache when doing write_begin (have journal handle) |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 2654 | * |
| 2655 | * We don't do any block allocation in this function. If we have page with |
| 2656 | * multiple blocks we need to write those buffer_heads that are mapped. This |
| 2657 | * is important for mmaped based write. So if we do with blocksize 1K |
| 2658 | * truncate(f, 1024); |
| 2659 | * a = mmap(f, 0, 4096); |
| 2660 | * a[0] = 'a'; |
| 2661 | * truncate(f, 4096); |
| 2662 | * we have in the page first buffer_head mapped via page_mkwrite call back |
| 2663 | * but other bufer_heads would be unmapped but dirty(dirty done via the |
| 2664 | * do_wp_page). So writepage should write the first block. If we modify |
| 2665 | * the mmap area beyond 1024 we will again get a page_fault and the |
| 2666 | * page_mkwrite callback will do the block allocation and mark the |
| 2667 | * buffer_heads mapped. |
| 2668 | * |
| 2669 | * We redirty the page if we have any buffer_heads that is either delay or |
| 2670 | * unwritten in the page. |
| 2671 | * |
| 2672 | * We can get recursively called as show below. |
| 2673 | * |
| 2674 | * ext4_writepage() -> kmalloc() -> __alloc_pages() -> page_launder() -> |
| 2675 | * ext4_writepage() |
| 2676 | * |
| 2677 | * But since we don't do any block allocation we should not deadlock. |
| 2678 | * 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] | 2679 | */ |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 2680 | static int ext4_writepage(struct page *page, |
Aneesh Kumar K.V | 62e086b | 2009-06-14 17:59:34 -0400 | [diff] [blame] | 2681 | struct writeback_control *wbc) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2682 | { |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2683 | int ret = 0; |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2684 | loff_t size; |
Theodore Ts'o | 498e5f2 | 2008-11-05 00:14:04 -0500 | [diff] [blame] | 2685 | unsigned int len; |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2686 | struct buffer_head *page_bufs; |
| 2687 | struct inode *inode = page->mapping->host; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2688 | |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 2689 | trace_ext4_writepage(inode, page); |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2690 | size = i_size_read(inode); |
| 2691 | if (page->index == size >> PAGE_CACHE_SHIFT) |
| 2692 | len = size & ~PAGE_CACHE_MASK; |
| 2693 | else |
| 2694 | len = PAGE_CACHE_SIZE; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2695 | |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2696 | if (page_has_buffers(page)) { |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2697 | page_bufs = page_buffers(page); |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2698 | if (walk_page_buffers(NULL, page_bufs, 0, len, NULL, |
Aneesh Kumar K.V | c364b22 | 2009-06-14 17:57:10 -0400 | [diff] [blame] | 2699 | ext4_bh_delay_or_unwritten)) { |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2700 | /* |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2701 | * We don't want to do block allocation |
| 2702 | * So redirty the page and return |
Aneesh Kumar K.V | cd1aac3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2703 | * We may reach here when we do a journal commit |
| 2704 | * via journal_submit_inode_data_buffers. |
| 2705 | * If we don't have mapping block we just ignore |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2706 | * them. We can also reach here via shrink_page_list |
| 2707 | */ |
| 2708 | redirty_page_for_writepage(wbc, page); |
| 2709 | unlock_page(page); |
| 2710 | return 0; |
| 2711 | } |
| 2712 | } else { |
| 2713 | /* |
| 2714 | * The test for page_has_buffers() is subtle: |
| 2715 | * We know the page is dirty but it lost buffers. That means |
| 2716 | * that at some moment in time after write_begin()/write_end() |
| 2717 | * has been called all buffers have been clean and thus they |
| 2718 | * must have been written at least once. So they are all |
| 2719 | * mapped and we can happily proceed with mapping them |
| 2720 | * and writing the page. |
| 2721 | * |
| 2722 | * Try to initialize the buffer_heads and check whether |
| 2723 | * all are mapped and non delay. We don't want to |
| 2724 | * do block allocation here. |
| 2725 | */ |
Aneesh Kumar K.V | b767e78 | 2009-06-04 08:06:06 -0400 | [diff] [blame] | 2726 | ret = block_prepare_write(page, 0, len, |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 2727 | noalloc_get_block_write); |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2728 | if (!ret) { |
| 2729 | page_bufs = page_buffers(page); |
| 2730 | /* check whether all are mapped and non delay */ |
| 2731 | if (walk_page_buffers(NULL, page_bufs, 0, len, NULL, |
Aneesh Kumar K.V | c364b22 | 2009-06-14 17:57:10 -0400 | [diff] [blame] | 2732 | ext4_bh_delay_or_unwritten)) { |
Aneesh Kumar K.V | f0e6c98 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2733 | redirty_page_for_writepage(wbc, page); |
| 2734 | unlock_page(page); |
| 2735 | return 0; |
| 2736 | } |
| 2737 | } else { |
| 2738 | /* |
| 2739 | * We can't do block allocation here |
| 2740 | * so just redity the page and unlock |
| 2741 | * and return |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2742 | */ |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2743 | redirty_page_for_writepage(wbc, page); |
| 2744 | unlock_page(page); |
| 2745 | return 0; |
| 2746 | } |
Aneesh Kumar K.V | ed9b3e3 | 2008-11-07 09:06:45 -0500 | [diff] [blame] | 2747 | /* now mark the buffer_heads as dirty and uptodate */ |
Aneesh Kumar K.V | b767e78 | 2009-06-04 08:06:06 -0400 | [diff] [blame] | 2748 | block_commit_write(page, 0, len); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2749 | } |
| 2750 | |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 2751 | if (PageChecked(page) && ext4_should_journal_data(inode)) { |
| 2752 | /* |
| 2753 | * It's mmapped pagecache. Add buffers and journal it. There |
| 2754 | * doesn't seem much point in redirtying the page here. |
| 2755 | */ |
| 2756 | ClearPageChecked(page); |
Wu Fengguang | 3f0ca30 | 2009-11-24 11:15:44 -0500 | [diff] [blame] | 2757 | return __ext4_journalled_writepage(page, len); |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 2758 | } |
| 2759 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2760 | if (test_opt(inode->i_sb, NOBH) && ext4_should_writeback_data(inode)) |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 2761 | ret = nobh_writepage(page, noalloc_get_block_write, wbc); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2762 | else |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 2763 | ret = block_write_full_page(page, noalloc_get_block_write, |
| 2764 | wbc); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2765 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2766 | return ret; |
| 2767 | } |
| 2768 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2769 | /* |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2770 | * This is called via ext4_da_writepages() to |
| 2771 | * calulate the total number of credits to reserve to fit |
| 2772 | * a single extent allocation into a single transaction, |
| 2773 | * ext4_da_writpeages() will loop calling this before |
| 2774 | * the block allocation. |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2775 | */ |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2776 | |
| 2777 | static int ext4_da_writepages_trans_blocks(struct inode *inode) |
| 2778 | { |
| 2779 | int max_blocks = EXT4_I(inode)->i_reserved_data_blocks; |
| 2780 | |
| 2781 | /* |
| 2782 | * With non-extent format the journal credit needed to |
| 2783 | * insert nrblocks contiguous block is dependent on |
| 2784 | * number of contiguous block. So we will limit |
| 2785 | * number of contiguous block to a sane value |
| 2786 | */ |
Julia Lawall | 30c6e07a | 2009-11-15 15:30:58 -0500 | [diff] [blame] | 2787 | if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) && |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2788 | (max_blocks > EXT4_MAX_TRANS_DATA)) |
| 2789 | max_blocks = EXT4_MAX_TRANS_DATA; |
| 2790 | |
| 2791 | return ext4_chunk_trans_blocks(inode, max_blocks); |
| 2792 | } |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2793 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2794 | static int ext4_da_writepages(struct address_space *mapping, |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2795 | struct writeback_control *wbc) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2796 | { |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2797 | pgoff_t index; |
| 2798 | int range_whole = 0; |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2799 | handle_t *handle = NULL; |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2800 | struct mpage_da_data mpd; |
Aneesh Kumar K.V | 5e745b0 | 2008-08-18 18:00:57 -0400 | [diff] [blame] | 2801 | struct inode *inode = mapping->host; |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2802 | int no_nrwrite_index_update; |
Theodore Ts'o | 498e5f2 | 2008-11-05 00:14:04 -0500 | [diff] [blame] | 2803 | int pages_written = 0; |
| 2804 | long pages_skipped; |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 2805 | unsigned int max_pages; |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2806 | int range_cyclic, cycled = 1, io_done = 0; |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 2807 | int needed_blocks, ret = 0; |
| 2808 | long desired_nr_to_write, nr_to_writebump = 0; |
Theodore Ts'o | de89de6 | 2009-08-31 17:00:59 -0400 | [diff] [blame] | 2809 | loff_t range_start = wbc->range_start; |
Aneesh Kumar K.V | 5e745b0 | 2008-08-18 18:00:57 -0400 | [diff] [blame] | 2810 | struct ext4_sb_info *sbi = EXT4_SB(mapping->host->i_sb); |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2811 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 2812 | trace_ext4_da_writepages(inode, wbc); |
Theodore Ts'o | ba80b10 | 2009-01-03 20:03:21 -0500 | [diff] [blame] | 2813 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2814 | /* |
| 2815 | * No pages to write? This is mainly a kludge to avoid starting |
| 2816 | * a transaction for special inodes like journal inode on last iput() |
| 2817 | * because that could violate lock ordering on umount |
| 2818 | */ |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2819 | if (!mapping->nrpages || !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2820 | return 0; |
Theodore Ts'o | 2a21e37 | 2008-11-05 09:22:24 -0500 | [diff] [blame] | 2821 | |
| 2822 | /* |
| 2823 | * If the filesystem has aborted, it is read-only, so return |
| 2824 | * right away instead of dumping stack traces later on that |
| 2825 | * will obscure the real source of the problem. We test |
Theodore Ts'o | 4ab2f15 | 2009-06-13 10:09:36 -0400 | [diff] [blame] | 2826 | * 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] | 2827 | * the latter could be true if the filesystem is mounted |
| 2828 | * read-only, and in that case, ext4_da_writepages should |
| 2829 | * *never* be called, so if that ever happens, we would want |
| 2830 | * the stack trace. |
| 2831 | */ |
Theodore Ts'o | 4ab2f15 | 2009-06-13 10:09:36 -0400 | [diff] [blame] | 2832 | if (unlikely(sbi->s_mount_flags & EXT4_MF_FS_ABORTED)) |
Theodore Ts'o | 2a21e37 | 2008-11-05 09:22:24 -0500 | [diff] [blame] | 2833 | return -EROFS; |
| 2834 | |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2835 | if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX) |
| 2836 | range_whole = 1; |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2837 | |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2838 | range_cyclic = wbc->range_cyclic; |
| 2839 | if (wbc->range_cyclic) { |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2840 | index = mapping->writeback_index; |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2841 | if (index) |
| 2842 | cycled = 0; |
| 2843 | wbc->range_start = index << PAGE_CACHE_SHIFT; |
| 2844 | wbc->range_end = LLONG_MAX; |
| 2845 | wbc->range_cyclic = 0; |
| 2846 | } else |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2847 | index = wbc->range_start >> PAGE_CACHE_SHIFT; |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2848 | |
Theodore Ts'o | 55138e0 | 2009-09-29 13:31:31 -0400 | [diff] [blame] | 2849 | /* |
| 2850 | * This works around two forms of stupidity. The first is in |
| 2851 | * the writeback code, which caps the maximum number of pages |
| 2852 | * written to be 1024 pages. This is wrong on multiple |
| 2853 | * levels; different architectues have a different page size, |
| 2854 | * which changes the maximum amount of data which gets |
| 2855 | * written. Secondly, 4 megabytes is way too small. XFS |
| 2856 | * forces this value to be 16 megabytes by multiplying |
| 2857 | * nr_to_write parameter by four, and then relies on its |
| 2858 | * allocator to allocate larger extents to make them |
| 2859 | * contiguous. Unfortunately this brings us to the second |
| 2860 | * stupidity, which is that ext4's mballoc code only allocates |
| 2861 | * at most 2048 blocks. So we force contiguous writes up to |
| 2862 | * the number of dirty blocks in the inode, or |
| 2863 | * sbi->max_writeback_mb_bump whichever is smaller. |
| 2864 | */ |
| 2865 | max_pages = sbi->s_max_writeback_mb_bump << (20 - PAGE_CACHE_SHIFT); |
| 2866 | if (!range_cyclic && range_whole) |
| 2867 | desired_nr_to_write = wbc->nr_to_write * 8; |
| 2868 | else |
| 2869 | desired_nr_to_write = ext4_num_dirty_pages(inode, index, |
| 2870 | max_pages); |
| 2871 | if (desired_nr_to_write > max_pages) |
| 2872 | desired_nr_to_write = max_pages; |
| 2873 | |
| 2874 | if (wbc->nr_to_write < desired_nr_to_write) { |
| 2875 | nr_to_writebump = desired_nr_to_write - wbc->nr_to_write; |
| 2876 | wbc->nr_to_write = desired_nr_to_write; |
| 2877 | } |
| 2878 | |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2879 | mpd.wbc = wbc; |
| 2880 | mpd.inode = mapping->host; |
| 2881 | |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2882 | /* |
| 2883 | * we don't want write_cache_pages to update |
| 2884 | * nr_to_write and writeback_index |
| 2885 | */ |
| 2886 | no_nrwrite_index_update = wbc->no_nrwrite_index_update; |
| 2887 | wbc->no_nrwrite_index_update = 1; |
| 2888 | pages_skipped = wbc->pages_skipped; |
| 2889 | |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2890 | retry: |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2891 | while (!ret && wbc->nr_to_write > 0) { |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2892 | |
| 2893 | /* |
| 2894 | * we insert one extent at a time. So we need |
| 2895 | * credit needed for single extent allocation. |
| 2896 | * journalled mode is currently not supported |
| 2897 | * by delalloc |
| 2898 | */ |
| 2899 | BUG_ON(ext4_should_journal_data(inode)); |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2900 | needed_blocks = ext4_da_writepages_trans_blocks(inode); |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2901 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2902 | /* start a new transaction*/ |
| 2903 | handle = ext4_journal_start(inode, needed_blocks); |
| 2904 | if (IS_ERR(handle)) { |
| 2905 | ret = PTR_ERR(handle); |
Theodore Ts'o | 1693918 | 2009-09-26 17:43:59 -0400 | [diff] [blame] | 2906 | ext4_msg(inode->i_sb, KERN_CRIT, "%s: jbd2_start: " |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2907 | "%ld pages, ino %lu; err %d\n", __func__, |
| 2908 | wbc->nr_to_write, inode->i_ino, ret); |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2909 | goto out_writepages; |
| 2910 | } |
Theodore Ts'o | f63e600 | 2009-02-23 16:42:39 -0500 | [diff] [blame] | 2911 | |
| 2912 | /* |
| 2913 | * Now call __mpage_da_writepage to find the next |
| 2914 | * contiguous region of logical blocks that need |
| 2915 | * blocks to be allocated by ext4. We don't actually |
| 2916 | * submit the blocks for I/O here, even though |
| 2917 | * write_cache_pages thinks it will, and will set the |
| 2918 | * pages as clean for write before calling |
| 2919 | * __mpage_da_writepage(). |
| 2920 | */ |
| 2921 | mpd.b_size = 0; |
| 2922 | mpd.b_state = 0; |
| 2923 | mpd.b_blocknr = 0; |
| 2924 | mpd.first_page = 0; |
| 2925 | mpd.next_page = 0; |
| 2926 | mpd.io_done = 0; |
| 2927 | mpd.pages_written = 0; |
| 2928 | mpd.retval = 0; |
| 2929 | ret = write_cache_pages(mapping, wbc, __mpage_da_writepage, |
| 2930 | &mpd); |
| 2931 | /* |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 2932 | * If we have a contiguous extent of pages and we |
Theodore Ts'o | f63e600 | 2009-02-23 16:42:39 -0500 | [diff] [blame] | 2933 | * haven't done the I/O yet, map the blocks and submit |
| 2934 | * them for I/O. |
| 2935 | */ |
| 2936 | if (!mpd.io_done && mpd.next_page != mpd.first_page) { |
| 2937 | if (mpage_da_map_blocks(&mpd) == 0) |
| 2938 | mpage_da_submit_io(&mpd); |
| 2939 | mpd.io_done = 1; |
| 2940 | ret = MPAGE_DA_EXTENT_TAIL; |
| 2941 | } |
Theodore Ts'o | b3a3ca8 | 2009-08-31 23:13:11 -0400 | [diff] [blame] | 2942 | trace_ext4_da_write_pages(inode, &mpd); |
Theodore Ts'o | f63e600 | 2009-02-23 16:42:39 -0500 | [diff] [blame] | 2943 | wbc->nr_to_write -= mpd.pages_written; |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2944 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2945 | ext4_journal_stop(handle); |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2946 | |
Eric Sandeen | 8f64b32 | 2009-02-26 00:57:35 -0500 | [diff] [blame] | 2947 | if ((mpd.retval == -ENOSPC) && sbi->s_journal) { |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2948 | /* commit the transaction which would |
| 2949 | * free blocks released in the transaction |
| 2950 | * and try again |
| 2951 | */ |
Aneesh Kumar K.V | df22291 | 2008-09-08 23:05:34 -0400 | [diff] [blame] | 2952 | jbd2_journal_force_commit_nested(sbi->s_journal); |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2953 | wbc->pages_skipped = pages_skipped; |
| 2954 | ret = 0; |
| 2955 | } else if (ret == MPAGE_DA_EXTENT_TAIL) { |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2956 | /* |
| 2957 | * got one extent now try with |
| 2958 | * rest of the pages |
| 2959 | */ |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2960 | pages_written += mpd.pages_written; |
| 2961 | wbc->pages_skipped = pages_skipped; |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2962 | ret = 0; |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2963 | io_done = 1; |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2964 | } else if (wbc->nr_to_write) |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2965 | /* |
| 2966 | * There is no more writeout needed |
| 2967 | * or we requested for a noblocking writeout |
| 2968 | * and we found the device congested |
| 2969 | */ |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2970 | break; |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2971 | } |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2972 | if (!io_done && !cycled) { |
| 2973 | cycled = 1; |
| 2974 | index = 0; |
| 2975 | wbc->range_start = index << PAGE_CACHE_SHIFT; |
| 2976 | wbc->range_end = mapping->writeback_index - 1; |
| 2977 | goto retry; |
| 2978 | } |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2979 | if (pages_skipped != wbc->pages_skipped) |
Theodore Ts'o | 1693918 | 2009-09-26 17:43:59 -0400 | [diff] [blame] | 2980 | ext4_msg(inode->i_sb, KERN_CRIT, |
| 2981 | "This should not happen leaving %s " |
| 2982 | "with nr_to_write = %ld ret = %d\n", |
| 2983 | __func__, wbc->nr_to_write, ret); |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2984 | |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2985 | /* Update index */ |
| 2986 | index += pages_written; |
Aneesh Kumar K.V | 2acf2c2 | 2009-02-14 10:42:58 -0500 | [diff] [blame] | 2987 | wbc->range_cyclic = range_cyclic; |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2988 | if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0)) |
| 2989 | /* |
| 2990 | * set the writeback_index so that range_cyclic |
| 2991 | * mode will write it back later |
| 2992 | */ |
| 2993 | mapping->writeback_index = index; |
Aneesh Kumar K.V | a1d6cc5 | 2008-08-19 21:55:02 -0400 | [diff] [blame] | 2994 | |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2995 | out_writepages: |
Aneesh Kumar K.V | 22208de | 2008-10-16 10:10:36 -0400 | [diff] [blame] | 2996 | if (!no_nrwrite_index_update) |
| 2997 | wbc->no_nrwrite_index_update = 0; |
Richard Kennedy | 2faf2e1 | 2009-12-25 15:46:07 -0500 | [diff] [blame] | 2998 | wbc->nr_to_write -= nr_to_writebump; |
Theodore Ts'o | de89de6 | 2009-08-31 17:00:59 -0400 | [diff] [blame] | 2999 | wbc->range_start = range_start; |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 3000 | trace_ext4_da_writepages_result(inode, wbc, ret, pages_written); |
Mingming Cao | 61628a3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3001 | return ret; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3002 | } |
| 3003 | |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 3004 | #define FALL_BACK_TO_NONDELALLOC 1 |
| 3005 | static int ext4_nonda_switch(struct super_block *sb) |
| 3006 | { |
| 3007 | s64 free_blocks, dirty_blocks; |
| 3008 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 3009 | |
| 3010 | /* |
| 3011 | * switch to non delalloc mode if we are running low |
| 3012 | * on free block. The free block accounting via percpu |
Eric Dumazet | 179f7eb | 2009-01-06 14:41:04 -0800 | [diff] [blame] | 3013 | * counters can get slightly wrong with percpu_counter_batch getting |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 3014 | * accumulated on each CPU without updating global counters |
| 3015 | * Delalloc need an accurate free block accounting. So switch |
| 3016 | * to non delalloc when we are near to error range. |
| 3017 | */ |
| 3018 | free_blocks = percpu_counter_read_positive(&sbi->s_freeblocks_counter); |
| 3019 | dirty_blocks = percpu_counter_read_positive(&sbi->s_dirtyblocks_counter); |
| 3020 | if (2 * free_blocks < 3 * dirty_blocks || |
| 3021 | free_blocks < (dirty_blocks + EXT4_FREEBLOCKS_WATERMARK)) { |
| 3022 | /* |
Eric Sandeen | c8afb44 | 2009-12-23 07:58:12 -0500 | [diff] [blame] | 3023 | * free block count is less than 150% of dirty blocks |
| 3024 | * or free blocks is less than watermark |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 3025 | */ |
| 3026 | return 1; |
| 3027 | } |
Eric Sandeen | c8afb44 | 2009-12-23 07:58:12 -0500 | [diff] [blame] | 3028 | /* |
| 3029 | * Even if we don't switch but are nearing capacity, |
| 3030 | * start pushing delalloc when 1/2 of free blocks are dirty. |
| 3031 | */ |
| 3032 | if (free_blocks < 2 * dirty_blocks) |
| 3033 | writeback_inodes_sb_if_idle(sb); |
| 3034 | |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 3035 | return 0; |
| 3036 | } |
| 3037 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3038 | 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] | 3039 | loff_t pos, unsigned len, unsigned flags, |
| 3040 | struct page **pagep, void **fsdata) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3041 | { |
Aneesh Kumar K.V | 1db9138 | 2010-01-22 17:06:20 -0500 | [diff] [blame] | 3042 | int ret, retries = 0, quota_retries = 0; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3043 | struct page *page; |
| 3044 | pgoff_t index; |
| 3045 | unsigned from, to; |
| 3046 | struct inode *inode = mapping->host; |
| 3047 | handle_t *handle; |
| 3048 | |
| 3049 | index = pos >> PAGE_CACHE_SHIFT; |
| 3050 | from = pos & (PAGE_CACHE_SIZE - 1); |
| 3051 | to = from + len; |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 3052 | |
| 3053 | if (ext4_nonda_switch(inode->i_sb)) { |
| 3054 | *fsdata = (void *)FALL_BACK_TO_NONDELALLOC; |
| 3055 | return ext4_write_begin(file, mapping, pos, |
| 3056 | len, flags, pagep, fsdata); |
| 3057 | } |
| 3058 | *fsdata = (void *)0; |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 3059 | trace_ext4_da_write_begin(inode, pos, len, flags); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 3060 | retry: |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3061 | /* |
| 3062 | * With delayed allocation, we don't log the i_disksize update |
| 3063 | * if there is delayed block allocation. But we still need |
| 3064 | * to journalling the i_disksize update if writes to the end |
| 3065 | * of file which has an already mapped buffer. |
| 3066 | */ |
| 3067 | handle = ext4_journal_start(inode, 1); |
| 3068 | if (IS_ERR(handle)) { |
| 3069 | ret = PTR_ERR(handle); |
| 3070 | goto out; |
| 3071 | } |
Jan Kara | ebd3610 | 2009-02-22 21:09:59 -0500 | [diff] [blame] | 3072 | /* We cannot recurse into the filesystem as the transaction is already |
| 3073 | * started */ |
| 3074 | flags |= AOP_FLAG_NOFS; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3075 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 3076 | page = grab_cache_page_write_begin(mapping, index, flags); |
Eric Sandeen | d5a0d4f | 2008-08-02 18:51:06 -0400 | [diff] [blame] | 3077 | if (!page) { |
| 3078 | ext4_journal_stop(handle); |
| 3079 | ret = -ENOMEM; |
| 3080 | goto out; |
| 3081 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3082 | *pagep = page; |
| 3083 | |
| 3084 | ret = block_write_begin(file, mapping, pos, len, flags, pagep, fsdata, |
Theodore Ts'o | b920c75 | 2009-05-14 00:54:29 -0400 | [diff] [blame] | 3085 | ext4_da_get_block_prep); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3086 | if (ret < 0) { |
| 3087 | unlock_page(page); |
| 3088 | ext4_journal_stop(handle); |
| 3089 | page_cache_release(page); |
Aneesh Kumar K.V | ae4d537 | 2008-09-13 13:10:25 -0400 | [diff] [blame] | 3090 | /* |
| 3091 | * block_write_begin may have instantiated a few blocks |
| 3092 | * outside i_size. Trim these off again. Don't need |
| 3093 | * i_size_read because we hold i_mutex. |
| 3094 | */ |
| 3095 | if (pos + len > inode->i_size) |
Jan Kara | b9a4207 | 2009-12-08 21:24:33 -0500 | [diff] [blame] | 3096 | ext4_truncate_failed_write(inode); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3097 | } |
| 3098 | |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 3099 | if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) |
| 3100 | goto retry; |
Aneesh Kumar K.V | 1db9138 | 2010-01-22 17:06:20 -0500 | [diff] [blame] | 3101 | |
| 3102 | if ((ret == -EDQUOT) && |
| 3103 | EXT4_I(inode)->i_reserved_meta_blocks && |
| 3104 | (quota_retries++ < 3)) { |
| 3105 | /* |
| 3106 | * Since we often over-estimate the number of meta |
| 3107 | * data blocks required, we may sometimes get a |
| 3108 | * spurios out of quota error even though there would |
| 3109 | * be enough space once we write the data blocks and |
| 3110 | * find out how many meta data blocks were _really_ |
| 3111 | * required. So try forcing the inode write to see if |
| 3112 | * that helps. |
| 3113 | */ |
| 3114 | write_inode_now(inode, (quota_retries == 3)); |
| 3115 | goto retry; |
| 3116 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3117 | out: |
| 3118 | return ret; |
| 3119 | } |
| 3120 | |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3121 | /* |
| 3122 | * Check if we should update i_disksize |
| 3123 | * when write to the end of file but not require block allocation |
| 3124 | */ |
| 3125 | static int ext4_da_should_update_i_disksize(struct page *page, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 3126 | unsigned long offset) |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3127 | { |
| 3128 | struct buffer_head *bh; |
| 3129 | struct inode *inode = page->mapping->host; |
| 3130 | unsigned int idx; |
| 3131 | int i; |
| 3132 | |
| 3133 | bh = page_buffers(page); |
| 3134 | idx = offset >> inode->i_blkbits; |
| 3135 | |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 3136 | for (i = 0; i < idx; i++) |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3137 | bh = bh->b_this_page; |
| 3138 | |
Aneesh Kumar K.V | 29fa89d | 2009-05-12 16:30:27 -0400 | [diff] [blame] | 3139 | if (!buffer_mapped(bh) || (buffer_delay(bh)) || buffer_unwritten(bh)) |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3140 | return 0; |
| 3141 | return 1; |
| 3142 | } |
| 3143 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3144 | static int ext4_da_write_end(struct file *file, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 3145 | struct address_space *mapping, |
| 3146 | loff_t pos, unsigned len, unsigned copied, |
| 3147 | struct page *page, void *fsdata) |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3148 | { |
| 3149 | struct inode *inode = mapping->host; |
| 3150 | int ret = 0, ret2; |
| 3151 | handle_t *handle = ext4_journal_current_handle(); |
| 3152 | loff_t new_i_size; |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3153 | unsigned long start, end; |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 3154 | int write_mode = (int)(unsigned long)fsdata; |
| 3155 | |
| 3156 | if (write_mode == FALL_BACK_TO_NONDELALLOC) { |
| 3157 | if (ext4_should_order_data(inode)) { |
| 3158 | return ext4_ordered_write_end(file, mapping, pos, |
| 3159 | len, copied, page, fsdata); |
| 3160 | } else if (ext4_should_writeback_data(inode)) { |
| 3161 | return ext4_writeback_write_end(file, mapping, pos, |
| 3162 | len, copied, page, fsdata); |
| 3163 | } else { |
| 3164 | BUG(); |
| 3165 | } |
| 3166 | } |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3167 | |
Theodore Ts'o | 9bffad1 | 2009-06-17 11:48:11 -0400 | [diff] [blame] | 3168 | trace_ext4_da_write_end(inode, pos, len, copied); |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3169 | start = pos & (PAGE_CACHE_SIZE - 1); |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 3170 | end = start + copied - 1; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3171 | |
| 3172 | /* |
| 3173 | * generic_write_end() will run mark_inode_dirty() if i_size |
| 3174 | * changes. So let's piggyback the i_disksize mark_inode_dirty |
| 3175 | * into that. |
| 3176 | */ |
| 3177 | |
| 3178 | new_i_size = pos + copied; |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3179 | if (new_i_size > EXT4_I(inode)->i_disksize) { |
| 3180 | if (ext4_da_should_update_i_disksize(page, end)) { |
| 3181 | down_write(&EXT4_I(inode)->i_data_sem); |
| 3182 | if (new_i_size > EXT4_I(inode)->i_disksize) { |
| 3183 | /* |
| 3184 | * Updating i_disksize when extending file |
| 3185 | * without needing block allocation |
| 3186 | */ |
| 3187 | if (ext4_should_order_data(inode)) |
| 3188 | ret = ext4_jbd2_file_inode(handle, |
| 3189 | inode); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3190 | |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3191 | EXT4_I(inode)->i_disksize = new_i_size; |
| 3192 | } |
| 3193 | up_write(&EXT4_I(inode)->i_data_sem); |
Aneesh Kumar K.V | cf17fea | 2008-09-13 13:06:18 -0400 | [diff] [blame] | 3194 | /* We need to mark inode dirty even if |
| 3195 | * new_i_size is less that inode->i_size |
| 3196 | * bu greater than i_disksize.(hint delalloc) |
| 3197 | */ |
| 3198 | ext4_mark_inode_dirty(handle, inode); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3199 | } |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3200 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3201 | ret2 = generic_write_end(file, mapping, pos, len, copied, |
| 3202 | page, fsdata); |
| 3203 | copied = ret2; |
| 3204 | if (ret2 < 0) |
| 3205 | ret = ret2; |
| 3206 | ret2 = ext4_journal_stop(handle); |
| 3207 | if (!ret) |
| 3208 | ret = ret2; |
| 3209 | |
| 3210 | return ret ? ret : copied; |
| 3211 | } |
| 3212 | |
| 3213 | static void ext4_da_invalidatepage(struct page *page, unsigned long offset) |
| 3214 | { |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3215 | /* |
| 3216 | * Drop reserved blocks |
| 3217 | */ |
| 3218 | BUG_ON(!PageLocked(page)); |
| 3219 | if (!page_has_buffers(page)) |
| 3220 | goto out; |
| 3221 | |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 3222 | ext4_da_page_release_reservation(page, offset); |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3223 | |
| 3224 | out: |
| 3225 | ext4_invalidatepage(page, offset); |
| 3226 | |
| 3227 | return; |
| 3228 | } |
| 3229 | |
Theodore Ts'o | ccd2506 | 2009-02-26 01:04:07 -0500 | [diff] [blame] | 3230 | /* |
| 3231 | * Force all delayed allocation blocks to be allocated for a given inode. |
| 3232 | */ |
| 3233 | int ext4_alloc_da_blocks(struct inode *inode) |
| 3234 | { |
Theodore Ts'o | fb40ba0 | 2009-09-16 19:30:40 -0400 | [diff] [blame] | 3235 | trace_ext4_alloc_da_blocks(inode); |
| 3236 | |
Theodore Ts'o | ccd2506 | 2009-02-26 01:04:07 -0500 | [diff] [blame] | 3237 | if (!EXT4_I(inode)->i_reserved_data_blocks && |
| 3238 | !EXT4_I(inode)->i_reserved_meta_blocks) |
| 3239 | return 0; |
| 3240 | |
| 3241 | /* |
| 3242 | * We do something simple for now. The filemap_flush() will |
| 3243 | * also start triggering a write of the data blocks, which is |
| 3244 | * not strictly speaking necessary (and for users of |
| 3245 | * laptop_mode, not even desirable). However, to do otherwise |
| 3246 | * would require replicating code paths in: |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 3247 | * |
Theodore Ts'o | ccd2506 | 2009-02-26 01:04:07 -0500 | [diff] [blame] | 3248 | * ext4_da_writepages() -> |
| 3249 | * write_cache_pages() ---> (via passed in callback function) |
| 3250 | * __mpage_da_writepage() --> |
| 3251 | * mpage_add_bh_to_extent() |
| 3252 | * mpage_da_map_blocks() |
| 3253 | * |
| 3254 | * The problem is that write_cache_pages(), located in |
| 3255 | * mm/page-writeback.c, marks pages clean in preparation for |
| 3256 | * doing I/O, which is not desirable if we're not planning on |
| 3257 | * doing I/O at all. |
| 3258 | * |
| 3259 | * We could call write_cache_pages(), and then redirty all of |
| 3260 | * the pages by calling redirty_page_for_writeback() but that |
| 3261 | * would be ugly in the extreme. So instead we would need to |
| 3262 | * replicate parts of the code in the above functions, |
| 3263 | * simplifying them becuase we wouldn't actually intend to |
| 3264 | * write out the pages, but rather only collect contiguous |
| 3265 | * logical block extents, call the multi-block allocator, and |
| 3266 | * then update the buffer heads with the block allocations. |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 3267 | * |
Theodore Ts'o | ccd2506 | 2009-02-26 01:04:07 -0500 | [diff] [blame] | 3268 | * For now, though, we'll cheat by calling filemap_flush(), |
| 3269 | * which will map the blocks, and start the I/O, but not |
| 3270 | * actually wait for the I/O to complete. |
| 3271 | */ |
| 3272 | return filemap_flush(inode->i_mapping); |
| 3273 | } |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3274 | |
| 3275 | /* |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3276 | * bmap() is special. It gets used by applications such as lilo and by |
| 3277 | * the swapper to find the on-disk block of a specific piece of data. |
| 3278 | * |
| 3279 | * Naturally, this is dangerous if the block concerned is still in the |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3280 | * journal. If somebody makes a swapfile on an ext4 data-journaling |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3281 | * filesystem and enables swap, then they may get a nasty shock when the |
| 3282 | * data getting swapped to that swapfile suddenly gets overwritten by |
| 3283 | * the original zero's written out previously to the journal and |
| 3284 | * awaiting writeback in the kernel's buffer cache. |
| 3285 | * |
| 3286 | * So, if we see any bmap calls here on a modified, data-journaled file, |
| 3287 | * take extra steps to flush any blocks which might be in the cache. |
| 3288 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3289 | static sector_t ext4_bmap(struct address_space *mapping, sector_t block) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3290 | { |
| 3291 | struct inode *inode = mapping->host; |
| 3292 | journal_t *journal; |
| 3293 | int err; |
| 3294 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3295 | if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY) && |
| 3296 | test_opt(inode->i_sb, DELALLOC)) { |
| 3297 | /* |
| 3298 | * With delalloc we want to sync the file |
| 3299 | * so that we can make sure we allocate |
| 3300 | * blocks for file |
| 3301 | */ |
| 3302 | filemap_write_and_wait(mapping); |
| 3303 | } |
| 3304 | |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 3305 | if (EXT4_JOURNAL(inode) && |
| 3306 | ext4_test_inode_state(inode, EXT4_STATE_JDATA)) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3307 | /* |
| 3308 | * This is a REALLY heavyweight approach, but the use of |
| 3309 | * bmap on dirty files is expected to be extremely rare: |
| 3310 | * only if we run lilo or swapon on a freshly made file |
| 3311 | * do we expect this to happen. |
| 3312 | * |
| 3313 | * (bmap requires CAP_SYS_RAWIO so this does not |
| 3314 | * represent an unprivileged user DOS attack --- we'd be |
| 3315 | * in trouble if mortal users could trigger this path at |
| 3316 | * will.) |
| 3317 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3318 | * NB. EXT4_STATE_JDATA is not set on files other than |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3319 | * regular files. If somebody wants to bmap a directory |
| 3320 | * or symlink and gets confused because the buffer |
| 3321 | * hasn't yet been flushed to disk, they deserve |
| 3322 | * everything they get. |
| 3323 | */ |
| 3324 | |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 3325 | ext4_clear_inode_state(inode, EXT4_STATE_JDATA); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3326 | journal = EXT4_JOURNAL(inode); |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 3327 | jbd2_journal_lock_updates(journal); |
| 3328 | err = jbd2_journal_flush(journal); |
| 3329 | jbd2_journal_unlock_updates(journal); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3330 | |
| 3331 | if (err) |
| 3332 | return 0; |
| 3333 | } |
| 3334 | |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 3335 | return generic_block_bmap(mapping, block, ext4_get_block); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3336 | } |
| 3337 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3338 | static int ext4_readpage(struct file *file, struct page *page) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3339 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3340 | return mpage_readpage(page, ext4_get_block); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3341 | } |
| 3342 | |
| 3343 | static int |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3344 | ext4_readpages(struct file *file, struct address_space *mapping, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3345 | struct list_head *pages, unsigned nr_pages) |
| 3346 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3347 | return mpage_readpages(mapping, pages, nr_pages, ext4_get_block); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3348 | } |
| 3349 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3350 | static void ext4_invalidatepage(struct page *page, unsigned long offset) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3351 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3352 | journal_t *journal = EXT4_JOURNAL(page->mapping->host); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3353 | |
| 3354 | /* |
| 3355 | * If it's a full truncate we just forget about the pending dirtying |
| 3356 | */ |
| 3357 | if (offset == 0) |
| 3358 | ClearPageChecked(page); |
| 3359 | |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 3360 | if (journal) |
| 3361 | jbd2_journal_invalidatepage(journal, page, offset); |
| 3362 | else |
| 3363 | block_invalidatepage(page, offset); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3364 | } |
| 3365 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3366 | static int ext4_releasepage(struct page *page, gfp_t wait) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3367 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3368 | journal_t *journal = EXT4_JOURNAL(page->mapping->host); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3369 | |
| 3370 | WARN_ON(PageChecked(page)); |
| 3371 | if (!page_has_buffers(page)) |
| 3372 | return 0; |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 3373 | if (journal) |
| 3374 | return jbd2_journal_try_to_free_buffers(journal, page, wait); |
| 3375 | else |
| 3376 | return try_to_free_buffers(page); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3377 | } |
| 3378 | |
| 3379 | /* |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3380 | * O_DIRECT for ext3 (or indirect map) based files |
| 3381 | * |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3382 | * If the O_DIRECT write will extend the file then add this inode to the |
| 3383 | * orphan list. So recovery will truncate it back to the original size |
| 3384 | * if the machine crashes during the write. |
| 3385 | * |
| 3386 | * If the O_DIRECT write is intantiating holes inside i_size and the machine |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 3387 | * crashes then stale disk data _may_ be exposed inside the file. But current |
| 3388 | * VFS code falls back into buffered path in that case so we are safe. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3389 | */ |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3390 | static ssize_t ext4_ind_direct_IO(int rw, struct kiocb *iocb, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 3391 | const struct iovec *iov, loff_t offset, |
| 3392 | unsigned long nr_segs) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3393 | { |
| 3394 | struct file *file = iocb->ki_filp; |
| 3395 | struct inode *inode = file->f_mapping->host; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3396 | struct ext4_inode_info *ei = EXT4_I(inode); |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 3397 | handle_t *handle; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3398 | ssize_t ret; |
| 3399 | int orphan = 0; |
| 3400 | size_t count = iov_length(iov, nr_segs); |
Eric Sandeen | fbbf694 | 2009-10-02 21:20:55 -0400 | [diff] [blame] | 3401 | int retries = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3402 | |
| 3403 | if (rw == WRITE) { |
| 3404 | loff_t final_size = offset + count; |
| 3405 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3406 | if (final_size > inode->i_size) { |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 3407 | /* Credits for sb + inode write */ |
| 3408 | handle = ext4_journal_start(inode, 2); |
| 3409 | if (IS_ERR(handle)) { |
| 3410 | ret = PTR_ERR(handle); |
| 3411 | goto out; |
| 3412 | } |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3413 | ret = ext4_orphan_add(handle, inode); |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 3414 | if (ret) { |
| 3415 | ext4_journal_stop(handle); |
| 3416 | goto out; |
| 3417 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3418 | orphan = 1; |
| 3419 | ei->i_disksize = inode->i_size; |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 3420 | ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3421 | } |
| 3422 | } |
| 3423 | |
Eric Sandeen | fbbf694 | 2009-10-02 21:20:55 -0400 | [diff] [blame] | 3424 | retry: |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3425 | ret = blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov, |
| 3426 | offset, nr_segs, |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3427 | ext4_get_block, NULL); |
Eric Sandeen | fbbf694 | 2009-10-02 21:20:55 -0400 | [diff] [blame] | 3428 | if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) |
| 3429 | goto retry; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3430 | |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 3431 | if (orphan) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3432 | int err; |
| 3433 | |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 3434 | /* Credits for sb + inode write */ |
| 3435 | handle = ext4_journal_start(inode, 2); |
| 3436 | if (IS_ERR(handle)) { |
| 3437 | /* This is really bad luck. We've written the data |
| 3438 | * but cannot extend i_size. Bail out and pretend |
| 3439 | * the write failed... */ |
| 3440 | ret = PTR_ERR(handle); |
Dmitry Monakhov | da1dafc | 2010-03-01 23:15:02 -0500 | [diff] [blame^] | 3441 | if (inode->i_nlink) |
| 3442 | ext4_orphan_del(NULL, inode); |
| 3443 | |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 3444 | goto out; |
| 3445 | } |
| 3446 | if (inode->i_nlink) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3447 | ext4_orphan_del(handle, inode); |
Jan Kara | 7fb5409 | 2008-02-10 01:08:38 -0500 | [diff] [blame] | 3448 | if (ret > 0) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3449 | loff_t end = offset + ret; |
| 3450 | if (end > inode->i_size) { |
| 3451 | ei->i_disksize = end; |
| 3452 | i_size_write(inode, end); |
| 3453 | /* |
| 3454 | * We're going to return a positive `ret' |
| 3455 | * here due to non-zero-length I/O, so there's |
| 3456 | * no way of reporting error returns from |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3457 | * ext4_mark_inode_dirty() to userspace. So |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3458 | * ignore it. |
| 3459 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3460 | ext4_mark_inode_dirty(handle, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3461 | } |
| 3462 | } |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3463 | err = ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3464 | if (ret == 0) |
| 3465 | ret = err; |
| 3466 | } |
| 3467 | out: |
| 3468 | return ret; |
| 3469 | } |
| 3470 | |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3471 | static int ext4_get_block_dio_write(struct inode *inode, sector_t iblock, |
| 3472 | struct buffer_head *bh_result, int create) |
| 3473 | { |
| 3474 | handle_t *handle = NULL; |
| 3475 | int ret = 0; |
| 3476 | unsigned max_blocks = bh_result->b_size >> inode->i_blkbits; |
| 3477 | int dio_credits; |
| 3478 | |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3479 | ext4_debug("ext4_get_block_dio_write: inode %lu, create flag %d\n", |
| 3480 | inode->i_ino, create); |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3481 | /* |
| 3482 | * DIO VFS code passes create = 0 flag for write to |
| 3483 | * the middle of file. It does this to avoid block |
| 3484 | * allocation for holes, to prevent expose stale data |
| 3485 | * out when there is parallel buffered read (which does |
| 3486 | * not hold the i_mutex lock) while direct IO write has |
| 3487 | * not completed. DIO request on holes finally falls back |
| 3488 | * to buffered IO for this reason. |
| 3489 | * |
| 3490 | * For ext4 extent based file, since we support fallocate, |
| 3491 | * new allocated extent as uninitialized, for holes, we |
| 3492 | * could fallocate blocks for holes, thus parallel |
| 3493 | * buffered IO read will zero out the page when read on |
| 3494 | * a hole while parallel DIO write to the hole has not completed. |
| 3495 | * |
| 3496 | * when we come here, we know it's a direct IO write to |
| 3497 | * to the middle of file (<i_size) |
| 3498 | * so it's safe to override the create flag from VFS. |
| 3499 | */ |
| 3500 | create = EXT4_GET_BLOCKS_DIO_CREATE_EXT; |
| 3501 | |
| 3502 | if (max_blocks > DIO_MAX_BLOCKS) |
| 3503 | max_blocks = DIO_MAX_BLOCKS; |
| 3504 | dio_credits = ext4_chunk_trans_blocks(inode, max_blocks); |
| 3505 | handle = ext4_journal_start(inode, dio_credits); |
| 3506 | if (IS_ERR(handle)) { |
| 3507 | ret = PTR_ERR(handle); |
| 3508 | goto out; |
| 3509 | } |
| 3510 | ret = ext4_get_blocks(handle, inode, iblock, max_blocks, bh_result, |
| 3511 | create); |
| 3512 | if (ret > 0) { |
| 3513 | bh_result->b_size = (ret << inode->i_blkbits); |
| 3514 | ret = 0; |
| 3515 | } |
| 3516 | ext4_journal_stop(handle); |
| 3517 | out: |
| 3518 | return ret; |
| 3519 | } |
| 3520 | |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3521 | static void ext4_free_io_end(ext4_io_end_t *io) |
| 3522 | { |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3523 | BUG_ON(!io); |
| 3524 | iput(io->inode); |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3525 | kfree(io); |
| 3526 | } |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3527 | static void dump_aio_dio_list(struct inode * inode) |
| 3528 | { |
| 3529 | #ifdef EXT4_DEBUG |
| 3530 | struct list_head *cur, *before, *after; |
| 3531 | ext4_io_end_t *io, *io0, *io1; |
| 3532 | |
| 3533 | if (list_empty(&EXT4_I(inode)->i_aio_dio_complete_list)){ |
| 3534 | ext4_debug("inode %lu aio dio list is empty\n", inode->i_ino); |
| 3535 | return; |
| 3536 | } |
| 3537 | |
| 3538 | ext4_debug("Dump inode %lu aio_dio_completed_IO list \n", inode->i_ino); |
| 3539 | list_for_each_entry(io, &EXT4_I(inode)->i_aio_dio_complete_list, list){ |
| 3540 | cur = &io->list; |
| 3541 | before = cur->prev; |
| 3542 | io0 = container_of(before, ext4_io_end_t, list); |
| 3543 | after = cur->next; |
| 3544 | io1 = container_of(after, ext4_io_end_t, list); |
| 3545 | |
| 3546 | ext4_debug("io 0x%p from inode %lu,prev 0x%p,next 0x%p\n", |
| 3547 | io, inode->i_ino, io0, io1); |
| 3548 | } |
| 3549 | #endif |
| 3550 | } |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3551 | |
| 3552 | /* |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3553 | * check a range of space and convert unwritten extents to written. |
| 3554 | */ |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3555 | static int ext4_end_aio_dio_nolock(ext4_io_end_t *io) |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3556 | { |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3557 | struct inode *inode = io->inode; |
| 3558 | loff_t offset = io->offset; |
Eric Sandeen | a1de02d | 2010-02-04 23:58:38 -0500 | [diff] [blame] | 3559 | ssize_t size = io->size; |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3560 | int ret = 0; |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3561 | |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3562 | ext4_debug("end_aio_dio_onlock: io 0x%p from inode %lu,list->next 0x%p," |
| 3563 | "list->prev 0x%p\n", |
| 3564 | io, inode->i_ino, io->list.next, io->list.prev); |
| 3565 | |
| 3566 | if (list_empty(&io->list)) |
| 3567 | return ret; |
| 3568 | |
| 3569 | if (io->flag != DIO_AIO_UNWRITTEN) |
| 3570 | return ret; |
| 3571 | |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3572 | if (offset + size <= i_size_read(inode)) |
| 3573 | ret = ext4_convert_unwritten_extents(inode, offset, size); |
| 3574 | |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3575 | if (ret < 0) { |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3576 | printk(KERN_EMERG "%s: failed to convert unwritten" |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3577 | "extents to written extents, error is %d" |
| 3578 | " io is still on inode %lu aio dio list\n", |
| 3579 | __func__, ret, inode->i_ino); |
| 3580 | return ret; |
| 3581 | } |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3582 | |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3583 | /* clear the DIO AIO unwritten flag */ |
| 3584 | io->flag = 0; |
| 3585 | return ret; |
| 3586 | } |
| 3587 | /* |
| 3588 | * work on completed aio dio IO, to convert unwritten extents to extents |
| 3589 | */ |
| 3590 | static void ext4_end_aio_dio_work(struct work_struct *work) |
| 3591 | { |
| 3592 | ext4_io_end_t *io = container_of(work, ext4_io_end_t, work); |
| 3593 | struct inode *inode = io->inode; |
| 3594 | int ret = 0; |
| 3595 | |
| 3596 | mutex_lock(&inode->i_mutex); |
| 3597 | ret = ext4_end_aio_dio_nolock(io); |
| 3598 | if (ret >= 0) { |
| 3599 | if (!list_empty(&io->list)) |
| 3600 | list_del_init(&io->list); |
| 3601 | ext4_free_io_end(io); |
| 3602 | } |
| 3603 | mutex_unlock(&inode->i_mutex); |
| 3604 | } |
| 3605 | /* |
| 3606 | * This function is called from ext4_sync_file(). |
| 3607 | * |
| 3608 | * When AIO DIO IO is completed, the work to convert unwritten |
| 3609 | * extents to written is queued on workqueue but may not get immediately |
| 3610 | * scheduled. When fsync is called, we need to ensure the |
| 3611 | * conversion is complete before fsync returns. |
| 3612 | * The inode keeps track of a list of completed AIO from DIO path |
| 3613 | * that might needs to do the conversion. This function walks through |
| 3614 | * the list and convert the related unwritten extents to written. |
| 3615 | */ |
| 3616 | int flush_aio_dio_completed_IO(struct inode *inode) |
| 3617 | { |
| 3618 | ext4_io_end_t *io; |
| 3619 | int ret = 0; |
| 3620 | int ret2 = 0; |
| 3621 | |
| 3622 | if (list_empty(&EXT4_I(inode)->i_aio_dio_complete_list)) |
| 3623 | return ret; |
| 3624 | |
| 3625 | dump_aio_dio_list(inode); |
| 3626 | while (!list_empty(&EXT4_I(inode)->i_aio_dio_complete_list)){ |
| 3627 | io = list_entry(EXT4_I(inode)->i_aio_dio_complete_list.next, |
| 3628 | ext4_io_end_t, list); |
| 3629 | /* |
| 3630 | * Calling ext4_end_aio_dio_nolock() to convert completed |
| 3631 | * IO to written. |
| 3632 | * |
| 3633 | * When ext4_sync_file() is called, run_queue() may already |
| 3634 | * about to flush the work corresponding to this io structure. |
| 3635 | * It will be upset if it founds the io structure related |
| 3636 | * to the work-to-be schedule is freed. |
| 3637 | * |
| 3638 | * Thus we need to keep the io structure still valid here after |
| 3639 | * convertion finished. The io structure has a flag to |
| 3640 | * avoid double converting from both fsync and background work |
| 3641 | * queue work. |
| 3642 | */ |
| 3643 | ret = ext4_end_aio_dio_nolock(io); |
| 3644 | if (ret < 0) |
| 3645 | ret2 = ret; |
| 3646 | else |
| 3647 | list_del_init(&io->list); |
| 3648 | } |
| 3649 | return (ret2 < 0) ? ret2 : 0; |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3650 | } |
| 3651 | |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3652 | static ext4_io_end_t *ext4_init_io_end (struct inode *inode) |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3653 | { |
| 3654 | ext4_io_end_t *io = NULL; |
| 3655 | |
| 3656 | io = kmalloc(sizeof(*io), GFP_NOFS); |
| 3657 | |
| 3658 | if (io) { |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3659 | igrab(inode); |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3660 | io->inode = inode; |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3661 | io->flag = 0; |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3662 | io->offset = 0; |
| 3663 | io->size = 0; |
| 3664 | io->error = 0; |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3665 | INIT_WORK(&io->work, ext4_end_aio_dio_work); |
| 3666 | INIT_LIST_HEAD(&io->list); |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3667 | } |
| 3668 | |
| 3669 | return io; |
| 3670 | } |
| 3671 | |
| 3672 | static void ext4_end_io_dio(struct kiocb *iocb, loff_t offset, |
| 3673 | ssize_t size, void *private) |
| 3674 | { |
| 3675 | ext4_io_end_t *io_end = iocb->private; |
| 3676 | struct workqueue_struct *wq; |
| 3677 | |
Mingming | 4b70df1 | 2009-11-03 14:44:54 -0500 | [diff] [blame] | 3678 | /* if not async direct IO or dio with 0 bytes write, just return */ |
| 3679 | if (!io_end || !size) |
| 3680 | return; |
| 3681 | |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3682 | ext_debug("ext4_end_io_dio(): io_end 0x%p" |
| 3683 | "for inode %lu, iocb 0x%p, offset %llu, size %llu\n", |
| 3684 | iocb->private, io_end->inode->i_ino, iocb, offset, |
| 3685 | size); |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3686 | |
| 3687 | /* if not aio dio with unwritten extents, just free io and return */ |
| 3688 | if (io_end->flag != DIO_AIO_UNWRITTEN){ |
| 3689 | ext4_free_io_end(io_end); |
| 3690 | iocb->private = NULL; |
| 3691 | return; |
| 3692 | } |
| 3693 | |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3694 | io_end->offset = offset; |
| 3695 | io_end->size = size; |
| 3696 | wq = EXT4_SB(io_end->inode->i_sb)->dio_unwritten_wq; |
| 3697 | |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3698 | /* queue the work to convert unwritten extents to written */ |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3699 | queue_work(wq, &io_end->work); |
| 3700 | |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3701 | /* Add the io_end to per-inode completed aio dio list*/ |
| 3702 | list_add_tail(&io_end->list, |
| 3703 | &EXT4_I(io_end->inode)->i_aio_dio_complete_list); |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3704 | iocb->private = NULL; |
| 3705 | } |
| 3706 | /* |
| 3707 | * For ext4 extent files, ext4 will do direct-io write to holes, |
| 3708 | * preallocated extents, and those write extend the file, no need to |
| 3709 | * fall back to buffered IO. |
| 3710 | * |
| 3711 | * For holes, we fallocate those blocks, mark them as unintialized |
| 3712 | * If those blocks were preallocated, we mark sure they are splited, but |
| 3713 | * still keep the range to write as unintialized. |
| 3714 | * |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3715 | * The unwrritten extents will be converted to written when DIO is completed. |
| 3716 | * For async direct IO, since the IO may still pending when return, we |
| 3717 | * set up an end_io call back function, which will do the convertion |
| 3718 | * when async direct IO completed. |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3719 | * |
| 3720 | * If the O_DIRECT write will extend the file then add this inode to the |
| 3721 | * orphan list. So recovery will truncate it back to the original size |
| 3722 | * if the machine crashes during the write. |
| 3723 | * |
| 3724 | */ |
| 3725 | static ssize_t ext4_ext_direct_IO(int rw, struct kiocb *iocb, |
| 3726 | const struct iovec *iov, loff_t offset, |
| 3727 | unsigned long nr_segs) |
| 3728 | { |
| 3729 | struct file *file = iocb->ki_filp; |
| 3730 | struct inode *inode = file->f_mapping->host; |
| 3731 | ssize_t ret; |
| 3732 | size_t count = iov_length(iov, nr_segs); |
| 3733 | |
| 3734 | loff_t final_size = offset + count; |
| 3735 | if (rw == WRITE && final_size <= inode->i_size) { |
| 3736 | /* |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3737 | * We could direct write to holes and fallocate. |
| 3738 | * |
| 3739 | * Allocated blocks to fill the hole are marked as uninitialized |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3740 | * to prevent paralel buffered read to expose the stale data |
| 3741 | * before DIO complete the data IO. |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3742 | * |
| 3743 | * As to previously fallocated extents, ext4 get_block |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3744 | * will just simply mark the buffer mapped but still |
| 3745 | * keep the extents uninitialized. |
| 3746 | * |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3747 | * for non AIO case, we will convert those unwritten extents |
| 3748 | * to written after return back from blockdev_direct_IO. |
| 3749 | * |
| 3750 | * for async DIO, the conversion needs to be defered when |
| 3751 | * the IO is completed. The ext4 end_io callback function |
| 3752 | * will be called to take care of the conversion work. |
| 3753 | * Here for async case, we allocate an io_end structure to |
| 3754 | * hook to the iocb. |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3755 | */ |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3756 | iocb->private = NULL; |
| 3757 | EXT4_I(inode)->cur_aio_dio = NULL; |
| 3758 | if (!is_sync_kiocb(iocb)) { |
| 3759 | iocb->private = ext4_init_io_end(inode); |
| 3760 | if (!iocb->private) |
| 3761 | return -ENOMEM; |
| 3762 | /* |
| 3763 | * we save the io structure for current async |
| 3764 | * direct IO, so that later ext4_get_blocks() |
| 3765 | * could flag the io structure whether there |
| 3766 | * is a unwritten extents needs to be converted |
| 3767 | * when IO is completed. |
| 3768 | */ |
| 3769 | EXT4_I(inode)->cur_aio_dio = iocb->private; |
| 3770 | } |
| 3771 | |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3772 | ret = blockdev_direct_IO(rw, iocb, inode, |
| 3773 | inode->i_sb->s_bdev, iov, |
| 3774 | offset, nr_segs, |
| 3775 | ext4_get_block_dio_write, |
| 3776 | ext4_end_io_dio); |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3777 | if (iocb->private) |
| 3778 | EXT4_I(inode)->cur_aio_dio = NULL; |
| 3779 | /* |
| 3780 | * The io_end structure takes a reference to the inode, |
| 3781 | * that structure needs to be destroyed and the |
| 3782 | * reference to the inode need to be dropped, when IO is |
| 3783 | * complete, even with 0 byte write, or failed. |
| 3784 | * |
| 3785 | * In the successful AIO DIO case, the io_end structure will be |
| 3786 | * desctroyed and the reference to the inode will be dropped |
| 3787 | * after the end_io call back function is called. |
| 3788 | * |
| 3789 | * In the case there is 0 byte write, or error case, since |
| 3790 | * VFS direct IO won't invoke the end_io call back function, |
| 3791 | * we need to free the end_io structure here. |
| 3792 | */ |
| 3793 | if (ret != -EIOCBQUEUED && ret <= 0 && iocb->private) { |
| 3794 | ext4_free_io_end(iocb->private); |
| 3795 | iocb->private = NULL; |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 3796 | } else if (ret > 0 && ext4_test_inode_state(inode, |
| 3797 | EXT4_STATE_DIO_UNWRITTEN)) { |
Mingming | 109f556 | 2009-11-10 10:48:08 -0500 | [diff] [blame] | 3798 | int err; |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3799 | /* |
| 3800 | * for non AIO case, since the IO is already |
| 3801 | * completed, we could do the convertion right here |
| 3802 | */ |
Mingming | 109f556 | 2009-11-10 10:48:08 -0500 | [diff] [blame] | 3803 | err = ext4_convert_unwritten_extents(inode, |
| 3804 | offset, ret); |
| 3805 | if (err < 0) |
| 3806 | ret = err; |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 3807 | ext4_clear_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); |
Mingming | 109f556 | 2009-11-10 10:48:08 -0500 | [diff] [blame] | 3808 | } |
Mingming Cao | 4c0425f | 2009-09-28 15:48:41 -0400 | [diff] [blame] | 3809 | return ret; |
| 3810 | } |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3811 | |
| 3812 | /* 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] | 3813 | return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs); |
| 3814 | } |
| 3815 | |
| 3816 | static ssize_t ext4_direct_IO(int rw, struct kiocb *iocb, |
| 3817 | const struct iovec *iov, loff_t offset, |
| 3818 | unsigned long nr_segs) |
| 3819 | { |
| 3820 | struct file *file = iocb->ki_filp; |
| 3821 | struct inode *inode = file->f_mapping->host; |
| 3822 | |
| 3823 | if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) |
| 3824 | return ext4_ext_direct_IO(rw, iocb, iov, offset, nr_segs); |
| 3825 | |
| 3826 | return ext4_ind_direct_IO(rw, iocb, iov, offset, nr_segs); |
| 3827 | } |
| 3828 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3829 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3830 | * Pages can be marked dirty completely asynchronously from ext4's journalling |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3831 | * activity. By filemap_sync_pte(), try_to_unmap_one(), etc. We cannot do |
| 3832 | * much here because ->set_page_dirty is called under VFS locks. The page is |
| 3833 | * not necessarily locked. |
| 3834 | * |
| 3835 | * We cannot just dirty the page and leave attached buffers clean, because the |
| 3836 | * buffers' dirty state is "definitive". We cannot just set the buffers dirty |
| 3837 | * or jbddirty because all the journalling code will explode. |
| 3838 | * |
| 3839 | * So what we do is to mark the page "pending dirty" and next time writepage |
| 3840 | * is called, propagate that into the buffers appropriately. |
| 3841 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3842 | static int ext4_journalled_set_page_dirty(struct page *page) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3843 | { |
| 3844 | SetPageChecked(page); |
| 3845 | return __set_page_dirty_nobuffers(page); |
| 3846 | } |
| 3847 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3848 | static const struct address_space_operations ext4_ordered_aops = { |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 3849 | .readpage = ext4_readpage, |
| 3850 | .readpages = ext4_readpages, |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 3851 | .writepage = ext4_writepage, |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 3852 | .sync_page = block_sync_page, |
| 3853 | .write_begin = ext4_write_begin, |
| 3854 | .write_end = ext4_ordered_write_end, |
| 3855 | .bmap = ext4_bmap, |
| 3856 | .invalidatepage = ext4_invalidatepage, |
| 3857 | .releasepage = ext4_releasepage, |
| 3858 | .direct_IO = ext4_direct_IO, |
| 3859 | .migratepage = buffer_migrate_page, |
| 3860 | .is_partially_uptodate = block_is_partially_uptodate, |
Andi Kleen | aa261f5 | 2009-09-16 11:50:16 +0200 | [diff] [blame] | 3861 | .error_remove_page = generic_error_remove_page, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3862 | }; |
| 3863 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3864 | static const struct address_space_operations ext4_writeback_aops = { |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 3865 | .readpage = ext4_readpage, |
| 3866 | .readpages = ext4_readpages, |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 3867 | .writepage = ext4_writepage, |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 3868 | .sync_page = block_sync_page, |
| 3869 | .write_begin = ext4_write_begin, |
| 3870 | .write_end = ext4_writeback_write_end, |
| 3871 | .bmap = ext4_bmap, |
| 3872 | .invalidatepage = ext4_invalidatepage, |
| 3873 | .releasepage = ext4_releasepage, |
| 3874 | .direct_IO = ext4_direct_IO, |
| 3875 | .migratepage = buffer_migrate_page, |
| 3876 | .is_partially_uptodate = block_is_partially_uptodate, |
Andi Kleen | aa261f5 | 2009-09-16 11:50:16 +0200 | [diff] [blame] | 3877 | .error_remove_page = generic_error_remove_page, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3878 | }; |
| 3879 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3880 | static const struct address_space_operations ext4_journalled_aops = { |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 3881 | .readpage = ext4_readpage, |
| 3882 | .readpages = ext4_readpages, |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 3883 | .writepage = ext4_writepage, |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 3884 | .sync_page = block_sync_page, |
| 3885 | .write_begin = ext4_write_begin, |
| 3886 | .write_end = ext4_journalled_write_end, |
| 3887 | .set_page_dirty = ext4_journalled_set_page_dirty, |
| 3888 | .bmap = ext4_bmap, |
| 3889 | .invalidatepage = ext4_invalidatepage, |
| 3890 | .releasepage = ext4_releasepage, |
| 3891 | .is_partially_uptodate = block_is_partially_uptodate, |
Andi Kleen | aa261f5 | 2009-09-16 11:50:16 +0200 | [diff] [blame] | 3892 | .error_remove_page = generic_error_remove_page, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3893 | }; |
| 3894 | |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3895 | static const struct address_space_operations ext4_da_aops = { |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 3896 | .readpage = ext4_readpage, |
| 3897 | .readpages = ext4_readpages, |
Aneesh Kumar K.V | 43ce1d2 | 2009-06-14 17:58:45 -0400 | [diff] [blame] | 3898 | .writepage = ext4_writepage, |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 3899 | .writepages = ext4_da_writepages, |
| 3900 | .sync_page = block_sync_page, |
| 3901 | .write_begin = ext4_da_write_begin, |
| 3902 | .write_end = ext4_da_write_end, |
| 3903 | .bmap = ext4_bmap, |
| 3904 | .invalidatepage = ext4_da_invalidatepage, |
| 3905 | .releasepage = ext4_releasepage, |
| 3906 | .direct_IO = ext4_direct_IO, |
| 3907 | .migratepage = buffer_migrate_page, |
| 3908 | .is_partially_uptodate = block_is_partially_uptodate, |
Andi Kleen | aa261f5 | 2009-09-16 11:50:16 +0200 | [diff] [blame] | 3909 | .error_remove_page = generic_error_remove_page, |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3910 | }; |
| 3911 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3912 | void ext4_set_aops(struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3913 | { |
Aneesh Kumar K.V | cd1aac3 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3914 | if (ext4_should_order_data(inode) && |
| 3915 | test_opt(inode->i_sb, DELALLOC)) |
| 3916 | inode->i_mapping->a_ops = &ext4_da_aops; |
| 3917 | else if (ext4_should_order_data(inode)) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3918 | inode->i_mapping->a_ops = &ext4_ordered_aops; |
Alex Tomas | 6476924 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3919 | else if (ext4_should_writeback_data(inode) && |
| 3920 | test_opt(inode->i_sb, DELALLOC)) |
| 3921 | inode->i_mapping->a_ops = &ext4_da_aops; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3922 | else if (ext4_should_writeback_data(inode)) |
| 3923 | inode->i_mapping->a_ops = &ext4_writeback_aops; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3924 | else |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3925 | inode->i_mapping->a_ops = &ext4_journalled_aops; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3926 | } |
| 3927 | |
| 3928 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3929 | * ext4_block_truncate_page() zeroes out a mapping from file offset `from' |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3930 | * up to the end of the block which corresponds to `from'. |
| 3931 | * This required during truncate. We need to physically zero the tail end |
| 3932 | * of that block so it doesn't yield old data if the file is later grown. |
| 3933 | */ |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3934 | int ext4_block_truncate_page(handle_t *handle, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3935 | struct address_space *mapping, loff_t from) |
| 3936 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3937 | ext4_fsblk_t index = from >> PAGE_CACHE_SHIFT; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3938 | unsigned offset = from & (PAGE_CACHE_SIZE-1); |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3939 | unsigned blocksize, length, pos; |
| 3940 | ext4_lblk_t iblock; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3941 | struct inode *inode = mapping->host; |
| 3942 | struct buffer_head *bh; |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3943 | struct page *page; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3944 | int err = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3945 | |
Theodore Ts'o | f4a0101 | 2009-07-05 22:08:16 -0400 | [diff] [blame] | 3946 | page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT, |
| 3947 | mapping_gfp_mask(mapping) & ~__GFP_FS); |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3948 | if (!page) |
| 3949 | return -EINVAL; |
| 3950 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3951 | blocksize = inode->i_sb->s_blocksize; |
| 3952 | length = blocksize - (offset & (blocksize - 1)); |
| 3953 | iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits); |
| 3954 | |
| 3955 | /* |
| 3956 | * For "nobh" option, we can only work if we don't need to |
| 3957 | * read-in the page - otherwise we create buffers to do the IO. |
| 3958 | */ |
| 3959 | if (!page_has_buffers(page) && test_opt(inode->i_sb, NOBH) && |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3960 | ext4_should_writeback_data(inode) && PageUptodate(page)) { |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 3961 | zero_user(page, offset, length); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3962 | set_page_dirty(page); |
| 3963 | goto unlock; |
| 3964 | } |
| 3965 | |
| 3966 | if (!page_has_buffers(page)) |
| 3967 | create_empty_buffers(page, blocksize, 0); |
| 3968 | |
| 3969 | /* Find the buffer that contains "offset" */ |
| 3970 | bh = page_buffers(page); |
| 3971 | pos = blocksize; |
| 3972 | while (offset >= pos) { |
| 3973 | bh = bh->b_this_page; |
| 3974 | iblock++; |
| 3975 | pos += blocksize; |
| 3976 | } |
| 3977 | |
| 3978 | err = 0; |
| 3979 | if (buffer_freed(bh)) { |
| 3980 | BUFFER_TRACE(bh, "freed: skip"); |
| 3981 | goto unlock; |
| 3982 | } |
| 3983 | |
| 3984 | if (!buffer_mapped(bh)) { |
| 3985 | BUFFER_TRACE(bh, "unmapped"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 3986 | ext4_get_block(inode, iblock, bh, 0); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 3987 | /* unmapped? It's a hole - nothing to do */ |
| 3988 | if (!buffer_mapped(bh)) { |
| 3989 | BUFFER_TRACE(bh, "still unmapped"); |
| 3990 | goto unlock; |
| 3991 | } |
| 3992 | } |
| 3993 | |
| 3994 | /* Ok, it's mapped. Make sure it's up-to-date */ |
| 3995 | if (PageUptodate(page)) |
| 3996 | set_buffer_uptodate(bh); |
| 3997 | |
| 3998 | if (!buffer_uptodate(bh)) { |
| 3999 | err = -EIO; |
| 4000 | ll_rw_block(READ, 1, &bh); |
| 4001 | wait_on_buffer(bh); |
| 4002 | /* Uhhuh. Read error. Complain and punt. */ |
| 4003 | if (!buffer_uptodate(bh)) |
| 4004 | goto unlock; |
| 4005 | } |
| 4006 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4007 | if (ext4_should_journal_data(inode)) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4008 | BUFFER_TRACE(bh, "get write access"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4009 | err = ext4_journal_get_write_access(handle, bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4010 | if (err) |
| 4011 | goto unlock; |
| 4012 | } |
| 4013 | |
Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 4014 | zero_user(page, offset, length); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4015 | |
| 4016 | BUFFER_TRACE(bh, "zeroed end of block"); |
| 4017 | |
| 4018 | err = 0; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4019 | if (ext4_should_journal_data(inode)) { |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4020 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4021 | } else { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4022 | if (ext4_should_order_data(inode)) |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4023 | err = ext4_jbd2_file_inode(handle, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4024 | mark_buffer_dirty(bh); |
| 4025 | } |
| 4026 | |
| 4027 | unlock: |
| 4028 | unlock_page(page); |
| 4029 | page_cache_release(page); |
| 4030 | return err; |
| 4031 | } |
| 4032 | |
| 4033 | /* |
| 4034 | * Probably it should be a library function... search for first non-zero word |
| 4035 | * or memcmp with zero_page, whatever is better for particular architecture. |
| 4036 | * Linus? |
| 4037 | */ |
| 4038 | static inline int all_zeroes(__le32 *p, __le32 *q) |
| 4039 | { |
| 4040 | while (p < q) |
| 4041 | if (*p++) |
| 4042 | return 0; |
| 4043 | return 1; |
| 4044 | } |
| 4045 | |
| 4046 | /** |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4047 | * ext4_find_shared - find the indirect blocks for partial truncation. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4048 | * @inode: inode in question |
| 4049 | * @depth: depth of the affected branch |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4050 | * @offsets: offsets of pointers in that branch (see ext4_block_to_path) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4051 | * @chain: place to store the pointers to partial indirect blocks |
| 4052 | * @top: place to the (detached) top of branch |
| 4053 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4054 | * This is a helper function used by ext4_truncate(). |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4055 | * |
| 4056 | * When we do truncate() we may have to clean the ends of several |
| 4057 | * indirect blocks but leave the blocks themselves alive. Block is |
| 4058 | * partially truncated if some data below the new i_size is refered |
| 4059 | * from it (and it is on the path to the first completely truncated |
| 4060 | * data block, indeed). We have to free the top of that path along |
| 4061 | * with everything to the right of the path. Since no allocation |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4062 | * past the truncation point is possible until ext4_truncate() |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4063 | * finishes, we may safely do the latter, but top of branch may |
| 4064 | * require special attention - pageout below the truncation point |
| 4065 | * might try to populate it. |
| 4066 | * |
| 4067 | * We atomically detach the top of branch from the tree, store the |
| 4068 | * block number of its root in *@top, pointers to buffer_heads of |
| 4069 | * partially truncated blocks - in @chain[].bh and pointers to |
| 4070 | * their last elements that should not be removed - in |
| 4071 | * @chain[].p. Return value is the pointer to last filled element |
| 4072 | * of @chain. |
| 4073 | * |
| 4074 | * The work left to caller to do the actual freeing of subtrees: |
| 4075 | * a) free the subtree starting from *@top |
| 4076 | * b) free the subtrees whose roots are stored in |
| 4077 | * (@chain[i].p+1 .. end of @chain[i].bh->b_data) |
| 4078 | * c) free the subtrees growing from the inode past the @chain[0]. |
| 4079 | * (no partially truncated stuff there). */ |
| 4080 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4081 | static Indirect *ext4_find_shared(struct inode *inode, int depth, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 4082 | ext4_lblk_t offsets[4], Indirect chain[4], |
| 4083 | __le32 *top) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4084 | { |
| 4085 | Indirect *partial, *p; |
| 4086 | int k, err; |
| 4087 | |
| 4088 | *top = 0; |
Uwe Kleine-König | bf48aab | 2009-10-28 20:11:03 +0100 | [diff] [blame] | 4089 | /* Make k index the deepest non-null offset + 1 */ |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4090 | for (k = depth; k > 1 && !offsets[k-1]; k--) |
| 4091 | ; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4092 | partial = ext4_get_branch(inode, k, offsets, chain, &err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4093 | /* Writer: pointers */ |
| 4094 | if (!partial) |
| 4095 | partial = chain + k-1; |
| 4096 | /* |
| 4097 | * If the branch acquired continuation since we've looked at it - |
| 4098 | * fine, it should all survive and (new) top doesn't belong to us. |
| 4099 | */ |
| 4100 | if (!partial->key && *partial->p) |
| 4101 | /* Writer: end */ |
| 4102 | goto no_top; |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 4103 | for (p = partial; (p > chain) && all_zeroes((__le32 *) p->bh->b_data, p->p); p--) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4104 | ; |
| 4105 | /* |
| 4106 | * OK, we've found the last block that must survive. The rest of our |
| 4107 | * branch should be detached before unlocking. However, if that rest |
| 4108 | * of branch is all ours and does not grow immediately from the inode |
| 4109 | * it's easier to cheat and just decrement partial->p. |
| 4110 | */ |
| 4111 | if (p == chain + k - 1 && p > chain) { |
| 4112 | p->p--; |
| 4113 | } else { |
| 4114 | *top = *p->p; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4115 | /* Nope, don't do this in ext4. Must leave the tree intact */ |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4116 | #if 0 |
| 4117 | *p->p = 0; |
| 4118 | #endif |
| 4119 | } |
| 4120 | /* Writer: end */ |
| 4121 | |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 4122 | while (partial > p) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4123 | brelse(partial->bh); |
| 4124 | partial--; |
| 4125 | } |
| 4126 | no_top: |
| 4127 | return partial; |
| 4128 | } |
| 4129 | |
| 4130 | /* |
| 4131 | * Zero a number of block pointers in either an inode or an indirect block. |
| 4132 | * If we restart the transaction we must again get write access to the |
| 4133 | * indirect block for further modification. |
| 4134 | * |
| 4135 | * We release `count' blocks on disk, but (last - first) may be greater |
| 4136 | * than `count' because there can be holes in there. |
| 4137 | */ |
Theodore Ts'o | 1f2acb6 | 2010-01-22 17:40:42 -0500 | [diff] [blame] | 4138 | static int ext4_clear_blocks(handle_t *handle, struct inode *inode, |
| 4139 | struct buffer_head *bh, |
| 4140 | ext4_fsblk_t block_to_free, |
| 4141 | unsigned long count, __le32 *first, |
| 4142 | __le32 *last) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4143 | { |
| 4144 | __le32 *p; |
Theodore Ts'o | 1f2acb6 | 2010-01-22 17:40:42 -0500 | [diff] [blame] | 4145 | int flags = EXT4_FREE_BLOCKS_FORGET | EXT4_FREE_BLOCKS_VALIDATED; |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 4146 | |
| 4147 | if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) |
| 4148 | flags |= EXT4_FREE_BLOCKS_METADATA; |
Theodore Ts'o | 5068969 | 2009-11-23 07:17:34 -0500 | [diff] [blame] | 4149 | |
Theodore Ts'o | 1f2acb6 | 2010-01-22 17:40:42 -0500 | [diff] [blame] | 4150 | if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), block_to_free, |
| 4151 | count)) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 4152 | ext4_error(inode->i_sb, "inode #%lu: " |
Theodore Ts'o | 1f2acb6 | 2010-01-22 17:40:42 -0500 | [diff] [blame] | 4153 | "attempt to clear blocks %llu len %lu, invalid", |
| 4154 | inode->i_ino, (unsigned long long) block_to_free, |
| 4155 | count); |
| 4156 | return 1; |
| 4157 | } |
| 4158 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4159 | if (try_to_extend_transaction(handle, inode)) { |
| 4160 | if (bh) { |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4161 | BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); |
| 4162 | ext4_handle_dirty_metadata(handle, inode, bh); |
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 | ext4_mark_inode_dirty(handle, inode); |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 4165 | ext4_truncate_restart_trans(handle, inode, |
| 4166 | blocks_for_truncate(inode)); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4167 | if (bh) { |
| 4168 | BUFFER_TRACE(bh, "retaking write access"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4169 | ext4_journal_get_write_access(handle, bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4170 | } |
| 4171 | } |
| 4172 | |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 4173 | for (p = first; p < last; p++) |
| 4174 | *p = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4175 | |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 4176 | ext4_free_blocks(handle, inode, 0, block_to_free, count, flags); |
Theodore Ts'o | 1f2acb6 | 2010-01-22 17:40:42 -0500 | [diff] [blame] | 4177 | return 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4178 | } |
| 4179 | |
| 4180 | /** |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4181 | * ext4_free_data - free a list of data blocks |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4182 | * @handle: handle for this transaction |
| 4183 | * @inode: inode we are dealing with |
| 4184 | * @this_bh: indirect buffer_head which contains *@first and *@last |
| 4185 | * @first: array of block numbers |
| 4186 | * @last: points immediately past the end of array |
| 4187 | * |
| 4188 | * We are freeing all blocks refered from that array (numbers are stored as |
| 4189 | * little-endian 32-bit) and updating @inode->i_blocks appropriately. |
| 4190 | * |
| 4191 | * We accumulate contiguous runs of blocks to free. Conveniently, if these |
| 4192 | * blocks are contiguous then releasing them at one time will only affect one |
| 4193 | * or two bitmap blocks (+ group descriptor(s) and superblock) and we won't |
| 4194 | * actually use a lot of journal space. |
| 4195 | * |
| 4196 | * @this_bh will be %NULL if @first and @last point into the inode's direct |
| 4197 | * block pointers. |
| 4198 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4199 | static void ext4_free_data(handle_t *handle, struct inode *inode, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4200 | struct buffer_head *this_bh, |
| 4201 | __le32 *first, __le32 *last) |
| 4202 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4203 | ext4_fsblk_t block_to_free = 0; /* Starting block # of a run */ |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4204 | unsigned long count = 0; /* Number of blocks in the run */ |
| 4205 | __le32 *block_to_free_p = NULL; /* Pointer into inode/ind |
| 4206 | corresponding to |
| 4207 | block_to_free */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4208 | ext4_fsblk_t nr; /* Current block # */ |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4209 | __le32 *p; /* Pointer into inode/ind |
| 4210 | for current block */ |
| 4211 | int err; |
| 4212 | |
| 4213 | if (this_bh) { /* For indirect block */ |
| 4214 | BUFFER_TRACE(this_bh, "get_write_access"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4215 | err = ext4_journal_get_write_access(handle, this_bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4216 | /* Important: if we can't update the indirect pointers |
| 4217 | * to the blocks, we can't free them. */ |
| 4218 | if (err) |
| 4219 | return; |
| 4220 | } |
| 4221 | |
| 4222 | for (p = first; p < last; p++) { |
| 4223 | nr = le32_to_cpu(*p); |
| 4224 | if (nr) { |
| 4225 | /* accumulate blocks to free if they're contiguous */ |
| 4226 | if (count == 0) { |
| 4227 | block_to_free = nr; |
| 4228 | block_to_free_p = p; |
| 4229 | count = 1; |
| 4230 | } else if (nr == block_to_free + count) { |
| 4231 | count++; |
| 4232 | } else { |
Theodore Ts'o | 1f2acb6 | 2010-01-22 17:40:42 -0500 | [diff] [blame] | 4233 | if (ext4_clear_blocks(handle, inode, this_bh, |
| 4234 | block_to_free, count, |
| 4235 | block_to_free_p, p)) |
| 4236 | break; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4237 | block_to_free = nr; |
| 4238 | block_to_free_p = p; |
| 4239 | count = 1; |
| 4240 | } |
| 4241 | } |
| 4242 | } |
| 4243 | |
| 4244 | if (count > 0) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4245 | ext4_clear_blocks(handle, inode, this_bh, block_to_free, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4246 | count, block_to_free_p, p); |
| 4247 | |
| 4248 | if (this_bh) { |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4249 | BUFFER_TRACE(this_bh, "call ext4_handle_dirty_metadata"); |
Duane Griffin | 71dc8fb | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4250 | |
| 4251 | /* |
| 4252 | * The buffer head should have an attached journal head at this |
| 4253 | * point. However, if the data is corrupted and an indirect |
| 4254 | * block pointed to itself, it would have been detached when |
| 4255 | * the block was cleared. Check for this instead of OOPSing. |
| 4256 | */ |
Theodore Ts'o | e7f0796 | 2009-01-20 09:50:19 -0500 | [diff] [blame] | 4257 | if ((EXT4_JOURNAL(inode) == NULL) || bh2jh(this_bh)) |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4258 | ext4_handle_dirty_metadata(handle, inode, this_bh); |
Duane Griffin | 71dc8fb | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4259 | else |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 4260 | ext4_error(inode->i_sb, |
Duane Griffin | 71dc8fb | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4261 | "circular indirect block detected, " |
| 4262 | "inode=%lu, block=%llu", |
| 4263 | inode->i_ino, |
| 4264 | (unsigned long long) this_bh->b_blocknr); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4265 | } |
| 4266 | } |
| 4267 | |
| 4268 | /** |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4269 | * ext4_free_branches - free an array of branches |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4270 | * @handle: JBD handle for this transaction |
| 4271 | * @inode: inode we are dealing with |
| 4272 | * @parent_bh: the buffer_head which contains *@first and *@last |
| 4273 | * @first: array of block numbers |
| 4274 | * @last: pointer immediately past the end of array |
| 4275 | * @depth: depth of the branches to free |
| 4276 | * |
| 4277 | * We are freeing all blocks refered from these branches (numbers are |
| 4278 | * stored as little-endian 32-bit) and updating @inode->i_blocks |
| 4279 | * appropriately. |
| 4280 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4281 | static void ext4_free_branches(handle_t *handle, struct inode *inode, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4282 | struct buffer_head *parent_bh, |
| 4283 | __le32 *first, __le32 *last, int depth) |
| 4284 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4285 | ext4_fsblk_t nr; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4286 | __le32 *p; |
| 4287 | |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4288 | if (ext4_handle_is_aborted(handle)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4289 | return; |
| 4290 | |
| 4291 | if (depth--) { |
| 4292 | struct buffer_head *bh; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4293 | int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4294 | p = last; |
| 4295 | while (--p >= first) { |
| 4296 | nr = le32_to_cpu(*p); |
| 4297 | if (!nr) |
| 4298 | continue; /* A hole */ |
| 4299 | |
Theodore Ts'o | 1f2acb6 | 2010-01-22 17:40:42 -0500 | [diff] [blame] | 4300 | if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), |
| 4301 | nr, 1)) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 4302 | ext4_error(inode->i_sb, |
Theodore Ts'o | 1f2acb6 | 2010-01-22 17:40:42 -0500 | [diff] [blame] | 4303 | "indirect mapped block in inode " |
| 4304 | "#%lu invalid (level %d, blk #%lu)", |
| 4305 | inode->i_ino, depth, |
| 4306 | (unsigned long) nr); |
| 4307 | break; |
| 4308 | } |
| 4309 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4310 | /* Go read the buffer for the next level down */ |
| 4311 | bh = sb_bread(inode->i_sb, nr); |
| 4312 | |
| 4313 | /* |
| 4314 | * A read failure? Report error and clear slot |
| 4315 | * (should be rare). |
| 4316 | */ |
| 4317 | if (!bh) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 4318 | ext4_error(inode->i_sb, |
Mingming Cao | 2ae0210 | 2006-10-11 01:21:11 -0700 | [diff] [blame] | 4319 | "Read failure, inode=%lu, block=%llu", |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4320 | inode->i_ino, nr); |
| 4321 | continue; |
| 4322 | } |
| 4323 | |
| 4324 | /* This zaps the entire block. Bottom up. */ |
| 4325 | BUFFER_TRACE(bh, "free child branches"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4326 | ext4_free_branches(handle, inode, bh, |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 4327 | (__le32 *) bh->b_data, |
| 4328 | (__le32 *) bh->b_data + addr_per_block, |
| 4329 | depth); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4330 | |
| 4331 | /* |
| 4332 | * We've probably journalled the indirect block several |
| 4333 | * times during the truncate. But it's no longer |
| 4334 | * needed and we now drop it from the transaction via |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 4335 | * jbd2_journal_revoke(). |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4336 | * |
| 4337 | * That's easy if it's exclusively part of this |
| 4338 | * transaction. But if it's part of the committing |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 4339 | * transaction then jbd2_journal_forget() will simply |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4340 | * brelse() it. That means that if the underlying |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4341 | * block is reallocated in ext4_get_block(), |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4342 | * unmap_underlying_metadata() will find this block |
| 4343 | * and will try to get rid of it. damn, damn. |
| 4344 | * |
| 4345 | * If this block has already been committed to the |
| 4346 | * journal, a revoke record will be written. And |
| 4347 | * revoke records must be emitted *before* clearing |
| 4348 | * this block's bit in the bitmaps. |
| 4349 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4350 | ext4_forget(handle, 1, inode, bh, bh->b_blocknr); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4351 | |
| 4352 | /* |
| 4353 | * Everything below this this pointer has been |
| 4354 | * released. Now let this top-of-subtree go. |
| 4355 | * |
| 4356 | * We want the freeing of this indirect block to be |
| 4357 | * atomic in the journal with the updating of the |
| 4358 | * bitmap block which owns it. So make some room in |
| 4359 | * the journal. |
| 4360 | * |
| 4361 | * We zero the parent pointer *after* freeing its |
| 4362 | * pointee in the bitmaps, so if extend_transaction() |
| 4363 | * for some reason fails to put the bitmap changes and |
| 4364 | * the release into the same transaction, recovery |
| 4365 | * will merely complain about releasing a free block, |
| 4366 | * rather than leaking blocks. |
| 4367 | */ |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4368 | if (ext4_handle_is_aborted(handle)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4369 | return; |
| 4370 | if (try_to_extend_transaction(handle, inode)) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4371 | ext4_mark_inode_dirty(handle, inode); |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 4372 | ext4_truncate_restart_trans(handle, inode, |
| 4373 | blocks_for_truncate(inode)); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4374 | } |
| 4375 | |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 4376 | ext4_free_blocks(handle, inode, 0, nr, 1, |
| 4377 | EXT4_FREE_BLOCKS_METADATA); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4378 | |
| 4379 | if (parent_bh) { |
| 4380 | /* |
| 4381 | * The block which we have just freed is |
| 4382 | * pointed to by an indirect block: journal it |
| 4383 | */ |
| 4384 | BUFFER_TRACE(parent_bh, "get_write_access"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4385 | if (!ext4_journal_get_write_access(handle, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4386 | parent_bh)){ |
| 4387 | *p = 0; |
| 4388 | BUFFER_TRACE(parent_bh, |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4389 | "call ext4_handle_dirty_metadata"); |
| 4390 | ext4_handle_dirty_metadata(handle, |
| 4391 | inode, |
| 4392 | parent_bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4393 | } |
| 4394 | } |
| 4395 | } |
| 4396 | } else { |
| 4397 | /* We have reached the bottom of the tree. */ |
| 4398 | BUFFER_TRACE(parent_bh, "free data blocks"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4399 | ext4_free_data(handle, inode, parent_bh, first, last); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4400 | } |
| 4401 | } |
| 4402 | |
Duane Griffin | 91ef4ca | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4403 | int ext4_can_truncate(struct inode *inode) |
| 4404 | { |
| 4405 | if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) |
| 4406 | return 0; |
| 4407 | if (S_ISREG(inode->i_mode)) |
| 4408 | return 1; |
| 4409 | if (S_ISDIR(inode->i_mode)) |
| 4410 | return 1; |
| 4411 | if (S_ISLNK(inode->i_mode)) |
| 4412 | return !ext4_inode_is_fast_symlink(inode); |
| 4413 | return 0; |
| 4414 | } |
| 4415 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4416 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4417 | * ext4_truncate() |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4418 | * |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4419 | * We block out ext4_get_block() block instantiations across the entire |
| 4420 | * transaction, and VFS/VM ensures that ext4_truncate() cannot run |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4421 | * simultaneously on behalf of the same inode. |
| 4422 | * |
| 4423 | * As we work through the truncate and commmit bits of it to the journal there |
| 4424 | * is one core, guiding principle: the file's tree must always be consistent on |
| 4425 | * disk. We must be able to restart the truncate after a crash. |
| 4426 | * |
| 4427 | * The file's tree may be transiently inconsistent in memory (although it |
| 4428 | * probably isn't), but whenever we close off and commit a journal transaction, |
| 4429 | * the contents of (the filesystem + the journal) must be consistent and |
| 4430 | * restartable. It's pretty simple, really: bottom up, right to left (although |
| 4431 | * left-to-right works OK too). |
| 4432 | * |
| 4433 | * Note that at recovery time, journal replay occurs *before* the restart of |
| 4434 | * truncate against the orphan inode list. |
| 4435 | * |
| 4436 | * 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] | 4437 | * 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] | 4438 | * 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] | 4439 | * ext4_truncate() to have another go. So there will be instantiated blocks |
| 4440 | * 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] | 4441 | * 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] | 4442 | * ext4_truncate() run will find them and release them. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4443 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4444 | void ext4_truncate(struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4445 | { |
| 4446 | handle_t *handle; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4447 | struct ext4_inode_info *ei = EXT4_I(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4448 | __le32 *i_data = ei->i_data; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4449 | int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4450 | struct address_space *mapping = inode->i_mapping; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4451 | ext4_lblk_t offsets[4]; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4452 | Indirect chain[4]; |
| 4453 | Indirect *partial; |
| 4454 | __le32 nr = 0; |
| 4455 | int n; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4456 | ext4_lblk_t last_block; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4457 | unsigned blocksize = inode->i_sb->s_blocksize; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4458 | |
Duane Griffin | 91ef4ca | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4459 | if (!ext4_can_truncate(inode)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4460 | return; |
| 4461 | |
Jiaying Zhang | c8d46e4 | 2010-02-24 09:52:53 -0500 | [diff] [blame] | 4462 | EXT4_I(inode)->i_flags &= ~EXT4_EOFBLOCKS_FL; |
| 4463 | |
Theodore Ts'o | 5534fb5 | 2009-09-17 09:34:16 -0400 | [diff] [blame] | 4464 | 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] | 4465 | ext4_set_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE); |
Theodore Ts'o | 7d8f9f7 | 2009-02-24 08:21:14 -0500 | [diff] [blame] | 4466 | |
Aneesh Kumar K.V | 1d03ec9 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4467 | if (EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL) { |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4468 | ext4_ext_truncate(inode); |
Aneesh Kumar K.V | 1d03ec9 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4469 | return; |
| 4470 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4471 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4472 | handle = start_transaction(inode); |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4473 | if (IS_ERR(handle)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4474 | return; /* AKPM: return what? */ |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4475 | |
| 4476 | last_block = (inode->i_size + blocksize-1) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4477 | >> EXT4_BLOCK_SIZE_BITS(inode->i_sb); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4478 | |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4479 | if (inode->i_size & (blocksize - 1)) |
| 4480 | if (ext4_block_truncate_page(handle, mapping, inode->i_size)) |
| 4481 | goto out_stop; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4482 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4483 | n = ext4_block_to_path(inode, last_block, offsets, NULL); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4484 | if (n == 0) |
| 4485 | goto out_stop; /* error */ |
| 4486 | |
| 4487 | /* |
| 4488 | * OK. This truncate is going to happen. We add the inode to the |
| 4489 | * orphan list, so that if this truncate spans multiple transactions, |
| 4490 | * and we crash, we will resume the truncate when the filesystem |
| 4491 | * recovers. It also marks the inode dirty, to catch the new size. |
| 4492 | * |
| 4493 | * Implication: the file must always be in a sane, consistent |
| 4494 | * truncatable state while each transaction commits. |
| 4495 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4496 | if (ext4_orphan_add(handle, inode)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4497 | goto out_stop; |
| 4498 | |
| 4499 | /* |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4500 | * From here we block out all ext4_get_block() callers who want to |
| 4501 | * modify the block allocation tree. |
| 4502 | */ |
| 4503 | down_write(&ei->i_data_sem); |
Theodore Ts'o | b4df203 | 2008-08-13 21:44:34 -0400 | [diff] [blame] | 4504 | |
Theodore Ts'o | c2ea3fd | 2008-10-10 09:40:52 -0400 | [diff] [blame] | 4505 | ext4_discard_preallocations(inode); |
Theodore Ts'o | b4df203 | 2008-08-13 21:44:34 -0400 | [diff] [blame] | 4506 | |
Mingming Cao | 632eaea | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 4507 | /* |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4508 | * The orphan list entry will now protect us from any crash which |
| 4509 | * occurs before the truncate completes, so it is now safe to propagate |
| 4510 | * the new, shorter inode size (held for now in i_size) into the |
| 4511 | * on-disk inode. We do this via i_disksize, which is the value which |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4512 | * ext4 *really* writes onto the disk inode. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4513 | */ |
| 4514 | ei->i_disksize = inode->i_size; |
| 4515 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4516 | if (n == 1) { /* direct blocks */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4517 | ext4_free_data(handle, inode, NULL, i_data+offsets[0], |
| 4518 | i_data + EXT4_NDIR_BLOCKS); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4519 | goto do_indirects; |
| 4520 | } |
| 4521 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4522 | partial = ext4_find_shared(inode, n, offsets, chain, &nr); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4523 | /* Kill the top of shared branch (not detached) */ |
| 4524 | if (nr) { |
| 4525 | if (partial == chain) { |
| 4526 | /* Shared branch grows from the inode */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4527 | ext4_free_branches(handle, inode, NULL, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4528 | &nr, &nr+1, (chain+n-1) - partial); |
| 4529 | *partial->p = 0; |
| 4530 | /* |
| 4531 | * We mark the inode dirty prior to restart, |
| 4532 | * and prior to stop. No need for it here. |
| 4533 | */ |
| 4534 | } else { |
| 4535 | /* Shared branch grows from an indirect block */ |
| 4536 | BUFFER_TRACE(partial->bh, "get_write_access"); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4537 | ext4_free_branches(handle, inode, partial->bh, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4538 | partial->p, |
| 4539 | partial->p+1, (chain+n-1) - partial); |
| 4540 | } |
| 4541 | } |
| 4542 | /* Clear the ends of indirect blocks on the shared branch */ |
| 4543 | while (partial > chain) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4544 | ext4_free_branches(handle, inode, partial->bh, partial->p + 1, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4545 | (__le32*)partial->bh->b_data+addr_per_block, |
| 4546 | (chain+n-1) - partial); |
| 4547 | BUFFER_TRACE(partial->bh, "call brelse"); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 4548 | brelse(partial->bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4549 | partial--; |
| 4550 | } |
| 4551 | do_indirects: |
| 4552 | /* Kill the remaining (whole) subtrees */ |
| 4553 | switch (offsets[0]) { |
| 4554 | default: |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4555 | nr = i_data[EXT4_IND_BLOCK]; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4556 | if (nr) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4557 | ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 1); |
| 4558 | i_data[EXT4_IND_BLOCK] = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4559 | } |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4560 | case EXT4_IND_BLOCK: |
| 4561 | nr = i_data[EXT4_DIND_BLOCK]; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4562 | if (nr) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4563 | ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 2); |
| 4564 | i_data[EXT4_DIND_BLOCK] = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4565 | } |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4566 | case EXT4_DIND_BLOCK: |
| 4567 | nr = i_data[EXT4_TIND_BLOCK]; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4568 | if (nr) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4569 | ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 3); |
| 4570 | i_data[EXT4_TIND_BLOCK] = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4571 | } |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4572 | case EXT4_TIND_BLOCK: |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4573 | ; |
| 4574 | } |
| 4575 | |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 4576 | up_write(&ei->i_data_sem); |
Kalpak Shah | ef7f383 | 2007-07-18 09:15:20 -0400 | [diff] [blame] | 4577 | inode->i_mtime = inode->i_ctime = ext4_current_time(inode); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4578 | ext4_mark_inode_dirty(handle, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4579 | |
| 4580 | /* |
| 4581 | * In a multi-transaction truncate, we only make the final transaction |
| 4582 | * synchronous |
| 4583 | */ |
| 4584 | if (IS_SYNC(inode)) |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 4585 | ext4_handle_sync(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4586 | out_stop: |
| 4587 | /* |
| 4588 | * If this was a simple ftruncate(), and the file will remain alive |
| 4589 | * then we need to clear up the orphan record which we created above. |
| 4590 | * However, if this was a real unlink then we were called by |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4591 | * ext4_delete_inode(), and we allow that function to clean up the |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4592 | * orphan info for us. |
| 4593 | */ |
| 4594 | if (inode->i_nlink) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4595 | ext4_orphan_del(handle, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4596 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4597 | ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4598 | } |
| 4599 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4600 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4601 | * 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] | 4602 | * underlying buffer_head on success. If 'in_mem' is true, we have all |
| 4603 | * data in memory that is needed to recreate the on-disk version of this |
| 4604 | * inode. |
| 4605 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4606 | static int __ext4_get_inode_loc(struct inode *inode, |
| 4607 | struct ext4_iloc *iloc, int in_mem) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4608 | { |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 4609 | struct ext4_group_desc *gdp; |
| 4610 | struct buffer_head *bh; |
| 4611 | struct super_block *sb = inode->i_sb; |
| 4612 | ext4_fsblk_t block; |
| 4613 | int inodes_per_block, inode_offset; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4614 | |
Aneesh Kumar K.V | 3a06d77 | 2008-11-22 15:04:59 -0500 | [diff] [blame] | 4615 | iloc->bh = NULL; |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 4616 | if (!ext4_valid_inum(sb, inode->i_ino)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4617 | return -EIO; |
| 4618 | |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 4619 | iloc->block_group = (inode->i_ino - 1) / EXT4_INODES_PER_GROUP(sb); |
| 4620 | gdp = ext4_get_group_desc(sb, iloc->block_group, NULL); |
| 4621 | if (!gdp) |
| 4622 | return -EIO; |
| 4623 | |
| 4624 | /* |
| 4625 | * Figure out the offset within the block group inode table |
| 4626 | */ |
| 4627 | inodes_per_block = (EXT4_BLOCK_SIZE(sb) / EXT4_INODE_SIZE(sb)); |
| 4628 | inode_offset = ((inode->i_ino - 1) % |
| 4629 | EXT4_INODES_PER_GROUP(sb)); |
| 4630 | block = ext4_inode_table(sb, gdp) + (inode_offset / inodes_per_block); |
| 4631 | iloc->offset = (inode_offset % inodes_per_block) * EXT4_INODE_SIZE(sb); |
| 4632 | |
| 4633 | bh = sb_getblk(sb, block); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4634 | if (!bh) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 4635 | ext4_error(sb, "unable to read inode block - " |
| 4636 | "inode=%lu, block=%llu", inode->i_ino, block); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4637 | return -EIO; |
| 4638 | } |
| 4639 | if (!buffer_uptodate(bh)) { |
| 4640 | lock_buffer(bh); |
Hidehiro Kawai | 9c83a92 | 2008-07-26 16:39:26 -0400 | [diff] [blame] | 4641 | |
| 4642 | /* |
| 4643 | * If the buffer has the write error flag, we have failed |
| 4644 | * to write out another inode in the same block. In this |
| 4645 | * case, we don't have to read the block because we may |
| 4646 | * read the old inode data successfully. |
| 4647 | */ |
| 4648 | if (buffer_write_io_error(bh) && !buffer_uptodate(bh)) |
| 4649 | set_buffer_uptodate(bh); |
| 4650 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4651 | if (buffer_uptodate(bh)) { |
| 4652 | /* someone brought it uptodate while we waited */ |
| 4653 | unlock_buffer(bh); |
| 4654 | goto has_buffer; |
| 4655 | } |
| 4656 | |
| 4657 | /* |
| 4658 | * If we have all information of the inode in memory and this |
| 4659 | * is the only valid inode in the block, we need not read the |
| 4660 | * block. |
| 4661 | */ |
| 4662 | if (in_mem) { |
| 4663 | struct buffer_head *bitmap_bh; |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 4664 | int i, start; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4665 | |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 4666 | start = inode_offset & ~(inodes_per_block - 1); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4667 | |
| 4668 | /* Is the inode bitmap in cache? */ |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 4669 | bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp)); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4670 | if (!bitmap_bh) |
| 4671 | goto make_io; |
| 4672 | |
| 4673 | /* |
| 4674 | * If the inode bitmap isn't in cache then the |
| 4675 | * optimisation may end up performing two reads instead |
| 4676 | * of one, so skip it. |
| 4677 | */ |
| 4678 | if (!buffer_uptodate(bitmap_bh)) { |
| 4679 | brelse(bitmap_bh); |
| 4680 | goto make_io; |
| 4681 | } |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 4682 | for (i = start; i < start + inodes_per_block; i++) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4683 | if (i == inode_offset) |
| 4684 | continue; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4685 | if (ext4_test_bit(i, bitmap_bh->b_data)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4686 | break; |
| 4687 | } |
| 4688 | brelse(bitmap_bh); |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 4689 | if (i == start + inodes_per_block) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4690 | /* all other inodes are free, so skip I/O */ |
| 4691 | memset(bh->b_data, 0, bh->b_size); |
| 4692 | set_buffer_uptodate(bh); |
| 4693 | unlock_buffer(bh); |
| 4694 | goto has_buffer; |
| 4695 | } |
| 4696 | } |
| 4697 | |
| 4698 | make_io: |
| 4699 | /* |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 4700 | * If we need to do any I/O, try to pre-readahead extra |
| 4701 | * blocks from the inode table. |
| 4702 | */ |
| 4703 | if (EXT4_SB(sb)->s_inode_readahead_blks) { |
| 4704 | ext4_fsblk_t b, end, table; |
| 4705 | unsigned num; |
| 4706 | |
| 4707 | table = ext4_inode_table(sb, gdp); |
Theodore Ts'o | b713a5e | 2009-03-31 09:11:14 -0400 | [diff] [blame] | 4708 | /* s_inode_readahead_blks is always a power of 2 */ |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 4709 | b = block & ~(EXT4_SB(sb)->s_inode_readahead_blks-1); |
| 4710 | if (table > b) |
| 4711 | b = table; |
| 4712 | end = b + EXT4_SB(sb)->s_inode_readahead_blks; |
| 4713 | num = EXT4_INODES_PER_GROUP(sb); |
| 4714 | if (EXT4_HAS_RO_COMPAT_FEATURE(sb, |
| 4715 | EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) |
Aneesh Kumar K.V | 560671a | 2009-01-05 22:20:24 -0500 | [diff] [blame] | 4716 | num -= ext4_itable_unused_count(sb, gdp); |
Theodore Ts'o | 240799c | 2008-10-09 23:53:47 -0400 | [diff] [blame] | 4717 | table += num / inodes_per_block; |
| 4718 | if (end > table) |
| 4719 | end = table; |
| 4720 | while (b <= end) |
| 4721 | sb_breadahead(sb, b++); |
| 4722 | } |
| 4723 | |
| 4724 | /* |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4725 | * There are other valid inodes in the buffer, this inode |
| 4726 | * has in-inode xattrs, or we don't have this inode in memory. |
| 4727 | * Read the block from disk. |
| 4728 | */ |
| 4729 | get_bh(bh); |
| 4730 | bh->b_end_io = end_buffer_read_sync; |
| 4731 | submit_bh(READ_META, bh); |
| 4732 | wait_on_buffer(bh); |
| 4733 | if (!buffer_uptodate(bh)) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 4734 | ext4_error(sb, "unable to read inode block - inode=%lu," |
| 4735 | " block=%llu", inode->i_ino, block); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4736 | brelse(bh); |
| 4737 | return -EIO; |
| 4738 | } |
| 4739 | } |
| 4740 | has_buffer: |
| 4741 | iloc->bh = bh; |
| 4742 | return 0; |
| 4743 | } |
| 4744 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4745 | int ext4_get_inode_loc(struct inode *inode, struct ext4_iloc *iloc) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4746 | { |
| 4747 | /* We have all inode data except xattrs in memory here. */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4748 | return __ext4_get_inode_loc(inode, iloc, |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 4749 | !ext4_test_inode_state(inode, EXT4_STATE_XATTR)); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4750 | } |
| 4751 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4752 | void ext4_set_inode_flags(struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4753 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4754 | unsigned int flags = EXT4_I(inode)->i_flags; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4755 | |
| 4756 | 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] | 4757 | if (flags & EXT4_SYNC_FL) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4758 | inode->i_flags |= S_SYNC; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4759 | if (flags & EXT4_APPEND_FL) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4760 | inode->i_flags |= S_APPEND; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4761 | if (flags & EXT4_IMMUTABLE_FL) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4762 | inode->i_flags |= S_IMMUTABLE; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4763 | if (flags & EXT4_NOATIME_FL) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4764 | inode->i_flags |= S_NOATIME; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4765 | if (flags & EXT4_DIRSYNC_FL) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4766 | inode->i_flags |= S_DIRSYNC; |
| 4767 | } |
| 4768 | |
Jan Kara | ff9ddf7 | 2007-07-18 09:24:20 -0400 | [diff] [blame] | 4769 | /* Propagate flags from i_flags to EXT4_I(inode)->i_flags */ |
| 4770 | void ext4_get_inode_flags(struct ext4_inode_info *ei) |
| 4771 | { |
| 4772 | unsigned int flags = ei->vfs_inode.i_flags; |
| 4773 | |
| 4774 | ei->i_flags &= ~(EXT4_SYNC_FL|EXT4_APPEND_FL| |
| 4775 | EXT4_IMMUTABLE_FL|EXT4_NOATIME_FL|EXT4_DIRSYNC_FL); |
| 4776 | if (flags & S_SYNC) |
| 4777 | ei->i_flags |= EXT4_SYNC_FL; |
| 4778 | if (flags & S_APPEND) |
| 4779 | ei->i_flags |= EXT4_APPEND_FL; |
| 4780 | if (flags & S_IMMUTABLE) |
| 4781 | ei->i_flags |= EXT4_IMMUTABLE_FL; |
| 4782 | if (flags & S_NOATIME) |
| 4783 | ei->i_flags |= EXT4_NOATIME_FL; |
| 4784 | if (flags & S_DIRSYNC) |
| 4785 | ei->i_flags |= EXT4_DIRSYNC_FL; |
| 4786 | } |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 4787 | |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 4788 | static blkcnt_t ext4_inode_blocks(struct ext4_inode *raw_inode, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 4789 | struct ext4_inode_info *ei) |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 4790 | { |
| 4791 | blkcnt_t i_blocks ; |
Aneesh Kumar K.V | 8180a56 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4792 | struct inode *inode = &(ei->vfs_inode); |
| 4793 | struct super_block *sb = inode->i_sb; |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 4794 | |
| 4795 | if (EXT4_HAS_RO_COMPAT_FEATURE(sb, |
| 4796 | EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) { |
| 4797 | /* we are using combined 48 bit field */ |
| 4798 | i_blocks = ((u64)le16_to_cpu(raw_inode->i_blocks_high)) << 32 | |
| 4799 | le32_to_cpu(raw_inode->i_blocks_lo); |
Aneesh Kumar K.V | 8180a56 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4800 | if (ei->i_flags & EXT4_HUGE_FILE_FL) { |
| 4801 | /* i_blocks represent file system block size */ |
| 4802 | return i_blocks << (inode->i_blkbits - 9); |
| 4803 | } else { |
| 4804 | return i_blocks; |
| 4805 | } |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 4806 | } else { |
| 4807 | return le32_to_cpu(raw_inode->i_blocks_lo); |
| 4808 | } |
| 4809 | } |
Jan Kara | ff9ddf7 | 2007-07-18 09:24:20 -0400 | [diff] [blame] | 4810 | |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 4811 | struct inode *ext4_iget(struct super_block *sb, unsigned long ino) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4812 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4813 | struct ext4_iloc iloc; |
| 4814 | struct ext4_inode *raw_inode; |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 4815 | struct ext4_inode_info *ei; |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 4816 | struct inode *inode; |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 4817 | journal_t *journal = EXT4_SB(sb)->s_journal; |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 4818 | long ret; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4819 | int block; |
| 4820 | |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 4821 | inode = iget_locked(sb, ino); |
| 4822 | if (!inode) |
| 4823 | return ERR_PTR(-ENOMEM); |
| 4824 | if (!(inode->i_state & I_NEW)) |
| 4825 | return inode; |
| 4826 | |
| 4827 | ei = EXT4_I(inode); |
Theodore Ts'o | 567f3e9 | 2009-11-14 08:19:05 -0500 | [diff] [blame] | 4828 | iloc.bh = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4829 | |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 4830 | ret = __ext4_get_inode_loc(inode, &iloc, 0); |
| 4831 | if (ret < 0) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4832 | goto bad_inode; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4833 | raw_inode = ext4_raw_inode(&iloc); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4834 | inode->i_mode = le16_to_cpu(raw_inode->i_mode); |
| 4835 | inode->i_uid = (uid_t)le16_to_cpu(raw_inode->i_uid_low); |
| 4836 | 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] | 4837 | if (!(test_opt(inode->i_sb, NO_UID32))) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4838 | inode->i_uid |= le16_to_cpu(raw_inode->i_uid_high) << 16; |
| 4839 | inode->i_gid |= le16_to_cpu(raw_inode->i_gid_high) << 16; |
| 4840 | } |
| 4841 | inode->i_nlink = le16_to_cpu(raw_inode->i_links_count); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4842 | |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 4843 | ei->i_state_flags = 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4844 | ei->i_dir_start_lookup = 0; |
| 4845 | ei->i_dtime = le32_to_cpu(raw_inode->i_dtime); |
| 4846 | /* We now have enough fields to check if the inode was active or not. |
| 4847 | * This is needed because nfsd might try to access dead inodes |
| 4848 | * the test is that same one that e2fsck uses |
| 4849 | * NeilBrown 1999oct15 |
| 4850 | */ |
| 4851 | if (inode->i_nlink == 0) { |
| 4852 | if (inode->i_mode == 0 || |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4853 | !(EXT4_SB(inode->i_sb)->s_mount_state & EXT4_ORPHAN_FS)) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4854 | /* this inode is deleted */ |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 4855 | ret = -ESTALE; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4856 | goto bad_inode; |
| 4857 | } |
| 4858 | /* The only unlinked inodes we let through here have |
| 4859 | * valid i_mode and are being read by the orphan |
| 4860 | * recovery code: that's fine, we're about to complete |
| 4861 | * the process of deleting those. */ |
| 4862 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4863 | ei->i_flags = le32_to_cpu(raw_inode->i_flags); |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 4864 | inode->i_blocks = ext4_inode_blocks(raw_inode, ei); |
Aneesh Kumar K.V | 7973c0c | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4865 | 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] | 4866 | if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) |
Badari Pulavarty | a1ddeb7 | 2006-10-11 01:21:09 -0700 | [diff] [blame] | 4867 | ei->i_file_acl |= |
| 4868 | ((__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] | 4869 | inode->i_size = ext4_isize(raw_inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4870 | ei->i_disksize = inode->i_size; |
Dmitry Monakhov | a9e7f44 | 2009-12-14 15:21:14 +0300 | [diff] [blame] | 4871 | #ifdef CONFIG_QUOTA |
| 4872 | ei->i_reserved_quota = 0; |
| 4873 | #endif |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4874 | inode->i_generation = le32_to_cpu(raw_inode->i_generation); |
| 4875 | ei->i_block_group = iloc.block_group; |
Theodore Ts'o | a491212 | 2009-03-12 12:18:34 -0400 | [diff] [blame] | 4876 | ei->i_last_alloc_group = ~0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4877 | /* |
| 4878 | * NOTE! The in-memory inode i_data array is in little-endian order |
| 4879 | * even on big-endian machines: we do NOT byteswap the block numbers! |
| 4880 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4881 | for (block = 0; block < EXT4_N_BLOCKS; block++) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4882 | ei->i_data[block] = raw_inode->i_block[block]; |
| 4883 | INIT_LIST_HEAD(&ei->i_orphan); |
| 4884 | |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 4885 | /* |
| 4886 | * Set transaction id's of transactions that have to be committed |
| 4887 | * to finish f[data]sync. We set them to currently running transaction |
| 4888 | * as we cannot be sure that the inode or some of its metadata isn't |
| 4889 | * part of the transaction - the inode could have been reclaimed and |
| 4890 | * now it is reread from disk. |
| 4891 | */ |
| 4892 | if (journal) { |
| 4893 | transaction_t *transaction; |
| 4894 | tid_t tid; |
| 4895 | |
| 4896 | spin_lock(&journal->j_state_lock); |
| 4897 | if (journal->j_running_transaction) |
| 4898 | transaction = journal->j_running_transaction; |
| 4899 | else |
| 4900 | transaction = journal->j_committing_transaction; |
| 4901 | if (transaction) |
| 4902 | tid = transaction->t_tid; |
| 4903 | else |
| 4904 | tid = journal->j_commit_sequence; |
| 4905 | spin_unlock(&journal->j_state_lock); |
| 4906 | ei->i_sync_tid = tid; |
| 4907 | ei->i_datasync_tid = tid; |
| 4908 | } |
| 4909 | |
Eric Sandeen | 0040d98 | 2008-02-05 22:36:43 -0500 | [diff] [blame] | 4910 | if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4911 | ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4912 | if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > |
Kirill Korotaev | e5d2861 | 2007-06-23 17:16:51 -0700 | [diff] [blame] | 4913 | EXT4_INODE_SIZE(inode->i_sb)) { |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 4914 | ret = -EIO; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4915 | goto bad_inode; |
Kirill Korotaev | e5d2861 | 2007-06-23 17:16:51 -0700 | [diff] [blame] | 4916 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4917 | if (ei->i_extra_isize == 0) { |
| 4918 | /* The extra space is currently unused. Use it. */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4919 | ei->i_extra_isize = sizeof(struct ext4_inode) - |
| 4920 | EXT4_GOOD_OLD_INODE_SIZE; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4921 | } else { |
| 4922 | __le32 *magic = (void *)raw_inode + |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4923 | EXT4_GOOD_OLD_INODE_SIZE + |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4924 | ei->i_extra_isize; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4925 | if (*magic == cpu_to_le32(EXT4_XATTR_MAGIC)) |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 4926 | ext4_set_inode_state(inode, EXT4_STATE_XATTR); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4927 | } |
| 4928 | } else |
| 4929 | ei->i_extra_isize = 0; |
| 4930 | |
Kalpak Shah | ef7f383 | 2007-07-18 09:15:20 -0400 | [diff] [blame] | 4931 | EXT4_INODE_GET_XTIME(i_ctime, inode, raw_inode); |
| 4932 | EXT4_INODE_GET_XTIME(i_mtime, inode, raw_inode); |
| 4933 | EXT4_INODE_GET_XTIME(i_atime, inode, raw_inode); |
| 4934 | EXT4_EINODE_GET_XTIME(i_crtime, ei, raw_inode); |
| 4935 | |
Jean Noel Cordenner | 25ec56b | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4936 | inode->i_version = le32_to_cpu(raw_inode->i_disk_version); |
| 4937 | if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { |
| 4938 | if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) |
| 4939 | inode->i_version |= |
| 4940 | (__u64)(le32_to_cpu(raw_inode->i_version_hi)) << 32; |
| 4941 | } |
| 4942 | |
Theodore Ts'o | c4b5a61 | 2009-04-24 18:45:35 -0400 | [diff] [blame] | 4943 | ret = 0; |
Theodore Ts'o | 485c26e | 2009-04-24 13:43:20 -0400 | [diff] [blame] | 4944 | if (ei->i_file_acl && |
Theodore Ts'o | 1032988 | 2009-11-15 15:29:56 -0500 | [diff] [blame] | 4945 | !ext4_data_block_valid(EXT4_SB(sb), ei->i_file_acl, 1)) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 4946 | ext4_error(sb, "bad extended attribute block %llu inode #%lu", |
Theodore Ts'o | 485c26e | 2009-04-24 13:43:20 -0400 | [diff] [blame] | 4947 | ei->i_file_acl, inode->i_ino); |
| 4948 | ret = -EIO; |
| 4949 | goto bad_inode; |
| 4950 | } else if (ei->i_flags & EXT4_EXTENTS_FL) { |
Theodore Ts'o | c4b5a61 | 2009-04-24 18:45:35 -0400 | [diff] [blame] | 4951 | if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || |
| 4952 | (S_ISLNK(inode->i_mode) && |
| 4953 | !ext4_inode_is_fast_symlink(inode))) |
| 4954 | /* Validate extent which is part of inode */ |
| 4955 | ret = ext4_ext_check_inode(inode); |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 4956 | } else if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) || |
Thiemo Nagel | fe2c819 | 2009-03-31 08:36:10 -0400 | [diff] [blame] | 4957 | (S_ISLNK(inode->i_mode) && |
| 4958 | !ext4_inode_is_fast_symlink(inode))) { |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 4959 | /* Validate block references which are part of inode */ |
Thiemo Nagel | fe2c819 | 2009-03-31 08:36:10 -0400 | [diff] [blame] | 4960 | ret = ext4_check_inode_blockref(inode); |
| 4961 | } |
Theodore Ts'o | 567f3e9 | 2009-11-14 08:19:05 -0500 | [diff] [blame] | 4962 | if (ret) |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 4963 | goto bad_inode; |
Aneesh Kumar K.V | 7a262f7 | 2009-03-27 16:39:58 -0400 | [diff] [blame] | 4964 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4965 | if (S_ISREG(inode->i_mode)) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4966 | inode->i_op = &ext4_file_inode_operations; |
| 4967 | inode->i_fop = &ext4_file_operations; |
| 4968 | ext4_set_aops(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4969 | } else if (S_ISDIR(inode->i_mode)) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4970 | inode->i_op = &ext4_dir_inode_operations; |
| 4971 | inode->i_fop = &ext4_dir_operations; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4972 | } else if (S_ISLNK(inode->i_mode)) { |
Duane Griffin | e83c139 | 2008-12-19 20:47:15 +0000 | [diff] [blame] | 4973 | if (ext4_inode_is_fast_symlink(inode)) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4974 | inode->i_op = &ext4_fast_symlink_inode_operations; |
Duane Griffin | e83c139 | 2008-12-19 20:47:15 +0000 | [diff] [blame] | 4975 | nd_terminate_link(ei->i_data, inode->i_size, |
| 4976 | sizeof(ei->i_data) - 1); |
| 4977 | } else { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4978 | inode->i_op = &ext4_symlink_inode_operations; |
| 4979 | ext4_set_aops(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4980 | } |
Theodore Ts'o | 563bdd6 | 2009-03-26 00:06:19 -0400 | [diff] [blame] | 4981 | } else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) || |
| 4982 | S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4983 | inode->i_op = &ext4_special_inode_operations; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4984 | if (raw_inode->i_block[0]) |
| 4985 | init_special_inode(inode, inode->i_mode, |
| 4986 | old_decode_dev(le32_to_cpu(raw_inode->i_block[0]))); |
| 4987 | else |
| 4988 | init_special_inode(inode, inode->i_mode, |
| 4989 | new_decode_dev(le32_to_cpu(raw_inode->i_block[1]))); |
Theodore Ts'o | 563bdd6 | 2009-03-26 00:06:19 -0400 | [diff] [blame] | 4990 | } else { |
Theodore Ts'o | 563bdd6 | 2009-03-26 00:06:19 -0400 | [diff] [blame] | 4991 | ret = -EIO; |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 4992 | ext4_error(inode->i_sb, "bogus i_mode (%o) for inode=%lu", |
Theodore Ts'o | 563bdd6 | 2009-03-26 00:06:19 -0400 | [diff] [blame] | 4993 | inode->i_mode, inode->i_ino); |
| 4994 | goto bad_inode; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 4995 | } |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 4996 | brelse(iloc.bh); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 4997 | ext4_set_inode_flags(inode); |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 4998 | unlock_new_inode(inode); |
| 4999 | return inode; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5000 | |
| 5001 | bad_inode: |
Theodore Ts'o | 567f3e9 | 2009-11-14 08:19:05 -0500 | [diff] [blame] | 5002 | brelse(iloc.bh); |
David Howells | 1d1fe1e | 2008-02-07 00:15:37 -0800 | [diff] [blame] | 5003 | iget_failed(inode); |
| 5004 | return ERR_PTR(ret); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5005 | } |
| 5006 | |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 5007 | static int ext4_inode_blocks_set(handle_t *handle, |
| 5008 | struct ext4_inode *raw_inode, |
| 5009 | struct ext4_inode_info *ei) |
| 5010 | { |
| 5011 | struct inode *inode = &(ei->vfs_inode); |
| 5012 | u64 i_blocks = inode->i_blocks; |
| 5013 | struct super_block *sb = inode->i_sb; |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 5014 | |
| 5015 | if (i_blocks <= ~0U) { |
| 5016 | /* |
| 5017 | * i_blocks can be represnted in a 32 bit variable |
| 5018 | * as multiple of 512 bytes |
| 5019 | */ |
Aneesh Kumar K.V | 8180a56 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 5020 | raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 5021 | raw_inode->i_blocks_high = 0; |
Aneesh Kumar K.V | 8180a56 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 5022 | ei->i_flags &= ~EXT4_HUGE_FILE_FL; |
Theodore Ts'o | f287a1a | 2008-10-16 22:50:48 -0400 | [diff] [blame] | 5023 | return 0; |
| 5024 | } |
| 5025 | if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) |
| 5026 | return -EFBIG; |
| 5027 | |
| 5028 | if (i_blocks <= 0xffffffffffffULL) { |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 5029 | /* |
| 5030 | * i_blocks can be represented in a 48 bit variable |
| 5031 | * as multiple of 512 bytes |
| 5032 | */ |
Aneesh Kumar K.V | 8180a56 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 5033 | raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 5034 | raw_inode->i_blocks_high = cpu_to_le16(i_blocks >> 32); |
Aneesh Kumar K.V | 8180a56 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 5035 | ei->i_flags &= ~EXT4_HUGE_FILE_FL; |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 5036 | } else { |
Aneesh Kumar K.V | 8180a56 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 5037 | ei->i_flags |= EXT4_HUGE_FILE_FL; |
| 5038 | /* i_block is stored in file system block size */ |
| 5039 | i_blocks = i_blocks >> (inode->i_blkbits - 9); |
| 5040 | raw_inode->i_blocks_lo = cpu_to_le32(i_blocks); |
| 5041 | 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] | 5042 | } |
Theodore Ts'o | f287a1a | 2008-10-16 22:50:48 -0400 | [diff] [blame] | 5043 | return 0; |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 5044 | } |
| 5045 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5046 | /* |
| 5047 | * Post the struct inode info into an on-disk inode location in the |
| 5048 | * buffer-cache. This gobbles the caller's reference to the |
| 5049 | * buffer_head in the inode location struct. |
| 5050 | * |
| 5051 | * The caller must have write access to iloc->bh. |
| 5052 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5053 | static int ext4_do_update_inode(handle_t *handle, |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5054 | struct inode *inode, |
Frank Mayhar | 830156c | 2009-09-29 10:07:47 -0400 | [diff] [blame] | 5055 | struct ext4_iloc *iloc) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5056 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5057 | struct ext4_inode *raw_inode = ext4_raw_inode(iloc); |
| 5058 | struct ext4_inode_info *ei = EXT4_I(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5059 | struct buffer_head *bh = iloc->bh; |
| 5060 | int err = 0, rc, block; |
| 5061 | |
| 5062 | /* For fields not not tracking in the in-memory inode, |
| 5063 | * initialise them to zero for new inodes. */ |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 5064 | if (ext4_test_inode_state(inode, EXT4_STATE_NEW)) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5065 | memset(raw_inode, 0, EXT4_SB(inode->i_sb)->s_inode_size); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5066 | |
Jan Kara | ff9ddf7 | 2007-07-18 09:24:20 -0400 | [diff] [blame] | 5067 | ext4_get_inode_flags(ei); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5068 | raw_inode->i_mode = cpu_to_le16(inode->i_mode); |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 5069 | if (!(test_opt(inode->i_sb, NO_UID32))) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5070 | raw_inode->i_uid_low = cpu_to_le16(low_16_bits(inode->i_uid)); |
| 5071 | raw_inode->i_gid_low = cpu_to_le16(low_16_bits(inode->i_gid)); |
| 5072 | /* |
| 5073 | * Fix up interoperability with old kernels. Otherwise, old inodes get |
| 5074 | * re-used with the upper 16 bits of the uid/gid intact |
| 5075 | */ |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 5076 | if (!ei->i_dtime) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5077 | raw_inode->i_uid_high = |
| 5078 | cpu_to_le16(high_16_bits(inode->i_uid)); |
| 5079 | raw_inode->i_gid_high = |
| 5080 | cpu_to_le16(high_16_bits(inode->i_gid)); |
| 5081 | } else { |
| 5082 | raw_inode->i_uid_high = 0; |
| 5083 | raw_inode->i_gid_high = 0; |
| 5084 | } |
| 5085 | } else { |
| 5086 | raw_inode->i_uid_low = |
| 5087 | cpu_to_le16(fs_high2lowuid(inode->i_uid)); |
| 5088 | raw_inode->i_gid_low = |
| 5089 | cpu_to_le16(fs_high2lowgid(inode->i_gid)); |
| 5090 | raw_inode->i_uid_high = 0; |
| 5091 | raw_inode->i_gid_high = 0; |
| 5092 | } |
| 5093 | raw_inode->i_links_count = cpu_to_le16(inode->i_nlink); |
Kalpak Shah | ef7f383 | 2007-07-18 09:15:20 -0400 | [diff] [blame] | 5094 | |
| 5095 | EXT4_INODE_SET_XTIME(i_ctime, inode, raw_inode); |
| 5096 | EXT4_INODE_SET_XTIME(i_mtime, inode, raw_inode); |
| 5097 | EXT4_INODE_SET_XTIME(i_atime, inode, raw_inode); |
| 5098 | EXT4_EINODE_SET_XTIME(i_crtime, ei, raw_inode); |
| 5099 | |
Aneesh Kumar K.V | 0fc1b45 | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 5100 | if (ext4_inode_blocks_set(handle, raw_inode, ei)) |
| 5101 | goto out_brelse; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5102 | raw_inode->i_dtime = cpu_to_le32(ei->i_dtime); |
Theodore Ts'o | 1b9c12f | 2009-09-17 08:32:22 -0400 | [diff] [blame] | 5103 | raw_inode->i_flags = cpu_to_le32(ei->i_flags); |
Mingming Cao | 9b8f1f0 | 2006-10-11 01:21:13 -0700 | [diff] [blame] | 5104 | if (EXT4_SB(inode->i_sb)->s_es->s_creator_os != |
| 5105 | cpu_to_le32(EXT4_OS_HURD)) |
Badari Pulavarty | a1ddeb7 | 2006-10-11 01:21:09 -0700 | [diff] [blame] | 5106 | raw_inode->i_file_acl_high = |
| 5107 | cpu_to_le16(ei->i_file_acl >> 32); |
Aneesh Kumar K.V | 7973c0c | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 5108 | 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] | 5109 | ext4_isize_set(raw_inode, ei->i_disksize); |
| 5110 | if (ei->i_disksize > 0x7fffffffULL) { |
| 5111 | struct super_block *sb = inode->i_sb; |
| 5112 | if (!EXT4_HAS_RO_COMPAT_FEATURE(sb, |
| 5113 | EXT4_FEATURE_RO_COMPAT_LARGE_FILE) || |
| 5114 | EXT4_SB(sb)->s_es->s_rev_level == |
| 5115 | cpu_to_le32(EXT4_GOOD_OLD_REV)) { |
| 5116 | /* If this is the first large file |
| 5117 | * created, add a flag to the superblock. |
| 5118 | */ |
| 5119 | err = ext4_journal_get_write_access(handle, |
| 5120 | EXT4_SB(sb)->s_sbh); |
| 5121 | if (err) |
| 5122 | goto out_brelse; |
| 5123 | ext4_update_dynamic_rev(sb); |
| 5124 | EXT4_SET_RO_COMPAT_FEATURE(sb, |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5125 | EXT4_FEATURE_RO_COMPAT_LARGE_FILE); |
Aneesh Kumar K.V | a48380f | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 5126 | sb->s_dirt = 1; |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 5127 | ext4_handle_sync(handle); |
Curt Wohlgemuth | 73b50c1 | 2010-02-16 15:06:29 -0500 | [diff] [blame] | 5128 | err = ext4_handle_dirty_metadata(handle, NULL, |
Aneesh Kumar K.V | a48380f | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 5129 | EXT4_SB(sb)->s_sbh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5130 | } |
| 5131 | } |
| 5132 | raw_inode->i_generation = cpu_to_le32(inode->i_generation); |
| 5133 | if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { |
| 5134 | if (old_valid_dev(inode->i_rdev)) { |
| 5135 | raw_inode->i_block[0] = |
| 5136 | cpu_to_le32(old_encode_dev(inode->i_rdev)); |
| 5137 | raw_inode->i_block[1] = 0; |
| 5138 | } else { |
| 5139 | raw_inode->i_block[0] = 0; |
| 5140 | raw_inode->i_block[1] = |
| 5141 | cpu_to_le32(new_encode_dev(inode->i_rdev)); |
| 5142 | raw_inode->i_block[2] = 0; |
| 5143 | } |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 5144 | } else |
| 5145 | for (block = 0; block < EXT4_N_BLOCKS; block++) |
| 5146 | raw_inode->i_block[block] = ei->i_data[block]; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5147 | |
Jean Noel Cordenner | 25ec56b | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 5148 | raw_inode->i_disk_version = cpu_to_le32(inode->i_version); |
| 5149 | if (ei->i_extra_isize) { |
| 5150 | if (EXT4_FITS_IN_INODE(raw_inode, ei, i_version_hi)) |
| 5151 | raw_inode->i_version_hi = |
| 5152 | cpu_to_le32(inode->i_version >> 32); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5153 | 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] | 5154 | } |
| 5155 | |
Frank Mayhar | 830156c | 2009-09-29 10:07:47 -0400 | [diff] [blame] | 5156 | BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); |
Curt Wohlgemuth | 73b50c1 | 2010-02-16 15:06:29 -0500 | [diff] [blame] | 5157 | rc = ext4_handle_dirty_metadata(handle, NULL, bh); |
Frank Mayhar | 830156c | 2009-09-29 10:07:47 -0400 | [diff] [blame] | 5158 | if (!err) |
| 5159 | err = rc; |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 5160 | ext4_clear_inode_state(inode, EXT4_STATE_NEW); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5161 | |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 5162 | ext4_update_inode_fsync_trans(handle, inode, 0); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5163 | out_brelse: |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 5164 | brelse(bh); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5165 | ext4_std_error(inode->i_sb, err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5166 | return err; |
| 5167 | } |
| 5168 | |
| 5169 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5170 | * ext4_write_inode() |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5171 | * |
| 5172 | * We are called from a few places: |
| 5173 | * |
| 5174 | * - Within generic_file_write() for O_SYNC files. |
| 5175 | * Here, there will be no transaction running. We wait for any running |
| 5176 | * trasnaction to commit. |
| 5177 | * |
| 5178 | * - Within sys_sync(), kupdate and such. |
| 5179 | * We wait on commit, if tol to. |
| 5180 | * |
| 5181 | * - Within prune_icache() (PF_MEMALLOC == true) |
| 5182 | * Here we simply return. We can't afford to block kswapd on the |
| 5183 | * journal commit. |
| 5184 | * |
| 5185 | * In all cases it is actually safe for us to return without doing anything, |
| 5186 | * because the inode has been copied into a raw inode buffer in |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5187 | * 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] | 5188 | * knfsd. |
| 5189 | * |
| 5190 | * Note that we are absolutely dependent upon all inode dirtiers doing the |
| 5191 | * right thing: they *must* call mark_inode_dirty() after dirtying info in |
| 5192 | * which we are interested. |
| 5193 | * |
| 5194 | * It would be a bug for them to not do this. The code: |
| 5195 | * |
| 5196 | * mark_inode_dirty(inode) |
| 5197 | * stuff(); |
| 5198 | * inode->i_size = expr; |
| 5199 | * |
| 5200 | * is in error because a kswapd-driven write_inode() could occur while |
| 5201 | * `stuff()' is running, and the new i_size will be lost. Plus the inode |
| 5202 | * will no longer be on the superblock's dirty inode list. |
| 5203 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5204 | int ext4_write_inode(struct inode *inode, int wait) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5205 | { |
Frank Mayhar | 91ac6f4 | 2009-09-09 22:33:47 -0400 | [diff] [blame] | 5206 | int err; |
| 5207 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5208 | if (current->flags & PF_MEMALLOC) |
| 5209 | return 0; |
| 5210 | |
Frank Mayhar | 91ac6f4 | 2009-09-09 22:33:47 -0400 | [diff] [blame] | 5211 | if (EXT4_SB(inode->i_sb)->s_journal) { |
| 5212 | if (ext4_journal_current_handle()) { |
| 5213 | jbd_debug(1, "called recursively, non-PF_MEMALLOC!\n"); |
| 5214 | dump_stack(); |
| 5215 | return -EIO; |
| 5216 | } |
| 5217 | |
| 5218 | if (!wait) |
| 5219 | return 0; |
| 5220 | |
| 5221 | err = ext4_force_commit(inode->i_sb); |
| 5222 | } else { |
| 5223 | struct ext4_iloc iloc; |
| 5224 | |
| 5225 | err = ext4_get_inode_loc(inode, &iloc); |
| 5226 | if (err) |
| 5227 | return err; |
Frank Mayhar | 830156c | 2009-09-29 10:07:47 -0400 | [diff] [blame] | 5228 | if (wait) |
| 5229 | sync_dirty_buffer(iloc.bh); |
| 5230 | if (buffer_req(iloc.bh) && !buffer_uptodate(iloc.bh)) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 5231 | ext4_error(inode->i_sb, "IO error syncing inode, " |
| 5232 | "inode=%lu, block=%llu", inode->i_ino, |
Frank Mayhar | 830156c | 2009-09-29 10:07:47 -0400 | [diff] [blame] | 5233 | (unsigned long long)iloc.bh->b_blocknr); |
| 5234 | err = -EIO; |
| 5235 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5236 | } |
Frank Mayhar | 91ac6f4 | 2009-09-09 22:33:47 -0400 | [diff] [blame] | 5237 | return err; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5238 | } |
| 5239 | |
| 5240 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5241 | * ext4_setattr() |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5242 | * |
| 5243 | * Called from notify_change. |
| 5244 | * |
| 5245 | * We want to trap VFS attempts to truncate the file as soon as |
| 5246 | * possible. In particular, we want to make sure that when the VFS |
| 5247 | * shrinks i_size, we put the inode on the orphan list and modify |
| 5248 | * i_disksize immediately, so that during the subsequent flushing of |
| 5249 | * dirty pages and freeing of disk blocks, we can guarantee that any |
| 5250 | * commit will leave the blocks being flushed in an unused state on |
| 5251 | * disk. (On recovery, the inode will get truncated and the blocks will |
| 5252 | * be freed, so we have a strong guarantee that no future commit will |
| 5253 | * leave these blocks visible to the user.) |
| 5254 | * |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5255 | * Another thing we have to assure is that if we are in ordered mode |
| 5256 | * and inode is still attached to the committing transaction, we must |
| 5257 | * we start writeout of all the dirty pages which are being truncated. |
| 5258 | * This way we are sure that all the data written in the previous |
| 5259 | * transaction are already on disk (truncate waits for pages under |
| 5260 | * writeback). |
| 5261 | * |
| 5262 | * Called with inode->i_mutex down. |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5263 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5264 | int ext4_setattr(struct dentry *dentry, struct iattr *attr) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5265 | { |
| 5266 | struct inode *inode = dentry->d_inode; |
| 5267 | int error, rc = 0; |
| 5268 | const unsigned int ia_valid = attr->ia_valid; |
| 5269 | |
| 5270 | error = inode_change_ok(inode, attr); |
| 5271 | if (error) |
| 5272 | return error; |
| 5273 | |
| 5274 | if ((ia_valid & ATTR_UID && attr->ia_uid != inode->i_uid) || |
| 5275 | (ia_valid & ATTR_GID && attr->ia_gid != inode->i_gid)) { |
| 5276 | handle_t *handle; |
| 5277 | |
| 5278 | /* (user+group)*(old+new) structure, inode write (sb, |
| 5279 | * inode block, ? - but truncate inode update has it) */ |
Dmitry Monakhov | 5aca07e | 2009-12-08 22:42:15 -0500 | [diff] [blame] | 5280 | handle = ext4_journal_start(inode, (EXT4_MAXQUOTAS_INIT_BLOCKS(inode->i_sb)+ |
Dmitry Monakhov | 194074a | 2009-12-08 22:42:28 -0500 | [diff] [blame] | 5281 | EXT4_MAXQUOTAS_DEL_BLOCKS(inode->i_sb))+3); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5282 | if (IS_ERR(handle)) { |
| 5283 | error = PTR_ERR(handle); |
| 5284 | goto err_out; |
| 5285 | } |
Jan Kara | a269eb1 | 2009-01-26 17:04:39 +0100 | [diff] [blame] | 5286 | error = vfs_dq_transfer(inode, attr) ? -EDQUOT : 0; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5287 | if (error) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5288 | ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5289 | return error; |
| 5290 | } |
| 5291 | /* Update corresponding info in inode so that everything is in |
| 5292 | * one transaction */ |
| 5293 | if (attr->ia_valid & ATTR_UID) |
| 5294 | inode->i_uid = attr->ia_uid; |
| 5295 | if (attr->ia_valid & ATTR_GID) |
| 5296 | inode->i_gid = attr->ia_gid; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5297 | error = ext4_mark_inode_dirty(handle, inode); |
| 5298 | ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5299 | } |
| 5300 | |
Eric Sandeen | e2b4657 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 5301 | if (attr->ia_valid & ATTR_SIZE) { |
| 5302 | if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) { |
| 5303 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
| 5304 | |
| 5305 | if (attr->ia_size > sbi->s_bitmap_maxbytes) { |
| 5306 | error = -EFBIG; |
| 5307 | goto err_out; |
| 5308 | } |
| 5309 | } |
| 5310 | } |
| 5311 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5312 | if (S_ISREG(inode->i_mode) && |
Jiaying Zhang | c8d46e4 | 2010-02-24 09:52:53 -0500 | [diff] [blame] | 5313 | attr->ia_valid & ATTR_SIZE && |
| 5314 | (attr->ia_size < inode->i_size || |
| 5315 | (EXT4_I(inode)->i_flags & EXT4_EOFBLOCKS_FL))) { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5316 | handle_t *handle; |
| 5317 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5318 | handle = ext4_journal_start(inode, 3); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5319 | if (IS_ERR(handle)) { |
| 5320 | error = PTR_ERR(handle); |
| 5321 | goto err_out; |
| 5322 | } |
| 5323 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5324 | error = ext4_orphan_add(handle, inode); |
| 5325 | EXT4_I(inode)->i_disksize = attr->ia_size; |
| 5326 | rc = ext4_mark_inode_dirty(handle, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5327 | if (!error) |
| 5328 | error = rc; |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5329 | ext4_journal_stop(handle); |
Jan Kara | 678aaf4 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5330 | |
| 5331 | if (ext4_should_order_data(inode)) { |
| 5332 | error = ext4_begin_ordered_truncate(inode, |
| 5333 | attr->ia_size); |
| 5334 | if (error) { |
| 5335 | /* Do as much error cleanup as possible */ |
| 5336 | handle = ext4_journal_start(inode, 3); |
| 5337 | if (IS_ERR(handle)) { |
| 5338 | ext4_orphan_del(NULL, inode); |
| 5339 | goto err_out; |
| 5340 | } |
| 5341 | ext4_orphan_del(handle, inode); |
| 5342 | ext4_journal_stop(handle); |
| 5343 | goto err_out; |
| 5344 | } |
| 5345 | } |
Jiaying Zhang | c8d46e4 | 2010-02-24 09:52:53 -0500 | [diff] [blame] | 5346 | /* ext4_truncate will clear the flag */ |
| 5347 | if ((EXT4_I(inode)->i_flags & EXT4_EOFBLOCKS_FL)) |
| 5348 | ext4_truncate(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5349 | } |
| 5350 | |
| 5351 | rc = inode_setattr(inode, attr); |
| 5352 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5353 | /* If inode_setattr's call to ext4_truncate failed to get a |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5354 | * transaction handle at all, we need to clean up the in-core |
| 5355 | * orphan list manually. */ |
| 5356 | if (inode->i_nlink) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5357 | ext4_orphan_del(NULL, inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5358 | |
| 5359 | if (!rc && (ia_valid & ATTR_MODE)) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5360 | rc = ext4_acl_chmod(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5361 | |
| 5362 | err_out: |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5363 | ext4_std_error(inode->i_sb, error); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5364 | if (!error) |
| 5365 | error = rc; |
| 5366 | return error; |
| 5367 | } |
| 5368 | |
Mingming Cao | 3e3398a | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5369 | int ext4_getattr(struct vfsmount *mnt, struct dentry *dentry, |
| 5370 | struct kstat *stat) |
| 5371 | { |
| 5372 | struct inode *inode; |
| 5373 | unsigned long delalloc_blocks; |
| 5374 | |
| 5375 | inode = dentry->d_inode; |
| 5376 | generic_fillattr(inode, stat); |
| 5377 | |
| 5378 | /* |
| 5379 | * We can't update i_blocks if the block allocation is delayed |
| 5380 | * otherwise in the case of system crash before the real block |
| 5381 | * allocation is done, we will have i_blocks inconsistent with |
| 5382 | * on-disk file blocks. |
| 5383 | * We always keep i_blocks updated together with real |
| 5384 | * allocation. But to not confuse with user, stat |
| 5385 | * will return the blocks that include the delayed allocation |
| 5386 | * blocks for this file. |
| 5387 | */ |
| 5388 | spin_lock(&EXT4_I(inode)->i_block_reservation_lock); |
| 5389 | delalloc_blocks = EXT4_I(inode)->i_reserved_data_blocks; |
| 5390 | spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); |
| 5391 | |
| 5392 | stat->blocks += (delalloc_blocks << inode->i_sb->s_blocksize_bits)>>9; |
| 5393 | return 0; |
| 5394 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5395 | |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5396 | static int ext4_indirect_trans_blocks(struct inode *inode, int nrblocks, |
| 5397 | int chunk) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5398 | { |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5399 | int indirects; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5400 | |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5401 | /* if nrblocks are contiguous */ |
| 5402 | if (chunk) { |
| 5403 | /* |
| 5404 | * With N contiguous data blocks, it need at most |
| 5405 | * N/EXT4_ADDR_PER_BLOCK(inode->i_sb) indirect blocks |
| 5406 | * 2 dindirect blocks |
| 5407 | * 1 tindirect block |
| 5408 | */ |
| 5409 | indirects = nrblocks / EXT4_ADDR_PER_BLOCK(inode->i_sb); |
| 5410 | return indirects + 3; |
| 5411 | } |
| 5412 | /* |
| 5413 | * if nrblocks are not contiguous, worse case, each block touch |
| 5414 | * a indirect block, and each indirect block touch a double indirect |
| 5415 | * block, plus a triple indirect block |
| 5416 | */ |
| 5417 | indirects = nrblocks * 2 + 1; |
| 5418 | return indirects; |
| 5419 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 5420 | |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5421 | static int ext4_index_trans_blocks(struct inode *inode, int nrblocks, int chunk) |
| 5422 | { |
| 5423 | if (!(EXT4_I(inode)->i_flags & EXT4_EXTENTS_FL)) |
Theodore Ts'o | ac51d83 | 2008-11-06 16:49:36 -0500 | [diff] [blame] | 5424 | return ext4_indirect_trans_blocks(inode, nrblocks, chunk); |
| 5425 | return ext4_ext_index_trans_blocks(inode, nrblocks, chunk); |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5426 | } |
Theodore Ts'o | ac51d83 | 2008-11-06 16:49:36 -0500 | [diff] [blame] | 5427 | |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5428 | /* |
| 5429 | * Account for index blocks, block groups bitmaps and block group |
| 5430 | * descriptor blocks if modify datablocks and index blocks |
| 5431 | * worse case, the indexs blocks spread over different block groups |
| 5432 | * |
| 5433 | * If datablocks are discontiguous, they are possible to spread over |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 5434 | * different block groups too. If they are contiuguous, with flexbg, |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5435 | * they could still across block group boundary. |
| 5436 | * |
| 5437 | * Also account for superblock, inode, quota and xattr blocks |
| 5438 | */ |
| 5439 | int ext4_meta_trans_blocks(struct inode *inode, int nrblocks, int chunk) |
| 5440 | { |
Theodore Ts'o | 8df9675 | 2009-05-01 08:50:38 -0400 | [diff] [blame] | 5441 | ext4_group_t groups, ngroups = ext4_get_groups_count(inode->i_sb); |
| 5442 | int gdpblocks; |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5443 | int idxblocks; |
| 5444 | int ret = 0; |
| 5445 | |
| 5446 | /* |
| 5447 | * How many index blocks need to touch to modify nrblocks? |
| 5448 | * The "Chunk" flag indicating whether the nrblocks is |
| 5449 | * physically contiguous on disk |
| 5450 | * |
| 5451 | * For Direct IO and fallocate, they calls get_block to allocate |
| 5452 | * one single extent at a time, so they could set the "Chunk" flag |
| 5453 | */ |
| 5454 | idxblocks = ext4_index_trans_blocks(inode, nrblocks, chunk); |
| 5455 | |
| 5456 | ret = idxblocks; |
| 5457 | |
| 5458 | /* |
| 5459 | * Now let's see how many group bitmaps and group descriptors need |
| 5460 | * to account |
| 5461 | */ |
| 5462 | groups = idxblocks; |
| 5463 | if (chunk) |
| 5464 | groups += 1; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5465 | else |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5466 | groups += nrblocks; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5467 | |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5468 | gdpblocks = groups; |
Theodore Ts'o | 8df9675 | 2009-05-01 08:50:38 -0400 | [diff] [blame] | 5469 | if (groups > ngroups) |
| 5470 | groups = ngroups; |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5471 | if (groups > EXT4_SB(inode->i_sb)->s_gdb_count) |
| 5472 | gdpblocks = EXT4_SB(inode->i_sb)->s_gdb_count; |
| 5473 | |
| 5474 | /* bitmaps and block group descriptor blocks */ |
| 5475 | ret += groups + gdpblocks; |
| 5476 | |
| 5477 | /* Blocks for super block, inode, quota and xattr blocks */ |
| 5478 | ret += EXT4_META_TRANS_BLOCKS(inode->i_sb); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5479 | |
| 5480 | return ret; |
| 5481 | } |
| 5482 | |
| 5483 | /* |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5484 | * Calulate the total number of credits to reserve to fit |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 5485 | * the modification of a single pages into a single transaction, |
| 5486 | * which may include multiple chunks of block allocations. |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5487 | * |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 5488 | * This could be called via ext4_write_begin() |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5489 | * |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 5490 | * We need to consider the worse case, when |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5491 | * one new block per extent. |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5492 | */ |
| 5493 | int ext4_writepage_trans_blocks(struct inode *inode) |
| 5494 | { |
| 5495 | int bpp = ext4_journal_blocks_per_page(inode); |
| 5496 | int ret; |
| 5497 | |
| 5498 | ret = ext4_meta_trans_blocks(inode, bpp, 0); |
| 5499 | |
| 5500 | /* Account for data blocks for journalled mode */ |
| 5501 | if (ext4_should_journal_data(inode)) |
| 5502 | ret += bpp; |
| 5503 | return ret; |
| 5504 | } |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 5505 | |
| 5506 | /* |
| 5507 | * Calculate the journal credits for a chunk of data modification. |
| 5508 | * |
| 5509 | * This is called from DIO, fallocate or whoever calling |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 5510 | * ext4_get_blocks() to map/allocate a chunk of contiguous disk blocks. |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 5511 | * |
| 5512 | * journal buffers for data blocks are not included here, as DIO |
| 5513 | * and fallocate do no need to journal data buffers. |
| 5514 | */ |
| 5515 | int ext4_chunk_trans_blocks(struct inode *inode, int nrblocks) |
| 5516 | { |
| 5517 | return ext4_meta_trans_blocks(inode, nrblocks, 1); |
| 5518 | } |
| 5519 | |
Mingming Cao | a02908f | 2008-08-19 22:16:07 -0400 | [diff] [blame] | 5520 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5521 | * The caller must have previously called ext4_reserve_inode_write(). |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5522 | * Give this, we know that the caller already has write access to iloc->bh. |
| 5523 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5524 | int ext4_mark_iloc_dirty(handle_t *handle, |
Theodore Ts'o | de9a55b | 2009-06-14 17:45:34 -0400 | [diff] [blame] | 5525 | struct inode *inode, struct ext4_iloc *iloc) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5526 | { |
| 5527 | int err = 0; |
| 5528 | |
Jean Noel Cordenner | 25ec56b | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 5529 | if (test_opt(inode->i_sb, I_VERSION)) |
| 5530 | inode_inc_iversion(inode); |
| 5531 | |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5532 | /* the do_update_inode consumes one bh->b_count */ |
| 5533 | get_bh(iloc->bh); |
| 5534 | |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 5535 | /* ext4_do_update_inode() does jbd2_journal_dirty_metadata */ |
Frank Mayhar | 830156c | 2009-09-29 10:07:47 -0400 | [diff] [blame] | 5536 | err = ext4_do_update_inode(handle, inode, iloc); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5537 | put_bh(iloc->bh); |
| 5538 | return err; |
| 5539 | } |
| 5540 | |
| 5541 | /* |
| 5542 | * On success, We end up with an outstanding reference count against |
| 5543 | * iloc->bh. This _must_ be cleaned up later. |
| 5544 | */ |
| 5545 | |
| 5546 | int |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5547 | ext4_reserve_inode_write(handle_t *handle, struct inode *inode, |
| 5548 | struct ext4_iloc *iloc) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5549 | { |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 5550 | int err; |
| 5551 | |
| 5552 | err = ext4_get_inode_loc(inode, iloc); |
| 5553 | if (!err) { |
| 5554 | BUFFER_TRACE(iloc->bh, "get_write_access"); |
| 5555 | err = ext4_journal_get_write_access(handle, iloc->bh); |
| 5556 | if (err) { |
| 5557 | brelse(iloc->bh); |
| 5558 | iloc->bh = NULL; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5559 | } |
| 5560 | } |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5561 | ext4_std_error(inode->i_sb, err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5562 | return err; |
| 5563 | } |
| 5564 | |
| 5565 | /* |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 5566 | * Expand an inode by new_extra_isize bytes. |
| 5567 | * Returns 0 on success or negative error number on failure. |
| 5568 | */ |
Aneesh Kumar K.V | 1d03ec9 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 5569 | static int ext4_expand_extra_isize(struct inode *inode, |
| 5570 | unsigned int new_extra_isize, |
| 5571 | struct ext4_iloc iloc, |
| 5572 | handle_t *handle) |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 5573 | { |
| 5574 | struct ext4_inode *raw_inode; |
| 5575 | struct ext4_xattr_ibody_header *header; |
| 5576 | struct ext4_xattr_entry *entry; |
| 5577 | |
| 5578 | if (EXT4_I(inode)->i_extra_isize >= new_extra_isize) |
| 5579 | return 0; |
| 5580 | |
| 5581 | raw_inode = ext4_raw_inode(&iloc); |
| 5582 | |
| 5583 | header = IHDR(inode, raw_inode); |
| 5584 | entry = IFIRST(header); |
| 5585 | |
| 5586 | /* No extended attributes present */ |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 5587 | if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR) || |
| 5588 | header->h_magic != cpu_to_le32(EXT4_XATTR_MAGIC)) { |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 5589 | memset((void *)raw_inode + EXT4_GOOD_OLD_INODE_SIZE, 0, |
| 5590 | new_extra_isize); |
| 5591 | EXT4_I(inode)->i_extra_isize = new_extra_isize; |
| 5592 | return 0; |
| 5593 | } |
| 5594 | |
| 5595 | /* try to expand with EAs present */ |
| 5596 | return ext4_expand_extra_isize_ea(inode, new_extra_isize, |
| 5597 | raw_inode, handle); |
| 5598 | } |
| 5599 | |
| 5600 | /* |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5601 | * What we do here is to mark the in-core inode as clean with respect to inode |
| 5602 | * dirtiness (it may still be data-dirty). |
| 5603 | * This means that the in-core inode may be reaped by prune_icache |
| 5604 | * without having to perform any I/O. This is a very good thing, |
| 5605 | * because *any* task may call prune_icache - even ones which |
| 5606 | * have a transaction open against a different journal. |
| 5607 | * |
| 5608 | * Is this cheating? Not really. Sure, we haven't written the |
| 5609 | * inode out, but prune_icache isn't a user-visible syncing function. |
| 5610 | * Whenever the user wants stuff synced (sys_sync, sys_msync, sys_fsync) |
| 5611 | * we start and wait on commits. |
| 5612 | * |
| 5613 | * Is this efficient/effective? Well, we're being nice to the system |
| 5614 | * by cleaning up our inodes proactively so they can be reaped |
| 5615 | * without I/O. But we are potentially leaving up to five seconds' |
| 5616 | * worth of inodes floating about which prune_icache wants us to |
| 5617 | * write out. One way to fix that would be to get prune_icache() |
| 5618 | * to do a write_super() to free up some memory. It has the desired |
| 5619 | * effect. |
| 5620 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5621 | int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5622 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5623 | struct ext4_iloc iloc; |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 5624 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
| 5625 | static unsigned int mnt_count; |
| 5626 | int err, ret; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5627 | |
| 5628 | might_sleep(); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5629 | err = ext4_reserve_inode_write(handle, inode, &iloc); |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 5630 | if (ext4_handle_valid(handle) && |
| 5631 | EXT4_I(inode)->i_extra_isize < sbi->s_want_extra_isize && |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 5632 | !ext4_test_inode_state(inode, EXT4_STATE_NO_EXPAND)) { |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 5633 | /* |
| 5634 | * We need extra buffer credits since we may write into EA block |
| 5635 | * with this same handle. If journal_extend fails, then it will |
| 5636 | * only result in a minor loss of functionality for that inode. |
| 5637 | * If this is felt to be critical, then e2fsck should be run to |
| 5638 | * force a large enough s_min_extra_isize. |
| 5639 | */ |
| 5640 | if ((jbd2_journal_extend(handle, |
| 5641 | EXT4_DATA_TRANS_BLOCKS(inode->i_sb))) == 0) { |
| 5642 | ret = ext4_expand_extra_isize(inode, |
| 5643 | sbi->s_want_extra_isize, |
| 5644 | iloc, handle); |
| 5645 | if (ret) { |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 5646 | ext4_set_inode_state(inode, |
| 5647 | EXT4_STATE_NO_EXPAND); |
Aneesh Kumar K.V | c1bddad | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 5648 | if (mnt_count != |
| 5649 | le16_to_cpu(sbi->s_es->s_mnt_count)) { |
Eric Sandeen | 12062dd | 2010-02-15 14:19:27 -0500 | [diff] [blame] | 5650 | ext4_warning(inode->i_sb, |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 5651 | "Unable to expand inode %lu. Delete" |
| 5652 | " some EAs or run e2fsck.", |
| 5653 | inode->i_ino); |
Aneesh Kumar K.V | c1bddad | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 5654 | mnt_count = |
| 5655 | le16_to_cpu(sbi->s_es->s_mnt_count); |
Kalpak Shah | 6dd4ee7 | 2007-07-18 09:19:57 -0400 | [diff] [blame] | 5656 | } |
| 5657 | } |
| 5658 | } |
| 5659 | } |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5660 | if (!err) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5661 | err = ext4_mark_iloc_dirty(handle, inode, &iloc); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5662 | return err; |
| 5663 | } |
| 5664 | |
| 5665 | /* |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5666 | * ext4_dirty_inode() is called from __mark_inode_dirty() |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5667 | * |
| 5668 | * We're really interested in the case where a file is being extended. |
| 5669 | * i_size has been changed by generic_commit_write() and we thus need |
| 5670 | * to include the updated inode in the current transaction. |
| 5671 | * |
Jan Kara | a269eb1 | 2009-01-26 17:04:39 +0100 | [diff] [blame] | 5672 | * Also, vfs_dq_alloc_block() will always dirty the inode when blocks |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5673 | * are allocated to the file. |
| 5674 | * |
| 5675 | * If the inode is marked synchronous, we don't honour that here - doing |
| 5676 | * so would cause a commit on atime updates, which we don't bother doing. |
| 5677 | * We handle synchronous inodes at the highest possible level. |
| 5678 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5679 | void ext4_dirty_inode(struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5680 | { |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5681 | handle_t *handle; |
| 5682 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5683 | handle = ext4_journal_start(inode, 2); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5684 | if (IS_ERR(handle)) |
| 5685 | goto out; |
Curt Wohlgemuth | f3dc272 | 2009-09-29 16:06:01 -0400 | [diff] [blame] | 5686 | |
Curt Wohlgemuth | f3dc272 | 2009-09-29 16:06:01 -0400 | [diff] [blame] | 5687 | ext4_mark_inode_dirty(handle, inode); |
| 5688 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5689 | ext4_journal_stop(handle); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5690 | out: |
| 5691 | return; |
| 5692 | } |
| 5693 | |
| 5694 | #if 0 |
| 5695 | /* |
| 5696 | * Bind an inode's backing buffer_head into this transaction, to prevent |
| 5697 | * it from being flushed to disk early. Unlike |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5698 | * ext4_reserve_inode_write, this leaves behind no bh reference and |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5699 | * returns no iloc structure, so the caller needs to repeat the iloc |
| 5700 | * lookup to mark the inode dirty later. |
| 5701 | */ |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5702 | static int ext4_pin_inode(handle_t *handle, struct inode *inode) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5703 | { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5704 | struct ext4_iloc iloc; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5705 | |
| 5706 | int err = 0; |
| 5707 | if (handle) { |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5708 | err = ext4_get_inode_loc(inode, &iloc); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5709 | if (!err) { |
| 5710 | BUFFER_TRACE(iloc.bh, "get_write_access"); |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 5711 | err = jbd2_journal_get_write_access(handle, iloc.bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5712 | if (!err) |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 5713 | err = ext4_handle_dirty_metadata(handle, |
Curt Wohlgemuth | 73b50c1 | 2010-02-16 15:06:29 -0500 | [diff] [blame] | 5714 | NULL, |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 5715 | iloc.bh); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5716 | brelse(iloc.bh); |
| 5717 | } |
| 5718 | } |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5719 | ext4_std_error(inode->i_sb, err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5720 | return err; |
| 5721 | } |
| 5722 | #endif |
| 5723 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5724 | int ext4_change_inode_journal_flag(struct inode *inode, int val) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5725 | { |
| 5726 | journal_t *journal; |
| 5727 | handle_t *handle; |
| 5728 | int err; |
| 5729 | |
| 5730 | /* |
| 5731 | * We have to be very careful here: changing a data block's |
| 5732 | * journaling status dynamically is dangerous. If we write a |
| 5733 | * data block to the journal, change the status and then delete |
| 5734 | * that block, we risk forgetting to revoke the old log record |
| 5735 | * from the journal and so a subsequent replay can corrupt data. |
| 5736 | * So, first we make sure that the journal is empty and that |
| 5737 | * nobody is changing anything. |
| 5738 | */ |
| 5739 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5740 | journal = EXT4_JOURNAL(inode); |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 5741 | if (!journal) |
| 5742 | return 0; |
Dave Hansen | d699594 | 2007-07-18 08:33:51 -0400 | [diff] [blame] | 5743 | if (is_journal_aborted(journal)) |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5744 | return -EROFS; |
| 5745 | |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 5746 | jbd2_journal_lock_updates(journal); |
| 5747 | jbd2_journal_flush(journal); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5748 | |
| 5749 | /* |
| 5750 | * OK, there are no updates running now, and all cached data is |
| 5751 | * synced to disk. We are now in a completely consistent state |
| 5752 | * which doesn't have anything in the journal, and we know that |
| 5753 | * no filesystem updates are running, so it is safe to modify |
| 5754 | * the inode's in-core data-journaling state flag now. |
| 5755 | */ |
| 5756 | |
| 5757 | if (val) |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5758 | EXT4_I(inode)->i_flags |= EXT4_JOURNAL_DATA_FL; |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5759 | else |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5760 | EXT4_I(inode)->i_flags &= ~EXT4_JOURNAL_DATA_FL; |
| 5761 | ext4_set_aops(inode); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5762 | |
Mingming Cao | dab291a | 2006-10-11 01:21:01 -0700 | [diff] [blame] | 5763 | jbd2_journal_unlock_updates(journal); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5764 | |
| 5765 | /* Finally we can mark the inode as dirty. */ |
| 5766 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5767 | handle = ext4_journal_start(inode, 1); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5768 | if (IS_ERR(handle)) |
| 5769 | return PTR_ERR(handle); |
| 5770 | |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5771 | err = ext4_mark_inode_dirty(handle, inode); |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 5772 | ext4_handle_sync(handle); |
Mingming Cao | 617ba13 | 2006-10-11 01:20:53 -0700 | [diff] [blame] | 5773 | ext4_journal_stop(handle); |
| 5774 | ext4_std_error(inode->i_sb, err); |
Dave Kleikamp | ac27a0e | 2006-10-11 01:20:50 -0700 | [diff] [blame] | 5775 | |
| 5776 | return err; |
| 5777 | } |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5778 | |
| 5779 | static int ext4_bh_unmapped(handle_t *handle, struct buffer_head *bh) |
| 5780 | { |
| 5781 | return !buffer_mapped(bh); |
| 5782 | } |
| 5783 | |
Nick Piggin | c2ec175 | 2009-03-31 15:23:21 -0700 | [diff] [blame] | 5784 | 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] | 5785 | { |
Nick Piggin | c2ec175 | 2009-03-31 15:23:21 -0700 | [diff] [blame] | 5786 | struct page *page = vmf->page; |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5787 | loff_t size; |
| 5788 | unsigned long len; |
| 5789 | int ret = -EINVAL; |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 5790 | void *fsdata; |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5791 | struct file *file = vma->vm_file; |
| 5792 | struct inode *inode = file->f_path.dentry->d_inode; |
| 5793 | struct address_space *mapping = inode->i_mapping; |
| 5794 | |
| 5795 | /* |
| 5796 | * Get i_alloc_sem to stop truncates messing with the inode. We cannot |
| 5797 | * get i_mutex because we are already holding mmap_sem. |
| 5798 | */ |
| 5799 | down_read(&inode->i_alloc_sem); |
| 5800 | size = i_size_read(inode); |
| 5801 | if (page->mapping != mapping || size <= page_offset(page) |
| 5802 | || !PageUptodate(page)) { |
| 5803 | /* page got truncated from under us? */ |
| 5804 | goto out_unlock; |
| 5805 | } |
| 5806 | ret = 0; |
| 5807 | if (PageMappedToDisk(page)) |
| 5808 | goto out_unlock; |
| 5809 | |
| 5810 | if (page->index == size >> PAGE_CACHE_SHIFT) |
| 5811 | len = size & ~PAGE_CACHE_MASK; |
| 5812 | else |
| 5813 | len = PAGE_CACHE_SIZE; |
| 5814 | |
Aneesh Kumar K.V | a827eaf | 2009-09-09 22:36:03 -0400 | [diff] [blame] | 5815 | lock_page(page); |
| 5816 | /* |
| 5817 | * return if we have all the buffers mapped. This avoid |
| 5818 | * the need to call write_begin/write_end which does a |
| 5819 | * journal_start/journal_stop which can block and take |
| 5820 | * long time |
| 5821 | */ |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5822 | if (page_has_buffers(page)) { |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5823 | 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] | 5824 | ext4_bh_unmapped)) { |
| 5825 | unlock_page(page); |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5826 | goto out_unlock; |
Aneesh Kumar K.V | a827eaf | 2009-09-09 22:36:03 -0400 | [diff] [blame] | 5827 | } |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5828 | } |
Aneesh Kumar K.V | a827eaf | 2009-09-09 22:36:03 -0400 | [diff] [blame] | 5829 | unlock_page(page); |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5830 | /* |
| 5831 | * OK, we need to fill the hole... Do write_begin write_end |
| 5832 | * to do block allocation/reservation.We are not holding |
| 5833 | * inode.i__mutex here. That allow * parallel write_begin, |
| 5834 | * write_end call. lock_page prevent this from happening |
| 5835 | * on the same page though |
| 5836 | */ |
| 5837 | ret = mapping->a_ops->write_begin(file, mapping, page_offset(page), |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 5838 | len, AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata); |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5839 | if (ret < 0) |
| 5840 | goto out_unlock; |
| 5841 | ret = mapping->a_ops->write_end(file, mapping, page_offset(page), |
Aneesh Kumar K.V | 79f0be8 | 2008-10-08 23:13:30 -0400 | [diff] [blame] | 5842 | len, len, page, fsdata); |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5843 | if (ret < 0) |
| 5844 | goto out_unlock; |
| 5845 | ret = 0; |
| 5846 | out_unlock: |
Nick Piggin | c2ec175 | 2009-03-31 15:23:21 -0700 | [diff] [blame] | 5847 | if (ret) |
| 5848 | ret = VM_FAULT_SIGBUS; |
Aneesh Kumar K.V | 2e9ee85 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 5849 | up_read(&inode->i_alloc_sem); |
| 5850 | return ret; |
| 5851 | } |