2000-06-04 08:30:48 +04:00
|
|
|
/* $NetBSD: pbsdboot.c,v 1.4 2000/06/04 04:30:49 takemura Exp $ */
|
2000-01-16 06:07:22 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1999 Shin Takemura.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This software is part of the PocketBSD.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the PocketBSD project
|
|
|
|
* and its contributors.
|
|
|
|
* 4. Neither the name of the project nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <pbsdboot.h>
|
|
|
|
|
|
|
|
#define O_RDONLY 0x0000 /* open for reading only */
|
|
|
|
|
|
|
|
int
|
|
|
|
pbsdboot(TCHAR *wkernel_name, int argc, char *argv[], struct bootinfo* bi)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
caddr_t start, end;
|
|
|
|
caddr_t argbuf, p;
|
|
|
|
struct bootinfo *bibuf;
|
|
|
|
int fd = -1;
|
|
|
|
|
2000-06-04 08:30:48 +04:00
|
|
|
stat_printf(TEXT("open %s..."), wkernel_name);
|
2000-01-16 06:07:22 +03:00
|
|
|
if (CheckCancel(0) || (fd = open((char*)wkernel_name, O_RDONLY)) < 0) {
|
|
|
|
msg_printf(MSG_ERROR, whoami, TEXT("open failed.\n"));
|
2000-06-04 08:30:48 +04:00
|
|
|
stat_printf(TEXT("open %s...failed"), wkernel_name);
|
2000-01-16 06:07:22 +03:00
|
|
|
goto cancel;
|
|
|
|
}
|
|
|
|
|
2000-06-04 08:30:48 +04:00
|
|
|
stat_printf(TEXT("read information from %s..."), wkernel_name);
|
2000-01-16 06:07:22 +03:00
|
|
|
if (CheckCancel(0) || getinfo(fd, &start, &end) < 0) {
|
2000-06-04 08:30:48 +04:00
|
|
|
stat_printf(TEXT("read information failed"), wkernel_name);
|
2000-01-16 06:07:22 +03:00
|
|
|
goto cancel;
|
|
|
|
}
|
|
|
|
|
2000-06-04 08:30:48 +04:00
|
|
|
stat_printf(TEXT("create memory map..."));
|
2000-01-16 06:07:22 +03:00
|
|
|
if (CheckCancel(0) || vmem_init(start, end) < 0) {
|
2000-06-04 08:30:48 +04:00
|
|
|
stat_printf(TEXT("create memory map...failed"));
|
2000-01-16 06:07:22 +03:00
|
|
|
goto cancel;
|
|
|
|
}
|
|
|
|
//vmem_dump_map();
|
|
|
|
|
2000-06-04 08:30:48 +04:00
|
|
|
stat_printf(TEXT("prepare boot information..."));
|
2000-01-16 06:07:22 +03:00
|
|
|
if ((argbuf = vmem_alloc()) == NULL ||
|
|
|
|
(bibuf = (struct bootinfo*)vmem_alloc()) == NULL) {
|
|
|
|
msg_printf(MSG_ERROR, whoami, TEXT("can't allocate argument page\n"));
|
2000-06-04 08:30:48 +04:00
|
|
|
stat_printf(TEXT("prepare boot information...failed"));
|
2000-01-16 06:07:22 +03:00
|
|
|
goto cancel;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(bibuf, bi, sizeof(struct bootinfo));
|
|
|
|
for (p = &argbuf[sizeof(char*) * argc], i = 0; i < argc; i++) {
|
|
|
|
int arglen = strlen(argv[i]) + 1;
|
|
|
|
((char**)argbuf)[i] = p;
|
|
|
|
memcpy(p, argv[i], arglen);
|
|
|
|
p += arglen;
|
|
|
|
}
|
|
|
|
|
2000-06-04 08:30:48 +04:00
|
|
|
stat_printf(TEXT("loading..."));
|
2000-01-16 06:07:22 +03:00
|
|
|
if (CheckCancel(0) || loadfile(fd, &start) < 0) {
|
2000-06-04 08:30:48 +04:00
|
|
|
stat_printf(TEXT("loading...failed"));
|
2000-01-16 06:07:22 +03:00
|
|
|
goto cancel;
|
|
|
|
}
|
|
|
|
|
2000-03-19 14:10:57 +03:00
|
|
|
/* last chance to cancel */
|
2000-01-16 06:07:22 +03:00
|
|
|
if (CheckCancel(-1)) {
|
|
|
|
goto cancel;
|
|
|
|
}
|
|
|
|
|
2000-06-04 08:30:48 +04:00
|
|
|
stat_printf(TEXT("execute kernel..."));
|
2000-01-16 06:07:22 +03:00
|
|
|
vmem_exec(start, argc, (char**)argbuf, bibuf);
|
2000-06-04 08:30:48 +04:00
|
|
|
stat_printf(TEXT("execute kernel...failed"));
|
2000-01-16 06:07:22 +03:00
|
|
|
|
|
|
|
cancel:
|
|
|
|
if (0 <= fd) {
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
vmem_free();
|
|
|
|
|
|
|
|
return (-1);
|
|
|
|
}
|