]>
Commit | Line | Data |
---|---|---|
cd831bd7 | 1 | /* |
7a5ca864 FB |
2 | * Copyright (C) 2005 Anthony Liguori <[email protected]> |
3 | * | |
4 | * Network Block Device | |
5 | * | |
6 | * This program 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; under version 2 of the License. | |
9 | * | |
10 | * This program is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU General Public License | |
8167ee88 | 16 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
7a5ca864 FB |
17 | */ |
18 | ||
5a61cb60 | 19 | #include "qemu-common.h" |
26f54e9a | 20 | #include "sysemu/block-backend.h" |
b3838a40 | 21 | #include "block/block_int.h" |
737e150e | 22 | #include "block/nbd.h" |
6a1751b7 | 23 | #include "qemu/main-loop.h" |
537b41f5 PB |
24 | #include "qemu/sockets.h" |
25 | #include "qemu/error-report.h" | |
8c116b0e | 26 | #include "block/snapshot.h" |
b3838a40 | 27 | #include "qapi/util.h" |
d49b6836 | 28 | #include "qapi/qmp/qstring.h" |
7a5ca864 | 29 | |
7a5ca864 FB |
30 | #include <stdarg.h> |
31 | #include <stdio.h> | |
32 | #include <getopt.h> | |
33 | #include <err.h> | |
cd831bd7 | 34 | #include <sys/types.h> |
7a5ca864 FB |
35 | #include <sys/socket.h> |
36 | #include <netinet/in.h> | |
37 | #include <netinet/tcp.h> | |
38 | #include <arpa/inet.h> | |
cd831bd7 | 39 | #include <signal.h> |
2bff4b6f | 40 | #include <libgen.h> |
a517e88b | 41 | #include <pthread.h> |
cd831bd7 | 42 | |
713cc671 PL |
43 | #define SOCKET_PATH "/var/lock/qemu-nbd-%s" |
44 | #define QEMU_NBD_OPT_CACHE 1 | |
45 | #define QEMU_NBD_OPT_AIO 2 | |
46 | #define QEMU_NBD_OPT_DISCARD 3 | |
b3838a40 | 47 | #define QEMU_NBD_OPT_DETECT_ZEROES 4 |
7a5ca864 | 48 | |
af49bbbe | 49 | static NBDExport *exp; |
b1d8e52e | 50 | static int verbose; |
a517e88b | 51 | static char *srcpath; |
48bec07e | 52 | static SocketAddress *saddr; |
7860a380 PB |
53 | static int persistent = 0; |
54 | static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state; | |
a61c6782 PB |
55 | static int shared = 1; |
56 | static int nb_fds; | |
e4afbf4f | 57 | static int server_fd; |
7a5ca864 FB |
58 | |
59 | static void usage(const char *name) | |
60 | { | |
b033cd86 | 61 | (printf) ( |
7a5ca864 FB |
62 | "Usage: %s [OPTIONS] FILE\n" |
63 | "QEMU Disk Network Block Device Server\n" | |
64 | "\n" | |
713cc671 PL |
65 | " -h, --help display this help and exit\n" |
66 | " -V, --version output version information and exit\n" | |
b033cd86 PB |
67 | "\n" |
68 | "Connection properties:\n" | |
713cc671 PL |
69 | " -p, --port=PORT port to listen on (default `%d')\n" |
70 | " -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n" | |
71 | " -k, --socket=PATH path to the unix socket\n" | |
72 | " (default '"SOCKET_PATH"')\n" | |
73 | " -e, --shared=NUM device can be shared by NUM clients (default '1')\n" | |
74 | " -t, --persistent don't exit on the last connection\n" | |
75 | " -v, --verbose display extra debugging information\n" | |
7a5ca864 | 76 | "\n" |
b033cd86 | 77 | "Exposing part of the image:\n" |
713cc671 PL |
78 | " -o, --offset=OFFSET offset into the image\n" |
79 | " -P, --partition=NUM only expose partition NUM\n" | |
b033cd86 PB |
80 | "\n" |
81 | #ifdef __linux__ | |
82 | "Kernel NBD client support:\n" | |
713cc671 PL |
83 | " -c, --connect=DEV connect FILE to the local NBD device DEV\n" |
84 | " -d, --disconnect disconnect the specified device\n" | |
b033cd86 PB |
85 | "\n" |
86 | #endif | |
87 | "\n" | |
88 | "Block device options:\n" | |
713cc671 PL |
89 | " -f, --format=FORMAT set image format (raw, qcow2, ...)\n" |
90 | " -r, --read-only export read-only\n" | |
91 | " -s, --snapshot use FILE as an external snapshot, create a temporary\n" | |
92 | " file with backing_file=FILE, redirect the write to\n" | |
93 | " the temporary one\n" | |
8c116b0e | 94 | " -l, --load-snapshot=SNAPSHOT_PARAM\n" |
713cc671 PL |
95 | " load an internal snapshot inside FILE and export it\n" |
96 | " as an read-only device, SNAPSHOT_PARAM format is\n" | |
97 | " 'snapshot.id=[ID],snapshot.name=[NAME]', or\n" | |
98 | " '[ID_OR_NAME]'\n" | |
99 | " -n, --nocache disable host cache\n" | |
100 | " --cache=MODE set cache mode (none, writeback, ...)\n" | |
713cc671 | 101 | " --aio=MODE set AIO mode (native or threads)\n" |
b3838a40 | 102 | " --discard=MODE set discard mode (ignore, unmap)\n" |
6883de6c | 103 | " --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n" |
b033cd86 PB |
104 | "\n" |
105 | "Report bugs to <[email protected]>\n" | |
c2e2872b | 106 | , name, NBD_DEFAULT_PORT, "DEVICE"); |
7a5ca864 FB |
107 | } |
108 | ||
109 | static void version(const char *name) | |
110 | { | |
111 | printf( | |
315bc7aa | 112 | "%s version 0.0.1\n" |
7a5ca864 FB |
113 | "Written by Anthony Liguori.\n" |
114 | "\n" | |
115 | "Copyright (C) 2006 Anthony Liguori <[email protected]>.\n" | |
116 | "This is free software; see the source for copying conditions. There is NO\n" | |
117 | "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" | |
315bc7aa | 118 | , name); |
7a5ca864 FB |
119 | } |
120 | ||
121 | struct partition_record | |
122 | { | |
123 | uint8_t bootable; | |
124 | uint8_t start_head; | |
125 | uint32_t start_cylinder; | |
126 | uint8_t start_sector; | |
127 | uint8_t system; | |
128 | uint8_t end_head; | |
129 | uint8_t end_cylinder; | |
130 | uint8_t end_sector; | |
131 | uint32_t start_sector_abs; | |
132 | uint32_t nb_sectors_abs; | |
133 | }; | |
134 | ||
135 | static void read_partition(uint8_t *p, struct partition_record *r) | |
136 | { | |
137 | r->bootable = p[0]; | |
138 | r->start_head = p[1]; | |
139 | r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300); | |
140 | r->start_sector = p[2] & 0x3f; | |
141 | r->system = p[4]; | |
142 | r->end_head = p[5]; | |
143 | r->end_cylinder = p[7] | ((p[6] << 2) & 0x300); | |
144 | r->end_sector = p[6] & 0x3f; | |
ac97393d HR |
145 | |
146 | r->start_sector_abs = le32_to_cpup((uint32_t *)(p + 8)); | |
147 | r->nb_sectors_abs = le32_to_cpup((uint32_t *)(p + 12)); | |
7a5ca864 FB |
148 | } |
149 | ||
4c58e80a | 150 | static int find_partition(BlockBackend *blk, int partition, |
7a5ca864 FB |
151 | off_t *offset, off_t *size) |
152 | { | |
153 | struct partition_record mbr[4]; | |
154 | uint8_t data[512]; | |
155 | int i; | |
156 | int ext_partnum = 4; | |
cb7cf0e3 | 157 | int ret; |
7a5ca864 | 158 | |
4c58e80a | 159 | if ((ret = blk_read(blk, 0, data, 1)) < 0) { |
cb7cf0e3 RO |
160 | errno = -ret; |
161 | err(EXIT_FAILURE, "error while reading"); | |
162 | } | |
7a5ca864 FB |
163 | |
164 | if (data[510] != 0x55 || data[511] != 0xaa) { | |
185b4338 | 165 | return -EINVAL; |
7a5ca864 FB |
166 | } |
167 | ||
168 | for (i = 0; i < 4; i++) { | |
169 | read_partition(&data[446 + 16 * i], &mbr[i]); | |
170 | ||
453b07b1 | 171 | if (!mbr[i].system || !mbr[i].nb_sectors_abs) { |
7a5ca864 | 172 | continue; |
453b07b1 | 173 | } |
7a5ca864 FB |
174 | |
175 | if (mbr[i].system == 0xF || mbr[i].system == 0x5) { | |
176 | struct partition_record ext[4]; | |
177 | uint8_t data1[512]; | |
178 | int j; | |
179 | ||
4c58e80a | 180 | if ((ret = blk_read(blk, mbr[i].start_sector_abs, data1, 1)) < 0) { |
cb7cf0e3 RO |
181 | errno = -ret; |
182 | err(EXIT_FAILURE, "error while reading"); | |
183 | } | |
7a5ca864 FB |
184 | |
185 | for (j = 0; j < 4; j++) { | |
186 | read_partition(&data1[446 + 16 * j], &ext[j]); | |
453b07b1 | 187 | if (!ext[j].system || !ext[j].nb_sectors_abs) { |
7a5ca864 | 188 | continue; |
453b07b1 | 189 | } |
7a5ca864 FB |
190 | |
191 | if ((ext_partnum + j + 1) == partition) { | |
192 | *offset = (uint64_t)ext[j].start_sector_abs << 9; | |
193 | *size = (uint64_t)ext[j].nb_sectors_abs << 9; | |
194 | return 0; | |
195 | } | |
196 | } | |
197 | ext_partnum += 4; | |
198 | } else if ((i + 1) == partition) { | |
199 | *offset = (uint64_t)mbr[i].start_sector_abs << 9; | |
200 | *size = (uint64_t)mbr[i].nb_sectors_abs << 9; | |
201 | return 0; | |
202 | } | |
203 | } | |
204 | ||
185b4338 | 205 | return -ENOENT; |
7a5ca864 FB |
206 | } |
207 | ||
bb345110 PB |
208 | static void termsig_handler(int signum) |
209 | { | |
7860a380 | 210 | state = TERMINATE; |
a61c6782 | 211 | qemu_notify_event(); |
bb345110 PB |
212 | } |
213 | ||
537b41f5 | 214 | |
a517e88b | 215 | static void *show_parts(void *arg) |
cd831bd7 | 216 | { |
a6ac2313 | 217 | char *device = arg; |
a517e88b PB |
218 | int nbd; |
219 | ||
220 | /* linux just needs an open() to trigger | |
221 | * the partition table update | |
222 | * but remember to load the module with max_part != 0 : | |
223 | * modprobe nbd max_part=63 | |
224 | */ | |
225 | nbd = open(device, O_RDWR); | |
fc19f8a0 | 226 | if (nbd >= 0) { |
a517e88b PB |
227 | close(nbd); |
228 | } | |
229 | return NULL; | |
230 | } | |
cd831bd7 | 231 | |
a517e88b PB |
232 | static void *nbd_client_thread(void *arg) |
233 | { | |
a6ac2313 | 234 | char *device = arg; |
a517e88b | 235 | off_t size; |
a517e88b | 236 | uint32_t nbdflags; |
a6ac2313 | 237 | int fd, sock; |
a517e88b PB |
238 | int ret; |
239 | pthread_t show_parts_thread; | |
1ce52846 | 240 | Error *local_error = NULL; |
a517e88b | 241 | |
48bec07e DB |
242 | |
243 | sock = socket_connect(saddr, &local_error, NULL, NULL); | |
fc19f8a0 | 244 | if (sock < 0) { |
48bec07e | 245 | error_report_err(local_error); |
dc10e8b3 SH |
246 | goto out; |
247 | } | |
a517e88b PB |
248 | |
249 | ret = nbd_receive_negotiate(sock, NULL, &nbdflags, | |
3f472659 | 250 | &size, &local_error); |
fc19f8a0 | 251 | if (ret < 0) { |
1ce52846 HR |
252 | if (local_error) { |
253 | fprintf(stderr, "%s\n", error_get_pretty(local_error)); | |
254 | error_free(local_error); | |
255 | } | |
0c544d73 | 256 | goto out_socket; |
a517e88b PB |
257 | } |
258 | ||
a6ac2313 | 259 | fd = open(device, O_RDWR); |
fc19f8a0 | 260 | if (fd < 0) { |
a6ac2313 | 261 | /* Linux-only, we can use %m in printf. */ |
5672ee54 | 262 | fprintf(stderr, "Failed to open %s: %m\n", device); |
0c544d73 | 263 | goto out_socket; |
a6ac2313 PB |
264 | } |
265 | ||
3f472659 | 266 | ret = nbd_init(fd, sock, nbdflags, size); |
fc19f8a0 | 267 | if (ret < 0) { |
0c544d73 | 268 | goto out_fd; |
a517e88b PB |
269 | } |
270 | ||
271 | /* update partition table */ | |
a6ac2313 | 272 | pthread_create(&show_parts_thread, NULL, show_parts, device); |
a517e88b | 273 | |
c1f8fdc3 PB |
274 | if (verbose) { |
275 | fprintf(stderr, "NBD device %s is now connected to %s\n", | |
276 | device, srcpath); | |
277 | } else { | |
278 | /* Close stderr so that the qemu-nbd process exits. */ | |
279 | dup2(STDOUT_FILENO, STDERR_FILENO); | |
280 | } | |
a517e88b PB |
281 | |
282 | ret = nbd_client(fd); | |
283 | if (ret) { | |
0c544d73 | 284 | goto out_fd; |
cd831bd7 | 285 | } |
a517e88b PB |
286 | close(fd); |
287 | kill(getpid(), SIGTERM); | |
288 | return (void *) EXIT_SUCCESS; | |
289 | ||
0c544d73 PB |
290 | out_fd: |
291 | close(fd); | |
292 | out_socket: | |
293 | closesocket(sock); | |
a517e88b PB |
294 | out: |
295 | kill(getpid(), SIGTERM); | |
296 | return (void *) EXIT_FAILURE; | |
cd831bd7 TS |
297 | } |
298 | ||
e4afbf4f | 299 | static int nbd_can_accept(void) |
a61c6782 PB |
300 | { |
301 | return nb_fds < shared; | |
302 | } | |
303 | ||
7860a380 PB |
304 | static void nbd_export_closed(NBDExport *exp) |
305 | { | |
306 | assert(state == TERMINATING); | |
307 | state = TERMINATED; | |
308 | } | |
309 | ||
e4afbf4f FZ |
310 | static void nbd_update_server_fd_handler(int fd); |
311 | ||
1743b515 | 312 | static void nbd_client_closed(NBDClient *client) |
a61c6782 | 313 | { |
1743b515 | 314 | nb_fds--; |
7860a380 PB |
315 | if (nb_fds == 0 && !persistent && state == RUNNING) { |
316 | state = TERMINATE; | |
317 | } | |
e4afbf4f | 318 | nbd_update_server_fd_handler(server_fd); |
7860a380 | 319 | nbd_client_put(client); |
a61c6782 PB |
320 | } |
321 | ||
322 | static void nbd_accept(void *opaque) | |
323 | { | |
a61c6782 PB |
324 | struct sockaddr_in addr; |
325 | socklen_t addr_len = sizeof(addr); | |
326 | ||
327 | int fd = accept(server_fd, (struct sockaddr *)&addr, &addr_len); | |
0c544d73 PB |
328 | if (fd < 0) { |
329 | perror("accept"); | |
330 | return; | |
331 | } | |
332 | ||
7860a380 PB |
333 | if (state >= TERMINATE) { |
334 | close(fd); | |
335 | return; | |
336 | } | |
337 | ||
36af5994 | 338 | if (nbd_client_new(exp, fd, nbd_client_closed)) { |
a61c6782 | 339 | nb_fds++; |
e4afbf4f | 340 | nbd_update_server_fd_handler(server_fd); |
36af5994 | 341 | } else { |
27e5eae4 | 342 | shutdown(fd, 2); |
36af5994 | 343 | close(fd); |
a61c6782 PB |
344 | } |
345 | } | |
346 | ||
e4afbf4f FZ |
347 | static void nbd_update_server_fd_handler(int fd) |
348 | { | |
349 | if (nbd_can_accept()) { | |
350 | qemu_set_fd_handler(fd, nbd_accept, NULL, (void *)(uintptr_t)fd); | |
351 | } else { | |
352 | qemu_set_fd_handler(fd, NULL, NULL, NULL); | |
353 | } | |
354 | } | |
355 | ||
48bec07e DB |
356 | |
357 | static SocketAddress *nbd_build_socket_address(const char *sockpath, | |
358 | const char *bindto, | |
359 | const char *port) | |
360 | { | |
361 | SocketAddress *saddr; | |
362 | ||
363 | saddr = g_new0(SocketAddress, 1); | |
364 | if (sockpath) { | |
2d32adda EB |
365 | saddr->type = SOCKET_ADDRESS_KIND_UNIX; |
366 | saddr->u.q_unix = g_new0(UnixSocketAddress, 1); | |
367 | saddr->u.q_unix->path = g_strdup(sockpath); | |
48bec07e | 368 | } else { |
2d32adda EB |
369 | saddr->type = SOCKET_ADDRESS_KIND_INET; |
370 | saddr->u.inet = g_new0(InetSocketAddress, 1); | |
371 | saddr->u.inet->host = g_strdup(bindto); | |
48bec07e | 372 | if (port) { |
2d32adda | 373 | saddr->u.inet->port = g_strdup(port); |
48bec07e | 374 | } else { |
2d32adda | 375 | saddr->u.inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT); |
48bec07e DB |
376 | } |
377 | } | |
378 | ||
379 | return saddr; | |
380 | } | |
381 | ||
382 | ||
7a5ca864 FB |
383 | int main(int argc, char **argv) |
384 | { | |
26f54e9a | 385 | BlockBackend *blk; |
7a5ca864 FB |
386 | BlockDriverState *bs; |
387 | off_t dev_offset = 0; | |
b90fb4b8 | 388 | uint32_t nbdflags = 0; |
cd831bd7 | 389 | bool disconnect = false; |
7a5ca864 | 390 | const char *bindto = "0.0.0.0"; |
48bec07e DB |
391 | const char *port = NULL; |
392 | char *sockpath = NULL; | |
a6ac2313 | 393 | char *device = NULL; |
7a5ca864 | 394 | off_t fd_size; |
8c116b0e WX |
395 | QemuOpts *sn_opts = NULL; |
396 | const char *sn_id_or_name = NULL; | |
397 | const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:"; | |
7a5ca864 | 398 | struct option lopt[] = { |
660f11be BS |
399 | { "help", 0, NULL, 'h' }, |
400 | { "version", 0, NULL, 'V' }, | |
401 | { "bind", 1, NULL, 'b' }, | |
402 | { "port", 1, NULL, 'p' }, | |
403 | { "socket", 1, NULL, 'k' }, | |
404 | { "offset", 1, NULL, 'o' }, | |
405 | { "read-only", 0, NULL, 'r' }, | |
406 | { "partition", 1, NULL, 'P' }, | |
407 | { "connect", 1, NULL, 'c' }, | |
408 | { "disconnect", 0, NULL, 'd' }, | |
409 | { "snapshot", 0, NULL, 's' }, | |
8c116b0e | 410 | { "load-snapshot", 1, NULL, 'l' }, |
660f11be | 411 | { "nocache", 0, NULL, 'n' }, |
39a5235c | 412 | { "cache", 1, NULL, QEMU_NBD_OPT_CACHE }, |
39a5235c | 413 | { "aio", 1, NULL, QEMU_NBD_OPT_AIO }, |
ded9d2d5 | 414 | { "discard", 1, NULL, QEMU_NBD_OPT_DISCARD }, |
b3838a40 | 415 | { "detect-zeroes", 1, NULL, QEMU_NBD_OPT_DETECT_ZEROES }, |
660f11be | 416 | { "shared", 1, NULL, 'e' }, |
e6b63677 | 417 | { "format", 1, NULL, 'f' }, |
660f11be BS |
418 | { "persistent", 0, NULL, 't' }, |
419 | { "verbose", 0, NULL, 'v' }, | |
420 | { NULL, 0, NULL, 0 } | |
7a5ca864 FB |
421 | }; |
422 | int ch; | |
423 | int opt_ind = 0; | |
7a5ca864 | 424 | char *end; |
f5edb014 | 425 | int flags = BDRV_O_RDWR; |
7a5ca864 | 426 | int partition = -1; |
4fbec260 | 427 | int ret = 0; |
3b05a8e9 | 428 | int fd; |
39a5235c | 429 | bool seen_cache = false; |
ded9d2d5 | 430 | bool seen_discard = false; |
39a5235c | 431 | bool seen_aio = false; |
a517e88b | 432 | pthread_t client_thread; |
e6b63677 | 433 | const char *fmt = NULL; |
34b5d2c6 | 434 | Error *local_err = NULL; |
b3838a40 | 435 | BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF; |
4fbec260 | 436 | QDict *options = NULL; |
7a5ca864 | 437 | |
a517e88b PB |
438 | /* The client thread uses SIGTERM to interrupt the server. A signal |
439 | * handler ensures that "qemu-nbd -v -c" exits with a nice status code. | |
440 | */ | |
bb345110 | 441 | struct sigaction sa_sigterm; |
bb345110 PB |
442 | memset(&sa_sigterm, 0, sizeof(sa_sigterm)); |
443 | sa_sigterm.sa_handler = termsig_handler; | |
444 | sigaction(SIGTERM, &sa_sigterm, NULL); | |
10f5bff6 | 445 | qemu_init_exec_dir(argv[0]); |
bb345110 | 446 | |
7a5ca864 FB |
447 | while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) { |
448 | switch (ch) { | |
449 | case 's': | |
2f726488 TS |
450 | flags |= BDRV_O_SNAPSHOT; |
451 | break; | |
452 | case 'n': | |
39a5235c PB |
453 | optarg = (char *) "none"; |
454 | /* fallthrough */ | |
455 | case QEMU_NBD_OPT_CACHE: | |
456 | if (seen_cache) { | |
457 | errx(EXIT_FAILURE, "-n and --cache can only be specified once"); | |
458 | } | |
459 | seen_cache = true; | |
460 | if (bdrv_parse_cache_flags(optarg, &flags) == -1) { | |
461 | errx(EXIT_FAILURE, "Invalid cache mode `%s'", optarg); | |
462 | } | |
7a5ca864 | 463 | break; |
39a5235c PB |
464 | case QEMU_NBD_OPT_AIO: |
465 | if (seen_aio) { | |
466 | errx(EXIT_FAILURE, "--aio can only be specified once"); | |
467 | } | |
468 | seen_aio = true; | |
469 | if (!strcmp(optarg, "native")) { | |
470 | flags |= BDRV_O_NATIVE_AIO; | |
471 | } else if (!strcmp(optarg, "threads")) { | |
472 | /* this is the default */ | |
473 | } else { | |
474 | errx(EXIT_FAILURE, "invalid aio mode `%s'", optarg); | |
475 | } | |
476 | break; | |
ded9d2d5 PB |
477 | case QEMU_NBD_OPT_DISCARD: |
478 | if (seen_discard) { | |
479 | errx(EXIT_FAILURE, "--discard can only be specified once"); | |
480 | } | |
481 | seen_discard = true; | |
482 | if (bdrv_parse_discard_flags(optarg, &flags) == -1) { | |
483 | errx(EXIT_FAILURE, "Invalid discard mode `%s'", optarg); | |
484 | } | |
485 | break; | |
b3838a40 PL |
486 | case QEMU_NBD_OPT_DETECT_ZEROES: |
487 | detect_zeroes = | |
488 | qapi_enum_parse(BlockdevDetectZeroesOptions_lookup, | |
489 | optarg, | |
490 | BLOCKDEV_DETECT_ZEROES_OPTIONS_MAX, | |
491 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, | |
492 | &local_err); | |
493 | if (local_err) { | |
494 | errx(EXIT_FAILURE, "Failed to parse detect_zeroes mode: %s", | |
495 | error_get_pretty(local_err)); | |
496 | } | |
497 | if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && | |
498 | !(flags & BDRV_O_UNMAP)) { | |
499 | errx(EXIT_FAILURE, "setting detect-zeroes to unmap is not allowed " | |
500 | "without setting discard operation to unmap"); | |
501 | } | |
502 | break; | |
7a5ca864 FB |
503 | case 'b': |
504 | bindto = optarg; | |
505 | break; | |
506 | case 'p': | |
48bec07e | 507 | port = optarg; |
7a5ca864 FB |
508 | break; |
509 | case 'o': | |
510 | dev_offset = strtoll (optarg, &end, 0); | |
511 | if (*end) { | |
b6353bea | 512 | errx(EXIT_FAILURE, "Invalid offset `%s'", optarg); |
7a5ca864 FB |
513 | } |
514 | if (dev_offset < 0) { | |
b6353bea | 515 | errx(EXIT_FAILURE, "Offset must be positive `%s'", optarg); |
7a5ca864 FB |
516 | } |
517 | break; | |
8c116b0e WX |
518 | case 'l': |
519 | if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) { | |
70b94331 MA |
520 | sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts, |
521 | optarg, false); | |
8c116b0e WX |
522 | if (!sn_opts) { |
523 | errx(EXIT_FAILURE, "Failed in parsing snapshot param `%s'", | |
524 | optarg); | |
525 | } | |
526 | } else { | |
527 | sn_id_or_name = optarg; | |
528 | } | |
529 | /* fall through */ | |
7a5ca864 | 530 | case 'r': |
b90fb4b8 | 531 | nbdflags |= NBD_FLAG_READ_ONLY; |
07108b29 | 532 | flags &= ~BDRV_O_RDWR; |
7a5ca864 FB |
533 | break; |
534 | case 'P': | |
535 | partition = strtol(optarg, &end, 0); | |
713cc671 | 536 | if (*end) { |
b6353bea | 537 | errx(EXIT_FAILURE, "Invalid partition `%s'", optarg); |
713cc671 PL |
538 | } |
539 | if (partition < 1 || partition > 8) { | |
b6353bea | 540 | errx(EXIT_FAILURE, "Invalid partition %d", partition); |
713cc671 | 541 | } |
7a5ca864 | 542 | break; |
cd831bd7 | 543 | case 'k': |
b32f6c28 | 544 | sockpath = optarg; |
713cc671 | 545 | if (sockpath[0] != '/') { |
b6353bea | 546 | errx(EXIT_FAILURE, "socket path must be absolute\n"); |
713cc671 | 547 | } |
cd831bd7 TS |
548 | break; |
549 | case 'd': | |
550 | disconnect = true; | |
551 | break; | |
552 | case 'c': | |
553 | device = optarg; | |
554 | break; | |
3b05a8e9 TS |
555 | case 'e': |
556 | shared = strtol(optarg, &end, 0); | |
557 | if (*end) { | |
b6353bea | 558 | errx(EXIT_FAILURE, "Invalid shared device number '%s'", optarg); |
3b05a8e9 TS |
559 | } |
560 | if (shared < 1) { | |
b6353bea | 561 | errx(EXIT_FAILURE, "Shared device number must be greater than 0\n"); |
3b05a8e9 TS |
562 | } |
563 | break; | |
e6b63677 DB |
564 | case 'f': |
565 | fmt = optarg; | |
566 | break; | |
713cc671 PL |
567 | case 't': |
568 | persistent = 1; | |
569 | break; | |
7a5ca864 FB |
570 | case 'v': |
571 | verbose = 1; | |
572 | break; | |
573 | case 'V': | |
574 | version(argv[0]); | |
575 | exit(0); | |
576 | break; | |
577 | case 'h': | |
578 | usage(argv[0]); | |
579 | exit(0); | |
580 | break; | |
581 | case '?': | |
b6353bea | 582 | errx(EXIT_FAILURE, "Try `%s --help' for more information.", |
7a5ca864 FB |
583 | argv[0]); |
584 | } | |
585 | } | |
586 | ||
587 | if ((argc - optind) != 1) { | |
b6353bea | 588 | errx(EXIT_FAILURE, "Invalid number of argument.\n" |
7a5ca864 FB |
589 | "Try `%s --help' for more information.", |
590 | argv[0]); | |
591 | } | |
592 | ||
cd831bd7 TS |
593 | if (disconnect) { |
594 | fd = open(argv[optind], O_RDWR); | |
fc19f8a0 | 595 | if (fd < 0) { |
cb7cf0e3 | 596 | err(EXIT_FAILURE, "Cannot open %s", argv[optind]); |
fc19f8a0 | 597 | } |
cd831bd7 TS |
598 | nbd_disconnect(fd); |
599 | ||
600 | close(fd); | |
601 | ||
602 | printf("%s disconnected\n", argv[optind]); | |
603 | ||
713cc671 | 604 | return 0; |
cd831bd7 TS |
605 | } |
606 | ||
c1f8fdc3 PB |
607 | if (device && !verbose) { |
608 | int stderr_fd[2]; | |
609 | pid_t pid; | |
610 | int ret; | |
611 | ||
fc19f8a0 | 612 | if (qemu_pipe(stderr_fd) < 0) { |
c1f8fdc3 PB |
613 | err(EXIT_FAILURE, "Error setting up communication pipe"); |
614 | } | |
615 | ||
616 | /* Now daemonize, but keep a communication channel open to | |
617 | * print errors and exit with the proper status code. | |
618 | */ | |
619 | pid = fork(); | |
70d4739e HR |
620 | if (pid < 0) { |
621 | err(EXIT_FAILURE, "Failed to fork"); | |
622 | } else if (pid == 0) { | |
c1f8fdc3 | 623 | close(stderr_fd[0]); |
9faf31b6 | 624 | ret = qemu_daemon(1, 0); |
c1f8fdc3 PB |
625 | |
626 | /* Temporarily redirect stderr to the parent's pipe... */ | |
627 | dup2(stderr_fd[1], STDERR_FILENO); | |
fc19f8a0 | 628 | if (ret < 0) { |
c1f8fdc3 PB |
629 | err(EXIT_FAILURE, "Failed to daemonize"); |
630 | } | |
631 | ||
632 | /* ... close the descriptor we inherited and go on. */ | |
633 | close(stderr_fd[1]); | |
634 | } else { | |
635 | bool errors = false; | |
636 | char *buf; | |
637 | ||
638 | /* In the parent. Print error messages from the child until | |
639 | * it closes the pipe. | |
640 | */ | |
641 | close(stderr_fd[1]); | |
642 | buf = g_malloc(1024); | |
643 | while ((ret = read(stderr_fd[0], buf, 1024)) > 0) { | |
644 | errors = true; | |
645 | ret = qemu_write_full(STDERR_FILENO, buf, ret); | |
fc19f8a0 | 646 | if (ret < 0) { |
c1f8fdc3 PB |
647 | exit(EXIT_FAILURE); |
648 | } | |
649 | } | |
fc19f8a0 | 650 | if (ret < 0) { |
c1f8fdc3 PB |
651 | err(EXIT_FAILURE, "Cannot read from daemon"); |
652 | } | |
653 | ||
654 | /* Usually the daemon should not print any message. | |
655 | * Exit with zero status in that case. | |
656 | */ | |
657 | exit(errors); | |
658 | } | |
659 | } | |
660 | ||
a6ac2313 PB |
661 | if (device != NULL && sockpath == NULL) { |
662 | sockpath = g_malloc(128); | |
663 | snprintf(sockpath, 128, SOCKET_PATH, basename(device)); | |
cd831bd7 TS |
664 | } |
665 | ||
48bec07e DB |
666 | saddr = nbd_build_socket_address(sockpath, bindto, port); |
667 | ||
2f78e491 | 668 | if (qemu_init_main_loop(&local_err)) { |
565f65d2 | 669 | error_report_err(local_err); |
2f78e491 CN |
670 | exit(EXIT_FAILURE); |
671 | } | |
802ddc37 PB |
672 | bdrv_init(); |
673 | atexit(bdrv_close_all); | |
674 | ||
e6b63677 | 675 | if (fmt) { |
4fbec260 HR |
676 | options = qdict_new(); |
677 | qdict_put(options, "driver", qstring_from_str(fmt)); | |
e6b63677 DB |
678 | } |
679 | ||
802ddc37 | 680 | srcpath = argv[optind]; |
4fbec260 HR |
681 | blk = blk_new_open("hda", srcpath, NULL, options, flags, &local_err); |
682 | if (!blk) { | |
683 | errx(EXIT_FAILURE, "Failed to blk_new_open '%s': %s", argv[optind], | |
684 | error_get_pretty(local_err)); | |
802ddc37 | 685 | } |
4fbec260 | 686 | bs = blk_bs(blk); |
802ddc37 | 687 | |
8c116b0e WX |
688 | if (sn_opts) { |
689 | ret = bdrv_snapshot_load_tmp(bs, | |
690 | qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID), | |
691 | qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME), | |
692 | &local_err); | |
693 | } else if (sn_id_or_name) { | |
694 | ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name, | |
695 | &local_err); | |
696 | } | |
697 | if (ret < 0) { | |
698 | errno = -ret; | |
699 | err(EXIT_FAILURE, | |
700 | "Failed to load snapshot: %s", | |
701 | error_get_pretty(local_err)); | |
702 | } | |
703 | ||
b3838a40 | 704 | bs->detect_zeroes = detect_zeroes; |
4c58e80a | 705 | fd_size = blk_getlength(blk); |
98f44bbe HR |
706 | if (fd_size < 0) { |
707 | errx(EXIT_FAILURE, "Failed to determine the image length: %s", | |
708 | strerror(-fd_size)); | |
709 | } | |
802ddc37 | 710 | |
185b4338 | 711 | if (partition != -1) { |
4c58e80a | 712 | ret = find_partition(blk, partition, &dev_offset, &fd_size); |
185b4338 PB |
713 | if (ret < 0) { |
714 | errno = -ret; | |
715 | err(EXIT_FAILURE, "Could not find partition %d", partition); | |
716 | } | |
802ddc37 PB |
717 | } |
718 | ||
98f44bbe HR |
719 | exp = nbd_export_new(blk, dev_offset, fd_size, nbdflags, nbd_export_closed, |
720 | &local_err); | |
721 | if (!exp) { | |
722 | errx(EXIT_FAILURE, "%s", error_get_pretty(local_err)); | |
723 | } | |
3b05a8e9 | 724 | |
48bec07e | 725 | fd = socket_listen(saddr, &local_err); |
fc19f8a0 | 726 | if (fd < 0) { |
48bec07e | 727 | error_report_err(local_err); |
7a5ca864 | 728 | return 1; |
a61c6782 | 729 | } |
f1ef5555 PB |
730 | |
731 | if (device) { | |
732 | int ret; | |
733 | ||
a6ac2313 | 734 | ret = pthread_create(&client_thread, NULL, nbd_client_thread, device); |
f1ef5555 PB |
735 | if (ret != 0) { |
736 | errx(EXIT_FAILURE, "Failed to create client thread: %s", | |
737 | strerror(ret)); | |
738 | } | |
739 | } else { | |
740 | /* Shut up GCC warnings. */ | |
741 | memset(&client_thread, 0, sizeof(client_thread)); | |
742 | } | |
743 | ||
e4afbf4f FZ |
744 | server_fd = fd; |
745 | nbd_update_server_fd_handler(fd); | |
7a5ca864 | 746 | |
9faf31b6 MT |
747 | /* now when the initialization is (almost) complete, chdir("/") |
748 | * to free any busy filesystems */ | |
749 | if (chdir("/") < 0) { | |
750 | err(EXIT_FAILURE, "Could not chdir to root directory"); | |
751 | } | |
752 | ||
7860a380 | 753 | state = RUNNING; |
3b05a8e9 | 754 | do { |
a61c6782 | 755 | main_loop_wait(false); |
7860a380 PB |
756 | if (state == TERMINATE) { |
757 | state = TERMINATING; | |
758 | nbd_export_close(exp); | |
759 | nbd_export_put(exp); | |
760 | exp = NULL; | |
761 | } | |
762 | } while (state != TERMINATED); | |
7a5ca864 | 763 | |
26f54e9a | 764 | blk_unref(blk); |
b32f6c28 PB |
765 | if (sockpath) { |
766 | unlink(sockpath); | |
767 | } | |
7a5ca864 | 768 | |
fbf28a43 | 769 | qemu_opts_del(sn_opts); |
8c116b0e | 770 | |
a517e88b PB |
771 | if (device) { |
772 | void *ret; | |
773 | pthread_join(client_thread, &ret); | |
774 | exit(ret != NULL); | |
775 | } else { | |
776 | exit(EXIT_SUCCESS); | |
777 | } | |
7a5ca864 | 778 | } |