1dae1e52cSAmir Goldstein /* 2dae1e52cSAmir Goldstein * linux/fs/ext4/indirect.c 3dae1e52cSAmir Goldstein * 4dae1e52cSAmir Goldstein * from 5dae1e52cSAmir Goldstein * 6dae1e52cSAmir Goldstein * linux/fs/ext4/inode.c 7dae1e52cSAmir Goldstein * 8dae1e52cSAmir Goldstein * Copyright (C) 1992, 1993, 1994, 1995 9dae1e52cSAmir Goldstein * Remy Card (card@masi.ibp.fr) 10dae1e52cSAmir Goldstein * Laboratoire MASI - Institut Blaise Pascal 11dae1e52cSAmir Goldstein * Universite Pierre et Marie Curie (Paris VI) 12dae1e52cSAmir Goldstein * 13dae1e52cSAmir Goldstein * from 14dae1e52cSAmir Goldstein * 15dae1e52cSAmir Goldstein * linux/fs/minix/inode.c 16dae1e52cSAmir Goldstein * 17dae1e52cSAmir Goldstein * Copyright (C) 1991, 1992 Linus Torvalds 18dae1e52cSAmir Goldstein * 19dae1e52cSAmir Goldstein * Goal-directed block allocation by Stephen Tweedie 20dae1e52cSAmir Goldstein * (sct@redhat.com), 1993, 1998 21dae1e52cSAmir Goldstein */ 22dae1e52cSAmir Goldstein 23dae1e52cSAmir Goldstein #include "ext4_jbd2.h" 24dae1e52cSAmir Goldstein #include "truncate.h" 254a092d73STheodore Ts'o #include "ext4_extents.h" /* Needed for EXT_MAX_BLOCKS */ 26dae1e52cSAmir Goldstein 27dae1e52cSAmir Goldstein #include <trace/events/ext4.h> 28dae1e52cSAmir Goldstein 29dae1e52cSAmir Goldstein typedef struct { 30dae1e52cSAmir Goldstein __le32 *p; 31dae1e52cSAmir Goldstein __le32 key; 32dae1e52cSAmir Goldstein struct buffer_head *bh; 33dae1e52cSAmir Goldstein } Indirect; 34dae1e52cSAmir Goldstein 35dae1e52cSAmir Goldstein static inline void add_chain(Indirect *p, struct buffer_head *bh, __le32 *v) 36dae1e52cSAmir Goldstein { 37dae1e52cSAmir Goldstein p->key = *(p->p = v); 38dae1e52cSAmir Goldstein p->bh = bh; 39dae1e52cSAmir Goldstein } 40dae1e52cSAmir Goldstein 41dae1e52cSAmir Goldstein /** 42dae1e52cSAmir Goldstein * ext4_block_to_path - parse the block number into array of offsets 43dae1e52cSAmir Goldstein * @inode: inode in question (we are only interested in its superblock) 44dae1e52cSAmir Goldstein * @i_block: block number to be parsed 45dae1e52cSAmir Goldstein * @offsets: array to store the offsets in 46dae1e52cSAmir Goldstein * @boundary: set this non-zero if the referred-to block is likely to be 47dae1e52cSAmir Goldstein * followed (on disk) by an indirect block. 48dae1e52cSAmir Goldstein * 49dae1e52cSAmir Goldstein * To store the locations of file's data ext4 uses a data structure common 50dae1e52cSAmir Goldstein * for UNIX filesystems - tree of pointers anchored in the inode, with 51dae1e52cSAmir Goldstein * data blocks at leaves and indirect blocks in intermediate nodes. 52dae1e52cSAmir Goldstein * This function translates the block number into path in that tree - 53dae1e52cSAmir Goldstein * return value is the path length and @offsets[n] is the offset of 54dae1e52cSAmir Goldstein * pointer to (n+1)th node in the nth one. If @block is out of range 55dae1e52cSAmir Goldstein * (negative or too large) warning is printed and zero returned. 56dae1e52cSAmir Goldstein * 57dae1e52cSAmir Goldstein * Note: function doesn't find node addresses, so no IO is needed. All 58dae1e52cSAmir Goldstein * we need to know is the capacity of indirect blocks (taken from the 59dae1e52cSAmir Goldstein * inode->i_sb). 60dae1e52cSAmir Goldstein */ 61dae1e52cSAmir Goldstein 62dae1e52cSAmir Goldstein /* 63dae1e52cSAmir Goldstein * Portability note: the last comparison (check that we fit into triple 64dae1e52cSAmir Goldstein * indirect block) is spelled differently, because otherwise on an 65dae1e52cSAmir Goldstein * architecture with 32-bit longs and 8Kb pages we might get into trouble 66dae1e52cSAmir Goldstein * if our filesystem had 8Kb blocks. We might use long long, but that would 67dae1e52cSAmir Goldstein * kill us on x86. Oh, well, at least the sign propagation does not matter - 68dae1e52cSAmir Goldstein * i_block would have to be negative in the very beginning, so we would not 69dae1e52cSAmir Goldstein * get there at all. 70dae1e52cSAmir Goldstein */ 71dae1e52cSAmir Goldstein 72dae1e52cSAmir Goldstein static int ext4_block_to_path(struct inode *inode, 73dae1e52cSAmir Goldstein ext4_lblk_t i_block, 74dae1e52cSAmir Goldstein ext4_lblk_t offsets[4], int *boundary) 75dae1e52cSAmir Goldstein { 76dae1e52cSAmir Goldstein int ptrs = EXT4_ADDR_PER_BLOCK(inode->i_sb); 77dae1e52cSAmir Goldstein int ptrs_bits = EXT4_ADDR_PER_BLOCK_BITS(inode->i_sb); 78dae1e52cSAmir Goldstein const long direct_blocks = EXT4_NDIR_BLOCKS, 79dae1e52cSAmir Goldstein indirect_blocks = ptrs, 80dae1e52cSAmir Goldstein double_blocks = (1 << (ptrs_bits * 2)); 81dae1e52cSAmir Goldstein int n = 0; 82dae1e52cSAmir Goldstein int final = 0; 83dae1e52cSAmir Goldstein 84dae1e52cSAmir Goldstein if (i_block < direct_blocks) { 85dae1e52cSAmir Goldstein offsets[n++] = i_block; 86dae1e52cSAmir Goldstein final = direct_blocks; 87dae1e52cSAmir Goldstein } else if ((i_block -= direct_blocks) < indirect_blocks) { 88dae1e52cSAmir Goldstein offsets[n++] = EXT4_IND_BLOCK; 89dae1e52cSAmir Goldstein offsets[n++] = i_block; 90dae1e52cSAmir Goldstein final = ptrs; 91dae1e52cSAmir Goldstein } else if ((i_block -= indirect_blocks) < double_blocks) { 92dae1e52cSAmir Goldstein offsets[n++] = EXT4_DIND_BLOCK; 93dae1e52cSAmir Goldstein offsets[n++] = i_block >> ptrs_bits; 94dae1e52cSAmir Goldstein offsets[n++] = i_block & (ptrs - 1); 95dae1e52cSAmir Goldstein final = ptrs; 96dae1e52cSAmir Goldstein } else if (((i_block -= double_blocks) >> (ptrs_bits * 2)) < ptrs) { 97dae1e52cSAmir Goldstein offsets[n++] = EXT4_TIND_BLOCK; 98dae1e52cSAmir Goldstein offsets[n++] = i_block >> (ptrs_bits * 2); 99dae1e52cSAmir Goldstein offsets[n++] = (i_block >> ptrs_bits) & (ptrs - 1); 100dae1e52cSAmir Goldstein offsets[n++] = i_block & (ptrs - 1); 101dae1e52cSAmir Goldstein final = ptrs; 102dae1e52cSAmir Goldstein } else { 103dae1e52cSAmir Goldstein ext4_warning(inode->i_sb, "block %lu > max in inode %lu", 104dae1e52cSAmir Goldstein i_block + direct_blocks + 105dae1e52cSAmir Goldstein indirect_blocks + double_blocks, inode->i_ino); 106dae1e52cSAmir Goldstein } 107dae1e52cSAmir Goldstein if (boundary) 108dae1e52cSAmir Goldstein *boundary = final - 1 - (i_block & (ptrs - 1)); 109dae1e52cSAmir Goldstein return n; 110dae1e52cSAmir Goldstein } 111dae1e52cSAmir Goldstein 112dae1e52cSAmir Goldstein /** 113dae1e52cSAmir Goldstein * ext4_get_branch - read the chain of indirect blocks leading to data 114dae1e52cSAmir Goldstein * @inode: inode in question 115dae1e52cSAmir Goldstein * @depth: depth of the chain (1 - direct pointer, etc.) 116dae1e52cSAmir Goldstein * @offsets: offsets of pointers in inode/indirect blocks 117dae1e52cSAmir Goldstein * @chain: place to store the result 118dae1e52cSAmir Goldstein * @err: here we store the error value 119dae1e52cSAmir Goldstein * 120dae1e52cSAmir Goldstein * Function fills the array of triples <key, p, bh> and returns %NULL 121dae1e52cSAmir Goldstein * if everything went OK or the pointer to the last filled triple 122dae1e52cSAmir Goldstein * (incomplete one) otherwise. Upon the return chain[i].key contains 123dae1e52cSAmir Goldstein * the number of (i+1)-th block in the chain (as it is stored in memory, 124dae1e52cSAmir Goldstein * i.e. little-endian 32-bit), chain[i].p contains the address of that 125dae1e52cSAmir Goldstein * number (it points into struct inode for i==0 and into the bh->b_data 126dae1e52cSAmir Goldstein * for i>0) and chain[i].bh points to the buffer_head of i-th indirect 127dae1e52cSAmir Goldstein * block for i>0 and NULL for i==0. In other words, it holds the block 128dae1e52cSAmir Goldstein * numbers of the chain, addresses they were taken from (and where we can 129dae1e52cSAmir Goldstein * verify that chain did not change) and buffer_heads hosting these 130dae1e52cSAmir Goldstein * numbers. 131dae1e52cSAmir Goldstein * 132dae1e52cSAmir Goldstein * Function stops when it stumbles upon zero pointer (absent block) 133dae1e52cSAmir Goldstein * (pointer to last triple returned, *@err == 0) 134dae1e52cSAmir Goldstein * or when it gets an IO error reading an indirect block 135dae1e52cSAmir Goldstein * (ditto, *@err == -EIO) 136dae1e52cSAmir Goldstein * or when it reads all @depth-1 indirect blocks successfully and finds 137dae1e52cSAmir Goldstein * the whole chain, all way to the data (returns %NULL, *err == 0). 138dae1e52cSAmir Goldstein * 139dae1e52cSAmir Goldstein * Need to be called with 140dae1e52cSAmir Goldstein * down_read(&EXT4_I(inode)->i_data_sem) 141dae1e52cSAmir Goldstein */ 142dae1e52cSAmir Goldstein static Indirect *ext4_get_branch(struct inode *inode, int depth, 143dae1e52cSAmir Goldstein ext4_lblk_t *offsets, 144dae1e52cSAmir Goldstein Indirect chain[4], int *err) 145dae1e52cSAmir Goldstein { 146dae1e52cSAmir Goldstein struct super_block *sb = inode->i_sb; 147dae1e52cSAmir Goldstein Indirect *p = chain; 148dae1e52cSAmir Goldstein struct buffer_head *bh; 149860d21e2STheodore Ts'o int ret = -EIO; 150dae1e52cSAmir Goldstein 151dae1e52cSAmir Goldstein *err = 0; 152dae1e52cSAmir Goldstein /* i_data is not going away, no lock needed */ 153dae1e52cSAmir Goldstein add_chain(chain, NULL, EXT4_I(inode)->i_data + *offsets); 154dae1e52cSAmir Goldstein if (!p->key) 155dae1e52cSAmir Goldstein goto no_block; 156dae1e52cSAmir Goldstein while (--depth) { 157dae1e52cSAmir Goldstein bh = sb_getblk(sb, le32_to_cpu(p->key)); 158860d21e2STheodore Ts'o if (unlikely(!bh)) { 159860d21e2STheodore Ts'o ret = -ENOMEM; 160dae1e52cSAmir Goldstein goto failure; 161860d21e2STheodore Ts'o } 162dae1e52cSAmir Goldstein 163dae1e52cSAmir Goldstein if (!bh_uptodate_or_lock(bh)) { 164dae1e52cSAmir Goldstein if (bh_submit_read(bh) < 0) { 165dae1e52cSAmir Goldstein put_bh(bh); 166dae1e52cSAmir Goldstein goto failure; 167dae1e52cSAmir Goldstein } 168dae1e52cSAmir Goldstein /* validate block references */ 169dae1e52cSAmir Goldstein if (ext4_check_indirect_blockref(inode, bh)) { 170dae1e52cSAmir Goldstein put_bh(bh); 171dae1e52cSAmir Goldstein goto failure; 172dae1e52cSAmir Goldstein } 173dae1e52cSAmir Goldstein } 174dae1e52cSAmir Goldstein 175dae1e52cSAmir Goldstein add_chain(++p, bh, (__le32 *)bh->b_data + *++offsets); 176dae1e52cSAmir Goldstein /* Reader: end */ 177dae1e52cSAmir Goldstein if (!p->key) 178dae1e52cSAmir Goldstein goto no_block; 179dae1e52cSAmir Goldstein } 180dae1e52cSAmir Goldstein return NULL; 181dae1e52cSAmir Goldstein 182dae1e52cSAmir Goldstein failure: 183860d21e2STheodore Ts'o *err = ret; 184dae1e52cSAmir Goldstein no_block: 185dae1e52cSAmir Goldstein return p; 186dae1e52cSAmir Goldstein } 187dae1e52cSAmir Goldstein 188dae1e52cSAmir Goldstein /** 189dae1e52cSAmir Goldstein * ext4_find_near - find a place for allocation with sufficient locality 190dae1e52cSAmir Goldstein * @inode: owner 191dae1e52cSAmir Goldstein * @ind: descriptor of indirect block. 192dae1e52cSAmir Goldstein * 193dae1e52cSAmir Goldstein * This function returns the preferred place for block allocation. 194dae1e52cSAmir Goldstein * It is used when heuristic for sequential allocation fails. 195dae1e52cSAmir Goldstein * Rules are: 196dae1e52cSAmir Goldstein * + if there is a block to the left of our position - allocate near it. 197dae1e52cSAmir Goldstein * + if pointer will live in indirect block - allocate near that block. 198dae1e52cSAmir Goldstein * + if pointer will live in inode - allocate in the same 199dae1e52cSAmir Goldstein * cylinder group. 200dae1e52cSAmir Goldstein * 201dae1e52cSAmir Goldstein * In the latter case we colour the starting block by the callers PID to 202dae1e52cSAmir Goldstein * prevent it from clashing with concurrent allocations for a different inode 203dae1e52cSAmir Goldstein * in the same block group. The PID is used here so that functionally related 204dae1e52cSAmir Goldstein * files will be close-by on-disk. 205dae1e52cSAmir Goldstein * 206dae1e52cSAmir Goldstein * Caller must make sure that @ind is valid and will stay that way. 207dae1e52cSAmir Goldstein */ 208dae1e52cSAmir Goldstein static ext4_fsblk_t ext4_find_near(struct inode *inode, Indirect *ind) 209dae1e52cSAmir Goldstein { 210dae1e52cSAmir Goldstein struct ext4_inode_info *ei = EXT4_I(inode); 211dae1e52cSAmir Goldstein __le32 *start = ind->bh ? (__le32 *) ind->bh->b_data : ei->i_data; 212dae1e52cSAmir Goldstein __le32 *p; 213dae1e52cSAmir Goldstein 214dae1e52cSAmir Goldstein /* Try to find previous block */ 215dae1e52cSAmir Goldstein for (p = ind->p - 1; p >= start; p--) { 216dae1e52cSAmir Goldstein if (*p) 217dae1e52cSAmir Goldstein return le32_to_cpu(*p); 218dae1e52cSAmir Goldstein } 219dae1e52cSAmir Goldstein 220dae1e52cSAmir Goldstein /* No such thing, so let's try location of indirect block */ 221dae1e52cSAmir Goldstein if (ind->bh) 222dae1e52cSAmir Goldstein return ind->bh->b_blocknr; 223dae1e52cSAmir Goldstein 224dae1e52cSAmir Goldstein /* 225dae1e52cSAmir Goldstein * It is going to be referred to from the inode itself? OK, just put it 226dae1e52cSAmir Goldstein * into the same cylinder group then. 227dae1e52cSAmir Goldstein */ 228f86186b4SEric Sandeen return ext4_inode_to_goal_block(inode); 229dae1e52cSAmir Goldstein } 230dae1e52cSAmir Goldstein 231dae1e52cSAmir Goldstein /** 232dae1e52cSAmir Goldstein * ext4_find_goal - find a preferred place for allocation. 233dae1e52cSAmir Goldstein * @inode: owner 234dae1e52cSAmir Goldstein * @block: block we want 235dae1e52cSAmir Goldstein * @partial: pointer to the last triple within a chain 236dae1e52cSAmir Goldstein * 237dae1e52cSAmir Goldstein * Normally this function find the preferred place for block allocation, 238dae1e52cSAmir Goldstein * returns it. 239dae1e52cSAmir Goldstein * Because this is only used for non-extent files, we limit the block nr 240dae1e52cSAmir Goldstein * to 32 bits. 241dae1e52cSAmir Goldstein */ 242dae1e52cSAmir Goldstein static ext4_fsblk_t ext4_find_goal(struct inode *inode, ext4_lblk_t block, 243dae1e52cSAmir Goldstein Indirect *partial) 244dae1e52cSAmir Goldstein { 245dae1e52cSAmir Goldstein ext4_fsblk_t goal; 246dae1e52cSAmir Goldstein 247dae1e52cSAmir Goldstein /* 248dae1e52cSAmir Goldstein * XXX need to get goal block from mballoc's data structures 249dae1e52cSAmir Goldstein */ 250dae1e52cSAmir Goldstein 251dae1e52cSAmir Goldstein goal = ext4_find_near(inode, partial); 252dae1e52cSAmir Goldstein goal = goal & EXT4_MAX_BLOCK_FILE_PHYS; 253dae1e52cSAmir Goldstein return goal; 254dae1e52cSAmir Goldstein } 255dae1e52cSAmir Goldstein 256dae1e52cSAmir Goldstein /** 257dae1e52cSAmir Goldstein * ext4_blks_to_allocate - Look up the block map and count the number 258dae1e52cSAmir Goldstein * of direct blocks need to be allocated for the given branch. 259dae1e52cSAmir Goldstein * 260dae1e52cSAmir Goldstein * @branch: chain of indirect blocks 261dae1e52cSAmir Goldstein * @k: number of blocks need for indirect blocks 262dae1e52cSAmir Goldstein * @blks: number of data blocks to be mapped. 263dae1e52cSAmir Goldstein * @blocks_to_boundary: the offset in the indirect block 264dae1e52cSAmir Goldstein * 265dae1e52cSAmir Goldstein * return the total number of blocks to be allocate, including the 266dae1e52cSAmir Goldstein * direct and indirect blocks. 267dae1e52cSAmir Goldstein */ 268dae1e52cSAmir Goldstein static int ext4_blks_to_allocate(Indirect *branch, int k, unsigned int blks, 269dae1e52cSAmir Goldstein int blocks_to_boundary) 270dae1e52cSAmir Goldstein { 271dae1e52cSAmir Goldstein unsigned int count = 0; 272dae1e52cSAmir Goldstein 273dae1e52cSAmir Goldstein /* 274dae1e52cSAmir Goldstein * Simple case, [t,d]Indirect block(s) has not allocated yet 275dae1e52cSAmir Goldstein * then it's clear blocks on that path have not allocated 276dae1e52cSAmir Goldstein */ 277dae1e52cSAmir Goldstein if (k > 0) { 278dae1e52cSAmir Goldstein /* right now we don't handle cross boundary allocation */ 279dae1e52cSAmir Goldstein if (blks < blocks_to_boundary + 1) 280dae1e52cSAmir Goldstein count += blks; 281dae1e52cSAmir Goldstein else 282dae1e52cSAmir Goldstein count += blocks_to_boundary + 1; 283dae1e52cSAmir Goldstein return count; 284dae1e52cSAmir Goldstein } 285dae1e52cSAmir Goldstein 286dae1e52cSAmir Goldstein count++; 287dae1e52cSAmir Goldstein while (count < blks && count <= blocks_to_boundary && 288dae1e52cSAmir Goldstein le32_to_cpu(*(branch[0].p + count)) == 0) { 289dae1e52cSAmir Goldstein count++; 290dae1e52cSAmir Goldstein } 291dae1e52cSAmir Goldstein return count; 292dae1e52cSAmir Goldstein } 293dae1e52cSAmir Goldstein 294dae1e52cSAmir Goldstein /** 295dae1e52cSAmir Goldstein * ext4_alloc_branch - allocate and set up a chain of blocks. 296dae1e52cSAmir Goldstein * @handle: handle for this transaction 297dae1e52cSAmir Goldstein * @inode: owner 298dae1e52cSAmir Goldstein * @indirect_blks: number of allocated indirect blocks 299dae1e52cSAmir Goldstein * @blks: number of allocated direct blocks 300dae1e52cSAmir Goldstein * @goal: preferred place for allocation 301dae1e52cSAmir Goldstein * @offsets: offsets (in the blocks) to store the pointers to next. 302dae1e52cSAmir Goldstein * @branch: place to store the chain in. 303dae1e52cSAmir Goldstein * 304dae1e52cSAmir Goldstein * This function allocates blocks, zeroes out all but the last one, 305dae1e52cSAmir Goldstein * links them into chain and (if we are synchronous) writes them to disk. 306dae1e52cSAmir Goldstein * In other words, it prepares a branch that can be spliced onto the 307dae1e52cSAmir Goldstein * inode. It stores the information about that chain in the branch[], in 308dae1e52cSAmir Goldstein * the same format as ext4_get_branch() would do. We are calling it after 309dae1e52cSAmir Goldstein * we had read the existing part of chain and partial points to the last 310dae1e52cSAmir Goldstein * triple of that (one with zero ->key). Upon the exit we have the same 311dae1e52cSAmir Goldstein * picture as after the successful ext4_get_block(), except that in one 312dae1e52cSAmir Goldstein * place chain is disconnected - *branch->p is still zero (we did not 313dae1e52cSAmir Goldstein * set the last link), but branch->key contains the number that should 314dae1e52cSAmir Goldstein * be placed into *branch->p to fill that gap. 315dae1e52cSAmir Goldstein * 316dae1e52cSAmir Goldstein * If allocation fails we free all blocks we've allocated (and forget 317dae1e52cSAmir Goldstein * their buffer_heads) and return the error value the from failed 318dae1e52cSAmir Goldstein * ext4_alloc_block() (normally -ENOSPC). Otherwise we set the chain 319dae1e52cSAmir Goldstein * as described above and return 0. 320dae1e52cSAmir Goldstein */ 321dae1e52cSAmir Goldstein static int ext4_alloc_branch(handle_t *handle, struct inode *inode, 322dae1e52cSAmir Goldstein ext4_lblk_t iblock, int indirect_blks, 323dae1e52cSAmir Goldstein int *blks, ext4_fsblk_t goal, 324dae1e52cSAmir Goldstein ext4_lblk_t *offsets, Indirect *branch) 325dae1e52cSAmir Goldstein { 326*781f143eSTheodore Ts'o struct ext4_allocation_request ar; 327dae1e52cSAmir Goldstein struct buffer_head * bh; 328*781f143eSTheodore Ts'o ext4_fsblk_t b, new_blocks[4]; 329*781f143eSTheodore Ts'o __le32 *p; 330*781f143eSTheodore Ts'o int i, j, err, len = 1; 331dae1e52cSAmir Goldstein 332*781f143eSTheodore Ts'o /* 333*781f143eSTheodore Ts'o * Set up for the direct block allocation 334*781f143eSTheodore Ts'o */ 335*781f143eSTheodore Ts'o memset(&ar, 0, sizeof(ar)); 336*781f143eSTheodore Ts'o ar.inode = inode; 337*781f143eSTheodore Ts'o ar.len = *blks; 338*781f143eSTheodore Ts'o ar.logical = iblock; 339*781f143eSTheodore Ts'o if (S_ISREG(inode->i_mode)) 340*781f143eSTheodore Ts'o ar.flags = EXT4_MB_HINT_DATA; 341dae1e52cSAmir Goldstein 342*781f143eSTheodore Ts'o for (i = 0; i <= indirect_blks; i++) { 343*781f143eSTheodore Ts'o if (i == indirect_blks) { 344*781f143eSTheodore Ts'o ar.goal = goal; 345*781f143eSTheodore Ts'o new_blocks[i] = ext4_mb_new_blocks(handle, &ar, &err); 346*781f143eSTheodore Ts'o } else 347*781f143eSTheodore Ts'o goal = new_blocks[i] = ext4_new_meta_blocks(handle, inode, 348*781f143eSTheodore Ts'o goal, 0, NULL, &err); 349*781f143eSTheodore Ts'o if (err) { 350*781f143eSTheodore Ts'o i--; 351*781f143eSTheodore Ts'o goto failed; 352*781f143eSTheodore Ts'o } 353*781f143eSTheodore Ts'o branch[i].key = cpu_to_le32(new_blocks[i]); 354*781f143eSTheodore Ts'o if (i == 0) 355*781f143eSTheodore Ts'o continue; 356*781f143eSTheodore Ts'o 357*781f143eSTheodore Ts'o bh = branch[i].bh = sb_getblk(inode->i_sb, new_blocks[i-1]); 358dae1e52cSAmir Goldstein if (unlikely(!bh)) { 359860d21e2STheodore Ts'o err = -ENOMEM; 360dae1e52cSAmir Goldstein goto failed; 361dae1e52cSAmir Goldstein } 362dae1e52cSAmir Goldstein lock_buffer(bh); 363dae1e52cSAmir Goldstein BUFFER_TRACE(bh, "call get_create_access"); 364dae1e52cSAmir Goldstein err = ext4_journal_get_create_access(handle, bh); 365dae1e52cSAmir Goldstein if (err) { 366dae1e52cSAmir Goldstein unlock_buffer(bh); 367dae1e52cSAmir Goldstein goto failed; 368dae1e52cSAmir Goldstein } 369dae1e52cSAmir Goldstein 370*781f143eSTheodore Ts'o memset(bh->b_data, 0, bh->b_size); 371*781f143eSTheodore Ts'o p = branch[i].p = (__le32 *) bh->b_data + offsets[i]; 372*781f143eSTheodore Ts'o b = new_blocks[i]; 373*781f143eSTheodore Ts'o 374*781f143eSTheodore Ts'o if (i == indirect_blks) 375*781f143eSTheodore Ts'o len = ar.len; 376*781f143eSTheodore Ts'o for (j = 0; j < len; j++) 377*781f143eSTheodore Ts'o *p++ = cpu_to_le32(b++); 378*781f143eSTheodore Ts'o 379dae1e52cSAmir Goldstein BUFFER_TRACE(bh, "marking uptodate"); 380dae1e52cSAmir Goldstein set_buffer_uptodate(bh); 381dae1e52cSAmir Goldstein unlock_buffer(bh); 382dae1e52cSAmir Goldstein 383dae1e52cSAmir Goldstein BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 384dae1e52cSAmir Goldstein err = ext4_handle_dirty_metadata(handle, inode, bh); 385dae1e52cSAmir Goldstein if (err) 386dae1e52cSAmir Goldstein goto failed; 387dae1e52cSAmir Goldstein } 388*781f143eSTheodore Ts'o *blks = ar.len; 389*781f143eSTheodore Ts'o return 0; 390dae1e52cSAmir Goldstein failed: 391*781f143eSTheodore Ts'o for (; i >= 0; i--) { 392*781f143eSTheodore Ts'o if (i != indirect_blks && branch[i].bh) 393*781f143eSTheodore Ts'o ext4_forget(handle, 1, inode, branch[i].bh, 394*781f143eSTheodore Ts'o branch[i].bh->b_blocknr); 395*781f143eSTheodore Ts'o ext4_free_blocks(handle, inode, NULL, new_blocks[i], 396*781f143eSTheodore Ts'o (i == indirect_blks) ? ar.len : 1, 0); 397dae1e52cSAmir Goldstein } 398dae1e52cSAmir Goldstein return err; 399dae1e52cSAmir Goldstein } 400dae1e52cSAmir Goldstein 401dae1e52cSAmir Goldstein /** 402dae1e52cSAmir Goldstein * ext4_splice_branch - splice the allocated branch onto inode. 403dae1e52cSAmir Goldstein * @handle: handle for this transaction 404dae1e52cSAmir Goldstein * @inode: owner 405dae1e52cSAmir Goldstein * @block: (logical) number of block we are adding 406dae1e52cSAmir Goldstein * @chain: chain of indirect blocks (with a missing link - see 407dae1e52cSAmir Goldstein * ext4_alloc_branch) 408dae1e52cSAmir Goldstein * @where: location of missing link 409dae1e52cSAmir Goldstein * @num: number of indirect blocks we are adding 410dae1e52cSAmir Goldstein * @blks: number of direct blocks we are adding 411dae1e52cSAmir Goldstein * 412dae1e52cSAmir Goldstein * This function fills the missing link and does all housekeeping needed in 413dae1e52cSAmir Goldstein * inode (->i_blocks, etc.). In case of success we end up with the full 414dae1e52cSAmir Goldstein * chain to new block and return 0. 415dae1e52cSAmir Goldstein */ 416dae1e52cSAmir Goldstein static int ext4_splice_branch(handle_t *handle, struct inode *inode, 417dae1e52cSAmir Goldstein ext4_lblk_t block, Indirect *where, int num, 418dae1e52cSAmir Goldstein int blks) 419dae1e52cSAmir Goldstein { 420dae1e52cSAmir Goldstein int i; 421dae1e52cSAmir Goldstein int err = 0; 422dae1e52cSAmir Goldstein ext4_fsblk_t current_block; 423dae1e52cSAmir Goldstein 424dae1e52cSAmir Goldstein /* 425dae1e52cSAmir Goldstein * If we're splicing into a [td]indirect block (as opposed to the 426dae1e52cSAmir Goldstein * inode) then we need to get write access to the [td]indirect block 427dae1e52cSAmir Goldstein * before the splice. 428dae1e52cSAmir Goldstein */ 429dae1e52cSAmir Goldstein if (where->bh) { 430dae1e52cSAmir Goldstein BUFFER_TRACE(where->bh, "get_write_access"); 431dae1e52cSAmir Goldstein err = ext4_journal_get_write_access(handle, where->bh); 432dae1e52cSAmir Goldstein if (err) 433dae1e52cSAmir Goldstein goto err_out; 434dae1e52cSAmir Goldstein } 435dae1e52cSAmir Goldstein /* That's it */ 436dae1e52cSAmir Goldstein 437dae1e52cSAmir Goldstein *where->p = where->key; 438dae1e52cSAmir Goldstein 439dae1e52cSAmir Goldstein /* 440dae1e52cSAmir Goldstein * Update the host buffer_head or inode to point to more just allocated 441dae1e52cSAmir Goldstein * direct blocks blocks 442dae1e52cSAmir Goldstein */ 443dae1e52cSAmir Goldstein if (num == 0 && blks > 1) { 444dae1e52cSAmir Goldstein current_block = le32_to_cpu(where->key) + 1; 445dae1e52cSAmir Goldstein for (i = 1; i < blks; i++) 446dae1e52cSAmir Goldstein *(where->p + i) = cpu_to_le32(current_block++); 447dae1e52cSAmir Goldstein } 448dae1e52cSAmir Goldstein 449dae1e52cSAmir Goldstein /* We are done with atomic stuff, now do the rest of housekeeping */ 450dae1e52cSAmir Goldstein /* had we spliced it onto indirect block? */ 451dae1e52cSAmir Goldstein if (where->bh) { 452dae1e52cSAmir Goldstein /* 453dae1e52cSAmir Goldstein * If we spliced it onto an indirect block, we haven't 454dae1e52cSAmir Goldstein * altered the inode. Note however that if it is being spliced 455dae1e52cSAmir Goldstein * onto an indirect block at the very end of the file (the 456dae1e52cSAmir Goldstein * file is growing) then we *will* alter the inode to reflect 457dae1e52cSAmir Goldstein * the new i_size. But that is not done here - it is done in 458dae1e52cSAmir Goldstein * generic_commit_write->__mark_inode_dirty->ext4_dirty_inode. 459dae1e52cSAmir Goldstein */ 460dae1e52cSAmir Goldstein jbd_debug(5, "splicing indirect only\n"); 461dae1e52cSAmir Goldstein BUFFER_TRACE(where->bh, "call ext4_handle_dirty_metadata"); 462dae1e52cSAmir Goldstein err = ext4_handle_dirty_metadata(handle, inode, where->bh); 463dae1e52cSAmir Goldstein if (err) 464dae1e52cSAmir Goldstein goto err_out; 465dae1e52cSAmir Goldstein } else { 466dae1e52cSAmir Goldstein /* 467dae1e52cSAmir Goldstein * OK, we spliced it into the inode itself on a direct block. 468dae1e52cSAmir Goldstein */ 469dae1e52cSAmir Goldstein ext4_mark_inode_dirty(handle, inode); 470dae1e52cSAmir Goldstein jbd_debug(5, "splicing direct\n"); 471dae1e52cSAmir Goldstein } 472dae1e52cSAmir Goldstein return err; 473dae1e52cSAmir Goldstein 474dae1e52cSAmir Goldstein err_out: 475dae1e52cSAmir Goldstein for (i = 1; i <= num; i++) { 476dae1e52cSAmir Goldstein /* 477dae1e52cSAmir Goldstein * branch[i].bh is newly allocated, so there is no 478dae1e52cSAmir Goldstein * need to revoke the block, which is why we don't 479dae1e52cSAmir Goldstein * need to set EXT4_FREE_BLOCKS_METADATA. 480dae1e52cSAmir Goldstein */ 481dae1e52cSAmir Goldstein ext4_free_blocks(handle, inode, where[i].bh, 0, 1, 482dae1e52cSAmir Goldstein EXT4_FREE_BLOCKS_FORGET); 483dae1e52cSAmir Goldstein } 484dae1e52cSAmir Goldstein ext4_free_blocks(handle, inode, NULL, le32_to_cpu(where[num].key), 485dae1e52cSAmir Goldstein blks, 0); 486dae1e52cSAmir Goldstein 487dae1e52cSAmir Goldstein return err; 488dae1e52cSAmir Goldstein } 489dae1e52cSAmir Goldstein 490dae1e52cSAmir Goldstein /* 491dae1e52cSAmir Goldstein * The ext4_ind_map_blocks() function handles non-extents inodes 492dae1e52cSAmir Goldstein * (i.e., using the traditional indirect/double-indirect i_blocks 493dae1e52cSAmir Goldstein * scheme) for ext4_map_blocks(). 494dae1e52cSAmir Goldstein * 495dae1e52cSAmir Goldstein * Allocation strategy is simple: if we have to allocate something, we will 496dae1e52cSAmir Goldstein * have to go the whole way to leaf. So let's do it before attaching anything 497dae1e52cSAmir Goldstein * to tree, set linkage between the newborn blocks, write them if sync is 498dae1e52cSAmir Goldstein * required, recheck the path, free and repeat if check fails, otherwise 499dae1e52cSAmir Goldstein * set the last missing link (that will protect us from any truncate-generated 500dae1e52cSAmir Goldstein * removals - all blocks on the path are immune now) and possibly force the 501dae1e52cSAmir Goldstein * write on the parent block. 502dae1e52cSAmir Goldstein * That has a nice additional property: no special recovery from the failed 503dae1e52cSAmir Goldstein * allocations is needed - we simply release blocks and do not touch anything 504dae1e52cSAmir Goldstein * reachable from inode. 505dae1e52cSAmir Goldstein * 506dae1e52cSAmir Goldstein * `handle' can be NULL if create == 0. 507dae1e52cSAmir Goldstein * 508dae1e52cSAmir Goldstein * return > 0, # of blocks mapped or allocated. 509dae1e52cSAmir Goldstein * return = 0, if plain lookup failed. 510dae1e52cSAmir Goldstein * return < 0, error case. 511dae1e52cSAmir Goldstein * 512dae1e52cSAmir Goldstein * The ext4_ind_get_blocks() function should be called with 513dae1e52cSAmir Goldstein * down_write(&EXT4_I(inode)->i_data_sem) if allocating filesystem 514dae1e52cSAmir Goldstein * blocks (i.e., flags has EXT4_GET_BLOCKS_CREATE set) or 515dae1e52cSAmir Goldstein * down_read(&EXT4_I(inode)->i_data_sem) if not allocating file system 516dae1e52cSAmir Goldstein * blocks. 517dae1e52cSAmir Goldstein */ 518dae1e52cSAmir Goldstein int ext4_ind_map_blocks(handle_t *handle, struct inode *inode, 519dae1e52cSAmir Goldstein struct ext4_map_blocks *map, 520dae1e52cSAmir Goldstein int flags) 521dae1e52cSAmir Goldstein { 522dae1e52cSAmir Goldstein int err = -EIO; 523dae1e52cSAmir Goldstein ext4_lblk_t offsets[4]; 524dae1e52cSAmir Goldstein Indirect chain[4]; 525dae1e52cSAmir Goldstein Indirect *partial; 526dae1e52cSAmir Goldstein ext4_fsblk_t goal; 527dae1e52cSAmir Goldstein int indirect_blks; 528dae1e52cSAmir Goldstein int blocks_to_boundary = 0; 529dae1e52cSAmir Goldstein int depth; 530dae1e52cSAmir Goldstein int count = 0; 531dae1e52cSAmir Goldstein ext4_fsblk_t first_block = 0; 532dae1e52cSAmir Goldstein 533dae1e52cSAmir Goldstein trace_ext4_ind_map_blocks_enter(inode, map->m_lblk, map->m_len, flags); 534dae1e52cSAmir Goldstein J_ASSERT(!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))); 535dae1e52cSAmir Goldstein J_ASSERT(handle != NULL || (flags & EXT4_GET_BLOCKS_CREATE) == 0); 536dae1e52cSAmir Goldstein depth = ext4_block_to_path(inode, map->m_lblk, offsets, 537dae1e52cSAmir Goldstein &blocks_to_boundary); 538dae1e52cSAmir Goldstein 539dae1e52cSAmir Goldstein if (depth == 0) 540dae1e52cSAmir Goldstein goto out; 541dae1e52cSAmir Goldstein 542dae1e52cSAmir Goldstein partial = ext4_get_branch(inode, depth, offsets, chain, &err); 543dae1e52cSAmir Goldstein 544dae1e52cSAmir Goldstein /* Simplest case - block found, no allocation needed */ 545dae1e52cSAmir Goldstein if (!partial) { 546dae1e52cSAmir Goldstein first_block = le32_to_cpu(chain[depth - 1].key); 547dae1e52cSAmir Goldstein count++; 548dae1e52cSAmir Goldstein /*map more blocks*/ 549dae1e52cSAmir Goldstein while (count < map->m_len && count <= blocks_to_boundary) { 550dae1e52cSAmir Goldstein ext4_fsblk_t blk; 551dae1e52cSAmir Goldstein 552dae1e52cSAmir Goldstein blk = le32_to_cpu(*(chain[depth-1].p + count)); 553dae1e52cSAmir Goldstein 554dae1e52cSAmir Goldstein if (blk == first_block + count) 555dae1e52cSAmir Goldstein count++; 556dae1e52cSAmir Goldstein else 557dae1e52cSAmir Goldstein break; 558dae1e52cSAmir Goldstein } 559dae1e52cSAmir Goldstein goto got_it; 560dae1e52cSAmir Goldstein } 561dae1e52cSAmir Goldstein 562dae1e52cSAmir Goldstein /* Next simple case - plain lookup or failed read of indirect block */ 563dae1e52cSAmir Goldstein if ((flags & EXT4_GET_BLOCKS_CREATE) == 0 || err == -EIO) 564dae1e52cSAmir Goldstein goto cleanup; 565dae1e52cSAmir Goldstein 566dae1e52cSAmir Goldstein /* 567dae1e52cSAmir Goldstein * Okay, we need to do block allocation. 568dae1e52cSAmir Goldstein */ 569bab08ab9STheodore Ts'o if (EXT4_HAS_RO_COMPAT_FEATURE(inode->i_sb, 570bab08ab9STheodore Ts'o EXT4_FEATURE_RO_COMPAT_BIGALLOC)) { 571bab08ab9STheodore Ts'o EXT4_ERROR_INODE(inode, "Can't allocate blocks for " 572bab08ab9STheodore Ts'o "non-extent mapped inodes with bigalloc"); 573bab08ab9STheodore Ts'o return -ENOSPC; 574bab08ab9STheodore Ts'o } 575bab08ab9STheodore Ts'o 576dae1e52cSAmir Goldstein goal = ext4_find_goal(inode, map->m_lblk, partial); 577dae1e52cSAmir Goldstein 578dae1e52cSAmir Goldstein /* the number of blocks need to allocate for [d,t]indirect blocks */ 579dae1e52cSAmir Goldstein indirect_blks = (chain + depth) - partial - 1; 580dae1e52cSAmir Goldstein 581dae1e52cSAmir Goldstein /* 582dae1e52cSAmir Goldstein * Next look up the indirect map to count the totoal number of 583dae1e52cSAmir Goldstein * direct blocks to allocate for this branch. 584dae1e52cSAmir Goldstein */ 585dae1e52cSAmir Goldstein count = ext4_blks_to_allocate(partial, indirect_blks, 586dae1e52cSAmir Goldstein map->m_len, blocks_to_boundary); 587dae1e52cSAmir Goldstein /* 588dae1e52cSAmir Goldstein * Block out ext4_truncate while we alter the tree 589dae1e52cSAmir Goldstein */ 590dae1e52cSAmir Goldstein err = ext4_alloc_branch(handle, inode, map->m_lblk, indirect_blks, 591dae1e52cSAmir Goldstein &count, goal, 592dae1e52cSAmir Goldstein offsets + (partial - chain), partial); 593dae1e52cSAmir Goldstein 594dae1e52cSAmir Goldstein /* 595dae1e52cSAmir Goldstein * The ext4_splice_branch call will free and forget any buffers 596dae1e52cSAmir Goldstein * on the new chain if there is a failure, but that risks using 597dae1e52cSAmir Goldstein * up transaction credits, especially for bitmaps where the 598dae1e52cSAmir Goldstein * credits cannot be returned. Can we handle this somehow? We 599dae1e52cSAmir Goldstein * may need to return -EAGAIN upwards in the worst case. --sct 600dae1e52cSAmir Goldstein */ 601dae1e52cSAmir Goldstein if (!err) 602dae1e52cSAmir Goldstein err = ext4_splice_branch(handle, inode, map->m_lblk, 603dae1e52cSAmir Goldstein partial, indirect_blks, count); 604dae1e52cSAmir Goldstein if (err) 605dae1e52cSAmir Goldstein goto cleanup; 606dae1e52cSAmir Goldstein 607dae1e52cSAmir Goldstein map->m_flags |= EXT4_MAP_NEW; 608dae1e52cSAmir Goldstein 609dae1e52cSAmir Goldstein ext4_update_inode_fsync_trans(handle, inode, 1); 610dae1e52cSAmir Goldstein got_it: 611dae1e52cSAmir Goldstein map->m_flags |= EXT4_MAP_MAPPED; 612dae1e52cSAmir Goldstein map->m_pblk = le32_to_cpu(chain[depth-1].key); 613dae1e52cSAmir Goldstein map->m_len = count; 614dae1e52cSAmir Goldstein if (count > blocks_to_boundary) 615dae1e52cSAmir Goldstein map->m_flags |= EXT4_MAP_BOUNDARY; 616dae1e52cSAmir Goldstein err = count; 617dae1e52cSAmir Goldstein /* Clean up and exit */ 618dae1e52cSAmir Goldstein partial = chain + depth - 1; /* the whole chain */ 619dae1e52cSAmir Goldstein cleanup: 620dae1e52cSAmir Goldstein while (partial > chain) { 621dae1e52cSAmir Goldstein BUFFER_TRACE(partial->bh, "call brelse"); 622dae1e52cSAmir Goldstein brelse(partial->bh); 623dae1e52cSAmir Goldstein partial--; 624dae1e52cSAmir Goldstein } 625dae1e52cSAmir Goldstein out: 62619b303d8SZheng Liu trace_ext4_ind_map_blocks_exit(inode, map, err); 627dae1e52cSAmir Goldstein return err; 628dae1e52cSAmir Goldstein } 629dae1e52cSAmir Goldstein 630dae1e52cSAmir Goldstein /* 631dae1e52cSAmir Goldstein * O_DIRECT for ext3 (or indirect map) based files 632dae1e52cSAmir Goldstein * 633dae1e52cSAmir Goldstein * If the O_DIRECT write will extend the file then add this inode to the 634dae1e52cSAmir Goldstein * orphan list. So recovery will truncate it back to the original size 635dae1e52cSAmir Goldstein * if the machine crashes during the write. 636dae1e52cSAmir Goldstein * 637dae1e52cSAmir Goldstein * If the O_DIRECT write is intantiating holes inside i_size and the machine 638dae1e52cSAmir Goldstein * crashes then stale disk data _may_ be exposed inside the file. But current 639dae1e52cSAmir Goldstein * VFS code falls back into buffered path in that case so we are safe. 640dae1e52cSAmir Goldstein */ 641dae1e52cSAmir Goldstein ssize_t ext4_ind_direct_IO(int rw, struct kiocb *iocb, 642dae1e52cSAmir Goldstein const struct iovec *iov, loff_t offset, 643dae1e52cSAmir Goldstein unsigned long nr_segs) 644dae1e52cSAmir Goldstein { 645dae1e52cSAmir Goldstein struct file *file = iocb->ki_filp; 646dae1e52cSAmir Goldstein struct inode *inode = file->f_mapping->host; 647dae1e52cSAmir Goldstein struct ext4_inode_info *ei = EXT4_I(inode); 648dae1e52cSAmir Goldstein handle_t *handle; 649dae1e52cSAmir Goldstein ssize_t ret; 650dae1e52cSAmir Goldstein int orphan = 0; 651dae1e52cSAmir Goldstein size_t count = iov_length(iov, nr_segs); 652dae1e52cSAmir Goldstein int retries = 0; 653dae1e52cSAmir Goldstein 654dae1e52cSAmir Goldstein if (rw == WRITE) { 655dae1e52cSAmir Goldstein loff_t final_size = offset + count; 656dae1e52cSAmir Goldstein 657dae1e52cSAmir Goldstein if (final_size > inode->i_size) { 658dae1e52cSAmir Goldstein /* Credits for sb + inode write */ 6599924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 2); 660dae1e52cSAmir Goldstein if (IS_ERR(handle)) { 661dae1e52cSAmir Goldstein ret = PTR_ERR(handle); 662dae1e52cSAmir Goldstein goto out; 663dae1e52cSAmir Goldstein } 664dae1e52cSAmir Goldstein ret = ext4_orphan_add(handle, inode); 665dae1e52cSAmir Goldstein if (ret) { 666dae1e52cSAmir Goldstein ext4_journal_stop(handle); 667dae1e52cSAmir Goldstein goto out; 668dae1e52cSAmir Goldstein } 669dae1e52cSAmir Goldstein orphan = 1; 670dae1e52cSAmir Goldstein ei->i_disksize = inode->i_size; 671dae1e52cSAmir Goldstein ext4_journal_stop(handle); 672dae1e52cSAmir Goldstein } 673dae1e52cSAmir Goldstein } 674dae1e52cSAmir Goldstein 675dae1e52cSAmir Goldstein retry: 676dccaf33fSJiaying Zhang if (rw == READ && ext4_should_dioread_nolock(inode)) { 677c278531dSDmitry Monakhov if (unlikely(atomic_read(&EXT4_I(inode)->i_unwritten))) { 678c278531dSDmitry Monakhov mutex_lock(&inode->i_mutex); 679c278531dSDmitry Monakhov ext4_flush_unwritten_io(inode); 680c278531dSDmitry Monakhov mutex_unlock(&inode->i_mutex); 681c278531dSDmitry Monakhov } 68217335dccSDmitry Monakhov /* 68317335dccSDmitry Monakhov * Nolock dioread optimization may be dynamically disabled 68417335dccSDmitry Monakhov * via ext4_inode_block_unlocked_dio(). Check inode's state 68517335dccSDmitry Monakhov * while holding extra i_dio_count ref. 68617335dccSDmitry Monakhov */ 68717335dccSDmitry Monakhov atomic_inc(&inode->i_dio_count); 68817335dccSDmitry Monakhov smp_mb(); 68917335dccSDmitry Monakhov if (unlikely(ext4_test_inode_state(inode, 69017335dccSDmitry Monakhov EXT4_STATE_DIOREAD_LOCK))) { 69117335dccSDmitry Monakhov inode_dio_done(inode); 69217335dccSDmitry Monakhov goto locked; 69317335dccSDmitry Monakhov } 694dae1e52cSAmir Goldstein ret = __blockdev_direct_IO(rw, iocb, inode, 695dae1e52cSAmir Goldstein inode->i_sb->s_bdev, iov, 696dae1e52cSAmir Goldstein offset, nr_segs, 697dae1e52cSAmir Goldstein ext4_get_block, NULL, NULL, 0); 69817335dccSDmitry Monakhov inode_dio_done(inode); 699dccaf33fSJiaying Zhang } else { 70017335dccSDmitry Monakhov locked: 70160ad4466SLinus Torvalds ret = blockdev_direct_IO(rw, iocb, inode, iov, 70260ad4466SLinus Torvalds offset, nr_segs, ext4_get_block); 703dae1e52cSAmir Goldstein 704dae1e52cSAmir Goldstein if (unlikely((rw & WRITE) && ret < 0)) { 705dae1e52cSAmir Goldstein loff_t isize = i_size_read(inode); 706dae1e52cSAmir Goldstein loff_t end = offset + iov_length(iov, nr_segs); 707dae1e52cSAmir Goldstein 708dae1e52cSAmir Goldstein if (end > isize) 709dae1e52cSAmir Goldstein ext4_truncate_failed_write(inode); 710dae1e52cSAmir Goldstein } 711dae1e52cSAmir Goldstein } 712dae1e52cSAmir Goldstein if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries)) 713dae1e52cSAmir Goldstein goto retry; 714dae1e52cSAmir Goldstein 715dae1e52cSAmir Goldstein if (orphan) { 716dae1e52cSAmir Goldstein int err; 717dae1e52cSAmir Goldstein 718dae1e52cSAmir Goldstein /* Credits for sb + inode write */ 7199924a92aSTheodore Ts'o handle = ext4_journal_start(inode, EXT4_HT_INODE, 2); 720dae1e52cSAmir Goldstein if (IS_ERR(handle)) { 721dae1e52cSAmir Goldstein /* This is really bad luck. We've written the data 722dae1e52cSAmir Goldstein * but cannot extend i_size. Bail out and pretend 723dae1e52cSAmir Goldstein * the write failed... */ 724dae1e52cSAmir Goldstein ret = PTR_ERR(handle); 725dae1e52cSAmir Goldstein if (inode->i_nlink) 726dae1e52cSAmir Goldstein ext4_orphan_del(NULL, inode); 727dae1e52cSAmir Goldstein 728dae1e52cSAmir Goldstein goto out; 729dae1e52cSAmir Goldstein } 730dae1e52cSAmir Goldstein if (inode->i_nlink) 731dae1e52cSAmir Goldstein ext4_orphan_del(handle, inode); 732dae1e52cSAmir Goldstein if (ret > 0) { 733dae1e52cSAmir Goldstein loff_t end = offset + ret; 734dae1e52cSAmir Goldstein if (end > inode->i_size) { 735dae1e52cSAmir Goldstein ei->i_disksize = end; 736dae1e52cSAmir Goldstein i_size_write(inode, end); 737dae1e52cSAmir Goldstein /* 738dae1e52cSAmir Goldstein * We're going to return a positive `ret' 739dae1e52cSAmir Goldstein * here due to non-zero-length I/O, so there's 740dae1e52cSAmir Goldstein * no way of reporting error returns from 741dae1e52cSAmir Goldstein * ext4_mark_inode_dirty() to userspace. So 742dae1e52cSAmir Goldstein * ignore it. 743dae1e52cSAmir Goldstein */ 744dae1e52cSAmir Goldstein ext4_mark_inode_dirty(handle, inode); 745dae1e52cSAmir Goldstein } 746dae1e52cSAmir Goldstein } 747dae1e52cSAmir Goldstein err = ext4_journal_stop(handle); 748dae1e52cSAmir Goldstein if (ret == 0) 749dae1e52cSAmir Goldstein ret = err; 750dae1e52cSAmir Goldstein } 751dae1e52cSAmir Goldstein out: 752dae1e52cSAmir Goldstein return ret; 753dae1e52cSAmir Goldstein } 754dae1e52cSAmir Goldstein 755dae1e52cSAmir Goldstein /* 756dae1e52cSAmir Goldstein * Calculate the number of metadata blocks need to reserve 757dae1e52cSAmir Goldstein * to allocate a new block at @lblocks for non extent file based file 758dae1e52cSAmir Goldstein */ 759dae1e52cSAmir Goldstein int ext4_ind_calc_metadata_amount(struct inode *inode, sector_t lblock) 760dae1e52cSAmir Goldstein { 761dae1e52cSAmir Goldstein struct ext4_inode_info *ei = EXT4_I(inode); 762dae1e52cSAmir Goldstein sector_t dind_mask = ~((sector_t)EXT4_ADDR_PER_BLOCK(inode->i_sb) - 1); 763dae1e52cSAmir Goldstein int blk_bits; 764dae1e52cSAmir Goldstein 765dae1e52cSAmir Goldstein if (lblock < EXT4_NDIR_BLOCKS) 766dae1e52cSAmir Goldstein return 0; 767dae1e52cSAmir Goldstein 768dae1e52cSAmir Goldstein lblock -= EXT4_NDIR_BLOCKS; 769dae1e52cSAmir Goldstein 770dae1e52cSAmir Goldstein if (ei->i_da_metadata_calc_len && 771dae1e52cSAmir Goldstein (lblock & dind_mask) == ei->i_da_metadata_calc_last_lblock) { 772dae1e52cSAmir Goldstein ei->i_da_metadata_calc_len++; 773dae1e52cSAmir Goldstein return 0; 774dae1e52cSAmir Goldstein } 775dae1e52cSAmir Goldstein ei->i_da_metadata_calc_last_lblock = lblock & dind_mask; 776dae1e52cSAmir Goldstein ei->i_da_metadata_calc_len = 1; 777dae1e52cSAmir Goldstein blk_bits = order_base_2(lblock); 778dae1e52cSAmir Goldstein return (blk_bits / EXT4_ADDR_PER_BLOCK_BITS(inode->i_sb)) + 1; 779dae1e52cSAmir Goldstein } 780dae1e52cSAmir Goldstein 781dae1e52cSAmir Goldstein int ext4_ind_trans_blocks(struct inode *inode, int nrblocks, int chunk) 782dae1e52cSAmir Goldstein { 783dae1e52cSAmir Goldstein int indirects; 784dae1e52cSAmir Goldstein 785dae1e52cSAmir Goldstein /* if nrblocks are contiguous */ 786dae1e52cSAmir Goldstein if (chunk) { 787dae1e52cSAmir Goldstein /* 788dae1e52cSAmir Goldstein * With N contiguous data blocks, we need at most 789dae1e52cSAmir Goldstein * N/EXT4_ADDR_PER_BLOCK(inode->i_sb) + 1 indirect blocks, 790dae1e52cSAmir Goldstein * 2 dindirect blocks, and 1 tindirect block 791dae1e52cSAmir Goldstein */ 792dae1e52cSAmir Goldstein return DIV_ROUND_UP(nrblocks, 793dae1e52cSAmir Goldstein EXT4_ADDR_PER_BLOCK(inode->i_sb)) + 4; 794dae1e52cSAmir Goldstein } 795dae1e52cSAmir Goldstein /* 796dae1e52cSAmir Goldstein * if nrblocks are not contiguous, worse case, each block touch 797dae1e52cSAmir Goldstein * a indirect block, and each indirect block touch a double indirect 798dae1e52cSAmir Goldstein * block, plus a triple indirect block 799dae1e52cSAmir Goldstein */ 800dae1e52cSAmir Goldstein indirects = nrblocks * 2 + 1; 801dae1e52cSAmir Goldstein return indirects; 802dae1e52cSAmir Goldstein } 803dae1e52cSAmir Goldstein 804dae1e52cSAmir Goldstein /* 805dae1e52cSAmir Goldstein * Truncate transactions can be complex and absolutely huge. So we need to 806dae1e52cSAmir Goldstein * be able to restart the transaction at a conventient checkpoint to make 807dae1e52cSAmir Goldstein * sure we don't overflow the journal. 808dae1e52cSAmir Goldstein * 809dae1e52cSAmir Goldstein * start_transaction gets us a new handle for a truncate transaction, 810dae1e52cSAmir Goldstein * and extend_transaction tries to extend the existing one a bit. If 811dae1e52cSAmir Goldstein * extend fails, we need to propagate the failure up and restart the 812dae1e52cSAmir Goldstein * transaction in the top-level truncate loop. --sct 813dae1e52cSAmir Goldstein */ 814dae1e52cSAmir Goldstein static handle_t *start_transaction(struct inode *inode) 815dae1e52cSAmir Goldstein { 816dae1e52cSAmir Goldstein handle_t *result; 817dae1e52cSAmir Goldstein 8189924a92aSTheodore Ts'o result = ext4_journal_start(inode, EXT4_HT_TRUNCATE, 8199924a92aSTheodore Ts'o ext4_blocks_for_truncate(inode)); 820dae1e52cSAmir Goldstein if (!IS_ERR(result)) 821dae1e52cSAmir Goldstein return result; 822dae1e52cSAmir Goldstein 823dae1e52cSAmir Goldstein ext4_std_error(inode->i_sb, PTR_ERR(result)); 824dae1e52cSAmir Goldstein return result; 825dae1e52cSAmir Goldstein } 826dae1e52cSAmir Goldstein 827dae1e52cSAmir Goldstein /* 828dae1e52cSAmir Goldstein * Try to extend this transaction for the purposes of truncation. 829dae1e52cSAmir Goldstein * 830dae1e52cSAmir Goldstein * Returns 0 if we managed to create more room. If we can't create more 831dae1e52cSAmir Goldstein * room, and the transaction must be restarted we return 1. 832dae1e52cSAmir Goldstein */ 833dae1e52cSAmir Goldstein static int try_to_extend_transaction(handle_t *handle, struct inode *inode) 834dae1e52cSAmir Goldstein { 835dae1e52cSAmir Goldstein if (!ext4_handle_valid(handle)) 836dae1e52cSAmir Goldstein return 0; 837dae1e52cSAmir Goldstein if (ext4_handle_has_enough_credits(handle, EXT4_RESERVE_TRANS_BLOCKS+1)) 838dae1e52cSAmir Goldstein return 0; 839dae1e52cSAmir Goldstein if (!ext4_journal_extend(handle, ext4_blocks_for_truncate(inode))) 840dae1e52cSAmir Goldstein return 0; 841dae1e52cSAmir Goldstein return 1; 842dae1e52cSAmir Goldstein } 843dae1e52cSAmir Goldstein 844dae1e52cSAmir Goldstein /* 845dae1e52cSAmir Goldstein * Probably it should be a library function... search for first non-zero word 846dae1e52cSAmir Goldstein * or memcmp with zero_page, whatever is better for particular architecture. 847dae1e52cSAmir Goldstein * Linus? 848dae1e52cSAmir Goldstein */ 849dae1e52cSAmir Goldstein static inline int all_zeroes(__le32 *p, __le32 *q) 850dae1e52cSAmir Goldstein { 851dae1e52cSAmir Goldstein while (p < q) 852dae1e52cSAmir Goldstein if (*p++) 853dae1e52cSAmir Goldstein return 0; 854dae1e52cSAmir Goldstein return 1; 855dae1e52cSAmir Goldstein } 856dae1e52cSAmir Goldstein 857dae1e52cSAmir Goldstein /** 858dae1e52cSAmir Goldstein * ext4_find_shared - find the indirect blocks for partial truncation. 859dae1e52cSAmir Goldstein * @inode: inode in question 860dae1e52cSAmir Goldstein * @depth: depth of the affected branch 861dae1e52cSAmir Goldstein * @offsets: offsets of pointers in that branch (see ext4_block_to_path) 862dae1e52cSAmir Goldstein * @chain: place to store the pointers to partial indirect blocks 863dae1e52cSAmir Goldstein * @top: place to the (detached) top of branch 864dae1e52cSAmir Goldstein * 865dae1e52cSAmir Goldstein * This is a helper function used by ext4_truncate(). 866dae1e52cSAmir Goldstein * 867dae1e52cSAmir Goldstein * When we do truncate() we may have to clean the ends of several 868dae1e52cSAmir Goldstein * indirect blocks but leave the blocks themselves alive. Block is 869dae1e52cSAmir Goldstein * partially truncated if some data below the new i_size is referred 870dae1e52cSAmir Goldstein * from it (and it is on the path to the first completely truncated 871dae1e52cSAmir Goldstein * data block, indeed). We have to free the top of that path along 872dae1e52cSAmir Goldstein * with everything to the right of the path. Since no allocation 873dae1e52cSAmir Goldstein * past the truncation point is possible until ext4_truncate() 874dae1e52cSAmir Goldstein * finishes, we may safely do the latter, but top of branch may 875dae1e52cSAmir Goldstein * require special attention - pageout below the truncation point 876dae1e52cSAmir Goldstein * might try to populate it. 877dae1e52cSAmir Goldstein * 878dae1e52cSAmir Goldstein * We atomically detach the top of branch from the tree, store the 879dae1e52cSAmir Goldstein * block number of its root in *@top, pointers to buffer_heads of 880dae1e52cSAmir Goldstein * partially truncated blocks - in @chain[].bh and pointers to 881dae1e52cSAmir Goldstein * their last elements that should not be removed - in 882dae1e52cSAmir Goldstein * @chain[].p. Return value is the pointer to last filled element 883dae1e52cSAmir Goldstein * of @chain. 884dae1e52cSAmir Goldstein * 885dae1e52cSAmir Goldstein * The work left to caller to do the actual freeing of subtrees: 886dae1e52cSAmir Goldstein * a) free the subtree starting from *@top 887dae1e52cSAmir Goldstein * b) free the subtrees whose roots are stored in 888dae1e52cSAmir Goldstein * (@chain[i].p+1 .. end of @chain[i].bh->b_data) 889dae1e52cSAmir Goldstein * c) free the subtrees growing from the inode past the @chain[0]. 890dae1e52cSAmir Goldstein * (no partially truncated stuff there). */ 891dae1e52cSAmir Goldstein 892dae1e52cSAmir Goldstein static Indirect *ext4_find_shared(struct inode *inode, int depth, 893dae1e52cSAmir Goldstein ext4_lblk_t offsets[4], Indirect chain[4], 894dae1e52cSAmir Goldstein __le32 *top) 895dae1e52cSAmir Goldstein { 896dae1e52cSAmir Goldstein Indirect *partial, *p; 897dae1e52cSAmir Goldstein int k, err; 898dae1e52cSAmir Goldstein 899dae1e52cSAmir Goldstein *top = 0; 900dae1e52cSAmir Goldstein /* Make k index the deepest non-null offset + 1 */ 901dae1e52cSAmir Goldstein for (k = depth; k > 1 && !offsets[k-1]; k--) 902dae1e52cSAmir Goldstein ; 903dae1e52cSAmir Goldstein partial = ext4_get_branch(inode, k, offsets, chain, &err); 904dae1e52cSAmir Goldstein /* Writer: pointers */ 905dae1e52cSAmir Goldstein if (!partial) 906dae1e52cSAmir Goldstein partial = chain + k-1; 907dae1e52cSAmir Goldstein /* 908dae1e52cSAmir Goldstein * If the branch acquired continuation since we've looked at it - 909dae1e52cSAmir Goldstein * fine, it should all survive and (new) top doesn't belong to us. 910dae1e52cSAmir Goldstein */ 911dae1e52cSAmir Goldstein if (!partial->key && *partial->p) 912dae1e52cSAmir Goldstein /* Writer: end */ 913dae1e52cSAmir Goldstein goto no_top; 914dae1e52cSAmir Goldstein for (p = partial; (p > chain) && all_zeroes((__le32 *) p->bh->b_data, p->p); p--) 915dae1e52cSAmir Goldstein ; 916dae1e52cSAmir Goldstein /* 917dae1e52cSAmir Goldstein * OK, we've found the last block that must survive. The rest of our 918dae1e52cSAmir Goldstein * branch should be detached before unlocking. However, if that rest 919dae1e52cSAmir Goldstein * of branch is all ours and does not grow immediately from the inode 920dae1e52cSAmir Goldstein * it's easier to cheat and just decrement partial->p. 921dae1e52cSAmir Goldstein */ 922dae1e52cSAmir Goldstein if (p == chain + k - 1 && p > chain) { 923dae1e52cSAmir Goldstein p->p--; 924dae1e52cSAmir Goldstein } else { 925dae1e52cSAmir Goldstein *top = *p->p; 926dae1e52cSAmir Goldstein /* Nope, don't do this in ext4. Must leave the tree intact */ 927dae1e52cSAmir Goldstein #if 0 928dae1e52cSAmir Goldstein *p->p = 0; 929dae1e52cSAmir Goldstein #endif 930dae1e52cSAmir Goldstein } 931dae1e52cSAmir Goldstein /* Writer: end */ 932dae1e52cSAmir Goldstein 933dae1e52cSAmir Goldstein while (partial > p) { 934dae1e52cSAmir Goldstein brelse(partial->bh); 935dae1e52cSAmir Goldstein partial--; 936dae1e52cSAmir Goldstein } 937dae1e52cSAmir Goldstein no_top: 938dae1e52cSAmir Goldstein return partial; 939dae1e52cSAmir Goldstein } 940dae1e52cSAmir Goldstein 941dae1e52cSAmir Goldstein /* 942dae1e52cSAmir Goldstein * Zero a number of block pointers in either an inode or an indirect block. 943dae1e52cSAmir Goldstein * If we restart the transaction we must again get write access to the 944dae1e52cSAmir Goldstein * indirect block for further modification. 945dae1e52cSAmir Goldstein * 946dae1e52cSAmir Goldstein * We release `count' blocks on disk, but (last - first) may be greater 947dae1e52cSAmir Goldstein * than `count' because there can be holes in there. 948dae1e52cSAmir Goldstein * 949dae1e52cSAmir Goldstein * Return 0 on success, 1 on invalid block range 950dae1e52cSAmir Goldstein * and < 0 on fatal error. 951dae1e52cSAmir Goldstein */ 952dae1e52cSAmir Goldstein static int ext4_clear_blocks(handle_t *handle, struct inode *inode, 953dae1e52cSAmir Goldstein struct buffer_head *bh, 954dae1e52cSAmir Goldstein ext4_fsblk_t block_to_free, 955dae1e52cSAmir Goldstein unsigned long count, __le32 *first, 956dae1e52cSAmir Goldstein __le32 *last) 957dae1e52cSAmir Goldstein { 958dae1e52cSAmir Goldstein __le32 *p; 959dae1e52cSAmir Goldstein int flags = EXT4_FREE_BLOCKS_FORGET | EXT4_FREE_BLOCKS_VALIDATED; 960dae1e52cSAmir Goldstein int err; 961dae1e52cSAmir Goldstein 962dae1e52cSAmir Goldstein if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) 963dae1e52cSAmir Goldstein flags |= EXT4_FREE_BLOCKS_METADATA; 964dae1e52cSAmir Goldstein 965dae1e52cSAmir Goldstein if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), block_to_free, 966dae1e52cSAmir Goldstein count)) { 967dae1e52cSAmir Goldstein EXT4_ERROR_INODE(inode, "attempt to clear invalid " 968dae1e52cSAmir Goldstein "blocks %llu len %lu", 969dae1e52cSAmir Goldstein (unsigned long long) block_to_free, count); 970dae1e52cSAmir Goldstein return 1; 971dae1e52cSAmir Goldstein } 972dae1e52cSAmir Goldstein 973dae1e52cSAmir Goldstein if (try_to_extend_transaction(handle, inode)) { 974dae1e52cSAmir Goldstein if (bh) { 975dae1e52cSAmir Goldstein BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); 976dae1e52cSAmir Goldstein err = ext4_handle_dirty_metadata(handle, inode, bh); 977dae1e52cSAmir Goldstein if (unlikely(err)) 978dae1e52cSAmir Goldstein goto out_err; 979dae1e52cSAmir Goldstein } 980dae1e52cSAmir Goldstein err = ext4_mark_inode_dirty(handle, inode); 981dae1e52cSAmir Goldstein if (unlikely(err)) 982dae1e52cSAmir Goldstein goto out_err; 983dae1e52cSAmir Goldstein err = ext4_truncate_restart_trans(handle, inode, 984dae1e52cSAmir Goldstein ext4_blocks_for_truncate(inode)); 985dae1e52cSAmir Goldstein if (unlikely(err)) 986dae1e52cSAmir Goldstein goto out_err; 987dae1e52cSAmir Goldstein if (bh) { 988dae1e52cSAmir Goldstein BUFFER_TRACE(bh, "retaking write access"); 989dae1e52cSAmir Goldstein err = ext4_journal_get_write_access(handle, bh); 990dae1e52cSAmir Goldstein if (unlikely(err)) 991dae1e52cSAmir Goldstein goto out_err; 992dae1e52cSAmir Goldstein } 993dae1e52cSAmir Goldstein } 994dae1e52cSAmir Goldstein 995dae1e52cSAmir Goldstein for (p = first; p < last; p++) 996dae1e52cSAmir Goldstein *p = 0; 997dae1e52cSAmir Goldstein 998dae1e52cSAmir Goldstein ext4_free_blocks(handle, inode, NULL, block_to_free, count, flags); 999dae1e52cSAmir Goldstein return 0; 1000dae1e52cSAmir Goldstein out_err: 1001dae1e52cSAmir Goldstein ext4_std_error(inode->i_sb, err); 1002dae1e52cSAmir Goldstein return err; 1003dae1e52cSAmir Goldstein } 1004dae1e52cSAmir Goldstein 1005dae1e52cSAmir Goldstein /** 1006dae1e52cSAmir Goldstein * ext4_free_data - free a list of data blocks 1007dae1e52cSAmir Goldstein * @handle: handle for this transaction 1008dae1e52cSAmir Goldstein * @inode: inode we are dealing with 1009dae1e52cSAmir Goldstein * @this_bh: indirect buffer_head which contains *@first and *@last 1010dae1e52cSAmir Goldstein * @first: array of block numbers 1011dae1e52cSAmir Goldstein * @last: points immediately past the end of array 1012dae1e52cSAmir Goldstein * 1013dae1e52cSAmir Goldstein * We are freeing all blocks referred from that array (numbers are stored as 1014dae1e52cSAmir Goldstein * little-endian 32-bit) and updating @inode->i_blocks appropriately. 1015dae1e52cSAmir Goldstein * 1016dae1e52cSAmir Goldstein * We accumulate contiguous runs of blocks to free. Conveniently, if these 1017dae1e52cSAmir Goldstein * blocks are contiguous then releasing them at one time will only affect one 1018dae1e52cSAmir Goldstein * or two bitmap blocks (+ group descriptor(s) and superblock) and we won't 1019dae1e52cSAmir Goldstein * actually use a lot of journal space. 1020dae1e52cSAmir Goldstein * 1021dae1e52cSAmir Goldstein * @this_bh will be %NULL if @first and @last point into the inode's direct 1022dae1e52cSAmir Goldstein * block pointers. 1023dae1e52cSAmir Goldstein */ 1024dae1e52cSAmir Goldstein static void ext4_free_data(handle_t *handle, struct inode *inode, 1025dae1e52cSAmir Goldstein struct buffer_head *this_bh, 1026dae1e52cSAmir Goldstein __le32 *first, __le32 *last) 1027dae1e52cSAmir Goldstein { 1028dae1e52cSAmir Goldstein ext4_fsblk_t block_to_free = 0; /* Starting block # of a run */ 1029dae1e52cSAmir Goldstein unsigned long count = 0; /* Number of blocks in the run */ 1030dae1e52cSAmir Goldstein __le32 *block_to_free_p = NULL; /* Pointer into inode/ind 1031dae1e52cSAmir Goldstein corresponding to 1032dae1e52cSAmir Goldstein block_to_free */ 1033dae1e52cSAmir Goldstein ext4_fsblk_t nr; /* Current block # */ 1034dae1e52cSAmir Goldstein __le32 *p; /* Pointer into inode/ind 1035dae1e52cSAmir Goldstein for current block */ 1036dae1e52cSAmir Goldstein int err = 0; 1037dae1e52cSAmir Goldstein 1038dae1e52cSAmir Goldstein if (this_bh) { /* For indirect block */ 1039dae1e52cSAmir Goldstein BUFFER_TRACE(this_bh, "get_write_access"); 1040dae1e52cSAmir Goldstein err = ext4_journal_get_write_access(handle, this_bh); 1041dae1e52cSAmir Goldstein /* Important: if we can't update the indirect pointers 1042dae1e52cSAmir Goldstein * to the blocks, we can't free them. */ 1043dae1e52cSAmir Goldstein if (err) 1044dae1e52cSAmir Goldstein return; 1045dae1e52cSAmir Goldstein } 1046dae1e52cSAmir Goldstein 1047dae1e52cSAmir Goldstein for (p = first; p < last; p++) { 1048dae1e52cSAmir Goldstein nr = le32_to_cpu(*p); 1049dae1e52cSAmir Goldstein if (nr) { 1050dae1e52cSAmir Goldstein /* accumulate blocks to free if they're contiguous */ 1051dae1e52cSAmir Goldstein if (count == 0) { 1052dae1e52cSAmir Goldstein block_to_free = nr; 1053dae1e52cSAmir Goldstein block_to_free_p = p; 1054dae1e52cSAmir Goldstein count = 1; 1055dae1e52cSAmir Goldstein } else if (nr == block_to_free + count) { 1056dae1e52cSAmir Goldstein count++; 1057dae1e52cSAmir Goldstein } else { 1058dae1e52cSAmir Goldstein err = ext4_clear_blocks(handle, inode, this_bh, 1059dae1e52cSAmir Goldstein block_to_free, count, 1060dae1e52cSAmir Goldstein block_to_free_p, p); 1061dae1e52cSAmir Goldstein if (err) 1062dae1e52cSAmir Goldstein break; 1063dae1e52cSAmir Goldstein block_to_free = nr; 1064dae1e52cSAmir Goldstein block_to_free_p = p; 1065dae1e52cSAmir Goldstein count = 1; 1066dae1e52cSAmir Goldstein } 1067dae1e52cSAmir Goldstein } 1068dae1e52cSAmir Goldstein } 1069dae1e52cSAmir Goldstein 1070dae1e52cSAmir Goldstein if (!err && count > 0) 1071dae1e52cSAmir Goldstein err = ext4_clear_blocks(handle, inode, this_bh, block_to_free, 1072dae1e52cSAmir Goldstein count, block_to_free_p, p); 1073dae1e52cSAmir Goldstein if (err < 0) 1074dae1e52cSAmir Goldstein /* fatal error */ 1075dae1e52cSAmir Goldstein return; 1076dae1e52cSAmir Goldstein 1077dae1e52cSAmir Goldstein if (this_bh) { 1078dae1e52cSAmir Goldstein BUFFER_TRACE(this_bh, "call ext4_handle_dirty_metadata"); 1079dae1e52cSAmir Goldstein 1080dae1e52cSAmir Goldstein /* 1081dae1e52cSAmir Goldstein * The buffer head should have an attached journal head at this 1082dae1e52cSAmir Goldstein * point. However, if the data is corrupted and an indirect 1083dae1e52cSAmir Goldstein * block pointed to itself, it would have been detached when 1084dae1e52cSAmir Goldstein * the block was cleared. Check for this instead of OOPSing. 1085dae1e52cSAmir Goldstein */ 1086dae1e52cSAmir Goldstein if ((EXT4_JOURNAL(inode) == NULL) || bh2jh(this_bh)) 1087dae1e52cSAmir Goldstein ext4_handle_dirty_metadata(handle, inode, this_bh); 1088dae1e52cSAmir Goldstein else 1089dae1e52cSAmir Goldstein EXT4_ERROR_INODE(inode, 1090dae1e52cSAmir Goldstein "circular indirect block detected at " 1091dae1e52cSAmir Goldstein "block %llu", 1092dae1e52cSAmir Goldstein (unsigned long long) this_bh->b_blocknr); 1093dae1e52cSAmir Goldstein } 1094dae1e52cSAmir Goldstein } 1095dae1e52cSAmir Goldstein 1096dae1e52cSAmir Goldstein /** 1097dae1e52cSAmir Goldstein * ext4_free_branches - free an array of branches 1098dae1e52cSAmir Goldstein * @handle: JBD handle for this transaction 1099dae1e52cSAmir Goldstein * @inode: inode we are dealing with 1100dae1e52cSAmir Goldstein * @parent_bh: the buffer_head which contains *@first and *@last 1101dae1e52cSAmir Goldstein * @first: array of block numbers 1102dae1e52cSAmir Goldstein * @last: pointer immediately past the end of array 1103dae1e52cSAmir Goldstein * @depth: depth of the branches to free 1104dae1e52cSAmir Goldstein * 1105dae1e52cSAmir Goldstein * We are freeing all blocks referred from these branches (numbers are 1106dae1e52cSAmir Goldstein * stored as little-endian 32-bit) and updating @inode->i_blocks 1107dae1e52cSAmir Goldstein * appropriately. 1108dae1e52cSAmir Goldstein */ 1109dae1e52cSAmir Goldstein static void ext4_free_branches(handle_t *handle, struct inode *inode, 1110dae1e52cSAmir Goldstein struct buffer_head *parent_bh, 1111dae1e52cSAmir Goldstein __le32 *first, __le32 *last, int depth) 1112dae1e52cSAmir Goldstein { 1113dae1e52cSAmir Goldstein ext4_fsblk_t nr; 1114dae1e52cSAmir Goldstein __le32 *p; 1115dae1e52cSAmir Goldstein 1116dae1e52cSAmir Goldstein if (ext4_handle_is_aborted(handle)) 1117dae1e52cSAmir Goldstein return; 1118dae1e52cSAmir Goldstein 1119dae1e52cSAmir Goldstein if (depth--) { 1120dae1e52cSAmir Goldstein struct buffer_head *bh; 1121dae1e52cSAmir Goldstein int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb); 1122dae1e52cSAmir Goldstein p = last; 1123dae1e52cSAmir Goldstein while (--p >= first) { 1124dae1e52cSAmir Goldstein nr = le32_to_cpu(*p); 1125dae1e52cSAmir Goldstein if (!nr) 1126dae1e52cSAmir Goldstein continue; /* A hole */ 1127dae1e52cSAmir Goldstein 1128dae1e52cSAmir Goldstein if (!ext4_data_block_valid(EXT4_SB(inode->i_sb), 1129dae1e52cSAmir Goldstein nr, 1)) { 1130dae1e52cSAmir Goldstein EXT4_ERROR_INODE(inode, 1131dae1e52cSAmir Goldstein "invalid indirect mapped " 1132dae1e52cSAmir Goldstein "block %lu (level %d)", 1133dae1e52cSAmir Goldstein (unsigned long) nr, depth); 1134dae1e52cSAmir Goldstein break; 1135dae1e52cSAmir Goldstein } 1136dae1e52cSAmir Goldstein 1137dae1e52cSAmir Goldstein /* Go read the buffer for the next level down */ 1138dae1e52cSAmir Goldstein bh = sb_bread(inode->i_sb, nr); 1139dae1e52cSAmir Goldstein 1140dae1e52cSAmir Goldstein /* 1141dae1e52cSAmir Goldstein * A read failure? Report error and clear slot 1142dae1e52cSAmir Goldstein * (should be rare). 1143dae1e52cSAmir Goldstein */ 1144dae1e52cSAmir Goldstein if (!bh) { 1145dae1e52cSAmir Goldstein EXT4_ERROR_INODE_BLOCK(inode, nr, 1146dae1e52cSAmir Goldstein "Read failure"); 1147dae1e52cSAmir Goldstein continue; 1148dae1e52cSAmir Goldstein } 1149dae1e52cSAmir Goldstein 1150dae1e52cSAmir Goldstein /* This zaps the entire block. Bottom up. */ 1151dae1e52cSAmir Goldstein BUFFER_TRACE(bh, "free child branches"); 1152dae1e52cSAmir Goldstein ext4_free_branches(handle, inode, bh, 1153dae1e52cSAmir Goldstein (__le32 *) bh->b_data, 1154dae1e52cSAmir Goldstein (__le32 *) bh->b_data + addr_per_block, 1155dae1e52cSAmir Goldstein depth); 1156dae1e52cSAmir Goldstein brelse(bh); 1157dae1e52cSAmir Goldstein 1158dae1e52cSAmir Goldstein /* 1159dae1e52cSAmir Goldstein * Everything below this this pointer has been 1160dae1e52cSAmir Goldstein * released. Now let this top-of-subtree go. 1161dae1e52cSAmir Goldstein * 1162dae1e52cSAmir Goldstein * We want the freeing of this indirect block to be 1163dae1e52cSAmir Goldstein * atomic in the journal with the updating of the 1164dae1e52cSAmir Goldstein * bitmap block which owns it. So make some room in 1165dae1e52cSAmir Goldstein * the journal. 1166dae1e52cSAmir Goldstein * 1167dae1e52cSAmir Goldstein * We zero the parent pointer *after* freeing its 1168dae1e52cSAmir Goldstein * pointee in the bitmaps, so if extend_transaction() 1169dae1e52cSAmir Goldstein * for some reason fails to put the bitmap changes and 1170dae1e52cSAmir Goldstein * the release into the same transaction, recovery 1171dae1e52cSAmir Goldstein * will merely complain about releasing a free block, 1172dae1e52cSAmir Goldstein * rather than leaking blocks. 1173dae1e52cSAmir Goldstein */ 1174dae1e52cSAmir Goldstein if (ext4_handle_is_aborted(handle)) 1175dae1e52cSAmir Goldstein return; 1176dae1e52cSAmir Goldstein if (try_to_extend_transaction(handle, inode)) { 1177dae1e52cSAmir Goldstein ext4_mark_inode_dirty(handle, inode); 1178dae1e52cSAmir Goldstein ext4_truncate_restart_trans(handle, inode, 1179dae1e52cSAmir Goldstein ext4_blocks_for_truncate(inode)); 1180dae1e52cSAmir Goldstein } 1181dae1e52cSAmir Goldstein 1182dae1e52cSAmir Goldstein /* 1183dae1e52cSAmir Goldstein * The forget flag here is critical because if 1184dae1e52cSAmir Goldstein * we are journaling (and not doing data 1185dae1e52cSAmir Goldstein * journaling), we have to make sure a revoke 1186dae1e52cSAmir Goldstein * record is written to prevent the journal 1187dae1e52cSAmir Goldstein * replay from overwriting the (former) 1188dae1e52cSAmir Goldstein * indirect block if it gets reallocated as a 1189dae1e52cSAmir Goldstein * data block. This must happen in the same 1190dae1e52cSAmir Goldstein * transaction where the data blocks are 1191dae1e52cSAmir Goldstein * actually freed. 1192dae1e52cSAmir Goldstein */ 1193dae1e52cSAmir Goldstein ext4_free_blocks(handle, inode, NULL, nr, 1, 1194dae1e52cSAmir Goldstein EXT4_FREE_BLOCKS_METADATA| 1195dae1e52cSAmir Goldstein EXT4_FREE_BLOCKS_FORGET); 1196dae1e52cSAmir Goldstein 1197dae1e52cSAmir Goldstein if (parent_bh) { 1198dae1e52cSAmir Goldstein /* 1199dae1e52cSAmir Goldstein * The block which we have just freed is 1200dae1e52cSAmir Goldstein * pointed to by an indirect block: journal it 1201dae1e52cSAmir Goldstein */ 1202dae1e52cSAmir Goldstein BUFFER_TRACE(parent_bh, "get_write_access"); 1203dae1e52cSAmir Goldstein if (!ext4_journal_get_write_access(handle, 1204dae1e52cSAmir Goldstein parent_bh)){ 1205dae1e52cSAmir Goldstein *p = 0; 1206dae1e52cSAmir Goldstein BUFFER_TRACE(parent_bh, 1207dae1e52cSAmir Goldstein "call ext4_handle_dirty_metadata"); 1208dae1e52cSAmir Goldstein ext4_handle_dirty_metadata(handle, 1209dae1e52cSAmir Goldstein inode, 1210dae1e52cSAmir Goldstein parent_bh); 1211dae1e52cSAmir Goldstein } 1212dae1e52cSAmir Goldstein } 1213dae1e52cSAmir Goldstein } 1214dae1e52cSAmir Goldstein } else { 1215dae1e52cSAmir Goldstein /* We have reached the bottom of the tree. */ 1216dae1e52cSAmir Goldstein BUFFER_TRACE(parent_bh, "free data blocks"); 1217dae1e52cSAmir Goldstein ext4_free_data(handle, inode, parent_bh, first, last); 1218dae1e52cSAmir Goldstein } 1219dae1e52cSAmir Goldstein } 1220dae1e52cSAmir Goldstein 1221dae1e52cSAmir Goldstein void ext4_ind_truncate(struct inode *inode) 1222dae1e52cSAmir Goldstein { 1223dae1e52cSAmir Goldstein handle_t *handle; 1224dae1e52cSAmir Goldstein struct ext4_inode_info *ei = EXT4_I(inode); 1225dae1e52cSAmir Goldstein __le32 *i_data = ei->i_data; 1226dae1e52cSAmir Goldstein int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb); 1227dae1e52cSAmir Goldstein struct address_space *mapping = inode->i_mapping; 1228dae1e52cSAmir Goldstein ext4_lblk_t offsets[4]; 1229dae1e52cSAmir Goldstein Indirect chain[4]; 1230dae1e52cSAmir Goldstein Indirect *partial; 1231dae1e52cSAmir Goldstein __le32 nr = 0; 1232dae1e52cSAmir Goldstein int n = 0; 1233dae1e52cSAmir Goldstein ext4_lblk_t last_block, max_block; 1234189e868fSAllison Henderson loff_t page_len; 1235dae1e52cSAmir Goldstein unsigned blocksize = inode->i_sb->s_blocksize; 1236189e868fSAllison Henderson int err; 1237dae1e52cSAmir Goldstein 1238dae1e52cSAmir Goldstein handle = start_transaction(inode); 1239dae1e52cSAmir Goldstein if (IS_ERR(handle)) 1240dae1e52cSAmir Goldstein return; /* AKPM: return what? */ 1241dae1e52cSAmir Goldstein 1242dae1e52cSAmir Goldstein last_block = (inode->i_size + blocksize-1) 1243dae1e52cSAmir Goldstein >> EXT4_BLOCK_SIZE_BITS(inode->i_sb); 1244dae1e52cSAmir Goldstein max_block = (EXT4_SB(inode->i_sb)->s_bitmap_maxbytes + blocksize-1) 1245dae1e52cSAmir Goldstein >> EXT4_BLOCK_SIZE_BITS(inode->i_sb); 1246dae1e52cSAmir Goldstein 1247189e868fSAllison Henderson if (inode->i_size % PAGE_CACHE_SIZE != 0) { 1248189e868fSAllison Henderson page_len = PAGE_CACHE_SIZE - 1249189e868fSAllison Henderson (inode->i_size & (PAGE_CACHE_SIZE - 1)); 1250189e868fSAllison Henderson 1251189e868fSAllison Henderson err = ext4_discard_partial_page_buffers(handle, 1252189e868fSAllison Henderson mapping, inode->i_size, page_len, 0); 1253189e868fSAllison Henderson 1254189e868fSAllison Henderson if (err) 1255dae1e52cSAmir Goldstein goto out_stop; 1256189e868fSAllison Henderson } 1257dae1e52cSAmir Goldstein 1258dae1e52cSAmir Goldstein if (last_block != max_block) { 1259dae1e52cSAmir Goldstein n = ext4_block_to_path(inode, last_block, offsets, NULL); 1260dae1e52cSAmir Goldstein if (n == 0) 1261dae1e52cSAmir Goldstein goto out_stop; /* error */ 1262dae1e52cSAmir Goldstein } 1263dae1e52cSAmir Goldstein 1264dae1e52cSAmir Goldstein /* 1265dae1e52cSAmir Goldstein * OK. This truncate is going to happen. We add the inode to the 1266dae1e52cSAmir Goldstein * orphan list, so that if this truncate spans multiple transactions, 1267dae1e52cSAmir Goldstein * and we crash, we will resume the truncate when the filesystem 1268dae1e52cSAmir Goldstein * recovers. It also marks the inode dirty, to catch the new size. 1269dae1e52cSAmir Goldstein * 1270dae1e52cSAmir Goldstein * Implication: the file must always be in a sane, consistent 1271dae1e52cSAmir Goldstein * truncatable state while each transaction commits. 1272dae1e52cSAmir Goldstein */ 1273dae1e52cSAmir Goldstein if (ext4_orphan_add(handle, inode)) 1274dae1e52cSAmir Goldstein goto out_stop; 1275dae1e52cSAmir Goldstein 1276dae1e52cSAmir Goldstein /* 1277dae1e52cSAmir Goldstein * From here we block out all ext4_get_block() callers who want to 1278dae1e52cSAmir Goldstein * modify the block allocation tree. 1279dae1e52cSAmir Goldstein */ 1280dae1e52cSAmir Goldstein down_write(&ei->i_data_sem); 1281dae1e52cSAmir Goldstein 1282dae1e52cSAmir Goldstein ext4_discard_preallocations(inode); 128351865fdaSZheng Liu ext4_es_remove_extent(inode, last_block, EXT_MAX_BLOCKS - last_block); 1284dae1e52cSAmir Goldstein 1285dae1e52cSAmir Goldstein /* 1286dae1e52cSAmir Goldstein * The orphan list entry will now protect us from any crash which 1287dae1e52cSAmir Goldstein * occurs before the truncate completes, so it is now safe to propagate 1288dae1e52cSAmir Goldstein * the new, shorter inode size (held for now in i_size) into the 1289dae1e52cSAmir Goldstein * on-disk inode. We do this via i_disksize, which is the value which 1290dae1e52cSAmir Goldstein * ext4 *really* writes onto the disk inode. 1291dae1e52cSAmir Goldstein */ 1292dae1e52cSAmir Goldstein ei->i_disksize = inode->i_size; 1293dae1e52cSAmir Goldstein 1294dae1e52cSAmir Goldstein if (last_block == max_block) { 1295dae1e52cSAmir Goldstein /* 1296dae1e52cSAmir Goldstein * It is unnecessary to free any data blocks if last_block is 1297dae1e52cSAmir Goldstein * equal to the indirect block limit. 1298dae1e52cSAmir Goldstein */ 1299dae1e52cSAmir Goldstein goto out_unlock; 1300dae1e52cSAmir Goldstein } else if (n == 1) { /* direct blocks */ 1301dae1e52cSAmir Goldstein ext4_free_data(handle, inode, NULL, i_data+offsets[0], 1302dae1e52cSAmir Goldstein i_data + EXT4_NDIR_BLOCKS); 1303dae1e52cSAmir Goldstein goto do_indirects; 1304dae1e52cSAmir Goldstein } 1305dae1e52cSAmir Goldstein 1306dae1e52cSAmir Goldstein partial = ext4_find_shared(inode, n, offsets, chain, &nr); 1307dae1e52cSAmir Goldstein /* Kill the top of shared branch (not detached) */ 1308dae1e52cSAmir Goldstein if (nr) { 1309dae1e52cSAmir Goldstein if (partial == chain) { 1310dae1e52cSAmir Goldstein /* Shared branch grows from the inode */ 1311dae1e52cSAmir Goldstein ext4_free_branches(handle, inode, NULL, 1312dae1e52cSAmir Goldstein &nr, &nr+1, (chain+n-1) - partial); 1313dae1e52cSAmir Goldstein *partial->p = 0; 1314dae1e52cSAmir Goldstein /* 1315dae1e52cSAmir Goldstein * We mark the inode dirty prior to restart, 1316dae1e52cSAmir Goldstein * and prior to stop. No need for it here. 1317dae1e52cSAmir Goldstein */ 1318dae1e52cSAmir Goldstein } else { 1319dae1e52cSAmir Goldstein /* Shared branch grows from an indirect block */ 1320dae1e52cSAmir Goldstein BUFFER_TRACE(partial->bh, "get_write_access"); 1321dae1e52cSAmir Goldstein ext4_free_branches(handle, inode, partial->bh, 1322dae1e52cSAmir Goldstein partial->p, 1323dae1e52cSAmir Goldstein partial->p+1, (chain+n-1) - partial); 1324dae1e52cSAmir Goldstein } 1325dae1e52cSAmir Goldstein } 1326dae1e52cSAmir Goldstein /* Clear the ends of indirect blocks on the shared branch */ 1327dae1e52cSAmir Goldstein while (partial > chain) { 1328dae1e52cSAmir Goldstein ext4_free_branches(handle, inode, partial->bh, partial->p + 1, 1329dae1e52cSAmir Goldstein (__le32*)partial->bh->b_data+addr_per_block, 1330dae1e52cSAmir Goldstein (chain+n-1) - partial); 1331dae1e52cSAmir Goldstein BUFFER_TRACE(partial->bh, "call brelse"); 1332dae1e52cSAmir Goldstein brelse(partial->bh); 1333dae1e52cSAmir Goldstein partial--; 1334dae1e52cSAmir Goldstein } 1335dae1e52cSAmir Goldstein do_indirects: 1336dae1e52cSAmir Goldstein /* Kill the remaining (whole) subtrees */ 1337dae1e52cSAmir Goldstein switch (offsets[0]) { 1338dae1e52cSAmir Goldstein default: 1339dae1e52cSAmir Goldstein nr = i_data[EXT4_IND_BLOCK]; 1340dae1e52cSAmir Goldstein if (nr) { 1341dae1e52cSAmir Goldstein ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 1); 1342dae1e52cSAmir Goldstein i_data[EXT4_IND_BLOCK] = 0; 1343dae1e52cSAmir Goldstein } 1344dae1e52cSAmir Goldstein case EXT4_IND_BLOCK: 1345dae1e52cSAmir Goldstein nr = i_data[EXT4_DIND_BLOCK]; 1346dae1e52cSAmir Goldstein if (nr) { 1347dae1e52cSAmir Goldstein ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 2); 1348dae1e52cSAmir Goldstein i_data[EXT4_DIND_BLOCK] = 0; 1349dae1e52cSAmir Goldstein } 1350dae1e52cSAmir Goldstein case EXT4_DIND_BLOCK: 1351dae1e52cSAmir Goldstein nr = i_data[EXT4_TIND_BLOCK]; 1352dae1e52cSAmir Goldstein if (nr) { 1353dae1e52cSAmir Goldstein ext4_free_branches(handle, inode, NULL, &nr, &nr+1, 3); 1354dae1e52cSAmir Goldstein i_data[EXT4_TIND_BLOCK] = 0; 1355dae1e52cSAmir Goldstein } 1356dae1e52cSAmir Goldstein case EXT4_TIND_BLOCK: 1357dae1e52cSAmir Goldstein ; 1358dae1e52cSAmir Goldstein } 1359dae1e52cSAmir Goldstein 1360dae1e52cSAmir Goldstein out_unlock: 1361dae1e52cSAmir Goldstein up_write(&ei->i_data_sem); 1362dae1e52cSAmir Goldstein inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 1363dae1e52cSAmir Goldstein ext4_mark_inode_dirty(handle, inode); 1364dae1e52cSAmir Goldstein 1365dae1e52cSAmir Goldstein /* 1366dae1e52cSAmir Goldstein * In a multi-transaction truncate, we only make the final transaction 1367dae1e52cSAmir Goldstein * synchronous 1368dae1e52cSAmir Goldstein */ 1369dae1e52cSAmir Goldstein if (IS_SYNC(inode)) 1370dae1e52cSAmir Goldstein ext4_handle_sync(handle); 1371dae1e52cSAmir Goldstein out_stop: 1372dae1e52cSAmir Goldstein /* 1373dae1e52cSAmir Goldstein * If this was a simple ftruncate(), and the file will remain alive 1374dae1e52cSAmir Goldstein * then we need to clear up the orphan record which we created above. 1375dae1e52cSAmir Goldstein * However, if this was a real unlink then we were called by 1376dae1e52cSAmir Goldstein * ext4_delete_inode(), and we allow that function to clean up the 1377dae1e52cSAmir Goldstein * orphan info for us. 1378dae1e52cSAmir Goldstein */ 1379dae1e52cSAmir Goldstein if (inode->i_nlink) 1380dae1e52cSAmir Goldstein ext4_orphan_del(handle, inode); 1381dae1e52cSAmir Goldstein 1382dae1e52cSAmir Goldstein ext4_journal_stop(handle); 1383dae1e52cSAmir Goldstein trace_ext4_truncate_exit(inode); 1384dae1e52cSAmir Goldstein } 1385dae1e52cSAmir Goldstein 13868bad6fc8SZheng Liu static int free_hole_blocks(handle_t *handle, struct inode *inode, 13878bad6fc8SZheng Liu struct buffer_head *parent_bh, __le32 *i_data, 13888bad6fc8SZheng Liu int level, ext4_lblk_t first, 13898bad6fc8SZheng Liu ext4_lblk_t count, int max) 13908bad6fc8SZheng Liu { 13918bad6fc8SZheng Liu struct buffer_head *bh = NULL; 13928bad6fc8SZheng Liu int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb); 13938bad6fc8SZheng Liu int ret = 0; 13948bad6fc8SZheng Liu int i, inc; 13958bad6fc8SZheng Liu ext4_lblk_t offset; 13968bad6fc8SZheng Liu __le32 blk; 13978bad6fc8SZheng Liu 13988bad6fc8SZheng Liu inc = 1 << ((EXT4_BLOCK_SIZE_BITS(inode->i_sb) - 2) * level); 13998bad6fc8SZheng Liu for (i = 0, offset = 0; i < max; i++, i_data++, offset += inc) { 14008bad6fc8SZheng Liu if (offset >= count + first) 14018bad6fc8SZheng Liu break; 14028bad6fc8SZheng Liu if (*i_data == 0 || (offset + inc) <= first) 14038bad6fc8SZheng Liu continue; 14048bad6fc8SZheng Liu blk = *i_data; 14058bad6fc8SZheng Liu if (level > 0) { 14068bad6fc8SZheng Liu ext4_lblk_t first2; 14078cde7ad1SZheng Liu bh = sb_bread(inode->i_sb, le32_to_cpu(blk)); 14088bad6fc8SZheng Liu if (!bh) { 14098cde7ad1SZheng Liu EXT4_ERROR_INODE_BLOCK(inode, le32_to_cpu(blk), 14108bad6fc8SZheng Liu "Read failure"); 14118bad6fc8SZheng Liu return -EIO; 14128bad6fc8SZheng Liu } 14138bad6fc8SZheng Liu first2 = (first > offset) ? first - offset : 0; 14148bad6fc8SZheng Liu ret = free_hole_blocks(handle, inode, bh, 14158bad6fc8SZheng Liu (__le32 *)bh->b_data, level - 1, 14168bad6fc8SZheng Liu first2, count - offset, 14178bad6fc8SZheng Liu inode->i_sb->s_blocksize >> 2); 14188bad6fc8SZheng Liu if (ret) { 14198bad6fc8SZheng Liu brelse(bh); 14208bad6fc8SZheng Liu goto err; 14218bad6fc8SZheng Liu } 14228bad6fc8SZheng Liu } 14238bad6fc8SZheng Liu if (level == 0 || 14248bad6fc8SZheng Liu (bh && all_zeroes((__le32 *)bh->b_data, 14258bad6fc8SZheng Liu (__le32 *)bh->b_data + addr_per_block))) { 14268bad6fc8SZheng Liu ext4_free_data(handle, inode, parent_bh, &blk, &blk+1); 14278bad6fc8SZheng Liu *i_data = 0; 14288bad6fc8SZheng Liu } 14298bad6fc8SZheng Liu brelse(bh); 14308bad6fc8SZheng Liu bh = NULL; 14318bad6fc8SZheng Liu } 14328bad6fc8SZheng Liu 14338bad6fc8SZheng Liu err: 14348bad6fc8SZheng Liu return ret; 14358bad6fc8SZheng Liu } 14368bad6fc8SZheng Liu 14378bad6fc8SZheng Liu static int ext4_free_hole_blocks(handle_t *handle, struct inode *inode, 14388bad6fc8SZheng Liu ext4_lblk_t first, ext4_lblk_t stop) 14398bad6fc8SZheng Liu { 14408bad6fc8SZheng Liu int addr_per_block = EXT4_ADDR_PER_BLOCK(inode->i_sb); 14418bad6fc8SZheng Liu int level, ret = 0; 14428bad6fc8SZheng Liu int num = EXT4_NDIR_BLOCKS; 14438bad6fc8SZheng Liu ext4_lblk_t count, max = EXT4_NDIR_BLOCKS; 14448bad6fc8SZheng Liu __le32 *i_data = EXT4_I(inode)->i_data; 14458bad6fc8SZheng Liu 14468bad6fc8SZheng Liu count = stop - first; 14478bad6fc8SZheng Liu for (level = 0; level < 4; level++, max *= addr_per_block) { 14488bad6fc8SZheng Liu if (first < max) { 14498bad6fc8SZheng Liu ret = free_hole_blocks(handle, inode, NULL, i_data, 14508bad6fc8SZheng Liu level, first, count, num); 14518bad6fc8SZheng Liu if (ret) 14528bad6fc8SZheng Liu goto err; 14538bad6fc8SZheng Liu if (count > max - first) 14548bad6fc8SZheng Liu count -= max - first; 14558bad6fc8SZheng Liu else 14568bad6fc8SZheng Liu break; 14578bad6fc8SZheng Liu first = 0; 14588bad6fc8SZheng Liu } else { 14598bad6fc8SZheng Liu first -= max; 14608bad6fc8SZheng Liu } 14618bad6fc8SZheng Liu i_data += num; 14628bad6fc8SZheng Liu if (level == 0) { 14638bad6fc8SZheng Liu num = 1; 14648bad6fc8SZheng Liu max = 1; 14658bad6fc8SZheng Liu } 14668bad6fc8SZheng Liu } 14678bad6fc8SZheng Liu 14688bad6fc8SZheng Liu err: 14698bad6fc8SZheng Liu return ret; 14708bad6fc8SZheng Liu } 14718bad6fc8SZheng Liu 14728bad6fc8SZheng Liu int ext4_ind_punch_hole(struct file *file, loff_t offset, loff_t length) 14738bad6fc8SZheng Liu { 14746131ffaaSAl Viro struct inode *inode = file_inode(file); 14758bad6fc8SZheng Liu struct super_block *sb = inode->i_sb; 14768bad6fc8SZheng Liu ext4_lblk_t first_block, stop_block; 14778bad6fc8SZheng Liu struct address_space *mapping = inode->i_mapping; 14788bad6fc8SZheng Liu handle_t *handle = NULL; 14798bad6fc8SZheng Liu loff_t first_page, last_page, page_len; 14808bad6fc8SZheng Liu loff_t first_page_offset, last_page_offset; 14818bad6fc8SZheng Liu int err = 0; 14828bad6fc8SZheng Liu 14838bad6fc8SZheng Liu /* 14848bad6fc8SZheng Liu * Write out all dirty pages to avoid race conditions 14858bad6fc8SZheng Liu * Then release them. 14868bad6fc8SZheng Liu */ 14878bad6fc8SZheng Liu if (mapping->nrpages && mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { 14888bad6fc8SZheng Liu err = filemap_write_and_wait_range(mapping, 14898bad6fc8SZheng Liu offset, offset + length - 1); 14908bad6fc8SZheng Liu if (err) 14918bad6fc8SZheng Liu return err; 14928bad6fc8SZheng Liu } 14938bad6fc8SZheng Liu 14948bad6fc8SZheng Liu mutex_lock(&inode->i_mutex); 14958bad6fc8SZheng Liu /* It's not possible punch hole on append only file */ 14968bad6fc8SZheng Liu if (IS_APPEND(inode) || IS_IMMUTABLE(inode)) { 14978bad6fc8SZheng Liu err = -EPERM; 14988bad6fc8SZheng Liu goto out_mutex; 14998bad6fc8SZheng Liu } 15008bad6fc8SZheng Liu if (IS_SWAPFILE(inode)) { 15018bad6fc8SZheng Liu err = -ETXTBSY; 15028bad6fc8SZheng Liu goto out_mutex; 15038bad6fc8SZheng Liu } 15048bad6fc8SZheng Liu 15058bad6fc8SZheng Liu /* No need to punch hole beyond i_size */ 15068bad6fc8SZheng Liu if (offset >= inode->i_size) 15078bad6fc8SZheng Liu goto out_mutex; 15088bad6fc8SZheng Liu 15098bad6fc8SZheng Liu /* 15108bad6fc8SZheng Liu * If the hole extents beyond i_size, set the hole 15118bad6fc8SZheng Liu * to end after the page that contains i_size 15128bad6fc8SZheng Liu */ 15138bad6fc8SZheng Liu if (offset + length > inode->i_size) { 15148bad6fc8SZheng Liu length = inode->i_size + 15158bad6fc8SZheng Liu PAGE_CACHE_SIZE - (inode->i_size & (PAGE_CACHE_SIZE - 1)) - 15168bad6fc8SZheng Liu offset; 15178bad6fc8SZheng Liu } 15188bad6fc8SZheng Liu 15198bad6fc8SZheng Liu first_page = (offset + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT; 15208bad6fc8SZheng Liu last_page = (offset + length) >> PAGE_CACHE_SHIFT; 15218bad6fc8SZheng Liu 15228bad6fc8SZheng Liu first_page_offset = first_page << PAGE_CACHE_SHIFT; 15238bad6fc8SZheng Liu last_page_offset = last_page << PAGE_CACHE_SHIFT; 15248bad6fc8SZheng Liu 15258bad6fc8SZheng Liu /* Now release the pages */ 15268bad6fc8SZheng Liu if (last_page_offset > first_page_offset) { 15278bad6fc8SZheng Liu truncate_pagecache_range(inode, first_page_offset, 15288bad6fc8SZheng Liu last_page_offset - 1); 15298bad6fc8SZheng Liu } 15308bad6fc8SZheng Liu 15318bad6fc8SZheng Liu /* Wait all existing dio works, newcomers will block on i_mutex */ 15328bad6fc8SZheng Liu inode_dio_wait(inode); 15338bad6fc8SZheng Liu 15348bad6fc8SZheng Liu handle = start_transaction(inode); 15358bad6fc8SZheng Liu if (IS_ERR(handle)) 15368bad6fc8SZheng Liu goto out_mutex; 15378bad6fc8SZheng Liu 15388bad6fc8SZheng Liu /* 15398bad6fc8SZheng Liu * Now we need to zero out the non-page-aligned data in the 15408bad6fc8SZheng Liu * pages at the start and tail of the hole, and unmap the buffer 15418bad6fc8SZheng Liu * heads for the block aligned regions of the page that were 15428bad6fc8SZheng Liu * completely zerod. 15438bad6fc8SZheng Liu */ 15448bad6fc8SZheng Liu if (first_page > last_page) { 15458bad6fc8SZheng Liu /* 15468bad6fc8SZheng Liu * If the file space being truncated is contained within a page 15478bad6fc8SZheng Liu * just zero out and unmap the middle of that page 15488bad6fc8SZheng Liu */ 15498bad6fc8SZheng Liu err = ext4_discard_partial_page_buffers(handle, 15508bad6fc8SZheng Liu mapping, offset, length, 0); 15518bad6fc8SZheng Liu if (err) 15528bad6fc8SZheng Liu goto out; 15538bad6fc8SZheng Liu } else { 15548bad6fc8SZheng Liu /* 15558bad6fc8SZheng Liu * Zero out and unmap the paritial page that contains 15568bad6fc8SZheng Liu * the start of the hole 15578bad6fc8SZheng Liu */ 15588bad6fc8SZheng Liu page_len = first_page_offset - offset; 15598bad6fc8SZheng Liu if (page_len > 0) { 15608bad6fc8SZheng Liu err = ext4_discard_partial_page_buffers(handle, mapping, 15618bad6fc8SZheng Liu offset, page_len, 0); 15628bad6fc8SZheng Liu if (err) 15638bad6fc8SZheng Liu goto out; 15648bad6fc8SZheng Liu } 15658bad6fc8SZheng Liu 15668bad6fc8SZheng Liu /* 15678bad6fc8SZheng Liu * Zero out and unmap the partial page that contains 15688bad6fc8SZheng Liu * the end of the hole 15698bad6fc8SZheng Liu */ 15708bad6fc8SZheng Liu page_len = offset + length - last_page_offset; 15718bad6fc8SZheng Liu if (page_len > 0) { 15728bad6fc8SZheng Liu err = ext4_discard_partial_page_buffers(handle, mapping, 15738bad6fc8SZheng Liu last_page_offset, page_len, 0); 15748bad6fc8SZheng Liu if (err) 15758bad6fc8SZheng Liu goto out; 15768bad6fc8SZheng Liu } 15778bad6fc8SZheng Liu } 15788bad6fc8SZheng Liu 15798bad6fc8SZheng Liu /* 15808bad6fc8SZheng Liu * If i_size contained in the last page, we need to 15818bad6fc8SZheng Liu * unmap and zero the paritial page after i_size 15828bad6fc8SZheng Liu */ 15838bad6fc8SZheng Liu if (inode->i_size >> PAGE_CACHE_SHIFT == last_page && 15848bad6fc8SZheng Liu inode->i_size % PAGE_CACHE_SIZE != 0) { 15858bad6fc8SZheng Liu page_len = PAGE_CACHE_SIZE - 15868bad6fc8SZheng Liu (inode->i_size & (PAGE_CACHE_SIZE - 1)); 15878bad6fc8SZheng Liu if (page_len > 0) { 15888bad6fc8SZheng Liu err = ext4_discard_partial_page_buffers(handle, 15898bad6fc8SZheng Liu mapping, inode->i_size, page_len, 0); 15908bad6fc8SZheng Liu if (err) 15918bad6fc8SZheng Liu goto out; 15928bad6fc8SZheng Liu } 15938bad6fc8SZheng Liu } 15948bad6fc8SZheng Liu 15958bad6fc8SZheng Liu first_block = (offset + sb->s_blocksize - 1) >> 15968bad6fc8SZheng Liu EXT4_BLOCK_SIZE_BITS(sb); 15978bad6fc8SZheng Liu stop_block = (offset + length) >> EXT4_BLOCK_SIZE_BITS(sb); 15988bad6fc8SZheng Liu 15998bad6fc8SZheng Liu if (first_block >= stop_block) 16008bad6fc8SZheng Liu goto out; 16018bad6fc8SZheng Liu 16028bad6fc8SZheng Liu down_write(&EXT4_I(inode)->i_data_sem); 16038bad6fc8SZheng Liu ext4_discard_preallocations(inode); 16048bad6fc8SZheng Liu 16058bad6fc8SZheng Liu err = ext4_es_remove_extent(inode, first_block, 16068bad6fc8SZheng Liu stop_block - first_block); 16078bad6fc8SZheng Liu err = ext4_free_hole_blocks(handle, inode, first_block, stop_block); 16088bad6fc8SZheng Liu 16098bad6fc8SZheng Liu ext4_discard_preallocations(inode); 16108bad6fc8SZheng Liu 16118bad6fc8SZheng Liu if (IS_SYNC(inode)) 16128bad6fc8SZheng Liu ext4_handle_sync(handle); 16138bad6fc8SZheng Liu 16148bad6fc8SZheng Liu up_write(&EXT4_I(inode)->i_data_sem); 16158bad6fc8SZheng Liu 16168bad6fc8SZheng Liu out: 16178bad6fc8SZheng Liu inode->i_mtime = inode->i_ctime = ext4_current_time(inode); 16188bad6fc8SZheng Liu ext4_mark_inode_dirty(handle, inode); 16198bad6fc8SZheng Liu ext4_journal_stop(handle); 16208bad6fc8SZheng Liu 16218bad6fc8SZheng Liu out_mutex: 16228bad6fc8SZheng Liu mutex_unlock(&inode->i_mutex); 16238bad6fc8SZheng Liu 16248bad6fc8SZheng Liu return err; 16258bad6fc8SZheng Liu } 1626