summaryrefslogtreecommitdiffstats
path: root/sbin/sysinstall/mbr.c
blob: 03a85a778aa8c85f4ef104aedffb18edc8aaa578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
/*
 * Copyright (c) 1994, Paul Richards.
 *
 * All rights reserved.
 *
 * This software may be used, modified, copied, distributed, and
 * sold, in both source and binary form provided that the above
 * copyright and these terms are retained, verbatim, as the first
 * lines of this file.  Under no circumstances is the author
 * responsible for the proper functioning of this software, nor does
 * the author assume any responsibility for damages incurred with
 * its use.
 */

#include <stdio.h>
#include <unistd.h>
#include <dialog.h>
#include <fcntl.h>

#include <sys/types.h>
#include <sys/disklabel.h>
#include <sys/uio.h>

#include "mbr.h"
#include "sysinstall.h"

extern struct mbr *mbr;
extern int inst_part;
extern int whole_disk;

struct part_type part_types[] = PARTITION_TYPES

char *
part_type(int type)
{
    int num_types = (sizeof(part_types)/sizeof(struct part_type));
    int next_type = 0;
    struct part_type *ptr = part_types;
    
    while (next_type < num_types) {
	if(ptr->type == type)
	    return(ptr->name);
	ptr++;
	next_type++;
    }
    return("Unknown");
}

void
read_dospart(int fd, struct dos_partition *dp)
{
    u_char buf[512];
    if (lseek(fd, 0, SEEK_SET) == -1) 
	AskAbort("Couldn't seek for master boot record read\n");
    if (read(fd, buf, 512) != 512) {
	AskAbort("Failed to read master boot record\n");
    }
    memcpy(dp, buf+DOSPARTOFF, sizeof(*dp)*NDOSPART);
}

void
write_dospart(int fd, struct dos_partition *dp)
{
    u_char buf[512];

    if (lseek(fd, 0, SEEK_SET) == -1) 
	AskAbort("Couldn't seek for master boot record read\n");
    if (read(fd, buf, 512) != 512) {
	AskAbort("Failed to read master boot record\n");
    }
    memcpy(buf+DOSPARTOFF, dp, sizeof(*dp)*NDOSPART);
    buf[510] = 0x55;
    buf[511] = 0xaa;
    if (lseek(fd, 0, SEEK_SET) == -1) 
	AskAbort("Couldn't seek for master boot record write\n");
    enable_label(fd);
    if (write(fd, buf, 512) != 512) 
	AskAbort("Failed to write master boot record\n");
    disable_label(fd);
}

void
write_bootcode(int fd)
{
    u_char buf[512];

    if (lseek(fd, 0, SEEK_SET) == -1) 
	AskAbort("Couldn't seek for master boot record read\n");
    if (read(fd, buf, 512) != 512) {
	AskAbort("Failed to read master boot record\n");
    }
    memcpy(buf, boot0, DOSPARTOFF);
    buf[510] = 0x55;
    buf[511] = 0xaa;
    if (lseek(fd, 0, SEEK_SET) == -1) 
	AskAbort("Couldn't seek for master boot record write\n");
    enable_label(fd);
    if (write(fd, buf, 512) != 512) 
	AskAbort("Failed to write master boot record\n");
    disable_label(fd);
}

int
WriteBootblock(int dfd,struct disklabel *label,struct dos_partition *dospart)
{
    off_t of = label->d_partitions[OURPART].p_offset;
    u_char bootblocks[BBSIZE];

    memcpy(bootblocks, boot1, MBRSIZE);

    memcpy(&bootblocks[MBRSIZE], boot2, (int)(label->d_bbsize - MBRSIZE));

    bcopy(dospart, &bootblocks[DOSPARTOFF],
	  sizeof(struct dos_partition) * NDOSPART);

    label->d_checksum = 0;
    label->d_checksum = dkcksum(label);
    bcopy(label, &bootblocks[(LABELSECTOR * label->d_secsize) + LABELOFFSET],
		    sizeof *label);

    Debug("Seeking to byte %ld ", of * label->d_secsize);

    if (lseek(dfd, (of * label->d_secsize), SEEK_SET) < 0) {
	    Fatal("Couldn't seek to start of partition\n");
    }

    enable_label(dfd);

    if (write(dfd, bootblocks, label->d_bbsize) != label->d_bbsize) {
	    Fatal("Failed to write bootblocks (%p,%d) %d %s\n",
		    bootblocks, label->d_bbsize,
		    errno, strerror(errno)
		    );
    }

    disable_label(dfd);

    return(0);
}

