1995-05-30 06:12:45 +00:00
|
|
|
|
/*
|
1993-06-12 14:58:17 +00:00
|
|
|
|
* Mach Operating System
|
|
|
|
|
* Copyright (c) 1992 Carnegie Mellon University
|
|
|
|
|
* All Rights Reserved.
|
1995-05-30 06:12:45 +00:00
|
|
|
|
*
|
1993-06-12 14:58:17 +00: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.
|
1995-05-30 06:12:45 +00:00
|
|
|
|
*
|
1993-06-12 14:58:17 +00: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.
|
1995-05-30 06:12:45 +00:00
|
|
|
|
*
|
1993-06-12 14:58:17 +00:00
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
1995-05-30 06:12:45 +00:00
|
|
|
|
*
|
1993-06-12 14:58:17 +00:00
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
|
* School of Computer Science
|
|
|
|
|
* Carnegie Mellon University
|
|
|
|
|
* Pittsburgh PA 15213-3890
|
1995-05-30 06:12:45 +00:00
|
|
|
|
*
|
1993-06-12 14:58:17 +00:00
|
|
|
|
* any improvements or extensions that they make and grant Carnegie Mellon
|
|
|
|
|
* the rights to redistribute these changes.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/disklabel.h>
|
|
|
|
|
#include <stdio.h>
|
1996-06-21 02:39:19 +00:00
|
|
|
|
#include <string.h>
|
1995-09-01 18:00:14 +00:00
|
|
|
|
#include <errno.h>
|
1993-06-12 14:58:17 +00:00
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
#include <fcntl.h>
|
1996-06-21 02:39:19 +00:00
|
|
|
|
#include <unistd.h>
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
|
|
int iotest;
|
|
|
|
|
|
|
|
|
|
#define LBUF 100
|
|
|
|
|
static char lbuf[LBUF];
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
*
|
|
|
|
|
* Ported to 386bsd by Julian Elischer Thu Oct 15 20:26:46 PDT 1992
|
|
|
|
|
*
|
|
|
|
|
* 14-Dec-89 Robert Baron (rvb) at Carnegie-Mellon University
|
|
|
|
|
* Copyright (c) 1989 Robert. V. Baron
|
|
|
|
|
* Created.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define Decimal(str, ans, tmp) if (decimal(str, &tmp, ans)) ans = tmp
|
|
|
|
|
#define Hex(str, ans, tmp) if (hex(str, &tmp, ans)) ans = tmp
|
|
|
|
|
#define String(str, ans, len) {char *z = ans; char **dflt = &z; if (string(str, dflt)) strncpy(ans, *dflt, len); }
|
|
|
|
|
|
|
|
|
|
#define RoundCyl(x) ((((x) + cylsecs - 1) / cylsecs) * cylsecs)
|
|
|
|
|
|
1996-12-01 11:25:38 +00:00
|
|
|
|
#define MAX_SEC_SIZE 2048 /* maximum section size that is supported */
|
|
|
|
|
#define MIN_SEC_SIZE 512 /* the sector size to start sensing at */
|
|
|
|
|
int secsize = 0; /* the sensed sector size */
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
1995-09-01 18:00:14 +00:00
|
|
|
|
const char *disk;
|
|
|
|
|
const char *disks[] =
|
|
|
|
|
{
|
|
|
|
|
"/dev/rwd0", "/dev/rsd0", "/dev/rod0", 0
|
|
|
|
|
};
|
|
|
|
|
|
1993-06-12 14:58:17 +00:00
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
|
|
struct disklabel disklabel; /* disk parameters */
|
|
|
|
|
|
|
|
|
|
int cyls, sectors, heads, cylsecs, disksecs;
|
|
|
|
|
|
|
|
|
|
struct mboot
|
|
|
|
|
{
|
|
|
|
|
unsigned char padding[2]; /* force the longs to be long alligned */
|
|
|
|
|
unsigned char bootinst[DOSPARTOFF];
|
|
|
|
|
struct dos_partition parts[4];
|
|
|
|
|
unsigned short int signature;
|
1996-12-01 11:25:38 +00:00
|
|
|
|
/* room to read in MBRs that are bigger then DEV_BSIZE */
|
|
|
|
|
unsigned char large_sector_overflow[MAX_SEC_SIZE-MIN_SEC_SIZE];
|
1993-06-12 14:58:17 +00:00
|
|
|
|
};
|
|
|
|
|
struct mboot mboot;
|
|
|
|
|
|
|
|
|
|
#define ACTIVE 0x80
|
|
|
|
|
#define BOOT_MAGIC 0xAA55
|
|
|
|
|
|
|
|
|
|
int dos_cyls;
|
|
|
|
|
int dos_heads;
|
|
|
|
|
int dos_sectors;
|
|
|
|
|
int dos_cylsecs;
|
|
|
|
|
|
|
|
|
|
#define DOSSECT(s,c) ((s & 0x3f) | ((c >> 2) & 0xc0))
|
|
|
|
|
#define DOSCYL(c) (c & 0xff)
|
|
|
|
|
static int partition = -1;
|
|
|
|
|
|
|
|
|
|
|
1996-11-06 14:08:39 +00:00
|
|
|
|
#define MAX_ARGS 10
|
|
|
|
|
|
|
|
|
|
static int current_line_number;
|
|
|
|
|
|
|
|
|
|
static int geom_processed = 0;
|
|
|
|
|
static int part_processed = 0;
|
|
|
|
|
static int active_processed = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct cmd {
|
|
|
|
|
char cmd;
|
|
|
|
|
int n_args;
|
|
|
|
|
struct arg {
|
|
|
|
|
char argtype;
|
|
|
|
|
int arg_val;
|
|
|
|
|
} args[MAX_ARGS];
|
|
|
|
|
} CMD;
|
|
|
|
|
|
|
|
|
|
|
1993-06-12 14:58:17 +00:00
|
|
|
|
static int a_flag = 0; /* set active partition */
|
|
|
|
|
static int i_flag = 0; /* replace partition data */
|
|
|
|
|
static int u_flag = 0; /* update partition data */
|
1996-11-06 14:08:39 +00:00
|
|
|
|
static int t_flag = 0; /* test only, if f_flag is given */
|
|
|
|
|
static char *f_flag = NULL; /* Read config info from file */
|
|
|
|
|
static int v_flag = 0; /* Be verbose */
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
|
|
static unsigned char bootcode[] = {
|
1995-05-30 06:12:45 +00:00
|
|
|
|
0x33, 0xc0, 0xfa, 0x8e, 0xd0, 0xbc, 0x00, 0x7c, 0x8e, 0xc0, 0x8e, 0xd8, 0xfb, 0x8b, 0xf4, 0xbf,
|
|
|
|
|
0x00, 0x06, 0xb9, 0x00, 0x02, 0xfc, 0xf3, 0xa4, 0xea, 0x1d, 0x06, 0x00, 0x00, 0xb0, 0x04, 0xbe,
|
|
|
|
|
0xbe, 0x07, 0x80, 0x3c, 0x80, 0x74, 0x0c, 0x83, 0xc6, 0x10, 0xfe, 0xc8, 0x75, 0xf4, 0xbe, 0xbd,
|
|
|
|
|
0x06, 0xeb, 0x43, 0x8b, 0xfe, 0x8b, 0x14, 0x8b, 0x4c, 0x02, 0x83, 0xc6, 0x10, 0xfe, 0xc8, 0x74,
|
|
|
|
|
0x0a, 0x80, 0x3c, 0x80, 0x75, 0xf4, 0xbe, 0xbd, 0x06, 0xeb, 0x2b, 0xbd, 0x05, 0x00, 0xbb, 0x00,
|
|
|
|
|
0x7c, 0xb8, 0x01, 0x02, 0xcd, 0x13, 0x73, 0x0c, 0x33, 0xc0, 0xcd, 0x13, 0x4d, 0x75, 0xef, 0xbe,
|
|
|
|
|
0x9e, 0x06, 0xeb, 0x12, 0x81, 0x3e, 0xfe, 0x7d, 0x55, 0xaa, 0x75, 0x07, 0x8b, 0xf7, 0xea, 0x00,
|
|
|
|
|
0x7c, 0x00, 0x00, 0xbe, 0x85, 0x06, 0x2e, 0xac, 0x0a, 0xc0, 0x74, 0x06, 0xb4, 0x0e, 0xcd, 0x10,
|
1993-06-12 14:58:17 +00:00
|
|
|
|
0xeb, 0xf4, 0xfb, 0xeb, 0xfe,
|
|
|
|
|
'M', 'i', 's', 's', 'i', 'n', 'g', ' ',
|
|
|
|
|
'o', 'p', 'e', 'r', 'a', 't', 'i', 'n', 'g', ' ', 's', 'y', 's', 't', 'e', 'm', 0,
|
1995-05-30 06:12:45 +00:00
|
|
|
|
'E', 'r', 'r', 'o', 'r', ' ', 'l', 'o', 'a', 'd', 'i', 'n', 'g', ' ',
|
1993-06-12 14:58:17 +00:00
|
|
|
|
'o', 'p', 'e', 'r', 'a', 't', 'i', 'n', 'g', ' ', 's', 'y', 's', 't', 'e', 'm', 0,
|
|
|
|
|
'I', 'n', 'v', 'a', 'l', 'i', 'd', ' ',
|
|
|
|
|
'p', 'a', 'r', 't', 'i', 't', 'i', 'o', 'n', ' ', 't', 'a', 'b', 'l', 'e', 0,
|
|
|
|
|
'A', 'u', 't', 'h', 'o', 'r', ' ', '-', ' ',
|
1995-05-30 06:12:45 +00:00
|
|
|
|
'S', 'i', 'e', 'g', 'm', 'a', 'r', ' ', 'S', 'c', 'h', 'm', 'i', 'd', 't', 0,0,0,
|
|
|
|
|
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
1993-06-12 14:58:17 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct part_type
|
|
|
|
|
{
|
|
|
|
|
unsigned char type;
|
|
|
|
|
char *name;
|
|
|
|
|
}part_types[] =
|
|
|
|
|
{
|
1995-05-30 06:12:45 +00:00
|
|
|
|
{0x00, "unused"}
|
|
|
|
|
,{0x01, "Primary DOS with 12 bit FAT"}
|
|
|
|
|
,{0x02, "XENIX / filesystem"}
|
|
|
|
|
,{0x03, "XENIX /usr filesystem"}
|
|
|
|
|
,{0x04, "Primary DOS with 16 bit FAT"}
|
|
|
|
|
,{0x05, "Extended DOS"}
|
|
|
|
|
,{0x06, "Primary 'big' DOS (> 32MB)"}
|
|
|
|
|
,{0x07, "OS/2 HPFS, QNX or Advanced UNIX"}
|
|
|
|
|
,{0x08, "AIX filesystem"}
|
|
|
|
|
,{0x09, "AIX boot partition or Coherent"}
|
|
|
|
|
,{0x0A, "OS/2 Boot Manager or OPUS"}
|
|
|
|
|
,{0x10, "OPUS"}
|
|
|
|
|
,{0x40, "VENIX 286"}
|
|
|
|
|
,{0x50, "DM"}
|
|
|
|
|
,{0x51, "DM"}
|
|
|
|
|
,{0x52, "CP/M or Microport SysV/AT"}
|
|
|
|
|
,{0x56, "GB"}
|
|
|
|
|
,{0x61, "Speed"}
|
|
|
|
|
,{0x63, "ISC UNIX, other System V/386, GNU HURD or Mach"}
|
|
|
|
|
,{0x64, "Novell Netware 2.xx"}
|
|
|
|
|
,{0x65, "Novell Netware 3.xx"}
|
|
|
|
|
,{0x75, "PCIX"}
|
|
|
|
|
,{0x80, "Minix 1.1 ... 1.4a"}
|
|
|
|
|
,{0x81, "Minix 1.4b ... 1.5.10"}
|
|
|
|
|
,{0x82, "Linux swap"}
|
|
|
|
|
,{0x83, "Linux filesystem"}
|
|
|
|
|
,{0x93, "Amoeba filesystem"}
|
|
|
|
|
,{0x94, "Amoeba bad block table"}
|
|
|
|
|
,{0xA5, "FreeBSD/NetBSD/386BSD"}
|
1997-05-02 03:08:04 +00:00
|
|
|
|
,{0xA6, "OpenBSD"}
|
1995-04-17 09:42:54 +00:00
|
|
|
|
,{0xA7, "NEXTSTEP"}
|
1995-05-30 06:12:45 +00:00
|
|
|
|
,{0xB7, "BSDI BSD/386 filesystem"}
|
|
|
|
|
,{0xB8, "BSDI BSD/386 swap"}
|
|
|
|
|
,{0xDB, "Concurrent CPM or C.DOS or CTOS"}
|
|
|
|
|
,{0xE1, "Speed"}
|
|
|
|
|
,{0xE3, "Speed"}
|
|
|
|
|
,{0xE4, "Speed"}
|
|
|
|
|
,{0xF1, "Speed"}
|
|
|
|
|
,{0xF2, "DOS 3.3+ Secondary"}
|
|
|
|
|
,{0xF4, "Speed"}
|
|
|
|
|
,{0xFF, "BBT (Bad Blocks Table)"}
|
1993-06-12 14:58:17 +00:00
|
|
|
|
};
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static void print_s0(int which);
|
|
|
|
|
static void print_part(int i);
|
|
|
|
|
static void init_sector0(unsigned long start);
|
1996-11-06 14:08:39 +00:00
|
|
|
|
static void init_boot(void);
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static void change_part(int i);
|
|
|
|
|
static void print_params();
|
|
|
|
|
static void change_active(int which);
|
|
|
|
|
static void get_params_to_use();
|
1996-10-13 18:18:50 +00:00
|
|
|
|
static void dos(int sec, int size, unsigned char *c, unsigned char *s,
|
|
|
|
|
unsigned char *h);
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static int open_disk(int u_flag);
|
|
|
|
|
static ssize_t read_disk(off_t sector, void *buf);
|
|
|
|
|
static ssize_t write_disk(off_t sector, void *buf);
|
|
|
|
|
static int get_params();
|
|
|
|
|
static int read_s0();
|
|
|
|
|
static int write_s0();
|
|
|
|
|
static int ok(char *str);
|
|
|
|
|
static int decimal(char *str, int *num, int deflt);
|
|
|
|
|
static char *get_type(int type);
|
1996-11-06 14:08:39 +00:00
|
|
|
|
static int read_config(char *config_file);
|
|
|
|
|
static void reset_boot(void);
|
1996-06-21 02:39:19 +00:00
|
|
|
|
#if 0
|
|
|
|
|
static int hex(char *str, int *num, int deflt);
|
|
|
|
|
static int string(char *str, char **ans);
|
|
|
|
|
#endif
|
|
|
|
|
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
int
|
|
|
|
|
main(int argc, char *argv[])
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
1995-09-01 18:00:14 +00:00
|
|
|
|
int i;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
|
|
name = *argv;
|
|
|
|
|
{register char *cp = name;
|
|
|
|
|
while (*cp) if (*cp++ == '/') name = cp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for ( argv++ ; --argc ; argv++ ) { register char *token = *argv;
|
|
|
|
|
if (*token++ != '-' || !*token)
|
|
|
|
|
break;
|
|
|
|
|
else { register int flag;
|
1996-06-21 02:39:19 +00:00
|
|
|
|
for ( ; (flag = *token++) ; ) {
|
1993-06-12 14:58:17 +00:00
|
|
|
|
switch (flag) {
|
|
|
|
|
case '1':
|
|
|
|
|
partition = 1;
|
|
|
|
|
break;
|
|
|
|
|
case '2':
|
|
|
|
|
partition = 2;
|
|
|
|
|
break;
|
|
|
|
|
case '3':
|
|
|
|
|
partition = 3;
|
|
|
|
|
break;
|
1997-06-03 21:24:39 +00:00
|
|
|
|
case '4':
|
|
|
|
|
partition = 4;
|
|
|
|
|
break;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
case 'a':
|
|
|
|
|
a_flag = 1;
|
|
|
|
|
break;
|
1996-11-06 14:08:39 +00:00
|
|
|
|
case 'f':
|
|
|
|
|
if (*token)
|
|
|
|
|
{
|
|
|
|
|
f_flag = token;
|
|
|
|
|
token = "";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (argc == 1)
|
|
|
|
|
{
|
|
|
|
|
goto usage;
|
|
|
|
|
}
|
|
|
|
|
--argc;
|
|
|
|
|
f_flag = *++argv;
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
* u_flag is needed, because we're
|
|
|
|
|
* writing to the disk.
|
|
|
|
|
*/
|
|
|
|
|
u_flag = 1;
|
|
|
|
|
break;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
case 'i':
|
|
|
|
|
i_flag = 1;
|
|
|
|
|
case 'u':
|
|
|
|
|
u_flag = 1;
|
|
|
|
|
break;
|
1996-11-06 14:08:39 +00:00
|
|
|
|
case 't':
|
|
|
|
|
t_flag = 1;
|
|
|
|
|
case 'v':
|
|
|
|
|
v_flag = 1;
|
|
|
|
|
break;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
default:
|
|
|
|
|
goto usage;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (argc > 0)
|
1995-09-01 18:00:14 +00:00
|
|
|
|
{
|
|
|
|
|
static char realname[12];
|
|
|
|
|
|
|
|
|
|
if(strncmp(argv[0], "/dev", 4) == 0)
|
|
|
|
|
disk = argv[0];
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
snprintf(realname, 12, "/dev/r%s", argv[0]);
|
|
|
|
|
disk = realname;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (open_disk(u_flag) < 0)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "Cannot open disk %s (%s)\n",
|
|
|
|
|
disk, sys_errlist[errno]);
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1996-06-21 02:39:19 +00:00
|
|
|
|
int i, rv = 0;
|
1995-05-30 06:12:45 +00:00
|
|
|
|
|
1995-09-01 18:00:14 +00:00
|
|
|
|
for(i = 0; disks[i]; i++)
|
|
|
|
|
{
|
|
|
|
|
disk = disks[i];
|
|
|
|
|
rv = open_disk(u_flag);
|
|
|
|
|
if(rv != -2) break;
|
|
|
|
|
}
|
|
|
|
|
if(rv < 0)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "Cannot open any disk (%s)\n",
|
|
|
|
|
sys_errlist[errno]);
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
|
|
printf("******* Working on device %s *******\n",disk);
|
1996-11-06 14:08:39 +00:00
|
|
|
|
|
|
|
|
|
if (f_flag)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
1996-11-06 14:08:39 +00:00
|
|
|
|
if (read_s0() || i_flag)
|
|
|
|
|
{
|
|
|
|
|
reset_boot();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!read_config(f_flag))
|
|
|
|
|
{
|
|
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
if (v_flag)
|
|
|
|
|
{
|
|
|
|
|
print_s0(-1);
|
|
|
|
|
}
|
|
|
|
|
if (!t_flag)
|
|
|
|
|
{
|
|
|
|
|
write_s0();
|
|
|
|
|
}
|
1993-06-12 14:58:17 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1996-11-06 14:08:39 +00:00
|
|
|
|
if(u_flag)
|
|
|
|
|
{
|
|
|
|
|
get_params_to_use();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1993-06-12 14:58:17 +00:00
|
|
|
|
print_params();
|
1996-11-06 14:08:39 +00:00
|
|
|
|
}
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
1996-11-06 14:08:39 +00:00
|
|
|
|
if (read_s0())
|
1993-06-12 14:58:17 +00:00
|
|
|
|
init_sector0(1);
|
|
|
|
|
|
1996-12-01 11:25:38 +00:00
|
|
|
|
printf("Media sector size is %d\n", secsize);
|
1996-11-06 14:08:39 +00:00
|
|
|
|
printf("Warning: BIOS sector numbering starts with sector 1\n");
|
|
|
|
|
printf("Information from DOS bootblock is:\n");
|
|
|
|
|
if (partition == -1)
|
1997-06-03 21:24:39 +00:00
|
|
|
|
for (i = 1; i <= NDOSPART; i++)
|
1996-11-06 14:08:39 +00:00
|
|
|
|
change_part(i);
|
|
|
|
|
else
|
1993-06-12 14:58:17 +00:00
|
|
|
|
change_part(partition);
|
|
|
|
|
|
1996-11-06 14:08:39 +00:00
|
|
|
|
if (u_flag || a_flag)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
change_active(partition);
|
|
|
|
|
|
1996-11-06 14:08:39 +00:00
|
|
|
|
if (u_flag || a_flag) {
|
|
|
|
|
if (!t_flag)
|
|
|
|
|
{
|
|
|
|
|
printf("\nWe haven't changed the partition table yet. ");
|
|
|
|
|
printf("This is your last chance.\n");
|
|
|
|
|
}
|
1993-06-12 14:58:17 +00:00
|
|
|
|
print_s0(-1);
|
1996-11-06 14:08:39 +00:00
|
|
|
|
if (!t_flag)
|
|
|
|
|
{
|
|
|
|
|
if (ok("Should we write new partition table?"))
|
1993-06-12 14:58:17 +00:00
|
|
|
|
write_s0();
|
1996-11-06 14:08:39 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
printf("\n-t flag specified -- partition table not written.\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
1993-06-12 14:58:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
|
|
|
|
|
|
usage:
|
1997-06-03 21:24:39 +00:00
|
|
|
|
printf("fdisk {-a|-i|-u} [-f <config file> [-t] [-v]] [-{1,2,3,4}] [disk]\n");
|
1996-06-21 02:39:19 +00:00
|
|
|
|
return(1);
|
1993-06-12 14:58:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static void
|
|
|
|
|
print_s0(int which)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
print_params();
|
|
|
|
|
printf("Information from DOS bootblock is:\n");
|
|
|
|
|
if (which == -1)
|
1997-06-03 21:24:39 +00:00
|
|
|
|
for (i = 1; i <= NDOSPART; i++)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
printf("%d: ", i), print_part(i);
|
|
|
|
|
else
|
|
|
|
|
print_part(which);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct dos_partition mtpart = { 0 };
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static void
|
|
|
|
|
print_part(int i)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
1997-06-02 19:25:48 +00:00
|
|
|
|
struct dos_partition *partp;
|
|
|
|
|
u_int64_t part_mb;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
1997-06-03 21:24:39 +00:00
|
|
|
|
partp = ((struct dos_partition *) &mboot.parts) + i - 1;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
|
|
if (!bcmp(partp, &mtpart, sizeof (struct dos_partition))) {
|
|
|
|
|
printf("<UNUSED>\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
1997-06-02 19:25:48 +00:00
|
|
|
|
/*
|
|
|
|
|
* Be careful not to overflow.
|
|
|
|
|
*/
|
|
|
|
|
part_mb = partp->dp_size;
|
|
|
|
|
part_mb *= secsize;
|
|
|
|
|
part_mb /= (1024 * 1024);
|
1993-06-12 14:58:17 +00:00
|
|
|
|
printf("sysid %d,(%s)\n", partp->dp_typ, get_type(partp->dp_typ));
|
1997-06-02 19:25:48 +00:00
|
|
|
|
printf(" start %ld, size %ld (%qd Meg), flag %x\n",
|
1993-06-12 14:58:17 +00:00
|
|
|
|
partp->dp_start,
|
1997-06-02 19:25:48 +00:00
|
|
|
|
partp->dp_size,
|
|
|
|
|
part_mb,
|
1993-06-12 14:58:17 +00:00
|
|
|
|
partp->dp_flag);
|
|
|
|
|
printf("\tbeg: cyl %d/ sector %d/ head %d;\n\tend: cyl %d/ sector %d/ head %d\n"
|
|
|
|
|
,DPCYL(partp->dp_scyl, partp->dp_ssect)
|
|
|
|
|
,DPSECT(partp->dp_ssect)
|
|
|
|
|
,partp->dp_shd
|
|
|
|
|
,DPCYL(partp->dp_ecyl, partp->dp_esect)
|
|
|
|
|
,DPSECT(partp->dp_esect)
|
|
|
|
|
,partp->dp_ehd);
|
|
|
|
|
}
|
|
|
|
|
|
1996-11-06 14:08:39 +00:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
init_boot(void)
|
|
|
|
|
{
|
|
|
|
|
memcpy(mboot.bootinst, bootcode, sizeof(bootcode));
|
|
|
|
|
mboot.signature = BOOT_MAGIC;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static void
|
|
|
|
|
init_sector0(unsigned long start)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
|
|
|
|
struct dos_partition *partp = (struct dos_partition *) (&mboot.parts[3]);
|
1996-06-21 02:39:19 +00:00
|
|
|
|
unsigned long size = disksecs - start;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
1996-11-06 14:08:39 +00:00
|
|
|
|
init_boot();
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
|
|
partp->dp_typ = DOSPTYP_386BSD;
|
|
|
|
|
partp->dp_flag = ACTIVE;
|
|
|
|
|
partp->dp_start = start;
|
|
|
|
|
partp->dp_size = size;
|
|
|
|
|
|
1996-10-13 18:18:50 +00:00
|
|
|
|
dos(partp->dp_start, partp->dp_size,
|
|
|
|
|
&partp->dp_scyl, &partp->dp_ssect, &partp->dp_shd);
|
|
|
|
|
dos(partp->dp_start + partp->dp_size - 1, partp->dp_size,
|
|
|
|
|
&partp->dp_ecyl, &partp->dp_esect, &partp->dp_ehd);
|
1993-06-12 14:58:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static void
|
|
|
|
|
change_part(int i)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
1997-06-03 21:24:39 +00:00
|
|
|
|
struct dos_partition *partp = ((struct dos_partition *) &mboot.parts) + i - 1;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
|
|
|
|
printf("The data for partition %d is:\n", i);
|
|
|
|
|
print_part(i);
|
|
|
|
|
|
|
|
|
|
if (u_flag && ok("Do you want to change it?")) {
|
|
|
|
|
int tmp;
|
|
|
|
|
|
|
|
|
|
if (i_flag) {
|
|
|
|
|
bzero((char *)partp, sizeof (struct dos_partition));
|
1997-06-03 21:24:39 +00:00
|
|
|
|
if (i == 4) {
|
1993-06-12 14:58:17 +00:00
|
|
|
|
init_sector0(1);
|
1997-06-03 21:24:39 +00:00
|
|
|
|
printf("\nThe static data for the DOS partition 4 has been reinitialized to:\n");
|
1993-06-12 14:58:17 +00:00
|
|
|
|
print_part(i);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
Decimal("sysid", partp->dp_typ, tmp);
|
|
|
|
|
Decimal("start", partp->dp_start, tmp);
|
|
|
|
|
Decimal("size", partp->dp_size, tmp);
|
|
|
|
|
|
|
|
|
|
if (ok("Explicitly specifiy beg/end address ?"))
|
|
|
|
|
{
|
|
|
|
|
int tsec,tcyl,thd;
|
|
|
|
|
tcyl = DPCYL(partp->dp_scyl,partp->dp_ssect);
|
|
|
|
|
thd = partp->dp_shd;
|
|
|
|
|
tsec = DPSECT(partp->dp_ssect);
|
|
|
|
|
Decimal("beginning cylinder", tcyl, tmp);
|
|
|
|
|
Decimal("beginning head", thd, tmp);
|
|
|
|
|
Decimal("beginning sector", tsec, tmp);
|
|
|
|
|
partp->dp_scyl = DOSCYL(tcyl);
|
|
|
|
|
partp->dp_ssect = DOSSECT(tsec,tcyl);
|
|
|
|
|
partp->dp_shd = thd;
|
|
|
|
|
|
|
|
|
|
tcyl = DPCYL(partp->dp_ecyl,partp->dp_esect);
|
|
|
|
|
thd = partp->dp_ehd;
|
|
|
|
|
tsec = DPSECT(partp->dp_esect);
|
|
|
|
|
Decimal("ending cylinder", tcyl, tmp);
|
|
|
|
|
Decimal("ending head", thd, tmp);
|
|
|
|
|
Decimal("ending sector", tsec, tmp);
|
|
|
|
|
partp->dp_ecyl = DOSCYL(tcyl);
|
|
|
|
|
partp->dp_esect = DOSSECT(tsec,tcyl);
|
|
|
|
|
partp->dp_ehd = thd;
|
|
|
|
|
} else {
|
1996-10-13 18:18:50 +00:00
|
|
|
|
dos(partp->dp_start, partp->dp_size,
|
|
|
|
|
&partp->dp_scyl, &partp->dp_ssect, &partp->dp_shd);
|
|
|
|
|
dos(partp->dp_start + partp->dp_size - 1, partp->dp_size,
|
|
|
|
|
&partp->dp_ecyl, &partp->dp_esect, &partp->dp_ehd);
|
1993-06-12 14:58:17 +00:00
|
|
|
|
}
|
1995-05-30 06:12:45 +00:00
|
|
|
|
|
1993-06-12 14:58:17 +00:00
|
|
|
|
print_part(i);
|
|
|
|
|
} while (!ok("Are we happy with this entry?"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static void
|
1993-06-12 14:58:17 +00:00
|
|
|
|
print_params()
|
|
|
|
|
{
|
|
|
|
|
printf("parameters extracted from in-core disklabel are:\n");
|
|
|
|
|
printf("cylinders=%d heads=%d sectors/track=%d (%d blks/cyl)\n\n"
|
|
|
|
|
,cyls,heads,sectors,cylsecs);
|
|
|
|
|
if((dos_sectors > 63) || (dos_cyls > 1023) || (dos_heads > 255))
|
1996-12-01 11:25:38 +00:00
|
|
|
|
printf("Figures below won't work with BIOS for partitions not in cyl 1\n");
|
1993-06-12 14:58:17 +00:00
|
|
|
|
printf("parameters to be used for BIOS calculations are:\n");
|
|
|
|
|
printf("cylinders=%d heads=%d sectors/track=%d (%d blks/cyl)\n\n"
|
|
|
|
|
,dos_cyls,dos_heads,dos_sectors,dos_cylsecs);
|
|
|
|
|
}
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static void
|
|
|
|
|
change_active(int which)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
1997-06-03 21:24:39 +00:00
|
|
|
|
int active = 4, tmp;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
struct dos_partition *partp = ((struct dos_partition *) &mboot.parts);
|
|
|
|
|
|
|
|
|
|
if (a_flag && which != -1)
|
|
|
|
|
active = which;
|
1994-10-19 21:25:28 +00:00
|
|
|
|
if (!ok("Do you want to change the active partition?"))
|
|
|
|
|
return;
|
|
|
|
|
do
|
|
|
|
|
Decimal("active partition", active, tmp);
|
|
|
|
|
while (!ok("Are you happy with this choice"));
|
1993-06-12 14:58:17 +00:00
|
|
|
|
for (i = 0; i < NDOSPART; i++)
|
|
|
|
|
partp[i].dp_flag = 0;
|
1997-06-03 21:24:39 +00:00
|
|
|
|
if (active > 0 && active <= NDOSPART)
|
|
|
|
|
partp[active-1].dp_flag = ACTIVE;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
void
|
1993-06-12 14:58:17 +00:00
|
|
|
|
get_params_to_use()
|
|
|
|
|
{
|
|
|
|
|
int tmp;
|
|
|
|
|
print_params();
|
|
|
|
|
if (ok("Do you want to change our idea of what BIOS thinks ?"))
|
|
|
|
|
{
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
Decimal("BIOS's idea of #cylinders", dos_cyls, tmp);
|
|
|
|
|
Decimal("BIOS's idea of #heads", dos_heads, tmp);
|
|
|
|
|
Decimal("BIOS's idea of #sectors", dos_sectors, tmp);
|
|
|
|
|
dos_cylsecs = dos_heads * dos_sectors;
|
|
|
|
|
print_params();
|
|
|
|
|
}
|
|
|
|
|
while(!ok("Are you happy with this choice"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1996-11-06 14:08:39 +00:00
|
|
|
|
|
1993-06-12 14:58:17 +00:00
|
|
|
|
/***********************************************\
|
|
|
|
|
* Change real numbers into strange dos numbers *
|
|
|
|
|
\***********************************************/
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static void
|
1996-10-13 18:18:50 +00:00
|
|
|
|
dos(sec, size, c, s, h)
|
|
|
|
|
int sec, size;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
unsigned char *c, *s, *h;
|
|
|
|
|
{
|
|
|
|
|
int cy;
|
|
|
|
|
int hd;
|
|
|
|
|
|
1996-10-13 18:18:50 +00:00
|
|
|
|
if (sec == 0 && size == 0) {
|
1994-10-19 21:25:28 +00:00
|
|
|
|
*s = *c = *h = 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
1993-06-12 14:58:17 +00:00
|
|
|
|
cy = sec / ( dos_cylsecs );
|
|
|
|
|
sec = sec - cy * ( dos_cylsecs );
|
|
|
|
|
|
|
|
|
|
hd = sec / dos_sectors;
|
|
|
|
|
sec = (sec - hd * dos_sectors) + 1;
|
|
|
|
|
|
|
|
|
|
*h = hd;
|
|
|
|
|
*c = cy & 0xff;
|
|
|
|
|
*s = (sec & 0x3f) | ( (cy & 0x300) >> 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
|
|
/* Getting device status */
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static int
|
|
|
|
|
open_disk(int u_flag)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
|
|
|
|
struct stat st;
|
|
|
|
|
|
1995-05-30 06:12:45 +00:00
|
|
|
|
if (stat(disk, &st) == -1) {
|
1993-06-12 14:58:17 +00:00
|
|
|
|
fprintf(stderr, "%s: Can't get file status of %s\n",
|
|
|
|
|
name, disk);
|
|
|
|
|
return -1;
|
1994-09-15 20:19:51 +00:00
|
|
|
|
}
|
|
|
|
|
if ( !(st.st_mode & S_IFCHR) )
|
1993-06-12 14:58:17 +00:00
|
|
|
|
fprintf(stderr,"%s: Device %s is not character special\n",
|
|
|
|
|
name, disk);
|
1994-10-19 21:25:28 +00:00
|
|
|
|
if ((fd = open(disk, a_flag || u_flag ? O_RDWR : O_RDONLY)) == -1) {
|
1995-09-01 18:00:14 +00:00
|
|
|
|
if(errno == ENXIO)
|
|
|
|
|
return -2;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
fprintf(stderr,"%s: Can't open device %s\n", name, disk);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
if (get_params(0) == -1) {
|
|
|
|
|
fprintf(stderr, "%s: Can't get disk parameters on %s\n",
|
|
|
|
|
name, disk);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
return fd;
|
|
|
|
|
}
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static ssize_t
|
|
|
|
|
read_disk(off_t sector, void *buf)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
|
|
|
|
lseek(fd,(sector * 512), 0);
|
1996-12-01 11:25:38 +00:00
|
|
|
|
if( secsize == 0 )
|
|
|
|
|
for( secsize = MIN_SEC_SIZE; secsize <= MAX_SEC_SIZE; secsize *= 2 )
|
|
|
|
|
{
|
|
|
|
|
/* try the read */
|
|
|
|
|
int size = read(fd, buf, secsize);
|
|
|
|
|
if( size == secsize )
|
|
|
|
|
/* it worked so return */
|
|
|
|
|
return secsize;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return read( fd, buf, secsize );
|
|
|
|
|
|
|
|
|
|
/* we failed to read at any of the sizes */
|
|
|
|
|
return -1;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static ssize_t
|
|
|
|
|
write_disk(off_t sector, void *buf)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
|
|
|
|
lseek(fd,(sector * 512), 0);
|
1996-12-01 11:25:38 +00:00
|
|
|
|
/* write out in the size that the read_disk found worked */
|
|
|
|
|
return write(fd, buf, secsize);
|
1993-06-12 14:58:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static int
|
|
|
|
|
get_params()
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (ioctl(fd, DIOCGDINFO, &disklabel) == -1) {
|
1994-09-15 20:19:51 +00:00
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: Can't get disk parameters on %s; supplying dummy ones\n",
|
|
|
|
|
name, disk);
|
|
|
|
|
dos_cyls = cyls = 1;
|
|
|
|
|
dos_heads = heads = 1;
|
|
|
|
|
dos_sectors = sectors = 1;
|
|
|
|
|
dos_cylsecs = cylsecs = heads * sectors;
|
|
|
|
|
disksecs = cyls * heads * sectors;
|
|
|
|
|
return disksecs;
|
1993-06-12 14:58:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dos_cyls = cyls = disklabel.d_ncylinders;
|
|
|
|
|
dos_heads = heads = disklabel.d_ntracks;
|
|
|
|
|
dos_sectors = sectors = disklabel.d_nsectors;
|
|
|
|
|
dos_cylsecs = cylsecs = heads * sectors;
|
|
|
|
|
disksecs = cyls * heads * sectors;
|
|
|
|
|
|
|
|
|
|
return (disksecs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static int
|
1993-06-12 14:58:17 +00:00
|
|
|
|
read_s0()
|
|
|
|
|
{
|
1995-05-30 06:12:45 +00:00
|
|
|
|
if (read_disk(0, (char *) mboot.bootinst) == -1) {
|
1993-06-12 14:58:17 +00:00
|
|
|
|
fprintf(stderr, "%s: Can't read fdisk partition table\n", name);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
if (mboot.signature != BOOT_MAGIC) {
|
|
|
|
|
fprintf(stderr, "%s: Invalid fdisk partition table found\n",
|
|
|
|
|
name);
|
|
|
|
|
/* So should we initialize things */
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static int
|
1993-06-12 14:58:17 +00:00
|
|
|
|
write_s0()
|
|
|
|
|
{
|
|
|
|
|
int flag;
|
|
|
|
|
if (iotest) {
|
|
|
|
|
print_s0(-1);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
* 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;
|
1995-10-03 11:12:50 +00:00
|
|
|
|
#ifdef NOT_NOW
|
1993-06-12 14:58:17 +00:00
|
|
|
|
if (ioctl(fd, DIOCWLABEL, &flag) < 0)
|
|
|
|
|
perror("ioctl DIOCWLABEL");
|
1995-10-03 11:12:50 +00:00
|
|
|
|
#endif
|
1995-05-30 06:12:45 +00:00
|
|
|
|
if (write_disk(0, (char *) mboot.bootinst) == -1) {
|
1993-06-12 14:58:17 +00:00
|
|
|
|
fprintf(stderr, "%s: Can't write fdisk partition table\n",
|
|
|
|
|
name);
|
|
|
|
|
return -1;
|
|
|
|
|
flag = 0;
|
1995-10-03 11:12:50 +00:00
|
|
|
|
#ifdef NOT_NOW
|
1993-06-12 14:58:17 +00:00
|
|
|
|
(void) ioctl(fd, DIOCWLABEL, &flag);
|
1995-10-03 11:12:50 +00:00
|
|
|
|
#endif
|
1993-06-12 14:58:17 +00:00
|
|
|
|
}
|
1996-06-21 02:39:19 +00:00
|
|
|
|
return(0);
|
1993-06-12 14:58:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static int
|
1993-06-12 14:58:17 +00:00
|
|
|
|
ok(str)
|
|
|
|
|
char *str;
|
|
|
|
|
{
|
|
|
|
|
printf("%s [n] ", str);
|
|
|
|
|
fgets(lbuf, LBUF, stdin);
|
|
|
|
|
lbuf[strlen(lbuf)-1] = 0;
|
|
|
|
|
|
|
|
|
|
if (*lbuf &&
|
|
|
|
|
(!strcmp(lbuf, "yes") || !strcmp(lbuf, "YES") ||
|
|
|
|
|
!strcmp(lbuf, "y") || !strcmp(lbuf, "Y")))
|
|
|
|
|
return 1;
|
|
|
|
|
else
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static int
|
|
|
|
|
decimal(char *str, int *num, int deflt)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
|
|
|
|
int acc = 0, c;
|
|
|
|
|
char *cp;
|
|
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
|
printf("Supply a decimal value for \"%s\" [%d] ", str, deflt);
|
|
|
|
|
fgets(lbuf, LBUF, stdin);
|
|
|
|
|
lbuf[strlen(lbuf)-1] = 0;
|
|
|
|
|
|
|
|
|
|
if (!*lbuf)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
cp = lbuf;
|
|
|
|
|
while ((c = *cp) && (c == ' ' || c == '\t')) cp++;
|
|
|
|
|
if (!c)
|
|
|
|
|
return 0;
|
1996-06-21 02:39:19 +00:00
|
|
|
|
while ((c = *cp++)) {
|
1993-06-12 14:58:17 +00:00
|
|
|
|
if (c <= '9' && c >= '0')
|
|
|
|
|
acc = acc * 10 + c - '0';
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (c == ' ' || c == '\t')
|
|
|
|
|
while ((c = *cp) && (c == ' ' || c == '\t')) cp++;
|
|
|
|
|
if (!c) {
|
|
|
|
|
*num = acc;
|
|
|
|
|
return 1;
|
|
|
|
|
} else
|
|
|
|
|
printf("%s is an invalid decimal number. Try again\n",
|
|
|
|
|
lbuf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
#if 0
|
|
|
|
|
static int
|
|
|
|
|
hex(char *str, int *num, int deflt)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
|
|
|
|
int acc = 0, c;
|
|
|
|
|
char *cp;
|
|
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
|
printf("Supply a hex value for \"%s\" [%x] ", str, deflt);
|
|
|
|
|
fgets(lbuf, LBUF, stdin);
|
|
|
|
|
lbuf[strlen(lbuf)-1] = 0;
|
|
|
|
|
|
|
|
|
|
if (!*lbuf)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
cp = lbuf;
|
|
|
|
|
while ((c = *cp) && (c == ' ' || c == '\t')) cp++;
|
|
|
|
|
if (!c)
|
|
|
|
|
return 0;
|
1996-06-21 02:39:19 +00:00
|
|
|
|
while ((c = *cp++)) {
|
1993-06-12 14:58:17 +00:00
|
|
|
|
if (c <= '9' && c >= '0')
|
|
|
|
|
acc = (acc << 4) + c - '0';
|
|
|
|
|
else if (c <= 'f' && c >= 'a')
|
|
|
|
|
acc = (acc << 4) + c - 'a' + 10;
|
|
|
|
|
else if (c <= 'F' && c >= 'A')
|
|
|
|
|
acc = (acc << 4) + c - 'A' + 10;
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (c == ' ' || c == '\t')
|
|
|
|
|
while ((c = *cp) && (c == ' ' || c == '\t')) cp++;
|
|
|
|
|
if (!c) {
|
|
|
|
|
*num = acc;
|
|
|
|
|
return 1;
|
|
|
|
|
} else
|
|
|
|
|
printf("%s is an invalid hex number. Try again\n",
|
|
|
|
|
lbuf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static int
|
|
|
|
|
string(char *str, char **ans)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
char *cp = lbuf;
|
|
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
|
printf("Supply a string value for \"%s\" [%s] ", str, *ans);
|
|
|
|
|
fgets(lbuf, LBUF, stdin);
|
|
|
|
|
lbuf[strlen(lbuf)-1] = 0;
|
|
|
|
|
|
|
|
|
|
if (!*lbuf)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
while ((c = *cp) && (c == ' ' || c == '\t')) cp++;
|
|
|
|
|
if (c == '"') {
|
|
|
|
|
c = *++cp;
|
|
|
|
|
*ans = cp;
|
|
|
|
|
while ((c = *cp) && c != '"') cp++;
|
|
|
|
|
} else {
|
|
|
|
|
*ans = cp;
|
|
|
|
|
while ((c = *cp) && c != ' ' && c != '\t') cp++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (c)
|
|
|
|
|
*cp = 0;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
1996-06-21 02:39:19 +00:00
|
|
|
|
#endif
|
1993-06-12 14:58:17 +00:00
|
|
|
|
|
1996-06-21 02:39:19 +00:00
|
|
|
|
static char *
|
|
|
|
|
get_type(int type)
|
1993-06-12 14:58:17 +00:00
|
|
|
|
{
|
|
|
|
|
int numentries = (sizeof(part_types)/sizeof(struct part_type));
|
|
|
|
|
int counter = 0;
|
|
|
|
|
struct part_type *ptr = part_types;
|
|
|
|
|
|
1995-05-30 06:12:45 +00:00
|
|
|
|
|
1993-06-12 14:58:17 +00:00
|
|
|
|
while(counter < numentries)
|
|
|
|
|
{
|
|
|
|
|
if(ptr->type == type)
|
|
|
|
|
{
|
|
|
|
|
return(ptr->name);
|
|
|
|
|
}
|
|
|
|
|
ptr++;
|
|
|
|
|
counter++;
|
|
|
|
|
}
|
|
|
|
|
return("unknown");
|
|
|
|
|
}
|
1996-11-06 14:08:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
parse_config_line(line, command)
|
|
|
|
|
char *line;
|
|
|
|
|
CMD *command;
|
|
|
|
|
{
|
|
|
|
|
char *cp, *end;
|
|
|
|
|
|
|
|
|
|
cp = line;
|
|
|
|
|
while (1) /* dirty trick used to insure one exit point for this
|
|
|
|
|
function */
|
|
|
|
|
{
|
|
|
|
|
memset(command, 0, sizeof(*command));
|
|
|
|
|
|
|
|
|
|
while (isspace(*cp)) ++cp;
|
|
|
|
|
if (*cp == '\0' || *cp == '#')
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
command->cmd = *cp++;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Parse args
|
|
|
|
|
*/
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
while (isspace(*cp)) ++cp;
|
|
|
|
|
if (*cp == '#')
|
|
|
|
|
{
|
|
|
|
|
break; /* found comment */
|
|
|
|
|
}
|
|
|
|
|
if (isalpha(*cp))
|
|
|
|
|
{
|
|
|
|
|
command->args[command->n_args].argtype = *cp++;
|
|
|
|
|
}
|
|
|
|
|
if (!isdigit(*cp))
|
|
|
|
|
{
|
|
|
|
|
break; /* assume end of line */
|
|
|
|
|
}
|
|
|
|
|
end = NULL;
|
|
|
|
|
command->args[command->n_args].arg_val = strtol(cp, &end, 0);
|
|
|
|
|
if (cp == end)
|
|
|
|
|
{
|
|
|
|
|
break; /* couldn't parse number */
|
|
|
|
|
}
|
|
|
|
|
cp = end;
|
|
|
|
|
command->n_args++;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
process_geometry(command)
|
|
|
|
|
CMD *command;
|
|
|
|
|
{
|
|
|
|
|
int status = 1, i;
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
geom_processed = 1;
|
|
|
|
|
if (part_processed)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: ERROR line %d: the geometry specification line must occur before\n\
|
|
|
|
|
all partition specifications.\n",
|
|
|
|
|
name, current_line_number);
|
|
|
|
|
status = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (command->n_args != 3)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: ERROR line %d: incorrect number of geometry args\n",
|
|
|
|
|
name, current_line_number);
|
|
|
|
|
status = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
dos_cyls = -1;
|
|
|
|
|
dos_heads = -1;
|
|
|
|
|
dos_sectors = -1;
|
|
|
|
|
for (i = 0; i < 3; ++i)
|
|
|
|
|
{
|
|
|
|
|
switch (command->args[i].argtype)
|
|
|
|
|
{
|
|
|
|
|
case 'c':
|
|
|
|
|
dos_cyls = command->args[i].arg_val;
|
|
|
|
|
break;
|
|
|
|
|
case 'h':
|
|
|
|
|
dos_heads = command->args[i].arg_val;
|
|
|
|
|
break;
|
|
|
|
|
case 's':
|
|
|
|
|
dos_sectors = command->args[i].arg_val;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: ERROR line %d: unknown geometry arg type: '%c' (0x%02x)\n",
|
|
|
|
|
name, current_line_number, command->args[i].argtype,
|
|
|
|
|
command->args[i].argtype);
|
|
|
|
|
status = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (status == 0)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dos_cylsecs = dos_heads * dos_sectors;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Do sanity checks on parameter values
|
|
|
|
|
*/
|
|
|
|
|
if (dos_cyls < 0)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: ERROR line %d: number of cylinders not specified\n",
|
|
|
|
|
name, current_line_number);
|
|
|
|
|
status = 0;
|
|
|
|
|
}
|
|
|
|
|
if (dos_cyls == 0 || dos_cyls > 1024)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: WARNING line %d: number of cylinders (%d) may be out-of-range\n\
|
|
|
|
|
(must be within 1-1024 for normal BIOS operation, unless the entire disk\n\
|
|
|
|
|
is dedicated to FreeBSD).\n",
|
|
|
|
|
name, current_line_number, dos_cyls);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (dos_heads < 0)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: ERROR line %d: number of heads not specified\n",
|
|
|
|
|
name, current_line_number);
|
|
|
|
|
status = 0;
|
|
|
|
|
}
|
|
|
|
|
else if (dos_heads < 1 || dos_heads > 256)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: ERROR line %d: number of heads must be within (1-256)\n",
|
|
|
|
|
name, current_line_number);
|
|
|
|
|
status = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (dos_sectors < 0)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "%s: ERROR line %d: number of sectors not specified\n",
|
|
|
|
|
name, current_line_number);
|
|
|
|
|
status = 0;
|
|
|
|
|
}
|
|
|
|
|
else if (dos_sectors < 1 || dos_sectors > 63)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: ERROR line %d: number of sectors must be within (1-63)\n",
|
|
|
|
|
name, current_line_number);
|
|
|
|
|
status = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return (status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
process_partition(command)
|
|
|
|
|
CMD *command;
|
|
|
|
|
{
|
|
|
|
|
int status = 0, partition;
|
|
|
|
|
unsigned long chunks, adj_size, max_end;
|
|
|
|
|
struct dos_partition *partp;
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
part_processed = 1;
|
|
|
|
|
if (command->n_args != 4)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: ERROR line %d: incorrect number of partition args\n",
|
|
|
|
|
name, current_line_number);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
partition = command->args[0].arg_val;
|
1997-06-03 21:24:39 +00:00
|
|
|
|
if (partition < 1 || partition > 4)
|
1996-11-06 14:08:39 +00:00
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "%s: ERROR line %d: invalid partition number %d\n",
|
|
|
|
|
name, current_line_number, partition);
|
|
|
|
|
break;
|
|
|
|
|
}
|
1997-06-03 21:24:39 +00:00
|
|
|
|
partp = ((struct dos_partition *) &mboot.parts) + partition - 1;
|
1996-11-06 14:08:39 +00:00
|
|
|
|
bzero((char *)partp, sizeof (struct dos_partition));
|
|
|
|
|
partp->dp_typ = command->args[1].arg_val;
|
|
|
|
|
partp->dp_start = command->args[2].arg_val;
|
|
|
|
|
partp->dp_size = command->args[3].arg_val;
|
|
|
|
|
max_end = partp->dp_start + partp->dp_size;
|
|
|
|
|
|
|
|
|
|
if (partp->dp_typ == 0)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Get out, the partition is marked as unused.
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
* Insure that it's unused.
|
|
|
|
|
*/
|
|
|
|
|
bzero((char *)partp, sizeof (struct dos_partition));
|
|
|
|
|
status = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Adjust start upwards, if necessary, to fall on an head boundary.
|
|
|
|
|
*/
|
|
|
|
|
if (partp->dp_start % dos_sectors != 0)
|
|
|
|
|
{
|
|
|
|
|
adj_size =
|
|
|
|
|
(partp->dp_start / dos_sectors + 1) * dos_sectors;
|
|
|
|
|
if (adj_size > max_end)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Can't go past end of partition
|
|
|
|
|
*/
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: ERROR line %d: unable to adjust start of partition %d to fall on\n\
|
|
|
|
|
a cylinder boundary.\n",
|
|
|
|
|
name, current_line_number, partition);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: WARNING: adjusting start offset of partition '%d' from %d\n\
|
|
|
|
|
to %d, to round to an head boundary.\n",
|
|
|
|
|
name, partition, partp->dp_start, adj_size);
|
|
|
|
|
partp->dp_start = adj_size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Adjust size downwards, if necessary, to fall on a cylinder
|
|
|
|
|
* boundary.
|
|
|
|
|
*/
|
|
|
|
|
chunks =
|
|
|
|
|
((partp->dp_start + partp->dp_size) / dos_cylsecs) * dos_cylsecs;
|
|
|
|
|
adj_size = chunks - partp->dp_start;
|
|
|
|
|
if (adj_size != partp->dp_size)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: WARNING: adjusting size of partition '%d' from %d to %d,\n\
|
|
|
|
|
to round to a cylinder boundary.\n",
|
|
|
|
|
name, partition, partp->dp_size, adj_size);
|
|
|
|
|
if (chunks > 0)
|
|
|
|
|
{
|
|
|
|
|
partp->dp_size = adj_size;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
partp->dp_size = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (partp->dp_size < 1)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: ERROR line %d: size for partition '%d' is zero.\n",
|
|
|
|
|
name, current_line_number, partition);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dos(partp->dp_start, partp->dp_size,
|
|
|
|
|
&partp->dp_scyl, &partp->dp_ssect, &partp->dp_shd);
|
|
|
|
|
dos(partp->dp_start+partp->dp_size - 1, partp->dp_size,
|
|
|
|
|
&partp->dp_ecyl, &partp->dp_esect, &partp->dp_ehd);
|
|
|
|
|
status = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return (status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
process_active(command)
|
|
|
|
|
CMD *command;
|
|
|
|
|
{
|
|
|
|
|
int status = 0, partition, i;
|
|
|
|
|
struct dos_partition *partp;
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
active_processed = 1;
|
|
|
|
|
if (command->n_args != 1)
|
|
|
|
|
{
|
|
|
|
|
fprintf(stderr,
|
|
|
|
|
"%s: ERROR line %d: incorrect number of active args\n",
|
|
|
|
|
name, current_line_number);
|
|
|
|
|
status = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
partition = command->args[0].arg_val;
|
1997-06-03 21:24:39 +00:00
|
|
|
|
if (partition < 1 || partition > 4)
|
1996-11-06 14:08:39 +00:00
|
|
|
|
{
|
|
|
|
|
fprintf(stderr, "%s: ERROR line %d: invalid partition number %d\n",
|
|
|
|
|
name, current_line_number, partition);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
* Reset active partition
|
|
|
|
|
*/
|
|
|
|
|
partp = ((struct dos_partition *) &mboot.parts);
|
|
|
|
|
for (i = 0; i < NDOSPART; i++)
|
|
|
|
|
partp[i].dp_flag = 0;
|
1997-06-03 21:24:39 +00:00
|
|
|
|
partp[partition-1].dp_flag = ACTIVE;
|
1996-11-06 14:08:39 +00:00
|
|
|
|
|
|
|
|
|
status = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return (status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
process_line(line)
|
|
|
|
|
char *line;
|
|
|
|
|
{
|
|
|
|
|
CMD command;
|
|
|
|
|
int status = 1;
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
parse_config_line(line, &command);
|
|
|
|
|
switch (command.cmd)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
/*
|
|
|
|
|
* Comment or blank line
|
|
|
|
|
*/
|
|
|
|
|
break;
|
|
|
|
|
case 'g':
|
|
|
|
|
/*
|
|
|
|
|
* Set geometry
|
|
|
|
|
*/
|
|
|
|
|
status = process_geometry(&command);
|
|
|
|
|
break;
|
|
|
|
|
case 'p':
|
|
|
|
|
status = process_partition(&command);
|
|
|
|
|
break;
|
|
|
|
|
case 'a':
|
|
|
|
|
status = process_active(&command);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
status = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return (status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
read_config(config_file)
|
|
|
|
|
char *config_file;
|
|
|
|
|
{
|
|
|
|
|
FILE *fp = NULL;
|
|
|
|
|
int status = 1;
|
|
|
|
|
char buf[1010];
|
|
|
|
|
|
|
|
|
|
while (1) /* dirty trick used to insure one exit point for this
|
|
|
|
|
function */
|
|
|
|
|
{
|
|
|
|
|
if (strcmp(config_file, "-") != 0)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* We're not reading from stdin
|
|
|
|
|
*/
|
|
|
|
|
if ((fp = fopen(config_file, "r")) == NULL)
|
|
|
|
|
{
|
|
|
|
|
status = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
fp = stdin;
|
|
|
|
|
}
|
|
|
|
|
current_line_number = 0;
|
|
|
|
|
while (!feof(fp))
|
|
|
|
|
{
|
|
|
|
|
if (fgets(buf, sizeof(buf), fp) == NULL)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
++current_line_number;
|
|
|
|
|
status = process_line(buf);
|
|
|
|
|
if (status == 0)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (fp)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* It doesn't matter if we're reading from stdin, as we've reached EOF
|
|
|
|
|
*/
|
|
|
|
|
fclose(fp);
|
|
|
|
|
}
|
|
|
|
|
return (status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
reset_boot(void)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
struct dos_partition *partp;
|
|
|
|
|
|
|
|
|
|
init_boot();
|
|
|
|
|
for (i = 0; i < 4; ++i)
|
|
|
|
|
{
|
|
|
|
|
partp = ((struct dos_partition *) &mboot.parts) + i;
|
|
|
|
|
bzero((char *)partp, sizeof (struct dos_partition));
|
|
|
|
|
}
|
|
|
|
|
}
|