1998-08-21 03:17:42 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1998-10-02 20:53:17 +00:00
|
|
|
* $Id: aout_freebsd.c,v 1.8 1998/10/02 16:32:45 msmith Exp $
|
1998-08-21 03:17:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/exec.h>
|
|
|
|
#include <sys/imgact_aout.h>
|
|
|
|
#include <sys/reboot.h>
|
1998-09-14 18:27:06 +00:00
|
|
|
#include <sys/linker.h>
|
1998-08-21 03:17:42 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <machine/bootinfo.h>
|
|
|
|
#include <stand.h>
|
|
|
|
|
|
|
|
#include "bootstrap.h"
|
|
|
|
#include "libi386.h"
|
1998-09-17 23:52:16 +00:00
|
|
|
#include "btxv86.h"
|
1998-08-21 03:17:42 +00:00
|
|
|
|
|
|
|
static int aout_exec(struct loaded_module *amp);
|
|
|
|
|
1998-08-31 21:10:43 +00:00
|
|
|
struct module_format i386_aout = { aout_loadmodule, aout_exec };
|
1998-08-21 03:17:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There is an a.out kernel and one or more a.out modules loaded.
|
|
|
|
* We wish to start executing the kernel image, so make such
|
|
|
|
* preparations as are required, and do so.
|
|
|
|
*/
|
|
|
|
static int
|
1998-08-31 21:10:43 +00:00
|
|
|
aout_exec(struct loaded_module *mp)
|
1998-08-21 03:17:42 +00:00
|
|
|
{
|
1998-08-31 21:10:43 +00:00
|
|
|
struct module_metadata *md;
|
|
|
|
struct exec *ehdr;
|
1998-10-02 20:53:17 +00:00
|
|
|
vm_offset_t entry, bootinfop;
|
|
|
|
int boothowto, err, bootdev;
|
|
|
|
struct bootinfo *bi;
|
1998-08-21 03:17:42 +00:00
|
|
|
|
1998-08-31 21:10:43 +00:00
|
|
|
if ((md = mod_findmetadata(mp, MODINFOMD_AOUTEXEC)) == NULL)
|
|
|
|
return(EFTYPE); /* XXX actually EFUCKUP */
|
|
|
|
ehdr = (struct exec *)&(md->md_data);
|
1998-08-21 03:17:42 +00:00
|
|
|
|
1998-10-02 20:53:17 +00:00
|
|
|
/* XXX allow override? */
|
|
|
|
setenv("kernelname", mp->m_name, 1);
|
1998-09-29 09:11:49 +00:00
|
|
|
|
1998-10-02 20:53:17 +00:00
|
|
|
if ((err = bi_load(mp->m_args, &boothowto, &bootdev, &bootinfop)) != 0)
|
|
|
|
return(err);
|
1998-08-31 21:10:43 +00:00
|
|
|
entry = ehdr->a_entry & 0xffffff;
|
|
|
|
|
1998-10-02 20:53:17 +00:00
|
|
|
bi = (struct bootinfo *)PTOV(bootinfop);
|
|
|
|
bi->bi_symtab = mp->m_addr + ehdr->a_text + ehdr->a_data + ehdr->a_bss;
|
|
|
|
bi->bi_esymtab = bi->bi_symtab + sizeof(ehdr->a_syms) + ehdr->a_syms;
|
1998-08-21 03:17:42 +00:00
|
|
|
|
1998-10-02 20:53:17 +00:00
|
|
|
#ifdef DEBUG
|
1998-08-31 21:10:43 +00:00
|
|
|
printf("Start @ 0x%lx ...\n", entry);
|
1998-08-21 03:17:42 +00:00
|
|
|
#endif
|
|
|
|
|
1998-10-02 20:53:17 +00:00
|
|
|
__exec((void *)entry, boothowto, bootdev, 0, 0, 0, bootinfop);
|
1998-09-17 23:52:16 +00:00
|
|
|
|
1998-08-21 03:17:42 +00:00
|
|
|
panic("exec returned");
|
|
|
|
}
|