lin
2025-04-25 6a7002bcc41716f11f4ca7eb68ebd06c18fdd5e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
 * partinfo.c
 *
 * Originally written by Alain Knaff, <alknaff@innet.lu>.
 *
 * Cleaned up by Theodore Ts'o, <tytso@mit.edu>.
 *
 */
 
#include "config.h"
#include <sys/types.h>
#include <fcntl.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#include <stdio.h>
#include <linux/hdreg.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include "support/nls-enable.h"
#include "et/com_err.h"
 
#if defined(__linux__) && defined(_IO) && !defined(BLKGETSIZE)
#define BLKGETSIZE _IO(0x12,96)    /* return device size */
#endif
 
int main(int argc, char **argv)
{
   struct hd_geometry loc;
   int fd, i;
   unsigned long size;
 
#ifdef ENABLE_NLS
   setlocale(LC_MESSAGES, "");
   setlocale(LC_CTYPE, "");
   bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
   textdomain(NLS_CAT_NAME);
   set_com_err_gettext(gettext);
#endif
   if (argc == 1) {
       fprintf(stderr, _("Usage:  %s device...\n\nPrints out the "
           "partition information for each given device.\n"
           "For example: %s /dev/hda\n\n"), argv[0], argv[0]);
       exit(1);
   }
 
   for (i=1; i < argc; i++) {
       fd = open(argv[i], O_RDONLY);
 
       if (fd < 0) {
           fprintf(stderr, _("Cannot open %s: %s"),
               argv[i], strerror(errno));
           continue;
       }
 
       if (ioctl(fd, HDIO_GETGEO, &loc) < 0) {
           fprintf(stderr, _("Cannot get geometry of %s: %s"),
               argv[i], strerror(errno));
           close(fd);
           continue;
       }
 
 
       if (ioctl(fd, BLKGETSIZE, &size) < 0) {
           fprintf(stderr, _("Cannot get size of %s: %s"),
               argv[i], strerror(errno));
           close(fd);
           continue;
       }
 
       printf(_("%s: h=%3d s=%3d c=%4d   start=%8d size=%8lu end=%8d\n"),
              argv[i],
              loc.heads, (int)loc.sectors, loc.cylinders,
              (int)loc.start, size, (int) loc.start + size -1);
       close(fd);
   }
   exit(0);
}