mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
#ifndef KERNAUX_INCLUDED_MBR
|
|
#define KERNAUX_INCLUDED_MBR
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#define KERNAUX_MBR_SIZE 512
|
|
#define KERNAUX_MBR_MAGIC 0xAA55
|
|
#define KERNAUX_MBR_ENTRIES 4
|
|
|
|
#define KERNAUX_MBR_BOOTSTRAP_SIZE \
|
|
(KERNAUX_MBR_SIZE - sizeof(struct KernAux_Mbr_Info))
|
|
|
|
struct KernAux_Mbr_Entry {
|
|
uint8_t drive_attributes;
|
|
unsigned first_sector_chs_addr : 24;
|
|
uint8_t partition_type;
|
|
unsigned last_sector_chs_addr : 24;
|
|
uint32_t first_sector_lba_addr;
|
|
uint32_t sectors_count;
|
|
}
|
|
__attribute__((packed));
|
|
|
|
struct KernAux_Mbr_Info {
|
|
uint32_t disk_id;
|
|
uint16_t reserved;
|
|
struct KernAux_Mbr_Entry entries[KERNAUX_MBR_ENTRIES];
|
|
uint16_t magic;
|
|
}
|
|
__attribute__((packed));
|
|
|
|
struct KernAux_Mbr {
|
|
uint8_t bootstrap[KERNAUX_MBR_BOOTSTRAP_SIZE];
|
|
struct KernAux_Mbr_Info info;
|
|
}
|
|
__attribute__((packed));
|
|
|
|
bool KernAux_Mbr_is_valid(const struct KernAux_Mbr *mbr);
|
|
bool KernAux_Mbr_Info_is_valid(const struct KernAux_Mbr_Info *mbr_info);
|
|
bool KernAux_Mbr_Entry_is_valid(const struct KernAux_Mbr_Entry *mbr_entry);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|