Changeset 3712434 in mainline for uspace/lib/ext4/libext4_superblock.h


Ignore:
Timestamp:
2011-10-05T12:48:33Z (14 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9b9d37bb
Parents:
3711e7e
Message:

Added more getters on basic ext4 structures

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/libext4_superblock.h

    r3711e7e r3712434  
    4242typedef struct ext4_superblock {
    4343        uint32_t inodes_count; // Inodes count
    44         uint32_t s_blocks_count_lo; // Blocks count
    45         uint32_t s_r_blocks_count_lo; // Reserved blocks count
     44        uint32_t blocks_count_lo; // Blocks count
     45        uint32_t reserved_blocks_count_lo; // Reserved blocks count
    4646        uint32_t free_blocks_count_lo; // Free blocks count
    4747        uint32_t free_inodes_count; // Free inodes count
    4848        uint32_t first_data_block; // First Data Block
    4949        uint32_t log_block_size; // Block size
    50         uint32_t s_obso_log_frag_size; // Obsoleted fragment size
    51         uint32_t s_blocks_per_group; // Number of blocks per group
    52         uint32_t s_obso_frags_per_group; // Obsoleted fragments per group
     50        uint32_t obso_log_frag_size; // Obsoleted fragment size
     51        uint32_t blocks_per_group; // Number of blocks per group
     52        uint32_t obso_frags_per_group; // Obsoleted fragments per group
    5353        uint32_t inodes_per_group; // Number of inodes per group
    54         uint32_t s_mtime; // Mount time
    55         uint32_t s_wtime; // Write time
     54        uint32_t mount_time; // Mount time
     55        uint32_t write_time; // Write time
    5656        uint16_t mount_count; // Mount count
    5757        uint16_t max_mount_count; // Maximal mount count
     
    6060        uint16_t errors; // Behaviour when detecting errors
    6161        uint16_t minor_rev_level; // Minor revision level
    62         uint32_t last_check; // Time of last check
    63         uint32_t checkinterval; // Maximum time between checks
     62        uint32_t last_check_time; // Time of last check
     63        uint32_t check_interval; // Maximum time between checks
    6464        uint32_t creator_os; // Creator OS
    6565        uint32_t rev_level; // Revision level
    66         uint16_t s_def_resuid; // Default uid for reserved blocks
    67         uint16_t s_def_resgid; // Default gid for reserved blocks
     66        uint16_t def_resuid; // Default uid for reserved blocks
     67        uint16_t def_resgid; // Default gid for reserved blocks
    6868
    6969        // Fields for EXT4_DYNAMIC_REV superblocks only.
    70         uint32_t s_first_ino; // First non-reserved inode
     70        uint32_t first_inode; // First non-reserved inode
    7171        uint16_t inode_size; // Size of inode structure
    72         uint16_t s_block_group_nr; // Block group number of this superblock
     72        uint16_t block_group_number; // Block group number of this superblock
    7373        uint32_t features_compatible; // Compatible feature set
    7474        uint32_t features_incompatible; // Incompatible feature set
    7575        uint32_t features_read_only; // Readonly-compatible feature set
    76         uint8_t s_uuid[16]; // 128-bit uuid for volume
    77         char s_volume_name[16]; // Volume name
    78         char s_last_mounted[64]; // Directory where last mounted
    79         uint32_t s_algorithm_usage_bitmap; // For compression
     76        uint8_t uuid[16]; // 128-bit uuid for volume
     77        char volume_name[16]; // Volume name
     78        char last_mounted[64]; // Directory where last mounted
     79        uint32_t algorithm_usage_bitmap; // For compression
    8080
    8181        /*
     
    9090         * Journaling support valid if EXT4_FEATURE_COMPAT_HAS_JOURNAL set.
    9191         */
    92         uint8_t s_journal_uuid[16]; // UUID of journal superblock
    93         uint32_t s_journal_inum; // Inode number of journal file
    94         uint32_t s_journal_dev; // Device number of journal file
    95         uint32_t s_last_orphan; // Head of list of inodes to delete
    96         uint32_t s_hash_seed[4]; // HTREE hash seed
    97         uint8_t s_def_hash_version; // Default hash version to use
    98         uint8_t s_jnl_backup_type;
    99         uint16_t s_desc_size; // Size of group descriptor
    100         uint32_t s_default_mount_opts; // Default mount options
    101         uint32_t s_first_meta_bg; // First metablock block group
    102         uint32_t s_mkfs_time; // When the filesystem was created
    103         uint32_t s_jnl_blocks[17]; // Backup of the journal inode
     92        uint8_t journal_uuid[16]; // UUID of journal superblock
     93        uint32_t journal_inode_number; // Inode number of journal file
     94        uint32_t journal_dev; // Device number of journal file
     95        uint32_t last_orphan; // Head of list of inodes to delete
     96        uint32_t hash_seed[4]; // HTREE hash seed
     97        uint8_t default_hash_version; // Default hash version to use
     98        uint8_t journal_backup_type;
     99        uint16_t desc_size; // Size of group descriptor
     100        uint32_t default_mount_opts; // Default mount options
     101        uint32_t first_meta_bg; // First metablock block group
     102        uint32_t mkfs_time; // When the filesystem was created
     103        uint32_t journal_blocks[17]; // Backup of the journal inode
    104104
    105105        /* 64bit support valid if EXT4_FEATURE_COMPAT_64BIT */
    106         uint32_t s_blocks_count_hi; // Blocks count
    107         uint32_t s_r_blocks_count_hi; // Reserved blocks count
    108         uint32_t s_free_blocks_count_hi; // Free blocks count
    109         uint16_t s_min_extra_isize; // All inodes have at least # bytes
    110         uint16_t s_want_extra_isize; // New inodes should reserve # bytes
    111         uint32_t s_flags; // Miscellaneous flags
    112         uint16_t s_raid_stride; // RAID stride
    113         uint16_t s_mmp_interval; // # seconds to wait in MMP checking
    114         uint64_t s_mmp_block; // Block for multi-mount protection
    115         uint32_t s_raid_stripe_width; // blocks on all data disks (N*stride)
    116         uint8_t s_log_groups_per_flex; // FLEX_BG group size
    117         uint8_t s_reserved_char_pad;
    118         uint16_t s_reserved_pad;
    119         uint64_t s_kbytes_written; // Number of lifetime kilobytes written
    120         uint32_t s_snapshot_inum; // Inode number of active snapshot
    121         uint32_t s_snapshot_id; // Sequential ID of active snapshot
    122         uint64_t s_snapshot_r_blocks_count; /* reserved blocks for active snapshot's future use */
    123         uint32_t s_snapshot_list; // inode number of the head of the on-disk snapshot list
    124         uint32_t s_error_count; // number of fs errors
    125         uint32_t s_first_error_time; // First time an error happened
    126         uint32_t s_first_error_ino; // Inode involved in first error
    127         uint64_t s_first_error_block; // block involved of first error
    128         uint8_t s_first_error_func[32]; // Function where the error happened
    129         uint32_t s_first_error_line; // Line number where error happened
    130         uint32_t s_last_error_time; // Most recent time of an error
    131         uint32_t s_last_error_ino; // Inode involved in last error
    132         uint32_t s_last_error_line; // Line number where error happened
    133         uint64_t s_last_error_block;     /* block involved of last error */
    134         uint8_t s_last_error_func[32];  /* function where the error happened */
    135         uint8_t s_mount_opts[64];
    136         uint32_t s_reserved[112]; // Padding to the end of the block
    137 
     106        uint32_t blocks_count_hi; // Blocks count
     107        uint32_t reserved_blocks_count_hi; // Reserved blocks count
     108        uint32_t free_blocks_count_hi; // Free blocks count
     109        uint16_t min_extra_isize; // All inodes have at least # bytes
     110        uint16_t want_extra_isize; // New inodes should reserve # bytes
     111        uint32_t lags; // Miscellaneous flags
     112        uint16_t raid_stride; // RAID stride
     113        uint16_t mmp_interval; // # seconds to wait in MMP checking
     114        uint64_t mmp_block; // Block for multi-mount protection
     115        uint32_t raid_stripe_width; // blocks on all data disks (N*stride)
     116        uint8_t log_groups_per_flex; // FLEX_BG group size
     117        uint8_t reserved_char_pad;
     118        uint16_t reserved_pad;
     119        uint64_t kbytes_written; // Number of lifetime kilobytes written
     120        uint32_t snapshot_inum; // Inode number of active snapshot
     121        uint32_t snapshot_id; // Sequential ID of active snapshot
     122        uint64_t snapshot_r_blocks_count; /* reserved blocks for active snapshot's future use */
     123        uint32_t snapshot_list; // inode number of the head of the on-disk snapshot list
     124        uint32_t error_count; // number of fs errors
     125        uint32_t first_error_time; // First time an error happened
     126        uint32_t first_error_ino; // Inode involved in first error
     127        uint64_t first_error_block; // block involved of first error
     128        uint8_t first_error_func[32]; // Function where the error happened
     129        uint32_t first_error_line; // Line number where error happened
     130        uint32_t last_error_time; // Most recent time of an error
     131        uint32_t last_error_ino; // Inode involved in last error
     132        uint32_t last_error_line; // Line number where error happened
     133        uint64_t last_error_block;     // Block involved of last error
     134        uint8_t last_error_func[32];  // Function where the error happened
     135        uint8_t mount_opts[64];
     136        uint32_t padding[112]; // Padding to the end of the block
    138137} __attribute__((packed)) ext4_superblock_t;
    139138
     
    142141#define EXT4_SUPERBLOCK_OFFSET          1024
    143142
     143extern uint32_t ext4_superblock_get_inodes_count(ext4_superblock_t *);
     144extern uint64_t ext4_superblock_get_blocks_count(ext4_superblock_t *);
     145extern uint64_t ext4_superblock_get_reserved_blocks_count(ext4_superblock_t *);
     146extern uint64_t ext4_superblock_get_free_blocks_count(ext4_superblock_t *);
     147extern uint32_t ext4_superblock_get_free_inodes_count(ext4_superblock_t *);
     148extern uint32_t ext4_superblock_get_first_data_block(ext4_superblock_t *);
     149extern uint32_t ext4_superblock_get_log_block_size(ext4_superblock_t *);
     150extern uint32_t ext4_superblock_get_block_size(ext4_superblock_t *);
     151extern uint32_t ext4_superblock_get_blocks_per_group(ext4_superblock_t *);
     152extern uint32_t ext4_superblock_get_inodes_per_group(ext4_superblock_t *);
     153extern uint32_t ext4_superblock_get_mount_time(ext4_superblock_t *);
     154extern uint32_t ext4_superblock_get_write_time(ext4_superblock_t *);
     155extern uint16_t ext4_superblock_get_mount_count(ext4_superblock_t *);
     156extern uint16_t ext4_superblock_get_max_mount_count(ext4_superblock_t *);
    144157extern uint16_t ext4_superblock_get_magic(ext4_superblock_t *);
    145 extern uint32_t ext4_superblock_get_first_block(ext4_superblock_t *);
    146 extern uint32_t ext4_superblock_get_block_size_log2(ext4_superblock_t *);
    147 extern uint32_t ext4_superblock_get_block_size(ext4_superblock_t *);
    148 extern uint32_t ext4_superblock_get_rev_level(ext4_superblock_t *);
    149 extern uint16_t ext4_superblock_get_inode_size(ext4_superblock_t *);
    150 extern uint32_t ext4_superblock_get_inodes_per_group(ext4_superblock_t *);
     158extern uint16_t ext4_superblock_get_state(ext4_superblock_t *);
     159extern uint16_t ext4_superblock_get_errors(ext4_superblock_t *);
     160extern uint16_t ext4_superblock_get_minor_rev_level(ext4_superblock_t *);
     161extern uint32_t ext4_superblock_get_last_check_time(ext4_superblock_t *);
     162extern uint32_t ext4_superblock_get_check_interval(ext4_superblock_t *);
     163extern uint32_t ext4_superblock_get_creator_os(ext4_superblock_t *);
     164extern uint32_t ext4_superblock_get_rev_level(ext4_superblock_t *);
     165
     166/*
     167uint16_t s_def_resuid; // Default uid for reserved blocks
     168uint16_t s_def_resgid; // Default gid for reserved blocks
     169*/
     170
     171extern uint32_t ext4_superblock_get_first_inode(ext4_superblock_t *);
     172extern uint16_t ext4_superblock_get_inode_size(ext4_superblock_t *);
     173extern uint16_t ext4_superblock_get_block_group_number(ext4_superblock_t *);
    151174extern uint32_t ext4_superblock_get_features_compatible(ext4_superblock_t *);
    152175extern uint32_t ext4_superblock_get_features_incompatible(ext4_superblock_t *);
    153176extern uint32_t ext4_superblock_get_features_read_only(ext4_superblock_t *);
    154177
     178/*
     179uint8_t s_uuid[16]; // 128-bit uuid for volume
     180char volume_name[16]; // Volume name
     181char last_mounted[64]; // Directory where last mounted
     182uint32_t s_algorithm_usage_bitmap; // For compression
     183uint8_t s_prealloc_blocks; // Number of blocks to try to preallocate
     184uint8_t s_prealloc_dir_blocks; // Number to preallocate for dirs
     185uint16_t s_reserved_gdt_blocks; // Per group desc for online growth
     186uint8_t s_journal_uuid[16]; // UUID of journal superblock
     187uint32_t s_journal_inum; // Inode number of journal file
     188uint32_t s_journal_dev; // Device number of journal file
     189uint32_t s_last_orphan; // Head of list of inodes to delete
     190uint32_t s_hash_seed[4]; // HTREE hash seed
     191uint8_t s_def_hash_version; // Default hash version to use
     192uint8_t s_jnl_backup_type;
     193uint16_t s_desc_size; // Size of group descriptor
     194uint32_t s_default_mount_opts; // Default mount options
     195uint32_t s_first_meta_bg; // First metablock block group
     196uint32_t s_mkfs_time; // When the filesystem was created
     197uint32_t s_jnl_blocks[17]; // Backup of the journal inode
     198uint16_t s_min_extra_isize; // All inodes have at least # bytes
     199uint16_t s_want_extra_isize; // New inodes should reserve # bytes
     200uint32_t s_flags; // Miscellaneous flags
     201uint16_t s_raid_stride; // RAID stride
     202uint16_t s_mmp_interval; // # seconds to wait in MMP checking
     203uint64_t s_mmp_block; // Block for multi-mount protection
     204uint32_t s_raid_stripe_width; // blocks on all data disks (N*stride)
     205uint8_t s_log_groups_per_flex; // FLEX_BG group size
     206uint8_t s_reserved_char_pad;
     207uint16_t s_reserved_pad;
     208uint64_t s_kbytes_written; // Number of lifetime kilobytes written
     209uint32_t s_snapshot_inum; // Inode number of active snapshot
     210uint32_t s_snapshot_id; // Sequential ID of active snapshot
     211uint64_t s_snapshot_r_blocks_count; // reserved blocks for active snapshot's future use
     212uint32_t s_snapshot_list; // inode number of the head of the on-disk snapshot list
     213uint32_t s_error_count; // number of fs errors
     214uint32_t s_first_error_time; // First time an error happened
     215uint32_t s_first_error_ino; // Inode involved in first error
     216uint64_t s_first_error_block; // block involved of first error
     217uint8_t s_first_error_func[32]; // Function where the error happened
     218uint32_t s_first_error_line; // Line number where error happened
     219uint32_t s_last_error_time; // Most recent time of an error
     220uint32_t s_last_error_ino; // Inode involved in last error
     221uint32_t s_last_error_line; // Line number where error happened
     222uint64_t s_last_error_block;     // block involved of last error
     223uint8_t s_last_error_func[32];  // function where the error happened
     224uint8_t s_mount_opts[64];
     225*/
     226
     227/* More complex superblock functions */
    155228extern int ext4_superblock_read_direct(service_id_t, ext4_superblock_t **);
    156229extern int ext4_superblock_check_sanity(ext4_superblock_t *);
Note: See TracChangeset for help on using the changeset viewer.