2003-10-16 21:55:21 +04:00
|
|
|
/*
|
2012-06-23 15:05:16 +04:00
|
|
|
* Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
|
|
* Copyright 2012, Alex Smith, alex@alex-smith.me.uk.
|
2012-06-25 01:57:48 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
2012-06-23 15:05:16 +04:00
|
|
|
*/
|
2003-10-16 21:55:21 +04:00
|
|
|
#ifndef KERNEL_BOOT_ELF_H
|
|
|
|
#define KERNEL_BOOT_ELF_H
|
|
|
|
|
|
|
|
|
2004-06-01 02:41:25 +04:00
|
|
|
#include <boot/addr_range.h>
|
2004-06-15 20:53:09 +04:00
|
|
|
#include <sys/stat.h>
|
2003-10-16 21:55:21 +04:00
|
|
|
#include <elf_priv.h>
|
2012-06-21 21:02:23 +04:00
|
|
|
#include <util/FixedWidthPointer.h>
|
2003-10-16 21:55:21 +04:00
|
|
|
|
2012-06-22 22:24:51 +04:00
|
|
|
typedef struct elf32_region {
|
|
|
|
area_id id;
|
|
|
|
uint32 start;
|
|
|
|
uint32 size;
|
|
|
|
int32 delta;
|
|
|
|
} _PACKED elf32_region;
|
|
|
|
|
|
|
|
typedef struct elf64_region {
|
|
|
|
area_id id;
|
|
|
|
uint64 start;
|
|
|
|
uint64 size;
|
|
|
|
int64 delta;
|
|
|
|
} _PACKED elf64_region;
|
2003-10-16 21:55:21 +04:00
|
|
|
|
|
|
|
struct preloaded_image {
|
2012-06-21 21:02:23 +04:00
|
|
|
FixedWidthPointer<struct preloaded_image> next;
|
2012-06-22 22:24:51 +04:00
|
|
|
FixedWidthPointer<char> name;
|
|
|
|
uint8 elf_class;
|
2004-05-10 20:50:20 +04:00
|
|
|
addr_range dynamic_section;
|
2005-12-31 00:20:07 +03:00
|
|
|
|
2012-06-24 01:49:32 +04:00
|
|
|
FixedWidthPointer<char> debug_string_table;
|
2012-06-22 22:24:51 +04:00
|
|
|
uint32 num_debug_symbols;
|
|
|
|
uint32 debug_string_table_size;
|
2004-06-01 00:30:20 +04:00
|
|
|
|
2004-06-15 20:53:09 +04:00
|
|
|
ino_t inode;
|
2004-05-12 03:41:34 +04:00
|
|
|
image_id id;
|
|
|
|
// the ID field will be filled out in the kernel
|
[Sorry, couldn't split this one up any further.]
* Images preloaded by the boot loader had to be modules to be of any use
to the kernel. Extended the mechanism so that any images not accepted
by the module code would later be tried to be added as drivers by the
devfs. This is a little hacky ATM, since the devfs manages the drivers
using a hash map keyed by the drivers inode ID, which those drivers
obviously don't have.
* The devfs emulates read_pages() using read(), if the device driver
doesn't implement the former (all old-style drivers), thus making it
possible to BFS, which uses the file cache which in turn requires
read_pages(), on the device. write_pages() emulation is still missing.
* Replaced the kernel_args::boot_disk structure by a KMessage, which can
more flexibly be extended and deals more gracefully with
arbitrarily-size data. The disk_identifier structure still exists,
though. It is added as message field in cases where needed (non net
boot). Moved the boot_drive_number field of the bios_ia32 platform
specific args into the message.
* Made the stage 1 PXE boot loader superfluous. Moved the relevant
initialization code into the stage 2 loader, which can now be loaded
directly via PXE.
* The PXE boot loader does now download a boot tgz archive via TFTP. It
does no longer use the RemoteDisk protocol (it could actually be
removed from the boot loader). It also parses the DHCP options in the
DHCPACK packet provided by PXE and extracts the root path to be
mounted by the kernel.
* Reorganized the boot volume search in the kernel (vfs_boot.cpp) and
added support for network boot. In this case the net stack is
initialized and the network interface the boot loader used is brought
up and configured. Since NBD and RemoteDisk are our only options for
net boot (and those aren't really configurable dynamically) ATM, the
the boot device is found automatically by the disk device manager.
Booting via PXE does work to some degree now. The most grievous problem
is that loading certain drivers or kernel modules (or related activity)
causes a reboot (likely a triple fault, though one wonders where our
double fault handler is on vacation). Namely the keyboard and mouse input
server add-ons need to be deactivated as well as the media server.
A smaller problem is the net server, which apparently tries to
(re-)configure the network interface we're using to boot, which
obviously doesn't work out that well. So, if all this stuff is disabled
Haiku does fully boot, when using the RemoteDisk protocol (not being
able to use keyboard or mouse doesn't make this a particular fascinating
experience, though ;-)). I had no luck with NBD -- it seemed to have
protocol problems with the servers I tried.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21611 a95241bf-73f2-0310-859d-f6bbb57e9c96
2007-07-15 06:10:15 +04:00
|
|
|
bool is_module;
|
|
|
|
// set by the module initialization code
|
2012-06-21 21:02:23 +04:00
|
|
|
} _PACKED;
|
2003-10-16 21:55:21 +04:00
|
|
|
|
2012-06-22 22:24:51 +04:00
|
|
|
struct preloaded_elf32_image : public preloaded_image {
|
2012-06-25 01:57:48 +04:00
|
|
|
Elf32_Ehdr elf_header;
|
2012-06-22 22:24:51 +04:00
|
|
|
elf32_region text_region;
|
|
|
|
elf32_region data_region;
|
|
|
|
|
|
|
|
FixedWidthPointer<Elf32_Sym> syms;
|
|
|
|
FixedWidthPointer<Elf32_Rel> rel;
|
|
|
|
int32 rel_len;
|
|
|
|
FixedWidthPointer<Elf32_Rela> rela;
|
|
|
|
int32 rela_len;
|
|
|
|
FixedWidthPointer<Elf32_Rel> pltrel;
|
|
|
|
int32 pltrel_len;
|
|
|
|
int32 pltrel_type;
|
|
|
|
|
|
|
|
FixedWidthPointer<Elf32_Sym> debug_symbols;
|
|
|
|
} _PACKED;
|
|
|
|
|
|
|
|
struct preloaded_elf64_image : public preloaded_image {
|
2012-06-25 01:57:48 +04:00
|
|
|
Elf64_Ehdr elf_header;
|
2012-06-22 22:24:51 +04:00
|
|
|
elf64_region text_region;
|
|
|
|
elf64_region data_region;
|
|
|
|
|
|
|
|
FixedWidthPointer<Elf64_Sym> syms;
|
|
|
|
FixedWidthPointer<Elf64_Rel> rel;
|
|
|
|
int64 rel_len;
|
|
|
|
FixedWidthPointer<Elf64_Rela> rela;
|
|
|
|
int64 rela_len;
|
|
|
|
FixedWidthPointer<Elf64_Rel> pltrel;
|
|
|
|
int64 pltrel_len;
|
|
|
|
int64 pltrel_type;
|
|
|
|
|
|
|
|
FixedWidthPointer<Elf64_Sym> debug_symbols;
|
|
|
|
} _PACKED;
|
|
|
|
|
2012-07-09 14:11:38 +04:00
|
|
|
|
|
|
|
#if B_HAIKU_64_BIT
|
|
|
|
typedef preloaded_elf64_image preloaded_elf_image;
|
|
|
|
#else
|
|
|
|
typedef preloaded_elf32_image preloaded_elf_image;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2012-06-25 01:57:48 +04:00
|
|
|
#ifdef _BOOT_MODE
|
2012-06-23 15:05:16 +04:00
|
|
|
extern status_t boot_elf_resolve_symbol(preloaded_elf32_image* image,
|
2015-10-26 20:43:44 +03:00
|
|
|
Elf32_Sym* symbol, Elf32_Addr* symbolAddress);
|
2012-06-23 15:05:16 +04:00
|
|
|
extern status_t boot_elf_resolve_symbol(preloaded_elf64_image* image,
|
2015-10-26 20:43:44 +03:00
|
|
|
Elf64_Sym* symbol, Elf64_Addr* symbolAddress);
|
2012-06-25 16:00:50 +04:00
|
|
|
extern void boot_elf64_set_relocation(Elf64_Addr resolveAddress,
|
|
|
|
Elf64_Addr finalAddress);
|
2012-06-25 01:57:48 +04:00
|
|
|
#endif
|
|
|
|
|
2003-10-16 21:55:21 +04:00
|
|
|
#endif /* KERNEL_BOOT_ELF_H */
|