2 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
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.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include "qemu-common.h"
20 #include "block/block.h"
21 #include "block/nbd.h"
22 #include "qemu/main-loop.h"
23 #include "qemu/sockets.h"
24 #include "qemu/error-report.h"
25 #include "block/snapshot.h"
31 #include <sys/types.h>
32 #include <sys/socket.h>
33 #include <netinet/in.h>
34 #include <netinet/tcp.h>
35 #include <arpa/inet.h>
40 #define SOCKET_PATH "/var/lock/qemu-nbd-%s"
41 #define QEMU_NBD_OPT_CACHE 1
42 #define QEMU_NBD_OPT_AIO 2
43 #define QEMU_NBD_OPT_DISCARD 3
45 static NBDExport *exp;
48 static char *sockpath;
49 static int persistent = 0;
50 static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state;
51 static int shared = 1;
54 static void usage(const char *name)
57 "Usage: %s [OPTIONS] FILE\n"
58 "QEMU Disk Network Block Device Server\n"
60 " -h, --help display this help and exit\n"
61 " -V, --version output version information and exit\n"
63 "Connection properties:\n"
64 " -p, --port=PORT port to listen on (default `%d')\n"
65 " -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
66 " -k, --socket=PATH path to the unix socket\n"
67 " (default '"SOCKET_PATH"')\n"
68 " -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
69 " -t, --persistent don't exit on the last connection\n"
70 " -v, --verbose display extra debugging information\n"
72 "Exposing part of the image:\n"
73 " -o, --offset=OFFSET offset into the image\n"
74 " -P, --partition=NUM only expose partition NUM\n"
77 "Kernel NBD client support:\n"
78 " -c, --connect=DEV connect FILE to the local NBD device DEV\n"
79 " -d, --disconnect disconnect the specified device\n"
83 "Block device options:\n"
84 " -f, --format=FORMAT set image format (raw, qcow2, ...)\n"
85 " -r, --read-only export read-only\n"
86 " -s, --snapshot use FILE as an external snapshot, create a temporary\n"
87 " file with backing_file=FILE, redirect the write to\n"
88 " the temporary one\n"
89 " -l, --load-snapshot=SNAPSHOT_PARAM\n"
90 " load an internal snapshot inside FILE and export it\n"
91 " as an read-only device, SNAPSHOT_PARAM format is\n"
92 " 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
94 " -n, --nocache disable host cache\n"
95 " --cache=MODE set cache mode (none, writeback, ...)\n"
96 #ifdef CONFIG_LINUX_AIO
97 " --aio=MODE set AIO mode (native or threads)\n"
100 "Report bugs to <qemu-devel@nongnu.org>\n"
101 , name, NBD_DEFAULT_PORT, "DEVICE");
104 static void version(const char *name)
108 "Written by Anthony Liguori.\n"
110 "Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>.\n"
111 "This is free software; see the source for copying conditions. There is NO\n"
112 "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
116 struct partition_record
120 uint32_t start_cylinder;
121 uint8_t start_sector;
124 uint8_t end_cylinder;
126 uint32_t start_sector_abs;
127 uint32_t nb_sectors_abs;
130 static void read_partition(uint8_t *p, struct partition_record *r)
133 r->start_head = p[1];
134 r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
135 r->start_sector = p[2] & 0x3f;
138 r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
139 r->end_sector = p[6] & 0x3f;
140 r->start_sector_abs = p[8] | p[9] << 8 | p[10] << 16 | p[11] << 24;
141 r->nb_sectors_abs = p[12] | p[13] << 8 | p[14] << 16 | p[15] << 24;
144 static int find_partition(BlockDriverState *bs, int partition,
145 off_t *offset, off_t *size)
147 struct partition_record mbr[4];
153 if ((ret = bdrv_read(bs, 0, data, 1)) < 0) {
155 err(EXIT_FAILURE, "error while reading");
158 if (data[510] != 0x55 || data[511] != 0xaa) {
162 for (i = 0; i < 4; i++) {
163 read_partition(&data[446 + 16 * i], &mbr[i]);
165 if (!mbr[i].nb_sectors_abs)
168 if (mbr[i].system == 0xF || mbr[i].system == 0x5) {
169 struct partition_record ext[4];
173 if ((ret = bdrv_read(bs, mbr[i].start_sector_abs, data1, 1)) < 0) {
175 err(EXIT_FAILURE, "error while reading");
178 for (j = 0; j < 4; j++) {
179 read_partition(&data1[446 + 16 * j], &ext[j]);
180 if (!ext[j].nb_sectors_abs)
183 if ((ext_partnum + j + 1) == partition) {
184 *offset = (uint64_t)ext[j].start_sector_abs << 9;
185 *size = (uint64_t)ext[j].nb_sectors_abs << 9;
190 } else if ((i + 1) == partition) {
191 *offset = (uint64_t)mbr[i].start_sector_abs << 9;
192 *size = (uint64_t)mbr[i].nb_sectors_abs << 9;
200 static void termsig_handler(int signum)
206 static void combine_addr(char *buf, size_t len, const char* address,
209 /* If the address-part contains a colon, it's an IPv6 IP so needs [] */
210 if (strstr(address, ":")) {
211 snprintf(buf, len, "[%s]:%u", address, port);
213 snprintf(buf, len, "%s:%u", address, port);
217 static int tcp_socket_incoming(const char *address, uint16_t port)
219 char address_and_port[128];
220 Error *local_err = NULL;
222 combine_addr(address_and_port, 128, address, port);
223 int fd = inet_listen(address_and_port, NULL, 0, SOCK_STREAM, 0, &local_err);
225 if (local_err != NULL) {
226 qerror_report_err(local_err);
227 error_free(local_err);
232 static int unix_socket_incoming(const char *path)
234 Error *local_err = NULL;
235 int fd = unix_listen(path, NULL, 0, &local_err);
237 if (local_err != NULL) {
238 qerror_report_err(local_err);
239 error_free(local_err);
244 static int unix_socket_outgoing(const char *path)
246 Error *local_err = NULL;
247 int fd = unix_connect(path, &local_err);
249 if (local_err != NULL) {
250 qerror_report_err(local_err);
251 error_free(local_err);
256 static void *show_parts(void *arg)
261 /* linux just needs an open() to trigger
262 * the partition table update
263 * but remember to load the module with max_part != 0 :
264 * modprobe nbd max_part=63
266 nbd = open(device, O_RDWR);
273 static void *nbd_client_thread(void *arg)
281 pthread_t show_parts_thread;
283 sock = unix_socket_outgoing(sockpath);
288 ret = nbd_receive_negotiate(sock, NULL, &nbdflags,
294 fd = open(device, O_RDWR);
296 /* Linux-only, we can use %m in printf. */
297 fprintf(stderr, "Failed to open %s: %m\n", device);
301 ret = nbd_init(fd, sock, nbdflags, size, blocksize);
306 /* update partition table */
307 pthread_create(&show_parts_thread, NULL, show_parts, device);
310 fprintf(stderr, "NBD device %s is now connected to %s\n",
313 /* Close stderr so that the qemu-nbd process exits. */
314 dup2(STDOUT_FILENO, STDERR_FILENO);
317 ret = nbd_client(fd);
322 kill(getpid(), SIGTERM);
323 return (void *) EXIT_SUCCESS;
330 kill(getpid(), SIGTERM);
331 return (void *) EXIT_FAILURE;
334 static int nbd_can_accept(void *opaque)
336 return nb_fds < shared;
339 static void nbd_export_closed(NBDExport *exp)
341 assert(state == TERMINATING);
345 static void nbd_client_closed(NBDClient *client)
348 if (nb_fds == 0 && !persistent && state == RUNNING) {
352 nbd_client_put(client);
355 static void nbd_accept(void *opaque)
357 int server_fd = (uintptr_t) opaque;
358 struct sockaddr_in addr;
359 socklen_t addr_len = sizeof(addr);
361 int fd = accept(server_fd, (struct sockaddr *)&addr, &addr_len);
367 if (state >= TERMINATE) {
372 if (nbd_client_new(exp, fd, nbd_client_closed)) {
379 int main(int argc, char **argv)
381 BlockDriverState *bs;
383 off_t dev_offset = 0;
384 uint32_t nbdflags = 0;
385 bool disconnect = false;
386 const char *bindto = "0.0.0.0";
388 int port = NBD_DEFAULT_PORT;
390 QemuOpts *sn_opts = NULL;
391 const char *sn_id_or_name = NULL;
392 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:";
393 struct option lopt[] = {
394 { "help", 0, NULL, 'h' },
395 { "version", 0, NULL, 'V' },
396 { "bind", 1, NULL, 'b' },
397 { "port", 1, NULL, 'p' },
398 { "socket", 1, NULL, 'k' },
399 { "offset", 1, NULL, 'o' },
400 { "read-only", 0, NULL, 'r' },
401 { "partition", 1, NULL, 'P' },
402 { "connect", 1, NULL, 'c' },
403 { "disconnect", 0, NULL, 'd' },
404 { "snapshot", 0, NULL, 's' },
405 { "load-snapshot", 1, NULL, 'l' },
406 { "nocache", 0, NULL, 'n' },
407 { "cache", 1, NULL, QEMU_NBD_OPT_CACHE },
408 #ifdef CONFIG_LINUX_AIO
409 { "aio", 1, NULL, QEMU_NBD_OPT_AIO },
411 { "discard", 1, NULL, QEMU_NBD_OPT_DISCARD },
412 { "shared", 1, NULL, 'e' },
413 { "format", 1, NULL, 'f' },
414 { "persistent", 0, NULL, 't' },
415 { "verbose", 0, NULL, 'v' },
422 int flags = BDRV_O_RDWR;
426 bool seen_cache = false;
427 bool seen_discard = false;
428 #ifdef CONFIG_LINUX_AIO
429 bool seen_aio = false;
431 pthread_t client_thread;
432 const char *fmt = NULL;
433 Error *local_err = NULL;
435 /* The client thread uses SIGTERM to interrupt the server. A signal
436 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
438 struct sigaction sa_sigterm;
439 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
440 sa_sigterm.sa_handler = termsig_handler;
441 sigaction(SIGTERM, &sa_sigterm, NULL);
442 qemu_init_exec_dir(argv[0]);
444 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
447 flags |= BDRV_O_SNAPSHOT;
450 optarg = (char *) "none";
452 case QEMU_NBD_OPT_CACHE:
454 errx(EXIT_FAILURE, "-n and --cache can only be specified once");
457 if (bdrv_parse_cache_flags(optarg, &flags) == -1) {
458 errx(EXIT_FAILURE, "Invalid cache mode `%s'", optarg);
461 #ifdef CONFIG_LINUX_AIO
462 case QEMU_NBD_OPT_AIO:
464 errx(EXIT_FAILURE, "--aio can only be specified once");
467 if (!strcmp(optarg, "native")) {
468 flags |= BDRV_O_NATIVE_AIO;
469 } else if (!strcmp(optarg, "threads")) {
470 /* this is the default */
472 errx(EXIT_FAILURE, "invalid aio mode `%s'", optarg);
476 case QEMU_NBD_OPT_DISCARD:
478 errx(EXIT_FAILURE, "--discard can only be specified once");
481 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
482 errx(EXIT_FAILURE, "Invalid discard mode `%s'", optarg);
489 li = strtol(optarg, &end, 0);
491 errx(EXIT_FAILURE, "Invalid port `%s'", optarg);
493 if (li < 1 || li > 65535) {
494 errx(EXIT_FAILURE, "Port out of range `%s'", optarg);
499 dev_offset = strtoll (optarg, &end, 0);
501 errx(EXIT_FAILURE, "Invalid offset `%s'", optarg);
503 if (dev_offset < 0) {
504 errx(EXIT_FAILURE, "Offset must be positive `%s'", optarg);
508 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
509 sn_opts = qemu_opts_parse(&internal_snapshot_opts, optarg, 0);
511 errx(EXIT_FAILURE, "Failed in parsing snapshot param `%s'",
515 sn_id_or_name = optarg;
519 nbdflags |= NBD_FLAG_READ_ONLY;
520 flags &= ~BDRV_O_RDWR;
523 partition = strtol(optarg, &end, 0);
525 errx(EXIT_FAILURE, "Invalid partition `%s'", optarg);
526 if (partition < 1 || partition > 8)
527 errx(EXIT_FAILURE, "Invalid partition %d", partition);
531 if (sockpath[0] != '/')
532 errx(EXIT_FAILURE, "socket path must be absolute\n");
541 shared = strtol(optarg, &end, 0);
543 errx(EXIT_FAILURE, "Invalid shared device number '%s'", optarg);
546 errx(EXIT_FAILURE, "Shared device number must be greater than 0\n");
567 errx(EXIT_FAILURE, "Try `%s --help' for more information.",
572 if ((argc - optind) != 1) {
573 errx(EXIT_FAILURE, "Invalid number of argument.\n"
574 "Try `%s --help' for more information.",
579 fd = open(argv[optind], O_RDWR);
581 err(EXIT_FAILURE, "Cannot open %s", argv[optind]);
587 printf("%s disconnected\n", argv[optind]);
592 if (device && !verbose) {
597 if (qemu_pipe(stderr_fd) < 0) {
598 err(EXIT_FAILURE, "Error setting up communication pipe");
601 /* Now daemonize, but keep a communication channel open to
602 * print errors and exit with the proper status code.
607 ret = qemu_daemon(1, 0);
609 /* Temporarily redirect stderr to the parent's pipe... */
610 dup2(stderr_fd[1], STDERR_FILENO);
612 err(EXIT_FAILURE, "Failed to daemonize");
615 /* ... close the descriptor we inherited and go on. */
621 /* In the parent. Print error messages from the child until
622 * it closes the pipe.
625 buf = g_malloc(1024);
626 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
628 ret = qemu_write_full(STDERR_FILENO, buf, ret);
634 err(EXIT_FAILURE, "Cannot read from daemon");
637 /* Usually the daemon should not print any message.
638 * Exit with zero status in that case.
644 if (device != NULL && sockpath == NULL) {
645 sockpath = g_malloc(128);
646 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
649 qemu_init_main_loop();
651 atexit(bdrv_close_all);
654 drv = bdrv_find_format(fmt);
656 errx(EXIT_FAILURE, "Unknown file format '%s'", fmt);
662 bs = bdrv_new("hda", &error_abort);
664 srcpath = argv[optind];
665 ret = bdrv_open(&bs, srcpath, NULL, NULL, flags, drv, &local_err);
668 err(EXIT_FAILURE, "Failed to bdrv_open '%s': %s", argv[optind],
669 error_get_pretty(local_err));
673 ret = bdrv_snapshot_load_tmp(bs,
674 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
675 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
677 } else if (sn_id_or_name) {
678 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
684 "Failed to load snapshot: %s",
685 error_get_pretty(local_err));
688 fd_size = bdrv_getlength(bs);
690 if (partition != -1) {
691 ret = find_partition(bs, partition, &dev_offset, &fd_size);
694 err(EXIT_FAILURE, "Could not find partition %d", partition);
698 exp = nbd_export_new(bs, dev_offset, fd_size, nbdflags, nbd_export_closed);
701 fd = unix_socket_incoming(sockpath);
703 fd = tcp_socket_incoming(bindto, port);
713 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
715 errx(EXIT_FAILURE, "Failed to create client thread: %s",
719 /* Shut up GCC warnings. */
720 memset(&client_thread, 0, sizeof(client_thread));
723 qemu_set_fd_handler2(fd, nbd_can_accept, nbd_accept, NULL,
724 (void *)(uintptr_t)fd);
726 /* now when the initialization is (almost) complete, chdir("/")
727 * to free any busy filesystems */
728 if (chdir("/") < 0) {
729 err(EXIT_FAILURE, "Could not chdir to root directory");
734 main_loop_wait(false);
735 if (state == TERMINATE) {
737 nbd_export_close(exp);
741 } while (state != TERMINATED);
749 qemu_opts_del(sn_opts);
754 pthread_join(client_thread, &ret);