Home | History | Annotate | Line # | Download | only in i386
md.c revision 1.20.2.2
      1  1.20.2.2   msaitoh /*	$NetBSD: md.c,v 1.20.2.2 2019/11/17 13:45:26 msaitoh Exp $ */
      2       1.1  dholland 
      3       1.1  dholland /*
      4       1.1  dholland  * Copyright 1997 Piermont Information Systems Inc.
      5       1.1  dholland  * All rights reserved.
      6       1.1  dholland  *
      7       1.1  dholland  * Based on code written by Philip A. Nelson for Piermont Information
      8       1.1  dholland  * Systems Inc.
      9       1.1  dholland  *
     10       1.1  dholland  * Redistribution and use in source and binary forms, with or without
     11       1.1  dholland  * modification, are permitted provided that the following conditions
     12       1.1  dholland  * are met:
     13       1.1  dholland  * 1. Redistributions of source code must retain the above copyright
     14       1.1  dholland  *    notice, this list of conditions and the following disclaimer.
     15       1.1  dholland  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1  dholland  *    notice, this list of conditions and the following disclaimer in the
     17       1.1  dholland  *    documentation and/or other materials provided with the distribution.
     18       1.1  dholland  * 3. The name of Piermont Information Systems Inc. may not be used to endorse
     19       1.1  dholland  *    or promote products derived from this software without specific prior
     20       1.1  dholland  *    written permission.
     21       1.1  dholland  *
     22       1.1  dholland  * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
     23       1.1  dholland  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24       1.1  dholland  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25       1.1  dholland  * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
     26       1.1  dholland  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     27       1.1  dholland  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     28       1.1  dholland  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     29       1.1  dholland  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     30       1.1  dholland  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     31       1.1  dholland  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     32       1.1  dholland  * THE POSSIBILITY OF SUCH DAMAGE.
     33       1.1  dholland  */
     34       1.1  dholland 
     35       1.1  dholland /* md.c -- i386 machine specific routines - also used by amd64 */
     36       1.1  dholland 
     37       1.1  dholland #include <sys/param.h>
     38       1.1  dholland #include <sys/sysctl.h>
     39       1.1  dholland #include <sys/exec.h>
     40       1.1  dholland #include <sys/utsname.h>
     41       1.1  dholland #include <sys/types.h>
     42       1.1  dholland #include <sys/stat.h>
     43       1.1  dholland #include <machine/cpu.h>
     44      1.15    martin #include <assert.h>
     45       1.1  dholland #include <stdio.h>
     46       1.1  dholland #include <stddef.h>
     47       1.1  dholland #include <util.h>
     48       1.1  dholland #include <dirent.h>
     49       1.1  dholland #include <termios.h>
     50       1.1  dholland 
     51       1.1  dholland #include "defs.h"
     52       1.1  dholland #include "md.h"
     53       1.1  dholland #include "endian.h"
     54       1.1  dholland #include "msg_defs.h"
     55       1.1  dholland #include "menu_defs.h"
     56       1.1  dholland 
     57       1.1  dholland #ifdef NO_LBA_READS		/* for testing */
     58       1.1  dholland #undef BIFLAG_EXTINT13
     59       1.1  dholland #define BIFLAG_EXTINT13	0
     60       1.1  dholland #endif
     61       1.1  dholland 
     62       1.1  dholland static struct biosdisk_info *biosdisk = NULL;
     63      1.20    martin static bool uefi_boot;
     64       1.1  dholland 
     65       1.1  dholland /* prototypes */
     66       1.1  dholland 
     67      1.15    martin static bool get_bios_info(const char*, struct disk_partitions*, int*, int*, int*);
     68       1.1  dholland static int mbr_root_above_chs(void);
     69       1.1  dholland static int md_read_bootcode(const char *, struct mbr_sector *);
     70       1.1  dholland static unsigned int get_bootmodel(void);
     71       1.1  dholland 
     72      1.20    martin static int conmib[] = { CTL_MACHDEP, CPU_CONSDEV };
     73      1.20    martin 
     74      1.20    martin #define	BOOT_PART	(128*(MEG/512))
     75      1.20    martin #define	BOOT_PART_TYPE	PT_EFI_SYSTEM
     76      1.20    martin 
     77      1.20    martin static const char * uefi_bootloaders[] = {
     78      1.20    martin 	"/usr/mdec/bootia32.efi",
     79      1.20    martin 	"/usr/mdec/bootx64.efi",
     80      1.20    martin };
     81      1.13    martin 
     82       1.1  dholland void
     83       1.1  dholland md_init(void)
     84       1.1  dholland {
     85      1.20    martin 	char boot_method[100];
     86      1.20    martin 	size_t len;
     87      1.20    martin 
     88      1.20    martin 	len = sizeof(boot_method);
     89      1.20    martin 	if (sysctlbyname("machdep.bootmethod", boot_method, &len, NULL, 0)
     90      1.20    martin 	    != -1) {
     91      1.20    martin 		if (strcmp(boot_method, "BIOS") == 0)
     92      1.20    martin 			uefi_boot = false;
     93      1.20    martin 		else if (strcmp(boot_method, "UEFI") == 0)
     94      1.20    martin 			uefi_boot = true;
     95      1.20    martin 	}
     96       1.1  dholland }
     97       1.1  dholland 
     98       1.1  dholland void
     99       1.1  dholland md_init_set_status(int flags)
    100       1.1  dholland {
    101       1.1  dholland 	(void)flags;
    102       1.1  dholland 
    103       1.1  dholland 	/* Default to install same type of kernel as we are running */
    104       1.1  dholland 	set_kernel_set(get_bootmodel());
    105       1.1  dholland }
    106       1.1  dholland 
    107      1.15    martin bool
    108      1.15    martin md_get_info(struct install_partition_desc *install)
    109       1.1  dholland {
    110      1.15    martin 	int bcyl = 0, bhead = 0, bsec = 0;
    111       1.1  dholland 
    112      1.15    martin 	if (pm->no_mbr || pm->no_part)
    113      1.15    martin 		return true;
    114       1.1  dholland 
    115      1.15    martin 	if (pm->parts == NULL) {
    116       1.1  dholland 
    117      1.15    martin 		const struct disk_partitioning_scheme *ps =
    118      1.15    martin 		    select_part_scheme(pm, NULL, true, NULL);
    119       1.1  dholland 
    120      1.15    martin 		if (!ps)
    121  1.20.2.1   msaitoh 			return false;
    122       1.1  dholland 
    123      1.15    martin 		struct disk_partitions *parts =
    124      1.15    martin 		   (*ps->create_new_for_disk)(pm->diskdev,
    125      1.15    martin 		   0, pm->dlsize, pm->dlsize, true);
    126      1.15    martin 		if (!parts)
    127      1.15    martin 			return false;
    128       1.1  dholland 
    129      1.15    martin 		pm->parts = parts;
    130      1.15    martin 		if (ps->size_limit > 0 && pm->dlsize > ps->size_limit)
    131      1.15    martin 			pm->dlsize = ps->size_limit;
    132       1.1  dholland 	}
    133       1.1  dholland 
    134      1.15    martin 	if (get_bios_info(pm->diskdev, pm->parts, &bcyl, &bhead, &bsec)
    135      1.15    martin 	    && pm->parts->pscheme->change_disk_geom != NULL)
    136      1.15    martin 		pm->parts->pscheme->change_disk_geom(pm->parts,
    137      1.15    martin 		    bcyl, bhead, bsec);
    138      1.15    martin 	else
    139      1.15    martin 		set_default_sizemult(MEG/512);
    140       1.1  dholland 
    141      1.15    martin 	/*
    142      1.15    martin 	 * If the selected scheme does not need two-stage partitioning
    143      1.15    martin 	 * (like GPT), do not bother to edit the outer partitions.
    144      1.15    martin 	 */
    145      1.15    martin 	if (pm->parts->pscheme->secondary_partitions == NULL ||
    146      1.15    martin 	    pm->parts->pscheme->secondary_scheme == NULL)
    147      1.15    martin 		return true;
    148       1.1  dholland 
    149      1.15    martin 	if (pm->no_mbr || pm->no_part)
    150      1.15    martin 		return true;
    151       1.1  dholland 
    152      1.15    martin 	return edit_outer_parts(pm->parts);
    153       1.1  dholland }
    154       1.1  dholland 
    155       1.1  dholland /*
    156       1.1  dholland  * md back-end code for menu-driven BSD disklabel editor.
    157       1.1  dholland  */
    158      1.15    martin bool
    159      1.15    martin md_make_bsd_partitions(struct install_partition_desc *install)
    160       1.1  dholland {
    161      1.15    martin 	return make_bsd_partitions(install);
    162       1.1  dholland }
    163       1.1  dholland 
    164       1.1  dholland /*
    165       1.1  dholland  * any additional partition validation
    166       1.1  dholland  */
    167      1.15    martin bool
    168      1.15    martin md_check_partitions(struct install_partition_desc *install)
    169       1.1  dholland {
    170       1.1  dholland 	int rval;
    171       1.1  dholland 	char *bootxx;
    172       1.1  dholland 
    173      1.20    martin 	/* if booting via UEFI no boot blocks are needed */
    174      1.20    martin 	if (uefi_boot)
    175      1.20    martin 		return true;
    176      1.20    martin 
    177       1.1  dholland 	/* check we have boot code for the root partition type */
    178      1.15    martin 	bootxx = bootxx_name(install);
    179       1.1  dholland 	rval = access(bootxx, R_OK);
    180       1.1  dholland 	free(bootxx);
    181       1.1  dholland 	if (rval == 0)
    182      1.15    martin 		return true;
    183       1.8     joerg 	process_menu(MENU_ok, __UNCONST(MSG_No_Bootcode));
    184      1.15    martin 	return false;
    185       1.1  dholland }
    186       1.1  dholland 
    187       1.1  dholland /*
    188       1.1  dholland  * hook called before writing new disklabel.
    189       1.1  dholland  */
    190      1.15    martin bool
    191      1.15    martin md_pre_disklabel(struct install_partition_desc *install,
    192      1.15    martin     struct disk_partitions *parts)
    193       1.1  dholland {
    194       1.1  dholland 
    195      1.15    martin 	if (parts->parent == NULL)
    196      1.15    martin 		return true;	/* no outer partitions */
    197      1.15    martin 
    198      1.15    martin 	parts = parts->parent;
    199      1.15    martin 
    200      1.15    martin 	msg_display_subst(MSG_dofdisk, 3, parts->disk,
    201      1.15    martin 	    msg_string(parts->pscheme->name),
    202      1.15    martin 	    msg_string(parts->pscheme->short_name));
    203       1.1  dholland 
    204      1.15    martin 	/* write edited "MBR" onto disk. */
    205      1.15    martin 	if (!parts->pscheme->write_to_disk(parts)) {
    206       1.1  dholland 		msg_display(MSG_wmbrfail);
    207       1.1  dholland 		process_menu(MENU_ok, NULL);
    208      1.15    martin 		return false;
    209       1.1  dholland 	}
    210      1.15    martin 	return true;
    211       1.1  dholland }
    212       1.1  dholland 
    213       1.1  dholland /*
    214       1.1  dholland  * hook called after writing disklabel to new target disk.
    215       1.1  dholland  */
    216      1.15    martin bool
    217      1.15    martin md_post_disklabel(struct install_partition_desc *install,
    218      1.15    martin     struct disk_partitions *parts)
    219       1.1  dholland {
    220      1.15    martin 	return true;
    221       1.1  dholland }
    222       1.1  dholland 
    223       1.1  dholland /*
    224      1.20    martin  * Do all legacy bootblock update/setup here
    225       1.1  dholland  */
    226      1.20    martin static int
    227      1.20    martin md_post_newfs_bios(struct install_partition_desc *install)
    228       1.1  dholland {
    229       1.1  dholland 	int ret;
    230       1.1  dholland 	size_t len;
    231       1.3       riz 	char boot_options[1024];
    232       1.1  dholland 	char *bootxx_filename;
    233       1.1  dholland 	/*
    234       1.3       riz 	 * XXX - this code retains a lot of cruft from when we went
    235       1.3       riz 	 * to great pains to exclude installboot from the ramdisk
    236       1.3       riz 	 * for size reasons and should be rewritten.
    237       1.1  dholland 	 */
    238       1.3       riz 	static const char *consoles[]={
    239       1.3       riz         	"pc", /* CONSDEV_PC */
    240       1.3       riz 		"com0", /* CONSDEV_COM0 */
    241       1.3       riz 		"com1", /* CONSDEV_COM1 */
    242       1.3       riz 		"com2", /* CONSDEV_COM2 */
    243       1.3       riz 		"com3", /* CONSDEV_COM3 */
    244       1.3       riz 		"com0kbd", /* CONSDEV_COM0KBD */
    245       1.3       riz 		"com1kbd", /* CONSDEV_COM1KBD */
    246       1.3       riz 		"com2kbd", /* CONSDEV_COM2KBD */
    247       1.3       riz 		"com3kbd" /* CONSDEV_COM3KBD */ };
    248       1.1  dholland 	static struct x86_boot_params boottype =
    249       1.1  dholland 		{sizeof boottype, 0, 5, 0, 9600, { '\0' }, "", 0};
    250       1.1  dholland 	struct termios t;
    251       1.1  dholland 	dev_t condev;
    252       1.1  dholland 
    253       1.9    martin 	if (pm == NULL || !pm->no_part) {
    254       1.9    martin 		/*
    255       1.9    martin 		 * Get console device, should either be ttyE0 or tty0n.
    256       1.9    martin 		 * Too hard to double check, so just 'know' the device numbers.
    257       1.9    martin 		 */
    258       1.9    martin 		len = sizeof condev;
    259  1.20.2.2   msaitoh 		if (sysctl(conmib, __arraycount(conmib), &condev, &len, NULL,
    260  1.20.2.2   msaitoh 		    0) != -1 && (condev & ~3) == 0x800) {
    261       1.9    martin 			/* Motherboard serial port */
    262       1.9    martin 			boottype.bp_consdev = (condev & 3) + 1;
    263  1.20.2.2   msaitoh 			/* Defaulting the baud rate to that of stdin should
    264  1.20.2.2   msaitoh 			   suffice */
    265       1.9    martin 			if (tcgetattr(0, &t) != -1)
    266       1.9    martin 				boottype.bp_conspeed = t.c_ispeed;
    267       1.9    martin 		}
    268       1.9    martin 
    269       1.9    martin 		process_menu(MENU_getboottype, &boottype);
    270      1.18  christos 		msg_fmt_display(MSG_dobootblks, "%s", pm->diskdev);
    271       1.9    martin 		if (boottype.bp_consdev == ~0u)
    272       1.9    martin 			/* Use existing bootblocks */
    273       1.9    martin 			return 0;
    274       1.1  dholland 	}
    275       1.1  dholland 
    276       1.1  dholland 	ret = cp_to_target("/usr/mdec/boot", "/boot");
    277       1.1  dholland 	if (ret)
    278       1.1  dholland 		return ret;
    279       1.9    martin 	if (pm && pm->no_part)
    280       1.9    martin 		return 0;
    281       1.1  dholland 
    282      1.15    martin         bootxx_filename = bootxx_name(install);
    283       1.9    martin         if (bootxx_filename != NULL) {
    284      1.15    martin 		char rdev[PATH_MAX];
    285      1.15    martin 
    286      1.15    martin 		install->infos[0].parts->pscheme->get_part_device(
    287      1.15    martin 		    install->infos[0].parts, install->infos[0].cur_part_id,
    288      1.15    martin 		    rdev, sizeof rdev, NULL, raw_dev_name, true);
    289      1.15    martin 
    290       1.3       riz 		snprintf(boot_options, sizeof boot_options,
    291       1.3       riz 		    "console=%s,speed=%u", consoles[boottype.bp_consdev],
    292       1.3       riz 		    boottype.bp_conspeed);
    293      1.15    martin                	ret = run_program(RUN_DISPLAY,
    294      1.15    martin                 	    "/usr/sbin/installboot -o %s %s %s",
    295      1.16    martin 			    boot_options, rdev, bootxx_filename);
    296      1.15    martin                 free(bootxx_filename);
    297      1.16    martin         } else {
    298      1.16    martin                 ret = -1;
    299      1.16    martin 	}
    300      1.16    martin 
    301      1.16    martin         if (ret != 0)
    302      1.16    martin                 process_menu(MENU_ok,
    303      1.16    martin                     __UNCONST("Warning: disk is probably not bootable"));
    304       1.1  dholland 
    305       1.1  dholland 	return ret;
    306       1.1  dholland }
    307       1.1  dholland 
    308      1.20    martin /*
    309      1.20    martin  * Make sure our bootloader(s) are in the proper directory in the boot
    310      1.20    martin  * boot partition (or update them).
    311      1.20    martin  */
    312      1.20    martin static int
    313      1.20    martin copy_uefi_boot(const struct part_usage_info *boot)
    314      1.20    martin {
    315      1.20    martin 	char dev[MAXPATHLEN], path[MAXPATHLEN];
    316      1.20    martin 	size_t i;
    317      1.20    martin 	int err;
    318      1.20    martin 
    319      1.20    martin 	if (!boot->parts->pscheme->get_part_device(boot->parts,
    320      1.20    martin 	    boot->cur_part_id, dev, sizeof(dev), NULL, plain_name, true))
    321      1.20    martin 		return -1;
    322      1.20    martin 
    323      1.20    martin 	/*
    324      1.20    martin 	 * We should have a valid file system on that partition.
    325      1.20    martin 	 * Try to mount it and check if there is a /EFI in there.
    326      1.20    martin 	 */
    327      1.20    martin 	if (boot->mount[0])
    328      1.20    martin 		strlcpy(path, boot->mount, sizeof(path));
    329      1.20    martin 	else
    330      1.20    martin 		strcpy(path, "/mnt");
    331      1.20    martin 
    332      1.20    martin 	if (!(boot->instflags & PUIINST_MOUNT)) {
    333      1.20    martin 		make_target_dir(path);
    334      1.20    martin 		err = target_mount("", dev, path);
    335      1.20    martin 		if (err != 0)
    336      1.20    martin 			return err;
    337      1.20    martin 	}
    338      1.20    martin 
    339      1.20    martin 	strlcat(path, "/EFI/boot", sizeof(path));
    340      1.20    martin 	make_target_dir(path);
    341      1.20    martin 
    342      1.20    martin 	for (i = 0; i < __arraycount(uefi_bootloaders); i++) {
    343      1.20    martin 		if (access(uefi_bootloaders[i], R_OK) != 0)
    344      1.20    martin 			continue;
    345      1.20    martin 		err = cp_to_target(uefi_bootloaders[i], path);
    346      1.20    martin 		if (err)
    347      1.20    martin 			return err;
    348      1.20    martin 	}
    349      1.20    martin 
    350      1.20    martin 	return 0;
    351      1.20    martin }
    352      1.20    martin 
    353      1.20    martin /*
    354      1.20    martin  * Find (U)EFI boot partition and install/update bootloaders
    355      1.20    martin  */
    356      1.20    martin static int
    357      1.20    martin md_post_newfs_uefi(struct install_partition_desc *install)
    358      1.20    martin {
    359      1.20    martin 	size_t i;
    360      1.20    martin 
    361      1.20    martin 	for (i = 0; i < install->num; i++) {
    362      1.20    martin 		if (!(install->infos[i].instflags & PUIINST_BOOT))
    363      1.20    martin 			continue;
    364      1.20    martin 
    365      1.20    martin 		return copy_uefi_boot(&install->infos[i]);
    366      1.20    martin 	}
    367      1.20    martin 
    368      1.20    martin 	return -1;	/* no EFI boot partition found */
    369      1.20    martin }
    370      1.20    martin 
    371      1.20    martin /*
    372      1.20    martin  * hook called after upgrade() or install() has finished setting
    373      1.20    martin  * up the target disk but immediately before the user is given the
    374      1.20    martin  * ``disks are now set up'' message.
    375      1.20    martin  */
    376      1.20    martin int
    377      1.20    martin md_post_newfs(struct install_partition_desc *install)
    378      1.20    martin {
    379  1.20.2.2   msaitoh #if defined(__amd64__)
    380  1.20.2.2   msaitoh 	int ret;
    381  1.20.2.2   msaitoh 
    382  1.20.2.2   msaitoh 	ret = cp_to_target("/usr/mdec/prekern", "/prekern");
    383  1.20.2.2   msaitoh 	if (ret)
    384  1.20.2.2   msaitoh 		return ret;
    385  1.20.2.2   msaitoh #endif
    386      1.20    martin 
    387      1.20    martin 	return uefi_boot ? md_post_newfs_uefi(install)
    388      1.20    martin 	    : md_post_newfs_bios(install);
    389      1.20    martin }
    390      1.20    martin 
    391       1.1  dholland int
    392      1.15    martin md_post_extract(struct install_partition_desc *install)
    393       1.1  dholland {
    394       1.1  dholland 	return 0;
    395       1.1  dholland }
    396       1.1  dholland 
    397       1.1  dholland void
    398      1.15    martin md_cleanup_install(struct install_partition_desc *install)
    399       1.1  dholland {
    400      1.13    martin 	size_t len;
    401      1.13    martin 	dev_t condev;
    402      1.13    martin 
    403       1.1  dholland #ifndef DEBUG
    404       1.1  dholland 	enable_rc_conf();
    405       1.1  dholland 	add_rc_conf("wscons=YES\n");
    406       1.1  dholland 
    407       1.1  dholland # if defined(__i386__) && defined(SET_KERNEL_TINY)
    408       1.1  dholland 	/*
    409       1.1  dholland 	 * For GENERIC_TINY, do not enable any extra screens or wsmux.
    410       1.1  dholland 	 * Otherwise, run getty on 4 VTs.
    411       1.1  dholland 	 */
    412       1.1  dholland 	if (get_kernel_set() == SET_KERNEL_TINY)
    413       1.1  dholland 		run_program(RUN_CHROOT,
    414       1.1  dholland                             "sed -an -e '/^screen/s/^/#/;/^mux/s/^/#/;"
    415       1.1  dholland 			    "H;$!d;g;w /etc/wscons.conf' /etc/wscons.conf");
    416       1.1  dholland 	else
    417       1.1  dholland # endif
    418       1.1  dholland 		run_program(RUN_CHROOT,
    419       1.1  dholland 			    "sed -an -e '/^ttyE[1-9]/s/off/on/;"
    420       1.1  dholland 			    "H;$!d;g;w /etc/ttys' /etc/ttys");
    421       1.1  dholland 
    422       1.1  dholland #endif
    423      1.13    martin 
    424      1.13    martin 	/*
    425      1.13    martin 	 * Get console device, should either be ttyE0 or tty0n.
    426      1.13    martin 	 * Too hard to double check, so just 'know' the device numbers.
    427      1.13    martin 	 */
    428      1.13    martin 	len = sizeof condev;
    429      1.15    martin 	if (sysctl(conmib, __arraycount(conmib), &condev, &len, NULL, 0) != -1
    430      1.13    martin 	    && (condev & ~3) != 0x800) {
    431      1.13    martin 
    432      1.13    martin 		/*
    433      1.13    martin 		 * Current console is not com*, assume ttyE*.
    434      1.13    martin 		 * Modify /etc/ttys to use wsvt25 for all ports.
    435      1.13    martin 		 */
    436      1.13    martin 
    437      1.13    martin 		run_program(RUN_CHROOT,
    438      1.13    martin 			    "sed -an -e 's/vt100/wsvt25/g;"
    439      1.13    martin 			    "H;$!d;g;w  /etc/ttys' /etc/ttys");
    440      1.13    martin 	}
    441       1.1  dholland }
    442       1.1  dholland 
    443       1.1  dholland int
    444      1.15    martin md_pre_update(struct install_partition_desc *install)
    445       1.1  dholland {
    446       1.1  dholland 	return 1;
    447       1.1  dholland }
    448       1.1  dholland 
    449       1.1  dholland /* Upgrade support */
    450       1.1  dholland int
    451      1.15    martin md_update(struct install_partition_desc *install)
    452       1.1  dholland {
    453      1.15    martin 	md_post_newfs(install);
    454       1.1  dholland 	return 1;
    455       1.1  dholland }
    456       1.1  dholland 
    457       1.1  dholland int
    458      1.15    martin md_check_mbr(struct disk_partitions *parts, mbr_info_t *mbri, bool quiet)
    459       1.1  dholland {
    460      1.15    martin 	mbr_info_t *ext;
    461      1.15    martin 	struct mbr_partition *p;
    462      1.15    martin 	const char *bootcode;
    463      1.15    martin 	int i, names, fl, ofl;
    464      1.15    martin #define	ACTIVE_FOUND	0x0100
    465      1.15    martin #define	NETBSD_ACTIVE	0x0200
    466      1.15    martin #define	NETBSD_NAMED	0x0400
    467      1.15    martin #define	ACTIVE_NAMED	0x0800
    468      1.15    martin 
    469      1.15    martin 	root_limit = 0;
    470      1.15    martin 	if (biosdisk != NULL && (biosdisk->bi_flags & BIFLAG_EXTINT13) == 0) {
    471      1.15    martin 		if (mbr_root_above_chs()) {
    472      1.15    martin 			if (quiet)
    473      1.15    martin 				return 0;
    474      1.15    martin 			msg_display(MSG_partabovechs);
    475      1.15    martin 			if (!ask_noyes(NULL))
    476      1.15    martin 				return 1;
    477      1.15    martin 			/* The user is shooting themselves in the foot here...*/
    478      1.15    martin 		} else {
    479      1.15    martin 			if (parts->pscheme->size_limit)
    480      1.15    martin 				root_limit = min(parts->pscheme->size_limit,
    481      1.15    martin 				    parts->disk_size);
    482      1.15    martin 			else
    483      1.15    martin 				root_limit = parts->disk_size;
    484      1.15    martin 		}
    485      1.15    martin 	}
    486      1.15    martin 
    487      1.15    martin 	/*
    488      1.15    martin 	 * Ensure the install partition (at sector pm->ptstart) and the active
    489      1.15    martin 	 * partition are bootable.
    490      1.15    martin 	 * Determine whether the bootselect code is needed.
    491      1.15    martin 	 * Note that MBR_BS_NEWMBR is always set, so we ignore it!
    492      1.15    martin 	 */
    493      1.15    martin 	fl = 0;
    494      1.15    martin 	names = 0;
    495      1.15    martin 	for (ext = mbri; ext != NULL; ext = ext->extended) {
    496      1.15    martin 		p = ext->mbr.mbr_parts;
    497      1.15    martin 		for (i = 0; i < MBR_PART_COUNT; p++, i++) {
    498      1.15    martin 			if (p->mbrp_flag == MBR_PFLAG_ACTIVE) {
    499      1.15    martin 				fl |= ACTIVE_FOUND;
    500      1.15    martin 			    if (ext->sector + p->mbrp_start == pm->ptstart)
    501      1.15    martin 				fl |= NETBSD_ACTIVE;
    502      1.15    martin 			}
    503      1.15    martin 			if (ext->mbrb.mbrbs_nametab[i][0] == 0) {
    504      1.15    martin 				/* No bootmenu label... */
    505      1.15    martin 				if (ext->sector == 0)
    506      1.15    martin 					continue;
    507      1.15    martin 				if (ext->sector + p->mbrp_start == pm->ptstart)
    508      1.15    martin 					/*
    509      1.15    martin 					 * Have installed into an extended ptn
    510      1.15    martin 					 * force name & bootsel...
    511      1.15    martin 					 */
    512      1.15    martin 					names++;
    513      1.15    martin 				continue;
    514      1.15    martin 			}
    515      1.15    martin 			/* Partition has a bootmenu label... */
    516      1.15    martin 			if (ext->sector != 0)
    517      1.15    martin 				fl |= MBR_BS_EXTLBA;
    518      1.15    martin 			if (ext->sector + p->mbrp_start == pm->ptstart)
    519      1.15    martin 				fl |= NETBSD_NAMED;
    520      1.15    martin 			else if (p->mbrp_flag == MBR_PFLAG_ACTIVE)
    521      1.15    martin 				fl |= ACTIVE_NAMED;
    522      1.15    martin 			else
    523      1.15    martin 				names++;
    524      1.15    martin 		}
    525      1.15    martin 	}
    526      1.15    martin 	if (!(fl & ACTIVE_FOUND))
    527      1.15    martin 		fl |= NETBSD_ACTIVE;
    528      1.15    martin 	if (fl & NETBSD_NAMED && fl & NETBSD_ACTIVE)
    529      1.15    martin 		fl |= ACTIVE_NAMED;
    530      1.15    martin 
    531      1.15    martin 	if ((names > 0 || !(fl & NETBSD_ACTIVE)) &&
    532      1.15    martin 	    (!(fl & NETBSD_NAMED) || !(fl & ACTIVE_NAMED))) {
    533      1.15    martin 		/*
    534      1.15    martin 		 * There appear to be multiple bootable partitions, but they
    535      1.15    martin 		 * don't all have bootmenu texts.
    536      1.15    martin 		 */
    537      1.15    martin 		if (quiet)
    538      1.15    martin 			return 0;
    539      1.15    martin 
    540      1.15    martin 		msg_display(MSG_missing_bootmenu_text);
    541      1.15    martin 		if (ask_yesno(NULL))
    542      1.15    martin 			return 1;
    543      1.15    martin 	}
    544      1.15    martin 
    545      1.15    martin 	if ((fl & MBR_BS_EXTLBA) &&
    546      1.15    martin 	    (biosdisk == NULL || !(biosdisk->bi_flags & BIFLAG_EXTINT13))) {
    547      1.15    martin 		/* Need unsupported LBA reads to read boot sectors */
    548      1.15    martin 		if (quiet)
    549      1.15    martin 			return 0;
    550      1.15    martin 
    551      1.15    martin 		msg_display(MSG_no_extended_bootmenu);
    552      1.15    martin 		if (!ask_noyes(NULL))
    553      1.15    martin 			return 1;
    554      1.15    martin 	}
    555      1.15    martin 
    556      1.15    martin 	/* Sort out the name of the mbr code we need */
    557      1.15    martin 	if (names > 0 || fl & (NETBSD_NAMED | ACTIVE_NAMED)) {
    558      1.15    martin 		/* Need bootselect code */
    559      1.15    martin 		fl |= MBR_BS_ACTIVE;
    560      1.15    martin 		bootcode = fl & MBR_BS_EXTLBA ? _PATH_BOOTEXT : _PATH_BOOTSEL;
    561      1.15    martin 	} else
    562      1.15    martin 		bootcode = _PATH_MBR;
    563      1.15    martin 
    564      1.15    martin 	fl &=  MBR_BS_ACTIVE | MBR_BS_EXTLBA;
    565      1.15    martin 
    566      1.15    martin 	/* Look at what is installed */
    567      1.15    martin 	ofl = mbri->mbrb.mbrbs_flags;
    568      1.15    martin 	if (ofl == 0) {
    569      1.15    martin 		/* Check there is some bootcode at all... */
    570      1.15    martin 		if (mbri->mbr.mbr_magic != htole16(MBR_MAGIC) ||
    571      1.15    martin 		    mbri->mbr.mbr_jmpboot[0] == 0 ||
    572      1.15    martin 		    mbr_root_above_chs())
    573      1.15    martin 			/* Existing won't do, force update */
    574      1.15    martin 			fl |= MBR_BS_NEWMBR;
    575      1.15    martin 	}
    576      1.15    martin 	ofl = mbri->oflags & (MBR_BS_ACTIVE | MBR_BS_EXTLBA);
    577      1.15    martin 
    578      1.15    martin 	if (!quiet) {
    579      1.15    martin 		if (fl & ~ofl || (fl == 0 && ofl & MBR_BS_ACTIVE)) {
    580      1.15    martin 			/* Existing boot code isn't the right one... */
    581      1.15    martin 			if (fl & MBR_BS_ACTIVE)
    582      1.15    martin 				msg_display(MSG_installbootsel);
    583      1.15    martin 			else
    584      1.15    martin 				msg_display(MSG_installmbr);
    585      1.15    martin 		} else
    586      1.15    martin 			/* Existing code would (probably) be ok */
    587      1.15    martin 			msg_display(MSG_updatembr);
    588      1.15    martin 
    589      1.15    martin 		if (!ask_yesno(NULL))
    590      1.15    martin 			/* User doesn't want to update mbr code */
    591      1.15    martin 			return 2;
    592      1.15    martin 	}
    593      1.15    martin 
    594      1.15    martin 	if (md_read_bootcode(bootcode, &mbri->mbr) == 0)
    595      1.15    martin 		/* update suceeded - to memory copy */
    596      1.15    martin 		return 2;
    597      1.15    martin 
    598      1.15    martin 	/* This shouldn't happen since the files are in the floppy fs... */
    599      1.18  christos 	msg_fmt_display("Can't find %s", "%s", bootcode);
    600      1.15    martin 	return ask_reedit(parts);
    601       1.1  dholland }
    602       1.1  dholland 
    603      1.15    martin bool
    604      1.15    martin md_parts_use_wholedisk(struct disk_partitions *parts)
    605       1.1  dholland {
    606      1.20    martin 	struct disk_part_info boot_part = {
    607      1.20    martin 		.size = BOOT_PART,
    608      1.20    martin 		.fs_type = FS_MSDOS, .fs_sub_type = MBR_PTYPE_FAT32L,
    609      1.20    martin 	};
    610      1.20    martin 
    611      1.20    martin 	if (!uefi_boot)
    612      1.20    martin 		return parts_use_wholedisk(parts, 0, NULL);
    613      1.20    martin 
    614      1.20    martin 	boot_part.nat_type = parts->pscheme->get_generic_part_type(
    615      1.20    martin 	    PT_EFI_SYSTEM);
    616      1.20    martin 
    617      1.20    martin 	return parts_use_wholedisk(parts, 1, &boot_part);
    618       1.1  dholland }
    619       1.1  dholland 
    620      1.15    martin static bool
    621      1.15    martin get_bios_info(const char *dev, struct disk_partitions *parts, int *bcyl,
    622      1.15    martin     int *bhead, int *bsec)
    623       1.1  dholland {
    624       1.1  dholland 	static struct disklist *disklist = NULL;
    625       1.1  dholland 	static int mib[2] = {CTL_MACHDEP, CPU_DISKINFO};
    626       1.1  dholland 	int i;
    627       1.1  dholland 	size_t len;
    628       1.1  dholland 	struct biosdisk_info *bip;
    629       1.1  dholland 	struct nativedisk_info *nip = NULL, *nat;
    630      1.15    martin 	int cyl, head, sec;
    631       1.1  dholland 
    632       1.1  dholland 	if (disklist == NULL) {
    633       1.1  dholland 		if (sysctl(mib, 2, NULL, &len, NULL, 0) < 0)
    634       1.1  dholland 			goto nogeom;
    635       1.1  dholland 		disklist = malloc(len);
    636       1.1  dholland 		if (disklist == NULL) {
    637       1.1  dholland 			fprintf(stderr, "Out of memory\n");
    638      1.15    martin 			return false;
    639       1.1  dholland 		}
    640       1.1  dholland 		sysctl(mib, 2, disklist, &len, NULL, 0);
    641       1.1  dholland 	}
    642       1.1  dholland 
    643       1.1  dholland 	for (i = 0; i < disklist->dl_nnativedisks; i++) {
    644       1.1  dholland 		nat = &disklist->dl_nativedisks[i];
    645       1.1  dholland 		if (!strcmp(dev, nat->ni_devname)) {
    646       1.1  dholland 			nip = nat;
    647       1.1  dholland 			break;
    648       1.1  dholland 		}
    649       1.1  dholland 	}
    650       1.1  dholland 	if (nip == NULL || nip->ni_nmatches == 0) {
    651       1.1  dholland nogeom:
    652       1.1  dholland 		if (nip != NULL)
    653      1.18  christos 			msg_fmt_display(MSG_nobiosgeom, "%d%d%d",
    654      1.18  christos 			    pm->dlcyl, pm->dlhead, pm->dlsec);
    655      1.15    martin 		if (guess_biosgeom_from_parts(parts, &cyl, &head, &sec) >= 0
    656       1.1  dholland 		    && nip != NULL)
    657      1.18  christos 		{
    658      1.18  christos 			msg_fmt_display_add(MSG_biosguess, "%d%d%d",
    659      1.18  christos 			    cyl, head, sec);
    660      1.18  christos 		}
    661       1.1  dholland 		biosdisk = NULL;
    662       1.1  dholland 	} else {
    663      1.15    martin 		guess_biosgeom_from_parts(parts, &cyl, &head, &sec);
    664       1.1  dholland 		if (nip->ni_nmatches == 1) {
    665       1.1  dholland 			bip = &disklist->dl_biosdisks[nip->ni_biosmatches[0]];
    666       1.1  dholland 			msg_display(MSG_onebiosmatch);
    667       1.1  dholland 			msg_table_add(MSG_onebiosmatch_header);
    668      1.18  christos 			msg_fmt_table_add(MSG_onebiosmatch_row, "%d%d%d%d%u%u",
    669      1.18  christos 			    bip->bi_dev, bip->bi_cyl, bip->bi_head, bip->bi_sec,
    670       1.1  dholland 			    (unsigned)bip->bi_lbasecs,
    671       1.1  dholland 			    (unsigned)(bip->bi_lbasecs / (1000000000 / 512)));
    672       1.1  dholland 			msg_display_add(MSG_biosgeom_advise);
    673       1.1  dholland 			biosdisk = bip;
    674       1.1  dholland 			process_menu(MENU_biosonematch, &biosdisk);
    675       1.1  dholland 		} else {
    676       1.1  dholland 			msg_display(MSG_biosmultmatch);
    677       1.1  dholland 			msg_table_add(MSG_biosmultmatch_header);
    678       1.1  dholland 			for (i = 0; i < nip->ni_nmatches; i++) {
    679       1.1  dholland 				bip = &disklist->dl_biosdisks[
    680       1.1  dholland 							nip->ni_biosmatches[i]];
    681      1.18  christos 				msg_fmt_table_add(MSG_biosmultmatch_row,
    682      1.18  christos 				    "%d%d%d%d%d%u%u", i,
    683       1.1  dholland 				    bip->bi_dev, bip->bi_cyl, bip->bi_head,
    684       1.1  dholland 				    bip->bi_sec, (unsigned)bip->bi_lbasecs,
    685       1.1  dholland 				    (unsigned)bip->bi_lbasecs/(1000000000/512));
    686       1.1  dholland 			}
    687       1.1  dholland 			process_menu(MENU_biosmultmatch, &i);
    688       1.1  dholland 			if (i == -1)
    689       1.1  dholland 				biosdisk = NULL;
    690       1.1  dholland 			else
    691       1.1  dholland 				biosdisk = &disklist->dl_biosdisks[
    692       1.1  dholland 							nip->ni_biosmatches[i]];
    693       1.1  dholland 		}
    694       1.1  dholland 	}
    695       1.1  dholland 	if (biosdisk == NULL) {
    696      1.17    martin 		*bcyl = cyl;
    697      1.17    martin 		*bhead = head;
    698      1.17    martin 		*bsec = sec;
    699      1.17    martin 		if (nip != NULL)
    700      1.17    martin 			set_bios_geom(parts, bcyl, bhead, bsec);
    701       1.1  dholland 	} else {
    702      1.15    martin 		*bcyl = biosdisk->bi_cyl;
    703      1.15    martin 		*bhead = biosdisk->bi_head;
    704      1.15    martin 		*bsec = biosdisk->bi_sec;
    705       1.1  dholland 	}
    706      1.15    martin 	return true;
    707       1.1  dholland }
    708       1.1  dholland 
    709       1.1  dholland static int
    710       1.1  dholland mbr_root_above_chs(void)
    711       1.1  dholland {
    712      1.15    martin 	return pm->ptstart + (daddr_t)DEFROOTSIZE * (daddr_t)(MEG / 512)
    713      1.15    martin 	    >= pm->max_chs;
    714       1.1  dholland }
    715       1.1  dholland 
    716      1.15    martin /* returns false if no write-back of parts is required */
    717      1.15    martin bool
    718      1.15    martin md_mbr_update_check(struct disk_partitions *parts, mbr_info_t *mbri)
    719       1.1  dholland {
    720       1.1  dholland 	struct mbr_partition *mbrp;
    721       1.1  dholland 	int i, netbsdpart = -1, oldbsdpart = -1, oldbsdcount = 0;
    722       1.1  dholland 
    723      1.15    martin 	if (pm->no_mbr || pm->no_part)
    724      1.15    martin 		return false;
    725       1.1  dholland 
    726      1.15    martin 	mbrp = &mbri->mbr.mbr_parts[0];
    727       1.1  dholland 
    728       1.1  dholland 	for (i = 0; i < MBR_PART_COUNT; i++) {
    729       1.1  dholland 		if (mbrp[i].mbrp_type == MBR_PTYPE_386BSD) {
    730       1.1  dholland 			oldbsdpart = i;
    731       1.1  dholland 			oldbsdcount++;
    732       1.1  dholland 		} else if (mbrp[i].mbrp_type == MBR_PTYPE_NETBSD)
    733       1.1  dholland 			netbsdpart = i;
    734       1.1  dholland 	}
    735       1.1  dholland 
    736       1.1  dholland 	if (netbsdpart == -1 && oldbsdcount == 1) {
    737       1.1  dholland 		mbrp[oldbsdpart].mbrp_type = MBR_PTYPE_NETBSD;
    738      1.15    martin 		return true;
    739       1.1  dholland 	}
    740      1.15    martin 
    741      1.15    martin 	return false;
    742       1.1  dholland }
    743       1.1  dholland 
    744       1.1  dholland /*
    745       1.1  dholland  * Read MBR code from a file.
    746       1.1  dholland  * The existing partition table and bootselect configuration is kept.
    747       1.1  dholland  */
    748       1.1  dholland static int
    749       1.1  dholland md_read_bootcode(const char *path, struct mbr_sector *mbrs)
    750       1.1  dholland {
    751       1.1  dholland 	int fd;
    752       1.1  dholland 	struct stat st;
    753       1.1  dholland 	size_t len;
    754       1.1  dholland 	struct mbr_sector new_mbr;
    755       1.1  dholland 	uint32_t dsn;
    756       1.1  dholland 
    757       1.1  dholland 	fd = open(path, O_RDONLY);
    758       1.1  dholland 	if (fd < 0)
    759       1.1  dholland 		return -1;
    760       1.1  dholland 
    761       1.1  dholland 	if (fstat(fd, &st) < 0 || st.st_size != sizeof *mbrs) {
    762       1.1  dholland 		close(fd);
    763       1.1  dholland 		return -1;
    764       1.1  dholland 	}
    765       1.1  dholland 
    766       1.1  dholland 	if (read(fd, &new_mbr, sizeof new_mbr) != sizeof new_mbr) {
    767       1.1  dholland 		close(fd);
    768       1.1  dholland 		return -1;
    769       1.1  dholland 	}
    770       1.1  dholland 	close(fd);
    771       1.1  dholland 
    772       1.1  dholland 	if (new_mbr.mbr_bootsel_magic != htole16(MBR_BS_MAGIC))
    773       1.1  dholland 		return -1;
    774       1.1  dholland 
    775       1.1  dholland 	if (mbrs->mbr_bootsel_magic == htole16(MBR_BS_MAGIC)) {
    776       1.1  dholland 		len = offsetof(struct mbr_sector, mbr_bootsel);
    777       1.1  dholland 	} else
    778       1.1  dholland 		len = offsetof(struct mbr_sector, mbr_parts);
    779       1.1  dholland 
    780       1.1  dholland 	/* Preserve the 'drive serial number' - especially for Vista */
    781       1.1  dholland 	dsn = mbrs->mbr_dsn;
    782       1.1  dholland 	memcpy(mbrs, &new_mbr, len);
    783       1.1  dholland 	mbrs->mbr_dsn = dsn;
    784       1.1  dholland 
    785       1.1  dholland 	/* Keep flags from object file - indicate the properties */
    786       1.1  dholland 	mbrs->mbr_bootsel.mbrbs_flags = new_mbr.mbr_bootsel.mbrbs_flags;
    787       1.1  dholland 	mbrs->mbr_magic = htole16(MBR_MAGIC);
    788       1.1  dholland 
    789       1.1  dholland 	return 0;
    790       1.1  dholland }
    791       1.1  dholland 
    792       1.1  dholland static unsigned int
    793       1.1  dholland get_bootmodel(void)
    794       1.1  dholland {
    795       1.1  dholland #if defined(__i386__)
    796       1.1  dholland 	struct utsname ut;
    797       1.1  dholland #ifdef DEBUG
    798       1.1  dholland 	char *envstr;
    799       1.1  dholland 
    800       1.1  dholland 	envstr = getenv("BOOTMODEL");
    801       1.1  dholland 	if (envstr != NULL)
    802       1.1  dholland 		return atoi(envstr);
    803       1.1  dholland #endif
    804       1.1  dholland 
    805       1.1  dholland 	if (uname(&ut) < 0)
    806       1.1  dholland 		ut.version[0] = 0;
    807       1.1  dholland 
    808       1.1  dholland #if defined(SET_KERNEL_TINY)
    809       1.1  dholland 	if (strstr(ut.version, "TINY") != NULL)
    810       1.1  dholland 		return SET_KERNEL_TINY;
    811       1.1  dholland #endif
    812       1.1  dholland #if defined(SET_KERNEL_PS2)
    813       1.1  dholland 	if (strstr(ut.version, "PS2") != NULL)
    814       1.1  dholland 		return SET_KERNEL_PS2;
    815       1.1  dholland #endif
    816       1.1  dholland #endif
    817       1.1  dholland 	return SET_KERNEL_GENERIC;
    818       1.1  dholland }
    819       1.1  dholland 
    820       1.1  dholland 
    821       1.1  dholland int
    822      1.19    martin md_pre_mount(struct install_partition_desc *install, size_t ndx)
    823       1.1  dholland {
    824       1.1  dholland 	return 0;
    825       1.1  dholland }
    826      1.15    martin 
    827      1.15    martin #ifdef HAVE_GPT
    828      1.15    martin /*
    829      1.15    martin  * New GPT partitions have been written, update bootloader or remember
    830      1.15    martin  * data untill needed in md_post_newfs
    831      1.15    martin  */
    832      1.15    martin bool
    833      1.15    martin md_gpt_post_write(struct disk_partitions *parts, part_id root_id,
    834      1.15    martin     bool root_is_new, part_id efi_id, bool efi_is_new)
    835      1.15    martin {
    836      1.15    martin 	struct disk_part_info info;
    837      1.15    martin 
    838      1.15    martin 	assert(efi_id == NO_PART);	/* XXX EFI support still missing */
    839      1.15    martin 
    840      1.15    martin 	if (root_id != NO_PART) {
    841      1.15    martin 		/* we always update the gpt boot record for now */
    842      1.15    martin 		if (!parts->pscheme->get_part_info(parts, root_id, &info))
    843      1.15    martin 			return false;
    844      1.15    martin 		if (run_program(RUN_SILENT, "gpt biosboot -b %" PRIu64 " %s",
    845      1.15    martin 		    info.start, parts->disk) != 0)
    846      1.15    martin 			return false;
    847      1.15    martin 	}
    848      1.15    martin 
    849      1.15    martin 	return true;
    850      1.15    martin }
    851      1.15    martin #endif
    852      1.20    martin 
    853      1.20    martin /*
    854      1.20    martin  * When we do an UEFI install, we have completely different default
    855      1.20    martin  * partitions and need to adjust the description at runtime.
    856      1.20    martin  */
    857      1.20    martin void
    858      1.20    martin x86_md_part_defaults(struct pm_devs *cur_pm, struct part_usage_info **partsp,
    859      1.20    martin     size_t *num_usage_infos)
    860      1.20    martin {
    861      1.20    martin 	static const struct part_usage_info uefi_boot_part =
    862      1.20    martin 	{
    863      1.20    martin 		.size = BOOT_PART,
    864      1.20    martin 		.type = BOOT_PART_TYPE,
    865      1.20    martin 		.instflags = PUIINST_NEWFS|PUIINST_BOOT,
    866      1.20    martin 		.fs_type = FS_MSDOS, .fs_version = MBR_PTYPE_FAT32L,
    867      1.20    martin 		.flags = PUIFLAG_ADD_OUTER,
    868      1.20    martin 	};
    869      1.20    martin 
    870      1.20    martin 	struct disk_partitions *parts;
    871      1.20    martin 	struct part_usage_info *new_usage, *boot;
    872      1.20    martin 	struct disk_part_info info;
    873      1.20    martin 	size_t num;
    874      1.20    martin 	part_id pno;
    875      1.20    martin 
    876      1.20    martin 	if (!uefi_boot)
    877      1.20    martin 		return;		/* legacy defaults apply */
    878      1.20    martin 
    879      1.20    martin 	/*
    880      1.20    martin 	 * Insert a UEFI boot partition at the beginning of the array
    881      1.20    martin 	 */
    882      1.20    martin 
    883      1.20    martin 	/* create space for new description */
    884      1.20    martin 	num = *num_usage_infos + 1;
    885      1.20    martin 	new_usage = realloc(*partsp, sizeof(*new_usage)*num);
    886      1.20    martin 	if (new_usage == NULL)
    887      1.20    martin 		return;
    888      1.20    martin 	*partsp = new_usage;
    889      1.20    martin 	*num_usage_infos = num;
    890      1.20    martin 	boot = new_usage;
    891      1.20    martin 	memmove(boot+1, boot, sizeof(*boot)*(num-1));
    892      1.20    martin 	*boot = uefi_boot_part;
    893      1.20    martin 
    894      1.20    martin 	/*
    895      1.20    martin 	 * Check if the UEFI partition already exists
    896      1.20    martin 	 */
    897      1.20    martin 	parts = pm->parts;
    898      1.20    martin 	if (parts->parent != NULL)
    899      1.20    martin 		parts = parts->parent;
    900      1.20    martin 	for (pno = 0; pno < parts->num_part; pno++) {
    901      1.20    martin 		if (!parts->pscheme->get_part_info(parts, pno, &info))
    902      1.20    martin 			continue;
    903      1.20    martin 		if (info.nat_type->generic_ptype != boot->type)
    904      1.20    martin 			continue;
    905      1.20    martin 		boot->flags &= ~PUIFLAG_ADD_OUTER;
    906  1.20.2.2   msaitoh 		boot->flags |= PUIFLG_IS_OUTER|PUIFLG_ADD_INNER;
    907      1.20    martin 		boot->size = info.size;
    908      1.20    martin 		boot->cur_start = info.start;
    909      1.20    martin 		boot->cur_flags = info.flags;
    910      1.20    martin 		break;
    911      1.20    martin 	}
    912      1.20    martin }
    913      1.20    martin 
    914      1.20    martin /* no need to install bootblock if installing for UEFI */
    915      1.20    martin bool
    916      1.20    martin x86_md_need_bootblock(struct install_partition_desc *install)
    917      1.20    martin {
    918      1.20    martin 
    919      1.20    martin 	return !uefi_boot;
    920      1.20    martin }
    921