Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com |
| 3 | * Written by Alex Tomas <alex@clusterfs.com> |
| 4 | * |
| 5 | * Architecture independence: |
| 6 | * Copyright (c) 2005, Bull S.A. |
| 7 | * Written by Pierre Peiffer <pierre.peiffer@bull.net> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public Licens |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111- |
| 21 | */ |
| 22 | |
| 23 | /* |
| 24 | * Extents support for EXT4 |
| 25 | * |
| 26 | * TODO: |
| 27 | * - ext4*_error() should be used in some situations |
| 28 | * - analyze all BUG()/BUG_ON(), use -EIO where appropriate |
| 29 | * - smart tree reduction |
| 30 | */ |
| 31 | |
| 32 | #include <linux/module.h> |
| 33 | #include <linux/fs.h> |
| 34 | #include <linux/time.h> |
Mingming Cao | cd02ff0 | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 35 | #include <linux/jbd2.h> |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 36 | #include <linux/highuid.h> |
| 37 | #include <linux/pagemap.h> |
| 38 | #include <linux/quotaops.h> |
| 39 | #include <linux/string.h> |
| 40 | #include <linux/slab.h> |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 41 | #include <linux/falloc.h> |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 42 | #include <asm/uaccess.h> |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 43 | #include <linux/fiemap.h> |
Christoph Hellwig | 3dcf545 | 2008-04-29 18:13:32 -0400 | [diff] [blame] | 44 | #include "ext4_jbd2.h" |
| 45 | #include "ext4_extents.h" |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 46 | |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 47 | #include <trace/events/ext4.h> |
| 48 | |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 49 | static int ext4_split_extent(handle_t *handle, |
| 50 | struct inode *inode, |
| 51 | struct ext4_ext_path *path, |
| 52 | struct ext4_map_blocks *map, |
| 53 | int split_flag, |
| 54 | int flags); |
| 55 | |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 56 | static int ext4_ext_truncate_extend_restart(handle_t *handle, |
| 57 | struct inode *inode, |
| 58 | int needed) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 59 | { |
| 60 | int err; |
| 61 | |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 62 | if (!ext4_handle_valid(handle)) |
| 63 | return 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 64 | if (handle->h_buffer_credits > needed) |
Shen Feng | 9102e4f | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 65 | return 0; |
| 66 | err = ext4_journal_extend(handle, needed); |
Theodore Ts'o | 0123c93 | 2008-08-01 20:57:54 -0400 | [diff] [blame] | 67 | if (err <= 0) |
Shen Feng | 9102e4f | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 68 | return err; |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 69 | err = ext4_truncate_restart_trans(handle, inode, needed); |
Dmitry Monakhov | 0617b83 | 2010-05-17 01:00:00 -0400 | [diff] [blame] | 70 | if (err == 0) |
| 71 | err = -EAGAIN; |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 72 | |
| 73 | return err; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | /* |
| 77 | * could return: |
| 78 | * - EROFS |
| 79 | * - ENOMEM |
| 80 | */ |
| 81 | static int ext4_ext_get_access(handle_t *handle, struct inode *inode, |
| 82 | struct ext4_ext_path *path) |
| 83 | { |
| 84 | if (path->p_bh) { |
| 85 | /* path points to block */ |
| 86 | return ext4_journal_get_write_access(handle, path->p_bh); |
| 87 | } |
| 88 | /* path points to leaf/index in inode body */ |
| 89 | /* we use in-core data, no need to protect them */ |
| 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | /* |
| 94 | * could return: |
| 95 | * - EROFS |
| 96 | * - ENOMEM |
| 97 | * - EIO |
| 98 | */ |
| 99 | static int ext4_ext_dirty(handle_t *handle, struct inode *inode, |
| 100 | struct ext4_ext_path *path) |
| 101 | { |
| 102 | int err; |
| 103 | if (path->p_bh) { |
| 104 | /* path points to block */ |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 105 | err = ext4_handle_dirty_metadata(handle, inode, path->p_bh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 106 | } else { |
| 107 | /* path points to leaf/index in inode body */ |
| 108 | err = ext4_mark_inode_dirty(handle, inode); |
| 109 | } |
| 110 | return err; |
| 111 | } |
| 112 | |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 113 | static ext4_fsblk_t ext4_ext_find_goal(struct inode *inode, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 114 | struct ext4_ext_path *path, |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 115 | ext4_lblk_t block) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 116 | { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 117 | int depth; |
| 118 | |
| 119 | if (path) { |
| 120 | struct ext4_extent *ex; |
| 121 | depth = path->p_depth; |
| 122 | |
Kazuya Mio | ad4fb9c | 2011-01-10 12:12:28 -0500 | [diff] [blame] | 123 | /* |
| 124 | * Try to predict block placement assuming that we are |
| 125 | * filling in a file which will eventually be |
| 126 | * non-sparse --- i.e., in the case of libbfd writing |
| 127 | * an ELF object sections out-of-order but in a way |
| 128 | * the eventually results in a contiguous object or |
| 129 | * executable file, or some database extending a table |
| 130 | * space file. However, this is actually somewhat |
| 131 | * non-ideal if we are writing a sparse file such as |
| 132 | * qemu or KVM writing a raw image file that is going |
| 133 | * to stay fairly sparse, since it will end up |
| 134 | * fragmenting the file system's free space. Maybe we |
| 135 | * should have some hueristics or some way to allow |
| 136 | * userspace to pass a hint to file system, |
Tao Ma | b8d6568 | 2011-01-21 23:21:31 +0800 | [diff] [blame] | 137 | * especially if the latter case turns out to be |
Kazuya Mio | ad4fb9c | 2011-01-10 12:12:28 -0500 | [diff] [blame] | 138 | * common. |
| 139 | */ |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 140 | ex = path[depth].p_ext; |
Kazuya Mio | ad4fb9c | 2011-01-10 12:12:28 -0500 | [diff] [blame] | 141 | if (ex) { |
| 142 | ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex); |
| 143 | ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block); |
| 144 | |
| 145 | if (block > ext_block) |
| 146 | return ext_pblk + (block - ext_block); |
| 147 | else |
| 148 | return ext_pblk - (ext_block - block); |
| 149 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 150 | |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 151 | /* it looks like index is empty; |
| 152 | * try to find starting block from index itself */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 153 | if (path[depth].p_bh) |
| 154 | return path[depth].p_bh->b_blocknr; |
| 155 | } |
| 156 | |
| 157 | /* OK. use inode's group */ |
Eric Sandeen | f86186b | 2011-06-28 10:01:31 -0400 | [diff] [blame] | 158 | return ext4_inode_to_goal_block(inode); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Aneesh Kumar K.V | 654b490 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 161 | /* |
| 162 | * Allocation for a meta data block |
| 163 | */ |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 164 | static ext4_fsblk_t |
Aneesh Kumar K.V | 654b490 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 165 | ext4_ext_new_meta_block(handle_t *handle, struct inode *inode, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 166 | struct ext4_ext_path *path, |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 167 | struct ext4_extent *ex, int *err, unsigned int flags) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 168 | { |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 169 | ext4_fsblk_t goal, newblock; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 170 | |
| 171 | goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block)); |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 172 | newblock = ext4_new_meta_blocks(handle, inode, goal, flags, |
| 173 | NULL, err); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 174 | return newblock; |
| 175 | } |
| 176 | |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 177 | static inline int ext4_ext_space_block(struct inode *inode, int check) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 178 | { |
| 179 | int size; |
| 180 | |
| 181 | size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header)) |
| 182 | / sizeof(struct ext4_extent); |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 183 | if (!check) { |
Robert P. J. Day | bbf2f9f | 2007-02-17 19:20:16 +0100 | [diff] [blame] | 184 | #ifdef AGGRESSIVE_TEST |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 185 | if (size > 6) |
| 186 | size = 6; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 187 | #endif |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 188 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 189 | return size; |
| 190 | } |
| 191 | |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 192 | static inline int ext4_ext_space_block_idx(struct inode *inode, int check) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 193 | { |
| 194 | int size; |
| 195 | |
| 196 | size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header)) |
| 197 | / sizeof(struct ext4_extent_idx); |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 198 | if (!check) { |
Robert P. J. Day | bbf2f9f | 2007-02-17 19:20:16 +0100 | [diff] [blame] | 199 | #ifdef AGGRESSIVE_TEST |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 200 | if (size > 5) |
| 201 | size = 5; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 202 | #endif |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 203 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 204 | return size; |
| 205 | } |
| 206 | |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 207 | static inline int ext4_ext_space_root(struct inode *inode, int check) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 208 | { |
| 209 | int size; |
| 210 | |
| 211 | size = sizeof(EXT4_I(inode)->i_data); |
| 212 | size -= sizeof(struct ext4_extent_header); |
| 213 | size /= sizeof(struct ext4_extent); |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 214 | if (!check) { |
Robert P. J. Day | bbf2f9f | 2007-02-17 19:20:16 +0100 | [diff] [blame] | 215 | #ifdef AGGRESSIVE_TEST |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 216 | if (size > 3) |
| 217 | size = 3; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 218 | #endif |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 219 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 220 | return size; |
| 221 | } |
| 222 | |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 223 | static inline int ext4_ext_space_root_idx(struct inode *inode, int check) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 224 | { |
| 225 | int size; |
| 226 | |
| 227 | size = sizeof(EXT4_I(inode)->i_data); |
| 228 | size -= sizeof(struct ext4_extent_header); |
| 229 | size /= sizeof(struct ext4_extent_idx); |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 230 | if (!check) { |
Robert P. J. Day | bbf2f9f | 2007-02-17 19:20:16 +0100 | [diff] [blame] | 231 | #ifdef AGGRESSIVE_TEST |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 232 | if (size > 4) |
| 233 | size = 4; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 234 | #endif |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 235 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 236 | return size; |
| 237 | } |
| 238 | |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 239 | /* |
| 240 | * Calculate the number of metadata blocks needed |
| 241 | * to allocate @blocks |
| 242 | * Worse case is one block per extent |
| 243 | */ |
Theodore Ts'o | 01f49d0 | 2011-01-10 12:13:03 -0500 | [diff] [blame] | 244 | int ext4_ext_calc_metadata_amount(struct inode *inode, ext4_lblk_t lblock) |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 245 | { |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 246 | struct ext4_inode_info *ei = EXT4_I(inode); |
| 247 | int idxs, num = 0; |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 248 | |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 249 | idxs = ((inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header)) |
| 250 | / sizeof(struct ext4_extent_idx)); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 251 | |
| 252 | /* |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 253 | * If the new delayed allocation block is contiguous with the |
| 254 | * previous da block, it can share index blocks with the |
| 255 | * previous block, so we only need to allocate a new index |
| 256 | * block every idxs leaf blocks. At ldxs**2 blocks, we need |
| 257 | * an additional index block, and at ldxs**3 blocks, yet |
| 258 | * another index blocks. |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 259 | */ |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 260 | if (ei->i_da_metadata_calc_len && |
| 261 | ei->i_da_metadata_calc_last_lblock+1 == lblock) { |
| 262 | if ((ei->i_da_metadata_calc_len % idxs) == 0) |
| 263 | num++; |
| 264 | if ((ei->i_da_metadata_calc_len % (idxs*idxs)) == 0) |
| 265 | num++; |
| 266 | if ((ei->i_da_metadata_calc_len % (idxs*idxs*idxs)) == 0) { |
| 267 | num++; |
| 268 | ei->i_da_metadata_calc_len = 0; |
| 269 | } else |
| 270 | ei->i_da_metadata_calc_len++; |
| 271 | ei->i_da_metadata_calc_last_lblock++; |
| 272 | return num; |
| 273 | } |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 274 | |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 275 | /* |
| 276 | * In the worst case we need a new set of index blocks at |
| 277 | * every level of the inode's extent tree. |
| 278 | */ |
| 279 | ei->i_da_metadata_calc_len = 1; |
| 280 | ei->i_da_metadata_calc_last_lblock = lblock; |
| 281 | return ext_depth(inode) + 1; |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 282 | } |
| 283 | |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 284 | static int |
| 285 | ext4_ext_max_entries(struct inode *inode, int depth) |
| 286 | { |
| 287 | int max; |
| 288 | |
| 289 | if (depth == ext_depth(inode)) { |
| 290 | if (depth == 0) |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 291 | max = ext4_ext_space_root(inode, 1); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 292 | else |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 293 | max = ext4_ext_space_root_idx(inode, 1); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 294 | } else { |
| 295 | if (depth == 0) |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 296 | max = ext4_ext_space_block(inode, 1); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 297 | else |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 298 | max = ext4_ext_space_block_idx(inode, 1); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | return max; |
| 302 | } |
| 303 | |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 304 | static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext) |
| 305 | { |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 306 | ext4_fsblk_t block = ext4_ext_pblock(ext); |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 307 | int len = ext4_ext_get_actual_len(ext); |
Theodore Ts'o | e84a26c | 2009-04-22 20:52:25 -0400 | [diff] [blame] | 308 | |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 309 | return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, len); |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | static int ext4_valid_extent_idx(struct inode *inode, |
| 313 | struct ext4_extent_idx *ext_idx) |
| 314 | { |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 315 | ext4_fsblk_t block = ext4_idx_pblock(ext_idx); |
Theodore Ts'o | e84a26c | 2009-04-22 20:52:25 -0400 | [diff] [blame] | 316 | |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 317 | return ext4_data_block_valid(EXT4_SB(inode->i_sb), block, 1); |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | static int ext4_valid_extent_entries(struct inode *inode, |
| 321 | struct ext4_extent_header *eh, |
| 322 | int depth) |
| 323 | { |
| 324 | struct ext4_extent *ext; |
| 325 | struct ext4_extent_idx *ext_idx; |
| 326 | unsigned short entries; |
| 327 | if (eh->eh_entries == 0) |
| 328 | return 1; |
| 329 | |
| 330 | entries = le16_to_cpu(eh->eh_entries); |
| 331 | |
| 332 | if (depth == 0) { |
| 333 | /* leaf entries */ |
| 334 | ext = EXT_FIRST_EXTENT(eh); |
| 335 | while (entries) { |
| 336 | if (!ext4_valid_extent(inode, ext)) |
| 337 | return 0; |
| 338 | ext++; |
| 339 | entries--; |
| 340 | } |
| 341 | } else { |
| 342 | ext_idx = EXT_FIRST_INDEX(eh); |
| 343 | while (entries) { |
| 344 | if (!ext4_valid_extent_idx(inode, ext_idx)) |
| 345 | return 0; |
| 346 | ext_idx++; |
| 347 | entries--; |
| 348 | } |
| 349 | } |
| 350 | return 1; |
| 351 | } |
| 352 | |
Theodore Ts'o | c398eda | 2010-07-27 11:56:40 -0400 | [diff] [blame] | 353 | static int __ext4_ext_check(const char *function, unsigned int line, |
| 354 | struct inode *inode, struct ext4_extent_header *eh, |
| 355 | int depth) |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 356 | { |
| 357 | const char *error_msg; |
| 358 | int max = 0; |
| 359 | |
| 360 | if (unlikely(eh->eh_magic != EXT4_EXT_MAGIC)) { |
| 361 | error_msg = "invalid magic"; |
| 362 | goto corrupted; |
| 363 | } |
| 364 | if (unlikely(le16_to_cpu(eh->eh_depth) != depth)) { |
| 365 | error_msg = "unexpected eh_depth"; |
| 366 | goto corrupted; |
| 367 | } |
| 368 | if (unlikely(eh->eh_max == 0)) { |
| 369 | error_msg = "invalid eh_max"; |
| 370 | goto corrupted; |
| 371 | } |
| 372 | max = ext4_ext_max_entries(inode, depth); |
| 373 | if (unlikely(le16_to_cpu(eh->eh_max) > max)) { |
| 374 | error_msg = "too large eh_max"; |
| 375 | goto corrupted; |
| 376 | } |
| 377 | if (unlikely(le16_to_cpu(eh->eh_entries) > le16_to_cpu(eh->eh_max))) { |
| 378 | error_msg = "invalid eh_entries"; |
| 379 | goto corrupted; |
| 380 | } |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 381 | if (!ext4_valid_extent_entries(inode, eh, depth)) { |
| 382 | error_msg = "invalid extent entries"; |
| 383 | goto corrupted; |
| 384 | } |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 385 | return 0; |
| 386 | |
| 387 | corrupted: |
Theodore Ts'o | c398eda | 2010-07-27 11:56:40 -0400 | [diff] [blame] | 388 | ext4_error_inode(inode, function, line, 0, |
Theodore Ts'o | 24676da | 2010-05-16 21:00:00 -0400 | [diff] [blame] | 389 | "bad header/extent: %s - magic %x, " |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 390 | "entries %u, max %u(%u), depth %u(%u)", |
Theodore Ts'o | 24676da | 2010-05-16 21:00:00 -0400 | [diff] [blame] | 391 | error_msg, le16_to_cpu(eh->eh_magic), |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 392 | le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max), |
| 393 | max, le16_to_cpu(eh->eh_depth), depth); |
| 394 | |
| 395 | return -EIO; |
| 396 | } |
| 397 | |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 398 | #define ext4_ext_check(inode, eh, depth) \ |
Theodore Ts'o | c398eda | 2010-07-27 11:56:40 -0400 | [diff] [blame] | 399 | __ext4_ext_check(__func__, __LINE__, inode, eh, depth) |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 400 | |
Aneesh Kumar K.V | 7a262f7 | 2009-03-27 16:39:58 -0400 | [diff] [blame] | 401 | int ext4_ext_check_inode(struct inode *inode) |
| 402 | { |
| 403 | return ext4_ext_check(inode, ext_inode_hdr(inode), ext_depth(inode)); |
| 404 | } |
| 405 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 406 | #ifdef EXT_DEBUG |
| 407 | static void ext4_ext_show_path(struct inode *inode, struct ext4_ext_path *path) |
| 408 | { |
| 409 | int k, l = path->p_depth; |
| 410 | |
| 411 | ext_debug("path:"); |
| 412 | for (k = 0; k <= l; k++, path++) { |
| 413 | if (path->p_idx) { |
Mingming Cao | 2ae0210 | 2006-10-11 01:21:11 -0700 | [diff] [blame] | 414 | ext_debug(" %d->%llu", le32_to_cpu(path->p_idx->ei_block), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 415 | ext4_idx_pblock(path->p_idx)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 416 | } else if (path->p_ext) { |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 417 | ext_debug(" %d:[%d]%d:%llu ", |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 418 | le32_to_cpu(path->p_ext->ee_block), |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 419 | ext4_ext_is_uninitialized(path->p_ext), |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 420 | ext4_ext_get_actual_len(path->p_ext), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 421 | ext4_ext_pblock(path->p_ext)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 422 | } else |
| 423 | ext_debug(" []"); |
| 424 | } |
| 425 | ext_debug("\n"); |
| 426 | } |
| 427 | |
| 428 | static void ext4_ext_show_leaf(struct inode *inode, struct ext4_ext_path *path) |
| 429 | { |
| 430 | int depth = ext_depth(inode); |
| 431 | struct ext4_extent_header *eh; |
| 432 | struct ext4_extent *ex; |
| 433 | int i; |
| 434 | |
| 435 | if (!path) |
| 436 | return; |
| 437 | |
| 438 | eh = path[depth].p_hdr; |
| 439 | ex = EXT_FIRST_EXTENT(eh); |
| 440 | |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 441 | ext_debug("Displaying leaf extents for inode %lu\n", inode->i_ino); |
| 442 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 443 | for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ex++) { |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 444 | ext_debug("%d:[%d]%d:%llu ", le32_to_cpu(ex->ee_block), |
| 445 | ext4_ext_is_uninitialized(ex), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 446 | ext4_ext_get_actual_len(ex), ext4_ext_pblock(ex)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 447 | } |
| 448 | ext_debug("\n"); |
| 449 | } |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 450 | |
| 451 | static void ext4_ext_show_move(struct inode *inode, struct ext4_ext_path *path, |
| 452 | ext4_fsblk_t newblock, int level) |
| 453 | { |
| 454 | int depth = ext_depth(inode); |
| 455 | struct ext4_extent *ex; |
| 456 | |
| 457 | if (depth != level) { |
| 458 | struct ext4_extent_idx *idx; |
| 459 | idx = path[level].p_idx; |
| 460 | while (idx <= EXT_MAX_INDEX(path[level].p_hdr)) { |
| 461 | ext_debug("%d: move %d:%llu in new index %llu\n", level, |
| 462 | le32_to_cpu(idx->ei_block), |
| 463 | ext4_idx_pblock(idx), |
| 464 | newblock); |
| 465 | idx++; |
| 466 | } |
| 467 | |
| 468 | return; |
| 469 | } |
| 470 | |
| 471 | ex = path[depth].p_ext; |
| 472 | while (ex <= EXT_MAX_EXTENT(path[depth].p_hdr)) { |
| 473 | ext_debug("move %d:%llu:[%d]%d in new leaf %llu\n", |
| 474 | le32_to_cpu(ex->ee_block), |
| 475 | ext4_ext_pblock(ex), |
| 476 | ext4_ext_is_uninitialized(ex), |
| 477 | ext4_ext_get_actual_len(ex), |
| 478 | newblock); |
| 479 | ex++; |
| 480 | } |
| 481 | } |
| 482 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 483 | #else |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 484 | #define ext4_ext_show_path(inode, path) |
| 485 | #define ext4_ext_show_leaf(inode, path) |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 486 | #define ext4_ext_show_move(inode, path, newblock, level) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 487 | #endif |
| 488 | |
Aneesh Kumar K.V | b35905c | 2008-02-25 16:54:37 -0500 | [diff] [blame] | 489 | void ext4_ext_drop_refs(struct ext4_ext_path *path) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 490 | { |
| 491 | int depth = path->p_depth; |
| 492 | int i; |
| 493 | |
| 494 | for (i = 0; i <= depth; i++, path++) |
| 495 | if (path->p_bh) { |
| 496 | brelse(path->p_bh); |
| 497 | path->p_bh = NULL; |
| 498 | } |
| 499 | } |
| 500 | |
| 501 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 502 | * ext4_ext_binsearch_idx: |
| 503 | * binary search for the closest index of the given block |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 504 | * the header must be checked before calling this |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 505 | */ |
| 506 | static void |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 507 | ext4_ext_binsearch_idx(struct inode *inode, |
| 508 | struct ext4_ext_path *path, ext4_lblk_t block) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 509 | { |
| 510 | struct ext4_extent_header *eh = path->p_hdr; |
| 511 | struct ext4_extent_idx *r, *l, *m; |
| 512 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 513 | |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 514 | ext_debug("binsearch for %u(idx): ", block); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 515 | |
| 516 | l = EXT_FIRST_INDEX(eh) + 1; |
Dmitry Monakhov | e9f410b | 2007-07-18 09:09:15 -0400 | [diff] [blame] | 517 | r = EXT_LAST_INDEX(eh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 518 | while (l <= r) { |
| 519 | m = l + (r - l) / 2; |
| 520 | if (block < le32_to_cpu(m->ei_block)) |
| 521 | r = m - 1; |
| 522 | else |
| 523 | l = m + 1; |
Dmitry Monakhov | 26d535e | 2007-07-18 08:33:37 -0400 | [diff] [blame] | 524 | ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ei_block), |
| 525 | m, le32_to_cpu(m->ei_block), |
| 526 | r, le32_to_cpu(r->ei_block)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | path->p_idx = l - 1; |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 530 | ext_debug(" -> %d->%lld ", le32_to_cpu(path->p_idx->ei_block), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 531 | ext4_idx_pblock(path->p_idx)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 532 | |
| 533 | #ifdef CHECK_BINSEARCH |
| 534 | { |
| 535 | struct ext4_extent_idx *chix, *ix; |
| 536 | int k; |
| 537 | |
| 538 | chix = ix = EXT_FIRST_INDEX(eh); |
| 539 | for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ix++) { |
| 540 | if (k != 0 && |
| 541 | le32_to_cpu(ix->ei_block) <= le32_to_cpu(ix[-1].ei_block)) { |
Theodore Ts'o | 4776004 | 2008-09-08 23:00:52 -0400 | [diff] [blame] | 542 | printk(KERN_DEBUG "k=%d, ix=0x%p, " |
| 543 | "first=0x%p\n", k, |
| 544 | ix, EXT_FIRST_INDEX(eh)); |
| 545 | printk(KERN_DEBUG "%u <= %u\n", |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 546 | le32_to_cpu(ix->ei_block), |
| 547 | le32_to_cpu(ix[-1].ei_block)); |
| 548 | } |
| 549 | BUG_ON(k && le32_to_cpu(ix->ei_block) |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 550 | <= le32_to_cpu(ix[-1].ei_block)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 551 | if (block < le32_to_cpu(ix->ei_block)) |
| 552 | break; |
| 553 | chix = ix; |
| 554 | } |
| 555 | BUG_ON(chix != path->p_idx); |
| 556 | } |
| 557 | #endif |
| 558 | |
| 559 | } |
| 560 | |
| 561 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 562 | * ext4_ext_binsearch: |
| 563 | * binary search for closest extent of the given block |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 564 | * the header must be checked before calling this |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 565 | */ |
| 566 | static void |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 567 | ext4_ext_binsearch(struct inode *inode, |
| 568 | struct ext4_ext_path *path, ext4_lblk_t block) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 569 | { |
| 570 | struct ext4_extent_header *eh = path->p_hdr; |
| 571 | struct ext4_extent *r, *l, *m; |
| 572 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 573 | if (eh->eh_entries == 0) { |
| 574 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 575 | * this leaf is empty: |
| 576 | * we get such a leaf in split/add case |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 577 | */ |
| 578 | return; |
| 579 | } |
| 580 | |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 581 | ext_debug("binsearch for %u: ", block); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 582 | |
| 583 | l = EXT_FIRST_EXTENT(eh) + 1; |
Dmitry Monakhov | e9f410b | 2007-07-18 09:09:15 -0400 | [diff] [blame] | 584 | r = EXT_LAST_EXTENT(eh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 585 | |
| 586 | while (l <= r) { |
| 587 | m = l + (r - l) / 2; |
| 588 | if (block < le32_to_cpu(m->ee_block)) |
| 589 | r = m - 1; |
| 590 | else |
| 591 | l = m + 1; |
Dmitry Monakhov | 26d535e | 2007-07-18 08:33:37 -0400 | [diff] [blame] | 592 | ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ee_block), |
| 593 | m, le32_to_cpu(m->ee_block), |
| 594 | r, le32_to_cpu(r->ee_block)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 595 | } |
| 596 | |
| 597 | path->p_ext = l - 1; |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 598 | ext_debug(" -> %d:%llu:[%d]%d ", |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 599 | le32_to_cpu(path->p_ext->ee_block), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 600 | ext4_ext_pblock(path->p_ext), |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 601 | ext4_ext_is_uninitialized(path->p_ext), |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 602 | ext4_ext_get_actual_len(path->p_ext)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 603 | |
| 604 | #ifdef CHECK_BINSEARCH |
| 605 | { |
| 606 | struct ext4_extent *chex, *ex; |
| 607 | int k; |
| 608 | |
| 609 | chex = ex = EXT_FIRST_EXTENT(eh); |
| 610 | for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ex++) { |
| 611 | BUG_ON(k && le32_to_cpu(ex->ee_block) |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 612 | <= le32_to_cpu(ex[-1].ee_block)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 613 | if (block < le32_to_cpu(ex->ee_block)) |
| 614 | break; |
| 615 | chex = ex; |
| 616 | } |
| 617 | BUG_ON(chex != path->p_ext); |
| 618 | } |
| 619 | #endif |
| 620 | |
| 621 | } |
| 622 | |
| 623 | int ext4_ext_tree_init(handle_t *handle, struct inode *inode) |
| 624 | { |
| 625 | struct ext4_extent_header *eh; |
| 626 | |
| 627 | eh = ext_inode_hdr(inode); |
| 628 | eh->eh_depth = 0; |
| 629 | eh->eh_entries = 0; |
| 630 | eh->eh_magic = EXT4_EXT_MAGIC; |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 631 | eh->eh_max = cpu_to_le16(ext4_ext_space_root(inode, 0)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 632 | ext4_mark_inode_dirty(handle, inode); |
| 633 | ext4_ext_invalidate_cache(inode); |
| 634 | return 0; |
| 635 | } |
| 636 | |
| 637 | struct ext4_ext_path * |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 638 | ext4_ext_find_extent(struct inode *inode, ext4_lblk_t block, |
| 639 | struct ext4_ext_path *path) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 640 | { |
| 641 | struct ext4_extent_header *eh; |
| 642 | struct buffer_head *bh; |
| 643 | short int depth, i, ppos = 0, alloc = 0; |
| 644 | |
| 645 | eh = ext_inode_hdr(inode); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 646 | depth = ext_depth(inode); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 647 | |
| 648 | /* account possible depth increase */ |
| 649 | if (!path) { |
Avantika Mathur | 5d4958f | 2006-12-06 20:41:35 -0800 | [diff] [blame] | 650 | path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 2), |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 651 | GFP_NOFS); |
| 652 | if (!path) |
| 653 | return ERR_PTR(-ENOMEM); |
| 654 | alloc = 1; |
| 655 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 656 | path[0].p_hdr = eh; |
Shen Feng | 1973adc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 657 | path[0].p_bh = NULL; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 658 | |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 659 | i = depth; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 660 | /* walk through the tree */ |
| 661 | while (i) { |
Aneesh Kumar K.V | 7a262f7 | 2009-03-27 16:39:58 -0400 | [diff] [blame] | 662 | int need_to_validate = 0; |
| 663 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 664 | ext_debug("depth %d: num %d, max %d\n", |
| 665 | ppos, le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max)); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 666 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 667 | ext4_ext_binsearch_idx(inode, path + ppos, block); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 668 | path[ppos].p_block = ext4_idx_pblock(path[ppos].p_idx); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 669 | path[ppos].p_depth = i; |
| 670 | path[ppos].p_ext = NULL; |
| 671 | |
Aneesh Kumar K.V | 7a262f7 | 2009-03-27 16:39:58 -0400 | [diff] [blame] | 672 | bh = sb_getblk(inode->i_sb, path[ppos].p_block); |
| 673 | if (unlikely(!bh)) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 674 | goto err; |
Aneesh Kumar K.V | 7a262f7 | 2009-03-27 16:39:58 -0400 | [diff] [blame] | 675 | if (!bh_uptodate_or_lock(bh)) { |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 676 | trace_ext4_ext_load_extent(inode, block, |
| 677 | path[ppos].p_block); |
Aneesh Kumar K.V | 7a262f7 | 2009-03-27 16:39:58 -0400 | [diff] [blame] | 678 | if (bh_submit_read(bh) < 0) { |
| 679 | put_bh(bh); |
| 680 | goto err; |
| 681 | } |
| 682 | /* validate the extent entries */ |
| 683 | need_to_validate = 1; |
| 684 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 685 | eh = ext_block_hdr(bh); |
| 686 | ppos++; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 687 | if (unlikely(ppos > depth)) { |
| 688 | put_bh(bh); |
| 689 | EXT4_ERROR_INODE(inode, |
| 690 | "ppos %d > depth %d", ppos, depth); |
| 691 | goto err; |
| 692 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 693 | path[ppos].p_bh = bh; |
| 694 | path[ppos].p_hdr = eh; |
| 695 | i--; |
| 696 | |
Aneesh Kumar K.V | 7a262f7 | 2009-03-27 16:39:58 -0400 | [diff] [blame] | 697 | if (need_to_validate && ext4_ext_check(inode, eh, i)) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 698 | goto err; |
| 699 | } |
| 700 | |
| 701 | path[ppos].p_depth = i; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 702 | path[ppos].p_ext = NULL; |
| 703 | path[ppos].p_idx = NULL; |
| 704 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 705 | /* find extent */ |
| 706 | ext4_ext_binsearch(inode, path + ppos, block); |
Shen Feng | 1973adc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 707 | /* if not an empty leaf */ |
| 708 | if (path[ppos].p_ext) |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 709 | path[ppos].p_block = ext4_ext_pblock(path[ppos].p_ext); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 710 | |
| 711 | ext4_ext_show_path(inode, path); |
| 712 | |
| 713 | return path; |
| 714 | |
| 715 | err: |
| 716 | ext4_ext_drop_refs(path); |
| 717 | if (alloc) |
| 718 | kfree(path); |
| 719 | return ERR_PTR(-EIO); |
| 720 | } |
| 721 | |
| 722 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 723 | * ext4_ext_insert_index: |
| 724 | * insert new index [@logical;@ptr] into the block at @curp; |
| 725 | * check where to insert: before @curp or after @curp |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 726 | */ |
Theodore Ts'o | 1f109d5 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 727 | static int ext4_ext_insert_index(handle_t *handle, struct inode *inode, |
| 728 | struct ext4_ext_path *curp, |
| 729 | int logical, ext4_fsblk_t ptr) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 730 | { |
| 731 | struct ext4_extent_idx *ix; |
| 732 | int len, err; |
| 733 | |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 734 | err = ext4_ext_get_access(handle, inode, curp); |
| 735 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 736 | return err; |
| 737 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 738 | if (unlikely(logical == le32_to_cpu(curp->p_idx->ei_block))) { |
| 739 | EXT4_ERROR_INODE(inode, |
| 740 | "logical %d == ei_block %d!", |
| 741 | logical, le32_to_cpu(curp->p_idx->ei_block)); |
| 742 | return -EIO; |
| 743 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 744 | len = EXT_MAX_INDEX(curp->p_hdr) - curp->p_idx; |
| 745 | if (logical > le32_to_cpu(curp->p_idx->ei_block)) { |
| 746 | /* insert after */ |
| 747 | if (curp->p_idx != EXT_LAST_INDEX(curp->p_hdr)) { |
| 748 | len = (len - 1) * sizeof(struct ext4_extent_idx); |
| 749 | len = len < 0 ? 0 : len; |
Dmitry Monakhov | 26d535e | 2007-07-18 08:33:37 -0400 | [diff] [blame] | 750 | ext_debug("insert new index %d after: %llu. " |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 751 | "move %d from 0x%p to 0x%p\n", |
| 752 | logical, ptr, len, |
| 753 | (curp->p_idx + 1), (curp->p_idx + 2)); |
| 754 | memmove(curp->p_idx + 2, curp->p_idx + 1, len); |
| 755 | } |
| 756 | ix = curp->p_idx + 1; |
| 757 | } else { |
| 758 | /* insert before */ |
| 759 | len = len * sizeof(struct ext4_extent_idx); |
| 760 | len = len < 0 ? 0 : len; |
Dmitry Monakhov | 26d535e | 2007-07-18 08:33:37 -0400 | [diff] [blame] | 761 | ext_debug("insert new index %d before: %llu. " |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 762 | "move %d from 0x%p to 0x%p\n", |
| 763 | logical, ptr, len, |
| 764 | curp->p_idx, (curp->p_idx + 1)); |
| 765 | memmove(curp->p_idx + 1, curp->p_idx, len); |
| 766 | ix = curp->p_idx; |
| 767 | } |
| 768 | |
| 769 | ix->ei_block = cpu_to_le32(logical); |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 770 | ext4_idx_store_pblock(ix, ptr); |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 771 | le16_add_cpu(&curp->p_hdr->eh_entries, 1); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 772 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 773 | if (unlikely(le16_to_cpu(curp->p_hdr->eh_entries) |
| 774 | > le16_to_cpu(curp->p_hdr->eh_max))) { |
| 775 | EXT4_ERROR_INODE(inode, |
Robin Dong | ed7a7e1 | 2011-06-27 15:35:53 -0400 | [diff] [blame] | 776 | "eh_entries %d > eh_max %d!", |
| 777 | le16_to_cpu(curp->p_hdr->eh_entries), |
| 778 | le16_to_cpu(curp->p_hdr->eh_max)); |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 779 | return -EIO; |
| 780 | } |
| 781 | if (unlikely(ix > EXT_LAST_INDEX(curp->p_hdr))) { |
| 782 | EXT4_ERROR_INODE(inode, "ix > EXT_LAST_INDEX!"); |
| 783 | return -EIO; |
| 784 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 785 | |
| 786 | err = ext4_ext_dirty(handle, inode, curp); |
| 787 | ext4_std_error(inode->i_sb, err); |
| 788 | |
| 789 | return err; |
| 790 | } |
| 791 | |
| 792 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 793 | * ext4_ext_split: |
| 794 | * inserts new subtree into the path, using free index entry |
| 795 | * at depth @at: |
| 796 | * - allocates all needed blocks (new leaf and all intermediate index blocks) |
| 797 | * - makes decision where to split |
| 798 | * - moves remaining extents and index entries (right to the split point) |
| 799 | * into the newly allocated blocks |
| 800 | * - initializes subtree |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 801 | */ |
| 802 | static int ext4_ext_split(handle_t *handle, struct inode *inode, |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 803 | unsigned int flags, |
| 804 | struct ext4_ext_path *path, |
| 805 | struct ext4_extent *newext, int at) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 806 | { |
| 807 | struct buffer_head *bh = NULL; |
| 808 | int depth = ext_depth(inode); |
| 809 | struct ext4_extent_header *neh; |
| 810 | struct ext4_extent_idx *fidx; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 811 | int i = at, k, m, a; |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 812 | ext4_fsblk_t newblock, oldblock; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 813 | __le32 border; |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 814 | ext4_fsblk_t *ablocks = NULL; /* array of allocated blocks */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 815 | int err = 0; |
| 816 | |
| 817 | /* make decision: where to split? */ |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 818 | /* FIXME: now decision is simplest: at current extent */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 819 | |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 820 | /* if current leaf will be split, then we should use |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 821 | * border from split point */ |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 822 | if (unlikely(path[depth].p_ext > EXT_MAX_EXTENT(path[depth].p_hdr))) { |
| 823 | EXT4_ERROR_INODE(inode, "p_ext > EXT_MAX_EXTENT!"); |
| 824 | return -EIO; |
| 825 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 826 | if (path[depth].p_ext != EXT_MAX_EXTENT(path[depth].p_hdr)) { |
| 827 | border = path[depth].p_ext[1].ee_block; |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 828 | ext_debug("leaf will be split." |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 829 | " next leaf starts at %d\n", |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 830 | le32_to_cpu(border)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 831 | } else { |
| 832 | border = newext->ee_block; |
| 833 | ext_debug("leaf will be added." |
| 834 | " next leaf starts at %d\n", |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 835 | le32_to_cpu(border)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 836 | } |
| 837 | |
| 838 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 839 | * If error occurs, then we break processing |
| 840 | * and mark filesystem read-only. index won't |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 841 | * be inserted and tree will be in consistent |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 842 | * state. Next mount will repair buffers too. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 843 | */ |
| 844 | |
| 845 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 846 | * Get array to track all allocated blocks. |
| 847 | * We need this to handle errors and free blocks |
| 848 | * upon them. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 849 | */ |
Avantika Mathur | 5d4958f | 2006-12-06 20:41:35 -0800 | [diff] [blame] | 850 | ablocks = kzalloc(sizeof(ext4_fsblk_t) * depth, GFP_NOFS); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 851 | if (!ablocks) |
| 852 | return -ENOMEM; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 853 | |
| 854 | /* allocate all needed blocks */ |
| 855 | ext_debug("allocate %d blocks for indexes/leaf\n", depth - at); |
| 856 | for (a = 0; a < depth - at; a++) { |
Aneesh Kumar K.V | 654b490 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 857 | newblock = ext4_ext_new_meta_block(handle, inode, path, |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 858 | newext, &err, flags); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 859 | if (newblock == 0) |
| 860 | goto cleanup; |
| 861 | ablocks[a] = newblock; |
| 862 | } |
| 863 | |
| 864 | /* initialize new leaf */ |
| 865 | newblock = ablocks[--a]; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 866 | if (unlikely(newblock == 0)) { |
| 867 | EXT4_ERROR_INODE(inode, "newblock == 0!"); |
| 868 | err = -EIO; |
| 869 | goto cleanup; |
| 870 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 871 | bh = sb_getblk(inode->i_sb, newblock); |
| 872 | if (!bh) { |
| 873 | err = -EIO; |
| 874 | goto cleanup; |
| 875 | } |
| 876 | lock_buffer(bh); |
| 877 | |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 878 | err = ext4_journal_get_create_access(handle, bh); |
| 879 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 880 | goto cleanup; |
| 881 | |
| 882 | neh = ext_block_hdr(bh); |
| 883 | neh->eh_entries = 0; |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 884 | neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 885 | neh->eh_magic = EXT4_EXT_MAGIC; |
| 886 | neh->eh_depth = 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 887 | |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 888 | /* move remainder of path[depth] to the new leaf */ |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 889 | if (unlikely(path[depth].p_hdr->eh_entries != |
| 890 | path[depth].p_hdr->eh_max)) { |
| 891 | EXT4_ERROR_INODE(inode, "eh_entries %d != eh_max %d!", |
| 892 | path[depth].p_hdr->eh_entries, |
| 893 | path[depth].p_hdr->eh_max); |
| 894 | err = -EIO; |
| 895 | goto cleanup; |
| 896 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 897 | /* start copy from next extent */ |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 898 | m = EXT_MAX_EXTENT(path[depth].p_hdr) - path[depth].p_ext++; |
| 899 | ext4_ext_show_move(inode, path, newblock, depth); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 900 | if (m) { |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 901 | struct ext4_extent *ex; |
| 902 | ex = EXT_FIRST_EXTENT(neh); |
| 903 | memmove(ex, path[depth].p_ext, sizeof(struct ext4_extent) * m); |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 904 | le16_add_cpu(&neh->eh_entries, m); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | set_buffer_uptodate(bh); |
| 908 | unlock_buffer(bh); |
| 909 | |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 910 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 911 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 912 | goto cleanup; |
| 913 | brelse(bh); |
| 914 | bh = NULL; |
| 915 | |
| 916 | /* correct old leaf */ |
| 917 | if (m) { |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 918 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 919 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 920 | goto cleanup; |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 921 | le16_add_cpu(&path[depth].p_hdr->eh_entries, -m); |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 922 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 923 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 924 | goto cleanup; |
| 925 | |
| 926 | } |
| 927 | |
| 928 | /* create intermediate indexes */ |
| 929 | k = depth - at - 1; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 930 | if (unlikely(k < 0)) { |
| 931 | EXT4_ERROR_INODE(inode, "k %d < 0!", k); |
| 932 | err = -EIO; |
| 933 | goto cleanup; |
| 934 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 935 | if (k) |
| 936 | ext_debug("create %d intermediate indices\n", k); |
| 937 | /* insert new index into current index block */ |
| 938 | /* current depth stored in i var */ |
| 939 | i = depth - 1; |
| 940 | while (k--) { |
| 941 | oldblock = newblock; |
| 942 | newblock = ablocks[--a]; |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 943 | bh = sb_getblk(inode->i_sb, newblock); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 944 | if (!bh) { |
| 945 | err = -EIO; |
| 946 | goto cleanup; |
| 947 | } |
| 948 | lock_buffer(bh); |
| 949 | |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 950 | err = ext4_journal_get_create_access(handle, bh); |
| 951 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 952 | goto cleanup; |
| 953 | |
| 954 | neh = ext_block_hdr(bh); |
| 955 | neh->eh_entries = cpu_to_le16(1); |
| 956 | neh->eh_magic = EXT4_EXT_MAGIC; |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 957 | neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 958 | neh->eh_depth = cpu_to_le16(depth - i); |
| 959 | fidx = EXT_FIRST_INDEX(neh); |
| 960 | fidx->ei_block = border; |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 961 | ext4_idx_store_pblock(fidx, oldblock); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 962 | |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 963 | ext_debug("int.index at %d (block %llu): %u -> %llu\n", |
| 964 | i, newblock, le32_to_cpu(border), oldblock); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 965 | |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 966 | /* move remainder of path[i] to the new index block */ |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 967 | if (unlikely(EXT_MAX_INDEX(path[i].p_hdr) != |
| 968 | EXT_LAST_INDEX(path[i].p_hdr))) { |
| 969 | EXT4_ERROR_INODE(inode, |
| 970 | "EXT_MAX_INDEX != EXT_LAST_INDEX ee_block %d!", |
| 971 | le32_to_cpu(path[i].p_ext->ee_block)); |
| 972 | err = -EIO; |
| 973 | goto cleanup; |
| 974 | } |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 975 | /* start copy indexes */ |
| 976 | m = EXT_MAX_INDEX(path[i].p_hdr) - path[i].p_idx++; |
| 977 | ext_debug("cur 0x%p, last 0x%p\n", path[i].p_idx, |
| 978 | EXT_MAX_INDEX(path[i].p_hdr)); |
| 979 | ext4_ext_show_move(inode, path, newblock, i); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 980 | if (m) { |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 981 | memmove(++fidx, path[i].p_idx, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 982 | sizeof(struct ext4_extent_idx) * m); |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 983 | le16_add_cpu(&neh->eh_entries, m); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 984 | } |
| 985 | set_buffer_uptodate(bh); |
| 986 | unlock_buffer(bh); |
| 987 | |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 988 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 989 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 990 | goto cleanup; |
| 991 | brelse(bh); |
| 992 | bh = NULL; |
| 993 | |
| 994 | /* correct old index */ |
| 995 | if (m) { |
| 996 | err = ext4_ext_get_access(handle, inode, path + i); |
| 997 | if (err) |
| 998 | goto cleanup; |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 999 | le16_add_cpu(&path[i].p_hdr->eh_entries, -m); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1000 | err = ext4_ext_dirty(handle, inode, path + i); |
| 1001 | if (err) |
| 1002 | goto cleanup; |
| 1003 | } |
| 1004 | |
| 1005 | i--; |
| 1006 | } |
| 1007 | |
| 1008 | /* insert new index */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1009 | err = ext4_ext_insert_index(handle, inode, path + at, |
| 1010 | le32_to_cpu(border), newblock); |
| 1011 | |
| 1012 | cleanup: |
| 1013 | if (bh) { |
| 1014 | if (buffer_locked(bh)) |
| 1015 | unlock_buffer(bh); |
| 1016 | brelse(bh); |
| 1017 | } |
| 1018 | |
| 1019 | if (err) { |
| 1020 | /* free all allocated blocks in error case */ |
| 1021 | for (i = 0; i < depth; i++) { |
| 1022 | if (!ablocks[i]) |
| 1023 | continue; |
Peter Huewe | 7dc5761 | 2011-02-21 21:01:42 -0500 | [diff] [blame] | 1024 | ext4_free_blocks(handle, inode, NULL, ablocks[i], 1, |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 1025 | EXT4_FREE_BLOCKS_METADATA); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1026 | } |
| 1027 | } |
| 1028 | kfree(ablocks); |
| 1029 | |
| 1030 | return err; |
| 1031 | } |
| 1032 | |
| 1033 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1034 | * ext4_ext_grow_indepth: |
| 1035 | * implements tree growing procedure: |
| 1036 | * - allocates new block |
| 1037 | * - moves top-level data (index block or leaf) into the new block |
| 1038 | * - initializes new top-level, creating index that points to the |
| 1039 | * just created block |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1040 | */ |
| 1041 | static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode, |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 1042 | unsigned int flags, |
| 1043 | struct ext4_ext_path *path, |
| 1044 | struct ext4_extent *newext) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1045 | { |
| 1046 | struct ext4_ext_path *curp = path; |
| 1047 | struct ext4_extent_header *neh; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1048 | struct buffer_head *bh; |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 1049 | ext4_fsblk_t newblock; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1050 | int err = 0; |
| 1051 | |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 1052 | newblock = ext4_ext_new_meta_block(handle, inode, path, |
| 1053 | newext, &err, flags); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1054 | if (newblock == 0) |
| 1055 | return err; |
| 1056 | |
| 1057 | bh = sb_getblk(inode->i_sb, newblock); |
| 1058 | if (!bh) { |
| 1059 | err = -EIO; |
| 1060 | ext4_std_error(inode->i_sb, err); |
| 1061 | return err; |
| 1062 | } |
| 1063 | lock_buffer(bh); |
| 1064 | |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1065 | err = ext4_journal_get_create_access(handle, bh); |
| 1066 | if (err) { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1067 | unlock_buffer(bh); |
| 1068 | goto out; |
| 1069 | } |
| 1070 | |
| 1071 | /* move top-level index/leaf into new block */ |
| 1072 | memmove(bh->b_data, curp->p_hdr, sizeof(EXT4_I(inode)->i_data)); |
| 1073 | |
| 1074 | /* set size of new block */ |
| 1075 | neh = ext_block_hdr(bh); |
| 1076 | /* old root could have indexes or leaves |
| 1077 | * so calculate e_max right way */ |
| 1078 | if (ext_depth(inode)) |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 1079 | neh->eh_max = cpu_to_le16(ext4_ext_space_block_idx(inode, 0)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1080 | else |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 1081 | neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1082 | neh->eh_magic = EXT4_EXT_MAGIC; |
| 1083 | set_buffer_uptodate(bh); |
| 1084 | unlock_buffer(bh); |
| 1085 | |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 1086 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1087 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1088 | goto out; |
| 1089 | |
| 1090 | /* create index in new top-level index: num,max,pointer */ |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1091 | err = ext4_ext_get_access(handle, inode, curp); |
| 1092 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1093 | goto out; |
| 1094 | |
| 1095 | curp->p_hdr->eh_magic = EXT4_EXT_MAGIC; |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 1096 | curp->p_hdr->eh_max = cpu_to_le16(ext4_ext_space_root_idx(inode, 0)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1097 | curp->p_hdr->eh_entries = cpu_to_le16(1); |
| 1098 | curp->p_idx = EXT_FIRST_INDEX(curp->p_hdr); |
Dmitry Monakhov | e9f410b | 2007-07-18 09:09:15 -0400 | [diff] [blame] | 1099 | |
| 1100 | if (path[0].p_hdr->eh_depth) |
| 1101 | curp->p_idx->ei_block = |
| 1102 | EXT_FIRST_INDEX(path[0].p_hdr)->ei_block; |
| 1103 | else |
| 1104 | curp->p_idx->ei_block = |
| 1105 | EXT_FIRST_EXTENT(path[0].p_hdr)->ee_block; |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 1106 | ext4_idx_store_pblock(curp->p_idx, newblock); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1107 | |
| 1108 | neh = ext_inode_hdr(inode); |
Mingming Cao | 2ae0210 | 2006-10-11 01:21:11 -0700 | [diff] [blame] | 1109 | ext_debug("new root: num %d(%d), lblock %d, ptr %llu\n", |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1110 | le16_to_cpu(neh->eh_entries), le16_to_cpu(neh->eh_max), |
Andi Kleen | 5a0790c | 2010-06-14 13:28:03 -0400 | [diff] [blame] | 1111 | le32_to_cpu(EXT_FIRST_INDEX(neh)->ei_block), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1112 | ext4_idx_pblock(EXT_FIRST_INDEX(neh))); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1113 | |
| 1114 | neh->eh_depth = cpu_to_le16(path->p_depth + 1); |
| 1115 | err = ext4_ext_dirty(handle, inode, curp); |
| 1116 | out: |
| 1117 | brelse(bh); |
| 1118 | |
| 1119 | return err; |
| 1120 | } |
| 1121 | |
| 1122 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1123 | * ext4_ext_create_new_leaf: |
| 1124 | * finds empty index and adds new leaf. |
| 1125 | * if no free index is found, then it requests in-depth growing. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1126 | */ |
| 1127 | static int ext4_ext_create_new_leaf(handle_t *handle, struct inode *inode, |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 1128 | unsigned int flags, |
| 1129 | struct ext4_ext_path *path, |
| 1130 | struct ext4_extent *newext) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1131 | { |
| 1132 | struct ext4_ext_path *curp; |
| 1133 | int depth, i, err = 0; |
| 1134 | |
| 1135 | repeat: |
| 1136 | i = depth = ext_depth(inode); |
| 1137 | |
| 1138 | /* walk up to the tree and look for free index entry */ |
| 1139 | curp = path + depth; |
| 1140 | while (i > 0 && !EXT_HAS_FREE_INDEX(curp)) { |
| 1141 | i--; |
| 1142 | curp--; |
| 1143 | } |
| 1144 | |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1145 | /* we use already allocated block for index block, |
| 1146 | * so subsequent data blocks should be contiguous */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1147 | if (EXT_HAS_FREE_INDEX(curp)) { |
| 1148 | /* if we found index with free entry, then use that |
| 1149 | * entry: create all needed subtree and add new leaf */ |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 1150 | err = ext4_ext_split(handle, inode, flags, path, newext, i); |
Shen Feng | 787e098 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1151 | if (err) |
| 1152 | goto out; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1153 | |
| 1154 | /* refill path */ |
| 1155 | ext4_ext_drop_refs(path); |
| 1156 | path = ext4_ext_find_extent(inode, |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1157 | (ext4_lblk_t)le32_to_cpu(newext->ee_block), |
| 1158 | path); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1159 | if (IS_ERR(path)) |
| 1160 | err = PTR_ERR(path); |
| 1161 | } else { |
| 1162 | /* tree is full, time to grow in depth */ |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 1163 | err = ext4_ext_grow_indepth(handle, inode, flags, |
| 1164 | path, newext); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1165 | if (err) |
| 1166 | goto out; |
| 1167 | |
| 1168 | /* refill path */ |
| 1169 | ext4_ext_drop_refs(path); |
| 1170 | path = ext4_ext_find_extent(inode, |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1171 | (ext4_lblk_t)le32_to_cpu(newext->ee_block), |
| 1172 | path); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1173 | if (IS_ERR(path)) { |
| 1174 | err = PTR_ERR(path); |
| 1175 | goto out; |
| 1176 | } |
| 1177 | |
| 1178 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1179 | * only first (depth 0 -> 1) produces free space; |
| 1180 | * in all other cases we have to split the grown tree |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1181 | */ |
| 1182 | depth = ext_depth(inode); |
| 1183 | if (path[depth].p_hdr->eh_entries == path[depth].p_hdr->eh_max) { |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1184 | /* now we need to split */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1185 | goto repeat; |
| 1186 | } |
| 1187 | } |
| 1188 | |
| 1189 | out: |
| 1190 | return err; |
| 1191 | } |
| 1192 | |
| 1193 | /* |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1194 | * search the closest allocated block to the left for *logical |
| 1195 | * and returns it at @logical + it's physical address at @phys |
| 1196 | * if *logical is the smallest allocated block, the function |
| 1197 | * returns 0 at @phys |
| 1198 | * return value contains 0 (success) or error code |
| 1199 | */ |
Theodore Ts'o | 1f109d5 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1200 | static int ext4_ext_search_left(struct inode *inode, |
| 1201 | struct ext4_ext_path *path, |
| 1202 | ext4_lblk_t *logical, ext4_fsblk_t *phys) |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1203 | { |
| 1204 | struct ext4_extent_idx *ix; |
| 1205 | struct ext4_extent *ex; |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1206 | int depth, ee_len; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1207 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1208 | if (unlikely(path == NULL)) { |
| 1209 | EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical); |
| 1210 | return -EIO; |
| 1211 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1212 | depth = path->p_depth; |
| 1213 | *phys = 0; |
| 1214 | |
| 1215 | if (depth == 0 && path->p_ext == NULL) |
| 1216 | return 0; |
| 1217 | |
| 1218 | /* usually extent in the path covers blocks smaller |
| 1219 | * then *logical, but it can be that extent is the |
| 1220 | * first one in the file */ |
| 1221 | |
| 1222 | ex = path[depth].p_ext; |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1223 | ee_len = ext4_ext_get_actual_len(ex); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1224 | if (*logical < le32_to_cpu(ex->ee_block)) { |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1225 | if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) { |
| 1226 | EXT4_ERROR_INODE(inode, |
| 1227 | "EXT_FIRST_EXTENT != ex *logical %d ee_block %d!", |
| 1228 | *logical, le32_to_cpu(ex->ee_block)); |
| 1229 | return -EIO; |
| 1230 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1231 | while (--depth >= 0) { |
| 1232 | ix = path[depth].p_idx; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1233 | if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) { |
| 1234 | EXT4_ERROR_INODE(inode, |
| 1235 | "ix (%d) != EXT_FIRST_INDEX (%d) (depth %d)!", |
| 1236 | ix != NULL ? ix->ei_block : 0, |
| 1237 | EXT_FIRST_INDEX(path[depth].p_hdr) != NULL ? |
| 1238 | EXT_FIRST_INDEX(path[depth].p_hdr)->ei_block : 0, |
| 1239 | depth); |
| 1240 | return -EIO; |
| 1241 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1242 | } |
| 1243 | return 0; |
| 1244 | } |
| 1245 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1246 | if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) { |
| 1247 | EXT4_ERROR_INODE(inode, |
| 1248 | "logical %d < ee_block %d + ee_len %d!", |
| 1249 | *logical, le32_to_cpu(ex->ee_block), ee_len); |
| 1250 | return -EIO; |
| 1251 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1252 | |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1253 | *logical = le32_to_cpu(ex->ee_block) + ee_len - 1; |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1254 | *phys = ext4_ext_pblock(ex) + ee_len - 1; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1255 | return 0; |
| 1256 | } |
| 1257 | |
| 1258 | /* |
| 1259 | * search the closest allocated block to the right for *logical |
| 1260 | * and returns it at @logical + it's physical address at @phys |
| 1261 | * if *logical is the smallest allocated block, the function |
| 1262 | * returns 0 at @phys |
| 1263 | * return value contains 0 (success) or error code |
| 1264 | */ |
Theodore Ts'o | 1f109d5 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1265 | static int ext4_ext_search_right(struct inode *inode, |
| 1266 | struct ext4_ext_path *path, |
| 1267 | ext4_lblk_t *logical, ext4_fsblk_t *phys) |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1268 | { |
| 1269 | struct buffer_head *bh = NULL; |
| 1270 | struct ext4_extent_header *eh; |
| 1271 | struct ext4_extent_idx *ix; |
| 1272 | struct ext4_extent *ex; |
| 1273 | ext4_fsblk_t block; |
Eric Sandeen | 395a87b | 2009-03-10 18:18:47 -0400 | [diff] [blame] | 1274 | int depth; /* Note, NOT eh_depth; depth from top of tree */ |
| 1275 | int ee_len; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1276 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1277 | if (unlikely(path == NULL)) { |
| 1278 | EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical); |
| 1279 | return -EIO; |
| 1280 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1281 | depth = path->p_depth; |
| 1282 | *phys = 0; |
| 1283 | |
| 1284 | if (depth == 0 && path->p_ext == NULL) |
| 1285 | return 0; |
| 1286 | |
| 1287 | /* usually extent in the path covers blocks smaller |
| 1288 | * then *logical, but it can be that extent is the |
| 1289 | * first one in the file */ |
| 1290 | |
| 1291 | ex = path[depth].p_ext; |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1292 | ee_len = ext4_ext_get_actual_len(ex); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1293 | if (*logical < le32_to_cpu(ex->ee_block)) { |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1294 | if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) { |
| 1295 | EXT4_ERROR_INODE(inode, |
| 1296 | "first_extent(path[%d].p_hdr) != ex", |
| 1297 | depth); |
| 1298 | return -EIO; |
| 1299 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1300 | while (--depth >= 0) { |
| 1301 | ix = path[depth].p_idx; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1302 | if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) { |
| 1303 | EXT4_ERROR_INODE(inode, |
| 1304 | "ix != EXT_FIRST_INDEX *logical %d!", |
| 1305 | *logical); |
| 1306 | return -EIO; |
| 1307 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1308 | } |
| 1309 | *logical = le32_to_cpu(ex->ee_block); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1310 | *phys = ext4_ext_pblock(ex); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1311 | return 0; |
| 1312 | } |
| 1313 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1314 | if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) { |
| 1315 | EXT4_ERROR_INODE(inode, |
| 1316 | "logical %d < ee_block %d + ee_len %d!", |
| 1317 | *logical, le32_to_cpu(ex->ee_block), ee_len); |
| 1318 | return -EIO; |
| 1319 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1320 | |
| 1321 | if (ex != EXT_LAST_EXTENT(path[depth].p_hdr)) { |
| 1322 | /* next allocated block in this leaf */ |
| 1323 | ex++; |
| 1324 | *logical = le32_to_cpu(ex->ee_block); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1325 | *phys = ext4_ext_pblock(ex); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1326 | return 0; |
| 1327 | } |
| 1328 | |
| 1329 | /* go up and search for index to the right */ |
| 1330 | while (--depth >= 0) { |
| 1331 | ix = path[depth].p_idx; |
| 1332 | if (ix != EXT_LAST_INDEX(path[depth].p_hdr)) |
Wu Fengguang | 25f1ee3 | 2008-11-25 17:24:23 -0500 | [diff] [blame] | 1333 | goto got_index; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1334 | } |
| 1335 | |
Wu Fengguang | 25f1ee3 | 2008-11-25 17:24:23 -0500 | [diff] [blame] | 1336 | /* we've gone up to the root and found no index to the right */ |
| 1337 | return 0; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1338 | |
Wu Fengguang | 25f1ee3 | 2008-11-25 17:24:23 -0500 | [diff] [blame] | 1339 | got_index: |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1340 | /* we've found index to the right, let's |
| 1341 | * follow it and find the closest allocated |
| 1342 | * block to the right */ |
| 1343 | ix++; |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1344 | block = ext4_idx_pblock(ix); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1345 | while (++depth < path->p_depth) { |
| 1346 | bh = sb_bread(inode->i_sb, block); |
| 1347 | if (bh == NULL) |
| 1348 | return -EIO; |
| 1349 | eh = ext_block_hdr(bh); |
Eric Sandeen | 395a87b | 2009-03-10 18:18:47 -0400 | [diff] [blame] | 1350 | /* subtract from p_depth to get proper eh_depth */ |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 1351 | if (ext4_ext_check(inode, eh, path->p_depth - depth)) { |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1352 | put_bh(bh); |
| 1353 | return -EIO; |
| 1354 | } |
| 1355 | ix = EXT_FIRST_INDEX(eh); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1356 | block = ext4_idx_pblock(ix); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1357 | put_bh(bh); |
| 1358 | } |
| 1359 | |
| 1360 | bh = sb_bread(inode->i_sb, block); |
| 1361 | if (bh == NULL) |
| 1362 | return -EIO; |
| 1363 | eh = ext_block_hdr(bh); |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 1364 | if (ext4_ext_check(inode, eh, path->p_depth - depth)) { |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1365 | put_bh(bh); |
| 1366 | return -EIO; |
| 1367 | } |
| 1368 | ex = EXT_FIRST_EXTENT(eh); |
| 1369 | *logical = le32_to_cpu(ex->ee_block); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1370 | *phys = ext4_ext_pblock(ex); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1371 | put_bh(bh); |
| 1372 | return 0; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1373 | } |
| 1374 | |
| 1375 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1376 | * ext4_ext_next_allocated_block: |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1377 | * returns allocated block in subsequent extent or EXT_MAX_BLOCKS. |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1378 | * NOTE: it considers block number from index entry as |
| 1379 | * allocated block. Thus, index entries have to be consistent |
| 1380 | * with leaves. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1381 | */ |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1382 | static ext4_lblk_t |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1383 | ext4_ext_next_allocated_block(struct ext4_ext_path *path) |
| 1384 | { |
| 1385 | int depth; |
| 1386 | |
| 1387 | BUG_ON(path == NULL); |
| 1388 | depth = path->p_depth; |
| 1389 | |
| 1390 | if (depth == 0 && path->p_ext == NULL) |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1391 | return EXT_MAX_BLOCKS; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1392 | |
| 1393 | while (depth >= 0) { |
| 1394 | if (depth == path->p_depth) { |
| 1395 | /* leaf */ |
| 1396 | if (path[depth].p_ext != |
| 1397 | EXT_LAST_EXTENT(path[depth].p_hdr)) |
| 1398 | return le32_to_cpu(path[depth].p_ext[1].ee_block); |
| 1399 | } else { |
| 1400 | /* index */ |
| 1401 | if (path[depth].p_idx != |
| 1402 | EXT_LAST_INDEX(path[depth].p_hdr)) |
| 1403 | return le32_to_cpu(path[depth].p_idx[1].ei_block); |
| 1404 | } |
| 1405 | depth--; |
| 1406 | } |
| 1407 | |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1408 | return EXT_MAX_BLOCKS; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1409 | } |
| 1410 | |
| 1411 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1412 | * ext4_ext_next_leaf_block: |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1413 | * returns first allocated block from next leaf or EXT_MAX_BLOCKS |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1414 | */ |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1415 | static ext4_lblk_t ext4_ext_next_leaf_block(struct inode *inode, |
Andrew Morton | 63f5793 | 2006-10-11 01:21:24 -0700 | [diff] [blame] | 1416 | struct ext4_ext_path *path) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1417 | { |
| 1418 | int depth; |
| 1419 | |
| 1420 | BUG_ON(path == NULL); |
| 1421 | depth = path->p_depth; |
| 1422 | |
| 1423 | /* zero-tree has no leaf blocks at all */ |
| 1424 | if (depth == 0) |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1425 | return EXT_MAX_BLOCKS; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1426 | |
| 1427 | /* go to index block */ |
| 1428 | depth--; |
| 1429 | |
| 1430 | while (depth >= 0) { |
| 1431 | if (path[depth].p_idx != |
| 1432 | EXT_LAST_INDEX(path[depth].p_hdr)) |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1433 | return (ext4_lblk_t) |
| 1434 | le32_to_cpu(path[depth].p_idx[1].ei_block); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1435 | depth--; |
| 1436 | } |
| 1437 | |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1438 | return EXT_MAX_BLOCKS; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1439 | } |
| 1440 | |
| 1441 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1442 | * ext4_ext_correct_indexes: |
| 1443 | * if leaf gets modified and modified extent is first in the leaf, |
| 1444 | * then we have to correct all indexes above. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1445 | * TODO: do we need to correct tree in all cases? |
| 1446 | */ |
Aneesh Kumar K.V | 1d03ec9 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1447 | static int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1448 | struct ext4_ext_path *path) |
| 1449 | { |
| 1450 | struct ext4_extent_header *eh; |
| 1451 | int depth = ext_depth(inode); |
| 1452 | struct ext4_extent *ex; |
| 1453 | __le32 border; |
| 1454 | int k, err = 0; |
| 1455 | |
| 1456 | eh = path[depth].p_hdr; |
| 1457 | ex = path[depth].p_ext; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1458 | |
| 1459 | if (unlikely(ex == NULL || eh == NULL)) { |
| 1460 | EXT4_ERROR_INODE(inode, |
| 1461 | "ex %p == NULL or eh %p == NULL", ex, eh); |
| 1462 | return -EIO; |
| 1463 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1464 | |
| 1465 | if (depth == 0) { |
| 1466 | /* there is no tree at all */ |
| 1467 | return 0; |
| 1468 | } |
| 1469 | |
| 1470 | if (ex != EXT_FIRST_EXTENT(eh)) { |
| 1471 | /* we correct tree if first leaf got modified only */ |
| 1472 | return 0; |
| 1473 | } |
| 1474 | |
| 1475 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1476 | * TODO: we need correction if border is smaller than current one |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1477 | */ |
| 1478 | k = depth - 1; |
| 1479 | border = path[depth].p_ext->ee_block; |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1480 | err = ext4_ext_get_access(handle, inode, path + k); |
| 1481 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1482 | return err; |
| 1483 | path[k].p_idx->ei_block = border; |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1484 | err = ext4_ext_dirty(handle, inode, path + k); |
| 1485 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1486 | return err; |
| 1487 | |
| 1488 | while (k--) { |
| 1489 | /* change all left-side indexes */ |
| 1490 | if (path[k+1].p_idx != EXT_FIRST_INDEX(path[k+1].p_hdr)) |
| 1491 | break; |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1492 | err = ext4_ext_get_access(handle, inode, path + k); |
| 1493 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1494 | break; |
| 1495 | path[k].p_idx->ei_block = border; |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1496 | err = ext4_ext_dirty(handle, inode, path + k); |
| 1497 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1498 | break; |
| 1499 | } |
| 1500 | |
| 1501 | return err; |
| 1502 | } |
| 1503 | |
Akira Fujita | 748de67 | 2009-06-17 19:24:03 -0400 | [diff] [blame] | 1504 | int |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1505 | ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1, |
| 1506 | struct ext4_extent *ex2) |
| 1507 | { |
Amit Arora | 749269f | 2007-07-18 09:02:56 -0400 | [diff] [blame] | 1508 | unsigned short ext1_ee_len, ext2_ee_len, max_len; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1509 | |
| 1510 | /* |
| 1511 | * Make sure that either both extents are uninitialized, or |
| 1512 | * both are _not_. |
| 1513 | */ |
| 1514 | if (ext4_ext_is_uninitialized(ex1) ^ ext4_ext_is_uninitialized(ex2)) |
| 1515 | return 0; |
| 1516 | |
Amit Arora | 749269f | 2007-07-18 09:02:56 -0400 | [diff] [blame] | 1517 | if (ext4_ext_is_uninitialized(ex1)) |
| 1518 | max_len = EXT_UNINIT_MAX_LEN; |
| 1519 | else |
| 1520 | max_len = EXT_INIT_MAX_LEN; |
| 1521 | |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1522 | ext1_ee_len = ext4_ext_get_actual_len(ex1); |
| 1523 | ext2_ee_len = ext4_ext_get_actual_len(ex2); |
| 1524 | |
| 1525 | if (le32_to_cpu(ex1->ee_block) + ext1_ee_len != |
Andrew Morton | 63f5793 | 2006-10-11 01:21:24 -0700 | [diff] [blame] | 1526 | le32_to_cpu(ex2->ee_block)) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1527 | return 0; |
| 1528 | |
Suparna Bhattacharya | 471d401 | 2006-10-11 01:21:06 -0700 | [diff] [blame] | 1529 | /* |
| 1530 | * To allow future support for preallocated extents to be added |
| 1531 | * as an RO_COMPAT feature, refuse to merge to extents if |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1532 | * this can result in the top bit of ee_len being set. |
Suparna Bhattacharya | 471d401 | 2006-10-11 01:21:06 -0700 | [diff] [blame] | 1533 | */ |
Amit Arora | 749269f | 2007-07-18 09:02:56 -0400 | [diff] [blame] | 1534 | if (ext1_ee_len + ext2_ee_len > max_len) |
Suparna Bhattacharya | 471d401 | 2006-10-11 01:21:06 -0700 | [diff] [blame] | 1535 | return 0; |
Robert P. J. Day | bbf2f9f | 2007-02-17 19:20:16 +0100 | [diff] [blame] | 1536 | #ifdef AGGRESSIVE_TEST |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1537 | if (ext1_ee_len >= 4) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1538 | return 0; |
| 1539 | #endif |
| 1540 | |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1541 | if (ext4_ext_pblock(ex1) + ext1_ee_len == ext4_ext_pblock(ex2)) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1542 | return 1; |
| 1543 | return 0; |
| 1544 | } |
| 1545 | |
| 1546 | /* |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 1547 | * This function tries to merge the "ex" extent to the next extent in the tree. |
| 1548 | * It always tries to merge towards right. If you want to merge towards |
| 1549 | * left, pass "ex - 1" as argument instead of "ex". |
| 1550 | * Returns 0 if the extents (ex and ex+1) were _not_ merged and returns |
| 1551 | * 1 if they got merged. |
| 1552 | */ |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 1553 | static int ext4_ext_try_to_merge_right(struct inode *inode, |
Theodore Ts'o | 1f109d5 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1554 | struct ext4_ext_path *path, |
| 1555 | struct ext4_extent *ex) |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 1556 | { |
| 1557 | struct ext4_extent_header *eh; |
| 1558 | unsigned int depth, len; |
| 1559 | int merge_done = 0; |
| 1560 | int uninitialized = 0; |
| 1561 | |
| 1562 | depth = ext_depth(inode); |
| 1563 | BUG_ON(path[depth].p_hdr == NULL); |
| 1564 | eh = path[depth].p_hdr; |
| 1565 | |
| 1566 | while (ex < EXT_LAST_EXTENT(eh)) { |
| 1567 | if (!ext4_can_extents_be_merged(inode, ex, ex + 1)) |
| 1568 | break; |
| 1569 | /* merge with next extent! */ |
| 1570 | if (ext4_ext_is_uninitialized(ex)) |
| 1571 | uninitialized = 1; |
| 1572 | ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex) |
| 1573 | + ext4_ext_get_actual_len(ex + 1)); |
| 1574 | if (uninitialized) |
| 1575 | ext4_ext_mark_uninitialized(ex); |
| 1576 | |
| 1577 | if (ex + 1 < EXT_LAST_EXTENT(eh)) { |
| 1578 | len = (EXT_LAST_EXTENT(eh) - ex - 1) |
| 1579 | * sizeof(struct ext4_extent); |
| 1580 | memmove(ex + 1, ex + 2, len); |
| 1581 | } |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1582 | le16_add_cpu(&eh->eh_entries, -1); |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 1583 | merge_done = 1; |
| 1584 | WARN_ON(eh->eh_entries == 0); |
| 1585 | if (!eh->eh_entries) |
Theodore Ts'o | 24676da | 2010-05-16 21:00:00 -0400 | [diff] [blame] | 1586 | EXT4_ERROR_INODE(inode, "eh->eh_entries = 0!"); |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 1587 | } |
| 1588 | |
| 1589 | return merge_done; |
| 1590 | } |
| 1591 | |
| 1592 | /* |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 1593 | * This function tries to merge the @ex extent to neighbours in the tree. |
| 1594 | * return 1 if merge left else 0. |
| 1595 | */ |
| 1596 | static int ext4_ext_try_to_merge(struct inode *inode, |
| 1597 | struct ext4_ext_path *path, |
| 1598 | struct ext4_extent *ex) { |
| 1599 | struct ext4_extent_header *eh; |
| 1600 | unsigned int depth; |
| 1601 | int merge_done = 0; |
| 1602 | int ret = 0; |
| 1603 | |
| 1604 | depth = ext_depth(inode); |
| 1605 | BUG_ON(path[depth].p_hdr == NULL); |
| 1606 | eh = path[depth].p_hdr; |
| 1607 | |
| 1608 | if (ex > EXT_FIRST_EXTENT(eh)) |
| 1609 | merge_done = ext4_ext_try_to_merge_right(inode, path, ex - 1); |
| 1610 | |
| 1611 | if (!merge_done) |
| 1612 | ret = ext4_ext_try_to_merge_right(inode, path, ex); |
| 1613 | |
| 1614 | return ret; |
| 1615 | } |
| 1616 | |
| 1617 | /* |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1618 | * check if a portion of the "newext" extent overlaps with an |
| 1619 | * existing extent. |
| 1620 | * |
| 1621 | * If there is an overlap discovered, it updates the length of the newext |
| 1622 | * such that there will be no overlap, and then returns 1. |
| 1623 | * If there is no overlap found, it returns 0. |
| 1624 | */ |
Theodore Ts'o | 1f109d5 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1625 | static unsigned int ext4_ext_check_overlap(struct inode *inode, |
| 1626 | struct ext4_extent *newext, |
| 1627 | struct ext4_ext_path *path) |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1628 | { |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1629 | ext4_lblk_t b1, b2; |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1630 | unsigned int depth, len1; |
| 1631 | unsigned int ret = 0; |
| 1632 | |
| 1633 | b1 = le32_to_cpu(newext->ee_block); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1634 | len1 = ext4_ext_get_actual_len(newext); |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1635 | depth = ext_depth(inode); |
| 1636 | if (!path[depth].p_ext) |
| 1637 | goto out; |
| 1638 | b2 = le32_to_cpu(path[depth].p_ext->ee_block); |
| 1639 | |
| 1640 | /* |
| 1641 | * get the next allocated block if the extent in the path |
Theodore Ts'o | 2b2d6d0 | 2008-07-26 16:15:44 -0400 | [diff] [blame] | 1642 | * is before the requested block(s) |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1643 | */ |
| 1644 | if (b2 < b1) { |
| 1645 | b2 = ext4_ext_next_allocated_block(path); |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1646 | if (b2 == EXT_MAX_BLOCKS) |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1647 | goto out; |
| 1648 | } |
| 1649 | |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1650 | /* check for wrap through zero on extent logical start block*/ |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1651 | if (b1 + len1 < b1) { |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1652 | len1 = EXT_MAX_BLOCKS - b1; |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1653 | newext->ee_len = cpu_to_le16(len1); |
| 1654 | ret = 1; |
| 1655 | } |
| 1656 | |
| 1657 | /* check for overlap */ |
| 1658 | if (b1 + len1 > b2) { |
| 1659 | newext->ee_len = cpu_to_le16(b2 - b1); |
| 1660 | ret = 1; |
| 1661 | } |
| 1662 | out: |
| 1663 | return ret; |
| 1664 | } |
| 1665 | |
| 1666 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1667 | * ext4_ext_insert_extent: |
| 1668 | * tries to merge requsted extent into the existing extent or |
| 1669 | * inserts requested extent as new one into the tree, |
| 1670 | * creating new leaf in the no-space case. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1671 | */ |
| 1672 | int ext4_ext_insert_extent(handle_t *handle, struct inode *inode, |
| 1673 | struct ext4_ext_path *path, |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 1674 | struct ext4_extent *newext, int flag) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1675 | { |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1676 | struct ext4_extent_header *eh; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1677 | struct ext4_extent *ex, *fex; |
| 1678 | struct ext4_extent *nearex; /* nearest extent */ |
| 1679 | struct ext4_ext_path *npath = NULL; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1680 | int depth, len, err; |
| 1681 | ext4_lblk_t next; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1682 | unsigned uninitialized = 0; |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 1683 | int flags = 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1684 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1685 | if (unlikely(ext4_ext_get_actual_len(newext) == 0)) { |
| 1686 | EXT4_ERROR_INODE(inode, "ext4_ext_get_actual_len(newext) == 0"); |
| 1687 | return -EIO; |
| 1688 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1689 | depth = ext_depth(inode); |
| 1690 | ex = path[depth].p_ext; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1691 | if (unlikely(path[depth].p_hdr == NULL)) { |
| 1692 | EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth); |
| 1693 | return -EIO; |
| 1694 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1695 | |
| 1696 | /* try to insert block into found extent and return */ |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 1697 | if (ex && !(flag & EXT4_GET_BLOCKS_PRE_IO) |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 1698 | && ext4_can_extents_be_merged(inode, ex, newext)) { |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 1699 | ext_debug("append [%d]%d block to %d:[%d]%d (from %llu)\n", |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1700 | ext4_ext_is_uninitialized(newext), |
| 1701 | ext4_ext_get_actual_len(newext), |
| 1702 | le32_to_cpu(ex->ee_block), |
| 1703 | ext4_ext_is_uninitialized(ex), |
| 1704 | ext4_ext_get_actual_len(ex), |
| 1705 | ext4_ext_pblock(ex)); |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1706 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 1707 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1708 | return err; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1709 | |
| 1710 | /* |
| 1711 | * ext4_can_extents_be_merged should have checked that either |
| 1712 | * both extents are uninitialized, or both aren't. Thus we |
| 1713 | * need to check only one of them here. |
| 1714 | */ |
| 1715 | if (ext4_ext_is_uninitialized(ex)) |
| 1716 | uninitialized = 1; |
| 1717 | ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex) |
| 1718 | + ext4_ext_get_actual_len(newext)); |
| 1719 | if (uninitialized) |
| 1720 | ext4_ext_mark_uninitialized(ex); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1721 | eh = path[depth].p_hdr; |
| 1722 | nearex = ex; |
| 1723 | goto merge; |
| 1724 | } |
| 1725 | |
| 1726 | repeat: |
| 1727 | depth = ext_depth(inode); |
| 1728 | eh = path[depth].p_hdr; |
| 1729 | if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) |
| 1730 | goto has_space; |
| 1731 | |
| 1732 | /* probably next leaf has space for us? */ |
| 1733 | fex = EXT_LAST_EXTENT(eh); |
| 1734 | next = ext4_ext_next_leaf_block(inode, path); |
| 1735 | if (le32_to_cpu(newext->ee_block) > le32_to_cpu(fex->ee_block) |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1736 | && next != EXT_MAX_BLOCKS) { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1737 | ext_debug("next leaf block - %d\n", next); |
| 1738 | BUG_ON(npath != NULL); |
| 1739 | npath = ext4_ext_find_extent(inode, next, NULL); |
| 1740 | if (IS_ERR(npath)) |
| 1741 | return PTR_ERR(npath); |
| 1742 | BUG_ON(npath->p_depth != path->p_depth); |
| 1743 | eh = npath[depth].p_hdr; |
| 1744 | if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) { |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1745 | ext_debug("next leaf isn't full(%d)\n", |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1746 | le16_to_cpu(eh->eh_entries)); |
| 1747 | path = npath; |
| 1748 | goto repeat; |
| 1749 | } |
| 1750 | ext_debug("next leaf has no free space(%d,%d)\n", |
| 1751 | le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max)); |
| 1752 | } |
| 1753 | |
| 1754 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1755 | * There is no free space in the found leaf. |
| 1756 | * We're gonna add a new leaf in the tree. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1757 | */ |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 1758 | if (flag & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) |
| 1759 | flags = EXT4_MB_USE_ROOT_BLOCKS; |
| 1760 | err = ext4_ext_create_new_leaf(handle, inode, flags, path, newext); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1761 | if (err) |
| 1762 | goto cleanup; |
| 1763 | depth = ext_depth(inode); |
| 1764 | eh = path[depth].p_hdr; |
| 1765 | |
| 1766 | has_space: |
| 1767 | nearex = path[depth].p_ext; |
| 1768 | |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1769 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 1770 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1771 | goto cleanup; |
| 1772 | |
| 1773 | if (!nearex) { |
| 1774 | /* there is no extent in this leaf, create first one */ |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 1775 | ext_debug("first extent in the leaf: %d:%llu:[%d]%d\n", |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 1776 | le32_to_cpu(newext->ee_block), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1777 | ext4_ext_pblock(newext), |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 1778 | ext4_ext_is_uninitialized(newext), |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1779 | ext4_ext_get_actual_len(newext)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1780 | path[depth].p_ext = EXT_FIRST_EXTENT(eh); |
| 1781 | } else if (le32_to_cpu(newext->ee_block) |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 1782 | > le32_to_cpu(nearex->ee_block)) { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1783 | /* BUG_ON(newext->ee_block == nearex->ee_block); */ |
| 1784 | if (nearex != EXT_LAST_EXTENT(eh)) { |
| 1785 | len = EXT_MAX_EXTENT(eh) - nearex; |
| 1786 | len = (len - 1) * sizeof(struct ext4_extent); |
| 1787 | len = len < 0 ? 0 : len; |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 1788 | ext_debug("insert %d:%llu:[%d]%d after: nearest 0x%p, " |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1789 | "move %d from 0x%p to 0x%p\n", |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 1790 | le32_to_cpu(newext->ee_block), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1791 | ext4_ext_pblock(newext), |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 1792 | ext4_ext_is_uninitialized(newext), |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1793 | ext4_ext_get_actual_len(newext), |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1794 | nearex, len, nearex + 1, nearex + 2); |
| 1795 | memmove(nearex + 2, nearex + 1, len); |
| 1796 | } |
| 1797 | path[depth].p_ext = nearex + 1; |
| 1798 | } else { |
| 1799 | BUG_ON(newext->ee_block == nearex->ee_block); |
| 1800 | len = (EXT_MAX_EXTENT(eh) - nearex) * sizeof(struct ext4_extent); |
| 1801 | len = len < 0 ? 0 : len; |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 1802 | ext_debug("insert %d:%llu:[%d]%d before: nearest 0x%p, " |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1803 | "move %d from 0x%p to 0x%p\n", |
| 1804 | le32_to_cpu(newext->ee_block), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1805 | ext4_ext_pblock(newext), |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 1806 | ext4_ext_is_uninitialized(newext), |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1807 | ext4_ext_get_actual_len(newext), |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1808 | nearex, len, nearex + 1, nearex + 2); |
| 1809 | memmove(nearex + 1, nearex, len); |
| 1810 | path[depth].p_ext = nearex; |
| 1811 | } |
| 1812 | |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1813 | le16_add_cpu(&eh->eh_entries, 1); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1814 | nearex = path[depth].p_ext; |
| 1815 | nearex->ee_block = newext->ee_block; |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1816 | ext4_ext_store_pblock(nearex, ext4_ext_pblock(newext)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1817 | nearex->ee_len = newext->ee_len; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1818 | |
| 1819 | merge: |
| 1820 | /* try to merge extents to the right */ |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 1821 | if (!(flag & EXT4_GET_BLOCKS_PRE_IO)) |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 1822 | ext4_ext_try_to_merge(inode, path, nearex); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1823 | |
| 1824 | /* try to merge extents to the left */ |
| 1825 | |
| 1826 | /* time to correct all indexes above */ |
| 1827 | err = ext4_ext_correct_indexes(handle, inode, path); |
| 1828 | if (err) |
| 1829 | goto cleanup; |
| 1830 | |
| 1831 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 1832 | |
| 1833 | cleanup: |
| 1834 | if (npath) { |
| 1835 | ext4_ext_drop_refs(npath); |
| 1836 | kfree(npath); |
| 1837 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1838 | ext4_ext_invalidate_cache(inode); |
| 1839 | return err; |
| 1840 | } |
| 1841 | |
Theodore Ts'o | 1f109d5 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1842 | static int ext4_ext_walk_space(struct inode *inode, ext4_lblk_t block, |
| 1843 | ext4_lblk_t num, ext_prepare_callback func, |
| 1844 | void *cbdata) |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 1845 | { |
| 1846 | struct ext4_ext_path *path = NULL; |
| 1847 | struct ext4_ext_cache cbex; |
| 1848 | struct ext4_extent *ex; |
| 1849 | ext4_lblk_t next, start = 0, end = 0; |
| 1850 | ext4_lblk_t last = block + num; |
| 1851 | int depth, exists, err = 0; |
| 1852 | |
| 1853 | BUG_ON(func == NULL); |
| 1854 | BUG_ON(inode == NULL); |
| 1855 | |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1856 | while (block < last && block != EXT_MAX_BLOCKS) { |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 1857 | num = last - block; |
| 1858 | /* find extent for this block */ |
Theodore Ts'o | fab3a54 | 2009-12-09 21:30:02 -0500 | [diff] [blame] | 1859 | down_read(&EXT4_I(inode)->i_data_sem); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 1860 | path = ext4_ext_find_extent(inode, block, path); |
Theodore Ts'o | fab3a54 | 2009-12-09 21:30:02 -0500 | [diff] [blame] | 1861 | up_read(&EXT4_I(inode)->i_data_sem); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 1862 | if (IS_ERR(path)) { |
| 1863 | err = PTR_ERR(path); |
| 1864 | path = NULL; |
| 1865 | break; |
| 1866 | } |
| 1867 | |
| 1868 | depth = ext_depth(inode); |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1869 | if (unlikely(path[depth].p_hdr == NULL)) { |
| 1870 | EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth); |
| 1871 | err = -EIO; |
| 1872 | break; |
| 1873 | } |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 1874 | ex = path[depth].p_ext; |
| 1875 | next = ext4_ext_next_allocated_block(path); |
| 1876 | |
| 1877 | exists = 0; |
| 1878 | if (!ex) { |
| 1879 | /* there is no extent yet, so try to allocate |
| 1880 | * all requested space */ |
| 1881 | start = block; |
| 1882 | end = block + num; |
| 1883 | } else if (le32_to_cpu(ex->ee_block) > block) { |
| 1884 | /* need to allocate space before found extent */ |
| 1885 | start = block; |
| 1886 | end = le32_to_cpu(ex->ee_block); |
| 1887 | if (block + num < end) |
| 1888 | end = block + num; |
| 1889 | } else if (block >= le32_to_cpu(ex->ee_block) |
| 1890 | + ext4_ext_get_actual_len(ex)) { |
| 1891 | /* need to allocate space after found extent */ |
| 1892 | start = block; |
| 1893 | end = block + num; |
| 1894 | if (end >= next) |
| 1895 | end = next; |
| 1896 | } else if (block >= le32_to_cpu(ex->ee_block)) { |
| 1897 | /* |
| 1898 | * some part of requested space is covered |
| 1899 | * by found extent |
| 1900 | */ |
| 1901 | start = block; |
| 1902 | end = le32_to_cpu(ex->ee_block) |
| 1903 | + ext4_ext_get_actual_len(ex); |
| 1904 | if (block + num < end) |
| 1905 | end = block + num; |
| 1906 | exists = 1; |
| 1907 | } else { |
| 1908 | BUG(); |
| 1909 | } |
| 1910 | BUG_ON(end <= start); |
| 1911 | |
| 1912 | if (!exists) { |
| 1913 | cbex.ec_block = start; |
| 1914 | cbex.ec_len = end - start; |
| 1915 | cbex.ec_start = 0; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 1916 | } else { |
| 1917 | cbex.ec_block = le32_to_cpu(ex->ee_block); |
| 1918 | cbex.ec_len = ext4_ext_get_actual_len(ex); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1919 | cbex.ec_start = ext4_ext_pblock(ex); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 1920 | } |
| 1921 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1922 | if (unlikely(cbex.ec_len == 0)) { |
| 1923 | EXT4_ERROR_INODE(inode, "cbex.ec_len == 0"); |
| 1924 | err = -EIO; |
| 1925 | break; |
| 1926 | } |
Lukas Czerner | c03f8aa | 2011-06-06 00:06:52 -0400 | [diff] [blame] | 1927 | err = func(inode, next, &cbex, ex, cbdata); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 1928 | ext4_ext_drop_refs(path); |
| 1929 | |
| 1930 | if (err < 0) |
| 1931 | break; |
| 1932 | |
| 1933 | if (err == EXT_REPEAT) |
| 1934 | continue; |
| 1935 | else if (err == EXT_BREAK) { |
| 1936 | err = 0; |
| 1937 | break; |
| 1938 | } |
| 1939 | |
| 1940 | if (ext_depth(inode) != depth) { |
| 1941 | /* depth was changed. we have to realloc path */ |
| 1942 | kfree(path); |
| 1943 | path = NULL; |
| 1944 | } |
| 1945 | |
| 1946 | block = cbex.ec_block + cbex.ec_len; |
| 1947 | } |
| 1948 | |
| 1949 | if (path) { |
| 1950 | ext4_ext_drop_refs(path); |
| 1951 | kfree(path); |
| 1952 | } |
| 1953 | |
| 1954 | return err; |
| 1955 | } |
| 1956 | |
Avantika Mathur | 09b8825 | 2006-12-06 20:41:36 -0800 | [diff] [blame] | 1957 | static void |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1958 | ext4_ext_put_in_cache(struct inode *inode, ext4_lblk_t block, |
Theodore Ts'o | b05e6ae | 2011-01-10 12:13:26 -0500 | [diff] [blame] | 1959 | __u32 len, ext4_fsblk_t start) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1960 | { |
| 1961 | struct ext4_ext_cache *cex; |
| 1962 | BUG_ON(len == 0); |
Theodore Ts'o | 2ec0ae3 | 2009-05-15 09:07:28 -0400 | [diff] [blame] | 1963 | spin_lock(&EXT4_I(inode)->i_block_reservation_lock); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1964 | cex = &EXT4_I(inode)->i_cached_extent; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1965 | cex->ec_block = block; |
| 1966 | cex->ec_len = len; |
| 1967 | cex->ec_start = start; |
Theodore Ts'o | 2ec0ae3 | 2009-05-15 09:07:28 -0400 | [diff] [blame] | 1968 | spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1969 | } |
| 1970 | |
| 1971 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1972 | * ext4_ext_put_gap_in_cache: |
| 1973 | * calculate boundaries of the gap that the requested block fits into |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1974 | * and cache this gap |
| 1975 | */ |
Avantika Mathur | 09b8825 | 2006-12-06 20:41:36 -0800 | [diff] [blame] | 1976 | static void |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1977 | ext4_ext_put_gap_in_cache(struct inode *inode, struct ext4_ext_path *path, |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1978 | ext4_lblk_t block) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1979 | { |
| 1980 | int depth = ext_depth(inode); |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1981 | unsigned long len; |
| 1982 | ext4_lblk_t lblock; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1983 | struct ext4_extent *ex; |
| 1984 | |
| 1985 | ex = path[depth].p_ext; |
| 1986 | if (ex == NULL) { |
| 1987 | /* there is no extent yet, so gap is [0;-] */ |
| 1988 | lblock = 0; |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1989 | len = EXT_MAX_BLOCKS; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1990 | ext_debug("cache gap(whole file):"); |
| 1991 | } else if (block < le32_to_cpu(ex->ee_block)) { |
| 1992 | lblock = block; |
| 1993 | len = le32_to_cpu(ex->ee_block) - block; |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1994 | ext_debug("cache gap(before): %u [%u:%u]", |
| 1995 | block, |
| 1996 | le32_to_cpu(ex->ee_block), |
| 1997 | ext4_ext_get_actual_len(ex)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1998 | } else if (block >= le32_to_cpu(ex->ee_block) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1999 | + ext4_ext_get_actual_len(ex)) { |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2000 | ext4_lblk_t next; |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 2001 | lblock = le32_to_cpu(ex->ee_block) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2002 | + ext4_ext_get_actual_len(ex); |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2003 | |
| 2004 | next = ext4_ext_next_allocated_block(path); |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2005 | ext_debug("cache gap(after): [%u:%u] %u", |
| 2006 | le32_to_cpu(ex->ee_block), |
| 2007 | ext4_ext_get_actual_len(ex), |
| 2008 | block); |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2009 | BUG_ON(next == lblock); |
| 2010 | len = next - lblock; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2011 | } else { |
| 2012 | lblock = len = 0; |
| 2013 | BUG(); |
| 2014 | } |
| 2015 | |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2016 | ext_debug(" -> %u:%lu\n", lblock, len); |
Theodore Ts'o | b05e6ae | 2011-01-10 12:13:26 -0500 | [diff] [blame] | 2017 | ext4_ext_put_in_cache(inode, lblock, len, 0); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2018 | } |
| 2019 | |
Theodore Ts'o | b05e6ae | 2011-01-10 12:13:26 -0500 | [diff] [blame] | 2020 | /* |
Allison Henderson | a4bb6b6 | 2011-05-25 07:41:50 -0400 | [diff] [blame] | 2021 | * ext4_ext_in_cache() |
| 2022 | * Checks to see if the given block is in the cache. |
| 2023 | * If it is, the cached extent is stored in the given |
| 2024 | * cache extent pointer. If the cached extent is a hole, |
| 2025 | * this routine should be used instead of |
| 2026 | * ext4_ext_in_cache if the calling function needs to |
| 2027 | * know the size of the hole. |
| 2028 | * |
| 2029 | * @inode: The files inode |
| 2030 | * @block: The block to look for in the cache |
| 2031 | * @ex: Pointer where the cached extent will be stored |
| 2032 | * if it contains block |
| 2033 | * |
Theodore Ts'o | b05e6ae | 2011-01-10 12:13:26 -0500 | [diff] [blame] | 2034 | * Return 0 if cache is invalid; 1 if the cache is valid |
| 2035 | */ |
Allison Henderson | a4bb6b6 | 2011-05-25 07:41:50 -0400 | [diff] [blame] | 2036 | static int ext4_ext_check_cache(struct inode *inode, ext4_lblk_t block, |
| 2037 | struct ext4_ext_cache *ex){ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2038 | struct ext4_ext_cache *cex; |
Vivek Haldar | 77f4135 | 2011-05-22 21:24:16 -0400 | [diff] [blame] | 2039 | struct ext4_sb_info *sbi; |
Theodore Ts'o | b05e6ae | 2011-01-10 12:13:26 -0500 | [diff] [blame] | 2040 | int ret = 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2041 | |
Theodore Ts'o | 60e6679 | 2010-05-17 07:00:00 -0400 | [diff] [blame] | 2042 | /* |
Theodore Ts'o | 2ec0ae3 | 2009-05-15 09:07:28 -0400 | [diff] [blame] | 2043 | * We borrow i_block_reservation_lock to protect i_cached_extent |
| 2044 | */ |
| 2045 | spin_lock(&EXT4_I(inode)->i_block_reservation_lock); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2046 | cex = &EXT4_I(inode)->i_cached_extent; |
Vivek Haldar | 77f4135 | 2011-05-22 21:24:16 -0400 | [diff] [blame] | 2047 | sbi = EXT4_SB(inode->i_sb); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2048 | |
| 2049 | /* has cache valid data? */ |
Theodore Ts'o | b05e6ae | 2011-01-10 12:13:26 -0500 | [diff] [blame] | 2050 | if (cex->ec_len == 0) |
Theodore Ts'o | 2ec0ae3 | 2009-05-15 09:07:28 -0400 | [diff] [blame] | 2051 | goto errout; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2052 | |
Akinobu Mita | 731eb1a | 2010-03-03 23:55:01 -0500 | [diff] [blame] | 2053 | if (in_range(block, cex->ec_block, cex->ec_len)) { |
Allison Henderson | a4bb6b6 | 2011-05-25 07:41:50 -0400 | [diff] [blame] | 2054 | memcpy(ex, cex, sizeof(struct ext4_ext_cache)); |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2055 | ext_debug("%u cached by %u:%u:%llu\n", |
| 2056 | block, |
| 2057 | cex->ec_block, cex->ec_len, cex->ec_start); |
Theodore Ts'o | b05e6ae | 2011-01-10 12:13:26 -0500 | [diff] [blame] | 2058 | ret = 1; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2059 | } |
Theodore Ts'o | 2ec0ae3 | 2009-05-15 09:07:28 -0400 | [diff] [blame] | 2060 | errout: |
Vivek Haldar | 77f4135 | 2011-05-22 21:24:16 -0400 | [diff] [blame] | 2061 | if (!ret) |
| 2062 | sbi->extent_cache_misses++; |
| 2063 | else |
| 2064 | sbi->extent_cache_hits++; |
Theodore Ts'o | 2ec0ae3 | 2009-05-15 09:07:28 -0400 | [diff] [blame] | 2065 | spin_unlock(&EXT4_I(inode)->i_block_reservation_lock); |
| 2066 | return ret; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2067 | } |
| 2068 | |
| 2069 | /* |
Allison Henderson | a4bb6b6 | 2011-05-25 07:41:50 -0400 | [diff] [blame] | 2070 | * ext4_ext_in_cache() |
| 2071 | * Checks to see if the given block is in the cache. |
| 2072 | * If it is, the cached extent is stored in the given |
| 2073 | * extent pointer. |
| 2074 | * |
| 2075 | * @inode: The files inode |
| 2076 | * @block: The block to look for in the cache |
| 2077 | * @ex: Pointer where the cached extent will be stored |
| 2078 | * if it contains block |
| 2079 | * |
| 2080 | * Return 0 if cache is invalid; 1 if the cache is valid |
| 2081 | */ |
| 2082 | static int |
| 2083 | ext4_ext_in_cache(struct inode *inode, ext4_lblk_t block, |
| 2084 | struct ext4_extent *ex) |
| 2085 | { |
| 2086 | struct ext4_ext_cache cex; |
| 2087 | int ret = 0; |
| 2088 | |
| 2089 | if (ext4_ext_check_cache(inode, block, &cex)) { |
| 2090 | ex->ee_block = cpu_to_le32(cex.ec_block); |
| 2091 | ext4_ext_store_pblock(ex, cex.ec_start); |
| 2092 | ex->ee_len = cpu_to_le16(cex.ec_len); |
| 2093 | ret = 1; |
| 2094 | } |
| 2095 | |
| 2096 | return ret; |
| 2097 | } |
| 2098 | |
| 2099 | |
| 2100 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2101 | * ext4_ext_rm_idx: |
| 2102 | * removes index from the index block. |
| 2103 | * It's used in truncate case only, thus all requests are for |
| 2104 | * last index in the block only. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2105 | */ |
Aneesh Kumar K.V | 1d03ec9 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2106 | static int ext4_ext_rm_idx(handle_t *handle, struct inode *inode, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2107 | struct ext4_ext_path *path) |
| 2108 | { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2109 | int err; |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 2110 | ext4_fsblk_t leaf; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2111 | |
| 2112 | /* free index block */ |
| 2113 | path--; |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 2114 | leaf = ext4_idx_pblock(path->p_idx); |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 2115 | if (unlikely(path->p_hdr->eh_entries == 0)) { |
| 2116 | EXT4_ERROR_INODE(inode, "path->p_hdr->eh_entries == 0"); |
| 2117 | return -EIO; |
| 2118 | } |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 2119 | err = ext4_ext_get_access(handle, inode, path); |
| 2120 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2121 | return err; |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 2122 | le16_add_cpu(&path->p_hdr->eh_entries, -1); |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 2123 | err = ext4_ext_dirty(handle, inode, path); |
| 2124 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2125 | return err; |
Mingming Cao | 2ae0210 | 2006-10-11 01:21:11 -0700 | [diff] [blame] | 2126 | ext_debug("index is empty, remove it, free block %llu\n", leaf); |
Peter Huewe | 7dc5761 | 2011-02-21 21:01:42 -0500 | [diff] [blame] | 2127 | ext4_free_blocks(handle, inode, NULL, leaf, 1, |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 2128 | EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2129 | return err; |
| 2130 | } |
| 2131 | |
| 2132 | /* |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2133 | * ext4_ext_calc_credits_for_single_extent: |
| 2134 | * This routine returns max. credits that needed to insert an extent |
| 2135 | * to the extent tree. |
| 2136 | * When pass the actual path, the caller should calculate credits |
| 2137 | * under i_data_sem. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2138 | */ |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2139 | int ext4_ext_calc_credits_for_single_extent(struct inode *inode, int nrblocks, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2140 | struct ext4_ext_path *path) |
| 2141 | { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2142 | if (path) { |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2143 | int depth = ext_depth(inode); |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 2144 | int ret = 0; |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2145 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2146 | /* probably there is space in leaf? */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2147 | if (le16_to_cpu(path[depth].p_hdr->eh_entries) |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2148 | < le16_to_cpu(path[depth].p_hdr->eh_max)) { |
| 2149 | |
| 2150 | /* |
| 2151 | * There are some space in the leaf tree, no |
| 2152 | * need to account for leaf block credit |
| 2153 | * |
| 2154 | * bitmaps and block group descriptor blocks |
| 2155 | * and other metadat blocks still need to be |
| 2156 | * accounted. |
| 2157 | */ |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2158 | /* 1 bitmap, 1 block group descriptor */ |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2159 | ret = 2 + EXT4_META_TRANS_BLOCKS(inode->i_sb); |
Aneesh Kumar K.V | 5887e98 | 2009-07-05 23:12:04 -0400 | [diff] [blame] | 2160 | return ret; |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2161 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2162 | } |
| 2163 | |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2164 | return ext4_chunk_trans_blocks(inode, nrblocks); |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2165 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2166 | |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2167 | /* |
| 2168 | * How many index/leaf blocks need to change/allocate to modify nrblocks? |
| 2169 | * |
| 2170 | * if nrblocks are fit in a single extent (chunk flag is 1), then |
| 2171 | * in the worse case, each tree level index/leaf need to be changed |
| 2172 | * if the tree split due to insert a new extent, then the old tree |
| 2173 | * index/leaf need to be updated too |
| 2174 | * |
| 2175 | * If the nrblocks are discontiguous, they could cause |
| 2176 | * the whole tree split more than once, but this is really rare. |
| 2177 | */ |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2178 | int ext4_ext_index_trans_blocks(struct inode *inode, int nrblocks, int chunk) |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2179 | { |
| 2180 | int index; |
| 2181 | int depth = ext_depth(inode); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2182 | |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2183 | if (chunk) |
| 2184 | index = depth * 2; |
| 2185 | else |
| 2186 | index = depth * 3; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2187 | |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2188 | return index; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2189 | } |
| 2190 | |
| 2191 | static int ext4_remove_blocks(handle_t *handle, struct inode *inode, |
| 2192 | struct ext4_extent *ex, |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2193 | ext4_lblk_t from, ext4_lblk_t to) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2194 | { |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2195 | unsigned short ee_len = ext4_ext_get_actual_len(ex); |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 2196 | int flags = EXT4_FREE_BLOCKS_FORGET; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2197 | |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2198 | if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 2199 | flags |= EXT4_FREE_BLOCKS_METADATA; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2200 | #ifdef EXTENTS_STATS |
| 2201 | { |
| 2202 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2203 | spin_lock(&sbi->s_ext_stats_lock); |
| 2204 | sbi->s_ext_blocks += ee_len; |
| 2205 | sbi->s_ext_extents++; |
| 2206 | if (ee_len < sbi->s_ext_min) |
| 2207 | sbi->s_ext_min = ee_len; |
| 2208 | if (ee_len > sbi->s_ext_max) |
| 2209 | sbi->s_ext_max = ee_len; |
| 2210 | if (ext_depth(inode) > sbi->s_depth_max) |
| 2211 | sbi->s_depth_max = ext_depth(inode); |
| 2212 | spin_unlock(&sbi->s_ext_stats_lock); |
| 2213 | } |
| 2214 | #endif |
| 2215 | if (from >= le32_to_cpu(ex->ee_block) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2216 | && to == le32_to_cpu(ex->ee_block) + ee_len - 1) { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2217 | /* tail removal */ |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2218 | ext4_lblk_t num; |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 2219 | ext4_fsblk_t start; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2220 | |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2221 | num = le32_to_cpu(ex->ee_block) + ee_len - from; |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 2222 | start = ext4_ext_pblock(ex) + ee_len - num; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2223 | ext_debug("free last %u blocks starting %llu\n", num, start); |
Peter Huewe | 7dc5761 | 2011-02-21 21:01:42 -0500 | [diff] [blame] | 2224 | ext4_free_blocks(handle, inode, NULL, start, num, flags); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2225 | } else if (from == le32_to_cpu(ex->ee_block) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2226 | && to <= le32_to_cpu(ex->ee_block) + ee_len - 1) { |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2227 | /* head removal */ |
| 2228 | ext4_lblk_t num; |
| 2229 | ext4_fsblk_t start; |
| 2230 | |
| 2231 | num = to - from; |
| 2232 | start = ext4_ext_pblock(ex); |
| 2233 | |
| 2234 | ext_debug("free first %u blocks starting %llu\n", num, start); |
| 2235 | ext4_free_blocks(handle, inode, 0, start, num, flags); |
| 2236 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2237 | } else { |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2238 | printk(KERN_INFO "strange request: removal(2) " |
| 2239 | "%u-%u from %u:%u\n", |
| 2240 | from, to, le32_to_cpu(ex->ee_block), ee_len); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2241 | } |
| 2242 | return 0; |
| 2243 | } |
| 2244 | |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2245 | |
| 2246 | /* |
| 2247 | * ext4_ext_rm_leaf() Removes the extents associated with the |
| 2248 | * blocks appearing between "start" and "end", and splits the extents |
| 2249 | * if "start" and "end" appear in the same extent |
| 2250 | * |
| 2251 | * @handle: The journal handle |
| 2252 | * @inode: The files inode |
| 2253 | * @path: The path to the leaf |
| 2254 | * @start: The first block to remove |
| 2255 | * @end: The last block to remove |
| 2256 | */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2257 | static int |
| 2258 | ext4_ext_rm_leaf(handle_t *handle, struct inode *inode, |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2259 | struct ext4_ext_path *path, ext4_lblk_t start, |
| 2260 | ext4_lblk_t end) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2261 | { |
| 2262 | int err = 0, correct_index = 0; |
| 2263 | int depth = ext_depth(inode), credits; |
| 2264 | struct ext4_extent_header *eh; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2265 | ext4_lblk_t a, b, block; |
| 2266 | unsigned num; |
| 2267 | ext4_lblk_t ex_ee_block; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2268 | unsigned short ex_ee_len; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2269 | unsigned uninitialized = 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2270 | struct ext4_extent *ex; |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2271 | struct ext4_map_blocks map; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2272 | |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 2273 | /* the header must be checked already in ext4_ext_remove_space() */ |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2274 | ext_debug("truncate since %u in leaf\n", start); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2275 | if (!path[depth].p_hdr) |
| 2276 | path[depth].p_hdr = ext_block_hdr(path[depth].p_bh); |
| 2277 | eh = path[depth].p_hdr; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 2278 | if (unlikely(path[depth].p_hdr == NULL)) { |
| 2279 | EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth); |
| 2280 | return -EIO; |
| 2281 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2282 | /* find where to start removing */ |
| 2283 | ex = EXT_LAST_EXTENT(eh); |
| 2284 | |
| 2285 | ex_ee_block = le32_to_cpu(ex->ee_block); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2286 | ex_ee_len = ext4_ext_get_actual_len(ex); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2287 | |
| 2288 | while (ex >= EXT_FIRST_EXTENT(eh) && |
| 2289 | ex_ee_block + ex_ee_len > start) { |
Aneesh Kumar K.V | a41f207 | 2009-06-10 14:22:55 -0400 | [diff] [blame] | 2290 | |
| 2291 | if (ext4_ext_is_uninitialized(ex)) |
| 2292 | uninitialized = 1; |
| 2293 | else |
| 2294 | uninitialized = 0; |
| 2295 | |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 2296 | ext_debug("remove ext %u:[%d]%d\n", ex_ee_block, |
| 2297 | uninitialized, ex_ee_len); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2298 | path[depth].p_ext = ex; |
| 2299 | |
| 2300 | a = ex_ee_block > start ? ex_ee_block : start; |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2301 | b = ex_ee_block+ex_ee_len - 1 < end ? |
| 2302 | ex_ee_block+ex_ee_len - 1 : end; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2303 | |
| 2304 | ext_debug(" border %u:%u\n", a, b); |
| 2305 | |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2306 | /* If this extent is beyond the end of the hole, skip it */ |
| 2307 | if (end <= ex_ee_block) { |
| 2308 | ex--; |
| 2309 | ex_ee_block = le32_to_cpu(ex->ee_block); |
| 2310 | ex_ee_len = ext4_ext_get_actual_len(ex); |
| 2311 | continue; |
| 2312 | } else if (a != ex_ee_block && |
| 2313 | b != ex_ee_block + ex_ee_len - 1) { |
| 2314 | /* |
| 2315 | * If this is a truncate, then this condition should |
| 2316 | * never happen because at least one of the end points |
| 2317 | * needs to be on the edge of the extent. |
| 2318 | */ |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 2319 | if (end == EXT_MAX_BLOCKS - 1) { |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2320 | ext_debug(" bad truncate %u:%u\n", |
| 2321 | start, end); |
| 2322 | block = 0; |
| 2323 | num = 0; |
| 2324 | err = -EIO; |
| 2325 | goto out; |
| 2326 | } |
| 2327 | /* |
| 2328 | * else this is a hole punch, so the extent needs to |
| 2329 | * be split since neither edge of the hole is on the |
| 2330 | * extent edge |
| 2331 | */ |
| 2332 | else{ |
| 2333 | map.m_pblk = ext4_ext_pblock(ex); |
| 2334 | map.m_lblk = ex_ee_block; |
| 2335 | map.m_len = b - ex_ee_block; |
| 2336 | |
| 2337 | err = ext4_split_extent(handle, |
| 2338 | inode, path, &map, 0, |
| 2339 | EXT4_GET_BLOCKS_PUNCH_OUT_EXT | |
| 2340 | EXT4_GET_BLOCKS_PRE_IO); |
| 2341 | |
| 2342 | if (err < 0) |
| 2343 | goto out; |
| 2344 | |
| 2345 | ex_ee_len = ext4_ext_get_actual_len(ex); |
| 2346 | |
| 2347 | b = ex_ee_block+ex_ee_len - 1 < end ? |
| 2348 | ex_ee_block+ex_ee_len - 1 : end; |
| 2349 | |
| 2350 | /* Then remove tail of this extent */ |
| 2351 | block = ex_ee_block; |
| 2352 | num = a - block; |
| 2353 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2354 | } else if (a != ex_ee_block) { |
| 2355 | /* remove tail of the extent */ |
| 2356 | block = ex_ee_block; |
| 2357 | num = a - block; |
| 2358 | } else if (b != ex_ee_block + ex_ee_len - 1) { |
| 2359 | /* remove head of the extent */ |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2360 | block = b; |
| 2361 | num = ex_ee_block + ex_ee_len - b; |
| 2362 | |
| 2363 | /* |
| 2364 | * If this is a truncate, this condition |
| 2365 | * should never happen |
| 2366 | */ |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 2367 | if (end == EXT_MAX_BLOCKS - 1) { |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2368 | ext_debug(" bad truncate %u:%u\n", |
| 2369 | start, end); |
| 2370 | err = -EIO; |
| 2371 | goto out; |
| 2372 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2373 | } else { |
| 2374 | /* remove whole extent: excellent! */ |
| 2375 | block = ex_ee_block; |
| 2376 | num = 0; |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2377 | if (a != ex_ee_block) { |
| 2378 | ext_debug(" bad truncate %u:%u\n", |
| 2379 | start, end); |
| 2380 | err = -EIO; |
| 2381 | goto out; |
| 2382 | } |
| 2383 | |
| 2384 | if (b != ex_ee_block + ex_ee_len - 1) { |
| 2385 | ext_debug(" bad truncate %u:%u\n", |
| 2386 | start, end); |
| 2387 | err = -EIO; |
| 2388 | goto out; |
| 2389 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2390 | } |
| 2391 | |
Theodore Ts'o | 34071da | 2008-08-01 21:59:19 -0400 | [diff] [blame] | 2392 | /* |
| 2393 | * 3 for leaf, sb, and inode plus 2 (bmap and group |
| 2394 | * descriptor) for each block group; assume two block |
| 2395 | * groups plus ex_ee_len/blocks_per_block_group for |
| 2396 | * the worst case |
| 2397 | */ |
| 2398 | credits = 7 + 2*(ex_ee_len/EXT4_BLOCKS_PER_GROUP(inode->i_sb)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2399 | if (ex == EXT_FIRST_EXTENT(eh)) { |
| 2400 | correct_index = 1; |
| 2401 | credits += (ext_depth(inode)) + 1; |
| 2402 | } |
Dmitry Monakhov | 5aca07e | 2009-12-08 22:42:15 -0500 | [diff] [blame] | 2403 | credits += EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2404 | |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 2405 | err = ext4_ext_truncate_extend_restart(handle, inode, credits); |
Shen Feng | 9102e4f | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2406 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2407 | goto out; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2408 | |
| 2409 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 2410 | if (err) |
| 2411 | goto out; |
| 2412 | |
| 2413 | err = ext4_remove_blocks(handle, inode, ex, a, b); |
| 2414 | if (err) |
| 2415 | goto out; |
| 2416 | |
| 2417 | if (num == 0) { |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2418 | /* this extent is removed; mark slot entirely unused */ |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 2419 | ext4_ext_store_pblock(ex, 0); |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2420 | } else if (block != ex_ee_block) { |
| 2421 | /* |
| 2422 | * If this was a head removal, then we need to update |
| 2423 | * the physical block since it is now at a different |
| 2424 | * location |
| 2425 | */ |
| 2426 | ext4_ext_store_pblock(ex, ext4_ext_pblock(ex) + (b-a)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2427 | } |
| 2428 | |
| 2429 | ex->ee_block = cpu_to_le32(block); |
| 2430 | ex->ee_len = cpu_to_le16(num); |
Amit Arora | 749269f | 2007-07-18 09:02:56 -0400 | [diff] [blame] | 2431 | /* |
| 2432 | * Do not mark uninitialized if all the blocks in the |
| 2433 | * extent have been removed. |
| 2434 | */ |
| 2435 | if (uninitialized && num) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2436 | ext4_ext_mark_uninitialized(ex); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2437 | |
| 2438 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 2439 | if (err) |
| 2440 | goto out; |
| 2441 | |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2442 | /* |
| 2443 | * If the extent was completely released, |
| 2444 | * we need to remove it from the leaf |
| 2445 | */ |
| 2446 | if (num == 0) { |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 2447 | if (end != EXT_MAX_BLOCKS - 1) { |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2448 | /* |
| 2449 | * For hole punching, we need to scoot all the |
| 2450 | * extents up when an extent is removed so that |
| 2451 | * we dont have blank extents in the middle |
| 2452 | */ |
| 2453 | memmove(ex, ex+1, (EXT_LAST_EXTENT(eh) - ex) * |
| 2454 | sizeof(struct ext4_extent)); |
| 2455 | |
| 2456 | /* Now get rid of the one at the end */ |
| 2457 | memset(EXT_LAST_EXTENT(eh), 0, |
| 2458 | sizeof(struct ext4_extent)); |
| 2459 | } |
| 2460 | le16_add_cpu(&eh->eh_entries, -1); |
| 2461 | } |
| 2462 | |
Mingming Cao | 2ae0210 | 2006-10-11 01:21:11 -0700 | [diff] [blame] | 2463 | ext_debug("new extent: %u:%u:%llu\n", block, num, |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 2464 | ext4_ext_pblock(ex)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2465 | ex--; |
| 2466 | ex_ee_block = le32_to_cpu(ex->ee_block); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2467 | ex_ee_len = ext4_ext_get_actual_len(ex); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2468 | } |
| 2469 | |
| 2470 | if (correct_index && eh->eh_entries) |
| 2471 | err = ext4_ext_correct_indexes(handle, inode, path); |
| 2472 | |
| 2473 | /* if this leaf is free, then we should |
| 2474 | * remove it from index block above */ |
| 2475 | if (err == 0 && eh->eh_entries == 0 && path[depth].p_bh != NULL) |
| 2476 | err = ext4_ext_rm_idx(handle, inode, path + depth); |
| 2477 | |
| 2478 | out: |
| 2479 | return err; |
| 2480 | } |
| 2481 | |
| 2482 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2483 | * ext4_ext_more_to_rm: |
| 2484 | * returns 1 if current index has to be freed (even partial) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2485 | */ |
Avantika Mathur | 09b8825 | 2006-12-06 20:41:36 -0800 | [diff] [blame] | 2486 | static int |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2487 | ext4_ext_more_to_rm(struct ext4_ext_path *path) |
| 2488 | { |
| 2489 | BUG_ON(path->p_idx == NULL); |
| 2490 | |
| 2491 | if (path->p_idx < EXT_FIRST_INDEX(path->p_hdr)) |
| 2492 | return 0; |
| 2493 | |
| 2494 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2495 | * if truncate on deeper level happened, it wasn't partial, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2496 | * so we have to consider current index for truncation |
| 2497 | */ |
| 2498 | if (le16_to_cpu(path->p_hdr->eh_entries) == path->p_block) |
| 2499 | return 0; |
| 2500 | return 1; |
| 2501 | } |
| 2502 | |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2503 | static int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start, |
| 2504 | ext4_lblk_t end) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2505 | { |
| 2506 | struct super_block *sb = inode->i_sb; |
| 2507 | int depth = ext_depth(inode); |
| 2508 | struct ext4_ext_path *path; |
| 2509 | handle_t *handle; |
Dmitry Monakhov | 0617b83 | 2010-05-17 01:00:00 -0400 | [diff] [blame] | 2510 | int i, err; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2511 | |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2512 | ext_debug("truncate since %u\n", start); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2513 | |
| 2514 | /* probably first extent we're gonna free will be last in block */ |
| 2515 | handle = ext4_journal_start(inode, depth + 1); |
| 2516 | if (IS_ERR(handle)) |
| 2517 | return PTR_ERR(handle); |
| 2518 | |
Dmitry Monakhov | 0617b83 | 2010-05-17 01:00:00 -0400 | [diff] [blame] | 2519 | again: |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2520 | ext4_ext_invalidate_cache(inode); |
| 2521 | |
| 2522 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2523 | * We start scanning from right side, freeing all the blocks |
| 2524 | * after i_size and walking into the tree depth-wise. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2525 | */ |
Dmitry Monakhov | 0617b83 | 2010-05-17 01:00:00 -0400 | [diff] [blame] | 2526 | depth = ext_depth(inode); |
Josef Bacik | 216553c | 2008-04-29 22:02:02 -0400 | [diff] [blame] | 2527 | path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1), GFP_NOFS); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2528 | if (path == NULL) { |
| 2529 | ext4_journal_stop(handle); |
| 2530 | return -ENOMEM; |
| 2531 | } |
Dmitry Monakhov | 0617b83 | 2010-05-17 01:00:00 -0400 | [diff] [blame] | 2532 | path[0].p_depth = depth; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2533 | path[0].p_hdr = ext_inode_hdr(inode); |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 2534 | if (ext4_ext_check(inode, path[0].p_hdr, depth)) { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2535 | err = -EIO; |
| 2536 | goto out; |
| 2537 | } |
Dmitry Monakhov | 0617b83 | 2010-05-17 01:00:00 -0400 | [diff] [blame] | 2538 | i = err = 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2539 | |
| 2540 | while (i >= 0 && err == 0) { |
| 2541 | if (i == depth) { |
| 2542 | /* this is leaf block */ |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2543 | err = ext4_ext_rm_leaf(handle, inode, path, |
| 2544 | start, end); |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2545 | /* root level has p_bh == NULL, brelse() eats this */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2546 | brelse(path[i].p_bh); |
| 2547 | path[i].p_bh = NULL; |
| 2548 | i--; |
| 2549 | continue; |
| 2550 | } |
| 2551 | |
| 2552 | /* this is index block */ |
| 2553 | if (!path[i].p_hdr) { |
| 2554 | ext_debug("initialize header\n"); |
| 2555 | path[i].p_hdr = ext_block_hdr(path[i].p_bh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2556 | } |
| 2557 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2558 | if (!path[i].p_idx) { |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2559 | /* this level hasn't been touched yet */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2560 | path[i].p_idx = EXT_LAST_INDEX(path[i].p_hdr); |
| 2561 | path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries)+1; |
| 2562 | ext_debug("init index ptr: hdr 0x%p, num %d\n", |
| 2563 | path[i].p_hdr, |
| 2564 | le16_to_cpu(path[i].p_hdr->eh_entries)); |
| 2565 | } else { |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2566 | /* we were already here, see at next index */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2567 | path[i].p_idx--; |
| 2568 | } |
| 2569 | |
| 2570 | ext_debug("level %d - index, first 0x%p, cur 0x%p\n", |
| 2571 | i, EXT_FIRST_INDEX(path[i].p_hdr), |
| 2572 | path[i].p_idx); |
| 2573 | if (ext4_ext_more_to_rm(path + i)) { |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 2574 | struct buffer_head *bh; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2575 | /* go to the next level */ |
Mingming Cao | 2ae0210 | 2006-10-11 01:21:11 -0700 | [diff] [blame] | 2576 | ext_debug("move to level %d (block %llu)\n", |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 2577 | i + 1, ext4_idx_pblock(path[i].p_idx)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2578 | memset(path + i + 1, 0, sizeof(*path)); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 2579 | bh = sb_bread(sb, ext4_idx_pblock(path[i].p_idx)); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 2580 | if (!bh) { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2581 | /* should we reset i_size? */ |
| 2582 | err = -EIO; |
| 2583 | break; |
| 2584 | } |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 2585 | if (WARN_ON(i + 1 > depth)) { |
| 2586 | err = -EIO; |
| 2587 | break; |
| 2588 | } |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 2589 | if (ext4_ext_check(inode, ext_block_hdr(bh), |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 2590 | depth - i - 1)) { |
| 2591 | err = -EIO; |
| 2592 | break; |
| 2593 | } |
| 2594 | path[i + 1].p_bh = bh; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2595 | |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2596 | /* save actual number of indexes since this |
| 2597 | * number is changed at the next iteration */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2598 | path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries); |
| 2599 | i++; |
| 2600 | } else { |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2601 | /* we finished processing this index, go up */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2602 | if (path[i].p_hdr->eh_entries == 0 && i > 0) { |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2603 | /* index is empty, remove it; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2604 | * handle must be already prepared by the |
| 2605 | * truncatei_leaf() */ |
| 2606 | err = ext4_ext_rm_idx(handle, inode, path + i); |
| 2607 | } |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2608 | /* root level has p_bh == NULL, brelse() eats this */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2609 | brelse(path[i].p_bh); |
| 2610 | path[i].p_bh = NULL; |
| 2611 | i--; |
| 2612 | ext_debug("return to level %d\n", i); |
| 2613 | } |
| 2614 | } |
| 2615 | |
| 2616 | /* TODO: flexible tree reduction should be here */ |
| 2617 | if (path->p_hdr->eh_entries == 0) { |
| 2618 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2619 | * truncate to zero freed all the tree, |
| 2620 | * so we need to correct eh_depth |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2621 | */ |
| 2622 | err = ext4_ext_get_access(handle, inode, path); |
| 2623 | if (err == 0) { |
| 2624 | ext_inode_hdr(inode)->eh_depth = 0; |
| 2625 | ext_inode_hdr(inode)->eh_max = |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 2626 | cpu_to_le16(ext4_ext_space_root(inode, 0)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2627 | err = ext4_ext_dirty(handle, inode, path); |
| 2628 | } |
| 2629 | } |
| 2630 | out: |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2631 | ext4_ext_drop_refs(path); |
| 2632 | kfree(path); |
Dmitry Monakhov | 0617b83 | 2010-05-17 01:00:00 -0400 | [diff] [blame] | 2633 | if (err == -EAGAIN) |
| 2634 | goto again; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2635 | ext4_journal_stop(handle); |
| 2636 | |
| 2637 | return err; |
| 2638 | } |
| 2639 | |
| 2640 | /* |
| 2641 | * called at mount time |
| 2642 | */ |
| 2643 | void ext4_ext_init(struct super_block *sb) |
| 2644 | { |
| 2645 | /* |
| 2646 | * possible initialization would be here |
| 2647 | */ |
| 2648 | |
Theodore Ts'o | 83982b6 | 2009-01-06 14:53:16 -0500 | [diff] [blame] | 2649 | if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) { |
Theodore Ts'o | 90576c0 | 2009-09-29 15:51:30 -0400 | [diff] [blame] | 2650 | #if defined(AGGRESSIVE_TEST) || defined(CHECK_BINSEARCH) || defined(EXTENTS_STATS) |
Theodore Ts'o | 4776004 | 2008-09-08 23:00:52 -0400 | [diff] [blame] | 2651 | printk(KERN_INFO "EXT4-fs: file extents enabled"); |
Robert P. J. Day | bbf2f9f | 2007-02-17 19:20:16 +0100 | [diff] [blame] | 2652 | #ifdef AGGRESSIVE_TEST |
| 2653 | printk(", aggressive tests"); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2654 | #endif |
| 2655 | #ifdef CHECK_BINSEARCH |
| 2656 | printk(", check binsearch"); |
| 2657 | #endif |
| 2658 | #ifdef EXTENTS_STATS |
| 2659 | printk(", stats"); |
| 2660 | #endif |
| 2661 | printk("\n"); |
Theodore Ts'o | 90576c0 | 2009-09-29 15:51:30 -0400 | [diff] [blame] | 2662 | #endif |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2663 | #ifdef EXTENTS_STATS |
| 2664 | spin_lock_init(&EXT4_SB(sb)->s_ext_stats_lock); |
| 2665 | EXT4_SB(sb)->s_ext_min = 1 << 30; |
| 2666 | EXT4_SB(sb)->s_ext_max = 0; |
| 2667 | #endif |
| 2668 | } |
| 2669 | } |
| 2670 | |
| 2671 | /* |
| 2672 | * called at umount time |
| 2673 | */ |
| 2674 | void ext4_ext_release(struct super_block *sb) |
| 2675 | { |
Theodore Ts'o | 83982b6 | 2009-01-06 14:53:16 -0500 | [diff] [blame] | 2676 | if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2677 | return; |
| 2678 | |
| 2679 | #ifdef EXTENTS_STATS |
| 2680 | if (EXT4_SB(sb)->s_ext_blocks && EXT4_SB(sb)->s_ext_extents) { |
| 2681 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 2682 | printk(KERN_ERR "EXT4-fs: %lu blocks in %lu extents (%lu ave)\n", |
| 2683 | sbi->s_ext_blocks, sbi->s_ext_extents, |
| 2684 | sbi->s_ext_blocks / sbi->s_ext_extents); |
| 2685 | printk(KERN_ERR "EXT4-fs: extents: %lu min, %lu max, max depth %lu\n", |
| 2686 | sbi->s_ext_min, sbi->s_ext_max, sbi->s_depth_max); |
| 2687 | } |
| 2688 | #endif |
| 2689 | } |
| 2690 | |
Aneesh Kumar K.V | 093a088 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 2691 | /* FIXME!! we need to try to merge to left or right after zero-out */ |
| 2692 | static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex) |
| 2693 | { |
Lukas Czerner | 2407518 | 2010-10-27 21:30:06 -0400 | [diff] [blame] | 2694 | ext4_fsblk_t ee_pblock; |
| 2695 | unsigned int ee_len; |
Jing Zhang | b720303 | 2010-05-12 00:00:00 -0400 | [diff] [blame] | 2696 | int ret; |
Aneesh Kumar K.V | 093a088 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 2697 | |
Aneesh Kumar K.V | 093a088 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 2698 | ee_len = ext4_ext_get_actual_len(ex); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 2699 | ee_pblock = ext4_ext_pblock(ex); |
Aneesh Kumar K.V | 093a088 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 2700 | |
Theodore Ts'o | a107e5a | 2010-10-27 23:44:47 -0400 | [diff] [blame] | 2701 | ret = sb_issue_zeroout(inode->i_sb, ee_pblock, ee_len, GFP_NOFS); |
Lukas Czerner | 2407518 | 2010-10-27 21:30:06 -0400 | [diff] [blame] | 2702 | if (ret > 0) |
| 2703 | ret = 0; |
Aneesh Kumar K.V | 093a088 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 2704 | |
Lukas Czerner | 2407518 | 2010-10-27 21:30:06 -0400 | [diff] [blame] | 2705 | return ret; |
Aneesh Kumar K.V | 093a088 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 2706 | } |
| 2707 | |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 2708 | /* |
| 2709 | * used by extent splitting. |
| 2710 | */ |
| 2711 | #define EXT4_EXT_MAY_ZEROOUT 0x1 /* safe to zeroout if split fails \ |
| 2712 | due to ENOSPC */ |
| 2713 | #define EXT4_EXT_MARK_UNINIT1 0x2 /* mark first half uninitialized */ |
| 2714 | #define EXT4_EXT_MARK_UNINIT2 0x4 /* mark second half uninitialized */ |
| 2715 | |
| 2716 | /* |
| 2717 | * ext4_split_extent_at() splits an extent at given block. |
| 2718 | * |
| 2719 | * @handle: the journal handle |
| 2720 | * @inode: the file inode |
| 2721 | * @path: the path to the extent |
| 2722 | * @split: the logical block where the extent is splitted. |
| 2723 | * @split_flags: indicates if the extent could be zeroout if split fails, and |
| 2724 | * the states(init or uninit) of new extents. |
| 2725 | * @flags: flags used to insert new extent to extent tree. |
| 2726 | * |
| 2727 | * |
| 2728 | * Splits extent [a, b] into two extents [a, @split) and [@split, b], states |
| 2729 | * of which are deterimined by split_flag. |
| 2730 | * |
| 2731 | * There are two cases: |
| 2732 | * a> the extent are splitted into two extent. |
| 2733 | * b> split is not needed, and just mark the extent. |
| 2734 | * |
| 2735 | * return 0 on success. |
| 2736 | */ |
| 2737 | static int ext4_split_extent_at(handle_t *handle, |
| 2738 | struct inode *inode, |
| 2739 | struct ext4_ext_path *path, |
| 2740 | ext4_lblk_t split, |
| 2741 | int split_flag, |
| 2742 | int flags) |
| 2743 | { |
| 2744 | ext4_fsblk_t newblock; |
| 2745 | ext4_lblk_t ee_block; |
| 2746 | struct ext4_extent *ex, newex, orig_ex; |
| 2747 | struct ext4_extent *ex2 = NULL; |
| 2748 | unsigned int ee_len, depth; |
| 2749 | int err = 0; |
| 2750 | |
| 2751 | ext_debug("ext4_split_extents_at: inode %lu, logical" |
| 2752 | "block %llu\n", inode->i_ino, (unsigned long long)split); |
| 2753 | |
| 2754 | ext4_ext_show_leaf(inode, path); |
| 2755 | |
| 2756 | depth = ext_depth(inode); |
| 2757 | ex = path[depth].p_ext; |
| 2758 | ee_block = le32_to_cpu(ex->ee_block); |
| 2759 | ee_len = ext4_ext_get_actual_len(ex); |
| 2760 | newblock = split - ee_block + ext4_ext_pblock(ex); |
| 2761 | |
| 2762 | BUG_ON(split < ee_block || split >= (ee_block + ee_len)); |
| 2763 | |
| 2764 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 2765 | if (err) |
| 2766 | goto out; |
| 2767 | |
| 2768 | if (split == ee_block) { |
| 2769 | /* |
| 2770 | * case b: block @split is the block that the extent begins with |
| 2771 | * then we just change the state of the extent, and splitting |
| 2772 | * is not needed. |
| 2773 | */ |
| 2774 | if (split_flag & EXT4_EXT_MARK_UNINIT2) |
| 2775 | ext4_ext_mark_uninitialized(ex); |
| 2776 | else |
| 2777 | ext4_ext_mark_initialized(ex); |
| 2778 | |
| 2779 | if (!(flags & EXT4_GET_BLOCKS_PRE_IO)) |
| 2780 | ext4_ext_try_to_merge(inode, path, ex); |
| 2781 | |
| 2782 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 2783 | goto out; |
| 2784 | } |
| 2785 | |
| 2786 | /* case a */ |
| 2787 | memcpy(&orig_ex, ex, sizeof(orig_ex)); |
| 2788 | ex->ee_len = cpu_to_le16(split - ee_block); |
| 2789 | if (split_flag & EXT4_EXT_MARK_UNINIT1) |
| 2790 | ext4_ext_mark_uninitialized(ex); |
| 2791 | |
| 2792 | /* |
| 2793 | * path may lead to new leaf, not to original leaf any more |
| 2794 | * after ext4_ext_insert_extent() returns, |
| 2795 | */ |
| 2796 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 2797 | if (err) |
| 2798 | goto fix_extent_len; |
| 2799 | |
| 2800 | ex2 = &newex; |
| 2801 | ex2->ee_block = cpu_to_le32(split); |
| 2802 | ex2->ee_len = cpu_to_le16(ee_len - (split - ee_block)); |
| 2803 | ext4_ext_store_pblock(ex2, newblock); |
| 2804 | if (split_flag & EXT4_EXT_MARK_UNINIT2) |
| 2805 | ext4_ext_mark_uninitialized(ex2); |
| 2806 | |
| 2807 | err = ext4_ext_insert_extent(handle, inode, path, &newex, flags); |
| 2808 | if (err == -ENOSPC && (EXT4_EXT_MAY_ZEROOUT & split_flag)) { |
| 2809 | err = ext4_ext_zeroout(inode, &orig_ex); |
| 2810 | if (err) |
| 2811 | goto fix_extent_len; |
| 2812 | /* update the extent length and mark as initialized */ |
| 2813 | ex->ee_len = cpu_to_le32(ee_len); |
| 2814 | ext4_ext_try_to_merge(inode, path, ex); |
| 2815 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 2816 | goto out; |
| 2817 | } else if (err) |
| 2818 | goto fix_extent_len; |
| 2819 | |
| 2820 | out: |
| 2821 | ext4_ext_show_leaf(inode, path); |
| 2822 | return err; |
| 2823 | |
| 2824 | fix_extent_len: |
| 2825 | ex->ee_len = orig_ex.ee_len; |
| 2826 | ext4_ext_dirty(handle, inode, path + depth); |
| 2827 | return err; |
| 2828 | } |
| 2829 | |
| 2830 | /* |
| 2831 | * ext4_split_extents() splits an extent and mark extent which is covered |
| 2832 | * by @map as split_flags indicates |
| 2833 | * |
| 2834 | * It may result in splitting the extent into multiple extents (upto three) |
| 2835 | * There are three possibilities: |
| 2836 | * a> There is no split required |
| 2837 | * b> Splits in two extents: Split is happening at either end of the extent |
| 2838 | * c> Splits in three extents: Somone is splitting in middle of the extent |
| 2839 | * |
| 2840 | */ |
| 2841 | static int ext4_split_extent(handle_t *handle, |
| 2842 | struct inode *inode, |
| 2843 | struct ext4_ext_path *path, |
| 2844 | struct ext4_map_blocks *map, |
| 2845 | int split_flag, |
| 2846 | int flags) |
| 2847 | { |
| 2848 | ext4_lblk_t ee_block; |
| 2849 | struct ext4_extent *ex; |
| 2850 | unsigned int ee_len, depth; |
| 2851 | int err = 0; |
| 2852 | int uninitialized; |
| 2853 | int split_flag1, flags1; |
| 2854 | |
| 2855 | depth = ext_depth(inode); |
| 2856 | ex = path[depth].p_ext; |
| 2857 | ee_block = le32_to_cpu(ex->ee_block); |
| 2858 | ee_len = ext4_ext_get_actual_len(ex); |
| 2859 | uninitialized = ext4_ext_is_uninitialized(ex); |
| 2860 | |
| 2861 | if (map->m_lblk + map->m_len < ee_block + ee_len) { |
| 2862 | split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT ? |
| 2863 | EXT4_EXT_MAY_ZEROOUT : 0; |
| 2864 | flags1 = flags | EXT4_GET_BLOCKS_PRE_IO; |
| 2865 | if (uninitialized) |
| 2866 | split_flag1 |= EXT4_EXT_MARK_UNINIT1 | |
| 2867 | EXT4_EXT_MARK_UNINIT2; |
| 2868 | err = ext4_split_extent_at(handle, inode, path, |
| 2869 | map->m_lblk + map->m_len, split_flag1, flags1); |
Yongqiang Yang | 9391741 | 2011-05-22 20:49:12 -0400 | [diff] [blame] | 2870 | if (err) |
| 2871 | goto out; |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 2872 | } |
| 2873 | |
| 2874 | ext4_ext_drop_refs(path); |
| 2875 | path = ext4_ext_find_extent(inode, map->m_lblk, path); |
| 2876 | if (IS_ERR(path)) |
| 2877 | return PTR_ERR(path); |
| 2878 | |
| 2879 | if (map->m_lblk >= ee_block) { |
| 2880 | split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT ? |
| 2881 | EXT4_EXT_MAY_ZEROOUT : 0; |
| 2882 | if (uninitialized) |
| 2883 | split_flag1 |= EXT4_EXT_MARK_UNINIT1; |
| 2884 | if (split_flag & EXT4_EXT_MARK_UNINIT2) |
| 2885 | split_flag1 |= EXT4_EXT_MARK_UNINIT2; |
| 2886 | err = ext4_split_extent_at(handle, inode, path, |
| 2887 | map->m_lblk, split_flag1, flags); |
| 2888 | if (err) |
| 2889 | goto out; |
| 2890 | } |
| 2891 | |
| 2892 | ext4_ext_show_leaf(inode, path); |
| 2893 | out: |
| 2894 | return err ? err : map->m_len; |
| 2895 | } |
| 2896 | |
Aneesh Kumar K.V | 3977c96 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 2897 | #define EXT4_EXT_ZERO_LEN 7 |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 2898 | /* |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 2899 | * This function is called by ext4_ext_map_blocks() if someone tries to write |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 2900 | * to an uninitialized extent. It may result in splitting the uninitialized |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2901 | * extent into multiple extents (up to three - one initialized and two |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 2902 | * uninitialized). |
| 2903 | * There are three possibilities: |
| 2904 | * a> There is no split required: Entire extent should be initialized |
| 2905 | * b> Splits in two extents: Write is happening at either end of the extent |
| 2906 | * c> Splits in three extents: Somone is writing in middle of the extent |
| 2907 | */ |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2908 | static int ext4_ext_convert_to_initialized(handle_t *handle, |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 2909 | struct inode *inode, |
| 2910 | struct ext4_map_blocks *map, |
| 2911 | struct ext4_ext_path *path) |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 2912 | { |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 2913 | struct ext4_map_blocks split_map; |
| 2914 | struct ext4_extent zero_ex; |
| 2915 | struct ext4_extent *ex; |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 2916 | ext4_lblk_t ee_block, eof_block; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2917 | unsigned int allocated, ee_len, depth; |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 2918 | int err = 0; |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 2919 | int split_flag = 0; |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 2920 | |
| 2921 | ext_debug("ext4_ext_convert_to_initialized: inode %lu, logical" |
| 2922 | "block %llu, max_blocks %u\n", inode->i_ino, |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 2923 | (unsigned long long)map->m_lblk, map->m_len); |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 2924 | |
| 2925 | eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >> |
| 2926 | inode->i_sb->s_blocksize_bits; |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 2927 | if (eof_block < map->m_lblk + map->m_len) |
| 2928 | eof_block = map->m_lblk + map->m_len; |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 2929 | |
| 2930 | depth = ext_depth(inode); |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 2931 | ex = path[depth].p_ext; |
| 2932 | ee_block = le32_to_cpu(ex->ee_block); |
| 2933 | ee_len = ext4_ext_get_actual_len(ex); |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 2934 | allocated = ee_len - (map->m_lblk - ee_block); |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 2935 | |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 2936 | WARN_ON(map->m_lblk < ee_block); |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 2937 | /* |
| 2938 | * It is safe to convert extent to initialized via explicit |
| 2939 | * zeroout only if extent is fully insde i_size or new_size. |
| 2940 | */ |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 2941 | split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0; |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 2942 | |
Aneesh Kumar K.V | 3977c96 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 2943 | /* If extent has less than 2*EXT4_EXT_ZERO_LEN zerout directly */ |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 2944 | if (ee_len <= 2*EXT4_EXT_ZERO_LEN && |
| 2945 | (EXT4_EXT_MAY_ZEROOUT & split_flag)) { |
| 2946 | err = ext4_ext_zeroout(inode, ex); |
Aneesh Kumar K.V | 3977c96 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 2947 | if (err) |
Aneesh Kumar K.V | d03856b | 2008-08-02 18:51:32 -0400 | [diff] [blame] | 2948 | goto out; |
Aneesh Kumar K.V | d03856b | 2008-08-02 18:51:32 -0400 | [diff] [blame] | 2949 | |
| 2950 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 2951 | if (err) |
| 2952 | goto out; |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 2953 | ext4_ext_mark_initialized(ex); |
| 2954 | ext4_ext_try_to_merge(inode, path, ex); |
| 2955 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 2956 | goto out; |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 2957 | } |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 2958 | |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 2959 | /* |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 2960 | * four cases: |
| 2961 | * 1. split the extent into three extents. |
| 2962 | * 2. split the extent into two extents, zeroout the first half. |
| 2963 | * 3. split the extent into two extents, zeroout the second half. |
| 2964 | * 4. split the extent into two extents with out zeroout. |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 2965 | */ |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 2966 | split_map.m_lblk = map->m_lblk; |
| 2967 | split_map.m_len = map->m_len; |
| 2968 | |
| 2969 | if (allocated > map->m_len) { |
| 2970 | if (allocated <= EXT4_EXT_ZERO_LEN && |
| 2971 | (EXT4_EXT_MAY_ZEROOUT & split_flag)) { |
| 2972 | /* case 3 */ |
| 2973 | zero_ex.ee_block = |
Allison Henderson | 9b940f8 | 2011-05-16 10:11:09 -0400 | [diff] [blame] | 2974 | cpu_to_le32(map->m_lblk); |
| 2975 | zero_ex.ee_len = cpu_to_le16(allocated); |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 2976 | ext4_ext_store_pblock(&zero_ex, |
| 2977 | ext4_ext_pblock(ex) + map->m_lblk - ee_block); |
| 2978 | err = ext4_ext_zeroout(inode, &zero_ex); |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 2979 | if (err) |
| 2980 | goto out; |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 2981 | split_map.m_lblk = map->m_lblk; |
| 2982 | split_map.m_len = allocated; |
| 2983 | } else if ((map->m_lblk - ee_block + map->m_len < |
| 2984 | EXT4_EXT_ZERO_LEN) && |
| 2985 | (EXT4_EXT_MAY_ZEROOUT & split_flag)) { |
| 2986 | /* case 2 */ |
| 2987 | if (map->m_lblk != ee_block) { |
| 2988 | zero_ex.ee_block = ex->ee_block; |
| 2989 | zero_ex.ee_len = cpu_to_le16(map->m_lblk - |
| 2990 | ee_block); |
| 2991 | ext4_ext_store_pblock(&zero_ex, |
| 2992 | ext4_ext_pblock(ex)); |
| 2993 | err = ext4_ext_zeroout(inode, &zero_ex); |
| 2994 | if (err) |
| 2995 | goto out; |
| 2996 | } |
| 2997 | |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 2998 | split_map.m_lblk = ee_block; |
Allison Henderson | 9b940f8 | 2011-05-16 10:11:09 -0400 | [diff] [blame] | 2999 | split_map.m_len = map->m_lblk - ee_block + map->m_len; |
| 3000 | allocated = map->m_len; |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3001 | } |
| 3002 | } |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3003 | |
| 3004 | allocated = ext4_split_extent(handle, inode, path, |
| 3005 | &split_map, split_flag, 0); |
| 3006 | if (allocated < 0) |
| 3007 | err = allocated; |
| 3008 | |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3009 | out: |
| 3010 | return err ? err : allocated; |
| 3011 | } |
| 3012 | |
Aneesh Kumar K.V | c278bfe | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3013 | /* |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3014 | * This function is called by ext4_ext_map_blocks() from |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3015 | * ext4_get_blocks_dio_write() when DIO to write |
| 3016 | * to an uninitialized extent. |
| 3017 | * |
Paul Bolle | fd018fe | 2011-02-15 00:05:43 +0100 | [diff] [blame] | 3018 | * Writing to an uninitialized extent may result in splitting the uninitialized |
Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 3019 | * extent into multiple /initialized uninitialized extents (up to three) |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3020 | * There are three possibilities: |
| 3021 | * a> There is no split required: Entire extent should be uninitialized |
| 3022 | * b> Splits in two extents: Write is happening at either end of the extent |
| 3023 | * c> Splits in three extents: Somone is writing in middle of the extent |
| 3024 | * |
| 3025 | * One of more index blocks maybe needed if the extent tree grow after |
Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 3026 | * the uninitialized extent split. To prevent ENOSPC occur at the IO |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3027 | * complete, we need to split the uninitialized extent before DIO submit |
Uwe Kleine-König | 421f91d | 2010-06-11 12:17:00 +0200 | [diff] [blame] | 3028 | * the IO. The uninitialized extent called at this time will be split |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3029 | * into three uninitialized extent(at most). After IO complete, the part |
| 3030 | * being filled will be convert to initialized by the end_io callback function |
| 3031 | * via ext4_convert_unwritten_extents(). |
Mingming | ba230c3 | 2009-11-06 04:01:23 -0500 | [diff] [blame] | 3032 | * |
| 3033 | * Returns the size of uninitialized extent to be written on success. |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3034 | */ |
| 3035 | static int ext4_split_unwritten_extents(handle_t *handle, |
| 3036 | struct inode *inode, |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3037 | struct ext4_map_blocks *map, |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3038 | struct ext4_ext_path *path, |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3039 | int flags) |
| 3040 | { |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3041 | ext4_lblk_t eof_block; |
| 3042 | ext4_lblk_t ee_block; |
| 3043 | struct ext4_extent *ex; |
| 3044 | unsigned int ee_len; |
| 3045 | int split_flag = 0, depth; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3046 | |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3047 | ext_debug("ext4_split_unwritten_extents: inode %lu, logical" |
| 3048 | "block %llu, max_blocks %u\n", inode->i_ino, |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3049 | (unsigned long long)map->m_lblk, map->m_len); |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3050 | |
| 3051 | eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >> |
| 3052 | inode->i_sb->s_blocksize_bits; |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3053 | if (eof_block < map->m_lblk + map->m_len) |
| 3054 | eof_block = map->m_lblk + map->m_len; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3055 | /* |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3056 | * It is safe to convert extent to initialized via explicit |
| 3057 | * zeroout only if extent is fully insde i_size or new_size. |
| 3058 | */ |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3059 | depth = ext_depth(inode); |
| 3060 | ex = path[depth].p_ext; |
| 3061 | ee_block = le32_to_cpu(ex->ee_block); |
| 3062 | ee_len = ext4_ext_get_actual_len(ex); |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3063 | |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3064 | split_flag |= ee_block + ee_len <= eof_block ? EXT4_EXT_MAY_ZEROOUT : 0; |
| 3065 | split_flag |= EXT4_EXT_MARK_UNINIT2; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3066 | |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3067 | flags |= EXT4_GET_BLOCKS_PRE_IO; |
| 3068 | return ext4_split_extent(handle, inode, path, map, split_flag, flags); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3069 | } |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 3070 | |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 3071 | static int ext4_convert_unwritten_extents_endio(handle_t *handle, |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3072 | struct inode *inode, |
| 3073 | struct ext4_ext_path *path) |
| 3074 | { |
| 3075 | struct ext4_extent *ex; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3076 | int depth; |
| 3077 | int err = 0; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3078 | |
| 3079 | depth = ext_depth(inode); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3080 | ex = path[depth].p_ext; |
| 3081 | |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 3082 | ext_debug("ext4_convert_unwritten_extents_endio: inode %lu, logical" |
| 3083 | "block %llu, max_blocks %u\n", inode->i_ino, |
| 3084 | (unsigned long long)le32_to_cpu(ex->ee_block), |
| 3085 | ext4_ext_get_actual_len(ex)); |
| 3086 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3087 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 3088 | if (err) |
| 3089 | goto out; |
| 3090 | /* first mark the extent as initialized */ |
| 3091 | ext4_ext_mark_initialized(ex); |
| 3092 | |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 3093 | /* note: ext4_ext_correct_indexes() isn't needed here because |
| 3094 | * borders are not changed |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3095 | */ |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 3096 | ext4_ext_try_to_merge(inode, path, ex); |
| 3097 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3098 | /* Mark modified extent as dirty */ |
| 3099 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 3100 | out: |
| 3101 | ext4_ext_show_leaf(inode, path); |
| 3102 | return err; |
| 3103 | } |
| 3104 | |
Aneesh Kumar K.V | 515f41c | 2009-12-29 23:39:06 -0500 | [diff] [blame] | 3105 | static void unmap_underlying_metadata_blocks(struct block_device *bdev, |
| 3106 | sector_t block, int count) |
| 3107 | { |
| 3108 | int i; |
| 3109 | for (i = 0; i < count; i++) |
| 3110 | unmap_underlying_metadata(bdev, block + i); |
| 3111 | } |
| 3112 | |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3113 | /* |
| 3114 | * Handle EOFBLOCKS_FL flag, clearing it if necessary |
| 3115 | */ |
| 3116 | static int check_eofblocks_fl(handle_t *handle, struct inode *inode, |
Eric Sandeen | d002ebf | 2011-01-10 13:03:35 -0500 | [diff] [blame] | 3117 | ext4_lblk_t lblk, |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3118 | struct ext4_ext_path *path, |
| 3119 | unsigned int len) |
| 3120 | { |
| 3121 | int i, depth; |
| 3122 | struct ext4_extent_header *eh; |
Sergey Senozhatsky | 65922cb | 2011-03-23 14:08:27 -0400 | [diff] [blame] | 3123 | struct ext4_extent *last_ex; |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3124 | |
| 3125 | if (!ext4_test_inode_flag(inode, EXT4_INODE_EOFBLOCKS)) |
| 3126 | return 0; |
| 3127 | |
| 3128 | depth = ext_depth(inode); |
| 3129 | eh = path[depth].p_hdr; |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3130 | |
| 3131 | if (unlikely(!eh->eh_entries)) { |
| 3132 | EXT4_ERROR_INODE(inode, "eh->eh_entries == 0 and " |
| 3133 | "EOFBLOCKS_FL set"); |
| 3134 | return -EIO; |
| 3135 | } |
| 3136 | last_ex = EXT_LAST_EXTENT(eh); |
| 3137 | /* |
| 3138 | * We should clear the EOFBLOCKS_FL flag if we are writing the |
| 3139 | * last block in the last extent in the file. We test this by |
| 3140 | * first checking to see if the caller to |
| 3141 | * ext4_ext_get_blocks() was interested in the last block (or |
| 3142 | * a block beyond the last block) in the current extent. If |
| 3143 | * this turns out to be false, we can bail out from this |
| 3144 | * function immediately. |
| 3145 | */ |
Eric Sandeen | d002ebf | 2011-01-10 13:03:35 -0500 | [diff] [blame] | 3146 | if (lblk + len < le32_to_cpu(last_ex->ee_block) + |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3147 | ext4_ext_get_actual_len(last_ex)) |
| 3148 | return 0; |
| 3149 | /* |
| 3150 | * If the caller does appear to be planning to write at or |
| 3151 | * beyond the end of the current extent, we then test to see |
| 3152 | * if the current extent is the last extent in the file, by |
| 3153 | * checking to make sure it was reached via the rightmost node |
| 3154 | * at each level of the tree. |
| 3155 | */ |
| 3156 | for (i = depth-1; i >= 0; i--) |
| 3157 | if (path[i].p_idx != EXT_LAST_INDEX(path[i].p_hdr)) |
| 3158 | return 0; |
| 3159 | ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS); |
| 3160 | return ext4_mark_inode_dirty(handle, inode); |
| 3161 | } |
| 3162 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3163 | static int |
| 3164 | ext4_ext_handle_uninitialized_extents(handle_t *handle, struct inode *inode, |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3165 | struct ext4_map_blocks *map, |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3166 | struct ext4_ext_path *path, int flags, |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3167 | unsigned int allocated, ext4_fsblk_t newblock) |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3168 | { |
| 3169 | int ret = 0; |
| 3170 | int err = 0; |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3171 | ext4_io_end_t *io = EXT4_I(inode)->cur_aio_dio; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3172 | |
| 3173 | ext_debug("ext4_ext_handle_uninitialized_extents: inode %lu, logical" |
| 3174 | "block %llu, max_blocks %u, flags %d, allocated %u", |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3175 | inode->i_ino, (unsigned long long)map->m_lblk, map->m_len, |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3176 | flags, allocated); |
| 3177 | ext4_ext_show_leaf(inode, path); |
| 3178 | |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 3179 | /* get_block() before submit the IO, split the extent */ |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 3180 | if ((flags & EXT4_GET_BLOCKS_PRE_IO)) { |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3181 | ret = ext4_split_unwritten_extents(handle, inode, map, |
| 3182 | path, flags); |
Mingming | 5f52495 | 2009-11-10 10:48:04 -0500 | [diff] [blame] | 3183 | /* |
| 3184 | * Flag the inode(non aio case) or end_io struct (aio case) |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 3185 | * that this IO needs to conversion to written when IO is |
Mingming | 5f52495 | 2009-11-10 10:48:04 -0500 | [diff] [blame] | 3186 | * completed |
| 3187 | */ |
Eric Sandeen | e9e3bce | 2011-02-12 08:17:34 -0500 | [diff] [blame] | 3188 | if (io && !(io->flag & EXT4_IO_END_UNWRITTEN)) { |
Theodore Ts'o | bd2d021 | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 3189 | io->flag = EXT4_IO_END_UNWRITTEN; |
Eric Sandeen | e9e3bce | 2011-02-12 08:17:34 -0500 | [diff] [blame] | 3190 | atomic_inc(&EXT4_I(inode)->i_aiodio_unwritten); |
| 3191 | } else |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 3192 | ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 3193 | if (ext4_should_dioread_nolock(inode)) |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3194 | map->m_flags |= EXT4_MAP_UNINIT; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3195 | goto out; |
| 3196 | } |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 3197 | /* IO end_io complete, convert the filled extent to written */ |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 3198 | if ((flags & EXT4_GET_BLOCKS_CONVERT)) { |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 3199 | ret = ext4_convert_unwritten_extents_endio(handle, inode, |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3200 | path); |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3201 | if (ret >= 0) { |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 3202 | ext4_update_inode_fsync_trans(handle, inode, 1); |
Eric Sandeen | d002ebf | 2011-01-10 13:03:35 -0500 | [diff] [blame] | 3203 | err = check_eofblocks_fl(handle, inode, map->m_lblk, |
| 3204 | path, map->m_len); |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3205 | } else |
| 3206 | err = ret; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3207 | goto out2; |
| 3208 | } |
| 3209 | /* buffered IO case */ |
| 3210 | /* |
| 3211 | * repeat fallocate creation request |
| 3212 | * we already have an unwritten extent |
| 3213 | */ |
| 3214 | if (flags & EXT4_GET_BLOCKS_UNINIT_EXT) |
| 3215 | goto map_out; |
| 3216 | |
| 3217 | /* buffered READ or buffered write_begin() lookup */ |
| 3218 | if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) { |
| 3219 | /* |
| 3220 | * We have blocks reserved already. We |
| 3221 | * return allocated blocks so that delalloc |
| 3222 | * won't do block reservation for us. But |
| 3223 | * the buffer head will be unmapped so that |
| 3224 | * a read from the block returns 0s. |
| 3225 | */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3226 | map->m_flags |= EXT4_MAP_UNWRITTEN; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3227 | goto out1; |
| 3228 | } |
| 3229 | |
| 3230 | /* buffered write, writepage time, convert*/ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3231 | ret = ext4_ext_convert_to_initialized(handle, inode, map, path); |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3232 | if (ret >= 0) { |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 3233 | ext4_update_inode_fsync_trans(handle, inode, 1); |
Eric Sandeen | d002ebf | 2011-01-10 13:03:35 -0500 | [diff] [blame] | 3234 | err = check_eofblocks_fl(handle, inode, map->m_lblk, path, |
| 3235 | map->m_len); |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3236 | if (err < 0) |
| 3237 | goto out2; |
| 3238 | } |
| 3239 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3240 | out: |
| 3241 | if (ret <= 0) { |
| 3242 | err = ret; |
| 3243 | goto out2; |
| 3244 | } else |
| 3245 | allocated = ret; |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3246 | map->m_flags |= EXT4_MAP_NEW; |
Aneesh Kumar K.V | 515f41c | 2009-12-29 23:39:06 -0500 | [diff] [blame] | 3247 | /* |
| 3248 | * if we allocated more blocks than requested |
| 3249 | * we need to make sure we unmap the extra block |
| 3250 | * allocated. The actual needed block will get |
| 3251 | * unmapped later when we find the buffer_head marked |
| 3252 | * new. |
| 3253 | */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3254 | if (allocated > map->m_len) { |
Aneesh Kumar K.V | 515f41c | 2009-12-29 23:39:06 -0500 | [diff] [blame] | 3255 | unmap_underlying_metadata_blocks(inode->i_sb->s_bdev, |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3256 | newblock + map->m_len, |
| 3257 | allocated - map->m_len); |
| 3258 | allocated = map->m_len; |
Aneesh Kumar K.V | 515f41c | 2009-12-29 23:39:06 -0500 | [diff] [blame] | 3259 | } |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 3260 | |
| 3261 | /* |
| 3262 | * If we have done fallocate with the offset that is already |
| 3263 | * delayed allocated, we would have block reservation |
| 3264 | * and quota reservation done in the delayed write path. |
| 3265 | * But fallocate would have already updated quota and block |
| 3266 | * count for this offset. So cancel these reservation |
| 3267 | */ |
Aneesh Kumar K.V | 1296cc8 | 2010-01-15 01:27:59 -0500 | [diff] [blame] | 3268 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 3269 | ext4_da_update_reserve_space(inode, allocated, 0); |
| 3270 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3271 | map_out: |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3272 | map->m_flags |= EXT4_MAP_MAPPED; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3273 | out1: |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3274 | if (allocated > map->m_len) |
| 3275 | allocated = map->m_len; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3276 | ext4_ext_show_leaf(inode, path); |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3277 | map->m_pblk = newblock; |
| 3278 | map->m_len = allocated; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3279 | out2: |
| 3280 | if (path) { |
| 3281 | ext4_ext_drop_refs(path); |
| 3282 | kfree(path); |
| 3283 | } |
| 3284 | return err ? err : allocated; |
| 3285 | } |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3286 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3287 | /* |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 3288 | * Block allocation/map/preallocation routine for extents based files |
| 3289 | * |
| 3290 | * |
Aneesh Kumar K.V | c278bfe | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3291 | * Need to be called with |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3292 | * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block |
| 3293 | * (ie, create is zero). Otherwise down_write(&EXT4_I(inode)->i_data_sem) |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 3294 | * |
| 3295 | * return > 0, number of of blocks already mapped/allocated |
| 3296 | * if create == 0 and these are pre-allocated blocks |
| 3297 | * buffer head is unmapped |
| 3298 | * otherwise blocks are mapped |
| 3299 | * |
| 3300 | * return = 0, if plain look up failed (blocks have not been allocated) |
| 3301 | * buffer head is unmapped |
| 3302 | * |
| 3303 | * return < 0, error case. |
Aneesh Kumar K.V | c278bfe | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3304 | */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3305 | int ext4_ext_map_blocks(handle_t *handle, struct inode *inode, |
| 3306 | struct ext4_map_blocks *map, int flags) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3307 | { |
| 3308 | struct ext4_ext_path *path = NULL; |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3309 | struct ext4_extent newex, *ex; |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 3310 | ext4_fsblk_t newblock = 0; |
Theodore Ts'o | b05e6ae | 2011-01-10 12:13:26 -0500 | [diff] [blame] | 3311 | int err = 0, depth, ret; |
Theodore Ts'o | 498e5f2 | 2008-11-05 00:14:04 -0500 | [diff] [blame] | 3312 | unsigned int allocated = 0; |
Allison Henderson | e861304 | 2011-05-25 07:41:46 -0400 | [diff] [blame] | 3313 | unsigned int punched_out = 0; |
| 3314 | unsigned int result = 0; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3315 | struct ext4_allocation_request ar; |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3316 | ext4_io_end_t *io = EXT4_I(inode)->cur_aio_dio; |
Allison Henderson | e861304 | 2011-05-25 07:41:46 -0400 | [diff] [blame] | 3317 | struct ext4_map_blocks punch_map; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3318 | |
Mingming | 84fe3be | 2009-09-01 08:44:37 -0400 | [diff] [blame] | 3319 | ext_debug("blocks %u/%u requested for inode %lu\n", |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3320 | map->m_lblk, map->m_len, inode->i_ino); |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 3321 | trace_ext4_ext_map_blocks_enter(inode, map->m_lblk, map->m_len, flags); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3322 | |
| 3323 | /* check in cache */ |
Allison Henderson | e861304 | 2011-05-25 07:41:46 -0400 | [diff] [blame] | 3324 | if (ext4_ext_in_cache(inode, map->m_lblk, &newex) && |
| 3325 | ((flags & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) == 0)) { |
Theodore Ts'o | b05e6ae | 2011-01-10 12:13:26 -0500 | [diff] [blame] | 3326 | if (!newex.ee_start_lo && !newex.ee_start_hi) { |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 3327 | if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) { |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3328 | /* |
| 3329 | * block isn't allocated yet and |
| 3330 | * user doesn't want to allocate it |
| 3331 | */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3332 | goto out2; |
| 3333 | } |
| 3334 | /* we should allocate requested block */ |
Theodore Ts'o | b05e6ae | 2011-01-10 12:13:26 -0500 | [diff] [blame] | 3335 | } else { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3336 | /* block is already allocated */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3337 | newblock = map->m_lblk |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 3338 | - le32_to_cpu(newex.ee_block) |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 3339 | + ext4_ext_pblock(&newex); |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 3340 | /* number of remaining blocks in the extent */ |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3341 | allocated = ext4_ext_get_actual_len(&newex) - |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3342 | (map->m_lblk - le32_to_cpu(newex.ee_block)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3343 | goto out; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3344 | } |
| 3345 | } |
| 3346 | |
| 3347 | /* find extent for this block */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3348 | path = ext4_ext_find_extent(inode, map->m_lblk, NULL); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3349 | if (IS_ERR(path)) { |
| 3350 | err = PTR_ERR(path); |
| 3351 | path = NULL; |
| 3352 | goto out2; |
| 3353 | } |
| 3354 | |
| 3355 | depth = ext_depth(inode); |
| 3356 | |
| 3357 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 3358 | * consistent leaf must not be empty; |
| 3359 | * this situation is possible, though, _during_ tree modification; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3360 | * this is why assert can't be put in ext4_ext_find_extent() |
| 3361 | */ |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 3362 | if (unlikely(path[depth].p_ext == NULL && depth != 0)) { |
| 3363 | EXT4_ERROR_INODE(inode, "bad extent address " |
Theodore Ts'o | f70f362 | 2010-05-16 23:00:00 -0400 | [diff] [blame] | 3364 | "lblock: %lu, depth: %d pblock %lld", |
| 3365 | (unsigned long) map->m_lblk, depth, |
| 3366 | path[depth].p_block); |
Surbhi Palande | 034fb4c | 2009-12-14 09:53:52 -0500 | [diff] [blame] | 3367 | err = -EIO; |
| 3368 | goto out2; |
| 3369 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3370 | |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 3371 | ex = path[depth].p_ext; |
| 3372 | if (ex) { |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3373 | ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 3374 | ext4_fsblk_t ee_start = ext4_ext_pblock(ex); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3375 | unsigned short ee_len; |
Suparna Bhattacharya | 471d401 | 2006-10-11 01:21:06 -0700 | [diff] [blame] | 3376 | |
| 3377 | /* |
Suparna Bhattacharya | 471d401 | 2006-10-11 01:21:06 -0700 | [diff] [blame] | 3378 | * Uninitialized extents are treated as holes, except that |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3379 | * we split out initialized portions during a write. |
Suparna Bhattacharya | 471d401 | 2006-10-11 01:21:06 -0700 | [diff] [blame] | 3380 | */ |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3381 | ee_len = ext4_ext_get_actual_len(ex); |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 3382 | /* if found extent covers block, simply return it */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3383 | if (in_range(map->m_lblk, ee_block, ee_len)) { |
| 3384 | newblock = map->m_lblk - ee_block + ee_start; |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 3385 | /* number of remaining blocks in the extent */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3386 | allocated = ee_len - (map->m_lblk - ee_block); |
| 3387 | ext_debug("%u fit into %u:%d -> %llu\n", map->m_lblk, |
| 3388 | ee_block, ee_len, newblock); |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3389 | |
Allison Henderson | e861304 | 2011-05-25 07:41:46 -0400 | [diff] [blame] | 3390 | if ((flags & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) == 0) { |
| 3391 | /* |
| 3392 | * Do not put uninitialized extent |
| 3393 | * in the cache |
| 3394 | */ |
| 3395 | if (!ext4_ext_is_uninitialized(ex)) { |
| 3396 | ext4_ext_put_in_cache(inode, ee_block, |
| 3397 | ee_len, ee_start); |
| 3398 | goto out; |
| 3399 | } |
| 3400 | ret = ext4_ext_handle_uninitialized_extents( |
| 3401 | handle, inode, map, path, flags, |
| 3402 | allocated, newblock); |
| 3403 | return ret; |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3404 | } |
Allison Henderson | e861304 | 2011-05-25 07:41:46 -0400 | [diff] [blame] | 3405 | |
| 3406 | /* |
| 3407 | * Punch out the map length, but only to the |
| 3408 | * end of the extent |
| 3409 | */ |
| 3410 | punched_out = allocated < map->m_len ? |
| 3411 | allocated : map->m_len; |
| 3412 | |
| 3413 | /* |
| 3414 | * Sense extents need to be converted to |
| 3415 | * uninitialized, they must fit in an |
| 3416 | * uninitialized extent |
| 3417 | */ |
| 3418 | if (punched_out > EXT_UNINIT_MAX_LEN) |
| 3419 | punched_out = EXT_UNINIT_MAX_LEN; |
| 3420 | |
| 3421 | punch_map.m_lblk = map->m_lblk; |
| 3422 | punch_map.m_pblk = newblock; |
| 3423 | punch_map.m_len = punched_out; |
| 3424 | punch_map.m_flags = 0; |
| 3425 | |
| 3426 | /* Check to see if the extent needs to be split */ |
| 3427 | if (punch_map.m_len != ee_len || |
| 3428 | punch_map.m_lblk != ee_block) { |
| 3429 | |
| 3430 | ret = ext4_split_extent(handle, inode, |
| 3431 | path, &punch_map, 0, |
| 3432 | EXT4_GET_BLOCKS_PUNCH_OUT_EXT | |
| 3433 | EXT4_GET_BLOCKS_PRE_IO); |
| 3434 | |
| 3435 | if (ret < 0) { |
| 3436 | err = ret; |
| 3437 | goto out2; |
| 3438 | } |
| 3439 | /* |
| 3440 | * find extent for the block at |
| 3441 | * the start of the hole |
| 3442 | */ |
| 3443 | ext4_ext_drop_refs(path); |
| 3444 | kfree(path); |
| 3445 | |
| 3446 | path = ext4_ext_find_extent(inode, |
| 3447 | map->m_lblk, NULL); |
| 3448 | if (IS_ERR(path)) { |
| 3449 | err = PTR_ERR(path); |
| 3450 | path = NULL; |
| 3451 | goto out2; |
| 3452 | } |
| 3453 | |
| 3454 | depth = ext_depth(inode); |
| 3455 | ex = path[depth].p_ext; |
| 3456 | ee_len = ext4_ext_get_actual_len(ex); |
| 3457 | ee_block = le32_to_cpu(ex->ee_block); |
| 3458 | ee_start = ext4_ext_pblock(ex); |
| 3459 | |
| 3460 | } |
| 3461 | |
| 3462 | ext4_ext_mark_uninitialized(ex); |
| 3463 | |
| 3464 | err = ext4_ext_remove_space(inode, map->m_lblk, |
| 3465 | map->m_lblk + punched_out); |
| 3466 | |
| 3467 | goto out2; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3468 | } |
| 3469 | } |
| 3470 | |
| 3471 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 3472 | * requested block isn't allocated yet; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3473 | * we couldn't try to create block if create flag is zero |
| 3474 | */ |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 3475 | if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) { |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3476 | /* |
| 3477 | * put just found gap into cache to speed up |
| 3478 | * subsequent requests |
| 3479 | */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3480 | ext4_ext_put_gap_in_cache(inode, path, map->m_lblk); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3481 | goto out2; |
| 3482 | } |
| 3483 | /* |
Theodore Ts'o | c2ea3fd | 2008-10-10 09:40:52 -0400 | [diff] [blame] | 3484 | * Okay, we need to do block allocation. |
Andrew Morton | 63f5793 | 2006-10-11 01:21:24 -0700 | [diff] [blame] | 3485 | */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3486 | |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3487 | /* find neighbour allocated blocks */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3488 | ar.lleft = map->m_lblk; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3489 | err = ext4_ext_search_left(inode, path, &ar.lleft, &ar.pleft); |
| 3490 | if (err) |
| 3491 | goto out2; |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3492 | ar.lright = map->m_lblk; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3493 | err = ext4_ext_search_right(inode, path, &ar.lright, &ar.pright); |
| 3494 | if (err) |
| 3495 | goto out2; |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 3496 | |
Amit Arora | 749269f | 2007-07-18 09:02:56 -0400 | [diff] [blame] | 3497 | /* |
| 3498 | * See if request is beyond maximum number of blocks we can have in |
| 3499 | * a single extent. For an initialized extent this limit is |
| 3500 | * EXT_INIT_MAX_LEN and for an uninitialized extent this limit is |
| 3501 | * EXT_UNINIT_MAX_LEN. |
| 3502 | */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3503 | if (map->m_len > EXT_INIT_MAX_LEN && |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 3504 | !(flags & EXT4_GET_BLOCKS_UNINIT_EXT)) |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3505 | map->m_len = EXT_INIT_MAX_LEN; |
| 3506 | else if (map->m_len > EXT_UNINIT_MAX_LEN && |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 3507 | (flags & EXT4_GET_BLOCKS_UNINIT_EXT)) |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3508 | map->m_len = EXT_UNINIT_MAX_LEN; |
Amit Arora | 749269f | 2007-07-18 09:02:56 -0400 | [diff] [blame] | 3509 | |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3510 | /* Check if we can really insert (m_lblk)::(m_lblk + m_len) extent */ |
| 3511 | newex.ee_block = cpu_to_le32(map->m_lblk); |
| 3512 | newex.ee_len = cpu_to_le16(map->m_len); |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 3513 | err = ext4_ext_check_overlap(inode, &newex, path); |
| 3514 | if (err) |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3515 | allocated = ext4_ext_get_actual_len(&newex); |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 3516 | else |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3517 | allocated = map->m_len; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3518 | |
| 3519 | /* allocate new block */ |
| 3520 | ar.inode = inode; |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3521 | ar.goal = ext4_ext_find_goal(inode, path, map->m_lblk); |
| 3522 | ar.logical = map->m_lblk; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3523 | ar.len = allocated; |
| 3524 | if (S_ISREG(inode->i_mode)) |
| 3525 | ar.flags = EXT4_MB_HINT_DATA; |
| 3526 | else |
| 3527 | /* disable in-core preallocation for non-regular files */ |
| 3528 | ar.flags = 0; |
Vivek Haldar | 556b27a | 2011-05-25 07:41:54 -0400 | [diff] [blame] | 3529 | if (flags & EXT4_GET_BLOCKS_NO_NORMALIZE) |
| 3530 | ar.flags |= EXT4_MB_HINT_NOPREALLOC; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3531 | newblock = ext4_mb_new_blocks(handle, &ar, &err); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3532 | if (!newblock) |
| 3533 | goto out2; |
Mingming | 84fe3be | 2009-09-01 08:44:37 -0400 | [diff] [blame] | 3534 | ext_debug("allocate new block: goal %llu, found %llu/%u\n", |
Theodore Ts'o | 498e5f2 | 2008-11-05 00:14:04 -0500 | [diff] [blame] | 3535 | ar.goal, newblock, allocated); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3536 | |
| 3537 | /* try to insert new extent into found leaf and return */ |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 3538 | ext4_ext_store_pblock(&newex, newblock); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3539 | newex.ee_len = cpu_to_le16(ar.len); |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3540 | /* Mark uninitialized */ |
| 3541 | if (flags & EXT4_GET_BLOCKS_UNINIT_EXT){ |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3542 | ext4_ext_mark_uninitialized(&newex); |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3543 | /* |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 3544 | * io_end structure was created for every IO write to an |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 3545 | * uninitialized extent. To avoid unnecessary conversion, |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 3546 | * here we flag the IO that really needs the conversion. |
Mingming | 5f52495 | 2009-11-10 10:48:04 -0500 | [diff] [blame] | 3547 | * For non asycn direct IO case, flag the inode state |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 3548 | * that we need to perform conversion when IO is done. |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3549 | */ |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 3550 | if ((flags & EXT4_GET_BLOCKS_PRE_IO)) { |
Eric Sandeen | e9e3bce | 2011-02-12 08:17:34 -0500 | [diff] [blame] | 3551 | if (io && !(io->flag & EXT4_IO_END_UNWRITTEN)) { |
Theodore Ts'o | bd2d021 | 2010-10-27 21:30:10 -0400 | [diff] [blame] | 3552 | io->flag = EXT4_IO_END_UNWRITTEN; |
Eric Sandeen | e9e3bce | 2011-02-12 08:17:34 -0500 | [diff] [blame] | 3553 | atomic_inc(&EXT4_I(inode)->i_aiodio_unwritten); |
| 3554 | } else |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 3555 | ext4_set_inode_state(inode, |
| 3556 | EXT4_STATE_DIO_UNWRITTEN); |
Mingming | 5f52495 | 2009-11-10 10:48:04 -0500 | [diff] [blame] | 3557 | } |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 3558 | if (ext4_should_dioread_nolock(inode)) |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3559 | map->m_flags |= EXT4_MAP_UNINIT; |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 3560 | } |
Jiaying Zhang | c8d46e4 | 2010-02-24 09:52:53 -0500 | [diff] [blame] | 3561 | |
Eric Sandeen | d002ebf | 2011-01-10 13:03:35 -0500 | [diff] [blame] | 3562 | err = check_eofblocks_fl(handle, inode, map->m_lblk, path, ar.len); |
Jiaying Zhang | 575a1d4 | 2011-07-10 20:07:25 -0400 | [diff] [blame^] | 3563 | if (!err) |
| 3564 | err = ext4_ext_insert_extent(handle, inode, path, |
| 3565 | &newex, flags); |
Alex Tomas | 315054f | 2007-05-24 13:04:25 -0400 | [diff] [blame] | 3566 | if (err) { |
Maxim Patlasov | 7132de7 | 2011-07-10 19:37:48 -0400 | [diff] [blame] | 3567 | int fb_flags = flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE ? |
| 3568 | EXT4_FREE_BLOCKS_NO_QUOT_UPDATE : 0; |
Alex Tomas | 315054f | 2007-05-24 13:04:25 -0400 | [diff] [blame] | 3569 | /* free data blocks we just allocated */ |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3570 | /* not a good idea to call discard here directly, |
| 3571 | * but otherwise we'd need to call it every free() */ |
Theodore Ts'o | c2ea3fd | 2008-10-10 09:40:52 -0400 | [diff] [blame] | 3572 | ext4_discard_preallocations(inode); |
Peter Huewe | 7dc5761 | 2011-02-21 21:01:42 -0500 | [diff] [blame] | 3573 | ext4_free_blocks(handle, inode, NULL, ext4_ext_pblock(&newex), |
Maxim Patlasov | 7132de7 | 2011-07-10 19:37:48 -0400 | [diff] [blame] | 3574 | ext4_ext_get_actual_len(&newex), fb_flags); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3575 | goto out2; |
Alex Tomas | 315054f | 2007-05-24 13:04:25 -0400 | [diff] [blame] | 3576 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3577 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3578 | /* previous routine could use block we allocated */ |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 3579 | newblock = ext4_ext_pblock(&newex); |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3580 | allocated = ext4_ext_get_actual_len(&newex); |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3581 | if (allocated > map->m_len) |
| 3582 | allocated = map->m_len; |
| 3583 | map->m_flags |= EXT4_MAP_NEW; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3584 | |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 3585 | /* |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 3586 | * Update reserved blocks/metadata blocks after successful |
| 3587 | * block allocation which had been deferred till now. |
| 3588 | */ |
Aneesh Kumar K.V | 1296cc8 | 2010-01-15 01:27:59 -0500 | [diff] [blame] | 3589 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 3590 | ext4_da_update_reserve_space(inode, allocated, 1); |
| 3591 | |
| 3592 | /* |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 3593 | * Cache the extent and update transaction to commit on fdatasync only |
| 3594 | * when it is _not_ an uninitialized extent. |
| 3595 | */ |
| 3596 | if ((flags & EXT4_GET_BLOCKS_UNINIT_EXT) == 0) { |
Theodore Ts'o | b05e6ae | 2011-01-10 12:13:26 -0500 | [diff] [blame] | 3597 | ext4_ext_put_in_cache(inode, map->m_lblk, allocated, newblock); |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 3598 | ext4_update_inode_fsync_trans(handle, inode, 1); |
| 3599 | } else |
| 3600 | ext4_update_inode_fsync_trans(handle, inode, 0); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3601 | out: |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3602 | if (allocated > map->m_len) |
| 3603 | allocated = map->m_len; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3604 | ext4_ext_show_leaf(inode, path); |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3605 | map->m_flags |= EXT4_MAP_MAPPED; |
| 3606 | map->m_pblk = newblock; |
| 3607 | map->m_len = allocated; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3608 | out2: |
| 3609 | if (path) { |
| 3610 | ext4_ext_drop_refs(path); |
| 3611 | kfree(path); |
| 3612 | } |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 3613 | trace_ext4_ext_map_blocks_exit(inode, map->m_lblk, |
| 3614 | newblock, map->m_len, err ? err : allocated); |
Allison Henderson | e861304 | 2011-05-25 07:41:46 -0400 | [diff] [blame] | 3615 | |
| 3616 | result = (flags & EXT4_GET_BLOCKS_PUNCH_OUT_EXT) ? |
| 3617 | punched_out : allocated; |
| 3618 | |
| 3619 | return err ? err : result; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3620 | } |
| 3621 | |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3622 | void ext4_ext_truncate(struct inode *inode) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3623 | { |
| 3624 | struct address_space *mapping = inode->i_mapping; |
| 3625 | struct super_block *sb = inode->i_sb; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3626 | ext4_lblk_t last_block; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3627 | handle_t *handle; |
| 3628 | int err = 0; |
| 3629 | |
| 3630 | /* |
Jiaying Zhang | 3889fd5 | 2011-01-10 12:47:05 -0500 | [diff] [blame] | 3631 | * finish any pending end_io work so we won't run the risk of |
| 3632 | * converting any truncated blocks to initialized later |
| 3633 | */ |
| 3634 | ext4_flush_completed_IO(inode); |
| 3635 | |
| 3636 | /* |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3637 | * probably first extent we're gonna free will be last in block |
| 3638 | */ |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 3639 | err = ext4_writepage_trans_blocks(inode); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3640 | handle = ext4_journal_start(inode, err); |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3641 | if (IS_ERR(handle)) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3642 | return; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3643 | |
Jan Kara | cf108bc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3644 | if (inode->i_size & (sb->s_blocksize - 1)) |
| 3645 | ext4_block_truncate_page(handle, mapping, inode->i_size); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3646 | |
Jan Kara | 9ddfc3d | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3647 | if (ext4_orphan_add(handle, inode)) |
| 3648 | goto out_stop; |
| 3649 | |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 3650 | down_write(&EXT4_I(inode)->i_data_sem); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3651 | ext4_ext_invalidate_cache(inode); |
| 3652 | |
Theodore Ts'o | c2ea3fd | 2008-10-10 09:40:52 -0400 | [diff] [blame] | 3653 | ext4_discard_preallocations(inode); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3654 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3655 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 3656 | * TODO: optimization is possible here. |
| 3657 | * Probably we need not scan at all, |
| 3658 | * because page truncation is enough. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3659 | */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3660 | |
| 3661 | /* we have to know where to truncate from in crash case */ |
| 3662 | EXT4_I(inode)->i_disksize = inode->i_size; |
| 3663 | ext4_mark_inode_dirty(handle, inode); |
| 3664 | |
| 3665 | last_block = (inode->i_size + sb->s_blocksize - 1) |
| 3666 | >> EXT4_BLOCK_SIZE_BITS(sb); |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 3667 | err = ext4_ext_remove_space(inode, last_block, EXT_MAX_BLOCKS - 1); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3668 | |
| 3669 | /* In a multi-transaction truncate, we only make the final |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3670 | * transaction synchronous. |
| 3671 | */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3672 | if (IS_SYNC(inode)) |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 3673 | ext4_handle_sync(handle); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3674 | |
Jan Kara | 9ddfc3d | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 3675 | up_write(&EXT4_I(inode)->i_data_sem); |
Eric Gouriou | f6d2f6b | 2011-05-22 21:33:00 -0400 | [diff] [blame] | 3676 | |
| 3677 | out_stop: |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3678 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 3679 | * If this was a simple ftruncate() and the file will remain alive, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3680 | * then we need to clear up the orphan record which we created above. |
| 3681 | * However, if this was a real unlink then we were called by |
| 3682 | * ext4_delete_inode(), and we allow that function to clean up the |
| 3683 | * orphan info for us. |
| 3684 | */ |
| 3685 | if (inode->i_nlink) |
| 3686 | ext4_orphan_del(handle, inode); |
| 3687 | |
Solofo Ramangalahy | ef73772 | 2008-04-29 22:00:41 -0400 | [diff] [blame] | 3688 | inode->i_mtime = inode->i_ctime = ext4_current_time(inode); |
| 3689 | ext4_mark_inode_dirty(handle, inode); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3690 | ext4_journal_stop(handle); |
| 3691 | } |
| 3692 | |
Aneesh Kumar K.V | fd28784 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3693 | static void ext4_falloc_update_inode(struct inode *inode, |
| 3694 | int mode, loff_t new_size, int update_ctime) |
| 3695 | { |
| 3696 | struct timespec now; |
| 3697 | |
| 3698 | if (update_ctime) { |
| 3699 | now = current_fs_time(inode->i_sb); |
| 3700 | if (!timespec_equal(&inode->i_ctime, &now)) |
| 3701 | inode->i_ctime = now; |
| 3702 | } |
| 3703 | /* |
| 3704 | * Update only when preallocation was requested beyond |
| 3705 | * the file size. |
| 3706 | */ |
Aneesh Kumar K.V | cf17fea | 2008-09-13 13:06:18 -0400 | [diff] [blame] | 3707 | if (!(mode & FALLOC_FL_KEEP_SIZE)) { |
| 3708 | if (new_size > i_size_read(inode)) |
| 3709 | i_size_write(inode, new_size); |
| 3710 | if (new_size > EXT4_I(inode)->i_disksize) |
| 3711 | ext4_update_i_disksize(inode, new_size); |
Jiaying Zhang | c8d46e4 | 2010-02-24 09:52:53 -0500 | [diff] [blame] | 3712 | } else { |
| 3713 | /* |
| 3714 | * Mark that we allocate beyond EOF so the subsequent truncate |
| 3715 | * can proceed even if the new size is the same as i_size. |
| 3716 | */ |
| 3717 | if (new_size > i_size_read(inode)) |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 3718 | ext4_set_inode_flag(inode, EXT4_INODE_EOFBLOCKS); |
Aneesh Kumar K.V | fd28784 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3719 | } |
| 3720 | |
| 3721 | } |
| 3722 | |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3723 | /* |
Christoph Hellwig | 2fe17c1 | 2011-01-14 13:07:43 +0100 | [diff] [blame] | 3724 | * preallocate space for a file. This implements ext4's fallocate file |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3725 | * operation, which gets called from sys_fallocate system call. |
| 3726 | * For block-mapped files, posix_fallocate should fall back to the method |
| 3727 | * of writing zeroes to the required new blocks (the same behavior which is |
| 3728 | * expected for file systems which do not support fallocate() system call). |
| 3729 | */ |
Christoph Hellwig | 2fe17c1 | 2011-01-14 13:07:43 +0100 | [diff] [blame] | 3730 | long ext4_fallocate(struct file *file, int mode, loff_t offset, loff_t len) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3731 | { |
Christoph Hellwig | 2fe17c1 | 2011-01-14 13:07:43 +0100 | [diff] [blame] | 3732 | struct inode *inode = file->f_path.dentry->d_inode; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3733 | handle_t *handle; |
Aneesh Kumar K.V | fd28784 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3734 | loff_t new_size; |
Theodore Ts'o | 498e5f2 | 2008-11-05 00:14:04 -0500 | [diff] [blame] | 3735 | unsigned int max_blocks; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3736 | int ret = 0; |
| 3737 | int ret2 = 0; |
| 3738 | int retries = 0; |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3739 | struct ext4_map_blocks map; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3740 | unsigned int credits, blkbits = inode->i_blkbits; |
| 3741 | |
| 3742 | /* |
| 3743 | * currently supporting (pre)allocate mode for extent-based |
| 3744 | * files _only_ |
| 3745 | */ |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 3746 | if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3747 | return -EOPNOTSUPP; |
| 3748 | |
Allison Henderson | a4bb6b6 | 2011-05-25 07:41:50 -0400 | [diff] [blame] | 3749 | /* Return error if mode is not supported */ |
| 3750 | if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE)) |
| 3751 | return -EOPNOTSUPP; |
| 3752 | |
| 3753 | if (mode & FALLOC_FL_PUNCH_HOLE) |
| 3754 | return ext4_punch_hole(file, offset, len); |
| 3755 | |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 3756 | trace_ext4_fallocate_enter(inode, offset, len, mode); |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3757 | map.m_lblk = offset >> blkbits; |
Aneesh Kumar K.V | fd28784 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3758 | /* |
| 3759 | * We can't just convert len to max_blocks because |
| 3760 | * If blocksize = 4096 offset = 3072 and len = 2048 |
| 3761 | */ |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3762 | max_blocks = (EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3763 | - map.m_lblk; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3764 | /* |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 3765 | * credits to insert 1 extent into extent tree |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3766 | */ |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 3767 | credits = ext4_chunk_trans_blocks(inode, max_blocks); |
Aneesh Kumar K.V | 55bd725 | 2008-02-15 12:47:21 -0500 | [diff] [blame] | 3768 | mutex_lock(&inode->i_mutex); |
Nikanth Karthikesan | 6d19c42 | 2010-05-16 14:00:00 -0400 | [diff] [blame] | 3769 | ret = inode_newsize_ok(inode, (len + offset)); |
| 3770 | if (ret) { |
| 3771 | mutex_unlock(&inode->i_mutex); |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 3772 | trace_ext4_fallocate_exit(inode, offset, max_blocks, ret); |
Nikanth Karthikesan | 6d19c42 | 2010-05-16 14:00:00 -0400 | [diff] [blame] | 3773 | return ret; |
| 3774 | } |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3775 | retry: |
| 3776 | while (ret >= 0 && ret < max_blocks) { |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3777 | map.m_lblk = map.m_lblk + ret; |
| 3778 | map.m_len = max_blocks = max_blocks - ret; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3779 | handle = ext4_journal_start(inode, credits); |
| 3780 | if (IS_ERR(handle)) { |
| 3781 | ret = PTR_ERR(handle); |
| 3782 | break; |
| 3783 | } |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3784 | ret = ext4_map_blocks(handle, inode, &map, |
Vivek Haldar | 556b27a | 2011-05-25 07:41:54 -0400 | [diff] [blame] | 3785 | EXT4_GET_BLOCKS_CREATE_UNINIT_EXT | |
| 3786 | EXT4_GET_BLOCKS_NO_NORMALIZE); |
Aneesh Kumar K.V | 221879c | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3787 | if (ret <= 0) { |
Aneesh Kumar K.V | 2c98615 | 2008-02-25 15:41:35 -0500 | [diff] [blame] | 3788 | #ifdef EXT4FS_DEBUG |
| 3789 | WARN_ON(ret <= 0); |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3790 | printk(KERN_ERR "%s: ext4_ext_map_blocks " |
Aneesh Kumar K.V | 2c98615 | 2008-02-25 15:41:35 -0500 | [diff] [blame] | 3791 | "returned error inode#%lu, block=%u, " |
Thadeu Lima de Souza Cascardo | 9fd9784 | 2009-01-26 19:26:26 -0500 | [diff] [blame] | 3792 | "max_blocks=%u", __func__, |
Kazuya Mio | a6371b6 | 2010-10-27 21:30:15 -0400 | [diff] [blame] | 3793 | inode->i_ino, map.m_lblk, max_blocks); |
Aneesh Kumar K.V | 2c98615 | 2008-02-25 15:41:35 -0500 | [diff] [blame] | 3794 | #endif |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3795 | ext4_mark_inode_dirty(handle, inode); |
| 3796 | ret2 = ext4_journal_stop(handle); |
| 3797 | break; |
| 3798 | } |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3799 | if ((map.m_lblk + ret) >= (EXT4_BLOCK_ALIGN(offset + len, |
Aneesh Kumar K.V | fd28784 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3800 | blkbits) >> blkbits)) |
| 3801 | new_size = offset + len; |
| 3802 | else |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3803 | new_size = (map.m_lblk + ret) << blkbits; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3804 | |
Aneesh Kumar K.V | fd28784 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3805 | ext4_falloc_update_inode(inode, mode, new_size, |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3806 | (map.m_flags & EXT4_MAP_NEW)); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3807 | ext4_mark_inode_dirty(handle, inode); |
| 3808 | ret2 = ext4_journal_stop(handle); |
| 3809 | if (ret2) |
| 3810 | break; |
| 3811 | } |
Aneesh Kumar K.V | fd28784 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3812 | if (ret == -ENOSPC && |
| 3813 | ext4_should_retry_alloc(inode->i_sb, &retries)) { |
| 3814 | ret = 0; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3815 | goto retry; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3816 | } |
Aneesh Kumar K.V | 55bd725 | 2008-02-15 12:47:21 -0500 | [diff] [blame] | 3817 | mutex_unlock(&inode->i_mutex); |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 3818 | trace_ext4_fallocate_exit(inode, offset, max_blocks, |
| 3819 | ret > 0 ? ret2 : ret); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 3820 | return ret > 0 ? ret2 : ret; |
| 3821 | } |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3822 | |
| 3823 | /* |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3824 | * This function convert a range of blocks to written extents |
| 3825 | * The caller of this function will pass the start offset and the size. |
| 3826 | * all unwritten extents within this range will be converted to |
| 3827 | * written extents. |
| 3828 | * |
| 3829 | * This function is called from the direct IO end io call back |
| 3830 | * function, to convert the fallocated extents after IO is completed. |
Mingming | 109f556 | 2009-11-10 10:48:08 -0500 | [diff] [blame] | 3831 | * Returns 0 on success. |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3832 | */ |
| 3833 | int ext4_convert_unwritten_extents(struct inode *inode, loff_t offset, |
Eric Sandeen | a1de02d | 2010-02-04 23:58:38 -0500 | [diff] [blame] | 3834 | ssize_t len) |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3835 | { |
| 3836 | handle_t *handle; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3837 | unsigned int max_blocks; |
| 3838 | int ret = 0; |
| 3839 | int ret2 = 0; |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3840 | struct ext4_map_blocks map; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3841 | unsigned int credits, blkbits = inode->i_blkbits; |
| 3842 | |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3843 | map.m_lblk = offset >> blkbits; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3844 | /* |
| 3845 | * We can't just convert len to max_blocks because |
| 3846 | * If blocksize = 4096 offset = 3072 and len = 2048 |
| 3847 | */ |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3848 | max_blocks = ((EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) - |
| 3849 | map.m_lblk); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3850 | /* |
| 3851 | * credits to insert 1 extent into extent tree |
| 3852 | */ |
| 3853 | credits = ext4_chunk_trans_blocks(inode, max_blocks); |
| 3854 | while (ret >= 0 && ret < max_blocks) { |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3855 | map.m_lblk += ret; |
| 3856 | map.m_len = (max_blocks -= ret); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3857 | handle = ext4_journal_start(inode, credits); |
| 3858 | if (IS_ERR(handle)) { |
| 3859 | ret = PTR_ERR(handle); |
| 3860 | break; |
| 3861 | } |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3862 | ret = ext4_map_blocks(handle, inode, &map, |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 3863 | EXT4_GET_BLOCKS_IO_CONVERT_EXT); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3864 | if (ret <= 0) { |
| 3865 | WARN_ON(ret <= 0); |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3866 | printk(KERN_ERR "%s: ext4_ext_map_blocks " |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3867 | "returned error inode#%lu, block=%u, " |
| 3868 | "max_blocks=%u", __func__, |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 3869 | inode->i_ino, map.m_lblk, map.m_len); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3870 | } |
| 3871 | ext4_mark_inode_dirty(handle, inode); |
| 3872 | ret2 = ext4_journal_stop(handle); |
| 3873 | if (ret <= 0 || ret2 ) |
| 3874 | break; |
| 3875 | } |
| 3876 | return ret > 0 ? ret2 : ret; |
| 3877 | } |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3878 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3879 | /* |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3880 | * Callback function called for each extent to gather FIEMAP information. |
| 3881 | */ |
Lukas Czerner | c03f8aa | 2011-06-06 00:06:52 -0400 | [diff] [blame] | 3882 | static int ext4_ext_fiemap_cb(struct inode *inode, ext4_lblk_t next, |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3883 | struct ext4_ext_cache *newex, struct ext4_extent *ex, |
| 3884 | void *data) |
| 3885 | { |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3886 | __u64 logical; |
| 3887 | __u64 physical; |
| 3888 | __u64 length; |
| 3889 | __u32 flags = 0; |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3890 | int ret = 0; |
| 3891 | struct fiemap_extent_info *fieinfo = data; |
| 3892 | unsigned char blksize_bits; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3893 | |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3894 | blksize_bits = inode->i_sb->s_blocksize_bits; |
| 3895 | logical = (__u64)newex->ec_block << blksize_bits; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3896 | |
Theodore Ts'o | b05e6ae | 2011-01-10 12:13:26 -0500 | [diff] [blame] | 3897 | if (newex->ec_start == 0) { |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3898 | /* |
| 3899 | * No extent in extent-tree contains block @newex->ec_start, |
| 3900 | * then the block may stay in 1)a hole or 2)delayed-extent. |
| 3901 | * |
| 3902 | * Holes or delayed-extents are processed as follows. |
| 3903 | * 1. lookup dirty pages with specified range in pagecache. |
| 3904 | * If no page is got, then there is no delayed-extent and |
| 3905 | * return with EXT_CONTINUE. |
| 3906 | * 2. find the 1st mapped buffer, |
| 3907 | * 3. check if the mapped buffer is both in the request range |
| 3908 | * and a delayed buffer. If not, there is no delayed-extent, |
| 3909 | * then return. |
| 3910 | * 4. a delayed-extent is found, the extent will be collected. |
| 3911 | */ |
| 3912 | ext4_lblk_t end = 0; |
| 3913 | pgoff_t last_offset; |
| 3914 | pgoff_t offset; |
| 3915 | pgoff_t index; |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 3916 | pgoff_t start_index = 0; |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3917 | struct page **pages = NULL; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3918 | struct buffer_head *bh = NULL; |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3919 | struct buffer_head *head = NULL; |
| 3920 | unsigned int nr_pages = PAGE_SIZE / sizeof(struct page *); |
| 3921 | |
| 3922 | pages = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 3923 | if (pages == NULL) |
| 3924 | return -ENOMEM; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3925 | |
| 3926 | offset = logical >> PAGE_SHIFT; |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3927 | repeat: |
| 3928 | last_offset = offset; |
| 3929 | head = NULL; |
| 3930 | ret = find_get_pages_tag(inode->i_mapping, &offset, |
| 3931 | PAGECACHE_TAG_DIRTY, nr_pages, pages); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3932 | |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3933 | if (!(flags & FIEMAP_EXTENT_DELALLOC)) { |
| 3934 | /* First time, try to find a mapped buffer. */ |
| 3935 | if (ret == 0) { |
| 3936 | out: |
| 3937 | for (index = 0; index < ret; index++) |
| 3938 | page_cache_release(pages[index]); |
| 3939 | /* just a hole. */ |
| 3940 | kfree(pages); |
| 3941 | return EXT_CONTINUE; |
| 3942 | } |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 3943 | index = 0; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3944 | |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 3945 | next_page: |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3946 | /* Try to find the 1st mapped buffer. */ |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 3947 | end = ((__u64)pages[index]->index << PAGE_SHIFT) >> |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3948 | blksize_bits; |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 3949 | if (!page_has_buffers(pages[index])) |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3950 | goto out; |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 3951 | head = page_buffers(pages[index]); |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3952 | if (!head) |
| 3953 | goto out; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3954 | |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 3955 | index++; |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3956 | bh = head; |
| 3957 | do { |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 3958 | if (end >= newex->ec_block + |
| 3959 | newex->ec_len) |
| 3960 | /* The buffer is out of |
| 3961 | * the request range. |
| 3962 | */ |
| 3963 | goto out; |
| 3964 | |
| 3965 | if (buffer_mapped(bh) && |
| 3966 | end >= newex->ec_block) { |
| 3967 | start_index = index - 1; |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3968 | /* get the 1st mapped buffer. */ |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3969 | goto found_mapped_buffer; |
| 3970 | } |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 3971 | |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3972 | bh = bh->b_this_page; |
| 3973 | end++; |
| 3974 | } while (bh != head); |
| 3975 | |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 3976 | /* No mapped buffer in the range found in this page, |
| 3977 | * We need to look up next page. |
| 3978 | */ |
| 3979 | if (index >= ret) { |
| 3980 | /* There is no page left, but we need to limit |
| 3981 | * newex->ec_len. |
| 3982 | */ |
| 3983 | newex->ec_len = end - newex->ec_block; |
| 3984 | goto out; |
| 3985 | } |
| 3986 | goto next_page; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3987 | } else { |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3988 | /*Find contiguous delayed buffers. */ |
| 3989 | if (ret > 0 && pages[0]->index == last_offset) |
| 3990 | head = page_buffers(pages[0]); |
| 3991 | bh = head; |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 3992 | index = 1; |
| 3993 | start_index = 0; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 3994 | } |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 3995 | |
| 3996 | found_mapped_buffer: |
| 3997 | if (bh != NULL && buffer_delay(bh)) { |
| 3998 | /* 1st or contiguous delayed buffer found. */ |
| 3999 | if (!(flags & FIEMAP_EXTENT_DELALLOC)) { |
| 4000 | /* |
| 4001 | * 1st delayed buffer found, record |
| 4002 | * the start of extent. |
| 4003 | */ |
| 4004 | flags |= FIEMAP_EXTENT_DELALLOC; |
| 4005 | newex->ec_block = end; |
| 4006 | logical = (__u64)end << blksize_bits; |
| 4007 | } |
| 4008 | /* Find contiguous delayed buffers. */ |
| 4009 | do { |
| 4010 | if (!buffer_delay(bh)) |
| 4011 | goto found_delayed_extent; |
| 4012 | bh = bh->b_this_page; |
| 4013 | end++; |
| 4014 | } while (bh != head); |
| 4015 | |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 4016 | for (; index < ret; index++) { |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 4017 | if (!page_has_buffers(pages[index])) { |
| 4018 | bh = NULL; |
| 4019 | break; |
| 4020 | } |
| 4021 | head = page_buffers(pages[index]); |
| 4022 | if (!head) { |
| 4023 | bh = NULL; |
| 4024 | break; |
| 4025 | } |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 4026 | |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 4027 | if (pages[index]->index != |
Yongqiang Yang | b221349 | 2011-05-24 11:36:58 -0400 | [diff] [blame] | 4028 | pages[start_index]->index + index |
| 4029 | - start_index) { |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 4030 | /* Blocks are not contiguous. */ |
| 4031 | bh = NULL; |
| 4032 | break; |
| 4033 | } |
| 4034 | bh = head; |
| 4035 | do { |
| 4036 | if (!buffer_delay(bh)) |
| 4037 | /* Delayed-extent ends. */ |
| 4038 | goto found_delayed_extent; |
| 4039 | bh = bh->b_this_page; |
| 4040 | end++; |
| 4041 | } while (bh != head); |
| 4042 | } |
| 4043 | } else if (!(flags & FIEMAP_EXTENT_DELALLOC)) |
| 4044 | /* a hole found. */ |
| 4045 | goto out; |
| 4046 | |
| 4047 | found_delayed_extent: |
| 4048 | newex->ec_len = min(end - newex->ec_block, |
| 4049 | (ext4_lblk_t)EXT_INIT_MAX_LEN); |
| 4050 | if (ret == nr_pages && bh != NULL && |
| 4051 | newex->ec_len < EXT_INIT_MAX_LEN && |
| 4052 | buffer_delay(bh)) { |
| 4053 | /* Have not collected an extent and continue. */ |
| 4054 | for (index = 0; index < ret; index++) |
| 4055 | page_cache_release(pages[index]); |
| 4056 | goto repeat; |
| 4057 | } |
| 4058 | |
| 4059 | for (index = 0; index < ret; index++) |
| 4060 | page_cache_release(pages[index]); |
| 4061 | kfree(pages); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4062 | } |
| 4063 | |
| 4064 | physical = (__u64)newex->ec_start << blksize_bits; |
| 4065 | length = (__u64)newex->ec_len << blksize_bits; |
| 4066 | |
| 4067 | if (ex && ext4_ext_is_uninitialized(ex)) |
| 4068 | flags |= FIEMAP_EXTENT_UNWRITTEN; |
| 4069 | |
Lukas Czerner | c03f8aa | 2011-06-06 00:06:52 -0400 | [diff] [blame] | 4070 | if (next == EXT_MAX_BLOCKS) |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4071 | flags |= FIEMAP_EXTENT_LAST; |
| 4072 | |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 4073 | ret = fiemap_fill_next_extent(fieinfo, logical, physical, |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4074 | length, flags); |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 4075 | if (ret < 0) |
| 4076 | return ret; |
| 4077 | if (ret == 1) |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4078 | return EXT_BREAK; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4079 | return EXT_CONTINUE; |
| 4080 | } |
| 4081 | |
| 4082 | /* fiemap flags we can handle specified here */ |
| 4083 | #define EXT4_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR) |
| 4084 | |
Aneesh Kumar K.V | 3a06d77 | 2008-11-22 15:04:59 -0500 | [diff] [blame] | 4085 | static int ext4_xattr_fiemap(struct inode *inode, |
| 4086 | struct fiemap_extent_info *fieinfo) |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4087 | { |
| 4088 | __u64 physical = 0; |
| 4089 | __u64 length; |
| 4090 | __u32 flags = FIEMAP_EXTENT_LAST; |
| 4091 | int blockbits = inode->i_sb->s_blocksize_bits; |
| 4092 | int error = 0; |
| 4093 | |
| 4094 | /* in-inode? */ |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 4095 | if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) { |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4096 | struct ext4_iloc iloc; |
| 4097 | int offset; /* offset of xattr in inode */ |
| 4098 | |
| 4099 | error = ext4_get_inode_loc(inode, &iloc); |
| 4100 | if (error) |
| 4101 | return error; |
| 4102 | physical = iloc.bh->b_blocknr << blockbits; |
| 4103 | offset = EXT4_GOOD_OLD_INODE_SIZE + |
| 4104 | EXT4_I(inode)->i_extra_isize; |
| 4105 | physical += offset; |
| 4106 | length = EXT4_SB(inode->i_sb)->s_inode_size - offset; |
| 4107 | flags |= FIEMAP_EXTENT_DATA_INLINE; |
Curt Wohlgemuth | fd2dd9f | 2010-04-03 17:44:16 -0400 | [diff] [blame] | 4108 | brelse(iloc.bh); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4109 | } else { /* external block */ |
| 4110 | physical = EXT4_I(inode)->i_file_acl << blockbits; |
| 4111 | length = inode->i_sb->s_blocksize; |
| 4112 | } |
| 4113 | |
| 4114 | if (physical) |
| 4115 | error = fiemap_fill_next_extent(fieinfo, 0, physical, |
| 4116 | length, flags); |
| 4117 | return (error < 0 ? error : 0); |
| 4118 | } |
| 4119 | |
Allison Henderson | a4bb6b6 | 2011-05-25 07:41:50 -0400 | [diff] [blame] | 4120 | /* |
| 4121 | * ext4_ext_punch_hole |
| 4122 | * |
| 4123 | * Punches a hole of "length" bytes in a file starting |
| 4124 | * at byte "offset" |
| 4125 | * |
| 4126 | * @inode: The inode of the file to punch a hole in |
| 4127 | * @offset: The starting byte offset of the hole |
| 4128 | * @length: The length of the hole |
| 4129 | * |
| 4130 | * Returns the number of blocks removed or negative on err |
| 4131 | */ |
| 4132 | int ext4_ext_punch_hole(struct file *file, loff_t offset, loff_t length) |
| 4133 | { |
| 4134 | struct inode *inode = file->f_path.dentry->d_inode; |
| 4135 | struct super_block *sb = inode->i_sb; |
| 4136 | struct ext4_ext_cache cache_ex; |
| 4137 | ext4_lblk_t first_block, last_block, num_blocks, iblock, max_blocks; |
| 4138 | struct address_space *mapping = inode->i_mapping; |
| 4139 | struct ext4_map_blocks map; |
| 4140 | handle_t *handle; |
| 4141 | loff_t first_block_offset, last_block_offset, block_len; |
| 4142 | loff_t first_page, last_page, first_page_offset, last_page_offset; |
| 4143 | int ret, credits, blocks_released, err = 0; |
| 4144 | |
| 4145 | first_block = (offset + sb->s_blocksize - 1) >> |
| 4146 | EXT4_BLOCK_SIZE_BITS(sb); |
| 4147 | last_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb); |
| 4148 | |
| 4149 | first_block_offset = first_block << EXT4_BLOCK_SIZE_BITS(sb); |
| 4150 | last_block_offset = last_block << EXT4_BLOCK_SIZE_BITS(sb); |
| 4151 | |
| 4152 | first_page = (offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT; |
| 4153 | last_page = (offset + length) >> PAGE_CACHE_SHIFT; |
| 4154 | |
| 4155 | first_page_offset = first_page << PAGE_CACHE_SHIFT; |
| 4156 | last_page_offset = last_page << PAGE_CACHE_SHIFT; |
| 4157 | |
| 4158 | /* |
| 4159 | * Write out all dirty pages to avoid race conditions |
| 4160 | * Then release them. |
| 4161 | */ |
| 4162 | if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { |
| 4163 | err = filemap_write_and_wait_range(mapping, |
| 4164 | first_page_offset == 0 ? 0 : first_page_offset-1, |
| 4165 | last_page_offset); |
| 4166 | |
| 4167 | if (err) |
| 4168 | return err; |
| 4169 | } |
| 4170 | |
| 4171 | /* Now release the pages */ |
| 4172 | if (last_page_offset > first_page_offset) { |
| 4173 | truncate_inode_pages_range(mapping, first_page_offset, |
| 4174 | last_page_offset-1); |
| 4175 | } |
| 4176 | |
| 4177 | /* finish any pending end_io work */ |
| 4178 | ext4_flush_completed_IO(inode); |
| 4179 | |
| 4180 | credits = ext4_writepage_trans_blocks(inode); |
| 4181 | handle = ext4_journal_start(inode, credits); |
| 4182 | if (IS_ERR(handle)) |
| 4183 | return PTR_ERR(handle); |
| 4184 | |
| 4185 | err = ext4_orphan_add(handle, inode); |
| 4186 | if (err) |
| 4187 | goto out; |
| 4188 | |
| 4189 | /* |
| 4190 | * Now we need to zero out the un block aligned data. |
| 4191 | * If the file is smaller than a block, just |
| 4192 | * zero out the middle |
| 4193 | */ |
| 4194 | if (first_block > last_block) |
| 4195 | ext4_block_zero_page_range(handle, mapping, offset, length); |
| 4196 | else { |
| 4197 | /* zero out the head of the hole before the first block */ |
| 4198 | block_len = first_block_offset - offset; |
| 4199 | if (block_len > 0) |
| 4200 | ext4_block_zero_page_range(handle, mapping, |
| 4201 | offset, block_len); |
| 4202 | |
| 4203 | /* zero out the tail of the hole after the last block */ |
| 4204 | block_len = offset + length - last_block_offset; |
| 4205 | if (block_len > 0) { |
| 4206 | ext4_block_zero_page_range(handle, mapping, |
| 4207 | last_block_offset, block_len); |
| 4208 | } |
| 4209 | } |
| 4210 | |
| 4211 | /* If there are no blocks to remove, return now */ |
| 4212 | if (first_block >= last_block) |
| 4213 | goto out; |
| 4214 | |
| 4215 | down_write(&EXT4_I(inode)->i_data_sem); |
| 4216 | ext4_ext_invalidate_cache(inode); |
| 4217 | ext4_discard_preallocations(inode); |
| 4218 | |
| 4219 | /* |
| 4220 | * Loop over all the blocks and identify blocks |
| 4221 | * that need to be punched out |
| 4222 | */ |
| 4223 | iblock = first_block; |
| 4224 | blocks_released = 0; |
| 4225 | while (iblock < last_block) { |
| 4226 | max_blocks = last_block - iblock; |
| 4227 | num_blocks = 1; |
| 4228 | memset(&map, 0, sizeof(map)); |
| 4229 | map.m_lblk = iblock; |
| 4230 | map.m_len = max_blocks; |
| 4231 | ret = ext4_ext_map_blocks(handle, inode, &map, |
| 4232 | EXT4_GET_BLOCKS_PUNCH_OUT_EXT); |
| 4233 | |
| 4234 | if (ret > 0) { |
| 4235 | blocks_released += ret; |
| 4236 | num_blocks = ret; |
| 4237 | } else if (ret == 0) { |
| 4238 | /* |
| 4239 | * If map blocks could not find the block, |
| 4240 | * then it is in a hole. If the hole was |
| 4241 | * not already cached, then map blocks should |
| 4242 | * put it in the cache. So we can get the hole |
| 4243 | * out of the cache |
| 4244 | */ |
| 4245 | memset(&cache_ex, 0, sizeof(cache_ex)); |
| 4246 | if ((ext4_ext_check_cache(inode, iblock, &cache_ex)) && |
| 4247 | !cache_ex.ec_start) { |
| 4248 | |
| 4249 | /* The hole is cached */ |
| 4250 | num_blocks = cache_ex.ec_block + |
| 4251 | cache_ex.ec_len - iblock; |
| 4252 | |
| 4253 | } else { |
| 4254 | /* The block could not be identified */ |
| 4255 | err = -EIO; |
| 4256 | break; |
| 4257 | } |
| 4258 | } else { |
| 4259 | /* Map blocks error */ |
| 4260 | err = ret; |
| 4261 | break; |
| 4262 | } |
| 4263 | |
| 4264 | if (num_blocks == 0) { |
| 4265 | /* This condition should never happen */ |
| 4266 | ext_debug("Block lookup failed"); |
| 4267 | err = -EIO; |
| 4268 | break; |
| 4269 | } |
| 4270 | |
| 4271 | iblock += num_blocks; |
| 4272 | } |
| 4273 | |
| 4274 | if (blocks_released > 0) { |
| 4275 | ext4_ext_invalidate_cache(inode); |
| 4276 | ext4_discard_preallocations(inode); |
| 4277 | } |
| 4278 | |
| 4279 | if (IS_SYNC(inode)) |
| 4280 | ext4_handle_sync(handle); |
| 4281 | |
| 4282 | up_write(&EXT4_I(inode)->i_data_sem); |
| 4283 | |
| 4284 | out: |
| 4285 | ext4_orphan_del(handle, inode); |
| 4286 | inode->i_mtime = inode->i_ctime = ext4_current_time(inode); |
| 4287 | ext4_mark_inode_dirty(handle, inode); |
| 4288 | ext4_journal_stop(handle); |
| 4289 | return err; |
| 4290 | } |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4291 | int ext4_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, |
| 4292 | __u64 start, __u64 len) |
| 4293 | { |
| 4294 | ext4_lblk_t start_blk; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4295 | int error = 0; |
| 4296 | |
| 4297 | /* fallback to generic here if not in extents fmt */ |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 4298 | if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4299 | return generic_block_fiemap(inode, fieinfo, start, len, |
| 4300 | ext4_get_block); |
| 4301 | |
| 4302 | if (fiemap_check_flags(fieinfo, EXT4_FIEMAP_FLAGS)) |
| 4303 | return -EBADR; |
| 4304 | |
| 4305 | if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR) { |
| 4306 | error = ext4_xattr_fiemap(inode, fieinfo); |
| 4307 | } else { |
Leonard Michlmayr | aca92ff | 2010-03-04 17:07:28 -0500 | [diff] [blame] | 4308 | ext4_lblk_t len_blks; |
| 4309 | __u64 last_blk; |
| 4310 | |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4311 | start_blk = start >> inode->i_sb->s_blocksize_bits; |
Leonard Michlmayr | aca92ff | 2010-03-04 17:07:28 -0500 | [diff] [blame] | 4312 | last_blk = (start + len - 1) >> inode->i_sb->s_blocksize_bits; |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 4313 | if (last_blk >= EXT_MAX_BLOCKS) |
| 4314 | last_blk = EXT_MAX_BLOCKS-1; |
Leonard Michlmayr | aca92ff | 2010-03-04 17:07:28 -0500 | [diff] [blame] | 4315 | len_blks = ((ext4_lblk_t) last_blk) - start_blk + 1; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4316 | |
| 4317 | /* |
| 4318 | * Walk the extent tree gathering extent information. |
| 4319 | * ext4_ext_fiemap_cb will push extents back to user. |
| 4320 | */ |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4321 | error = ext4_ext_walk_space(inode, start_blk, len_blks, |
| 4322 | ext4_ext_fiemap_cb, fieinfo); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 4323 | } |
| 4324 | |
| 4325 | return error; |
| 4326 | } |