Home | History | Annotate | Line # | Download | only in arch
i386.c revision 1.30.8.1
      1  1.30.8.1       jym /* $NetBSD: i386.c,v 1.30.8.1 2009/05/13 19:20:24 jym Exp $ */
      2       1.1       dsl 
      3       1.1       dsl /*-
      4       1.1       dsl  * Copyright (c) 2003 The NetBSD Foundation, Inc.
      5       1.1       dsl  * All rights reserved.
      6       1.1       dsl  *
      7       1.1       dsl  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1       dsl  * by David Laight.
      9       1.1       dsl  *
     10       1.1       dsl  * Redistribution and use in source and binary forms, with or without
     11       1.1       dsl  * modification, are permitted provided that the following conditions
     12       1.1       dsl  * are met:
     13       1.1       dsl  * 1. Redistributions of source code must retain the above copyright
     14       1.1       dsl  *    notice, this list of conditions and the following disclaimer.
     15       1.1       dsl  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1       dsl  *    notice, this list of conditions and the following disclaimer in the
     17       1.1       dsl  *    documentation and/or other materials provided with the distribution.
     18       1.1       dsl  *
     19       1.1       dsl  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.1       dsl  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.1       dsl  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.1       dsl  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.1       dsl  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.1       dsl  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.1       dsl  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.1       dsl  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.1       dsl  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.1       dsl  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.1       dsl  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1       dsl  */
     31       1.1       dsl 
     32      1.12     lukem #if HAVE_NBTOOL_CONFIG_H
     33      1.12     lukem #include "nbtool_config.h"
     34      1.12     lukem #endif
     35      1.12     lukem 
     36       1.1       dsl #include <sys/cdefs.h>
     37      1.12     lukem #if !defined(__lint)
     38  1.30.8.1       jym __RCSID("$NetBSD: i386.c,v 1.30.8.1 2009/05/13 19:20:24 jym Exp $");
     39      1.13     lukem #endif /* !__lint */
     40       1.1       dsl 
     41       1.1       dsl #include <sys/param.h>
     42      1.23       dsl #ifndef HAVE_NBTOOL_CONFIG_H
     43      1.23       dsl #include <sys/ioctl.h>
     44      1.23       dsl #include <sys/dkio.h>
     45      1.23       dsl #endif
     46       1.1       dsl 
     47       1.1       dsl #include <assert.h>
     48      1.23       dsl #include <errno.h>
     49       1.1       dsl #include <err.h>
     50       1.5     bjh21 #include <md5.h>
     51       1.1       dsl #include <stddef.h>
     52       1.1       dsl #include <stdio.h>
     53       1.1       dsl #include <stdlib.h>
     54       1.1       dsl #include <string.h>
     55       1.1       dsl #include <unistd.h>
     56       1.1       dsl 
     57       1.1       dsl #include "installboot.h"
     58       1.1       dsl 
     59      1.19       dsl #define nelem(x) (sizeof (x)/sizeof *(x))
     60      1.19       dsl 
     61      1.26  christos static const struct console_name {
     62      1.26  christos 	const char	*name;		/* Name of console selection */
     63      1.26  christos 	const int	dev;		/* value matching CONSDEV_* from sys/arch/i386/stand/lib/libi386.h */
     64      1.26  christos } consoles[] = {
     65      1.26  christos 	{ "pc",		0 /* CONSDEV_PC */ },
     66      1.26  christos 	{ "com0",	1 /* CONSDEV_COM0 */ },
     67      1.26  christos 	{ "com1",	2 /* CONSDEV_COM1 */ },
     68      1.26  christos 	{ "com2",	3 /* CONSDEV_COM2 */ },
     69      1.26  christos 	{ "com3",	4 /* CONSDEV_COM3 */ },
     70      1.26  christos 	{ "com0kbd",	5 /* CONSDEV_COM0KBD */ },
     71      1.26  christos 	{ "com1kbd",	6 /* CONSDEV_COM1KBD */ },
     72      1.26  christos 	{ "com2kbd",	7 /* CONSDEV_COM2KBD */ },
     73      1.26  christos 	{ "com3kbd",	8 /* CONSDEV_COM3KBD */ },
     74      1.26  christos 	{ "auto",	-1 /* CONSDEV_AUTO */ },
     75      1.26  christos };
     76      1.19       dsl 
     77      1.22       dsl static int i386_setboot(ib_params *);
     78      1.22       dsl static int i386_editboot(ib_params *);
     79      1.22       dsl 
     80      1.22       dsl struct ib_mach ib_mach_i386 =
     81      1.22       dsl 	{ "i386", i386_setboot, no_clearboot, i386_editboot,
     82      1.22       dsl 		IB_RESETVIDEO | IB_CONSOLE | IB_CONSPEED | IB_CONSADDR |
     83      1.22       dsl 		IB_KEYMAP | IB_PASSWORD | IB_TIMEOUT };
     84      1.22       dsl 
     85      1.22       dsl struct ib_mach ib_mach_amd64 =
     86      1.22       dsl 	{ "amd64", i386_setboot, no_clearboot, i386_editboot,
     87      1.22       dsl 		IB_RESETVIDEO | IB_CONSOLE | IB_CONSPEED | IB_CONSADDR |
     88      1.22       dsl 		IB_KEYMAP | IB_PASSWORD | IB_TIMEOUT };
     89      1.22       dsl 
     90      1.23       dsl /*
     91      1.23       dsl  * Attempting to write the 'labelsector' (or a sector near it - within 8k?)
     92      1.23       dsl  * using the non-raw disk device fails silently.  This can be detected (today)
     93      1.23       dsl  * by doing a fsync() and a read back.
     94      1.23       dsl  * This is very likely to affect installboot, indeed the code may need to
     95      1.23       dsl  * be written into the 'labelsector' itself - especially on non-512 byte media.
     96      1.23       dsl  * We do all writes with a read verify.
     97      1.23       dsl  * If EROFS is returned we also try to enable writes to the label sector.
     98      1.23       dsl  * (Maybe these functions should be in the generic part of installboot.)
     99      1.23       dsl  */
    100      1.23       dsl static int
    101      1.23       dsl pwrite_validate(int fd, const void *buf, size_t n_bytes, off_t offset)
    102      1.23       dsl {
    103      1.23       dsl 	void *r_buf;
    104      1.23       dsl 	ssize_t rv;
    105      1.23       dsl 
    106      1.23       dsl 	r_buf = malloc(n_bytes);
    107      1.23       dsl 	if (r_buf == NULL)
    108      1.23       dsl 		return -1;
    109      1.23       dsl 	rv = pwrite(fd, buf, n_bytes, offset);
    110      1.23       dsl 	if (rv == -1) {
    111      1.23       dsl 		free(r_buf);
    112      1.23       dsl 		return -1;
    113      1.23       dsl 	}
    114      1.23       dsl 	fsync(fd);
    115  1.30.8.1       jym 	if (pread(fd, r_buf, rv, offset) == rv && memcmp(r_buf, buf, rv) == 0) {
    116  1.30.8.1       jym 		free(r_buf);
    117      1.23       dsl 		return rv;
    118  1.30.8.1       jym 	}
    119  1.30.8.1       jym 	free(r_buf);
    120      1.23       dsl 	errno = EROFS;
    121      1.23       dsl 	return -1;
    122      1.23       dsl }
    123      1.23       dsl 
    124      1.23       dsl static int
    125      1.23       dsl write_boot_area(ib_params *params, void *v_buf, int len)
    126      1.23       dsl {
    127      1.23       dsl 	int rv, i;
    128      1.23       dsl 	uint8_t *buf = v_buf;
    129      1.23       dsl 
    130      1.23       dsl 	/*
    131      1.23       dsl 	 * Writing the 'label' sector (likely to be bytes 512-1023) could
    132      1.23       dsl 	 * fail, so we try to avoid writing that area.
    133      1.23       dsl 	 * Unfortunately, if we are accessing the raw disk, and the sector
    134      1.23       dsl 	 * size is larger than 512 bytes that is also doomed.
    135      1.23       dsl 	 * See how we get on....
    136      1.23       dsl 	 *
    137      1.23       dsl 	 * NB: Even if the physical sector size is not 512, the space for
    138      1.23       dsl 	 * the label is 512 bytes from the start of the disk.
    139      1.23       dsl 	 * So all the '512' constants in these functions are correct.
    140      1.23       dsl 	 */
    141      1.23       dsl 
    142      1.23       dsl 	/* Write out first 512 bytes - the pbr code */
    143      1.23       dsl 	rv = pwrite_validate(params->fsfd, buf, 512, 0);
    144      1.23       dsl 	if (rv == 512) {
    145      1.23       dsl 		/* That worked, do the rest */
    146      1.23       dsl 		if (len == 512)
    147      1.23       dsl 			return 1;
    148      1.23       dsl 		len -= 512 * 2;
    149      1.23       dsl 		rv = pwrite_validate(params->fsfd, buf + 512 * 2, len, 512 * 2);
    150      1.23       dsl 		if (rv != len)
    151      1.23       dsl 			goto bad_write;
    152      1.23       dsl 		return 1;
    153      1.23       dsl 	}
    154      1.23       dsl 	if (rv != -1 || (errno != EINVAL && errno != EROFS))
    155      1.23       dsl 		goto bad_write;
    156      1.23       dsl 
    157      1.23       dsl 	if (errno == EINVAL) {
    158      1.23       dsl 		/* Assume the failure was due to to the sector size > 512 */
    159      1.23       dsl 		rv = pwrite_validate(params->fsfd, buf, len, 0);
    160      1.23       dsl 		if (rv == len)
    161      1.23       dsl 			return 1;
    162      1.23       dsl 		if (rv != -1 || (errno != EROFS))
    163      1.23       dsl 			goto bad_write;
    164      1.23       dsl 	}
    165      1.23       dsl 
    166      1.23       dsl #ifdef DIOCWLABEL
    167      1.23       dsl 	/* Pesky label is protected, try to unprotect it */
    168      1.23       dsl 	i = 1;
    169      1.23       dsl 	rv = ioctl(params->fsfd, DIOCWLABEL, &i);
    170      1.23       dsl 	if (rv != 0) {
    171      1.23       dsl 		warn("Cannot enable writes to the label sector");
    172      1.23       dsl 		return 0;
    173      1.23       dsl 	}
    174      1.23       dsl 	/* Try again with label write-enabled */
    175      1.23       dsl 	rv = pwrite_validate(params->fsfd, buf, len, 0);
    176      1.23       dsl 
    177      1.23       dsl 	/* Reset write-protext */
    178      1.23       dsl 	i = 0;
    179      1.23       dsl 	ioctl(params->fsfd, DIOCWLABEL, &i);
    180      1.23       dsl 	if (rv == len)
    181      1.23       dsl 		return 1;
    182      1.23       dsl #endif
    183      1.23       dsl 
    184      1.23       dsl   bad_write:
    185      1.23       dsl 	if (rv == -1)
    186      1.23       dsl 		warn("Writing `%s'", params->filesystem);
    187      1.23       dsl 	else
    188      1.23       dsl 		warnx("Writing `%s': short write, %u bytes",
    189      1.23       dsl 			params->filesystem, rv);
    190      1.23       dsl 	return 0;
    191      1.23       dsl }
    192      1.23       dsl 
    193      1.19       dsl static void
    194      1.19       dsl show_i386_boot_params(struct x86_boot_params  *bpp)
    195      1.19       dsl {
    196      1.26  christos 	size_t i;
    197      1.19       dsl 
    198      1.19       dsl 	printf("Boot options:        ");
    199      1.19       dsl 	printf("timeout %d, ", le32toh(bpp->bp_timeout));
    200      1.19       dsl 	printf("flags %x, ", le32toh(bpp->bp_flags));
    201      1.19       dsl 	printf("speed %d, ", le32toh(bpp->bp_conspeed));
    202      1.19       dsl 	printf("ioaddr %x, ", le32toh(bpp->bp_consaddr));
    203      1.28  christos 	for (i = 0; i < nelem(consoles); i++) {
    204  1.30.8.1       jym 		if (consoles[i].dev == (int)le32toh(bpp->bp_consdev))
    205      1.26  christos 			break;
    206      1.26  christos 	}
    207      1.28  christos 	if (i == nelem(consoles))
    208      1.26  christos 		printf("console %d\n", le32toh(bpp->bp_consdev));
    209      1.19       dsl 	else
    210      1.26  christos 		printf("console %s\n", consoles[i].name);
    211      1.19       dsl 	if (bpp->bp_keymap[0])
    212      1.19       dsl 		printf("                     keymap %s\n", bpp->bp_keymap);
    213      1.19       dsl }
    214      1.19       dsl 
    215      1.19       dsl static int
    216      1.23       dsl is_zero(const uint8_t *p, unsigned int len)
    217      1.23       dsl {
    218      1.23       dsl 	return len == 0 || (p[0] == 0 && memcmp(p, p + 1, len - 1) == 0);
    219      1.23       dsl }
    220      1.23       dsl 
    221      1.23       dsl static int
    222      1.19       dsl update_i386_boot_params(ib_params *params, struct x86_boot_params  *bpp)
    223      1.19       dsl {
    224      1.19       dsl 	struct x86_boot_params bp;
    225  1.30.8.1       jym 	uint32_t bplen;
    226      1.26  christos 	size_t i;
    227      1.19       dsl 
    228      1.19       dsl 	bplen = le32toh(bpp->bp_length);
    229      1.19       dsl 	if (bplen > sizeof bp)
    230      1.19       dsl 		/* Ignore pad space in bootxx */
    231      1.19       dsl 		bplen = sizeof bp;
    232      1.19       dsl 
    233      1.19       dsl 	/* Take (and update) local copy so we handle size mismatches */
    234      1.19       dsl 	memset(&bp, 0, sizeof bp);
    235      1.19       dsl 	memcpy(&bp, bpp, bplen);
    236      1.19       dsl 
    237      1.19       dsl 	if (params->flags & IB_TIMEOUT)
    238      1.19       dsl 		bp.bp_timeout = htole32(params->timeout);
    239      1.19       dsl 	if (params->flags & IB_RESETVIDEO)
    240      1.19       dsl 		bp.bp_flags ^= htole32(X86_BP_FLAGS_RESET_VIDEO);
    241      1.19       dsl 	if (params->flags & IB_CONSPEED)
    242      1.19       dsl 		bp.bp_conspeed = htole32(params->conspeed);
    243      1.19       dsl 	if (params->flags & IB_CONSADDR)
    244      1.19       dsl 		bp.bp_consaddr = htole32(params->consaddr);
    245      1.19       dsl 	if (params->flags & IB_CONSOLE) {
    246      1.28  christos 		for (i = 0; i < nelem(consoles); i++)
    247      1.26  christos 			if (strcmp(consoles[i].name, params->console) == 0)
    248      1.19       dsl 				break;
    249      1.26  christos 
    250      1.28  christos 		if (i == nelem(consoles)) {
    251      1.26  christos 			warnx("invalid console name, valid names are:");
    252      1.26  christos 			(void)fprintf(stderr, "\t%s", consoles[0].name);
    253      1.26  christos 			for (i = 1; consoles[i].name != NULL; i++)
    254      1.26  christos 				(void)fprintf(stderr, ", %s", consoles[i].name);
    255      1.26  christos 			(void)fprintf(stderr, "\n");
    256      1.26  christos 			return 1;
    257      1.19       dsl 		}
    258      1.26  christos 		bp.bp_consdev = htole32(consoles[i].dev);
    259      1.19       dsl 	}
    260      1.19       dsl 	if (params->flags & IB_PASSWORD) {
    261      1.19       dsl 		if (params->password[0]) {
    262      1.19       dsl 			MD5_CTX md5ctx;
    263      1.19       dsl 			MD5Init(&md5ctx);
    264      1.19       dsl 			MD5Update(&md5ctx, params->password,
    265      1.19       dsl 			    strlen(params->password));
    266      1.19       dsl 			MD5Final(bp.bp_password, &md5ctx);
    267      1.19       dsl 			bp.bp_flags |= htole32(X86_BP_FLAGS_PASSWORD);
    268      1.19       dsl 		} else {
    269      1.19       dsl 			memset(&bp.bp_password, 0, sizeof bp.bp_password);
    270      1.19       dsl 			bp.bp_flags &= ~htole32(X86_BP_FLAGS_PASSWORD);
    271      1.19       dsl 		}
    272      1.19       dsl 	}
    273      1.19       dsl 	if (params->flags & IB_KEYMAP)
    274      1.19       dsl 		strlcpy(bp.bp_keymap, params->keymap, sizeof bp.bp_keymap);
    275      1.19       dsl 
    276      1.19       dsl 	if (params->flags & (IB_NOWRITE | IB_VERBOSE))
    277      1.19       dsl 		show_i386_boot_params(&bp);
    278      1.19       dsl 
    279      1.19       dsl 	/* Check we aren't trying to set anything we can't save */
    280      1.23       dsl 	if (!is_zero((char *)&bp + bplen, sizeof bp - bplen)) {
    281      1.19       dsl 		warnx("Patch area in stage1 bootstrap is too small");
    282      1.19       dsl 		return 1;
    283      1.19       dsl 	}
    284      1.19       dsl 	memcpy(bpp, &bp, bplen);
    285      1.19       dsl 	return 0;
    286      1.19       dsl }
    287      1.19       dsl 
    288      1.22       dsl static int
    289       1.1       dsl i386_setboot(ib_params *params)
    290       1.1       dsl {
    291      1.23       dsl 	unsigned int	u;
    292       1.1       dsl 	ssize_t		rv;
    293      1.23       dsl 	uint32_t	*magic, expected_magic;
    294      1.23       dsl 	union {
    295      1.23       dsl 	    struct mbr_sector	mbr;
    296      1.23       dsl 	    uint8_t		b[8192];
    297      1.23       dsl 	} disk_buf, bootstrap;
    298       1.1       dsl 
    299       1.1       dsl 	assert(params != NULL);
    300       1.1       dsl 	assert(params->fsfd != -1);
    301       1.1       dsl 	assert(params->filesystem != NULL);
    302       1.1       dsl 	assert(params->s1fd != -1);
    303       1.1       dsl 	assert(params->stage1 != NULL);
    304       1.1       dsl 
    305       1.2       dsl 	/*
    306  1.30.8.1       jym 	 * There is only 8k of space in a FFSv1 partition (and ustarfs)
    307       1.2       dsl 	 * so ensure we don't splat over anything important.
    308       1.2       dsl 	 */
    309  1.30.8.1       jym 	if (params->s1stat.st_size > (off_t)(sizeof bootstrap)) {
    310      1.23       dsl 		warnx("stage1 bootstrap `%s' (%u bytes) is larger than 8192 bytes",
    311      1.23       dsl 			params->stage1, (unsigned int)params->s1stat.st_size);
    312      1.23       dsl 		return 0;
    313      1.23       dsl 	}
    314      1.23       dsl 	if (params->s1stat.st_size < 3 * 512 && params->s1stat.st_size != 512) {
    315      1.23       dsl 		warnx("stage1 bootstrap `%s' (%u bytes) is too small",
    316      1.23       dsl 			params->stage1, (unsigned int)params->s1stat.st_size);
    317      1.23       dsl 		return 0;
    318       1.9     lukem 	}
    319       1.9     lukem 
    320      1.23       dsl 	/* Read in the existing disk header and boot code */
    321      1.23       dsl 	rv = pread(params->fsfd, &disk_buf, sizeof (disk_buf), 0);
    322      1.24    dogcow 	if (rv != sizeof(disk_buf)) {
    323      1.23       dsl 		if (rv == -1)
    324      1.23       dsl 			warn("Reading `%s'", params->filesystem);
    325      1.23       dsl 		else
    326      1.24    dogcow 			warnx("Reading `%s': short read, %ld bytes"
    327      1.24    dogcow 			    " (should be %ld)", params->filesystem, (long)rv,
    328      1.24    dogcow 			    (long)sizeof(disk_buf));
    329      1.23       dsl 		return 0;
    330       1.1       dsl 	}
    331      1.23       dsl 
    332      1.23       dsl 	if (disk_buf.mbr.mbr_magic != le16toh(MBR_MAGIC)) {
    333       1.9     lukem 		if (params->flags & IB_VERBOSE) {
    334       1.9     lukem 			printf(
    335      1.23       dsl 		    "Ignoring PBR with invalid magic in sector 0 of `%s'\n",
    336       1.9     lukem 			    params->filesystem);
    337       1.9     lukem 		}
    338      1.23       dsl 		memset(&disk_buf, 0, 512);
    339       1.9     lukem 	}
    340       1.9     lukem 
    341      1.23       dsl 	/* Read the new bootstrap code. */
    342      1.23       dsl 	rv = pread(params->s1fd, &bootstrap, params->s1stat.st_size, 0);
    343      1.23       dsl 	if (rv != params->s1stat.st_size) {
    344      1.23       dsl 		if (rv == -1)
    345      1.23       dsl 			warn("Reading `%s'", params->stage1);
    346      1.23       dsl 		else
    347      1.24    dogcow 			warnx("Reading `%s': short read, %ld bytes"
    348      1.24    dogcow 			    " (should be %ld)", params->stage1, (long)rv,
    349      1.24    dogcow 			    (long)params->s1stat.st_size);
    350      1.23       dsl 		return 0;
    351       1.1       dsl 	}
    352       1.1       dsl 
    353       1.9     lukem 	/*
    354      1.23       dsl 	 * The bootstrap code is either 512 bytes for booting FAT16, or best
    355      1.23       dsl 	 * part of 8k (with bytes 512-1023 all zeros).
    356      1.23       dsl 	 */
    357      1.23       dsl 	if (params->s1stat.st_size == 512) {
    358      1.23       dsl 		/* Magic number is at end of pbr code */
    359      1.23       dsl 		magic = (void *)(bootstrap.b + 512 - 16 + 4);
    360      1.23       dsl 		expected_magic = htole32(X86_BOOT_MAGIC_FAT);
    361      1.23       dsl 	} else {
    362      1.23       dsl 		/* Magic number is at start of sector following label */
    363      1.23       dsl 		magic = (void *)(bootstrap.b + 512 * 2 + 4);
    364      1.23       dsl 		expected_magic = htole32(X86_BOOT_MAGIC_1);
    365      1.23       dsl 		/*
    366      1.23       dsl 		 * For a variety of reasons we restrict our 'normal' partition
    367      1.23       dsl 		 * boot code to a size which enable it to be used as mbr code.
    368      1.23       dsl 		 * IMHO this is bugus (dsl).
    369      1.23       dsl 		 */
    370      1.23       dsl 		if (!is_zero(bootstrap.b + 512-2-64, 64)) {
    371      1.23       dsl 			warnx("Data in mbr partition table of new bootstrap");
    372      1.23       dsl 			return 0;
    373      1.23       dsl 		}
    374      1.23       dsl 		if (!is_zero(bootstrap.b + 512, 512)) {
    375      1.23       dsl 			warnx("Data in label part of new bootstrap");
    376      1.23       dsl 			return 0;
    377      1.23       dsl 		}
    378      1.23       dsl 		/* Copy mbr table and label from existing disk buffer */
    379      1.23       dsl 		memcpy(bootstrap.b + 512-2-64, disk_buf.b + 512-2-64, 64);
    380      1.23       dsl 		memcpy(bootstrap.b + 512, disk_buf.b + 512, 512);
    381       1.1       dsl 	}
    382       1.1       dsl 
    383      1.23       dsl 	/* Validate the 'magic number' that marks the parameter block */
    384      1.23       dsl 	if (*magic != expected_magic) {
    385      1.20       dsl 		warnx("Invalid magic in stage1 bootstrap %x != %x",
    386      1.23       dsl 				*magic, expected_magic);
    387      1.23       dsl 		return 0;
    388       1.2       dsl 	}
    389       1.2       dsl 
    390       1.9     lukem 	/*
    391      1.25       dsl 	 * If the partion has a FAT (or NTFS) filesystem, then we must
    392      1.25       dsl 	 * preserve the BIOS Parameter Block (BPB).
    393      1.25       dsl 	 * It is also very likely that there isn't 8k of space available
    394      1.25       dsl 	 * for (say) bootxx_msdos, and that blindly installing it will trash
    395      1.25       dsl 	 * the FAT filesystem.
    396      1.25       dsl 	 * To avoid this we check the number of 'reserved' sectors to ensure
    397      1.25       dsl 	 * there there is enough space.
    398      1.25       dsl 	 * Unfortunately newfs(8) doesn't (yet) splat the BPB (which is
    399      1.25       dsl 	 * effectively the FAT superblock) when a filesystem is initailised
    400      1.25       dsl 	 * so this code tends to complain rather too often,
    401      1.25       dsl 	 * Specifying 'installboot -f' will delete the old BPB info.
    402      1.11     lukem 	 */
    403      1.25       dsl 	if (!(params->flags & IB_FORCE)) {
    404      1.29       dsl 		#define USE_F ", use -f (may invalidate filesystem)"
    405      1.25       dsl 		/*
    406      1.25       dsl 		 * For FAT compatibility, the pbr code starts 'jmp xx; nop'
    407      1.25       dsl 		 * followed by the BIOS Parameter Block (BPB).
    408      1.25       dsl 		 * The 2nd byte (jump offset) is the size of the nop + BPB.
    409      1.25       dsl 		 */
    410      1.25       dsl 		if (bootstrap.b[0] != 0xeb || bootstrap.b[2] != 0x90) {
    411      1.29       dsl 			warnx("No BPB in new bootstrap %02x:%02x:%02x" USE_F,
    412      1.25       dsl 				bootstrap.b[0], bootstrap.b[1], bootstrap.b[2]);
    413      1.23       dsl 			return 0;
    414      1.23       dsl 		}
    415      1.25       dsl 
    416      1.25       dsl 		/* Find size of old BPB, and copy into new bootcode */
    417      1.25       dsl 		if (!is_zero(disk_buf.b + 3 + 8, disk_buf.b[1] - 1 - 8)) {
    418      1.25       dsl 			struct mbr_bpbFAT16 *bpb = (void *)(disk_buf.b + 3 + 8);
    419      1.25       dsl 			/* Check enough space before the FAT for the bootcode */
    420      1.25       dsl 			u = le16toh(bpb->bpbBytesPerSec)
    421      1.25       dsl 			    * le16toh(bpb->bpbResSectors);
    422      1.25       dsl 			if (u != 0 && u < params->s1stat.st_size) {
    423      1.29       dsl 				warnx("Insufficient reserved space before FAT "
    424      1.29       dsl 					"(%u bytes available)" USE_F, u);
    425      1.25       dsl 				return 0;
    426      1.23       dsl 			}
    427      1.25       dsl 			/* Check we have enough space for the old bpb */
    428      1.25       dsl 			if (disk_buf.b[1] > bootstrap.b[1]) {
    429      1.25       dsl 				/* old BPB is larger, allow if extra zeros */
    430      1.25       dsl 				if (!is_zero(disk_buf.b + 2 + bootstrap.b[1],
    431      1.25       dsl 				    disk_buf.b[1] - bootstrap.b[1])) {
    432      1.29       dsl 					warnx("Old BPB too big" USE_F);
    433      1.25       dsl 					    return 0;
    434      1.25       dsl 				}
    435      1.25       dsl 				u = bootstrap.b[1];
    436      1.25       dsl 			} else {
    437      1.25       dsl 				/* Old BPB is shorter, leave zero filled */
    438      1.25       dsl 				u = disk_buf.b[1];
    439      1.25       dsl 			}
    440      1.25       dsl 			memcpy(bootstrap.b + 2, disk_buf.b + 2, u);
    441       1.9     lukem 		}
    442      1.29       dsl 		#undef USE_F
    443       1.9     lukem 	}
    444       1.9     lukem 
    445       1.9     lukem 	/*
    446      1.15     lukem 	 * Fill in any user-specified options into the
    447      1.17       dsl 	 *      struct x86_boot_params
    448      1.23       dsl 	 * that follows the magic number.
    449      1.15     lukem 	 * See sys/arch/i386/stand/bootxx/bootxx.S for more information.
    450       1.9     lukem 	 */
    451      1.23       dsl 	if (update_i386_boot_params(params, (void *)(magic + 1)))
    452      1.23       dsl 		return 0;
    453       1.1       dsl 
    454       1.1       dsl 	if (params->flags & IB_NOWRITE) {
    455      1.23       dsl 		return 1;
    456       1.1       dsl 	}
    457       1.1       dsl 
    458      1.23       dsl 	/* Copy new bootstrap data into disk buffer, ignoring label area */
    459      1.23       dsl 	memcpy(&disk_buf, &bootstrap, 512);
    460      1.23       dsl 	if (params->s1stat.st_size > 512 * 2) {
    461      1.23       dsl 		memcpy(disk_buf.b + 2 * 512, bootstrap.b + 2 * 512,
    462      1.23       dsl 		    params->s1stat.st_size - 2 * 512);
    463      1.23       dsl 		/* Zero pad to 512 byte sector boundary */
    464      1.23       dsl 		memset(disk_buf.b + params->s1stat.st_size, 0,
    465      1.23       dsl 			(8192 - params->s1stat.st_size) & 511);
    466       1.1       dsl 	}
    467       1.1       dsl 
    468      1.23       dsl 	return write_boot_area(params, &disk_buf, sizeof disk_buf);
    469       1.1       dsl }
    470      1.19       dsl 
    471      1.22       dsl static int
    472      1.19       dsl i386_editboot(ib_params *params)
    473      1.19       dsl {
    474      1.19       dsl 	int		retval;
    475      1.19       dsl 	uint8_t		buf[512];
    476      1.19       dsl 	ssize_t		rv;
    477      1.19       dsl 	uint32_t	magic;
    478      1.19       dsl 	uint32_t	offset;
    479      1.19       dsl 	struct x86_boot_params	*bpp;
    480      1.19       dsl 
    481      1.19       dsl 	assert(params != NULL);
    482      1.19       dsl 	assert(params->fsfd != -1);
    483      1.19       dsl 	assert(params->filesystem != NULL);
    484      1.19       dsl 
    485      1.19       dsl 	retval = 0;
    486      1.19       dsl 
    487      1.19       dsl 	/*
    488      1.19       dsl 	 * Read in the existing bootstrap.
    489      1.21       dsl 	 * Look in any of the first 4 sectors.
    490      1.19       dsl 	 */
    491      1.19       dsl 
    492      1.19       dsl 	bpp = NULL;
    493      1.19       dsl 	for (offset = 0; offset < 4 * 512; offset += 512) {
    494      1.19       dsl 		rv = pread(params->fsfd, &buf, sizeof buf, offset);
    495      1.19       dsl 		if (rv == -1) {
    496      1.19       dsl 			warn("Reading `%s'", params->filesystem);
    497      1.19       dsl 			goto done;
    498      1.19       dsl 		} else if (rv != sizeof buf) {
    499      1.19       dsl 			warnx("Reading `%s': short read", params->filesystem);
    500      1.19       dsl 			goto done;
    501      1.19       dsl 		}
    502      1.19       dsl 
    503      1.21       dsl 		/* Magic number is 4 bytes in (to allow for a jmps) */
    504      1.21       dsl 		/* Also allow any of the magic numbers. */
    505      1.21       dsl 		magic = le32toh(*(uint32_t *)(buf + 4)) | 0xf;
    506      1.21       dsl 		if (magic != (X86_BOOT_MAGIC_1 | 0xf))
    507      1.19       dsl 			continue;
    508      1.21       dsl 
    509      1.21       dsl 		/* The parameters are just after the magic number */
    510      1.19       dsl 		bpp = (void *)(buf + 8);
    511      1.19       dsl 		break;
    512      1.19       dsl 	}
    513      1.19       dsl 	if (bpp == NULL) {
    514      1.21       dsl 		warnx("Invalid magic in existing bootstrap");
    515      1.19       dsl 		goto done;
    516      1.19       dsl 	}
    517      1.19       dsl 
    518      1.19       dsl 	/*
    519      1.19       dsl 	 * Fill in any user-specified options into the
    520      1.19       dsl 	 *      struct x86_boot_params
    521      1.19       dsl 	 * that's 8 bytes in from the start of the third sector.
    522      1.19       dsl 	 * See sys/arch/i386/stand/bootxx/bootxx.S for more information.
    523      1.19       dsl 	 */
    524      1.19       dsl 	if (update_i386_boot_params(params, bpp))
    525      1.19       dsl 		goto done;
    526      1.19       dsl 
    527      1.19       dsl 	if (params->flags & IB_NOWRITE) {
    528      1.19       dsl 		retval = 1;
    529      1.19       dsl 		goto done;
    530      1.19       dsl 	}
    531      1.19       dsl 
    532      1.19       dsl 	/*
    533      1.19       dsl 	 * Write boot code back
    534      1.19       dsl 	 */
    535      1.19       dsl 	rv = pwrite(params->fsfd, buf, sizeof buf, offset);
    536      1.19       dsl 	if (rv == -1) {
    537      1.19       dsl 		warn("Writing `%s'", params->filesystem);
    538      1.19       dsl 		goto done;
    539      1.19       dsl 	} else if (rv != sizeof buf) {
    540      1.24    dogcow 		warnx("Writing `%s': short write, %ld bytes (should be %ld)",
    541      1.24    dogcow 		    params->filesystem, (long)rv, (long)sizeof(buf));
    542      1.19       dsl 		goto done;
    543      1.19       dsl 	}
    544      1.19       dsl 
    545      1.19       dsl 	retval = 1;
    546      1.19       dsl 
    547      1.19       dsl  done:
    548      1.19       dsl 	return retval;
    549      1.19       dsl }
    550