Home | History | Annotate | Line # | Download | only in fdisk
fdisk.c revision 1.41.2.1
      1  1.41.2.1        he /*	$NetBSD: fdisk.c,v 1.41.2.1 2002/02/14 19:59:55 he Exp $ */
      2      1.10       cgd 
      3       1.4   mycroft /*
      4       1.1       cgd  * Mach Operating System
      5       1.1       cgd  * Copyright (c) 1992 Carnegie Mellon University
      6       1.1       cgd  * All Rights Reserved.
      7       1.4   mycroft  *
      8       1.1       cgd  * Permission to use, copy, modify and distribute this software and its
      9       1.1       cgd  * documentation is hereby granted, provided that both the copyright
     10       1.1       cgd  * notice and this permission notice appear in all copies of the
     11       1.1       cgd  * software, derivative works or modified versions, and any portions
     12       1.1       cgd  * thereof, and that both notices appear in supporting documentation.
     13       1.4   mycroft  *
     14       1.1       cgd  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     15       1.1       cgd  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
     16       1.1       cgd  * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     17       1.4   mycroft  *
     18       1.1       cgd  * Carnegie Mellon requests users of this software to return to
     19       1.4   mycroft  *
     20       1.1       cgd  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     21       1.1       cgd  *  School of Computer Science
     22       1.1       cgd  *  Carnegie Mellon University
     23       1.1       cgd  *  Pittsburgh PA 15213-3890
     24       1.4   mycroft  *
     25       1.1       cgd  * any improvements or extensions that they make and grant Carnegie Mellon
     26       1.1       cgd  * the rights to redistribute these changes.
     27       1.1       cgd  */
     28       1.1       cgd 
     29      1.16      phil #include <sys/cdefs.h>
     30      1.16      phil 
     31       1.2   mycroft #ifndef lint
     32  1.41.2.1        he __RCSID("$NetBSD: fdisk.c,v 1.41.2.1 2002/02/14 19:59:55 he Exp $");
     33       1.2   mycroft #endif /* not lint */
     34       1.2   mycroft 
     35       1.1       cgd #include <sys/types.h>
     36       1.1       cgd #include <sys/disklabel.h>
     37      1.32   thorpej #include <sys/disklabel_mbr.h>
     38       1.4   mycroft #include <sys/ioctl.h>
     39      1.18     lukem #include <sys/param.h>
     40       1.1       cgd #include <sys/stat.h>
     41       1.4   mycroft 
     42       1.8       cgd #include <ctype.h>
     43       1.4   mycroft #include <err.h>
     44      1.18     lukem #include <errno.h>
     45       1.1       cgd #include <fcntl.h>
     46      1.18     lukem #include <paths.h>
     47       1.4   mycroft #include <stdio.h>
     48       1.4   mycroft #include <stdlib.h>
     49       1.8       cgd #include <string.h>
     50       1.8       cgd #include <unistd.h>
     51      1.19     lukem #include <util.h>
     52       1.1       cgd 
     53      1.34      fvdl #ifdef __i386__
     54      1.34      fvdl #include <ctype.h>
     55      1.34      fvdl #include <machine/cpu.h>
     56      1.34      fvdl #include <sys/sysctl.h>
     57      1.34      fvdl #endif
     58      1.34      fvdl 
     59       1.1       cgd #define LBUF 100
     60       1.1       cgd static char lbuf[LBUF];
     61       1.1       cgd 
     62       1.1       cgd /*
     63       1.1       cgd  * 14-Dec-89  Robert Baron (rvb) at Carnegie-Mellon University
     64       1.1       cgd  *	Copyright (c) 1989	Robert. V. Baron
     65       1.1       cgd  *	Created.
     66       1.1       cgd  */
     67       1.1       cgd 
     68      1.39      soda #ifndef _PATH_DEFDISK
     69      1.39      soda #define	_PATH_DEFDISK	"/dev/rwd0d"
     70      1.39      soda #endif
     71      1.39      soda 
     72      1.39      soda char *disk = _PATH_DEFDISK;
     73       1.1       cgd 
     74       1.1       cgd struct disklabel disklabel;		/* disk parameters */
     75       1.1       cgd 
     76       1.5   mycroft int cylinders, sectors, heads, cylindersectors, disksectors;
     77       1.1       cgd 
     78       1.4   mycroft struct mboot {
     79      1.32   thorpej 	u_int8_t	padding[2]; /* force the longs to be long alligned */
     80      1.32   thorpej 	u_int8_t	bootinst[MBR_PARTOFF];
     81      1.32   thorpej 	struct mbr_partition parts[NMBRPART];
     82      1.32   thorpej 	u_int16_t	signature;
     83       1.1       cgd };
     84       1.1       cgd struct mboot mboot;
     85       1.1       cgd 
     86      1.30        ws #ifdef	__i386__
     87      1.34      fvdl 
     88      1.38     soren #define PARTNAMESIZE	8	/* From mbr_bootsel.S */
     89      1.38     soren 
     90      1.34      fvdl struct mbr_bootsel {
     91      1.34      fvdl 	u_int8_t defkey;
     92      1.34      fvdl 	u_int8_t flags;
     93      1.34      fvdl 	u_int16_t timeo;
     94      1.38     soren 	char nametab[4][PARTNAMESIZE + 1];
     95      1.34      fvdl 	u_int16_t magic;
     96      1.34      fvdl } __attribute__((packed));
     97      1.34      fvdl 
     98      1.34      fvdl #define BFL_SELACTIVE   0x01
     99      1.35      fvdl #define BFL_EXTINT13	0x02
    100      1.34      fvdl 
    101      1.34      fvdl #define SCAN_ENTER      0x1c
    102      1.34      fvdl #define SCAN_F1         0x3b
    103      1.34      fvdl 
    104      1.34      fvdl #define MBR_BOOTSELOFF	(MBR_PARTOFF - sizeof (struct mbr_bootsel))
    105      1.34      fvdl 
    106      1.30        ws #define	DEFAULT_BOOTCODE	"/usr/mdec/mbr"
    107      1.34      fvdl #define DEFAULT_BOOTSELCODE	"/usr/mdec/mbr_bootsel"
    108      1.34      fvdl #define OPTIONS			"0123BSafius:b:c:"
    109      1.34      fvdl #else
    110      1.34      fvdl #define OPTIONS			"0123Safius:b:c:"
    111      1.30        ws #endif
    112      1.30        ws 
    113       1.1       cgd #define ACTIVE 0x80
    114       1.1       cgd 
    115       1.5   mycroft int dos_cylinders;
    116       1.1       cgd int dos_heads;
    117       1.1       cgd int dos_sectors;
    118       1.5   mycroft int dos_cylindersectors;
    119       1.1       cgd 
    120       1.4   mycroft #define DOSSECT(s,c)	(((s) & 0x3f) | (((c) >> 2) & 0xc0))
    121       1.4   mycroft #define DOSCYL(c)	((c) & 0xff)
    122      1.28        ws 
    123      1.28        ws #define	MAXCYL	1024
    124       1.4   mycroft int partition = -1;
    125       1.4   mycroft 
    126       1.4   mycroft int a_flag;		/* set active partition */
    127      1.28        ws int i_flag;		/* init bootcode */
    128       1.4   mycroft int u_flag;		/* update partition data */
    129      1.15      phil int sh_flag;		/* Output data as shell defines */
    130      1.15      phil int f_flag;		/* force --not interactive */
    131      1.15      phil int s_flag;		/* set id,offset,size */
    132      1.16      phil int b_flag;		/* Set cyl, heads, secs (as c/h/s) */
    133      1.34      fvdl int B_flag;		/* Edit/install bootselect code */
    134      1.16      phil int b_cyl, b_head, b_sec;  /* b_flag values. */
    135      1.34      fvdl int bootsel_modified;
    136       1.4   mycroft 
    137      1.30        ws unsigned char bootcode[8192];	/* maximum size of bootcode */
    138      1.34      fvdl unsigned char tempcode[8192];
    139      1.30        ws int bootsize;		/* actual size of bootcode */
    140      1.30        ws 
    141       1.1       cgd 
    142      1.25  drochner static char reserved[] = "reserved";
    144       1.4   mycroft 
    145       1.4   mycroft struct part_type {
    146       1.4   mycroft 	int type;
    147       1.4   mycroft 	char *name;
    148       1.4   mycroft } part_types[] = {
    149       1.4   mycroft 	{0x00, "unused"},
    150       1.4   mycroft 	{0x01, "Primary DOS with 12 bit FAT"},
    151       1.4   mycroft 	{0x02, "XENIX / filesystem"},
    152      1.13     perry 	{0x03, "XENIX /usr filesystem"},
    153      1.25  drochner 	{0x04, "Primary DOS with 16 bit FAT <32M"},
    154      1.13     perry 	{0x05, "Extended partition"},
    155      1.13     perry 	{0x06, "Primary 'big' DOS, 16-bit FAT (> 32MB)"},
    156      1.25  drochner 	{0x07, "OS/2 HPFS or NTFS or QNX2 or Advanced UNIX"},
    157      1.25  drochner 	{0x08, "AIX filesystem or OS/2 (thru v1.3) or DELL multiple drives"
    158       1.4   mycroft 	       "or Commodore DOS or SplitDrive"},
    159      1.13     perry 	{0x09, "AIX boot partition or Coherent"},
    160      1.25  drochner 	{0x0A, "OS/2 Boot Manager or Coherent swap or OPUS"},
    161      1.25  drochner 	{0x0b, "Primary DOS with 32 bit FAT"},
    162      1.25  drochner 	{0x0c, "Primary DOS with 32 bit FAT - LBA"},
    163      1.25  drochner 	{0x0d, "Type 7??? - LBA"},
    164      1.25  drochner 	{0x0E, "DOS (16-bit FAT) - LBA"},
    165       1.4   mycroft 	{0x0F, "Ext. partition - LBA"},
    166      1.13     perry 	{0x10, "OPUS"},
    167      1.13     perry 	{0x11, "OS/2 BM: hidden DOS 12-bit FAT"},
    168      1.25  drochner 	{0x12, "Compaq diagnostics"},
    169      1.13     perry 	{0x14, "OS/2 BM: hidden DOS 16-bit FAT <32M or Novell DOS 7.0 bug"},
    170      1.13     perry 	{0x16, "OS/2 BM: hidden DOS 16-bit FAT >=32M"},
    171      1.13     perry 	{0x17, "OS/2 BM: hidden IFS"},
    172      1.25  drochner 	{0x18, "AST Windows swapfile"},
    173      1.25  drochner 	{0x19, "Willowtech Photon coS"},
    174      1.25  drochner 	{0x1e, "hidden FAT95"},
    175      1.25  drochner 	{0x20, "Willowsoft OFS1"},
    176      1.25  drochner 	{0x21, reserved},
    177      1.13     perry 	{0x23, reserved},
    178      1.25  drochner 	{0x24, "NEC DOS"},
    179      1.25  drochner 	{0x26, reserved},
    180      1.25  drochner 	{0x31, reserved},
    181      1.25  drochner 	{0x33, reserved},
    182      1.25  drochner 	{0x34, reserved},
    183      1.25  drochner 	{0x36, reserved},
    184      1.13     perry 	{0x38, "Theos"},
    185      1.25  drochner 	{0x3C, "PartitionMagic recovery"},
    186      1.25  drochner 	{0x40, "VENIX 286 or LynxOS"},
    187      1.13     perry 	{0x41, "Linux/MINIX (sharing disk with DRDOS) or Personal RISC boot"},
    188      1.13     perry 	{0x42, "SFS or Linux swap (sharing disk with DRDOS)"},
    189      1.41       wiz 	{0x43, "Linux native (sharing disk with DRDOS)"},
    190      1.41       wiz 	{0x4D, "QNX4.x"},
    191      1.41       wiz 	{0x4E, "QNX4.x 2nd part"},
    192      1.13     perry 	{0x4F, "QNX4.x 3rd part"},
    193      1.13     perry 	{0x50, "DM (disk manager)"},
    194       1.4   mycroft 	{0x51, "DM6 Aux1 (or Novell)"},
    195      1.13     perry 	{0x52, "CP/M or Microport SysV/AT"},
    196      1.25  drochner 	{0x53, "DM6 Aux3"},
    197      1.13     perry 	{0x54, "DM6 DDO"},
    198      1.13     perry 	{0x55, "EZ-Drive (disk manager)"},
    199      1.13     perry 	{0x56, "Golden Bow (disk manager)"},
    200      1.13     perry 	{0x5C, "Priam Edisk (disk manager)"},
    201      1.25  drochner 	{0x61, "SpeedStor"},
    202      1.25  drochner 	{0x63, "GNU HURD or Mach or Sys V/386 (such as ISC UNIX) or MtXinu"},
    203       1.4   mycroft 	{0x64, "Novell Netware 2.xx or Speedstore"},
    204      1.25  drochner 	{0x65, "Novell Netware 3.xx"},
    205      1.25  drochner 	{0x66, "Novell 386 Netware"},
    206      1.25  drochner 	{0x67, "Novell"},
    207      1.25  drochner 	{0x68, "Novell"},
    208      1.13     perry 	{0x69, "Novell"},
    209      1.25  drochner 	{0x70, "DiskSecure Multi-Boot"},
    210      1.25  drochner 	{0x71, reserved},
    211      1.25  drochner 	{0x73, reserved},
    212      1.13     perry 	{0x74, reserved},
    213      1.25  drochner 	{0x75, "PC/IX"},
    214      1.13     perry 	{0x76, reserved},
    215      1.13     perry 	{0x80, "MINIX until 1.4a"},
    216      1.25  drochner 	{0x81, "MINIX since 1.4b, early Linux, Mitac dmgr"},
    217      1.13     perry 	{0x82, "Linux swap or Prime or Solaris"},
    218      1.13     perry 	{0x83, "Linux native"},
    219      1.13     perry 	{0x84, "OS/2 hidden C: drive"},
    220      1.25  drochner 	{0x85, "Linux extended"},
    221      1.25  drochner 	{0x86, "NT FAT volume set"},
    222       1.4   mycroft 	{0x87, "NTFS volume set or HPFS mirrored"},
    223       1.4   mycroft 	{0x93, "Amoeba filesystem"},
    224      1.25  drochner 	{0x94, "Amoeba bad block table"},
    225      1.25  drochner 	{0x99, "Mylex EISA SCSI"},
    226      1.13     perry 	{0x9f, "BSDI?"},
    227      1.25  drochner 	{0xA0, "IBM Thinkpad hibernation"},
    228      1.25  drochner 	{0xa1, reserved},
    229      1.25  drochner 	{0xa3, reserved},
    230      1.25  drochner 	{0xa4, reserved},
    231      1.13     perry 	{0xA5, "FreeBSD or 386BSD or old NetBSD"},
    232      1.13     perry 	{0xA6, "OpenBSD"},
    233      1.25  drochner 	{0xA7, "NeXTSTEP 486"},
    234      1.25  drochner 	{0xa9, "NetBSD"},
    235      1.25  drochner 	{0xb1, reserved},
    236      1.25  drochner 	{0xb3, reserved},
    237      1.25  drochner 	{0xb4, reserved},
    238       1.4   mycroft 	{0xb6, reserved},
    239       1.4   mycroft 	{0xB7, "BSDI BSD/386 filesystem"},
    240      1.25  drochner 	{0xB8, "BSDI BSD/386 swap"},
    241      1.13     perry 	{0xc0, "CTOS"},
    242      1.13     perry 	{0xC1, "DRDOS/sec (FAT-12)"},
    243      1.13     perry 	{0xC4, "DRDOS/sec (FAT-16, < 32M)"},
    244      1.25  drochner 	{0xC6, "DRDOS/sec (FAT-16, >= 32M)"},
    245      1.25  drochner 	{0xC7, "Syrinx (Cyrnix?) or HPFS disabled"},
    246      1.13     perry 	{0xd8, "CP/M 86"},
    247      1.13     perry 	{0xDB, "CP/M or Concurrent CP/M or Concurrent DOS or CTOS"},
    248      1.25  drochner 	{0xE1, "DOS access or SpeedStor 12-bit FAT extended partition"},
    249      1.13     perry 	{0xE3, "DOS R/O or SpeedStor or Storage Dimensions"},
    250      1.25  drochner 	{0xE4, "SpeedStor 16-bit FAT extended partition < 1024 cyl."},
    251      1.25  drochner 	{0xe5, reserved},
    252      1.33     perry 	{0xe6, reserved},
    253      1.25  drochner 	{0xeb, "BeOS"},
    254       1.4   mycroft 	{0xF1, "SpeedStor or Storage Dimensions"},
    255      1.25  drochner 	{0xF2, "DOS 3.3+ Secondary"},
    256      1.25  drochner 	{0xf3, reserved},
    257      1.25  drochner 	{0xF4, "SpeedStor large partition or Storage Dimensions"},
    258      1.25  drochner 	{0xf6, reserved},
    259      1.13     perry 	{0xFE, "SpeedStor >1024 cyl. or LANstep or IBM PS/2 IML"},
    260       1.1       cgd 	{0xFF, "Xenix Bad Block Table"},
    261       1.1       cgd };
    262       1.4   mycroft 
    263       1.4   mycroft void	usage __P((void));
    264       1.4   mycroft void	print_s0 __P((int));
    265      1.34      fvdl void	print_part __P((int));
    266      1.28        ws int	read_boot __P((char *, char *, size_t));
    267      1.11   ghudson void	init_sector0 __P((int, int));
    268      1.34      fvdl void	intuit_translated_geometry __P((void));
    269      1.34      fvdl void	get_geometry __P((void));
    270      1.11   ghudson void	get_diskname __P((char *, char *, size_t));
    271      1.11   ghudson int	try_heads __P((quad_t, quad_t, quad_t, quad_t, quad_t, quad_t, quad_t,
    272      1.11   ghudson 		       quad_t));
    273      1.15      phil int	try_sectors __P((quad_t, quad_t, quad_t, quad_t, quad_t));
    274       1.4   mycroft void	change_part __P((int, int, int, int));
    275       1.4   mycroft void	print_params __P((void));
    276       1.4   mycroft void	change_active __P((int));
    277       1.4   mycroft void	get_params_to_use __P((void));
    278       1.4   mycroft void	dos __P((int, unsigned char *, unsigned char *, unsigned char *));
    279       1.4   mycroft int	open_disk __P((int));
    280       1.4   mycroft int	read_disk __P((int, void *));
    281       1.4   mycroft int	write_disk __P((int, void *));
    282       1.4   mycroft int	get_params __P((void));
    283       1.4   mycroft int	read_s0 __P((void));
    284       1.4   mycroft int	write_s0 __P((void));
    285       1.5   mycroft int	yesno __P((char *));
    286       1.4   mycroft void	decimal __P((char *, int *));
    287       1.4   mycroft int	type_match __P((const void *, const void *));
    288      1.16      phil char	*get_type __P((int));
    289      1.34      fvdl int	get_mapping __P((int, int *, int *, int *, long *));
    290      1.34      fvdl #ifdef __i386__
    291      1.34      fvdl void	configure_bootsel __P((void));
    292      1.16      phil #endif
    293      1.16      phil 
    294      1.16      phil static inline unsigned short getshort __P((void *));
    295      1.16      phil static inline void putshort __P((void *p, unsigned short));
    296      1.16      phil static inline unsigned long getlong __P((void *));
    297      1.16      phil static inline void putlong __P((void *,	unsigned long));
    298      1.16      phil 
    299      1.16      phil 
    300       1.1       cgd int	main __P((int, char **));
    301       1.4   mycroft 
    302       1.1       cgd int
    303       1.4   mycroft main(argc, argv)
    304       1.4   mycroft 	int argc;
    305       1.1       cgd 	char *argv[];
    306       1.4   mycroft {
    307       1.4   mycroft 	int ch;
    308       1.1       cgd 	int part;
    309      1.15      phil 
    310      1.15      phil 	int csysid, cstart, csize;	/* For the b_flag. */
    311      1.16      phil 
    312      1.15      phil 	a_flag = i_flag = u_flag = sh_flag = f_flag = s_flag = b_flag = 0;
    313      1.34      fvdl 	csysid = cstart = csize = 0;
    314       1.4   mycroft 	while ((ch = getopt(argc, argv, OPTIONS)) != -1)
    315       1.4   mycroft 		switch (ch) {
    316       1.4   mycroft 		case '0':
    317       1.4   mycroft 			partition = 0;
    318       1.4   mycroft 			break;
    319       1.4   mycroft 		case '1':
    320       1.4   mycroft 			partition = 1;
    321       1.4   mycroft 			break;
    322       1.4   mycroft 		case '2':
    323       1.4   mycroft 			partition = 2;
    324       1.4   mycroft 			break;
    325       1.4   mycroft 		case '3':
    326       1.4   mycroft 			partition = 3;
    327      1.34      fvdl 			break;
    328      1.34      fvdl #ifdef __i386__
    329      1.34      fvdl 		case 'B':
    330      1.34      fvdl 			B_flag = 1;
    331      1.34      fvdl 			break;
    332      1.15      phil #endif
    333      1.15      phil 		case 'S':
    334      1.15      phil 			sh_flag = 1;
    335       1.4   mycroft 			break;
    336       1.4   mycroft 		case 'a':
    337       1.4   mycroft 			a_flag = 1;
    338      1.15      phil 			break;
    339      1.15      phil 		case 'f':
    340      1.15      phil 			f_flag = 1;
    341       1.4   mycroft 			break;
    342       1.4   mycroft 		case 'i':
    343      1.15      phil 			i_flag = 1;
    344       1.4   mycroft 			break;
    345       1.4   mycroft 		case 'u':
    346       1.1       cgd 			u_flag = 1;
    347      1.14      phil 			break;
    348      1.14      phil 		case 's':
    349      1.16      phil 			s_flag = 1;
    350      1.16      phil 			if (sscanf (optarg, "%d/%d/%d",
    351      1.16      phil 				    &csysid, &cstart, &csize) != 3) {
    352      1.16      phil 				(void)fprintf (stderr, "%s: Bad argument "
    353      1.16      phil 					       "to the -s flag.\n",
    354      1.16      phil 					       argv[0]);
    355      1.16      phil 				exit (1);
    356      1.16      phil 			}
    357      1.16      phil 			break;
    358      1.16      phil 		case 'b':
    359      1.16      phil 			b_flag = 1;
    360      1.16      phil 			if (sscanf (optarg, "%d/%d/%d",
    361      1.16      phil 				    &b_cyl, &b_head, &b_sec) != 3) {
    362      1.16      phil 				(void)fprintf (stderr, "%s: Bad argument "
    363      1.16      phil 					       "to the -b flag.\n",
    364      1.16      phil 					       argv[0]);
    365      1.16      phil 				exit (1);
    366      1.28        ws 			}
    367      1.28        ws 			if (b_cyl > MAXCYL)
    368      1.14      phil 				b_cyl = MAXCYL;
    369      1.30        ws 			break;
    370      1.34      fvdl 		case 'c':
    371      1.30        ws 			bootsize = read_boot(optarg, bootcode, sizeof bootcode);
    372       1.4   mycroft 			break;
    373       1.4   mycroft 		default:
    374       1.1       cgd 			usage();
    375       1.4   mycroft 		}
    376       1.4   mycroft 	argc -= optind;
    377       1.1       cgd 	argv += optind;
    378      1.15      phil 
    379      1.15      phil 	if (sh_flag && (a_flag || i_flag || u_flag || f_flag || s_flag))
    380      1.15      phil 		usage();
    381      1.34      fvdl 
    382      1.34      fvdl 	if (B_flag && (a_flag || i_flag || u_flag || f_flag || s_flag))
    383      1.34      fvdl 		usage();
    384      1.15      phil 
    385      1.15      phil 	if (partition == -1 && s_flag) {
    386      1.15      phil 		(void) fprintf (stderr,
    387      1.14      phil 				"-s flag requires a partition selected.\n");
    388      1.15      phil 		usage();
    389      1.15      phil 	}
    390       1.1       cgd 
    391       1.1       cgd 	if (argc > 0)
    392       1.4   mycroft 		disk = argv[0];
    393      1.34      fvdl 
    394       1.1       cgd 	if (open_disk(B_flag || a_flag || i_flag || u_flag) < 0)
    395       1.1       cgd 		exit(1);
    396      1.11   ghudson 
    397      1.28        ws 	if (read_s0())
    398      1.11   ghudson 		init_sector0(sectors > 63 ? 63 : sectors, 1);
    399      1.34      fvdl 
    400      1.34      fvdl #ifdef __i386__
    401      1.34      fvdl 	get_geometry();
    402      1.11   ghudson #else
    403      1.34      fvdl 	intuit_translated_geometry();
    404      1.15      phil #endif
    405      1.15      phil 
    406      1.16      phil 
    407       1.1       cgd 	if ((i_flag || u_flag) && (!f_flag || b_flag))
    408       1.1       cgd 		get_params_to_use();
    409      1.15      phil 
    410      1.28        ws 	if (i_flag)
    411      1.15      phil 		init_sector0(dos_sectors > 63 ? 63 : dos_sectors, 0);
    412      1.15      phil 
    413      1.15      phil 	/* Do the update stuff! */
    414      1.15      phil 	if (u_flag) {
    415      1.34      fvdl 		if (!f_flag)
    416      1.34      fvdl 			printf("Partition table:\n");
    417      1.32   thorpej 		if (partition == -1)
    418      1.15      phil 			for (part = 0; part < NMBRPART; part++)
    419      1.15      phil 				change_part(part,-1, -1, -1);
    420      1.15      phil 		else
    421       1.4   mycroft 			change_part(partition, csysid, cstart, csize);
    422      1.15      phil 	} else
    423      1.15      phil 		if (!i_flag)
    424       1.1       cgd 			print_s0(partition);
    425      1.15      phil 
    426       1.1       cgd 	if (a_flag)
    427       1.1       cgd 		change_active(partition);
    428      1.34      fvdl 
    429      1.34      fvdl #ifdef __i386__
    430      1.34      fvdl 	if (B_flag) {
    431      1.34      fvdl 		configure_bootsel();
    432      1.34      fvdl 		if (B_flag && bootsel_modified)
    433      1.34      fvdl 			write_s0();
    434      1.34      fvdl 	}
    435      1.34      fvdl #endif
    436      1.15      phil 
    437      1.15      phil 	if (u_flag || a_flag || i_flag) {
    438      1.34      fvdl 		if (!f_flag) {
    439      1.15      phil 			printf("\nWe haven't written the MBR back to disk "
    440      1.15      phil 			       "yet.  This is your last chance.\n");
    441      1.15      phil 			print_s0(-1);
    442      1.15      phil 			if (yesno("Should we write new partition table?"))
    443      1.15      phil 				write_s0();
    444       1.1       cgd 		} else
    445       1.1       cgd 			write_s0();
    446       1.1       cgd 	}
    447       1.1       cgd 
    448       1.4   mycroft 	exit(0);
    449       1.1       cgd }
    450       1.4   mycroft 
    451       1.4   mycroft void
    452       1.4   mycroft usage()
    453      1.38     soren {
    454      1.38     soren 	(void)fprintf(stderr, "usage: fdisk [-aiufBS] [-0|-1|-2|-3] "
    455      1.38     soren 			      "[-b cylinders/heads/sectors]\n"
    456      1.38     soren 			      "             [-s id/start/size] [-c bootcode] "
    457       1.4   mycroft 			      "[device]\n");
    458       1.1       cgd 	exit(1);
    459       1.1       cgd }
    460       1.4   mycroft 
    461       1.1       cgd void
    462       1.4   mycroft print_s0(which)
    463       1.1       cgd 	int which;
    464       1.4   mycroft {
    465       1.1       cgd 	int part;
    466       1.1       cgd 
    467      1.15      phil 	print_params();
    468      1.34      fvdl 	if (!sh_flag)
    469       1.4   mycroft 		printf("Partition table:\n");
    470      1.32   thorpej 	if (which == -1) {
    471      1.15      phil 		for (part = 0; part < NMBRPART; part++) {
    472      1.15      phil 			if (!sh_flag)
    473      1.15      phil 				printf("%d: ", part);
    474      1.15      phil 			print_part(part);
    475       1.4   mycroft 		}
    476       1.1       cgd 	} else
    477       1.1       cgd 		print_part(which);
    478       1.1       cgd }
    479      1.12   thorpej 
    480      1.12   thorpej static inline unsigned short
    481      1.12   thorpej getshort(p)
    482      1.12   thorpej 	void *p;
    483      1.12   thorpej {
    484      1.12   thorpej 	unsigned char *cp = p;
    485      1.12   thorpej 
    486      1.12   thorpej 	return cp[0] | (cp[1] << 8);
    487      1.12   thorpej }
    488      1.12   thorpej 
    489      1.12   thorpej static inline void
    490      1.12   thorpej putshort(p, l)
    491      1.12   thorpej 	void *p;
    492      1.12   thorpej 	unsigned short l;
    493      1.12   thorpej {
    494      1.12   thorpej 	unsigned char *cp = p;
    495      1.12   thorpej 
    496      1.12   thorpej 	*cp++ = l;
    497      1.12   thorpej 	*cp++ = l >> 8;
    498      1.12   thorpej }
    499      1.12   thorpej 
    500      1.12   thorpej static inline unsigned long
    501      1.12   thorpej getlong(p)
    502      1.12   thorpej 	void *p;
    503      1.12   thorpej {
    504      1.12   thorpej 	unsigned char *cp = p;
    505      1.12   thorpej 
    506      1.12   thorpej 	return cp[0] | (cp[1] << 8) | (cp[2] << 16) | (cp[3] << 24);
    507      1.12   thorpej }
    508      1.12   thorpej 
    509      1.12   thorpej static inline void
    510      1.12   thorpej putlong(p, l)
    511      1.12   thorpej 	void *p;
    512      1.12   thorpej 	unsigned long l;
    513      1.12   thorpej {
    514      1.12   thorpej 	unsigned char *cp = p;
    515      1.12   thorpej 
    516      1.12   thorpej 	*cp++ = l;
    517      1.12   thorpej 	*cp++ = l >> 8;
    518      1.12   thorpej 	*cp++ = l >> 16;
    519      1.12   thorpej 	*cp++ = l >> 24;
    520      1.12   thorpej }
    521       1.4   mycroft 
    522       1.4   mycroft void
    523       1.4   mycroft print_part(part)
    524       1.1       cgd 	int part;
    525      1.32   thorpej {
    526      1.14      phil 	struct mbr_partition *partp;
    527       1.1       cgd 	int empty;
    528       1.4   mycroft 
    529      1.34      fvdl 	partp = &mboot.parts[part];
    530      1.14      phil 	empty = (partp->mbrp_typ == 0);
    531      1.15      phil 
    532      1.14      phil 	if (sh_flag) {
    533      1.14      phil 		if (empty) {
    534      1.14      phil 			printf("PART%dSIZE=0\n", part);
    535      1.14      phil 			return;
    536      1.14      phil 		}
    537      1.32   thorpej 
    538      1.32   thorpej 		printf("PART%dID=%d\n", part, partp->mbrp_typ);
    539      1.32   thorpej 		printf("PART%dSIZE=%ld\n", part, getlong(&partp->mbrp_size));
    540      1.32   thorpej 		printf("PART%dSTART=%ld\n", part, getlong(&partp->mbrp_start));
    541      1.32   thorpej 		printf("PART%dFLAG=0x%x\n", part, partp->mbrp_flag);
    542      1.32   thorpej 		printf("PART%dBCYL=%d\n", part, MBR_PCYL(partp->mbrp_scyl,
    543      1.32   thorpej 						      partp->mbrp_ssect));
    544      1.32   thorpej 		printf("PART%dBHEAD=%d\n", part, partp->mbrp_shd);
    545      1.32   thorpej 		printf("PART%dBSEC=%d\n", part, MBR_PSECT(partp->mbrp_ssect));
    546      1.32   thorpej 		printf("PART%dECYL=%d\n", part, MBR_PCYL(partp->mbrp_ecyl,
    547      1.32   thorpej 						      partp->mbrp_esect));
    548      1.32   thorpej 		printf("PART%dEHEAD=%d\n", part, partp->mbrp_ehd);
    549      1.14      phil 		printf("PART%dESEC=%d\n", part, MBR_PSECT(partp->mbrp_esect));
    550      1.14      phil 		return;
    551      1.14      phil 	}
    552      1.15      phil 
    553      1.14      phil 	/* Not sh_flag. */
    554       1.1       cgd 	if (empty) {
    555       1.1       cgd 		printf("<UNUSED>\n");
    556       1.1       cgd 		return;
    557      1.32   thorpej 	}
    558      1.18     lukem 	printf("sysid %d (%s)\n", partp->mbrp_typ, get_type(partp->mbrp_typ));
    559      1.32   thorpej 	printf("    start %ld, size %ld (%ld MB), flag 0x%x\n",
    560      1.32   thorpej 	    getlong(&partp->mbrp_start), getlong(&partp->mbrp_size),
    561       1.5   mycroft 	    getlong(&partp->mbrp_size) * 512 / (1024 * 1024), partp->mbrp_flag);
    562      1.32   thorpej 	printf("\tbeg: cylinder %4d, head %3d, sector %2d\n",
    563      1.32   thorpej 	    MBR_PCYL(partp->mbrp_scyl, partp->mbrp_ssect),
    564       1.5   mycroft 	    partp->mbrp_shd, MBR_PSECT(partp->mbrp_ssect));
    565      1.32   thorpej 	printf("\tend: cylinder %4d, head %3d, sector %2d\n",
    566      1.32   thorpej 	    MBR_PCYL(partp->mbrp_ecyl, partp->mbrp_esect),
    567       1.1       cgd 	    partp->mbrp_ehd, MBR_PSECT(partp->mbrp_esect));
    568       1.1       cgd }
    569      1.34      fvdl 
    570      1.34      fvdl int
    571      1.30        ws read_boot(name, buf, len)
    572      1.34      fvdl 	char *name;
    573      1.34      fvdl 	char *buf;
    574      1.30        ws 	size_t len;
    575      1.34      fvdl {
    576      1.30        ws 	int bfd, ret;
    577      1.30        ws 	struct stat st;
    578      1.34      fvdl 
    579      1.30        ws 	if ((bfd = open(name, O_RDONLY)) < 0)
    580      1.34      fvdl 		err(1, "%s", name);
    581      1.30        ws 	if (fstat(bfd, &st) == -1)
    582      1.34      fvdl 		err(1, "%s", name);
    583      1.30        ws 	if (st.st_size > len)
    584      1.34      fvdl 		errx(1, "%s: bootcode too large", name);
    585      1.34      fvdl 	ret = st.st_size;
    586      1.30        ws 	if (ret < 0x200)
    587      1.34      fvdl 		errx(1, "%s: bootcode too small", name);
    588      1.30        ws 	if (read(bfd, buf, len) != ret)
    589      1.34      fvdl 		err(1, "%s", name);
    590      1.30        ws 	close(bfd);
    591      1.30        ws 
    592      1.30        ws 	/*
    593      1.30        ws 	 * Do some sanity checking here
    594      1.32   thorpej 	 */
    595      1.30        ws 	if (getshort(bootcode + MBR_MAGICOFF) != MBR_MAGIC)
    596      1.34      fvdl 		errx(1, "%s: invalid magic", name);
    597      1.34      fvdl 	ret = (ret + 0x1ff) / 0x200;
    598      1.34      fvdl 	ret *= 0x200;
    599      1.30        ws 	return ret;
    600      1.30        ws }
    601      1.30        ws 
    602      1.28        ws void
    603      1.28        ws init_sector0(start, dopart)
    604       1.1       cgd 	int start, dopart;
    605      1.15      phil {
    606      1.15      phil 	int i;
    607      1.30        ws 
    608      1.30        ws #ifdef	DEFAULT_BOOTCODE
    609      1.34      fvdl 	if (!bootsize)
    610      1.34      fvdl 		bootsize = read_boot(DEFAULT_BOOTCODE, bootcode,
    611      1.30        ws 		    sizeof bootcode);
    612      1.30        ws #endif
    613      1.30        ws 
    614      1.32   thorpej 	memcpy(mboot.bootinst, bootcode, sizeof(mboot.bootinst));
    615      1.15      phil 	putshort(&mboot.signature, MBR_MAGIC);
    616      1.28        ws 
    617      1.34      fvdl 	if (dopart)
    618      1.34      fvdl 		for (i=0; i<4; i++)
    619      1.34      fvdl 			memset(&mboot.parts[i], 0, sizeof(struct mbr_partition));
    620      1.34      fvdl 
    621       1.1       cgd }
    622      1.34      fvdl 
    623      1.34      fvdl #ifdef __i386__
    624      1.34      fvdl 
    625      1.34      fvdl void
    626      1.34      fvdl get_diskname(fullname, diskname, size)
    627      1.34      fvdl 	char *fullname;
    628      1.34      fvdl 	char *diskname;
    629      1.34      fvdl 	size_t size;
    630      1.34      fvdl {
    631      1.34      fvdl 	char *p;
    632      1.34      fvdl 	char *p2;
    633      1.34      fvdl 	size_t len;
    634      1.34      fvdl 
    635      1.34      fvdl 	p = strrchr(fullname, '/');
    636      1.34      fvdl 	if (p == NULL)
    637      1.34      fvdl 		p = fullname;
    638      1.34      fvdl 	else
    639      1.34      fvdl 		p++;
    640      1.34      fvdl 
    641      1.34      fvdl 	if (*p == 0) {
    642      1.34      fvdl 		strncpy(diskname, fullname, size - 1);
    643      1.34      fvdl 		diskname[size - 1] = '\0';
    644      1.34      fvdl 		return;
    645      1.34      fvdl 	}
    646      1.34      fvdl 
    647      1.34      fvdl 	if (*p == 'r')
    648      1.34      fvdl 		p++;
    649      1.34      fvdl 
    650      1.34      fvdl 	for (p2 = p; *p2 != 0; p2++)
    651      1.34      fvdl 		if (isdigit(*p2))
    652      1.34      fvdl 			break;
    653      1.34      fvdl 	if (*p2 == 0) {
    654      1.34      fvdl 		/* XXX invalid diskname? */
    655      1.34      fvdl 		strncpy(diskname, fullname, size - 1);
    656      1.34      fvdl 		diskname[size - 1] = '\0';
    657      1.34      fvdl 		return;
    658      1.34      fvdl 	}
    659      1.34      fvdl 	while (isdigit(*p2))
    660      1.34      fvdl 		p2++;
    661      1.34      fvdl 
    662      1.34      fvdl 	len = p2 - p;
    663      1.34      fvdl 	if (len > size) {
    664      1.34      fvdl 		/* XXX */
    665      1.34      fvdl 		strncpy(diskname, fullname, size - 1);
    666      1.34      fvdl 		diskname[size - 1] = '\0';
    667      1.34      fvdl 		return;
    668      1.34      fvdl 	}
    669      1.34      fvdl 
    670      1.34      fvdl 	strncpy(diskname, p, len);
    671      1.34      fvdl 	diskname[len] = 0;
    672      1.34      fvdl }
    673      1.34      fvdl 
    674      1.34      fvdl void
    675      1.34      fvdl get_geometry()
    676      1.34      fvdl {
    677      1.34      fvdl 	int mib[2], i;
    678      1.34      fvdl 	size_t len;
    679      1.34      fvdl 	struct disklist *dl;
    680      1.34      fvdl 	struct biosdisk_info *bip;
    681      1.34      fvdl 	struct nativedisk_info *nip;
    682      1.34      fvdl 	char diskname[8];
    683      1.34      fvdl 
    684      1.34      fvdl 	mib[0] = CTL_MACHDEP;
    685      1.34      fvdl 	mib[1] = CPU_DISKINFO;
    686      1.34      fvdl 	if (sysctl(mib, 2, NULL, &len, NULL, 0) < 0) {
    687      1.34      fvdl 		intuit_translated_geometry();
    688      1.34      fvdl 		return;
    689      1.34      fvdl 	}
    690      1.34      fvdl 	dl = (struct disklist *) malloc(len);
    691      1.34      fvdl 	sysctl(mib, 2, dl, &len, NULL, 0);
    692      1.34      fvdl 
    693      1.34      fvdl 	get_diskname(disk, diskname, sizeof diskname);
    694      1.34      fvdl 
    695      1.34      fvdl 	for (i = 0; i < dl->dl_nnativedisks; i++) {
    696      1.34      fvdl 		nip = &dl->dl_nativedisks[i];
    697      1.34      fvdl 		if (strcmp(diskname, nip->ni_devname))
    698      1.34      fvdl 			continue;
    699      1.34      fvdl 		/*
    700      1.34      fvdl 		 * XXX listing possible matches is better. This is ok
    701      1.34      fvdl 		 * for now because the user has a chance to change
    702      1.34      fvdl 		 * it later.
    703      1.34      fvdl 		 */
    704      1.34      fvdl 		if (nip->ni_nmatches != 0) {
    705      1.34      fvdl 			bip = &dl->dl_biosdisks[nip->ni_biosmatches[0]];
    706      1.34      fvdl 			dos_cylinders = bip->bi_cyl;
    707      1.34      fvdl 			dos_heads = bip->bi_head;
    708      1.34      fvdl 			dos_sectors = bip->bi_sec;
    709      1.34      fvdl 			dos_cylindersectors = bip->bi_head * bip->bi_sec;
    710      1.34      fvdl 			return;
    711      1.34      fvdl 		}
    712      1.34      fvdl 	}
    713      1.34      fvdl 	/* Allright, allright, make a stupid guess.. */
    714      1.11   ghudson 	intuit_translated_geometry();
    715      1.11   ghudson }
    716      1.34      fvdl 
    717      1.34      fvdl void
    718      1.34      fvdl configure_bootsel()
    719      1.34      fvdl {
    720      1.34      fvdl 	struct mbr_bootsel *mbs =
    721      1.34      fvdl 	    (struct mbr_bootsel *)&mboot.bootinst[MBR_BOOTSELOFF];
    722      1.38     soren 	int i, nused, firstpart = -1, item;
    723      1.34      fvdl 	char desc[PARTNAMESIZE + 2], *p;
    724      1.34      fvdl 	int timo, entry_changed = 0;
    725      1.38     soren 
    726      1.34      fvdl 	for (i = nused = 0; i < NMBRPART; ++i) {
    727      1.34      fvdl 		if (mboot.parts[i].mbrp_typ != 0) {
    728      1.34      fvdl 			if (firstpart == -1)
    729      1.34      fvdl 				firstpart = i;
    730      1.34      fvdl 			nused++;
    731      1.34      fvdl 		}
    732      1.34      fvdl 	}
    733      1.34      fvdl 
    734      1.34      fvdl 	if (nused == 0) {
    735      1.34      fvdl 		printf("No used partitions found. Partition the disk first.\n");
    736      1.34      fvdl 		return;
    737      1.34      fvdl 	}
    738      1.34      fvdl 
    739      1.34      fvdl 	if (mbs->magic != MBR_MAGIC) {
    740      1.34      fvdl 		if (!yesno("Bootselector not yet installed. Install it now?")) {
    741      1.34      fvdl 			printf("Bootselector not installed.\n");
    742      1.34      fvdl 			return;
    743      1.34      fvdl 		}
    744      1.34      fvdl 		bootsize = read_boot(DEFAULT_BOOTSELCODE, bootcode,
    745      1.34      fvdl 		    sizeof bootcode);
    746      1.34      fvdl 		memcpy(mboot.bootinst, bootcode, sizeof(mboot.bootinst));
    747      1.34      fvdl 		bootsel_modified = 1;
    748      1.34      fvdl 		mbs->flags |= BFL_SELACTIVE;
    749      1.34      fvdl 	} else {
    750      1.34      fvdl 		if (mbs->flags & BFL_SELACTIVE) {
    751      1.34      fvdl 			printf("The bootselector is installed and active.\n");
    752      1.34      fvdl 			if (!yesno("Do you want to change its settings?")) {
    753      1.34      fvdl 				if (yesno("Do you want to deactivate it?")) {
    754      1.34      fvdl 					mbs->flags &= ~BFL_SELACTIVE;
    755      1.34      fvdl 					bootsel_modified = 1;
    756      1.34      fvdl 					goto done;
    757      1.34      fvdl 				}
    758      1.34      fvdl 				return;
    759      1.34      fvdl 			}
    760      1.34      fvdl 		} else {
    761      1.34      fvdl 			printf("The bootselector is installed but not active.\n");
    762      1.34      fvdl 			if (yesno("Do you want to activate it?")) {
    763      1.34      fvdl 				mbs->flags |= BFL_SELACTIVE;
    764      1.34      fvdl 				bootsel_modified = 1;
    765      1.34      fvdl 			}
    766      1.34      fvdl 			if (!yesno("Do you want to change its settings?"))
    767      1.34      fvdl 				goto done;
    768      1.34      fvdl 		}
    769      1.34      fvdl 	}
    770      1.34      fvdl 
    771      1.34      fvdl 	printf("\n\nPartition table:\n");
    772      1.34      fvdl 	for (i = 0; i < NMBRPART; i++) {
    773      1.34      fvdl 		printf("%d: ", i);
    774      1.34      fvdl 		print_part(i);
    775      1.34      fvdl 	}
    776      1.34      fvdl 
    777      1.34      fvdl 	printf("\n\nCurrent boot selection menu option names:\n");
    778      1.34      fvdl 	for (i = 0; i < NMBRPART; i++) {
    779      1.34      fvdl 		if (mbs->nametab[i][0] != 0)
    780      1.34      fvdl 			printf("%d: %s\n", i, &mbs->nametab[i][0]);
    781      1.38     soren 		else
    782      1.34      fvdl 			printf("%d: <UNUSED>\n", i);
    783      1.34      fvdl 	}
    784      1.34      fvdl 	printf("\n");
    785      1.34      fvdl 
    786      1.34      fvdl 	item = firstpart;
    787      1.34      fvdl 
    788      1.34      fvdl editentries:
    789      1.34      fvdl 	while (1) {
    790      1.34      fvdl 		decimal("Change which entry (-1 quits)?", &item);
    791      1.34      fvdl 		if (item == -1)
    792      1.34      fvdl 			break;
    793      1.34      fvdl 		if (item < 0 || item >= NMBRPART) {
    794      1.38     soren 			printf("Invalid entry number\n");
    795      1.34      fvdl 			item = -1;
    796      1.34      fvdl 			continue;
    797      1.34      fvdl 		}
    798      1.38     soren 		if (mboot.parts[item].mbrp_typ == 0) {
    799      1.38     soren 			printf("The partition entry is unused\n");
    800      1.34      fvdl 			item = -1;
    801      1.34      fvdl 			continue;
    802      1.34      fvdl 		}
    803      1.34      fvdl 
    804      1.34      fvdl 		printf("Enter descriptions (max. 8 characters): ");
    805      1.38     soren 		rewind(stdin);
    806      1.38     soren 		fgets(desc, PARTNAMESIZE + 1, stdin);
    807      1.34      fvdl 		fpurge(stdin);
    808      1.34      fvdl 		p = strchr(desc, '\n');
    809      1.34      fvdl 		if (p != NULL)
    810      1.34      fvdl 			*p = 0;
    811      1.34      fvdl 		strcpy(&mbs->nametab[item][0], desc);
    812      1.38     soren 		entry_changed = bootsel_modified = 1;
    813      1.38     soren 
    814      1.34      fvdl 		item++;
    815      1.34      fvdl 	}
    816      1.34      fvdl 
    817      1.34      fvdl 	if (entry_changed)
    818      1.34      fvdl 		printf("Boot selection menu option names are now:\n");
    819      1.34      fvdl 
    820      1.34      fvdl 	firstpart = -1;
    821      1.34      fvdl 	for (i = 0; i < NMBRPART; i++) {
    822      1.34      fvdl 		if (mbs->nametab[i][0] != 0) {
    823      1.34      fvdl 			firstpart = i;
    824      1.34      fvdl 			if (entry_changed)
    825      1.34      fvdl 				printf("%d: %s\n", i, &mbs->nametab[i][0]);
    826      1.34      fvdl 		} else {
    827      1.38     soren 			if (entry_changed)
    828      1.34      fvdl 				printf("%d: <UNUSED>\n", i);
    829      1.34      fvdl 		}
    830      1.34      fvdl 	}
    831      1.34      fvdl 	if (entry_changed)
    832      1.34      fvdl 		printf("\n");
    833      1.34      fvdl 
    834      1.34      fvdl 	if (firstpart == -1) {
    835      1.34      fvdl 		printf("All menu entries are now inactive.\n");
    836      1.34      fvdl 		if (!yesno("Are you sure about this?"))
    837      1.34      fvdl 			goto editentries;
    838      1.34      fvdl 	} else {
    839      1.34      fvdl 		if (!(mbs->flags & BFL_SELACTIVE)) {
    840      1.34      fvdl 			printf("The bootselector is not yet active.\n");
    841      1.34      fvdl 			if (yesno("Activate it now?"))
    842      1.34      fvdl 				mbs->flags |= BFL_SELACTIVE;
    843      1.34      fvdl 		}
    844      1.34      fvdl 	}
    845      1.37   thorpej 
    846      1.37   thorpej 	/* bootsel is dirty from here on out. */
    847      1.37   thorpej 	bootsel_modified = 1;
    848      1.34      fvdl 
    849      1.34      fvdl 	/* The timeout value is in ticks, 18.2 Hz. Avoid using floats. */
    850      1.34      fvdl 	timo = ((1000 * mbs->timeo) / 18200);
    851      1.34      fvdl 	do {
    852      1.34      fvdl 		decimal("Timeout value", &timo);
    853      1.34      fvdl 	} while (timo < 0 || timo > 3600);
    854      1.34      fvdl 	mbs->timeo = (u_int16_t)((timo * 18200) / 1000);
    855      1.34      fvdl 
    856      1.34      fvdl 	printf("Select the default boot option. Options are:\n\n");
    857      1.34      fvdl 	for (i = 0; i < NMBRPART; i++) {
    858      1.34      fvdl 		if (mbs->nametab[i][0] != 0)
    859      1.34      fvdl 			printf("%d: %s\n", i, &mbs->nametab[i][0]);
    860      1.34      fvdl 	}
    861      1.34      fvdl 	for (i = 4; i < 10; i++)
    862      1.34      fvdl 		printf("%d: Harddisk %d\n", i, i - 4);
    863      1.34      fvdl 	printf("10: The first active partition\n");
    864      1.34      fvdl 
    865      1.34      fvdl 	if (mbs->defkey == SCAN_ENTER)
    866      1.34      fvdl 		item = 10;
    867      1.34      fvdl 	else
    868      1.34      fvdl 		item = mbs->defkey - SCAN_F1;
    869      1.34      fvdl 
    870      1.34      fvdl 	if (item < 0 || item > 10 || mbs->nametab[item][0] == 0)
    871      1.34      fvdl 		item = 10;
    872      1.34      fvdl 
    873      1.34      fvdl 	do {
    874      1.34      fvdl 		decimal("Default boot option", &item);
    875      1.34      fvdl 	} while (item < 0 || item > 10 ||
    876      1.34      fvdl 		    (item <= 3 && mbs->nametab[item][0] == 0));
    877      1.34      fvdl 
    878      1.34      fvdl 	if (item == 10)
    879      1.34      fvdl 		mbs->defkey = SCAN_ENTER;
    880      1.34      fvdl 	else
    881      1.34      fvdl 		mbs->defkey = SCAN_F1 + item;
    882      1.34      fvdl 
    883      1.35      fvdl done:
    884      1.35      fvdl 	for (i = 0; i < NMBRPART; i++) {
    885      1.36      fvdl 		if (mboot.parts[i].mbrp_typ != 0 &&
    886      1.36      fvdl 		   mboot.parts[i].mbrp_start >=
    887      1.35      fvdl 		     (dos_cylinders * dos_heads * dos_sectors)) {
    888      1.35      fvdl 			mbs->flags |= BFL_EXTINT13;
    889      1.35      fvdl 			break;
    890      1.35      fvdl 		}
    891      1.35      fvdl 	}
    892      1.37   thorpej 
    893      1.34      fvdl 	if (bootsel_modified != 0 && !yesno("Update the bootselector?"))
    894      1.34      fvdl 		bootsel_modified = 0;
    895      1.34      fvdl }
    896      1.34      fvdl #endif
    897      1.34      fvdl 
    898      1.11   ghudson 
    899      1.11   ghudson /* Prerequisite: the disklabel parameters and master boot record must
    900      1.11   ghudson  *		 have been read (i.e. dos_* and mboot are meaningful).
    901      1.11   ghudson  * Specification: modifies dos_cylinders, dos_heads, dos_sectors, and
    902      1.11   ghudson  *		  dos_cylindersectors to be consistent with what the
    903      1.11   ghudson  *		  partition table is using, if we can find a geometry
    904      1.11   ghudson  *		  which is consistent with all partition table entries.
    905      1.11   ghudson  *		  We may get the number of cylinders slightly wrong (in
    906      1.11   ghudson  *		  the conservative direction).  The idea is to be able
    907      1.11   ghudson  *		  to create a NetBSD partition on a disk we don't know
    908      1.11   ghudson  *		  the translated geometry of.
    909      1.11   ghudson  * This whole routine should be replaced with a kernel interface to get
    910      1.11   ghudson  * the BIOS geometry (which in turn requires modifications to the i386
    911      1.11   ghudson  * boot loader to pass in the BIOS geometry for each disk). */
    912      1.11   ghudson void
    913      1.11   ghudson intuit_translated_geometry()
    914      1.15      phil {
    915      1.11   ghudson 
    916      1.11   ghudson 	int cylinders = -1, heads = -1, sectors = -1, i, j;
    917      1.11   ghudson 	int c1, h1, s1, c2, h2, s2;
    918      1.11   ghudson 	long a1, a2;
    919      1.11   ghudson 	quad_t num, denom;
    920      1.11   ghudson 
    921      1.32   thorpej 	/* Try to deduce the number of heads from two different mappings. */
    922      1.11   ghudson 	for (i = 0; i < NMBRPART * 2; i++) {
    923      1.11   ghudson 		if (get_mapping(i, &c1, &h1, &s1, &a1) < 0)
    924      1.11   ghudson 			continue;
    925      1.11   ghudson 		for (j = 0; j < 8; j++) {
    926      1.11   ghudson 			if (get_mapping(j, &c2, &h2, &s2, &a2) < 0)
    927      1.22     enami 				continue;
    928      1.22     enami 			num = (quad_t)h1*(a2-s2) - (quad_t)h2*(a1-s1);
    929      1.11   ghudson 			denom = (quad_t)c2*(a1-s1) - (quad_t)c1*(a2-s2);
    930      1.11   ghudson 			if (denom != 0 && num % denom == 0) {
    931      1.11   ghudson 				heads = num / denom;
    932      1.11   ghudson 				break;
    933      1.11   ghudson 			}
    934      1.11   ghudson 		}
    935      1.11   ghudson 		if (heads != -1)
    936      1.11   ghudson 			break;
    937      1.11   ghudson 	}
    938      1.11   ghudson 
    939      1.11   ghudson 	if (heads == -1)
    940      1.11   ghudson 		return;
    941      1.11   ghudson 
    942      1.32   thorpej 	/* Now figure out the number of sectors from a single mapping. */
    943      1.11   ghudson 	for (i = 0; i < NMBRPART * 2; i++) {
    944      1.11   ghudson 		if (get_mapping(i, &c1, &h1, &s1, &a1) < 0)
    945      1.11   ghudson 			continue;
    946      1.11   ghudson 		num = a1 - s1;
    947      1.11   ghudson 		denom = c1 * heads + h1;
    948      1.11   ghudson 		if (denom != 0 && num % denom == 0) {
    949      1.11   ghudson 			sectors = num / denom;
    950      1.11   ghudson 			break;
    951      1.11   ghudson 		}
    952      1.11   ghudson 	}
    953      1.11   ghudson 
    954      1.11   ghudson 	if (sectors == -1)
    955      1.11   ghudson 		return;
    956      1.11   ghudson 
    957      1.24   ghudson 	/* Estimate the number of cylinders. */
    958      1.11   ghudson 	cylinders = disklabel.d_secperunit / heads / sectors;
    959      1.11   ghudson 
    960      1.11   ghudson 	/* Now verify consistency with each of the partition table entries.
    961      1.11   ghudson 	 * Be willing to shove cylinders up a little bit to make things work,
    962      1.32   thorpej 	 * but translation mismatches are fatal. */
    963      1.11   ghudson 	for (i = 0; i < NMBRPART * 2; i++) {
    964      1.11   ghudson 		if (get_mapping(i, &c1, &h1, &s1, &a1) < 0)
    965      1.11   ghudson 			continue;
    966      1.11   ghudson 		if (sectors * (c1 * heads + h1) + s1 != a1)
    967      1.11   ghudson 			return;
    968      1.11   ghudson 		if (c1 >= cylinders)
    969      1.11   ghudson 			cylinders = c1 + 1;
    970      1.11   ghudson 	}
    971      1.11   ghudson 
    972      1.11   ghudson 	/* Everything checks out.  Reset the geometry to use for further
    973      1.11   ghudson 	 * calculations. */
    974      1.11   ghudson 	dos_cylinders = cylinders;
    975      1.11   ghudson 	dos_heads = heads;
    976      1.11   ghudson 	dos_sectors = sectors;
    977      1.11   ghudson 	dos_cylindersectors = heads * sectors;
    978      1.11   ghudson }
    979      1.11   ghudson 
    980      1.11   ghudson /* For the purposes of intuit_translated_geometry(), treat the partition
    981      1.11   ghudson  * table as a list of eight mapping between (cylinder, head, sector)
    982      1.11   ghudson  * triplets and absolute sectors.  Get the relevant geometry triplet and
    983      1.11   ghudson  * absolute sectors for a given entry, or return -1 if it isn't present.
    984      1.11   ghudson  * Note: for simplicity, the returned sector is 0-based. */
    985      1.11   ghudson int
    986      1.11   ghudson get_mapping(i, cylinder, head, sector, absolute)
    987      1.11   ghudson 	int i, *cylinder, *head, *sector;
    988      1.11   ghudson 	long *absolute;
    989      1.32   thorpej {
    990      1.11   ghudson 	struct mbr_partition *part = &mboot.parts[i / 2];
    991      1.32   thorpej 
    992      1.11   ghudson 	if (part->mbrp_typ == 0)
    993      1.11   ghudson 		return -1;
    994      1.32   thorpej 	if (i % 2 == 0) {
    995      1.32   thorpej 		*cylinder = MBR_PCYL(part->mbrp_scyl, part->mbrp_ssect);
    996      1.32   thorpej 		*head = part->mbrp_shd;
    997      1.32   thorpej 		*sector = MBR_PSECT(part->mbrp_ssect) - 1;
    998      1.11   ghudson 		*absolute = getlong(&part->mbrp_start);
    999      1.32   thorpej 	} else {
   1000      1.32   thorpej 		*cylinder = MBR_PCYL(part->mbrp_ecyl, part->mbrp_esect);
   1001      1.32   thorpej 		*head = part->mbrp_ehd;
   1002      1.32   thorpej 		*sector = MBR_PSECT(part->mbrp_esect) - 1;
   1003      1.32   thorpej 		*absolute = getlong(&part->mbrp_start)
   1004      1.11   ghudson 		    + getlong(&part->mbrp_size) - 1;
   1005      1.11   ghudson 	}
   1006       1.1       cgd 	return 0;
   1007       1.1       cgd }
   1008       1.4   mycroft 
   1009      1.15      phil void
   1010      1.15      phil change_part(part, csysid, cstart, csize)
   1011       1.1       cgd 	int part, csysid, cstart, csize;
   1012      1.32   thorpej {
   1013       1.1       cgd 	struct mbr_partition *partp;
   1014       1.4   mycroft 
   1015       1.1       cgd 	partp = &mboot.parts[part];
   1016      1.15      phil 
   1017      1.29        ws 	if (s_flag) {
   1018      1.29        ws 		if (csysid == 0 && cstart == 0 && csize == 0)
   1019      1.29        ws 			memset(partp, 0, sizeof *partp);
   1020      1.32   thorpej 		else {
   1021      1.28        ws 			partp->mbrp_typ = csysid;
   1022      1.29        ws #if 0
   1023      1.28        ws 			checkcyl(cstart / dos_cylindersectors);
   1024      1.32   thorpej #endif
   1025      1.32   thorpej 			putlong(&partp->mbrp_start, cstart);
   1026      1.32   thorpej 			putlong(&partp->mbrp_size, csize);
   1027      1.32   thorpej 			dos(getlong(&partp->mbrp_start),
   1028      1.32   thorpej 			    &partp->mbrp_scyl, &partp->mbrp_shd, &partp->mbrp_ssect);
   1029      1.32   thorpej 			dos(getlong(&partp->mbrp_start)
   1030      1.32   thorpej 			    + getlong(&partp->mbrp_size) - 1,
   1031      1.29        ws 			    &partp->mbrp_ecyl, &partp->mbrp_ehd, &partp->mbrp_esect);
   1032      1.15      phil 		}
   1033      1.15      phil 		if (f_flag)
   1034      1.15      phil 			return;
   1035      1.15      phil 	}
   1036      1.15      phil 
   1037       1.4   mycroft 	printf("The data for partition %d is:\n", part);
   1038       1.4   mycroft 	print_part(part);
   1039       1.4   mycroft 	if (!u_flag || !yesno("Do you want to change it?"))
   1040       1.1       cgd 		return;
   1041       1.1       cgd 
   1042       1.5   mycroft 	do {
   1043       1.5   mycroft 		{
   1044       1.5   mycroft 			int sysid, start, size;
   1045      1.32   thorpej 
   1046      1.32   thorpej 			sysid = partp->mbrp_typ,
   1047      1.32   thorpej 			start = getlong(&partp->mbrp_start),
   1048       1.5   mycroft 			size = getlong(&partp->mbrp_size);
   1049       1.5   mycroft 			decimal("sysid", &sysid);
   1050       1.5   mycroft 			decimal("start", &start);
   1051      1.32   thorpej 			decimal("size", &size);
   1052      1.32   thorpej 			partp->mbrp_typ = sysid;
   1053      1.32   thorpej 			putlong(&partp->mbrp_start, start);
   1054       1.5   mycroft 			putlong(&partp->mbrp_size, size);
   1055       1.1       cgd 		}
   1056       1.7   mycroft 
   1057       1.5   mycroft 		if (yesno("Explicitly specify beg/end address?")) {
   1058       1.4   mycroft 			int tsector, tcylinder, thead;
   1059      1.32   thorpej 
   1060      1.32   thorpej 			tcylinder = MBR_PCYL(partp->mbrp_scyl, partp->mbrp_ssect);
   1061      1.32   thorpej 			thead = partp->mbrp_shd;
   1062       1.5   mycroft 			tsector = MBR_PSECT(partp->mbrp_ssect);
   1063      1.28        ws 			decimal("beginning cylinder", &tcylinder);
   1064      1.28        ws #if 0
   1065      1.28        ws 			checkcyl(tcylinder);
   1066       1.5   mycroft #endif
   1067       1.5   mycroft 			decimal("beginning head", &thead);
   1068      1.32   thorpej 			decimal("beginning sector", &tsector);
   1069      1.32   thorpej 			partp->mbrp_scyl = DOSCYL(tcylinder);
   1070      1.32   thorpej 			partp->mbrp_shd = thead;
   1071      1.32   thorpej 			partp->mbrp_ssect = DOSSECT(tsector, tcylinder);
   1072      1.32   thorpej 
   1073      1.32   thorpej 			tcylinder = MBR_PCYL(partp->mbrp_ecyl, partp->mbrp_esect);
   1074      1.32   thorpej 			thead = partp->mbrp_ehd;
   1075       1.5   mycroft 			tsector = MBR_PSECT(partp->mbrp_esect);
   1076       1.5   mycroft 			decimal("ending cylinder", &tcylinder);
   1077       1.5   mycroft 			decimal("ending head", &thead);
   1078      1.32   thorpej 			decimal("ending sector", &tsector);
   1079      1.32   thorpej 			partp->mbrp_ecyl = DOSCYL(tcylinder);
   1080      1.32   thorpej 			partp->mbrp_ehd = thead;
   1081       1.1       cgd 			partp->mbrp_esect = DOSSECT(tsector, tcylinder);
   1082      1.28        ws 		} else {
   1083      1.32   thorpej 
   1084      1.32   thorpej 			if (partp->mbrp_typ == 0
   1085      1.32   thorpej 			    && getlong(&partp->mbrp_start) == 0
   1086      1.29        ws 			    && getlong(&partp->mbrp_size) == 0)
   1087      1.29        ws 				memset(partp, 0, sizeof *partp);
   1088      1.28        ws 			else {
   1089      1.32   thorpej #if 0
   1090      1.29        ws 				checkcyl(getlong(&partp->mbrp_start)
   1091      1.28        ws 					 / dos_cylindersectors);
   1092      1.32   thorpej #endif
   1093      1.32   thorpej 				dos(getlong(&partp->mbrp_start), &partp->mbrp_scyl,
   1094      1.32   thorpej 				    &partp->mbrp_shd, &partp->mbrp_ssect);
   1095      1.32   thorpej 				dos(getlong(&partp->mbrp_start)
   1096      1.32   thorpej 				    + getlong(&partp->mbrp_size) - 1,
   1097      1.32   thorpej 				    &partp->mbrp_ecyl, &partp->mbrp_ehd,
   1098      1.29        ws 				    &partp->mbrp_esect);
   1099       1.1       cgd 			}
   1100       1.4   mycroft 		}
   1101       1.4   mycroft 
   1102       1.7   mycroft 		print_part(part);
   1103       1.1       cgd 	} while (!yesno("Is this entry okay?"));
   1104       1.1       cgd }
   1105       1.4   mycroft 
   1106       1.1       cgd void
   1107       1.1       cgd print_params()
   1108       1.4   mycroft {
   1109      1.15      phil 
   1110      1.31  jonathan 	if (sh_flag) {
   1111      1.31  jonathan 		printf ("DLCYL=%d\nDLHEAD=%d\nDLSEC=%d\nDLSIZE=%d\n",
   1112      1.14      phil 			cylinders, heads, sectors, disksectors);
   1113      1.14      phil 		printf ("BCYL=%d\nBHEAD=%d\nBSEC=%d\n",
   1114      1.14      phil 			dos_cylinders, dos_heads, dos_sectors);
   1115      1.14      phil 		return;
   1116      1.14      phil 	}
   1117      1.15      phil 
   1118      1.34      fvdl 	/* Not sh_flag */
   1119      1.34      fvdl 	printf("NetBSD disklabel disk geometry:\n");
   1120       1.5   mycroft 	printf("cylinders: %d heads: %d sectors/track: %d (%d sectors/cylinder)\n\n",
   1121      1.34      fvdl 	    cylinders, heads, sectors, cylindersectors);
   1122      1.34      fvdl 	printf("BIOS disk geometry:\n");
   1123       1.5   mycroft 	printf("cylinders: %d heads: %d sectors/track: %d (%d sectors/cylinder)\n\n",
   1124       1.1       cgd 	    dos_cylinders, dos_heads, dos_sectors, dos_cylindersectors);
   1125       1.1       cgd }
   1126       1.4   mycroft 
   1127       1.1       cgd void
   1128       1.4   mycroft change_active(which)
   1129       1.1       cgd 	int which;
   1130      1.32   thorpej {
   1131       1.4   mycroft 	struct mbr_partition *partp;
   1132      1.15      phil 	int part;
   1133       1.4   mycroft 	int active = 4;
   1134       1.4   mycroft 
   1135       1.1       cgd 	partp = &mboot.parts[0];
   1136       1.1       cgd 
   1137       1.1       cgd 	if (a_flag && which != -1)
   1138       1.4   mycroft 		active = which;
   1139      1.32   thorpej 	else {
   1140      1.32   thorpej 		for (part = 0; part < NMBRPART; part++)
   1141       1.4   mycroft 			if (partp[part].mbrp_flag & ACTIVE)
   1142       1.4   mycroft 				active = part;
   1143      1.15      phil 	}
   1144      1.15      phil 	if (!f_flag) {
   1145      1.15      phil 		if (yesno("Do you want to change the active partition?")) {
   1146      1.15      phil 			printf ("Choosing 4 will make no partition active.\n");
   1147      1.15      phil 			do {
   1148      1.15      phil 				decimal("active partition", &active);
   1149      1.15      phil 			} while (!yesno("Are you happy with this choice?"));
   1150      1.15      phil 		} else
   1151      1.15      phil 			return;
   1152      1.15      phil 	} else
   1153      1.15      phil 		if (active != 4)
   1154      1.15      phil 			printf ("Making partition %d active.\n", active);
   1155      1.32   thorpej 
   1156      1.32   thorpej 	for (part = 0; part < NMBRPART; part++)
   1157      1.15      phil 		partp[part].mbrp_flag &= ~ACTIVE;
   1158      1.32   thorpej 	if (active < 4)
   1159       1.1       cgd 		partp[active].mbrp_flag |= ACTIVE;
   1160       1.1       cgd }
   1161       1.4   mycroft 
   1162       1.1       cgd void
   1163       1.1       cgd get_params_to_use()
   1164      1.16      phil {
   1165      1.16      phil 	if (b_flag) {
   1166      1.16      phil 		dos_cylinders = b_cyl;
   1167      1.16      phil 		dos_heads = b_head;
   1168      1.16      phil 		dos_sectors = b_sec;
   1169      1.16      phil 		dos_cylindersectors = dos_heads * dos_sectors;
   1170      1.16      phil 		return;
   1171       1.4   mycroft 	}
   1172       1.1       cgd 
   1173       1.4   mycroft 	print_params();
   1174       1.4   mycroft 	if (yesno("Do you want to change our idea of what BIOS thinks?")) {
   1175       1.5   mycroft 		do {
   1176       1.5   mycroft 			decimal("BIOS's idea of #cylinders", &dos_cylinders);
   1177       1.5   mycroft 			decimal("BIOS's idea of #heads", &dos_heads);
   1178       1.5   mycroft 			decimal("BIOS's idea of #sectors", &dos_sectors);
   1179       1.1       cgd 			dos_cylindersectors = dos_heads * dos_sectors;
   1180       1.4   mycroft 			print_params();
   1181       1.1       cgd 		} while (!yesno("Are you happy with this choice?"));
   1182       1.1       cgd 	}
   1183       1.1       cgd }
   1184       1.1       cgd 
   1185       1.1       cgd /***********************************************\
   1186       1.1       cgd * Change real numbers into strange dos numbers	*
   1187       1.4   mycroft \***********************************************/
   1188       1.5   mycroft void
   1189       1.5   mycroft dos(sector, cylinderp, headp, sectorp)
   1190       1.5   mycroft 	int sector;
   1191       1.4   mycroft 	unsigned char *cylinderp, *headp, *sectorp;
   1192       1.5   mycroft {
   1193      1.40      fvdl 	int cylinder, head;
   1194      1.40      fvdl 	int biosmaxsec;
   1195      1.40      fvdl 
   1196      1.40      fvdl 	biosmaxsec = dos_cylinders * dos_heads * dos_sectors - 1;
   1197      1.40      fvdl 	if (sector > biosmaxsec)
   1198       1.4   mycroft 		sector = biosmaxsec;
   1199       1.5   mycroft 
   1200      1.28        ws 	cylinder = sector / dos_cylindersectors;
   1201       1.5   mycroft 
   1202       1.4   mycroft 	sector -= cylinder * dos_cylindersectors;
   1203       1.5   mycroft 
   1204       1.5   mycroft 	head = sector / dos_sectors;
   1205       1.4   mycroft 	sector -= head * dos_sectors;
   1206       1.5   mycroft 
   1207       1.5   mycroft 	*cylinderp = DOSCYL(cylinder);
   1208       1.5   mycroft 	*headp = head;
   1209       1.1       cgd 	*sectorp = DOSSECT(sector + 1, cylinder);
   1210       1.1       cgd }
   1211      1.28        ws 
   1212      1.28        ws #if 0
   1213      1.28        ws void
   1214      1.28        ws checkcyl(cyl)
   1215      1.28        ws 	int cyl;
   1216      1.28        ws {
   1217      1.28        ws 	if (cyl >= MAXCYL)
   1218      1.28        ws 		warnx("partition start beyond BIOS limit");
   1219      1.28        ws }
   1220      1.28        ws #endif
   1221       1.1       cgd 
   1222       1.1       cgd int fd;
   1223       1.4   mycroft 
   1224       1.1       cgd int
   1225       1.4   mycroft open_disk(u_flag)
   1226       1.1       cgd 	int u_flag;
   1227      1.18     lukem {
   1228       1.4   mycroft 	static char namebuf[MAXPATHLEN + 1];
   1229       1.1       cgd 	struct stat st;
   1230      1.19     lukem 
   1231      1.19     lukem 	fd = opendisk(disk, u_flag ? O_RDWR : O_RDONLY, namebuf,
   1232      1.18     lukem 	    sizeof(namebuf), 0);
   1233      1.18     lukem 	if (fd < 0) {
   1234       1.4   mycroft 		warn("%s", namebuf);
   1235       1.4   mycroft 		return (-1);
   1236      1.18     lukem 	}
   1237       1.4   mycroft 	disk = namebuf;
   1238       1.4   mycroft 	if (fstat(fd, &st) == -1) {
   1239       1.4   mycroft 		close(fd);
   1240       1.4   mycroft 		warn("%s", disk);
   1241       1.1       cgd 		return (-1);
   1242       1.7   mycroft 	}
   1243       1.4   mycroft 	if (!S_ISCHR(st.st_mode) && !S_ISREG(st.st_mode)) {
   1244       1.7   mycroft 		close(fd);
   1245       1.4   mycroft 		warnx("%s is not a character device or regular file", disk);
   1246       1.1       cgd 		return (-1);
   1247       1.4   mycroft 	}
   1248       1.4   mycroft 	if (get_params() == -1) {
   1249       1.4   mycroft 		close(fd);
   1250       1.1       cgd 		return (-1);
   1251       1.4   mycroft 	}
   1252       1.1       cgd 	return (0);
   1253       1.1       cgd }
   1254       1.4   mycroft 
   1255       1.1       cgd int
   1256       1.4   mycroft read_disk(sector, buf)
   1257       1.4   mycroft 	int sector;
   1258       1.1       cgd 	void *buf;
   1259       1.4   mycroft {
   1260       1.4   mycroft 
   1261       1.4   mycroft 	if (lseek(fd, (off_t)(sector * 512), 0) == -1)
   1262       1.4   mycroft 		return (-1);
   1263       1.1       cgd 	return (read(fd, buf, 512));
   1264       1.1       cgd }
   1265       1.4   mycroft 
   1266       1.1       cgd int
   1267       1.4   mycroft write_disk(sector, buf)
   1268       1.4   mycroft 	int sector;
   1269       1.1       cgd 	void *buf;
   1270       1.4   mycroft {
   1271       1.4   mycroft 
   1272       1.4   mycroft 	if (lseek(fd, (off_t)(sector * 512), 0) == -1)
   1273       1.4   mycroft 		return (-1);
   1274       1.1       cgd 	return (write(fd, buf, 512));
   1275       1.1       cgd }
   1276       1.4   mycroft 
   1277       1.4   mycroft int
   1278       1.1       cgd get_params()
   1279       1.1       cgd {
   1280  1.41.2.1        he 
   1281  1.41.2.1        he 	if (ioctl(fd, DIOCGDEFLABEL, &disklabel) == -1) {
   1282  1.41.2.1        he 		warn("DIOCGDEFLABEL");
   1283  1.41.2.1        he 		if (ioctl(fd, DIOCGDINFO, &disklabel) == -1) {
   1284  1.41.2.1        he 			warn("DIOCGDINFO");
   1285  1.41.2.1        he 			return (-1);
   1286       1.4   mycroft 		}
   1287       1.1       cgd 	}
   1288       1.5   mycroft 
   1289       1.4   mycroft 	dos_cylinders = cylinders = disklabel.d_ncylinders;
   1290       1.4   mycroft 	dos_heads = heads = disklabel.d_ntracks;
   1291       1.5   mycroft 	dos_sectors = sectors = disklabel.d_nsectors;
   1292      1.31  jonathan 	dos_cylindersectors = cylindersectors = heads * sectors;
   1293       1.1       cgd 	disksectors = disklabel.d_secperunit;
   1294       1.4   mycroft 
   1295       1.1       cgd 	return (0);
   1296       1.1       cgd }
   1297       1.4   mycroft 
   1298       1.1       cgd int
   1299       1.1       cgd read_s0()
   1300       1.4   mycroft {
   1301       1.4   mycroft 
   1302       1.4   mycroft 	if (read_disk(0, mboot.bootinst) == -1) {
   1303       1.4   mycroft 		warn("can't read fdisk partition table");
   1304       1.1       cgd 		return (-1);
   1305      1.32   thorpej 	}
   1306      1.12   thorpej 	if (getshort(&mboot.signature) != MBR_MAGIC) {
   1307       1.4   mycroft 		warnx("invalid fdisk partition table found");
   1308       1.1       cgd 		return (-1);
   1309       1.4   mycroft 	}
   1310       1.1       cgd 	return (0);
   1311       1.1       cgd }
   1312       1.4   mycroft 
   1313       1.1       cgd int
   1314       1.1       cgd write_s0()
   1315      1.30        ws {
   1316       1.4   mycroft 	int flag, i;
   1317       1.1       cgd 
   1318       1.1       cgd 	/*
   1319       1.1       cgd 	 * write enable label sector before write (if necessary),
   1320       1.1       cgd 	 * disable after writing.
   1321       1.1       cgd 	 * needed if the disklabel protected area also protects
   1322       1.1       cgd 	 * sector 0. (e.g. empty disk)
   1323       1.1       cgd 	 */
   1324       1.1       cgd 	flag = 1;
   1325       1.4   mycroft 	if (ioctl(fd, DIOCWLABEL, &flag) < 0)
   1326       1.4   mycroft 		warn("DIOCWLABEL");
   1327       1.4   mycroft 	if (write_disk(0, mboot.bootinst) == -1) {
   1328       1.1       cgd 		warn("can't write fdisk partition table");
   1329       1.4   mycroft 		return -1;
   1330      1.30        ws 	}
   1331      1.30        ws 	for (i = bootsize; (i -= 0x200) > 0;)
   1332      1.30        ws 		if (write_disk(i / 0x200, bootcode + i) == -1) {
   1333      1.30        ws 			warn("can't write bootcode");
   1334      1.30        ws 			return -1;
   1335       1.1       cgd 		}
   1336       1.4   mycroft 	flag = 0;
   1337       1.4   mycroft 	if (ioctl(fd, DIOCWLABEL, &flag) < 0)
   1338      1.16      phil 		warn("DIOCWLABEL");
   1339       1.1       cgd 	return 0;
   1340       1.1       cgd }
   1341       1.4   mycroft 
   1342       1.4   mycroft int
   1343       1.4   mycroft yesno(str)
   1344       1.4   mycroft 	char *str;
   1345       1.4   mycroft {
   1346       1.1       cgd 	int ch, first;
   1347       1.1       cgd 
   1348       1.1       cgd 	printf("%s [n] ", str);
   1349       1.4   mycroft 
   1350       1.4   mycroft 	first = ch = getchar();
   1351       1.4   mycroft 	while (ch != '\n' && ch != EOF)
   1352       1.4   mycroft 		ch = getchar();
   1353       1.1       cgd 	return (first == 'y' || first == 'Y');
   1354       1.1       cgd }
   1355       1.5   mycroft 
   1356       1.5   mycroft void
   1357       1.4   mycroft decimal(str, num)
   1358       1.5   mycroft 	char *str;
   1359       1.1       cgd 	int *num;
   1360       1.8       cgd {
   1361       1.4   mycroft 	int acc = 0;
   1362       1.1       cgd 	char *cp;
   1363       1.5   mycroft 
   1364      1.34      fvdl 	for (;; printf("%s is not a valid decimal number.\n", lbuf)) {
   1365       1.1       cgd 		printf("%s: [%d] ", str, *num);
   1366       1.1       cgd 
   1367       1.7   mycroft 		fgets(lbuf, LBUF, stdin);
   1368       1.7   mycroft 		lbuf[strlen(lbuf)-1] = '\0';
   1369       1.7   mycroft 		cp = lbuf;
   1370       1.7   mycroft 
   1371       1.7   mycroft 		cp += strspn(cp, " \t");
   1372       1.5   mycroft 		if (*cp == '\0')
   1373       1.1       cgd 			return;
   1374      1.34      fvdl 
   1375       1.7   mycroft 		if (!isdigit(*cp) && *cp != '-')
   1376       1.5   mycroft 			continue;
   1377       1.7   mycroft 		acc = strtol(lbuf, &cp, 10);
   1378       1.5   mycroft 
   1379       1.5   mycroft 		cp += strspn(cp, " \t");
   1380       1.5   mycroft 		if (*cp != '\0')
   1381       1.1       cgd 			continue;
   1382       1.5   mycroft 
   1383       1.5   mycroft 		*num = acc;
   1384       1.1       cgd 		return;
   1385       1.1       cgd 	}
   1386       1.1       cgd 
   1387       1.1       cgd }
   1388       1.4   mycroft 
   1389       1.4   mycroft int
   1390       1.4   mycroft type_match(key, item)
   1391       1.4   mycroft 	const void *key, *item;
   1392       1.4   mycroft {
   1393       1.4   mycroft 	const int *typep = key;
   1394       1.4   mycroft 	const struct part_type *ptr = item;
   1395       1.4   mycroft 
   1396       1.4   mycroft 	if (*typep < ptr->type)
   1397       1.4   mycroft 		return (-1);
   1398       1.4   mycroft 	if (*typep > ptr->type)
   1399       1.4   mycroft 		return (1);
   1400       1.4   mycroft 	return (0);
   1401       1.4   mycroft }
   1402       1.4   mycroft 
   1403       1.4   mycroft char *
   1404       1.4   mycroft get_type(type)
   1405       1.4   mycroft 	int type;
   1406       1.4   mycroft {
   1407       1.4   mycroft 	struct part_type *ptr;
   1408       1.4   mycroft 
   1409       1.4   mycroft 	ptr = bsearch(&type, part_types,
   1410       1.4   mycroft 	    sizeof(part_types) / sizeof(struct part_type),
   1411       1.4   mycroft 	    sizeof(struct part_type), type_match);
   1412       1.4   mycroft 	if (ptr == 0)
   1413      1.16      phil 		return ("unknown");
   1414       1.1       cgd 	return (ptr->name);
   1415                     }
   1416