blob: 93631491dc30b79bc68b62b52bd80f9793c5fc3a [file] [log] [blame]
Theodore Ts'o134ea281997-11-28 14:45:09 +00001/*
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>
Theodore Ts'o134ea281997-11-28 14:45:09 +000013#include <linux/hdreg.h>
14#include <unistd.h>
15#include <stdlib.h>
Theodore Ts'o27401561999-09-14 20:11:19 +000016#include <errno.h>
Theodore Ts'od9c56d32000-02-08 00:47:55 +000017#include "nls-enable.h"
Theodore Ts'o134ea281997-11-28 14:45:09 +000018
19void print_error(char *operation, int error, char *device)
20{
Theodore Ts'od9c56d32000-02-08 00:47:55 +000021 fprintf(stderr, _("%s failed for %s: %s\n"), operation, device,
Theodore Ts'o134ea281997-11-28 14:45:09 +000022 strerror(error));
23}
24
25int main(int argc, char **argv)
26{
27 struct hd_geometry loc;
Theodore Ts'oe9271681998-03-09 03:23:51 +000028 int fd, i;
Theodore Ts'oa9bc79a2001-05-23 22:29:22 +000029 unsigned long size;
Theodore Ts'o134ea281997-11-28 14:45:09 +000030
Theodore Ts'od9c56d32000-02-08 00:47:55 +000031#ifdef ENABLE_NLS
32 setlocale(LC_MESSAGES, "");
Theodore Ts'o14308a52002-03-05 03:26:52 -050033 setlocale(LC_CTYPE, "");
Theodore Ts'od9c56d32000-02-08 00:47:55 +000034 bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
35 textdomain(NLS_CAT_NAME);
36#endif
Theodore Ts'o134ea281997-11-28 14:45:09 +000037 if (argc == 1) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +000038 fprintf(stderr, _("Usage: %s <dev1> <dev2> <dev3>\n\n"
Theodore Ts'o134ea281997-11-28 14:45:09 +000039 "This program prints out the partition information "
40 "for a set of devices\n"
Theodore Ts'od9c56d32000-02-08 00:47:55 +000041 "A common way to use this program is:\n\n\t"
42 "%s /dev/hda?\n\n"), argv[0], argv[0]);
Theodore Ts'o134ea281997-11-28 14:45:09 +000043 exit(1);
44 }
45
46 for (i=1; i < argc; i++) {
47 fd = open(argv[i], O_RDONLY);
48
49 if (fd < 0) {
Theodore Ts'o27401561999-09-14 20:11:19 +000050 print_error("open", errno, argv[i]);
Theodore Ts'o134ea281997-11-28 14:45:09 +000051 continue;
52 }
53
54 if (ioctl(fd, HDIO_GETGEO, &loc) < 0) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +000055 print_error(_("HDIO_GETGEO ioctl"), errno, argv[i]);
Theodore Ts'o134ea281997-11-28 14:45:09 +000056 close(fd);
57 continue;
58 }
59
60
61 if (ioctl(fd, BLKGETSIZE, &size) < 0) {
Theodore Ts'od9c56d32000-02-08 00:47:55 +000062 print_error(_("BLKGETSIZE ioctl"), errno, argv[i]);
Theodore Ts'o134ea281997-11-28 14:45:09 +000063 close(fd);
64 continue;
65 }
66
Theodore Ts'oa9bc79a2001-05-23 22:29:22 +000067 printf("%s: h=%3d s=%3d c=%4d start=%8d size=%8lu end=%8d\n",
Theodore Ts'o134ea281997-11-28 14:45:09 +000068 argv[i],
69 loc.heads, (int)loc.sectors, loc.cylinders,
70 (int)loc.start, size, (int) loc.start + size -1);
71 close(fd);
72 }
73 exit(0);
74}