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