1 // SPDX-License-Identifier: GPL-2.0 1 // SPDX-License-Identifier: GPL-2.0 2 /* 2 /* 3 * linux/fs/ext4/balloc.c 3 * linux/fs/ext4/balloc.c 4 * 4 * 5 * Copyright (C) 1992, 1993, 1994, 1995 5 * Copyright (C) 1992, 1993, 1994, 1995 6 * Remy Card (card@masi.ibp.fr) 6 * Remy Card (card@masi.ibp.fr) 7 * Laboratoire MASI - Institut Blaise Pascal 7 * Laboratoire MASI - Institut Blaise Pascal 8 * Universite Pierre et Marie Curie (Paris VI) 8 * Universite Pierre et Marie Curie (Paris VI) 9 * 9 * 10 * Enhanced block allocation by Stephen Tweed 10 * Enhanced block allocation by Stephen Tweedie (sct@redhat.com), 1993 11 * Big-endian to little-endian byte-swapping/ 11 * Big-endian to little-endian byte-swapping/bitmaps by 12 * David S. Miller (davem@caip.rutgers. 12 * David S. Miller (davem@caip.rutgers.edu), 1995 13 */ 13 */ 14 14 15 #include <linux/time.h> 15 #include <linux/time.h> 16 #include <linux/capability.h> 16 #include <linux/capability.h> 17 #include <linux/fs.h> 17 #include <linux/fs.h> 18 #include <linux/quotaops.h> 18 #include <linux/quotaops.h> 19 #include <linux/buffer_head.h> 19 #include <linux/buffer_head.h> 20 #include "ext4.h" 20 #include "ext4.h" 21 #include "ext4_jbd2.h" 21 #include "ext4_jbd2.h" 22 #include "mballoc.h" 22 #include "mballoc.h" 23 23 24 #include <trace/events/ext4.h> 24 #include <trace/events/ext4.h> 25 #include <kunit/static_stub.h> << 26 25 27 static unsigned ext4_num_base_meta_clusters(st 26 static unsigned ext4_num_base_meta_clusters(struct super_block *sb, 28 ex 27 ext4_group_t block_group); 29 /* 28 /* 30 * balloc.c contains the blocks allocation and 29 * balloc.c contains the blocks allocation and deallocation routines 31 */ 30 */ 32 31 33 /* 32 /* 34 * Calculate block group number for a given bl 33 * Calculate block group number for a given block number 35 */ 34 */ 36 ext4_group_t ext4_get_group_number(struct supe 35 ext4_group_t ext4_get_group_number(struct super_block *sb, 37 ext4_fsblk_ 36 ext4_fsblk_t block) 38 { 37 { 39 ext4_group_t group; 38 ext4_group_t group; 40 39 41 if (test_opt2(sb, STD_GROUP_SIZE)) 40 if (test_opt2(sb, STD_GROUP_SIZE)) 42 group = (block - 41 group = (block - 43 le32_to_cpu(EXT4_SB(s 42 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block)) >> 44 (EXT4_BLOCK_SIZE_BITS( 43 (EXT4_BLOCK_SIZE_BITS(sb) + EXT4_CLUSTER_BITS(sb) + 3); 45 else 44 else 46 ext4_get_group_no_and_offset(s 45 ext4_get_group_no_and_offset(sb, block, &group, NULL); 47 return group; 46 return group; 48 } 47 } 49 48 50 /* 49 /* 51 * Calculate the block group number and offset 50 * Calculate the block group number and offset into the block/cluster 52 * allocation bitmap, given a block number 51 * allocation bitmap, given a block number 53 */ 52 */ 54 void ext4_get_group_no_and_offset(struct super 53 void ext4_get_group_no_and_offset(struct super_block *sb, ext4_fsblk_t blocknr, 55 ext4_group_t *blockgrpp, ext4_ 54 ext4_group_t *blockgrpp, ext4_grpblk_t *offsetp) 56 { 55 { 57 struct ext4_super_block *es = EXT4_SB( 56 struct ext4_super_block *es = EXT4_SB(sb)->s_es; 58 ext4_grpblk_t offset; 57 ext4_grpblk_t offset; 59 58 60 blocknr = blocknr - le32_to_cpu(es->s_ 59 blocknr = blocknr - le32_to_cpu(es->s_first_data_block); 61 offset = do_div(blocknr, EXT4_BLOCKS_P 60 offset = do_div(blocknr, EXT4_BLOCKS_PER_GROUP(sb)) >> 62 EXT4_SB(sb)->s_cluster_bits; 61 EXT4_SB(sb)->s_cluster_bits; 63 if (offsetp) 62 if (offsetp) 64 *offsetp = offset; 63 *offsetp = offset; 65 if (blockgrpp) 64 if (blockgrpp) 66 *blockgrpp = blocknr; 65 *blockgrpp = blocknr; 67 66 68 } 67 } 69 68 70 /* 69 /* 71 * Check whether the 'block' lives within the 70 * Check whether the 'block' lives within the 'block_group'. Returns 1 if so 72 * and 0 otherwise. 71 * and 0 otherwise. 73 */ 72 */ 74 static inline int ext4_block_in_group(struct s 73 static inline int ext4_block_in_group(struct super_block *sb, 75 ext4_fsb 74 ext4_fsblk_t block, 76 ext4_gro 75 ext4_group_t block_group) 77 { 76 { 78 ext4_group_t actual_group; 77 ext4_group_t actual_group; 79 78 80 actual_group = ext4_get_group_number(s 79 actual_group = ext4_get_group_number(sb, block); 81 return (actual_group == block_group) ? 80 return (actual_group == block_group) ? 1 : 0; 82 } 81 } 83 82 84 /* !! 83 /* Return the number of clusters used for file system metadata; this 85 * Return the number of clusters used for file << 86 * represents the overhead needed by the file 84 * represents the overhead needed by the file system. 87 */ 85 */ 88 static unsigned ext4_num_overhead_clusters(str 86 static unsigned ext4_num_overhead_clusters(struct super_block *sb, 89 ext 87 ext4_group_t block_group, 90 str 88 struct ext4_group_desc *gdp) 91 { 89 { 92 unsigned base_clusters, num_clusters; !! 90 unsigned num_clusters; 93 int block_cluster = -1, inode_cluster; !! 91 int block_cluster = -1, inode_cluster = -1, itbl_cluster = -1, i, c; 94 int itbl_cluster_start = -1, itbl_clus << 95 ext4_fsblk_t start = ext4_group_first_ 92 ext4_fsblk_t start = ext4_group_first_block_no(sb, block_group); 96 ext4_fsblk_t end = start + EXT4_BLOCKS !! 93 ext4_fsblk_t itbl_blk; 97 ext4_fsblk_t itbl_blk_start, itbl_blk_ << 98 struct ext4_sb_info *sbi = EXT4_SB(sb) 94 struct ext4_sb_info *sbi = EXT4_SB(sb); 99 95 100 /* This is the number of clusters used 96 /* This is the number of clusters used by the superblock, 101 * block group descriptors, and reserv 97 * block group descriptors, and reserved block group 102 * descriptor blocks */ 98 * descriptor blocks */ 103 base_clusters = ext4_num_base_meta_clu !! 99 num_clusters = ext4_num_base_meta_clusters(sb, block_group); 104 num_clusters = base_clusters; << 105 << 106 /* << 107 * Account and record inode table clus << 108 * is in the block group, or inode tab << 109 * [-1, -1] and won't overlap with blo << 110 * accounted below. << 111 */ << 112 itbl_blk_start = ext4_inode_table(sb, << 113 itbl_blk_end = itbl_blk_start + sbi->s << 114 if (itbl_blk_start <= end && itbl_blk_ << 115 itbl_blk_start = max(itbl_blk_ << 116 itbl_blk_end = min(itbl_blk_en << 117 << 118 itbl_cluster_start = EXT4_B2C( << 119 itbl_cluster_end = EXT4_B2C(sb << 120 << 121 num_clusters += itbl_cluster_e << 122 /* check if border cluster is << 123 if (itbl_cluster_start == base << 124 num_clusters--; << 125 } << 126 100 127 /* 101 /* 128 * For the allocation bitmaps, we firs !! 102 * For the allocation bitmaps and inode table, we first need 129 * if the block is in the block group. !! 103 * to check to see if the block is in the block group. If it 130 * to see if the cluster is already ac !! 104 * is, then check to see if the cluster is already accounted 131 * used for the base metadata cluster !! 105 * for in the clusters used for the base metadata cluster, or >> 106 * if we can increment the base metadata cluster to include >> 107 * that block. Otherwise, we will have to track the cluster >> 108 * used for the allocation bitmap or inode table explicitly. 132 * Normally all of these blocks are co 109 * Normally all of these blocks are contiguous, so the special 133 * case handling shouldn't be necessar 110 * case handling shouldn't be necessary except for *very* 134 * unusual file system layouts. 111 * unusual file system layouts. 135 */ 112 */ 136 if (ext4_block_in_group(sb, ext4_block 113 if (ext4_block_in_group(sb, ext4_block_bitmap(sb, gdp), block_group)) { 137 block_cluster = EXT4_B2C(sbi, 114 block_cluster = EXT4_B2C(sbi, 138 ext4_ 115 ext4_block_bitmap(sb, gdp) - start); 139 if (block_cluster >= base_clus !! 116 if (block_cluster < num_clusters) 140 (block_cluster < itbl_clus !! 117 block_cluster = -1; 141 block_cluster > itbl_clust !! 118 else if (block_cluster == num_clusters) { 142 num_clusters++; 119 num_clusters++; >> 120 block_cluster = -1; >> 121 } 143 } 122 } 144 123 145 if (ext4_block_in_group(sb, ext4_inode 124 if (ext4_block_in_group(sb, ext4_inode_bitmap(sb, gdp), block_group)) { 146 inode_cluster = EXT4_B2C(sbi, 125 inode_cluster = EXT4_B2C(sbi, 147 ext4_ 126 ext4_inode_bitmap(sb, gdp) - start); 148 /* !! 127 if (inode_cluster < num_clusters) 149 * Additional check if inode b !! 128 inode_cluster = -1; 150 * block_cluster !! 129 else if (inode_cluster == num_clusters) { 151 */ !! 130 num_clusters++; 152 if (inode_cluster != block_clu !! 131 inode_cluster = -1; 153 inode_cluster >= base_clus !! 132 } 154 (inode_cluster < itbl_clus !! 133 } 155 inode_cluster > itbl_clust !! 134 >> 135 itbl_blk = ext4_inode_table(sb, gdp); >> 136 for (i = 0; i < sbi->s_itb_per_group; i++) { >> 137 if (ext4_block_in_group(sb, itbl_blk + i, block_group)) { >> 138 c = EXT4_B2C(sbi, itbl_blk + i - start); >> 139 if ((c < num_clusters) || (c == inode_cluster) || >> 140 (c == block_cluster) || (c == itbl_cluster)) >> 141 continue; >> 142 if (c == num_clusters) { >> 143 num_clusters++; >> 144 continue; >> 145 } 156 num_clusters++; 146 num_clusters++; >> 147 itbl_cluster = c; >> 148 } 157 } 149 } 158 150 >> 151 if (block_cluster != -1) >> 152 num_clusters++; >> 153 if (inode_cluster != -1) >> 154 num_clusters++; >> 155 159 return num_clusters; 156 return num_clusters; 160 } 157 } 161 158 162 static unsigned int num_clusters_in_group(stru 159 static unsigned int num_clusters_in_group(struct super_block *sb, 163 ext4 160 ext4_group_t block_group) 164 { 161 { 165 unsigned int blocks; 162 unsigned int blocks; 166 163 167 if (block_group == ext4_get_groups_cou 164 if (block_group == ext4_get_groups_count(sb) - 1) { 168 /* 165 /* 169 * Even though mke2fs always i 166 * Even though mke2fs always initializes the first and 170 * last group, just in case so 167 * last group, just in case some other tool was used, 171 * we need to make sure we cal 168 * we need to make sure we calculate the right free 172 * blocks. 169 * blocks. 173 */ 170 */ 174 blocks = ext4_blocks_count(EXT 171 blocks = ext4_blocks_count(EXT4_SB(sb)->s_es) - 175 ext4_group_first_block 172 ext4_group_first_block_no(sb, block_group); 176 } else 173 } else 177 blocks = EXT4_BLOCKS_PER_GROUP 174 blocks = EXT4_BLOCKS_PER_GROUP(sb); 178 return EXT4_NUM_B2C(EXT4_SB(sb), block 175 return EXT4_NUM_B2C(EXT4_SB(sb), blocks); 179 } 176 } 180 177 181 /* Initializes an uninitialized block bitmap * 178 /* Initializes an uninitialized block bitmap */ 182 static int ext4_init_block_bitmap(struct super 179 static int ext4_init_block_bitmap(struct super_block *sb, 183 struct buff 180 struct buffer_head *bh, 184 ext4_group_ 181 ext4_group_t block_group, 185 struct ext4 182 struct ext4_group_desc *gdp) 186 { 183 { 187 unsigned int bit, bit_max; 184 unsigned int bit, bit_max; 188 struct ext4_sb_info *sbi = EXT4_SB(sb) 185 struct ext4_sb_info *sbi = EXT4_SB(sb); 189 ext4_fsblk_t start, tmp; 186 ext4_fsblk_t start, tmp; 190 187 191 ASSERT(buffer_locked(bh)); !! 188 J_ASSERT_BH(bh, buffer_locked(bh)); 192 189 >> 190 /* If checksum is bad mark all blocks used to prevent allocation >> 191 * essentially implementing a per-group read-only flag. */ 193 if (!ext4_group_desc_csum_verify(sb, b 192 if (!ext4_group_desc_csum_verify(sb, block_group, gdp)) { 194 ext4_mark_group_bitmap_corrupt 193 ext4_mark_group_bitmap_corrupted(sb, block_group, 195 EXT4_G 194 EXT4_GROUP_INFO_BBITMAP_CORRUPT | 196 EXT4_G 195 EXT4_GROUP_INFO_IBITMAP_CORRUPT); 197 return -EFSBADCRC; 196 return -EFSBADCRC; 198 } 197 } 199 memset(bh->b_data, 0, sb->s_blocksize) 198 memset(bh->b_data, 0, sb->s_blocksize); 200 199 201 bit_max = ext4_num_base_meta_clusters( 200 bit_max = ext4_num_base_meta_clusters(sb, block_group); 202 if ((bit_max >> 3) >= bh->b_size) 201 if ((bit_max >> 3) >= bh->b_size) 203 return -EFSCORRUPTED; 202 return -EFSCORRUPTED; 204 203 205 for (bit = 0; bit < bit_max; bit++) 204 for (bit = 0; bit < bit_max; bit++) 206 ext4_set_bit(bit, bh->b_data); 205 ext4_set_bit(bit, bh->b_data); 207 206 208 start = ext4_group_first_block_no(sb, 207 start = ext4_group_first_block_no(sb, block_group); 209 208 210 /* Set bits for block and inode bitmap 209 /* Set bits for block and inode bitmaps, and inode table */ 211 tmp = ext4_block_bitmap(sb, gdp); 210 tmp = ext4_block_bitmap(sb, gdp); 212 if (ext4_block_in_group(sb, tmp, block 211 if (ext4_block_in_group(sb, tmp, block_group)) 213 ext4_set_bit(EXT4_B2C(sbi, tmp 212 ext4_set_bit(EXT4_B2C(sbi, tmp - start), bh->b_data); 214 213 215 tmp = ext4_inode_bitmap(sb, gdp); 214 tmp = ext4_inode_bitmap(sb, gdp); 216 if (ext4_block_in_group(sb, tmp, block 215 if (ext4_block_in_group(sb, tmp, block_group)) 217 ext4_set_bit(EXT4_B2C(sbi, tmp 216 ext4_set_bit(EXT4_B2C(sbi, tmp - start), bh->b_data); 218 217 219 tmp = ext4_inode_table(sb, gdp); 218 tmp = ext4_inode_table(sb, gdp); 220 for (; tmp < ext4_inode_table(sb, gdp) 219 for (; tmp < ext4_inode_table(sb, gdp) + 221 sbi->s_itb_per_group; tmp 220 sbi->s_itb_per_group; tmp++) { 222 if (ext4_block_in_group(sb, tm 221 if (ext4_block_in_group(sb, tmp, block_group)) 223 ext4_set_bit(EXT4_B2C( 222 ext4_set_bit(EXT4_B2C(sbi, tmp - start), bh->b_data); 224 } 223 } 225 224 226 /* 225 /* 227 * Also if the number of blocks within 226 * Also if the number of blocks within the group is less than 228 * the blocksize * 8 ( which is the si 227 * the blocksize * 8 ( which is the size of bitmap ), set rest 229 * of the block bitmap to 1 228 * of the block bitmap to 1 230 */ 229 */ 231 ext4_mark_bitmap_end(num_clusters_in_g 230 ext4_mark_bitmap_end(num_clusters_in_group(sb, block_group), 232 sb->s_blocksize * 231 sb->s_blocksize * 8, bh->b_data); 233 return 0; 232 return 0; 234 } 233 } 235 234 236 /* Return the number of free blocks in a block 235 /* Return the number of free blocks in a block group. It is used when 237 * the block bitmap is uninitialized, so we ca 236 * the block bitmap is uninitialized, so we can't just count the bits 238 * in the bitmap. */ 237 * in the bitmap. */ 239 unsigned ext4_free_clusters_after_init(struct 238 unsigned ext4_free_clusters_after_init(struct super_block *sb, 240 ext4_gr 239 ext4_group_t block_group, 241 struct 240 struct ext4_group_desc *gdp) 242 { 241 { 243 return num_clusters_in_group(sb, block !! 242 return num_clusters_in_group(sb, block_group) - 244 ext4_num_overhead_clusters(sb, 243 ext4_num_overhead_clusters(sb, block_group, gdp); 245 } 244 } 246 245 247 /* 246 /* 248 * The free blocks are managed by bitmaps. A 247 * The free blocks are managed by bitmaps. A file system contains several 249 * blocks groups. Each group contains 1 bitma 248 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap 250 * block for inodes, N blocks for the inode ta 249 * block for inodes, N blocks for the inode table and data blocks. 251 * 250 * 252 * The file system contains group descriptors 251 * The file system contains group descriptors which are located after the 253 * super block. Each descriptor contains the 252 * super block. Each descriptor contains the number of the bitmap block and 254 * the free blocks count in the block. The de 253 * the free blocks count in the block. The descriptors are loaded in memory 255 * when a file system is mounted (see ext4_fil 254 * when a file system is mounted (see ext4_fill_super). 256 */ 255 */ 257 256 258 /** 257 /** 259 * ext4_get_group_desc() -- load group descrip 258 * ext4_get_group_desc() -- load group descriptor from disk 260 * @sb: super block 259 * @sb: super block 261 * @block_group: given block group 260 * @block_group: given block group 262 * @bh: pointer to the buffer 261 * @bh: pointer to the buffer head to store the block 263 * group descriptor 262 * group descriptor 264 */ 263 */ 265 struct ext4_group_desc * ext4_get_group_desc(s 264 struct ext4_group_desc * ext4_get_group_desc(struct super_block *sb, 266 e 265 ext4_group_t block_group, 267 s 266 struct buffer_head **bh) 268 { 267 { 269 unsigned int group_desc; 268 unsigned int group_desc; 270 unsigned int offset; 269 unsigned int offset; 271 ext4_group_t ngroups = ext4_get_groups 270 ext4_group_t ngroups = ext4_get_groups_count(sb); 272 struct ext4_group_desc *desc; 271 struct ext4_group_desc *desc; 273 struct ext4_sb_info *sbi = EXT4_SB(sb) 272 struct ext4_sb_info *sbi = EXT4_SB(sb); 274 struct buffer_head *bh_p; << 275 << 276 KUNIT_STATIC_STUB_REDIRECT(ext4_get_gr << 277 sb, block_g << 278 273 279 if (block_group >= ngroups) { 274 if (block_group >= ngroups) { 280 ext4_error(sb, "block_group >= 275 ext4_error(sb, "block_group >= groups_count - block_group = %u," 281 " groups_count = %u 276 " groups_count = %u", block_group, ngroups); 282 277 283 return NULL; 278 return NULL; 284 } 279 } 285 280 286 group_desc = block_group >> EXT4_DESC_ 281 group_desc = block_group >> EXT4_DESC_PER_BLOCK_BITS(sb); 287 offset = block_group & (EXT4_DESC_PER_ 282 offset = block_group & (EXT4_DESC_PER_BLOCK(sb) - 1); 288 bh_p = sbi_array_rcu_deref(sbi, s_grou !! 283 if (!sbi->s_group_desc[group_desc]) { 289 /* << 290 * sbi_array_rcu_deref returns with rc << 291 * the pointer being dereferenced won' << 292 * looking at the usage in add_new_gdb << 293 * just the pointer, and so it remains << 294 */ << 295 if (!bh_p) { << 296 ext4_error(sb, "Group descript 284 ext4_error(sb, "Group descriptor not loaded - " 297 "block_group = %u, 285 "block_group = %u, group_desc = %u, desc = %u", 298 block_group, group_ 286 block_group, group_desc, offset); 299 return NULL; 287 return NULL; 300 } 288 } 301 289 302 desc = (struct ext4_group_desc *)( 290 desc = (struct ext4_group_desc *)( 303 (__u8 *)bh_p->b_data + !! 291 (__u8 *)sbi->s_group_desc[group_desc]->b_data + 304 offset * EXT4_DESC_SIZE(sb)); 292 offset * EXT4_DESC_SIZE(sb)); 305 if (bh) 293 if (bh) 306 *bh = bh_p; !! 294 *bh = sbi->s_group_desc[group_desc]; 307 return desc; 295 return desc; 308 } 296 } 309 297 310 static ext4_fsblk_t ext4_valid_block_bitmap_pa << 311 << 312 << 313 { << 314 ext4_grpblk_t next_zero_bit; << 315 unsigned long bitmap_size = sb->s_bloc << 316 unsigned int offset = num_clusters_in_ << 317 << 318 if (bitmap_size <= offset) << 319 return 0; << 320 << 321 next_zero_bit = ext4_find_next_zero_bi << 322 << 323 return (next_zero_bit < bitmap_size ? << 324 } << 325 << 326 struct ext4_group_info *ext4_get_group_info(st << 327 ex << 328 { << 329 struct ext4_group_info **grp_info; << 330 long indexv, indexh; << 331 << 332 if (unlikely(group >= EXT4_SB(sb)->s_g << 333 return NULL; << 334 indexv = group >> (EXT4_DESC_PER_BLOCK << 335 indexh = group & ((EXT4_DESC_PER_BLOCK << 336 grp_info = sbi_array_rcu_deref(EXT4_SB << 337 return grp_info[indexh]; << 338 } << 339 << 340 /* 298 /* 341 * Return the block number which was discovere 299 * Return the block number which was discovered to be invalid, or 0 if 342 * the block bitmap is valid. 300 * the block bitmap is valid. 343 */ 301 */ 344 static ext4_fsblk_t ext4_valid_block_bitmap(st 302 static ext4_fsblk_t ext4_valid_block_bitmap(struct super_block *sb, 345 st 303 struct ext4_group_desc *desc, 346 ex 304 ext4_group_t block_group, 347 st 305 struct buffer_head *bh) 348 { 306 { 349 struct ext4_sb_info *sbi = EXT4_SB(sb) 307 struct ext4_sb_info *sbi = EXT4_SB(sb); 350 ext4_grpblk_t offset; 308 ext4_grpblk_t offset; 351 ext4_grpblk_t next_zero_bit; 309 ext4_grpblk_t next_zero_bit; 352 ext4_grpblk_t max_bit = EXT4_CLUSTERS_ 310 ext4_grpblk_t max_bit = EXT4_CLUSTERS_PER_GROUP(sb); 353 ext4_fsblk_t blk; 311 ext4_fsblk_t blk; 354 ext4_fsblk_t group_first_block; 312 ext4_fsblk_t group_first_block; 355 313 356 if (ext4_has_feature_flex_bg(sb)) { 314 if (ext4_has_feature_flex_bg(sb)) { 357 /* with FLEX_BG, the inode/blo 315 /* with FLEX_BG, the inode/block bitmaps and itable 358 * blocks may not be in the gr 316 * blocks may not be in the group at all 359 * so the bitmap validation wi 317 * so the bitmap validation will be skipped for those groups 360 * or it has to also read the 318 * or it has to also read the block group where the bitmaps 361 * are located to verify they 319 * are located to verify they are set. 362 */ 320 */ 363 return 0; 321 return 0; 364 } 322 } 365 group_first_block = ext4_group_first_b 323 group_first_block = ext4_group_first_block_no(sb, block_group); 366 324 367 /* check whether block bitmap block nu 325 /* check whether block bitmap block number is set */ 368 blk = ext4_block_bitmap(sb, desc); 326 blk = ext4_block_bitmap(sb, desc); 369 offset = blk - group_first_block; 327 offset = blk - group_first_block; 370 if (offset < 0 || EXT4_B2C(sbi, offset 328 if (offset < 0 || EXT4_B2C(sbi, offset) >= max_bit || 371 !ext4_test_bit(EXT4_B2C(sbi, offse 329 !ext4_test_bit(EXT4_B2C(sbi, offset), bh->b_data)) 372 /* bad block bitmap */ 330 /* bad block bitmap */ 373 return blk; 331 return blk; 374 332 375 /* check whether the inode bitmap bloc 333 /* check whether the inode bitmap block number is set */ 376 blk = ext4_inode_bitmap(sb, desc); 334 blk = ext4_inode_bitmap(sb, desc); 377 offset = blk - group_first_block; 335 offset = blk - group_first_block; 378 if (offset < 0 || EXT4_B2C(sbi, offset 336 if (offset < 0 || EXT4_B2C(sbi, offset) >= max_bit || 379 !ext4_test_bit(EXT4_B2C(sbi, offse 337 !ext4_test_bit(EXT4_B2C(sbi, offset), bh->b_data)) 380 /* bad block bitmap */ 338 /* bad block bitmap */ 381 return blk; 339 return blk; 382 340 383 /* check whether the inode table block 341 /* check whether the inode table block number is set */ 384 blk = ext4_inode_table(sb, desc); 342 blk = ext4_inode_table(sb, desc); 385 offset = blk - group_first_block; 343 offset = blk - group_first_block; 386 if (offset < 0 || EXT4_B2C(sbi, offset 344 if (offset < 0 || EXT4_B2C(sbi, offset) >= max_bit || 387 EXT4_B2C(sbi, offset + sbi->s_itb_ !! 345 EXT4_B2C(sbi, offset + sbi->s_itb_per_group) >= max_bit) 388 return blk; 346 return blk; 389 next_zero_bit = ext4_find_next_zero_bi 347 next_zero_bit = ext4_find_next_zero_bit(bh->b_data, 390 EXT4_B2C(sbi, offset + !! 348 EXT4_B2C(sbi, offset + sbi->s_itb_per_group), 391 EXT4_B2C(sbi, offset)) 349 EXT4_B2C(sbi, offset)); 392 if (next_zero_bit < 350 if (next_zero_bit < 393 EXT4_B2C(sbi, offset + sbi->s_itb_ !! 351 EXT4_B2C(sbi, offset + sbi->s_itb_per_group)) 394 /* bad bitmap for inode tables 352 /* bad bitmap for inode tables */ 395 return blk; 353 return blk; 396 return 0; 354 return 0; 397 } 355 } 398 356 399 static int ext4_validate_block_bitmap(struct s 357 static int ext4_validate_block_bitmap(struct super_block *sb, 400 struct e 358 struct ext4_group_desc *desc, 401 ext4_gro 359 ext4_group_t block_group, 402 struct b 360 struct buffer_head *bh) 403 { 361 { 404 ext4_fsblk_t blk; 362 ext4_fsblk_t blk; 405 struct ext4_group_info *grp; !! 363 struct ext4_group_info *grp = ext4_get_group_info(sb, block_group); 406 << 407 if (EXT4_SB(sb)->s_mount_state & EXT4_ << 408 return 0; << 409 << 410 grp = ext4_get_group_info(sb, block_gr << 411 364 412 if (buffer_verified(bh)) 365 if (buffer_verified(bh)) 413 return 0; 366 return 0; 414 if (!grp || EXT4_MB_GRP_BBITMAP_CORRUP !! 367 if (EXT4_MB_GRP_BBITMAP_CORRUPT(grp)) 415 return -EFSCORRUPTED; 368 return -EFSCORRUPTED; 416 369 417 ext4_lock_group(sb, block_group); 370 ext4_lock_group(sb, block_group); 418 if (buffer_verified(bh)) 371 if (buffer_verified(bh)) 419 goto verified; 372 goto verified; 420 if (unlikely(!ext4_block_bitmap_csum_v !! 373 if (unlikely(!ext4_block_bitmap_csum_verify(sb, block_group, 421 ext4_simulate_fail(sb, EX !! 374 desc, bh))) { 422 ext4_unlock_group(sb, block_gr 375 ext4_unlock_group(sb, block_group); 423 ext4_error(sb, "bg %u: bad blo 376 ext4_error(sb, "bg %u: bad block bitmap checksum", block_group); 424 ext4_mark_group_bitmap_corrupt 377 ext4_mark_group_bitmap_corrupted(sb, block_group, 425 EXT4_G 378 EXT4_GROUP_INFO_BBITMAP_CORRUPT); 426 return -EFSBADCRC; 379 return -EFSBADCRC; 427 } 380 } 428 blk = ext4_valid_block_bitmap(sb, desc 381 blk = ext4_valid_block_bitmap(sb, desc, block_group, bh); 429 if (unlikely(blk != 0)) { 382 if (unlikely(blk != 0)) { 430 ext4_unlock_group(sb, block_gr 383 ext4_unlock_group(sb, block_group); 431 ext4_error(sb, "bg %u: block % 384 ext4_error(sb, "bg %u: block %llu: invalid block bitmap", 432 block_group, blk); 385 block_group, blk); 433 ext4_mark_group_bitmap_corrupt 386 ext4_mark_group_bitmap_corrupted(sb, block_group, 434 EXT4_G 387 EXT4_GROUP_INFO_BBITMAP_CORRUPT); 435 return -EFSCORRUPTED; 388 return -EFSCORRUPTED; 436 } 389 } 437 blk = ext4_valid_block_bitmap_padding( << 438 if (unlikely(blk != 0)) { << 439 ext4_unlock_group(sb, block_gr << 440 ext4_error(sb, "bg %u: block % << 441 block_group, blk); << 442 ext4_mark_group_bitmap_corrupt << 443 << 444 return -EFSCORRUPTED; << 445 } << 446 set_buffer_verified(bh); 390 set_buffer_verified(bh); 447 verified: 391 verified: 448 ext4_unlock_group(sb, block_group); 392 ext4_unlock_group(sb, block_group); 449 return 0; 393 return 0; 450 } 394 } 451 395 452 /** 396 /** 453 * ext4_read_block_bitmap_nowait() 397 * ext4_read_block_bitmap_nowait() 454 * @sb: super block 398 * @sb: super block 455 * @block_group: given block group 399 * @block_group: given block group 456 * @ignore_locked: ignore locked buffers << 457 * 400 * 458 * Read the bitmap for a given block_group,and 401 * Read the bitmap for a given block_group,and validate the 459 * bits for block/inode/inode tables are set i 402 * bits for block/inode/inode tables are set in the bitmaps 460 * 403 * 461 * Return buffer_head on success or an ERR_PTR !! 404 * Return buffer_head on success or NULL in case of failure. 462 */ 405 */ 463 struct buffer_head * 406 struct buffer_head * 464 ext4_read_block_bitmap_nowait(struct super_blo !! 407 ext4_read_block_bitmap_nowait(struct super_block *sb, ext4_group_t block_group) 465 bool ignore_lock << 466 { 408 { 467 struct ext4_group_desc *desc; 409 struct ext4_group_desc *desc; 468 struct ext4_sb_info *sbi = EXT4_SB(sb) 410 struct ext4_sb_info *sbi = EXT4_SB(sb); 469 struct buffer_head *bh; 411 struct buffer_head *bh; 470 ext4_fsblk_t bitmap_blk; 412 ext4_fsblk_t bitmap_blk; 471 int err; 413 int err; 472 414 473 KUNIT_STATIC_STUB_REDIRECT(ext4_read_b << 474 sb, block_g << 475 << 476 desc = ext4_get_group_desc(sb, block_g 415 desc = ext4_get_group_desc(sb, block_group, NULL); 477 if (!desc) 416 if (!desc) 478 return ERR_PTR(-EFSCORRUPTED); 417 return ERR_PTR(-EFSCORRUPTED); 479 bitmap_blk = ext4_block_bitmap(sb, des 418 bitmap_blk = ext4_block_bitmap(sb, desc); 480 if ((bitmap_blk <= le32_to_cpu(sbi->s_ 419 if ((bitmap_blk <= le32_to_cpu(sbi->s_es->s_first_data_block)) || 481 (bitmap_blk >= ext4_blocks_count(s 420 (bitmap_blk >= ext4_blocks_count(sbi->s_es))) { 482 ext4_error(sb, "Invalid block 421 ext4_error(sb, "Invalid block bitmap block %llu in " 483 "block_group %u", b 422 "block_group %u", bitmap_blk, block_group); 484 ext4_mark_group_bitmap_corrupt 423 ext4_mark_group_bitmap_corrupted(sb, block_group, 485 EXT4_G 424 EXT4_GROUP_INFO_BBITMAP_CORRUPT); 486 return ERR_PTR(-EFSCORRUPTED); 425 return ERR_PTR(-EFSCORRUPTED); 487 } 426 } 488 bh = sb_getblk(sb, bitmap_blk); 427 bh = sb_getblk(sb, bitmap_blk); 489 if (unlikely(!bh)) { 428 if (unlikely(!bh)) { 490 ext4_warning(sb, "Cannot get b 429 ext4_warning(sb, "Cannot get buffer for block bitmap - " 491 "block_group = %u 430 "block_group = %u, block_bitmap = %llu", 492 block_group, bitm 431 block_group, bitmap_blk); 493 return ERR_PTR(-ENOMEM); 432 return ERR_PTR(-ENOMEM); 494 } 433 } 495 434 496 if (ignore_locked && buffer_locked(bh) << 497 /* buffer under IO already, re << 498 put_bh(bh); << 499 return NULL; << 500 } << 501 << 502 if (bitmap_uptodate(bh)) 435 if (bitmap_uptodate(bh)) 503 goto verify; 436 goto verify; 504 437 505 lock_buffer(bh); 438 lock_buffer(bh); 506 if (bitmap_uptodate(bh)) { 439 if (bitmap_uptodate(bh)) { 507 unlock_buffer(bh); 440 unlock_buffer(bh); 508 goto verify; 441 goto verify; 509 } 442 } 510 ext4_lock_group(sb, block_group); 443 ext4_lock_group(sb, block_group); 511 if (ext4_has_group_desc_csum(sb) && 444 if (ext4_has_group_desc_csum(sb) && 512 (desc->bg_flags & cpu_to_le16(EXT4 445 (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) { 513 if (block_group == 0) { 446 if (block_group == 0) { 514 ext4_unlock_group(sb, 447 ext4_unlock_group(sb, block_group); 515 unlock_buffer(bh); 448 unlock_buffer(bh); 516 ext4_error(sb, "Block 449 ext4_error(sb, "Block bitmap for bg 0 marked " 517 "uninitiali 450 "uninitialized"); 518 err = -EFSCORRUPTED; 451 err = -EFSCORRUPTED; 519 goto out; 452 goto out; 520 } 453 } 521 err = ext4_init_block_bitmap(s 454 err = ext4_init_block_bitmap(sb, bh, block_group, desc); 522 if (err) { << 523 ext4_unlock_group(sb, << 524 unlock_buffer(bh); << 525 ext4_error(sb, "Failed << 526 "%u: %d", b << 527 goto out; << 528 } << 529 set_bitmap_uptodate(bh); 455 set_bitmap_uptodate(bh); 530 set_buffer_uptodate(bh); 456 set_buffer_uptodate(bh); 531 set_buffer_verified(bh); 457 set_buffer_verified(bh); 532 ext4_unlock_group(sb, block_gr 458 ext4_unlock_group(sb, block_group); 533 unlock_buffer(bh); 459 unlock_buffer(bh); 534 return bh; !! 460 if (err) { >> 461 ext4_error(sb, "Failed to init block bitmap for group " >> 462 "%u: %d", block_group, err); >> 463 goto out; >> 464 } >> 465 goto verify; 535 } 466 } 536 ext4_unlock_group(sb, block_group); 467 ext4_unlock_group(sb, block_group); 537 if (buffer_uptodate(bh)) { 468 if (buffer_uptodate(bh)) { 538 /* 469 /* 539 * if not uninit if bh is upto 470 * if not uninit if bh is uptodate, 540 * bitmap is also uptodate 471 * bitmap is also uptodate 541 */ 472 */ 542 set_bitmap_uptodate(bh); 473 set_bitmap_uptodate(bh); 543 unlock_buffer(bh); 474 unlock_buffer(bh); 544 goto verify; 475 goto verify; 545 } 476 } 546 /* 477 /* 547 * submit the buffer_head for reading 478 * submit the buffer_head for reading 548 */ 479 */ 549 set_buffer_new(bh); 480 set_buffer_new(bh); 550 trace_ext4_read_block_bitmap_load(sb, !! 481 trace_ext4_read_block_bitmap_load(sb, block_group); 551 ext4_read_bh_nowait(bh, REQ_META | REQ !! 482 bh->b_end_io = ext4_end_bitmap_read; 552 (ignore_locked ? R !! 483 get_bh(bh); 553 ext4_end_bitmap_re !! 484 submit_bh(REQ_OP_READ, REQ_META | REQ_PRIO, bh); 554 return bh; 485 return bh; 555 verify: 486 verify: 556 err = ext4_validate_block_bitmap(sb, d 487 err = ext4_validate_block_bitmap(sb, desc, block_group, bh); 557 if (err) 488 if (err) 558 goto out; 489 goto out; 559 return bh; 490 return bh; 560 out: 491 out: 561 put_bh(bh); 492 put_bh(bh); 562 return ERR_PTR(err); 493 return ERR_PTR(err); 563 } 494 } 564 495 565 /* Returns 0 on success, -errno on error */ !! 496 /* Returns 0 on success, 1 on error */ 566 int ext4_wait_block_bitmap(struct super_block 497 int ext4_wait_block_bitmap(struct super_block *sb, ext4_group_t block_group, 567 struct buffer_head 498 struct buffer_head *bh) 568 { 499 { 569 struct ext4_group_desc *desc; 500 struct ext4_group_desc *desc; 570 501 571 KUNIT_STATIC_STUB_REDIRECT(ext4_wait_b << 572 sb, block_g << 573 << 574 if (!buffer_new(bh)) 502 if (!buffer_new(bh)) 575 return 0; 503 return 0; 576 desc = ext4_get_group_desc(sb, block_g 504 desc = ext4_get_group_desc(sb, block_group, NULL); 577 if (!desc) 505 if (!desc) 578 return -EFSCORRUPTED; 506 return -EFSCORRUPTED; 579 wait_on_buffer(bh); 507 wait_on_buffer(bh); 580 ext4_simulate_fail_bh(sb, bh, EXT4_SIM << 581 if (!buffer_uptodate(bh)) { 508 if (!buffer_uptodate(bh)) { 582 ext4_error_err(sb, EIO, "Canno !! 509 ext4_error(sb, "Cannot read block bitmap - " 583 "block_group = !! 510 "block_group = %u, block_bitmap = %llu", 584 block_group, (u !! 511 block_group, (unsigned long long) bh->b_blocknr); 585 ext4_mark_group_bitmap_corrupt 512 ext4_mark_group_bitmap_corrupted(sb, block_group, 586 EXT4_G 513 EXT4_GROUP_INFO_BBITMAP_CORRUPT); 587 return -EIO; 514 return -EIO; 588 } 515 } 589 clear_buffer_new(bh); 516 clear_buffer_new(bh); 590 /* Panic or remount fs read-only if bl 517 /* Panic or remount fs read-only if block bitmap is invalid */ 591 return ext4_validate_block_bitmap(sb, 518 return ext4_validate_block_bitmap(sb, desc, block_group, bh); 592 } 519 } 593 520 594 struct buffer_head * 521 struct buffer_head * 595 ext4_read_block_bitmap(struct super_block *sb, 522 ext4_read_block_bitmap(struct super_block *sb, ext4_group_t block_group) 596 { 523 { 597 struct buffer_head *bh; 524 struct buffer_head *bh; 598 int err; 525 int err; 599 526 600 bh = ext4_read_block_bitmap_nowait(sb, !! 527 bh = ext4_read_block_bitmap_nowait(sb, block_group); 601 if (IS_ERR(bh)) 528 if (IS_ERR(bh)) 602 return bh; 529 return bh; 603 err = ext4_wait_block_bitmap(sb, block 530 err = ext4_wait_block_bitmap(sb, block_group, bh); 604 if (err) { 531 if (err) { 605 put_bh(bh); 532 put_bh(bh); 606 return ERR_PTR(err); 533 return ERR_PTR(err); 607 } 534 } 608 return bh; 535 return bh; 609 } 536 } 610 537 611 /** 538 /** 612 * ext4_has_free_clusters() 539 * ext4_has_free_clusters() 613 * @sbi: in-core super block structure. 540 * @sbi: in-core super block structure. 614 * @nclusters: number of needed blocks 541 * @nclusters: number of needed blocks 615 * @flags: flags from ext4_mb_new_blocks( 542 * @flags: flags from ext4_mb_new_blocks() 616 * 543 * 617 * Check if filesystem has nclusters free & av 544 * Check if filesystem has nclusters free & available for allocation. 618 * On success return 1, return 0 on failure. 545 * On success return 1, return 0 on failure. 619 */ 546 */ 620 static int ext4_has_free_clusters(struct ext4_ 547 static int ext4_has_free_clusters(struct ext4_sb_info *sbi, 621 s64 ncluster 548 s64 nclusters, unsigned int flags) 622 { 549 { 623 s64 free_clusters, dirty_clusters, rsv 550 s64 free_clusters, dirty_clusters, rsv, resv_clusters; 624 struct percpu_counter *fcc = &sbi->s_f 551 struct percpu_counter *fcc = &sbi->s_freeclusters_counter; 625 struct percpu_counter *dcc = &sbi->s_d 552 struct percpu_counter *dcc = &sbi->s_dirtyclusters_counter; 626 553 627 free_clusters = percpu_counter_read_p 554 free_clusters = percpu_counter_read_positive(fcc); 628 dirty_clusters = percpu_counter_read_p 555 dirty_clusters = percpu_counter_read_positive(dcc); 629 resv_clusters = atomic64_read(&sbi->s_ 556 resv_clusters = atomic64_read(&sbi->s_resv_clusters); 630 557 631 /* 558 /* 632 * r_blocks_count should always be mul 559 * r_blocks_count should always be multiple of the cluster ratio so 633 * we are safe to do a plane bit shift 560 * we are safe to do a plane bit shift only. 634 */ 561 */ 635 rsv = (ext4_r_blocks_count(sbi->s_es) 562 rsv = (ext4_r_blocks_count(sbi->s_es) >> sbi->s_cluster_bits) + 636 resv_clusters; 563 resv_clusters; 637 564 638 if (free_clusters - (nclusters + rsv + 565 if (free_clusters - (nclusters + rsv + dirty_clusters) < 639 EXT4_F 566 EXT4_FREECLUSTERS_WATERMARK) { 640 free_clusters = percpu_counte 567 free_clusters = percpu_counter_sum_positive(fcc); 641 dirty_clusters = percpu_counte 568 dirty_clusters = percpu_counter_sum_positive(dcc); 642 } 569 } 643 /* Check whether we have space after a 570 /* Check whether we have space after accounting for current 644 * dirty clusters & root reserved clus 571 * dirty clusters & root reserved clusters. 645 */ 572 */ 646 if (free_clusters >= (rsv + nclusters 573 if (free_clusters >= (rsv + nclusters + dirty_clusters)) 647 return 1; 574 return 1; 648 575 649 /* Hm, nope. Are (enough) root reserv 576 /* Hm, nope. Are (enough) root reserved clusters available? */ 650 if (uid_eq(sbi->s_resuid, current_fsui 577 if (uid_eq(sbi->s_resuid, current_fsuid()) || 651 (!gid_eq(sbi->s_resgid, GLOBAL_ROO 578 (!gid_eq(sbi->s_resgid, GLOBAL_ROOT_GID) && in_group_p(sbi->s_resgid)) || 652 capable(CAP_SYS_RESOURCE) || 579 capable(CAP_SYS_RESOURCE) || 653 (flags & EXT4_MB_USE_ROOT_BLOCKS)) 580 (flags & EXT4_MB_USE_ROOT_BLOCKS)) { 654 581 655 if (free_clusters >= (ncluster 582 if (free_clusters >= (nclusters + dirty_clusters + 656 resv_clu 583 resv_clusters)) 657 return 1; 584 return 1; 658 } 585 } 659 /* No free blocks. Let's see if we can 586 /* No free blocks. Let's see if we can dip into reserved pool */ 660 if (flags & EXT4_MB_USE_RESERVED) { 587 if (flags & EXT4_MB_USE_RESERVED) { 661 if (free_clusters >= (ncluster 588 if (free_clusters >= (nclusters + dirty_clusters)) 662 return 1; 589 return 1; 663 } 590 } 664 591 665 return 0; 592 return 0; 666 } 593 } 667 594 668 int ext4_claim_free_clusters(struct ext4_sb_in 595 int ext4_claim_free_clusters(struct ext4_sb_info *sbi, 669 s64 nclusters, un 596 s64 nclusters, unsigned int flags) 670 { 597 { 671 if (ext4_has_free_clusters(sbi, nclust 598 if (ext4_has_free_clusters(sbi, nclusters, flags)) { 672 percpu_counter_add(&sbi->s_dir 599 percpu_counter_add(&sbi->s_dirtyclusters_counter, nclusters); 673 return 0; 600 return 0; 674 } else 601 } else 675 return -ENOSPC; 602 return -ENOSPC; 676 } 603 } 677 604 678 /** 605 /** 679 * ext4_should_retry_alloc() - check if a bloc !! 606 * ext4_should_retry_alloc() 680 * @sb: superblock !! 607 * @sb: super block 681 * @retries: number of retry attemp !! 608 * @retries number of attemps has been made 682 * !! 609 * 683 * ext4_should_retry_alloc() is called when EN !! 610 * ext4_should_retry_alloc() is called when ENOSPC is returned, and if 684 * attempting to allocate blocks. If there's !! 611 * it is profitable to retry the operation, this function will wait 685 * journal transaction might free some space a !! 612 * for the current or committing transaction to complete, and then 686 * succeed, this function will wait for the cu !! 613 * return TRUE. We will only retry once. 687 * to complete and then return TRUE. << 688 */ 614 */ 689 int ext4_should_retry_alloc(struct super_block 615 int ext4_should_retry_alloc(struct super_block *sb, int *retries) 690 { 616 { 691 struct ext4_sb_info *sbi = EXT4_SB(sb) !! 617 if (!ext4_has_free_clusters(EXT4_SB(sb), 1, 0) || 692 !! 618 (*retries)++ > 1 || 693 if (!sbi->s_journal) !! 619 !EXT4_SB(sb)->s_journal) 694 return 0; << 695 << 696 if (++(*retries) > 3) { << 697 percpu_counter_inc(&sbi->s_sra << 698 return 0; 620 return 0; 699 } << 700 621 701 /* << 702 * if there's no indication that block << 703 * possible we just missed a transacti << 704 */ << 705 smp_mb(); 622 smp_mb(); 706 if (sbi->s_mb_free_pending == 0) { !! 623 if (EXT4_SB(sb)->s_mb_free_pending == 0) 707 if (test_opt(sb, DISCARD)) { !! 624 return 0; 708 atomic_inc(&sbi->s_ret << 709 flush_work(&sbi->s_dis << 710 atomic_dec(&sbi->s_ret << 711 } << 712 return ext4_has_free_clusters( << 713 } << 714 625 715 /* !! 626 jbd_debug(1, "%s: retrying operation after ENOSPC\n", sb->s_id); 716 * it's possible we've just missed a t !! 627 jbd2_journal_force_commit_nested(EXT4_SB(sb)->s_journal); 717 * so ignore the returned status << 718 */ << 719 ext4_debug("%s: retrying operation aft << 720 (void) jbd2_journal_force_commit_neste << 721 return 1; 628 return 1; 722 } 629 } 723 630 724 /* 631 /* 725 * ext4_new_meta_blocks() -- allocate block fo 632 * ext4_new_meta_blocks() -- allocate block for meta data (indexing) blocks 726 * 633 * 727 * @handle: handle to this transac 634 * @handle: handle to this transaction 728 * @inode: file inode 635 * @inode: file inode 729 * @goal: given target block(fil 636 * @goal: given target block(filesystem wide) 730 * @count: pointer to total numbe 637 * @count: pointer to total number of clusters needed 731 * @errp: error code 638 * @errp: error code 732 * 639 * 733 * Return 1st allocated block number on succes 640 * Return 1st allocated block number on success, *count stores total account 734 * error stores in errp pointer 641 * error stores in errp pointer 735 */ 642 */ 736 ext4_fsblk_t ext4_new_meta_blocks(handle_t *ha 643 ext4_fsblk_t ext4_new_meta_blocks(handle_t *handle, struct inode *inode, 737 ext4_fsblk_t 644 ext4_fsblk_t goal, unsigned int flags, 738 unsigned lon 645 unsigned long *count, int *errp) 739 { 646 { 740 struct ext4_allocation_request ar; 647 struct ext4_allocation_request ar; 741 ext4_fsblk_t ret; 648 ext4_fsblk_t ret; 742 649 743 memset(&ar, 0, sizeof(ar)); 650 memset(&ar, 0, sizeof(ar)); 744 /* Fill with neighbour allocated block 651 /* Fill with neighbour allocated blocks */ 745 ar.inode = inode; 652 ar.inode = inode; 746 ar.goal = goal; 653 ar.goal = goal; 747 ar.len = count ? *count : 1; 654 ar.len = count ? *count : 1; 748 ar.flags = flags; 655 ar.flags = flags; 749 656 750 ret = ext4_mb_new_blocks(handle, &ar, 657 ret = ext4_mb_new_blocks(handle, &ar, errp); 751 if (count) 658 if (count) 752 *count = ar.len; 659 *count = ar.len; 753 /* 660 /* 754 * Account for the allocated meta bloc 661 * Account for the allocated meta blocks. We will never 755 * fail EDQUOT for metdata, but we do 662 * fail EDQUOT for metdata, but we do account for it. 756 */ 663 */ 757 if (!(*errp) && (flags & EXT4_MB_DELAL 664 if (!(*errp) && (flags & EXT4_MB_DELALLOC_RESERVED)) { 758 dquot_alloc_block_nofail(inode 665 dquot_alloc_block_nofail(inode, 759 EXT4_C2B(EXT4_ 666 EXT4_C2B(EXT4_SB(inode->i_sb), ar.len)); 760 } 667 } 761 return ret; 668 return ret; 762 } 669 } 763 670 764 /** 671 /** 765 * ext4_count_free_clusters() -- count filesys 672 * ext4_count_free_clusters() -- count filesystem free clusters 766 * @sb: superblock 673 * @sb: superblock 767 * 674 * 768 * Adds up the number of free clusters from ea 675 * Adds up the number of free clusters from each block group. 769 */ 676 */ 770 ext4_fsblk_t ext4_count_free_clusters(struct s 677 ext4_fsblk_t ext4_count_free_clusters(struct super_block *sb) 771 { 678 { 772 ext4_fsblk_t desc_count; 679 ext4_fsblk_t desc_count; 773 struct ext4_group_desc *gdp; 680 struct ext4_group_desc *gdp; 774 ext4_group_t i; 681 ext4_group_t i; 775 ext4_group_t ngroups = ext4_get_groups 682 ext4_group_t ngroups = ext4_get_groups_count(sb); 776 struct ext4_group_info *grp; 683 struct ext4_group_info *grp; 777 #ifdef EXT4FS_DEBUG 684 #ifdef EXT4FS_DEBUG 778 struct ext4_super_block *es; 685 struct ext4_super_block *es; 779 ext4_fsblk_t bitmap_count; 686 ext4_fsblk_t bitmap_count; 780 unsigned int x; 687 unsigned int x; 781 struct buffer_head *bitmap_bh = NULL; 688 struct buffer_head *bitmap_bh = NULL; 782 689 783 es = EXT4_SB(sb)->s_es; 690 es = EXT4_SB(sb)->s_es; 784 desc_count = 0; 691 desc_count = 0; 785 bitmap_count = 0; 692 bitmap_count = 0; 786 gdp = NULL; 693 gdp = NULL; 787 694 788 for (i = 0; i < ngroups; i++) { 695 for (i = 0; i < ngroups; i++) { 789 gdp = ext4_get_group_desc(sb, 696 gdp = ext4_get_group_desc(sb, i, NULL); 790 if (!gdp) 697 if (!gdp) 791 continue; 698 continue; 792 grp = NULL; 699 grp = NULL; 793 if (EXT4_SB(sb)->s_group_info) 700 if (EXT4_SB(sb)->s_group_info) 794 grp = ext4_get_group_i 701 grp = ext4_get_group_info(sb, i); 795 if (!grp || !EXT4_MB_GRP_BBITM 702 if (!grp || !EXT4_MB_GRP_BBITMAP_CORRUPT(grp)) 796 desc_count += ext4_fre 703 desc_count += ext4_free_group_clusters(sb, gdp); 797 brelse(bitmap_bh); 704 brelse(bitmap_bh); 798 bitmap_bh = ext4_read_block_bi 705 bitmap_bh = ext4_read_block_bitmap(sb, i); 799 if (IS_ERR(bitmap_bh)) { 706 if (IS_ERR(bitmap_bh)) { 800 bitmap_bh = NULL; 707 bitmap_bh = NULL; 801 continue; 708 continue; 802 } 709 } 803 710 804 x = ext4_count_free(bitmap_bh- 711 x = ext4_count_free(bitmap_bh->b_data, 805 EXT4_CLUST 712 EXT4_CLUSTERS_PER_GROUP(sb) / 8); 806 printk(KERN_DEBUG "group %u: s 713 printk(KERN_DEBUG "group %u: stored = %d, counted = %u\n", 807 i, ext4_free_group_clu 714 i, ext4_free_group_clusters(sb, gdp), x); 808 bitmap_count += x; 715 bitmap_count += x; 809 } 716 } 810 brelse(bitmap_bh); 717 brelse(bitmap_bh); 811 printk(KERN_DEBUG "ext4_count_free_clu 718 printk(KERN_DEBUG "ext4_count_free_clusters: stored = %llu" 812 ", computed = %llu, %llu\n", 719 ", computed = %llu, %llu\n", 813 EXT4_NUM_B2C(EXT4_SB(sb), ext4_ 720 EXT4_NUM_B2C(EXT4_SB(sb), ext4_free_blocks_count(es)), 814 desc_count, bitmap_count); 721 desc_count, bitmap_count); 815 return bitmap_count; 722 return bitmap_count; 816 #else 723 #else 817 desc_count = 0; 724 desc_count = 0; 818 for (i = 0; i < ngroups; i++) { 725 for (i = 0; i < ngroups; i++) { 819 gdp = ext4_get_group_desc(sb, 726 gdp = ext4_get_group_desc(sb, i, NULL); 820 if (!gdp) 727 if (!gdp) 821 continue; 728 continue; 822 grp = NULL; 729 grp = NULL; 823 if (EXT4_SB(sb)->s_group_info) 730 if (EXT4_SB(sb)->s_group_info) 824 grp = ext4_get_group_i 731 grp = ext4_get_group_info(sb, i); 825 if (!grp || !EXT4_MB_GRP_BBITM 732 if (!grp || !EXT4_MB_GRP_BBITMAP_CORRUPT(grp)) 826 desc_count += ext4_fre 733 desc_count += ext4_free_group_clusters(sb, gdp); 827 } 734 } 828 735 829 return desc_count; 736 return desc_count; 830 #endif 737 #endif 831 } 738 } 832 739 833 static inline int test_root(ext4_group_t a, in 740 static inline int test_root(ext4_group_t a, int b) 834 { 741 { 835 while (1) { 742 while (1) { 836 if (a < b) 743 if (a < b) 837 return 0; 744 return 0; 838 if (a == b) 745 if (a == b) 839 return 1; 746 return 1; 840 if ((a % b) != 0) 747 if ((a % b) != 0) 841 return 0; 748 return 0; 842 a = a / b; 749 a = a / b; 843 } 750 } 844 } 751 } 845 752 846 /** 753 /** 847 * ext4_bg_has_super - number of blocks u 754 * ext4_bg_has_super - number of blocks used by the superblock in group 848 * @sb: superblock for filesystem 755 * @sb: superblock for filesystem 849 * @group: group number to check 756 * @group: group number to check 850 * 757 * 851 * Return the number of blocks used by th 758 * Return the number of blocks used by the superblock (primary or backup) 852 * in this group. Currently this will be 759 * in this group. Currently this will be only 0 or 1. 853 */ 760 */ 854 int ext4_bg_has_super(struct super_block *sb, 761 int ext4_bg_has_super(struct super_block *sb, ext4_group_t group) 855 { 762 { 856 struct ext4_super_block *es = EXT4_SB( 763 struct ext4_super_block *es = EXT4_SB(sb)->s_es; 857 764 858 if (group == 0) 765 if (group == 0) 859 return 1; 766 return 1; 860 if (ext4_has_feature_sparse_super2(sb) 767 if (ext4_has_feature_sparse_super2(sb)) { 861 if (group == le32_to_cpu(es->s 768 if (group == le32_to_cpu(es->s_backup_bgs[0]) || 862 group == le32_to_cpu(es->s 769 group == le32_to_cpu(es->s_backup_bgs[1])) 863 return 1; 770 return 1; 864 return 0; 771 return 0; 865 } 772 } 866 if ((group <= 1) || !ext4_has_feature_ 773 if ((group <= 1) || !ext4_has_feature_sparse_super(sb)) 867 return 1; 774 return 1; 868 if (!(group & 1)) 775 if (!(group & 1)) 869 return 0; 776 return 0; 870 if (test_root(group, 3) || (test_root( 777 if (test_root(group, 3) || (test_root(group, 5)) || 871 test_root(group, 7)) 778 test_root(group, 7)) 872 return 1; 779 return 1; 873 780 874 return 0; 781 return 0; 875 } 782 } 876 783 877 static unsigned long ext4_bg_num_gdb_meta(stru 784 static unsigned long ext4_bg_num_gdb_meta(struct super_block *sb, 878 ext4_g 785 ext4_group_t group) 879 { 786 { 880 unsigned long metagroup = group / EXT4 787 unsigned long metagroup = group / EXT4_DESC_PER_BLOCK(sb); 881 ext4_group_t first = metagroup * EXT4_ 788 ext4_group_t first = metagroup * EXT4_DESC_PER_BLOCK(sb); 882 ext4_group_t last = first + EXT4_DESC_ 789 ext4_group_t last = first + EXT4_DESC_PER_BLOCK(sb) - 1; 883 790 884 if (group == first || group == first + 791 if (group == first || group == first + 1 || group == last) 885 return 1; 792 return 1; 886 return 0; 793 return 0; 887 } 794 } 888 795 889 static unsigned long ext4_bg_num_gdb_nometa(st 796 static unsigned long ext4_bg_num_gdb_nometa(struct super_block *sb, 890 ext4_g 797 ext4_group_t group) 891 { 798 { 892 if (!ext4_bg_has_super(sb, group)) 799 if (!ext4_bg_has_super(sb, group)) 893 return 0; 800 return 0; 894 801 895 if (ext4_has_feature_meta_bg(sb)) 802 if (ext4_has_feature_meta_bg(sb)) 896 return le32_to_cpu(EXT4_SB(sb) 803 return le32_to_cpu(EXT4_SB(sb)->s_es->s_first_meta_bg); 897 else 804 else 898 return EXT4_SB(sb)->s_gdb_coun 805 return EXT4_SB(sb)->s_gdb_count; 899 } 806 } 900 807 901 /** 808 /** 902 * ext4_bg_num_gdb - number of blocks use 809 * ext4_bg_num_gdb - number of blocks used by the group table in group 903 * @sb: superblock for filesystem 810 * @sb: superblock for filesystem 904 * @group: group number to check 811 * @group: group number to check 905 * 812 * 906 * Return the number of blocks used by th 813 * Return the number of blocks used by the group descriptor table 907 * (primary or backup) in this group. In 814 * (primary or backup) in this group. In the future there may be a 908 * different number of descriptor blocks 815 * different number of descriptor blocks in each group. 909 */ 816 */ 910 unsigned long ext4_bg_num_gdb(struct super_blo 817 unsigned long ext4_bg_num_gdb(struct super_block *sb, ext4_group_t group) 911 { 818 { 912 unsigned long first_meta_bg = 819 unsigned long first_meta_bg = 913 le32_to_cpu(EXT4_SB(sb 820 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_meta_bg); 914 unsigned long metagroup = group / EXT4 821 unsigned long metagroup = group / EXT4_DESC_PER_BLOCK(sb); 915 822 916 if (!ext4_has_feature_meta_bg(sb) || m 823 if (!ext4_has_feature_meta_bg(sb) || metagroup < first_meta_bg) 917 return ext4_bg_num_gdb_nometa( 824 return ext4_bg_num_gdb_nometa(sb, group); 918 825 919 return ext4_bg_num_gdb_meta(sb,group); 826 return ext4_bg_num_gdb_meta(sb,group); 920 827 921 } 828 } 922 829 923 /* 830 /* 924 * This function returns the number of file sy !! 831 * This function returns the number of file system metadata clusters at 925 * the beginning of a block group, including t 832 * the beginning of a block group, including the reserved gdt blocks. 926 */ 833 */ 927 unsigned int ext4_num_base_meta_blocks(struct !! 834 static unsigned ext4_num_base_meta_clusters(struct super_block *sb, 928 ext4_gr !! 835 ext4_group_t block_group) 929 { 836 { 930 struct ext4_sb_info *sbi = EXT4_SB(sb) 837 struct ext4_sb_info *sbi = EXT4_SB(sb); 931 unsigned num; 838 unsigned num; 932 839 933 /* Check for superblock and gdt backup 840 /* Check for superblock and gdt backups in this group */ 934 num = ext4_bg_has_super(sb, block_grou 841 num = ext4_bg_has_super(sb, block_group); 935 842 936 if (!ext4_has_feature_meta_bg(sb) || 843 if (!ext4_has_feature_meta_bg(sb) || 937 block_group < le32_to_cpu(sbi->s_e 844 block_group < le32_to_cpu(sbi->s_es->s_first_meta_bg) * 938 sbi->s_desc_per_bloc 845 sbi->s_desc_per_block) { 939 if (num) { 846 if (num) { 940 num += ext4_bg_num_gdb !! 847 num += ext4_bg_num_gdb(sb, block_group); 941 num += le16_to_cpu(sbi 848 num += le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks); 942 } 849 } 943 } else { /* For META_BG_BLOCK_GROUPS * 850 } else { /* For META_BG_BLOCK_GROUPS */ 944 num += ext4_bg_num_gdb_meta(sb !! 851 num += ext4_bg_num_gdb(sb, block_group); 945 } 852 } 946 return num; !! 853 return EXT4_NUM_B2C(sbi, num); 947 } 854 } 948 << 949 static unsigned int ext4_num_base_meta_cluster << 950 << 951 { << 952 return EXT4_NUM_B2C(EXT4_SB(sb), ext4_ << 953 } << 954 << 955 /** 855 /** 956 * ext4_inode_to_goal_block - return a hi 856 * ext4_inode_to_goal_block - return a hint for block allocation 957 * @inode: inode for block allocation 857 * @inode: inode for block allocation 958 * 858 * 959 * Return the ideal location to start all 859 * Return the ideal location to start allocating blocks for a 960 * newly created inode. 860 * newly created inode. 961 */ 861 */ 962 ext4_fsblk_t ext4_inode_to_goal_block(struct i 862 ext4_fsblk_t ext4_inode_to_goal_block(struct inode *inode) 963 { 863 { 964 struct ext4_inode_info *ei = EXT4_I(in 864 struct ext4_inode_info *ei = EXT4_I(inode); 965 ext4_group_t block_group; 865 ext4_group_t block_group; 966 ext4_grpblk_t colour; 866 ext4_grpblk_t colour; 967 int flex_size = ext4_flex_bg_size(EXT4 867 int flex_size = ext4_flex_bg_size(EXT4_SB(inode->i_sb)); 968 ext4_fsblk_t bg_start; 868 ext4_fsblk_t bg_start; 969 ext4_fsblk_t last_block; 869 ext4_fsblk_t last_block; 970 870 971 block_group = ei->i_block_group; 871 block_group = ei->i_block_group; 972 if (flex_size >= EXT4_FLEX_SIZE_DIR_AL 872 if (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) { 973 /* 873 /* 974 * If there are at least EXT4_ 874 * If there are at least EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME 975 * block groups per flexgroup, 875 * block groups per flexgroup, reserve the first block 976 * group for directories and s 876 * group for directories and special files. Regular 977 * files will start at the sec 877 * files will start at the second block group. This 978 * tends to speed up directory 878 * tends to speed up directory access and improves 979 * fsck times. 879 * fsck times. 980 */ 880 */ 981 block_group &= ~(flex_size-1); 881 block_group &= ~(flex_size-1); 982 if (S_ISREG(inode->i_mode)) 882 if (S_ISREG(inode->i_mode)) 983 block_group++; 883 block_group++; 984 } 884 } 985 bg_start = ext4_group_first_block_no(i 885 bg_start = ext4_group_first_block_no(inode->i_sb, block_group); 986 last_block = ext4_blocks_count(EXT4_SB 886 last_block = ext4_blocks_count(EXT4_SB(inode->i_sb)->s_es) - 1; 987 887 988 /* 888 /* 989 * If we are doing delayed allocation, 889 * If we are doing delayed allocation, we don't need take 990 * colour into account. 890 * colour into account. 991 */ 891 */ 992 if (test_opt(inode->i_sb, DELALLOC)) 892 if (test_opt(inode->i_sb, DELALLOC)) 993 return bg_start; 893 return bg_start; 994 894 995 if (bg_start + EXT4_BLOCKS_PER_GROUP(i 895 if (bg_start + EXT4_BLOCKS_PER_GROUP(inode->i_sb) <= last_block) 996 colour = (task_pid_nr(current) !! 896 colour = (current->pid % 16) * 997 (EXT4_BLOCKS_PER_GROUP 897 (EXT4_BLOCKS_PER_GROUP(inode->i_sb) / 16); 998 else 898 else 999 colour = (task_pid_nr(current) !! 899 colour = (current->pid % 16) * ((last_block - bg_start) / 16); 1000 ((last_block - bg_sta << 1001 return bg_start + colour; 900 return bg_start + colour; 1002 } 901 } 1003 902 1004 903
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.