1 /* ----------------------------------------------------------------------- *
3 * Copyright 1998-2007 H. Peter Anvin - All Rights Reserved
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8 * Boston MA 02111-1307, USA; either version 2 of the License, or
9 * (at your option) any later version; incorporated herein by reference.
11 * ----------------------------------------------------------------------- */
14 * syslinux.c - Linux installer program for SYSLINUX
16 * This is Linux-specific by now.
18 * This is an alternate version of the installer which doesn't require
19 * mtools, but requires root privilege.
23 * If DO_DIRECT_MOUNT is 0, call mount(8)
24 * If DO_DIRECT_MOUNT is 1, call mount(2)
27 # define DO_DIRECT_MOUNT 1
29 # define DO_DIRECT_MOUNT 0 /* glibc has broken losetup ioctls */
33 #define _XOPEN_SOURCE 500 /* For pread() pwrite() */
34 #define _FILE_OFFSET_BITS 64
45 #include <sys/types.h>
47 #include <sys/mount.h>
49 #include <sys/ioctl.h>
50 #include <linux/fs.h> /* FIGETBSZ, FIBMAP */
51 #include <linux/msdos_fs.h> /* FAT_IOCTL_SET_ATTRIBUTES, SECTOR_* */
52 #ifndef FAT_IOCTL_SET_ATTRIBUTES
53 # define FAT_IOCTL_SET_ATTRIBUTES _IOW('r', 0x11, uint32_t)
58 # define _PATH_MOUNT "/bin/mount"
61 # define _PATH_UMOUNT "/bin/umount"
64 # define _PATH_TMP "/tmp/"
70 # include <linux/loop.h>
73 const char *program
; /* Name of program */
74 const char *device
; /* Device to install to */
76 char *mntpath
= NULL
; /* Path on which to mount */
77 off_t filesystem_offset
= 0; /* Filesystem offset */
79 int loop_fd
= -1; /* Loop device */
82 void __attribute__((noreturn
)) usage(void)
84 fprintf(stderr
, "Usage: %s [-sf][-d directory][-o offset] device\n", program
);
88 void __attribute__((noreturn
)) die(const char *msg
)
90 fprintf(stderr
, "%s: %s\n", program
, msg
);
93 if ( loop_fd
!= -1 ) {
94 ioctl(loop_fd
, LOOP_CLR_FD
, 0); /* Free loop device */
107 * read/write wrapper functions
109 ssize_t
xpread(int fd
, void *buf
, size_t count
, off_t offset
)
111 char *bufp
= (char *)buf
;
116 rv
= pread(fd
, bufp
, count
, offset
);
119 } else if ( rv
== -1 ) {
120 if ( errno
== EINTR
) {
123 die(strerror(errno
));
136 ssize_t
xpwrite(int fd
, const void *buf
, size_t count
, off_t offset
)
138 const char *bufp
= (const char *)buf
;
143 rv
= pwrite(fd
, bufp
, count
, offset
);
146 } else if ( rv
== -1 ) {
147 if ( errno
== EINTR
) {
150 die(strerror(errno
));
164 * Create a block map for ldlinux.sys
166 int make_block_map(uint32_t *sectors
, int len
, int dev_fd
, int fd
)
169 int blocksize
, nblock
, block
;
174 if (ioctl(fd
, FIGETBSZ
, &blocksize
) < 0)
175 die("ioctl FIGETBSZ failed");
177 blocksize
>>= SECTOR_BITS
; /* sectors/block */
182 if (ioctl(fd
, FIBMAP
, &block
) < 0)
183 die("ioctl FIBMAP failed");
185 for (i
= 0; i
< blocksize
; i
++) {
189 *sectors
++ = (block
*blocksize
)+i
;
191 len
-= (1 << SECTOR_BITS
);
201 int do_mount(int dev_fd
, int *cookie
, const char *mntpath
, const char *fstype
)
207 if (fstat(dev_fd
, &st
) < 0)
212 if ( !S_ISBLK(st
.st_mode
) ) {
213 /* It's file, need to mount it loopback */
215 struct loop_info64 loopinfo
;
218 for ( n
= 0 ; loop_fd
< 0 ; n
++ ) {
219 snprintf(devfdname
, sizeof devfdname
, "/dev/loop%u", n
);
220 loop_fd
= open(devfdname
, O_RDWR
);
221 if ( loop_fd
< 0 && errno
== ENOENT
) {
222 die("no available loopback device!");
224 if ( ioctl(loop_fd
, LOOP_SET_FD
, (void *)dev_fd
) ) {
225 close(loop_fd
); loop_fd
= -1;
226 if ( errno
!= EBUSY
)
227 die("cannot set up loopback device");
232 if ( ioctl(loop_fd
, LOOP_GET_STATUS64
, &loopinfo
) ||
233 (loopinfo
.lo_offset
= filesystem_offset
,
234 ioctl(loop_fd
, LOOP_SET_STATUS64
, &loopinfo
)) )
235 die("cannot set up loopback device");
240 snprintf(devfdname
, sizeof devfdname
, "/proc/%lu/fd/%d",
241 (unsigned long)mypid
, dev_fd
);
245 return mount(devfdname
, mntpath
, fstype
,
246 MS_NOEXEC
|MS_NOSUID
, "umask=077,quiet");
250 char devfdname
[128], mnt_opts
[128];
254 snprintf(devfdname
, sizeof devfdname
, "/proc/%lu/fd/%d",
255 (unsigned long)mypid
, dev_fd
);
260 } else if ( f
== 0 ) {
261 if ( !S_ISBLK(st
.st_mode
) ) {
262 snprintf(mnt_opts
, sizeof mnt_opts
,
263 "rw,nodev,noexec,loop,offset=%llu,umask=077,quiet",
264 (unsigned long long)filesystem_offset
);
266 snprintf(mnt_opts
, sizeof mnt_opts
, "rw,nodev,noexec,umask=077,quiet");
268 execl(_PATH_MOUNT
, _PATH_MOUNT
, "-t", fstype
, "-o", mnt_opts
, \
269 devfdname
, mntpath
, NULL
);
270 _exit(255); /* execl failed */
273 w
= waitpid(f
, &status
, 0);
274 return ( w
!= f
|| status
) ? -1 : 0;
282 void do_umount(const char *mntpath
, int cookie
)
285 int loop_fd
= cookie
;
287 if ( umount2(mntpath
, 0) )
288 die("could not umount path");
290 if ( loop_fd
!= -1 ) {
291 ioctl(loop_fd
, LOOP_CLR_FD
, 0); /* Free loop device */
305 } else if ( f
== 0 ) {
306 execl(_PATH_UMOUNT
, _PATH_UMOUNT
, mntpath
, NULL
);
309 w
= waitpid(f
, &status
, 0);
310 if ( w
!= f
|| status
) {
316 int main(int argc
, char *argv
[])
318 static unsigned char sectbuf
[SECTOR_SIZE
];
320 const unsigned char *cdp
;
326 char *ldlinux_name
, **argp
, *opt
;
327 int force
= 0; /* -f (force) option */
328 const char *subdir
= NULL
;
329 uint32_t sectors
[65]; /* 65 is maximum possible */
334 (void)argc
; /* Unused */
343 for ( argp
= argv
+1 ; *argp
; argp
++ ) {
344 if ( **argp
== '-' ) {
351 syslinux_make_stupid(); /* Use "safe, slow and stupid" code */
352 } else if ( *opt
== 'f' ) {
353 force
= 1; /* Force install */
354 } else if ( *opt
== 'd' && argp
[1] ) {
356 } else if ( *opt
== 'o' && argp
[1] ) {
358 filesystem_offset
= (off_t
)strtoull(*++argp
, NULL
, 0);
375 * First make sure we can open the device at all, and that we have
376 * read/write permission.
378 dev_fd
= open(device
, O_RDWR
);
379 if ( dev_fd
< 0 || fstat(dev_fd
, &st
) < 0 ) {
384 if ( !S_ISBLK(st
.st_mode
) && !S_ISREG(st
.st_mode
) && !S_ISCHR(st
.st_mode
) ) {
385 die("not a device or regular file");
388 if ( filesystem_offset
&& S_ISBLK(st
.st_mode
) ) {
389 die("can't combine an offset with a block device");
392 xpread(dev_fd
, sectbuf
, SECTOR_SIZE
, filesystem_offset
);
396 * Check to see that what we got was indeed an MS-DOS boot sector/superblock
398 if( (errmsg
= syslinux_check_bootsect(sectbuf
)) ) {
399 fprintf(stderr
, "%s: %s\n", device
, errmsg
);
404 * Now mount the device.
407 die("This program needs root privilege");
413 /* We're root or at least setuid.
414 Make a temp dir and pass all the gunky options to mount. */
416 if ( chdir(_PATH_TMP
) ) {
421 #define TMP_MODE (S_IXUSR|S_IWUSR|S_IXGRP|S_IWGRP|S_IWOTH|S_IXOTH|S_ISVTX)
423 if ( stat(".", &dst
) || !S_ISDIR(dst
.st_mode
) ||
424 (dst
.st_mode
& TMP_MODE
) != TMP_MODE
) {
425 die("possibly unsafe " _PATH_TMP
" permissions");
428 for ( i
= 0 ; ; i
++ ) {
429 snprintf(mntname
, sizeof mntname
, "syslinux.mnt.%lu.%d",
430 (unsigned long)mypid
, i
);
432 if ( lstat(mntname
, &dst
) != -1 || errno
!= ENOENT
)
435 rv
= mkdir(mntname
, 0000);
438 if ( errno
== EEXIST
|| errno
== EINTR
)
444 if ( lstat(mntname
, &dst
) || dst
.st_mode
!= (S_IFDIR
|0000) ||
446 die("someone is trying to symlink race us!");
448 break; /* OK, got something... */
454 if (do_mount(dev_fd
, &mnt_cookie
, mntpath
, "vfat") &&
455 do_mount(dev_fd
, &mnt_cookie
, mntpath
, "msdos")) {
460 ldlinux_name
= alloca(strlen(mntpath
)+14+
461 (subdir
? strlen(subdir
)+2 : 0));
462 if ( !ldlinux_name
) {
467 sprintf(ldlinux_name
, "%s%s%s//ldlinux.sys",
468 mntpath
, subdir
? "//" : "", subdir
? subdir
: "");
470 if ((fd
= open(ldlinux_name
, O_RDONLY
)) >= 0) {
471 uint32_t zero_attr
= 0;
472 ioctl(fd
, FAT_IOCTL_SET_ATTRIBUTES
, &zero_attr
);
476 unlink(ldlinux_name
);
477 fd
= open(ldlinux_name
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0444);
484 cdp
= syslinux_ldlinux
;
485 left
= syslinux_ldlinux_len
;
487 nb
= write(fd
, cdp
, left
);
488 if ( nb
== -1 && errno
== EINTR
)
490 else if ( nb
<= 0 ) {
505 uint32_t attr
= 0x07; /* Hidden+System+Readonly */
506 ioctl(fd
, FAT_IOCTL_SET_ATTRIBUTES
, &attr
);
510 * Create a block map.
512 nsectors
= make_block_map(sectors
, syslinux_ldlinux_len
, dev_fd
, fd
);
518 do_umount(mntpath
, mnt_cookie
);
526 * Patch ldlinux.sys and the boot sector
528 syslinux_patch(sectors
, nsectors
);
531 * Write the now-patched first sector of ldlinux.sys
533 xpwrite(dev_fd
, syslinux_ldlinux
, SECTOR_SIZE
,
534 filesystem_offset
+((off_t
)sectors
[0] << SECTOR_BITS
));
537 * To finish up, write the boot sector
540 /* Read the superblock again since it might have changed while mounted */
541 xpread(dev_fd
, sectbuf
, SECTOR_SIZE
, filesystem_offset
);
543 /* Copy the syslinux code into the boot sector */
544 syslinux_make_bootsect(sectbuf
);
546 /* Write new boot sector */
547 xpwrite(dev_fd
, sectbuf
, SECTOR_SIZE
, filesystem_offset
);