Changeset 36bca8eb in mainline
- Timestamp:
- 2011-02-13T18:55:00Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e272949
- Parents:
- d5e2763
- Location:
- uspace
- Files:
-
- 2 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/ext2info/ext2info.c
rd5e2763 r36bca8eb 60 60 char *dev_path; 61 61 devmap_handle_t handle; 62 size_t block_size;63 aoff64_t dev_nblocks;64 uint8_t *data;65 62 ext2_superblock_t *superblock; 66 63 … … 95 92 } 96 93 97 rc = block_get_bsize(handle, &block_size); 98 if (rc != EOK) { 99 printf(NAME ": Error determining device block size.\n"); 100 return 2; 101 } 102 103 rc = block_get_nblocks(handle, &dev_nblocks); 104 if (rc != EOK) { 105 printf(NAME ": Warning, failed to obtain block device size.\n"); 106 } 107 108 data = malloc(block_size); 109 if (data == NULL) { 110 printf(NAME ": Error allocating data buffer of %" PRIuOFF64 " bytes", (aoff64_t) block_size); 111 block_fini(handle); 94 rc = ext2_superblock_read_direct(&superblock, handle); 95 if (rc != EOK) { 96 printf(NAME ": Error reading superblock.\n"); 112 97 return 3; 113 98 } 114 115 // TODO: don't assume device block size of 512 bytes116 rc = block_read_direct(handle, 2, 1, data);117 if (rc != EOK) {118 printf(NAME ": Error reading block");119 free(data);120 return 3;121 }122 123 superblock = (ext2_superblock_t *) data;124 99 125 100 printf("Superblock:\n"); … … 133 108 134 109 135 free( data);110 free(superblock); 136 111 137 112 block_fini(handle); -
uspace/lib/ext2/Makefile
rd5e2763 r36bca8eb 31 31 USPACE_PREFIX = ../.. 32 32 LIBRARY = libext2 33 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) 33 34 34 35 SOURCES = \ 35 libext2.c 36 libext2_filesystem.c \ 37 libext2_superblock.c 36 38 37 39 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/ext2/libext2.h
rd5e2763 r36bca8eb 38 38 39 39 #include <byteorder.h> 40 #include <libblock.h> 40 41 41 42 typedef struct ext2_superblock { 42 uint8_t unused[56]; 43 uint16_t magic; 44 } ext2_superblock_t; 43 uint8_t unused[20]; 44 uint32_t first_block; // Block containing the superblock (either 0 or 1) 45 uint32_t block_size_log2; // log_2(block_size) 46 int32_t fragment_size_log2; // log_2(fragment size) 47 uint32_t blocks_per_group; // Number of blocks in one block group 48 uint32_t fragments_per_group; // Number of fragments per block group 49 uint32_t inodes_per_group; // Number of inodes per block group 50 uint8_t unused2[12]; 51 uint16_t magic; // Magic value 52 } __attribute__ ((packed)) ext2_superblock_t; 53 // TODO: add __attribute__((aligned(...)) for better performance? 54 // (it is necessary to ensure the superblock is correctly aligned then 55 // though) 45 56 46 #define EXT2_SUPERBLOCK_MAGIC 0xEF53 57 typedef struct ext2_filesystem { 58 devmap_handle_t device; 59 ext2_superblock_t * superblock; 60 } ext2_filesystem_t; 47 61 48 inline uint16_t ext2_superblock_get_magic(ext2_superblock_t *superblock); 62 #define EXT2_SUPERBLOCK_MAGIC 0xEF53 63 #define EXT2_SUPERBLOCK_SIZE 1024 64 #define EXT2_SUPERBLOCK_OFFSET 1024 65 #define EXT2_SUPERBLOCK_LAST_BYTE (EXT2_SUPERBLOCK_OFFSET + \ 66 EXT2_SUPERBLOCK_SIZE -1) 67 68 inline uint16_t ext2_superblock_get_magic(ext2_superblock_t *sb); 69 inline uint32_t ext2_superblock_get_first_block(ext2_superblock_t *sb); 70 inline uint32_t ext2_superblock_get_block_size_log2(ext2_superblock_t *sb); 71 inline uint32_t ext2_superblock_get_block_size(ext2_superblock_t *sb); 72 inline int32_t ext2_superblock_get_fragment_size_log2(ext2_superblock_t *sb); 73 inline uint32_t ext2_superblock_get_fragment_size(ext2_superblock_t *sb); 74 inline uint32_t ext2_superblock_get_blocks_per_group(ext2_superblock_t *sb); 75 inline uint32_t ext2_superblock_get_fragments_per_group(ext2_superblock_t *sb); 76 77 int ext2_superblock_read_direct(ext2_superblock_t **superblock, 78 devmap_handle_t dev); 79 80 int ext2_filesystem_init(ext2_filesystem_t *fs, devmap_handle_t dev); 81 void ext2_filesystem_fini(ext2_filesystem_t *fs); 49 82 50 83 #endif
Note:
See TracChangeset
for help on using the changeset viewer.