Changes in / [6accc5cf:47726b5e] in mainline
- Location:
- uspace
- Files:
-
- 2 added
- 1 deleted
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/crypto/Makefile
r6accc5cf r47726b5e 33 33 crypto.c \ 34 34 aes.c \ 35 rc4.c \ 36 crc16_ibm.c 35 rc4.c 37 36 38 37 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/crypto/crypto.h
r6accc5cf r47726b5e 56 56 extern int pbkdf2(uint8_t *, size_t, uint8_t *, size_t, uint8_t *); 57 57 58 extern uint16_t crc16_ibm(uint16_t crc, uint8_t *buf, size_t len);59 60 58 #endif -
uspace/lib/ext4/Makefile
r6accc5cf r47726b5e 29 29 USPACE_PREFIX = ../.. 30 30 LIBRARY = libext4 31 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIBCRYPTO_PREFIX)32 LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBCRYPTO_PREFIX)/libcrypto.a31 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) 32 LIBS = $(LIBBLOCK_PREFIX)/libblock.a 33 33 34 34 SOURCES = \ … … 36 36 libext4_bitmap.c \ 37 37 libext4_block_group.c \ 38 libext4_crc.c \ 38 39 libext4_directory.c \ 39 40 libext4_directory_index.c \ -
uspace/lib/ext4/libext4.h
r6accc5cf r47726b5e 37 37 #include "libext4_bitmap.h" 38 38 #include "libext4_block_group.h" 39 #include "libext4_crc.h" 39 40 #include "libext4_directory.h" 40 41 #include "libext4_directory_index.h" -
uspace/lib/ext4/libext4_balloc.c
r6accc5cf r47726b5e 39 39 #include "libext4.h" 40 40 41 /** Compute number of block group from block address. 42 * 43 * @param sb Superblock pointer. 44 * @param block_addr Absolute address of block. 45 * 46 * @return Block group index 47 * 48 */ 49 static uint32_t ext4_balloc_get_bgid_of_block(ext4_superblock_t *sb, 50 uint32_t block_addr) 51 { 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 57 /* First block == 0 or 1 */ 58 if (first_block == 0) 59 return block_addr / blocks_per_group; 60 else 61 return (block_addr - 1) / blocks_per_group; 62 } 63 41 64 /** Free block. 42 65 * … … 53 76 54 77 /* Compute indexes */ 55 uint32_t block_group = ext4_ filesystem_blockaddr2group(sb, block_addr);78 uint32_t block_group = ext4_balloc_get_bgid_of_block(sb, block_addr); 56 79 uint32_t index_in_group = 57 80 ext4_filesystem_blockaddr2_index_in_group(sb, block_addr); … … 112 135 } 113 136 114 static int ext4_balloc_free_blocks_internal(ext4_inode_ref_t *inode_ref, 137 /** Free continuous set of blocks. 138 * 139 * @param inode_ref Inode, where the blocks are allocated 140 * @param first First block to release 141 * @param count Number of blocks to release 142 * 143 */ 144 int ext4_balloc_free_blocks(ext4_inode_ref_t *inode_ref, 115 145 uint32_t first, uint32_t count) 116 146 { 117 147 ext4_filesystem_t *fs = inode_ref->fs; 118 148 ext4_superblock_t *sb = fs->superblock; 119 149 120 150 /* Compute indexes */ 121 uint32_t block_group_first = ext4_filesystem_blockaddr2group(sb,122 first);123 uint32_t block_group_last = ext4_filesystem_blockaddr2group(sb,124 first + count - 1);125 151 uint32_t block_group_first = 152 ext4_balloc_get_bgid_of_block(sb, first); 153 uint32_t block_group_last = 154 ext4_balloc_get_bgid_of_block(sb, first + count - 1); 155 126 156 assert(block_group_first == block_group_last); 127 157 128 158 /* Load block group reference */ 129 159 ext4_block_group_ref_t *bg_ref; … … 131 161 if (rc != EOK) 132 162 return rc; 133 163 134 164 uint32_t index_in_group_first = 135 165 ext4_filesystem_blockaddr2_index_in_group(sb, first); 136 166 137 167 /* Load block with bitmap */ 138 168 uint32_t bitmap_block_addr = 139 169 ext4_block_group_get_block_bitmap(bg_ref->block_group, sb); 140 170 141 171 block_t *bitmap_block; 142 172 rc = block_get(&bitmap_block, fs->device, bitmap_block_addr, 0); … … 145 175 return rc; 146 176 } 147 177 148 178 /* Modify bitmap */ 149 179 ext4_bitmap_free_bits(bitmap_block->data, index_in_group_first, count); 150 180 bitmap_block->dirty = true; 151 181 152 182 /* Release block with bitmap */ 153 183 rc = block_put(bitmap_block); … … 157 187 return rc; 158 188 } 159 189 160 190 uint32_t block_size = ext4_superblock_get_block_size(sb); 161 191 162 192 /* Update superblock free blocks count */ 163 193 uint32_t sb_free_blocks = … … 165 195 sb_free_blocks += count; 166 196 ext4_superblock_set_free_blocks_count(sb, sb_free_blocks); 167 197 168 198 /* Update inode blocks count */ 169 199 uint64_t ino_blocks = … … 172 202 ext4_inode_set_blocks_count(sb, inode_ref->inode, ino_blocks); 173 203 inode_ref->dirty = true; 174 204 175 205 /* Update block group free blocks count */ 176 206 uint32_t free_blocks = … … 180 210 sb, free_blocks); 181 211 bg_ref->dirty = true; 182 212 183 213 /* Release block group reference */ 184 214 return ext4_filesystem_put_block_group_ref(bg_ref); 185 215 } 186 216 187 /** Free continuous set of blocks.188 *189 * @param inode_ref Inode, where the blocks are allocated190 * @param first First block to release191 * @param count Number of blocks to release192 *193 */194 int ext4_balloc_free_blocks(ext4_inode_ref_t *inode_ref,195 uint32_t first, uint32_t count)196 {197 int r;198 uint32_t gid;199 uint64_t limit;200 ext4_filesystem_t *fs = inode_ref->fs;201 ext4_superblock_t *sb = fs->superblock;202 203 while (count) {204 gid = ext4_filesystem_blockaddr2group(sb, first);205 limit = ext4_filesystem_index_in_group2blockaddr(sb, 0,206 gid + 1);207 208 if ((first + count) >= limit) {209 /* This extent spans over 2 or more block groups,210 * we'll break it into smaller parts.211 */212 uint32_t s = limit - first;213 214 r = ext4_balloc_free_blocks_internal(inode_ref,215 first, s);216 if (r != EOK)217 return r;218 219 first = limit;220 count -= s;221 } else {222 return ext4_balloc_free_blocks_internal(inode_ref,223 first, count);224 }225 }226 227 return EOK;228 }229 230 217 /** Compute first block for data in block group. 231 218 * … … 240 227 ext4_block_group_ref_t *bg_ref) 241 228 { 242 uint32_t r; 243 uint64_t itable = ext4_block_group_get_inode_table_first_block( 244 bg_ref->block_group, sb); 245 uint32_t itable_sz = ext4_filesystem_bg_get_itable_size(sb, bg_ref); 246 247 if (!ext4_superblock_has_feature_incompatible(sb, 248 EXT4_FEATURE_INCOMPAT_FLEX_BG)) { 249 /* If we are not using FLEX_BG, the first data block 250 * is always after the inode table. 251 */ 252 r = itable + itable_sz; 253 return ext4_filesystem_blockaddr2_index_in_group(sb, r); 254 } 255 256 uint64_t bbmap = ext4_block_group_get_block_bitmap(bg_ref->block_group, 257 sb); 258 uint64_t ibmap = ext4_block_group_get_inode_bitmap(bg_ref->block_group, 259 sb); 260 261 r = ext4_filesystem_index_in_group2blockaddr(sb, 0, bg_ref->index); 262 r += ext4_filesystem_bg_get_backup_blocks(bg_ref); 263 264 if (ext4_filesystem_blockaddr2group(sb, bbmap) != bg_ref->index) 265 bbmap = -1; /* Invalid */ 266 267 if (ext4_filesystem_blockaddr2group(sb, ibmap) != bg_ref->index) 268 ibmap = -1; 269 270 while (1) { 271 if (r == bbmap || r == ibmap) 272 r++; 273 else if (r >= itable && r < (itable + itable_sz)) 274 r = itable + itable_sz; 275 else 276 break; 277 } 278 279 return r; 229 uint32_t block_group_count = ext4_superblock_get_block_group_count(sb); 230 uint32_t inode_table_first_block = 231 ext4_block_group_get_inode_table_first_block(bg_ref->block_group, sb); 232 uint16_t inode_table_item_size = ext4_superblock_get_inode_size(sb); 233 uint32_t inodes_per_group = ext4_superblock_get_inodes_per_group(sb); 234 uint32_t block_size = ext4_superblock_get_block_size(sb); 235 uint32_t inode_table_bytes; 236 237 if (bg_ref->index < block_group_count - 1) { 238 inode_table_bytes = inodes_per_group * inode_table_item_size; 239 } else { 240 /* Last block group could be smaller */ 241 uint32_t inodes_count_total = ext4_superblock_get_inodes_count(sb); 242 inode_table_bytes = 243 (inodes_count_total - ((block_group_count - 1) * inodes_per_group)) * 244 inode_table_item_size; 245 } 246 247 uint32_t inode_table_blocks = inode_table_bytes / block_size; 248 249 if (inode_table_bytes % block_size) 250 inode_table_blocks++; 251 252 return inode_table_first_block + inode_table_blocks; 280 253 } 281 254 … … 291 264 *goal = 0; 292 265 ext4_superblock_t *sb = inode_ref->fs->superblock; 293 266 294 267 uint64_t inode_size = ext4_inode_get_size(sb, inode_ref->inode); 295 268 uint32_t block_size = ext4_superblock_get_block_size(sb); 296 269 uint32_t inode_block_count = inode_size / block_size; 297 270 298 271 if (inode_size % block_size != 0) 299 272 inode_block_count++; 300 273 301 274 /* If inode has some blocks, get last block address + 1 */ 302 275 if (inode_block_count > 0) { … … 305 278 if (rc != EOK) 306 279 return rc; 307 280 308 281 if (goal != 0) { 309 282 (*goal)++; 310 283 return EOK; 311 284 } 285 312 286 /* If goal == 0, sparse file -> continue */ 313 287 } 314 288 315 289 /* Identify block group of inode */ 316 290 uint32_t inodes_per_group = ext4_superblock_get_inodes_per_group(sb); 317 291 uint32_t block_group = (inode_ref->index - 1) / inodes_per_group; 318 292 block_size = ext4_superblock_get_block_size(sb); 293 319 294 /* Load block group reference */ 320 295 ext4_block_group_ref_t *bg_ref; … … 323 298 if (rc != EOK) 324 299 return rc; 325 326 *goal = ext4_balloc_get_first_data_block_in_group(sb, bg_ref); 327 300 301 /* Compute indexes */ 302 uint32_t block_group_count = ext4_superblock_get_block_group_count(sb); 303 uint32_t inode_table_first_block = 304 ext4_block_group_get_inode_table_first_block(bg_ref->block_group, sb); 305 uint16_t inode_table_item_size = ext4_superblock_get_inode_size(sb); 306 uint32_t inode_table_bytes; 307 308 /* Check for last block group */ 309 if (block_group < block_group_count - 1) { 310 inode_table_bytes = inodes_per_group * inode_table_item_size; 311 } else { 312 /* Last block group could be smaller */ 313 uint32_t inodes_count_total = ext4_superblock_get_inodes_count(sb); 314 inode_table_bytes = 315 (inodes_count_total - ((block_group_count - 1) * inodes_per_group)) * 316 inode_table_item_size; 317 } 318 319 uint32_t inode_table_blocks = inode_table_bytes / block_size; 320 321 if (inode_table_bytes % block_size) 322 inode_table_blocks++; 323 324 *goal = inode_table_first_block + inode_table_blocks; 325 328 326 return ext4_filesystem_put_block_group_ref(bg_ref); 329 327 } … … 355 353 356 354 /* Load block group number for goal and relative index */ 357 uint32_t block_group = ext4_ filesystem_blockaddr2group(sb, goal);355 uint32_t block_group = ext4_balloc_get_bgid_of_block(sb, goal); 358 356 uint32_t index_in_group = 359 357 ext4_filesystem_blockaddr2_index_in_group(sb, goal); … … 628 626 629 627 /* Compute indexes */ 630 uint32_t block_group = ext4_ filesystem_blockaddr2group(sb, fblock);628 uint32_t block_group = ext4_balloc_get_bgid_of_block(sb, fblock); 631 629 uint32_t index_in_group = 632 630 ext4_filesystem_blockaddr2_index_in_group(sb, fblock); -
uspace/lib/ext4/libext4_filesystem.c
r6accc5cf r47726b5e 40 40 #include <malloc.h> 41 41 #include <ipc/vfs.h> 42 #include <align.h>43 #include <crypto.h>44 42 #include "libext4.h" 45 43 … … 55 53 enum cache_mode cmode) 56 54 { 57 int rc;58 55 ext4_superblock_t *temp_superblock = NULL; 59 56 … … 61 58 62 59 /* Initialize block library (4096 is size of communication channel) */ 63 rc = block_init(EXCHANGE_SERIALIZE, fs->device, 4096);60 int rc = block_init(EXCHANGE_SERIALIZE, fs->device, 4096); 64 61 if (rc != EOK) 65 62 goto err; … … 142 139 /* Release memory space for superblock */ 143 140 free(fs->superblock); 144 141 145 142 /* Finish work with block library */ 146 143 block_cache_fini(fs->device); … … 253 250 } 254 251 255 /** Convert the absolute block number to group number256 *257 * @param sb Pointer to the superblock258 * @param b Absolute block number259 *260 * @return Group number261 */262 uint32_t ext4_filesystem_blockaddr2group(ext4_superblock_t *sb, uint64_t b)263 {264 uint32_t blocks_per_group = ext4_superblock_get_blocks_per_group(sb);265 uint32_t first_block = ext4_superblock_get_first_data_block(sb);266 267 return (b - first_block) / blocks_per_group;268 }269 270 252 /** Initialize block bitmap in block group. 271 253 * … … 277 259 static int ext4_filesystem_init_block_bitmap(ext4_block_group_ref_t *bg_ref) 278 260 { 279 uint64_t itb;280 uint32_t sz;281 uint32_t i;282 283 261 /* Load bitmap */ 284 ext4_superblock_t *sb = bg_ref->fs->superblock; 285 uint64_t bitmap_block_addr = ext4_block_group_get_block_bitmap( 286 bg_ref->block_group, bg_ref->fs->superblock); 287 uint64_t bitmap_inode_addr = ext4_block_group_get_inode_bitmap( 262 uint32_t bitmap_block_addr = ext4_block_group_get_block_bitmap( 288 263 bg_ref->block_group, bg_ref->fs->superblock); 289 264 … … 297 272 298 273 /* Initialize all bitmap bits to zero */ 299 uint32_t block_size = ext4_superblock_get_block_size( sb);274 uint32_t block_size = ext4_superblock_get_block_size(bg_ref->fs->superblock); 300 275 memset(bitmap, 0, block_size); 301 276 302 /* Determine the number of reserved blocks in the group */ 303 uint32_t reserved_cnt = ext4_filesystem_bg_get_backup_blocks(bg_ref); 304 277 /* Determine first block and first data block in group */ 278 uint32_t first_idx = 0; 279 280 uint32_t first_data = ext4_balloc_get_first_data_block_in_group( 281 bg_ref->fs->superblock, bg_ref); 282 uint32_t first_data_idx = ext4_filesystem_blockaddr2_index_in_group( 283 bg_ref->fs->superblock, first_data); 284 305 285 /* Set bits from to first block to first data block - 1 to one (allocated) */ 306 for (uint32_t block = 0; block < reserved_cnt; ++block)286 for (uint32_t block = first_idx; block < first_data_idx; ++block) 307 287 ext4_bitmap_set_bit(bitmap, block); 308 309 uint32_t bitmap_block_gid = ext4_filesystem_blockaddr2group(sb, 310 bitmap_block_addr); 311 if (bitmap_block_gid == bg_ref->index) { 312 ext4_bitmap_set_bit(bitmap, 313 ext4_filesystem_blockaddr2_index_in_group(sb, bitmap_block_addr)); 314 } 315 316 uint32_t bitmap_inode_gid = ext4_filesystem_blockaddr2group(sb, 317 bitmap_inode_addr); 318 if (bitmap_inode_gid == bg_ref->index) { 319 ext4_bitmap_set_bit(bitmap, 320 ext4_filesystem_blockaddr2_index_in_group(sb, bitmap_inode_addr)); 321 } 322 323 itb = ext4_block_group_get_inode_table_first_block(bg_ref->block_group, 324 sb); 325 sz = ext4_filesystem_bg_get_itable_size(sb, bg_ref); 326 327 for (i = 0; i < sz; ++i, ++itb) { 328 uint32_t gid = ext4_filesystem_blockaddr2group(sb, itb); 329 if (gid == bg_ref->index) { 330 ext4_bitmap_set_bit(bitmap, 331 ext4_filesystem_blockaddr2_index_in_group(sb, itb)); 332 } 333 } 334 288 335 289 bitmap_block->dirty = true; 336 290 … … 469 423 } 470 424 471 /* Initi alize in-memory representation */425 /* Inititialize in-memory representation */ 472 426 newref->block_group = newref->block->data + offset; 473 427 newref->fs = fs; … … 534 488 /* If checksum not supported, 0 will be returned */ 535 489 uint16_t crc = 0; 536 490 537 491 /* Compute the checksum only if the filesystem supports it */ 538 492 if (ext4_superblock_has_feature_read_only(sb, … … 547 501 548 502 /* Initialization */ 549 crc = crc16 _ibm(~0, sb->uuid, sizeof(sb->uuid));503 crc = crc16(~0, sb->uuid, sizeof(sb->uuid)); 550 504 551 505 /* Include index of block group */ 552 crc = crc16 _ibm(crc, (uint8_t *) &le_group, sizeof(le_group));506 crc = crc16(crc, (uint8_t *) &le_group, sizeof(le_group)); 553 507 554 508 /* Compute crc from the first part (stop before checksum field) */ 555 crc = crc16 _ibm(crc, (uint8_t *) bg, offset);509 crc = crc16(crc, (uint8_t *) bg, offset); 556 510 557 511 /* Skip checksum */ … … 562 516 EXT4_FEATURE_INCOMPAT_64BIT)) && 563 517 (offset < ext4_superblock_get_desc_size(sb))) 564 crc = crc16 _ibm(crc, ((uint8_t *) bg) + offset,518 crc = crc16(crc, ((uint8_t *) bg) + offset, 565 519 ext4_superblock_get_desc_size(sb) - offset); 566 520 } … … 569 523 } 570 524 571 /** Get the size of the block group's inode table572 *573 * @param sb Pointer to the superblock574 * @param bg_ref Pointer to the block group reference575 *576 * @return Size of the inode table in blocks.577 */578 uint32_t ext4_filesystem_bg_get_itable_size(ext4_superblock_t *sb,579 ext4_block_group_ref_t *bg_ref)580 {581 uint32_t itable_size;582 uint32_t block_group_count = ext4_superblock_get_block_group_count(sb);583 uint16_t inode_table_item_size = ext4_superblock_get_inode_size(sb);584 uint32_t inodes_per_group = ext4_superblock_get_inodes_per_group(sb);585 uint32_t block_size = ext4_superblock_get_block_size(sb);586 587 if (bg_ref->index < block_group_count - 1) {588 itable_size = inodes_per_group * inode_table_item_size;589 } else {590 /* Last block group could be smaller */591 uint32_t inodes_count_total = ext4_superblock_get_inodes_count(sb);592 itable_size =593 (inodes_count_total - ((block_group_count - 1) * inodes_per_group)) *594 inode_table_item_size;595 }596 597 return ROUND_UP(itable_size, block_size) / block_size;598 }599 600 /* Check if n is a power of p */601 static bool is_power_of(uint32_t n, unsigned p)602 {603 if (p == 1 && n != p)604 return false;605 606 while (n != p) {607 if (n < p)608 return false;609 else if ((n % p) != 0)610 return false;611 612 n /= p;613 }614 615 return true;616 }617 618 /** Get the number of blocks used by superblock + gdt + reserved gdt backups619 *620 * @param bg Pointer to block group621 *622 * @return Number of blocks623 */624 uint32_t ext4_filesystem_bg_get_backup_blocks(ext4_block_group_ref_t *bg)625 {626 uint32_t const idx = bg->index;627 uint32_t r = 0;628 bool has_backups = false;629 ext4_superblock_t *sb = bg->fs->superblock;630 631 /* First step: determine if the block group contains the backups */632 633 if (idx <= 1)634 has_backups = true;635 else {636 if (ext4_superblock_has_feature_compatible(sb,637 EXT4_FEATURE_COMPAT_SPARSE_SUPER2)) {638 uint32_t g1, g2;639 640 ext4_superblock_get_backup_groups_sparse2(sb,641 &g1, &g2);642 643 if (idx == g1 || idx == g2)644 has_backups = true;645 } else if (!ext4_superblock_has_feature_read_only(sb,646 EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER)) {647 /* Very old fs were all block groups have648 * superblock and block descriptors backups.649 */650 has_backups = true;651 } else {652 if ((idx & 1) && (is_power_of(idx, 3) ||653 is_power_of(idx, 5) || is_power_of(idx, 7)))654 has_backups = true;655 }656 }657 658 if (has_backups) {659 uint32_t bg_count;660 uint32_t bg_desc_sz;661 uint32_t gdt_table; /* Size of the GDT in blocks */662 uint32_t block_size = ext4_superblock_get_block_size(sb);663 664 /* Now we know that this block group has backups,665 * we have to compute how many blocks are reserved666 * for them667 */668 669 if (idx == 0 && block_size == 1024) {670 /* Special case for first group were the boot block671 * resides672 */673 r++;674 }675 676 /* This accounts for the superblock */677 r++;678 679 /* Add the number of blocks used for the GDT */680 bg_count = ext4_superblock_get_block_group_count(sb);681 bg_desc_sz = ext4_superblock_get_desc_size(sb);682 gdt_table = ROUND_UP(bg_count * bg_desc_sz, block_size) /683 block_size;684 685 r += gdt_table;686 687 /* And now the number of reserved GDT blocks */688 r += ext4_superblock_get_reserved_gdt_blocks(sb);689 }690 691 return r;692 }693 694 525 /** Put reference to block group. 695 526 * 696 * @ param ref Pointer for reference to be put back527 * @oaram ref Pointer for reference to be put back 697 528 * 698 529 * @return Error code -
uspace/lib/ext4/libext4_filesystem.h
r6accc5cf r47726b5e 47 47 extern uint32_t ext4_filesystem_index_in_group2blockaddr(ext4_superblock_t *, 48 48 uint32_t, uint32_t); 49 extern uint32_t ext4_filesystem_blockaddr2group(ext4_superblock_t *, uint64_t);50 49 extern int ext4_filesystem_get_block_group_ref(ext4_filesystem_t *, uint32_t, 51 50 ext4_block_group_ref_t **); … … 65 64 extern int ext4_filesystem_append_inode_block(ext4_inode_ref_t *, uint32_t *, 66 65 uint32_t *); 67 uint32_t ext4_filesystem_bg_get_backup_blocks(ext4_block_group_ref_t *bg);68 uint32_t ext4_filesystem_bg_get_itable_size(ext4_superblock_t *sb,69 ext4_block_group_ref_t *bg_ref);70 66 71 67 #endif -
uspace/lib/ext4/libext4_superblock.c
r6accc5cf r47726b5e 1298 1298 } 1299 1299 1300 /** Get the backup groups used with SPARSE_SUPER21301 *1302 * @param sb Pointer to the superblock1303 * @param g1 Output pointer to the first backup group1304 * @param g2 Output pointer to the second backup group1305 */1306 void ext4_superblock_get_backup_groups_sparse2(ext4_superblock_t *sb,1307 uint32_t *g1, uint32_t *g2)1308 {1309 *g1 = uint32_t_le2host(sb->backup_bgs[0]);1310 *g2 = uint32_t_le2host(sb->backup_bgs[1]);1311 }1312 1313 /** Set the backup groups (SPARSE SUPER2)1314 *1315 * @param sb Pointer to the superblock1316 * @param g1 Index of the first group1317 * @param g2 Index of the second group1318 */1319 void ext4_superblock_set_backup_groups_sparse2(ext4_superblock_t *sb,1320 uint32_t g1, uint32_t g2)1321 {1322 sb->backup_bgs[0] = host2uint32_t_le(g1);1323 sb->backup_bgs[1] = host2uint32_t_le(g2);1324 }1325 1326 /** Get the number of blocks (per group) reserved to GDT expansion1327 *1328 * @param sb Pointer to the superblock1329 *1330 * @return Number of blocks1331 */1332 uint32_t ext4_superblock_get_reserved_gdt_blocks(ext4_superblock_t *sb)1333 {1334 return uint32_t_le2host(sb->reserved_gdt_blocks);1335 }1336 1337 /** Set the number of blocks (per group) reserved to GDT expansion1338 *1339 * @param sb Pointer to the superblock1340 * @param n Number of reserved blocks1341 */1342 void ext4_superblock_set_reserved_gdt_blocks(ext4_superblock_t *sb,1343 uint32_t n)1344 {1345 sb->reserved_gdt_blocks = host2uint32_t_le(n);1346 }1347 1348 1300 /** 1349 1301 * @} -
uspace/lib/ext4/libext4_superblock.h
r6accc5cf r47726b5e 135 135 extern void ext4_superblock_set_flags(ext4_superblock_t *, uint32_t); 136 136 137 extern void ext4_superblock_get_backup_groups_sparse2(ext4_superblock_t *sb,138 uint32_t *g1, uint32_t *g2);139 extern void ext4_superblock_set_backup_groups_sparse2(ext4_superblock_t *sb,140 uint32_t g1, uint32_t g2);141 142 extern uint32_t ext4_superblock_get_reserved_gdt_blocks(ext4_superblock_t *sb);143 extern void ext4_superblock_set_reserved_gdt_blocks(ext4_superblock_t *sb,144 uint32_t n);145 146 137 /* More complex superblock functions */ 147 138 extern bool ext4_superblock_has_flag(ext4_superblock_t *, uint32_t); -
uspace/lib/ext4/libext4_types.h
r6accc5cf r47726b5e 83 83 * happen if the EXT4_FEATURE_COMPAT_DIR_PREALLOC flag is on. 84 84 */ 85 uint8_t prealloc_blocks;/* Number of blocks to try to preallocate */86 uint8_t prealloc_dir_blocks;/* Number to preallocate for dirs */87 uint16_t reserved_gdt_blocks;/* Per group desc for online growth */85 uint8_t s_prealloc_blocks; /* Number of blocks to try to preallocate */ 86 uint8_t s_prealloc_dir_blocks; /* Number to preallocate for dirs */ 87 uint16_t s_reserved_gdt_blocks; /* Per group desc for online growth */ 88 88 89 89 /* … … 133 133 uint64_t last_error_block; /* Block involved of last error */ 134 134 uint8_t last_error_func[32]; /* Function where the error happened */ 135 uint8_t mount_opts[64]; /* String containing the mount options */ 136 uint32_t usr_quota_inum; /* Inode number of user quota file */ 137 uint32_t grp_quota_inum; /* Inode number of group quota file */ 138 uint32_t overhead_blocks; /* Overhead blocks/clusters */ 139 uint32_t backup_bgs[2]; /* Block groups containing superblock backups (if SPARSE_SUPER2) */ 140 uint32_t encrypt_algos; /* Encrypt algorithm in use */ 141 uint32_t padding[105]; /* Padding to the end of the block */ 135 uint8_t mount_opts[64]; 136 uint32_t padding[112]; /* Padding to the end of the block */ 142 137 } __attribute__((packed)) ext4_superblock_t; 143 138 … … 181 176 #define EXT4_FEATURE_COMPAT_RESIZE_INODE 0x0010 182 177 #define EXT4_FEATURE_COMPAT_DIR_INDEX 0x0020 183 #define EXT4_FEATURE_COMPAT_SPARSE_SUPER2 0x0200184 178 185 179 /* … … 214 208 (EXT4_FEATURE_INCOMPAT_FILETYPE | \ 215 209 EXT4_FEATURE_INCOMPAT_EXTENTS | \ 216 EXT4_FEATURE_INCOMPAT_64BIT | \ 217 EXT4_FEATURE_INCOMPAT_FLEX_BG) 210 EXT4_FEATURE_INCOMPAT_64BIT) 218 211 219 212 #define EXT4_FEATURE_RO_COMPAT_SUPP \ -
uspace/srv/fs/ext4fs/Makefile
r6accc5cf r47726b5e 28 28 29 29 USPACE_PREFIX = ../../.. 30 LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBFS_PREFIX)/libfs.a \ 31 $(LIBEXT4_PREFIX)/libext4.a $(LIBCRYPTO_PREFIX)/libcrypto.a 32 EXTRA_CFLAGS += -I$(LIBBLOCK_PREFIX) -I$(LIBFS_PREFIX) -I$(LIBEXT4_PREFIX) -I$(LIBCRYPTO_PREFIX) 30 LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBFS_PREFIX)/libfs.a $(LIBEXT4_PREFIX)/libext4.a 31 EXTRA_CFLAGS += -I$(LIBBLOCK_PREFIX) -I$(LIBFS_PREFIX) -I$(LIBEXT4_PREFIX) 33 32 BINARY = ext4fs 34 33 STATIC_NEEDED = y
Note:
See TracChangeset
for help on using the changeset viewer.