mirror of
https://github.com/xcat2/xNBA.git
synced 2025-01-31 05:17:34 +00:00
Can almost start a kernel now. It dies with "No setup signature found"
This commit is contained in:
parent
698bbe0155
commit
784e10635a
@ -42,6 +42,30 @@ struct image_type bzimage_image_type __image_type ( PROBE_NORMAL );
|
||||
* @ret rc Return status code
|
||||
*/
|
||||
static int bzimage_exec ( struct image *image ) {
|
||||
unsigned long rm_kernel_seg = image->priv.ul;
|
||||
|
||||
/* Prepare for exiting */
|
||||
shutdown();
|
||||
|
||||
/* Jump to the kernel */
|
||||
__asm__ __volatile__ ( REAL_CODE ( "movw %w0, %%ds\n\t"
|
||||
"movw %w0, %%es\n\t"
|
||||
"movw %w0, %%fs\n\t"
|
||||
"movw %w0, %%gs\n\t"
|
||||
"movw %w0, %%ss\n\t"
|
||||
"movw %w1, %%sp\n\t"
|
||||
"pushw %w2\n\t"
|
||||
"pushw $0\n\t"
|
||||
"lret\n\t" )
|
||||
: : "r" ( rm_kernel_seg ),
|
||||
"i" ( BZI_STACK_SIZE ),
|
||||
"r" ( rm_kernel_seg + 0x20 ) );
|
||||
|
||||
/* There is no way for the image to return, since we provide
|
||||
* no return address.
|
||||
*/
|
||||
|
||||
return -ECANCELED; /* -EIMPOSSIBLE */
|
||||
}
|
||||
|
||||
/**
|
||||
@ -52,17 +76,29 @@ static int bzimage_exec ( struct image *image ) {
|
||||
*/
|
||||
int bzimage_load ( struct image *image ) {
|
||||
struct bzimage_header bzhdr;
|
||||
unsigned int rm_kernel_seg = 0x7c0; /* place RM kernel at 07c0:0000 */
|
||||
userptr_t rm_kernel = real_to_user ( rm_kernel_seg, 0 );
|
||||
userptr_t pm_kernel;
|
||||
size_t rm_filesz;
|
||||
size_t rm_memsz;
|
||||
size_t pm_filesz;
|
||||
size_t pm_memsz;
|
||||
size_t rm_heap_end;
|
||||
size_t rm_cmdline;
|
||||
int rc;
|
||||
|
||||
/* Sanity check */
|
||||
if ( image->len < ( BZHDR_OFFSET + sizeof ( bzhdr ) ) ) {
|
||||
DBGC ( image, "BZIMAGE %p too short\n", image );
|
||||
if ( image->len < ( BZI_HDR_OFFSET + sizeof ( bzhdr ) ) ) {
|
||||
DBGC ( image, "bzImage %p too short for kernel header\n",
|
||||
image );
|
||||
return -ENOEXEC;
|
||||
}
|
||||
|
||||
/* Read and verify header */
|
||||
copy_from_user ( &bzhdr, image->data, BZHDR_OFFSET, sizeof ( bzhdr ) );
|
||||
if ( bzhdr.header != BZIMAGE_SIGNATURE ) {
|
||||
DBGC ( image, "BZIMAGE %p not a bzImage\n", image );
|
||||
copy_from_user ( &bzhdr, image->data, BZI_HDR_OFFSET,
|
||||
sizeof ( bzhdr ) );
|
||||
if ( bzhdr.header != BZI_SIGNATURE ) {
|
||||
DBGC ( image, "bzImage %p not a bzImage\n", image );
|
||||
return -ENOEXEC;
|
||||
}
|
||||
|
||||
@ -70,6 +106,80 @@ int bzimage_load ( struct image *image ) {
|
||||
if ( ! image->type )
|
||||
image->type = &bzimage_image_type;
|
||||
|
||||
/* We don't support ancient kernels */
|
||||
if ( bzhdr.version < 0x0200 ) {
|
||||
DBGC ( image, "bzImage %p version %04x not supported\n",
|
||||
image, bzhdr.version );
|
||||
return -ENOTSUP;
|
||||
}
|
||||
DBGC ( image, "bzImage %p version %04x\n", image, bzhdr.version );
|
||||
|
||||
/* Check size of base memory portions */
|
||||
rm_filesz = ( ( bzhdr.setup_sects ? bzhdr.setup_sects : 4 ) << 9 );
|
||||
if ( rm_filesz > image->len ) {
|
||||
DBGC ( image, "bzImage %p too short for %zd byte of setup\n",
|
||||
image, rm_filesz );
|
||||
return -ENOEXEC;
|
||||
}
|
||||
rm_memsz = rm_filesz;
|
||||
|
||||
/* Allow space for the stack and heap */
|
||||
rm_memsz += BZI_STACK_SIZE;
|
||||
rm_heap_end = rm_memsz;
|
||||
|
||||
/* Allow space for the command line, if one exists */
|
||||
rm_cmdline = rm_memsz;
|
||||
if ( image->cmdline )
|
||||
rm_memsz += ( strlen ( image->cmdline ) + 1 );
|
||||
|
||||
/* Prepare, verify, and load the real-mode segment */
|
||||
if ( ( rc = prep_segment ( rm_kernel, rm_filesz, rm_memsz ) ) != 0 ) {
|
||||
DBGC ( image, "bzImage %p could not prepare RM segment: %s\n",
|
||||
image, strerror ( rc ) );
|
||||
return rc;
|
||||
}
|
||||
memcpy_user ( rm_kernel, 0, image->data, 0, rm_filesz );
|
||||
|
||||
/* Prepare, verify and load the rest of the kernel */
|
||||
pm_kernel = ( ( bzhdr.loadflags & BZI_LOAD_HIGH ) ?
|
||||
phys_to_user ( 0x100000 ) : phys_to_user ( 0x10000 ) );
|
||||
pm_filesz = pm_memsz = ( image->len - rm_filesz );
|
||||
if ( ( rc = prep_segment ( pm_kernel, pm_filesz, pm_memsz ) ) != 0 ) {
|
||||
DBGC ( image, "bzImage %p could not prepare PM segment: %s\n",
|
||||
image, strerror ( rc ) );
|
||||
return rc;
|
||||
}
|
||||
memcpy_user ( pm_kernel, 0, image->data, rm_filesz, pm_filesz );
|
||||
|
||||
/* Copy down the command line, if it exists */
|
||||
if ( image->cmdline ) {
|
||||
copy_to_user ( rm_kernel, rm_cmdline, image->cmdline,
|
||||
strlen ( image->cmdline ) + 1 );
|
||||
}
|
||||
|
||||
/* Update the header and copy it into the loaded kernel */
|
||||
bzhdr.type_of_loader = BZI_LOADER_TYPE_ETHERBOOT;
|
||||
if ( bzhdr.version >= 0x0201 ) {
|
||||
bzhdr.heap_end_ptr = ( rm_heap_end - 0x200 );
|
||||
bzhdr.loadflags |= BZI_CAN_USE_HEAP;
|
||||
}
|
||||
if ( bzhdr.version >= 0x0202 ) {
|
||||
bzhdr.cmd_line_ptr = user_to_phys ( rm_kernel, rm_cmdline );
|
||||
} else {
|
||||
uint16_t cmd_line_magic = BZI_CMD_LINE_MAGIC;
|
||||
uint16_t cmd_line_offset = rm_cmdline;
|
||||
|
||||
put_real ( cmd_line_magic, rm_kernel_seg,
|
||||
BZI_CMD_LINE_MAGIC_OFFSET );
|
||||
put_real ( cmd_line_offset, rm_kernel_seg,
|
||||
BZI_CMD_LINE_OFFSET_OFFSET );
|
||||
bzhdr.setup_move_size = rm_memsz;
|
||||
}
|
||||
copy_to_user ( rm_kernel, BZI_HDR_OFFSET, &bzhdr, sizeof ( bzhdr ) );
|
||||
|
||||
/* Record segment address in image private data field */
|
||||
image->priv.ul = rm_kernel_seg;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -65,9 +65,30 @@ struct bzimage_header {
|
||||
} __attribute__ (( packed ));
|
||||
|
||||
/** Offset of bzImage header within kernel image */
|
||||
#define BZHDR_OFFSET 0x1f1
|
||||
#define BZI_HDR_OFFSET 0x1f1
|
||||
|
||||
/** bzImage magic signature value */
|
||||
#define BZIMAGE_SIGNATURE 0x53726448
|
||||
#define BZI_SIGNATURE 0x53726448
|
||||
|
||||
/** bzImage boot loader identifier for Etherboot */
|
||||
#define BZI_LOADER_TYPE_ETHERBOOT 4
|
||||
|
||||
/** bzImage "load high" flag */
|
||||
#define BZI_LOAD_HIGH 0x01
|
||||
|
||||
/** bzImage "kernel can use heap" flag */
|
||||
#define BZI_CAN_USE_HEAP 0x80
|
||||
|
||||
/** bzImage command line present magic marker value */
|
||||
#define BZI_CMD_LINE_MAGIC 0xa33f
|
||||
|
||||
/** bzImage command line present magic marker offset */
|
||||
#define BZI_CMD_LINE_MAGIC_OFFSET 0x20
|
||||
|
||||
/** bzImage command line offset offset */
|
||||
#define BZI_CMD_LINE_OFFSET_OFFSET 0x22
|
||||
|
||||
/** Amount of stack space to provide */
|
||||
#define BZI_STACK_SIZE 0x1000
|
||||
|
||||
#endif /* _BZIMAGE_H */
|
||||
|
@ -39,6 +39,7 @@ struct image {
|
||||
union {
|
||||
physaddr_t phys;
|
||||
userptr_t user;
|
||||
unsigned long ul;
|
||||
} priv;
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user