2020-12-06 23:46:37 -05:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2020-12-06 23:42:52 -05:00
|
|
|
#include "config.h"
|
2020-12-06 23:46:37 -05:00
|
|
|
#endif
|
2020-11-30 06:40:33 -05:00
|
|
|
|
2020-11-27 20:27:41 -05:00
|
|
|
#include <kernaux/multiboot2.h>
|
|
|
|
|
2020-12-06 05:16:15 -05:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2020-11-27 20:27:41 -05:00
|
|
|
static const char *KernAux_Multiboot2_TagType_to_str(
|
|
|
|
enum KernAux_Multiboot2_TagType tag_type
|
|
|
|
);
|
|
|
|
|
2020-11-28 18:24:14 -05:00
|
|
|
static void KernAux_Multiboot2_Tag_MemoryMap_print(
|
|
|
|
const struct KernAux_Multiboot2_Tag_MemoryMap *tag,
|
2020-12-05 23:45:48 -05:00
|
|
|
void (*printf)(const char *format, ...) __attribute__((format(printf, 1, 2)))
|
2021-12-14 17:27:06 -05:00
|
|
|
);
|
2020-11-28 18:24:14 -05:00
|
|
|
|
2020-11-29 09:18:07 -05:00
|
|
|
static void KernAux_Multiboot2_Tag_ELFSymbols_print(
|
|
|
|
const struct KernAux_Multiboot2_Tag_ELFSymbols *tag,
|
2020-12-05 23:45:48 -05:00
|
|
|
void (*printf)(const char *format, ...) __attribute__((format(printf, 1, 2)))
|
2021-12-14 17:27:06 -05:00
|
|
|
);
|
2020-11-29 09:18:07 -05:00
|
|
|
|
2020-11-27 20:27:41 -05:00
|
|
|
const char *KernAux_Multiboot2_TagType_to_str(
|
|
|
|
enum KernAux_Multiboot2_TagType tag_type
|
|
|
|
) {
|
|
|
|
switch (tag_type) {
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_NONE:
|
|
|
|
return "none";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_BOOT_CMD_LINE:
|
|
|
|
return "boot cmd line";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_BOOT_LOADER_NAME:
|
|
|
|
return "boot loader name";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_MODULE:
|
|
|
|
return "module";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_BASIC_MEMORY_INFO:
|
|
|
|
return "basic memory info";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_BIOS_BOOT_DEVICE:
|
|
|
|
return "BIOS boot device";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_MEMORY_MAP:
|
|
|
|
return "memory map";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_VBE_INFO:
|
|
|
|
return "VBE info";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_FRAMEBUFFER_INFO:
|
|
|
|
return "framebuffer info";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_ELF_SYMBOLS:
|
|
|
|
return "ELF symbols";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_APM_TABLE:
|
|
|
|
return "APM table";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_EFI_32BIT_SYSTEM_TABLE_PTR:
|
|
|
|
return "EFI 32bit system table ptr";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_EFI_64BIT_SYSTEM_TABLE_PTR:
|
|
|
|
return "EFI 64bit system table ptr";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_SMBIOS_TABLES:
|
|
|
|
return "SMBIOS tables";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_ACPI_OLD_RSDP:
|
|
|
|
return "ACPI old RSDP";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_ACPI_NEW_RSDP:
|
|
|
|
return "ACPI new RSDP";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_NETWORKING_INFO:
|
|
|
|
return "networking info";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_EFI_MEMORY_MAP:
|
|
|
|
return "EFI memory map";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_EFI_BOOT_SERVICES_NOT_TERMINATED:
|
|
|
|
return "EFI boot services not terminated";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_EFI_32BIT_IMAGE_HANDLE_PTR:
|
|
|
|
return "EFI 32bit image handle ptr";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_EFI_64BIT_IMAGE_HANDLE_PTR:
|
|
|
|
return "EFI 64bit image handle ptr";
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_IMAGE_LOAD_BASE_PHYS_ADDR:
|
|
|
|
return "image load base phys addr";
|
|
|
|
default:
|
2020-12-06 05:16:15 -05:00
|
|
|
return NULL;
|
2020-11-27 20:27:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void KernAux_Multiboot2_print(
|
|
|
|
const struct KernAux_Multiboot2 *const multiboot2,
|
2020-12-05 23:45:48 -05:00
|
|
|
void (*const printf)(const char *format, ...) __attribute__((format(printf, 1, 2)))
|
2020-11-27 20:27:41 -05:00
|
|
|
) {
|
2020-12-05 21:47:45 -05:00
|
|
|
printf("Multiboot 2 info\n");
|
|
|
|
printf(" size: %u\n", multiboot2->total_size);
|
|
|
|
printf(" reserved1: %u\n", multiboot2->reserved1);
|
2020-11-27 20:27:41 -05:00
|
|
|
|
|
|
|
const struct KernAux_Multiboot2_TagBase *tag_base =
|
|
|
|
(struct KernAux_Multiboot2_TagBase*)multiboot2->data;
|
|
|
|
|
2021-12-14 14:13:18 -05:00
|
|
|
while (tag_base <
|
|
|
|
(struct KernAux_Multiboot2_TagBase*)
|
|
|
|
((unsigned char*)multiboot2 + multiboot2->total_size))
|
|
|
|
{
|
2021-12-14 14:19:29 -05:00
|
|
|
if (!KernAux_Multiboot2_TagBase_is_valid(tag_base)) return;
|
2020-11-27 20:27:41 -05:00
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
KernAux_Multiboot2_TagBase_print(tag_base, printf);
|
2020-11-27 20:27:41 -05:00
|
|
|
|
|
|
|
tag_base = (struct KernAux_Multiboot2_TagBase*)(
|
2021-12-14 14:13:18 -05:00
|
|
|
(unsigned char*)tag_base + ((tag_base->size + 7) & ~7)
|
2020-11-27 20:27:41 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void KernAux_Multiboot2_TagBase_print(
|
|
|
|
const struct KernAux_Multiboot2_TagBase *const tag_base,
|
2020-12-05 23:45:48 -05:00
|
|
|
void (*const printf)(const char *format, ...) __attribute__((format(printf, 1, 2)))
|
2020-11-27 20:27:41 -05:00
|
|
|
) {
|
2021-12-14 14:19:29 -05:00
|
|
|
if (!KernAux_Multiboot2_TagBase_is_valid(tag_base)) return;
|
2020-11-27 20:27:41 -05:00
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf("Multiboot 2 tag\n");
|
2020-11-27 20:27:41 -05:00
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(
|
2020-11-27 20:27:41 -05:00
|
|
|
" type: %u (%s)\n",
|
|
|
|
tag_base->type,
|
|
|
|
KernAux_Multiboot2_TagType_to_str(tag_base->type)
|
|
|
|
);
|
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" size: %u\n", tag_base->size);
|
2020-11-27 20:27:41 -05:00
|
|
|
|
|
|
|
switch (tag_base->type) {
|
2020-11-28 16:39:04 -05:00
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_NONE:
|
|
|
|
break;
|
2020-11-27 20:27:41 -05:00
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_BOOT_CMD_LINE:
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(
|
2020-11-27 20:27:41 -05:00
|
|
|
" cmdline: %s\n",
|
|
|
|
((struct KernAux_Multiboot2_Tag_BootCmdLine*)tag_base)->cmdline
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_BOOT_LOADER_NAME:
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(
|
2020-11-27 20:27:41 -05:00
|
|
|
" name: %s\n",
|
|
|
|
((struct KernAux_Multiboot2_Tag_BootLoaderName*)tag_base)->name
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_MODULE:
|
|
|
|
{
|
|
|
|
const struct KernAux_Multiboot2_Tag_Module *const tag_module =
|
|
|
|
(struct KernAux_Multiboot2_Tag_Module*)tag_base;
|
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" start: %u\n", tag_module->mod_start);
|
|
|
|
printf(" end: %u\n", tag_module->mod_end);
|
|
|
|
printf(" cmdline: %s\n", tag_module->cmdline);
|
2020-11-27 20:27:41 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_BASIC_MEMORY_INFO:
|
|
|
|
{
|
|
|
|
const struct KernAux_Multiboot2_Tag_BasicMemoryInfo *const tag_bmi =
|
|
|
|
(struct KernAux_Multiboot2_Tag_BasicMemoryInfo*)tag_base;
|
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" mem lower: %u\n", tag_bmi->mem_lower);
|
|
|
|
printf(" mem upper: %u\n", tag_bmi->mem_upper);
|
2020-11-27 20:27:41 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_BIOS_BOOT_DEVICE:
|
|
|
|
{
|
|
|
|
const struct KernAux_Multiboot2_Tag_BIOSBootDevice *const tag_bbd =
|
|
|
|
(struct KernAux_Multiboot2_Tag_BIOSBootDevice*)tag_base;
|
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" bios dev: %u\n", tag_bbd->bios_dev);
|
|
|
|
printf(" partition: %u\n", tag_bbd->partition);
|
|
|
|
printf(" sub_partition: %u\n", tag_bbd->sub_partition);
|
2020-11-27 20:27:41 -05:00
|
|
|
}
|
|
|
|
break;
|
2020-11-28 16:39:04 -05:00
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_MEMORY_MAP:
|
2020-11-28 18:24:14 -05:00
|
|
|
KernAux_Multiboot2_Tag_MemoryMap_print(
|
|
|
|
(struct KernAux_Multiboot2_Tag_MemoryMap*)tag_base,
|
2020-12-05 21:47:45 -05:00
|
|
|
printf
|
2020-11-28 18:24:14 -05:00
|
|
|
);
|
2020-11-28 16:39:04 -05:00
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_VBE_INFO:
|
|
|
|
{
|
2020-11-28 16:45:12 -05:00
|
|
|
const struct KernAux_Multiboot2_Tag_VBEInfo *const tag_vbe =
|
|
|
|
(struct KernAux_Multiboot2_Tag_VBEInfo*)tag_base;
|
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" VBE mode: %hu\n", tag_vbe->vbe_mode);
|
|
|
|
printf(" VBE interface seg: %hu\n", tag_vbe->vbe_interface_seg);
|
|
|
|
printf(" VBE interface off: %hu\n", tag_vbe->vbe_interface_off);
|
|
|
|
printf(" VBE interface len: %hu\n", tag_vbe->vbe_interface_len);
|
2020-11-28 16:39:04 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_FRAMEBUFFER_INFO:
|
|
|
|
{
|
2020-11-28 16:45:12 -05:00
|
|
|
const struct KernAux_Multiboot2_Tag_FramebufferInfo *const tag_fb =
|
|
|
|
(struct KernAux_Multiboot2_Tag_FramebufferInfo*)tag_base;
|
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" framebuffer addr: %llu\n", tag_fb->framebuffer_addr);
|
|
|
|
printf(" framebuffer pitch: %u\n", tag_fb->framebuffer_pitch);
|
|
|
|
printf(" framebuffer width: %u\n", tag_fb->framebuffer_width);
|
|
|
|
printf(" framebuffer height: %u\n", tag_fb->framebuffer_height);
|
|
|
|
printf(" framebuffer bpp: %u\n", tag_fb->framebuffer_bpp);
|
|
|
|
printf(" framebuffer type: %u\n", tag_fb->framebuffer_type);
|
|
|
|
printf(" reserved1: %u\n", tag_fb->reserved1);
|
2020-11-28 16:39:04 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_ELF_SYMBOLS:
|
2020-11-29 09:18:07 -05:00
|
|
|
KernAux_Multiboot2_Tag_ELFSymbols_print(
|
|
|
|
(struct KernAux_Multiboot2_Tag_ELFSymbols*)tag_base,
|
2020-12-05 21:47:45 -05:00
|
|
|
printf
|
2020-11-29 09:18:07 -05:00
|
|
|
);
|
2020-11-28 16:39:04 -05:00
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_APM_TABLE:
|
|
|
|
{
|
2020-11-28 17:06:25 -05:00
|
|
|
const struct KernAux_Multiboot2_Tag_APMTable *const tag_apm =
|
|
|
|
(struct KernAux_Multiboot2_Tag_APMTable*)tag_base;
|
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" version: %hu\n", tag_apm->version);
|
|
|
|
printf(" cseg: %hu\n", tag_apm->cseg);
|
|
|
|
printf(" offset: %u\n", tag_apm->offset);
|
|
|
|
printf(" cseg 16: %hu\n", tag_apm->cseg_16);
|
|
|
|
printf(" dseg: %hu\n", tag_apm->dseg);
|
|
|
|
printf(" flags: %hu\n", tag_apm->flags);
|
|
|
|
printf(" cseg len: %hu\n", tag_apm->cseg_len);
|
|
|
|
printf(" cseg 16 len: %hu\n", tag_apm->cseg_16_len);
|
|
|
|
printf(" dseg len: %hu\n", tag_apm->dseg_len);
|
2020-11-28 16:39:04 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_EFI_32BIT_SYSTEM_TABLE_PTR:
|
|
|
|
{
|
2020-11-28 17:14:46 -05:00
|
|
|
// TODO: print
|
2020-11-28 16:39:04 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_EFI_64BIT_SYSTEM_TABLE_PTR:
|
|
|
|
{
|
2020-11-28 17:14:46 -05:00
|
|
|
// TODO: print
|
2020-11-28 16:39:04 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_SMBIOS_TABLES:
|
|
|
|
{
|
2020-11-29 09:30:46 -05:00
|
|
|
const struct KernAux_Multiboot2_Tag_SMBIOSTables *const tag_smbios =
|
|
|
|
(struct KernAux_Multiboot2_Tag_SMBIOSTables*)tag_base;
|
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" major: %u\n", tag_smbios->major);
|
|
|
|
printf(" minor: %u\n", tag_smbios->minor);
|
2020-11-29 10:06:46 -05:00
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(
|
2020-11-29 10:06:46 -05:00
|
|
|
" reserved1: {%u, %u, %u, %u, %u, %u}\n",
|
|
|
|
tag_smbios->reserved1[0],
|
|
|
|
tag_smbios->reserved1[1],
|
|
|
|
tag_smbios->reserved1[2],
|
|
|
|
tag_smbios->reserved1[3],
|
|
|
|
tag_smbios->reserved1[4],
|
|
|
|
tag_smbios->reserved1[5]
|
|
|
|
);
|
2020-11-28 16:39:04 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_ACPI_OLD_RSDP:
|
|
|
|
{
|
2020-11-28 17:14:46 -05:00
|
|
|
// TODO: print
|
2020-11-28 16:39:04 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_ACPI_NEW_RSDP:
|
|
|
|
{
|
2020-11-28 17:14:46 -05:00
|
|
|
// TODO: print
|
2020-11-28 16:39:04 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_NETWORKING_INFO:
|
|
|
|
{
|
2020-11-28 17:14:46 -05:00
|
|
|
// TODO: print
|
2020-11-28 16:39:04 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_EFI_MEMORY_MAP:
|
|
|
|
{
|
2020-11-28 17:14:46 -05:00
|
|
|
// TODO: print
|
2020-11-28 16:39:04 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_EFI_BOOT_SERVICES_NOT_TERMINATED:
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_EFI_32BIT_IMAGE_HANDLE_PTR:
|
|
|
|
{
|
2020-11-28 17:14:46 -05:00
|
|
|
// TODO: print
|
2020-11-28 16:39:04 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_EFI_64BIT_IMAGE_HANDLE_PTR:
|
|
|
|
{
|
2020-11-28 17:14:46 -05:00
|
|
|
// TODO: print
|
2020-11-28 16:39:04 -05:00
|
|
|
}
|
|
|
|
break;
|
2020-11-27 20:43:51 -05:00
|
|
|
case KERNAUX_MULTIBOOT2_TAGTYPE_IMAGE_LOAD_BASE_PHYS_ADDR:
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(
|
2020-11-27 20:43:51 -05:00
|
|
|
" load base addr: %u\n",
|
|
|
|
((struct KernAux_Multiboot2_Tag_ImageLoadBasePhysAddr*)tag_base)->
|
|
|
|
load_base_addr
|
|
|
|
);
|
|
|
|
break;
|
2020-11-27 20:27:41 -05:00
|
|
|
}
|
|
|
|
}
|
2020-11-28 18:24:14 -05:00
|
|
|
|
|
|
|
void KernAux_Multiboot2_Tag_MemoryMap_print(
|
|
|
|
const struct KernAux_Multiboot2_Tag_MemoryMap *const tag,
|
2020-12-05 23:45:48 -05:00
|
|
|
void (*printf)(const char *format, ...) __attribute__((format(printf, 1, 2)))
|
2020-11-28 18:24:14 -05:00
|
|
|
) {
|
|
|
|
if (!KernAux_Multiboot2_Tag_MemoryMap_is_valid(tag)) {
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" invalid!\n");
|
2020-11-28 18:24:14 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" entry size: %u\n", tag->entry_size);
|
|
|
|
printf(" entry version: %u\n", tag->entry_version);
|
2020-11-28 18:24:14 -05:00
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" entries:\n");
|
2020-11-28 18:24:14 -05:00
|
|
|
|
|
|
|
const struct KernAux_Multiboot2_Tag_MemoryMap_EntryBase *const entries =
|
|
|
|
(struct KernAux_Multiboot2_Tag_MemoryMap_EntryBase*)tag->data;
|
|
|
|
|
|
|
|
for (
|
2021-12-16 10:26:16 -05:00
|
|
|
size_t index = 0;
|
2020-11-28 18:24:14 -05:00
|
|
|
index < (tag->base.size - sizeof(*tag)) / tag->entry_size;
|
|
|
|
++index
|
|
|
|
) {
|
2021-12-16 10:26:16 -05:00
|
|
|
printf(" entry %lu\n", index);
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" base addr: %llu\n", entries[index].base_addr);
|
|
|
|
printf(" length: %llu\n", entries[index].length);
|
|
|
|
printf(" type: %u\n", entries[index].type);
|
|
|
|
printf(" reserved1: %u\n", entries[index].reserved1);
|
2020-11-28 18:24:14 -05:00
|
|
|
}
|
|
|
|
}
|
2020-11-29 09:18:07 -05:00
|
|
|
|
|
|
|
void KernAux_Multiboot2_Tag_ELFSymbols_print(
|
|
|
|
const struct KernAux_Multiboot2_Tag_ELFSymbols *const tag,
|
2020-12-05 23:45:48 -05:00
|
|
|
void (*printf)(const char *format, ...) __attribute__((format(printf, 1, 2)))
|
2020-11-29 09:18:07 -05:00
|
|
|
) {
|
|
|
|
if (!KernAux_Multiboot2_Tag_ELFSymbols_is_valid(tag)) {
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" invalid!\n");
|
2020-11-29 09:18:07 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-05 21:47:45 -05:00
|
|
|
printf(" num: %hu\n", tag->num);
|
|
|
|
printf(" entsize: %hu\n", tag->ent_size);
|
|
|
|
printf(" shndx: %hu\n", tag->shndx);
|
|
|
|
printf(" reserved1: %hu\n", tag->reserved1);
|
2020-11-29 09:25:35 -05:00
|
|
|
|
2020-11-29 09:18:07 -05:00
|
|
|
// TODO: implement this
|
|
|
|
}
|