Merge branch 'master' into core32
[profile/ivi/syslinux.git] / extlinux / main.c
1 /* ----------------------------------------------------------------------- *
2  *
3  *   Copyright 1998-2008 H. Peter Anvin - All Rights Reserved
4  *   Copyright 2009 Intel Corporation; author: H. Peter Anvin
5  *
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
9  *   Boston MA 02111-1307, USA; either version 2 of the License, or
10  *   (at your option) any later version; incorporated herein by reference.
11  *
12  * ----------------------------------------------------------------------- */
13
14 /*
15  * extlinux.c
16  *
17  * Install the extlinux boot block on an ext2/3 filesystem
18  */
19
20 #define  _GNU_SOURCE            /* Enable everything */
21 #include <inttypes.h>
22 /* This is needed to deal with the kernel headers imported into glibc 3.3.3. */
23 typedef uint64_t u64;
24 #include <alloca.h>
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <stdio.h>
28 #include <unistd.h>
29 #ifndef __KLIBC__
30 #include <mntent.h>
31 #endif
32 #include <stdlib.h>
33 #include <string.h>
34 #include <getopt.h>
35 #include <sysexits.h>
36 #include <sys/ioctl.h>
37 #include <sys/stat.h>
38 #include <sys/types.h>
39 #include <sys/mount.h>
40 #include <sys/vfs.h>
41
42 #include <linux/fd.h>           /* Floppy geometry */
43 #include <linux/hdreg.h>        /* Hard disk geometry */
44 #define statfs _kernel_statfs   /* HACK to deal with broken 2.4 distros */
45 #include <linux/fs.h>           /* FIGETBSZ, FIBMAP */
46 #undef statfs
47
48 #include "ext2_fs.h"
49 #include "../version.h"
50 #include "syslxint.h"
51
52 #ifdef DEBUG
53 # define dprintf printf
54 #else
55 # define dprintf(...) ((void)0)
56 #endif
57
58 /* Global option handling */
59
60 const char *program;
61
62 /* These are the options we can set and their values */
63 struct my_options {
64     unsigned int sectors;
65     unsigned int heads;
66     int raid_mode;
67     int stupid_mode;
68     int reset_adv;
69     const char *set_once;
70 } opt = {
71 .sectors = 0,.heads = 0,.raid_mode = 0,.stupid_mode = 0,.reset_adv =
72         0,.set_once = NULL,};
73
74 static void __attribute__ ((noreturn)) usage(int rv)
75 {
76     fprintf(stderr,
77             "Usage: %s [options] directory\n"
78             "  --install    -i  Install over the current bootsector\n"
79             "  --update     -U  Update a previous EXTLINUX installation\n"
80             "  --zip        -z  Force zipdrive geometry (-H 64 -S 32)\n"
81             "  --sectors=#  -S  Force the number of sectors per track\n"
82             "  --heads=#    -H  Force number of heads\n"
83             "  --stupid     -s  Slow, safe and stupid mode\n"
84             "  --raid       -r  Fall back to the next device on boot failure\n"
85             "  --once=...   -o  Execute a command once upon boot\n"
86             "  --clear-once -O  Clear the boot-once command\n"
87             "  --reset-adv      Reset auxilliary data\n"
88             "\n"
89             "  Note: geometry is determined at boot time for devices which\n"
90             "  are considered hard disks by the BIOS.  Unfortunately, this is\n"
91             "  not possible for devices which are considered floppy disks,\n"
92             "  which includes zipdisks and LS-120 superfloppies.\n"
93             "\n"
94             "  The -z option is useful for USB devices which are considered\n"
95             "  hard disks by some BIOSes and zipdrives by other BIOSes.\n",
96             program);
97
98     exit(rv);
99 }
100
101 enum long_only_opt {
102     OPT_NONE,
103     OPT_RESET_ADV,
104 };
105
106 static const struct option long_options[] = {
107     {"install", 0, NULL, 'i'},
108     {"update", 0, NULL, 'U'},
109     {"zipdrive", 0, NULL, 'z'},
110     {"sectors", 1, NULL, 'S'},
111     {"stupid", 0, NULL, 's'},
112     {"heads", 1, NULL, 'H'},
113     {"raid-mode", 0, NULL, 'r'},
114     {"version", 0, NULL, 'v'},
115     {"help", 0, NULL, 'h'},
116     {"once", 1, NULL, 'o'},
117     {"clear-once", 0, NULL, 'O'},
118     {"reset-adv", 0, NULL, OPT_RESET_ADV},
119     {0, 0, 0, 0}
120 };
121
122 static const char short_options[] = "iUuzS:H:rvho:O";
123
124 #if defined(__linux__) && !defined(BLKGETSIZE64)
125 /* This takes a u64, but the size field says size_t.  Someone screwed big. */
126 # define BLKGETSIZE64 _IOR(0x12,114,size_t)
127 #endif
128
129 #ifndef EXT2_SUPER_OFFSET
130 #define EXT2_SUPER_OFFSET 1024
131 #endif
132
133 /*
134  * Boot block
135  */
136 extern unsigned char extlinux_bootsect[];
137 extern unsigned int extlinux_bootsect_len;
138 #define boot_block      extlinux_bootsect
139 #define boot_block_len  extlinux_bootsect_len
140
141 /*
142  * Image file
143  */
144 extern unsigned char extlinux_image[];
145 extern unsigned int extlinux_image_len;
146 #define boot_image      extlinux_image
147 #define boot_image_len  extlinux_image_len
148
149 /*
150  * Common abort function
151  */
152 void __attribute__ ((noreturn)) die(const char *msg)
153 {
154     fputs(msg, stderr);
155     exit(1);
156 }
157
158 /*
159  * read/write wrapper functions
160  */
161 ssize_t xpread(int fd, void *buf, size_t count, off_t offset)
162 {
163     char *bufp = (char *)buf;
164     ssize_t rv;
165     ssize_t done = 0;
166
167     while (count) {
168         rv = pread(fd, bufp, count, offset);
169         if (rv == 0) {
170             die("short read");
171         } else if (rv == -1) {
172             if (errno == EINTR) {
173                 continue;
174             } else {
175                 die(strerror(errno));
176             }
177         } else {
178             bufp += rv;
179             offset += rv;
180             done += rv;
181             count -= rv;
182         }
183     }
184
185     return done;
186 }
187
188 ssize_t xpwrite(int fd, const void *buf, size_t count, off_t offset)
189 {
190     const char *bufp = (const char *)buf;
191     ssize_t rv;
192     ssize_t done = 0;
193
194     while (count) {
195         rv = pwrite(fd, bufp, count, offset);
196         if (rv == 0) {
197             die("short write");
198         } else if (rv == -1) {
199             if (errno == EINTR) {
200                 continue;
201             } else {
202                 die(strerror(errno));
203             }
204         } else {
205             bufp += rv;
206             offset += rv;
207             done += rv;
208             count -= rv;
209         }
210     }
211
212     return done;
213 }
214
215 /*
216  * Produce file map
217  */
218 int sectmap(int fd, uint32_t * sectors, int nsectors)
219 {
220     unsigned int blksize, blk, nblk;
221     unsigned int i;
222
223     /* Get block size */
224     if (ioctl(fd, FIGETBSZ, &blksize))
225         return -1;
226
227     /* Number of sectors per block */
228     blksize >>= SECTOR_SHIFT;
229
230     nblk = 0;
231     while (nsectors) {
232
233         blk = nblk++;
234         dprintf("querying block %u\n", blk);
235         if (ioctl(fd, FIBMAP, &blk))
236             return -1;
237
238         blk *= blksize;
239         for (i = 0; i < blksize; i++) {
240             if (!nsectors)
241                 return 0;
242
243             dprintf("Sector: %10u\n", blk);
244             *sectors++ = blk++;
245             nsectors--;
246         }
247     }
248
249     return 0;
250 }
251
252 /*
253  * Get the size of a block device
254  */
255 uint64_t get_size(int devfd)
256 {
257     uint64_t bytes;
258     uint32_t sects;
259     struct stat st;
260
261 #ifdef BLKGETSIZE64
262     if (!ioctl(devfd, BLKGETSIZE64, &bytes))
263         return bytes;
264 #endif
265     if (!ioctl(devfd, BLKGETSIZE, &sects))
266         return (uint64_t) sects << 9;
267     else if (!fstat(devfd, &st) && st.st_size)
268         return st.st_size;
269     else
270         return 0;
271 }
272
273 /*
274  * Get device geometry and partition offset
275  */
276 struct geometry_table {
277     uint64_t bytes;
278     struct hd_geometry g;
279 };
280
281 /* Standard floppy disk geometries, plus LS-120.  Zipdisk geometry
282    (x/64/32) is the final fallback.  I don't know what LS-240 has
283    as its geometry, since I don't have one and don't know anyone that does,
284    and Google wasn't helpful... */
285 static const struct geometry_table standard_geometries[] = {
286     {360 * 1024, {2, 9, 40, 0}},
287     {720 * 1024, {2, 9, 80, 0}},
288     {1200 * 1024, {2, 15, 80, 0}},
289     {1440 * 1024, {2, 18, 80, 0}},
290     {1680 * 1024, {2, 21, 80, 0}},
291     {1722 * 1024, {2, 21, 80, 0}},
292     {2880 * 1024, {2, 36, 80, 0}},
293     {3840 * 1024, {2, 48, 80, 0}},
294     {123264 * 1024, {8, 32, 963, 0}},   /* LS120 */
295     {0, {0, 0, 0, 0}}
296 };
297
298 int get_geometry(int devfd, uint64_t totalbytes, struct hd_geometry *geo)
299 {
300     struct floppy_struct fd_str;
301     const struct geometry_table *gp;
302
303     memset(geo, 0, sizeof *geo);
304
305     if (!ioctl(devfd, HDIO_GETGEO, &geo)) {
306         return 0;
307     } else if (!ioctl(devfd, FDGETPRM, &fd_str)) {
308         geo->heads = fd_str.head;
309         geo->sectors = fd_str.sect;
310         geo->cylinders = fd_str.track;
311         geo->start = 0;
312         return 0;
313     }
314
315     /* Didn't work.  Let's see if this is one of the standard geometries */
316     for (gp = standard_geometries; gp->bytes; gp++) {
317         if (gp->bytes == totalbytes) {
318             memcpy(geo, &gp->g, sizeof *geo);
319             return 0;
320         }
321     }
322
323     /* Didn't work either... assign a geometry of 64 heads, 32 sectors; this is
324        what zipdisks use, so this would help if someone has a USB key that
325        they're booting in USB-ZIP mode. */
326
327     geo->heads = opt.heads ? : 64;
328     geo->sectors = opt.sectors ? : 32;
329     geo->cylinders = totalbytes / (geo->heads * geo->sectors << SECTOR_SHIFT);
330     geo->start = 0;
331
332     if (!opt.sectors && !opt.heads)
333         fprintf(stderr,
334                 "Warning: unable to obtain device geometry (defaulting to %d heads, %d sectors)\n"
335                 "         (on hard disks, this is usually harmless.)\n",
336                 geo->heads, geo->sectors);
337
338     return 1;
339 }
340
341 /*
342  * Query the device geometry and put it into the boot sector.
343  * Map the file and put the map in the boot sector and file.
344  * Stick the "current directory" inode number into the file.
345  */
346 void patch_file_and_bootblock(int fd, int dirfd, int devfd)
347 {
348     struct stat dirst;
349     struct hd_geometry geo;
350     uint32_t *sectp;
351     uint64_t totalbytes, totalsectors;
352     int nsect;
353     uint32_t *wp;
354     struct boot_sector *bs;
355     struct patch_area *patcharea;
356     int i, dw, nptrs;
357     uint32_t csum;
358
359     if (fstat(dirfd, &dirst)) {
360         perror("fstat dirfd");
361         exit(255);              /* This should never happen */
362     }
363
364     totalbytes = get_size(devfd);
365     get_geometry(devfd, totalbytes, &geo);
366
367     if (opt.heads)
368         geo.heads = opt.heads;
369     if (opt.sectors)
370         geo.sectors = opt.sectors;
371
372     /* Patch this into a fake FAT superblock.  This isn't because
373        FAT is a good format in any way, it's because it lets the
374        early bootstrap share code with the FAT version. */
375     dprintf("heads = %u, sect = %u\n", geo.heads, geo.sectors);
376
377     bs = (struct boot_sector *)boot_block;
378
379     totalsectors = totalbytes >> SECTOR_SHIFT;
380     if (totalsectors >= 65536) {
381         set_16(&bs->bsSectors, 0);
382     } else {
383         set_16(&bs->bsSectors, totalsectors);
384     }
385     set_32(&bs->bsHugeSectors, totalsectors);
386
387     set_16(&bs->bsBytesPerSec, SECTOR_SIZE);
388     set_16(&bs->bsSecPerTrack, geo.sectors);
389     set_16(&bs->bsHeads, geo.heads);
390     set_32(&bs->bsHiddenSecs, geo.start);
391
392     /* If we're in RAID mode then patch the appropriate instruction;
393        either way write the proper boot signature */
394     i = get_16(&bs->bsSignature);
395     if (opt.raid_mode)
396         set_16((uint16_t *) (boot_block + i), 0x18CD);  /* INT 18h */
397
398     set_16(&bs->bsSignature, 0xAA55);
399
400     /* Construct the boot file */
401
402     dprintf("directory inode = %lu\n", (unsigned long)dirst.st_ino);
403     nsect = (boot_image_len + SECTOR_SIZE - 1) >> SECTOR_SHIFT;
404     nsect += 2;                 /* Two sectors for the ADV */
405     sectp = alloca(sizeof(uint32_t) * nsect);
406     if (sectmap(fd, sectp, nsect)) {
407         perror("bmap");
408         exit(1);
409     }
410
411     /* First sector need pointer in boot sector */
412     set_32(&bs->NextSector, *sectp++);
413
414     /* Stupid mode? */
415     if (opt.stupid_mode)
416         set_16(&bs->MaxTransfer, 1);
417
418     /* Search for LDLINUX_MAGIC to find the patch area */
419     for (wp = (uint32_t *) boot_image; get_32(wp) != LDLINUX_MAGIC; wp++) ;
420     patcharea = (struct patch_area *)wp;
421
422     /* Set up the totals */
423     dw = boot_image_len >> 2;   /* COMPLETE dwords, excluding ADV */
424     set_16(&patcharea->data_sectors, nsect - 2);        /* -2 for the ADVs */
425     set_16(&patcharea->adv_sectors, 2);
426     set_32(&patcharea->dwords, dw);
427     set_32(&patcharea->currentdir, dirst.st_ino);
428
429     /* Set the sector pointers */
430     wp = (uint32_t *) ((char *)boot_image + get_16(&patcharea->secptroffset));
431     nptrs = get_16(&patcharea->secptrcnt);
432
433     memset(wp, 0, nptrs * 4);
434     while (nsect--)
435         set_32(wp++, *sectp++);
436
437     /* Now produce a checksum */
438     set_32(&patcharea->checksum, 0);
439
440     csum = LDLINUX_MAGIC;
441     for (i = 0, wp = (uint32_t *) boot_image; i < dw; i++, wp++)
442         csum -= get_32(wp);     /* Negative checksum */
443
444     set_32(&patcharea->checksum, csum);
445 }
446
447 /*
448  * Read the ADV from an existing instance, or initialize if invalid.
449  * Returns -1 on fatal errors, 0 if ADV is okay, and 1 if no valid
450  * ADV was found.
451  */
452 int read_adv(const char *path)
453 {
454     char *file;
455     int fd = -1;
456     struct stat st;
457     int err = 0;
458
459     asprintf(&file, "%s%sextlinux.sys",
460              path, path[0] && path[strlen(path) - 1] == '/' ? "" : "/");
461
462     if (!file) {
463         perror(program);
464         return -1;
465     }
466
467     fd = open(file, O_RDONLY);
468     if (fd < 0) {
469         if (errno != ENOENT) {
470             err = -1;
471         } else {
472             syslinux_reset_adv(syslinux_adv);
473         }
474     } else if (fstat(fd, &st)) {
475         err = -1;
476     } else if (st.st_size < 2 * ADV_SIZE) {
477         /* Too small to be useful */
478         syslinux_reset_adv(syslinux_adv);
479         err = 0;                /* Nothing to read... */
480     } else if (xpread(fd, syslinux_adv, 2 * ADV_SIZE,
481                       st.st_size - 2 * ADV_SIZE) != 2 * ADV_SIZE) {
482         err = -1;
483     } else {
484         /* We got it... maybe? */
485         err = syslinux_validate_adv(syslinux_adv) ? 1 : 0;
486     }
487
488     if (err < 0)
489         perror(file);
490
491     if (fd >= 0)
492         close(fd);
493     if (file)
494         free(file);
495
496     return err;
497 }
498
499 /*
500  * Update the ADV in an existing installation.
501  */
502 int write_adv(const char *path)
503 {
504     unsigned char advtmp[2 * ADV_SIZE];
505     char *file;
506     int fd = -1;
507     struct stat st, xst;
508     int err = 0;
509     int flags, nflags;
510
511     asprintf(&file, "%s%sextlinux.sys",
512              path, path[0] && path[strlen(path) - 1] == '/' ? "" : "/");
513
514     if (!file) {
515         perror(program);
516         return -1;
517     }
518
519     fd = open(file, O_RDONLY);
520     if (fd < 0) {
521         err = -1;
522     } else if (fstat(fd, &st)) {
523         err = -1;
524     } else if (st.st_size < 2 * ADV_SIZE) {
525         /* Too small to be useful */
526         err = -2;
527     } else if (xpread(fd, advtmp, 2 * ADV_SIZE,
528                       st.st_size - 2 * ADV_SIZE) != 2 * ADV_SIZE) {
529         err = -1;
530     } else {
531         /* We got it... maybe? */
532         err = syslinux_validate_adv(advtmp) ? -2 : 0;
533         if (!err) {
534             /* Got a good one, write our own ADV here */
535             if (!ioctl(fd, EXT2_IOC_GETFLAGS, &flags)) {
536                 nflags = flags & ~EXT2_IMMUTABLE_FL;
537                 if (nflags != flags)
538                     ioctl(fd, EXT2_IOC_SETFLAGS, &nflags);
539             }
540             if (!(st.st_mode & S_IWUSR))
541                 fchmod(fd, st.st_mode | S_IWUSR);
542
543             /* Need to re-open read-write */
544             close(fd);
545             fd = open(file, O_RDWR | O_SYNC);
546             if (fd < 0) {
547                 err = -1;
548             } else if (fstat(fd, &xst) || xst.st_ino != st.st_ino ||
549                        xst.st_dev != st.st_dev || xst.st_size != st.st_size) {
550                 fprintf(stderr, "%s: race condition on write\n", file);
551                 err = -2;
552             }
553             /* Write our own version ... */
554             if (xpwrite(fd, syslinux_adv, 2 * ADV_SIZE,
555                         st.st_size - 2 * ADV_SIZE) != 2 * ADV_SIZE) {
556                 err = -1;
557             }
558
559             sync();
560
561             if (!(st.st_mode & S_IWUSR))
562                 fchmod(fd, st.st_mode);
563
564             if (nflags != flags)
565                 ioctl(fd, EXT2_IOC_SETFLAGS, &flags);
566         }
567     }
568
569     if (err == -2)
570         fprintf(stderr, "%s: cannot write auxilliary data (need --update)?\n",
571                 file);
572     else if (err == -1)
573         perror(file);
574
575     if (fd >= 0)
576         close(fd);
577     if (file)
578         free(file);
579
580     return err;
581 }
582
583 /*
584  * Make any user-specified ADV modifications
585  */
586 int modify_adv(void)
587 {
588     int rv = 0;
589
590     if (opt.set_once) {
591         if (syslinux_setadv(ADV_BOOTONCE, strlen(opt.set_once), opt.set_once)) {
592             fprintf(stderr, "%s: not enough space for boot-once command\n",
593                     program);
594             rv = -1;
595         }
596     }
597
598     return rv;
599 }
600
601 /*
602  * Install the boot block on the specified device.
603  * Must be run AFTER install_file()!
604  */
605 int install_bootblock(int fd, const char *device)
606 {
607     struct ext2_super_block sb;
608
609     if (xpread(fd, &sb, sizeof sb, EXT2_SUPER_OFFSET) != sizeof sb) {
610         perror("reading superblock");
611         return 1;
612     }
613
614     if (sb.s_magic != EXT2_SUPER_MAGIC) {
615         fprintf(stderr, "no ext2/ext3 superblock found on %s\n", device);
616         return 1;
617     }
618
619     if (xpwrite(fd, boot_block, boot_block_len, 0) != boot_block_len) {
620         perror("writing bootblock");
621         return 1;
622     }
623
624     return 0;
625 }
626
627 int install_file(const char *path, int devfd, struct stat *rst)
628 {
629     char *file;
630     int fd = -1, dirfd = -1, flags;
631     struct stat st;
632
633     asprintf(&file, "%s%sextlinux.sys",
634              path, path[0] && path[strlen(path) - 1] == '/' ? "" : "/");
635     if (!file) {
636         perror(program);
637         return 1;
638     }
639
640     dirfd = open(path, O_RDONLY | O_DIRECTORY);
641     if (dirfd < 0) {
642         perror(path);
643         goto bail;
644     }
645
646     fd = open(file, O_RDONLY);
647     if (fd < 0) {
648         if (errno != ENOENT) {
649             perror(file);
650             goto bail;
651         }
652     } else {
653         /* If file exist, remove the immutable flag and set u+w mode */
654         if (!ioctl(fd, EXT2_IOC_GETFLAGS, &flags)) {
655             flags &= ~EXT2_IMMUTABLE_FL;
656             ioctl(fd, EXT2_IOC_SETFLAGS, &flags);
657         }
658         if (!fstat(fd, &st)) {
659             fchmod(fd, st.st_mode | S_IWUSR);
660         }
661     }
662     close(fd);
663
664     fd = open(file, O_WRONLY | O_TRUNC | O_CREAT | O_SYNC,
665               S_IRUSR | S_IRGRP | S_IROTH);
666     if (fd < 0) {
667         perror(file);
668         goto bail;
669     }
670
671     /* Write it the first time */
672     if (xpwrite(fd, boot_image, boot_image_len, 0) != boot_image_len ||
673         xpwrite(fd, syslinux_adv, 2 * ADV_SIZE,
674                 boot_image_len) != 2 * ADV_SIZE) {
675         fprintf(stderr, "%s: write failure on %s\n", program, file);
676         goto bail;
677     }
678
679     /* Map the file, and patch the initial sector accordingly */
680     patch_file_and_bootblock(fd, dirfd, devfd);
681
682     /* Write the first sector again - this relies on the file being
683        overwritten in place! */
684     if (xpwrite(fd, boot_image, SECTOR_SIZE, 0) != SECTOR_SIZE) {
685         fprintf(stderr, "%s: write failure on %s\n", program, file);
686         goto bail;
687     }
688
689     /* Attempt to set immutable flag and remove all write access */
690     /* Only set immutable flag if file is owned by root */
691     if (!fstat(fd, &st)) {
692         fchmod(fd, st.st_mode & (S_IRUSR | S_IRGRP | S_IROTH));
693         if (st.st_uid == 0 && !ioctl(fd, EXT2_IOC_GETFLAGS, &flags)) {
694             flags |= EXT2_IMMUTABLE_FL;
695             ioctl(fd, EXT2_IOC_SETFLAGS, &flags);
696         }
697     }
698
699     if (fstat(fd, rst)) {
700         perror(file);
701         goto bail;
702     }
703
704     close(dirfd);
705     close(fd);
706     return 0;
707
708 bail:
709     if (dirfd >= 0)
710         close(dirfd);
711     if (fd >= 0)
712         close(fd);
713
714     return 1;
715 }
716
717 /* EXTLINUX installs the string 'EXTLINUX' at offset 3 in the boot
718    sector; this is consistent with FAT filesystems. */
719 int already_installed(int devfd)
720 {
721     char buffer[8];
722
723     xpread(devfd, buffer, 8, 3);
724     return !memcmp(buffer, "EXTLINUX", 8);
725 }
726
727 #ifdef __KLIBC__
728 static char devname_buf[64];
729
730 static void device_cleanup(void)
731 {
732     unlink(devname_buf);
733 }
734 #endif
735
736 /* Verify that a device fd and a pathname agree.
737    Return 0 on valid, -1 on error. */
738 static int validate_device(const char *path, int devfd)
739 {
740     struct stat pst, dst;
741
742     if (stat(path, &pst) || fstat(devfd, &dst))
743         return -1;
744
745     return (pst.st_dev == dst.st_rdev) ? 0 : -1;
746 }
747
748 #ifndef __KLIBC__
749 static const char *find_device(const char *mtab_file, dev_t dev)
750 {
751     struct mntent *mnt;
752     struct stat dst;
753     FILE *mtab;
754     const char *devname = NULL;
755
756     mtab = setmntent(mtab_file, "r");
757     if (!mtab)
758         return NULL;
759
760     while ((mnt = getmntent(mtab))) {
761         if ((!strcmp(mnt->mnt_type, "ext2") ||
762              !strcmp(mnt->mnt_type, "ext3")) &&
763             !stat(mnt->mnt_fsname, &dst) && dst.st_rdev == dev) {
764             devname = strdup(mnt->mnt_fsname);
765             break;
766         }
767     }
768     endmntent(mtab);
769
770     return devname;
771 }
772 #endif
773
774 int install_loader(const char *path, int update_only)
775 {
776     struct stat st, fst;
777     int devfd, rv;
778     const char *devname = NULL;
779     struct statfs sfs;
780
781     if (stat(path, &st) || !S_ISDIR(st.st_mode)) {
782         fprintf(stderr, "%s: Not a directory: %s\n", program, path);
783         return 1;
784     }
785
786     if (statfs(path, &sfs)) {
787         fprintf(stderr, "%s: statfs %s: %s\n", program, path, strerror(errno));
788         return 1;
789     }
790
791     if (sfs.f_type != EXT2_SUPER_MAGIC) {
792         fprintf(stderr, "%s: not an ext2/ext3 filesystem: %s\n", program, path);
793         return 1;
794     }
795
796     devfd = -1;
797
798 #ifdef __KLIBC__
799
800     /* klibc doesn't have getmntent and friends; instead, just create
801        a new device with the appropriate device type */
802     snprintf(devname_buf, sizeof devname_buf, "/tmp/dev-%u:%u",
803              major(st.st_dev), minor(st.st_dev));
804
805     if (mknod(devname_buf, S_IFBLK | 0600, st.st_dev)) {
806         fprintf(stderr, "%s: cannot create device %s\n", program, devname);
807         return 1;
808     }
809
810     atexit(device_cleanup);     /* unlink the device node on exit */
811     devname = devname_buf;
812
813 #else
814
815     devname = find_device("/proc/mounts", st.st_dev);
816     if (!devname) {
817         /* Didn't find it in /proc/mounts, try /etc/mtab */
818         devname = find_device("/etc/mtab", st.st_dev);
819     }
820     if (!devname) {
821         fprintf(stderr, "%s: cannot find device for path %s\n", program, path);
822         return 1;
823     }
824
825     fprintf(stderr, "%s is device %s\n", path, devname);
826 #endif
827
828     if ((devfd = open(devname, O_RDWR | O_SYNC)) < 0) {
829         fprintf(stderr, "%s: cannot open device %s\n", program, devname);
830         return 1;
831     }
832
833     /* Verify that the device we opened is the device intended */
834     if (validate_device(path, devfd)) {
835         fprintf(stderr, "%s: path %s doesn't match device %s\n",
836                 program, path, devname);
837         return 1;
838     }
839
840     if (update_only && !already_installed(devfd)) {
841         fprintf(stderr, "%s: no previous extlinux boot sector found\n",
842                 program);
843         return 1;
844     }
845
846     /* Read a pre-existing ADV, if already installed */
847     if (opt.reset_adv)
848         syslinux_reset_adv(syslinux_adv);
849     else if (read_adv(path) < 0)
850         return 1;
851
852     if (modify_adv() < 0)
853         return 1;
854
855     /* Install extlinux.sys */
856     if (install_file(path, devfd, &fst))
857         return 1;
858
859     if (fst.st_dev != st.st_dev) {
860         fprintf(stderr, "%s: file system changed under us - aborting!\n",
861                 program);
862         return 1;
863     }
864
865     sync();
866     rv = install_bootblock(devfd, devname);
867     close(devfd);
868     sync();
869
870     return rv;
871 }
872
873 /*
874  * Modify the ADV of an existing installation
875  */
876 int modify_existing_adv(const char *path)
877 {
878     if (opt.reset_adv)
879         syslinux_reset_adv(syslinux_adv);
880     else if (read_adv(path) < 0)
881         return 1;
882
883     if (modify_adv() < 0)
884         return 1;
885
886     if (write_adv(path) < 0)
887         return 1;
888
889     return 0;
890 }
891
892 int main(int argc, char *argv[])
893 {
894     int o;
895     const char *directory;
896     int update_only = -1;
897
898     program = argv[0];
899
900     while ((o = getopt_long(argc, argv, short_options,
901                             long_options, NULL)) != EOF) {
902         switch (o) {
903         case 'z':
904             opt.heads = 64;
905             opt.sectors = 32;
906             break;
907         case 'S':
908             opt.sectors = strtoul(optarg, NULL, 0);
909             if (opt.sectors < 1 || opt.sectors > 63) {
910                 fprintf(stderr,
911                         "%s: invalid number of sectors: %u (must be 1-63)\n",
912                         program, opt.sectors);
913                 exit(EX_USAGE);
914             }
915             break;
916         case 'H':
917             opt.heads = strtoul(optarg, NULL, 0);
918             if (opt.heads < 1 || opt.heads > 256) {
919                 fprintf(stderr,
920                         "%s: invalid number of heads: %u (must be 1-256)\n",
921                         program, opt.heads);
922                 exit(EX_USAGE);
923             }
924             break;
925         case 'r':
926             opt.raid_mode = 1;
927             break;
928         case 's':
929             opt.stupid_mode = 1;
930             break;
931         case 'i':
932             update_only = 0;
933             break;
934         case 'u':
935         case 'U':
936             update_only = 1;
937             break;
938         case 'h':
939             usage(0);
940             break;
941         case 'o':
942             opt.set_once = optarg;
943             break;
944         case 'O':
945             opt.set_once = "";
946             break;
947         case OPT_RESET_ADV:
948             opt.reset_adv = 1;
949             break;
950         case 'v':
951             fputs("extlinux " VERSION_STR
952                   "  Copyright 1994-" YEAR_STR " H. Peter Anvin \n", stderr);
953             exit(0);
954         default:
955             usage(EX_USAGE);
956         }
957     }
958
959     directory = argv[optind];
960
961     if (!directory)
962         usage(EX_USAGE);
963
964     if (update_only == -1) {
965         if (opt.reset_adv || opt.set_once) {
966             return modify_existing_adv(directory);
967         } else {
968             usage(EX_USAGE);
969         }
970     }
971
972     return install_loader(directory, update_only);
973 }