vaseboot/VasEBoot-core/loader/i386/pc/freedos.c

191 lines
5.3 KiB
C

/* chainloader.c - boot another boot loader */
/*
* VAS_EBOOT -- GRand Unified Bootloader
* Copyright (C) 2002,2004,2007,2009,2010 Free Software Foundation, Inc.
*
* VAS_EBOOT is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* VAS_EBOOT is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with VAS_EBOOT. If not, see <http://www.gnu.org/licenses/>.
*/
#include <VasEBoot/loader.h>
#include <VasEBoot/file.h>
#include <VasEBoot/err.h>
#include <VasEBoot/device.h>
#include <VasEBoot/disk.h>
#include <VasEBoot/misc.h>
#include <VasEBoot/types.h>
#include <VasEBoot/partition.h>
#include <VasEBoot/dl.h>
#include <VasEBoot/command.h>
#include <VasEBoot/machine/biosnum.h>
#include <VasEBoot/i18n.h>
#include <VasEBoot/video.h>
#include <VasEBoot/mm.h>
#include <VasEBoot/cpu/relocator.h>
#include <VasEBoot/machine/chainloader.h>
VAS_EBOOT_MOD_LICENSE ("GPLv3+");
static VasEBoot_dl_t my_mod;
static struct VasEBoot_relocator *rel;
static VasEBoot_uint32_t ebx = 0xffffffff;
#define VAS_EBOOT_FREEDOS_SEGMENT 0x60
#define VAS_EBOOT_FREEDOS_ADDR (VAS_EBOOT_FREEDOS_SEGMENT << 4)
#define VAS_EBOOT_FREEDOS_STACK_SEGMENT 0x1fe0
#define VAS_EBOOT_FREEDOS_STACK_BPB_POINTER 0x7c00
#define VAS_EBOOT_FREEDOS_BPB_ADDR ((VAS_EBOOT_FREEDOS_STACK_SEGMENT << 4) \
+ VAS_EBOOT_FREEDOS_STACK_BPB_POINTER)
/* FreeDOS boot.asm passes register sp as exactly this. Importantly,
it must point below the BPB (to avoid overwriting any of it). */
#define VAS_EBOOT_FREEDOS_STACK_POINTER (VAS_EBOOT_FREEDOS_STACK_BPB_POINTER \
- 0x60)
/* In this, the additional 8192 bytes are the stack reservation; the
remaining parts trivially give the maximum allowed size. */
#define VAS_EBOOT_FREEDOS_MAX_SIZE ((VAS_EBOOT_FREEDOS_STACK_SEGMENT << 4) \
+ VAS_EBOOT_FREEDOS_STACK_POINTER \
- VAS_EBOOT_FREEDOS_ADDR \
- 8192)
static VasEBoot_err_t
VasEBoot_freedos_boot (void)
{
struct VasEBoot_relocator16_state state = {
.cs = VAS_EBOOT_FREEDOS_SEGMENT,
.ip = 0,
.ds = VAS_EBOOT_FREEDOS_STACK_SEGMENT,
.es = 0,
.fs = 0,
.gs = 0,
.ss = VAS_EBOOT_FREEDOS_STACK_SEGMENT,
.sp = VAS_EBOOT_FREEDOS_STACK_POINTER,
.ebp = VAS_EBOOT_FREEDOS_STACK_BPB_POINTER,
.ebx = ebx,
.edx = ebx,
.a20 = 1
};
VasEBoot_video_set_mode ("text", 0, 0);
return VasEBoot_relocator16_boot (rel, state);
}
static VasEBoot_err_t
VasEBoot_freedos_unload (void)
{
VasEBoot_relocator_unload (rel);
rel = NULL;
VasEBoot_dl_unref (my_mod);
return VAS_EBOOT_ERR_NONE;
}
static VasEBoot_err_t
VasEBoot_cmd_freedos (VasEBoot_command_t cmd __attribute__ ((unused)),
int argc, char *argv[])
{
VasEBoot_file_t file = 0;
VasEBoot_err_t err;
void *bs, *kernelsys;
VasEBoot_size_t kernelsyssize;
VasEBoot_device_t dev;
if (argc == 0)
return VasEBoot_error (VAS_EBOOT_ERR_BAD_ARGUMENT, N_("filename expected"));
VasEBoot_dl_ref (my_mod);
rel = VasEBoot_relocator_new ();
if (!rel)
goto fail;
file = VasEBoot_file_open (argv[0], VAS_EBOOT_FILE_TYPE_FREEDOS);
if (! file)
goto fail;
{
VasEBoot_relocator_chunk_t ch;
err = VasEBoot_relocator_alloc_chunk_addr (rel, &ch, VAS_EBOOT_FREEDOS_BPB_ADDR,
VAS_EBOOT_DISK_SECTOR_SIZE);
if (err)
goto fail;
bs = get_virtual_current_address (ch);
}
ebx = VasEBoot_get_root_biosnumber ();
dev = VasEBoot_device_open (0);
if (dev && dev->disk)
{
err = VasEBoot_disk_read (dev->disk, 0, 0, VAS_EBOOT_DISK_SECTOR_SIZE, bs);
if (err)
{
VasEBoot_device_close (dev);
goto fail;
}
VasEBoot_chainloader_patch_bpb (bs, dev, ebx);
}
if (dev)
VasEBoot_device_close (dev);
kernelsyssize = VasEBoot_file_size (file);
if (kernelsyssize > VAS_EBOOT_FREEDOS_MAX_SIZE)
{
VasEBoot_error (VAS_EBOOT_ERR_BAD_OS,
N_("the size of `%s' is too large"), argv[0]);
goto fail;
}
{
VasEBoot_relocator_chunk_t ch;
err = VasEBoot_relocator_alloc_chunk_addr (rel, &ch, VAS_EBOOT_FREEDOS_ADDR,
kernelsyssize);
if (err)
goto fail;
kernelsys = get_virtual_current_address (ch);
}
if (VasEBoot_file_read (file, kernelsys, kernelsyssize)
!= (VasEBoot_ssize_t) kernelsyssize)
goto fail;
VasEBoot_loader_set (VasEBoot_freedos_boot, VasEBoot_freedos_unload, 1);
return VAS_EBOOT_ERR_NONE;
fail:
if (file)
VasEBoot_file_close (file);
VasEBoot_freedos_unload ();
return VasEBoot_errno;
}
static VasEBoot_command_t cmd;
VAS_EBOOT_MOD_INIT(freedos)
{
cmd = VasEBoot_register_command ("freedos", VasEBoot_cmd_freedos,
0, N_("Load FreeDOS kernel.sys."));
my_mod = mod;
}
VAS_EBOOT_MOD_FINI(freedos)
{
VasEBoot_unregister_command (cmd);
}