static int
FillIn(struct dos_partition *dp, int sec, int hd)
{
    u_long l2,l3=0,sect,c,s,h;

    sect = dp->dp_start;
    l2 = sect / (sec*hd);
    sect -= l2*sec*hd;
    if(l2>1023) l2 = 1023;
    c = (l2 & 0xff); 
    s = (l2 >> 2) & 0xc0;
    l2 = sect / sec;
    h = l2;
    sect -= l2*sec;
    s |= (sect+1) & 0x3f;
#define NIC(a,b) if (a != b) {a = b; l3++;}
    NIC(dp->dp_ssect, s);
    NIC(dp->dp_scyl, c);
    NIC(dp->dp_shd, h);

    sect = dp->dp_start + dp->dp_size-1;
    l2 = sect / (sec*hd);
    sect -= l2*sec*hd;
    if(l2>1023) l2 = 1023;
    c = (l2 & 0xff); 
    s = (l2 >> 2) & 0xc0;
    l2 = sect / sec;
    h = l2;
    sect -= l2*sec;
    s |= (sect+1) & 0x3f;
    NIC(dp->dp_esect, s);
    NIC(dp->dp_ecyl, c);
    NIC(dp->dp_ehd, h);
#undef NIC
    return l2;
}

void
Fdisk()
{
    int i, j, done=0, diskno, flag;
    char buf[128];
    struct dos_partition dp[NDOSPART];
    struct disklabel *lbl;
    u_long cyl, hd, sec, tsec;
    u_long l, l1, l2, l3, l4;
    int changed = 0;
    char *grumble = NULL;
    
    *buf = 0;
    i = AskEm(stdscr, "Enter number of disk to Fdisk> ", buf, 2);
    printf("%d", i);
    if(i != '\n' && i != '\r') return;
    diskno = atoi(buf);
    if(!(diskno >= 0 && diskno < MAX_NO_DISKS && Dname[diskno])) return;
    lbl = Dlbl[diskno];
    lbl->d_bbsize = 8192;
    hd = lbl->d_ntracks;
    sec = lbl->d_nsectors;
    tsec = Dlbl[diskno]->d_partitions[RAWPART].p_size;
    cyl = tsec/(hd*sec);
    read_dospart(Dfd[diskno], dp);
    while(!done) {
	clear(); standend();
	j = 0;
	mvprintw(j++, 0, "%s -- Diskspace editor -- FDISK", TITLE);
	j++;
	mvprintw(j++, 0,
		 "Disk: %s   Geometry:  %lu Cyl * %lu Hd * %lu Sect",
		 Dname[diskno], cyl, hd, sec);
	printw(" = %luMb = %lu Sect", (tsec+1024)/2048, tsec);
	j++;
	for(i=0;i<NDOSPART;i++, j+=4) {
	    mvprintw(j, 0, "%d ", i+1);
#if 0
	    printw("[%02x %02x %02x %02x %02x %02x %02x %02x %08lx %08lx]\n",
		   dp[i].dp_flag, dp[i].dp_shd, dp[i].dp_ssect, dp[i].dp_scyl,
		   dp[i].dp_typ, dp[i].dp_ehd, dp[i].dp_esect, dp[i].dp_ecyl,
		   dp[i].dp_start, dp[i].dp_size);
#endif
	    if(!dp[i].dp_size) {
		printw("Unused");
		continue;
	    }
	    printw("Boot?=%s", dp[i].dp_flag == 0x80 ? "Yes" : "No ");
	    printw("   Type=%s\n", part_type(dp[i].dp_typ));
	    printw("  Phys=(c%d/h%d/s%d..c%d/h%d/s%d)",
		   DPCYL(dp[i].dp_scyl, dp[i].dp_ssect), dp[i].dp_shd,
		   DPSECT(dp[i].dp_ssect),
		   DPCYL(dp[i].dp_ecyl, dp[i].dp_esect), dp[i].dp_ehd,
		   DPSECT(dp[i].dp_esect));
	    printw("   Sector=(%lu..%lu)\n",
		   dp[i].dp_start, dp[i].dp_size + dp[i].dp_start-1);
	    printw("  Size=%lu MB, %lu Cylinders", (dp[i].dp_size+1024L)/2048L,
		   dp[i].dp_size/lbl->d_secpercyl);
	    l = dp[i].dp_size%lbl->d_secpercyl;
	    if(l) {
		printw(" + %lu Tracks", l/lbl->d_nsectors);
		l = l % lbl->d_nsectors;
		if(l) {
		    printw(" + %lu Sectors", l);
		}
	    }
	}
	mvprintw(20, 0, "Commands available:   ");
	mvprintw(21, 0, "(H)elp   (T)utorial   (D)elete   (E)dit   (R)eread   (W)rite MBR   (Q)uit");
	mvprintw(22, 0, "(U)se entire disk for FreeBSD   (G)eometry   use (B)oot manager");
	if (grumble) {
	    standout();
 	    mvprintw(24, 0, grumble);
	    standend();
	    grumble = NULL;
	} else if (changed) {
	    standout();
 	    mvprintw(24, 0, "Use (W)rite to save changes to disk");
	    standend();
	}
	mvprintw(23, 0, "Enter Command> ");
	i=getch();
	switch(i) {

	case 'h': case 'H':
	    clear();
	    mvprintw(0, 0, 
"%s -- Diskspace editor -- FDISK -- Command Help

Basic commands:

(H)elp          - This screen
(T)utorial      - A more detailed discussion of MBR's, disklabels, etc.
(D)elete        - Delete an existing partition
(E)dit          - Edit an existing partition
(R)eread        - Read fdisk information from disk again, abandoning changes
(W)rite MBR     - Write modified fdisk information to disk
(Q)uit          - Exit the FDISK editor

Advanced commands:

(U)se entire disk for FreeBSD   - Assign ALL disk space on current drive
(G)eometry                      - Edit the default disk geometry settings
Write (B)oot manager            - Install multi-OS bootmanager.


Press any key to return to FDISK editor...
", TITLE);
	    getch();
	    break;
	case 't': case 'T':
            ShowFile(HELPME_FILE,"Help file for disklayout");
	    break;

	case 'r': case 'R':
	    read_dospart(Dfd[diskno], dp);
	    changed=0;
	    break;

	case 'b': case 'B':
	    grumble = 0;
	    for(i=0;i<NDOSPART;i++) {
		if(dp[i].dp_start == 0 && dp[i].dp_typ== MBR_PTYPE_FreeBSD) {
		    grumble = "Boot manager not needed.";
		    break;
		}
	    }
	    if (!grumble)	
		write_bootcode(Dfd[diskno]);
	    grumble = "Wrote boot manager"; 
	    break;

	case 'e': case 'E':
	    *buf = 0;
	    i = AskEm(stdscr, "Edit which Slice> ", buf, 2);
	    if(i != '\n' && i != '\r') break;
	    l = strtol(buf, 0, 0);
	    if(l < 1 || l > NDOSPART) break;
	    l1=sec; l2=tsec;
	    for(i=0;i<NDOSPART;i++) {
		if((i+1) == l) continue;
		if(!dp[i].dp_size) continue;
		if(dp[i].dp_start > l2) continue;
		if((dp[i].dp_start + dp[i].dp_size) <= l1) continue;
		if(dp[i].dp_start > l1)
		    l3 = dp[i].dp_start - l1;
		else
		    l3 = 0;
		if(l2 > (dp[i].dp_start + dp[i].dp_size))
		    l4 = l2 - (dp[i].dp_start + dp[i].dp_size);
		else
		    l4 = 0;
		if(l3 >= l4)
		    l2 = dp[i].dp_start;
		else
		    l1 = dp[i].dp_start + dp[i].dp_size;
	    }
	    sprintf(buf, "%lu", (l2-l1+1024L)/2048L);
	    i = AskEm(stdscr, "Size of slice in MB> ", buf, 10);
	    l3=strtol(buf, 0, 0) * 2048L;
	    if(!l3) break;
	    if(l3 > l2-l1)
		l3 = l2-l1;
	    if((l1+l3) % lbl->d_secpercyl) { /* Special for cyl==0 */
		l3 += lbl->d_secpercyl - ((l1+l3) % lbl->d_secpercyl);
	    }
	    if(l3+l1 > tsec)
		l3 = tsec - l1;
	    changed=1;
	    dp[l-1].dp_start=l1;
	    dp[l-1].dp_size=l3;
	    FillIn(&dp[l-1],sec,hd);
	    
	    l4 = dp[l-1].dp_typ;
	    if(!l4) l4 = MBR_PTYPE_FreeBSD;
	    sprintf(buf, "0x%lx", l4);
	    i = AskEm(stdscr, "Type of slice (0xa5=FreeBSD)> ", buf, 5);
	    l3 = strtol(buf, 0, 0);
	    if(l3 == MBR_PTYPE_FreeBSD) {
		for(i=0;i<NDOSPART;i++)
		    if(i != (l-1) && dp[i].dp_typ== MBR_PTYPE_FreeBSD)
			memset(&dp[i], 0, sizeof dp[i]);
		sprintf(buf, "0x80");
	    } else {
		sprintf(buf, "0");
	    }
	    dp[l-1].dp_typ=l3;
	    i = AskEm(stdscr, "Bootflag (0x80 for YES)> ", buf, 5);
	    dp[l-1].dp_flag=strtol(buf, 0, 0);
	    if(dp[l-1].dp_flag)
		    for(i=0;i<NDOSPART;i++)
			    if(i != (l-1))
				    dp[i].dp_flag = 0;
	    break;

	case 'u': case 'U':
	    memset(&dp[0], 0, sizeof dp);
	    changed=1;

	    dp[0].dp_start = 0;
	    dp[0].dp_size = tsec;
	    FillIn(&dp[0],sec,hd);

	    dp[0].dp_typ = MBR_PTYPE_FreeBSD;
	    dp[0].dp_flag = 0x80;
	    break;

	case 'g': case 'G':
	    sprintf(buf,"%lu",sec);
	    i = AskEm(stdscr, "Number of Sectors> ",buf,7);
	    l2 = strtoul(buf,0,0);
	    if(l2 != sec)
		changed++;
	    sec=l2;
	    sprintf(buf,"%lu",hd);
	    i = AskEm(stdscr, "Number of Heads> ",buf,7);
	    l2 = strtoul(buf,0,0);
	    if(l2 != hd)
		changed++;
	    hd=l2;
	    cyl = tsec/(hd*sec);
	    sprintf(buf,"%lu",cyl);
	    i = AskEm(stdscr, "Number of Cylinders> ",buf,7);
	    l2 = strtoul(buf,0,0);
	    if(l2 != cyl)
		changed++;
	    cyl=l2;

	    for (l=0;l<NDOSPART;l++) {
		if (!dp[l].dp_typ || !dp[l].dp_size)
		    continue;
		changed += FillIn(&dp[l], sec, hd);
	    }
	    
	    break;
	    
	case 'd': case 'D':
	    *buf = 0;
	    i = AskEm(stdscr, "Delete which Slice> ",  buf,  2);
	    if(i != '\n' && i != '\r') break;
	    l = strtol(buf, 0, 0);
	    if(l < 1 || l > NDOSPART) break;
	    memset(&dp[l-1], 0, sizeof dp[l-1]);
	    changed=1;
	    break;

	case 'w': case 'W':
	    write_dospart(Dfd[diskno], dp);
	    Dlbl[diskno]->d_partitions[OURPART].p_offset = 0;
	    Dlbl[diskno]->d_partitions[OURPART].p_size = 0;
	    for(i=0;i<NDOSPART;i++) {
		if(dp[i].dp_typ == MBR_PTYPE_FreeBSD) {
		    Dlbl[diskno]->d_partitions[OURPART].p_offset = 
			dp[i].dp_start;
		    Dlbl[diskno]->d_partitions[OURPART].p_size = 
			dp[i].dp_size;
		    goto wok;
		}
	    }
	    grumble = "No FreeBSD slice, cannot write.";
	    break;
	   
	wok:
	    Dlbl[diskno]->d_ntracks = hd;
	    Dlbl[diskno]->d_nsectors = sec;
	    Dlbl[diskno]->d_ncylinders = cyl;
	    Dlbl[diskno]->d_secpercyl = hd*sec;
	    Dlbl[diskno]->d_magic = DISKMAGIC;
	    Dlbl[diskno]->d_magic2 = DISKMAGIC;
	    Dlbl[diskno]->d_checksum = 0;
	    Dlbl[diskno]->d_checksum = dkcksum(Dlbl[diskno]);
	    flag=1;
	    enable_label(Dfd[diskno]);
	    if(ioctl(Dfd[diskno], DIOCSDINFO, Dlbl[diskno]) == -1)
		AskAbort("Couldn't set label: %s", strerror(errno));
	    if(ioctl(Dfd[diskno], DIOCWDINFO, Dlbl[diskno]) == -1)
		AskAbort("Couldn't write label: %s", strerror(errno));
	    flag=0;
	    disable_label(Dfd[diskno]);
	    changed=0;
	    
	    if (Dlbl[diskno]->d_partitions[OURPART].p_size) {
		WriteBootblock(Dfd[diskno], lbl, dp);
		grumble = "Wrote MBR and disklabel to disk";
	    } else {
		grumble = "Wrote MBR to disk";
	    }

	    break;

	case 'q': case 'Q':
	    return;
	    break;
	default:
	    beep();
	    break;
	}
    }
}

OpenPOWER on IntegriCloud