]> git.ipfire.org Git - thirdparty/util-linux.git/blob - disk-utils/raw.c
blockdev: correct man page name in --help
[thirdparty/util-linux.git] / disk-utils / raw.c
1 /*
2 * raw.c: User mode tool to bind and query raw character devices.
3 *
4 * Stephen Tweedie, 1999, 2000
5 *
6 * This file may be redistributed under the terms of the GNU General
7 * Public License, version 2.
8 *
9 * Copyright Red Hat Software, 1999, 2000
10 *
11 */
12
13 #include <errno.h>
14 #include <fcntl.h>
15 #include <getopt.h>
16 #include <linux/major.h>
17 #include <linux/raw.h>
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <sys/ioctl.h>
22 #include <sys/stat.h>
23 #include <unistd.h>
24
25 #include "c.h"
26 #include "closestream.h"
27 #include "nls.h"
28 #include "pathnames.h"
29
30 #define EXIT_RAW_ACCESS 3
31 #define EXIT_RAW_IOCTL 4
32
33 #define RAW_NR_MINORS 8192
34
35 static int do_query;
36 static int do_query_all;
37
38 static int master_fd;
39 static int raw_minor;
40
41 void open_raw_ctl(void);
42 static int query(int minor_raw, const char *raw_name, int quiet);
43 static int bind(int minor_raw, int block_major, int block_minor);
44
45 static void __attribute__((__noreturn__)) usage(void)
46 {
47 FILE *out = stdout;
48 fputs(USAGE_HEADER, out);
49 fprintf(out,
50 _(" %1$s %2$srawN <major> <minor>\n"
51 " %1$s %2$srawN /dev/<blockdevice>\n"
52 " %1$s -q %2$srawN\n"
53 " %1$s -qa\n"), program_invocation_short_name,
54 _PATH_RAWDEVDIR);
55
56 fputs(USAGE_SEPARATOR, out);
57 fputs(_("Bind a raw character device to a block device.\n"), out);
58
59 fputs(USAGE_OPTIONS, out);
60 fputs(_(" -q, --query set query mode\n"), out);
61 fputs(_(" -a, --all query all raw devices\n"), out);
62 print_usage_help_options(16);
63 fprintf(out, USAGE_MAN_TAIL("raw(8)"));
64 exit(EXIT_SUCCESS);
65 }
66
67 static long strtol_octal_or_err(const char *str, const char *errmesg)
68 {
69 long num;
70 char *end = NULL;
71
72 if (str == NULL || *str == '\0')
73 goto err;
74 errno = 0;
75 num = strtol(str, &end, 0);
76
77 if (errno || str == end || (end && *end))
78 goto err;
79
80 return num;
81 err:
82 if (errno)
83 err(EXIT_FAILURE, "%s: '%s'", errmesg, str);
84 else
85 errx(EXIT_FAILURE, "%s: '%s'", errmesg, str);
86 return 0;
87 }
88
89 int main(int argc, char *argv[])
90 {
91 int c;
92 char *raw_name;
93 char *block_name;
94 int retval;
95 int block_major, block_minor;
96 int i, rc;
97
98 struct stat statbuf;
99
100 static const struct option longopts[] = {
101 {"query", no_argument, NULL, 'q'},
102 {"all", no_argument, NULL, 'a'},
103 {"version", no_argument, NULL, 'V'},
104 {"help", no_argument, NULL, 'h'},
105 {NULL, 0, NULL, '0'},
106 };
107
108 setlocale(LC_ALL, "");
109 bindtextdomain(PACKAGE, LOCALEDIR);
110 textdomain(PACKAGE);
111 atexit(close_stdout);
112
113 while ((c = getopt_long(argc, argv, "qaVh", longopts, NULL)) != -1)
114 switch (c) {
115 case 'q':
116 do_query = 1;
117 break;
118 case 'a':
119 do_query_all = 1;
120 break;
121 case 'V':
122 printf(UTIL_LINUX_VERSION);
123 return EXIT_SUCCESS;
124 case 'h':
125 usage();
126 default:
127 errtryhelp(EXIT_FAILURE);
128 }
129
130 /*
131 * Check for, and open, the master raw device, /dev/raw
132 */
133 open_raw_ctl();
134
135 if (do_query_all) {
136 if (optind < argc) {
137 warnx(_("bad usage"));
138 errtryhelp(EXIT_FAILURE);
139 }
140 for (i = 1; i < RAW_NR_MINORS; i++)
141 query(i, NULL, 1);
142 exit(EXIT_SUCCESS);
143 }
144
145 /*
146 * It's a bind or a single query. Either way we need a raw device.
147 */
148
149 if (optind >= argc) {
150 warnx(_("bad usage"));
151 errtryhelp(EXIT_FAILURE);
152 }
153 raw_name = argv[optind++];
154
155 /*
156 * try to check the device name before stat(), because on systems with
157 * udev the raw0 causes a create udev event for char 162/0, which
158 * causes udev to *remove* /dev/rawctl
159 */
160 rc = sscanf(raw_name, _PATH_RAWDEVDIR "raw%d", &raw_minor);
161 if (rc != 1) {
162 warnx(_("bad usage"));
163 errtryhelp(EXIT_FAILURE);
164 }
165 if (raw_minor == 0)
166 errx(EXIT_RAW_ACCESS,
167 _("Device '%s' is the control raw device "
168 "(use raw<N> where <N> is greater than zero)"),
169 raw_name);
170
171 if (do_query)
172 return query(raw_minor, raw_name, 0);
173
174 /*
175 * It's not a query, so we still have some parsing to do. Have we been
176 * given a block device filename or a major/minor pair?
177 */
178 switch (argc - optind) {
179 case 1:
180 block_name = argv[optind];
181 retval = stat(block_name, &statbuf);
182 if (retval)
183 err(EXIT_RAW_ACCESS,
184 _("Cannot locate block device '%s'"), block_name);
185 if (!S_ISBLK(statbuf.st_mode))
186 errx(EXIT_RAW_ACCESS,
187 _("Device '%s' is not a block device"),
188 block_name);
189 block_major = major(statbuf.st_rdev);
190 block_minor = minor(statbuf.st_rdev);
191 break;
192
193 case 2:
194 block_major =
195 strtol_octal_or_err(argv[optind],
196 _("failed to parse argument"));
197 block_minor =
198 strtol_octal_or_err(argv[optind + 1],
199 _("failed to parse argument"));
200 break;
201
202 default:
203 warnx(_("bad usage"));
204 errtryhelp(EXIT_FAILURE);
205 }
206
207 return bind(raw_minor, block_major, block_minor);
208 }
209
210 void open_raw_ctl(void)
211 {
212 master_fd = open(_PATH_RAWDEVCTL, O_RDWR, 0);
213 if (master_fd < 0) {
214 master_fd = open(_PATH_RAWDEVCTL_OLD, O_RDWR, 0);
215 if (master_fd < 0)
216 err(EXIT_RAW_ACCESS,
217 _("Cannot open master raw device '%s'"),
218 _PATH_RAWDEVCTL);
219 }
220 }
221
222 static int query(int minor_raw, const char *raw_name, int quiet)
223 {
224 struct raw_config_request rq;
225 static int has_worked = 0;
226
227 if (raw_name) {
228 struct stat statbuf;
229
230 if (stat(raw_name, &statbuf) != 0)
231 err(EXIT_RAW_ACCESS,
232 _("Cannot locate raw device '%s'"), raw_name);
233 if (!S_ISCHR(statbuf.st_mode))
234 errx(EXIT_RAW_ACCESS,
235 _("Raw device '%s' is not a character dev"),
236 raw_name);
237 if (major(statbuf.st_rdev) != RAW_MAJOR)
238 errx(EXIT_RAW_ACCESS,
239 _("Device '%s' is not a raw dev"), raw_name);
240 minor_raw = minor(statbuf.st_rdev);
241 }
242
243 rq.raw_minor = minor_raw;
244 if (ioctl(master_fd, RAW_GETBIND, &rq) < 0) {
245 if (quiet && errno == ENODEV)
246 return 3;
247 if (has_worked && errno == EINVAL)
248 return 0;
249 err(EXIT_RAW_IOCTL, _("Error querying raw device"));
250 }
251
252 /* If one query has worked, mark that fact so that we don't report
253 * spurious fatal errors if raw(8) has been built to support more raw
254 * minor numbers than the kernel has. */
255 has_worked = 1;
256 if (quiet && !rq.block_major && !rq.block_minor)
257 return 0;
258 printf(_("%sraw%d: bound to major %d, minor %d\n"),
259 _PATH_RAWDEVDIR, minor_raw, (int)rq.block_major,
260 (int)rq.block_minor);
261 return 0;
262 }
263
264 static int bind(int minor_raw, int block_major, int block_minor)
265 {
266 struct raw_config_request rq;
267
268 rq.raw_minor = minor_raw;
269 rq.block_major = block_major;
270 rq.block_minor = block_minor;
271 if (ioctl(master_fd, RAW_SETBIND, &rq) < 0)
272 err(EXIT_RAW_IOCTL, _("Error setting raw device"));
273 printf(_("%sraw%d: bound to major %d, minor %d\n"),
274 _PATH_RAWDEVDIR, raw_minor, (int)rq.block_major,
275 (int)rq.block_minor);
276 return 0;
277 }