[2674db6] | 1 | /*
|
---|
[f22d5ef0] | 2 | * Copyright (c) 2012 Frantisek Princ
|
---|
[2674db6] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup libext4
|
---|
| 30 | * @{
|
---|
[38542dc] | 31 | */
|
---|
[b12ca16] | 32 | /**
|
---|
[38542dc] | 33 | * @file libext4_balloc.c
|
---|
| 34 | * @brief Physical block allocator.
|
---|
[b12ca16] | 35 | */
|
---|
| 36 |
|
---|
[2674db6] | 37 | #include <errno.h>
|
---|
| 38 | #include <sys/types.h>
|
---|
| 39 | #include "libext4.h"
|
---|
| 40 |
|
---|
[4358513] | 41 | /** Compute number of block group from block address.
|
---|
| 42 | *
|
---|
[38542dc] | 43 | * @param sb Superblock pointer.
|
---|
| 44 | * @param block_addr Absolute address of block.
|
---|
| 45 | *
|
---|
| 46 | * @return Block group index
|
---|
| 47 | *
|
---|
[4358513] | 48 | */
|
---|
[b12ca16] | 49 | static uint32_t ext4_balloc_get_bgid_of_block(ext4_superblock_t *sb,
|
---|
[38542dc] | 50 | uint32_t block_addr)
|
---|
[b12ca16] | 51 | {
|
---|
[38542dc] | 52 | uint32_t blocks_per_group =
|
---|
| 53 | ext4_superblock_get_blocks_per_group(sb);
|
---|
| 54 | uint32_t first_block =
|
---|
| 55 | ext4_superblock_get_first_data_block(sb);
|
---|
| 56 |
|
---|
[06d85e5] | 57 | /* First block == 0 or 1 */
|
---|
[38542dc] | 58 | if (first_block == 0)
|
---|
[b12ca16] | 59 | return block_addr / blocks_per_group;
|
---|
[38542dc] | 60 | else
|
---|
[b12ca16] | 61 | return (block_addr - 1) / blocks_per_group;
|
---|
| 62 | }
|
---|
| 63 |
|
---|
[4358513] | 64 | /** Free block.
|
---|
| 65 | *
|
---|
[38542dc] | 66 | * @param inode_ref Inode, where the block is allocated
|
---|
| 67 | * @param block_addr Absolute block address to free
|
---|
| 68 | *
|
---|
| 69 | * @return Error code
|
---|
| 70 | *
|
---|
[4358513] | 71 | */
|
---|
[1ac1ab4] | 72 | int ext4_balloc_free_block(ext4_inode_ref_t *inode_ref, uint32_t block_addr)
|
---|
[b12ca16] | 73 | {
|
---|
[1ac1ab4] | 74 | ext4_filesystem_t *fs = inode_ref->fs;
|
---|
| 75 | ext4_superblock_t *sb = fs->superblock;
|
---|
[38542dc] | 76 |
|
---|
[06d85e5] | 77 | /* Compute indexes */
|
---|
[1ac1ab4] | 78 | uint32_t block_group = ext4_balloc_get_bgid_of_block(sb, block_addr);
|
---|
[4cdac68] | 79 | uint32_t index_in_group =
|
---|
[38542dc] | 80 | ext4_filesystem_blockaddr2_index_in_group(sb, block_addr);
|
---|
| 81 |
|
---|
[06d85e5] | 82 | /* Load block group reference */
|
---|
[b12ca16] | 83 | ext4_block_group_ref_t *bg_ref;
|
---|
[38542dc] | 84 | int rc = ext4_filesystem_get_block_group_ref(fs, block_group, &bg_ref);
|
---|
| 85 | if (rc != EOK)
|
---|
[2674db6] | 86 | return rc;
|
---|
[38542dc] | 87 |
|
---|
[06d85e5] | 88 | /* Load block with bitmap */
|
---|
[38542dc] | 89 | uint32_t bitmap_block_addr =
|
---|
| 90 | ext4_block_group_get_block_bitmap(bg_ref->block_group, sb);
|
---|
[b12ca16] | 91 | block_t *bitmap_block;
|
---|
| 92 | rc = block_get(&bitmap_block, fs->device, bitmap_block_addr, 0);
|
---|
[38542dc] | 93 | if (rc != EOK)
|
---|
[2674db6] | 94 | return rc;
|
---|
[38542dc] | 95 |
|
---|
[06d85e5] | 96 | /* Modify bitmap */
|
---|
[b12ca16] | 97 | ext4_bitmap_free_bit(bitmap_block->data, index_in_group);
|
---|
| 98 | bitmap_block->dirty = true;
|
---|
[38542dc] | 99 |
|
---|
[06d85e5] | 100 | /* Release block with bitmap */
|
---|
[b12ca16] | 101 | rc = block_put(bitmap_block);
|
---|
[2674db6] | 102 | if (rc != EOK) {
|
---|
[06d85e5] | 103 | /* Error in saving bitmap */
|
---|
[b12ca16] | 104 | ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
[2674db6] | 105 | return rc;
|
---|
| 106 | }
|
---|
[38542dc] | 107 |
|
---|
[1ac1ab4] | 108 | uint32_t block_size = ext4_superblock_get_block_size(sb);
|
---|
[38542dc] | 109 |
|
---|
[06d85e5] | 110 | /* Update superblock free blocks count */
|
---|
[38542dc] | 111 | uint32_t sb_free_blocks =
|
---|
| 112 | ext4_superblock_get_free_blocks_count(sb);
|
---|
[662bd71] | 113 | sb_free_blocks++;
|
---|
[1ac1ab4] | 114 | ext4_superblock_set_free_blocks_count(sb, sb_free_blocks);
|
---|
[38542dc] | 115 |
|
---|
[06d85e5] | 116 | /* Update inode blocks count */
|
---|
[38542dc] | 117 | uint64_t ino_blocks =
|
---|
| 118 | ext4_inode_get_blocks_count(sb, inode_ref->inode);
|
---|
[2674db6] | 119 | ino_blocks -= block_size / EXT4_INODE_BLOCK_SIZE;
|
---|
[1ac1ab4] | 120 | ext4_inode_set_blocks_count(sb, inode_ref->inode, ino_blocks);
|
---|
[2674db6] | 121 | inode_ref->dirty = true;
|
---|
[38542dc] | 122 |
|
---|
[06d85e5] | 123 | /* Update block group free blocks count */
|
---|
[38542dc] | 124 | uint32_t free_blocks =
|
---|
| 125 | ext4_block_group_get_free_blocks_count(bg_ref->block_group, sb);
|
---|
[2674db6] | 126 | free_blocks++;
|
---|
[fe27eb4] | 127 | ext4_block_group_set_free_blocks_count(bg_ref->block_group,
|
---|
[38542dc] | 128 | sb, free_blocks);
|
---|
[2674db6] | 129 | bg_ref->dirty = true;
|
---|
[38542dc] | 130 |
|
---|
[06d85e5] | 131 | /* Release block group reference */
|
---|
[2674db6] | 132 | rc = ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
[38542dc] | 133 | if (rc != EOK)
|
---|
[2674db6] | 134 | return rc;
|
---|
[38542dc] | 135 |
|
---|
[2674db6] | 136 | return EOK;
|
---|
| 137 | }
|
---|
| 138 |
|
---|
[4358513] | 139 | /** Free continuous set of blocks.
|
---|
| 140 | *
|
---|
[38542dc] | 141 | * @param inode_ref Inode, where the blocks are allocated
|
---|
| 142 | * @param first First block to release
|
---|
| 143 | * @param count Number of blocks to release
|
---|
| 144 | *
|
---|
[4358513] | 145 | */
|
---|
[662bd71] | 146 | int ext4_balloc_free_blocks(ext4_inode_ref_t *inode_ref,
|
---|
[38542dc] | 147 | uint32_t first, uint32_t count)
|
---|
[662bd71] | 148 | {
|
---|
| 149 | ext4_filesystem_t *fs = inode_ref->fs;
|
---|
| 150 | ext4_superblock_t *sb = fs->superblock;
|
---|
[38542dc] | 151 |
|
---|
[06d85e5] | 152 | /* Compute indexes */
|
---|
[662bd71] | 153 | uint32_t block_group_first =
|
---|
[38542dc] | 154 | ext4_balloc_get_bgid_of_block(sb, first);
|
---|
[662bd71] | 155 | uint32_t block_group_last =
|
---|
[38542dc] | 156 | ext4_balloc_get_bgid_of_block(sb, first + count - 1);
|
---|
| 157 |
|
---|
[3e2952b] | 158 | assert(block_group_first == block_group_last);
|
---|
[38542dc] | 159 |
|
---|
[06d85e5] | 160 | /* Load block group reference */
|
---|
[c6a44a3] | 161 | ext4_block_group_ref_t *bg_ref;
|
---|
[38542dc] | 162 | int rc = ext4_filesystem_get_block_group_ref(fs, block_group_first, &bg_ref);
|
---|
| 163 | if (rc != EOK)
|
---|
[662bd71] | 164 | return rc;
|
---|
[38542dc] | 165 |
|
---|
[662bd71] | 166 | uint32_t index_in_group_first =
|
---|
[38542dc] | 167 | ext4_filesystem_blockaddr2_index_in_group(sb, first);
|
---|
| 168 |
|
---|
[06d85e5] | 169 | /* Load block with bitmap */
|
---|
[38542dc] | 170 | uint32_t bitmap_block_addr =
|
---|
| 171 | ext4_block_group_get_block_bitmap(bg_ref->block_group, sb);
|
---|
| 172 |
|
---|
[662bd71] | 173 | block_t *bitmap_block;
|
---|
| 174 | rc = block_get(&bitmap_block, fs->device, bitmap_block_addr, 0);
|
---|
[38542dc] | 175 | if (rc != EOK)
|
---|
[662bd71] | 176 | return rc;
|
---|
[38542dc] | 177 |
|
---|
[06d85e5] | 178 | /* Modify bitmap */
|
---|
[662bd71] | 179 | ext4_bitmap_free_bits(bitmap_block->data, index_in_group_first, count);
|
---|
| 180 | bitmap_block->dirty = true;
|
---|
[38542dc] | 181 |
|
---|
[06d85e5] | 182 | /* Release block with bitmap */
|
---|
[662bd71] | 183 | rc = block_put(bitmap_block);
|
---|
| 184 | if (rc != EOK) {
|
---|
[06d85e5] | 185 | /* Error in saving bitmap */
|
---|
[662bd71] | 186 | ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
| 187 | return rc;
|
---|
| 188 | }
|
---|
[38542dc] | 189 |
|
---|
[662bd71] | 190 | uint32_t block_size = ext4_superblock_get_block_size(sb);
|
---|
[38542dc] | 191 |
|
---|
[06d85e5] | 192 | /* Update superblock free blocks count */
|
---|
[38542dc] | 193 | uint32_t sb_free_blocks =
|
---|
| 194 | ext4_superblock_get_free_blocks_count(sb);
|
---|
[662bd71] | 195 | sb_free_blocks += count;
|
---|
| 196 | ext4_superblock_set_free_blocks_count(sb, sb_free_blocks);
|
---|
[38542dc] | 197 |
|
---|
[06d85e5] | 198 | /* Update inode blocks count */
|
---|
[38542dc] | 199 | uint64_t ino_blocks =
|
---|
| 200 | ext4_inode_get_blocks_count(sb, inode_ref->inode);
|
---|
[662bd71] | 201 | ino_blocks -= count * (block_size / EXT4_INODE_BLOCK_SIZE);
|
---|
| 202 | ext4_inode_set_blocks_count(sb, inode_ref->inode, ino_blocks);
|
---|
| 203 | inode_ref->dirty = true;
|
---|
[38542dc] | 204 |
|
---|
[06d85e5] | 205 | /* Update block group free blocks count */
|
---|
[38542dc] | 206 | uint32_t free_blocks =
|
---|
| 207 | ext4_block_group_get_free_blocks_count(bg_ref->block_group, sb);
|
---|
[662bd71] | 208 | free_blocks += count;
|
---|
| 209 | ext4_block_group_set_free_blocks_count(bg_ref->block_group,
|
---|
[38542dc] | 210 | sb, free_blocks);
|
---|
[662bd71] | 211 | bg_ref->dirty = true;
|
---|
[38542dc] | 212 |
|
---|
[06d85e5] | 213 | /* Release block group reference */
|
---|
[662bd71] | 214 | rc = ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
[38542dc] | 215 | if (rc != EOK)
|
---|
[662bd71] | 216 | return rc;
|
---|
[38542dc] | 217 |
|
---|
[662bd71] | 218 | return EOK;
|
---|
| 219 | }
|
---|
| 220 |
|
---|
[4358513] | 221 | /** Compute first block for data in block group.
|
---|
| 222 | *
|
---|
[38542dc] | 223 | * @param sb Pointer to superblock
|
---|
| 224 | * @param bg Pointer to block group
|
---|
| 225 | * @param bgid Index of block group
|
---|
| 226 | *
|
---|
| 227 | * @return Absolute block index of first block
|
---|
| 228 | *
|
---|
[4358513] | 229 | */
|
---|
[38542dc] | 230 | uint32_t ext4_balloc_get_first_data_block_in_group(ext4_superblock_t *sb,
|
---|
| 231 | ext4_block_group_ref_t *bg_ref)
|
---|
[b12ca16] | 232 | {
|
---|
| 233 | uint32_t block_group_count = ext4_superblock_get_block_group_count(sb);
|
---|
[38542dc] | 234 | uint32_t inode_table_first_block =
|
---|
| 235 | ext4_block_group_get_inode_table_first_block(bg_ref->block_group, sb);
|
---|
[b12ca16] | 236 | uint16_t inode_table_item_size = ext4_superblock_get_inode_size(sb);
|
---|
| 237 | uint32_t inodes_per_group = ext4_superblock_get_inodes_per_group(sb);
|
---|
| 238 | uint32_t block_size = ext4_superblock_get_block_size(sb);
|
---|
| 239 | uint32_t inode_table_bytes;
|
---|
[38542dc] | 240 |
|
---|
[9aa82e6] | 241 | if (bg_ref->index < block_group_count - 1) {
|
---|
[b12ca16] | 242 | inode_table_bytes = inodes_per_group * inode_table_item_size;
|
---|
| 243 | } else {
|
---|
[38542dc] | 244 | /* Last block group could be smaller */
|
---|
[b12ca16] | 245 | uint32_t inodes_count_total = ext4_superblock_get_inodes_count(sb);
|
---|
| 246 | inode_table_bytes =
|
---|
[38542dc] | 247 | (inodes_count_total - ((block_group_count - 1) * inodes_per_group)) *
|
---|
| 248 | inode_table_item_size;
|
---|
[b12ca16] | 249 | }
|
---|
[38542dc] | 250 |
|
---|
[b12ca16] | 251 | uint32_t inode_table_blocks = inode_table_bytes / block_size;
|
---|
[38542dc] | 252 |
|
---|
| 253 | if (inode_table_bytes % block_size)
|
---|
[b12ca16] | 254 | inode_table_blocks++;
|
---|
[38542dc] | 255 |
|
---|
[b12ca16] | 256 | return inode_table_first_block + inode_table_blocks;
|
---|
| 257 | }
|
---|
| 258 |
|
---|
[4358513] | 259 | /** Compute 'goal' for allocation algorithm.
|
---|
| 260 | *
|
---|
[38542dc] | 261 | * @param inode_ref Reference to inode, to allocate block for
|
---|
| 262 | *
|
---|
| 263 | * @return Goal block number
|
---|
| 264 | *
|
---|
[4358513] | 265 | */
|
---|
[2764497] | 266 | static int ext4_balloc_find_goal(ext4_inode_ref_t *inode_ref, uint32_t *goal)
|
---|
[2674db6] | 267 | {
|
---|
[2764497] | 268 | *goal = 0;
|
---|
[1ac1ab4] | 269 | ext4_superblock_t *sb = inode_ref->fs->superblock;
|
---|
[38542dc] | 270 |
|
---|
[1ac1ab4] | 271 | uint64_t inode_size = ext4_inode_get_size(sb, inode_ref->inode);
|
---|
| 272 | uint32_t block_size = ext4_superblock_get_block_size(sb);
|
---|
[2674db6] | 273 | uint32_t inode_block_count = inode_size / block_size;
|
---|
[38542dc] | 274 |
|
---|
| 275 | if (inode_size % block_size != 0)
|
---|
[2674db6] | 276 | inode_block_count++;
|
---|
[38542dc] | 277 |
|
---|
[06d85e5] | 278 | /* If inode has some blocks, get last block address + 1 */
|
---|
[2674db6] | 279 | if (inode_block_count > 0) {
|
---|
[38542dc] | 280 | int rc = ext4_filesystem_get_inode_data_block_index(inode_ref,
|
---|
[2764497] | 281 | inode_block_count - 1, goal);
|
---|
[38542dc] | 282 | if (rc != EOK)
|
---|
[2764497] | 283 | return rc;
|
---|
[38542dc] | 284 |
|
---|
[95947d24] | 285 | if (goal != 0) {
|
---|
[2764497] | 286 | (*goal)++;
|
---|
| 287 | return EOK;
|
---|
[95947d24] | 288 | }
|
---|
[38542dc] | 289 |
|
---|
| 290 | /* If goal == 0, sparse file -> continue */
|
---|
[2674db6] | 291 | }
|
---|
[38542dc] | 292 |
|
---|
[06d85e5] | 293 | /* Identify block group of inode */
|
---|
[1ac1ab4] | 294 | uint32_t inodes_per_group = ext4_superblock_get_inodes_per_group(sb);
|
---|
[2674db6] | 295 | uint32_t block_group = (inode_ref->index - 1) / inodes_per_group;
|
---|
[1ac1ab4] | 296 | block_size = ext4_superblock_get_block_size(sb);
|
---|
[38542dc] | 297 |
|
---|
[06d85e5] | 298 | /* Load block group reference */
|
---|
[2674db6] | 299 | ext4_block_group_ref_t *bg_ref;
|
---|
[38542dc] | 300 | int rc = ext4_filesystem_get_block_group_ref(inode_ref->fs,
|
---|
| 301 | block_group, &bg_ref);
|
---|
| 302 | if (rc != EOK)
|
---|
[2764497] | 303 | return rc;
|
---|
[38542dc] | 304 |
|
---|
[06d85e5] | 305 | /* Compute indexes */
|
---|
[1ac1ab4] | 306 | uint32_t block_group_count = ext4_superblock_get_block_group_count(sb);
|
---|
[38542dc] | 307 | uint32_t inode_table_first_block =
|
---|
| 308 | ext4_block_group_get_inode_table_first_block(bg_ref->block_group, sb);
|
---|
[1ac1ab4] | 309 | uint16_t inode_table_item_size = ext4_superblock_get_inode_size(sb);
|
---|
[b12ca16] | 310 | uint32_t inode_table_bytes;
|
---|
[38542dc] | 311 |
|
---|
[06d85e5] | 312 | /* Check for last block group */
|
---|
[b12ca16] | 313 | if (block_group < block_group_count - 1) {
|
---|
| 314 | inode_table_bytes = inodes_per_group * inode_table_item_size;
|
---|
| 315 | } else {
|
---|
[38542dc] | 316 | /* Last block group could be smaller */
|
---|
[1ac1ab4] | 317 | uint32_t inodes_count_total = ext4_superblock_get_inodes_count(sb);
|
---|
[b12ca16] | 318 | inode_table_bytes =
|
---|
[38542dc] | 319 | (inodes_count_total - ((block_group_count - 1) * inodes_per_group)) *
|
---|
| 320 | inode_table_item_size;
|
---|
[b12ca16] | 321 | }
|
---|
[38542dc] | 322 |
|
---|
[2674db6] | 323 | uint32_t inode_table_blocks = inode_table_bytes / block_size;
|
---|
[38542dc] | 324 |
|
---|
| 325 | if (inode_table_bytes % block_size)
|
---|
[2674db6] | 326 | inode_table_blocks++;
|
---|
[38542dc] | 327 |
|
---|
[2764497] | 328 | *goal = inode_table_first_block + inode_table_blocks;
|
---|
[38542dc] | 329 |
|
---|
[2674db6] | 330 | ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
[38542dc] | 331 |
|
---|
[2764497] | 332 | return EOK;
|
---|
[2674db6] | 333 | }
|
---|
| 334 |
|
---|
[4358513] | 335 | /** Data block allocation algorithm.
|
---|
| 336 | *
|
---|
[38542dc] | 337 | * @param inode_ref Inode to allocate block for
|
---|
| 338 | * @param fblock Allocated block address
|
---|
| 339 | *
|
---|
| 340 | * @return Error code
|
---|
| 341 | *
|
---|
[4358513] | 342 | */
|
---|
[38542dc] | 343 | int ext4_balloc_alloc_block(ext4_inode_ref_t *inode_ref, uint32_t *fblock)
|
---|
[2674db6] | 344 | {
|
---|
[b12ca16] | 345 | uint32_t allocated_block = 0;
|
---|
[38542dc] | 346 |
|
---|
[528e5b3] | 347 | uint32_t bitmap_block_addr;
|
---|
| 348 | block_t *bitmap_block;
|
---|
[2674db6] | 349 | uint32_t rel_block_idx = 0;
|
---|
[2764497] | 350 | uint32_t goal;
|
---|
[38542dc] | 351 |
|
---|
[06d85e5] | 352 | /* Find GOAL */
|
---|
[2764497] | 353 | int rc = ext4_balloc_find_goal(inode_ref, &goal);
|
---|
| 354 | if (rc != EOK)
|
---|
| 355 | return rc;
|
---|
| 356 | else if (goal == 0) {
|
---|
[06d85e5] | 357 | /* no goal found => partition is full */
|
---|
[2764497] | 358 | return ENOMEM;
|
---|
[2674db6] | 359 | }
|
---|
[38542dc] | 360 |
|
---|
[1ac1ab4] | 361 | ext4_superblock_t *sb = inode_ref->fs->superblock;
|
---|
[38542dc] | 362 |
|
---|
[06d85e5] | 363 | /* Load block group number for goal and relative index */
|
---|
[1ac1ab4] | 364 | uint32_t block_group = ext4_balloc_get_bgid_of_block(sb, goal);
|
---|
[4cdac68] | 365 | uint32_t index_in_group =
|
---|
[38542dc] | 366 | ext4_filesystem_blockaddr2_index_in_group(sb, goal);
|
---|
| 367 |
|
---|
[06d85e5] | 368 | /* Load block group reference */
|
---|
[b12ca16] | 369 | ext4_block_group_ref_t *bg_ref;
|
---|
[2764497] | 370 | rc = ext4_filesystem_get_block_group_ref(inode_ref->fs,
|
---|
[38542dc] | 371 | block_group, &bg_ref);
|
---|
| 372 | if (rc != EOK)
|
---|
[2674db6] | 373 | return rc;
|
---|
[38542dc] | 374 |
|
---|
[06d85e5] | 375 | /* Compute indexes */
|
---|
[b12ca16] | 376 | uint32_t first_in_group =
|
---|
[38542dc] | 377 | ext4_balloc_get_first_data_block_in_group(sb, bg_ref);
|
---|
| 378 |
|
---|
| 379 | uint32_t first_in_group_index =
|
---|
| 380 | ext4_filesystem_blockaddr2_index_in_group(sb, first_in_group);
|
---|
| 381 |
|
---|
| 382 | if (index_in_group < first_in_group_index)
|
---|
[528e5b3] | 383 | index_in_group = first_in_group_index;
|
---|
[38542dc] | 384 |
|
---|
[06d85e5] | 385 | /* Load block with bitmap */
|
---|
[38542dc] | 386 | bitmap_block_addr =
|
---|
| 387 | ext4_block_group_get_block_bitmap(bg_ref->block_group, sb);
|
---|
| 388 |
|
---|
[9aa82e6] | 389 | rc = block_get(&bitmap_block, inode_ref->fs->device,
|
---|
[38542dc] | 390 | bitmap_block_addr, BLOCK_FLAGS_NONE);
|
---|
[2674db6] | 391 | if (rc != EOK) {
|
---|
| 392 | ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
| 393 | return rc;
|
---|
| 394 | }
|
---|
[38542dc] | 395 |
|
---|
[06d85e5] | 396 | /* Check if goal is free */
|
---|
[528e5b3] | 397 | if (ext4_bitmap_is_free_bit(bitmap_block->data, index_in_group)) {
|
---|
| 398 | ext4_bitmap_set_bit(bitmap_block->data, index_in_group);
|
---|
| 399 | bitmap_block->dirty = true;
|
---|
| 400 | rc = block_put(bitmap_block);
|
---|
[2674db6] | 401 | if (rc != EOK) {
|
---|
[b12ca16] | 402 | ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
| 403 | return rc;
|
---|
[2674db6] | 404 | }
|
---|
[38542dc] | 405 |
|
---|
| 406 | allocated_block =
|
---|
| 407 | ext4_filesystem_index_in_group2blockaddr(sb, index_in_group,
|
---|
| 408 | block_group);
|
---|
| 409 |
|
---|
[b12ca16] | 410 | goto success;
|
---|
[2674db6] | 411 | }
|
---|
[38542dc] | 412 |
|
---|
| 413 | uint32_t blocks_in_group =
|
---|
| 414 | ext4_superblock_get_blocks_in_group(sb, block_group);
|
---|
| 415 |
|
---|
[b12ca16] | 416 | uint32_t end_idx = (index_in_group + 63) & ~63;
|
---|
[38542dc] | 417 | if (end_idx > blocks_in_group)
|
---|
[b12ca16] | 418 | end_idx = blocks_in_group;
|
---|
[38542dc] | 419 |
|
---|
[06d85e5] | 420 | /* Try to find free block near to goal */
|
---|
[38542dc] | 421 | for (uint32_t tmp_idx = index_in_group + 1; tmp_idx < end_idx;
|
---|
| 422 | ++tmp_idx) {
|
---|
[528e5b3] | 423 | if (ext4_bitmap_is_free_bit(bitmap_block->data, tmp_idx)) {
|
---|
| 424 | ext4_bitmap_set_bit(bitmap_block->data, tmp_idx);
|
---|
| 425 | bitmap_block->dirty = true;
|
---|
| 426 | rc = block_put(bitmap_block);
|
---|
[38542dc] | 427 | if (rc != EOK)
|
---|
[95947d24] | 428 | return rc;
|
---|
[38542dc] | 429 |
|
---|
| 430 | allocated_block =
|
---|
| 431 | ext4_filesystem_index_in_group2blockaddr(sb, tmp_idx,
|
---|
| 432 | block_group);
|
---|
| 433 |
|
---|
[b12ca16] | 434 | goto success;
|
---|
[2674db6] | 435 | }
|
---|
[b12ca16] | 436 | }
|
---|
[38542dc] | 437 |
|
---|
[06d85e5] | 438 | /* Find free BYTE in bitmap */
|
---|
[38542dc] | 439 | rc = ext4_bitmap_find_free_byte_and_set_bit(bitmap_block->data,
|
---|
| 440 | index_in_group, &rel_block_idx, blocks_in_group);
|
---|
[2674db6] | 441 | if (rc == EOK) {
|
---|
[528e5b3] | 442 | bitmap_block->dirty = true;
|
---|
| 443 | rc = block_put(bitmap_block);
|
---|
[38542dc] | 444 | if (rc != EOK)
|
---|
[95947d24] | 445 | return rc;
|
---|
[38542dc] | 446 |
|
---|
| 447 | allocated_block =
|
---|
| 448 | ext4_filesystem_index_in_group2blockaddr(sb, rel_block_idx,
|
---|
| 449 | block_group);
|
---|
| 450 |
|
---|
[b12ca16] | 451 | goto success;
|
---|
| 452 | }
|
---|
[38542dc] | 453 |
|
---|
[06d85e5] | 454 | /* Find free bit in bitmap */
|
---|
[38542dc] | 455 | rc = ext4_bitmap_find_free_bit_and_set(bitmap_block->data,
|
---|
| 456 | index_in_group, &rel_block_idx, blocks_in_group);
|
---|
[2674db6] | 457 | if (rc == EOK) {
|
---|
[528e5b3] | 458 | bitmap_block->dirty = true;
|
---|
| 459 | rc = block_put(bitmap_block);
|
---|
[38542dc] | 460 | if (rc != EOK)
|
---|
[95947d24] | 461 | return rc;
|
---|
[38542dc] | 462 |
|
---|
| 463 | allocated_block =
|
---|
| 464 | ext4_filesystem_index_in_group2blockaddr(sb, rel_block_idx,
|
---|
| 465 | block_group);
|
---|
| 466 |
|
---|
[b12ca16] | 467 | goto success;
|
---|
[2674db6] | 468 | }
|
---|
[38542dc] | 469 |
|
---|
[06d85e5] | 470 | /* No free block found yet */
|
---|
[528e5b3] | 471 | block_put(bitmap_block);
|
---|
[b12ca16] | 472 | ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
[38542dc] | 473 |
|
---|
[06d85e5] | 474 | /* Try other block groups */
|
---|
[1ac1ab4] | 475 | uint32_t block_group_count = ext4_superblock_get_block_group_count(sb);
|
---|
[38542dc] | 476 |
|
---|
[b12ca16] | 477 | uint32_t bgid = (block_group + 1) % block_group_count;
|
---|
| 478 | uint32_t count = block_group_count;
|
---|
[38542dc] | 479 |
|
---|
[b12ca16] | 480 | while (count > 0) {
|
---|
[38542dc] | 481 | rc = ext4_filesystem_get_block_group_ref(inode_ref->fs, bgid,
|
---|
| 482 | &bg_ref);
|
---|
| 483 | if (rc != EOK)
|
---|
[b12ca16] | 484 | return rc;
|
---|
[38542dc] | 485 |
|
---|
[06d85e5] | 486 | /* Load block with bitmap */
|
---|
[38542dc] | 487 | bitmap_block_addr =
|
---|
| 488 | ext4_block_group_get_block_bitmap(bg_ref->block_group, sb);
|
---|
| 489 |
|
---|
| 490 | rc = block_get(&bitmap_block, inode_ref->fs->device,
|
---|
| 491 | bitmap_block_addr, 0);
|
---|
[b12ca16] | 492 | if (rc != EOK) {
|
---|
| 493 | ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
| 494 | return rc;
|
---|
| 495 | }
|
---|
[38542dc] | 496 |
|
---|
[06d85e5] | 497 | /* Compute indexes */
|
---|
[38542dc] | 498 | first_in_group =
|
---|
| 499 | ext4_balloc_get_first_data_block_in_group(sb, bg_ref);
|
---|
| 500 | index_in_group =
|
---|
| 501 | ext4_filesystem_blockaddr2_index_in_group(sb, first_in_group);
|
---|
[1ac1ab4] | 502 | blocks_in_group = ext4_superblock_get_blocks_in_group(sb, bgid);
|
---|
[38542dc] | 503 |
|
---|
| 504 | first_in_group_index =
|
---|
| 505 | ext4_filesystem_blockaddr2_index_in_group(sb, first_in_group);
|
---|
| 506 |
|
---|
| 507 | if (index_in_group < first_in_group_index)
|
---|
[528e5b3] | 508 | index_in_group = first_in_group_index;
|
---|
[38542dc] | 509 |
|
---|
[06d85e5] | 510 | /* Try to find free byte in bitmap */
|
---|
[fe61181] | 511 | rc = ext4_bitmap_find_free_byte_and_set_bit(bitmap_block->data,
|
---|
[38542dc] | 512 | index_in_group, &rel_block_idx, blocks_in_group);
|
---|
[b12ca16] | 513 | if (rc == EOK) {
|
---|
[528e5b3] | 514 | bitmap_block->dirty = true;
|
---|
| 515 | rc = block_put(bitmap_block);
|
---|
[38542dc] | 516 | if (rc != EOK)
|
---|
[95947d24] | 517 | return rc;
|
---|
[38542dc] | 518 |
|
---|
| 519 | allocated_block =
|
---|
| 520 | ext4_filesystem_index_in_group2blockaddr(sb, rel_block_idx,
|
---|
| 521 | bgid);
|
---|
| 522 |
|
---|
[b12ca16] | 523 | goto success;
|
---|
| 524 | }
|
---|
[38542dc] | 525 |
|
---|
[06d85e5] | 526 | /* Try to find free bit in bitmap */
|
---|
[38542dc] | 527 | rc = ext4_bitmap_find_free_bit_and_set(bitmap_block->data,
|
---|
| 528 | index_in_group, &rel_block_idx, blocks_in_group);
|
---|
[b12ca16] | 529 | if (rc == EOK) {
|
---|
[528e5b3] | 530 | bitmap_block->dirty = true;
|
---|
| 531 | rc = block_put(bitmap_block);
|
---|
[38542dc] | 532 | if (rc != EOK)
|
---|
[95947d24] | 533 | return rc;
|
---|
[38542dc] | 534 |
|
---|
| 535 | allocated_block =
|
---|
| 536 | ext4_filesystem_index_in_group2blockaddr(sb, rel_block_idx,
|
---|
| 537 | bgid);
|
---|
| 538 |
|
---|
[b12ca16] | 539 | goto success;
|
---|
| 540 | }
|
---|
[38542dc] | 541 |
|
---|
[528e5b3] | 542 | block_put(bitmap_block);
|
---|
[b12ca16] | 543 | ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
[38542dc] | 544 |
|
---|
[06d85e5] | 545 | /* Goto next group */
|
---|
[b12ca16] | 546 | bgid = (bgid + 1) % block_group_count;
|
---|
| 547 | count--;
|
---|
| 548 | }
|
---|
[38542dc] | 549 |
|
---|
[2674db6] | 550 | return ENOSPC;
|
---|
[38542dc] | 551 |
|
---|
[b12ca16] | 552 | success:
|
---|
[38542dc] | 553 | /* Empty command - because of syntax */
|
---|
| 554 | ;
|
---|
[528e5b3] | 555 |
|
---|
[1ac1ab4] | 556 | uint32_t block_size = ext4_superblock_get_block_size(sb);
|
---|
[38542dc] | 557 |
|
---|
[06d85e5] | 558 | /* Update superblock free blocks count */
|
---|
[1ac1ab4] | 559 | uint32_t sb_free_blocks = ext4_superblock_get_free_blocks_count(sb);
|
---|
[ae3d4f8] | 560 | sb_free_blocks--;
|
---|
[1ac1ab4] | 561 | ext4_superblock_set_free_blocks_count(sb, sb_free_blocks);
|
---|
[38542dc] | 562 |
|
---|
[06d85e5] | 563 | /* Update inode blocks (different block size!) count */
|
---|
[38542dc] | 564 | uint64_t ino_blocks =
|
---|
| 565 | ext4_inode_get_blocks_count(sb, inode_ref->inode);
|
---|
[2674db6] | 566 | ino_blocks += block_size / EXT4_INODE_BLOCK_SIZE;
|
---|
[1ac1ab4] | 567 | ext4_inode_set_blocks_count(sb, inode_ref->inode, ino_blocks);
|
---|
[2674db6] | 568 | inode_ref->dirty = true;
|
---|
[38542dc] | 569 |
|
---|
[06d85e5] | 570 | /* Update block group free blocks count */
|
---|
[38542dc] | 571 | uint32_t bg_free_blocks =
|
---|
| 572 | ext4_block_group_get_free_blocks_count(bg_ref->block_group, sb);
|
---|
[2674db6] | 573 | bg_free_blocks--;
|
---|
[38542dc] | 574 | ext4_block_group_set_free_blocks_count(bg_ref->block_group, sb,
|
---|
| 575 | bg_free_blocks);
|
---|
[2674db6] | 576 | bg_ref->dirty = true;
|
---|
[38542dc] | 577 |
|
---|
[2674db6] | 578 | ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
[38542dc] | 579 |
|
---|
[2674db6] | 580 | *fblock = allocated_block;
|
---|
| 581 | return EOK;
|
---|
| 582 | }
|
---|
| 583 |
|
---|
[4358513] | 584 | /** Try to allocate concrete block.
|
---|
| 585 | *
|
---|
[38542dc] | 586 | * @param inode_ref Inode to allocate block for
|
---|
| 587 | * @param fblock Block address to allocate
|
---|
| 588 | * @param free Output value - if target block is free
|
---|
| 589 | *
|
---|
| 590 | * @return Error code
|
---|
| 591 | *
|
---|
[4358513] | 592 | */
|
---|
[38542dc] | 593 | int ext4_balloc_try_alloc_block(ext4_inode_ref_t *inode_ref, uint32_t fblock,
|
---|
| 594 | bool *free)
|
---|
[b73530a] | 595 | {
|
---|
[4358513] | 596 | int rc = EOK;
|
---|
[38542dc] | 597 |
|
---|
[b73530a] | 598 | ext4_filesystem_t *fs = inode_ref->fs;
|
---|
| 599 | ext4_superblock_t *sb = fs->superblock;
|
---|
[38542dc] | 600 |
|
---|
[06d85e5] | 601 | /* Compute indexes */
|
---|
[b73530a] | 602 | uint32_t block_group = ext4_balloc_get_bgid_of_block(sb, fblock);
|
---|
[4cdac68] | 603 | uint32_t index_in_group =
|
---|
[38542dc] | 604 | ext4_filesystem_blockaddr2_index_in_group(sb, fblock);
|
---|
| 605 |
|
---|
[06d85e5] | 606 | /* Load block group reference */
|
---|
[b73530a] | 607 | ext4_block_group_ref_t *bg_ref;
|
---|
| 608 | rc = ext4_filesystem_get_block_group_ref(fs, block_group, &bg_ref);
|
---|
[38542dc] | 609 | if (rc != EOK)
|
---|
[b73530a] | 610 | return rc;
|
---|
[38542dc] | 611 |
|
---|
[06d85e5] | 612 | /* Load block with bitmap */
|
---|
[38542dc] | 613 | uint32_t bitmap_block_addr =
|
---|
| 614 | ext4_block_group_get_block_bitmap(bg_ref->block_group, sb);
|
---|
[b73530a] | 615 | block_t *bitmap_block;
|
---|
| 616 | rc = block_get(&bitmap_block, fs->device, bitmap_block_addr, 0);
|
---|
[38542dc] | 617 | if (rc != EOK)
|
---|
[b73530a] | 618 | return rc;
|
---|
[38542dc] | 619 |
|
---|
[06d85e5] | 620 | /* Check if block is free */
|
---|
[82cb6768] | 621 | *free = ext4_bitmap_is_free_bit(bitmap_block->data, index_in_group);
|
---|
[38542dc] | 622 |
|
---|
[06d85e5] | 623 | /* Allocate block if possible */
|
---|
[82cb6768] | 624 | if (*free) {
|
---|
[b73530a] | 625 | ext4_bitmap_set_bit(bitmap_block->data, index_in_group);
|
---|
| 626 | bitmap_block->dirty = true;
|
---|
| 627 | }
|
---|
[38542dc] | 628 |
|
---|
[06d85e5] | 629 | /* Release block with bitmap */
|
---|
[b73530a] | 630 | rc = block_put(bitmap_block);
|
---|
| 631 | if (rc != EOK) {
|
---|
[06d85e5] | 632 | /* Error in saving bitmap */
|
---|
[b73530a] | 633 | ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
| 634 | return rc;
|
---|
| 635 | }
|
---|
[38542dc] | 636 |
|
---|
[06d85e5] | 637 | /* If block is not free, return */
|
---|
[38542dc] | 638 | if (!(*free))
|
---|
[b73530a] | 639 | goto terminate;
|
---|
[38542dc] | 640 |
|
---|
[b73530a] | 641 | uint32_t block_size = ext4_superblock_get_block_size(sb);
|
---|
[38542dc] | 642 |
|
---|
[06d85e5] | 643 | /* Update superblock free blocks count */
|
---|
[b73530a] | 644 | uint32_t sb_free_blocks = ext4_superblock_get_free_blocks_count(sb);
|
---|
| 645 | sb_free_blocks--;
|
---|
| 646 | ext4_superblock_set_free_blocks_count(sb, sb_free_blocks);
|
---|
[38542dc] | 647 |
|
---|
[06d85e5] | 648 | /* Update inode blocks count */
|
---|
[38542dc] | 649 | uint64_t ino_blocks =
|
---|
| 650 | ext4_inode_get_blocks_count(sb, inode_ref->inode);
|
---|
[b73530a] | 651 | ino_blocks += block_size / EXT4_INODE_BLOCK_SIZE;
|
---|
| 652 | ext4_inode_set_blocks_count(sb, inode_ref->inode, ino_blocks);
|
---|
| 653 | inode_ref->dirty = true;
|
---|
[38542dc] | 654 |
|
---|
[06d85e5] | 655 | /* Update block group free blocks count */
|
---|
[38542dc] | 656 | uint32_t free_blocks =
|
---|
| 657 | ext4_block_group_get_free_blocks_count(bg_ref->block_group, sb);
|
---|
[b73530a] | 658 | free_blocks--;
|
---|
| 659 | ext4_block_group_set_free_blocks_count(bg_ref->block_group,
|
---|
[38542dc] | 660 | sb, free_blocks);
|
---|
[b73530a] | 661 | bg_ref->dirty = true;
|
---|
[38542dc] | 662 |
|
---|
[b73530a] | 663 | terminate:
|
---|
[38542dc] | 664 | return ext4_filesystem_put_block_group_ref(bg_ref);
|
---|
[b73530a] | 665 | }
|
---|
[2674db6] | 666 |
|
---|
| 667 | /**
|
---|
| 668 | * @}
|
---|
[38542dc] | 669 | */
|
---|