2000-07-06 21:22:43 +04:00
|
|
|
|
/* $NetBSD: fdisk.c,v 1.42 2000/07/06 17:22:43 thorpej Exp $ */
|
1995-03-18 17:54:19 +03:00
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
/*
|
1993-04-09 23:23:56 +04:00
|
|
|
|
* Mach Operating System
|
|
|
|
|
* Copyright (c) 1992 Carnegie Mellon University
|
|
|
|
|
* All Rights Reserved.
|
1994-09-23 08:30:13 +04:00
|
|
|
|
*
|
1993-04-09 23:23:56 +04:00
|
|
|
|
* Permission to use, copy, modify and distribute this software and its
|
|
|
|
|
* documentation is hereby granted, provided that both the copyright
|
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
1994-09-23 08:30:13 +04:00
|
|
|
|
*
|
1993-04-09 23:23:56 +04:00
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
|
|
|
|
|
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
1994-09-23 08:30:13 +04:00
|
|
|
|
*
|
1993-04-09 23:23:56 +04:00
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
1994-09-23 08:30:13 +04:00
|
|
|
|
*
|
1993-04-09 23:23:56 +04:00
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
|
* School of Computer Science
|
|
|
|
|
* Carnegie Mellon University
|
|
|
|
|
* Pittsburgh PA 15213-3890
|
1994-09-23 08:30:13 +04:00
|
|
|
|
*
|
1993-04-09 23:23:56 +04:00
|
|
|
|
* any improvements or extensions that they make and grant Carnegie Mellon
|
|
|
|
|
* the rights to redistribute these changes.
|
|
|
|
|
*/
|
|
|
|
|
|
1997-09-06 01:26:57 +04:00
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
1993-08-02 21:48:44 +04:00
|
|
|
|
#ifndef lint
|
2000-07-06 21:22:43 +04:00
|
|
|
|
__RCSID("$NetBSD: fdisk.c,v 1.42 2000/07/06 17:22:43 thorpej Exp $");
|
1993-08-02 21:48:44 +04:00
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
1993-04-09 23:23:56 +04:00
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/disklabel.h>
|
1999-01-28 00:41:31 +03:00
|
|
|
|
#include <sys/disklabel_mbr.h>
|
1993-04-09 23:23:56 +04:00
|
|
|
|
#include <sys/ioctl.h>
|
1997-09-14 17:52:26 +04:00
|
|
|
|
#include <sys/param.h>
|
1994-09-23 08:30:13 +04:00
|
|
|
|
#include <sys/stat.h>
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-12-05 23:15:31 +03:00
|
|
|
|
#include <ctype.h>
|
1994-09-23 08:30:13 +04:00
|
|
|
|
#include <err.h>
|
1997-09-14 17:52:26 +04:00
|
|
|
|
#include <errno.h>
|
1994-09-23 08:30:13 +04:00
|
|
|
|
#include <fcntl.h>
|
1997-09-14 17:52:26 +04:00
|
|
|
|
#include <paths.h>
|
1994-09-23 08:30:13 +04:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
1994-12-05 23:15:31 +03:00
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <unistd.h>
|
1997-09-25 09:08:28 +04:00
|
|
|
|
#include <util.h>
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1999-04-17 05:38:00 +04:00
|
|
|
|
#ifdef __i386__
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
#include <machine/cpu.h>
|
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
1993-04-09 23:23:56 +04:00
|
|
|
|
#define LBUF 100
|
|
|
|
|
static char lbuf[LBUF];
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* 14-Dec-89 Robert Baron (rvb) at Carnegie-Mellon University
|
|
|
|
|
* Copyright (c) 1989 Robert. V. Baron
|
|
|
|
|
* Created.
|
|
|
|
|
*/
|
|
|
|
|
|
2000-01-31 18:54:48 +03:00
|
|
|
|
#ifndef _PATH_DEFDISK
|
|
|
|
|
#define _PATH_DEFDISK "/dev/rwd0d"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
char *disk = _PATH_DEFDISK;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
|
|
|
|
struct disklabel disklabel; /* disk parameters */
|
|
|
|
|
|
1994-09-23 09:30:09 +04:00
|
|
|
|
int cylinders, sectors, heads, cylindersectors, disksectors;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
struct mboot {
|
1999-01-28 00:41:31 +03:00
|
|
|
|
u_int8_t padding[2]; /* force the longs to be long alligned */
|
|
|
|
|
u_int8_t bootinst[MBR_PARTOFF];
|
|
|
|
|
struct mbr_partition parts[NMBRPART];
|
|
|
|
|
u_int16_t signature;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
};
|
|
|
|
|
struct mboot mboot;
|
|
|
|
|
|
1998-10-15 19:23:23 +04:00
|
|
|
|
#ifdef __i386__
|
1999-04-17 05:38:00 +04:00
|
|
|
|
|
1999-09-07 03:58:59 +04:00
|
|
|
|
#define PARTNAMESIZE 8 /* From mbr_bootsel.S */
|
|
|
|
|
|
1999-04-17 05:38:00 +04:00
|
|
|
|
struct mbr_bootsel {
|
|
|
|
|
u_int8_t defkey;
|
|
|
|
|
u_int8_t flags;
|
|
|
|
|
u_int16_t timeo;
|
1999-09-07 03:58:59 +04:00
|
|
|
|
char nametab[4][PARTNAMESIZE + 1];
|
1999-04-17 05:38:00 +04:00
|
|
|
|
u_int16_t magic;
|
|
|
|
|
} __attribute__((packed));
|
|
|
|
|
|
|
|
|
|
#define BFL_SELACTIVE 0x01
|
1999-04-29 03:27:01 +04:00
|
|
|
|
#define BFL_EXTINT13 0x02
|
1999-04-17 05:38:00 +04:00
|
|
|
|
|
|
|
|
|
#define SCAN_ENTER 0x1c
|
|
|
|
|
#define SCAN_F1 0x3b
|
|
|
|
|
|
|
|
|
|
#define MBR_BOOTSELOFF (MBR_PARTOFF - sizeof (struct mbr_bootsel))
|
|
|
|
|
|
1998-10-15 19:23:23 +04:00
|
|
|
|
#define DEFAULT_BOOTCODE "/usr/mdec/mbr"
|
1999-04-17 05:38:00 +04:00
|
|
|
|
#define DEFAULT_BOOTSELCODE "/usr/mdec/mbr_bootsel"
|
|
|
|
|
#define OPTIONS "0123BSafius:b:c:"
|
|
|
|
|
#else
|
|
|
|
|
#define OPTIONS "0123Safius:b:c:"
|
1998-10-15 19:23:23 +04:00
|
|
|
|
#endif
|
|
|
|
|
|
1993-04-09 23:23:56 +04:00
|
|
|
|
#define ACTIVE 0x80
|
|
|
|
|
|
1994-09-23 09:30:09 +04:00
|
|
|
|
int dos_cylinders;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
int dos_heads;
|
|
|
|
|
int dos_sectors;
|
1994-09-23 09:30:09 +04:00
|
|
|
|
int dos_cylindersectors;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
#define DOSSECT(s,c) (((s) & 0x3f) | (((c) >> 2) & 0xc0))
|
|
|
|
|
#define DOSCYL(c) ((c) & 0xff)
|
1998-09-28 19:44:18 +04:00
|
|
|
|
|
|
|
|
|
#define MAXCYL 1024
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int partition = -1;
|
|
|
|
|
|
|
|
|
|
int a_flag; /* set active partition */
|
1998-09-28 19:44:18 +04:00
|
|
|
|
int i_flag; /* init bootcode */
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int u_flag; /* update partition data */
|
1997-08-12 03:31:41 +04:00
|
|
|
|
int sh_flag; /* Output data as shell defines */
|
|
|
|
|
int f_flag; /* force --not interactive */
|
|
|
|
|
int s_flag; /* set id,offset,size */
|
1997-09-06 01:26:57 +04:00
|
|
|
|
int b_flag; /* Set cyl, heads, secs (as c/h/s) */
|
1999-04-17 05:38:00 +04:00
|
|
|
|
int B_flag; /* Edit/install bootselect code */
|
1997-09-06 01:26:57 +04:00
|
|
|
|
int b_cyl, b_head, b_sec; /* b_flag values. */
|
1999-04-17 05:38:00 +04:00
|
|
|
|
int bootsel_modified;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
|
1998-10-15 19:23:23 +04:00
|
|
|
|
unsigned char bootcode[8192]; /* maximum size of bootcode */
|
1999-04-17 05:38:00 +04:00
|
|
|
|
unsigned char tempcode[8192];
|
1998-10-15 19:23:23 +04:00
|
|
|
|
int bootsize; /* actual size of bootcode */
|
|
|
|
|
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1998-02-19 17:47:43 +03:00
|
|
|
|
static char reserved[] = "reserved";
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
struct part_type {
|
|
|
|
|
int type;
|
|
|
|
|
char *name;
|
|
|
|
|
} part_types[] = {
|
|
|
|
|
{0x00, "unused"},
|
|
|
|
|
{0x01, "Primary DOS with 12 bit FAT"},
|
|
|
|
|
{0x02, "XENIX / filesystem"},
|
|
|
|
|
{0x03, "XENIX /usr filesystem"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x04, "Primary DOS with 16 bit FAT <32M"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x05, "Extended partition"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x06, "Primary 'big' DOS, 16-bit FAT (> 32MB)"},
|
|
|
|
|
{0x07, "OS/2 HPFS or NTFS or QNX2 or Advanced UNIX"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x08, "AIX filesystem or OS/2 (thru v1.3) or DELL multiple drives"
|
|
|
|
|
"or Commodore DOS or SplitDrive"},
|
1994-09-23 08:30:13 +04:00
|
|
|
|
{0x09, "AIX boot partition or Coherent"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x0A, "OS/2 Boot Manager or Coherent swap or OPUS"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x0b, "Primary DOS with 32 bit FAT"},
|
|
|
|
|
{0x0c, "Primary DOS with 32 bit FAT - LBA"},
|
|
|
|
|
{0x0d, "Type 7??? - LBA"},
|
|
|
|
|
{0x0E, "DOS (16-bit FAT) - LBA"},
|
|
|
|
|
{0x0F, "Ext. partition - LBA"},
|
1994-09-23 08:30:13 +04:00
|
|
|
|
{0x10, "OPUS"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x11, "OS/2 BM: hidden DOS 12-bit FAT"},
|
|
|
|
|
{0x12, "Compaq diagnostics"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x14, "OS/2 BM: hidden DOS 16-bit FAT <32M or Novell DOS 7.0 bug"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x16, "OS/2 BM: hidden DOS 16-bit FAT >=32M"},
|
|
|
|
|
{0x17, "OS/2 BM: hidden IFS"},
|
|
|
|
|
{0x18, "AST Windows swapfile"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x19, "Willowtech Photon coS"},
|
|
|
|
|
{0x1e, "hidden FAT95"},
|
|
|
|
|
{0x20, "Willowsoft OFS1"},
|
|
|
|
|
{0x21, reserved},
|
|
|
|
|
{0x23, reserved},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x24, "NEC DOS"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x26, reserved},
|
|
|
|
|
{0x31, reserved},
|
|
|
|
|
{0x33, reserved},
|
|
|
|
|
{0x34, reserved},
|
|
|
|
|
{0x36, reserved},
|
|
|
|
|
{0x38, "Theos"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x3C, "PartitionMagic recovery"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x40, "VENIX 286 or LynxOS"},
|
|
|
|
|
{0x41, "Linux/MINIX (sharing disk with DRDOS) or Personal RISC boot"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x42, "SFS or Linux swap (sharing disk with DRDOS)"},
|
|
|
|
|
{0x43, "Linux native (sharing disk with DRDOS)"},
|
2000-06-14 23:35:50 +04:00
|
|
|
|
{0x4D, "QNX4.x"},
|
|
|
|
|
{0x4E, "QNX4.x 2nd part"},
|
|
|
|
|
{0x4F, "QNX4.x 3rd part"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x50, "DM (disk manager)"},
|
|
|
|
|
{0x51, "DM6 Aux1 (or Novell)"},
|
1994-09-23 08:30:13 +04:00
|
|
|
|
{0x52, "CP/M or Microport SysV/AT"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x53, "DM6 Aux3"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x54, "DM6 DDO"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x55, "EZ-Drive (disk manager)"},
|
|
|
|
|
{0x56, "Golden Bow (disk manager)"},
|
|
|
|
|
{0x5C, "Priam Edisk (disk manager)"},
|
|
|
|
|
{0x61, "SpeedStor"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x63, "GNU HURD or Mach or Sys V/386 (such as ISC UNIX) or MtXinu"},
|
|
|
|
|
{0x64, "Novell Netware 2.xx or Speedstore"},
|
1994-09-23 08:30:13 +04:00
|
|
|
|
{0x65, "Novell Netware 3.xx"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x66, "Novell 386 Netware"},
|
|
|
|
|
{0x67, "Novell"},
|
|
|
|
|
{0x68, "Novell"},
|
|
|
|
|
{0x69, "Novell"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x70, "DiskSecure Multi-Boot"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x71, reserved},
|
|
|
|
|
{0x73, reserved},
|
|
|
|
|
{0x74, reserved},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x75, "PC/IX"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x76, reserved},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x80, "MINIX until 1.4a"},
|
|
|
|
|
{0x81, "MINIX since 1.4b, early Linux, Mitac dmgr"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x82, "Linux swap or Prime or Solaris"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0x83, "Linux native"},
|
|
|
|
|
{0x84, "OS/2 hidden C: drive"},
|
|
|
|
|
{0x85, "Linux extended"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x86, "NT FAT volume set"},
|
|
|
|
|
{0x87, "NTFS volume set or HPFS mirrored"},
|
1994-09-23 08:30:13 +04:00
|
|
|
|
{0x93, "Amoeba filesystem"},
|
|
|
|
|
{0x94, "Amoeba bad block table"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0x99, "Mylex EISA SCSI"},
|
|
|
|
|
{0x9f, "BSDI?"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0xA0, "IBM Thinkpad hibernation"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0xa1, reserved},
|
|
|
|
|
{0xa3, reserved},
|
|
|
|
|
{0xa4, reserved},
|
|
|
|
|
{0xA5, "FreeBSD or 386BSD or old NetBSD"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0xA6, "OpenBSD"},
|
|
|
|
|
{0xA7, "NeXTSTEP 486"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0xa9, "NetBSD"},
|
|
|
|
|
{0xb1, reserved},
|
|
|
|
|
{0xb3, reserved},
|
|
|
|
|
{0xb4, reserved},
|
|
|
|
|
{0xb6, reserved},
|
1994-09-23 08:30:13 +04:00
|
|
|
|
{0xB7, "BSDI BSD/386 filesystem"},
|
|
|
|
|
{0xB8, "BSDI BSD/386 swap"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0xc0, "CTOS"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0xC1, "DRDOS/sec (FAT-12)"},
|
|
|
|
|
{0xC4, "DRDOS/sec (FAT-16, < 32M)"},
|
|
|
|
|
{0xC6, "DRDOS/sec (FAT-16, >= 32M)"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0xC7, "Syrinx (Cyrnix?) or HPFS disabled"},
|
|
|
|
|
{0xd8, "CP/M 86"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0xDB, "CP/M or Concurrent CP/M or Concurrent DOS or CTOS"},
|
|
|
|
|
{0xE1, "DOS access or SpeedStor 12-bit FAT extended partition"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0xE3, "DOS R/O or SpeedStor or Storage Dimensions"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0xE4, "SpeedStor 16-bit FAT extended partition < 1024 cyl."},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0xe5, reserved},
|
|
|
|
|
{0xe6, reserved},
|
1999-02-09 22:11:46 +03:00
|
|
|
|
{0xeb, "BeOS"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0xF1, "SpeedStor or Storage Dimensions"},
|
1994-09-23 08:30:13 +04:00
|
|
|
|
{0xF2, "DOS 3.3+ Secondary"},
|
1998-02-19 17:47:43 +03:00
|
|
|
|
{0xf3, reserved},
|
|
|
|
|
{0xF4, "SpeedStor large partition or Storage Dimensions"},
|
|
|
|
|
{0xf6, reserved},
|
|
|
|
|
{0xFE, "SpeedStor >1024 cyl. or LANstep or IBM PS/2 IML"},
|
1997-06-24 10:38:50 +04:00
|
|
|
|
{0xFF, "Xenix Bad Block Table"},
|
1993-04-09 23:23:56 +04:00
|
|
|
|
};
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
void usage __P((void));
|
|
|
|
|
void print_s0 __P((int));
|
|
|
|
|
void print_part __P((int));
|
1999-04-17 05:38:00 +04:00
|
|
|
|
int read_boot __P((char *, char *, size_t));
|
1998-09-28 19:44:18 +04:00
|
|
|
|
void init_sector0 __P((int, int));
|
1995-10-05 02:11:19 +03:00
|
|
|
|
void intuit_translated_geometry __P((void));
|
1999-04-17 05:38:00 +04:00
|
|
|
|
void get_geometry __P((void));
|
|
|
|
|
void get_diskname __P((char *, char *, size_t));
|
1995-10-05 02:11:19 +03:00
|
|
|
|
int try_heads __P((quad_t, quad_t, quad_t, quad_t, quad_t, quad_t, quad_t,
|
|
|
|
|
quad_t));
|
|
|
|
|
int try_sectors __P((quad_t, quad_t, quad_t, quad_t, quad_t));
|
1997-08-12 03:31:41 +04:00
|
|
|
|
void change_part __P((int, int, int, int));
|
1994-09-23 08:30:13 +04:00
|
|
|
|
void print_params __P((void));
|
|
|
|
|
void change_active __P((int));
|
|
|
|
|
void get_params_to_use __P((void));
|
|
|
|
|
void dos __P((int, unsigned char *, unsigned char *, unsigned char *));
|
|
|
|
|
int open_disk __P((int));
|
|
|
|
|
int read_disk __P((int, void *));
|
|
|
|
|
int write_disk __P((int, void *));
|
|
|
|
|
int get_params __P((void));
|
|
|
|
|
int read_s0 __P((void));
|
|
|
|
|
int write_s0 __P((void));
|
|
|
|
|
int yesno __P((char *));
|
1994-09-23 09:30:09 +04:00
|
|
|
|
void decimal __P((char *, int *));
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int type_match __P((const void *, const void *));
|
|
|
|
|
char *get_type __P((int));
|
1997-09-06 01:26:57 +04:00
|
|
|
|
int get_mapping __P((int, int *, int *, int *, long *));
|
1999-04-17 05:38:00 +04:00
|
|
|
|
#ifdef __i386__
|
|
|
|
|
void configure_bootsel __P((void));
|
|
|
|
|
#endif
|
1997-09-06 01:26:57 +04:00
|
|
|
|
|
|
|
|
|
static inline unsigned short getshort __P((void *));
|
|
|
|
|
static inline void putshort __P((void *p, unsigned short));
|
|
|
|
|
static inline unsigned long getlong __P((void *));
|
|
|
|
|
static inline void putlong __P((void *, unsigned long));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main __P((int, char **));
|
1994-09-23 08:30:13 +04:00
|
|
|
|
|
|
|
|
|
int
|
1993-04-09 23:23:56 +04:00
|
|
|
|
main(argc, argv)
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int argc;
|
|
|
|
|
char *argv[];
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int ch;
|
|
|
|
|
int part;
|
|
|
|
|
|
1997-08-12 03:31:41 +04:00
|
|
|
|
int csysid, cstart, csize; /* For the b_flag. */
|
|
|
|
|
|
1997-09-06 01:26:57 +04:00
|
|
|
|
a_flag = i_flag = u_flag = sh_flag = f_flag = s_flag = b_flag = 0;
|
1997-08-12 03:31:41 +04:00
|
|
|
|
csysid = cstart = csize = 0;
|
1999-04-17 05:38:00 +04:00
|
|
|
|
while ((ch = getopt(argc, argv, OPTIONS)) != -1)
|
1994-09-23 08:30:13 +04:00
|
|
|
|
switch (ch) {
|
|
|
|
|
case '0':
|
|
|
|
|
partition = 0;
|
|
|
|
|
break;
|
|
|
|
|
case '1':
|
|
|
|
|
partition = 1;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
break;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
case '2':
|
|
|
|
|
partition = 2;
|
|
|
|
|
break;
|
|
|
|
|
case '3':
|
|
|
|
|
partition = 3;
|
|
|
|
|
break;
|
1999-04-17 05:38:00 +04:00
|
|
|
|
#ifdef __i386__
|
|
|
|
|
case 'B':
|
|
|
|
|
B_flag = 1;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
1997-08-12 03:31:41 +04:00
|
|
|
|
case 'S':
|
|
|
|
|
sh_flag = 1;
|
|
|
|
|
break;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
case 'a':
|
|
|
|
|
a_flag = 1;
|
|
|
|
|
break;
|
1997-08-12 03:31:41 +04:00
|
|
|
|
case 'f':
|
|
|
|
|
f_flag = 1;
|
|
|
|
|
break;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
case 'i':
|
|
|
|
|
i_flag = 1;
|
1997-08-12 03:31:41 +04:00
|
|
|
|
break;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
case 'u':
|
|
|
|
|
u_flag = 1;
|
|
|
|
|
break;
|
1997-07-29 12:31:31 +04:00
|
|
|
|
case 's':
|
|
|
|
|
s_flag = 1;
|
1997-09-06 01:26:57 +04:00
|
|
|
|
if (sscanf (optarg, "%d/%d/%d",
|
|
|
|
|
&csysid, &cstart, &csize) != 3) {
|
|
|
|
|
(void)fprintf (stderr, "%s: Bad argument "
|
|
|
|
|
"to the -s flag.\n",
|
|
|
|
|
argv[0]);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'b':
|
|
|
|
|
b_flag = 1;
|
|
|
|
|
if (sscanf (optarg, "%d/%d/%d",
|
|
|
|
|
&b_cyl, &b_head, &b_sec) != 3) {
|
|
|
|
|
(void)fprintf (stderr, "%s: Bad argument "
|
|
|
|
|
"to the -b flag.\n",
|
|
|
|
|
argv[0]);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
1998-09-28 19:44:18 +04:00
|
|
|
|
if (b_cyl > MAXCYL)
|
|
|
|
|
b_cyl = MAXCYL;
|
1997-07-29 12:31:31 +04:00
|
|
|
|
break;
|
1998-10-15 19:23:23 +04:00
|
|
|
|
case 'c':
|
1999-04-17 05:38:00 +04:00
|
|
|
|
bootsize = read_boot(optarg, bootcode, sizeof bootcode);
|
1998-10-15 19:23:23 +04:00
|
|
|
|
break;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
default:
|
|
|
|
|
usage();
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
1994-09-23 08:30:13 +04:00
|
|
|
|
argc -= optind;
|
|
|
|
|
argv += optind;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (sh_flag && (a_flag || i_flag || u_flag || f_flag || s_flag))
|
|
|
|
|
usage();
|
|
|
|
|
|
1999-04-17 05:38:00 +04:00
|
|
|
|
if (B_flag && (a_flag || i_flag || u_flag || f_flag || s_flag))
|
|
|
|
|
usage();
|
|
|
|
|
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (partition == -1 && s_flag) {
|
|
|
|
|
(void) fprintf (stderr,
|
|
|
|
|
"-s flag requires a partition selected.\n");
|
1997-07-29 12:31:31 +04:00
|
|
|
|
usage();
|
1997-08-12 03:31:41 +04:00
|
|
|
|
}
|
|
|
|
|
|
1993-04-09 23:23:56 +04:00
|
|
|
|
if (argc > 0)
|
|
|
|
|
disk = argv[0];
|
1994-09-23 08:30:13 +04:00
|
|
|
|
|
1999-04-17 05:38:00 +04:00
|
|
|
|
if (open_disk(B_flag || a_flag || i_flag || u_flag) < 0)
|
1993-04-09 23:23:56 +04:00
|
|
|
|
exit(1);
|
|
|
|
|
|
1995-10-05 02:11:19 +03:00
|
|
|
|
if (read_s0())
|
1998-09-28 19:44:18 +04:00
|
|
|
|
init_sector0(sectors > 63 ? 63 : sectors, 1);
|
1995-10-05 02:11:19 +03:00
|
|
|
|
|
1999-04-17 05:38:00 +04:00
|
|
|
|
#ifdef __i386__
|
|
|
|
|
get_geometry();
|
|
|
|
|
#else
|
1995-10-05 02:11:19 +03:00
|
|
|
|
intuit_translated_geometry();
|
1999-04-17 05:38:00 +04:00
|
|
|
|
#endif
|
1997-08-12 03:31:41 +04:00
|
|
|
|
|
|
|
|
|
|
1997-09-06 01:26:57 +04:00
|
|
|
|
if ((i_flag || u_flag) && (!f_flag || b_flag))
|
1993-04-09 23:23:56 +04:00
|
|
|
|
get_params_to_use();
|
|
|
|
|
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (i_flag)
|
1998-09-28 19:44:18 +04:00
|
|
|
|
init_sector0(dos_sectors > 63 ? 63 : dos_sectors, 0);
|
1997-08-12 03:31:41 +04:00
|
|
|
|
|
|
|
|
|
/* Do the update stuff! */
|
|
|
|
|
if (u_flag) {
|
|
|
|
|
if (!f_flag)
|
1999-04-17 05:38:00 +04:00
|
|
|
|
printf("Partition table:\n");
|
|
|
|
|
if (partition == -1)
|
1999-01-28 00:41:31 +03:00
|
|
|
|
for (part = 0; part < NMBRPART; part++)
|
1997-08-12 03:31:41 +04:00
|
|
|
|
change_part(part,-1, -1, -1);
|
|
|
|
|
else
|
|
|
|
|
change_part(partition, csysid, cstart, csize);
|
1994-09-23 08:30:13 +04:00
|
|
|
|
} else
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (!i_flag)
|
|
|
|
|
print_s0(partition);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (a_flag)
|
1993-04-09 23:23:56 +04:00
|
|
|
|
change_active(partition);
|
|
|
|
|
|
1999-04-17 05:38:00 +04:00
|
|
|
|
#ifdef __i386__
|
|
|
|
|
if (B_flag) {
|
|
|
|
|
configure_bootsel();
|
|
|
|
|
if (B_flag && bootsel_modified)
|
|
|
|
|
write_s0();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (u_flag || a_flag || i_flag) {
|
|
|
|
|
if (!f_flag) {
|
1999-04-17 05:38:00 +04:00
|
|
|
|
printf("\nWe haven't written the MBR back to disk "
|
1997-08-12 03:31:41 +04:00
|
|
|
|
"yet. This is your last chance.\n");
|
|
|
|
|
print_s0(-1);
|
|
|
|
|
if (yesno("Should we write new partition table?"))
|
|
|
|
|
write_s0();
|
|
|
|
|
} else
|
1993-04-09 23:23:56 +04:00
|
|
|
|
write_s0();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
exit(0);
|
1994-09-23 08:30:13 +04:00
|
|
|
|
}
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
void
|
|
|
|
|
usage()
|
|
|
|
|
{
|
1999-09-07 03:58:59 +04:00
|
|
|
|
(void)fprintf(stderr, "usage: fdisk [-aiufBS] [-0|-1|-2|-3] "
|
|
|
|
|
"[-b cylinders/heads/sectors]\n"
|
|
|
|
|
" [-s id/start/size] [-c bootcode] "
|
|
|
|
|
"[device]\n");
|
1994-09-23 08:30:13 +04:00
|
|
|
|
exit(1);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
void
|
1993-04-09 23:23:56 +04:00
|
|
|
|
print_s0(which)
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int which;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int part;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
|
|
|
|
print_params();
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (!sh_flag)
|
1999-04-17 05:38:00 +04:00
|
|
|
|
printf("Partition table:\n");
|
1994-09-23 08:30:13 +04:00
|
|
|
|
if (which == -1) {
|
1999-01-28 00:41:31 +03:00
|
|
|
|
for (part = 0; part < NMBRPART; part++) {
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (!sh_flag)
|
|
|
|
|
printf("%d: ", part);
|
|
|
|
|
print_part(part);
|
|
|
|
|
}
|
1994-09-23 08:30:13 +04:00
|
|
|
|
} else
|
1993-04-09 23:23:56 +04:00
|
|
|
|
print_part(which);
|
|
|
|
|
}
|
|
|
|
|
|
1997-03-29 23:46:17 +03:00
|
|
|
|
static inline unsigned short
|
|
|
|
|
getshort(p)
|
|
|
|
|
void *p;
|
|
|
|
|
{
|
|
|
|
|
unsigned char *cp = p;
|
|
|
|
|
|
|
|
|
|
return cp[0] | (cp[1] << 8);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
putshort(p, l)
|
|
|
|
|
void *p;
|
|
|
|
|
unsigned short l;
|
|
|
|
|
{
|
|
|
|
|
unsigned char *cp = p;
|
|
|
|
|
|
|
|
|
|
*cp++ = l;
|
|
|
|
|
*cp++ = l >> 8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline unsigned long
|
|
|
|
|
getlong(p)
|
|
|
|
|
void *p;
|
|
|
|
|
{
|
|
|
|
|
unsigned char *cp = p;
|
|
|
|
|
|
|
|
|
|
return cp[0] | (cp[1] << 8) | (cp[2] << 16) | (cp[3] << 24);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
putlong(p, l)
|
|
|
|
|
void *p;
|
|
|
|
|
unsigned long l;
|
|
|
|
|
{
|
|
|
|
|
unsigned char *cp = p;
|
|
|
|
|
|
|
|
|
|
*cp++ = l;
|
|
|
|
|
*cp++ = l >> 8;
|
|
|
|
|
*cp++ = l >> 16;
|
|
|
|
|
*cp++ = l >> 24;
|
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
void
|
|
|
|
|
print_part(part)
|
|
|
|
|
int part;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1999-01-28 00:41:31 +03:00
|
|
|
|
struct mbr_partition *partp;
|
1997-07-29 12:31:31 +04:00
|
|
|
|
int empty;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
partp = &mboot.parts[part];
|
1999-04-17 05:38:00 +04:00
|
|
|
|
empty = (partp->mbrp_typ == 0);
|
1997-07-29 12:31:31 +04:00
|
|
|
|
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (sh_flag) {
|
1997-07-29 12:31:31 +04:00
|
|
|
|
if (empty) {
|
|
|
|
|
printf("PART%dSIZE=0\n", part);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
1999-01-28 00:41:31 +03:00
|
|
|
|
printf("PART%dID=%d\n", part, partp->mbrp_typ);
|
|
|
|
|
printf("PART%dSIZE=%ld\n", part, getlong(&partp->mbrp_size));
|
|
|
|
|
printf("PART%dSTART=%ld\n", part, getlong(&partp->mbrp_start));
|
|
|
|
|
printf("PART%dFLAG=0x%x\n", part, partp->mbrp_flag);
|
|
|
|
|
printf("PART%dBCYL=%d\n", part, MBR_PCYL(partp->mbrp_scyl,
|
|
|
|
|
partp->mbrp_ssect));
|
|
|
|
|
printf("PART%dBHEAD=%d\n", part, partp->mbrp_shd);
|
|
|
|
|
printf("PART%dBSEC=%d\n", part, MBR_PSECT(partp->mbrp_ssect));
|
|
|
|
|
printf("PART%dECYL=%d\n", part, MBR_PCYL(partp->mbrp_ecyl,
|
|
|
|
|
partp->mbrp_esect));
|
|
|
|
|
printf("PART%dEHEAD=%d\n", part, partp->mbrp_ehd);
|
|
|
|
|
printf("PART%dESEC=%d\n", part, MBR_PSECT(partp->mbrp_esect));
|
1997-07-29 12:31:31 +04:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
1997-08-12 03:31:41 +04:00
|
|
|
|
/* Not sh_flag. */
|
1997-07-29 12:31:31 +04:00
|
|
|
|
if (empty) {
|
1993-04-09 23:23:56 +04:00
|
|
|
|
printf("<UNUSED>\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-01-28 00:41:31 +03:00
|
|
|
|
printf("sysid %d (%s)\n", partp->mbrp_typ, get_type(partp->mbrp_typ));
|
1997-09-14 17:52:26 +04:00
|
|
|
|
printf(" start %ld, size %ld (%ld MB), flag 0x%x\n",
|
1999-01-28 00:41:31 +03:00
|
|
|
|
getlong(&partp->mbrp_start), getlong(&partp->mbrp_size),
|
|
|
|
|
getlong(&partp->mbrp_size) * 512 / (1024 * 1024), partp->mbrp_flag);
|
1994-09-23 09:30:09 +04:00
|
|
|
|
printf("\tbeg: cylinder %4d, head %3d, sector %2d\n",
|
1999-01-28 00:41:31 +03:00
|
|
|
|
MBR_PCYL(partp->mbrp_scyl, partp->mbrp_ssect),
|
|
|
|
|
partp->mbrp_shd, MBR_PSECT(partp->mbrp_ssect));
|
1994-09-23 09:30:09 +04:00
|
|
|
|
printf("\tend: cylinder %4d, head %3d, sector %2d\n",
|
1999-01-28 00:41:31 +03:00
|
|
|
|
MBR_PCYL(partp->mbrp_ecyl, partp->mbrp_esect),
|
|
|
|
|
partp->mbrp_ehd, MBR_PSECT(partp->mbrp_esect));
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1999-04-17 05:38:00 +04:00
|
|
|
|
int
|
|
|
|
|
read_boot(name, buf, len)
|
1998-10-15 19:23:23 +04:00
|
|
|
|
char *name;
|
1999-04-17 05:38:00 +04:00
|
|
|
|
char *buf;
|
|
|
|
|
size_t len;
|
1998-10-15 19:23:23 +04:00
|
|
|
|
{
|
1999-04-17 05:38:00 +04:00
|
|
|
|
int bfd, ret;
|
1998-10-15 19:23:23 +04:00
|
|
|
|
struct stat st;
|
|
|
|
|
|
1999-04-17 05:38:00 +04:00
|
|
|
|
if ((bfd = open(name, O_RDONLY)) < 0)
|
1998-10-15 19:23:23 +04:00
|
|
|
|
err(1, "%s", name);
|
1999-04-17 05:38:00 +04:00
|
|
|
|
if (fstat(bfd, &st) == -1)
|
1998-10-15 19:23:23 +04:00
|
|
|
|
err(1, "%s", name);
|
1999-04-17 05:38:00 +04:00
|
|
|
|
if (st.st_size > len)
|
1998-10-15 19:23:23 +04:00
|
|
|
|
errx(1, "%s: bootcode too large", name);
|
1999-04-17 05:38:00 +04:00
|
|
|
|
ret = st.st_size;
|
|
|
|
|
if (ret < 0x200)
|
1998-10-15 19:23:23 +04:00
|
|
|
|
errx(1, "%s: bootcode too small", name);
|
1999-04-17 05:38:00 +04:00
|
|
|
|
if (read(bfd, buf, len) != ret)
|
1998-10-15 19:23:23 +04:00
|
|
|
|
err(1, "%s", name);
|
1999-04-17 05:38:00 +04:00
|
|
|
|
close(bfd);
|
1998-10-15 19:23:23 +04:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Do some sanity checking here
|
|
|
|
|
*/
|
1999-01-28 00:41:31 +03:00
|
|
|
|
if (getshort(bootcode + MBR_MAGICOFF) != MBR_MAGIC)
|
1998-10-15 19:23:23 +04:00
|
|
|
|
errx(1, "%s: invalid magic", name);
|
1999-04-17 05:38:00 +04:00
|
|
|
|
ret = (ret + 0x1ff) / 0x200;
|
|
|
|
|
ret *= 0x200;
|
|
|
|
|
return ret;
|
1998-10-15 19:23:23 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
void
|
1998-09-28 19:44:18 +04:00
|
|
|
|
init_sector0(start, dopart)
|
|
|
|
|
int start, dopart;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1997-08-12 03:31:41 +04:00
|
|
|
|
int i;
|
|
|
|
|
|
1998-10-15 19:23:23 +04:00
|
|
|
|
#ifdef DEFAULT_BOOTCODE
|
|
|
|
|
if (!bootsize)
|
1999-04-17 05:38:00 +04:00
|
|
|
|
bootsize = read_boot(DEFAULT_BOOTCODE, bootcode,
|
|
|
|
|
sizeof bootcode);
|
1998-10-15 19:23:23 +04:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
memcpy(mboot.bootinst, bootcode, sizeof(mboot.bootinst));
|
1999-01-28 00:41:31 +03:00
|
|
|
|
putshort(&mboot.signature, MBR_MAGIC);
|
1997-08-12 03:31:41 +04:00
|
|
|
|
|
1998-09-28 19:44:18 +04:00
|
|
|
|
if (dopart)
|
1999-04-17 05:38:00 +04:00
|
|
|
|
for (i=0; i<4; i++)
|
|
|
|
|
memset(&mboot.parts[i], 0, sizeof(struct mbr_partition));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef __i386__
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
get_diskname(fullname, diskname, size)
|
|
|
|
|
char *fullname;
|
|
|
|
|
char *diskname;
|
|
|
|
|
size_t size;
|
|
|
|
|
{
|
|
|
|
|
char *p;
|
|
|
|
|
char *p2;
|
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
|
|
p = strrchr(fullname, '/');
|
|
|
|
|
if (p == NULL)
|
|
|
|
|
p = fullname;
|
|
|
|
|
else
|
|
|
|
|
p++;
|
|
|
|
|
|
|
|
|
|
if (*p == 0) {
|
|
|
|
|
strncpy(diskname, fullname, size - 1);
|
|
|
|
|
diskname[size - 1] = '\0';
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (*p == 'r')
|
|
|
|
|
p++;
|
|
|
|
|
|
|
|
|
|
for (p2 = p; *p2 != 0; p2++)
|
|
|
|
|
if (isdigit(*p2))
|
|
|
|
|
break;
|
|
|
|
|
if (*p2 == 0) {
|
|
|
|
|
/* XXX invalid diskname? */
|
|
|
|
|
strncpy(diskname, fullname, size - 1);
|
|
|
|
|
diskname[size - 1] = '\0';
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
while (isdigit(*p2))
|
|
|
|
|
p2++;
|
|
|
|
|
|
|
|
|
|
len = p2 - p;
|
|
|
|
|
if (len > size) {
|
|
|
|
|
/* XXX */
|
|
|
|
|
strncpy(diskname, fullname, size - 1);
|
|
|
|
|
diskname[size - 1] = '\0';
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
strncpy(diskname, p, len);
|
|
|
|
|
diskname[len] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
get_geometry()
|
|
|
|
|
{
|
|
|
|
|
int mib[2], i;
|
|
|
|
|
size_t len;
|
|
|
|
|
struct disklist *dl;
|
|
|
|
|
struct biosdisk_info *bip;
|
|
|
|
|
struct nativedisk_info *nip;
|
|
|
|
|
char diskname[8];
|
|
|
|
|
|
|
|
|
|
mib[0] = CTL_MACHDEP;
|
|
|
|
|
mib[1] = CPU_DISKINFO;
|
|
|
|
|
if (sysctl(mib, 2, NULL, &len, NULL, 0) < 0) {
|
|
|
|
|
intuit_translated_geometry();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
dl = (struct disklist *) malloc(len);
|
|
|
|
|
sysctl(mib, 2, dl, &len, NULL, 0);
|
|
|
|
|
|
|
|
|
|
get_diskname(disk, diskname, sizeof diskname);
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < dl->dl_nnativedisks; i++) {
|
|
|
|
|
nip = &dl->dl_nativedisks[i];
|
|
|
|
|
if (strcmp(diskname, nip->ni_devname))
|
|
|
|
|
continue;
|
|
|
|
|
/*
|
|
|
|
|
* XXX listing possible matches is better. This is ok
|
|
|
|
|
* for now because the user has a chance to change
|
|
|
|
|
* it later.
|
|
|
|
|
*/
|
|
|
|
|
if (nip->ni_nmatches != 0) {
|
|
|
|
|
bip = &dl->dl_biosdisks[nip->ni_biosmatches[0]];
|
|
|
|
|
dos_cylinders = bip->bi_cyl;
|
|
|
|
|
dos_heads = bip->bi_head;
|
|
|
|
|
dos_sectors = bip->bi_sec;
|
|
|
|
|
dos_cylindersectors = bip->bi_head * bip->bi_sec;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* Allright, allright, make a stupid guess.. */
|
|
|
|
|
intuit_translated_geometry();
|
|
|
|
|
}
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1999-04-17 05:38:00 +04:00
|
|
|
|
void
|
|
|
|
|
configure_bootsel()
|
|
|
|
|
{
|
|
|
|
|
struct mbr_bootsel *mbs =
|
|
|
|
|
(struct mbr_bootsel *)&mboot.bootinst[MBR_BOOTSELOFF];
|
|
|
|
|
int i, nused, firstpart = -1, item;
|
1999-09-07 03:58:59 +04:00
|
|
|
|
char desc[PARTNAMESIZE + 2], *p;
|
1999-04-17 05:38:00 +04:00
|
|
|
|
int timo, entry_changed = 0;
|
|
|
|
|
|
1999-09-07 03:58:59 +04:00
|
|
|
|
for (i = nused = 0; i < NMBRPART; ++i) {
|
1999-04-17 05:38:00 +04:00
|
|
|
|
if (mboot.parts[i].mbrp_typ != 0) {
|
|
|
|
|
if (firstpart == -1)
|
|
|
|
|
firstpart = i;
|
|
|
|
|
nused++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (nused == 0) {
|
|
|
|
|
printf("No used partitions found. Partition the disk first.\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mbs->magic != MBR_MAGIC) {
|
|
|
|
|
if (!yesno("Bootselector not yet installed. Install it now?")) {
|
|
|
|
|
printf("Bootselector not installed.\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
bootsize = read_boot(DEFAULT_BOOTSELCODE, bootcode,
|
|
|
|
|
sizeof bootcode);
|
|
|
|
|
memcpy(mboot.bootinst, bootcode, sizeof(mboot.bootinst));
|
|
|
|
|
bootsel_modified = 1;
|
|
|
|
|
mbs->flags |= BFL_SELACTIVE;
|
|
|
|
|
} else {
|
|
|
|
|
if (mbs->flags & BFL_SELACTIVE) {
|
|
|
|
|
printf("The bootselector is installed and active.\n");
|
|
|
|
|
if (!yesno("Do you want to change its settings?")) {
|
|
|
|
|
if (yesno("Do you want to deactivate it?")) {
|
|
|
|
|
mbs->flags &= ~BFL_SELACTIVE;
|
|
|
|
|
bootsel_modified = 1;
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
printf("The bootselector is installed but not active.\n");
|
|
|
|
|
if (yesno("Do you want to activate it?")) {
|
|
|
|
|
mbs->flags |= BFL_SELACTIVE;
|
|
|
|
|
bootsel_modified = 1;
|
|
|
|
|
}
|
|
|
|
|
if (!yesno("Do you want to change its settings?"))
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
printf("\n\nPartition table:\n");
|
|
|
|
|
for (i = 0; i < NMBRPART; i++) {
|
|
|
|
|
printf("%d: ", i);
|
|
|
|
|
print_part(i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
printf("\n\nCurrent boot selection menu option names:\n");
|
|
|
|
|
for (i = 0; i < NMBRPART; i++) {
|
|
|
|
|
if (mbs->nametab[i][0] != 0)
|
|
|
|
|
printf("%d: %s\n", i, &mbs->nametab[i][0]);
|
|
|
|
|
else
|
1999-09-07 03:58:59 +04:00
|
|
|
|
printf("%d: <UNUSED>\n", i);
|
1999-04-17 05:38:00 +04:00
|
|
|
|
}
|
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
|
|
item = firstpart;
|
|
|
|
|
|
|
|
|
|
editentries:
|
|
|
|
|
while (1) {
|
|
|
|
|
decimal("Change which entry (-1 quits)?", &item);
|
|
|
|
|
if (item == -1)
|
|
|
|
|
break;
|
|
|
|
|
if (item < 0 || item >= NMBRPART) {
|
|
|
|
|
printf("Invalid entry number\n");
|
1999-09-07 03:58:59 +04:00
|
|
|
|
item = -1;
|
1999-04-17 05:38:00 +04:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (mboot.parts[item].mbrp_typ == 0) {
|
1999-09-07 03:58:59 +04:00
|
|
|
|
printf("The partition entry is unused\n");
|
|
|
|
|
item = -1;
|
1999-04-17 05:38:00 +04:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
printf("Enter descriptions (max. 8 characters): ");
|
|
|
|
|
rewind(stdin);
|
1999-09-07 03:58:59 +04:00
|
|
|
|
fgets(desc, PARTNAMESIZE + 1, stdin);
|
|
|
|
|
fpurge(stdin);
|
1999-04-17 05:38:00 +04:00
|
|
|
|
p = strchr(desc, '\n');
|
|
|
|
|
if (p != NULL)
|
|
|
|
|
*p = 0;
|
|
|
|
|
strcpy(&mbs->nametab[item][0], desc);
|
|
|
|
|
entry_changed = bootsel_modified = 1;
|
1999-09-07 03:58:59 +04:00
|
|
|
|
|
|
|
|
|
item++;
|
1999-04-17 05:38:00 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (entry_changed)
|
|
|
|
|
printf("Boot selection menu option names are now:\n");
|
|
|
|
|
|
|
|
|
|
firstpart = -1;
|
|
|
|
|
for (i = 0; i < NMBRPART; i++) {
|
|
|
|
|
if (mbs->nametab[i][0] != 0) {
|
|
|
|
|
firstpart = i;
|
|
|
|
|
if (entry_changed)
|
|
|
|
|
printf("%d: %s\n", i, &mbs->nametab[i][0]);
|
|
|
|
|
} else {
|
|
|
|
|
if (entry_changed)
|
1999-09-07 03:58:59 +04:00
|
|
|
|
printf("%d: <UNUSED>\n", i);
|
1999-04-17 05:38:00 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (entry_changed)
|
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
|
|
if (firstpart == -1) {
|
|
|
|
|
printf("All menu entries are now inactive.\n");
|
|
|
|
|
if (!yesno("Are you sure about this?"))
|
|
|
|
|
goto editentries;
|
|
|
|
|
} else {
|
|
|
|
|
if (!(mbs->flags & BFL_SELACTIVE)) {
|
|
|
|
|
printf("The bootselector is not yet active.\n");
|
|
|
|
|
if (yesno("Activate it now?"))
|
|
|
|
|
mbs->flags |= BFL_SELACTIVE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-06-04 22:59:15 +04:00
|
|
|
|
/* bootsel is dirty from here on out. */
|
|
|
|
|
bootsel_modified = 1;
|
|
|
|
|
|
1999-04-17 05:38:00 +04:00
|
|
|
|
/* The timeout value is in ticks, 18.2 Hz. Avoid using floats. */
|
|
|
|
|
timo = ((1000 * mbs->timeo) / 18200);
|
|
|
|
|
do {
|
|
|
|
|
decimal("Timeout value", &timo);
|
|
|
|
|
} while (timo < 0 || timo > 3600);
|
|
|
|
|
mbs->timeo = (u_int16_t)((timo * 18200) / 1000);
|
|
|
|
|
|
|
|
|
|
printf("Select the default boot option. Options are:\n\n");
|
|
|
|
|
for (i = 0; i < NMBRPART; i++) {
|
|
|
|
|
if (mbs->nametab[i][0] != 0)
|
|
|
|
|
printf("%d: %s\n", i, &mbs->nametab[i][0]);
|
|
|
|
|
}
|
|
|
|
|
for (i = 4; i < 10; i++)
|
|
|
|
|
printf("%d: Harddisk %d\n", i, i - 4);
|
|
|
|
|
printf("10: The first active partition\n");
|
|
|
|
|
|
|
|
|
|
if (mbs->defkey == SCAN_ENTER)
|
|
|
|
|
item = 10;
|
|
|
|
|
else
|
|
|
|
|
item = mbs->defkey - SCAN_F1;
|
|
|
|
|
|
|
|
|
|
if (item < 0 || item > 10 || mbs->nametab[item][0] == 0)
|
|
|
|
|
item = 10;
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
decimal("Default boot option", &item);
|
|
|
|
|
} while (item < 0 || item > 10 ||
|
|
|
|
|
(item <= 3 && mbs->nametab[item][0] == 0));
|
|
|
|
|
|
|
|
|
|
if (item == 10)
|
|
|
|
|
mbs->defkey = SCAN_ENTER;
|
|
|
|
|
else
|
|
|
|
|
mbs->defkey = SCAN_F1 + item;
|
|
|
|
|
|
|
|
|
|
done:
|
1999-04-29 03:27:01 +04:00
|
|
|
|
for (i = 0; i < NMBRPART; i++) {
|
|
|
|
|
if (mboot.parts[i].mbrp_typ != 0 &&
|
1999-05-02 16:17:48 +04:00
|
|
|
|
mboot.parts[i].mbrp_start >=
|
|
|
|
|
(dos_cylinders * dos_heads * dos_sectors)) {
|
1999-04-29 03:27:01 +04:00
|
|
|
|
mbs->flags |= BFL_EXTINT13;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-06-04 22:59:15 +04:00
|
|
|
|
if (bootsel_modified != 0 && !yesno("Update the bootselector?"))
|
1999-04-17 05:38:00 +04:00
|
|
|
|
bootsel_modified = 0;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
1999-04-17 05:38:00 +04:00
|
|
|
|
#endif
|
|
|
|
|
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1995-10-05 02:11:19 +03:00
|
|
|
|
/* Prerequisite: the disklabel parameters and master boot record must
|
|
|
|
|
* have been read (i.e. dos_* and mboot are meaningful).
|
|
|
|
|
* Specification: modifies dos_cylinders, dos_heads, dos_sectors, and
|
|
|
|
|
* dos_cylindersectors to be consistent with what the
|
|
|
|
|
* partition table is using, if we can find a geometry
|
|
|
|
|
* which is consistent with all partition table entries.
|
|
|
|
|
* We may get the number of cylinders slightly wrong (in
|
|
|
|
|
* the conservative direction). The idea is to be able
|
|
|
|
|
* to create a NetBSD partition on a disk we don't know
|
|
|
|
|
* the translated geometry of.
|
|
|
|
|
* This whole routine should be replaced with a kernel interface to get
|
|
|
|
|
* the BIOS geometry (which in turn requires modifications to the i386
|
|
|
|
|
* boot loader to pass in the BIOS geometry for each disk). */
|
|
|
|
|
void
|
|
|
|
|
intuit_translated_geometry()
|
|
|
|
|
{
|
1997-08-12 03:31:41 +04:00
|
|
|
|
|
1995-10-05 02:11:19 +03:00
|
|
|
|
int cylinders = -1, heads = -1, sectors = -1, i, j;
|
|
|
|
|
int c1, h1, s1, c2, h2, s2;
|
|
|
|
|
long a1, a2;
|
|
|
|
|
quad_t num, denom;
|
|
|
|
|
|
|
|
|
|
/* Try to deduce the number of heads from two different mappings. */
|
1999-01-28 00:41:31 +03:00
|
|
|
|
for (i = 0; i < NMBRPART * 2; i++) {
|
1995-10-05 02:11:19 +03:00
|
|
|
|
if (get_mapping(i, &c1, &h1, &s1, &a1) < 0)
|
|
|
|
|
continue;
|
|
|
|
|
for (j = 0; j < 8; j++) {
|
|
|
|
|
if (get_mapping(j, &c2, &h2, &s2, &a2) < 0)
|
|
|
|
|
continue;
|
1997-12-22 04:54:07 +03:00
|
|
|
|
num = (quad_t)h1*(a2-s2) - (quad_t)h2*(a1-s1);
|
|
|
|
|
denom = (quad_t)c2*(a1-s1) - (quad_t)c1*(a2-s2);
|
1995-10-05 02:11:19 +03:00
|
|
|
|
if (denom != 0 && num % denom == 0) {
|
|
|
|
|
heads = num / denom;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (heads != -1)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (heads == -1)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* Now figure out the number of sectors from a single mapping. */
|
1999-01-28 00:41:31 +03:00
|
|
|
|
for (i = 0; i < NMBRPART * 2; i++) {
|
1995-10-05 02:11:19 +03:00
|
|
|
|
if (get_mapping(i, &c1, &h1, &s1, &a1) < 0)
|
|
|
|
|
continue;
|
|
|
|
|
num = a1 - s1;
|
|
|
|
|
denom = c1 * heads + h1;
|
|
|
|
|
if (denom != 0 && num % denom == 0) {
|
|
|
|
|
sectors = num / denom;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sectors == -1)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* Estimate the number of cylinders. */
|
1998-02-07 19:19:16 +03:00
|
|
|
|
cylinders = disklabel.d_secperunit / heads / sectors;
|
1995-10-05 02:11:19 +03:00
|
|
|
|
|
|
|
|
|
/* Now verify consistency with each of the partition table entries.
|
|
|
|
|
* Be willing to shove cylinders up a little bit to make things work,
|
|
|
|
|
* but translation mismatches are fatal. */
|
1999-01-28 00:41:31 +03:00
|
|
|
|
for (i = 0; i < NMBRPART * 2; i++) {
|
1995-10-05 02:11:19 +03:00
|
|
|
|
if (get_mapping(i, &c1, &h1, &s1, &a1) < 0)
|
|
|
|
|
continue;
|
|
|
|
|
if (sectors * (c1 * heads + h1) + s1 != a1)
|
|
|
|
|
return;
|
|
|
|
|
if (c1 >= cylinders)
|
|
|
|
|
cylinders = c1 + 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Everything checks out. Reset the geometry to use for further
|
|
|
|
|
* calculations. */
|
|
|
|
|
dos_cylinders = cylinders;
|
|
|
|
|
dos_heads = heads;
|
|
|
|
|
dos_sectors = sectors;
|
|
|
|
|
dos_cylindersectors = heads * sectors;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* For the purposes of intuit_translated_geometry(), treat the partition
|
|
|
|
|
* table as a list of eight mapping between (cylinder, head, sector)
|
|
|
|
|
* triplets and absolute sectors. Get the relevant geometry triplet and
|
|
|
|
|
* absolute sectors for a given entry, or return -1 if it isn't present.
|
|
|
|
|
* Note: for simplicity, the returned sector is 0-based. */
|
|
|
|
|
int
|
|
|
|
|
get_mapping(i, cylinder, head, sector, absolute)
|
|
|
|
|
int i, *cylinder, *head, *sector;
|
|
|
|
|
long *absolute;
|
|
|
|
|
{
|
1999-01-28 00:41:31 +03:00
|
|
|
|
struct mbr_partition *part = &mboot.parts[i / 2];
|
1995-10-05 02:11:19 +03:00
|
|
|
|
|
1999-01-28 00:41:31 +03:00
|
|
|
|
if (part->mbrp_typ == 0)
|
1995-10-05 02:11:19 +03:00
|
|
|
|
return -1;
|
|
|
|
|
if (i % 2 == 0) {
|
1999-01-28 00:41:31 +03:00
|
|
|
|
*cylinder = MBR_PCYL(part->mbrp_scyl, part->mbrp_ssect);
|
|
|
|
|
*head = part->mbrp_shd;
|
|
|
|
|
*sector = MBR_PSECT(part->mbrp_ssect) - 1;
|
|
|
|
|
*absolute = getlong(&part->mbrp_start);
|
1995-10-05 02:11:19 +03:00
|
|
|
|
} else {
|
1999-01-28 00:41:31 +03:00
|
|
|
|
*cylinder = MBR_PCYL(part->mbrp_ecyl, part->mbrp_esect);
|
|
|
|
|
*head = part->mbrp_ehd;
|
|
|
|
|
*sector = MBR_PSECT(part->mbrp_esect) - 1;
|
|
|
|
|
*absolute = getlong(&part->mbrp_start)
|
|
|
|
|
+ getlong(&part->mbrp_size) - 1;
|
1995-10-05 02:11:19 +03:00
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
void
|
1997-08-12 03:31:41 +04:00
|
|
|
|
change_part(part, csysid, cstart, csize)
|
|
|
|
|
int part, csysid, cstart, csize;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1999-01-28 00:41:31 +03:00
|
|
|
|
struct mbr_partition *partp;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
partp = &mboot.parts[part];
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (s_flag) {
|
1998-10-02 21:23:22 +04:00
|
|
|
|
if (csysid == 0 && cstart == 0 && csize == 0)
|
|
|
|
|
memset(partp, 0, sizeof *partp);
|
|
|
|
|
else {
|
1999-01-28 00:41:31 +03:00
|
|
|
|
partp->mbrp_typ = csysid;
|
1998-09-28 19:44:18 +04:00
|
|
|
|
#if 0
|
1998-10-02 21:23:22 +04:00
|
|
|
|
checkcyl(cstart / dos_cylindersectors);
|
1998-09-28 19:44:18 +04:00
|
|
|
|
#endif
|
1999-01-28 00:41:31 +03:00
|
|
|
|
putlong(&partp->mbrp_start, cstart);
|
|
|
|
|
putlong(&partp->mbrp_size, csize);
|
|
|
|
|
dos(getlong(&partp->mbrp_start),
|
|
|
|
|
&partp->mbrp_scyl, &partp->mbrp_shd, &partp->mbrp_ssect);
|
|
|
|
|
dos(getlong(&partp->mbrp_start)
|
|
|
|
|
+ getlong(&partp->mbrp_size) - 1,
|
|
|
|
|
&partp->mbrp_ecyl, &partp->mbrp_ehd, &partp->mbrp_esect);
|
1998-10-02 21:23:22 +04:00
|
|
|
|
}
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (f_flag)
|
|
|
|
|
return;
|
|
|
|
|
}
|
1994-09-23 08:30:13 +04:00
|
|
|
|
|
1997-08-12 03:31:41 +04:00
|
|
|
|
printf("The data for partition %d is:\n", part);
|
|
|
|
|
print_part(part);
|
1994-09-23 08:30:13 +04:00
|
|
|
|
if (!u_flag || !yesno("Do you want to change it?"))
|
|
|
|
|
return;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
|
|
|
|
do {
|
1994-09-23 09:30:09 +04:00
|
|
|
|
{
|
|
|
|
|
int sysid, start, size;
|
|
|
|
|
|
1999-01-28 00:41:31 +03:00
|
|
|
|
sysid = partp->mbrp_typ,
|
|
|
|
|
start = getlong(&partp->mbrp_start),
|
|
|
|
|
size = getlong(&partp->mbrp_size);
|
1994-09-23 09:30:09 +04:00
|
|
|
|
decimal("sysid", &sysid);
|
|
|
|
|
decimal("start", &start);
|
|
|
|
|
decimal("size", &size);
|
1999-01-28 00:41:31 +03:00
|
|
|
|
partp->mbrp_typ = sysid;
|
|
|
|
|
putlong(&partp->mbrp_start, start);
|
|
|
|
|
putlong(&partp->mbrp_size, size);
|
1994-09-23 09:30:09 +04:00
|
|
|
|
}
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-10-20 03:06:17 +03:00
|
|
|
|
if (yesno("Explicitly specify beg/end address?")) {
|
1994-09-23 09:30:09 +04:00
|
|
|
|
int tsector, tcylinder, thead;
|
|
|
|
|
|
1999-01-28 00:41:31 +03:00
|
|
|
|
tcylinder = MBR_PCYL(partp->mbrp_scyl, partp->mbrp_ssect);
|
|
|
|
|
thead = partp->mbrp_shd;
|
|
|
|
|
tsector = MBR_PSECT(partp->mbrp_ssect);
|
1994-09-23 09:30:09 +04:00
|
|
|
|
decimal("beginning cylinder", &tcylinder);
|
1998-09-28 19:44:18 +04:00
|
|
|
|
#if 0
|
|
|
|
|
checkcyl(tcylinder);
|
|
|
|
|
#endif
|
1994-09-23 09:30:09 +04:00
|
|
|
|
decimal("beginning head", &thead);
|
|
|
|
|
decimal("beginning sector", &tsector);
|
1999-01-28 00:41:31 +03:00
|
|
|
|
partp->mbrp_scyl = DOSCYL(tcylinder);
|
|
|
|
|
partp->mbrp_shd = thead;
|
|
|
|
|
partp->mbrp_ssect = DOSSECT(tsector, tcylinder);
|
1994-09-23 09:30:09 +04:00
|
|
|
|
|
1999-01-28 00:41:31 +03:00
|
|
|
|
tcylinder = MBR_PCYL(partp->mbrp_ecyl, partp->mbrp_esect);
|
|
|
|
|
thead = partp->mbrp_ehd;
|
|
|
|
|
tsector = MBR_PSECT(partp->mbrp_esect);
|
1994-09-23 09:30:09 +04:00
|
|
|
|
decimal("ending cylinder", &tcylinder);
|
|
|
|
|
decimal("ending head", &thead);
|
|
|
|
|
decimal("ending sector", &tsector);
|
1999-01-28 00:41:31 +03:00
|
|
|
|
partp->mbrp_ecyl = DOSCYL(tcylinder);
|
|
|
|
|
partp->mbrp_ehd = thead;
|
|
|
|
|
partp->mbrp_esect = DOSSECT(tsector, tcylinder);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
} else {
|
1998-09-28 19:44:18 +04:00
|
|
|
|
|
1999-01-28 00:41:31 +03:00
|
|
|
|
if (partp->mbrp_typ == 0
|
|
|
|
|
&& getlong(&partp->mbrp_start) == 0
|
|
|
|
|
&& getlong(&partp->mbrp_size) == 0)
|
1998-10-02 21:23:22 +04:00
|
|
|
|
memset(partp, 0, sizeof *partp);
|
|
|
|
|
else {
|
1998-09-28 19:44:18 +04:00
|
|
|
|
#if 0
|
1999-01-28 00:41:31 +03:00
|
|
|
|
checkcyl(getlong(&partp->mbrp_start)
|
1998-10-02 21:23:22 +04:00
|
|
|
|
/ dos_cylindersectors);
|
1998-09-28 19:44:18 +04:00
|
|
|
|
#endif
|
1999-01-28 00:41:31 +03:00
|
|
|
|
dos(getlong(&partp->mbrp_start), &partp->mbrp_scyl,
|
|
|
|
|
&partp->mbrp_shd, &partp->mbrp_ssect);
|
|
|
|
|
dos(getlong(&partp->mbrp_start)
|
|
|
|
|
+ getlong(&partp->mbrp_size) - 1,
|
|
|
|
|
&partp->mbrp_ecyl, &partp->mbrp_ehd,
|
|
|
|
|
&partp->mbrp_esect);
|
1998-10-02 21:23:22 +04:00
|
|
|
|
}
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
1994-09-23 08:30:13 +04:00
|
|
|
|
|
|
|
|
|
print_part(part);
|
1994-10-20 03:06:17 +03:00
|
|
|
|
} while (!yesno("Is this entry okay?"));
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
void
|
1993-04-09 23:23:56 +04:00
|
|
|
|
print_params()
|
|
|
|
|
{
|
1994-09-23 08:30:13 +04:00
|
|
|
|
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (sh_flag) {
|
1998-11-08 03:29:08 +03:00
|
|
|
|
printf ("DLCYL=%d\nDLHEAD=%d\nDLSEC=%d\nDLSIZE=%d\n",
|
|
|
|
|
cylinders, heads, sectors, disksectors);
|
1997-07-29 12:31:31 +04:00
|
|
|
|
printf ("BCYL=%d\nBHEAD=%d\nBSEC=%d\n",
|
|
|
|
|
dos_cylinders, dos_heads, dos_sectors);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
1997-08-12 03:31:41 +04:00
|
|
|
|
/* Not sh_flag */
|
1999-04-17 05:38:00 +04:00
|
|
|
|
printf("NetBSD disklabel disk geometry:\n");
|
|
|
|
|
printf("cylinders: %d heads: %d sectors/track: %d (%d sectors/cylinder)\n\n",
|
1994-09-23 09:30:09 +04:00
|
|
|
|
cylinders, heads, sectors, cylindersectors);
|
1999-04-17 05:38:00 +04:00
|
|
|
|
printf("BIOS disk geometry:\n");
|
|
|
|
|
printf("cylinders: %d heads: %d sectors/track: %d (%d sectors/cylinder)\n\n",
|
1994-09-23 09:30:09 +04:00
|
|
|
|
dos_cylinders, dos_heads, dos_sectors, dos_cylindersectors);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
void
|
1993-04-09 23:23:56 +04:00
|
|
|
|
change_active(which)
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int which;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1999-01-28 00:41:31 +03:00
|
|
|
|
struct mbr_partition *partp;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int part;
|
1997-08-12 03:31:41 +04:00
|
|
|
|
int active = 4;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
|
|
|
|
|
partp = &mboot.parts[0];
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
|
|
|
|
if (a_flag && which != -1)
|
|
|
|
|
active = which;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
else {
|
1999-01-28 00:41:31 +03:00
|
|
|
|
for (part = 0; part < NMBRPART; part++)
|
|
|
|
|
if (partp[part].mbrp_flag & ACTIVE)
|
1994-09-23 08:30:13 +04:00
|
|
|
|
active = part;
|
|
|
|
|
}
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (!f_flag) {
|
|
|
|
|
if (yesno("Do you want to change the active partition?")) {
|
|
|
|
|
printf ("Choosing 4 will make no partition active.\n");
|
|
|
|
|
do {
|
|
|
|
|
decimal("active partition", &active);
|
|
|
|
|
} while (!yesno("Are you happy with this choice?"));
|
|
|
|
|
} else
|
|
|
|
|
return;
|
|
|
|
|
} else
|
|
|
|
|
if (active != 4)
|
|
|
|
|
printf ("Making partition %d active.\n", active);
|
|
|
|
|
|
1999-01-28 00:41:31 +03:00
|
|
|
|
for (part = 0; part < NMBRPART; part++)
|
|
|
|
|
partp[part].mbrp_flag &= ~ACTIVE;
|
1997-08-12 03:31:41 +04:00
|
|
|
|
if (active < 4)
|
1999-01-28 00:41:31 +03:00
|
|
|
|
partp[active].mbrp_flag |= ACTIVE;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
void
|
1993-04-09 23:23:56 +04:00
|
|
|
|
get_params_to_use()
|
|
|
|
|
{
|
1997-09-06 01:26:57 +04:00
|
|
|
|
if (b_flag) {
|
|
|
|
|
dos_cylinders = b_cyl;
|
|
|
|
|
dos_heads = b_head;
|
|
|
|
|
dos_sectors = b_sec;
|
|
|
|
|
dos_cylindersectors = dos_heads * dos_sectors;
|
|
|
|
|
return;
|
|
|
|
|
}
|
1994-09-23 08:30:13 +04:00
|
|
|
|
|
1993-04-09 23:23:56 +04:00
|
|
|
|
print_params();
|
1994-09-23 08:30:13 +04:00
|
|
|
|
if (yesno("Do you want to change our idea of what BIOS thinks?")) {
|
|
|
|
|
do {
|
1994-09-23 09:30:09 +04:00
|
|
|
|
decimal("BIOS's idea of #cylinders", &dos_cylinders);
|
|
|
|
|
decimal("BIOS's idea of #heads", &dos_heads);
|
|
|
|
|
decimal("BIOS's idea of #sectors", &dos_sectors);
|
|
|
|
|
dos_cylindersectors = dos_heads * dos_sectors;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
print_params();
|
1994-09-23 08:30:13 +04:00
|
|
|
|
} while (!yesno("Are you happy with this choice?"));
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************\
|
|
|
|
|
* Change real numbers into strange dos numbers *
|
|
|
|
|
\***********************************************/
|
1994-09-23 08:30:13 +04:00
|
|
|
|
void
|
1994-09-23 09:30:09 +04:00
|
|
|
|
dos(sector, cylinderp, headp, sectorp)
|
|
|
|
|
int sector;
|
|
|
|
|
unsigned char *cylinderp, *headp, *sectorp;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1994-09-23 09:30:09 +04:00
|
|
|
|
int cylinder, head;
|
2000-05-27 23:02:54 +04:00
|
|
|
|
int biosmaxsec;
|
|
|
|
|
|
|
|
|
|
biosmaxsec = dos_cylinders * dos_heads * dos_sectors - 1;
|
|
|
|
|
if (sector > biosmaxsec)
|
|
|
|
|
sector = biosmaxsec;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-09-23 09:30:09 +04:00
|
|
|
|
cylinder = sector / dos_cylindersectors;
|
1998-09-28 19:44:18 +04:00
|
|
|
|
|
1994-09-23 09:30:09 +04:00
|
|
|
|
sector -= cylinder * dos_cylindersectors;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-09-23 09:30:09 +04:00
|
|
|
|
head = sector / dos_sectors;
|
|
|
|
|
sector -= head * dos_sectors;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-09-23 09:30:09 +04:00
|
|
|
|
*cylinderp = DOSCYL(cylinder);
|
|
|
|
|
*headp = head;
|
|
|
|
|
*sectorp = DOSSECT(sector + 1, cylinder);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1998-09-28 19:44:18 +04:00
|
|
|
|
#if 0
|
|
|
|
|
void
|
|
|
|
|
checkcyl(cyl)
|
|
|
|
|
int cyl;
|
|
|
|
|
{
|
|
|
|
|
if (cyl >= MAXCYL)
|
|
|
|
|
warnx("partition start beyond BIOS limit");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1993-04-09 23:23:56 +04:00
|
|
|
|
int fd;
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int
|
1993-04-09 23:23:56 +04:00
|
|
|
|
open_disk(u_flag)
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int u_flag;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1997-09-14 17:52:26 +04:00
|
|
|
|
static char namebuf[MAXPATHLEN + 1];
|
1994-09-23 08:30:13 +04:00
|
|
|
|
struct stat st;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1997-09-25 09:08:28 +04:00
|
|
|
|
fd = opendisk(disk, u_flag ? O_RDWR : O_RDONLY, namebuf,
|
|
|
|
|
sizeof(namebuf), 0);
|
1997-09-14 17:52:26 +04:00
|
|
|
|
if (fd < 0) {
|
|
|
|
|
warn("%s", namebuf);
|
1994-09-23 08:30:13 +04:00
|
|
|
|
return (-1);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
1997-09-14 17:52:26 +04:00
|
|
|
|
disk = namebuf;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
if (fstat(fd, &st) == -1) {
|
|
|
|
|
close(fd);
|
|
|
|
|
warn("%s", disk);
|
|
|
|
|
return (-1);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
1994-10-20 03:06:17 +03:00
|
|
|
|
if (!S_ISCHR(st.st_mode) && !S_ISREG(st.st_mode)) {
|
1994-09-23 08:30:13 +04:00
|
|
|
|
close(fd);
|
1994-10-20 03:06:17 +03:00
|
|
|
|
warnx("%s is not a character device or regular file", disk);
|
1994-09-23 08:30:13 +04:00
|
|
|
|
return (-1);
|
|
|
|
|
}
|
|
|
|
|
if (get_params() == -1) {
|
|
|
|
|
close(fd);
|
|
|
|
|
return (-1);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
1994-09-23 08:30:13 +04:00
|
|
|
|
return (0);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int
|
1993-04-09 23:23:56 +04:00
|
|
|
|
read_disk(sector, buf)
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int sector;
|
|
|
|
|
void *buf;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1994-09-23 08:30:13 +04:00
|
|
|
|
|
|
|
|
|
if (lseek(fd, (off_t)(sector * 512), 0) == -1)
|
|
|
|
|
return (-1);
|
|
|
|
|
return (read(fd, buf, 512));
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int
|
1993-04-09 23:23:56 +04:00
|
|
|
|
write_disk(sector, buf)
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int sector;
|
|
|
|
|
void *buf;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1994-09-23 08:30:13 +04:00
|
|
|
|
|
|
|
|
|
if (lseek(fd, (off_t)(sector * 512), 0) == -1)
|
|
|
|
|
return (-1);
|
|
|
|
|
return (write(fd, buf, 512));
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int
|
|
|
|
|
get_params()
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
|
|
|
|
|
2000-07-06 21:22:43 +04:00
|
|
|
|
if (ioctl(fd, DIOCGDEFLABEL, &disklabel) == -1) {
|
|
|
|
|
warn("DIOCGDEFLABEL");
|
|
|
|
|
if (ioctl(fd, DIOCGDINFO, &disklabel) == -1) {
|
|
|
|
|
warn("DIOCGDINFO");
|
|
|
|
|
return (-1);
|
|
|
|
|
}
|
1994-09-23 08:30:13 +04:00
|
|
|
|
}
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-09-23 09:30:09 +04:00
|
|
|
|
dos_cylinders = cylinders = disklabel.d_ncylinders;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
dos_heads = heads = disklabel.d_ntracks;
|
|
|
|
|
dos_sectors = sectors = disklabel.d_nsectors;
|
1994-09-23 09:30:09 +04:00
|
|
|
|
dos_cylindersectors = cylindersectors = heads * sectors;
|
1998-11-08 03:29:08 +03:00
|
|
|
|
disksectors = disklabel.d_secperunit;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
return (0);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int
|
1993-04-09 23:23:56 +04:00
|
|
|
|
read_s0()
|
|
|
|
|
{
|
1994-09-23 08:30:13 +04:00
|
|
|
|
|
|
|
|
|
if (read_disk(0, mboot.bootinst) == -1) {
|
|
|
|
|
warn("can't read fdisk partition table");
|
|
|
|
|
return (-1);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
1999-01-28 00:41:31 +03:00
|
|
|
|
if (getshort(&mboot.signature) != MBR_MAGIC) {
|
1997-03-29 23:46:17 +03:00
|
|
|
|
warnx("invalid fdisk partition table found");
|
1994-09-23 08:30:13 +04:00
|
|
|
|
return (-1);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
1994-09-23 08:30:13 +04:00
|
|
|
|
return (0);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int
|
1993-04-09 23:23:56 +04:00
|
|
|
|
write_s0()
|
|
|
|
|
{
|
1998-10-15 19:23:23 +04:00
|
|
|
|
int flag, i;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
|
1993-04-09 23:23:56 +04:00
|
|
|
|
/*
|
|
|
|
|
* write enable label sector before write (if necessary),
|
|
|
|
|
* disable after writing.
|
|
|
|
|
* needed if the disklabel protected area also protects
|
|
|
|
|
* sector 0. (e.g. empty disk)
|
|
|
|
|
*/
|
|
|
|
|
flag = 1;
|
|
|
|
|
if (ioctl(fd, DIOCWLABEL, &flag) < 0)
|
1994-09-23 08:30:13 +04:00
|
|
|
|
warn("DIOCWLABEL");
|
|
|
|
|
if (write_disk(0, mboot.bootinst) == -1) {
|
|
|
|
|
warn("can't write fdisk partition table");
|
1993-04-09 23:23:56 +04:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
1998-10-15 19:23:23 +04:00
|
|
|
|
for (i = bootsize; (i -= 0x200) > 0;)
|
|
|
|
|
if (write_disk(i / 0x200, bootcode + i) == -1) {
|
|
|
|
|
warn("can't write bootcode");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
1994-09-23 08:30:13 +04:00
|
|
|
|
flag = 0;
|
|
|
|
|
if (ioctl(fd, DIOCWLABEL, &flag) < 0)
|
|
|
|
|
warn("DIOCWLABEL");
|
1997-09-06 01:26:57 +04:00
|
|
|
|
return 0;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int
|
|
|
|
|
yesno(str)
|
|
|
|
|
char *str;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int ch, first;
|
|
|
|
|
|
1993-04-09 23:23:56 +04:00
|
|
|
|
printf("%s [n] ", str);
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
first = ch = getchar();
|
|
|
|
|
while (ch != '\n' && ch != EOF)
|
|
|
|
|
ch = getchar();
|
|
|
|
|
return (first == 'y' || first == 'Y');
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 09:30:09 +04:00
|
|
|
|
void
|
|
|
|
|
decimal(str, num)
|
1994-09-23 08:30:13 +04:00
|
|
|
|
char *str;
|
1994-09-23 09:30:09 +04:00
|
|
|
|
int *num;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1994-12-05 23:15:31 +03:00
|
|
|
|
int acc = 0;
|
1994-09-23 08:30:13 +04:00
|
|
|
|
char *cp;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-09-23 09:30:09 +04:00
|
|
|
|
for (;; printf("%s is not a valid decimal number.\n", lbuf)) {
|
1999-04-17 05:38:00 +04:00
|
|
|
|
printf("%s: [%d] ", str, *num);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
|
|
|
|
fgets(lbuf, LBUF, stdin);
|
1994-10-20 03:06:17 +03:00
|
|
|
|
lbuf[strlen(lbuf)-1] = '\0';
|
|
|
|
|
cp = lbuf;
|
|
|
|
|
|
|
|
|
|
cp += strspn(cp, " \t");
|
|
|
|
|
if (*cp == '\0')
|
1994-09-23 09:30:09 +04:00
|
|
|
|
return;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1999-04-17 05:38:00 +04:00
|
|
|
|
if (!isdigit(*cp) && *cp != '-')
|
1994-09-23 09:30:09 +04:00
|
|
|
|
continue;
|
1994-10-20 03:06:17 +03:00
|
|
|
|
acc = strtol(lbuf, &cp, 10);
|
|
|
|
|
|
1994-09-23 09:30:09 +04:00
|
|
|
|
cp += strspn(cp, " \t");
|
|
|
|
|
if (*cp != '\0')
|
|
|
|
|
continue;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
|
1994-09-23 09:30:09 +04:00
|
|
|
|
*num = acc;
|
|
|
|
|
return;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
1994-09-23 09:30:09 +04:00
|
|
|
|
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-23 08:30:13 +04:00
|
|
|
|
int
|
|
|
|
|
type_match(key, item)
|
|
|
|
|
const void *key, *item;
|
1993-04-09 23:23:56 +04:00
|
|
|
|
{
|
1994-09-23 08:30:13 +04:00
|
|
|
|
const int *typep = key;
|
|
|
|
|
const struct part_type *ptr = item;
|
|
|
|
|
|
|
|
|
|
if (*typep < ptr->type)
|
|
|
|
|
return (-1);
|
|
|
|
|
if (*typep > ptr->type)
|
|
|
|
|
return (1);
|
|
|
|
|
return (0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
get_type(type)
|
|
|
|
|
int type;
|
|
|
|
|
{
|
|
|
|
|
struct part_type *ptr;
|
|
|
|
|
|
|
|
|
|
ptr = bsearch(&type, part_types,
|
|
|
|
|
sizeof(part_types) / sizeof(struct part_type),
|
|
|
|
|
sizeof(struct part_type), type_match);
|
|
|
|
|
if (ptr == 0)
|
|
|
|
|
return ("unknown");
|
1997-09-06 01:26:57 +04:00
|
|
|
|
return (ptr->name);
|
1993-04-09 23:23:56 +04:00
|
|
|
|
}
|