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> |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 40 | #include <asm/uaccess.h> |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 41 | #include <linux/fiemap.h> |
Tejun Heo | 66114ca | 2015-05-22 17:13:32 -0400 | [diff] [blame] | 42 | #include <linux/backing-dev.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 */ |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 54 | #define EXT4_EXT_MARK_UNWRIT1 0x2 /* mark first half unwritten */ |
| 55 | #define EXT4_EXT_MARK_UNWRIT2 0x4 /* mark second half unwritten */ |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 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 | |
Dmitry Monakhov | 9aa5d32b | 2014-10-13 03:36:16 -0400 | [diff] [blame] | 77 | if (!ext4_has_metadata_csum(inode->i_sb)) |
Darrick J. Wong | 7ac5990 | 2012-04-29 18:37:10 -0400 | [diff] [blame] | 78 | return 1; |
| 79 | |
| 80 | et = find_ext4_extent_tail(eh); |
| 81 | if (et->et_checksum != ext4_extent_block_csum(inode, eh)) |
| 82 | return 0; |
| 83 | return 1; |
| 84 | } |
| 85 | |
| 86 | static void ext4_extent_block_csum_set(struct inode *inode, |
| 87 | struct ext4_extent_header *eh) |
| 88 | { |
| 89 | struct ext4_extent_tail *et; |
| 90 | |
Dmitry Monakhov | 9aa5d32b | 2014-10-13 03:36:16 -0400 | [diff] [blame] | 91 | if (!ext4_has_metadata_csum(inode->i_sb)) |
Darrick J. Wong | 7ac5990 | 2012-04-29 18:37:10 -0400 | [diff] [blame] | 92 | return; |
| 93 | |
| 94 | et = find_ext4_extent_tail(eh); |
| 95 | et->et_checksum = ext4_extent_block_csum(inode, eh); |
| 96 | } |
| 97 | |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 98 | static int ext4_split_extent(handle_t *handle, |
| 99 | struct inode *inode, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 100 | struct ext4_ext_path **ppath, |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 101 | struct ext4_map_blocks *map, |
| 102 | int split_flag, |
| 103 | int flags); |
| 104 | |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 105 | static int ext4_split_extent_at(handle_t *handle, |
| 106 | struct inode *inode, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 107 | struct ext4_ext_path **ppath, |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 108 | ext4_lblk_t split, |
| 109 | int split_flag, |
| 110 | int flags); |
| 111 | |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 112 | static int ext4_find_delayed_extent(struct inode *inode, |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 113 | struct extent_status *newes); |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 114 | |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 115 | static int ext4_ext_truncate_extend_restart(handle_t *handle, |
| 116 | struct inode *inode, |
| 117 | int needed) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 118 | { |
| 119 | int err; |
| 120 | |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 121 | if (!ext4_handle_valid(handle)) |
| 122 | return 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 123 | if (handle->h_buffer_credits > needed) |
Shen Feng | 9102e4f | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 124 | return 0; |
| 125 | err = ext4_journal_extend(handle, needed); |
Theodore Ts'o | 0123c93 | 2008-08-01 20:57:54 -0400 | [diff] [blame] | 126 | if (err <= 0) |
Shen Feng | 9102e4f | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 127 | return err; |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 128 | err = ext4_truncate_restart_trans(handle, inode, needed); |
Dmitry Monakhov | 0617b83 | 2010-05-17 01:00:00 -0400 | [diff] [blame] | 129 | if (err == 0) |
| 130 | err = -EAGAIN; |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 131 | |
| 132 | return err; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | /* |
| 136 | * could return: |
| 137 | * - EROFS |
| 138 | * - ENOMEM |
| 139 | */ |
| 140 | static int ext4_ext_get_access(handle_t *handle, struct inode *inode, |
| 141 | struct ext4_ext_path *path) |
| 142 | { |
| 143 | if (path->p_bh) { |
| 144 | /* path points to block */ |
liang xie | 5d60125 | 2014-05-12 22:06:43 -0400 | [diff] [blame] | 145 | BUFFER_TRACE(path->p_bh, "get_write_access"); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 146 | return ext4_journal_get_write_access(handle, path->p_bh); |
| 147 | } |
| 148 | /* path points to leaf/index in inode body */ |
| 149 | /* we use in-core data, no need to protect them */ |
| 150 | return 0; |
| 151 | } |
| 152 | |
| 153 | /* |
| 154 | * could return: |
| 155 | * - EROFS |
| 156 | * - ENOMEM |
| 157 | * - EIO |
| 158 | */ |
Darrick J. Wong | 2656497 | 2013-04-19 14:04:12 -0400 | [diff] [blame] | 159 | int __ext4_ext_dirty(const char *where, unsigned int line, handle_t *handle, |
| 160 | struct inode *inode, struct ext4_ext_path *path) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 161 | { |
| 162 | int err; |
Dmitry Monakhov | 4b1f166 | 2014-07-27 22:28:15 -0400 | [diff] [blame] | 163 | |
| 164 | WARN_ON(!rwsem_is_locked(&EXT4_I(inode)->i_data_sem)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 165 | if (path->p_bh) { |
Darrick J. Wong | 7ac5990 | 2012-04-29 18:37:10 -0400 | [diff] [blame] | 166 | ext4_extent_block_csum_set(inode, ext_block_hdr(path->p_bh)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 167 | /* path points to block */ |
Theodore Ts'o | 9ea7a0d | 2011-09-04 10:18:14 -0400 | [diff] [blame] | 168 | err = __ext4_handle_dirty_metadata(where, line, handle, |
| 169 | inode, path->p_bh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 170 | } else { |
| 171 | /* path points to leaf/index in inode body */ |
| 172 | err = ext4_mark_inode_dirty(handle, inode); |
| 173 | } |
| 174 | return err; |
| 175 | } |
| 176 | |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 177 | static ext4_fsblk_t ext4_ext_find_goal(struct inode *inode, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 178 | struct ext4_ext_path *path, |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 179 | ext4_lblk_t block) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 180 | { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 181 | if (path) { |
Yongqiang Yang | 81fdbb4 | 2011-10-29 09:23:38 -0400 | [diff] [blame] | 182 | int depth = path->p_depth; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 183 | struct ext4_extent *ex; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 184 | |
Kazuya Mio | ad4fb9c | 2011-01-10 12:12:28 -0500 | [diff] [blame] | 185 | /* |
| 186 | * Try to predict block placement assuming that we are |
| 187 | * filling in a file which will eventually be |
| 188 | * non-sparse --- i.e., in the case of libbfd writing |
| 189 | * an ELF object sections out-of-order but in a way |
| 190 | * the eventually results in a contiguous object or |
| 191 | * executable file, or some database extending a table |
| 192 | * space file. However, this is actually somewhat |
| 193 | * non-ideal if we are writing a sparse file such as |
| 194 | * qemu or KVM writing a raw image file that is going |
| 195 | * to stay fairly sparse, since it will end up |
| 196 | * fragmenting the file system's free space. Maybe we |
| 197 | * should have some hueristics or some way to allow |
| 198 | * userspace to pass a hint to file system, |
Tao Ma | b8d6568 | 2011-01-21 23:21:31 +0800 | [diff] [blame] | 199 | * especially if the latter case turns out to be |
Kazuya Mio | ad4fb9c | 2011-01-10 12:12:28 -0500 | [diff] [blame] | 200 | * common. |
| 201 | */ |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 202 | ex = path[depth].p_ext; |
Kazuya Mio | ad4fb9c | 2011-01-10 12:12:28 -0500 | [diff] [blame] | 203 | if (ex) { |
| 204 | ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex); |
| 205 | ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block); |
| 206 | |
| 207 | if (block > ext_block) |
| 208 | return ext_pblk + (block - ext_block); |
| 209 | else |
| 210 | return ext_pblk - (ext_block - block); |
| 211 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 212 | |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 213 | /* it looks like index is empty; |
| 214 | * try to find starting block from index itself */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 215 | if (path[depth].p_bh) |
| 216 | return path[depth].p_bh->b_blocknr; |
| 217 | } |
| 218 | |
| 219 | /* OK. use inode's group */ |
Eric Sandeen | f86186b | 2011-06-28 10:01:31 -0400 | [diff] [blame] | 220 | return ext4_inode_to_goal_block(inode); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Aneesh Kumar K.V | 654b490 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 223 | /* |
| 224 | * Allocation for a meta data block |
| 225 | */ |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 226 | static ext4_fsblk_t |
Aneesh Kumar K.V | 654b490 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 227 | ext4_ext_new_meta_block(handle_t *handle, struct inode *inode, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 228 | struct ext4_ext_path *path, |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 229 | struct ext4_extent *ex, int *err, unsigned int flags) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 230 | { |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 231 | ext4_fsblk_t goal, newblock; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 232 | |
| 233 | 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] | 234 | newblock = ext4_new_meta_blocks(handle, inode, goal, flags, |
| 235 | NULL, err); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 236 | return newblock; |
| 237 | } |
| 238 | |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 239 | static inline int ext4_ext_space_block(struct inode *inode, int check) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 240 | { |
| 241 | int size; |
| 242 | |
| 243 | size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header)) |
| 244 | / sizeof(struct ext4_extent); |
Robert P. J. Day | bbf2f9f | 2007-02-17 19:20:16 +0100 | [diff] [blame] | 245 | #ifdef AGGRESSIVE_TEST |
Yongqiang Yang | 02dc62fb | 2011-10-29 09:29:11 -0400 | [diff] [blame] | 246 | if (!check && size > 6) |
| 247 | size = 6; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 248 | #endif |
| 249 | return size; |
| 250 | } |
| 251 | |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 252 | 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] | 253 | { |
| 254 | int size; |
| 255 | |
| 256 | size = (inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header)) |
| 257 | / sizeof(struct ext4_extent_idx); |
Robert P. J. Day | bbf2f9f | 2007-02-17 19:20:16 +0100 | [diff] [blame] | 258 | #ifdef AGGRESSIVE_TEST |
Yongqiang Yang | 02dc62fb | 2011-10-29 09:29:11 -0400 | [diff] [blame] | 259 | if (!check && size > 5) |
| 260 | size = 5; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 261 | #endif |
| 262 | return size; |
| 263 | } |
| 264 | |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 265 | static inline int ext4_ext_space_root(struct inode *inode, int check) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 266 | { |
| 267 | int size; |
| 268 | |
| 269 | size = sizeof(EXT4_I(inode)->i_data); |
| 270 | size -= sizeof(struct ext4_extent_header); |
| 271 | size /= sizeof(struct ext4_extent); |
Robert P. J. Day | bbf2f9f | 2007-02-17 19:20:16 +0100 | [diff] [blame] | 272 | #ifdef AGGRESSIVE_TEST |
Yongqiang Yang | 02dc62fb | 2011-10-29 09:29:11 -0400 | [diff] [blame] | 273 | if (!check && size > 3) |
| 274 | size = 3; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 275 | #endif |
| 276 | return size; |
| 277 | } |
| 278 | |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 279 | 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] | 280 | { |
| 281 | int size; |
| 282 | |
| 283 | size = sizeof(EXT4_I(inode)->i_data); |
| 284 | size -= sizeof(struct ext4_extent_header); |
| 285 | size /= sizeof(struct ext4_extent_idx); |
Robert P. J. Day | bbf2f9f | 2007-02-17 19:20:16 +0100 | [diff] [blame] | 286 | #ifdef AGGRESSIVE_TEST |
Yongqiang Yang | 02dc62fb | 2011-10-29 09:29:11 -0400 | [diff] [blame] | 287 | if (!check && size > 4) |
| 288 | size = 4; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 289 | #endif |
| 290 | return size; |
| 291 | } |
| 292 | |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 293 | static inline int |
| 294 | ext4_force_split_extent_at(handle_t *handle, struct inode *inode, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 295 | struct ext4_ext_path **ppath, ext4_lblk_t lblk, |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 296 | int nofail) |
| 297 | { |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 298 | struct ext4_ext_path *path = *ppath; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 299 | int unwritten = ext4_ext_is_unwritten(path[path->p_depth].p_ext); |
| 300 | |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 301 | return ext4_split_extent_at(handle, inode, ppath, lblk, unwritten ? |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 302 | EXT4_EXT_MARK_UNWRIT1|EXT4_EXT_MARK_UNWRIT2 : 0, |
| 303 | EXT4_EX_NOCACHE | EXT4_GET_BLOCKS_PRE_IO | |
| 304 | (nofail ? EXT4_GET_BLOCKS_METADATA_NOFAIL:0)); |
| 305 | } |
| 306 | |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 307 | /* |
| 308 | * Calculate the number of metadata blocks needed |
| 309 | * to allocate @blocks |
| 310 | * Worse case is one block per extent |
| 311 | */ |
Theodore Ts'o | 01f49d0 | 2011-01-10 12:13:03 -0500 | [diff] [blame] | 312 | 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] | 313 | { |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 314 | struct ext4_inode_info *ei = EXT4_I(inode); |
Yongqiang Yang | 81fdbb4 | 2011-10-29 09:23:38 -0400 | [diff] [blame] | 315 | int idxs; |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 316 | |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 317 | idxs = ((inode->i_sb->s_blocksize - sizeof(struct ext4_extent_header)) |
| 318 | / sizeof(struct ext4_extent_idx)); |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 319 | |
| 320 | /* |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 321 | * If the new delayed allocation block is contiguous with the |
| 322 | * previous da block, it can share index blocks with the |
| 323 | * previous block, so we only need to allocate a new index |
| 324 | * block every idxs leaf blocks. At ldxs**2 blocks, we need |
| 325 | * an additional index block, and at ldxs**3 blocks, yet |
| 326 | * another index blocks. |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 327 | */ |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 328 | if (ei->i_da_metadata_calc_len && |
| 329 | ei->i_da_metadata_calc_last_lblock+1 == lblock) { |
Yongqiang Yang | 81fdbb4 | 2011-10-29 09:23:38 -0400 | [diff] [blame] | 330 | int num = 0; |
| 331 | |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 332 | if ((ei->i_da_metadata_calc_len % idxs) == 0) |
| 333 | num++; |
| 334 | if ((ei->i_da_metadata_calc_len % (idxs*idxs)) == 0) |
| 335 | num++; |
| 336 | if ((ei->i_da_metadata_calc_len % (idxs*idxs*idxs)) == 0) { |
| 337 | num++; |
| 338 | ei->i_da_metadata_calc_len = 0; |
| 339 | } else |
| 340 | ei->i_da_metadata_calc_len++; |
| 341 | ei->i_da_metadata_calc_last_lblock++; |
| 342 | return num; |
| 343 | } |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 344 | |
Theodore Ts'o | 9d0be50 | 2010-01-01 02:41:30 -0500 | [diff] [blame] | 345 | /* |
| 346 | * In the worst case we need a new set of index blocks at |
| 347 | * every level of the inode's extent tree. |
| 348 | */ |
| 349 | ei->i_da_metadata_calc_len = 1; |
| 350 | ei->i_da_metadata_calc_last_lblock = lblock; |
| 351 | return ext_depth(inode) + 1; |
Mingming Cao | d2a1763 | 2008-07-14 17:52:37 -0400 | [diff] [blame] | 352 | } |
| 353 | |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 354 | static int |
| 355 | ext4_ext_max_entries(struct inode *inode, int depth) |
| 356 | { |
| 357 | int max; |
| 358 | |
| 359 | if (depth == ext_depth(inode)) { |
| 360 | if (depth == 0) |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 361 | max = ext4_ext_space_root(inode, 1); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 362 | else |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 363 | max = ext4_ext_space_root_idx(inode, 1); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 364 | } else { |
| 365 | if (depth == 0) |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 366 | max = ext4_ext_space_block(inode, 1); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 367 | else |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 368 | max = ext4_ext_space_block_idx(inode, 1); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | return max; |
| 372 | } |
| 373 | |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 374 | static int ext4_valid_extent(struct inode *inode, struct ext4_extent *ext) |
| 375 | { |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 376 | ext4_fsblk_t block = ext4_ext_pblock(ext); |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 377 | int len = ext4_ext_get_actual_len(ext); |
Eryu Guan | 5946d08 | 2013-12-03 21:22:21 -0500 | [diff] [blame] | 378 | ext4_lblk_t lblock = le32_to_cpu(ext->ee_block); |
| 379 | ext4_lblk_t last = lblock + len - 1; |
Theodore Ts'o | e84a26c | 2009-04-22 20:52:25 -0400 | [diff] [blame] | 380 | |
Eryu Guan | 2f97486 | 2015-05-14 19:00:45 -0400 | [diff] [blame] | 381 | if (len == 0 || lblock > last) |
Theodore Ts'o | 31d4f3a | 2012-03-11 23:30:16 -0400 | [diff] [blame] | 382 | return 0; |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 383 | 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] | 384 | } |
| 385 | |
| 386 | static int ext4_valid_extent_idx(struct inode *inode, |
| 387 | struct ext4_extent_idx *ext_idx) |
| 388 | { |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 389 | ext4_fsblk_t block = ext4_idx_pblock(ext_idx); |
Theodore Ts'o | e84a26c | 2009-04-22 20:52:25 -0400 | [diff] [blame] | 390 | |
Theodore Ts'o | 6fd058f | 2009-05-17 15:38:01 -0400 | [diff] [blame] | 391 | 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] | 392 | } |
| 393 | |
| 394 | static int ext4_valid_extent_entries(struct inode *inode, |
| 395 | struct ext4_extent_header *eh, |
| 396 | int depth) |
| 397 | { |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 398 | unsigned short entries; |
| 399 | if (eh->eh_entries == 0) |
| 400 | return 1; |
| 401 | |
| 402 | entries = le16_to_cpu(eh->eh_entries); |
| 403 | |
| 404 | if (depth == 0) { |
| 405 | /* leaf entries */ |
Yongqiang Yang | 81fdbb4 | 2011-10-29 09:23:38 -0400 | [diff] [blame] | 406 | struct ext4_extent *ext = EXT_FIRST_EXTENT(eh); |
Eryu Guan | 5946d08 | 2013-12-03 21:22:21 -0500 | [diff] [blame] | 407 | struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; |
| 408 | ext4_fsblk_t pblock = 0; |
| 409 | ext4_lblk_t lblock = 0; |
| 410 | ext4_lblk_t prev = 0; |
| 411 | int len = 0; |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 412 | while (entries) { |
| 413 | if (!ext4_valid_extent(inode, ext)) |
| 414 | return 0; |
Eryu Guan | 5946d08 | 2013-12-03 21:22:21 -0500 | [diff] [blame] | 415 | |
| 416 | /* Check for overlapping extents */ |
| 417 | lblock = le32_to_cpu(ext->ee_block); |
| 418 | len = ext4_ext_get_actual_len(ext); |
| 419 | if ((lblock <= prev) && prev) { |
| 420 | pblock = ext4_ext_pblock(ext); |
| 421 | es->s_last_error_block = cpu_to_le64(pblock); |
| 422 | return 0; |
| 423 | } |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 424 | ext++; |
| 425 | entries--; |
Eryu Guan | 5946d08 | 2013-12-03 21:22:21 -0500 | [diff] [blame] | 426 | prev = lblock + len - 1; |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 427 | } |
| 428 | } else { |
Yongqiang Yang | 81fdbb4 | 2011-10-29 09:23:38 -0400 | [diff] [blame] | 429 | struct ext4_extent_idx *ext_idx = EXT_FIRST_INDEX(eh); |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 430 | while (entries) { |
| 431 | if (!ext4_valid_extent_idx(inode, ext_idx)) |
| 432 | return 0; |
| 433 | ext_idx++; |
| 434 | entries--; |
| 435 | } |
| 436 | } |
| 437 | return 1; |
| 438 | } |
| 439 | |
Theodore Ts'o | c398eda | 2010-07-27 11:56:40 -0400 | [diff] [blame] | 440 | static int __ext4_ext_check(const char *function, unsigned int line, |
| 441 | struct inode *inode, struct ext4_extent_header *eh, |
Theodore Ts'o | c349179 | 2013-08-16 21:21:41 -0400 | [diff] [blame] | 442 | int depth, ext4_fsblk_t pblk) |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 443 | { |
| 444 | const char *error_msg; |
| 445 | int max = 0; |
| 446 | |
| 447 | if (unlikely(eh->eh_magic != EXT4_EXT_MAGIC)) { |
| 448 | error_msg = "invalid magic"; |
| 449 | goto corrupted; |
| 450 | } |
| 451 | if (unlikely(le16_to_cpu(eh->eh_depth) != depth)) { |
| 452 | error_msg = "unexpected eh_depth"; |
| 453 | goto corrupted; |
| 454 | } |
| 455 | if (unlikely(eh->eh_max == 0)) { |
| 456 | error_msg = "invalid eh_max"; |
| 457 | goto corrupted; |
| 458 | } |
| 459 | max = ext4_ext_max_entries(inode, depth); |
| 460 | if (unlikely(le16_to_cpu(eh->eh_max) > max)) { |
| 461 | error_msg = "too large eh_max"; |
| 462 | goto corrupted; |
| 463 | } |
| 464 | if (unlikely(le16_to_cpu(eh->eh_entries) > le16_to_cpu(eh->eh_max))) { |
| 465 | error_msg = "invalid eh_entries"; |
| 466 | goto corrupted; |
| 467 | } |
Aneesh Kumar K.V | 56b1986 | 2009-03-12 09:51:20 -0400 | [diff] [blame] | 468 | if (!ext4_valid_extent_entries(inode, eh, depth)) { |
| 469 | error_msg = "invalid extent entries"; |
| 470 | goto corrupted; |
| 471 | } |
Darrick J. Wong | 7ac5990 | 2012-04-29 18:37:10 -0400 | [diff] [blame] | 472 | /* Verify checksum on non-root extent tree nodes */ |
| 473 | if (ext_depth(inode) != depth && |
| 474 | !ext4_extent_block_csum_verify(inode, eh)) { |
| 475 | error_msg = "extent tree corrupted"; |
| 476 | goto corrupted; |
| 477 | } |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 478 | return 0; |
| 479 | |
| 480 | corrupted: |
Theodore Ts'o | c398eda | 2010-07-27 11:56:40 -0400 | [diff] [blame] | 481 | ext4_error_inode(inode, function, line, 0, |
Theodore Ts'o | c349179 | 2013-08-16 21:21:41 -0400 | [diff] [blame] | 482 | "pblk %llu bad header/extent: %s - magic %x, " |
| 483 | "entries %u, max %u(%u), depth %u(%u)", |
| 484 | (unsigned long long) pblk, error_msg, |
| 485 | le16_to_cpu(eh->eh_magic), |
| 486 | le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max), |
| 487 | max, le16_to_cpu(eh->eh_depth), depth); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 488 | return -EIO; |
| 489 | } |
| 490 | |
Theodore Ts'o | c349179 | 2013-08-16 21:21:41 -0400 | [diff] [blame] | 491 | #define ext4_ext_check(inode, eh, depth, pblk) \ |
| 492 | __ext4_ext_check(__func__, __LINE__, (inode), (eh), (depth), (pblk)) |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 493 | |
Aneesh Kumar K.V | 7a262f7 | 2009-03-27 16:39:58 -0400 | [diff] [blame] | 494 | int ext4_ext_check_inode(struct inode *inode) |
| 495 | { |
Theodore Ts'o | c349179 | 2013-08-16 21:21:41 -0400 | [diff] [blame] | 496 | return ext4_ext_check(inode, ext_inode_hdr(inode), ext_depth(inode), 0); |
Aneesh Kumar K.V | 7a262f7 | 2009-03-27 16:39:58 -0400 | [diff] [blame] | 497 | } |
| 498 | |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 499 | static struct buffer_head * |
| 500 | __read_extent_tree_block(const char *function, unsigned int line, |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 501 | struct inode *inode, ext4_fsblk_t pblk, int depth, |
| 502 | int flags) |
Darrick J. Wong | f848912 | 2012-04-29 18:21:10 -0400 | [diff] [blame] | 503 | { |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 504 | struct buffer_head *bh; |
| 505 | int err; |
Darrick J. Wong | f848912 | 2012-04-29 18:21:10 -0400 | [diff] [blame] | 506 | |
Nikolay Borisov | c45653c | 2015-07-02 01:34:07 -0400 | [diff] [blame] | 507 | bh = sb_getblk_gfp(inode->i_sb, pblk, __GFP_MOVABLE | GFP_NOFS); |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 508 | if (unlikely(!bh)) |
| 509 | return ERR_PTR(-ENOMEM); |
| 510 | |
| 511 | if (!bh_uptodate_or_lock(bh)) { |
| 512 | trace_ext4_ext_load_extent(inode, pblk, _RET_IP_); |
| 513 | err = bh_submit_read(bh); |
| 514 | if (err < 0) |
| 515 | goto errout; |
| 516 | } |
Theodore Ts'o | 7869a4a | 2013-08-16 22:05:14 -0400 | [diff] [blame] | 517 | if (buffer_verified(bh) && !(flags & EXT4_EX_FORCE_CACHE)) |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 518 | return bh; |
| 519 | err = __ext4_ext_check(function, line, inode, |
Theodore Ts'o | c349179 | 2013-08-16 21:21:41 -0400 | [diff] [blame] | 520 | ext_block_hdr(bh), depth, pblk); |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 521 | if (err) |
| 522 | goto errout; |
Darrick J. Wong | f848912 | 2012-04-29 18:21:10 -0400 | [diff] [blame] | 523 | set_buffer_verified(bh); |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 524 | /* |
| 525 | * If this is a leaf block, cache all of its entries |
| 526 | */ |
| 527 | if (!(flags & EXT4_EX_NOCACHE) && depth == 0) { |
| 528 | struct ext4_extent_header *eh = ext_block_hdr(bh); |
| 529 | struct ext4_extent *ex = EXT_FIRST_EXTENT(eh); |
| 530 | ext4_lblk_t prev = 0; |
| 531 | int i; |
| 532 | |
| 533 | for (i = le16_to_cpu(eh->eh_entries); i > 0; i--, ex++) { |
| 534 | unsigned int status = EXTENT_STATUS_WRITTEN; |
| 535 | ext4_lblk_t lblk = le32_to_cpu(ex->ee_block); |
| 536 | int len = ext4_ext_get_actual_len(ex); |
| 537 | |
| 538 | if (prev && (prev != lblk)) |
| 539 | ext4_es_cache_extent(inode, prev, |
| 540 | lblk - prev, ~0, |
| 541 | EXTENT_STATUS_HOLE); |
| 542 | |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 543 | if (ext4_ext_is_unwritten(ex)) |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 544 | status = EXTENT_STATUS_UNWRITTEN; |
| 545 | ext4_es_cache_extent(inode, lblk, len, |
| 546 | ext4_ext_pblock(ex), status); |
| 547 | prev = lblk + len; |
| 548 | } |
| 549 | } |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 550 | return bh; |
| 551 | errout: |
| 552 | put_bh(bh); |
| 553 | return ERR_PTR(err); |
| 554 | |
Darrick J. Wong | f848912 | 2012-04-29 18:21:10 -0400 | [diff] [blame] | 555 | } |
| 556 | |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 557 | #define read_extent_tree_block(inode, pblk, depth, flags) \ |
| 558 | __read_extent_tree_block(__func__, __LINE__, (inode), (pblk), \ |
| 559 | (depth), (flags)) |
Darrick J. Wong | f848912 | 2012-04-29 18:21:10 -0400 | [diff] [blame] | 560 | |
Theodore Ts'o | 7869a4a | 2013-08-16 22:05:14 -0400 | [diff] [blame] | 561 | /* |
| 562 | * This function is called to cache a file's extent information in the |
| 563 | * extent status tree |
| 564 | */ |
| 565 | int ext4_ext_precache(struct inode *inode) |
| 566 | { |
| 567 | struct ext4_inode_info *ei = EXT4_I(inode); |
| 568 | struct ext4_ext_path *path = NULL; |
| 569 | struct buffer_head *bh; |
| 570 | int i = 0, depth, ret = 0; |
| 571 | |
| 572 | if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) |
| 573 | return 0; /* not an extent-mapped inode */ |
| 574 | |
| 575 | down_read(&ei->i_data_sem); |
| 576 | depth = ext_depth(inode); |
| 577 | |
| 578 | path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1), |
| 579 | GFP_NOFS); |
| 580 | if (path == NULL) { |
| 581 | up_read(&ei->i_data_sem); |
| 582 | return -ENOMEM; |
| 583 | } |
| 584 | |
| 585 | /* Don't cache anything if there are no external extent blocks */ |
| 586 | if (depth == 0) |
| 587 | goto out; |
| 588 | path[0].p_hdr = ext_inode_hdr(inode); |
| 589 | ret = ext4_ext_check(inode, path[0].p_hdr, depth, 0); |
| 590 | if (ret) |
| 591 | goto out; |
| 592 | path[0].p_idx = EXT_FIRST_INDEX(path[0].p_hdr); |
| 593 | while (i >= 0) { |
| 594 | /* |
| 595 | * If this is a leaf block or we've reached the end of |
| 596 | * the index block, go up |
| 597 | */ |
| 598 | if ((i == depth) || |
| 599 | path[i].p_idx > EXT_LAST_INDEX(path[i].p_hdr)) { |
| 600 | brelse(path[i].p_bh); |
| 601 | path[i].p_bh = NULL; |
| 602 | i--; |
| 603 | continue; |
| 604 | } |
| 605 | bh = read_extent_tree_block(inode, |
| 606 | ext4_idx_pblock(path[i].p_idx++), |
| 607 | depth - i - 1, |
| 608 | EXT4_EX_FORCE_CACHE); |
| 609 | if (IS_ERR(bh)) { |
| 610 | ret = PTR_ERR(bh); |
| 611 | break; |
| 612 | } |
| 613 | i++; |
| 614 | path[i].p_bh = bh; |
| 615 | path[i].p_hdr = ext_block_hdr(bh); |
| 616 | path[i].p_idx = EXT_FIRST_INDEX(path[i].p_hdr); |
| 617 | } |
| 618 | ext4_set_inode_state(inode, EXT4_STATE_EXT_PRECACHED); |
| 619 | out: |
| 620 | up_read(&ei->i_data_sem); |
| 621 | ext4_ext_drop_refs(path); |
| 622 | kfree(path); |
| 623 | return ret; |
| 624 | } |
| 625 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 626 | #ifdef EXT_DEBUG |
| 627 | static void ext4_ext_show_path(struct inode *inode, struct ext4_ext_path *path) |
| 628 | { |
| 629 | int k, l = path->p_depth; |
| 630 | |
| 631 | ext_debug("path:"); |
| 632 | for (k = 0; k <= l; k++, path++) { |
| 633 | if (path->p_idx) { |
Mingming Cao | 2ae0210 | 2006-10-11 01:21:11 -0700 | [diff] [blame] | 634 | 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] | 635 | ext4_idx_pblock(path->p_idx)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 636 | } else if (path->p_ext) { |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 637 | ext_debug(" %d:[%d]%d:%llu ", |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 638 | le32_to_cpu(path->p_ext->ee_block), |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 639 | ext4_ext_is_unwritten(path->p_ext), |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 640 | ext4_ext_get_actual_len(path->p_ext), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 641 | ext4_ext_pblock(path->p_ext)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 642 | } else |
| 643 | ext_debug(" []"); |
| 644 | } |
| 645 | ext_debug("\n"); |
| 646 | } |
| 647 | |
| 648 | static void ext4_ext_show_leaf(struct inode *inode, struct ext4_ext_path *path) |
| 649 | { |
| 650 | int depth = ext_depth(inode); |
| 651 | struct ext4_extent_header *eh; |
| 652 | struct ext4_extent *ex; |
| 653 | int i; |
| 654 | |
| 655 | if (!path) |
| 656 | return; |
| 657 | |
| 658 | eh = path[depth].p_hdr; |
| 659 | ex = EXT_FIRST_EXTENT(eh); |
| 660 | |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 661 | ext_debug("Displaying leaf extents for inode %lu\n", inode->i_ino); |
| 662 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 663 | for (i = 0; i < le16_to_cpu(eh->eh_entries); i++, ex++) { |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 664 | ext_debug("%d:[%d]%d:%llu ", le32_to_cpu(ex->ee_block), |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 665 | ext4_ext_is_unwritten(ex), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 666 | ext4_ext_get_actual_len(ex), ext4_ext_pblock(ex)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 667 | } |
| 668 | ext_debug("\n"); |
| 669 | } |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 670 | |
| 671 | static void ext4_ext_show_move(struct inode *inode, struct ext4_ext_path *path, |
| 672 | ext4_fsblk_t newblock, int level) |
| 673 | { |
| 674 | int depth = ext_depth(inode); |
| 675 | struct ext4_extent *ex; |
| 676 | |
| 677 | if (depth != level) { |
| 678 | struct ext4_extent_idx *idx; |
| 679 | idx = path[level].p_idx; |
| 680 | while (idx <= EXT_MAX_INDEX(path[level].p_hdr)) { |
| 681 | ext_debug("%d: move %d:%llu in new index %llu\n", level, |
| 682 | le32_to_cpu(idx->ei_block), |
| 683 | ext4_idx_pblock(idx), |
| 684 | newblock); |
| 685 | idx++; |
| 686 | } |
| 687 | |
| 688 | return; |
| 689 | } |
| 690 | |
| 691 | ex = path[depth].p_ext; |
| 692 | while (ex <= EXT_MAX_EXTENT(path[depth].p_hdr)) { |
| 693 | ext_debug("move %d:%llu:[%d]%d in new leaf %llu\n", |
| 694 | le32_to_cpu(ex->ee_block), |
| 695 | ext4_ext_pblock(ex), |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 696 | ext4_ext_is_unwritten(ex), |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 697 | ext4_ext_get_actual_len(ex), |
| 698 | newblock); |
| 699 | ex++; |
| 700 | } |
| 701 | } |
| 702 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 703 | #else |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 704 | #define ext4_ext_show_path(inode, path) |
| 705 | #define ext4_ext_show_leaf(inode, path) |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 706 | #define ext4_ext_show_move(inode, path, newblock, level) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 707 | #endif |
| 708 | |
Aneesh Kumar K.V | b35905c | 2008-02-25 16:54:37 -0500 | [diff] [blame] | 709 | void ext4_ext_drop_refs(struct ext4_ext_path *path) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 710 | { |
Theodore Ts'o | b7ea89a | 2014-09-01 14:39:09 -0400 | [diff] [blame] | 711 | int depth, i; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 712 | |
Theodore Ts'o | b7ea89a | 2014-09-01 14:39:09 -0400 | [diff] [blame] | 713 | if (!path) |
| 714 | return; |
| 715 | depth = path->p_depth; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 716 | for (i = 0; i <= depth; i++, path++) |
| 717 | if (path->p_bh) { |
| 718 | brelse(path->p_bh); |
| 719 | path->p_bh = NULL; |
| 720 | } |
| 721 | } |
| 722 | |
| 723 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 724 | * ext4_ext_binsearch_idx: |
| 725 | * binary search for the closest index of the given block |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 726 | * the header must be checked before calling this |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 727 | */ |
| 728 | static void |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 729 | ext4_ext_binsearch_idx(struct inode *inode, |
| 730 | struct ext4_ext_path *path, ext4_lblk_t block) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 731 | { |
| 732 | struct ext4_extent_header *eh = path->p_hdr; |
| 733 | struct ext4_extent_idx *r, *l, *m; |
| 734 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 735 | |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 736 | ext_debug("binsearch for %u(idx): ", block); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 737 | |
| 738 | l = EXT_FIRST_INDEX(eh) + 1; |
Dmitry Monakhov | e9f410b | 2007-07-18 09:09:15 -0400 | [diff] [blame] | 739 | r = EXT_LAST_INDEX(eh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 740 | while (l <= r) { |
| 741 | m = l + (r - l) / 2; |
| 742 | if (block < le32_to_cpu(m->ei_block)) |
| 743 | r = m - 1; |
| 744 | else |
| 745 | l = m + 1; |
Dmitry Monakhov | 26d535e | 2007-07-18 08:33:37 -0400 | [diff] [blame] | 746 | ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ei_block), |
| 747 | m, le32_to_cpu(m->ei_block), |
| 748 | r, le32_to_cpu(r->ei_block)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 749 | } |
| 750 | |
| 751 | path->p_idx = l - 1; |
Zheng Liu | 4a3c3a5 | 2012-05-28 17:55:16 -0400 | [diff] [blame] | 752 | 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] | 753 | ext4_idx_pblock(path->p_idx)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 754 | |
| 755 | #ifdef CHECK_BINSEARCH |
| 756 | { |
| 757 | struct ext4_extent_idx *chix, *ix; |
| 758 | int k; |
| 759 | |
| 760 | chix = ix = EXT_FIRST_INDEX(eh); |
| 761 | for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ix++) { |
| 762 | if (k != 0 && |
| 763 | 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] | 764 | printk(KERN_DEBUG "k=%d, ix=0x%p, " |
| 765 | "first=0x%p\n", k, |
| 766 | ix, EXT_FIRST_INDEX(eh)); |
| 767 | printk(KERN_DEBUG "%u <= %u\n", |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 768 | le32_to_cpu(ix->ei_block), |
| 769 | le32_to_cpu(ix[-1].ei_block)); |
| 770 | } |
| 771 | BUG_ON(k && le32_to_cpu(ix->ei_block) |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 772 | <= le32_to_cpu(ix[-1].ei_block)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 773 | if (block < le32_to_cpu(ix->ei_block)) |
| 774 | break; |
| 775 | chix = ix; |
| 776 | } |
| 777 | BUG_ON(chix != path->p_idx); |
| 778 | } |
| 779 | #endif |
| 780 | |
| 781 | } |
| 782 | |
| 783 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 784 | * ext4_ext_binsearch: |
| 785 | * binary search for closest extent of the given block |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 786 | * the header must be checked before calling this |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 787 | */ |
| 788 | static void |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 789 | ext4_ext_binsearch(struct inode *inode, |
| 790 | struct ext4_ext_path *path, ext4_lblk_t block) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 791 | { |
| 792 | struct ext4_extent_header *eh = path->p_hdr; |
| 793 | struct ext4_extent *r, *l, *m; |
| 794 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 795 | if (eh->eh_entries == 0) { |
| 796 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 797 | * this leaf is empty: |
| 798 | * we get such a leaf in split/add case |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 799 | */ |
| 800 | return; |
| 801 | } |
| 802 | |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 803 | ext_debug("binsearch for %u: ", block); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 804 | |
| 805 | l = EXT_FIRST_EXTENT(eh) + 1; |
Dmitry Monakhov | e9f410b | 2007-07-18 09:09:15 -0400 | [diff] [blame] | 806 | r = EXT_LAST_EXTENT(eh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 807 | |
| 808 | while (l <= r) { |
| 809 | m = l + (r - l) / 2; |
| 810 | if (block < le32_to_cpu(m->ee_block)) |
| 811 | r = m - 1; |
| 812 | else |
| 813 | l = m + 1; |
Dmitry Monakhov | 26d535e | 2007-07-18 08:33:37 -0400 | [diff] [blame] | 814 | ext_debug("%p(%u):%p(%u):%p(%u) ", l, le32_to_cpu(l->ee_block), |
| 815 | m, le32_to_cpu(m->ee_block), |
| 816 | r, le32_to_cpu(r->ee_block)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 817 | } |
| 818 | |
| 819 | path->p_ext = l - 1; |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 820 | ext_debug(" -> %d:%llu:[%d]%d ", |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 821 | le32_to_cpu(path->p_ext->ee_block), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 822 | ext4_ext_pblock(path->p_ext), |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 823 | ext4_ext_is_unwritten(path->p_ext), |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 824 | ext4_ext_get_actual_len(path->p_ext)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 825 | |
| 826 | #ifdef CHECK_BINSEARCH |
| 827 | { |
| 828 | struct ext4_extent *chex, *ex; |
| 829 | int k; |
| 830 | |
| 831 | chex = ex = EXT_FIRST_EXTENT(eh); |
| 832 | for (k = 0; k < le16_to_cpu(eh->eh_entries); k++, ex++) { |
| 833 | BUG_ON(k && le32_to_cpu(ex->ee_block) |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 834 | <= le32_to_cpu(ex[-1].ee_block)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 835 | if (block < le32_to_cpu(ex->ee_block)) |
| 836 | break; |
| 837 | chex = ex; |
| 838 | } |
| 839 | BUG_ON(chex != path->p_ext); |
| 840 | } |
| 841 | #endif |
| 842 | |
| 843 | } |
| 844 | |
| 845 | int ext4_ext_tree_init(handle_t *handle, struct inode *inode) |
| 846 | { |
| 847 | struct ext4_extent_header *eh; |
| 848 | |
| 849 | eh = ext_inode_hdr(inode); |
| 850 | eh->eh_depth = 0; |
| 851 | eh->eh_entries = 0; |
| 852 | eh->eh_magic = EXT4_EXT_MAGIC; |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 853 | eh->eh_max = cpu_to_le16(ext4_ext_space_root(inode, 0)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 854 | ext4_mark_inode_dirty(handle, inode); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 855 | return 0; |
| 856 | } |
| 857 | |
| 858 | struct ext4_ext_path * |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 859 | ext4_find_extent(struct inode *inode, ext4_lblk_t block, |
| 860 | struct ext4_ext_path **orig_path, int flags) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 861 | { |
| 862 | struct ext4_extent_header *eh; |
| 863 | struct buffer_head *bh; |
Theodore Ts'o | 705912c | 2014-09-01 14:34:09 -0400 | [diff] [blame] | 864 | struct ext4_ext_path *path = orig_path ? *orig_path : NULL; |
| 865 | short int depth, i, ppos = 0; |
Theodore Ts'o | 860d21e | 2013-01-12 16:19:36 -0500 | [diff] [blame] | 866 | int ret; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 867 | |
| 868 | eh = ext_inode_hdr(inode); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 869 | depth = ext_depth(inode); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 870 | |
Theodore Ts'o | 10809df8 | 2014-09-01 14:40:09 -0400 | [diff] [blame] | 871 | if (path) { |
Theodore Ts'o | 523f431 | 2014-09-01 14:38:09 -0400 | [diff] [blame] | 872 | ext4_ext_drop_refs(path); |
Theodore Ts'o | 10809df8 | 2014-09-01 14:40:09 -0400 | [diff] [blame] | 873 | if (depth > path[0].p_maxdepth) { |
| 874 | kfree(path); |
| 875 | *orig_path = path = NULL; |
| 876 | } |
| 877 | } |
| 878 | if (!path) { |
Theodore Ts'o | 523f431 | 2014-09-01 14:38:09 -0400 | [diff] [blame] | 879 | /* account possible depth increase */ |
Avantika Mathur | 5d4958f | 2006-12-06 20:41:35 -0800 | [diff] [blame] | 880 | path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 2), |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 881 | GFP_NOFS); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 882 | if (unlikely(!path)) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 883 | return ERR_PTR(-ENOMEM); |
Theodore Ts'o | 10809df8 | 2014-09-01 14:40:09 -0400 | [diff] [blame] | 884 | path[0].p_maxdepth = depth + 1; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 885 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 886 | path[0].p_hdr = eh; |
Shen Feng | 1973adc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 887 | path[0].p_bh = NULL; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 888 | |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 889 | i = depth; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 890 | /* walk through the tree */ |
| 891 | while (i) { |
| 892 | ext_debug("depth %d: num %d, max %d\n", |
| 893 | 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] | 894 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 895 | ext4_ext_binsearch_idx(inode, path + ppos, block); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 896 | path[ppos].p_block = ext4_idx_pblock(path[ppos].p_idx); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 897 | path[ppos].p_depth = i; |
| 898 | path[ppos].p_ext = NULL; |
| 899 | |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 900 | bh = read_extent_tree_block(inode, path[ppos].p_block, --i, |
| 901 | flags); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 902 | if (unlikely(IS_ERR(bh))) { |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 903 | ret = PTR_ERR(bh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 904 | goto err; |
Theodore Ts'o | 860d21e | 2013-01-12 16:19:36 -0500 | [diff] [blame] | 905 | } |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 906 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 907 | eh = ext_block_hdr(bh); |
| 908 | ppos++; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 909 | if (unlikely(ppos > depth)) { |
| 910 | put_bh(bh); |
| 911 | EXT4_ERROR_INODE(inode, |
| 912 | "ppos %d > depth %d", ppos, depth); |
Theodore Ts'o | 860d21e | 2013-01-12 16:19:36 -0500 | [diff] [blame] | 913 | ret = -EIO; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 914 | goto err; |
| 915 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 916 | path[ppos].p_bh = bh; |
| 917 | path[ppos].p_hdr = eh; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 918 | } |
| 919 | |
| 920 | path[ppos].p_depth = i; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 921 | path[ppos].p_ext = NULL; |
| 922 | path[ppos].p_idx = NULL; |
| 923 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 924 | /* find extent */ |
| 925 | ext4_ext_binsearch(inode, path + ppos, block); |
Shen Feng | 1973adc | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 926 | /* if not an empty leaf */ |
| 927 | if (path[ppos].p_ext) |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 928 | path[ppos].p_block = ext4_ext_pblock(path[ppos].p_ext); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 929 | |
| 930 | ext4_ext_show_path(inode, path); |
| 931 | |
| 932 | return path; |
| 933 | |
| 934 | err: |
| 935 | ext4_ext_drop_refs(path); |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 936 | kfree(path); |
| 937 | if (orig_path) |
| 938 | *orig_path = NULL; |
Theodore Ts'o | 860d21e | 2013-01-12 16:19:36 -0500 | [diff] [blame] | 939 | return ERR_PTR(ret); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 940 | } |
| 941 | |
| 942 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 943 | * ext4_ext_insert_index: |
| 944 | * insert new index [@logical;@ptr] into the block at @curp; |
| 945 | * check where to insert: before @curp or after @curp |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 946 | */ |
Theodore Ts'o | 1f109d5 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 947 | static int ext4_ext_insert_index(handle_t *handle, struct inode *inode, |
| 948 | struct ext4_ext_path *curp, |
| 949 | int logical, ext4_fsblk_t ptr) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 950 | { |
| 951 | struct ext4_extent_idx *ix; |
| 952 | int len, err; |
| 953 | |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 954 | err = ext4_ext_get_access(handle, inode, curp); |
| 955 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 956 | return err; |
| 957 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 958 | if (unlikely(logical == le32_to_cpu(curp->p_idx->ei_block))) { |
| 959 | EXT4_ERROR_INODE(inode, |
| 960 | "logical %d == ei_block %d!", |
| 961 | logical, le32_to_cpu(curp->p_idx->ei_block)); |
| 962 | return -EIO; |
| 963 | } |
Robin Dong | d462031 | 2011-07-17 23:43:42 -0400 | [diff] [blame] | 964 | |
| 965 | if (unlikely(le16_to_cpu(curp->p_hdr->eh_entries) |
| 966 | >= le16_to_cpu(curp->p_hdr->eh_max))) { |
| 967 | EXT4_ERROR_INODE(inode, |
| 968 | "eh_entries %d >= eh_max %d!", |
| 969 | le16_to_cpu(curp->p_hdr->eh_entries), |
| 970 | le16_to_cpu(curp->p_hdr->eh_max)); |
| 971 | return -EIO; |
| 972 | } |
| 973 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 974 | if (logical > le32_to_cpu(curp->p_idx->ei_block)) { |
| 975 | /* insert after */ |
Eric Gouriou | 80e675f | 2011-10-27 11:52:18 -0400 | [diff] [blame] | 976 | ext_debug("insert new index %d after: %llu\n", logical, ptr); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 977 | ix = curp->p_idx + 1; |
| 978 | } else { |
| 979 | /* insert before */ |
Eric Gouriou | 80e675f | 2011-10-27 11:52:18 -0400 | [diff] [blame] | 980 | ext_debug("insert new index %d before: %llu\n", logical, ptr); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 981 | ix = curp->p_idx; |
| 982 | } |
| 983 | |
Eric Gouriou | 80e675f | 2011-10-27 11:52:18 -0400 | [diff] [blame] | 984 | len = EXT_LAST_INDEX(curp->p_hdr) - ix + 1; |
| 985 | BUG_ON(len < 0); |
| 986 | if (len > 0) { |
| 987 | ext_debug("insert new index %d: " |
| 988 | "move %d indices from 0x%p to 0x%p\n", |
| 989 | logical, len, ix, ix + 1); |
| 990 | memmove(ix + 1, ix, len * sizeof(struct ext4_extent_idx)); |
| 991 | } |
| 992 | |
Tao Ma | f472e02 | 2011-10-17 10:13:46 -0400 | [diff] [blame] | 993 | if (unlikely(ix > EXT_MAX_INDEX(curp->p_hdr))) { |
| 994 | EXT4_ERROR_INODE(inode, "ix > EXT_MAX_INDEX!"); |
| 995 | return -EIO; |
| 996 | } |
| 997 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 998 | ix->ei_block = cpu_to_le32(logical); |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 999 | ext4_idx_store_pblock(ix, ptr); |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1000 | le16_add_cpu(&curp->p_hdr->eh_entries, 1); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1001 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1002 | if (unlikely(ix > EXT_LAST_INDEX(curp->p_hdr))) { |
| 1003 | EXT4_ERROR_INODE(inode, "ix > EXT_LAST_INDEX!"); |
| 1004 | return -EIO; |
| 1005 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1006 | |
| 1007 | err = ext4_ext_dirty(handle, inode, curp); |
| 1008 | ext4_std_error(inode->i_sb, err); |
| 1009 | |
| 1010 | return err; |
| 1011 | } |
| 1012 | |
| 1013 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1014 | * ext4_ext_split: |
| 1015 | * inserts new subtree into the path, using free index entry |
| 1016 | * at depth @at: |
| 1017 | * - allocates all needed blocks (new leaf and all intermediate index blocks) |
| 1018 | * - makes decision where to split |
| 1019 | * - moves remaining extents and index entries (right to the split point) |
| 1020 | * into the newly allocated blocks |
| 1021 | * - initializes subtree |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1022 | */ |
| 1023 | static int ext4_ext_split(handle_t *handle, struct inode *inode, |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 1024 | unsigned int flags, |
| 1025 | struct ext4_ext_path *path, |
| 1026 | struct ext4_extent *newext, int at) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1027 | { |
| 1028 | struct buffer_head *bh = NULL; |
| 1029 | int depth = ext_depth(inode); |
| 1030 | struct ext4_extent_header *neh; |
| 1031 | struct ext4_extent_idx *fidx; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1032 | int i = at, k, m, a; |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 1033 | ext4_fsblk_t newblock, oldblock; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1034 | __le32 border; |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 1035 | ext4_fsblk_t *ablocks = NULL; /* array of allocated blocks */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1036 | int err = 0; |
| 1037 | |
| 1038 | /* make decision: where to split? */ |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1039 | /* FIXME: now decision is simplest: at current extent */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1040 | |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1041 | /* if current leaf will be split, then we should use |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1042 | * border from split point */ |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1043 | if (unlikely(path[depth].p_ext > EXT_MAX_EXTENT(path[depth].p_hdr))) { |
| 1044 | EXT4_ERROR_INODE(inode, "p_ext > EXT_MAX_EXTENT!"); |
| 1045 | return -EIO; |
| 1046 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1047 | if (path[depth].p_ext != EXT_MAX_EXTENT(path[depth].p_hdr)) { |
| 1048 | border = path[depth].p_ext[1].ee_block; |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1049 | ext_debug("leaf will be split." |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1050 | " next leaf starts at %d\n", |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 1051 | le32_to_cpu(border)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1052 | } else { |
| 1053 | border = newext->ee_block; |
| 1054 | ext_debug("leaf will be added." |
| 1055 | " next leaf starts at %d\n", |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 1056 | le32_to_cpu(border)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1057 | } |
| 1058 | |
| 1059 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1060 | * If error occurs, then we break processing |
| 1061 | * and mark filesystem read-only. index won't |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1062 | * be inserted and tree will be in consistent |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1063 | * state. Next mount will repair buffers too. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1064 | */ |
| 1065 | |
| 1066 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1067 | * Get array to track all allocated blocks. |
| 1068 | * We need this to handle errors and free blocks |
| 1069 | * upon them. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1070 | */ |
Avantika Mathur | 5d4958f | 2006-12-06 20:41:35 -0800 | [diff] [blame] | 1071 | ablocks = kzalloc(sizeof(ext4_fsblk_t) * depth, GFP_NOFS); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1072 | if (!ablocks) |
| 1073 | return -ENOMEM; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1074 | |
| 1075 | /* allocate all needed blocks */ |
| 1076 | ext_debug("allocate %d blocks for indexes/leaf\n", depth - at); |
| 1077 | for (a = 0; a < depth - at; a++) { |
Aneesh Kumar K.V | 654b490 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1078 | newblock = ext4_ext_new_meta_block(handle, inode, path, |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 1079 | newext, &err, flags); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1080 | if (newblock == 0) |
| 1081 | goto cleanup; |
| 1082 | ablocks[a] = newblock; |
| 1083 | } |
| 1084 | |
| 1085 | /* initialize new leaf */ |
| 1086 | newblock = ablocks[--a]; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1087 | if (unlikely(newblock == 0)) { |
| 1088 | EXT4_ERROR_INODE(inode, "newblock == 0!"); |
| 1089 | err = -EIO; |
| 1090 | goto cleanup; |
| 1091 | } |
Nikolay Borisov | c45653c | 2015-07-02 01:34:07 -0400 | [diff] [blame] | 1092 | bh = sb_getblk_gfp(inode->i_sb, newblock, __GFP_MOVABLE | GFP_NOFS); |
Wang Shilong | aebf024 | 2013-01-12 16:28:47 -0500 | [diff] [blame] | 1093 | if (unlikely(!bh)) { |
Theodore Ts'o | 860d21e | 2013-01-12 16:19:36 -0500 | [diff] [blame] | 1094 | err = -ENOMEM; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1095 | goto cleanup; |
| 1096 | } |
| 1097 | lock_buffer(bh); |
| 1098 | |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1099 | err = ext4_journal_get_create_access(handle, bh); |
| 1100 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1101 | goto cleanup; |
| 1102 | |
| 1103 | neh = ext_block_hdr(bh); |
| 1104 | neh->eh_entries = 0; |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 1105 | neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1106 | neh->eh_magic = EXT4_EXT_MAGIC; |
| 1107 | neh->eh_depth = 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1108 | |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1109 | /* move remainder of path[depth] to the new leaf */ |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1110 | if (unlikely(path[depth].p_hdr->eh_entries != |
| 1111 | path[depth].p_hdr->eh_max)) { |
| 1112 | EXT4_ERROR_INODE(inode, "eh_entries %d != eh_max %d!", |
| 1113 | path[depth].p_hdr->eh_entries, |
| 1114 | path[depth].p_hdr->eh_max); |
| 1115 | err = -EIO; |
| 1116 | goto cleanup; |
| 1117 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1118 | /* start copy from next extent */ |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 1119 | m = EXT_MAX_EXTENT(path[depth].p_hdr) - path[depth].p_ext++; |
| 1120 | ext4_ext_show_move(inode, path, newblock, depth); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1121 | if (m) { |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 1122 | struct ext4_extent *ex; |
| 1123 | ex = EXT_FIRST_EXTENT(neh); |
| 1124 | memmove(ex, path[depth].p_ext, sizeof(struct ext4_extent) * m); |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1125 | le16_add_cpu(&neh->eh_entries, m); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1126 | } |
| 1127 | |
Darrick J. Wong | 7ac5990 | 2012-04-29 18:37:10 -0400 | [diff] [blame] | 1128 | ext4_extent_block_csum_set(inode, neh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1129 | set_buffer_uptodate(bh); |
| 1130 | unlock_buffer(bh); |
| 1131 | |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 1132 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1133 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1134 | goto cleanup; |
| 1135 | brelse(bh); |
| 1136 | bh = NULL; |
| 1137 | |
| 1138 | /* correct old leaf */ |
| 1139 | if (m) { |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1140 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 1141 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1142 | goto cleanup; |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1143 | le16_add_cpu(&path[depth].p_hdr->eh_entries, -m); |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1144 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 1145 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1146 | goto cleanup; |
| 1147 | |
| 1148 | } |
| 1149 | |
| 1150 | /* create intermediate indexes */ |
| 1151 | k = depth - at - 1; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1152 | if (unlikely(k < 0)) { |
| 1153 | EXT4_ERROR_INODE(inode, "k %d < 0!", k); |
| 1154 | err = -EIO; |
| 1155 | goto cleanup; |
| 1156 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1157 | if (k) |
| 1158 | ext_debug("create %d intermediate indices\n", k); |
| 1159 | /* insert new index into current index block */ |
| 1160 | /* current depth stored in i var */ |
| 1161 | i = depth - 1; |
| 1162 | while (k--) { |
| 1163 | oldblock = newblock; |
| 1164 | newblock = ablocks[--a]; |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1165 | bh = sb_getblk(inode->i_sb, newblock); |
Wang Shilong | aebf024 | 2013-01-12 16:28:47 -0500 | [diff] [blame] | 1166 | if (unlikely(!bh)) { |
Theodore Ts'o | 860d21e | 2013-01-12 16:19:36 -0500 | [diff] [blame] | 1167 | err = -ENOMEM; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1168 | goto cleanup; |
| 1169 | } |
| 1170 | lock_buffer(bh); |
| 1171 | |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1172 | err = ext4_journal_get_create_access(handle, bh); |
| 1173 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1174 | goto cleanup; |
| 1175 | |
| 1176 | neh = ext_block_hdr(bh); |
| 1177 | neh->eh_entries = cpu_to_le16(1); |
| 1178 | neh->eh_magic = EXT4_EXT_MAGIC; |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 1179 | 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] | 1180 | neh->eh_depth = cpu_to_le16(depth - i); |
| 1181 | fidx = EXT_FIRST_INDEX(neh); |
| 1182 | fidx->ei_block = border; |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 1183 | ext4_idx_store_pblock(fidx, oldblock); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1184 | |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1185 | ext_debug("int.index at %d (block %llu): %u -> %llu\n", |
| 1186 | i, newblock, le32_to_cpu(border), oldblock); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1187 | |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 1188 | /* move remainder of path[i] to the new index block */ |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1189 | if (unlikely(EXT_MAX_INDEX(path[i].p_hdr) != |
| 1190 | EXT_LAST_INDEX(path[i].p_hdr))) { |
| 1191 | EXT4_ERROR_INODE(inode, |
| 1192 | "EXT_MAX_INDEX != EXT_LAST_INDEX ee_block %d!", |
| 1193 | le32_to_cpu(path[i].p_ext->ee_block)); |
| 1194 | err = -EIO; |
| 1195 | goto cleanup; |
| 1196 | } |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 1197 | /* start copy indexes */ |
| 1198 | m = EXT_MAX_INDEX(path[i].p_hdr) - path[i].p_idx++; |
| 1199 | ext_debug("cur 0x%p, last 0x%p\n", path[i].p_idx, |
| 1200 | EXT_MAX_INDEX(path[i].p_hdr)); |
| 1201 | ext4_ext_show_move(inode, path, newblock, i); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1202 | if (m) { |
Yongqiang Yang | 1b16da7 | 2011-05-25 17:41:48 -0400 | [diff] [blame] | 1203 | memmove(++fidx, path[i].p_idx, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1204 | sizeof(struct ext4_extent_idx) * m); |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1205 | le16_add_cpu(&neh->eh_entries, m); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1206 | } |
Darrick J. Wong | 7ac5990 | 2012-04-29 18:37:10 -0400 | [diff] [blame] | 1207 | ext4_extent_block_csum_set(inode, neh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1208 | set_buffer_uptodate(bh); |
| 1209 | unlock_buffer(bh); |
| 1210 | |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 1211 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1212 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1213 | goto cleanup; |
| 1214 | brelse(bh); |
| 1215 | bh = NULL; |
| 1216 | |
| 1217 | /* correct old index */ |
| 1218 | if (m) { |
| 1219 | err = ext4_ext_get_access(handle, inode, path + i); |
| 1220 | if (err) |
| 1221 | goto cleanup; |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1222 | le16_add_cpu(&path[i].p_hdr->eh_entries, -m); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1223 | err = ext4_ext_dirty(handle, inode, path + i); |
| 1224 | if (err) |
| 1225 | goto cleanup; |
| 1226 | } |
| 1227 | |
| 1228 | i--; |
| 1229 | } |
| 1230 | |
| 1231 | /* insert new index */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1232 | err = ext4_ext_insert_index(handle, inode, path + at, |
| 1233 | le32_to_cpu(border), newblock); |
| 1234 | |
| 1235 | cleanup: |
| 1236 | if (bh) { |
| 1237 | if (buffer_locked(bh)) |
| 1238 | unlock_buffer(bh); |
| 1239 | brelse(bh); |
| 1240 | } |
| 1241 | |
| 1242 | if (err) { |
| 1243 | /* free all allocated blocks in error case */ |
| 1244 | for (i = 0; i < depth; i++) { |
| 1245 | if (!ablocks[i]) |
| 1246 | continue; |
Peter Huewe | 7dc5761 | 2011-02-21 21:01:42 -0500 | [diff] [blame] | 1247 | ext4_free_blocks(handle, inode, NULL, ablocks[i], 1, |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 1248 | EXT4_FREE_BLOCKS_METADATA); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1249 | } |
| 1250 | } |
| 1251 | kfree(ablocks); |
| 1252 | |
| 1253 | return err; |
| 1254 | } |
| 1255 | |
| 1256 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1257 | * ext4_ext_grow_indepth: |
| 1258 | * implements tree growing procedure: |
| 1259 | * - allocates new block |
| 1260 | * - moves top-level data (index block or leaf) into the new block |
| 1261 | * - initializes new top-level, creating index that points to the |
| 1262 | * just created block |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1263 | */ |
| 1264 | static int ext4_ext_grow_indepth(handle_t *handle, struct inode *inode, |
Dmitry Monakhov | be5cd90 | 2014-10-01 22:57:09 -0400 | [diff] [blame] | 1265 | unsigned int flags) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1266 | { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1267 | struct ext4_extent_header *neh; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1268 | struct buffer_head *bh; |
Dmitry Monakhov | be5cd90 | 2014-10-01 22:57:09 -0400 | [diff] [blame] | 1269 | ext4_fsblk_t newblock, goal = 0; |
| 1270 | struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1271 | int err = 0; |
| 1272 | |
Dmitry Monakhov | be5cd90 | 2014-10-01 22:57:09 -0400 | [diff] [blame] | 1273 | /* Try to prepend new index to old one */ |
| 1274 | if (ext_depth(inode)) |
| 1275 | goal = ext4_idx_pblock(EXT_FIRST_INDEX(ext_inode_hdr(inode))); |
| 1276 | if (goal > le32_to_cpu(es->s_first_data_block)) { |
| 1277 | flags |= EXT4_MB_HINT_TRY_GOAL; |
| 1278 | goal--; |
| 1279 | } else |
| 1280 | goal = ext4_inode_to_goal_block(inode); |
| 1281 | newblock = ext4_new_meta_blocks(handle, inode, goal, flags, |
| 1282 | NULL, &err); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1283 | if (newblock == 0) |
| 1284 | return err; |
| 1285 | |
Nikolay Borisov | c45653c | 2015-07-02 01:34:07 -0400 | [diff] [blame] | 1286 | bh = sb_getblk_gfp(inode->i_sb, newblock, __GFP_MOVABLE | GFP_NOFS); |
Wang Shilong | aebf024 | 2013-01-12 16:28:47 -0500 | [diff] [blame] | 1287 | if (unlikely(!bh)) |
Theodore Ts'o | 860d21e | 2013-01-12 16:19:36 -0500 | [diff] [blame] | 1288 | return -ENOMEM; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1289 | lock_buffer(bh); |
| 1290 | |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1291 | err = ext4_journal_get_create_access(handle, bh); |
| 1292 | if (err) { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1293 | unlock_buffer(bh); |
| 1294 | goto out; |
| 1295 | } |
| 1296 | |
| 1297 | /* move top-level index/leaf into new block */ |
Dmitry Monakhov | 1939dd8 | 2011-10-22 01:26:05 -0400 | [diff] [blame] | 1298 | memmove(bh->b_data, EXT4_I(inode)->i_data, |
| 1299 | sizeof(EXT4_I(inode)->i_data)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1300 | |
| 1301 | /* set size of new block */ |
| 1302 | neh = ext_block_hdr(bh); |
| 1303 | /* old root could have indexes or leaves |
| 1304 | * so calculate e_max right way */ |
| 1305 | if (ext_depth(inode)) |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 1306 | 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] | 1307 | else |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 1308 | neh->eh_max = cpu_to_le16(ext4_ext_space_block(inode, 0)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1309 | neh->eh_magic = EXT4_EXT_MAGIC; |
Darrick J. Wong | 7ac5990 | 2012-04-29 18:37:10 -0400 | [diff] [blame] | 1310 | ext4_extent_block_csum_set(inode, neh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1311 | set_buffer_uptodate(bh); |
| 1312 | unlock_buffer(bh); |
| 1313 | |
Frank Mayhar | 0390131 | 2009-01-07 00:06:22 -0500 | [diff] [blame] | 1314 | err = ext4_handle_dirty_metadata(handle, inode, bh); |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1315 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1316 | goto out; |
| 1317 | |
Dmitry Monakhov | 1939dd8 | 2011-10-22 01:26:05 -0400 | [diff] [blame] | 1318 | /* Update top-level index: num,max,pointer */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1319 | neh = ext_inode_hdr(inode); |
Dmitry Monakhov | 1939dd8 | 2011-10-22 01:26:05 -0400 | [diff] [blame] | 1320 | neh->eh_entries = cpu_to_le16(1); |
| 1321 | ext4_idx_store_pblock(EXT_FIRST_INDEX(neh), newblock); |
| 1322 | if (neh->eh_depth == 0) { |
| 1323 | /* Root extent block becomes index block */ |
| 1324 | neh->eh_max = cpu_to_le16(ext4_ext_space_root_idx(inode, 0)); |
| 1325 | EXT_FIRST_INDEX(neh)->ei_block = |
| 1326 | EXT_FIRST_EXTENT(neh)->ee_block; |
| 1327 | } |
Mingming Cao | 2ae0210 | 2006-10-11 01:21:11 -0700 | [diff] [blame] | 1328 | ext_debug("new root: num %d(%d), lblock %d, ptr %llu\n", |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1329 | le16_to_cpu(neh->eh_entries), le16_to_cpu(neh->eh_max), |
Andi Kleen | 5a0790c | 2010-06-14 13:28:03 -0400 | [diff] [blame] | 1330 | le32_to_cpu(EXT_FIRST_INDEX(neh)->ei_block), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1331 | ext4_idx_pblock(EXT_FIRST_INDEX(neh))); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1332 | |
Wei Yongjun | ba39ebb | 2012-09-27 09:37:53 -0400 | [diff] [blame] | 1333 | le16_add_cpu(&neh->eh_depth, 1); |
Dmitry Monakhov | 1939dd8 | 2011-10-22 01:26:05 -0400 | [diff] [blame] | 1334 | ext4_mark_inode_dirty(handle, inode); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1335 | out: |
| 1336 | brelse(bh); |
| 1337 | |
| 1338 | return err; |
| 1339 | } |
| 1340 | |
| 1341 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1342 | * ext4_ext_create_new_leaf: |
| 1343 | * finds empty index and adds new leaf. |
| 1344 | * if no free index is found, then it requests in-depth growing. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1345 | */ |
| 1346 | static int ext4_ext_create_new_leaf(handle_t *handle, struct inode *inode, |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 1347 | unsigned int mb_flags, |
| 1348 | unsigned int gb_flags, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 1349 | struct ext4_ext_path **ppath, |
Allison Henderson | 55f020d | 2011-05-25 07:41:26 -0400 | [diff] [blame] | 1350 | struct ext4_extent *newext) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1351 | { |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 1352 | struct ext4_ext_path *path = *ppath; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1353 | struct ext4_ext_path *curp; |
| 1354 | int depth, i, err = 0; |
| 1355 | |
| 1356 | repeat: |
| 1357 | i = depth = ext_depth(inode); |
| 1358 | |
| 1359 | /* walk up to the tree and look for free index entry */ |
| 1360 | curp = path + depth; |
| 1361 | while (i > 0 && !EXT_HAS_FREE_INDEX(curp)) { |
| 1362 | i--; |
| 1363 | curp--; |
| 1364 | } |
| 1365 | |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1366 | /* we use already allocated block for index block, |
| 1367 | * so subsequent data blocks should be contiguous */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1368 | if (EXT_HAS_FREE_INDEX(curp)) { |
| 1369 | /* if we found index with free entry, then use that |
| 1370 | * entry: create all needed subtree and add new leaf */ |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 1371 | err = ext4_ext_split(handle, inode, mb_flags, path, newext, i); |
Shen Feng | 787e098 | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 1372 | if (err) |
| 1373 | goto out; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1374 | |
| 1375 | /* refill path */ |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 1376 | path = ext4_find_extent(inode, |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1377 | (ext4_lblk_t)le32_to_cpu(newext->ee_block), |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 1378 | ppath, gb_flags); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1379 | if (IS_ERR(path)) |
| 1380 | err = PTR_ERR(path); |
| 1381 | } else { |
| 1382 | /* tree is full, time to grow in depth */ |
Dmitry Monakhov | be5cd90 | 2014-10-01 22:57:09 -0400 | [diff] [blame] | 1383 | err = ext4_ext_grow_indepth(handle, inode, mb_flags); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1384 | if (err) |
| 1385 | goto out; |
| 1386 | |
| 1387 | /* refill path */ |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 1388 | path = ext4_find_extent(inode, |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1389 | (ext4_lblk_t)le32_to_cpu(newext->ee_block), |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 1390 | ppath, gb_flags); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1391 | if (IS_ERR(path)) { |
| 1392 | err = PTR_ERR(path); |
| 1393 | goto out; |
| 1394 | } |
| 1395 | |
| 1396 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1397 | * only first (depth 0 -> 1) produces free space; |
| 1398 | * in all other cases we have to split the grown tree |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1399 | */ |
| 1400 | depth = ext_depth(inode); |
| 1401 | 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] | 1402 | /* now we need to split */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1403 | goto repeat; |
| 1404 | } |
| 1405 | } |
| 1406 | |
| 1407 | out: |
| 1408 | return err; |
| 1409 | } |
| 1410 | |
| 1411 | /* |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1412 | * search the closest allocated block to the left for *logical |
| 1413 | * and returns it at @logical + it's physical address at @phys |
| 1414 | * if *logical is the smallest allocated block, the function |
| 1415 | * returns 0 at @phys |
| 1416 | * return value contains 0 (success) or error code |
| 1417 | */ |
Theodore Ts'o | 1f109d5 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1418 | static int ext4_ext_search_left(struct inode *inode, |
| 1419 | struct ext4_ext_path *path, |
| 1420 | ext4_lblk_t *logical, ext4_fsblk_t *phys) |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1421 | { |
| 1422 | struct ext4_extent_idx *ix; |
| 1423 | struct ext4_extent *ex; |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1424 | int depth, ee_len; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1425 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1426 | if (unlikely(path == NULL)) { |
| 1427 | EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical); |
| 1428 | return -EIO; |
| 1429 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1430 | depth = path->p_depth; |
| 1431 | *phys = 0; |
| 1432 | |
| 1433 | if (depth == 0 && path->p_ext == NULL) |
| 1434 | return 0; |
| 1435 | |
| 1436 | /* usually extent in the path covers blocks smaller |
| 1437 | * then *logical, but it can be that extent is the |
| 1438 | * first one in the file */ |
| 1439 | |
| 1440 | ex = path[depth].p_ext; |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1441 | ee_len = ext4_ext_get_actual_len(ex); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1442 | if (*logical < le32_to_cpu(ex->ee_block)) { |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1443 | if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) { |
| 1444 | EXT4_ERROR_INODE(inode, |
| 1445 | "EXT_FIRST_EXTENT != ex *logical %d ee_block %d!", |
| 1446 | *logical, le32_to_cpu(ex->ee_block)); |
| 1447 | return -EIO; |
| 1448 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1449 | while (--depth >= 0) { |
| 1450 | ix = path[depth].p_idx; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1451 | if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) { |
| 1452 | EXT4_ERROR_INODE(inode, |
| 1453 | "ix (%d) != EXT_FIRST_INDEX (%d) (depth %d)!", |
Tao Ma | 6ee3b21 | 2011-10-08 16:08:34 -0400 | [diff] [blame] | 1454 | ix != NULL ? le32_to_cpu(ix->ei_block) : 0, |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1455 | EXT_FIRST_INDEX(path[depth].p_hdr) != NULL ? |
Tao Ma | 6ee3b21 | 2011-10-08 16:08:34 -0400 | [diff] [blame] | 1456 | 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] | 1457 | depth); |
| 1458 | return -EIO; |
| 1459 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1460 | } |
| 1461 | return 0; |
| 1462 | } |
| 1463 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1464 | if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) { |
| 1465 | EXT4_ERROR_INODE(inode, |
| 1466 | "logical %d < ee_block %d + ee_len %d!", |
| 1467 | *logical, le32_to_cpu(ex->ee_block), ee_len); |
| 1468 | return -EIO; |
| 1469 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1470 | |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1471 | *logical = le32_to_cpu(ex->ee_block) + ee_len - 1; |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1472 | *phys = ext4_ext_pblock(ex) + ee_len - 1; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1473 | return 0; |
| 1474 | } |
| 1475 | |
| 1476 | /* |
| 1477 | * search the closest allocated block to the right for *logical |
| 1478 | * and returns it at @logical + it's physical address at @phys |
Tao Ma | df3ab17 | 2011-10-08 15:53:49 -0400 | [diff] [blame] | 1479 | * if *logical is the largest allocated block, the function |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1480 | * returns 0 at @phys |
| 1481 | * return value contains 0 (success) or error code |
| 1482 | */ |
Theodore Ts'o | 1f109d5 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1483 | static int ext4_ext_search_right(struct inode *inode, |
| 1484 | struct ext4_ext_path *path, |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 1485 | ext4_lblk_t *logical, ext4_fsblk_t *phys, |
| 1486 | struct ext4_extent **ret_ex) |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1487 | { |
| 1488 | struct buffer_head *bh = NULL; |
| 1489 | struct ext4_extent_header *eh; |
| 1490 | struct ext4_extent_idx *ix; |
| 1491 | struct ext4_extent *ex; |
| 1492 | ext4_fsblk_t block; |
Eric Sandeen | 395a87b | 2009-03-10 18:18:47 -0400 | [diff] [blame] | 1493 | int depth; /* Note, NOT eh_depth; depth from top of tree */ |
| 1494 | int ee_len; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1495 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1496 | if (unlikely(path == NULL)) { |
| 1497 | EXT4_ERROR_INODE(inode, "path == NULL *logical %d!", *logical); |
| 1498 | return -EIO; |
| 1499 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1500 | depth = path->p_depth; |
| 1501 | *phys = 0; |
| 1502 | |
| 1503 | if (depth == 0 && path->p_ext == NULL) |
| 1504 | return 0; |
| 1505 | |
| 1506 | /* usually extent in the path covers blocks smaller |
| 1507 | * then *logical, but it can be that extent is the |
| 1508 | * first one in the file */ |
| 1509 | |
| 1510 | ex = path[depth].p_ext; |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1511 | ee_len = ext4_ext_get_actual_len(ex); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1512 | if (*logical < le32_to_cpu(ex->ee_block)) { |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1513 | if (unlikely(EXT_FIRST_EXTENT(path[depth].p_hdr) != ex)) { |
| 1514 | EXT4_ERROR_INODE(inode, |
| 1515 | "first_extent(path[%d].p_hdr) != ex", |
| 1516 | depth); |
| 1517 | return -EIO; |
| 1518 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1519 | while (--depth >= 0) { |
| 1520 | ix = path[depth].p_idx; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1521 | if (unlikely(ix != EXT_FIRST_INDEX(path[depth].p_hdr))) { |
| 1522 | EXT4_ERROR_INODE(inode, |
| 1523 | "ix != EXT_FIRST_INDEX *logical %d!", |
| 1524 | *logical); |
| 1525 | return -EIO; |
| 1526 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1527 | } |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 1528 | goto found_extent; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1529 | } |
| 1530 | |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1531 | if (unlikely(*logical < (le32_to_cpu(ex->ee_block) + ee_len))) { |
| 1532 | EXT4_ERROR_INODE(inode, |
| 1533 | "logical %d < ee_block %d + ee_len %d!", |
| 1534 | *logical, le32_to_cpu(ex->ee_block), ee_len); |
| 1535 | return -EIO; |
| 1536 | } |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1537 | |
| 1538 | if (ex != EXT_LAST_EXTENT(path[depth].p_hdr)) { |
| 1539 | /* next allocated block in this leaf */ |
| 1540 | ex++; |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 1541 | goto found_extent; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1542 | } |
| 1543 | |
| 1544 | /* go up and search for index to the right */ |
| 1545 | while (--depth >= 0) { |
| 1546 | ix = path[depth].p_idx; |
| 1547 | if (ix != EXT_LAST_INDEX(path[depth].p_hdr)) |
Wu Fengguang | 25f1ee3 | 2008-11-25 17:24:23 -0500 | [diff] [blame] | 1548 | goto got_index; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1549 | } |
| 1550 | |
Wu Fengguang | 25f1ee3 | 2008-11-25 17:24:23 -0500 | [diff] [blame] | 1551 | /* we've gone up to the root and found no index to the right */ |
| 1552 | return 0; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1553 | |
Wu Fengguang | 25f1ee3 | 2008-11-25 17:24:23 -0500 | [diff] [blame] | 1554 | got_index: |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1555 | /* we've found index to the right, let's |
| 1556 | * follow it and find the closest allocated |
| 1557 | * block to the right */ |
| 1558 | ix++; |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1559 | block = ext4_idx_pblock(ix); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1560 | while (++depth < path->p_depth) { |
Eric Sandeen | 395a87b | 2009-03-10 18:18:47 -0400 | [diff] [blame] | 1561 | /* subtract from p_depth to get proper eh_depth */ |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 1562 | bh = read_extent_tree_block(inode, block, |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 1563 | path->p_depth - depth, 0); |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 1564 | if (IS_ERR(bh)) |
| 1565 | return PTR_ERR(bh); |
| 1566 | eh = ext_block_hdr(bh); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1567 | ix = EXT_FIRST_INDEX(eh); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1568 | block = ext4_idx_pblock(ix); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1569 | put_bh(bh); |
| 1570 | } |
| 1571 | |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 1572 | bh = read_extent_tree_block(inode, block, path->p_depth - depth, 0); |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 1573 | if (IS_ERR(bh)) |
| 1574 | return PTR_ERR(bh); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1575 | eh = ext_block_hdr(bh); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1576 | ex = EXT_FIRST_EXTENT(eh); |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 1577 | found_extent: |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1578 | *logical = le32_to_cpu(ex->ee_block); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1579 | *phys = ext4_ext_pblock(ex); |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 1580 | *ret_ex = ex; |
| 1581 | if (bh) |
| 1582 | put_bh(bh); |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1583 | return 0; |
Alex Tomas | 1988b51 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1584 | } |
| 1585 | |
| 1586 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1587 | * ext4_ext_next_allocated_block: |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1588 | * returns allocated block in subsequent extent or EXT_MAX_BLOCKS. |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1589 | * NOTE: it considers block number from index entry as |
| 1590 | * allocated block. Thus, index entries have to be consistent |
| 1591 | * with leaves. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1592 | */ |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 1593 | ext4_lblk_t |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1594 | ext4_ext_next_allocated_block(struct ext4_ext_path *path) |
| 1595 | { |
| 1596 | int depth; |
| 1597 | |
| 1598 | BUG_ON(path == NULL); |
| 1599 | depth = path->p_depth; |
| 1600 | |
| 1601 | if (depth == 0 && path->p_ext == NULL) |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1602 | return EXT_MAX_BLOCKS; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1603 | |
| 1604 | while (depth >= 0) { |
| 1605 | if (depth == path->p_depth) { |
| 1606 | /* leaf */ |
Curt Wohlgemuth | 6f8ff53 | 2011-10-26 04:38:59 -0400 | [diff] [blame] | 1607 | if (path[depth].p_ext && |
| 1608 | path[depth].p_ext != |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1609 | EXT_LAST_EXTENT(path[depth].p_hdr)) |
| 1610 | return le32_to_cpu(path[depth].p_ext[1].ee_block); |
| 1611 | } else { |
| 1612 | /* index */ |
| 1613 | if (path[depth].p_idx != |
| 1614 | EXT_LAST_INDEX(path[depth].p_hdr)) |
| 1615 | return le32_to_cpu(path[depth].p_idx[1].ei_block); |
| 1616 | } |
| 1617 | depth--; |
| 1618 | } |
| 1619 | |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1620 | return EXT_MAX_BLOCKS; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1621 | } |
| 1622 | |
| 1623 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1624 | * ext4_ext_next_leaf_block: |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1625 | * returns first allocated block from next leaf or EXT_MAX_BLOCKS |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1626 | */ |
Robin Dong | 5718789 | 2011-07-23 21:49:07 -0400 | [diff] [blame] | 1627 | 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] | 1628 | { |
| 1629 | int depth; |
| 1630 | |
| 1631 | BUG_ON(path == NULL); |
| 1632 | depth = path->p_depth; |
| 1633 | |
| 1634 | /* zero-tree has no leaf blocks at all */ |
| 1635 | if (depth == 0) |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1636 | return EXT_MAX_BLOCKS; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1637 | |
| 1638 | /* go to index block */ |
| 1639 | depth--; |
| 1640 | |
| 1641 | while (depth >= 0) { |
| 1642 | if (path[depth].p_idx != |
| 1643 | EXT_LAST_INDEX(path[depth].p_hdr)) |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1644 | return (ext4_lblk_t) |
| 1645 | le32_to_cpu(path[depth].p_idx[1].ei_block); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1646 | depth--; |
| 1647 | } |
| 1648 | |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1649 | return EXT_MAX_BLOCKS; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1650 | } |
| 1651 | |
| 1652 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1653 | * ext4_ext_correct_indexes: |
| 1654 | * if leaf gets modified and modified extent is first in the leaf, |
| 1655 | * then we have to correct all indexes above. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1656 | * TODO: do we need to correct tree in all cases? |
| 1657 | */ |
Aneesh Kumar K.V | 1d03ec9 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1658 | static int ext4_ext_correct_indexes(handle_t *handle, struct inode *inode, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1659 | struct ext4_ext_path *path) |
| 1660 | { |
| 1661 | struct ext4_extent_header *eh; |
| 1662 | int depth = ext_depth(inode); |
| 1663 | struct ext4_extent *ex; |
| 1664 | __le32 border; |
| 1665 | int k, err = 0; |
| 1666 | |
| 1667 | eh = path[depth].p_hdr; |
| 1668 | ex = path[depth].p_ext; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1669 | |
| 1670 | if (unlikely(ex == NULL || eh == NULL)) { |
| 1671 | EXT4_ERROR_INODE(inode, |
| 1672 | "ex %p == NULL or eh %p == NULL", ex, eh); |
| 1673 | return -EIO; |
| 1674 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1675 | |
| 1676 | if (depth == 0) { |
| 1677 | /* there is no tree at all */ |
| 1678 | return 0; |
| 1679 | } |
| 1680 | |
| 1681 | if (ex != EXT_FIRST_EXTENT(eh)) { |
| 1682 | /* we correct tree if first leaf got modified only */ |
| 1683 | return 0; |
| 1684 | } |
| 1685 | |
| 1686 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1687 | * TODO: we need correction if border is smaller than current one |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1688 | */ |
| 1689 | k = depth - 1; |
| 1690 | border = path[depth].p_ext->ee_block; |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1691 | err = ext4_ext_get_access(handle, inode, path + k); |
| 1692 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1693 | return err; |
| 1694 | path[k].p_idx->ei_block = border; |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1695 | err = ext4_ext_dirty(handle, inode, path + k); |
| 1696 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1697 | return err; |
| 1698 | |
| 1699 | while (k--) { |
| 1700 | /* change all left-side indexes */ |
| 1701 | if (path[k+1].p_idx != EXT_FIRST_INDEX(path[k+1].p_hdr)) |
| 1702 | break; |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1703 | err = ext4_ext_get_access(handle, inode, path + k); |
| 1704 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1705 | break; |
| 1706 | path[k].p_idx->ei_block = border; |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 1707 | err = ext4_ext_dirty(handle, inode, path + k); |
| 1708 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1709 | break; |
| 1710 | } |
| 1711 | |
| 1712 | return err; |
| 1713 | } |
| 1714 | |
Akira Fujita | 748de67 | 2009-06-17 19:24:03 -0400 | [diff] [blame] | 1715 | int |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1716 | ext4_can_extents_be_merged(struct inode *inode, struct ext4_extent *ex1, |
| 1717 | struct ext4_extent *ex2) |
| 1718 | { |
Eric Sandeen | da0169b | 2013-11-04 09:58:26 -0500 | [diff] [blame] | 1719 | unsigned short ext1_ee_len, ext2_ee_len; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1720 | |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 1721 | if (ext4_ext_is_unwritten(ex1) != ext4_ext_is_unwritten(ex2)) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1722 | return 0; |
| 1723 | |
| 1724 | ext1_ee_len = ext4_ext_get_actual_len(ex1); |
| 1725 | ext2_ee_len = ext4_ext_get_actual_len(ex2); |
| 1726 | |
| 1727 | if (le32_to_cpu(ex1->ee_block) + ext1_ee_len != |
Andrew Morton | 63f5793 | 2006-10-11 01:21:24 -0700 | [diff] [blame] | 1728 | le32_to_cpu(ex2->ee_block)) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1729 | return 0; |
| 1730 | |
Suparna Bhattacharya | 471d401 | 2006-10-11 01:21:06 -0700 | [diff] [blame] | 1731 | /* |
| 1732 | * To allow future support for preallocated extents to be added |
| 1733 | * as an RO_COMPAT feature, refuse to merge to extents if |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1734 | * this can result in the top bit of ee_len being set. |
Suparna Bhattacharya | 471d401 | 2006-10-11 01:21:06 -0700 | [diff] [blame] | 1735 | */ |
Eric Sandeen | da0169b | 2013-11-04 09:58:26 -0500 | [diff] [blame] | 1736 | if (ext1_ee_len + ext2_ee_len > EXT_INIT_MAX_LEN) |
Suparna Bhattacharya | 471d401 | 2006-10-11 01:21:06 -0700 | [diff] [blame] | 1737 | return 0; |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 1738 | if (ext4_ext_is_unwritten(ex1) && |
Darrick J. Wong | a9b8241 | 2014-02-20 21:17:35 -0500 | [diff] [blame] | 1739 | (ext4_test_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN) || |
| 1740 | atomic_read(&EXT4_I(inode)->i_unwritten) || |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 1741 | (ext1_ee_len + ext2_ee_len > EXT_UNWRITTEN_MAX_LEN))) |
Darrick J. Wong | a9b8241 | 2014-02-20 21:17:35 -0500 | [diff] [blame] | 1742 | return 0; |
Robert P. J. Day | bbf2f9f | 2007-02-17 19:20:16 +0100 | [diff] [blame] | 1743 | #ifdef AGGRESSIVE_TEST |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1744 | if (ext1_ee_len >= 4) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1745 | return 0; |
| 1746 | #endif |
| 1747 | |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1748 | if (ext4_ext_pblock(ex1) + ext1_ee_len == ext4_ext_pblock(ex2)) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1749 | return 1; |
| 1750 | return 0; |
| 1751 | } |
| 1752 | |
| 1753 | /* |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 1754 | * This function tries to merge the "ex" extent to the next extent in the tree. |
| 1755 | * It always tries to merge towards right. If you want to merge towards |
| 1756 | * left, pass "ex - 1" as argument instead of "ex". |
| 1757 | * Returns 0 if the extents (ex and ex+1) were _not_ merged and returns |
| 1758 | * 1 if they got merged. |
| 1759 | */ |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 1760 | static int ext4_ext_try_to_merge_right(struct inode *inode, |
Theodore Ts'o | 1f109d5 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1761 | struct ext4_ext_path *path, |
| 1762 | struct ext4_extent *ex) |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 1763 | { |
| 1764 | struct ext4_extent_header *eh; |
| 1765 | unsigned int depth, len; |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 1766 | int merge_done = 0, unwritten; |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 1767 | |
| 1768 | depth = ext_depth(inode); |
| 1769 | BUG_ON(path[depth].p_hdr == NULL); |
| 1770 | eh = path[depth].p_hdr; |
| 1771 | |
| 1772 | while (ex < EXT_LAST_EXTENT(eh)) { |
| 1773 | if (!ext4_can_extents_be_merged(inode, ex, ex + 1)) |
| 1774 | break; |
| 1775 | /* merge with next extent! */ |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 1776 | unwritten = ext4_ext_is_unwritten(ex); |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 1777 | ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex) |
| 1778 | + ext4_ext_get_actual_len(ex + 1)); |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 1779 | if (unwritten) |
| 1780 | ext4_ext_mark_unwritten(ex); |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 1781 | |
| 1782 | if (ex + 1 < EXT_LAST_EXTENT(eh)) { |
| 1783 | len = (EXT_LAST_EXTENT(eh) - ex - 1) |
| 1784 | * sizeof(struct ext4_extent); |
| 1785 | memmove(ex + 1, ex + 2, len); |
| 1786 | } |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1787 | le16_add_cpu(&eh->eh_entries, -1); |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 1788 | merge_done = 1; |
| 1789 | WARN_ON(eh->eh_entries == 0); |
| 1790 | if (!eh->eh_entries) |
Theodore Ts'o | 24676da | 2010-05-16 21:00:00 -0400 | [diff] [blame] | 1791 | EXT4_ERROR_INODE(inode, "eh->eh_entries = 0!"); |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 1792 | } |
| 1793 | |
| 1794 | return merge_done; |
| 1795 | } |
| 1796 | |
| 1797 | /* |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 1798 | * This function does a very simple check to see if we can collapse |
| 1799 | * an extent tree with a single extent tree leaf block into the inode. |
| 1800 | */ |
| 1801 | static void ext4_ext_try_to_merge_up(handle_t *handle, |
| 1802 | struct inode *inode, |
| 1803 | struct ext4_ext_path *path) |
| 1804 | { |
| 1805 | size_t s; |
| 1806 | unsigned max_root = ext4_ext_space_root(inode, 0); |
| 1807 | ext4_fsblk_t blk; |
| 1808 | |
| 1809 | if ((path[0].p_depth != 1) || |
| 1810 | (le16_to_cpu(path[0].p_hdr->eh_entries) != 1) || |
| 1811 | (le16_to_cpu(path[1].p_hdr->eh_entries) > max_root)) |
| 1812 | return; |
| 1813 | |
| 1814 | /* |
| 1815 | * We need to modify the block allocation bitmap and the block |
| 1816 | * group descriptor to release the extent tree block. If we |
| 1817 | * can't get the journal credits, give up. |
| 1818 | */ |
| 1819 | if (ext4_journal_extend(handle, 2)) |
| 1820 | return; |
| 1821 | |
| 1822 | /* |
| 1823 | * Copy the extent data up to the inode |
| 1824 | */ |
| 1825 | blk = ext4_idx_pblock(path[0].p_idx); |
| 1826 | s = le16_to_cpu(path[1].p_hdr->eh_entries) * |
| 1827 | sizeof(struct ext4_extent_idx); |
| 1828 | s += sizeof(struct ext4_extent_header); |
| 1829 | |
Theodore Ts'o | 10809df8 | 2014-09-01 14:40:09 -0400 | [diff] [blame] | 1830 | path[1].p_maxdepth = path[0].p_maxdepth; |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 1831 | memcpy(path[0].p_hdr, path[1].p_hdr, s); |
| 1832 | path[0].p_depth = 0; |
| 1833 | path[0].p_ext = EXT_FIRST_EXTENT(path[0].p_hdr) + |
| 1834 | (path[1].p_ext - EXT_FIRST_EXTENT(path[1].p_hdr)); |
| 1835 | path[0].p_hdr->eh_max = cpu_to_le16(max_root); |
| 1836 | |
| 1837 | brelse(path[1].p_bh); |
| 1838 | ext4_free_blocks(handle, inode, NULL, blk, 1, |
Theodore Ts'o | 71d4f7d | 2014-07-15 06:02:38 -0400 | [diff] [blame] | 1839 | EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET); |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 1840 | } |
| 1841 | |
| 1842 | /* |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 1843 | * This function tries to merge the @ex extent to neighbours in the tree. |
| 1844 | * return 1 if merge left else 0. |
| 1845 | */ |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 1846 | static void ext4_ext_try_to_merge(handle_t *handle, |
| 1847 | struct inode *inode, |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 1848 | struct ext4_ext_path *path, |
| 1849 | struct ext4_extent *ex) { |
| 1850 | struct ext4_extent_header *eh; |
| 1851 | unsigned int depth; |
| 1852 | int merge_done = 0; |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 1853 | |
| 1854 | depth = ext_depth(inode); |
| 1855 | BUG_ON(path[depth].p_hdr == NULL); |
| 1856 | eh = path[depth].p_hdr; |
| 1857 | |
| 1858 | if (ex > EXT_FIRST_EXTENT(eh)) |
| 1859 | merge_done = ext4_ext_try_to_merge_right(inode, path, ex - 1); |
| 1860 | |
| 1861 | if (!merge_done) |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 1862 | (void) ext4_ext_try_to_merge_right(inode, path, ex); |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 1863 | |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 1864 | ext4_ext_try_to_merge_up(handle, inode, path); |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 1865 | } |
| 1866 | |
| 1867 | /* |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1868 | * check if a portion of the "newext" extent overlaps with an |
| 1869 | * existing extent. |
| 1870 | * |
| 1871 | * If there is an overlap discovered, it updates the length of the newext |
| 1872 | * such that there will be no overlap, and then returns 1. |
| 1873 | * If there is no overlap found, it returns 0. |
| 1874 | */ |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 1875 | static unsigned int ext4_ext_check_overlap(struct ext4_sb_info *sbi, |
| 1876 | struct inode *inode, |
Theodore Ts'o | 1f109d5 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 1877 | struct ext4_extent *newext, |
| 1878 | struct ext4_ext_path *path) |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1879 | { |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1880 | ext4_lblk_t b1, b2; |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1881 | unsigned int depth, len1; |
| 1882 | unsigned int ret = 0; |
| 1883 | |
| 1884 | b1 = le32_to_cpu(newext->ee_block); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1885 | len1 = ext4_ext_get_actual_len(newext); |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1886 | depth = ext_depth(inode); |
| 1887 | if (!path[depth].p_ext) |
| 1888 | goto out; |
Theodore Ts'o | f5a44db | 2013-12-20 09:29:35 -0500 | [diff] [blame] | 1889 | b2 = EXT4_LBLK_CMASK(sbi, le32_to_cpu(path[depth].p_ext->ee_block)); |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1890 | |
| 1891 | /* |
| 1892 | * get the next allocated block if the extent in the path |
Theodore Ts'o | 2b2d6d0 | 2008-07-26 16:15:44 -0400 | [diff] [blame] | 1893 | * is before the requested block(s) |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1894 | */ |
| 1895 | if (b2 < b1) { |
| 1896 | b2 = ext4_ext_next_allocated_block(path); |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1897 | if (b2 == EXT_MAX_BLOCKS) |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1898 | goto out; |
Theodore Ts'o | f5a44db | 2013-12-20 09:29:35 -0500 | [diff] [blame] | 1899 | b2 = EXT4_LBLK_CMASK(sbi, b2); |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1900 | } |
| 1901 | |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1902 | /* check for wrap through zero on extent logical start block*/ |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1903 | if (b1 + len1 < b1) { |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 1904 | len1 = EXT_MAX_BLOCKS - b1; |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 1905 | newext->ee_len = cpu_to_le16(len1); |
| 1906 | ret = 1; |
| 1907 | } |
| 1908 | |
| 1909 | /* check for overlap */ |
| 1910 | if (b1 + len1 > b2) { |
| 1911 | newext->ee_len = cpu_to_le16(b2 - b1); |
| 1912 | ret = 1; |
| 1913 | } |
| 1914 | out: |
| 1915 | return ret; |
| 1916 | } |
| 1917 | |
| 1918 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 1919 | * ext4_ext_insert_extent: |
| 1920 | * tries to merge requsted extent into the existing extent or |
| 1921 | * inserts requested extent as new one into the tree, |
| 1922 | * creating new leaf in the no-space case. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1923 | */ |
| 1924 | int ext4_ext_insert_extent(handle_t *handle, struct inode *inode, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 1925 | struct ext4_ext_path **ppath, |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 1926 | struct ext4_extent *newext, int gb_flags) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1927 | { |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 1928 | struct ext4_ext_path *path = *ppath; |
Theodore Ts'o | af5bc92 | 2008-09-08 22:25:24 -0400 | [diff] [blame] | 1929 | struct ext4_extent_header *eh; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1930 | struct ext4_extent *ex, *fex; |
| 1931 | struct ext4_extent *nearex; /* nearest extent */ |
| 1932 | struct ext4_ext_path *npath = NULL; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 1933 | int depth, len, err; |
| 1934 | ext4_lblk_t next; |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 1935 | int mb_flags = 0, unwritten; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1936 | |
Theodore Ts'o | e3cf5d5 | 2014-09-04 18:07:25 -0400 | [diff] [blame] | 1937 | if (gb_flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) |
| 1938 | mb_flags |= EXT4_MB_DELALLOC_RESERVED; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1939 | if (unlikely(ext4_ext_get_actual_len(newext) == 0)) { |
| 1940 | EXT4_ERROR_INODE(inode, "ext4_ext_get_actual_len(newext) == 0"); |
| 1941 | return -EIO; |
| 1942 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1943 | depth = ext_depth(inode); |
| 1944 | ex = path[depth].p_ext; |
Lukas Czerner | be8981b | 2013-04-03 23:33:28 -0400 | [diff] [blame] | 1945 | eh = path[depth].p_hdr; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 1946 | if (unlikely(path[depth].p_hdr == NULL)) { |
| 1947 | EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth); |
| 1948 | return -EIO; |
| 1949 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 1950 | |
| 1951 | /* try to insert block into found extent and return */ |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 1952 | if (ex && !(gb_flags & EXT4_GET_BLOCKS_PRE_IO)) { |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1953 | |
| 1954 | /* |
Lukas Czerner | be8981b | 2013-04-03 23:33:28 -0400 | [diff] [blame] | 1955 | * Try to see whether we should rather test the extent on |
| 1956 | * right from ex, or from the left of ex. This is because |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 1957 | * ext4_find_extent() can return either extent on the |
Lukas Czerner | be8981b | 2013-04-03 23:33:28 -0400 | [diff] [blame] | 1958 | * left, or on the right from the searched position. This |
| 1959 | * will make merging more effective. |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1960 | */ |
Lukas Czerner | be8981b | 2013-04-03 23:33:28 -0400 | [diff] [blame] | 1961 | if (ex < EXT_LAST_EXTENT(eh) && |
| 1962 | (le32_to_cpu(ex->ee_block) + |
| 1963 | ext4_ext_get_actual_len(ex) < |
| 1964 | le32_to_cpu(newext->ee_block))) { |
| 1965 | ex += 1; |
| 1966 | goto prepend; |
| 1967 | } else if ((ex > EXT_FIRST_EXTENT(eh)) && |
| 1968 | (le32_to_cpu(newext->ee_block) + |
| 1969 | ext4_ext_get_actual_len(newext) < |
| 1970 | le32_to_cpu(ex->ee_block))) |
| 1971 | ex -= 1; |
| 1972 | |
| 1973 | /* Try to append newex to the ex */ |
| 1974 | if (ext4_can_extents_be_merged(inode, ex, newext)) { |
| 1975 | ext_debug("append [%d]%d block to %u:[%d]%d" |
| 1976 | "(from %llu)\n", |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 1977 | ext4_ext_is_unwritten(newext), |
Lukas Czerner | be8981b | 2013-04-03 23:33:28 -0400 | [diff] [blame] | 1978 | ext4_ext_get_actual_len(newext), |
| 1979 | le32_to_cpu(ex->ee_block), |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 1980 | ext4_ext_is_unwritten(ex), |
Lukas Czerner | be8981b | 2013-04-03 23:33:28 -0400 | [diff] [blame] | 1981 | ext4_ext_get_actual_len(ex), |
| 1982 | ext4_ext_pblock(ex)); |
| 1983 | err = ext4_ext_get_access(handle, inode, |
| 1984 | path + depth); |
| 1985 | if (err) |
| 1986 | return err; |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 1987 | unwritten = ext4_ext_is_unwritten(ex); |
Lukas Czerner | be8981b | 2013-04-03 23:33:28 -0400 | [diff] [blame] | 1988 | ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 1989 | + ext4_ext_get_actual_len(newext)); |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 1990 | if (unwritten) |
| 1991 | ext4_ext_mark_unwritten(ex); |
Lukas Czerner | be8981b | 2013-04-03 23:33:28 -0400 | [diff] [blame] | 1992 | eh = path[depth].p_hdr; |
| 1993 | nearex = ex; |
| 1994 | goto merge; |
| 1995 | } |
| 1996 | |
| 1997 | prepend: |
| 1998 | /* Try to prepend newex to the ex */ |
| 1999 | if (ext4_can_extents_be_merged(inode, newext, ex)) { |
| 2000 | ext_debug("prepend %u[%d]%d block to %u:[%d]%d" |
| 2001 | "(from %llu)\n", |
| 2002 | le32_to_cpu(newext->ee_block), |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2003 | ext4_ext_is_unwritten(newext), |
Lukas Czerner | be8981b | 2013-04-03 23:33:28 -0400 | [diff] [blame] | 2004 | ext4_ext_get_actual_len(newext), |
| 2005 | le32_to_cpu(ex->ee_block), |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2006 | ext4_ext_is_unwritten(ex), |
Lukas Czerner | be8981b | 2013-04-03 23:33:28 -0400 | [diff] [blame] | 2007 | ext4_ext_get_actual_len(ex), |
| 2008 | ext4_ext_pblock(ex)); |
| 2009 | err = ext4_ext_get_access(handle, inode, |
| 2010 | path + depth); |
| 2011 | if (err) |
| 2012 | return err; |
| 2013 | |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2014 | unwritten = ext4_ext_is_unwritten(ex); |
Lukas Czerner | be8981b | 2013-04-03 23:33:28 -0400 | [diff] [blame] | 2015 | ex->ee_block = newext->ee_block; |
| 2016 | ext4_ext_store_pblock(ex, ext4_ext_pblock(newext)); |
| 2017 | ex->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex) |
| 2018 | + ext4_ext_get_actual_len(newext)); |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2019 | if (unwritten) |
| 2020 | ext4_ext_mark_unwritten(ex); |
Lukas Czerner | be8981b | 2013-04-03 23:33:28 -0400 | [diff] [blame] | 2021 | eh = path[depth].p_hdr; |
| 2022 | nearex = ex; |
| 2023 | goto merge; |
| 2024 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2025 | } |
| 2026 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2027 | depth = ext_depth(inode); |
| 2028 | eh = path[depth].p_hdr; |
| 2029 | if (le16_to_cpu(eh->eh_entries) < le16_to_cpu(eh->eh_max)) |
| 2030 | goto has_space; |
| 2031 | |
| 2032 | /* probably next leaf has space for us? */ |
| 2033 | fex = EXT_LAST_EXTENT(eh); |
Robin Dong | 598dbdf | 2011-07-11 18:24:01 -0400 | [diff] [blame] | 2034 | next = EXT_MAX_BLOCKS; |
| 2035 | 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] | 2036 | next = ext4_ext_next_leaf_block(path); |
Robin Dong | 598dbdf | 2011-07-11 18:24:01 -0400 | [diff] [blame] | 2037 | if (next != EXT_MAX_BLOCKS) { |
Yongqiang Yang | 32de675 | 2011-11-01 18:56:41 -0400 | [diff] [blame] | 2038 | ext_debug("next leaf block - %u\n", next); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2039 | BUG_ON(npath != NULL); |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 2040 | npath = ext4_find_extent(inode, next, NULL, 0); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2041 | if (IS_ERR(npath)) |
| 2042 | return PTR_ERR(npath); |
| 2043 | BUG_ON(npath->p_depth != path->p_depth); |
| 2044 | eh = npath[depth].p_hdr; |
| 2045 | 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] | 2046 | ext_debug("next leaf isn't full(%d)\n", |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2047 | le16_to_cpu(eh->eh_entries)); |
| 2048 | path = npath; |
Robin Dong | ffb505f | 2011-07-11 11:43:59 -0400 | [diff] [blame] | 2049 | goto has_space; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2050 | } |
| 2051 | ext_debug("next leaf has no free space(%d,%d)\n", |
| 2052 | le16_to_cpu(eh->eh_entries), le16_to_cpu(eh->eh_max)); |
| 2053 | } |
| 2054 | |
| 2055 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2056 | * There is no free space in the found leaf. |
| 2057 | * We're gonna add a new leaf in the tree. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2058 | */ |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 2059 | if (gb_flags & EXT4_GET_BLOCKS_METADATA_NOFAIL) |
Theodore Ts'o | e3cf5d5 | 2014-09-04 18:07:25 -0400 | [diff] [blame] | 2060 | mb_flags |= EXT4_MB_USE_RESERVED; |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 2061 | err = ext4_ext_create_new_leaf(handle, inode, mb_flags, gb_flags, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 2062 | ppath, newext); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2063 | if (err) |
| 2064 | goto cleanup; |
| 2065 | depth = ext_depth(inode); |
| 2066 | eh = path[depth].p_hdr; |
| 2067 | |
| 2068 | has_space: |
| 2069 | nearex = path[depth].p_ext; |
| 2070 | |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 2071 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 2072 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2073 | goto cleanup; |
| 2074 | |
| 2075 | if (!nearex) { |
| 2076 | /* there is no extent in this leaf, create first one */ |
Yongqiang Yang | 32de675 | 2011-11-01 18:56:41 -0400 | [diff] [blame] | 2077 | ext_debug("first extent in the leaf: %u:%llu:[%d]%d\n", |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 2078 | le32_to_cpu(newext->ee_block), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 2079 | ext4_ext_pblock(newext), |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2080 | ext4_ext_is_unwritten(newext), |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2081 | ext4_ext_get_actual_len(newext)); |
Eric Gouriou | 80e675f | 2011-10-27 11:52:18 -0400 | [diff] [blame] | 2082 | nearex = EXT_FIRST_EXTENT(eh); |
| 2083 | } else { |
| 2084 | if (le32_to_cpu(newext->ee_block) |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 2085 | > le32_to_cpu(nearex->ee_block)) { |
Eric Gouriou | 80e675f | 2011-10-27 11:52:18 -0400 | [diff] [blame] | 2086 | /* Insert after */ |
Yongqiang Yang | 32de675 | 2011-11-01 18:56:41 -0400 | [diff] [blame] | 2087 | ext_debug("insert %u:%llu:[%d]%d before: " |
| 2088 | "nearest %p\n", |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 2089 | le32_to_cpu(newext->ee_block), |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 2090 | ext4_ext_pblock(newext), |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2091 | ext4_ext_is_unwritten(newext), |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2092 | ext4_ext_get_actual_len(newext), |
Eric Gouriou | 80e675f | 2011-10-27 11:52:18 -0400 | [diff] [blame] | 2093 | nearex); |
| 2094 | nearex++; |
| 2095 | } else { |
| 2096 | /* Insert before */ |
| 2097 | BUG_ON(newext->ee_block == nearex->ee_block); |
Yongqiang Yang | 32de675 | 2011-11-01 18:56:41 -0400 | [diff] [blame] | 2098 | ext_debug("insert %u:%llu:[%d]%d after: " |
| 2099 | "nearest %p\n", |
Eric Gouriou | 80e675f | 2011-10-27 11:52:18 -0400 | [diff] [blame] | 2100 | le32_to_cpu(newext->ee_block), |
| 2101 | ext4_ext_pblock(newext), |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2102 | ext4_ext_is_unwritten(newext), |
Eric Gouriou | 80e675f | 2011-10-27 11:52:18 -0400 | [diff] [blame] | 2103 | ext4_ext_get_actual_len(newext), |
| 2104 | nearex); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2105 | } |
Eric Gouriou | 80e675f | 2011-10-27 11:52:18 -0400 | [diff] [blame] | 2106 | len = EXT_LAST_EXTENT(eh) - nearex + 1; |
| 2107 | if (len > 0) { |
Yongqiang Yang | 32de675 | 2011-11-01 18:56:41 -0400 | [diff] [blame] | 2108 | ext_debug("insert %u:%llu:[%d]%d: " |
Eric Gouriou | 80e675f | 2011-10-27 11:52:18 -0400 | [diff] [blame] | 2109 | "move %d extents from 0x%p to 0x%p\n", |
| 2110 | le32_to_cpu(newext->ee_block), |
| 2111 | ext4_ext_pblock(newext), |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2112 | ext4_ext_is_unwritten(newext), |
Eric Gouriou | 80e675f | 2011-10-27 11:52:18 -0400 | [diff] [blame] | 2113 | ext4_ext_get_actual_len(newext), |
| 2114 | len, nearex, nearex + 1); |
| 2115 | memmove(nearex + 1, nearex, |
| 2116 | len * sizeof(struct ext4_extent)); |
| 2117 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2118 | } |
| 2119 | |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 2120 | le16_add_cpu(&eh->eh_entries, 1); |
Eric Gouriou | 80e675f | 2011-10-27 11:52:18 -0400 | [diff] [blame] | 2121 | path[depth].p_ext = nearex; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2122 | nearex->ee_block = newext->ee_block; |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 2123 | ext4_ext_store_pblock(nearex, ext4_ext_pblock(newext)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2124 | nearex->ee_len = newext->ee_len; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2125 | |
| 2126 | merge: |
HaiboLiu | e7bcf82 | 2012-07-09 16:29:28 -0400 | [diff] [blame] | 2127 | /* try to merge extents */ |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 2128 | if (!(gb_flags & EXT4_GET_BLOCKS_PRE_IO)) |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 2129 | ext4_ext_try_to_merge(handle, inode, path, nearex); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2130 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2131 | |
| 2132 | /* time to correct all indexes above */ |
| 2133 | err = ext4_ext_correct_indexes(handle, inode, path); |
| 2134 | if (err) |
| 2135 | goto cleanup; |
| 2136 | |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 2137 | err = ext4_ext_dirty(handle, inode, path + path->p_depth); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2138 | |
| 2139 | cleanup: |
Theodore Ts'o | b7ea89a | 2014-09-01 14:39:09 -0400 | [diff] [blame] | 2140 | ext4_ext_drop_refs(npath); |
| 2141 | kfree(npath); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2142 | return err; |
| 2143 | } |
| 2144 | |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2145 | static int ext4_fill_fiemap_extents(struct inode *inode, |
| 2146 | ext4_lblk_t block, ext4_lblk_t num, |
| 2147 | struct fiemap_extent_info *fieinfo) |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2148 | { |
| 2149 | struct ext4_ext_path *path = NULL; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2150 | struct ext4_extent *ex; |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 2151 | struct extent_status es; |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2152 | ext4_lblk_t next, next_del, start = 0, end = 0; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2153 | ext4_lblk_t last = block + num; |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2154 | int exists, depth = 0, err = 0; |
| 2155 | unsigned int flags = 0; |
| 2156 | unsigned char blksize_bits = inode->i_sb->s_blocksize_bits; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2157 | |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 2158 | while (block < last && block != EXT_MAX_BLOCKS) { |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2159 | num = last - block; |
| 2160 | /* find extent for this block */ |
Theodore Ts'o | fab3a54 | 2009-12-09 21:30:02 -0500 | [diff] [blame] | 2161 | down_read(&EXT4_I(inode)->i_data_sem); |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2162 | |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 2163 | path = ext4_find_extent(inode, block, &path, 0); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2164 | if (IS_ERR(path)) { |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2165 | up_read(&EXT4_I(inode)->i_data_sem); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2166 | err = PTR_ERR(path); |
| 2167 | path = NULL; |
| 2168 | break; |
| 2169 | } |
| 2170 | |
| 2171 | depth = ext_depth(inode); |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 2172 | if (unlikely(path[depth].p_hdr == NULL)) { |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2173 | up_read(&EXT4_I(inode)->i_data_sem); |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 2174 | EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth); |
| 2175 | err = -EIO; |
| 2176 | break; |
| 2177 | } |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2178 | ex = path[depth].p_ext; |
| 2179 | next = ext4_ext_next_allocated_block(path); |
| 2180 | |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2181 | flags = 0; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2182 | exists = 0; |
| 2183 | if (!ex) { |
| 2184 | /* there is no extent yet, so try to allocate |
| 2185 | * all requested space */ |
| 2186 | start = block; |
| 2187 | end = block + num; |
| 2188 | } else if (le32_to_cpu(ex->ee_block) > block) { |
| 2189 | /* need to allocate space before found extent */ |
| 2190 | start = block; |
| 2191 | end = le32_to_cpu(ex->ee_block); |
| 2192 | if (block + num < end) |
| 2193 | end = block + num; |
| 2194 | } else if (block >= le32_to_cpu(ex->ee_block) |
| 2195 | + ext4_ext_get_actual_len(ex)) { |
| 2196 | /* need to allocate space after found extent */ |
| 2197 | start = block; |
| 2198 | end = block + num; |
| 2199 | if (end >= next) |
| 2200 | end = next; |
| 2201 | } else if (block >= le32_to_cpu(ex->ee_block)) { |
| 2202 | /* |
| 2203 | * some part of requested space is covered |
| 2204 | * by found extent |
| 2205 | */ |
| 2206 | start = block; |
| 2207 | end = le32_to_cpu(ex->ee_block) |
| 2208 | + ext4_ext_get_actual_len(ex); |
| 2209 | if (block + num < end) |
| 2210 | end = block + num; |
| 2211 | exists = 1; |
| 2212 | } else { |
| 2213 | BUG(); |
| 2214 | } |
| 2215 | BUG_ON(end <= start); |
| 2216 | |
| 2217 | if (!exists) { |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 2218 | es.es_lblk = start; |
| 2219 | es.es_len = end - start; |
| 2220 | es.es_pblk = 0; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2221 | } else { |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 2222 | es.es_lblk = le32_to_cpu(ex->ee_block); |
| 2223 | es.es_len = ext4_ext_get_actual_len(ex); |
| 2224 | es.es_pblk = ext4_ext_pblock(ex); |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2225 | if (ext4_ext_is_unwritten(ex)) |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2226 | flags |= FIEMAP_EXTENT_UNWRITTEN; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2227 | } |
| 2228 | |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2229 | /* |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 2230 | * Find delayed extent and update es accordingly. We call |
| 2231 | * it even in !exists case to find out whether es is the |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2232 | * last existing extent or not. |
| 2233 | */ |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 2234 | next_del = ext4_find_delayed_extent(inode, &es); |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2235 | if (!exists && next_del) { |
| 2236 | exists = 1; |
Jie Liu | 72dac95 | 2013-06-12 23:13:59 -0400 | [diff] [blame] | 2237 | flags |= (FIEMAP_EXTENT_DELALLOC | |
| 2238 | FIEMAP_EXTENT_UNKNOWN); |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2239 | } |
| 2240 | up_read(&EXT4_I(inode)->i_data_sem); |
| 2241 | |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 2242 | if (unlikely(es.es_len == 0)) { |
| 2243 | EXT4_ERROR_INODE(inode, "es.es_len == 0"); |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 2244 | err = -EIO; |
| 2245 | break; |
| 2246 | } |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2247 | |
Zheng Liu | f7fec03 | 2013-02-18 00:28:47 -0500 | [diff] [blame] | 2248 | /* |
| 2249 | * This is possible iff next == next_del == EXT_MAX_BLOCKS. |
| 2250 | * we need to check next == EXT_MAX_BLOCKS because it is |
| 2251 | * possible that an extent is with unwritten and delayed |
| 2252 | * status due to when an extent is delayed allocated and |
| 2253 | * is allocated by fallocate status tree will track both of |
| 2254 | * them in a extent. |
| 2255 | * |
| 2256 | * So we could return a unwritten and delayed extent, and |
| 2257 | * its block is equal to 'next'. |
| 2258 | */ |
| 2259 | if (next == next_del && next == EXT_MAX_BLOCKS) { |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2260 | flags |= FIEMAP_EXTENT_LAST; |
| 2261 | if (unlikely(next_del != EXT_MAX_BLOCKS || |
| 2262 | next != EXT_MAX_BLOCKS)) { |
| 2263 | EXT4_ERROR_INODE(inode, |
| 2264 | "next extent == %u, next " |
| 2265 | "delalloc extent = %u", |
| 2266 | next, next_del); |
| 2267 | err = -EIO; |
| 2268 | break; |
| 2269 | } |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2270 | } |
| 2271 | |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2272 | if (exists) { |
| 2273 | err = fiemap_fill_next_extent(fieinfo, |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 2274 | (__u64)es.es_lblk << blksize_bits, |
| 2275 | (__u64)es.es_pblk << blksize_bits, |
| 2276 | (__u64)es.es_len << blksize_bits, |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 2277 | flags); |
| 2278 | if (err < 0) |
| 2279 | break; |
| 2280 | if (err == 1) { |
| 2281 | err = 0; |
| 2282 | break; |
| 2283 | } |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2284 | } |
| 2285 | |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 2286 | block = es.es_lblk + es.es_len; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2287 | } |
| 2288 | |
Theodore Ts'o | b7ea89a | 2014-09-01 14:39:09 -0400 | [diff] [blame] | 2289 | ext4_ext_drop_refs(path); |
| 2290 | kfree(path); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 2291 | return err; |
| 2292 | } |
| 2293 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2294 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2295 | * ext4_ext_put_gap_in_cache: |
| 2296 | * calculate boundaries of the gap that the requested block fits into |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2297 | * and cache this gap |
| 2298 | */ |
Avantika Mathur | 09b8825 | 2006-12-06 20:41:36 -0800 | [diff] [blame] | 2299 | static void |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2300 | 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] | 2301 | ext4_lblk_t block) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2302 | { |
| 2303 | int depth = ext_depth(inode); |
Zheng Liu | 2f8e0a7 | 2014-11-25 11:44:37 -0500 | [diff] [blame] | 2304 | ext4_lblk_t len; |
| 2305 | ext4_lblk_t lblock; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2306 | struct ext4_extent *ex; |
Zheng Liu | 2f8e0a7 | 2014-11-25 11:44:37 -0500 | [diff] [blame] | 2307 | struct extent_status es; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2308 | |
| 2309 | ex = path[depth].p_ext; |
| 2310 | if (ex == NULL) { |
Zheng Liu | 2f8e0a7 | 2014-11-25 11:44:37 -0500 | [diff] [blame] | 2311 | /* there is no extent yet, so gap is [0;-] */ |
| 2312 | lblock = 0; |
| 2313 | len = EXT_MAX_BLOCKS; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2314 | ext_debug("cache gap(whole file):"); |
| 2315 | } else if (block < le32_to_cpu(ex->ee_block)) { |
| 2316 | lblock = block; |
| 2317 | len = le32_to_cpu(ex->ee_block) - block; |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2318 | ext_debug("cache gap(before): %u [%u:%u]", |
| 2319 | block, |
| 2320 | le32_to_cpu(ex->ee_block), |
| 2321 | ext4_ext_get_actual_len(ex)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2322 | } else if (block >= le32_to_cpu(ex->ee_block) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2323 | + ext4_ext_get_actual_len(ex)) { |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2324 | ext4_lblk_t next; |
Dave Kleikamp | 8c55e20 | 2007-05-24 13:04:54 -0400 | [diff] [blame] | 2325 | lblock = le32_to_cpu(ex->ee_block) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2326 | + ext4_ext_get_actual_len(ex); |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2327 | |
| 2328 | next = ext4_ext_next_allocated_block(path); |
Eric Sandeen | bba9074 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2329 | ext_debug("cache gap(after): [%u:%u] %u", |
| 2330 | le32_to_cpu(ex->ee_block), |
| 2331 | ext4_ext_get_actual_len(ex), |
| 2332 | block); |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2333 | BUG_ON(next == lblock); |
| 2334 | len = next - lblock; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2335 | } else { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2336 | BUG(); |
| 2337 | } |
| 2338 | |
Zheng Liu | 2f8e0a7 | 2014-11-25 11:44:37 -0500 | [diff] [blame] | 2339 | ext4_es_find_delayed_extent_range(inode, lblock, lblock + len - 1, &es); |
| 2340 | if (es.es_len) { |
| 2341 | /* There's delayed extent containing lblock? */ |
| 2342 | if (es.es_lblk <= lblock) |
| 2343 | return; |
| 2344 | len = min(es.es_lblk - lblock, len); |
| 2345 | } |
| 2346 | ext_debug(" -> %u:%u\n", lblock, len); |
| 2347 | ext4_es_insert_extent(inode, lblock, len, ~0, EXTENT_STATUS_HOLE); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2348 | } |
| 2349 | |
| 2350 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2351 | * ext4_ext_rm_idx: |
| 2352 | * removes index from the index block. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2353 | */ |
Aneesh Kumar K.V | 1d03ec9 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2354 | static int ext4_ext_rm_idx(handle_t *handle, struct inode *inode, |
Forrest Liu | c36575e | 2012-12-17 09:55:39 -0500 | [diff] [blame] | 2355 | struct ext4_ext_path *path, int depth) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2356 | { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2357 | int err; |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 2358 | ext4_fsblk_t leaf; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2359 | |
| 2360 | /* free index block */ |
Forrest Liu | c36575e | 2012-12-17 09:55:39 -0500 | [diff] [blame] | 2361 | depth--; |
| 2362 | path = path + depth; |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 2363 | leaf = ext4_idx_pblock(path->p_idx); |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 2364 | if (unlikely(path->p_hdr->eh_entries == 0)) { |
| 2365 | EXT4_ERROR_INODE(inode, "path->p_hdr->eh_entries == 0"); |
| 2366 | return -EIO; |
| 2367 | } |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 2368 | err = ext4_ext_get_access(handle, inode, path); |
| 2369 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2370 | return err; |
Robin Dong | 0e1147b | 2011-07-27 21:29:33 -0400 | [diff] [blame] | 2371 | |
| 2372 | if (path->p_idx != EXT_LAST_INDEX(path->p_hdr)) { |
| 2373 | int len = EXT_LAST_INDEX(path->p_hdr) - path->p_idx; |
| 2374 | len *= sizeof(struct ext4_extent_idx); |
| 2375 | memmove(path->p_idx, path->p_idx + 1, len); |
| 2376 | } |
| 2377 | |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 2378 | le16_add_cpu(&path->p_hdr->eh_entries, -1); |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 2379 | err = ext4_ext_dirty(handle, inode, path); |
| 2380 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2381 | return err; |
Mingming Cao | 2ae0210 | 2006-10-11 01:21:11 -0700 | [diff] [blame] | 2382 | ext_debug("index is empty, remove it, free block %llu\n", leaf); |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 2383 | trace_ext4_ext_rm_idx(inode, leaf); |
| 2384 | |
Peter Huewe | 7dc5761 | 2011-02-21 21:01:42 -0500 | [diff] [blame] | 2385 | ext4_free_blocks(handle, inode, NULL, leaf, 1, |
Theodore Ts'o | e636260 | 2009-11-23 07:17:05 -0500 | [diff] [blame] | 2386 | EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET); |
Forrest Liu | c36575e | 2012-12-17 09:55:39 -0500 | [diff] [blame] | 2387 | |
| 2388 | while (--depth >= 0) { |
| 2389 | if (path->p_idx != EXT_FIRST_INDEX(path->p_hdr)) |
| 2390 | break; |
| 2391 | path--; |
| 2392 | err = ext4_ext_get_access(handle, inode, path); |
| 2393 | if (err) |
| 2394 | break; |
| 2395 | path->p_idx->ei_block = (path+1)->p_idx->ei_block; |
| 2396 | err = ext4_ext_dirty(handle, inode, path); |
| 2397 | if (err) |
| 2398 | break; |
| 2399 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2400 | return err; |
| 2401 | } |
| 2402 | |
| 2403 | /* |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2404 | * ext4_ext_calc_credits_for_single_extent: |
| 2405 | * This routine returns max. credits that needed to insert an extent |
| 2406 | * to the extent tree. |
| 2407 | * When pass the actual path, the caller should calculate credits |
| 2408 | * under i_data_sem. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2409 | */ |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2410 | 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] | 2411 | struct ext4_ext_path *path) |
| 2412 | { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2413 | if (path) { |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2414 | int depth = ext_depth(inode); |
Mingming Cao | f3bd1f3 | 2008-08-19 22:16:03 -0400 | [diff] [blame] | 2415 | int ret = 0; |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2416 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2417 | /* probably there is space in leaf? */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2418 | if (le16_to_cpu(path[depth].p_hdr->eh_entries) |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2419 | < le16_to_cpu(path[depth].p_hdr->eh_max)) { |
| 2420 | |
| 2421 | /* |
| 2422 | * There are some space in the leaf tree, no |
| 2423 | * need to account for leaf block credit |
| 2424 | * |
| 2425 | * bitmaps and block group descriptor blocks |
Tao Ma | df3ab17 | 2011-10-08 15:53:49 -0400 | [diff] [blame] | 2426 | * and other metadata blocks still need to be |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2427 | * accounted. |
| 2428 | */ |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2429 | /* 1 bitmap, 1 block group descriptor */ |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2430 | ret = 2 + EXT4_META_TRANS_BLOCKS(inode->i_sb); |
Aneesh Kumar K.V | 5887e98 | 2009-07-05 23:12:04 -0400 | [diff] [blame] | 2431 | return ret; |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2432 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2433 | } |
| 2434 | |
Mingming Cao | 525f4ed | 2008-08-19 22:15:58 -0400 | [diff] [blame] | 2435 | return ext4_chunk_trans_blocks(inode, nrblocks); |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2436 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2437 | |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2438 | /* |
Jan Kara | fffb273 | 2013-06-04 13:01:11 -0400 | [diff] [blame] | 2439 | * How many index/leaf blocks need to change/allocate to add @extents extents? |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2440 | * |
Jan Kara | fffb273 | 2013-06-04 13:01:11 -0400 | [diff] [blame] | 2441 | * If we add a single extent, then in the worse case, each tree level |
| 2442 | * index/leaf need to be changed in case of the tree split. |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2443 | * |
Jan Kara | fffb273 | 2013-06-04 13:01:11 -0400 | [diff] [blame] | 2444 | * If more extents are inserted, they could cause the whole tree split more |
| 2445 | * than once, but this is really rare. |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2446 | */ |
Jan Kara | fffb273 | 2013-06-04 13:01:11 -0400 | [diff] [blame] | 2447 | int ext4_ext_index_trans_blocks(struct inode *inode, int extents) |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2448 | { |
| 2449 | int index; |
Tao Ma | f19d587 | 2012-12-10 14:05:51 -0500 | [diff] [blame] | 2450 | int depth; |
| 2451 | |
| 2452 | /* If we are converting the inline data, only one is needed here. */ |
| 2453 | if (ext4_has_inline_data(inode)) |
| 2454 | return 1; |
| 2455 | |
| 2456 | depth = ext_depth(inode); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2457 | |
Jan Kara | fffb273 | 2013-06-04 13:01:11 -0400 | [diff] [blame] | 2458 | if (extents <= 1) |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2459 | index = depth * 2; |
| 2460 | else |
| 2461 | index = depth * 3; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2462 | |
Mingming Cao | ee12b63 | 2008-08-19 22:16:05 -0400 | [diff] [blame] | 2463 | return index; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2464 | } |
| 2465 | |
Theodore Ts'o | 981250c | 2013-06-12 11:48:29 -0400 | [diff] [blame] | 2466 | static inline int get_default_free_blocks_flags(struct inode *inode) |
| 2467 | { |
| 2468 | if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) |
| 2469 | return EXT4_FREE_BLOCKS_METADATA | EXT4_FREE_BLOCKS_FORGET; |
| 2470 | else if (ext4_should_journal_data(inode)) |
| 2471 | return EXT4_FREE_BLOCKS_FORGET; |
| 2472 | return 0; |
| 2473 | } |
| 2474 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2475 | static int ext4_remove_blocks(handle_t *handle, struct inode *inode, |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2476 | struct ext4_extent *ex, |
Lukas Czerner | d23142c | 2013-05-27 23:33:35 -0400 | [diff] [blame] | 2477 | long long *partial_cluster, |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2478 | ext4_lblk_t from, ext4_lblk_t to) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2479 | { |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2480 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Eric Whitney | 345ee94 | 2014-11-23 00:59:39 -0500 | [diff] [blame] | 2481 | unsigned short ee_len = ext4_ext_get_actual_len(ex); |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2482 | ext4_fsblk_t pblk; |
Theodore Ts'o | 981250c | 2013-06-12 11:48:29 -0400 | [diff] [blame] | 2483 | int flags = get_default_free_blocks_flags(inode); |
Andrey Sidorov | 18888cf | 2012-09-19 14:14:53 -0400 | [diff] [blame] | 2484 | |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2485 | /* |
| 2486 | * For bigalloc file systems, we never free a partial cluster |
| 2487 | * at the beginning of the extent. Instead, we make a note |
| 2488 | * that we tried freeing the cluster, and check to see if we |
| 2489 | * need to free it on a subsequent call to ext4_remove_blocks, |
Eric Whitney | 345ee94 | 2014-11-23 00:59:39 -0500 | [diff] [blame] | 2490 | * or at the end of ext4_ext_rm_leaf or ext4_ext_remove_space. |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2491 | */ |
| 2492 | flags |= EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER; |
| 2493 | |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 2494 | trace_ext4_remove_blocks(inode, ex, from, to, *partial_cluster); |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2495 | /* |
| 2496 | * If we have a partial cluster, and it's different from the |
| 2497 | * cluster of the last block, we need to explicitly free the |
| 2498 | * partial cluster here. |
| 2499 | */ |
| 2500 | pblk = ext4_ext_pblock(ex) + ee_len - 1; |
Eric Whitney | 345ee94 | 2014-11-23 00:59:39 -0500 | [diff] [blame] | 2501 | if (*partial_cluster > 0 && |
| 2502 | *partial_cluster != (long long) EXT4_B2C(sbi, pblk)) { |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2503 | ext4_free_blocks(handle, inode, NULL, |
| 2504 | EXT4_C2B(sbi, *partial_cluster), |
| 2505 | sbi->s_cluster_ratio, flags); |
| 2506 | *partial_cluster = 0; |
| 2507 | } |
| 2508 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2509 | #ifdef EXTENTS_STATS |
| 2510 | { |
| 2511 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2512 | spin_lock(&sbi->s_ext_stats_lock); |
| 2513 | sbi->s_ext_blocks += ee_len; |
| 2514 | sbi->s_ext_extents++; |
| 2515 | if (ee_len < sbi->s_ext_min) |
| 2516 | sbi->s_ext_min = ee_len; |
| 2517 | if (ee_len > sbi->s_ext_max) |
| 2518 | sbi->s_ext_max = ee_len; |
| 2519 | if (ext_depth(inode) > sbi->s_depth_max) |
| 2520 | sbi->s_depth_max = ext_depth(inode); |
| 2521 | spin_unlock(&sbi->s_ext_stats_lock); |
| 2522 | } |
| 2523 | #endif |
| 2524 | if (from >= le32_to_cpu(ex->ee_block) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2525 | && to == le32_to_cpu(ex->ee_block) + ee_len - 1) { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2526 | /* tail removal */ |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2527 | ext4_lblk_t num; |
Eric Whitney | 345ee94 | 2014-11-23 00:59:39 -0500 | [diff] [blame] | 2528 | long long first_cluster; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2529 | |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2530 | num = le32_to_cpu(ex->ee_block) + ee_len - from; |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2531 | pblk = ext4_ext_pblock(ex) + ee_len - num; |
Lukas Czerner | d23142c | 2013-05-27 23:33:35 -0400 | [diff] [blame] | 2532 | /* |
| 2533 | * Usually we want to free partial cluster at the end of the |
| 2534 | * extent, except for the situation when the cluster is still |
| 2535 | * used by any other extent (partial_cluster is negative). |
| 2536 | */ |
| 2537 | if (*partial_cluster < 0 && |
Eric Whitney | 345ee94 | 2014-11-23 00:59:39 -0500 | [diff] [blame] | 2538 | *partial_cluster == -(long long) EXT4_B2C(sbi, pblk+num-1)) |
Lukas Czerner | d23142c | 2013-05-27 23:33:35 -0400 | [diff] [blame] | 2539 | flags |= EXT4_FREE_BLOCKS_NOFREE_LAST_CLUSTER; |
| 2540 | |
| 2541 | ext_debug("free last %u blocks starting %llu partial %lld\n", |
| 2542 | num, pblk, *partial_cluster); |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2543 | ext4_free_blocks(handle, inode, NULL, pblk, num, flags); |
| 2544 | /* |
| 2545 | * If the block range to be freed didn't start at the |
| 2546 | * beginning of a cluster, and we removed the entire |
Lukas Czerner | d23142c | 2013-05-27 23:33:35 -0400 | [diff] [blame] | 2547 | * extent and the cluster is not used by any other extent, |
| 2548 | * save the partial cluster here, since we might need to |
Eric Whitney | 345ee94 | 2014-11-23 00:59:39 -0500 | [diff] [blame] | 2549 | * delete if we determine that the truncate or punch hole |
| 2550 | * operation has removed all of the blocks in the cluster. |
| 2551 | * If that cluster is used by another extent, preserve its |
| 2552 | * negative value so it isn't freed later on. |
Lukas Czerner | d23142c | 2013-05-27 23:33:35 -0400 | [diff] [blame] | 2553 | * |
Eric Whitney | 345ee94 | 2014-11-23 00:59:39 -0500 | [diff] [blame] | 2554 | * If the whole extent wasn't freed, we've reached the |
| 2555 | * start of the truncated/punched region and have finished |
| 2556 | * removing blocks. If there's a partial cluster here it's |
| 2557 | * shared with the remainder of the extent and is no longer |
| 2558 | * a candidate for removal. |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2559 | */ |
Eric Whitney | 345ee94 | 2014-11-23 00:59:39 -0500 | [diff] [blame] | 2560 | if (EXT4_PBLK_COFF(sbi, pblk) && ee_len == num) { |
| 2561 | first_cluster = (long long) EXT4_B2C(sbi, pblk); |
| 2562 | if (first_cluster != -*partial_cluster) |
| 2563 | *partial_cluster = first_cluster; |
| 2564 | } else { |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2565 | *partial_cluster = 0; |
Eric Whitney | 345ee94 | 2014-11-23 00:59:39 -0500 | [diff] [blame] | 2566 | } |
Lukas Czerner | 78fb9cd | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 2567 | } else |
| 2568 | ext4_error(sbi->s_sb, "strange request: removal(2) " |
| 2569 | "%u-%u from %u:%u\n", |
| 2570 | from, to, le32_to_cpu(ex->ee_block), ee_len); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2571 | return 0; |
| 2572 | } |
| 2573 | |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2574 | |
| 2575 | /* |
| 2576 | * ext4_ext_rm_leaf() Removes the extents associated with the |
Eric Whitney | 5bf4376 | 2014-11-23 00:58:11 -0500 | [diff] [blame] | 2577 | * blocks appearing between "start" and "end". Both "start" |
| 2578 | * and "end" must appear in the same extent or EIO is returned. |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2579 | * |
| 2580 | * @handle: The journal handle |
| 2581 | * @inode: The files inode |
| 2582 | * @path: The path to the leaf |
Lukas Czerner | d23142c | 2013-05-27 23:33:35 -0400 | [diff] [blame] | 2583 | * @partial_cluster: The cluster which we'll have to free if all extents |
Eric Whitney | 5bf4376 | 2014-11-23 00:58:11 -0500 | [diff] [blame] | 2584 | * has been released from it. However, if this value is |
| 2585 | * negative, it's a cluster just to the right of the |
| 2586 | * punched region and it must not be freed. |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2587 | * @start: The first block to remove |
| 2588 | * @end: The last block to remove |
| 2589 | */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2590 | static int |
| 2591 | ext4_ext_rm_leaf(handle_t *handle, struct inode *inode, |
Lukas Czerner | d23142c | 2013-05-27 23:33:35 -0400 | [diff] [blame] | 2592 | struct ext4_ext_path *path, |
| 2593 | long long *partial_cluster, |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2594 | ext4_lblk_t start, ext4_lblk_t end) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2595 | { |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2596 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2597 | int err = 0, correct_index = 0; |
| 2598 | int depth = ext_depth(inode), credits; |
| 2599 | struct ext4_extent_header *eh; |
Dmitry Monakhov | 750c9c4 | 2011-10-25 05:35:05 -0400 | [diff] [blame] | 2600 | ext4_lblk_t a, b; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 2601 | unsigned num; |
| 2602 | ext4_lblk_t ex_ee_block; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2603 | unsigned short ex_ee_len; |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2604 | unsigned unwritten = 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2605 | struct ext4_extent *ex; |
Lukas Czerner | d23142c | 2013-05-27 23:33:35 -0400 | [diff] [blame] | 2606 | ext4_fsblk_t pblk; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2607 | |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 2608 | /* the header must be checked already in ext4_ext_remove_space() */ |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2609 | ext_debug("truncate since %u in leaf to %u\n", start, end); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2610 | if (!path[depth].p_hdr) |
| 2611 | path[depth].p_hdr = ext_block_hdr(path[depth].p_bh); |
| 2612 | eh = path[depth].p_hdr; |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 2613 | if (unlikely(path[depth].p_hdr == NULL)) { |
| 2614 | EXT4_ERROR_INODE(inode, "path[%d].p_hdr == NULL", depth); |
| 2615 | return -EIO; |
| 2616 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2617 | /* find where to start removing */ |
Ashish Sangwan | 6ae06ff | 2013-07-01 08:12:41 -0400 | [diff] [blame] | 2618 | ex = path[depth].p_ext; |
| 2619 | if (!ex) |
| 2620 | ex = EXT_LAST_EXTENT(eh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2621 | |
| 2622 | ex_ee_block = le32_to_cpu(ex->ee_block); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2623 | ex_ee_len = ext4_ext_get_actual_len(ex); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2624 | |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 2625 | trace_ext4_ext_rm_leaf(inode, start, ex, *partial_cluster); |
| 2626 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2627 | while (ex >= EXT_FIRST_EXTENT(eh) && |
| 2628 | ex_ee_block + ex_ee_len > start) { |
Aneesh Kumar K.V | a41f207 | 2009-06-10 14:22:55 -0400 | [diff] [blame] | 2629 | |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2630 | if (ext4_ext_is_unwritten(ex)) |
| 2631 | unwritten = 1; |
Aneesh Kumar K.V | a41f207 | 2009-06-10 14:22:55 -0400 | [diff] [blame] | 2632 | else |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2633 | unwritten = 0; |
Aneesh Kumar K.V | a41f207 | 2009-06-10 14:22:55 -0400 | [diff] [blame] | 2634 | |
Mingming | 553f900 | 2009-09-18 13:34:55 -0400 | [diff] [blame] | 2635 | ext_debug("remove ext %u:[%d]%d\n", ex_ee_block, |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2636 | unwritten, ex_ee_len); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2637 | path[depth].p_ext = ex; |
| 2638 | |
| 2639 | a = ex_ee_block > start ? ex_ee_block : start; |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2640 | b = ex_ee_block+ex_ee_len - 1 < end ? |
| 2641 | ex_ee_block+ex_ee_len - 1 : end; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2642 | |
| 2643 | ext_debug(" border %u:%u\n", a, b); |
| 2644 | |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2645 | /* If this extent is beyond the end of the hole, skip it */ |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2646 | if (end < ex_ee_block) { |
Lukas Czerner | d23142c | 2013-05-27 23:33:35 -0400 | [diff] [blame] | 2647 | /* |
| 2648 | * We're going to skip this extent and move to another, |
Eric Whitney | f4226d9 | 2014-11-23 00:55:42 -0500 | [diff] [blame] | 2649 | * so note that its first cluster is in use to avoid |
| 2650 | * freeing it when removing blocks. Eventually, the |
| 2651 | * right edge of the truncated/punched region will |
| 2652 | * be just to the left. |
Lukas Czerner | d23142c | 2013-05-27 23:33:35 -0400 | [diff] [blame] | 2653 | */ |
Eric Whitney | f4226d9 | 2014-11-23 00:55:42 -0500 | [diff] [blame] | 2654 | if (sbi->s_cluster_ratio > 1) { |
| 2655 | pblk = ext4_ext_pblock(ex); |
Lukas Czerner | d23142c | 2013-05-27 23:33:35 -0400 | [diff] [blame] | 2656 | *partial_cluster = |
Eric Whitney | f4226d9 | 2014-11-23 00:55:42 -0500 | [diff] [blame] | 2657 | -(long long) EXT4_B2C(sbi, pblk); |
| 2658 | } |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2659 | ex--; |
| 2660 | ex_ee_block = le32_to_cpu(ex->ee_block); |
| 2661 | ex_ee_len = ext4_ext_get_actual_len(ex); |
| 2662 | continue; |
Dmitry Monakhov | 750c9c4 | 2011-10-25 05:35:05 -0400 | [diff] [blame] | 2663 | } else if (b != ex_ee_block + ex_ee_len - 1) { |
Lukas Czerner | dc1841d | 2012-03-19 23:07:43 -0400 | [diff] [blame] | 2664 | EXT4_ERROR_INODE(inode, |
| 2665 | "can not handle truncate %u:%u " |
| 2666 | "on extent %u:%u", |
| 2667 | start, end, ex_ee_block, |
| 2668 | ex_ee_block + ex_ee_len - 1); |
Dmitry Monakhov | 750c9c4 | 2011-10-25 05:35:05 -0400 | [diff] [blame] | 2669 | err = -EIO; |
| 2670 | goto out; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2671 | } else if (a != ex_ee_block) { |
| 2672 | /* remove tail of the extent */ |
Dmitry Monakhov | 750c9c4 | 2011-10-25 05:35:05 -0400 | [diff] [blame] | 2673 | num = a - ex_ee_block; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2674 | } else { |
| 2675 | /* remove whole extent: excellent! */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2676 | num = 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2677 | } |
Theodore Ts'o | 34071da | 2008-08-01 21:59:19 -0400 | [diff] [blame] | 2678 | /* |
| 2679 | * 3 for leaf, sb, and inode plus 2 (bmap and group |
| 2680 | * descriptor) for each block group; assume two block |
| 2681 | * groups plus ex_ee_len/blocks_per_block_group for |
| 2682 | * the worst case |
| 2683 | */ |
| 2684 | 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] | 2685 | if (ex == EXT_FIRST_EXTENT(eh)) { |
| 2686 | correct_index = 1; |
| 2687 | credits += (ext_depth(inode)) + 1; |
| 2688 | } |
Dmitry Monakhov | 5aca07e | 2009-12-08 22:42:15 -0500 | [diff] [blame] | 2689 | credits += EXT4_MAXQUOTAS_TRANS_BLOCKS(inode->i_sb); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2690 | |
Jan Kara | 487caee | 2009-08-17 22:17:20 -0400 | [diff] [blame] | 2691 | err = ext4_ext_truncate_extend_restart(handle, inode, credits); |
Shen Feng | 9102e4f | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 2692 | if (err) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2693 | goto out; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2694 | |
| 2695 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 2696 | if (err) |
| 2697 | goto out; |
| 2698 | |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2699 | err = ext4_remove_blocks(handle, inode, ex, partial_cluster, |
| 2700 | a, b); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2701 | if (err) |
| 2702 | goto out; |
| 2703 | |
Dmitry Monakhov | 750c9c4 | 2011-10-25 05:35:05 -0400 | [diff] [blame] | 2704 | if (num == 0) |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2705 | /* this extent is removed; mark slot entirely unused */ |
Alex Tomas | f65e6fb | 2006-10-11 01:21:05 -0700 | [diff] [blame] | 2706 | ext4_ext_store_pblock(ex, 0); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2707 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2708 | ex->ee_len = cpu_to_le16(num); |
Amit Arora | 749269f | 2007-07-18 09:02:56 -0400 | [diff] [blame] | 2709 | /* |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2710 | * Do not mark unwritten if all the blocks in the |
Amit Arora | 749269f | 2007-07-18 09:02:56 -0400 | [diff] [blame] | 2711 | * extent have been removed. |
| 2712 | */ |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 2713 | if (unwritten && num) |
| 2714 | ext4_ext_mark_unwritten(ex); |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2715 | /* |
| 2716 | * If the extent was completely released, |
| 2717 | * we need to remove it from the leaf |
| 2718 | */ |
| 2719 | if (num == 0) { |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 2720 | if (end != EXT_MAX_BLOCKS - 1) { |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2721 | /* |
| 2722 | * For hole punching, we need to scoot all the |
| 2723 | * extents up when an extent is removed so that |
| 2724 | * we dont have blank extents in the middle |
| 2725 | */ |
| 2726 | memmove(ex, ex+1, (EXT_LAST_EXTENT(eh) - ex) * |
| 2727 | sizeof(struct ext4_extent)); |
| 2728 | |
| 2729 | /* Now get rid of the one at the end */ |
| 2730 | memset(EXT_LAST_EXTENT(eh), 0, |
| 2731 | sizeof(struct ext4_extent)); |
| 2732 | } |
| 2733 | le16_add_cpu(&eh->eh_entries, -1); |
Eric Whitney | 5bf4376 | 2014-11-23 00:58:11 -0500 | [diff] [blame] | 2734 | } |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2735 | |
Dmitry Monakhov | 750c9c4 | 2011-10-25 05:35:05 -0400 | [diff] [blame] | 2736 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 2737 | if (err) |
| 2738 | goto out; |
| 2739 | |
Yongqiang Yang | bf52c6f | 2011-11-01 18:59:26 -0400 | [diff] [blame] | 2740 | 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] | 2741 | ext4_ext_pblock(ex)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2742 | ex--; |
| 2743 | ex_ee_block = le32_to_cpu(ex->ee_block); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 2744 | ex_ee_len = ext4_ext_get_actual_len(ex); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2745 | } |
| 2746 | |
| 2747 | if (correct_index && eh->eh_entries) |
| 2748 | err = ext4_ext_correct_indexes(handle, inode, path); |
| 2749 | |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2750 | /* |
Eric Whitney | ad6599a | 2014-04-01 19:49:30 -0400 | [diff] [blame] | 2751 | * If there's a partial cluster and at least one extent remains in |
| 2752 | * the leaf, free the partial cluster if it isn't shared with the |
Eric Whitney | 5bf4376 | 2014-11-23 00:58:11 -0500 | [diff] [blame] | 2753 | * current extent. If it is shared with the current extent |
| 2754 | * we zero partial_cluster because we've reached the start of the |
| 2755 | * truncated/punched region and we're done removing blocks. |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2756 | */ |
Eric Whitney | 5bf4376 | 2014-11-23 00:58:11 -0500 | [diff] [blame] | 2757 | if (*partial_cluster > 0 && ex >= EXT_FIRST_EXTENT(eh)) { |
| 2758 | pblk = ext4_ext_pblock(ex) + ex_ee_len - 1; |
| 2759 | if (*partial_cluster != (long long) EXT4_B2C(sbi, pblk)) { |
| 2760 | ext4_free_blocks(handle, inode, NULL, |
| 2761 | EXT4_C2B(sbi, *partial_cluster), |
| 2762 | sbi->s_cluster_ratio, |
| 2763 | get_default_free_blocks_flags(inode)); |
| 2764 | } |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2765 | *partial_cluster = 0; |
| 2766 | } |
| 2767 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2768 | /* if this leaf is free, then we should |
| 2769 | * remove it from index block above */ |
| 2770 | if (err == 0 && eh->eh_entries == 0 && path[depth].p_bh != NULL) |
Forrest Liu | c36575e | 2012-12-17 09:55:39 -0500 | [diff] [blame] | 2771 | err = ext4_ext_rm_idx(handle, inode, path, depth); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2772 | |
| 2773 | out: |
| 2774 | return err; |
| 2775 | } |
| 2776 | |
| 2777 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2778 | * ext4_ext_more_to_rm: |
| 2779 | * returns 1 if current index has to be freed (even partial) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2780 | */ |
Avantika Mathur | 09b8825 | 2006-12-06 20:41:36 -0800 | [diff] [blame] | 2781 | static int |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2782 | ext4_ext_more_to_rm(struct ext4_ext_path *path) |
| 2783 | { |
| 2784 | BUG_ON(path->p_idx == NULL); |
| 2785 | |
| 2786 | if (path->p_idx < EXT_FIRST_INDEX(path->p_hdr)) |
| 2787 | return 0; |
| 2788 | |
| 2789 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2790 | * if truncate on deeper level happened, it wasn't partial, |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2791 | * so we have to consider current index for truncation |
| 2792 | */ |
| 2793 | if (le16_to_cpu(path->p_hdr->eh_entries) == path->p_block) |
| 2794 | return 0; |
| 2795 | return 1; |
| 2796 | } |
| 2797 | |
Theodore Ts'o | 26a4c0c | 2013-04-03 12:45:17 -0400 | [diff] [blame] | 2798 | int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start, |
| 2799 | ext4_lblk_t end) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2800 | { |
Eric Whitney | f4226d9 | 2014-11-23 00:55:42 -0500 | [diff] [blame] | 2801 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2802 | int depth = ext_depth(inode); |
Ashish Sangwan | 968dee7 | 2012-07-22 22:49:08 -0400 | [diff] [blame] | 2803 | struct ext4_ext_path *path = NULL; |
Lukas Czerner | d23142c | 2013-05-27 23:33:35 -0400 | [diff] [blame] | 2804 | long long partial_cluster = 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2805 | handle_t *handle; |
Dmitry Monakhov | 6f2080e | 2012-09-30 23:03:50 -0400 | [diff] [blame] | 2806 | int i = 0, err = 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2807 | |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2808 | ext_debug("truncate since %u to %u\n", start, end); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2809 | |
| 2810 | /* probably first extent we're gonna free will be last in block */ |
Theodore Ts'o | 9924a92 | 2013-02-08 21:59:22 -0500 | [diff] [blame] | 2811 | handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, depth + 1); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2812 | if (IS_ERR(handle)) |
| 2813 | return PTR_ERR(handle); |
| 2814 | |
Dmitry Monakhov | 0617b83 | 2010-05-17 01:00:00 -0400 | [diff] [blame] | 2815 | again: |
Lukas Czerner | 6180132 | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 2816 | trace_ext4_ext_remove_space(inode, start, end, depth); |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 2817 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2818 | /* |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2819 | * Check if we are removing extents inside the extent tree. If that |
| 2820 | * is the case, we are going to punch a hole inside the extent tree |
| 2821 | * so we have to check whether we need to split the extent covering |
| 2822 | * the last block to remove so we can easily remove the part of it |
| 2823 | * in ext4_ext_rm_leaf(). |
| 2824 | */ |
| 2825 | if (end < EXT_MAX_BLOCKS - 1) { |
| 2826 | struct ext4_extent *ex; |
Eric Whitney | f4226d9 | 2014-11-23 00:55:42 -0500 | [diff] [blame] | 2827 | ext4_lblk_t ee_block, ex_end, lblk; |
| 2828 | ext4_fsblk_t pblk; |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2829 | |
Eric Whitney | f4226d9 | 2014-11-23 00:55:42 -0500 | [diff] [blame] | 2830 | /* find extent for or closest extent to this block */ |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 2831 | path = ext4_find_extent(inode, end, NULL, EXT4_EX_NOCACHE); |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2832 | if (IS_ERR(path)) { |
| 2833 | ext4_journal_stop(handle); |
| 2834 | return PTR_ERR(path); |
| 2835 | } |
| 2836 | depth = ext_depth(inode); |
Dmitry Monakhov | 6f2080e | 2012-09-30 23:03:50 -0400 | [diff] [blame] | 2837 | /* 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] | 2838 | ex = path[depth].p_ext; |
Ashish Sangwan | 968dee7 | 2012-07-22 22:49:08 -0400 | [diff] [blame] | 2839 | if (!ex) { |
Dmitry Monakhov | 6f2080e | 2012-09-30 23:03:50 -0400 | [diff] [blame] | 2840 | if (depth) { |
| 2841 | EXT4_ERROR_INODE(inode, |
| 2842 | "path[%d].p_hdr == NULL", |
| 2843 | depth); |
| 2844 | err = -EIO; |
| 2845 | } |
| 2846 | goto out; |
Ashish Sangwan | 968dee7 | 2012-07-22 22:49:08 -0400 | [diff] [blame] | 2847 | } |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2848 | |
| 2849 | ee_block = le32_to_cpu(ex->ee_block); |
Eric Whitney | f4226d9 | 2014-11-23 00:55:42 -0500 | [diff] [blame] | 2850 | ex_end = ee_block + ext4_ext_get_actual_len(ex) - 1; |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2851 | |
| 2852 | /* |
| 2853 | * See if the last block is inside the extent, if so split |
| 2854 | * the extent at 'end' block so we can easily remove the |
| 2855 | * tail of the first part of the split extent in |
| 2856 | * ext4_ext_rm_leaf(). |
| 2857 | */ |
Eric Whitney | f4226d9 | 2014-11-23 00:55:42 -0500 | [diff] [blame] | 2858 | if (end >= ee_block && end < ex_end) { |
| 2859 | |
| 2860 | /* |
| 2861 | * If we're going to split the extent, note that |
| 2862 | * the cluster containing the block after 'end' is |
| 2863 | * in use to avoid freeing it when removing blocks. |
| 2864 | */ |
| 2865 | if (sbi->s_cluster_ratio > 1) { |
| 2866 | pblk = ext4_ext_pblock(ex) + end - ee_block + 2; |
| 2867 | partial_cluster = |
| 2868 | -(long long) EXT4_B2C(sbi, pblk); |
| 2869 | } |
| 2870 | |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2871 | /* |
| 2872 | * Split the extent in two so that 'end' is the last |
Lukas Czerner | 27dd438 | 2013-04-09 22:11:22 -0400 | [diff] [blame] | 2873 | * block in the first new extent. Also we should not |
| 2874 | * fail removing space due to ENOSPC so try to use |
| 2875 | * reserved block if that happens. |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2876 | */ |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 2877 | err = ext4_force_split_extent_at(handle, inode, &path, |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 2878 | end + 1, 1); |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2879 | if (err < 0) |
| 2880 | goto out; |
Eric Whitney | f4226d9 | 2014-11-23 00:55:42 -0500 | [diff] [blame] | 2881 | |
| 2882 | } else if (sbi->s_cluster_ratio > 1 && end >= ex_end) { |
| 2883 | /* |
| 2884 | * If there's an extent to the right its first cluster |
| 2885 | * contains the immediate right boundary of the |
| 2886 | * truncated/punched region. Set partial_cluster to |
| 2887 | * its negative value so it won't be freed if shared |
| 2888 | * with the current extent. The end < ee_block case |
| 2889 | * is handled in ext4_ext_rm_leaf(). |
| 2890 | */ |
| 2891 | lblk = ex_end + 1; |
| 2892 | err = ext4_ext_search_right(inode, path, &lblk, &pblk, |
| 2893 | &ex); |
| 2894 | if (err) |
| 2895 | goto out; |
| 2896 | if (pblk) |
| 2897 | partial_cluster = |
| 2898 | -(long long) EXT4_B2C(sbi, pblk); |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2899 | } |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2900 | } |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2901 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2902 | * We start scanning from right side, freeing all the blocks |
| 2903 | * after i_size and walking into the tree depth-wise. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2904 | */ |
Dmitry Monakhov | 0617b83 | 2010-05-17 01:00:00 -0400 | [diff] [blame] | 2905 | depth = ext_depth(inode); |
Ashish Sangwan | 968dee7 | 2012-07-22 22:49:08 -0400 | [diff] [blame] | 2906 | if (path) { |
| 2907 | int k = i = depth; |
| 2908 | while (--k > 0) |
| 2909 | path[k].p_block = |
| 2910 | le16_to_cpu(path[k].p_hdr->eh_entries)+1; |
| 2911 | } else { |
| 2912 | path = kzalloc(sizeof(struct ext4_ext_path) * (depth + 1), |
| 2913 | GFP_NOFS); |
| 2914 | if (path == NULL) { |
| 2915 | ext4_journal_stop(handle); |
| 2916 | return -ENOMEM; |
| 2917 | } |
Theodore Ts'o | 10809df8 | 2014-09-01 14:40:09 -0400 | [diff] [blame] | 2918 | path[0].p_maxdepth = path[0].p_depth = depth; |
Ashish Sangwan | 968dee7 | 2012-07-22 22:49:08 -0400 | [diff] [blame] | 2919 | path[0].p_hdr = ext_inode_hdr(inode); |
Theodore Ts'o | 89a4e48 | 2012-08-17 08:54:52 -0400 | [diff] [blame] | 2920 | i = 0; |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2921 | |
Theodore Ts'o | c349179 | 2013-08-16 21:21:41 -0400 | [diff] [blame] | 2922 | if (ext4_ext_check(inode, path[0].p_hdr, depth, 0)) { |
Ashish Sangwan | 968dee7 | 2012-07-22 22:49:08 -0400 | [diff] [blame] | 2923 | err = -EIO; |
| 2924 | goto out; |
| 2925 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2926 | } |
Ashish Sangwan | 968dee7 | 2012-07-22 22:49:08 -0400 | [diff] [blame] | 2927 | err = 0; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2928 | |
| 2929 | while (i >= 0 && err == 0) { |
| 2930 | if (i == depth) { |
| 2931 | /* this is leaf block */ |
Allison Henderson | d583fb8 | 2011-05-25 07:41:43 -0400 | [diff] [blame] | 2932 | err = ext4_ext_rm_leaf(handle, inode, path, |
Theodore Ts'o | 0aa0600 | 2011-09-09 18:54:51 -0400 | [diff] [blame] | 2933 | &partial_cluster, start, |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 2934 | end); |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2935 | /* root level has p_bh == NULL, brelse() eats this */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2936 | brelse(path[i].p_bh); |
| 2937 | path[i].p_bh = NULL; |
| 2938 | i--; |
| 2939 | continue; |
| 2940 | } |
| 2941 | |
| 2942 | /* this is index block */ |
| 2943 | if (!path[i].p_hdr) { |
| 2944 | ext_debug("initialize header\n"); |
| 2945 | path[i].p_hdr = ext_block_hdr(path[i].p_bh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2946 | } |
| 2947 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2948 | if (!path[i].p_idx) { |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2949 | /* this level hasn't been touched yet */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2950 | path[i].p_idx = EXT_LAST_INDEX(path[i].p_hdr); |
| 2951 | path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries)+1; |
| 2952 | ext_debug("init index ptr: hdr 0x%p, num %d\n", |
| 2953 | path[i].p_hdr, |
| 2954 | le16_to_cpu(path[i].p_hdr->eh_entries)); |
| 2955 | } else { |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2956 | /* we were already here, see at next index */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2957 | path[i].p_idx--; |
| 2958 | } |
| 2959 | |
| 2960 | ext_debug("level %d - index, first 0x%p, cur 0x%p\n", |
| 2961 | i, EXT_FIRST_INDEX(path[i].p_hdr), |
| 2962 | path[i].p_idx); |
| 2963 | if (ext4_ext_more_to_rm(path + i)) { |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 2964 | struct buffer_head *bh; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2965 | /* go to the next level */ |
Mingming Cao | 2ae0210 | 2006-10-11 01:21:11 -0700 | [diff] [blame] | 2966 | ext_debug("move to level %d (block %llu)\n", |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 2967 | i + 1, ext4_idx_pblock(path[i].p_idx)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2968 | memset(path + i + 1, 0, sizeof(*path)); |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 2969 | bh = read_extent_tree_block(inode, |
Theodore Ts'o | 107a7bd | 2013-08-16 21:23:41 -0400 | [diff] [blame] | 2970 | ext4_idx_pblock(path[i].p_idx), depth - i - 1, |
| 2971 | EXT4_EX_NOCACHE); |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 2972 | if (IS_ERR(bh)) { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2973 | /* should we reset i_size? */ |
Theodore Ts'o | 7d7ea89 | 2013-08-16 21:20:41 -0400 | [diff] [blame] | 2974 | err = PTR_ERR(bh); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2975 | break; |
| 2976 | } |
Theodore Ts'o | 76828c88 | 2013-07-15 12:27:47 -0400 | [diff] [blame] | 2977 | /* Yield here to deal with large extent trees. |
| 2978 | * Should be a no-op if we did IO above. */ |
| 2979 | cond_resched(); |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 2980 | if (WARN_ON(i + 1 > depth)) { |
| 2981 | err = -EIO; |
| 2982 | break; |
| 2983 | } |
Alex Tomas | c29c0ae | 2007-07-18 09:19:09 -0400 | [diff] [blame] | 2984 | path[i + 1].p_bh = bh; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2985 | |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2986 | /* save actual number of indexes since this |
| 2987 | * number is changed at the next iteration */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2988 | path[i].p_block = le16_to_cpu(path[i].p_hdr->eh_entries); |
| 2989 | i++; |
| 2990 | } else { |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2991 | /* we finished processing this index, go up */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2992 | if (path[i].p_hdr->eh_entries == 0 && i > 0) { |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2993 | /* index is empty, remove it; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2994 | * handle must be already prepared by the |
| 2995 | * truncatei_leaf() */ |
Forrest Liu | c36575e | 2012-12-17 09:55:39 -0500 | [diff] [blame] | 2996 | err = ext4_ext_rm_idx(handle, inode, path, i); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2997 | } |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 2998 | /* root level has p_bh == NULL, brelse() eats this */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 2999 | brelse(path[i].p_bh); |
| 3000 | path[i].p_bh = NULL; |
| 3001 | i--; |
| 3002 | ext_debug("return to level %d\n", i); |
| 3003 | } |
| 3004 | } |
| 3005 | |
Lukas Czerner | 6180132 | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 3006 | trace_ext4_ext_remove_space_done(inode, start, end, depth, |
| 3007 | partial_cluster, path->p_hdr->eh_entries); |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 3008 | |
Eric Whitney | 0756b90 | 2014-11-23 00:59:39 -0500 | [diff] [blame] | 3009 | /* |
| 3010 | * If we still have something in the partial cluster and we have removed |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3011 | * even the first extent, then we should free the blocks in the partial |
Eric Whitney | 0756b90 | 2014-11-23 00:59:39 -0500 | [diff] [blame] | 3012 | * cluster as well. (This code will only run when there are no leaves |
| 3013 | * to the immediate left of the truncated/punched region.) |
| 3014 | */ |
| 3015 | if (partial_cluster > 0 && err == 0) { |
| 3016 | /* don't zero partial_cluster since it's not used afterwards */ |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3017 | ext4_free_blocks(handle, inode, NULL, |
Eric Whitney | f4226d9 | 2014-11-23 00:55:42 -0500 | [diff] [blame] | 3018 | EXT4_C2B(sbi, partial_cluster), |
Eric Whitney | 0756b90 | 2014-11-23 00:59:39 -0500 | [diff] [blame] | 3019 | sbi->s_cluster_ratio, |
| 3020 | get_default_free_blocks_flags(inode)); |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3021 | } |
| 3022 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3023 | /* TODO: flexible tree reduction should be here */ |
| 3024 | if (path->p_hdr->eh_entries == 0) { |
| 3025 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 3026 | * truncate to zero freed all the tree, |
| 3027 | * so we need to correct eh_depth |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3028 | */ |
| 3029 | err = ext4_ext_get_access(handle, inode, path); |
| 3030 | if (err == 0) { |
| 3031 | ext_inode_hdr(inode)->eh_depth = 0; |
| 3032 | ext_inode_hdr(inode)->eh_max = |
Theodore Ts'o | 55ad63b | 2009-08-28 10:40:33 -0400 | [diff] [blame] | 3033 | cpu_to_le16(ext4_ext_space_root(inode, 0)); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3034 | err = ext4_ext_dirty(handle, inode, path); |
| 3035 | } |
| 3036 | } |
| 3037 | out: |
Theodore Ts'o | b7ea89a | 2014-09-01 14:39:09 -0400 | [diff] [blame] | 3038 | ext4_ext_drop_refs(path); |
| 3039 | kfree(path); |
| 3040 | path = NULL; |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3041 | if (err == -EAGAIN) |
| 3042 | goto again; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3043 | ext4_journal_stop(handle); |
| 3044 | |
| 3045 | return err; |
| 3046 | } |
| 3047 | |
| 3048 | /* |
| 3049 | * called at mount time |
| 3050 | */ |
| 3051 | void ext4_ext_init(struct super_block *sb) |
| 3052 | { |
| 3053 | /* |
| 3054 | * possible initialization would be here |
| 3055 | */ |
| 3056 | |
Theodore Ts'o | 83982b6 | 2009-01-06 14:53:16 -0500 | [diff] [blame] | 3057 | if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) { |
Theodore Ts'o | 90576c0 | 2009-09-29 15:51:30 -0400 | [diff] [blame] | 3058 | #if defined(AGGRESSIVE_TEST) || defined(CHECK_BINSEARCH) || defined(EXTENTS_STATS) |
Theodore Ts'o | 92b9781 | 2012-03-19 23:41:49 -0400 | [diff] [blame] | 3059 | printk(KERN_INFO "EXT4-fs: file extents enabled" |
Robert P. J. Day | bbf2f9f | 2007-02-17 19:20:16 +0100 | [diff] [blame] | 3060 | #ifdef AGGRESSIVE_TEST |
Theodore Ts'o | 92b9781 | 2012-03-19 23:41:49 -0400 | [diff] [blame] | 3061 | ", aggressive tests" |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3062 | #endif |
| 3063 | #ifdef CHECK_BINSEARCH |
Theodore Ts'o | 92b9781 | 2012-03-19 23:41:49 -0400 | [diff] [blame] | 3064 | ", check binsearch" |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3065 | #endif |
| 3066 | #ifdef EXTENTS_STATS |
Theodore Ts'o | 92b9781 | 2012-03-19 23:41:49 -0400 | [diff] [blame] | 3067 | ", stats" |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3068 | #endif |
Theodore Ts'o | 92b9781 | 2012-03-19 23:41:49 -0400 | [diff] [blame] | 3069 | "\n"); |
Theodore Ts'o | 90576c0 | 2009-09-29 15:51:30 -0400 | [diff] [blame] | 3070 | #endif |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3071 | #ifdef EXTENTS_STATS |
| 3072 | spin_lock_init(&EXT4_SB(sb)->s_ext_stats_lock); |
| 3073 | EXT4_SB(sb)->s_ext_min = 1 << 30; |
| 3074 | EXT4_SB(sb)->s_ext_max = 0; |
| 3075 | #endif |
| 3076 | } |
| 3077 | } |
| 3078 | |
| 3079 | /* |
| 3080 | * called at umount time |
| 3081 | */ |
| 3082 | void ext4_ext_release(struct super_block *sb) |
| 3083 | { |
Theodore Ts'o | 83982b6 | 2009-01-06 14:53:16 -0500 | [diff] [blame] | 3084 | if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 3085 | return; |
| 3086 | |
| 3087 | #ifdef EXTENTS_STATS |
| 3088 | if (EXT4_SB(sb)->s_ext_blocks && EXT4_SB(sb)->s_ext_extents) { |
| 3089 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 3090 | printk(KERN_ERR "EXT4-fs: %lu blocks in %lu extents (%lu ave)\n", |
| 3091 | sbi->s_ext_blocks, sbi->s_ext_extents, |
| 3092 | sbi->s_ext_blocks / sbi->s_ext_extents); |
| 3093 | printk(KERN_ERR "EXT4-fs: extents: %lu min, %lu max, max depth %lu\n", |
| 3094 | sbi->s_ext_min, sbi->s_ext_max, sbi->s_depth_max); |
| 3095 | } |
| 3096 | #endif |
| 3097 | } |
| 3098 | |
Zheng Liu | d7b2a00 | 2013-08-28 14:47:06 -0400 | [diff] [blame] | 3099 | static int ext4_zeroout_es(struct inode *inode, struct ext4_extent *ex) |
| 3100 | { |
| 3101 | ext4_lblk_t ee_block; |
| 3102 | ext4_fsblk_t ee_pblock; |
| 3103 | unsigned int ee_len; |
| 3104 | |
| 3105 | ee_block = le32_to_cpu(ex->ee_block); |
| 3106 | ee_len = ext4_ext_get_actual_len(ex); |
| 3107 | ee_pblock = ext4_ext_pblock(ex); |
| 3108 | |
| 3109 | if (ee_len == 0) |
| 3110 | return 0; |
| 3111 | |
| 3112 | return ext4_es_insert_extent(inode, ee_block, ee_len, ee_pblock, |
| 3113 | EXTENT_STATUS_WRITTEN); |
| 3114 | } |
| 3115 | |
Aneesh Kumar K.V | 093a088 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3116 | /* FIXME!! we need to try to merge to left or right after zero-out */ |
| 3117 | static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex) |
| 3118 | { |
Lukas Czerner | 2407518 | 2010-10-27 21:30:06 -0400 | [diff] [blame] | 3119 | ext4_fsblk_t ee_pblock; |
| 3120 | unsigned int ee_len; |
Jing Zhang | b720303 | 2010-05-12 00:00:00 -0400 | [diff] [blame] | 3121 | int ret; |
Aneesh Kumar K.V | 093a088 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3122 | |
Aneesh Kumar K.V | 093a088 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3123 | ee_len = ext4_ext_get_actual_len(ex); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 3124 | ee_pblock = ext4_ext_pblock(ex); |
Aneesh Kumar K.V | 093a088 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3125 | |
Michael Halcrow | 2058f83 | 2015-04-12 00:55:10 -0400 | [diff] [blame] | 3126 | if (ext4_encrypted_inode(inode)) |
| 3127 | return ext4_encrypted_zeroout(inode, ex); |
| 3128 | |
Theodore Ts'o | a107e5a | 2010-10-27 23:44:47 -0400 | [diff] [blame] | 3129 | 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] | 3130 | if (ret > 0) |
| 3131 | ret = 0; |
Aneesh Kumar K.V | 093a088 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3132 | |
Lukas Czerner | 2407518 | 2010-10-27 21:30:06 -0400 | [diff] [blame] | 3133 | return ret; |
Aneesh Kumar K.V | 093a088 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3134 | } |
| 3135 | |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3136 | /* |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3137 | * ext4_split_extent_at() splits an extent at given block. |
| 3138 | * |
| 3139 | * @handle: the journal handle |
| 3140 | * @inode: the file inode |
| 3141 | * @path: the path to the extent |
| 3142 | * @split: the logical block where the extent is splitted. |
| 3143 | * @split_flags: indicates if the extent could be zeroout if split fails, and |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3144 | * the states(init or unwritten) of new extents. |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3145 | * @flags: flags used to insert new extent to extent tree. |
| 3146 | * |
| 3147 | * |
| 3148 | * Splits extent [a, b] into two extents [a, @split) and [@split, b], states |
| 3149 | * of which are deterimined by split_flag. |
| 3150 | * |
| 3151 | * There are two cases: |
| 3152 | * a> the extent are splitted into two extent. |
| 3153 | * b> split is not needed, and just mark the extent. |
| 3154 | * |
| 3155 | * return 0 on success. |
| 3156 | */ |
| 3157 | static int ext4_split_extent_at(handle_t *handle, |
| 3158 | struct inode *inode, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3159 | struct ext4_ext_path **ppath, |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3160 | ext4_lblk_t split, |
| 3161 | int split_flag, |
| 3162 | int flags) |
| 3163 | { |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3164 | struct ext4_ext_path *path = *ppath; |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3165 | ext4_fsblk_t newblock; |
| 3166 | ext4_lblk_t ee_block; |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3167 | struct ext4_extent *ex, newex, orig_ex, zero_ex; |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3168 | struct ext4_extent *ex2 = NULL; |
| 3169 | unsigned int ee_len, depth; |
| 3170 | int err = 0; |
| 3171 | |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3172 | BUG_ON((split_flag & (EXT4_EXT_DATA_VALID1 | EXT4_EXT_DATA_VALID2)) == |
| 3173 | (EXT4_EXT_DATA_VALID1 | EXT4_EXT_DATA_VALID2)); |
| 3174 | |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3175 | ext_debug("ext4_split_extents_at: inode %lu, logical" |
| 3176 | "block %llu\n", inode->i_ino, (unsigned long long)split); |
| 3177 | |
| 3178 | ext4_ext_show_leaf(inode, path); |
| 3179 | |
| 3180 | depth = ext_depth(inode); |
| 3181 | ex = path[depth].p_ext; |
| 3182 | ee_block = le32_to_cpu(ex->ee_block); |
| 3183 | ee_len = ext4_ext_get_actual_len(ex); |
| 3184 | newblock = split - ee_block + ext4_ext_pblock(ex); |
| 3185 | |
| 3186 | BUG_ON(split < ee_block || split >= (ee_block + ee_len)); |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3187 | BUG_ON(!ext4_ext_is_unwritten(ex) && |
Dmitry Monakhov | 357b66f | 2013-03-04 00:34:34 -0500 | [diff] [blame] | 3188 | split_flag & (EXT4_EXT_MAY_ZEROOUT | |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3189 | EXT4_EXT_MARK_UNWRIT1 | |
| 3190 | EXT4_EXT_MARK_UNWRIT2)); |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3191 | |
| 3192 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 3193 | if (err) |
| 3194 | goto out; |
| 3195 | |
| 3196 | if (split == ee_block) { |
| 3197 | /* |
| 3198 | * case b: block @split is the block that the extent begins with |
| 3199 | * then we just change the state of the extent, and splitting |
| 3200 | * is not needed. |
| 3201 | */ |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3202 | if (split_flag & EXT4_EXT_MARK_UNWRIT2) |
| 3203 | ext4_ext_mark_unwritten(ex); |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3204 | else |
| 3205 | ext4_ext_mark_initialized(ex); |
| 3206 | |
| 3207 | if (!(flags & EXT4_GET_BLOCKS_PRE_IO)) |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 3208 | ext4_ext_try_to_merge(handle, inode, path, ex); |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3209 | |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 3210 | err = ext4_ext_dirty(handle, inode, path + path->p_depth); |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3211 | goto out; |
| 3212 | } |
| 3213 | |
| 3214 | /* case a */ |
| 3215 | memcpy(&orig_ex, ex, sizeof(orig_ex)); |
| 3216 | ex->ee_len = cpu_to_le16(split - ee_block); |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3217 | if (split_flag & EXT4_EXT_MARK_UNWRIT1) |
| 3218 | ext4_ext_mark_unwritten(ex); |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3219 | |
| 3220 | /* |
| 3221 | * path may lead to new leaf, not to original leaf any more |
| 3222 | * after ext4_ext_insert_extent() returns, |
| 3223 | */ |
| 3224 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 3225 | if (err) |
| 3226 | goto fix_extent_len; |
| 3227 | |
| 3228 | ex2 = &newex; |
| 3229 | ex2->ee_block = cpu_to_le32(split); |
| 3230 | ex2->ee_len = cpu_to_le16(ee_len - (split - ee_block)); |
| 3231 | ext4_ext_store_pblock(ex2, newblock); |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3232 | if (split_flag & EXT4_EXT_MARK_UNWRIT2) |
| 3233 | ext4_ext_mark_unwritten(ex2); |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3234 | |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3235 | err = ext4_ext_insert_extent(handle, inode, ppath, &newex, flags); |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3236 | if (err == -ENOSPC && (EXT4_EXT_MAY_ZEROOUT & split_flag)) { |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3237 | if (split_flag & (EXT4_EXT_DATA_VALID1|EXT4_EXT_DATA_VALID2)) { |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3238 | if (split_flag & EXT4_EXT_DATA_VALID1) { |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3239 | err = ext4_ext_zeroout(inode, ex2); |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3240 | zero_ex.ee_block = ex2->ee_block; |
Zheng Liu | 8cde7ad | 2013-04-03 12:27:18 -0400 | [diff] [blame] | 3241 | zero_ex.ee_len = cpu_to_le16( |
| 3242 | ext4_ext_get_actual_len(ex2)); |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3243 | ext4_ext_store_pblock(&zero_ex, |
| 3244 | ext4_ext_pblock(ex2)); |
| 3245 | } else { |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3246 | err = ext4_ext_zeroout(inode, ex); |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3247 | zero_ex.ee_block = ex->ee_block; |
Zheng Liu | 8cde7ad | 2013-04-03 12:27:18 -0400 | [diff] [blame] | 3248 | zero_ex.ee_len = cpu_to_le16( |
| 3249 | ext4_ext_get_actual_len(ex)); |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3250 | ext4_ext_store_pblock(&zero_ex, |
| 3251 | ext4_ext_pblock(ex)); |
| 3252 | } |
| 3253 | } else { |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3254 | err = ext4_ext_zeroout(inode, &orig_ex); |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3255 | zero_ex.ee_block = orig_ex.ee_block; |
Zheng Liu | 8cde7ad | 2013-04-03 12:27:18 -0400 | [diff] [blame] | 3256 | zero_ex.ee_len = cpu_to_le16( |
| 3257 | ext4_ext_get_actual_len(&orig_ex)); |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3258 | ext4_ext_store_pblock(&zero_ex, |
| 3259 | ext4_ext_pblock(&orig_ex)); |
| 3260 | } |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3261 | |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3262 | if (err) |
| 3263 | goto fix_extent_len; |
| 3264 | /* update the extent length and mark as initialized */ |
Al Viro | af1584f | 2012-04-12 20:32:25 -0400 | [diff] [blame] | 3265 | ex->ee_len = cpu_to_le16(ee_len); |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 3266 | ext4_ext_try_to_merge(handle, inode, path, ex); |
| 3267 | err = ext4_ext_dirty(handle, inode, path + path->p_depth); |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3268 | if (err) |
| 3269 | goto fix_extent_len; |
| 3270 | |
| 3271 | /* update extent status tree */ |
Zheng Liu | d7b2a00 | 2013-08-28 14:47:06 -0400 | [diff] [blame] | 3272 | err = ext4_zeroout_es(inode, &zero_ex); |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3273 | |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3274 | goto out; |
| 3275 | } else if (err) |
| 3276 | goto fix_extent_len; |
| 3277 | |
| 3278 | out: |
| 3279 | ext4_ext_show_leaf(inode, path); |
| 3280 | return err; |
| 3281 | |
| 3282 | fix_extent_len: |
| 3283 | ex->ee_len = orig_ex.ee_len; |
Dmitry Monakhov | 29faed1 | 2014-07-27 22:30:29 -0400 | [diff] [blame] | 3284 | ext4_ext_dirty(handle, inode, path + path->p_depth); |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3285 | return err; |
| 3286 | } |
| 3287 | |
| 3288 | /* |
| 3289 | * ext4_split_extents() splits an extent and mark extent which is covered |
| 3290 | * by @map as split_flags indicates |
| 3291 | * |
Anatol Pomozov | 70261f5 | 2013-08-28 14:40:12 -0400 | [diff] [blame] | 3292 | * It may result in splitting the extent into multiple extents (up to three) |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3293 | * There are three possibilities: |
| 3294 | * a> There is no split required |
| 3295 | * b> Splits in two extents: Split is happening at either end of the extent |
| 3296 | * c> Splits in three extents: Somone is splitting in middle of the extent |
| 3297 | * |
| 3298 | */ |
| 3299 | static int ext4_split_extent(handle_t *handle, |
| 3300 | struct inode *inode, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3301 | struct ext4_ext_path **ppath, |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3302 | struct ext4_map_blocks *map, |
| 3303 | int split_flag, |
| 3304 | int flags) |
| 3305 | { |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3306 | struct ext4_ext_path *path = *ppath; |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3307 | ext4_lblk_t ee_block; |
| 3308 | struct ext4_extent *ex; |
| 3309 | unsigned int ee_len, depth; |
| 3310 | int err = 0; |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3311 | int unwritten; |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3312 | int split_flag1, flags1; |
Zheng Liu | 3a22567 | 2013-03-10 21:20:23 -0400 | [diff] [blame] | 3313 | int allocated = map->m_len; |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3314 | |
| 3315 | depth = ext_depth(inode); |
| 3316 | ex = path[depth].p_ext; |
| 3317 | ee_block = le32_to_cpu(ex->ee_block); |
| 3318 | ee_len = ext4_ext_get_actual_len(ex); |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3319 | unwritten = ext4_ext_is_unwritten(ex); |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3320 | |
| 3321 | if (map->m_lblk + map->m_len < ee_block + ee_len) { |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3322 | split_flag1 = split_flag & EXT4_EXT_MAY_ZEROOUT; |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3323 | flags1 = flags | EXT4_GET_BLOCKS_PRE_IO; |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3324 | if (unwritten) |
| 3325 | split_flag1 |= EXT4_EXT_MARK_UNWRIT1 | |
| 3326 | EXT4_EXT_MARK_UNWRIT2; |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3327 | if (split_flag & EXT4_EXT_DATA_VALID2) |
| 3328 | split_flag1 |= EXT4_EXT_DATA_VALID1; |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3329 | err = ext4_split_extent_at(handle, inode, ppath, |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3330 | map->m_lblk + map->m_len, split_flag1, flags1); |
Yongqiang Yang | 9391741 | 2011-05-22 20:49:12 -0400 | [diff] [blame] | 3331 | if (err) |
| 3332 | goto out; |
Zheng Liu | 3a22567 | 2013-03-10 21:20:23 -0400 | [diff] [blame] | 3333 | } else { |
| 3334 | allocated = ee_len - (map->m_lblk - ee_block); |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3335 | } |
Dmitry Monakhov | 357b66f | 2013-03-04 00:34:34 -0500 | [diff] [blame] | 3336 | /* |
| 3337 | * Update path is required because previous ext4_split_extent_at() may |
| 3338 | * result in split of original leaf or extent zeroout. |
| 3339 | */ |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 3340 | path = ext4_find_extent(inode, map->m_lblk, ppath, 0); |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3341 | if (IS_ERR(path)) |
| 3342 | return PTR_ERR(path); |
Dmitry Monakhov | 357b66f | 2013-03-04 00:34:34 -0500 | [diff] [blame] | 3343 | depth = ext_depth(inode); |
| 3344 | ex = path[depth].p_ext; |
Dmitry Monakhov | a18ed35 | 2014-04-13 15:41:13 -0400 | [diff] [blame] | 3345 | if (!ex) { |
| 3346 | EXT4_ERROR_INODE(inode, "unexpected hole at %lu", |
| 3347 | (unsigned long) map->m_lblk); |
| 3348 | return -EIO; |
| 3349 | } |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3350 | unwritten = ext4_ext_is_unwritten(ex); |
Dmitry Monakhov | 357b66f | 2013-03-04 00:34:34 -0500 | [diff] [blame] | 3351 | split_flag1 = 0; |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3352 | |
| 3353 | if (map->m_lblk >= ee_block) { |
Dmitry Monakhov | 357b66f | 2013-03-04 00:34:34 -0500 | [diff] [blame] | 3354 | split_flag1 = split_flag & EXT4_EXT_DATA_VALID2; |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3355 | if (unwritten) { |
| 3356 | split_flag1 |= EXT4_EXT_MARK_UNWRIT1; |
Dmitry Monakhov | 357b66f | 2013-03-04 00:34:34 -0500 | [diff] [blame] | 3357 | split_flag1 |= split_flag & (EXT4_EXT_MAY_ZEROOUT | |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3358 | EXT4_EXT_MARK_UNWRIT2); |
Dmitry Monakhov | 357b66f | 2013-03-04 00:34:34 -0500 | [diff] [blame] | 3359 | } |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3360 | err = ext4_split_extent_at(handle, inode, ppath, |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3361 | map->m_lblk, split_flag1, flags); |
| 3362 | if (err) |
| 3363 | goto out; |
| 3364 | } |
| 3365 | |
| 3366 | ext4_ext_show_leaf(inode, path); |
| 3367 | out: |
Zheng Liu | 3a22567 | 2013-03-10 21:20:23 -0400 | [diff] [blame] | 3368 | return err ? err : allocated; |
Yongqiang Yang | 47ea3bb | 2011-05-03 12:23:07 -0400 | [diff] [blame] | 3369 | } |
| 3370 | |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3371 | /* |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3372 | * This function is called by ext4_ext_map_blocks() if someone tries to write |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3373 | * to an unwritten extent. It may result in splitting the unwritten |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 3374 | * extent into multiple extents (up to three - one initialized and two |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3375 | * unwritten). |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3376 | * There are three possibilities: |
| 3377 | * a> There is no split required: Entire extent should be initialized |
| 3378 | * b> Splits in two extents: Write is happening at either end of the extent |
| 3379 | * 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] | 3380 | * |
| 3381 | * Pre-conditions: |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3382 | * - The extent pointed to by 'path' is unwritten. |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3383 | * - The extent pointed to by 'path' contains a superset |
| 3384 | * of the logical span [map->m_lblk, map->m_lblk + map->m_len). |
| 3385 | * |
| 3386 | * Post-conditions on success: |
| 3387 | * - the returned value is the number of blocks beyond map->l_lblk |
| 3388 | * that are allocated and initialized. |
| 3389 | * It is guaranteed to be >= map->m_len. |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3390 | */ |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3391 | static int ext4_ext_convert_to_initialized(handle_t *handle, |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3392 | struct inode *inode, |
| 3393 | struct ext4_map_blocks *map, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3394 | struct ext4_ext_path **ppath, |
Lukas Czerner | 27dd438 | 2013-04-09 22:11:22 -0400 | [diff] [blame] | 3395 | int flags) |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3396 | { |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3397 | struct ext4_ext_path *path = *ppath; |
Zheng Liu | 67a5da5 | 2012-08-17 09:54:17 -0400 | [diff] [blame] | 3398 | struct ext4_sb_info *sbi; |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3399 | struct ext4_extent_header *eh; |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3400 | struct ext4_map_blocks split_map; |
| 3401 | struct ext4_extent zero_ex; |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3402 | struct ext4_extent *ex, *abut_ex; |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3403 | ext4_lblk_t ee_block, eof_block; |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3404 | unsigned int ee_len, depth, map_len = map->m_len; |
| 3405 | int allocated = 0, max_zeroout = 0; |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3406 | int err = 0; |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3407 | int split_flag = 0; |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3408 | |
| 3409 | ext_debug("ext4_ext_convert_to_initialized: inode %lu, logical" |
| 3410 | "block %llu, max_blocks %u\n", inode->i_ino, |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3411 | (unsigned long long)map->m_lblk, map_len); |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3412 | |
Zheng Liu | 67a5da5 | 2012-08-17 09:54:17 -0400 | [diff] [blame] | 3413 | sbi = EXT4_SB(inode->i_sb); |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3414 | eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >> |
| 3415 | inode->i_sb->s_blocksize_bits; |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3416 | if (eof_block < map->m_lblk + map_len) |
| 3417 | eof_block = map->m_lblk + map_len; |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3418 | |
| 3419 | depth = ext_depth(inode); |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3420 | eh = path[depth].p_hdr; |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3421 | ex = path[depth].p_ext; |
| 3422 | ee_block = le32_to_cpu(ex->ee_block); |
| 3423 | ee_len = ext4_ext_get_actual_len(ex); |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3424 | zero_ex.ee_len = 0; |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3425 | |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3426 | trace_ext4_ext_convert_to_initialized_enter(inode, map, ex); |
| 3427 | |
| 3428 | /* Pre-conditions */ |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3429 | BUG_ON(!ext4_ext_is_unwritten(ex)); |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3430 | BUG_ON(!in_range(map->m_lblk, ee_block, ee_len)); |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3431 | |
| 3432 | /* |
| 3433 | * Attempt to transfer newly initialized blocks from the currently |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3434 | * unwritten extent to its neighbor. This is much cheaper |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3435 | * than an insertion followed by a merge as those involve costly |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3436 | * memmove() calls. Transferring to the left is the common case in |
| 3437 | * steady state for workloads doing fallocate(FALLOC_FL_KEEP_SIZE) |
| 3438 | * followed by append writes. |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3439 | * |
| 3440 | * Limitations of the current logic: |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3441 | * - L1: we do not deal with writes covering the whole extent. |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3442 | * This would require removing the extent if the transfer |
| 3443 | * is possible. |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3444 | * - L2: we only attempt to merge with an extent stored in the |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3445 | * same extent tree node. |
| 3446 | */ |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3447 | if ((map->m_lblk == ee_block) && |
| 3448 | /* See if we can merge left */ |
| 3449 | (map_len < ee_len) && /*L1*/ |
| 3450 | (ex > EXT_FIRST_EXTENT(eh))) { /*L2*/ |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3451 | ext4_lblk_t prev_lblk; |
| 3452 | ext4_fsblk_t prev_pblk, ee_pblk; |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3453 | unsigned int prev_len; |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3454 | |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3455 | abut_ex = ex - 1; |
| 3456 | prev_lblk = le32_to_cpu(abut_ex->ee_block); |
| 3457 | prev_len = ext4_ext_get_actual_len(abut_ex); |
| 3458 | prev_pblk = ext4_ext_pblock(abut_ex); |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3459 | ee_pblk = ext4_ext_pblock(ex); |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3460 | |
| 3461 | /* |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3462 | * A transfer of blocks from 'ex' to 'abut_ex' is allowed |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3463 | * upon those conditions: |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3464 | * - C1: abut_ex is initialized, |
| 3465 | * - C2: abut_ex is logically abutting ex, |
| 3466 | * - C3: abut_ex is physically abutting ex, |
| 3467 | * - C4: abut_ex can receive the additional blocks without |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3468 | * overflowing the (initialized) length limit. |
| 3469 | */ |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3470 | if ((!ext4_ext_is_unwritten(abut_ex)) && /*C1*/ |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3471 | ((prev_lblk + prev_len) == ee_block) && /*C2*/ |
| 3472 | ((prev_pblk + prev_len) == ee_pblk) && /*C3*/ |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3473 | (prev_len < (EXT_INIT_MAX_LEN - map_len))) { /*C4*/ |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3474 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 3475 | if (err) |
| 3476 | goto out; |
| 3477 | |
| 3478 | trace_ext4_ext_convert_to_initialized_fastpath(inode, |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3479 | map, ex, abut_ex); |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3480 | |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3481 | /* Shift the start of ex by 'map_len' blocks */ |
| 3482 | ex->ee_block = cpu_to_le32(ee_block + map_len); |
| 3483 | ext4_ext_store_pblock(ex, ee_pblk + map_len); |
| 3484 | ex->ee_len = cpu_to_le16(ee_len - map_len); |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3485 | ext4_ext_mark_unwritten(ex); /* Restore the flag */ |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3486 | |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3487 | /* Extend abut_ex by 'map_len' blocks */ |
| 3488 | abut_ex->ee_len = cpu_to_le16(prev_len + map_len); |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3489 | |
| 3490 | /* Result: number of initialized blocks past m_lblk */ |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3491 | allocated = map_len; |
| 3492 | } |
| 3493 | } else if (((map->m_lblk + map_len) == (ee_block + ee_len)) && |
| 3494 | (map_len < ee_len) && /*L1*/ |
| 3495 | ex < EXT_LAST_EXTENT(eh)) { /*L2*/ |
| 3496 | /* See if we can merge right */ |
| 3497 | ext4_lblk_t next_lblk; |
| 3498 | ext4_fsblk_t next_pblk, ee_pblk; |
| 3499 | unsigned int next_len; |
| 3500 | |
| 3501 | abut_ex = ex + 1; |
| 3502 | next_lblk = le32_to_cpu(abut_ex->ee_block); |
| 3503 | next_len = ext4_ext_get_actual_len(abut_ex); |
| 3504 | next_pblk = ext4_ext_pblock(abut_ex); |
| 3505 | ee_pblk = ext4_ext_pblock(ex); |
| 3506 | |
| 3507 | /* |
| 3508 | * A transfer of blocks from 'ex' to 'abut_ex' is allowed |
| 3509 | * upon those conditions: |
| 3510 | * - C1: abut_ex is initialized, |
| 3511 | * - C2: abut_ex is logically abutting ex, |
| 3512 | * - C3: abut_ex is physically abutting ex, |
| 3513 | * - C4: abut_ex can receive the additional blocks without |
| 3514 | * overflowing the (initialized) length limit. |
| 3515 | */ |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3516 | if ((!ext4_ext_is_unwritten(abut_ex)) && /*C1*/ |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3517 | ((map->m_lblk + map_len) == next_lblk) && /*C2*/ |
| 3518 | ((ee_pblk + ee_len) == next_pblk) && /*C3*/ |
| 3519 | (next_len < (EXT_INIT_MAX_LEN - map_len))) { /*C4*/ |
| 3520 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 3521 | if (err) |
| 3522 | goto out; |
| 3523 | |
| 3524 | trace_ext4_ext_convert_to_initialized_fastpath(inode, |
| 3525 | map, ex, abut_ex); |
| 3526 | |
| 3527 | /* Shift the start of abut_ex by 'map_len' blocks */ |
| 3528 | abut_ex->ee_block = cpu_to_le32(next_lblk - map_len); |
| 3529 | ext4_ext_store_pblock(abut_ex, next_pblk - map_len); |
| 3530 | ex->ee_len = cpu_to_le16(ee_len - map_len); |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3531 | ext4_ext_mark_unwritten(ex); /* Restore the flag */ |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3532 | |
| 3533 | /* Extend abut_ex by 'map_len' blocks */ |
| 3534 | abut_ex->ee_len = cpu_to_le16(next_len + map_len); |
| 3535 | |
| 3536 | /* Result: number of initialized blocks past m_lblk */ |
| 3537 | allocated = map_len; |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3538 | } |
| 3539 | } |
Lukas Czerner | bc2d9db | 2013-04-03 23:33:27 -0400 | [diff] [blame] | 3540 | if (allocated) { |
| 3541 | /* Mark the block containing both extents as dirty */ |
| 3542 | ext4_ext_dirty(handle, inode, path + depth); |
| 3543 | |
| 3544 | /* Update path to point to the right extent */ |
| 3545 | path[depth].p_ext = abut_ex; |
| 3546 | goto out; |
| 3547 | } else |
| 3548 | allocated = ee_len - (map->m_lblk - ee_block); |
Eric Gouriou | 6f91bc5 | 2011-10-27 11:43:23 -0400 | [diff] [blame] | 3549 | |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3550 | WARN_ON(map->m_lblk < ee_block); |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3551 | /* |
| 3552 | * It is safe to convert extent to initialized via explicit |
Yongqiang Yang | 9e74056 | 2014-01-06 14:05:23 -0500 | [diff] [blame] | 3553 | * zeroout only if extent is fully inside i_size or new_size. |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3554 | */ |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3555 | 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] | 3556 | |
Zheng Liu | 67a5da5 | 2012-08-17 09:54:17 -0400 | [diff] [blame] | 3557 | if (EXT4_EXT_MAY_ZEROOUT & split_flag) |
| 3558 | max_zeroout = sbi->s_extent_max_zeroout_kb >> |
Lukas Czerner | 4f42f80 | 2013-03-12 12:40:04 -0400 | [diff] [blame] | 3559 | (inode->i_sb->s_blocksize_bits - 10); |
Zheng Liu | 67a5da5 | 2012-08-17 09:54:17 -0400 | [diff] [blame] | 3560 | |
Theodore Ts'o | 36086d4 | 2015-10-03 10:49:29 -0400 | [diff] [blame^] | 3561 | if (ext4_encrypted_inode(inode)) |
| 3562 | max_zeroout = 0; |
| 3563 | |
Zheng Liu | 67a5da5 | 2012-08-17 09:54:17 -0400 | [diff] [blame] | 3564 | /* If extent is less than s_max_zeroout_kb, zeroout directly */ |
| 3565 | if (max_zeroout && (ee_len <= max_zeroout)) { |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3566 | err = ext4_ext_zeroout(inode, ex); |
Aneesh Kumar K.V | 3977c96 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 3567 | if (err) |
Aneesh Kumar K.V | d03856b | 2008-08-02 18:51:32 -0400 | [diff] [blame] | 3568 | goto out; |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3569 | zero_ex.ee_block = ex->ee_block; |
Zheng Liu | 8cde7ad | 2013-04-03 12:27:18 -0400 | [diff] [blame] | 3570 | zero_ex.ee_len = cpu_to_le16(ext4_ext_get_actual_len(ex)); |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3571 | ext4_ext_store_pblock(&zero_ex, ext4_ext_pblock(ex)); |
Aneesh Kumar K.V | d03856b | 2008-08-02 18:51:32 -0400 | [diff] [blame] | 3572 | |
| 3573 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 3574 | if (err) |
| 3575 | goto out; |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3576 | ext4_ext_mark_initialized(ex); |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 3577 | ext4_ext_try_to_merge(handle, inode, path, ex); |
| 3578 | err = ext4_ext_dirty(handle, inode, path + path->p_depth); |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3579 | goto out; |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3580 | } |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3581 | |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3582 | /* |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3583 | * four cases: |
| 3584 | * 1. split the extent into three extents. |
| 3585 | * 2. split the extent into two extents, zeroout the first half. |
| 3586 | * 3. split the extent into two extents, zeroout the second half. |
| 3587 | * 4. split the extent into two extents with out zeroout. |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3588 | */ |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3589 | split_map.m_lblk = map->m_lblk; |
| 3590 | split_map.m_len = map->m_len; |
| 3591 | |
Zheng Liu | 67a5da5 | 2012-08-17 09:54:17 -0400 | [diff] [blame] | 3592 | if (max_zeroout && (allocated > map->m_len)) { |
| 3593 | if (allocated <= max_zeroout) { |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3594 | /* case 3 */ |
| 3595 | zero_ex.ee_block = |
Allison Henderson | 9b940f8 | 2011-05-16 10:11:09 -0400 | [diff] [blame] | 3596 | cpu_to_le32(map->m_lblk); |
| 3597 | zero_ex.ee_len = cpu_to_le16(allocated); |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3598 | ext4_ext_store_pblock(&zero_ex, |
| 3599 | ext4_ext_pblock(ex) + map->m_lblk - ee_block); |
| 3600 | err = ext4_ext_zeroout(inode, &zero_ex); |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3601 | if (err) |
| 3602 | goto out; |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3603 | split_map.m_lblk = map->m_lblk; |
| 3604 | split_map.m_len = allocated; |
Zheng Liu | 67a5da5 | 2012-08-17 09:54:17 -0400 | [diff] [blame] | 3605 | } else if (map->m_lblk - ee_block + map->m_len < max_zeroout) { |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3606 | /* case 2 */ |
| 3607 | if (map->m_lblk != ee_block) { |
| 3608 | zero_ex.ee_block = ex->ee_block; |
| 3609 | zero_ex.ee_len = cpu_to_le16(map->m_lblk - |
| 3610 | ee_block); |
| 3611 | ext4_ext_store_pblock(&zero_ex, |
| 3612 | ext4_ext_pblock(ex)); |
| 3613 | err = ext4_ext_zeroout(inode, &zero_ex); |
| 3614 | if (err) |
| 3615 | goto out; |
| 3616 | } |
| 3617 | |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3618 | split_map.m_lblk = ee_block; |
Allison Henderson | 9b940f8 | 2011-05-16 10:11:09 -0400 | [diff] [blame] | 3619 | split_map.m_len = map->m_lblk - ee_block + map->m_len; |
| 3620 | allocated = map->m_len; |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3621 | } |
| 3622 | } |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3623 | |
Jan Kara | ae9e9c6a | 2014-10-30 10:53:17 -0400 | [diff] [blame] | 3624 | err = ext4_split_extent(handle, inode, ppath, &split_map, split_flag, |
| 3625 | flags); |
| 3626 | if (err > 0) |
| 3627 | err = 0; |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3628 | out: |
Zheng Liu | adb2355 | 2013-03-10 21:13:05 -0400 | [diff] [blame] | 3629 | /* If we have gotten a failure, don't zero out status tree */ |
| 3630 | if (!err) |
Zheng Liu | d7b2a00 | 2013-08-28 14:47:06 -0400 | [diff] [blame] | 3631 | err = ext4_zeroout_es(inode, &zero_ex); |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 3632 | return err ? err : allocated; |
| 3633 | } |
| 3634 | |
Aneesh Kumar K.V | c278bfe | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 3635 | /* |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3636 | * This function is called by ext4_ext_map_blocks() from |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3637 | * ext4_get_blocks_dio_write() when DIO to write |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3638 | * to an unwritten extent. |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3639 | * |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3640 | * Writing to an unwritten extent may result in splitting the unwritten |
| 3641 | * extent into multiple initialized/unwritten extents (up to three) |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3642 | * There are three possibilities: |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3643 | * a> There is no split required: Entire extent should be unwritten |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3644 | * b> Splits in two extents: Write is happening at either end of the extent |
| 3645 | * c> Splits in three extents: Somone is writing in middle of the extent |
| 3646 | * |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 3647 | * This works the same way in the case of initialized -> unwritten conversion. |
| 3648 | * |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3649 | * One of more index blocks maybe needed if the extent tree grow after |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3650 | * the unwritten extent split. To prevent ENOSPC occur at the IO |
| 3651 | * complete, we need to split the unwritten extent before DIO submit |
| 3652 | * the IO. The unwritten extent called at this time will be split |
| 3653 | * into three unwritten extent(at most). After IO complete, the part |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3654 | * being filled will be convert to initialized by the end_io callback function |
| 3655 | * via ext4_convert_unwritten_extents(). |
Mingming | ba230c3 | 2009-11-06 04:01:23 -0500 | [diff] [blame] | 3656 | * |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3657 | * Returns the size of unwritten extent to be written on success. |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3658 | */ |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 3659 | static int ext4_split_convert_extents(handle_t *handle, |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3660 | struct inode *inode, |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3661 | struct ext4_map_blocks *map, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3662 | struct ext4_ext_path **ppath, |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3663 | int flags) |
| 3664 | { |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3665 | struct ext4_ext_path *path = *ppath; |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3666 | ext4_lblk_t eof_block; |
| 3667 | ext4_lblk_t ee_block; |
| 3668 | struct ext4_extent *ex; |
| 3669 | unsigned int ee_len; |
| 3670 | int split_flag = 0, depth; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3671 | |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 3672 | ext_debug("%s: inode %lu, logical block %llu, max_blocks %u\n", |
| 3673 | __func__, inode->i_ino, |
| 3674 | (unsigned long long)map->m_lblk, map->m_len); |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3675 | |
| 3676 | eof_block = (inode->i_size + inode->i_sb->s_blocksize - 1) >> |
| 3677 | inode->i_sb->s_blocksize_bits; |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 3678 | if (eof_block < map->m_lblk + map->m_len) |
| 3679 | eof_block = map->m_lblk + map->m_len; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3680 | /* |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3681 | * It is safe to convert extent to initialized via explicit |
| 3682 | * zeroout only if extent is fully insde i_size or new_size. |
| 3683 | */ |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3684 | depth = ext_depth(inode); |
| 3685 | ex = path[depth].p_ext; |
| 3686 | ee_block = le32_to_cpu(ex->ee_block); |
| 3687 | ee_len = ext4_ext_get_actual_len(ex); |
Dmitry Monakhov | 21ca087 | 2010-05-16 06:00:00 -0400 | [diff] [blame] | 3688 | |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 3689 | /* Convert to unwritten */ |
| 3690 | if (flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN) { |
| 3691 | split_flag |= EXT4_EXT_DATA_VALID1; |
| 3692 | /* Convert to initialized */ |
| 3693 | } else if (flags & EXT4_GET_BLOCKS_CONVERT) { |
| 3694 | split_flag |= ee_block + ee_len <= eof_block ? |
| 3695 | EXT4_EXT_MAY_ZEROOUT : 0; |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3696 | split_flag |= (EXT4_EXT_MARK_UNWRIT2 | EXT4_EXT_DATA_VALID2); |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 3697 | } |
Yongqiang Yang | 667eff3 | 2011-05-03 12:25:07 -0400 | [diff] [blame] | 3698 | flags |= EXT4_GET_BLOCKS_PRE_IO; |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3699 | return ext4_split_extent(handle, inode, ppath, map, split_flag, flags); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3700 | } |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 3701 | |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 3702 | static int ext4_convert_unwritten_extents_endio(handle_t *handle, |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3703 | struct inode *inode, |
| 3704 | struct ext4_map_blocks *map, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3705 | struct ext4_ext_path **ppath) |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3706 | { |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3707 | struct ext4_ext_path *path = *ppath; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3708 | struct ext4_extent *ex; |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3709 | ext4_lblk_t ee_block; |
| 3710 | unsigned int ee_len; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3711 | int depth; |
| 3712 | int err = 0; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3713 | |
| 3714 | depth = ext_depth(inode); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3715 | ex = path[depth].p_ext; |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3716 | ee_block = le32_to_cpu(ex->ee_block); |
| 3717 | ee_len = ext4_ext_get_actual_len(ex); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3718 | |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 3719 | ext_debug("ext4_convert_unwritten_extents_endio: inode %lu, logical" |
| 3720 | "block %llu, max_blocks %u\n", inode->i_ino, |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3721 | (unsigned long long)ee_block, ee_len); |
| 3722 | |
Dmitry Monakhov | ff95ec2 | 2013-03-04 00:41:05 -0500 | [diff] [blame] | 3723 | /* If extent is larger than requested it is a clear sign that we still |
| 3724 | * have some extent state machine issues left. So extent_split is still |
| 3725 | * required. |
| 3726 | * TODO: Once all related issues will be fixed this situation should be |
| 3727 | * illegal. |
| 3728 | */ |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3729 | if (ee_block != map->m_lblk || ee_len > map->m_len) { |
Dmitry Monakhov | ff95ec2 | 2013-03-04 00:41:05 -0500 | [diff] [blame] | 3730 | #ifdef EXT4_DEBUG |
| 3731 | ext4_warning("Inode (%ld) finished: extent logical block %llu," |
| 3732 | " len %u; IO logical block %llu, len %u\n", |
| 3733 | inode->i_ino, (unsigned long long)ee_block, ee_len, |
| 3734 | (unsigned long long)map->m_lblk, map->m_len); |
| 3735 | #endif |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3736 | err = ext4_split_convert_extents(handle, inode, map, ppath, |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 3737 | EXT4_GET_BLOCKS_CONVERT); |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3738 | if (err < 0) |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3739 | return err; |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 3740 | path = ext4_find_extent(inode, map->m_lblk, ppath, 0); |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3741 | if (IS_ERR(path)) |
| 3742 | return PTR_ERR(path); |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 3743 | depth = ext_depth(inode); |
| 3744 | ex = path[depth].p_ext; |
| 3745 | } |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 3746 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3747 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 3748 | if (err) |
| 3749 | goto out; |
| 3750 | /* first mark the extent as initialized */ |
| 3751 | ext4_ext_mark_initialized(ex); |
| 3752 | |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 3753 | /* note: ext4_ext_correct_indexes() isn't needed here because |
| 3754 | * borders are not changed |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3755 | */ |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 3756 | ext4_ext_try_to_merge(handle, inode, path, ex); |
Yongqiang Yang | 197217a | 2011-05-03 11:45:29 -0400 | [diff] [blame] | 3757 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3758 | /* Mark modified extent as dirty */ |
Theodore Ts'o | ecb94f5 | 2012-08-17 09:44:17 -0400 | [diff] [blame] | 3759 | err = ext4_ext_dirty(handle, inode, path + path->p_depth); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3760 | out: |
| 3761 | ext4_ext_show_leaf(inode, path); |
| 3762 | return err; |
| 3763 | } |
| 3764 | |
Aneesh Kumar K.V | 515f41c | 2009-12-29 23:39:06 -0500 | [diff] [blame] | 3765 | static void unmap_underlying_metadata_blocks(struct block_device *bdev, |
| 3766 | sector_t block, int count) |
| 3767 | { |
| 3768 | int i; |
| 3769 | for (i = 0; i < count; i++) |
| 3770 | unmap_underlying_metadata(bdev, block + i); |
| 3771 | } |
| 3772 | |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3773 | /* |
| 3774 | * Handle EOFBLOCKS_FL flag, clearing it if necessary |
| 3775 | */ |
| 3776 | static int check_eofblocks_fl(handle_t *handle, struct inode *inode, |
Eric Sandeen | d002ebf | 2011-01-10 13:03:35 -0500 | [diff] [blame] | 3777 | ext4_lblk_t lblk, |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3778 | struct ext4_ext_path *path, |
| 3779 | unsigned int len) |
| 3780 | { |
| 3781 | int i, depth; |
| 3782 | struct ext4_extent_header *eh; |
Sergey Senozhatsky | 65922cb | 2011-03-23 14:08:27 -0400 | [diff] [blame] | 3783 | struct ext4_extent *last_ex; |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3784 | |
| 3785 | if (!ext4_test_inode_flag(inode, EXT4_INODE_EOFBLOCKS)) |
| 3786 | return 0; |
| 3787 | |
| 3788 | depth = ext_depth(inode); |
| 3789 | eh = path[depth].p_hdr; |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3790 | |
Lukas Czerner | afcff5d | 2012-03-21 21:47:55 -0400 | [diff] [blame] | 3791 | /* |
| 3792 | * We're going to remove EOFBLOCKS_FL entirely in future so we |
| 3793 | * do not care for this case anymore. Simply remove the flag |
| 3794 | * if there are no extents. |
| 3795 | */ |
| 3796 | if (unlikely(!eh->eh_entries)) |
| 3797 | goto out; |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3798 | last_ex = EXT_LAST_EXTENT(eh); |
| 3799 | /* |
| 3800 | * We should clear the EOFBLOCKS_FL flag if we are writing the |
| 3801 | * last block in the last extent in the file. We test this by |
| 3802 | * first checking to see if the caller to |
| 3803 | * ext4_ext_get_blocks() was interested in the last block (or |
| 3804 | * a block beyond the last block) in the current extent. If |
| 3805 | * this turns out to be false, we can bail out from this |
| 3806 | * function immediately. |
| 3807 | */ |
Eric Sandeen | d002ebf | 2011-01-10 13:03:35 -0500 | [diff] [blame] | 3808 | if (lblk + len < le32_to_cpu(last_ex->ee_block) + |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3809 | ext4_ext_get_actual_len(last_ex)) |
| 3810 | return 0; |
| 3811 | /* |
| 3812 | * If the caller does appear to be planning to write at or |
| 3813 | * beyond the end of the current extent, we then test to see |
| 3814 | * if the current extent is the last extent in the file, by |
| 3815 | * checking to make sure it was reached via the rightmost node |
| 3816 | * at each level of the tree. |
| 3817 | */ |
| 3818 | for (i = depth-1; i >= 0; i--) |
| 3819 | if (path[i].p_idx != EXT_LAST_INDEX(path[i].p_hdr)) |
| 3820 | return 0; |
Lukas Czerner | afcff5d | 2012-03-21 21:47:55 -0400 | [diff] [blame] | 3821 | out: |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 3822 | ext4_clear_inode_flag(inode, EXT4_INODE_EOFBLOCKS); |
| 3823 | return ext4_mark_inode_dirty(handle, inode); |
| 3824 | } |
| 3825 | |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3826 | /** |
| 3827 | * ext4_find_delalloc_range: find delayed allocated block in the given range. |
| 3828 | * |
Zheng Liu | 7d1b1fb | 2012-11-08 21:57:35 -0500 | [diff] [blame] | 3829 | * 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] | 3830 | */ |
Zheng Liu | f7fec03 | 2013-02-18 00:28:47 -0500 | [diff] [blame] | 3831 | int ext4_find_delalloc_range(struct inode *inode, |
| 3832 | ext4_lblk_t lblk_start, |
| 3833 | ext4_lblk_t lblk_end) |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3834 | { |
Zheng Liu | 7d1b1fb | 2012-11-08 21:57:35 -0500 | [diff] [blame] | 3835 | struct extent_status es; |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3836 | |
Yan, Zheng | e30b5dc | 2013-05-03 02:15:52 -0400 | [diff] [blame] | 3837 | ext4_es_find_delayed_extent_range(inode, lblk_start, lblk_end, &es); |
Zheng Liu | 06b0c88 | 2013-02-18 00:26:51 -0500 | [diff] [blame] | 3838 | if (es.es_len == 0) |
Zheng Liu | 7d1b1fb | 2012-11-08 21:57:35 -0500 | [diff] [blame] | 3839 | return 0; /* there is no delay extent in this tree */ |
Zheng Liu | 06b0c88 | 2013-02-18 00:26:51 -0500 | [diff] [blame] | 3840 | else if (es.es_lblk <= lblk_start && |
| 3841 | lblk_start < es.es_lblk + es.es_len) |
Zheng Liu | 7d1b1fb | 2012-11-08 21:57:35 -0500 | [diff] [blame] | 3842 | return 1; |
Zheng Liu | 06b0c88 | 2013-02-18 00:26:51 -0500 | [diff] [blame] | 3843 | else if (lblk_start <= es.es_lblk && es.es_lblk <= lblk_end) |
Zheng Liu | 7d1b1fb | 2012-11-08 21:57:35 -0500 | [diff] [blame] | 3844 | return 1; |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3845 | else |
Zheng Liu | 7d1b1fb | 2012-11-08 21:57:35 -0500 | [diff] [blame] | 3846 | return 0; |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3847 | } |
| 3848 | |
Zheng Liu | 7d1b1fb | 2012-11-08 21:57:35 -0500 | [diff] [blame] | 3849 | int ext4_find_delalloc_cluster(struct inode *inode, ext4_lblk_t lblk) |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3850 | { |
| 3851 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
| 3852 | ext4_lblk_t lblk_start, lblk_end; |
Theodore Ts'o | f5a44db | 2013-12-20 09:29:35 -0500 | [diff] [blame] | 3853 | lblk_start = EXT4_LBLK_CMASK(sbi, lblk); |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3854 | lblk_end = lblk_start + sbi->s_cluster_ratio - 1; |
| 3855 | |
Zheng Liu | 7d1b1fb | 2012-11-08 21:57:35 -0500 | [diff] [blame] | 3856 | return ext4_find_delalloc_range(inode, lblk_start, lblk_end); |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3857 | } |
| 3858 | |
| 3859 | /** |
| 3860 | * Determines how many complete clusters (out of those specified by the 'map') |
| 3861 | * are under delalloc and were reserved quota for. |
| 3862 | * This function is called when we are writing out the blocks that were |
| 3863 | * originally written with their allocation delayed, but then the space was |
| 3864 | * allocated using fallocate() before the delayed allocation could be resolved. |
| 3865 | * The cases to look for are: |
| 3866 | * ('=' indicated delayed allocated blocks |
| 3867 | * '-' indicates non-delayed allocated blocks) |
| 3868 | * (a) partial clusters towards beginning and/or end outside of allocated range |
| 3869 | * are not delalloc'ed. |
| 3870 | * Ex: |
| 3871 | * |----c---=|====c====|====c====|===-c----| |
| 3872 | * |++++++ allocated ++++++| |
| 3873 | * ==> 4 complete clusters in above example |
| 3874 | * |
| 3875 | * (b) partial cluster (outside of allocated range) towards either end is |
| 3876 | * marked for delayed allocation. In this case, we will exclude that |
| 3877 | * cluster. |
| 3878 | * Ex: |
| 3879 | * |----====c========|========c========| |
| 3880 | * |++++++ allocated ++++++| |
| 3881 | * ==> 1 complete clusters in above example |
| 3882 | * |
| 3883 | * Ex: |
| 3884 | * |================c================| |
| 3885 | * |++++++ allocated ++++++| |
| 3886 | * ==> 0 complete clusters in above example |
| 3887 | * |
| 3888 | * The ext4_da_update_reserve_space will be called only if we |
| 3889 | * determine here that there were some "entire" clusters that span |
| 3890 | * this 'allocated' range. |
| 3891 | * In the non-bigalloc case, this function will just end up returning num_blks |
| 3892 | * without ever calling ext4_find_delalloc_range. |
| 3893 | */ |
| 3894 | static unsigned int |
| 3895 | get_reserved_cluster_alloc(struct inode *inode, ext4_lblk_t lblk_start, |
| 3896 | unsigned int num_blks) |
| 3897 | { |
| 3898 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
| 3899 | ext4_lblk_t alloc_cluster_start, alloc_cluster_end; |
| 3900 | ext4_lblk_t lblk_from, lblk_to, c_offset; |
| 3901 | unsigned int allocated_clusters = 0; |
| 3902 | |
| 3903 | alloc_cluster_start = EXT4_B2C(sbi, lblk_start); |
| 3904 | alloc_cluster_end = EXT4_B2C(sbi, lblk_start + num_blks - 1); |
| 3905 | |
| 3906 | /* max possible clusters for this allocation */ |
| 3907 | allocated_clusters = alloc_cluster_end - alloc_cluster_start + 1; |
| 3908 | |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 3909 | trace_ext4_get_reserved_cluster_alloc(inode, lblk_start, num_blks); |
| 3910 | |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3911 | /* Check towards left side */ |
Theodore Ts'o | f5a44db | 2013-12-20 09:29:35 -0500 | [diff] [blame] | 3912 | c_offset = EXT4_LBLK_COFF(sbi, lblk_start); |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3913 | if (c_offset) { |
Theodore Ts'o | f5a44db | 2013-12-20 09:29:35 -0500 | [diff] [blame] | 3914 | lblk_from = EXT4_LBLK_CMASK(sbi, lblk_start); |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3915 | lblk_to = lblk_from + c_offset - 1; |
| 3916 | |
Zheng Liu | 7d1b1fb | 2012-11-08 21:57:35 -0500 | [diff] [blame] | 3917 | if (ext4_find_delalloc_range(inode, lblk_from, lblk_to)) |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3918 | allocated_clusters--; |
| 3919 | } |
| 3920 | |
| 3921 | /* Now check towards right. */ |
Theodore Ts'o | f5a44db | 2013-12-20 09:29:35 -0500 | [diff] [blame] | 3922 | c_offset = EXT4_LBLK_COFF(sbi, lblk_start + num_blks); |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3923 | if (allocated_clusters && c_offset) { |
| 3924 | lblk_from = lblk_start + num_blks; |
| 3925 | lblk_to = lblk_from + (sbi->s_cluster_ratio - c_offset) - 1; |
| 3926 | |
Zheng Liu | 7d1b1fb | 2012-11-08 21:57:35 -0500 | [diff] [blame] | 3927 | if (ext4_find_delalloc_range(inode, lblk_from, lblk_to)) |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 3928 | allocated_clusters--; |
| 3929 | } |
| 3930 | |
| 3931 | return allocated_clusters; |
| 3932 | } |
| 3933 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 3934 | static int |
Theodore Ts'o | e8b83d93 | 2014-09-01 14:35:09 -0400 | [diff] [blame] | 3935 | convert_initialized_extent(handle_t *handle, struct inode *inode, |
| 3936 | struct ext4_map_blocks *map, |
Theodore Ts'o | 4f224b8 | 2014-09-01 14:36:09 -0400 | [diff] [blame] | 3937 | struct ext4_ext_path **ppath, int flags, |
Theodore Ts'o | e8b83d93 | 2014-09-01 14:35:09 -0400 | [diff] [blame] | 3938 | unsigned int allocated, ext4_fsblk_t newblock) |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 3939 | { |
Theodore Ts'o | 4f224b8 | 2014-09-01 14:36:09 -0400 | [diff] [blame] | 3940 | struct ext4_ext_path *path = *ppath; |
Theodore Ts'o | e8b83d93 | 2014-09-01 14:35:09 -0400 | [diff] [blame] | 3941 | struct ext4_extent *ex; |
| 3942 | ext4_lblk_t ee_block; |
| 3943 | unsigned int ee_len; |
| 3944 | int depth; |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 3945 | int err = 0; |
| 3946 | |
| 3947 | /* |
| 3948 | * Make sure that the extent is no bigger than we support with |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3949 | * unwritten extent |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 3950 | */ |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 3951 | if (map->m_len > EXT_UNWRITTEN_MAX_LEN) |
| 3952 | map->m_len = EXT_UNWRITTEN_MAX_LEN / 2; |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 3953 | |
Theodore Ts'o | e8b83d93 | 2014-09-01 14:35:09 -0400 | [diff] [blame] | 3954 | depth = ext_depth(inode); |
| 3955 | ex = path[depth].p_ext; |
| 3956 | ee_block = le32_to_cpu(ex->ee_block); |
| 3957 | ee_len = ext4_ext_get_actual_len(ex); |
| 3958 | |
| 3959 | ext_debug("%s: inode %lu, logical" |
| 3960 | "block %llu, max_blocks %u\n", __func__, inode->i_ino, |
| 3961 | (unsigned long long)ee_block, ee_len); |
| 3962 | |
| 3963 | if (ee_block != map->m_lblk || ee_len > map->m_len) { |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 3964 | err = ext4_split_convert_extents(handle, inode, map, ppath, |
Theodore Ts'o | e8b83d93 | 2014-09-01 14:35:09 -0400 | [diff] [blame] | 3965 | EXT4_GET_BLOCKS_CONVERT_UNWRITTEN); |
| 3966 | if (err < 0) |
| 3967 | return err; |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 3968 | path = ext4_find_extent(inode, map->m_lblk, ppath, 0); |
Theodore Ts'o | e8b83d93 | 2014-09-01 14:35:09 -0400 | [diff] [blame] | 3969 | if (IS_ERR(path)) |
| 3970 | return PTR_ERR(path); |
| 3971 | depth = ext_depth(inode); |
| 3972 | ex = path[depth].p_ext; |
| 3973 | if (!ex) { |
| 3974 | EXT4_ERROR_INODE(inode, "unexpected hole at %lu", |
| 3975 | (unsigned long) map->m_lblk); |
| 3976 | return -EIO; |
| 3977 | } |
| 3978 | } |
| 3979 | |
| 3980 | err = ext4_ext_get_access(handle, inode, path + depth); |
| 3981 | if (err) |
| 3982 | return err; |
| 3983 | /* first mark the extent as unwritten */ |
| 3984 | ext4_ext_mark_unwritten(ex); |
| 3985 | |
| 3986 | /* note: ext4_ext_correct_indexes() isn't needed here because |
| 3987 | * borders are not changed |
| 3988 | */ |
| 3989 | ext4_ext_try_to_merge(handle, inode, path, ex); |
| 3990 | |
| 3991 | /* Mark modified extent as dirty */ |
| 3992 | err = ext4_ext_dirty(handle, inode, path + path->p_depth); |
| 3993 | if (err) |
| 3994 | return err; |
| 3995 | ext4_ext_show_leaf(inode, path); |
| 3996 | |
| 3997 | ext4_update_inode_fsync_trans(handle, inode, 1); |
| 3998 | err = check_eofblocks_fl(handle, inode, map->m_lblk, path, map->m_len); |
| 3999 | if (err) |
| 4000 | return err; |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4001 | map->m_flags |= EXT4_MAP_UNWRITTEN; |
| 4002 | if (allocated > map->m_len) |
| 4003 | allocated = map->m_len; |
| 4004 | map->m_len = allocated; |
Theodore Ts'o | e8b83d93 | 2014-09-01 14:35:09 -0400 | [diff] [blame] | 4005 | return allocated; |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4006 | } |
| 4007 | |
| 4008 | static int |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4009 | ext4_ext_handle_unwritten_extents(handle_t *handle, struct inode *inode, |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4010 | struct ext4_map_blocks *map, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 4011 | struct ext4_ext_path **ppath, int flags, |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4012 | unsigned int allocated, ext4_fsblk_t newblock) |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4013 | { |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 4014 | struct ext4_ext_path *path = *ppath; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4015 | int ret = 0; |
| 4016 | int err = 0; |
Dmitry Monakhov | f45ee3a | 2012-09-28 23:21:09 -0400 | [diff] [blame] | 4017 | ext4_io_end_t *io = ext4_inode_aio(inode); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4018 | |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4019 | ext_debug("ext4_ext_handle_unwritten_extents: inode %lu, logical " |
Zheng Liu | 88635ca | 2011-12-28 19:00:25 -0500 | [diff] [blame] | 4020 | "block %llu, max_blocks %u, flags %x, allocated %u\n", |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4021 | inode->i_ino, (unsigned long long)map->m_lblk, map->m_len, |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4022 | flags, allocated); |
| 4023 | ext4_ext_show_leaf(inode, path); |
| 4024 | |
Lukas Czerner | 27dd438 | 2013-04-09 22:11:22 -0400 | [diff] [blame] | 4025 | /* |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4026 | * When writing into unwritten space, we should not fail to |
Lukas Czerner | 27dd438 | 2013-04-09 22:11:22 -0400 | [diff] [blame] | 4027 | * allocate metadata blocks for the new extent block if needed. |
| 4028 | */ |
| 4029 | flags |= EXT4_GET_BLOCKS_METADATA_NOFAIL; |
| 4030 | |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4031 | trace_ext4_ext_handle_unwritten_extents(inode, map, flags, |
Zheng Liu | b564553 | 2012-11-08 14:33:43 -0500 | [diff] [blame] | 4032 | allocated, newblock); |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 4033 | |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 4034 | /* get_block() before submit the IO, split the extent */ |
Lukas Czerner | c8b459f | 2014-05-12 12:55:07 -0400 | [diff] [blame] | 4035 | if (flags & EXT4_GET_BLOCKS_PRE_IO) { |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 4036 | ret = ext4_split_convert_extents(handle, inode, map, ppath, |
| 4037 | flags | EXT4_GET_BLOCKS_CONVERT); |
Dmitry Monakhov | 82e5422 | 2012-09-28 23:36:25 -0400 | [diff] [blame] | 4038 | if (ret <= 0) |
| 4039 | goto out; |
Mingming | 5f52495 | 2009-11-10 10:48:04 -0500 | [diff] [blame] | 4040 | /* |
| 4041 | * 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] | 4042 | * that this IO needs to conversion to written when IO is |
Mingming | 5f52495 | 2009-11-10 10:48:04 -0500 | [diff] [blame] | 4043 | * completed |
| 4044 | */ |
Tao Ma | 0edeb71 | 2011-10-31 17:30:44 -0400 | [diff] [blame] | 4045 | if (io) |
| 4046 | ext4_set_io_unwritten_flag(inode, io); |
| 4047 | else |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 4048 | ext4_set_inode_state(inode, EXT4_STATE_DIO_UNWRITTEN); |
Zheng Liu | a25a4e1 | 2013-02-18 00:28:04 -0500 | [diff] [blame] | 4049 | map->m_flags |= EXT4_MAP_UNWRITTEN; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4050 | goto out; |
| 4051 | } |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 4052 | /* IO end_io complete, convert the filled extent to written */ |
Lukas Czerner | c8b459f | 2014-05-12 12:55:07 -0400 | [diff] [blame] | 4053 | if (flags & EXT4_GET_BLOCKS_CONVERT) { |
Dmitry Monakhov | dee1f97 | 2012-10-10 01:04:58 -0400 | [diff] [blame] | 4054 | ret = ext4_convert_unwritten_extents_endio(handle, inode, map, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 4055 | ppath); |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 4056 | if (ret >= 0) { |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 4057 | ext4_update_inode_fsync_trans(handle, inode, 1); |
Eric Sandeen | d002ebf | 2011-01-10 13:03:35 -0500 | [diff] [blame] | 4058 | err = check_eofblocks_fl(handle, inode, map->m_lblk, |
| 4059 | path, map->m_len); |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 4060 | } else |
| 4061 | err = ret; |
Zheng Liu | cdee784 | 2013-03-10 21:08:52 -0400 | [diff] [blame] | 4062 | map->m_flags |= EXT4_MAP_MAPPED; |
Eric Whitney | 15cc176 | 2014-02-12 10:42:45 -0500 | [diff] [blame] | 4063 | map->m_pblk = newblock; |
Zheng Liu | cdee784 | 2013-03-10 21:08:52 -0400 | [diff] [blame] | 4064 | if (allocated > map->m_len) |
| 4065 | allocated = map->m_len; |
| 4066 | map->m_len = allocated; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4067 | goto out2; |
| 4068 | } |
| 4069 | /* buffered IO case */ |
| 4070 | /* |
| 4071 | * repeat fallocate creation request |
| 4072 | * we already have an unwritten extent |
| 4073 | */ |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4074 | if (flags & EXT4_GET_BLOCKS_UNWRIT_EXT) { |
Zheng Liu | a25a4e1 | 2013-02-18 00:28:04 -0500 | [diff] [blame] | 4075 | map->m_flags |= EXT4_MAP_UNWRITTEN; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4076 | goto map_out; |
Zheng Liu | a25a4e1 | 2013-02-18 00:28:04 -0500 | [diff] [blame] | 4077 | } |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4078 | |
| 4079 | /* buffered READ or buffered write_begin() lookup */ |
| 4080 | if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) { |
| 4081 | /* |
| 4082 | * We have blocks reserved already. We |
| 4083 | * return allocated blocks so that delalloc |
| 4084 | * won't do block reservation for us. But |
| 4085 | * the buffer head will be unmapped so that |
| 4086 | * a read from the block returns 0s. |
| 4087 | */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4088 | map->m_flags |= EXT4_MAP_UNWRITTEN; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4089 | goto out1; |
| 4090 | } |
| 4091 | |
| 4092 | /* buffered write, writepage time, convert*/ |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 4093 | ret = ext4_ext_convert_to_initialized(handle, inode, map, ppath, flags); |
Dmitry Monakhov | a4e5d88 | 2011-10-25 08:15:12 -0400 | [diff] [blame] | 4094 | if (ret >= 0) |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 4095 | ext4_update_inode_fsync_trans(handle, inode, 1); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4096 | out: |
| 4097 | if (ret <= 0) { |
| 4098 | err = ret; |
| 4099 | goto out2; |
| 4100 | } else |
| 4101 | allocated = ret; |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4102 | map->m_flags |= EXT4_MAP_NEW; |
Aneesh Kumar K.V | 515f41c | 2009-12-29 23:39:06 -0500 | [diff] [blame] | 4103 | /* |
| 4104 | * if we allocated more blocks than requested |
| 4105 | * we need to make sure we unmap the extra block |
| 4106 | * allocated. The actual needed block will get |
| 4107 | * unmapped later when we find the buffer_head marked |
| 4108 | * new. |
| 4109 | */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4110 | if (allocated > map->m_len) { |
Aneesh Kumar K.V | 515f41c | 2009-12-29 23:39:06 -0500 | [diff] [blame] | 4111 | unmap_underlying_metadata_blocks(inode->i_sb->s_bdev, |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4112 | newblock + map->m_len, |
| 4113 | allocated - map->m_len); |
| 4114 | allocated = map->m_len; |
Aneesh Kumar K.V | 515f41c | 2009-12-29 23:39:06 -0500 | [diff] [blame] | 4115 | } |
Zheng Liu | 3a22567 | 2013-03-10 21:20:23 -0400 | [diff] [blame] | 4116 | map->m_len = allocated; |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 4117 | |
| 4118 | /* |
| 4119 | * If we have done fallocate with the offset that is already |
| 4120 | * delayed allocated, we would have block reservation |
| 4121 | * and quota reservation done in the delayed write path. |
| 4122 | * But fallocate would have already updated quota and block |
| 4123 | * count for this offset. So cancel these reservation |
| 4124 | */ |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 4125 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) { |
| 4126 | unsigned int reserved_clusters; |
| 4127 | reserved_clusters = get_reserved_cluster_alloc(inode, |
| 4128 | map->m_lblk, map->m_len); |
| 4129 | if (reserved_clusters) |
| 4130 | ext4_da_update_reserve_space(inode, |
| 4131 | reserved_clusters, |
| 4132 | 0); |
| 4133 | } |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 4134 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4135 | map_out: |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4136 | map->m_flags |= EXT4_MAP_MAPPED; |
Dmitry Monakhov | a4e5d88 | 2011-10-25 08:15:12 -0400 | [diff] [blame] | 4137 | if ((flags & EXT4_GET_BLOCKS_KEEP_SIZE) == 0) { |
| 4138 | err = check_eofblocks_fl(handle, inode, map->m_lblk, path, |
| 4139 | map->m_len); |
| 4140 | if (err < 0) |
| 4141 | goto out2; |
| 4142 | } |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4143 | out1: |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4144 | if (allocated > map->m_len) |
| 4145 | allocated = map->m_len; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4146 | ext4_ext_show_leaf(inode, path); |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4147 | map->m_pblk = newblock; |
| 4148 | map->m_len = allocated; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4149 | out2: |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4150 | return err ? err : allocated; |
| 4151 | } |
Theodore Ts'o | 58590b0 | 2010-10-27 21:23:12 -0400 | [diff] [blame] | 4152 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 4153 | /* |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4154 | * get_implied_cluster_alloc - check to see if the requested |
| 4155 | * allocation (in the map structure) overlaps with a cluster already |
| 4156 | * allocated in an extent. |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 4157 | * @sb The filesystem superblock structure |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4158 | * @map The requested lblk->pblk mapping |
| 4159 | * @ex The extent structure which might contain an implied |
| 4160 | * cluster allocation |
| 4161 | * |
| 4162 | * This function is called by ext4_ext_map_blocks() after we failed to |
| 4163 | * find blocks that were already in the inode's extent tree. Hence, |
| 4164 | * we know that the beginning of the requested region cannot overlap |
| 4165 | * the extent from the inode's extent tree. There are three cases we |
| 4166 | * want to catch. The first is this case: |
| 4167 | * |
| 4168 | * |--- cluster # N--| |
| 4169 | * |--- extent ---| |---- requested region ---| |
| 4170 | * |==========| |
| 4171 | * |
| 4172 | * The second case that we need to test for is this one: |
| 4173 | * |
| 4174 | * |--------- cluster # N ----------------| |
| 4175 | * |--- requested region --| |------- extent ----| |
| 4176 | * |=======================| |
| 4177 | * |
| 4178 | * The third case is when the requested region lies between two extents |
| 4179 | * within the same cluster: |
| 4180 | * |------------- cluster # N-------------| |
| 4181 | * |----- ex -----| |---- ex_right ----| |
| 4182 | * |------ requested region ------| |
| 4183 | * |================| |
| 4184 | * |
| 4185 | * In each of the above cases, we need to set the map->m_pblk and |
| 4186 | * map->m_len so it corresponds to the return the extent labelled as |
| 4187 | * "|====|" from cluster #N, since it is already in use for data in |
| 4188 | * cluster EXT4_B2C(sbi, map->m_lblk). We will then return 1 to |
| 4189 | * signal to ext4_ext_map_blocks() that map->m_pblk should be treated |
| 4190 | * as a new "allocated" block region. Otherwise, we will return 0 and |
| 4191 | * ext4_ext_map_blocks() will then allocate one or more new clusters |
| 4192 | * by calling ext4_mb_new_blocks(). |
| 4193 | */ |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 4194 | static int get_implied_cluster_alloc(struct super_block *sb, |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4195 | struct ext4_map_blocks *map, |
| 4196 | struct ext4_extent *ex, |
| 4197 | struct ext4_ext_path *path) |
| 4198 | { |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 4199 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
Theodore Ts'o | f5a44db | 2013-12-20 09:29:35 -0500 | [diff] [blame] | 4200 | ext4_lblk_t c_offset = EXT4_LBLK_COFF(sbi, map->m_lblk); |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4201 | ext4_lblk_t ex_cluster_start, ex_cluster_end; |
Curt Wohlgemuth | 14d7f3e | 2011-12-18 17:39:02 -0500 | [diff] [blame] | 4202 | ext4_lblk_t rr_cluster_start; |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4203 | ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block); |
| 4204 | ext4_fsblk_t ee_start = ext4_ext_pblock(ex); |
| 4205 | unsigned short ee_len = ext4_ext_get_actual_len(ex); |
| 4206 | |
| 4207 | /* The extent passed in that we are trying to match */ |
| 4208 | ex_cluster_start = EXT4_B2C(sbi, ee_block); |
| 4209 | ex_cluster_end = EXT4_B2C(sbi, ee_block + ee_len - 1); |
| 4210 | |
| 4211 | /* The requested region passed into ext4_map_blocks() */ |
| 4212 | rr_cluster_start = EXT4_B2C(sbi, map->m_lblk); |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4213 | |
| 4214 | if ((rr_cluster_start == ex_cluster_end) || |
| 4215 | (rr_cluster_start == ex_cluster_start)) { |
| 4216 | if (rr_cluster_start == ex_cluster_end) |
| 4217 | ee_start += ee_len - 1; |
Theodore Ts'o | f5a44db | 2013-12-20 09:29:35 -0500 | [diff] [blame] | 4218 | map->m_pblk = EXT4_PBLK_CMASK(sbi, ee_start) + c_offset; |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4219 | map->m_len = min(map->m_len, |
| 4220 | (unsigned) sbi->s_cluster_ratio - c_offset); |
| 4221 | /* |
| 4222 | * Check for and handle this case: |
| 4223 | * |
| 4224 | * |--------- cluster # N-------------| |
| 4225 | * |------- extent ----| |
| 4226 | * |--- requested region ---| |
| 4227 | * |===========| |
| 4228 | */ |
| 4229 | |
| 4230 | if (map->m_lblk < ee_block) |
| 4231 | map->m_len = min(map->m_len, ee_block - map->m_lblk); |
| 4232 | |
| 4233 | /* |
| 4234 | * Check for the case where there is already another allocated |
| 4235 | * block to the right of 'ex' but before the end of the cluster. |
| 4236 | * |
| 4237 | * |------------- cluster # N-------------| |
| 4238 | * |----- ex -----| |---- ex_right ----| |
| 4239 | * |------ requested region ------| |
| 4240 | * |================| |
| 4241 | */ |
| 4242 | if (map->m_lblk > ee_block) { |
| 4243 | ext4_lblk_t next = ext4_ext_next_allocated_block(path); |
| 4244 | map->m_len = min(map->m_len, next - map->m_lblk); |
| 4245 | } |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 4246 | |
| 4247 | trace_ext4_get_implied_cluster_alloc_exit(sb, map, 1); |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4248 | return 1; |
| 4249 | } |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 4250 | |
| 4251 | trace_ext4_get_implied_cluster_alloc_exit(sb, map, 0); |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4252 | return 0; |
| 4253 | } |
| 4254 | |
| 4255 | |
| 4256 | /* |
Mingming Cao | f5ab0d1 | 2008-02-25 15:29:55 -0500 | [diff] [blame] | 4257 | * Block allocation/map/preallocation routine for extents based files |
| 4258 | * |
| 4259 | * |
Aneesh Kumar K.V | c278bfe | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4260 | * Need to be called with |
Aneesh Kumar K.V | 0e855ac | 2008-01-28 23:58:26 -0500 | [diff] [blame] | 4261 | * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system block |
| 4262 | * (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] | 4263 | * |
| 4264 | * return > 0, number of of blocks already mapped/allocated |
| 4265 | * if create == 0 and these are pre-allocated blocks |
| 4266 | * buffer head is unmapped |
| 4267 | * otherwise blocks are mapped |
| 4268 | * |
| 4269 | * return = 0, if plain look up failed (blocks have not been allocated) |
| 4270 | * buffer head is unmapped |
| 4271 | * |
| 4272 | * return < 0, error case. |
Aneesh Kumar K.V | c278bfe | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4273 | */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4274 | int ext4_ext_map_blocks(handle_t *handle, struct inode *inode, |
| 4275 | struct ext4_map_blocks *map, int flags) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4276 | { |
| 4277 | struct ext4_ext_path *path = NULL; |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4278 | struct ext4_extent newex, *ex, *ex2; |
| 4279 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 4280 | ext4_fsblk_t newblock = 0; |
Eric Whitney | ce37c42 | 2014-02-19 18:52:39 -0500 | [diff] [blame] | 4281 | int free_on_err = 0, err = 0, depth, ret; |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4282 | unsigned int allocated = 0, offset = 0; |
Yongqiang Yang | 81fdbb4 | 2011-10-29 09:23:38 -0400 | [diff] [blame] | 4283 | unsigned int allocated_clusters = 0; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4284 | struct ext4_allocation_request ar; |
Dmitry Monakhov | f45ee3a | 2012-09-28 23:21:09 -0400 | [diff] [blame] | 4285 | ext4_io_end_t *io = ext4_inode_aio(inode); |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4286 | ext4_lblk_t cluster_offset; |
Dmitry Monakhov | 82e5422 | 2012-09-28 23:36:25 -0400 | [diff] [blame] | 4287 | int set_unwritten = 0; |
Jan Kara | cbd7584 | 2014-11-25 11:41:49 -0500 | [diff] [blame] | 4288 | bool map_from_cluster = false; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4289 | |
Mingming | 84fe3be | 2009-09-01 08:44:37 -0400 | [diff] [blame] | 4290 | ext_debug("blocks %u/%u requested for inode %lu\n", |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4291 | map->m_lblk, map->m_len, inode->i_ino); |
Jiaying Zhang | 0562e0b | 2011-03-21 21:38:05 -0400 | [diff] [blame] | 4292 | 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] | 4293 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4294 | /* find extent for this block */ |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 4295 | path = ext4_find_extent(inode, map->m_lblk, NULL, 0); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4296 | if (IS_ERR(path)) { |
| 4297 | err = PTR_ERR(path); |
| 4298 | path = NULL; |
| 4299 | goto out2; |
| 4300 | } |
| 4301 | |
| 4302 | depth = ext_depth(inode); |
| 4303 | |
| 4304 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 4305 | * consistent leaf must not be empty; |
| 4306 | * this situation is possible, though, _during_ tree modification; |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 4307 | * this is why assert can't be put in ext4_find_extent() |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4308 | */ |
Frank Mayhar | 273df55 | 2010-03-02 11:46:09 -0500 | [diff] [blame] | 4309 | if (unlikely(path[depth].p_ext == NULL && depth != 0)) { |
| 4310 | EXT4_ERROR_INODE(inode, "bad extent address " |
Theodore Ts'o | f70f362 | 2010-05-16 23:00:00 -0400 | [diff] [blame] | 4311 | "lblock: %lu, depth: %d pblock %lld", |
| 4312 | (unsigned long) map->m_lblk, depth, |
| 4313 | path[depth].p_block); |
Surbhi Palande | 034fb4c | 2009-12-14 09:53:52 -0500 | [diff] [blame] | 4314 | err = -EIO; |
| 4315 | goto out2; |
| 4316 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4317 | |
Avantika Mathur | 7e02897 | 2006-12-06 20:41:33 -0800 | [diff] [blame] | 4318 | ex = path[depth].p_ext; |
| 4319 | if (ex) { |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4320 | ext4_lblk_t ee_block = le32_to_cpu(ex->ee_block); |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 4321 | ext4_fsblk_t ee_start = ext4_ext_pblock(ex); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 4322 | unsigned short ee_len; |
Suparna Bhattacharya | 471d401 | 2006-10-11 01:21:06 -0700 | [diff] [blame] | 4323 | |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4324 | |
Suparna Bhattacharya | 471d401 | 2006-10-11 01:21:06 -0700 | [diff] [blame] | 4325 | /* |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4326 | * unwritten extents are treated as holes, except that |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 4327 | * we split out initialized portions during a write. |
Suparna Bhattacharya | 471d401 | 2006-10-11 01:21:06 -0700 | [diff] [blame] | 4328 | */ |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 4329 | ee_len = ext4_ext_get_actual_len(ex); |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 4330 | |
| 4331 | trace_ext4_ext_show_extent(inode, ee_block, ee_start, ee_len); |
| 4332 | |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 4333 | /* if found extent covers block, simply return it */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4334 | if (in_range(map->m_lblk, ee_block, ee_len)) { |
| 4335 | newblock = map->m_lblk - ee_block + ee_start; |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 4336 | /* number of remaining blocks in the extent */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4337 | allocated = ee_len - (map->m_lblk - ee_block); |
| 4338 | ext_debug("%u fit into %u:%d -> %llu\n", map->m_lblk, |
| 4339 | ee_block, ee_len, newblock); |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 4340 | |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4341 | /* |
| 4342 | * If the extent is initialized check whether the |
| 4343 | * caller wants to convert it to unwritten. |
| 4344 | */ |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4345 | if ((!ext4_ext_is_unwritten(ex)) && |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4346 | (flags & EXT4_GET_BLOCKS_CONVERT_UNWRITTEN)) { |
Theodore Ts'o | e8b83d93 | 2014-09-01 14:35:09 -0400 | [diff] [blame] | 4347 | allocated = convert_initialized_extent( |
Theodore Ts'o | 4f224b8 | 2014-09-01 14:36:09 -0400 | [diff] [blame] | 4348 | handle, inode, map, &path, |
| 4349 | flags, allocated, newblock); |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4350 | goto out2; |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4351 | } else if (!ext4_ext_is_unwritten(ex)) |
Lukas Czerner | 7877191 | 2012-03-19 23:05:43 -0400 | [diff] [blame] | 4352 | goto out; |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 4353 | |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4354 | ret = ext4_ext_handle_unwritten_extents( |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 4355 | handle, inode, map, &path, flags, |
Lukas Czerner | 7877191 | 2012-03-19 23:05:43 -0400 | [diff] [blame] | 4356 | allocated, newblock); |
Eric Whitney | ce37c42 | 2014-02-19 18:52:39 -0500 | [diff] [blame] | 4357 | if (ret < 0) |
| 4358 | err = ret; |
| 4359 | else |
| 4360 | allocated = ret; |
Eric Whitney | 31cf0f2 | 2014-03-13 23:14:46 -0400 | [diff] [blame] | 4361 | goto out2; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4362 | } |
| 4363 | } |
| 4364 | |
| 4365 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 4366 | * requested block isn't allocated yet; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4367 | * we couldn't try to create block if create flag is zero |
| 4368 | */ |
Theodore Ts'o | c217705 | 2009-05-14 00:58:52 -0400 | [diff] [blame] | 4369 | if ((flags & EXT4_GET_BLOCKS_CREATE) == 0) { |
Amit Arora | 56055d3 | 2007-07-17 21:42:38 -0400 | [diff] [blame] | 4370 | /* |
| 4371 | * put just found gap into cache to speed up |
| 4372 | * subsequent requests |
| 4373 | */ |
Zheng Liu | 2f8e0a7 | 2014-11-25 11:44:37 -0500 | [diff] [blame] | 4374 | ext4_ext_put_gap_in_cache(inode, path, map->m_lblk); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4375 | goto out2; |
| 4376 | } |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4377 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4378 | /* |
Theodore Ts'o | c2ea3fd | 2008-10-10 09:40:52 -0400 | [diff] [blame] | 4379 | * Okay, we need to do block allocation. |
Andrew Morton | 63f5793 | 2006-10-11 01:21:24 -0700 | [diff] [blame] | 4380 | */ |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4381 | newex.ee_block = cpu_to_le32(map->m_lblk); |
Eric Whitney | d0abafa | 2014-01-06 14:00:23 -0500 | [diff] [blame] | 4382 | cluster_offset = EXT4_LBLK_COFF(sbi, map->m_lblk); |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4383 | |
| 4384 | /* |
| 4385 | * If we are doing bigalloc, check to see if the extent returned |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 4386 | * by ext4_find_extent() implies a cluster we can use. |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4387 | */ |
| 4388 | if (cluster_offset && ex && |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 4389 | get_implied_cluster_alloc(inode->i_sb, map, ex, path)) { |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4390 | ar.len = allocated = map->m_len; |
| 4391 | newblock = map->m_pblk; |
Jan Kara | cbd7584 | 2014-11-25 11:41:49 -0500 | [diff] [blame] | 4392 | map_from_cluster = true; |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4393 | goto got_allocated_blocks; |
| 4394 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4395 | |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4396 | /* find neighbour allocated blocks */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4397 | ar.lleft = map->m_lblk; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4398 | err = ext4_ext_search_left(inode, path, &ar.lleft, &ar.pleft); |
| 4399 | if (err) |
| 4400 | goto out2; |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4401 | ar.lright = map->m_lblk; |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4402 | ex2 = NULL; |
| 4403 | err = ext4_ext_search_right(inode, path, &ar.lright, &ar.pright, &ex2); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4404 | if (err) |
| 4405 | goto out2; |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 4406 | |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4407 | /* Check if the extent after searching to the right implies a |
| 4408 | * cluster we can use. */ |
| 4409 | if ((sbi->s_cluster_ratio > 1) && ex2 && |
Aditya Kali | d899024 | 2011-09-09 19:18:51 -0400 | [diff] [blame] | 4410 | get_implied_cluster_alloc(inode->i_sb, map, ex2, path)) { |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4411 | ar.len = allocated = map->m_len; |
| 4412 | newblock = map->m_pblk; |
Jan Kara | cbd7584 | 2014-11-25 11:41:49 -0500 | [diff] [blame] | 4413 | map_from_cluster = true; |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4414 | goto got_allocated_blocks; |
| 4415 | } |
| 4416 | |
Amit Arora | 749269f | 2007-07-18 09:02:56 -0400 | [diff] [blame] | 4417 | /* |
| 4418 | * See if request is beyond maximum number of blocks we can have in |
| 4419 | * a single extent. For an initialized extent this limit is |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4420 | * EXT_INIT_MAX_LEN and for an unwritten extent this limit is |
| 4421 | * EXT_UNWRITTEN_MAX_LEN. |
Amit Arora | 749269f | 2007-07-18 09:02:56 -0400 | [diff] [blame] | 4422 | */ |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4423 | if (map->m_len > EXT_INIT_MAX_LEN && |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4424 | !(flags & EXT4_GET_BLOCKS_UNWRIT_EXT)) |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4425 | map->m_len = EXT_INIT_MAX_LEN; |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4426 | else if (map->m_len > EXT_UNWRITTEN_MAX_LEN && |
| 4427 | (flags & EXT4_GET_BLOCKS_UNWRIT_EXT)) |
| 4428 | map->m_len = EXT_UNWRITTEN_MAX_LEN; |
Amit Arora | 749269f | 2007-07-18 09:02:56 -0400 | [diff] [blame] | 4429 | |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4430 | /* 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] | 4431 | newex.ee_len = cpu_to_le16(map->m_len); |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4432 | err = ext4_ext_check_overlap(sbi, inode, &newex, path); |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 4433 | if (err) |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4434 | allocated = ext4_ext_get_actual_len(&newex); |
Amit Arora | 25d14f9 | 2007-05-24 13:04:13 -0400 | [diff] [blame] | 4435 | else |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4436 | allocated = map->m_len; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4437 | |
| 4438 | /* allocate new block */ |
| 4439 | ar.inode = inode; |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4440 | ar.goal = ext4_ext_find_goal(inode, path, map->m_lblk); |
| 4441 | ar.logical = map->m_lblk; |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4442 | /* |
| 4443 | * We calculate the offset from the beginning of the cluster |
| 4444 | * for the logical block number, since when we allocate a |
| 4445 | * physical cluster, the physical block should start at the |
| 4446 | * same offset from the beginning of the cluster. This is |
| 4447 | * needed so that future calls to get_implied_cluster_alloc() |
| 4448 | * work correctly. |
| 4449 | */ |
Theodore Ts'o | f5a44db | 2013-12-20 09:29:35 -0500 | [diff] [blame] | 4450 | offset = EXT4_LBLK_COFF(sbi, map->m_lblk); |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4451 | ar.len = EXT4_NUM_B2C(sbi, offset+allocated); |
| 4452 | ar.goal -= offset; |
| 4453 | ar.logical -= offset; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4454 | if (S_ISREG(inode->i_mode)) |
| 4455 | ar.flags = EXT4_MB_HINT_DATA; |
| 4456 | else |
| 4457 | /* disable in-core preallocation for non-regular files */ |
| 4458 | ar.flags = 0; |
Vivek Haldar | 556b27a | 2011-05-25 07:41:54 -0400 | [diff] [blame] | 4459 | if (flags & EXT4_GET_BLOCKS_NO_NORMALIZE) |
| 4460 | ar.flags |= EXT4_MB_HINT_NOPREALLOC; |
Theodore Ts'o | e3cf5d5 | 2014-09-04 18:07:25 -0400 | [diff] [blame] | 4461 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) |
| 4462 | ar.flags |= EXT4_MB_DELALLOC_RESERVED; |
Theodore Ts'o | c5e298a | 2015-06-21 01:25:29 -0400 | [diff] [blame] | 4463 | if (flags & EXT4_GET_BLOCKS_METADATA_NOFAIL) |
| 4464 | ar.flags |= EXT4_MB_USE_RESERVED; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4465 | newblock = ext4_mb_new_blocks(handle, &ar, &err); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4466 | if (!newblock) |
| 4467 | goto out2; |
Mingming | 84fe3be | 2009-09-01 08:44:37 -0400 | [diff] [blame] | 4468 | ext_debug("allocate new block: goal %llu, found %llu/%u\n", |
Theodore Ts'o | 498e5f2 | 2008-11-05 00:14:04 -0500 | [diff] [blame] | 4469 | ar.goal, newblock, allocated); |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4470 | free_on_err = 1; |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 4471 | allocated_clusters = ar.len; |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4472 | ar.len = EXT4_C2B(sbi, ar.len) - offset; |
| 4473 | if (ar.len > allocated) |
| 4474 | ar.len = allocated; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4475 | |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4476 | got_allocated_blocks: |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4477 | /* try to insert new extent into found leaf and return */ |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4478 | ext4_ext_store_pblock(&newex, newblock + offset); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4479 | newex.ee_len = cpu_to_le16(ar.len); |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4480 | /* Mark unwritten */ |
| 4481 | if (flags & EXT4_GET_BLOCKS_UNWRIT_EXT){ |
| 4482 | ext4_ext_mark_unwritten(&newex); |
Zheng Liu | a25a4e1 | 2013-02-18 00:28:04 -0500 | [diff] [blame] | 4483 | map->m_flags |= EXT4_MAP_UNWRITTEN; |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 4484 | /* |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 4485 | * io_end structure was created for every IO write to an |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4486 | * unwritten extent. To avoid unnecessary conversion, |
Jiaying Zhang | 744692d | 2010-03-04 16:14:02 -0500 | [diff] [blame] | 4487 | * here we flag the IO that really needs the conversion. |
Mingming | 5f52495 | 2009-11-10 10:48:04 -0500 | [diff] [blame] | 4488 | * For non asycn direct IO case, flag the inode state |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 4489 | * that we need to perform conversion when IO is done. |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 4490 | */ |
Lukas Czerner | c8b459f | 2014-05-12 12:55:07 -0400 | [diff] [blame] | 4491 | if (flags & EXT4_GET_BLOCKS_PRE_IO) |
Dmitry Monakhov | 82e5422 | 2012-09-28 23:36:25 -0400 | [diff] [blame] | 4492 | set_unwritten = 1; |
Mingming Cao | 8d5d02e | 2009-09-28 15:48:29 -0400 | [diff] [blame] | 4493 | } |
Jiaying Zhang | c8d46e4 | 2010-02-24 09:52:53 -0500 | [diff] [blame] | 4494 | |
Dmitry Monakhov | a4e5d88 | 2011-10-25 08:15:12 -0400 | [diff] [blame] | 4495 | err = 0; |
| 4496 | if ((flags & EXT4_GET_BLOCKS_KEEP_SIZE) == 0) |
| 4497 | err = check_eofblocks_fl(handle, inode, map->m_lblk, |
| 4498 | path, ar.len); |
Jiaying Zhang | 575a1d4 | 2011-07-10 20:07:25 -0400 | [diff] [blame] | 4499 | if (!err) |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 4500 | err = ext4_ext_insert_extent(handle, inode, &path, |
Jiaying Zhang | 575a1d4 | 2011-07-10 20:07:25 -0400 | [diff] [blame] | 4501 | &newex, flags); |
Dmitry Monakhov | 82e5422 | 2012-09-28 23:36:25 -0400 | [diff] [blame] | 4502 | |
| 4503 | if (!err && set_unwritten) { |
| 4504 | if (io) |
| 4505 | ext4_set_io_unwritten_flag(inode, io); |
| 4506 | else |
| 4507 | ext4_set_inode_state(inode, |
| 4508 | EXT4_STATE_DIO_UNWRITTEN); |
| 4509 | } |
| 4510 | |
Theodore Ts'o | 4d33b1e | 2011-09-09 18:52:51 -0400 | [diff] [blame] | 4511 | if (err && free_on_err) { |
Maxim Patlasov | 7132de7 | 2011-07-10 19:37:48 -0400 | [diff] [blame] | 4512 | int fb_flags = flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE ? |
| 4513 | EXT4_FREE_BLOCKS_NO_QUOT_UPDATE : 0; |
Alex Tomas | 315054f | 2007-05-24 13:04:25 -0400 | [diff] [blame] | 4514 | /* free data blocks we just allocated */ |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4515 | /* not a good idea to call discard here directly, |
| 4516 | * but otherwise we'd need to call it every free() */ |
Theodore Ts'o | c2ea3fd | 2008-10-10 09:40:52 -0400 | [diff] [blame] | 4517 | ext4_discard_preallocations(inode); |
Theodore Ts'o | c8e1513 | 2013-07-15 00:09:37 -0400 | [diff] [blame] | 4518 | ext4_free_blocks(handle, inode, NULL, newblock, |
| 4519 | EXT4_C2B(sbi, allocated_clusters), fb_flags); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4520 | goto out2; |
Alex Tomas | 315054f | 2007-05-24 13:04:25 -0400 | [diff] [blame] | 4521 | } |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4522 | |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4523 | /* previous routine could use block we allocated */ |
Theodore Ts'o | bf89d16 | 2010-10-27 21:30:14 -0400 | [diff] [blame] | 4524 | newblock = ext4_ext_pblock(&newex); |
Aneesh Kumar K.V | b939e37 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4525 | allocated = ext4_ext_get_actual_len(&newex); |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4526 | if (allocated > map->m_len) |
| 4527 | allocated = map->m_len; |
| 4528 | map->m_flags |= EXT4_MAP_NEW; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4529 | |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 4530 | /* |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 4531 | * Update reserved blocks/metadata blocks after successful |
| 4532 | * block allocation which had been deferred till now. |
| 4533 | */ |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 4534 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) { |
Yongqiang Yang | 81fdbb4 | 2011-10-29 09:23:38 -0400 | [diff] [blame] | 4535 | unsigned int reserved_clusters; |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 4536 | /* |
Yongqiang Yang | 81fdbb4 | 2011-10-29 09:23:38 -0400 | [diff] [blame] | 4537 | * Check how many clusters we had reserved this allocated range |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 4538 | */ |
| 4539 | reserved_clusters = get_reserved_cluster_alloc(inode, |
| 4540 | map->m_lblk, allocated); |
Eric Whitney | 9d21c9f | 2015-04-03 00:17:31 -0400 | [diff] [blame] | 4541 | if (!map_from_cluster) { |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 4542 | BUG_ON(allocated_clusters < reserved_clusters); |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 4543 | if (reserved_clusters < allocated_clusters) { |
Aditya Kali | 5356f261 | 2011-09-09 19:20:51 -0400 | [diff] [blame] | 4544 | struct ext4_inode_info *ei = EXT4_I(inode); |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 4545 | int reservation = allocated_clusters - |
| 4546 | reserved_clusters; |
| 4547 | /* |
| 4548 | * It seems we claimed few clusters outside of |
| 4549 | * the range of this allocation. We should give |
| 4550 | * it back to the reservation pool. This can |
| 4551 | * happen in the following case: |
| 4552 | * |
| 4553 | * * Suppose s_cluster_ratio is 4 (i.e., each |
| 4554 | * cluster has 4 blocks. Thus, the clusters |
| 4555 | * are [0-3],[4-7],[8-11]... |
| 4556 | * * First comes delayed allocation write for |
| 4557 | * logical blocks 10 & 11. Since there were no |
| 4558 | * previous delayed allocated blocks in the |
| 4559 | * range [8-11], we would reserve 1 cluster |
| 4560 | * for this write. |
| 4561 | * * Next comes write for logical blocks 3 to 8. |
| 4562 | * In this case, we will reserve 2 clusters |
| 4563 | * (for [0-3] and [4-7]; and not for [8-11] as |
| 4564 | * that range has a delayed allocated blocks. |
| 4565 | * Thus total reserved clusters now becomes 3. |
| 4566 | * * Now, during the delayed allocation writeout |
| 4567 | * time, we will first write blocks [3-8] and |
| 4568 | * allocate 3 clusters for writing these |
| 4569 | * blocks. Also, we would claim all these |
| 4570 | * three clusters above. |
| 4571 | * * Now when we come here to writeout the |
| 4572 | * blocks [10-11], we would expect to claim |
| 4573 | * the reservation of 1 cluster we had made |
| 4574 | * (and we would claim it since there are no |
| 4575 | * more delayed allocated blocks in the range |
| 4576 | * [8-11]. But our reserved cluster count had |
| 4577 | * already gone to 0. |
| 4578 | * |
| 4579 | * Thus, at the step 4 above when we determine |
| 4580 | * that there are still some unwritten delayed |
| 4581 | * allocated blocks outside of our current |
| 4582 | * block range, we should increment the |
| 4583 | * reserved clusters count so that when the |
| 4584 | * remaining blocks finally gets written, we |
| 4585 | * could claim them. |
| 4586 | */ |
Aditya Kali | 5356f261 | 2011-09-09 19:20:51 -0400 | [diff] [blame] | 4587 | dquot_reserve_block(inode, |
| 4588 | EXT4_C2B(sbi, reservation)); |
| 4589 | spin_lock(&ei->i_block_reservation_lock); |
| 4590 | ei->i_reserved_data_blocks += reservation; |
| 4591 | spin_unlock(&ei->i_block_reservation_lock); |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 4592 | } |
Lukas Czerner | 232ec87 | 2013-03-10 22:46:30 -0400 | [diff] [blame] | 4593 | /* |
| 4594 | * We will claim quota for all newly allocated blocks. |
| 4595 | * We're updating the reserved space *after* the |
| 4596 | * correction above so we do not accidentally free |
| 4597 | * all the metadata reservation because we might |
| 4598 | * actually need it later on. |
| 4599 | */ |
| 4600 | ext4_da_update_reserve_space(inode, allocated_clusters, |
| 4601 | 1); |
Aditya Kali | 7b415bf | 2011-09-09 19:04:51 -0400 | [diff] [blame] | 4602 | } |
| 4603 | } |
Aneesh Kumar K.V | 5f634d0 | 2010-01-25 04:00:31 -0500 | [diff] [blame] | 4604 | |
| 4605 | /* |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 4606 | * Cache the extent and update transaction to commit on fdatasync only |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4607 | * when it is _not_ an unwritten extent. |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 4608 | */ |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4609 | if ((flags & EXT4_GET_BLOCKS_UNWRIT_EXT) == 0) |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 4610 | ext4_update_inode_fsync_trans(handle, inode, 1); |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 4611 | else |
Jan Kara | b436b9b | 2009-12-08 23:51:10 -0500 | [diff] [blame] | 4612 | ext4_update_inode_fsync_trans(handle, inode, 0); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4613 | out: |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4614 | if (allocated > map->m_len) |
| 4615 | allocated = map->m_len; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4616 | ext4_ext_show_leaf(inode, path); |
Theodore Ts'o | e35fd66 | 2010-05-16 19:00:00 -0400 | [diff] [blame] | 4617 | map->m_flags |= EXT4_MAP_MAPPED; |
| 4618 | map->m_pblk = newblock; |
| 4619 | map->m_len = allocated; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4620 | out2: |
Theodore Ts'o | b7ea89a | 2014-09-01 14:39:09 -0400 | [diff] [blame] | 4621 | ext4_ext_drop_refs(path); |
| 4622 | kfree(path); |
Allison Henderson | e861304 | 2011-05-25 07:41:46 -0400 | [diff] [blame] | 4623 | |
Theodore Ts'o | 63b9996 | 2013-07-16 10:28:47 -0400 | [diff] [blame] | 4624 | trace_ext4_ext_map_blocks_exit(inode, flags, map, |
| 4625 | err ? err : allocated); |
Lukas Czerner | 7877191 | 2012-03-19 23:05:43 -0400 | [diff] [blame] | 4626 | return err ? err : allocated; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4627 | } |
| 4628 | |
Theodore Ts'o | 819c492 | 2013-04-03 12:47:17 -0400 | [diff] [blame] | 4629 | void ext4_ext_truncate(handle_t *handle, struct inode *inode) |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4630 | { |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4631 | struct super_block *sb = inode->i_sb; |
Aneesh Kumar K.V | 725d26d | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4632 | ext4_lblk_t last_block; |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4633 | int err = 0; |
| 4634 | |
| 4635 | /* |
Randy Dunlap | d0d856e | 2006-10-11 01:21:07 -0700 | [diff] [blame] | 4636 | * TODO: optimization is possible here. |
| 4637 | * Probably we need not scan at all, |
| 4638 | * because page truncation is enough. |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4639 | */ |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4640 | |
| 4641 | /* we have to know where to truncate from in crash case */ |
| 4642 | EXT4_I(inode)->i_disksize = inode->i_size; |
| 4643 | ext4_mark_inode_dirty(handle, inode); |
| 4644 | |
| 4645 | last_block = (inode->i_size + sb->s_blocksize - 1) |
| 4646 | >> EXT4_BLOCK_SIZE_BITS(sb); |
Theodore Ts'o | 8acd5e9 | 2013-07-15 00:09:19 -0400 | [diff] [blame] | 4647 | retry: |
Zheng Liu | 51865fd | 2012-11-08 21:57:32 -0500 | [diff] [blame] | 4648 | err = ext4_es_remove_extent(inode, last_block, |
| 4649 | EXT_MAX_BLOCKS - last_block); |
Theodore Ts'o | 94eec0f | 2013-07-29 12:12:56 -0400 | [diff] [blame] | 4650 | if (err == -ENOMEM) { |
Theodore Ts'o | 8acd5e9 | 2013-07-15 00:09:19 -0400 | [diff] [blame] | 4651 | cond_resched(); |
| 4652 | congestion_wait(BLK_RW_ASYNC, HZ/50); |
| 4653 | goto retry; |
| 4654 | } |
| 4655 | if (err) { |
| 4656 | ext4_std_error(inode->i_sb, err); |
| 4657 | return; |
| 4658 | } |
Lukas Czerner | 5f95d21 | 2012-03-19 23:03:19 -0400 | [diff] [blame] | 4659 | err = ext4_ext_remove_space(inode, last_block, EXT_MAX_BLOCKS - 1); |
Theodore Ts'o | 8acd5e9 | 2013-07-15 00:09:19 -0400 | [diff] [blame] | 4660 | ext4_std_error(inode->i_sb, err); |
Alex Tomas | a86c618 | 2006-10-11 01:21:03 -0700 | [diff] [blame] | 4661 | } |
| 4662 | |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4663 | static int ext4_alloc_file_blocks(struct file *file, ext4_lblk_t offset, |
Dmitry Monakhov | c174e6d | 2014-08-27 18:40:00 -0400 | [diff] [blame] | 4664 | ext4_lblk_t len, loff_t new_size, |
| 4665 | int flags, int mode) |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 4666 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 4667 | struct inode *inode = file_inode(file); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 4668 | handle_t *handle; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 4669 | int ret = 0; |
| 4670 | int ret2 = 0; |
| 4671 | int retries = 0; |
Lukas Czerner | 4134f5c | 2015-06-15 00:20:46 -0400 | [diff] [blame] | 4672 | int depth = 0; |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 4673 | struct ext4_map_blocks map; |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4674 | unsigned int credits; |
Dmitry Monakhov | c174e6d | 2014-08-27 18:40:00 -0400 | [diff] [blame] | 4675 | loff_t epos; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 4676 | |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4677 | map.m_lblk = offset; |
Dmitry Monakhov | c174e6d | 2014-08-27 18:40:00 -0400 | [diff] [blame] | 4678 | map.m_len = len; |
Greg Harm | 3c6fe77 | 2011-10-31 18:41:47 -0400 | [diff] [blame] | 4679 | /* |
| 4680 | * Don't normalize the request if it can fit in one extent so |
| 4681 | * that it doesn't get unnecessarily split into multiple |
| 4682 | * extents. |
| 4683 | */ |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4684 | if (len <= EXT_UNWRITTEN_MAX_LEN) |
Greg Harm | 3c6fe77 | 2011-10-31 18:41:47 -0400 | [diff] [blame] | 4685 | flags |= EXT4_GET_BLOCKS_NO_NORMALIZE; |
Dmitry Monakhov | 60d4616 | 2012-10-05 11:32:02 -0400 | [diff] [blame] | 4686 | |
Lukas Czerner | 0d306dc | 2015-06-15 00:23:53 -0400 | [diff] [blame] | 4687 | /* Wait all existing dio workers, newcomers will block on i_mutex */ |
| 4688 | ext4_inode_block_unlocked_dio(inode); |
| 4689 | inode_dio_wait(inode); |
| 4690 | |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4691 | /* |
| 4692 | * credits to insert 1 extent into extent tree |
| 4693 | */ |
| 4694 | credits = ext4_chunk_trans_blocks(inode, len); |
Lukas Czerner | 4134f5c | 2015-06-15 00:20:46 -0400 | [diff] [blame] | 4695 | /* |
| 4696 | * We can only call ext_depth() on extent based inodes |
| 4697 | */ |
| 4698 | if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) |
| 4699 | depth = ext_depth(inode); |
| 4700 | else |
| 4701 | depth = -1; |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4702 | |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 4703 | retry: |
Dmitry Monakhov | c174e6d | 2014-08-27 18:40:00 -0400 | [diff] [blame] | 4704 | while (ret >= 0 && len) { |
Lukas Czerner | 4134f5c | 2015-06-15 00:20:46 -0400 | [diff] [blame] | 4705 | /* |
| 4706 | * Recalculate credits when extent tree depth changes. |
| 4707 | */ |
| 4708 | if (depth >= 0 && depth != ext_depth(inode)) { |
| 4709 | credits = ext4_chunk_trans_blocks(inode, len); |
| 4710 | depth = ext_depth(inode); |
| 4711 | } |
| 4712 | |
Theodore Ts'o | 9924a92 | 2013-02-08 21:59:22 -0500 | [diff] [blame] | 4713 | handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, |
| 4714 | credits); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 4715 | if (IS_ERR(handle)) { |
| 4716 | ret = PTR_ERR(handle); |
| 4717 | break; |
| 4718 | } |
Dmitry Monakhov | a4e5d88 | 2011-10-25 08:15:12 -0400 | [diff] [blame] | 4719 | ret = ext4_map_blocks(handle, inode, &map, flags); |
Aneesh Kumar K.V | 221879c | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 4720 | if (ret <= 0) { |
Lukas Czerner | f282ac1 | 2014-03-18 17:44:35 -0400 | [diff] [blame] | 4721 | ext4_debug("inode #%lu: block %u: len %u: " |
| 4722 | "ext4_ext_map_blocks returned %d", |
| 4723 | inode->i_ino, map.m_lblk, |
| 4724 | map.m_len, ret); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 4725 | ext4_mark_inode_dirty(handle, inode); |
| 4726 | ret2 = ext4_journal_stop(handle); |
| 4727 | break; |
| 4728 | } |
Dmitry Monakhov | c174e6d | 2014-08-27 18:40:00 -0400 | [diff] [blame] | 4729 | map.m_lblk += ret; |
| 4730 | map.m_len = len = len - ret; |
| 4731 | epos = (loff_t)map.m_lblk << inode->i_blkbits; |
| 4732 | inode->i_ctime = ext4_current_time(inode); |
| 4733 | if (new_size) { |
| 4734 | if (epos > new_size) |
| 4735 | epos = new_size; |
| 4736 | if (ext4_update_inode_size(inode, epos) & 0x1) |
| 4737 | inode->i_mtime = inode->i_ctime; |
| 4738 | } else { |
| 4739 | if (epos > inode->i_size) |
| 4740 | ext4_set_inode_flag(inode, |
| 4741 | EXT4_INODE_EOFBLOCKS); |
| 4742 | } |
| 4743 | ext4_mark_inode_dirty(handle, inode); |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 4744 | ret2 = ext4_journal_stop(handle); |
| 4745 | if (ret2) |
| 4746 | break; |
| 4747 | } |
Aneesh Kumar K.V | fd28784 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 4748 | if (ret == -ENOSPC && |
| 4749 | ext4_should_retry_alloc(inode->i_sb, &retries)) { |
| 4750 | ret = 0; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 4751 | goto retry; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 4752 | } |
Lukas Czerner | f282ac1 | 2014-03-18 17:44:35 -0400 | [diff] [blame] | 4753 | |
Lukas Czerner | 0d306dc | 2015-06-15 00:23:53 -0400 | [diff] [blame] | 4754 | ext4_inode_resume_unlocked_dio(inode); |
| 4755 | |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4756 | return ret > 0 ? ret2 : ret; |
| 4757 | } |
| 4758 | |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4759 | static long ext4_zero_range(struct file *file, loff_t offset, |
| 4760 | loff_t len, int mode) |
| 4761 | { |
| 4762 | struct inode *inode = file_inode(file); |
| 4763 | handle_t *handle = NULL; |
| 4764 | unsigned int max_blocks; |
| 4765 | loff_t new_size = 0; |
| 4766 | int ret = 0; |
| 4767 | int flags; |
Dmitry Monakhov | 69dc953 | 2014-08-27 18:33:49 -0400 | [diff] [blame] | 4768 | int credits; |
Dmitry Monakhov | c174e6d | 2014-08-27 18:40:00 -0400 | [diff] [blame] | 4769 | int partial_begin, partial_end; |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4770 | loff_t start, end; |
| 4771 | ext4_lblk_t lblk; |
| 4772 | struct address_space *mapping = inode->i_mapping; |
| 4773 | unsigned int blkbits = inode->i_blkbits; |
| 4774 | |
| 4775 | trace_ext4_zero_range(inode, offset, len, mode); |
| 4776 | |
jon ernst | 6c5e73d | 2014-04-18 11:50:35 -0400 | [diff] [blame] | 4777 | if (!S_ISREG(inode->i_mode)) |
| 4778 | return -EINVAL; |
| 4779 | |
Namjae Jeon | e1ee60f | 2014-05-27 12:48:55 -0400 | [diff] [blame] | 4780 | /* Call ext4_force_commit to flush all data in case of data=journal. */ |
| 4781 | if (ext4_should_journal_data(inode)) { |
| 4782 | ret = ext4_force_commit(inode->i_sb); |
| 4783 | if (ret) |
| 4784 | return ret; |
| 4785 | } |
| 4786 | |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4787 | /* |
| 4788 | * Write out all dirty pages to avoid race conditions |
| 4789 | * Then release them. |
| 4790 | */ |
| 4791 | if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { |
| 4792 | ret = filemap_write_and_wait_range(mapping, offset, |
| 4793 | offset + len - 1); |
| 4794 | if (ret) |
| 4795 | return ret; |
| 4796 | } |
| 4797 | |
| 4798 | /* |
| 4799 | * Round up offset. This is not fallocate, we neet to zero out |
| 4800 | * blocks, so convert interior block aligned part of the range to |
| 4801 | * unwritten and possibly manually zero out unaligned parts of the |
| 4802 | * range. |
| 4803 | */ |
| 4804 | start = round_up(offset, 1 << blkbits); |
| 4805 | end = round_down((offset + len), 1 << blkbits); |
| 4806 | |
| 4807 | if (start < offset || end > offset + len) |
| 4808 | return -EINVAL; |
Dmitry Monakhov | c174e6d | 2014-08-27 18:40:00 -0400 | [diff] [blame] | 4809 | partial_begin = offset & ((1 << blkbits) - 1); |
| 4810 | partial_end = (offset + len) & ((1 << blkbits) - 1); |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4811 | |
| 4812 | lblk = start >> blkbits; |
| 4813 | max_blocks = (end >> blkbits); |
| 4814 | if (max_blocks < lblk) |
| 4815 | max_blocks = 0; |
| 4816 | else |
| 4817 | max_blocks -= lblk; |
| 4818 | |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4819 | mutex_lock(&inode->i_mutex); |
| 4820 | |
| 4821 | /* |
| 4822 | * Indirect files do not support unwritten extnets |
| 4823 | */ |
| 4824 | if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { |
| 4825 | ret = -EOPNOTSUPP; |
| 4826 | goto out_mutex; |
| 4827 | } |
| 4828 | |
| 4829 | if (!(mode & FALLOC_FL_KEEP_SIZE) && |
| 4830 | offset + len > i_size_read(inode)) { |
| 4831 | new_size = offset + len; |
| 4832 | ret = inode_newsize_ok(inode, new_size); |
| 4833 | if (ret) |
| 4834 | goto out_mutex; |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4835 | } |
| 4836 | |
Lukas Czerner | 0f2af21 | 2015-04-03 00:09:13 -0400 | [diff] [blame] | 4837 | flags = EXT4_GET_BLOCKS_CREATE_UNWRIT_EXT; |
| 4838 | if (mode & FALLOC_FL_KEEP_SIZE) |
| 4839 | flags |= EXT4_GET_BLOCKS_KEEP_SIZE; |
| 4840 | |
| 4841 | /* Preallocate the range including the unaligned edges */ |
| 4842 | if (partial_begin || partial_end) { |
| 4843 | ret = ext4_alloc_file_blocks(file, |
| 4844 | round_down(offset, 1 << blkbits) >> blkbits, |
| 4845 | (round_up((offset + len), 1 << blkbits) - |
| 4846 | round_down(offset, 1 << blkbits)) >> blkbits, |
| 4847 | new_size, flags, mode); |
| 4848 | if (ret) |
| 4849 | goto out_mutex; |
| 4850 | |
| 4851 | } |
| 4852 | |
| 4853 | /* Zero range excluding the unaligned edges */ |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4854 | if (max_blocks > 0) { |
Lukas Czerner | 0f2af21 | 2015-04-03 00:09:13 -0400 | [diff] [blame] | 4855 | flags |= (EXT4_GET_BLOCKS_CONVERT_UNWRITTEN | |
| 4856 | EXT4_EX_NOCACHE); |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4857 | |
| 4858 | /* Now release the pages and zero block aligned part of pages*/ |
| 4859 | truncate_pagecache_range(inode, start, end - 1); |
Dmitry Monakhov | c174e6d | 2014-08-27 18:40:00 -0400 | [diff] [blame] | 4860 | inode->i_mtime = inode->i_ctime = ext4_current_time(inode); |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4861 | |
| 4862 | /* Wait all existing dio workers, newcomers will block on i_mutex */ |
| 4863 | ext4_inode_block_unlocked_dio(inode); |
| 4864 | inode_dio_wait(inode); |
| 4865 | |
Dmitry Monakhov | c174e6d | 2014-08-27 18:40:00 -0400 | [diff] [blame] | 4866 | ret = ext4_alloc_file_blocks(file, lblk, max_blocks, new_size, |
| 4867 | flags, mode); |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4868 | if (ret) |
| 4869 | goto out_dio; |
| 4870 | } |
Dmitry Monakhov | c174e6d | 2014-08-27 18:40:00 -0400 | [diff] [blame] | 4871 | if (!partial_begin && !partial_end) |
| 4872 | goto out_dio; |
| 4873 | |
Dmitry Monakhov | 69dc953 | 2014-08-27 18:33:49 -0400 | [diff] [blame] | 4874 | /* |
| 4875 | * In worst case we have to writeout two nonadjacent unwritten |
| 4876 | * blocks and update the inode |
| 4877 | */ |
| 4878 | credits = (2 * ext4_ext_index_trans_blocks(inode, 2)) + 1; |
| 4879 | if (ext4_should_journal_data(inode)) |
| 4880 | credits += 2; |
| 4881 | handle = ext4_journal_start(inode, EXT4_HT_MISC, credits); |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4882 | if (IS_ERR(handle)) { |
| 4883 | ret = PTR_ERR(handle); |
| 4884 | ext4_std_error(inode->i_sb, ret); |
| 4885 | goto out_dio; |
| 4886 | } |
| 4887 | |
| 4888 | inode->i_mtime = inode->i_ctime = ext4_current_time(inode); |
Lukas Czerner | e5b3041 | 2014-04-01 00:59:21 -0400 | [diff] [blame] | 4889 | if (new_size) { |
Dmitry Monakhov | 4631dbf | 2014-08-23 17:48:28 -0400 | [diff] [blame] | 4890 | ext4_update_inode_size(inode, new_size); |
Lukas Czerner | e5b3041 | 2014-04-01 00:59:21 -0400 | [diff] [blame] | 4891 | } else { |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4892 | /* |
| 4893 | * Mark that we allocate beyond EOF so the subsequent truncate |
| 4894 | * can proceed even if the new size is the same as i_size. |
| 4895 | */ |
| 4896 | if ((offset + len) > i_size_read(inode)) |
| 4897 | ext4_set_inode_flag(inode, EXT4_INODE_EOFBLOCKS); |
| 4898 | } |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4899 | ext4_mark_inode_dirty(handle, inode); |
| 4900 | |
| 4901 | /* Zero out partial block at the edges of the range */ |
| 4902 | ret = ext4_zero_partial_blocks(handle, inode, offset, len); |
| 4903 | |
| 4904 | if (file->f_flags & O_SYNC) |
| 4905 | ext4_handle_sync(handle); |
| 4906 | |
| 4907 | ext4_journal_stop(handle); |
| 4908 | out_dio: |
| 4909 | ext4_inode_resume_unlocked_dio(inode); |
| 4910 | out_mutex: |
| 4911 | mutex_unlock(&inode->i_mutex); |
| 4912 | return ret; |
| 4913 | } |
| 4914 | |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4915 | /* |
| 4916 | * preallocate space for a file. This implements ext4's fallocate file |
| 4917 | * operation, which gets called from sys_fallocate system call. |
| 4918 | * For block-mapped files, posix_fallocate should fall back to the method |
| 4919 | * of writing zeroes to the required new blocks (the same behavior which is |
| 4920 | * expected for file systems which do not support fallocate() system call). |
| 4921 | */ |
| 4922 | long ext4_fallocate(struct file *file, int mode, loff_t offset, loff_t len) |
| 4923 | { |
| 4924 | struct inode *inode = file_inode(file); |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4925 | loff_t new_size = 0; |
| 4926 | unsigned int max_blocks; |
| 4927 | int ret = 0; |
| 4928 | int flags; |
| 4929 | ext4_lblk_t lblk; |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4930 | unsigned int blkbits = inode->i_blkbits; |
| 4931 | |
Michael Halcrow | 2058f83 | 2015-04-12 00:55:10 -0400 | [diff] [blame] | 4932 | /* |
| 4933 | * Encrypted inodes can't handle collapse range or insert |
| 4934 | * range since we would need to re-encrypt blocks with a |
| 4935 | * different IV or XTS tweak (which are based on the logical |
| 4936 | * block number). |
| 4937 | * |
| 4938 | * XXX It's not clear why zero range isn't working, but we'll |
| 4939 | * leave it disabled for encrypted inodes for now. This is a |
| 4940 | * bug we should fix.... |
| 4941 | */ |
| 4942 | if (ext4_encrypted_inode(inode) && |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 4943 | (mode & (FALLOC_FL_COLLAPSE_RANGE | FALLOC_FL_INSERT_RANGE | |
| 4944 | FALLOC_FL_ZERO_RANGE))) |
Michael Halcrow | 2058f83 | 2015-04-12 00:55:10 -0400 | [diff] [blame] | 4945 | return -EOPNOTSUPP; |
| 4946 | |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4947 | /* Return error if mode is not supported */ |
| 4948 | if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 4949 | FALLOC_FL_COLLAPSE_RANGE | FALLOC_FL_ZERO_RANGE | |
| 4950 | FALLOC_FL_INSERT_RANGE)) |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4951 | return -EOPNOTSUPP; |
| 4952 | |
| 4953 | if (mode & FALLOC_FL_PUNCH_HOLE) |
| 4954 | return ext4_punch_hole(inode, offset, len); |
| 4955 | |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4956 | ret = ext4_convert_inline_data(inode); |
| 4957 | if (ret) |
| 4958 | return ret; |
| 4959 | |
Theodore Ts'o | 40c406c | 2014-04-12 22:53:53 -0400 | [diff] [blame] | 4960 | if (mode & FALLOC_FL_COLLAPSE_RANGE) |
| 4961 | return ext4_collapse_range(inode, offset, len); |
| 4962 | |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 4963 | if (mode & FALLOC_FL_INSERT_RANGE) |
| 4964 | return ext4_insert_range(inode, offset, len); |
| 4965 | |
Lukas Czerner | b8a8684 | 2014-03-18 18:05:35 -0400 | [diff] [blame] | 4966 | if (mode & FALLOC_FL_ZERO_RANGE) |
| 4967 | return ext4_zero_range(file, offset, len, mode); |
| 4968 | |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4969 | trace_ext4_fallocate_enter(inode, offset, len, mode); |
| 4970 | lblk = offset >> blkbits; |
| 4971 | /* |
| 4972 | * We can't just convert len to max_blocks because |
| 4973 | * If blocksize = 4096 offset = 3072 and len = 2048 |
| 4974 | */ |
| 4975 | max_blocks = (EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) |
| 4976 | - lblk; |
| 4977 | |
Lukas Czerner | 556615d | 2014-04-20 23:45:47 -0400 | [diff] [blame] | 4978 | flags = EXT4_GET_BLOCKS_CREATE_UNWRIT_EXT; |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4979 | if (mode & FALLOC_FL_KEEP_SIZE) |
| 4980 | flags |= EXT4_GET_BLOCKS_KEEP_SIZE; |
| 4981 | |
| 4982 | mutex_lock(&inode->i_mutex); |
| 4983 | |
Davide Italiano | 280227a | 2015-05-02 23:21:15 -0400 | [diff] [blame] | 4984 | /* |
| 4985 | * We only support preallocation for extent-based files only |
| 4986 | */ |
| 4987 | if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) { |
| 4988 | ret = -EOPNOTSUPP; |
| 4989 | goto out; |
| 4990 | } |
| 4991 | |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 4992 | if (!(mode & FALLOC_FL_KEEP_SIZE) && |
| 4993 | offset + len > i_size_read(inode)) { |
| 4994 | new_size = offset + len; |
| 4995 | ret = inode_newsize_ok(inode, new_size); |
| 4996 | if (ret) |
| 4997 | goto out; |
| 4998 | } |
| 4999 | |
Dmitry Monakhov | c174e6d | 2014-08-27 18:40:00 -0400 | [diff] [blame] | 5000 | ret = ext4_alloc_file_blocks(file, lblk, max_blocks, new_size, |
| 5001 | flags, mode); |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 5002 | if (ret) |
| 5003 | goto out; |
| 5004 | |
Dmitry Monakhov | c174e6d | 2014-08-27 18:40:00 -0400 | [diff] [blame] | 5005 | if (file->f_flags & O_SYNC && EXT4_SB(inode->i_sb)->s_journal) { |
| 5006 | ret = jbd2_complete_transaction(EXT4_SB(inode->i_sb)->s_journal, |
| 5007 | EXT4_I(inode)->i_sync_tid); |
Lukas Czerner | f282ac1 | 2014-03-18 17:44:35 -0400 | [diff] [blame] | 5008 | } |
Lukas Czerner | f282ac1 | 2014-03-18 17:44:35 -0400 | [diff] [blame] | 5009 | out: |
Aneesh Kumar K.V | 55bd725 | 2008-02-15 12:47:21 -0500 | [diff] [blame] | 5010 | mutex_unlock(&inode->i_mutex); |
Lukas Czerner | 0e8b687 | 2014-03-18 18:03:51 -0400 | [diff] [blame] | 5011 | trace_ext4_fallocate_exit(inode, offset, max_blocks, ret); |
| 5012 | return ret; |
Amit Arora | a2df2a6 | 2007-07-17 21:42:41 -0400 | [diff] [blame] | 5013 | } |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5014 | |
| 5015 | /* |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5016 | * This function convert a range of blocks to written extents |
| 5017 | * The caller of this function will pass the start offset and the size. |
| 5018 | * all unwritten extents within this range will be converted to |
| 5019 | * written extents. |
| 5020 | * |
| 5021 | * This function is called from the direct IO end io call back |
| 5022 | * function, to convert the fallocated extents after IO is completed. |
Mingming | 109f556 | 2009-11-10 10:48:08 -0500 | [diff] [blame] | 5023 | * Returns 0 on success. |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5024 | */ |
Jan Kara | 6b523df | 2013-06-04 13:21:11 -0400 | [diff] [blame] | 5025 | int ext4_convert_unwritten_extents(handle_t *handle, struct inode *inode, |
| 5026 | loff_t offset, ssize_t len) |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5027 | { |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5028 | unsigned int max_blocks; |
| 5029 | int ret = 0; |
| 5030 | int ret2 = 0; |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 5031 | struct ext4_map_blocks map; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5032 | unsigned int credits, blkbits = inode->i_blkbits; |
| 5033 | |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 5034 | map.m_lblk = offset >> blkbits; |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5035 | /* |
| 5036 | * We can't just convert len to max_blocks because |
| 5037 | * If blocksize = 4096 offset = 3072 and len = 2048 |
| 5038 | */ |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 5039 | max_blocks = ((EXT4_BLOCK_ALIGN(len + offset, blkbits) >> blkbits) - |
| 5040 | map.m_lblk); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5041 | /* |
Jan Kara | 6b523df | 2013-06-04 13:21:11 -0400 | [diff] [blame] | 5042 | * This is somewhat ugly but the idea is clear: When transaction is |
| 5043 | * reserved, everything goes into it. Otherwise we rather start several |
| 5044 | * smaller transactions for conversion of each extent separately. |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5045 | */ |
Jan Kara | 6b523df | 2013-06-04 13:21:11 -0400 | [diff] [blame] | 5046 | if (handle) { |
| 5047 | handle = ext4_journal_start_reserved(handle, |
| 5048 | EXT4_HT_EXT_CONVERT); |
| 5049 | if (IS_ERR(handle)) |
| 5050 | return PTR_ERR(handle); |
| 5051 | credits = 0; |
| 5052 | } else { |
| 5053 | /* |
| 5054 | * credits to insert 1 extent into extent tree |
| 5055 | */ |
| 5056 | credits = ext4_chunk_trans_blocks(inode, max_blocks); |
| 5057 | } |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5058 | while (ret >= 0 && ret < max_blocks) { |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 5059 | map.m_lblk += ret; |
| 5060 | map.m_len = (max_blocks -= ret); |
Jan Kara | 6b523df | 2013-06-04 13:21:11 -0400 | [diff] [blame] | 5061 | if (credits) { |
| 5062 | handle = ext4_journal_start(inode, EXT4_HT_MAP_BLOCKS, |
| 5063 | credits); |
| 5064 | if (IS_ERR(handle)) { |
| 5065 | ret = PTR_ERR(handle); |
| 5066 | break; |
| 5067 | } |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5068 | } |
Theodore Ts'o | 2ed8868 | 2010-05-16 20:00:00 -0400 | [diff] [blame] | 5069 | ret = ext4_map_blocks(handle, inode, &map, |
Jiaying Zhang | c7064ef | 2010-03-02 13:28:44 -0500 | [diff] [blame] | 5070 | EXT4_GET_BLOCKS_IO_CONVERT_EXT); |
Lukas Czerner | b06acd3 | 2013-01-28 21:21:12 -0500 | [diff] [blame] | 5071 | if (ret <= 0) |
| 5072 | ext4_warning(inode->i_sb, |
| 5073 | "inode #%lu: block %u: len %u: " |
| 5074 | "ext4_ext_map_blocks returned %d", |
| 5075 | inode->i_ino, map.m_lblk, |
| 5076 | map.m_len, ret); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5077 | ext4_mark_inode_dirty(handle, inode); |
Jan Kara | 6b523df | 2013-06-04 13:21:11 -0400 | [diff] [blame] | 5078 | if (credits) |
| 5079 | ret2 = ext4_journal_stop(handle); |
| 5080 | if (ret <= 0 || ret2) |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5081 | break; |
| 5082 | } |
Jan Kara | 6b523df | 2013-06-04 13:21:11 -0400 | [diff] [blame] | 5083 | if (!credits) |
| 5084 | ret2 = ext4_journal_stop(handle); |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5085 | return ret > 0 ? ret2 : ret; |
| 5086 | } |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 5087 | |
Mingming Cao | 0031462 | 2009-09-28 15:49:08 -0400 | [diff] [blame] | 5088 | /* |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 5089 | * If newes is not existing extent (newes->ec_pblk equals zero) find |
| 5090 | * delayed extent at start of newes and update newes accordingly and |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 5091 | * return start of the next delayed extent. |
| 5092 | * |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 5093 | * If newes is existing extent (newes->ec_pblk is not equal zero) |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 5094 | * return start of next delayed extent or EXT_MAX_BLOCKS if no delayed |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 5095 | * extent found. Leave newes unmodified. |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5096 | */ |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 5097 | static int ext4_find_delayed_extent(struct inode *inode, |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 5098 | struct extent_status *newes) |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5099 | { |
Zheng Liu | b3aff3e | 2012-11-08 21:57:37 -0500 | [diff] [blame] | 5100 | struct extent_status es; |
Zheng Liu | be40136 | 2013-02-18 00:27:26 -0500 | [diff] [blame] | 5101 | ext4_lblk_t block, next_del; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5102 | |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 5103 | if (newes->es_pblk == 0) { |
Yan, Zheng | e30b5dc | 2013-05-03 02:15:52 -0400 | [diff] [blame] | 5104 | ext4_es_find_delayed_extent_range(inode, newes->es_lblk, |
| 5105 | newes->es_lblk + newes->es_len - 1, &es); |
| 5106 | |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 5107 | /* |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 5108 | * No extent in extent-tree contains block @newes->es_pblk, |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 5109 | * 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] | 5110 | */ |
Zheng Liu | 06b0c88 | 2013-02-18 00:26:51 -0500 | [diff] [blame] | 5111 | if (es.es_len == 0) |
Zheng Liu | b3aff3e | 2012-11-08 21:57:37 -0500 | [diff] [blame] | 5112 | /* A hole found. */ |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 5113 | return 0; |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 5114 | |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 5115 | if (es.es_lblk > newes->es_lblk) { |
Zheng Liu | b3aff3e | 2012-11-08 21:57:37 -0500 | [diff] [blame] | 5116 | /* A hole found. */ |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 5117 | newes->es_len = min(es.es_lblk - newes->es_lblk, |
| 5118 | newes->es_len); |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 5119 | return 0; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5120 | } |
Yongqiang Yang | 6d9c85e | 2011-02-27 17:25:47 -0500 | [diff] [blame] | 5121 | |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 5122 | newes->es_len = es.es_lblk + es.es_len - newes->es_lblk; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5123 | } |
| 5124 | |
Zheng Liu | 69eb33d | 2013-02-18 00:31:07 -0500 | [diff] [blame] | 5125 | block = newes->es_lblk + newes->es_len; |
Yan, Zheng | e30b5dc | 2013-05-03 02:15:52 -0400 | [diff] [blame] | 5126 | ext4_es_find_delayed_extent_range(inode, block, EXT_MAX_BLOCKS, &es); |
Zheng Liu | be40136 | 2013-02-18 00:27:26 -0500 | [diff] [blame] | 5127 | if (es.es_len == 0) |
| 5128 | next_del = EXT_MAX_BLOCKS; |
| 5129 | else |
| 5130 | next_del = es.es_lblk; |
| 5131 | |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 5132 | return next_del; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5133 | } |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5134 | /* fiemap flags we can handle specified here */ |
| 5135 | #define EXT4_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC|FIEMAP_FLAG_XATTR) |
| 5136 | |
Aneesh Kumar K.V | 3a06d77 | 2008-11-22 15:04:59 -0500 | [diff] [blame] | 5137 | static int ext4_xattr_fiemap(struct inode *inode, |
| 5138 | struct fiemap_extent_info *fieinfo) |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5139 | { |
| 5140 | __u64 physical = 0; |
| 5141 | __u64 length; |
| 5142 | __u32 flags = FIEMAP_EXTENT_LAST; |
| 5143 | int blockbits = inode->i_sb->s_blocksize_bits; |
| 5144 | int error = 0; |
| 5145 | |
| 5146 | /* in-inode? */ |
Theodore Ts'o | 19f5fb7 | 2010-01-24 14:34:07 -0500 | [diff] [blame] | 5147 | if (ext4_test_inode_state(inode, EXT4_STATE_XATTR)) { |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5148 | struct ext4_iloc iloc; |
| 5149 | int offset; /* offset of xattr in inode */ |
| 5150 | |
| 5151 | error = ext4_get_inode_loc(inode, &iloc); |
| 5152 | if (error) |
| 5153 | return error; |
Jan Kara | a60697f | 2013-05-31 19:38:56 -0400 | [diff] [blame] | 5154 | physical = (__u64)iloc.bh->b_blocknr << blockbits; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5155 | offset = EXT4_GOOD_OLD_INODE_SIZE + |
| 5156 | EXT4_I(inode)->i_extra_isize; |
| 5157 | physical += offset; |
| 5158 | length = EXT4_SB(inode->i_sb)->s_inode_size - offset; |
| 5159 | flags |= FIEMAP_EXTENT_DATA_INLINE; |
Curt Wohlgemuth | fd2dd9f | 2010-04-03 17:44:16 -0400 | [diff] [blame] | 5160 | brelse(iloc.bh); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5161 | } else { /* external block */ |
Jan Kara | a60697f | 2013-05-31 19:38:56 -0400 | [diff] [blame] | 5162 | physical = (__u64)EXT4_I(inode)->i_file_acl << blockbits; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5163 | length = inode->i_sb->s_blocksize; |
| 5164 | } |
| 5165 | |
| 5166 | if (physical) |
| 5167 | error = fiemap_fill_next_extent(fieinfo, 0, physical, |
| 5168 | length, flags); |
| 5169 | return (error < 0 ? error : 0); |
| 5170 | } |
| 5171 | |
| 5172 | int ext4_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, |
| 5173 | __u64 start, __u64 len) |
| 5174 | { |
| 5175 | ext4_lblk_t start_blk; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5176 | int error = 0; |
| 5177 | |
Tao Ma | 9419198 | 2012-12-10 14:06:02 -0500 | [diff] [blame] | 5178 | if (ext4_has_inline_data(inode)) { |
| 5179 | int has_inline = 1; |
| 5180 | |
Dmitry Monakhov | d952d69 | 2014-12-02 16:11:20 -0500 | [diff] [blame] | 5181 | error = ext4_inline_data_fiemap(inode, fieinfo, &has_inline, |
| 5182 | start, len); |
Tao Ma | 9419198 | 2012-12-10 14:06:02 -0500 | [diff] [blame] | 5183 | |
| 5184 | if (has_inline) |
| 5185 | return error; |
| 5186 | } |
| 5187 | |
Theodore Ts'o | 7869a4a | 2013-08-16 22:05:14 -0400 | [diff] [blame] | 5188 | if (fieinfo->fi_flags & FIEMAP_FLAG_CACHE) { |
| 5189 | error = ext4_ext_precache(inode); |
| 5190 | if (error) |
| 5191 | return error; |
| 5192 | } |
| 5193 | |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5194 | /* fallback to generic here if not in extents fmt */ |
Dmitry Monakhov | 12e9b89 | 2010-05-16 22:00:00 -0400 | [diff] [blame] | 5195 | if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) |
Theodore Ts'o | ad7fefb | 2015-01-02 15:16:00 -0500 | [diff] [blame] | 5196 | return generic_block_fiemap(inode, fieinfo, start, len, |
| 5197 | ext4_get_block); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5198 | |
| 5199 | if (fiemap_check_flags(fieinfo, EXT4_FIEMAP_FLAGS)) |
| 5200 | return -EBADR; |
| 5201 | |
| 5202 | if (fieinfo->fi_flags & FIEMAP_FLAG_XATTR) { |
| 5203 | error = ext4_xattr_fiemap(inode, fieinfo); |
| 5204 | } else { |
Leonard Michlmayr | aca92ff | 2010-03-04 17:07:28 -0500 | [diff] [blame] | 5205 | ext4_lblk_t len_blks; |
| 5206 | __u64 last_blk; |
| 5207 | |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5208 | start_blk = start >> inode->i_sb->s_blocksize_bits; |
Leonard Michlmayr | aca92ff | 2010-03-04 17:07:28 -0500 | [diff] [blame] | 5209 | last_blk = (start + len - 1) >> inode->i_sb->s_blocksize_bits; |
Lukas Czerner | f17722f | 2011-06-06 00:05:17 -0400 | [diff] [blame] | 5210 | if (last_blk >= EXT_MAX_BLOCKS) |
| 5211 | last_blk = EXT_MAX_BLOCKS-1; |
Leonard Michlmayr | aca92ff | 2010-03-04 17:07:28 -0500 | [diff] [blame] | 5212 | len_blks = ((ext4_lblk_t) last_blk) - start_blk + 1; |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5213 | |
| 5214 | /* |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 5215 | * Walk the extent tree gathering extent information |
| 5216 | * and pushing extents back to the user. |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5217 | */ |
Lukas Czerner | 91dd8c1 | 2012-11-28 12:32:26 -0500 | [diff] [blame] | 5218 | error = ext4_fill_fiemap_extents(inode, start_blk, |
| 5219 | len_blks, fieinfo); |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5220 | } |
Eric Sandeen | 6873fa0 | 2008-10-07 00:46:36 -0400 | [diff] [blame] | 5221 | return error; |
| 5222 | } |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5223 | |
| 5224 | /* |
| 5225 | * ext4_access_path: |
| 5226 | * Function to access the path buffer for marking it dirty. |
| 5227 | * It also checks if there are sufficient credits left in the journal handle |
| 5228 | * to update path. |
| 5229 | */ |
| 5230 | static int |
| 5231 | ext4_access_path(handle_t *handle, struct inode *inode, |
| 5232 | struct ext4_ext_path *path) |
| 5233 | { |
| 5234 | int credits, err; |
| 5235 | |
| 5236 | if (!ext4_handle_valid(handle)) |
| 5237 | return 0; |
| 5238 | |
| 5239 | /* |
| 5240 | * Check if need to extend journal credits |
| 5241 | * 3 for leaf, sb, and inode plus 2 (bmap and group |
| 5242 | * descriptor) for each block group; assume two block |
| 5243 | * groups |
| 5244 | */ |
| 5245 | if (handle->h_buffer_credits < 7) { |
| 5246 | credits = ext4_writepage_trans_blocks(inode); |
| 5247 | err = ext4_ext_truncate_extend_restart(handle, inode, credits); |
| 5248 | /* EAGAIN is success */ |
| 5249 | if (err && err != -EAGAIN) |
| 5250 | return err; |
| 5251 | } |
| 5252 | |
| 5253 | err = ext4_ext_get_access(handle, inode, path); |
| 5254 | return err; |
| 5255 | } |
| 5256 | |
| 5257 | /* |
| 5258 | * ext4_ext_shift_path_extents: |
| 5259 | * Shift the extents of a path structure lying between path[depth].p_ext |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5260 | * and EXT_LAST_EXTENT(path[depth].p_hdr), by @shift blocks. @SHIFT tells |
| 5261 | * if it is right shift or left shift operation. |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5262 | */ |
| 5263 | static int |
| 5264 | ext4_ext_shift_path_extents(struct ext4_ext_path *path, ext4_lblk_t shift, |
| 5265 | struct inode *inode, handle_t *handle, |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5266 | enum SHIFT_DIRECTION SHIFT) |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5267 | { |
| 5268 | int depth, err = 0; |
| 5269 | struct ext4_extent *ex_start, *ex_last; |
| 5270 | bool update = 0; |
| 5271 | depth = path->p_depth; |
| 5272 | |
| 5273 | while (depth >= 0) { |
| 5274 | if (depth == path->p_depth) { |
| 5275 | ex_start = path[depth].p_ext; |
| 5276 | if (!ex_start) |
| 5277 | return -EIO; |
| 5278 | |
| 5279 | ex_last = EXT_LAST_EXTENT(path[depth].p_hdr); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5280 | |
| 5281 | err = ext4_access_path(handle, inode, path + depth); |
| 5282 | if (err) |
| 5283 | goto out; |
| 5284 | |
| 5285 | if (ex_start == EXT_FIRST_EXTENT(path[depth].p_hdr)) |
| 5286 | update = 1; |
| 5287 | |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5288 | while (ex_start <= ex_last) { |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5289 | if (SHIFT == SHIFT_LEFT) { |
| 5290 | le32_add_cpu(&ex_start->ee_block, |
| 5291 | -shift); |
| 5292 | /* Try to merge to the left. */ |
| 5293 | if ((ex_start > |
| 5294 | EXT_FIRST_EXTENT(path[depth].p_hdr)) |
| 5295 | && |
| 5296 | ext4_ext_try_to_merge_right(inode, |
| 5297 | path, ex_start - 1)) |
| 5298 | ex_last--; |
| 5299 | else |
| 5300 | ex_start++; |
| 5301 | } else { |
| 5302 | le32_add_cpu(&ex_last->ee_block, shift); |
| 5303 | ext4_ext_try_to_merge_right(inode, path, |
| 5304 | ex_last); |
Lukas Czerner | 6dd834e | 2014-04-18 10:55:24 -0400 | [diff] [blame] | 5305 | ex_last--; |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5306 | } |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5307 | } |
| 5308 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 5309 | if (err) |
| 5310 | goto out; |
| 5311 | |
| 5312 | if (--depth < 0 || !update) |
| 5313 | break; |
| 5314 | } |
| 5315 | |
| 5316 | /* Update index too */ |
| 5317 | err = ext4_access_path(handle, inode, path + depth); |
| 5318 | if (err) |
| 5319 | goto out; |
| 5320 | |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5321 | if (SHIFT == SHIFT_LEFT) |
| 5322 | le32_add_cpu(&path[depth].p_idx->ei_block, -shift); |
| 5323 | else |
| 5324 | le32_add_cpu(&path[depth].p_idx->ei_block, shift); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5325 | err = ext4_ext_dirty(handle, inode, path + depth); |
| 5326 | if (err) |
| 5327 | goto out; |
| 5328 | |
| 5329 | /* we are done if current index is not a starting index */ |
| 5330 | if (path[depth].p_idx != EXT_FIRST_INDEX(path[depth].p_hdr)) |
| 5331 | break; |
| 5332 | |
| 5333 | depth--; |
| 5334 | } |
| 5335 | |
| 5336 | out: |
| 5337 | return err; |
| 5338 | } |
| 5339 | |
| 5340 | /* |
| 5341 | * ext4_ext_shift_extents: |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5342 | * All the extents which lies in the range from @start to the last allocated |
| 5343 | * block for the @inode are shifted either towards left or right (depending |
| 5344 | * upon @SHIFT) by @shift blocks. |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5345 | * On success, 0 is returned, error otherwise. |
| 5346 | */ |
| 5347 | static int |
| 5348 | ext4_ext_shift_extents(struct inode *inode, handle_t *handle, |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5349 | ext4_lblk_t start, ext4_lblk_t shift, |
| 5350 | enum SHIFT_DIRECTION SHIFT) |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5351 | { |
| 5352 | struct ext4_ext_path *path; |
| 5353 | int ret = 0, depth; |
| 5354 | struct ext4_extent *extent; |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5355 | ext4_lblk_t stop, *iterator, ex_start, ex_end; |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5356 | |
| 5357 | /* Let path point to the last extent */ |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 5358 | path = ext4_find_extent(inode, EXT_MAX_BLOCKS - 1, NULL, 0); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5359 | if (IS_ERR(path)) |
| 5360 | return PTR_ERR(path); |
| 5361 | |
| 5362 | depth = path->p_depth; |
| 5363 | extent = path[depth].p_ext; |
Theodore Ts'o | ee4bd0d9 | 2014-09-01 14:41:09 -0400 | [diff] [blame] | 5364 | if (!extent) |
| 5365 | goto out; |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5366 | |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5367 | stop = le32_to_cpu(extent->ee_block) + |
Zheng Liu | 847c6c4 | 2014-04-12 12:45:55 -0400 | [diff] [blame] | 5368 | ext4_ext_get_actual_len(extent); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5369 | |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5370 | /* |
| 5371 | * In case of left shift, Don't start shifting extents until we make |
| 5372 | * sure the hole is big enough to accommodate the shift. |
| 5373 | */ |
| 5374 | if (SHIFT == SHIFT_LEFT) { |
| 5375 | path = ext4_find_extent(inode, start - 1, &path, 0); |
| 5376 | if (IS_ERR(path)) |
| 5377 | return PTR_ERR(path); |
| 5378 | depth = path->p_depth; |
| 5379 | extent = path[depth].p_ext; |
| 5380 | if (extent) { |
| 5381 | ex_start = le32_to_cpu(extent->ee_block); |
| 5382 | ex_end = le32_to_cpu(extent->ee_block) + |
| 5383 | ext4_ext_get_actual_len(extent); |
| 5384 | } else { |
| 5385 | ex_start = 0; |
| 5386 | ex_end = 0; |
| 5387 | } |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5388 | |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5389 | if ((start == ex_start && shift > ex_start) || |
| 5390 | (shift > start - ex_end)) { |
| 5391 | ext4_ext_drop_refs(path); |
| 5392 | kfree(path); |
| 5393 | return -EINVAL; |
| 5394 | } |
Dmitry Monakhov | 8dc79ec | 2014-04-13 15:05:42 -0400 | [diff] [blame] | 5395 | } |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5396 | |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5397 | /* |
| 5398 | * In case of left shift, iterator points to start and it is increased |
| 5399 | * till we reach stop. In case of right shift, iterator points to stop |
| 5400 | * and it is decreased till we reach start. |
| 5401 | */ |
| 5402 | if (SHIFT == SHIFT_LEFT) |
| 5403 | iterator = &start; |
| 5404 | else |
| 5405 | iterator = &stop; |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5406 | |
| 5407 | /* Its safe to start updating extents */ |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5408 | while (start < stop) { |
| 5409 | path = ext4_find_extent(inode, *iterator, &path, 0); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5410 | if (IS_ERR(path)) |
| 5411 | return PTR_ERR(path); |
| 5412 | depth = path->p_depth; |
| 5413 | extent = path[depth].p_ext; |
Dmitry Monakhov | a18ed35 | 2014-04-13 15:41:13 -0400 | [diff] [blame] | 5414 | if (!extent) { |
| 5415 | EXT4_ERROR_INODE(inode, "unexpected hole at %lu", |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5416 | (unsigned long) *iterator); |
Dmitry Monakhov | a18ed35 | 2014-04-13 15:41:13 -0400 | [diff] [blame] | 5417 | return -EIO; |
| 5418 | } |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5419 | if (SHIFT == SHIFT_LEFT && *iterator > |
| 5420 | le32_to_cpu(extent->ee_block)) { |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5421 | /* Hole, move to the next extent */ |
Dmitry Monakhov | f8fb4f4 | 2014-08-30 23:50:56 -0400 | [diff] [blame] | 5422 | if (extent < EXT_LAST_EXTENT(path[depth].p_hdr)) { |
| 5423 | path[depth].p_ext++; |
| 5424 | } else { |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5425 | *iterator = ext4_ext_next_allocated_block(path); |
Dmitry Monakhov | f8fb4f4 | 2014-08-30 23:50:56 -0400 | [diff] [blame] | 5426 | continue; |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5427 | } |
| 5428 | } |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5429 | |
| 5430 | if (SHIFT == SHIFT_LEFT) { |
| 5431 | extent = EXT_LAST_EXTENT(path[depth].p_hdr); |
| 5432 | *iterator = le32_to_cpu(extent->ee_block) + |
| 5433 | ext4_ext_get_actual_len(extent); |
| 5434 | } else { |
| 5435 | extent = EXT_FIRST_EXTENT(path[depth].p_hdr); |
| 5436 | *iterator = le32_to_cpu(extent->ee_block) > 0 ? |
| 5437 | le32_to_cpu(extent->ee_block) - 1 : 0; |
| 5438 | /* Update path extent in case we need to stop */ |
| 5439 | while (le32_to_cpu(extent->ee_block) < start) |
| 5440 | extent++; |
| 5441 | path[depth].p_ext = extent; |
| 5442 | } |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5443 | ret = ext4_ext_shift_path_extents(path, shift, inode, |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5444 | handle, SHIFT); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5445 | if (ret) |
| 5446 | break; |
| 5447 | } |
Theodore Ts'o | ee4bd0d9 | 2014-09-01 14:41:09 -0400 | [diff] [blame] | 5448 | out: |
| 5449 | ext4_ext_drop_refs(path); |
| 5450 | kfree(path); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5451 | return ret; |
| 5452 | } |
| 5453 | |
| 5454 | /* |
| 5455 | * ext4_collapse_range: |
| 5456 | * This implements the fallocate's collapse range functionality for ext4 |
| 5457 | * Returns: 0 and non-zero on error. |
| 5458 | */ |
| 5459 | int ext4_collapse_range(struct inode *inode, loff_t offset, loff_t len) |
| 5460 | { |
| 5461 | struct super_block *sb = inode->i_sb; |
| 5462 | ext4_lblk_t punch_start, punch_stop; |
| 5463 | handle_t *handle; |
| 5464 | unsigned int credits; |
Namjae Jeon | a8680e0 | 2014-04-19 16:37:31 -0400 | [diff] [blame] | 5465 | loff_t new_size, ioffset; |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5466 | int ret; |
| 5467 | |
Theodore Ts'o | b9576fc | 2015-05-15 00:24:10 -0400 | [diff] [blame] | 5468 | /* |
| 5469 | * We need to test this early because xfstests assumes that a |
| 5470 | * collapse range of (0, 1) will return EOPNOTSUPP if the file |
| 5471 | * system does not support collapse range. |
| 5472 | */ |
| 5473 | if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) |
| 5474 | return -EOPNOTSUPP; |
| 5475 | |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5476 | /* Collapse range works only on fs block size aligned offsets. */ |
Namjae Jeon | ee98fa3 | 2014-07-29 10:45:31 -0400 | [diff] [blame] | 5477 | if (offset & (EXT4_CLUSTER_SIZE(sb) - 1) || |
| 5478 | len & (EXT4_CLUSTER_SIZE(sb) - 1)) |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5479 | return -EINVAL; |
| 5480 | |
| 5481 | if (!S_ISREG(inode->i_mode)) |
Theodore Ts'o | 86f1ca3 | 2014-04-18 11:52:11 -0400 | [diff] [blame] | 5482 | return -EINVAL; |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5483 | |
| 5484 | trace_ext4_collapse_range(inode, offset, len); |
| 5485 | |
| 5486 | punch_start = offset >> EXT4_BLOCK_SIZE_BITS(sb); |
| 5487 | punch_stop = (offset + len) >> EXT4_BLOCK_SIZE_BITS(sb); |
| 5488 | |
Namjae Jeon | 1ce01c4 | 2014-04-10 22:58:20 -0400 | [diff] [blame] | 5489 | /* Call ext4_force_commit to flush all data in case of data=journal. */ |
| 5490 | if (ext4_should_journal_data(inode)) { |
| 5491 | ret = ext4_force_commit(inode->i_sb); |
| 5492 | if (ret) |
| 5493 | return ret; |
| 5494 | } |
| 5495 | |
Namjae Jeon | a8680e0 | 2014-04-19 16:37:31 -0400 | [diff] [blame] | 5496 | /* |
| 5497 | * Need to round down offset to be aligned with page size boundary |
| 5498 | * for page size > block size. |
| 5499 | */ |
| 5500 | ioffset = round_down(offset, PAGE_SIZE); |
| 5501 | |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5502 | /* Write out all dirty pages */ |
Namjae Jeon | a8680e0 | 2014-04-19 16:37:31 -0400 | [diff] [blame] | 5503 | ret = filemap_write_and_wait_range(inode->i_mapping, ioffset, |
| 5504 | LLONG_MAX); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5505 | if (ret) |
| 5506 | return ret; |
| 5507 | |
| 5508 | /* Take mutex lock */ |
| 5509 | mutex_lock(&inode->i_mutex); |
| 5510 | |
Lukas Czerner | 23fffa9 | 2014-04-12 09:56:41 -0400 | [diff] [blame] | 5511 | /* |
| 5512 | * There is no need to overlap collapse range with EOF, in which case |
| 5513 | * it is effectively a truncate operation |
| 5514 | */ |
| 5515 | if (offset + len >= i_size_read(inode)) { |
| 5516 | ret = -EINVAL; |
| 5517 | goto out_mutex; |
| 5518 | } |
| 5519 | |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5520 | /* Currently just for extent based files */ |
| 5521 | if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { |
| 5522 | ret = -EOPNOTSUPP; |
| 5523 | goto out_mutex; |
| 5524 | } |
| 5525 | |
Namjae Jeon | a8680e0 | 2014-04-19 16:37:31 -0400 | [diff] [blame] | 5526 | truncate_pagecache(inode, ioffset); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5527 | |
| 5528 | /* Wait for existing dio to complete */ |
| 5529 | ext4_inode_block_unlocked_dio(inode); |
| 5530 | inode_dio_wait(inode); |
| 5531 | |
| 5532 | credits = ext4_writepage_trans_blocks(inode); |
| 5533 | handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); |
| 5534 | if (IS_ERR(handle)) { |
| 5535 | ret = PTR_ERR(handle); |
| 5536 | goto out_dio; |
| 5537 | } |
| 5538 | |
| 5539 | down_write(&EXT4_I(inode)->i_data_sem); |
| 5540 | ext4_discard_preallocations(inode); |
| 5541 | |
| 5542 | ret = ext4_es_remove_extent(inode, punch_start, |
Lukas Czerner | 2c1d232 | 2014-04-18 10:43:21 -0400 | [diff] [blame] | 5543 | EXT_MAX_BLOCKS - punch_start); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5544 | if (ret) { |
| 5545 | up_write(&EXT4_I(inode)->i_data_sem); |
| 5546 | goto out_stop; |
| 5547 | } |
| 5548 | |
| 5549 | ret = ext4_ext_remove_space(inode, punch_start, punch_stop - 1); |
| 5550 | if (ret) { |
| 5551 | up_write(&EXT4_I(inode)->i_data_sem); |
| 5552 | goto out_stop; |
| 5553 | } |
Lukas Czerner | ef24f6c | 2014-04-18 10:50:23 -0400 | [diff] [blame] | 5554 | ext4_discard_preallocations(inode); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5555 | |
| 5556 | ret = ext4_ext_shift_extents(inode, handle, punch_stop, |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5557 | punch_stop - punch_start, SHIFT_LEFT); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5558 | if (ret) { |
| 5559 | up_write(&EXT4_I(inode)->i_data_sem); |
| 5560 | goto out_stop; |
| 5561 | } |
| 5562 | |
| 5563 | new_size = i_size_read(inode) - len; |
Lukas Czerner | 9337d5d | 2014-04-18 10:48:25 -0400 | [diff] [blame] | 5564 | i_size_write(inode, new_size); |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5565 | EXT4_I(inode)->i_disksize = new_size; |
| 5566 | |
Namjae Jeon | 9eb7948 | 2014-02-23 15:18:59 -0500 | [diff] [blame] | 5567 | up_write(&EXT4_I(inode)->i_data_sem); |
| 5568 | if (IS_SYNC(inode)) |
| 5569 | ext4_handle_sync(handle); |
| 5570 | inode->i_mtime = inode->i_ctime = ext4_current_time(inode); |
| 5571 | ext4_mark_inode_dirty(handle, inode); |
| 5572 | |
| 5573 | out_stop: |
| 5574 | ext4_journal_stop(handle); |
| 5575 | out_dio: |
| 5576 | ext4_inode_resume_unlocked_dio(inode); |
| 5577 | out_mutex: |
| 5578 | mutex_unlock(&inode->i_mutex); |
| 5579 | return ret; |
| 5580 | } |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5581 | |
Namjae Jeon | 331573f | 2015-06-09 01:55:03 -0400 | [diff] [blame] | 5582 | /* |
| 5583 | * ext4_insert_range: |
| 5584 | * This function implements the FALLOC_FL_INSERT_RANGE flag of fallocate. |
| 5585 | * The data blocks starting from @offset to the EOF are shifted by @len |
| 5586 | * towards right to create a hole in the @inode. Inode size is increased |
| 5587 | * by len bytes. |
| 5588 | * Returns 0 on success, error otherwise. |
| 5589 | */ |
| 5590 | int ext4_insert_range(struct inode *inode, loff_t offset, loff_t len) |
| 5591 | { |
| 5592 | struct super_block *sb = inode->i_sb; |
| 5593 | handle_t *handle; |
| 5594 | struct ext4_ext_path *path; |
| 5595 | struct ext4_extent *extent; |
| 5596 | ext4_lblk_t offset_lblk, len_lblk, ee_start_lblk = 0; |
| 5597 | unsigned int credits, ee_len; |
| 5598 | int ret = 0, depth, split_flag = 0; |
| 5599 | loff_t ioffset; |
| 5600 | |
| 5601 | /* |
| 5602 | * We need to test this early because xfstests assumes that an |
| 5603 | * insert range of (0, 1) will return EOPNOTSUPP if the file |
| 5604 | * system does not support insert range. |
| 5605 | */ |
| 5606 | if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) |
| 5607 | return -EOPNOTSUPP; |
| 5608 | |
| 5609 | /* Insert range works only on fs block size aligned offsets. */ |
| 5610 | if (offset & (EXT4_CLUSTER_SIZE(sb) - 1) || |
| 5611 | len & (EXT4_CLUSTER_SIZE(sb) - 1)) |
| 5612 | return -EINVAL; |
| 5613 | |
| 5614 | if (!S_ISREG(inode->i_mode)) |
| 5615 | return -EOPNOTSUPP; |
| 5616 | |
| 5617 | trace_ext4_insert_range(inode, offset, len); |
| 5618 | |
| 5619 | offset_lblk = offset >> EXT4_BLOCK_SIZE_BITS(sb); |
| 5620 | len_lblk = len >> EXT4_BLOCK_SIZE_BITS(sb); |
| 5621 | |
| 5622 | /* Call ext4_force_commit to flush all data in case of data=journal */ |
| 5623 | if (ext4_should_journal_data(inode)) { |
| 5624 | ret = ext4_force_commit(inode->i_sb); |
| 5625 | if (ret) |
| 5626 | return ret; |
| 5627 | } |
| 5628 | |
| 5629 | /* |
| 5630 | * Need to round down to align start offset to page size boundary |
| 5631 | * for page size > block size. |
| 5632 | */ |
| 5633 | ioffset = round_down(offset, PAGE_SIZE); |
| 5634 | |
| 5635 | /* Write out all dirty pages */ |
| 5636 | ret = filemap_write_and_wait_range(inode->i_mapping, ioffset, |
| 5637 | LLONG_MAX); |
| 5638 | if (ret) |
| 5639 | return ret; |
| 5640 | |
| 5641 | /* Take mutex lock */ |
| 5642 | mutex_lock(&inode->i_mutex); |
| 5643 | |
| 5644 | /* Currently just for extent based files */ |
| 5645 | if (!ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS)) { |
| 5646 | ret = -EOPNOTSUPP; |
| 5647 | goto out_mutex; |
| 5648 | } |
| 5649 | |
| 5650 | /* Check for wrap through zero */ |
| 5651 | if (inode->i_size + len > inode->i_sb->s_maxbytes) { |
| 5652 | ret = -EFBIG; |
| 5653 | goto out_mutex; |
| 5654 | } |
| 5655 | |
| 5656 | /* Offset should be less than i_size */ |
| 5657 | if (offset >= i_size_read(inode)) { |
| 5658 | ret = -EINVAL; |
| 5659 | goto out_mutex; |
| 5660 | } |
| 5661 | |
| 5662 | truncate_pagecache(inode, ioffset); |
| 5663 | |
| 5664 | /* Wait for existing dio to complete */ |
| 5665 | ext4_inode_block_unlocked_dio(inode); |
| 5666 | inode_dio_wait(inode); |
| 5667 | |
| 5668 | credits = ext4_writepage_trans_blocks(inode); |
| 5669 | handle = ext4_journal_start(inode, EXT4_HT_TRUNCATE, credits); |
| 5670 | if (IS_ERR(handle)) { |
| 5671 | ret = PTR_ERR(handle); |
| 5672 | goto out_dio; |
| 5673 | } |
| 5674 | |
| 5675 | /* Expand file to avoid data loss if there is error while shifting */ |
| 5676 | inode->i_size += len; |
| 5677 | EXT4_I(inode)->i_disksize += len; |
| 5678 | inode->i_mtime = inode->i_ctime = ext4_current_time(inode); |
| 5679 | ret = ext4_mark_inode_dirty(handle, inode); |
| 5680 | if (ret) |
| 5681 | goto out_stop; |
| 5682 | |
| 5683 | down_write(&EXT4_I(inode)->i_data_sem); |
| 5684 | ext4_discard_preallocations(inode); |
| 5685 | |
| 5686 | path = ext4_find_extent(inode, offset_lblk, NULL, 0); |
| 5687 | if (IS_ERR(path)) { |
| 5688 | up_write(&EXT4_I(inode)->i_data_sem); |
| 5689 | goto out_stop; |
| 5690 | } |
| 5691 | |
| 5692 | depth = ext_depth(inode); |
| 5693 | extent = path[depth].p_ext; |
| 5694 | if (extent) { |
| 5695 | ee_start_lblk = le32_to_cpu(extent->ee_block); |
| 5696 | ee_len = ext4_ext_get_actual_len(extent); |
| 5697 | |
| 5698 | /* |
| 5699 | * If offset_lblk is not the starting block of extent, split |
| 5700 | * the extent @offset_lblk |
| 5701 | */ |
| 5702 | if ((offset_lblk > ee_start_lblk) && |
| 5703 | (offset_lblk < (ee_start_lblk + ee_len))) { |
| 5704 | if (ext4_ext_is_unwritten(extent)) |
| 5705 | split_flag = EXT4_EXT_MARK_UNWRIT1 | |
| 5706 | EXT4_EXT_MARK_UNWRIT2; |
| 5707 | ret = ext4_split_extent_at(handle, inode, &path, |
| 5708 | offset_lblk, split_flag, |
| 5709 | EXT4_EX_NOCACHE | |
| 5710 | EXT4_GET_BLOCKS_PRE_IO | |
| 5711 | EXT4_GET_BLOCKS_METADATA_NOFAIL); |
| 5712 | } |
| 5713 | |
| 5714 | ext4_ext_drop_refs(path); |
| 5715 | kfree(path); |
| 5716 | if (ret < 0) { |
| 5717 | up_write(&EXT4_I(inode)->i_data_sem); |
| 5718 | goto out_stop; |
| 5719 | } |
| 5720 | } |
| 5721 | |
| 5722 | ret = ext4_es_remove_extent(inode, offset_lblk, |
| 5723 | EXT_MAX_BLOCKS - offset_lblk); |
| 5724 | if (ret) { |
| 5725 | up_write(&EXT4_I(inode)->i_data_sem); |
| 5726 | goto out_stop; |
| 5727 | } |
| 5728 | |
| 5729 | /* |
| 5730 | * if offset_lblk lies in a hole which is at start of file, use |
| 5731 | * ee_start_lblk to shift extents |
| 5732 | */ |
| 5733 | ret = ext4_ext_shift_extents(inode, handle, |
| 5734 | ee_start_lblk > offset_lblk ? ee_start_lblk : offset_lblk, |
| 5735 | len_lblk, SHIFT_RIGHT); |
| 5736 | |
| 5737 | up_write(&EXT4_I(inode)->i_data_sem); |
| 5738 | if (IS_SYNC(inode)) |
| 5739 | ext4_handle_sync(handle); |
| 5740 | |
| 5741 | out_stop: |
| 5742 | ext4_journal_stop(handle); |
| 5743 | out_dio: |
| 5744 | ext4_inode_resume_unlocked_dio(inode); |
| 5745 | out_mutex: |
| 5746 | mutex_unlock(&inode->i_mutex); |
| 5747 | return ret; |
| 5748 | } |
| 5749 | |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5750 | /** |
| 5751 | * ext4_swap_extents - Swap extents between two inodes |
| 5752 | * |
| 5753 | * @inode1: First inode |
| 5754 | * @inode2: Second inode |
| 5755 | * @lblk1: Start block for first inode |
| 5756 | * @lblk2: Start block for second inode |
| 5757 | * @count: Number of blocks to swap |
| 5758 | * @mark_unwritten: Mark second inode's extents as unwritten after swap |
| 5759 | * @erp: Pointer to save error value |
| 5760 | * |
| 5761 | * This helper routine does exactly what is promise "swap extents". All other |
| 5762 | * stuff such as page-cache locking consistency, bh mapping consistency or |
| 5763 | * extent's data copying must be performed by caller. |
| 5764 | * Locking: |
| 5765 | * i_mutex is held for both inodes |
| 5766 | * i_data_sem is locked for write for both inodes |
| 5767 | * Assumptions: |
| 5768 | * All pages from requested range are locked for both inodes |
| 5769 | */ |
| 5770 | int |
| 5771 | ext4_swap_extents(handle_t *handle, struct inode *inode1, |
| 5772 | struct inode *inode2, ext4_lblk_t lblk1, ext4_lblk_t lblk2, |
| 5773 | ext4_lblk_t count, int unwritten, int *erp) |
| 5774 | { |
| 5775 | struct ext4_ext_path *path1 = NULL; |
| 5776 | struct ext4_ext_path *path2 = NULL; |
| 5777 | int replaced_count = 0; |
| 5778 | |
| 5779 | BUG_ON(!rwsem_is_locked(&EXT4_I(inode1)->i_data_sem)); |
| 5780 | BUG_ON(!rwsem_is_locked(&EXT4_I(inode2)->i_data_sem)); |
| 5781 | BUG_ON(!mutex_is_locked(&inode1->i_mutex)); |
David Moore | 8bc3b1e | 2015-06-08 11:59:12 -0400 | [diff] [blame] | 5782 | BUG_ON(!mutex_is_locked(&inode2->i_mutex)); |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5783 | |
| 5784 | *erp = ext4_es_remove_extent(inode1, lblk1, count); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5785 | if (unlikely(*erp)) |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5786 | return 0; |
| 5787 | *erp = ext4_es_remove_extent(inode2, lblk2, count); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5788 | if (unlikely(*erp)) |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5789 | return 0; |
| 5790 | |
| 5791 | while (count) { |
| 5792 | struct ext4_extent *ex1, *ex2, tmp_ex; |
| 5793 | ext4_lblk_t e1_blk, e2_blk; |
| 5794 | int e1_len, e2_len, len; |
| 5795 | int split = 0; |
| 5796 | |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 5797 | path1 = ext4_find_extent(inode1, lblk1, NULL, EXT4_EX_NOCACHE); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5798 | if (unlikely(IS_ERR(path1))) { |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5799 | *erp = PTR_ERR(path1); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5800 | path1 = NULL; |
| 5801 | finish: |
| 5802 | count = 0; |
| 5803 | goto repeat; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5804 | } |
Theodore Ts'o | ed8a1a7 | 2014-09-01 14:43:09 -0400 | [diff] [blame] | 5805 | path2 = ext4_find_extent(inode2, lblk2, NULL, EXT4_EX_NOCACHE); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5806 | if (unlikely(IS_ERR(path2))) { |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5807 | *erp = PTR_ERR(path2); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5808 | path2 = NULL; |
| 5809 | goto finish; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5810 | } |
| 5811 | ex1 = path1[path1->p_depth].p_ext; |
| 5812 | ex2 = path2[path2->p_depth].p_ext; |
| 5813 | /* Do we have somthing to swap ? */ |
| 5814 | if (unlikely(!ex2 || !ex1)) |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5815 | goto finish; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5816 | |
| 5817 | e1_blk = le32_to_cpu(ex1->ee_block); |
| 5818 | e2_blk = le32_to_cpu(ex2->ee_block); |
| 5819 | e1_len = ext4_ext_get_actual_len(ex1); |
| 5820 | e2_len = ext4_ext_get_actual_len(ex2); |
| 5821 | |
| 5822 | /* Hole handling */ |
| 5823 | if (!in_range(lblk1, e1_blk, e1_len) || |
| 5824 | !in_range(lblk2, e2_blk, e2_len)) { |
| 5825 | ext4_lblk_t next1, next2; |
| 5826 | |
| 5827 | /* if hole after extent, then go to next extent */ |
| 5828 | next1 = ext4_ext_next_allocated_block(path1); |
| 5829 | next2 = ext4_ext_next_allocated_block(path2); |
| 5830 | /* If hole before extent, then shift to that extent */ |
| 5831 | if (e1_blk > lblk1) |
| 5832 | next1 = e1_blk; |
| 5833 | if (e2_blk > lblk2) |
| 5834 | next2 = e1_blk; |
| 5835 | /* Do we have something to swap */ |
| 5836 | if (next1 == EXT_MAX_BLOCKS || next2 == EXT_MAX_BLOCKS) |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5837 | goto finish; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5838 | /* Move to the rightest boundary */ |
| 5839 | len = next1 - lblk1; |
| 5840 | if (len < next2 - lblk2) |
| 5841 | len = next2 - lblk2; |
| 5842 | if (len > count) |
| 5843 | len = count; |
| 5844 | lblk1 += len; |
| 5845 | lblk2 += len; |
| 5846 | count -= len; |
| 5847 | goto repeat; |
| 5848 | } |
| 5849 | |
| 5850 | /* Prepare left boundary */ |
| 5851 | if (e1_blk < lblk1) { |
| 5852 | split = 1; |
| 5853 | *erp = ext4_force_split_extent_at(handle, inode1, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 5854 | &path1, lblk1, 0); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5855 | if (unlikely(*erp)) |
| 5856 | goto finish; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5857 | } |
| 5858 | if (e2_blk < lblk2) { |
| 5859 | split = 1; |
| 5860 | *erp = ext4_force_split_extent_at(handle, inode2, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 5861 | &path2, lblk2, 0); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5862 | if (unlikely(*erp)) |
| 5863 | goto finish; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5864 | } |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 5865 | /* ext4_split_extent_at() may result in leaf extent split, |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5866 | * path must to be revalidated. */ |
| 5867 | if (split) |
| 5868 | goto repeat; |
| 5869 | |
| 5870 | /* Prepare right boundary */ |
| 5871 | len = count; |
| 5872 | if (len > e1_blk + e1_len - lblk1) |
| 5873 | len = e1_blk + e1_len - lblk1; |
| 5874 | if (len > e2_blk + e2_len - lblk2) |
| 5875 | len = e2_blk + e2_len - lblk2; |
| 5876 | |
| 5877 | if (len != e1_len) { |
| 5878 | split = 1; |
| 5879 | *erp = ext4_force_split_extent_at(handle, inode1, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 5880 | &path1, lblk1 + len, 0); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5881 | if (unlikely(*erp)) |
| 5882 | goto finish; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5883 | } |
| 5884 | if (len != e2_len) { |
| 5885 | split = 1; |
| 5886 | *erp = ext4_force_split_extent_at(handle, inode2, |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 5887 | &path2, lblk2 + len, 0); |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5888 | if (*erp) |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5889 | goto finish; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5890 | } |
Theodore Ts'o | dfe5080 | 2014-09-01 14:37:09 -0400 | [diff] [blame] | 5891 | /* ext4_split_extent_at() may result in leaf extent split, |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5892 | * path must to be revalidated. */ |
| 5893 | if (split) |
| 5894 | goto repeat; |
| 5895 | |
| 5896 | BUG_ON(e2_len != e1_len); |
| 5897 | *erp = ext4_ext_get_access(handle, inode1, path1 + path1->p_depth); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5898 | if (unlikely(*erp)) |
| 5899 | goto finish; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5900 | *erp = ext4_ext_get_access(handle, inode2, path2 + path2->p_depth); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5901 | if (unlikely(*erp)) |
| 5902 | goto finish; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5903 | |
| 5904 | /* Both extents are fully inside boundaries. Swap it now */ |
| 5905 | tmp_ex = *ex1; |
| 5906 | ext4_ext_store_pblock(ex1, ext4_ext_pblock(ex2)); |
| 5907 | ext4_ext_store_pblock(ex2, ext4_ext_pblock(&tmp_ex)); |
| 5908 | ex1->ee_len = cpu_to_le16(e2_len); |
| 5909 | ex2->ee_len = cpu_to_le16(e1_len); |
| 5910 | if (unwritten) |
| 5911 | ext4_ext_mark_unwritten(ex2); |
| 5912 | if (ext4_ext_is_unwritten(&tmp_ex)) |
| 5913 | ext4_ext_mark_unwritten(ex1); |
| 5914 | |
| 5915 | ext4_ext_try_to_merge(handle, inode2, path2, ex2); |
| 5916 | ext4_ext_try_to_merge(handle, inode1, path1, ex1); |
| 5917 | *erp = ext4_ext_dirty(handle, inode2, path2 + |
| 5918 | path2->p_depth); |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5919 | if (unlikely(*erp)) |
| 5920 | goto finish; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5921 | *erp = ext4_ext_dirty(handle, inode1, path1 + |
| 5922 | path1->p_depth); |
| 5923 | /* |
| 5924 | * Looks scarry ah..? second inode already points to new blocks, |
| 5925 | * and it was successfully dirtied. But luckily error may happen |
| 5926 | * only due to journal error, so full transaction will be |
| 5927 | * aborted anyway. |
| 5928 | */ |
Theodore Ts'o | 19008f6 | 2014-08-31 15:03:14 -0400 | [diff] [blame] | 5929 | if (unlikely(*erp)) |
| 5930 | goto finish; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5931 | lblk1 += len; |
| 5932 | lblk2 += len; |
| 5933 | replaced_count += len; |
| 5934 | count -= len; |
| 5935 | |
| 5936 | repeat: |
Theodore Ts'o | b7ea89a | 2014-09-01 14:39:09 -0400 | [diff] [blame] | 5937 | ext4_ext_drop_refs(path1); |
| 5938 | kfree(path1); |
| 5939 | ext4_ext_drop_refs(path2); |
| 5940 | kfree(path2); |
| 5941 | path1 = path2 = NULL; |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5942 | } |
Dmitry Monakhov | fcf6b1b7 | 2014-08-30 23:52:19 -0400 | [diff] [blame] | 5943 | return replaced_count; |
| 5944 | } |