forget difference between big and small commands - obsolete with vm.
[minix.git] / boot / installboot.c
blobccaf31dea87469dbecbc498c11bcf3df0efa521d
1 /* installboot 3.0 - Make a device bootable Author: Kees J. Bot
2 * 21 Dec 1991
4 * Either make a device bootable or make an image from kernel, mm, fs, etc.
5 */
6 #define nil 0
7 #define _POSIX_SOURCE 1
8 #define _MINIX 1
9 #include <stdio.h>
10 #include <stddef.h>
11 #include <sys/types.h>
12 #include <sys/stat.h>
13 #include <sys/ioctl.h>
14 #include <stdlib.h>
15 #include <unistd.h>
16 #include <fcntl.h>
17 #include <string.h>
18 #include <errno.h>
19 #include <dirent.h>
20 #include <a.out.h>
21 #include <minix/config.h>
22 #include <minix/const.h>
23 #include <minix/partition.h>
24 #include <minix/u64.h>
25 #include "rawfs.h"
26 #include "image.h"
28 #define BOOTBLOCK 0 /* Of course */
29 #define SECTOR_SIZE 512 /* Disk sector size. */
30 #define RATIO(b) ((b)/SECTOR_SIZE)
31 #define SIGNATURE 0xAA55 /* Boot block signature. */
32 #define BOOT_MAX 64 /* Absolute maximum size of secondary boot */
33 #define SIGPOS 510 /* Where to put signature word. */
34 #define PARTPOS 446 /* Offset to the partition table in a master
35 * boot block.
38 #define between(a, c, z) ((unsigned) ((c) - (a)) <= ((z) - (a)))
39 #define control(c) between('\0', (c), '\37')
41 #define BOOT_BLOCK_SIZE 1024
43 void report(char *label)
44 /* installboot: label: No such file or directory */
46 fprintf(stderr, "installboot: %s: %s\n", label, strerror(errno));
49 void fatal(char *label)
51 report(label);
52 exit(1);
55 char *basename(char *name)
56 /* Return the last component of name, stripping trailing slashes from name.
57 * Precondition: name != "/". If name is prefixed by a label, then the
58 * label is copied to the basename too.
61 static char base[IM_NAME_MAX];
62 char *p, *bp= base;
64 if ((p= strchr(name, ':')) != nil) {
65 while (name <= p && bp < base + IM_NAME_MAX - 1)
66 *bp++ = *name++;
68 for (;;) {
69 if ((p= strrchr(name, '/')) == nil) { p= name; break; }
70 if (*++p != 0) break;
71 *--p= 0;
73 while (*p != 0 && bp < base + IM_NAME_MAX - 1) *bp++ = *p++;
74 *bp= 0;
75 return base;
78 void bread(FILE *f, char *name, void *buf, size_t len)
79 /* Read len bytes. Don't dare return without them. */
81 if (len > 0 && fread(buf, len, 1, f) != 1) {
82 if (ferror(f)) fatal(name);
83 fprintf(stderr, "installboot: Unexpected EOF on %s\n", name);
84 exit(1);
88 void bwrite(FILE *f, char *name, void *buf, size_t len)
90 if (len > 0 && fwrite(buf, len, 1, f) != 1) fatal(name);
93 long total_text= 0, total_data= 0, total_bss= 0;
94 int making_image= 0;
96 void read_header(int talk, char *proc, FILE *procf, struct image_header *ihdr)
97 /* Read the a.out header of a program and check it. If procf happens to be
98 * nil then the header is already in *image_hdr and need only be checked.
101 int n, big= 0;
102 static int banner= 0;
103 struct exec *phdr= &ihdr->process;
105 if (procf == nil) {
106 /* Header already present. */
107 n= phdr->a_hdrlen;
108 } else {
109 memset(ihdr, 0, sizeof(*ihdr));
111 /* Put the basename of proc in the header. */
112 strncpy(ihdr->name, basename(proc), IM_NAME_MAX);
114 /* Read the header. */
115 n= fread(phdr, sizeof(char), A_MINHDR, procf);
116 if (ferror(procf)) fatal(proc);
119 if (n < A_MINHDR || BADMAG(*phdr)) {
120 fprintf(stderr, "installboot: %s is not an executable\n", proc);
121 exit(1);
124 /* Get the rest of the exec header. */
125 if (procf != nil) {
126 bread(procf, proc, ((char *) phdr) + A_MINHDR,
127 phdr->a_hdrlen - A_MINHDR);
130 if (talk && !banner) {
131 printf(" text data bss size\n");
132 banner= 1;
135 if (talk) {
136 printf(" %8ld %8ld %8ld %9ld %s\n",
137 phdr->a_text, phdr->a_data, phdr->a_bss,
138 phdr->a_text + phdr->a_data + phdr->a_bss, proc);
140 total_text+= phdr->a_text;
141 total_data+= phdr->a_data;
142 total_bss+= phdr->a_bss;
144 if (phdr->a_cpu == A_I8086) {
145 long data= phdr->a_data + phdr->a_bss;
147 if (!(phdr->a_flags & A_SEP)) data+= phdr->a_text;
149 if (phdr->a_text >= 65536) big|= 1;
150 if (data >= 65536) big|= 2;
152 if (big) {
153 fprintf(stderr,
154 "%s will crash, %s%s%s segment%s larger then 64K\n",
155 proc,
156 big & 1 ? "text" : "",
157 big == 3 ? " and " : "",
158 big & 2 ? "data" : "",
159 big == 3 ? "s are" : " is");
163 void padimage(char *image, FILE *imagef, int n)
164 /* Add n zeros to image to pad it to a sector boundary. */
166 while (n > 0) {
167 if (putc(0, imagef) == EOF) fatal(image);
168 n--;
172 #define align(n) (((n) + ((SECTOR_SIZE) - 1)) & ~((SECTOR_SIZE) - 1))
174 void copyexec(char *proc, FILE *procf, char *image, FILE *imagef, long n)
175 /* Copy n bytes from proc to image padded to fill a sector. */
177 int pad, c;
179 /* Compute number of padding bytes. */
180 pad= align(n) - n;
182 while (n > 0) {
183 if ((c= getc(procf)) == EOF) {
184 if (ferror(procf)) fatal(proc);
185 fprintf(stderr, "installboot: premature EOF on %s\n",
186 proc);
187 exit(1);
189 if (putc(c, imagef) == EOF) fatal(image);
190 n--;
192 padimage(image, imagef, pad);
195 void make_image(char *image, char **procv)
196 /* Collect a set of files in an image, each "segment" is nicely padded out
197 * to SECTOR_SIZE, so it may be read from disk into memory without trickery.
200 FILE *imagef, *procf;
201 char *proc, *file;
202 int procn;
203 struct image_header ihdr;
204 struct exec phdr;
205 struct stat st;
207 making_image= 1;
209 if ((imagef= fopen(image, "w")) == nil) fatal(image);
211 for (procn= 0; (proc= *procv++) != nil; procn++) {
212 /* Remove the label from the file name. */
213 if ((file= strchr(proc, ':')) != nil) file++; else file= proc;
215 /* Real files please, may need to seek. */
216 if (stat(file, &st) < 0
217 || (errno= EISDIR, !S_ISREG(st.st_mode))
218 || (procf= fopen(file, "r")) == nil
219 ) fatal(proc);
221 /* Read a.out header. */
222 read_header(1, proc, procf, &ihdr);
224 /* Scratch. */
225 phdr= ihdr.process;
227 /* The symbol table is always stripped off. */
228 ihdr.process.a_syms= 0;
229 ihdr.process.a_flags &= ~A_NSYM;
231 /* Write header padded to fill a sector */
232 bwrite(imagef, image, &ihdr, sizeof(ihdr));
234 padimage(image, imagef, SECTOR_SIZE - sizeof(ihdr));
236 /* A page aligned executable needs the header in text. */
237 if (phdr.a_flags & A_PAL) {
238 rewind(procf);
239 phdr.a_text+= phdr.a_hdrlen;
242 /* Copy text and data of proc to image. */
243 if (phdr.a_flags & A_SEP) {
244 /* Separate I&D: pad text & data separately. */
246 copyexec(proc, procf, image, imagef, phdr.a_text);
247 copyexec(proc, procf, image, imagef, phdr.a_data);
248 } else {
249 /* Common I&D: keep text and data together. */
251 copyexec(proc, procf, image, imagef,
252 phdr.a_text + phdr.a_data);
255 /* Done with proc. */
256 (void) fclose(procf);
258 /* Done with image. */
260 if (fclose(imagef) == EOF) fatal(image);
262 printf(" ------ ------ ------ -------\n");
263 printf(" %8ld %8ld %8ld %9ld total\n",
264 total_text, total_data, total_bss,
265 total_text + total_data + total_bss);
268 void extractexec(FILE *imagef, char *image, FILE *procf, char *proc,
269 long count, off_t *alen)
270 /* Copy a segment of an executable. It is padded to a sector in image. */
272 char buf[SECTOR_SIZE];
274 while (count > 0) {
275 bread(imagef, image, buf, sizeof(buf));
276 *alen-= sizeof(buf);
278 bwrite(procf, proc, buf,
279 count < sizeof(buf) ? (size_t) count : sizeof(buf));
280 count-= sizeof(buf);
284 void extract_image(char *image)
285 /* Extract the executables from an image. */
287 FILE *imagef, *procf;
288 off_t len;
289 struct stat st;
290 struct image_header ihdr;
291 struct exec phdr;
292 char buf[SECTOR_SIZE];
294 if (stat(image, &st) < 0) fatal(image);
296 /* Size of the image. */
297 len= S_ISREG(st.st_mode) ? st.st_size : -1;
299 if ((imagef= fopen(image, "r")) == nil) fatal(image);
301 while (len != 0) {
302 /* Extract a program, first sector is an extended header. */
303 bread(imagef, image, buf, sizeof(buf));
304 len-= sizeof(buf);
306 memcpy(&ihdr, buf, sizeof(ihdr));
307 phdr= ihdr.process;
309 /* Check header. */
310 read_header(1, ihdr.name, nil, &ihdr);
312 if ((procf= fopen(ihdr.name, "w")) == nil) fatal(ihdr.name);
314 if (phdr.a_flags & A_PAL) {
315 /* A page aligned process contains a header in text. */
316 phdr.a_text+= phdr.a_hdrlen;
317 } else {
318 bwrite(procf, ihdr.name, &ihdr.process, phdr.a_hdrlen);
321 /* Extract text and data segments. */
322 if (phdr.a_flags & A_SEP) {
323 extractexec(imagef, image, procf, ihdr.name,
324 phdr.a_text, &len);
325 extractexec(imagef, image, procf, ihdr.name,
326 phdr.a_data, &len);
327 } else {
328 extractexec(imagef, image, procf, ihdr.name,
329 phdr.a_text + phdr.a_data, &len);
332 if (fclose(procf) == EOF) fatal(ihdr.name);
336 int rawfd; /* File descriptor to open device. */
337 char *rawdev; /* Name of device. */
339 void readblock(off_t blk, char *buf, int block_size)
340 /* For rawfs, so that it can read blocks. */
342 int n;
344 if (lseek(rawfd, blk * block_size, SEEK_SET) < 0
345 || (n= read(rawfd, buf, block_size)) < 0
346 ) fatal(rawdev);
348 if (n < block_size) {
349 fprintf(stderr, "installboot: Unexpected EOF on %s\n", rawdev);
350 exit(1);
354 void writeblock(off_t blk, char *buf, int block_size)
355 /* Add a function to write blocks for local use. */
357 if (lseek(rawfd, blk * block_size, SEEK_SET) < 0
358 || write(rawfd, buf, block_size) < 0
359 ) fatal(rawdev);
362 int raw_install(char *file, off_t *start, off_t *len, int block_size)
363 /* Copy bootcode or an image to the boot device at the given absolute disk
364 * block number. This "raw" installation is used to place bootcode and
365 * image on a disk without a filesystem to make a simple boot disk. Useful
366 * in automated scripts for J. Random User.
367 * Note: *len == 0 when an image is read. It is set right afterwards.
370 static char buf[_MAX_BLOCK_SIZE]; /* Nonvolatile block buffer. */
371 FILE *f;
372 off_t sec;
373 unsigned long devsize;
374 static int banner= 0;
375 struct partition entry;
377 /* See if the device has a maximum size. */
378 devsize= -1;
379 if (ioctl(rawfd, DIOCGETP, &entry) == 0) devsize= cv64ul(entry.size);
381 if ((f= fopen(file, "r")) == nil) fatal(file);
383 /* Copy sectors from file onto the boot device. */
384 sec= *start;
385 do {
386 int off= sec % RATIO(BOOT_BLOCK_SIZE);
388 if (fread(buf + off * SECTOR_SIZE, 1, SECTOR_SIZE, f) == 0)
389 break;
391 if (sec >= devsize) {
392 fprintf(stderr,
393 "installboot: %s can't be attached to %s\n",
394 file, rawdev);
395 return 0;
398 if (off == RATIO(BOOT_BLOCK_SIZE) - 1) writeblock(sec / RATIO(BOOT_BLOCK_SIZE), buf, BOOT_BLOCK_SIZE);
399 } while (++sec != *start + *len);
401 if (ferror(f)) fatal(file);
402 (void) fclose(f);
404 /* Write a partial block, this may be the last image. */
405 if (sec % RATIO(BOOT_BLOCK_SIZE) != 0) writeblock(sec / RATIO(BOOT_BLOCK_SIZE), buf, BOOT_BLOCK_SIZE);
407 if (!banner) {
408 printf(" sector length\n");
409 banner= 1;
411 *len= sec - *start;
412 printf("%8ld%8ld %s\n", *start, *len, file);
413 *start= sec;
414 return 1;
417 enum howto { FS, BOOT };
419 void make_bootable(enum howto how, char *device, char *bootblock,
420 char *bootcode, char **imagev)
421 /* Install bootblock on the bootsector of device with the disk addresses to
422 * bootcode patched into the data segment of bootblock. "How" tells if there
423 * should or shoudn't be a file system on the disk. The images in the imagev
424 * vector are added to the end of the device.
427 char buf[_MAX_BLOCK_SIZE + 256], *adrp, *parmp;
428 struct fileaddr {
429 off_t address;
430 int count;
431 } bootaddr[BOOT_MAX + 1], *bap= bootaddr;
432 struct exec boothdr;
433 struct image_header dummy;
434 struct stat st;
435 ino_t ino;
436 off_t sector, max_sector;
437 FILE *bootf;
438 off_t addr, fssize, pos, len;
439 char *labels, *label, *image;
440 int nolabel;
441 int block_size = 0;
443 /* Open device and set variables for readblock. */
444 if ((rawfd= open(rawdev= device, O_RDWR)) < 0) fatal(device);
446 /* Read and check the superblock. */
447 fssize= r_super(&block_size);
449 switch (how) {
450 case FS:
451 if (fssize == 0) {
452 fprintf(stderr,
453 "installboot: %s is not a Minix file system\n",
454 device);
455 exit(1);
457 break;
458 case BOOT:
459 if (fssize != 0) {
460 int s;
461 printf("%s contains a file system!\n", device);
462 printf("Scribbling in 10 seconds");
463 for (s= 0; s < 10; s++) {
464 fputc('.', stdout);
465 fflush(stdout);
466 sleep(1);
468 fputc('\n', stdout);
470 fssize= 1; /* Just a boot block. */
473 if (how == FS) {
474 /* See if the boot code can be found on the file system. */
475 if ((ino= r_lookup(ROOT_INO, bootcode)) == 0) {
476 if (errno != ENOENT) fatal(bootcode);
478 } else {
479 /* Boot code must be attached at the end. */
480 ino= 0;
483 if (ino == 0) {
484 /* For a raw installation, we need to copy the boot code onto
485 * the device, so we need to look at the file to be copied.
487 if (stat(bootcode, &st) < 0) fatal(bootcode);
489 if ((bootf= fopen(bootcode, "r")) == nil) fatal(bootcode);
490 } else {
491 /* Boot code is present in the file system. */
492 r_stat(ino, &st);
494 /* Get the header from the first block. */
495 if ((addr= r_vir2abs((off_t) 0)) == 0) {
496 boothdr.a_magic[0]= !A_MAGIC0;
497 } else {
498 readblock(addr, buf, block_size);
499 /* Must skip 16 bytes of 'boot' as that contains code. */
500 memcpy(&boothdr, buf + 16, sizeof(struct exec));
502 bootf= nil;
503 dummy.process= boothdr;
505 /* See if it is an executable (read_header does the check). */
506 read_header(0, bootcode, bootf, &dummy);
507 boothdr= dummy.process;
509 if (bootf != nil) fclose(bootf);
511 /* Get all the sector addresses of the secondary boot code. */
512 max_sector= (boothdr.a_hdrlen + boothdr.a_text
513 + boothdr.a_data + SECTOR_SIZE - 1) / SECTOR_SIZE;
515 if (max_sector > BOOT_MAX * RATIO(block_size)) {
516 fprintf(stderr, "installboot: %s is way too big\n", bootcode);
517 exit(0);
520 /* Determine the addresses to the boot code to be patched into the
521 * boot block.
523 bap->count= 0; /* Trick to get the address recording going. */
525 for (sector= 0; sector < max_sector; sector++) {
526 if (ino == 0) {
527 addr= fssize + (sector / RATIO(block_size));
528 } else
529 if ((addr= r_vir2abs(sector / RATIO(block_size))) == 0) {
530 fprintf(stderr, "installboot: %s has holes!\n",
531 bootcode);
532 exit(1);
534 addr= (addr * RATIO(block_size)) + (sector % RATIO(block_size));
536 /* First address of the addresses array? */
537 if (bap->count == 0) bap->address= addr;
539 /* Paste sectors together in a multisector read. */
540 if (bap->address + bap->count == addr)
541 bap->count++;
542 else {
543 /* New address. */
544 bap++;
545 bap->address= addr;
546 bap->count= 1;
549 (++bap)->count= 0; /* No more. */
551 /* Get the boot block and patch the pieces in. */
552 readblock(BOOTBLOCK, buf, BOOT_BLOCK_SIZE);
554 if ((bootf= fopen(bootblock, "r")) == nil) fatal(bootblock);
556 read_header(0, bootblock, bootf, &dummy);
557 boothdr= dummy.process;
559 if (boothdr.a_text + boothdr.a_data +
560 4 * (bap - bootaddr) + 1 > PARTPOS) {
561 fprintf(stderr,
562 "installboot: %s + addresses to %s don't fit in the boot sector\n",
563 bootblock, bootcode);
564 fprintf(stderr,
565 "You can try copying/reinstalling %s to defragment it\n",
566 bootcode);
567 exit(1);
570 /* All checks out right. Read bootblock into the boot block! */
571 bread(bootf, bootblock, buf, boothdr.a_text + boothdr.a_data);
572 (void) fclose(bootf);
574 /* Patch the addresses in. */
575 adrp= buf + (int) (boothdr.a_text + boothdr.a_data);
576 for (bap= bootaddr; bap->count != 0; bap++) {
577 *adrp++= bap->count;
578 *adrp++= (bap->address >> 0) & 0xFF;
579 *adrp++= (bap->address >> 8) & 0xFF;
580 *adrp++= (bap->address >> 16) & 0xFF;
582 /* Zero count stops bootblock's reading loop. */
583 *adrp++= 0;
585 if (bap > bootaddr+1) {
586 printf("%s and %d addresses to %s patched into %s\n",
587 bootblock, (int)(bap - bootaddr), bootcode, device);
590 /* Boot block signature. */
591 buf[SIGPOS+0]= (SIGNATURE >> 0) & 0xFF;
592 buf[SIGPOS+1]= (SIGNATURE >> 8) & 0xFF;
594 /* Sector 2 of the boot block is used for boot parameters, initially
595 * filled with null commands (newlines). Initialize it only if
596 * necessary.
598 for (parmp= buf + SECTOR_SIZE; parmp < buf + 2*SECTOR_SIZE; parmp++) {
599 if (*imagev != nil || (control(*parmp) && *parmp != '\n')) {
600 /* Param sector must be initialized. */
601 memset(buf + SECTOR_SIZE, '\n', SECTOR_SIZE);
602 break;
606 /* Offset to the end of the file system to add boot code and images. */
607 pos= fssize * RATIO(block_size);
609 if (ino == 0) {
610 /* Place the boot code onto the boot device. */
611 len= max_sector;
612 if (!raw_install(bootcode, &pos, &len, block_size)) {
613 if (how == FS) {
614 fprintf(stderr,
615 "\t(Isn't there a copy of %s on %s that can be used?)\n",
616 bootcode, device);
618 exit(1);
622 parmp= buf + SECTOR_SIZE;
623 nolabel= 0;
625 if (how == BOOT) {
626 /* A boot only disk needs to have floppies swapped. */
627 strcpy(parmp,
628 "trailer()echo \\nInsert the root diskette then hit RETURN\\n\\w\\c\n");
629 parmp+= strlen(parmp);
632 while ((labels= *imagev++) != nil) {
633 /* Place each kernel image on the boot device. */
635 if ((image= strchr(labels, ':')) != nil)
636 *image++= 0;
637 else {
638 if (nolabel) {
639 fprintf(stderr,
640 "installboot: Only one image can be the default\n");
641 exit(1);
643 nolabel= 1;
644 image= labels;
645 labels= nil;
647 len= 0;
648 if (!raw_install(image, &pos, &len, block_size)) exit(1);
650 if (labels == nil) {
651 /* Let this image be the default. */
652 sprintf(parmp, "image=%ld:%ld\n", pos-len, len);
653 parmp+= strlen(parmp);
656 while (labels != nil) {
657 /* Image is prefixed by a comma separated list of
658 * labels. Define functions to select label and image.
660 label= labels;
661 if ((labels= strchr(labels, ',')) != nil) *labels++ = 0;
663 sprintf(parmp,
664 "%s(%c){label=%s;image=%ld:%ld;echo %s kernel selected;menu}\n",
665 label,
666 between('A', label[0], 'Z')
667 ? label[0]-'A'+'a' : label[0],
668 label, pos-len, len, label);
669 parmp+= strlen(parmp);
672 if (parmp > buf + block_size) {
673 fprintf(stderr,
674 "installboot: Out of parameter space, too many images\n");
675 exit(1);
678 /* Install boot block. */
679 writeblock((off_t) BOOTBLOCK, buf, 1024);
681 if (pos > fssize * RATIO(block_size)) {
682 /* Tell the total size of the data on the device. */
683 printf("%16ld (%ld kb) total\n", pos,
684 (pos + RATIO(block_size) - 1) / RATIO(block_size));
688 void install_master(char *device, char *masterboot, char **guide)
689 /* Booting a hard disk is a two stage process: The master bootstrap in sector
690 * 0 loads the bootstrap from sector 0 of the active partition which in turn
691 * starts the operating system. This code installs such a master bootstrap
692 * on a hard disk. If guide[0] is non-null then the master bootstrap is
693 * guided into booting a certain device.
696 FILE *masf;
697 unsigned long size;
698 struct stat st;
699 static char buf[_MAX_BLOCK_SIZE];
701 /* Open device. */
702 if ((rawfd= open(rawdev= device, O_RDWR)) < 0) fatal(device);
704 /* Open the master boot code. */
705 if ((masf= fopen(masterboot, "r")) == nil) fatal(masterboot);
707 /* See if the user is cloning a device. */
708 if (fstat(fileno(masf), &st) >=0 && S_ISBLK(st.st_mode))
709 size= PARTPOS;
710 else {
711 /* Read and check header otherwise. */
712 struct image_header ihdr;
714 read_header(1, masterboot, masf, &ihdr);
715 size= ihdr.process.a_text + ihdr.process.a_data;
717 if (size > PARTPOS) {
718 fprintf(stderr, "installboot: %s is too big\n", masterboot);
719 exit(1);
722 /* Read the master boot block, patch it, write. */
723 readblock(BOOTBLOCK, buf, BOOT_BLOCK_SIZE);
725 memset(buf, 0, PARTPOS);
726 (void) bread(masf, masterboot, buf, size);
728 if (guide[0] != nil) {
729 /* Fixate partition to boot. */
730 char *keys= guide[0];
731 char *logical= guide[1];
732 size_t i;
733 int logfd;
734 u32_t offset;
735 struct partition geometry;
737 /* A string of digits to be seen as keystrokes. */
738 i= 0;
739 do {
740 if (!between('0', keys[i], '9')) {
741 fprintf(stderr,
742 "installboot: bad guide keys '%s'\n",
743 keys);
744 exit(1);
746 } while (keys[++i] != 0);
748 if (size + i + 1 > PARTPOS) {
749 fprintf(stderr,
750 "installboot: not enough space after '%s' for '%s'\n",
751 masterboot, keys);
752 exit(1);
754 memcpy(buf + size, keys, i);
755 size += i;
756 buf[size]= '\r';
758 if (logical != nil) {
759 if ((logfd= open(logical, O_RDONLY)) < 0
760 || ioctl(logfd, DIOCGETP, &geometry) < 0
762 fatal(logical);
764 offset= div64u(geometry.base, SECTOR_SIZE);
765 if (size + 5 > PARTPOS) {
766 fprintf(stderr,
767 "installboot: not enough space "
768 "after '%s' for '%s' and an offset "
769 "to '%s'\n",
770 masterboot, keys, logical);
771 exit(1);
773 buf[size]= '#';
774 memcpy(buf+size+1, &offset, 4);
778 /* Install signature. */
779 buf[SIGPOS+0]= (SIGNATURE >> 0) & 0xFF;
780 buf[SIGPOS+1]= (SIGNATURE >> 8) & 0xFF;
782 writeblock(BOOTBLOCK, buf, BOOT_BLOCK_SIZE);
785 void usage(void)
787 fprintf(stderr,
788 "Usage: installboot -i(mage) image kernel mm fs ... init\n"
789 " installboot -(e)x(tract) image\n"
790 " installboot -d(evice) device bootblock boot [image ...]\n"
791 " installboot -b(oot) device bootblock boot image ...\n"
792 " installboot -m(aster) device masterboot [keys [logical]]\n");
793 exit(1);
796 int isoption(char *option, char *test)
797 /* Check if the option argument is equals "test". Also accept -i as short
798 * for -image, and the special case -x for -extract.
801 if (strcmp(option, test) == 0) return 1;
802 if (option[0] != '-' && strlen(option) != 2) return 0;
803 if (option[1] == test[1]) return 1;
804 if (option[1] == 'x' && test[1] == 'e') return 1;
805 return 0;
808 int main(int argc, char **argv)
810 if (argc < 2) usage();
812 if (argc >= 4 && isoption(argv[1], "-image")) {
813 make_image(argv[2], argv + 3);
814 } else
815 if (argc == 3 && isoption(argv[1], "-extract")) {
816 extract_image(argv[2]);
817 } else
818 if (argc >= 5 && isoption(argv[1], "-device")) {
819 make_bootable(FS, argv[2], argv[3], argv[4], argv + 5);
820 } else
821 if (argc >= 6 && isoption(argv[1], "-boot")) {
822 make_bootable(BOOT, argv[2], argv[3], argv[4], argv + 5);
823 } else
824 if ((4 <= argc && argc <= 6) && isoption(argv[1], "-master")) {
825 install_master(argv[2], argv[3], argv + 4);
826 } else {
827 usage();
829 exit(0);
833 * $PchId: installboot.c,v 1.10 2000/08/13 22:07:50 philip Exp $