xref: /netbsd-src/usr.sbin/sysinst/arch/cats/md.c (revision 4204f81037ec1430b81b70ee975f04b277901e24)
1*4204f810Smartin /*	$NetBSD: md.c,v 1.6 2022/01/29 16:01:17 martin Exp $ */
250dbef1aSdholland 
350dbef1aSdholland /*
450dbef1aSdholland  * Copyright 1997 Piermont Information Systems Inc.
550dbef1aSdholland  * All rights reserved.
650dbef1aSdholland  *
750dbef1aSdholland  * Based on code written by Philip A. Nelson for Piermont Information
850dbef1aSdholland  * Systems Inc.
950dbef1aSdholland  *
1050dbef1aSdholland  * Redistribution and use in source and binary forms, with or without
1150dbef1aSdholland  * modification, are permitted provided that the following conditions
1250dbef1aSdholland  * are met:
1350dbef1aSdholland  * 1. Redistributions of source code must retain the above copyright
1450dbef1aSdholland  *    notice, this list of conditions and the following disclaimer.
1550dbef1aSdholland  * 2. Redistributions in binary form must reproduce the above copyright
1650dbef1aSdholland  *    notice, this list of conditions and the following disclaimer in the
1750dbef1aSdholland  *    documentation and/or other materials provided with the distribution.
1850dbef1aSdholland  * 3. The name of Piermont Information Systems Inc. may not be used to endorse
1950dbef1aSdholland  *    or promote products derived from this software without specific prior
2050dbef1aSdholland  *    written permission.
2150dbef1aSdholland  *
2250dbef1aSdholland  * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
2350dbef1aSdholland  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2450dbef1aSdholland  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2550dbef1aSdholland  * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
2650dbef1aSdholland  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2750dbef1aSdholland  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2850dbef1aSdholland  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2950dbef1aSdholland  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3050dbef1aSdholland  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3150dbef1aSdholland  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
3250dbef1aSdholland  * THE POSSIBILITY OF SUCH DAMAGE.
3350dbef1aSdholland  */
3450dbef1aSdholland 
3550dbef1aSdholland /* md.c -- cats machine specific routines */
3650dbef1aSdholland 
3750dbef1aSdholland #include <stdio.h>
3850dbef1aSdholland #include <curses.h>
3950dbef1aSdholland #include <unistd.h>
4050dbef1aSdholland #include <fcntl.h>
4150dbef1aSdholland #include <util.h>
4250dbef1aSdholland #include <sys/types.h>
4350dbef1aSdholland #include <sys/ioctl.h>
4450dbef1aSdholland #include <sys/param.h>
4550dbef1aSdholland 
4650dbef1aSdholland #include "defs.h"
4750dbef1aSdholland #include "md.h"
4850dbef1aSdholland #include "msg_defs.h"
4950dbef1aSdholland #include "menu_defs.h"
5050dbef1aSdholland 
5150dbef1aSdholland void
md_init(void)5250dbef1aSdholland md_init(void)
5350dbef1aSdholland {
5450dbef1aSdholland }
5550dbef1aSdholland 
5650dbef1aSdholland void
md_init_set_status(int flags)5750dbef1aSdholland md_init_set_status(int flags)
5850dbef1aSdholland {
5950dbef1aSdholland 	(void)flags;
6050dbef1aSdholland }
6150dbef1aSdholland 
624103857bSmartin bool
md_get_info(struct install_partition_desc * install)634103857bSmartin md_get_info(struct install_partition_desc *install)
6450dbef1aSdholland {
6550dbef1aSdholland 	struct disklabel disklabel;
6650dbef1aSdholland 	int fd;
6750dbef1aSdholland 	char dev_name[100];
6850dbef1aSdholland #if 0
6950dbef1aSdholland 	static char bb[DEV_BSIZE];
7050dbef1aSdholland 	struct filecore_bootblock *fcbb = (struct filecore_bootblock *)bb;
7150dbef1aSdholland #endif
7250dbef1aSdholland 	int offset = 0;
7350dbef1aSdholland 
744b2364d9Smartin 	snprintf(dev_name, 100, "/dev/r%sc", pm->diskdev);
7550dbef1aSdholland 
7650dbef1aSdholland 	fd = open(dev_name, O_RDONLY, 0);
7750dbef1aSdholland 	if (fd < 0) {
7850dbef1aSdholland 		endwin();
7950dbef1aSdholland 		fprintf(stderr, "Can't open %s\n", dev_name);
8050dbef1aSdholland 		exit(1);
8150dbef1aSdholland 	}
8250dbef1aSdholland 	if (ioctl(fd, DIOCGDINFO, &disklabel) == -1) {
8350dbef1aSdholland 		endwin();
8450dbef1aSdholland 		fprintf(stderr, "Can't read disklabel on %s.\n", dev_name);
8550dbef1aSdholland 		close(fd);
8650dbef1aSdholland 		exit(1);
8750dbef1aSdholland 	}
8850dbef1aSdholland 
8950dbef1aSdholland 	close(fd);
9050dbef1aSdholland 
914b2364d9Smartin 	pm->dlcyl = disklabel.d_ncylinders;
924b2364d9Smartin 	pm->dlhead = disklabel.d_ntracks;
934b2364d9Smartin 	pm->dlsec = disklabel.d_nsectors;
944b2364d9Smartin 	pm->sectorsize = disklabel.d_secsize;
954b2364d9Smartin 	pm->dlcylsize = disklabel.d_secpercyl;
9650dbef1aSdholland 
9750dbef1aSdholland 	/*
984b2364d9Smartin 	 * Compute whole disk size. Take max of (pm->dlcyl*pm->dlhead*pm->dlsec)
9950dbef1aSdholland 	 * and secperunit,  just in case the disk is already labelled.
10050dbef1aSdholland 	 * (If our new label's RAW_PART size ends up smaller than the
10150dbef1aSdholland 	 * in-core RAW_PART size  value, updating the label will fail.)
10250dbef1aSdholland 	 */
1034b2364d9Smartin 	pm->dlsize = pm->dlcyl*pm->dlhead*pm->dlsec;
1044b2364d9Smartin 	if (disklabel.d_secperunit > pm->dlsize)
1054b2364d9Smartin 		pm->dlsize = disklabel.d_secperunit;
10650dbef1aSdholland 
1074b2364d9Smartin 	pm->ptstart = offset;
10850dbef1aSdholland /*	endwin();
1094b2364d9Smartin 	printf("pm->dlcyl=%d\n", pm->dlcyl);
1104b2364d9Smartin 	printf("pm->dlhead=%d\n", pm->dlhead);
1114b2364d9Smartin 	printf("pm->dlsec=%d\n", pm->dlsec);
1124b2364d9Smartin 	printf("secsz=%d\n", pm->sectorsize);
1134b2364d9Smartin 	printf("cylsz=%d\n", pm->dlcylsize);
1144b2364d9Smartin 	printf("dlsz=%d\n", pm->dlsize);
1154b2364d9Smartin 	printf("pstart=%d\n", pm->ptstart);
11650dbef1aSdholland 	printf("pstart=%d\n", partsize);
11750dbef1aSdholland 	printf("secpun=%d\n", disklabel.d_secperunit);
11850dbef1aSdholland 	backtowin();*/
11950dbef1aSdholland 
1204103857bSmartin 	return true;
12150dbef1aSdholland }
12250dbef1aSdholland 
12350dbef1aSdholland /*
12450dbef1aSdholland  * md back-end code for menu-driven BSD disklabel editor.
12550dbef1aSdholland  */
126957b5cd6Smartin int
md_make_bsd_partitions(struct install_partition_desc * install)1274103857bSmartin md_make_bsd_partitions(struct install_partition_desc *install)
12850dbef1aSdholland {
1294103857bSmartin 	return make_bsd_partitions(install);
13050dbef1aSdholland }
13150dbef1aSdholland 
13250dbef1aSdholland /*
13350dbef1aSdholland  * any additional partition validation
13450dbef1aSdholland  */
1354103857bSmartin bool
md_check_partitions(struct install_partition_desc * install)1364103857bSmartin md_check_partitions(struct install_partition_desc *install)
13750dbef1aSdholland {
1384103857bSmartin 	return true;
13950dbef1aSdholland }
14050dbef1aSdholland 
14150dbef1aSdholland /*
14250dbef1aSdholland  * hook called before writing new disklabel.
14350dbef1aSdholland  */
1444103857bSmartin bool
md_pre_disklabel(struct install_partition_desc * install,struct disk_partitions * parts)1454103857bSmartin md_pre_disklabel(struct install_partition_desc *install,
1464103857bSmartin     struct disk_partitions *parts)
14750dbef1aSdholland {
1484103857bSmartin 	return true;
14950dbef1aSdholland }
15050dbef1aSdholland 
15150dbef1aSdholland /*
15250dbef1aSdholland  * hook called after writing disklabel to new target disk.
15350dbef1aSdholland  */
1544103857bSmartin bool
md_post_disklabel(struct install_partition_desc * install,struct disk_partitions * parts)1554103857bSmartin md_post_disklabel(struct install_partition_desc *install,
1564103857bSmartin     struct disk_partitions *parts)
15750dbef1aSdholland {
1584103857bSmartin 	return true;
15950dbef1aSdholland }
16050dbef1aSdholland 
16150dbef1aSdholland /*
16250dbef1aSdholland  * hook called after upgrade() or install() has finished setting
16350dbef1aSdholland  * up the target disk but immediately before the user is given the
16450dbef1aSdholland  * ``disks are now set up'' message.
16550dbef1aSdholland  */
16650dbef1aSdholland int
md_post_newfs(struct install_partition_desc * install)1674103857bSmartin md_post_newfs(struct install_partition_desc *install)
16850dbef1aSdholland {
16950dbef1aSdholland 	return 0;
17050dbef1aSdholland }
17150dbef1aSdholland 
17250dbef1aSdholland int
md_post_extract(struct install_partition_desc * install,bool upgrade)173*4204f810Smartin md_post_extract(struct install_partition_desc *install, bool upgrade)
17450dbef1aSdholland {
17550dbef1aSdholland 	return 0;
17650dbef1aSdholland }
17750dbef1aSdholland 
17850dbef1aSdholland void
md_cleanup_install(struct install_partition_desc * install)1794103857bSmartin md_cleanup_install(struct install_partition_desc *install)
18050dbef1aSdholland {
18150dbef1aSdholland #ifndef DEBUG
18250dbef1aSdholland 	enable_rc_conf();
18350dbef1aSdholland #endif
18450dbef1aSdholland }
18550dbef1aSdholland 
18650dbef1aSdholland int
md_pre_update(struct install_partition_desc * install)1874103857bSmartin md_pre_update(struct install_partition_desc *install)
18850dbef1aSdholland {
18950dbef1aSdholland 	return 1;
19050dbef1aSdholland }
19150dbef1aSdholland 
19250dbef1aSdholland /* Upgrade support */
19350dbef1aSdholland int
md_update(struct install_partition_desc * install)1944103857bSmartin md_update(struct install_partition_desc *install)
19550dbef1aSdholland {
1964103857bSmartin 	md_post_newfs(install);
19750dbef1aSdholland 	return 1;
19850dbef1aSdholland }
19950dbef1aSdholland 
20050dbef1aSdholland int
md_pre_mount(struct install_partition_desc * install,size_t ndx)2014f30cbf3Smartin md_pre_mount(struct install_partition_desc *install, size_t ndx)
20250dbef1aSdholland {
20350dbef1aSdholland 	return 0;
20450dbef1aSdholland }
2054103857bSmartin 
2064103857bSmartin #ifdef HAVE_GPT
2074103857bSmartin /*
2084103857bSmartin  * New GPT partitions have been written, update bootloader or remember
2094103857bSmartin  * data untill needed in md_post_newfs
2104103857bSmartin  */
2114103857bSmartin bool
md_gpt_post_write(struct disk_partitions * parts,part_id root_id,bool root_is_new,part_id efi_id,bool efi_is_new)2124103857bSmartin md_gpt_post_write(struct disk_partitions *parts, part_id root_id,
2134103857bSmartin     bool root_is_new, part_id efi_id, bool efi_is_new)
2144103857bSmartin {
2154103857bSmartin 	return true;
2164103857bSmartin }
2174103857bSmartin #endif
2184103857bSmartin 
2194103857bSmartin bool
md_parts_use_wholedisk(struct disk_partitions * parts)2204103857bSmartin md_parts_use_wholedisk(struct disk_partitions *parts)
2214103857bSmartin {
2224103857bSmartin 	return parts_use_wholedisk(parts, 0, NULL);
2234103857bSmartin }
2244103857bSmartin 
225