Whamcloud - gitweb
mke2fs.c (PRS): Handle -O and -s options in line in the getopt
[tools/e2fsprogs.git] / misc / partinfo.c
1 /*
2  * partinfo.c
3  *
4  * Originally written by Alain Knaff, <alknaff@innet.lu>.
5  *
6  * Cleaned up by Theodore Ts'o, <tytso@mit.edu>.
7  * 
8  */
9
10 #include <sys/types.h>
11 #include <fcntl.h>
12 #include <stdio.h>
13 #include <linux/hdreg.h>
14 #include <unistd.h>
15 #include <stdlib.h>
16 #include <errno.h>
17 #include "nls-enable.h"
18
19 void print_error(char *operation, int error, char *device)
20 {
21         fprintf(stderr, _("%s failed for %s: %s\n"), operation, device,
22                 strerror(error));
23 }
24
25 int main(int argc, char **argv)
26 {
27         struct hd_geometry loc;
28         int fd, i;
29         unsigned long size;
30
31 #ifdef ENABLE_NLS
32         setlocale(LC_MESSAGES, "");
33         bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
34         textdomain(NLS_CAT_NAME);
35 #endif
36         if (argc == 1) {
37                 fprintf(stderr, _("Usage: %s <dev1> <dev2> <dev3>\n\n"
38                         "This program prints out the partition information "
39                         "for a set of devices\n"
40                         "A common way to use this program is:\n\n\t"
41                         "%s /dev/hda?\n\n"), argv[0], argv[0]);
42                 exit(1);
43         }
44     
45         for (i=1; i < argc; i++) {
46                 fd = open(argv[i], O_RDONLY);
47
48                 if (fd < 0) {
49                         print_error("open", errno, argv[i]);
50                         continue;
51                 }
52     
53                 if (ioctl(fd, HDIO_GETGEO, &loc) < 0) {
54                         print_error(_("HDIO_GETGEO ioctl"), errno, argv[i]);
55                         close(fd);
56                         continue;
57                 }
58     
59     
60                 if (ioctl(fd, BLKGETSIZE, &size) < 0) {
61                         print_error(_("BLKGETSIZE ioctl"), errno, argv[i]);
62                         close(fd);
63                         continue;
64                 }
65     
66                 printf("%s: h=%3d s=%3d c=%4d   start=%8d size=%8lu end=%8d\n",
67                        argv[i], 
68                        loc.heads, (int)loc.sectors, loc.cylinders,
69                        (int)loc.start, size, (int) loc.start + size -1);
70                 close(fd);
71         }
72         exit(0);
73 }