2021-12-05 07:47:17 +03:00
|
|
|
/* $NetBSD: i386.c,v 1.43 2021/12/05 04:47:18 msaitoh Exp $ */
|
2003-04-10 02:14:27 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2003 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by David Laight.
|
|
|
|
*
|
|
|
|
* 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 NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
|
|
|
|
*/
|
|
|
|
|
2003-10-27 03:12:41 +03:00
|
|
|
#if HAVE_NBTOOL_CONFIG_H
|
|
|
|
#include "nbtool_config.h"
|
|
|
|
#endif
|
|
|
|
|
2003-04-10 02:14:27 +04:00
|
|
|
#include <sys/cdefs.h>
|
2003-10-27 03:12:41 +03:00
|
|
|
#if !defined(__lint)
|
2021-12-05 07:47:17 +03:00
|
|
|
__RCSID("$NetBSD: i386.c,v 1.43 2021/12/05 04:47:18 msaitoh Exp $");
|
2003-10-28 01:29:59 +03:00
|
|
|
#endif /* !__lint */
|
2003-04-10 02:14:27 +04:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
2007-01-06 13:21:24 +03:00
|
|
|
#ifndef HAVE_NBTOOL_CONFIG_H
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/dkio.h>
|
|
|
|
#endif
|
2003-04-10 02:14:27 +04:00
|
|
|
|
|
|
|
#include <assert.h>
|
2007-01-06 13:21:24 +03:00
|
|
|
#include <errno.h>
|
2003-04-10 02:14:27 +04:00
|
|
|
#include <err.h>
|
2003-04-18 18:16:42 +04:00
|
|
|
#include <md5.h>
|
2003-04-10 02:14:27 +04:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "installboot.h"
|
|
|
|
|
2007-06-23 18:46:00 +04:00
|
|
|
static const struct console_name {
|
|
|
|
const char *name; /* Name of console selection */
|
|
|
|
const int dev; /* value matching CONSDEV_* from sys/arch/i386/stand/lib/libi386.h */
|
|
|
|
} consoles[] = {
|
|
|
|
{ "pc", 0 /* CONSDEV_PC */ },
|
|
|
|
{ "com0", 1 /* CONSDEV_COM0 */ },
|
|
|
|
{ "com1", 2 /* CONSDEV_COM1 */ },
|
|
|
|
{ "com2", 3 /* CONSDEV_COM2 */ },
|
|
|
|
{ "com3", 4 /* CONSDEV_COM3 */ },
|
|
|
|
{ "com0kbd", 5 /* CONSDEV_COM0KBD */ },
|
|
|
|
{ "com1kbd", 6 /* CONSDEV_COM1KBD */ },
|
|
|
|
{ "com2kbd", 7 /* CONSDEV_COM2KBD */ },
|
|
|
|
{ "com3kbd", 8 /* CONSDEV_COM3KBD */ },
|
|
|
|
{ "auto", -1 /* CONSDEV_AUTO */ },
|
|
|
|
};
|
2005-11-12 00:09:50 +03:00
|
|
|
|
2006-02-18 13:08:07 +03:00
|
|
|
static int i386_setboot(ib_params *);
|
|
|
|
static int i386_editboot(ib_params *);
|
|
|
|
|
2019-05-07 07:35:31 +03:00
|
|
|
struct ib_mach ib_mach_i386 = {
|
|
|
|
.name = "i386",
|
|
|
|
.setboot = i386_setboot,
|
|
|
|
.clearboot = no_clearboot,
|
|
|
|
.editboot = i386_editboot,
|
|
|
|
.valid_flags = IB_RESETVIDEO | IB_CONSOLE | IB_CONSPEED |
|
|
|
|
IB_CONSADDR | IB_KEYMAP | IB_PASSWORD |
|
|
|
|
IB_TIMEOUT | IB_MODULES | IB_BOOTCONF |
|
|
|
|
IB_STAGE1START
|
|
|
|
};
|
2006-02-18 13:08:07 +03:00
|
|
|
|
2019-05-07 07:35:31 +03:00
|
|
|
struct ib_mach ib_mach_amd64 = {
|
|
|
|
.name = "amd64",
|
|
|
|
.setboot = i386_setboot,
|
|
|
|
.clearboot = no_clearboot,
|
|
|
|
.editboot = i386_editboot,
|
|
|
|
.valid_flags = IB_RESETVIDEO | IB_CONSOLE | IB_CONSPEED |
|
|
|
|
IB_CONSADDR | IB_KEYMAP | IB_PASSWORD |
|
|
|
|
IB_TIMEOUT | IB_MODULES | IB_BOOTCONF |
|
|
|
|
IB_STAGE1START
|
|
|
|
};
|
2006-02-18 13:08:07 +03:00
|
|
|
|
2007-01-06 13:21:24 +03:00
|
|
|
/*
|
|
|
|
* Attempting to write the 'labelsector' (or a sector near it - within 8k?)
|
|
|
|
* using the non-raw disk device fails silently. This can be detected (today)
|
|
|
|
* by doing a fsync() and a read back.
|
|
|
|
* This is very likely to affect installboot, indeed the code may need to
|
|
|
|
* be written into the 'labelsector' itself - especially on non-512 byte media.
|
|
|
|
* We do all writes with a read verify.
|
|
|
|
* If EROFS is returned we also try to enable writes to the label sector.
|
|
|
|
* (Maybe these functions should be in the generic part of installboot.)
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
pwrite_validate(int fd, const void *buf, size_t n_bytes, off_t offset)
|
|
|
|
{
|
|
|
|
void *r_buf;
|
|
|
|
ssize_t rv;
|
|
|
|
|
|
|
|
r_buf = malloc(n_bytes);
|
|
|
|
if (r_buf == NULL)
|
|
|
|
return -1;
|
|
|
|
rv = pwrite(fd, buf, n_bytes, offset);
|
|
|
|
if (rv == -1) {
|
|
|
|
free(r_buf);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
fsync(fd);
|
2009-02-18 23:06:27 +03:00
|
|
|
if (pread(fd, r_buf, rv, offset) == rv && memcmp(r_buf, buf, rv) == 0) {
|
|
|
|
free(r_buf);
|
2007-01-06 13:21:24 +03:00
|
|
|
return rv;
|
2009-02-18 23:06:27 +03:00
|
|
|
}
|
|
|
|
free(r_buf);
|
2007-01-06 13:21:24 +03:00
|
|
|
errno = EROFS;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2011-08-14 21:50:16 +04:00
|
|
|
write_boot_area(ib_params *params, uint8_t *buf, size_t len)
|
2007-01-06 13:21:24 +03:00
|
|
|
{
|
|
|
|
int rv, i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Writing the 'label' sector (likely to be bytes 512-1023) could
|
|
|
|
* fail, so we try to avoid writing that area.
|
|
|
|
* Unfortunately, if we are accessing the raw disk, and the sector
|
|
|
|
* size is larger than 512 bytes that is also doomed.
|
|
|
|
* See how we get on....
|
|
|
|
*
|
|
|
|
* NB: Even if the physical sector size is not 512, the space for
|
|
|
|
* the label is 512 bytes from the start of the disk.
|
|
|
|
* So all the '512' constants in these functions are correct.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Write out first 512 bytes - the pbr code */
|
|
|
|
rv = pwrite_validate(params->fsfd, buf, 512, 0);
|
|
|
|
if (rv == 512) {
|
|
|
|
/* That worked, do the rest */
|
|
|
|
if (len == 512)
|
|
|
|
return 1;
|
|
|
|
len -= 512 * 2;
|
|
|
|
rv = pwrite_validate(params->fsfd, buf + 512 * 2, len, 512 * 2);
|
2011-08-14 21:50:16 +04:00
|
|
|
if (rv != (ssize_t)len)
|
2007-01-06 13:21:24 +03:00
|
|
|
goto bad_write;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (rv != -1 || (errno != EINVAL && errno != EROFS))
|
|
|
|
goto bad_write;
|
|
|
|
|
|
|
|
if (errno == EINVAL) {
|
|
|
|
/* Assume the failure was due to to the sector size > 512 */
|
|
|
|
rv = pwrite_validate(params->fsfd, buf, len, 0);
|
2011-08-14 21:50:16 +04:00
|
|
|
if (rv == (ssize_t)len)
|
2007-01-06 13:21:24 +03:00
|
|
|
return 1;
|
|
|
|
if (rv != -1 || (errno != EROFS))
|
|
|
|
goto bad_write;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DIOCWLABEL
|
|
|
|
/* Pesky label is protected, try to unprotect it */
|
|
|
|
i = 1;
|
|
|
|
rv = ioctl(params->fsfd, DIOCWLABEL, &i);
|
|
|
|
if (rv != 0) {
|
|
|
|
warn("Cannot enable writes to the label sector");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* Try again with label write-enabled */
|
|
|
|
rv = pwrite_validate(params->fsfd, buf, len, 0);
|
|
|
|
|
|
|
|
/* Reset write-protext */
|
|
|
|
i = 0;
|
|
|
|
ioctl(params->fsfd, DIOCWLABEL, &i);
|
2011-08-14 21:50:16 +04:00
|
|
|
if (rv == (ssize_t)len)
|
2007-01-06 13:21:24 +03:00
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bad_write:
|
|
|
|
if (rv == -1)
|
|
|
|
warn("Writing `%s'", params->filesystem);
|
2013-06-14 07:54:43 +04:00
|
|
|
else
|
2007-01-06 13:21:24 +03:00
|
|
|
warnx("Writing `%s': short write, %u bytes",
|
|
|
|
params->filesystem, rv);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-11-12 00:09:50 +03:00
|
|
|
static void
|
|
|
|
show_i386_boot_params(struct x86_boot_params *bpp)
|
|
|
|
{
|
2007-06-23 18:46:00 +04:00
|
|
|
size_t i;
|
2005-11-12 00:09:50 +03:00
|
|
|
|
|
|
|
printf("Boot options: ");
|
|
|
|
printf("timeout %d, ", le32toh(bpp->bp_timeout));
|
|
|
|
printf("flags %x, ", le32toh(bpp->bp_flags));
|
|
|
|
printf("speed %d, ", le32toh(bpp->bp_conspeed));
|
|
|
|
printf("ioaddr %x, ", le32toh(bpp->bp_consaddr));
|
2011-08-14 21:50:16 +04:00
|
|
|
for (i = 0; i < __arraycount(consoles); i++) {
|
2009-04-05 15:48:02 +04:00
|
|
|
if (consoles[i].dev == (int)le32toh(bpp->bp_consdev))
|
2007-06-23 18:46:00 +04:00
|
|
|
break;
|
|
|
|
}
|
2011-08-14 21:50:16 +04:00
|
|
|
if (i == __arraycount(consoles))
|
2007-06-23 18:46:00 +04:00
|
|
|
printf("console %d\n", le32toh(bpp->bp_consdev));
|
2005-11-12 00:09:50 +03:00
|
|
|
else
|
2007-06-23 18:46:00 +04:00
|
|
|
printf("console %s\n", consoles[i].name);
|
2005-11-12 00:09:50 +03:00
|
|
|
if (bpp->bp_keymap[0])
|
|
|
|
printf(" keymap %s\n", bpp->bp_keymap);
|
|
|
|
}
|
|
|
|
|
2007-01-06 13:21:24 +03:00
|
|
|
static int
|
|
|
|
is_zero(const uint8_t *p, unsigned int len)
|
|
|
|
{
|
|
|
|
return len == 0 || (p[0] == 0 && memcmp(p, p + 1, len - 1) == 0);
|
|
|
|
}
|
|
|
|
|
2005-11-12 00:09:50 +03:00
|
|
|
static int
|
|
|
|
update_i386_boot_params(ib_params *params, struct x86_boot_params *bpp)
|
|
|
|
{
|
|
|
|
struct x86_boot_params bp;
|
2009-04-05 15:48:02 +04:00
|
|
|
uint32_t bplen;
|
2007-06-23 18:46:00 +04:00
|
|
|
size_t i;
|
2005-11-12 00:09:50 +03:00
|
|
|
|
|
|
|
bplen = le32toh(bpp->bp_length);
|
|
|
|
if (bplen > sizeof bp)
|
|
|
|
/* Ignore pad space in bootxx */
|
|
|
|
bplen = sizeof bp;
|
|
|
|
|
|
|
|
/* Take (and update) local copy so we handle size mismatches */
|
|
|
|
memset(&bp, 0, sizeof bp);
|
|
|
|
memcpy(&bp, bpp, bplen);
|
|
|
|
|
|
|
|
if (params->flags & IB_TIMEOUT)
|
|
|
|
bp.bp_timeout = htole32(params->timeout);
|
|
|
|
if (params->flags & IB_RESETVIDEO)
|
|
|
|
bp.bp_flags ^= htole32(X86_BP_FLAGS_RESET_VIDEO);
|
|
|
|
if (params->flags & IB_CONSPEED)
|
|
|
|
bp.bp_conspeed = htole32(params->conspeed);
|
|
|
|
if (params->flags & IB_CONSADDR)
|
|
|
|
bp.bp_consaddr = htole32(params->consaddr);
|
|
|
|
if (params->flags & IB_CONSOLE) {
|
2011-08-14 21:50:16 +04:00
|
|
|
for (i = 0; i < __arraycount(consoles); i++)
|
2007-06-23 18:46:00 +04:00
|
|
|
if (strcmp(consoles[i].name, params->console) == 0)
|
2005-11-12 00:09:50 +03:00
|
|
|
break;
|
2007-06-23 18:46:00 +04:00
|
|
|
|
2011-08-14 21:50:16 +04:00
|
|
|
if (i == __arraycount(consoles)) {
|
2007-06-23 18:46:00 +04:00
|
|
|
warnx("invalid console name, valid names are:");
|
|
|
|
(void)fprintf(stderr, "\t%s", consoles[0].name);
|
2012-04-06 14:10:11 +04:00
|
|
|
for (i = 1; i < __arraycount(consoles); i++)
|
2007-06-23 18:46:00 +04:00
|
|
|
(void)fprintf(stderr, ", %s", consoles[i].name);
|
|
|
|
(void)fprintf(stderr, "\n");
|
|
|
|
return 1;
|
2005-11-12 00:09:50 +03:00
|
|
|
}
|
2007-06-23 18:46:00 +04:00
|
|
|
bp.bp_consdev = htole32(consoles[i].dev);
|
2005-11-12 00:09:50 +03:00
|
|
|
}
|
|
|
|
if (params->flags & IB_PASSWORD) {
|
|
|
|
if (params->password[0]) {
|
|
|
|
MD5_CTX md5ctx;
|
|
|
|
MD5Init(&md5ctx);
|
|
|
|
MD5Update(&md5ctx, params->password,
|
|
|
|
strlen(params->password));
|
|
|
|
MD5Final(bp.bp_password, &md5ctx);
|
|
|
|
bp.bp_flags |= htole32(X86_BP_FLAGS_PASSWORD);
|
|
|
|
} else {
|
|
|
|
memset(&bp.bp_password, 0, sizeof bp.bp_password);
|
|
|
|
bp.bp_flags &= ~htole32(X86_BP_FLAGS_PASSWORD);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (params->flags & IB_KEYMAP)
|
|
|
|
strlcpy(bp.bp_keymap, params->keymap, sizeof bp.bp_keymap);
|
2010-01-14 20:49:31 +03:00
|
|
|
if (params->flags & IB_MODULES)
|
2010-01-17 17:54:43 +03:00
|
|
|
bp.bp_flags ^= htole32(X86_BP_FLAGS_NOMODULES);
|
2010-01-14 20:49:31 +03:00
|
|
|
if (params->flags & IB_BOOTCONF)
|
2010-01-17 17:54:43 +03:00
|
|
|
bp.bp_flags ^= htole32(X86_BP_FLAGS_NOBOOTCONF);
|
2005-11-12 00:09:50 +03:00
|
|
|
|
|
|
|
if (params->flags & (IB_NOWRITE | IB_VERBOSE))
|
|
|
|
show_i386_boot_params(&bp);
|
|
|
|
|
|
|
|
/* Check we aren't trying to set anything we can't save */
|
2007-01-06 13:21:24 +03:00
|
|
|
if (!is_zero((char *)&bp + bplen, sizeof bp - bplen)) {
|
2005-11-12 00:09:50 +03:00
|
|
|
warnx("Patch area in stage1 bootstrap is too small");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
memcpy(bpp, &bp, bplen);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-02-18 13:08:07 +03:00
|
|
|
static int
|
2003-04-10 02:14:27 +04:00
|
|
|
i386_setboot(ib_params *params)
|
|
|
|
{
|
2007-01-06 13:21:24 +03:00
|
|
|
unsigned int u;
|
2003-04-10 02:14:27 +04:00
|
|
|
ssize_t rv;
|
2007-01-06 13:21:24 +03:00
|
|
|
uint32_t *magic, expected_magic;
|
|
|
|
union {
|
|
|
|
struct mbr_sector mbr;
|
|
|
|
uint8_t b[8192];
|
|
|
|
} disk_buf, bootstrap;
|
2003-04-10 02:14:27 +04:00
|
|
|
|
|
|
|
assert(params != NULL);
|
|
|
|
assert(params->fsfd != -1);
|
|
|
|
assert(params->filesystem != NULL);
|
|
|
|
assert(params->s1fd != -1);
|
|
|
|
assert(params->stage1 != NULL);
|
|
|
|
|
2003-04-15 18:22:13 +04:00
|
|
|
/*
|
2009-05-07 11:03:39 +04:00
|
|
|
* There is only 8k of space in a FFSv1 partition (and ustarfs)
|
2003-04-15 18:22:13 +04:00
|
|
|
* so ensure we don't splat over anything important.
|
|
|
|
*/
|
2009-04-05 15:48:02 +04:00
|
|
|
if (params->s1stat.st_size > (off_t)(sizeof bootstrap)) {
|
2007-01-06 13:21:24 +03:00
|
|
|
warnx("stage1 bootstrap `%s' (%u bytes) is larger than 8192 bytes",
|
|
|
|
params->stage1, (unsigned int)params->s1stat.st_size);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (params->s1stat.st_size < 3 * 512 && params->s1stat.st_size != 512) {
|
|
|
|
warnx("stage1 bootstrap `%s' (%u bytes) is too small",
|
|
|
|
params->stage1, (unsigned int)params->s1stat.st_size);
|
|
|
|
return 0;
|
Overhaul MBR handling (part 1):
<sys/bootblock.h>:
* Added definitions for the Master Boot Record (MBR) used by
a variety of systems (primarily i386), including the format
of the BIOS Parameter Block (BPB).
This information was cribbed from a variety of sources
including <sys/disklabel_mbr.h> which this is a superset of.
As part of this, some data structure elements and #defines
were renamed to be more "namespace friendly" and consistent
with other bootblocks and MBR documentation.
Update all uses of the old names to the new names.
<sys/disklabel_mbr.h>:
* Deprecated in favor of <sys/bootblock.h> (the latter is more
"host tool" friendly).
amd64 & i386:
* Renamed /usr/mdec/bootxx_dosfs to /usr/mdec/bootxx_msdos, to
be consistent with the naming convention of the msdosfs tools.
* Removed /usr/mdec/bootxx_ufs, as it's equivalent to bootxx_ffsv1
and it's confusing to have two functionally equivalent bootblocks,
especially given that "ufs" has multiple meanings (it could be
a synonym for "ffs", or the group of ffs/lfs/ext2fs file systems).
* Rework pbr.S (the first sector of bootxx_*):
+ Ensure that BPB (bytes 11..89) and the partition table
(bytes 446..509) do not contain code.
+ Add support for booting from FAT partitions if BOOT_FROM_FAT
is defined. (Only set for bootxx_msdos).
+ Remove "dummy" partition 3; if people want to installboot(8)
these to the start of the disk they can use fdisk(8) to
create a real MBR partition table...
+ Compile with TERSE_ERROR so it fits because of the above.
Whilst this is less user friendly, I feel it's important
to have a valid partition table and BPB in the MBR/PBR.
* Renamed /usr/mdec/biosboot to /usr/mdec/boot, to be consistent
with other platforms.
* Enable SUPPORT_DOSFS in /usr/mdec/boot (stage2), so that
we can boot off FAT partitions.
* Crank version of /usr/mdec/boot to 3.1, and fix some of the other
entries in the version file.
installboot(8) (i386):
* Read the existing MBR of the filesystem and retain the BIOS
Parameter Block (BPB) in bytes 11..89 and the MBR partition
table in bytes 446..509. (Previously installboot(8) would
trash those two sections of the MBR.)
mbrlabel(8):
* Use sys/lib/libkern/xlat_mbr_fstype.c instead of homegrown code
to map the MBR partition type to the NetBSD disklabel type.
Test built "make release" for i386, and new bootblocks verified to work
(even off FAT!).
2003-10-08 08:25:43 +04:00
|
|
|
}
|
|
|
|
|
2007-01-06 13:21:24 +03:00
|
|
|
/* Read in the existing disk header and boot code */
|
|
|
|
rv = pread(params->fsfd, &disk_buf, sizeof (disk_buf), 0);
|
2007-01-07 07:16:57 +03:00
|
|
|
if (rv != sizeof(disk_buf)) {
|
2007-01-06 13:21:24 +03:00
|
|
|
if (rv == -1)
|
|
|
|
warn("Reading `%s'", params->filesystem);
|
|
|
|
else
|
2007-01-07 07:16:57 +03:00
|
|
|
warnx("Reading `%s': short read, %ld bytes"
|
|
|
|
" (should be %ld)", params->filesystem, (long)rv,
|
|
|
|
(long)sizeof(disk_buf));
|
2007-01-06 13:21:24 +03:00
|
|
|
return 0;
|
2003-04-10 02:14:27 +04:00
|
|
|
}
|
2007-01-06 13:21:24 +03:00
|
|
|
|
|
|
|
if (disk_buf.mbr.mbr_magic != le16toh(MBR_MAGIC)) {
|
Overhaul MBR handling (part 1):
<sys/bootblock.h>:
* Added definitions for the Master Boot Record (MBR) used by
a variety of systems (primarily i386), including the format
of the BIOS Parameter Block (BPB).
This information was cribbed from a variety of sources
including <sys/disklabel_mbr.h> which this is a superset of.
As part of this, some data structure elements and #defines
were renamed to be more "namespace friendly" and consistent
with other bootblocks and MBR documentation.
Update all uses of the old names to the new names.
<sys/disklabel_mbr.h>:
* Deprecated in favor of <sys/bootblock.h> (the latter is more
"host tool" friendly).
amd64 & i386:
* Renamed /usr/mdec/bootxx_dosfs to /usr/mdec/bootxx_msdos, to
be consistent with the naming convention of the msdosfs tools.
* Removed /usr/mdec/bootxx_ufs, as it's equivalent to bootxx_ffsv1
and it's confusing to have two functionally equivalent bootblocks,
especially given that "ufs" has multiple meanings (it could be
a synonym for "ffs", or the group of ffs/lfs/ext2fs file systems).
* Rework pbr.S (the first sector of bootxx_*):
+ Ensure that BPB (bytes 11..89) and the partition table
(bytes 446..509) do not contain code.
+ Add support for booting from FAT partitions if BOOT_FROM_FAT
is defined. (Only set for bootxx_msdos).
+ Remove "dummy" partition 3; if people want to installboot(8)
these to the start of the disk they can use fdisk(8) to
create a real MBR partition table...
+ Compile with TERSE_ERROR so it fits because of the above.
Whilst this is less user friendly, I feel it's important
to have a valid partition table and BPB in the MBR/PBR.
* Renamed /usr/mdec/biosboot to /usr/mdec/boot, to be consistent
with other platforms.
* Enable SUPPORT_DOSFS in /usr/mdec/boot (stage2), so that
we can boot off FAT partitions.
* Crank version of /usr/mdec/boot to 3.1, and fix some of the other
entries in the version file.
installboot(8) (i386):
* Read the existing MBR of the filesystem and retain the BIOS
Parameter Block (BPB) in bytes 11..89 and the MBR partition
table in bytes 446..509. (Previously installboot(8) would
trash those two sections of the MBR.)
mbrlabel(8):
* Use sys/lib/libkern/xlat_mbr_fstype.c instead of homegrown code
to map the MBR partition type to the NetBSD disklabel type.
Test built "make release" for i386, and new bootblocks verified to work
(even off FAT!).
2003-10-08 08:25:43 +04:00
|
|
|
if (params->flags & IB_VERBOSE) {
|
|
|
|
printf(
|
2007-01-06 13:21:24 +03:00
|
|
|
"Ignoring PBR with invalid magic in sector 0 of `%s'\n",
|
Overhaul MBR handling (part 1):
<sys/bootblock.h>:
* Added definitions for the Master Boot Record (MBR) used by
a variety of systems (primarily i386), including the format
of the BIOS Parameter Block (BPB).
This information was cribbed from a variety of sources
including <sys/disklabel_mbr.h> which this is a superset of.
As part of this, some data structure elements and #defines
were renamed to be more "namespace friendly" and consistent
with other bootblocks and MBR documentation.
Update all uses of the old names to the new names.
<sys/disklabel_mbr.h>:
* Deprecated in favor of <sys/bootblock.h> (the latter is more
"host tool" friendly).
amd64 & i386:
* Renamed /usr/mdec/bootxx_dosfs to /usr/mdec/bootxx_msdos, to
be consistent with the naming convention of the msdosfs tools.
* Removed /usr/mdec/bootxx_ufs, as it's equivalent to bootxx_ffsv1
and it's confusing to have two functionally equivalent bootblocks,
especially given that "ufs" has multiple meanings (it could be
a synonym for "ffs", or the group of ffs/lfs/ext2fs file systems).
* Rework pbr.S (the first sector of bootxx_*):
+ Ensure that BPB (bytes 11..89) and the partition table
(bytes 446..509) do not contain code.
+ Add support for booting from FAT partitions if BOOT_FROM_FAT
is defined. (Only set for bootxx_msdos).
+ Remove "dummy" partition 3; if people want to installboot(8)
these to the start of the disk they can use fdisk(8) to
create a real MBR partition table...
+ Compile with TERSE_ERROR so it fits because of the above.
Whilst this is less user friendly, I feel it's important
to have a valid partition table and BPB in the MBR/PBR.
* Renamed /usr/mdec/biosboot to /usr/mdec/boot, to be consistent
with other platforms.
* Enable SUPPORT_DOSFS in /usr/mdec/boot (stage2), so that
we can boot off FAT partitions.
* Crank version of /usr/mdec/boot to 3.1, and fix some of the other
entries in the version file.
installboot(8) (i386):
* Read the existing MBR of the filesystem and retain the BIOS
Parameter Block (BPB) in bytes 11..89 and the MBR partition
table in bytes 446..509. (Previously installboot(8) would
trash those two sections of the MBR.)
mbrlabel(8):
* Use sys/lib/libkern/xlat_mbr_fstype.c instead of homegrown code
to map the MBR partition type to the NetBSD disklabel type.
Test built "make release" for i386, and new bootblocks verified to work
(even off FAT!).
2003-10-08 08:25:43 +04:00
|
|
|
params->filesystem);
|
|
|
|
}
|
2007-01-06 13:21:24 +03:00
|
|
|
memset(&disk_buf, 0, 512);
|
Overhaul MBR handling (part 1):
<sys/bootblock.h>:
* Added definitions for the Master Boot Record (MBR) used by
a variety of systems (primarily i386), including the format
of the BIOS Parameter Block (BPB).
This information was cribbed from a variety of sources
including <sys/disklabel_mbr.h> which this is a superset of.
As part of this, some data structure elements and #defines
were renamed to be more "namespace friendly" and consistent
with other bootblocks and MBR documentation.
Update all uses of the old names to the new names.
<sys/disklabel_mbr.h>:
* Deprecated in favor of <sys/bootblock.h> (the latter is more
"host tool" friendly).
amd64 & i386:
* Renamed /usr/mdec/bootxx_dosfs to /usr/mdec/bootxx_msdos, to
be consistent with the naming convention of the msdosfs tools.
* Removed /usr/mdec/bootxx_ufs, as it's equivalent to bootxx_ffsv1
and it's confusing to have two functionally equivalent bootblocks,
especially given that "ufs" has multiple meanings (it could be
a synonym for "ffs", or the group of ffs/lfs/ext2fs file systems).
* Rework pbr.S (the first sector of bootxx_*):
+ Ensure that BPB (bytes 11..89) and the partition table
(bytes 446..509) do not contain code.
+ Add support for booting from FAT partitions if BOOT_FROM_FAT
is defined. (Only set for bootxx_msdos).
+ Remove "dummy" partition 3; if people want to installboot(8)
these to the start of the disk they can use fdisk(8) to
create a real MBR partition table...
+ Compile with TERSE_ERROR so it fits because of the above.
Whilst this is less user friendly, I feel it's important
to have a valid partition table and BPB in the MBR/PBR.
* Renamed /usr/mdec/biosboot to /usr/mdec/boot, to be consistent
with other platforms.
* Enable SUPPORT_DOSFS in /usr/mdec/boot (stage2), so that
we can boot off FAT partitions.
* Crank version of /usr/mdec/boot to 3.1, and fix some of the other
entries in the version file.
installboot(8) (i386):
* Read the existing MBR of the filesystem and retain the BIOS
Parameter Block (BPB) in bytes 11..89 and the MBR partition
table in bytes 446..509. (Previously installboot(8) would
trash those two sections of the MBR.)
mbrlabel(8):
* Use sys/lib/libkern/xlat_mbr_fstype.c instead of homegrown code
to map the MBR partition type to the NetBSD disklabel type.
Test built "make release" for i386, and new bootblocks verified to work
(even off FAT!).
2003-10-08 08:25:43 +04:00
|
|
|
}
|
|
|
|
|
2007-01-06 13:21:24 +03:00
|
|
|
/* Read the new bootstrap code. */
|
|
|
|
rv = pread(params->s1fd, &bootstrap, params->s1stat.st_size, 0);
|
|
|
|
if (rv != params->s1stat.st_size) {
|
|
|
|
if (rv == -1)
|
|
|
|
warn("Reading `%s'", params->stage1);
|
|
|
|
else
|
2007-01-07 07:16:57 +03:00
|
|
|
warnx("Reading `%s': short read, %ld bytes"
|
|
|
|
" (should be %ld)", params->stage1, (long)rv,
|
|
|
|
(long)params->s1stat.st_size);
|
2007-01-06 13:21:24 +03:00
|
|
|
return 0;
|
2003-04-10 02:14:27 +04:00
|
|
|
}
|
|
|
|
|
Overhaul MBR handling (part 1):
<sys/bootblock.h>:
* Added definitions for the Master Boot Record (MBR) used by
a variety of systems (primarily i386), including the format
of the BIOS Parameter Block (BPB).
This information was cribbed from a variety of sources
including <sys/disklabel_mbr.h> which this is a superset of.
As part of this, some data structure elements and #defines
were renamed to be more "namespace friendly" and consistent
with other bootblocks and MBR documentation.
Update all uses of the old names to the new names.
<sys/disklabel_mbr.h>:
* Deprecated in favor of <sys/bootblock.h> (the latter is more
"host tool" friendly).
amd64 & i386:
* Renamed /usr/mdec/bootxx_dosfs to /usr/mdec/bootxx_msdos, to
be consistent with the naming convention of the msdosfs tools.
* Removed /usr/mdec/bootxx_ufs, as it's equivalent to bootxx_ffsv1
and it's confusing to have two functionally equivalent bootblocks,
especially given that "ufs" has multiple meanings (it could be
a synonym for "ffs", or the group of ffs/lfs/ext2fs file systems).
* Rework pbr.S (the first sector of bootxx_*):
+ Ensure that BPB (bytes 11..89) and the partition table
(bytes 446..509) do not contain code.
+ Add support for booting from FAT partitions if BOOT_FROM_FAT
is defined. (Only set for bootxx_msdos).
+ Remove "dummy" partition 3; if people want to installboot(8)
these to the start of the disk they can use fdisk(8) to
create a real MBR partition table...
+ Compile with TERSE_ERROR so it fits because of the above.
Whilst this is less user friendly, I feel it's important
to have a valid partition table and BPB in the MBR/PBR.
* Renamed /usr/mdec/biosboot to /usr/mdec/boot, to be consistent
with other platforms.
* Enable SUPPORT_DOSFS in /usr/mdec/boot (stage2), so that
we can boot off FAT partitions.
* Crank version of /usr/mdec/boot to 3.1, and fix some of the other
entries in the version file.
installboot(8) (i386):
* Read the existing MBR of the filesystem and retain the BIOS
Parameter Block (BPB) in bytes 11..89 and the MBR partition
table in bytes 446..509. (Previously installboot(8) would
trash those two sections of the MBR.)
mbrlabel(8):
* Use sys/lib/libkern/xlat_mbr_fstype.c instead of homegrown code
to map the MBR partition type to the NetBSD disklabel type.
Test built "make release" for i386, and new bootblocks verified to work
(even off FAT!).
2003-10-08 08:25:43 +04:00
|
|
|
/*
|
2007-01-06 13:21:24 +03:00
|
|
|
* The bootstrap code is either 512 bytes for booting FAT16, or best
|
|
|
|
* part of 8k (with bytes 512-1023 all zeros).
|
Overhaul MBR handling (part 1):
<sys/bootblock.h>:
* Added definitions for the Master Boot Record (MBR) used by
a variety of systems (primarily i386), including the format
of the BIOS Parameter Block (BPB).
This information was cribbed from a variety of sources
including <sys/disklabel_mbr.h> which this is a superset of.
As part of this, some data structure elements and #defines
were renamed to be more "namespace friendly" and consistent
with other bootblocks and MBR documentation.
Update all uses of the old names to the new names.
<sys/disklabel_mbr.h>:
* Deprecated in favor of <sys/bootblock.h> (the latter is more
"host tool" friendly).
amd64 & i386:
* Renamed /usr/mdec/bootxx_dosfs to /usr/mdec/bootxx_msdos, to
be consistent with the naming convention of the msdosfs tools.
* Removed /usr/mdec/bootxx_ufs, as it's equivalent to bootxx_ffsv1
and it's confusing to have two functionally equivalent bootblocks,
especially given that "ufs" has multiple meanings (it could be
a synonym for "ffs", or the group of ffs/lfs/ext2fs file systems).
* Rework pbr.S (the first sector of bootxx_*):
+ Ensure that BPB (bytes 11..89) and the partition table
(bytes 446..509) do not contain code.
+ Add support for booting from FAT partitions if BOOT_FROM_FAT
is defined. (Only set for bootxx_msdos).
+ Remove "dummy" partition 3; if people want to installboot(8)
these to the start of the disk they can use fdisk(8) to
create a real MBR partition table...
+ Compile with TERSE_ERROR so it fits because of the above.
Whilst this is less user friendly, I feel it's important
to have a valid partition table and BPB in the MBR/PBR.
* Renamed /usr/mdec/biosboot to /usr/mdec/boot, to be consistent
with other platforms.
* Enable SUPPORT_DOSFS in /usr/mdec/boot (stage2), so that
we can boot off FAT partitions.
* Crank version of /usr/mdec/boot to 3.1, and fix some of the other
entries in the version file.
installboot(8) (i386):
* Read the existing MBR of the filesystem and retain the BIOS
Parameter Block (BPB) in bytes 11..89 and the MBR partition
table in bytes 446..509. (Previously installboot(8) would
trash those two sections of the MBR.)
mbrlabel(8):
* Use sys/lib/libkern/xlat_mbr_fstype.c instead of homegrown code
to map the MBR partition type to the NetBSD disklabel type.
Test built "make release" for i386, and new bootblocks verified to work
(even off FAT!).
2003-10-08 08:25:43 +04:00
|
|
|
*/
|
2007-01-06 13:21:24 +03:00
|
|
|
if (params->s1stat.st_size == 512) {
|
|
|
|
/* Magic number is at end of pbr code */
|
|
|
|
magic = (void *)(bootstrap.b + 512 - 16 + 4);
|
|
|
|
expected_magic = htole32(X86_BOOT_MAGIC_FAT);
|
|
|
|
} else {
|
|
|
|
/* Magic number is at start of sector following label */
|
|
|
|
magic = (void *)(bootstrap.b + 512 * 2 + 4);
|
|
|
|
expected_magic = htole32(X86_BOOT_MAGIC_1);
|
|
|
|
/*
|
|
|
|
* For a variety of reasons we restrict our 'normal' partition
|
|
|
|
* boot code to a size which enable it to be used as mbr code.
|
|
|
|
* IMHO this is bugus (dsl).
|
|
|
|
*/
|
|
|
|
if (!is_zero(bootstrap.b + 512-2-64, 64)) {
|
|
|
|
warnx("Data in mbr partition table of new bootstrap");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!is_zero(bootstrap.b + 512, 512)) {
|
|
|
|
warnx("Data in label part of new bootstrap");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* Copy mbr table and label from existing disk buffer */
|
|
|
|
memcpy(bootstrap.b + 512-2-64, disk_buf.b + 512-2-64, 64);
|
|
|
|
memcpy(bootstrap.b + 512, disk_buf.b + 512, 512);
|
2003-04-10 02:14:27 +04:00
|
|
|
}
|
|
|
|
|
2007-01-06 13:21:24 +03:00
|
|
|
/* Validate the 'magic number' that marks the parameter block */
|
|
|
|
if (*magic != expected_magic) {
|
2006-01-24 21:35:18 +03:00
|
|
|
warnx("Invalid magic in stage1 bootstrap %x != %x",
|
2007-01-06 13:21:24 +03:00
|
|
|
*magic, expected_magic);
|
|
|
|
return 0;
|
2003-04-15 18:22:13 +04:00
|
|
|
}
|
|
|
|
|
Overhaul MBR handling (part 1):
<sys/bootblock.h>:
* Added definitions for the Master Boot Record (MBR) used by
a variety of systems (primarily i386), including the format
of the BIOS Parameter Block (BPB).
This information was cribbed from a variety of sources
including <sys/disklabel_mbr.h> which this is a superset of.
As part of this, some data structure elements and #defines
were renamed to be more "namespace friendly" and consistent
with other bootblocks and MBR documentation.
Update all uses of the old names to the new names.
<sys/disklabel_mbr.h>:
* Deprecated in favor of <sys/bootblock.h> (the latter is more
"host tool" friendly).
amd64 & i386:
* Renamed /usr/mdec/bootxx_dosfs to /usr/mdec/bootxx_msdos, to
be consistent with the naming convention of the msdosfs tools.
* Removed /usr/mdec/bootxx_ufs, as it's equivalent to bootxx_ffsv1
and it's confusing to have two functionally equivalent bootblocks,
especially given that "ufs" has multiple meanings (it could be
a synonym for "ffs", or the group of ffs/lfs/ext2fs file systems).
* Rework pbr.S (the first sector of bootxx_*):
+ Ensure that BPB (bytes 11..89) and the partition table
(bytes 446..509) do not contain code.
+ Add support for booting from FAT partitions if BOOT_FROM_FAT
is defined. (Only set for bootxx_msdos).
+ Remove "dummy" partition 3; if people want to installboot(8)
these to the start of the disk they can use fdisk(8) to
create a real MBR partition table...
+ Compile with TERSE_ERROR so it fits because of the above.
Whilst this is less user friendly, I feel it's important
to have a valid partition table and BPB in the MBR/PBR.
* Renamed /usr/mdec/biosboot to /usr/mdec/boot, to be consistent
with other platforms.
* Enable SUPPORT_DOSFS in /usr/mdec/boot (stage2), so that
we can boot off FAT partitions.
* Crank version of /usr/mdec/boot to 3.1, and fix some of the other
entries in the version file.
installboot(8) (i386):
* Read the existing MBR of the filesystem and retain the BIOS
Parameter Block (BPB) in bytes 11..89 and the MBR partition
table in bytes 446..509. (Previously installboot(8) would
trash those two sections of the MBR.)
mbrlabel(8):
* Use sys/lib/libkern/xlat_mbr_fstype.c instead of homegrown code
to map the MBR partition type to the NetBSD disklabel type.
Test built "make release" for i386, and new bootblocks verified to work
(even off FAT!).
2003-10-08 08:25:43 +04:00
|
|
|
/*
|
2009-12-23 12:17:40 +03:00
|
|
|
* If the partition has a FAT (or NTFS) filesystem, then we must
|
2007-02-16 01:23:11 +03:00
|
|
|
* preserve the BIOS Parameter Block (BPB).
|
|
|
|
* It is also very likely that there isn't 8k of space available
|
|
|
|
* for (say) bootxx_msdos, and that blindly installing it will trash
|
|
|
|
* the FAT filesystem.
|
|
|
|
* To avoid this we check the number of 'reserved' sectors to ensure
|
|
|
|
* there there is enough space.
|
|
|
|
* Unfortunately newfs(8) doesn't (yet) splat the BPB (which is
|
|
|
|
* effectively the FAT superblock) when a filesystem is initailised
|
|
|
|
* so this code tends to complain rather too often,
|
|
|
|
* Specifying 'installboot -f' will delete the old BPB info.
|
2003-10-14 13:46:43 +04:00
|
|
|
*/
|
2007-02-16 01:23:11 +03:00
|
|
|
if (!(params->flags & IB_FORCE)) {
|
2008-03-07 00:27:41 +03:00
|
|
|
#define USE_F ", use -f (may invalidate filesystem)"
|
2007-02-16 01:23:11 +03:00
|
|
|
/*
|
|
|
|
* For FAT compatibility, the pbr code starts 'jmp xx; nop'
|
|
|
|
* followed by the BIOS Parameter Block (BPB).
|
|
|
|
* The 2nd byte (jump offset) is the size of the nop + BPB.
|
|
|
|
*/
|
|
|
|
if (bootstrap.b[0] != 0xeb || bootstrap.b[2] != 0x90) {
|
2008-03-07 00:27:41 +03:00
|
|
|
warnx("No BPB in new bootstrap %02x:%02x:%02x" USE_F,
|
2007-02-16 01:23:11 +03:00
|
|
|
bootstrap.b[0], bootstrap.b[1], bootstrap.b[2]);
|
2007-01-06 13:21:24 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2007-02-16 01:23:11 +03:00
|
|
|
|
2018-06-23 17:15:57 +03:00
|
|
|
/*
|
|
|
|
* Find size of old BPB, and copy into new bootcode
|
|
|
|
*
|
|
|
|
* The 2nd byte (b[1]) contains jmp short relative offset.
|
|
|
|
* If it is zero or some invalid input that is smaller than 9,
|
|
|
|
* it will cause overflow and call is_zero() with enormous size.
|
|
|
|
* Add a paranoid check to prevent this scenario.
|
|
|
|
*
|
|
|
|
* Verify that b[0] contains JMP (0xeb) and b[2] NOP (0x90).
|
|
|
|
*/
|
|
|
|
if (disk_buf.b[0] == 0xeb && disk_buf.b[1] >= 9 &&
|
|
|
|
disk_buf.b[2] == 0x90 &&
|
|
|
|
!is_zero(disk_buf.b + 3 + 8, disk_buf.b[1] - 1 - 8)) {
|
2007-02-16 01:23:11 +03:00
|
|
|
struct mbr_bpbFAT16 *bpb = (void *)(disk_buf.b + 3 + 8);
|
|
|
|
/* Check enough space before the FAT for the bootcode */
|
|
|
|
u = le16toh(bpb->bpbBytesPerSec)
|
|
|
|
* le16toh(bpb->bpbResSectors);
|
|
|
|
if (u != 0 && u < params->s1stat.st_size) {
|
2008-03-07 00:27:41 +03:00
|
|
|
warnx("Insufficient reserved space before FAT "
|
|
|
|
"(%u bytes available)" USE_F, u);
|
2007-02-16 01:23:11 +03:00
|
|
|
return 0;
|
2007-01-06 13:21:24 +03:00
|
|
|
}
|
2007-02-16 01:23:11 +03:00
|
|
|
/* Check we have enough space for the old bpb */
|
|
|
|
if (disk_buf.b[1] > bootstrap.b[1]) {
|
|
|
|
/* old BPB is larger, allow if extra zeros */
|
|
|
|
if (!is_zero(disk_buf.b + 2 + bootstrap.b[1],
|
|
|
|
disk_buf.b[1] - bootstrap.b[1])) {
|
2008-03-07 00:27:41 +03:00
|
|
|
warnx("Old BPB too big" USE_F);
|
2007-02-16 01:23:11 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
u = bootstrap.b[1];
|
|
|
|
} else {
|
|
|
|
/* Old BPB is shorter, leave zero filled */
|
|
|
|
u = disk_buf.b[1];
|
|
|
|
}
|
2012-03-10 22:42:18 +04:00
|
|
|
if (params->s1start != 0)
|
2021-12-05 07:47:17 +03:00
|
|
|
/* Fixup physical offset of filesystem */
|
2012-03-10 22:42:18 +04:00
|
|
|
bpb->bpbHiddenSecs = htole32(params->s1start);
|
2007-02-16 01:23:11 +03:00
|
|
|
memcpy(bootstrap.b + 2, disk_buf.b + 2, u);
|
2007-01-06 13:21:24 +03:00
|
|
|
}
|
2008-03-07 00:27:41 +03:00
|
|
|
#undef USE_F
|
2003-10-14 13:46:43 +04:00
|
|
|
}
|
Overhaul MBR handling (part 1):
<sys/bootblock.h>:
* Added definitions for the Master Boot Record (MBR) used by
a variety of systems (primarily i386), including the format
of the BIOS Parameter Block (BPB).
This information was cribbed from a variety of sources
including <sys/disklabel_mbr.h> which this is a superset of.
As part of this, some data structure elements and #defines
were renamed to be more "namespace friendly" and consistent
with other bootblocks and MBR documentation.
Update all uses of the old names to the new names.
<sys/disklabel_mbr.h>:
* Deprecated in favor of <sys/bootblock.h> (the latter is more
"host tool" friendly).
amd64 & i386:
* Renamed /usr/mdec/bootxx_dosfs to /usr/mdec/bootxx_msdos, to
be consistent with the naming convention of the msdosfs tools.
* Removed /usr/mdec/bootxx_ufs, as it's equivalent to bootxx_ffsv1
and it's confusing to have two functionally equivalent bootblocks,
especially given that "ufs" has multiple meanings (it could be
a synonym for "ffs", or the group of ffs/lfs/ext2fs file systems).
* Rework pbr.S (the first sector of bootxx_*):
+ Ensure that BPB (bytes 11..89) and the partition table
(bytes 446..509) do not contain code.
+ Add support for booting from FAT partitions if BOOT_FROM_FAT
is defined. (Only set for bootxx_msdos).
+ Remove "dummy" partition 3; if people want to installboot(8)
these to the start of the disk they can use fdisk(8) to
create a real MBR partition table...
+ Compile with TERSE_ERROR so it fits because of the above.
Whilst this is less user friendly, I feel it's important
to have a valid partition table and BPB in the MBR/PBR.
* Renamed /usr/mdec/biosboot to /usr/mdec/boot, to be consistent
with other platforms.
* Enable SUPPORT_DOSFS in /usr/mdec/boot (stage2), so that
we can boot off FAT partitions.
* Crank version of /usr/mdec/boot to 3.1, and fix some of the other
entries in the version file.
installboot(8) (i386):
* Read the existing MBR of the filesystem and retain the BIOS
Parameter Block (BPB) in bytes 11..89 and the MBR partition
table in bytes 446..509. (Previously installboot(8) would
trash those two sections of the MBR.)
mbrlabel(8):
* Use sys/lib/libkern/xlat_mbr_fstype.c instead of homegrown code
to map the MBR partition type to the NetBSD disklabel type.
Test built "make release" for i386, and new bootblocks verified to work
(even off FAT!).
2003-10-08 08:25:43 +04:00
|
|
|
|
|
|
|
/*
|
2004-03-15 02:05:47 +03:00
|
|
|
* Fill in any user-specified options into the
|
2004-08-16 02:00:12 +04:00
|
|
|
* struct x86_boot_params
|
2007-01-06 13:21:24 +03:00
|
|
|
* that follows the magic number.
|
2004-03-15 02:05:47 +03:00
|
|
|
* See sys/arch/i386/stand/bootxx/bootxx.S for more information.
|
Overhaul MBR handling (part 1):
<sys/bootblock.h>:
* Added definitions for the Master Boot Record (MBR) used by
a variety of systems (primarily i386), including the format
of the BIOS Parameter Block (BPB).
This information was cribbed from a variety of sources
including <sys/disklabel_mbr.h> which this is a superset of.
As part of this, some data structure elements and #defines
were renamed to be more "namespace friendly" and consistent
with other bootblocks and MBR documentation.
Update all uses of the old names to the new names.
<sys/disklabel_mbr.h>:
* Deprecated in favor of <sys/bootblock.h> (the latter is more
"host tool" friendly).
amd64 & i386:
* Renamed /usr/mdec/bootxx_dosfs to /usr/mdec/bootxx_msdos, to
be consistent with the naming convention of the msdosfs tools.
* Removed /usr/mdec/bootxx_ufs, as it's equivalent to bootxx_ffsv1
and it's confusing to have two functionally equivalent bootblocks,
especially given that "ufs" has multiple meanings (it could be
a synonym for "ffs", or the group of ffs/lfs/ext2fs file systems).
* Rework pbr.S (the first sector of bootxx_*):
+ Ensure that BPB (bytes 11..89) and the partition table
(bytes 446..509) do not contain code.
+ Add support for booting from FAT partitions if BOOT_FROM_FAT
is defined. (Only set for bootxx_msdos).
+ Remove "dummy" partition 3; if people want to installboot(8)
these to the start of the disk they can use fdisk(8) to
create a real MBR partition table...
+ Compile with TERSE_ERROR so it fits because of the above.
Whilst this is less user friendly, I feel it's important
to have a valid partition table and BPB in the MBR/PBR.
* Renamed /usr/mdec/biosboot to /usr/mdec/boot, to be consistent
with other platforms.
* Enable SUPPORT_DOSFS in /usr/mdec/boot (stage2), so that
we can boot off FAT partitions.
* Crank version of /usr/mdec/boot to 3.1, and fix some of the other
entries in the version file.
installboot(8) (i386):
* Read the existing MBR of the filesystem and retain the BIOS
Parameter Block (BPB) in bytes 11..89 and the MBR partition
table in bytes 446..509. (Previously installboot(8) would
trash those two sections of the MBR.)
mbrlabel(8):
* Use sys/lib/libkern/xlat_mbr_fstype.c instead of homegrown code
to map the MBR partition type to the NetBSD disklabel type.
Test built "make release" for i386, and new bootblocks verified to work
(even off FAT!).
2003-10-08 08:25:43 +04:00
|
|
|
*/
|
2007-01-06 13:21:24 +03:00
|
|
|
if (update_i386_boot_params(params, (void *)(magic + 1)))
|
|
|
|
return 0;
|
2003-04-10 02:14:27 +04:00
|
|
|
|
|
|
|
if (params->flags & IB_NOWRITE) {
|
2007-01-06 13:21:24 +03:00
|
|
|
return 1;
|
2003-04-10 02:14:27 +04:00
|
|
|
}
|
|
|
|
|
2007-01-06 13:21:24 +03:00
|
|
|
/* Copy new bootstrap data into disk buffer, ignoring label area */
|
|
|
|
memcpy(&disk_buf, &bootstrap, 512);
|
|
|
|
if (params->s1stat.st_size > 512 * 2) {
|
|
|
|
memcpy(disk_buf.b + 2 * 512, bootstrap.b + 2 * 512,
|
|
|
|
params->s1stat.st_size - 2 * 512);
|
|
|
|
/* Zero pad to 512 byte sector boundary */
|
|
|
|
memset(disk_buf.b + params->s1stat.st_size, 0,
|
|
|
|
(8192 - params->s1stat.st_size) & 511);
|
2003-04-10 02:14:27 +04:00
|
|
|
}
|
|
|
|
|
2011-08-14 21:50:16 +04:00
|
|
|
return write_boot_area(params, disk_buf.b, sizeof disk_buf.b);
|
2003-04-10 02:14:27 +04:00
|
|
|
}
|
2005-11-12 00:09:50 +03:00
|
|
|
|
2006-02-18 13:08:07 +03:00
|
|
|
static int
|
2005-11-12 00:09:50 +03:00
|
|
|
i386_editboot(ib_params *params)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
uint8_t buf[512];
|
|
|
|
ssize_t rv;
|
|
|
|
uint32_t magic;
|
|
|
|
uint32_t offset;
|
|
|
|
struct x86_boot_params *bpp;
|
|
|
|
|
|
|
|
assert(params != NULL);
|
|
|
|
assert(params->fsfd != -1);
|
|
|
|
assert(params->filesystem != NULL);
|
|
|
|
|
|
|
|
retval = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read in the existing bootstrap.
|
2006-01-31 00:15:37 +03:00
|
|
|
* Look in any of the first 4 sectors.
|
2005-11-12 00:09:50 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
bpp = NULL;
|
|
|
|
for (offset = 0; offset < 4 * 512; offset += 512) {
|
|
|
|
rv = pread(params->fsfd, &buf, sizeof buf, offset);
|
|
|
|
if (rv == -1) {
|
|
|
|
warn("Reading `%s'", params->filesystem);
|
|
|
|
goto done;
|
|
|
|
} else if (rv != sizeof buf) {
|
|
|
|
warnx("Reading `%s': short read", params->filesystem);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2006-01-31 00:15:37 +03:00
|
|
|
/* Magic number is 4 bytes in (to allow for a jmps) */
|
|
|
|
/* Also allow any of the magic numbers. */
|
|
|
|
magic = le32toh(*(uint32_t *)(buf + 4)) | 0xf;
|
|
|
|
if (magic != (X86_BOOT_MAGIC_1 | 0xf))
|
2005-11-12 00:09:50 +03:00
|
|
|
continue;
|
2006-01-31 00:15:37 +03:00
|
|
|
|
|
|
|
/* The parameters are just after the magic number */
|
2005-11-12 00:09:50 +03:00
|
|
|
bpp = (void *)(buf + 8);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (bpp == NULL) {
|
2006-01-31 00:15:37 +03:00
|
|
|
warnx("Invalid magic in existing bootstrap");
|
2005-11-12 00:09:50 +03:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fill in any user-specified options into the
|
|
|
|
* struct x86_boot_params
|
|
|
|
* that's 8 bytes in from the start of the third sector.
|
|
|
|
* See sys/arch/i386/stand/bootxx/bootxx.S for more information.
|
|
|
|
*/
|
|
|
|
if (update_i386_boot_params(params, bpp))
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
if (params->flags & IB_NOWRITE) {
|
|
|
|
retval = 1;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write boot code back
|
|
|
|
*/
|
|
|
|
rv = pwrite(params->fsfd, buf, sizeof buf, offset);
|
|
|
|
if (rv == -1) {
|
|
|
|
warn("Writing `%s'", params->filesystem);
|
|
|
|
goto done;
|
|
|
|
} else if (rv != sizeof buf) {
|
2011-08-14 21:50:16 +04:00
|
|
|
warnx("Writing `%s': short write, %zd bytes (should be %zu)",
|
|
|
|
params->filesystem, rv, sizeof(buf));
|
2005-11-12 00:09:50 +03:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = 1;
|
|
|
|
|
|
|
|
done:
|
|
|
|
return retval;
|
|
|
|
}
|