]> git.proxmox.com Git - qemu.git/blame - qemu-nbd.c
like acpi_table_install(), acpi_table_add() should propagate Errors
[qemu.git] / qemu-nbd.c
CommitLineData
cd831bd7 1/*
7a5ca864
FB
2 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
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"
737e150e
PB
20#include "block/block.h"
21#include "block/nbd.h"
7a5ca864 22
7a5ca864
FB
23#include <stdarg.h>
24#include <stdio.h>
25#include <getopt.h>
26#include <err.h>
cd831bd7 27#include <sys/types.h>
7a5ca864
FB
28#include <sys/socket.h>
29#include <netinet/in.h>
30#include <netinet/tcp.h>
31#include <arpa/inet.h>
cd831bd7 32#include <signal.h>
2bff4b6f 33#include <libgen.h>
a517e88b 34#include <pthread.h>
cd831bd7 35
ded9d2d5
PB
36#define SOCKET_PATH "/var/lock/qemu-nbd-%s"
37#define QEMU_NBD_OPT_CACHE 1
38#define QEMU_NBD_OPT_AIO 2
39#define QEMU_NBD_OPT_DISCARD 3
7a5ca864 40
af49bbbe 41static NBDExport *exp;
b1d8e52e 42static int verbose;
a517e88b
PB
43static char *srcpath;
44static char *sockpath;
7860a380
PB
45static int persistent = 0;
46static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state;
a61c6782
PB
47static int shared = 1;
48static int nb_fds;
7a5ca864
FB
49
50static void usage(const char *name)
51{
b033cd86 52 (printf) (
7a5ca864
FB
53"Usage: %s [OPTIONS] FILE\n"
54"QEMU Disk Network Block Device Server\n"
55"\n"
b033cd86
PB
56" -h, --help display this help and exit\n"
57" -V, --version output version information and exit\n"
58"\n"
59"Connection properties:\n"
c2e2872b 60" -p, --port=PORT port to listen on (default `%d')\n"
7a5ca864 61" -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
cd831bd7
TS
62" -k, --socket=PATH path to the unix socket\n"
63" (default '"SOCKET_PATH"')\n"
3b05a8e9 64" -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
75818250 65" -t, --persistent don't exit on the last connection\n"
7a5ca864 66" -v, --verbose display extra debugging information\n"
7a5ca864 67"\n"
b033cd86
PB
68"Exposing part of the image:\n"
69" -o, --offset=OFFSET offset into the image\n"
70" -P, --partition=NUM only expose partition NUM\n"
71"\n"
72#ifdef __linux__
73"Kernel NBD client support:\n"
74" -c, --connect=DEV connect FILE to the local NBD device DEV\n"
75" -d, --disconnect disconnect the specified device\n"
76"\n"
77#endif
78"\n"
79"Block device options:\n"
80" -r, --read-only export read-only\n"
81" -s, --snapshot use snapshot file\n"
82" -n, --nocache disable host cache\n"
39a5235c
PB
83" --cache=MODE set cache mode (none, writeback, ...)\n"
84#ifdef CONFIG_LINUX_AIO
85" --aio=MODE set AIO mode (native or threads)\n"
86#endif
b033cd86
PB
87"\n"
88"Report bugs to <qemu-devel@nongnu.org>\n"
c2e2872b 89 , name, NBD_DEFAULT_PORT, "DEVICE");
7a5ca864
FB
90}
91
92static void version(const char *name)
93{
94 printf(
315bc7aa 95"%s version 0.0.1\n"
7a5ca864
FB
96"Written by Anthony Liguori.\n"
97"\n"
98"Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>.\n"
99"This is free software; see the source for copying conditions. There is NO\n"
100"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
315bc7aa 101 , name);
7a5ca864
FB
102}
103
104struct partition_record
105{
106 uint8_t bootable;
107 uint8_t start_head;
108 uint32_t start_cylinder;
109 uint8_t start_sector;
110 uint8_t system;
111 uint8_t end_head;
112 uint8_t end_cylinder;
113 uint8_t end_sector;
114 uint32_t start_sector_abs;
115 uint32_t nb_sectors_abs;
116};
117
118static void read_partition(uint8_t *p, struct partition_record *r)
119{
120 r->bootable = p[0];
121 r->start_head = p[1];
122 r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
123 r->start_sector = p[2] & 0x3f;
124 r->system = p[4];
125 r->end_head = p[5];
126 r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
127 r->end_sector = p[6] & 0x3f;
128 r->start_sector_abs = p[8] | p[9] << 8 | p[10] << 16 | p[11] << 24;
129 r->nb_sectors_abs = p[12] | p[13] << 8 | p[14] << 16 | p[15] << 24;
130}
131
132static int find_partition(BlockDriverState *bs, int partition,
133 off_t *offset, off_t *size)
134{
135 struct partition_record mbr[4];
136 uint8_t data[512];
137 int i;
138 int ext_partnum = 4;
cb7cf0e3 139 int ret;
7a5ca864 140
cb7cf0e3
RO
141 if ((ret = bdrv_read(bs, 0, data, 1)) < 0) {
142 errno = -ret;
143 err(EXIT_FAILURE, "error while reading");
144 }
7a5ca864
FB
145
146 if (data[510] != 0x55 || data[511] != 0xaa) {
185b4338 147 return -EINVAL;
7a5ca864
FB
148 }
149
150 for (i = 0; i < 4; i++) {
151 read_partition(&data[446 + 16 * i], &mbr[i]);
152
153 if (!mbr[i].nb_sectors_abs)
154 continue;
155
156 if (mbr[i].system == 0xF || mbr[i].system == 0x5) {
157 struct partition_record ext[4];
158 uint8_t data1[512];
159 int j;
160
cb7cf0e3
RO
161 if ((ret = bdrv_read(bs, mbr[i].start_sector_abs, data1, 1)) < 0) {
162 errno = -ret;
163 err(EXIT_FAILURE, "error while reading");
164 }
7a5ca864
FB
165
166 for (j = 0; j < 4; j++) {
167 read_partition(&data1[446 + 16 * j], &ext[j]);
168 if (!ext[j].nb_sectors_abs)
169 continue;
170
171 if ((ext_partnum + j + 1) == partition) {
172 *offset = (uint64_t)ext[j].start_sector_abs << 9;
173 *size = (uint64_t)ext[j].nb_sectors_abs << 9;
174 return 0;
175 }
176 }
177 ext_partnum += 4;
178 } else if ((i + 1) == partition) {
179 *offset = (uint64_t)mbr[i].start_sector_abs << 9;
180 *size = (uint64_t)mbr[i].nb_sectors_abs << 9;
181 return 0;
182 }
183 }
184
185b4338 185 return -ENOENT;
7a5ca864
FB
186}
187
bb345110
PB
188static void termsig_handler(int signum)
189{
7860a380 190 state = TERMINATE;
a61c6782 191 qemu_notify_event();
bb345110
PB
192}
193
a517e88b 194static void *show_parts(void *arg)
cd831bd7 195{
a6ac2313 196 char *device = arg;
a517e88b
PB
197 int nbd;
198
199 /* linux just needs an open() to trigger
200 * the partition table update
201 * but remember to load the module with max_part != 0 :
202 * modprobe nbd max_part=63
203 */
204 nbd = open(device, O_RDWR);
fc19f8a0 205 if (nbd >= 0) {
a517e88b
PB
206 close(nbd);
207 }
208 return NULL;
209}
cd831bd7 210
a517e88b
PB
211static void *nbd_client_thread(void *arg)
212{
a6ac2313 213 char *device = arg;
a517e88b
PB
214 off_t size;
215 size_t blocksize;
216 uint32_t nbdflags;
a6ac2313 217 int fd, sock;
a517e88b
PB
218 int ret;
219 pthread_t show_parts_thread;
220
dc10e8b3 221 sock = unix_socket_outgoing(sockpath);
fc19f8a0 222 if (sock < 0) {
dc10e8b3
SH
223 goto out;
224 }
a517e88b
PB
225
226 ret = nbd_receive_negotiate(sock, NULL, &nbdflags,
227 &size, &blocksize);
fc19f8a0 228 if (ret < 0) {
a517e88b
PB
229 goto out;
230 }
231
a6ac2313 232 fd = open(device, O_RDWR);
fc19f8a0 233 if (fd < 0) {
a6ac2313
PB
234 /* Linux-only, we can use %m in printf. */
235 fprintf(stderr, "Failed to open %s: %m", device);
236 goto out;
237 }
238
a517e88b 239 ret = nbd_init(fd, sock, nbdflags, size, blocksize);
fc19f8a0 240 if (ret < 0) {
a517e88b
PB
241 goto out;
242 }
243
244 /* update partition table */
a6ac2313 245 pthread_create(&show_parts_thread, NULL, show_parts, device);
a517e88b 246
c1f8fdc3
PB
247 if (verbose) {
248 fprintf(stderr, "NBD device %s is now connected to %s\n",
249 device, srcpath);
250 } else {
251 /* Close stderr so that the qemu-nbd process exits. */
252 dup2(STDOUT_FILENO, STDERR_FILENO);
253 }
a517e88b
PB
254
255 ret = nbd_client(fd);
256 if (ret) {
257 goto out;
cd831bd7 258 }
a517e88b
PB
259 close(fd);
260 kill(getpid(), SIGTERM);
261 return (void *) EXIT_SUCCESS;
262
263out:
264 kill(getpid(), SIGTERM);
265 return (void *) EXIT_FAILURE;
cd831bd7
TS
266}
267
a61c6782
PB
268static int nbd_can_accept(void *opaque)
269{
270 return nb_fds < shared;
271}
272
7860a380
PB
273static void nbd_export_closed(NBDExport *exp)
274{
275 assert(state == TERMINATING);
276 state = TERMINATED;
277}
278
1743b515 279static void nbd_client_closed(NBDClient *client)
a61c6782 280{
1743b515 281 nb_fds--;
7860a380
PB
282 if (nb_fds == 0 && !persistent && state == RUNNING) {
283 state = TERMINATE;
284 }
1743b515 285 qemu_notify_event();
7860a380 286 nbd_client_put(client);
a61c6782
PB
287}
288
289static void nbd_accept(void *opaque)
290{
291 int server_fd = (uintptr_t) opaque;
292 struct sockaddr_in addr;
293 socklen_t addr_len = sizeof(addr);
294
295 int fd = accept(server_fd, (struct sockaddr *)&addr, &addr_len);
7860a380
PB
296 if (state >= TERMINATE) {
297 close(fd);
298 return;
299 }
300
fc19f8a0 301 if (fd >= 0 && nbd_client_new(exp, fd, nbd_client_closed)) {
a61c6782
PB
302 nb_fds++;
303 }
304}
305
7a5ca864
FB
306int main(int argc, char **argv)
307{
308 BlockDriverState *bs;
309 off_t dev_offset = 0;
b90fb4b8 310 uint32_t nbdflags = 0;
cd831bd7 311 bool disconnect = false;
7a5ca864 312 const char *bindto = "0.0.0.0";
a6ac2313 313 char *device = NULL;
c2e2872b 314 int port = NBD_DEFAULT_PORT;
7a5ca864 315 off_t fd_size;
d6aa671f 316 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:t";
7a5ca864 317 struct option lopt[] = {
660f11be
BS
318 { "help", 0, NULL, 'h' },
319 { "version", 0, NULL, 'V' },
320 { "bind", 1, NULL, 'b' },
321 { "port", 1, NULL, 'p' },
322 { "socket", 1, NULL, 'k' },
323 { "offset", 1, NULL, 'o' },
324 { "read-only", 0, NULL, 'r' },
325 { "partition", 1, NULL, 'P' },
326 { "connect", 1, NULL, 'c' },
327 { "disconnect", 0, NULL, 'd' },
328 { "snapshot", 0, NULL, 's' },
329 { "nocache", 0, NULL, 'n' },
39a5235c
PB
330 { "cache", 1, NULL, QEMU_NBD_OPT_CACHE },
331#ifdef CONFIG_LINUX_AIO
332 { "aio", 1, NULL, QEMU_NBD_OPT_AIO },
333#endif
ded9d2d5 334 { "discard", 1, NULL, QEMU_NBD_OPT_DISCARD },
660f11be
BS
335 { "shared", 1, NULL, 'e' },
336 { "persistent", 0, NULL, 't' },
337 { "verbose", 0, NULL, 'v' },
338 { NULL, 0, NULL, 0 }
7a5ca864
FB
339 };
340 int ch;
341 int opt_ind = 0;
342 int li;
343 char *end;
f5edb014 344 int flags = BDRV_O_RDWR;
7a5ca864 345 int partition = -1;
cd831bd7 346 int ret;
3b05a8e9 347 int fd;
39a5235c 348 bool seen_cache = false;
ded9d2d5 349 bool seen_discard = false;
39a5235c
PB
350#ifdef CONFIG_LINUX_AIO
351 bool seen_aio = false;
352#endif
a517e88b 353 pthread_t client_thread;
7a5ca864 354
a517e88b
PB
355 /* The client thread uses SIGTERM to interrupt the server. A signal
356 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
357 */
bb345110 358 struct sigaction sa_sigterm;
bb345110
PB
359 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
360 sa_sigterm.sa_handler = termsig_handler;
361 sigaction(SIGTERM, &sa_sigterm, NULL);
362
7a5ca864
FB
363 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
364 switch (ch) {
365 case 's':
2f726488
TS
366 flags |= BDRV_O_SNAPSHOT;
367 break;
368 case 'n':
39a5235c
PB
369 optarg = (char *) "none";
370 /* fallthrough */
371 case QEMU_NBD_OPT_CACHE:
372 if (seen_cache) {
373 errx(EXIT_FAILURE, "-n and --cache can only be specified once");
374 }
375 seen_cache = true;
376 if (bdrv_parse_cache_flags(optarg, &flags) == -1) {
377 errx(EXIT_FAILURE, "Invalid cache mode `%s'", optarg);
378 }
7a5ca864 379 break;
39a5235c
PB
380#ifdef CONFIG_LINUX_AIO
381 case QEMU_NBD_OPT_AIO:
382 if (seen_aio) {
383 errx(EXIT_FAILURE, "--aio can only be specified once");
384 }
385 seen_aio = true;
386 if (!strcmp(optarg, "native")) {
387 flags |= BDRV_O_NATIVE_AIO;
388 } else if (!strcmp(optarg, "threads")) {
389 /* this is the default */
390 } else {
391 errx(EXIT_FAILURE, "invalid aio mode `%s'", optarg);
392 }
393 break;
394#endif
ded9d2d5
PB
395 case QEMU_NBD_OPT_DISCARD:
396 if (seen_discard) {
397 errx(EXIT_FAILURE, "--discard can only be specified once");
398 }
399 seen_discard = true;
400 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
401 errx(EXIT_FAILURE, "Invalid discard mode `%s'", optarg);
402 }
403 break;
7a5ca864
FB
404 case 'b':
405 bindto = optarg;
406 break;
407 case 'p':
408 li = strtol(optarg, &end, 0);
409 if (*end) {
b6353bea 410 errx(EXIT_FAILURE, "Invalid port `%s'", optarg);
7a5ca864
FB
411 }
412 if (li < 1 || li > 65535) {
b6353bea 413 errx(EXIT_FAILURE, "Port out of range `%s'", optarg);
7a5ca864
FB
414 }
415 port = (uint16_t)li;
416 break;
417 case 'o':
418 dev_offset = strtoll (optarg, &end, 0);
419 if (*end) {
b6353bea 420 errx(EXIT_FAILURE, "Invalid offset `%s'", optarg);
7a5ca864
FB
421 }
422 if (dev_offset < 0) {
b6353bea 423 errx(EXIT_FAILURE, "Offset must be positive `%s'", optarg);
7a5ca864
FB
424 }
425 break;
426 case 'r':
b90fb4b8 427 nbdflags |= NBD_FLAG_READ_ONLY;
07108b29 428 flags &= ~BDRV_O_RDWR;
7a5ca864
FB
429 break;
430 case 'P':
431 partition = strtol(optarg, &end, 0);
432 if (*end)
b6353bea 433 errx(EXIT_FAILURE, "Invalid partition `%s'", optarg);
7a5ca864 434 if (partition < 1 || partition > 8)
b6353bea 435 errx(EXIT_FAILURE, "Invalid partition %d", partition);
7a5ca864 436 break;
cd831bd7 437 case 'k':
b32f6c28
PB
438 sockpath = optarg;
439 if (sockpath[0] != '/')
b6353bea 440 errx(EXIT_FAILURE, "socket path must be absolute\n");
cd831bd7
TS
441 break;
442 case 'd':
443 disconnect = true;
444 break;
445 case 'c':
446 device = optarg;
447 break;
3b05a8e9
TS
448 case 'e':
449 shared = strtol(optarg, &end, 0);
450 if (*end) {
b6353bea 451 errx(EXIT_FAILURE, "Invalid shared device number '%s'", optarg);
3b05a8e9
TS
452 }
453 if (shared < 1) {
b6353bea 454 errx(EXIT_FAILURE, "Shared device number must be greater than 0\n");
3b05a8e9
TS
455 }
456 break;
75818250
TS
457 case 't':
458 persistent = 1;
459 break;
7a5ca864
FB
460 case 'v':
461 verbose = 1;
462 break;
463 case 'V':
464 version(argv[0]);
465 exit(0);
466 break;
467 case 'h':
468 usage(argv[0]);
469 exit(0);
470 break;
471 case '?':
b6353bea 472 errx(EXIT_FAILURE, "Try `%s --help' for more information.",
7a5ca864
FB
473 argv[0]);
474 }
475 }
476
477 if ((argc - optind) != 1) {
b6353bea 478 errx(EXIT_FAILURE, "Invalid number of argument.\n"
7a5ca864
FB
479 "Try `%s --help' for more information.",
480 argv[0]);
481 }
482
cd831bd7
TS
483 if (disconnect) {
484 fd = open(argv[optind], O_RDWR);
fc19f8a0 485 if (fd < 0) {
cb7cf0e3 486 err(EXIT_FAILURE, "Cannot open %s", argv[optind]);
fc19f8a0 487 }
cd831bd7
TS
488 nbd_disconnect(fd);
489
490 close(fd);
491
492 printf("%s disconnected\n", argv[optind]);
493
494 return 0;
495 }
496
c1f8fdc3
PB
497 if (device && !verbose) {
498 int stderr_fd[2];
499 pid_t pid;
500 int ret;
501
fc19f8a0 502 if (qemu_pipe(stderr_fd) < 0) {
c1f8fdc3
PB
503 err(EXIT_FAILURE, "Error setting up communication pipe");
504 }
505
506 /* Now daemonize, but keep a communication channel open to
507 * print errors and exit with the proper status code.
508 */
509 pid = fork();
510 if (pid == 0) {
511 close(stderr_fd[0]);
9faf31b6 512 ret = qemu_daemon(1, 0);
c1f8fdc3
PB
513
514 /* Temporarily redirect stderr to the parent's pipe... */
515 dup2(stderr_fd[1], STDERR_FILENO);
fc19f8a0 516 if (ret < 0) {
c1f8fdc3
PB
517 err(EXIT_FAILURE, "Failed to daemonize");
518 }
519
520 /* ... close the descriptor we inherited and go on. */
521 close(stderr_fd[1]);
522 } else {
523 bool errors = false;
524 char *buf;
525
526 /* In the parent. Print error messages from the child until
527 * it closes the pipe.
528 */
529 close(stderr_fd[1]);
530 buf = g_malloc(1024);
531 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
532 errors = true;
533 ret = qemu_write_full(STDERR_FILENO, buf, ret);
fc19f8a0 534 if (ret < 0) {
c1f8fdc3
PB
535 exit(EXIT_FAILURE);
536 }
537 }
fc19f8a0 538 if (ret < 0) {
c1f8fdc3
PB
539 err(EXIT_FAILURE, "Cannot read from daemon");
540 }
541
542 /* Usually the daemon should not print any message.
543 * Exit with zero status in that case.
544 */
545 exit(errors);
546 }
547 }
548
a6ac2313
PB
549 if (device != NULL && sockpath == NULL) {
550 sockpath = g_malloc(128);
551 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
cd831bd7
TS
552 }
553
7e7f4a0e 554 qemu_init_main_loop();
802ddc37
PB
555 bdrv_init();
556 atexit(bdrv_close_all);
557
558 bs = bdrv_new("hda");
559 srcpath = argv[optind];
de9c0cec 560 if ((ret = bdrv_open(bs, srcpath, NULL, flags, NULL)) < 0) {
802ddc37
PB
561 errno = -ret;
562 err(EXIT_FAILURE, "Failed to bdrv_open '%s'", argv[optind]);
563 }
564
38ceff04 565 fd_size = bdrv_getlength(bs);
802ddc37 566
185b4338
PB
567 if (partition != -1) {
568 ret = find_partition(bs, partition, &dev_offset, &fd_size);
569 if (ret < 0) {
570 errno = -ret;
571 err(EXIT_FAILURE, "Could not find partition %d", partition);
572 }
802ddc37
PB
573 }
574
7860a380 575 exp = nbd_export_new(bs, dev_offset, fd_size, nbdflags, nbd_export_closed);
3b05a8e9 576
b32f6c28 577 if (sockpath) {
a61c6782 578 fd = unix_socket_incoming(sockpath);
cd831bd7 579 } else {
a61c6782 580 fd = tcp_socket_incoming(bindto, port);
cd831bd7
TS
581 }
582
fc19f8a0 583 if (fd < 0) {
7a5ca864 584 return 1;
a61c6782 585 }
f1ef5555
PB
586
587 if (device) {
588 int ret;
589
a6ac2313 590 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
f1ef5555
PB
591 if (ret != 0) {
592 errx(EXIT_FAILURE, "Failed to create client thread: %s",
593 strerror(ret));
594 }
595 } else {
596 /* Shut up GCC warnings. */
597 memset(&client_thread, 0, sizeof(client_thread));
598 }
599
a61c6782
PB
600 qemu_set_fd_handler2(fd, nbd_can_accept, nbd_accept, NULL,
601 (void *)(uintptr_t)fd);
7a5ca864 602
9faf31b6
MT
603 /* now when the initialization is (almost) complete, chdir("/")
604 * to free any busy filesystems */
605 if (chdir("/") < 0) {
606 err(EXIT_FAILURE, "Could not chdir to root directory");
607 }
608
7860a380 609 state = RUNNING;
3b05a8e9 610 do {
a61c6782 611 main_loop_wait(false);
7860a380
PB
612 if (state == TERMINATE) {
613 state = TERMINATING;
614 nbd_export_close(exp);
615 nbd_export_put(exp);
616 exp = NULL;
617 }
618 } while (state != TERMINATED);
7a5ca864 619
a4aab7b4 620 bdrv_close(bs);
b32f6c28
PB
621 if (sockpath) {
622 unlink(sockpath);
623 }
7a5ca864 624
a517e88b
PB
625 if (device) {
626 void *ret;
627 pthread_join(client_thread, &ret);
628 exit(ret != NULL);
629 } else {
630 exit(EXIT_SUCCESS);
631 }
7a5ca864 632}