1 /* grub-mkdevicemap.c - make a device map file automatically */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 1999,2000,2001,2002,2003,2004,2005,2007,2008 Free Software Foundation, Inc.
6 * GRUB 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, either version 3 of the License, or
9 * (at your option) any later version.
11 * GRUB is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
26 #include <sys/types.h>
32 #include <grub/util/misc.h>
38 # if !defined(__GLIBC__) || \
39 ((__GLIBC__ < 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ < 1)))
40 /* Maybe libc doesn't have large file support. */
41 # include <linux/unistd.h> /* _llseek */
42 # endif /* (GLIBC < 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR < 1)) */
43 # include <sys/ioctl.h> /* ioctl */
45 # define HDIO_GETGEO 0x0301 /* get device geometry */
46 /* If HDIO_GETGEO is not defined, it is unlikely that hd_geometry is
51 unsigned char sectors
;
52 unsigned short cylinders
;
55 # endif /* ! HDIO_GETGEO */
57 # define FLOPPY_MAJOR 2 /* the major number for floppy */
58 # endif /* ! FLOPPY_MAJOR */
62 unsigned long long __dev = (dev); \
63 (unsigned) ((__dev >> 8) & 0xfff) \
64 | ((unsigned int) (__dev >> 32) & ~0xfff); \
67 # ifndef CDROM_GET_CAPABILITY
68 # define CDROM_GET_CAPABILITY 0x5331 /* get capabilities */
69 # endif /* ! CDROM_GET_CAPABILITY */
71 # define BLKGETSIZE _IO(0x12,96) /* return device size */
72 # endif /* ! BLKGETSIZE */
73 #endif /* __linux__ */
75 /* Use __FreeBSD_kernel__ instead of __FreeBSD__ for compatibility with
76 kFreeBSD-based non-FreeBSD systems (e.g. GNU/kFreeBSD) */
77 #if defined(__FreeBSD__) && ! defined(__FreeBSD_kernel__)
78 # define __FreeBSD_kernel__
80 #ifdef __FreeBSD_kernel__
81 /* Obtain version of kFreeBSD headers */
82 # include <osreldate.h>
83 # ifndef __FreeBSD_kernel_version
84 # define __FreeBSD_kernel_version __FreeBSD_version
87 /* Runtime detection of kernel */
88 # include <sys/utsname.h>
90 get_kfreebsd_version (void)
98 sscanf (uts
.release
, "%d.%d", &major
, &minor
);
104 v
[0] = minor
/10; v
[1] = minor
%10;
108 v
[0] = minor
%10; v
[1] = minor
/10;
110 return major
*100000+v
[0]*10000+v
[1]*1000;
112 #endif /* __FreeBSD_kernel__ */
114 #if defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__)
115 # include <sys/ioctl.h> /* ioctl */
116 # include <sys/disklabel.h>
117 # include <sys/cdio.h> /* CDIOCCLRDEBUG */
118 # if defined(__FreeBSD_kernel__)
119 # include <sys/param.h>
120 # if __FreeBSD_kernel_version >= 500040
121 # include <sys/disk.h>
123 # endif /* __FreeBSD_kernel__ */
124 #endif /* __FreeBSD_kernel__ || __NetBSD__ || __OpenBSD__ */
128 #endif /* HAVE_OPENDISK */
131 /* Check if we have devfs support. */
136 return stat ("/dev/.devfsd", &st
) == 0;
138 #endif /* __linux__ */
140 /* These three functions are quite different among OSes. */
142 get_floppy_disk_name (char *name
, int unit
)
144 #if defined(__linux__)
147 sprintf (name
, "/dev/floppy/%d", unit
);
149 sprintf (name
, "/dev/fd%d", unit
);
150 #elif defined(__GNU__)
152 sprintf (name
, "/dev/fd%d", unit
);
153 #elif defined(__FreeBSD_kernel__)
155 if (get_kfreebsd_version () >= 400000)
156 sprintf (name
, "/dev/fd%d", unit
);
158 sprintf (name
, "/dev/rfd%d", unit
);
159 #elif defined(__NetBSD__)
161 /* opendisk() doesn't work for floppies. */
162 sprintf (name
, "/dev/rfd%da", unit
);
163 #elif defined(__OpenBSD__)
165 sprintf (name
, "/dev/rfd%dc", unit
);
166 #elif defined(__QNXNTO__)
168 sprintf (name
, "/dev/fd%d", unit
);
169 #elif defined(__CYGWIN__)
171 sprintf (name
, "/dev/fd%d", unit
);
172 #elif defined(__MINGW32__)
176 # warning "BIOS floppy drives cannot be guessed in your operating system."
177 /* Set NAME to a bogus string. */
183 get_ide_disk_name (char *name
, int unit
)
185 #if defined(__linux__)
187 sprintf (name
, "/dev/hd%c", unit
+ 'a');
188 #elif defined(__GNU__)
190 sprintf (name
, "/dev/hd%d", unit
);
191 #elif defined(__FreeBSD_kernel__)
193 if (get_kfreebsd_version () >= 400000)
194 sprintf (name
, "/dev/ad%d", unit
);
196 sprintf (name
, "/dev/rwd%d", unit
);
197 #elif defined(__NetBSD__) && defined(HAVE_OPENDISK)
202 sprintf (shortname
, "wd%d", unit
);
203 fd
= opendisk (shortname
, O_RDONLY
, name
,
204 16, /* length of NAME */
208 #elif defined(__OpenBSD__)
210 sprintf (name
, "/dev/rwd%dc", unit
);
211 #elif defined(__QNXNTO__)
213 /* Actually, QNX RTP doesn't distinguish IDE from SCSI, so this could
214 contain SCSI disks. */
215 sprintf (name
, "/dev/hd%d", unit
);
216 #elif defined(__CYGWIN__)
217 /* Cygwin emulates all disks as /dev/sdX. */
220 #elif defined(__MINGW32__)
221 sprintf (name
, "//./PHYSICALDRIVE%d", unit
);
223 # warning "BIOS IDE drives cannot be guessed in your operating system."
224 /* Set NAME to a bogus string. */
230 get_scsi_disk_name (char *name
, int unit
)
232 #if defined(__linux__)
234 sprintf (name
, "/dev/sd%c", unit
+ 'a');
235 #elif defined(__GNU__)
237 sprintf (name
, "/dev/sd%d", unit
);
238 #elif defined(__FreeBSD_kernel__)
240 if (get_kfreebsd_version () >= 400000)
241 sprintf (name
, "/dev/da%d", unit
);
243 sprintf (name
, "/dev/rda%d", unit
);
244 #elif defined(__NetBSD__) && defined(HAVE_OPENDISK)
249 sprintf (shortname
, "sd%d", unit
);
250 fd
= opendisk (shortname
, O_RDONLY
, name
,
251 16, /* length of NAME */
255 #elif defined(__OpenBSD__)
257 sprintf (name
, "/dev/rsd%dc", unit
);
258 #elif defined(__QNXNTO__)
260 /* QNX RTP doesn't distinguish SCSI from IDE, so it is better to
261 disable the detection of SCSI disks here. */
263 #elif defined(__CYGWIN__)
264 /* Cygwin emulates all disks as /dev/sdX. */
265 sprintf (name
, "/dev/sd%c", unit
+ 'a');
266 #elif defined(__MINGW32__)
270 # warning "BIOS SCSI drives cannot be guessed in your operating system."
271 /* Set NAME to a bogus string. */
278 get_virtio_disk_name (char *name
, int unit
)
280 sprintf (name
, "/dev/vd%c", unit
+ 'a');
284 get_dac960_disk_name (char *name
, int controller
, int drive
)
286 sprintf (name
, "/dev/rd/c%dd%d", controller
, drive
);
290 get_ataraid_disk_name (char *name
, int unit
)
292 sprintf (name
, "/dev/ataraid/d%c", unit
+ '0');
296 get_i2o_disk_name (char *name
, char unit
)
298 sprintf (name
, "/dev/i2o/hd%c", unit
);
302 get_cciss_disk_name (char *name
, int controller
, int drive
)
304 sprintf (name
, "/dev/cciss/c%dd%d", controller
, drive
);
308 get_ida_disk_name (char *name
, int controller
, int drive
)
310 sprintf (name
, "/dev/ida/c%dd%d", controller
, drive
);
314 get_mmc_disk_name (char *name
, int unit
)
316 sprintf (name
, "/dev/mmcblk%d", unit
);
320 get_xvd_disk_name (char *name
, int unit
)
322 sprintf (name
, "/dev/xvd%c", unit
+ 'a');
326 /* Check if DEVICE can be read. If an error occurs, return zero,
327 otherwise return non-zero. */
329 check_device (const char *device
)
334 /* If DEVICE is empty, just return error. */
338 fp
= fopen (device
, "r");
346 /* At the moment, this finds only CDROMs, which can't be
347 read anyway, so leave it out. Code should be
348 reactivated if `removable disks' and CDROMs are
350 /* Accept it, it may be inserted. */
354 #endif /* ENOMEDIUM */
356 /* Break case and leave. */
359 /* Error opening the device. */
363 /* Make sure CD-ROMs don't get assigned a BIOS disk number
364 before SCSI disks! */
366 # ifdef CDROM_GET_CAPABILITY
367 if (ioctl (fileno (fp
), CDROM_GET_CAPABILITY
, 0) >= 0)
369 # else /* ! CDROM_GET_CAPABILITY */
370 /* Check if DEVICE is a CD-ROM drive by the HDIO_GETGEO ioctl. */
372 struct hd_geometry hdg
;
375 if (fstat (fileno (fp
), &st
))
378 /* If it is a block device and isn't a floppy, check if HDIO_GETGEO
380 if (S_ISBLK (st
.st_mode
)
381 && MAJOR (st
.st_rdev
) != FLOPPY_MAJOR
382 && ioctl (fileno (fp
), HDIO_GETGEO
, &hdg
))
385 # endif /* ! CDROM_GET_CAPABILITY */
386 #endif /* __linux__ */
388 #if defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__)
389 # ifdef CDIOCCLRDEBUG
390 if (ioctl (fileno (fp
), CDIOCCLRDEBUG
, 0) >= 0)
392 # endif /* CDIOCCLRDEBUG */
393 #endif /* __FreeBSD_kernel__ || __NetBSD__ || __OpenBSD__ */
395 /* Attempt to read the first sector. */
396 if (fread (buf
, 1, 512, fp
) != 512)
407 make_device_map (const char *device_map
, int floppy_disks
)
413 if (strcmp (device_map
, "-") == 0)
416 fp
= fopen (device_map
, "w");
419 grub_util_error ("cannot open %s", device_map
);
422 for (i
= 0; i
< floppy_disks
; i
++)
427 get_floppy_disk_name (name
, i
);
428 if (stat (name
, &st
) < 0)
430 /* In floppies, write the map, whether check_device succeeds
431 or not, because the user just may not insert floppies. */
433 fprintf (fp
, "(fd%d)\t%s\n", i
, name
);
445 /* Linux creates symlinks "/dev/discs/discN" for convenience.
446 The way to number disks is the same as GRUB's. */
447 sprintf (discn
, "/dev/discs/disc%d", num_hd
);
448 if (stat (discn
, &st
) < 0)
451 if (realpath (discn
, name
))
453 strcat (name
, "/disc");
454 fprintf (fp
, "(hd%d)\t%s\n", num_hd
, name
);
462 #endif /* __linux__ */
465 for (i
= 0; i
< 20; i
++)
469 get_ide_disk_name (name
, i
);
470 if (check_device (name
))
472 fprintf (fp
, "(hd%d)\t%s\n", num_hd
, name
);
479 for (i
= 0; i
< 20; i
++)
483 get_virtio_disk_name (name
, i
);
484 if (check_device (name
))
486 fprintf (fp
, "(hd%d)\t%s\n", num_hd
, name
);
492 for (i
= 0; i
< 8; i
++)
496 get_ataraid_disk_name (name
, i
);
497 if (check_device (name
))
499 fprintf (fp
, "(hd%d)\t%s\n", num_hd
, name
);
504 /* Xen virtual block devices. */
505 for (i
= 0; i
< 16; i
++)
509 get_xvd_disk_name (name
, i
);
510 if (check_device (name
))
512 fprintf (fp
, "(hd%d)\t%s\n", num_hd
, name
);
516 #endif /* __linux__ */
518 /* The rest is SCSI disks. */
519 for (i
= 0; i
< 16; i
++)
523 get_scsi_disk_name (name
, i
);
524 if (check_device (name
))
526 fprintf (fp
, "(hd%d)\t%s\n", num_hd
, name
);
532 /* This is for DAC960 - we have
533 /dev/rd/c<controller>d<logical drive>p<partition>.
535 DAC960 driver currently supports up to 8 controllers, 32 logical
536 drives, and 7 partitions. */
538 int controller
, drive
;
540 for (controller
= 0; controller
< 8; controller
++)
542 for (drive
= 0; drive
< 15; drive
++)
546 get_dac960_disk_name (name
, controller
, drive
);
547 if (check_device (name
))
549 fprintf (fp
, "(hd%d)\t%s\n", num_hd
, name
);
556 /* This is for CCISS - we have
557 /dev/cciss/c<controller>d<logical drive>p<partition>. */
559 int controller
, drive
;
561 for (controller
= 0; controller
< 3; controller
++)
563 for (drive
= 0; drive
< 10; drive
++)
567 get_cciss_disk_name (name
, controller
, drive
);
568 if (check_device (name
))
570 fprintf (fp
, "(hd%d)\t%s\n", num_hd
, name
);
577 /* This is for Compaq Intelligent Drive Array - we have
578 /dev/ida/c<controller>d<logical drive>p<partition>. */
580 int controller
, drive
;
582 for (controller
= 0; controller
< 3; controller
++)
584 for (drive
= 0; drive
< 10; drive
++)
588 get_ida_disk_name (name
, controller
, drive
);
589 if (check_device (name
))
591 fprintf (fp
, "(hd%d)\t%s\n", num_hd
, name
);
598 /* This is for I2O - we have /dev/i2o/hd<logical drive><partition> */
602 for (unit
= 'a'; unit
< 'f'; unit
++)
606 get_i2o_disk_name (name
, unit
);
607 if (check_device (name
))
609 fprintf (fp
, "(hd%d)\t%s\n", num_hd
, name
);
615 /* MultiMediaCard (MMC). */
616 for (i
= 0; i
< 10; i
++)
620 get_mmc_disk_name (name
, i
);
621 if (check_device (name
))
623 fprintf (fp
, "(hd%d)\t%s\n", num_hd
, name
);
629 #endif /* __linux__ */
635 static struct option options
[] =
637 {"device-map", required_argument
, 0, 'm'},
638 {"probe-second-floppy", no_argument
, 0, 's'},
639 {"no-floppy", no_argument
, 0, 'n'},
640 {"help", no_argument
, 0, 'h'},
641 {"version", no_argument
, 0, 'V'},
642 {"verbose", no_argument
, 0, 'v'},
651 "Try ``grub-mkdevicemap --help'' for more information.\n");
654 Usage: grub-mkdevicemap [OPTION]...\n\
656 Generate a device map file automatically.\n\
658 -n, --no-floppy do not probe any floppy drive\n\
659 -s, --probe-second-floppy probe the second floppy drive\n\
660 -m, --device-map=FILE use FILE as the device map [default=%s]\n\
661 -h, --help display this message and exit\n\
662 -V, --version print version information and exit\n\
663 -v, --verbose print verbose messages\n\
665 Report bugs to <%s>.\n\
667 DEFAULT_DEVICE_MAP
, PACKAGE_BUGREPORT
);
673 main (int argc
, char *argv
[])
676 int floppy_disks
= 1;
678 progname
= "grub-mkdevicemap";
680 /* Check for options. */
683 int c
= getopt_long (argc
, argv
, "snm:r:hVv", options
, 0);
694 dev_map
= xstrdup (optarg
);
710 printf ("%s (%s) %s\n", progname
, PACKAGE_NAME
, PACKAGE_VERSION
);
723 make_device_map (dev_map
? : DEFAULT_DEVICE_MAP
, floppy_disks
);