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 "sysemu/block-backend.h"
21 #include "block/block_int.h"
22 #include "block/nbd.h"
23 #include "qemu/main-loop.h"
24 #include "qemu/sockets.h"
25 #include "qemu/error-report.h"
26 #include "block/snapshot.h"
27 #include "qapi/util.h"
28 #include "qapi/qmp/qstring.h"
33 #include <sys/types.h>
34 #include <sys/socket.h>
35 #include <netinet/in.h>
36 #include <netinet/tcp.h>
37 #include <arpa/inet.h>
42 #define SOCKET_PATH "/var/lock/qemu-nbd-%s"
43 #define QEMU_NBD_OPT_CACHE 1
44 #define QEMU_NBD_OPT_AIO 2
45 #define QEMU_NBD_OPT_DISCARD 3
46 #define QEMU_NBD_OPT_DETECT_ZEROES 4
48 static NBDExport *exp;
51 static SocketAddress *saddr;
52 static int persistent = 0;
53 static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state;
54 static int shared = 1;
58 static void usage(const char *name)
61 "Usage: %s [OPTIONS] FILE\n"
62 "QEMU Disk Network Block Device Server\n"
64 " -h, --help display this help and exit\n"
65 " -V, --version output version information and exit\n"
67 "Connection properties:\n"
68 " -p, --port=PORT port to listen on (default `%d')\n"
69 " -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
70 " -k, --socket=PATH path to the unix socket\n"
71 " (default '"SOCKET_PATH"')\n"
72 " -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
73 " -t, --persistent don't exit on the last connection\n"
74 " -v, --verbose display extra debugging information\n"
76 "Exposing part of the image:\n"
77 " -o, --offset=OFFSET offset into the image\n"
78 " -P, --partition=NUM only expose partition NUM\n"
81 "Kernel NBD client support:\n"
82 " -c, --connect=DEV connect FILE to the local NBD device DEV\n"
83 " -d, --disconnect disconnect the specified device\n"
87 "Block device options:\n"
88 " -f, --format=FORMAT set image format (raw, qcow2, ...)\n"
89 " -r, --read-only export read-only\n"
90 " -s, --snapshot use FILE as an external snapshot, create a temporary\n"
91 " file with backing_file=FILE, redirect the write to\n"
92 " the temporary one\n"
93 " -l, --load-snapshot=SNAPSHOT_PARAM\n"
94 " load an internal snapshot inside FILE and export it\n"
95 " as an read-only device, SNAPSHOT_PARAM format is\n"
96 " 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
98 " -n, --nocache disable host cache\n"
99 " --cache=MODE set cache mode (none, writeback, ...)\n"
100 " --aio=MODE set AIO mode (native or threads)\n"
101 " --discard=MODE set discard mode (ignore, unmap)\n"
102 " --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n"
105 , name, NBD_DEFAULT_PORT, "DEVICE");
108 static void version(const char *name)
112 "Written by Anthony Liguori.\n"
115 "This is free software; see the source for copying conditions. There is NO\n"
116 "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
120 struct partition_record
124 uint32_t start_cylinder;
125 uint8_t start_sector;
128 uint8_t end_cylinder;
130 uint32_t start_sector_abs;
131 uint32_t nb_sectors_abs;
134 static void read_partition(uint8_t *p, struct partition_record *r)
137 r->start_head = p[1];
138 r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
139 r->start_sector = p[2] & 0x3f;
142 r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
143 r->end_sector = p[6] & 0x3f;
145 r->start_sector_abs = le32_to_cpup((uint32_t *)(p + 8));
146 r->nb_sectors_abs = le32_to_cpup((uint32_t *)(p + 12));
149 static int find_partition(BlockBackend *blk, int partition,
150 off_t *offset, off_t *size)
152 struct partition_record mbr[4];
158 if ((ret = blk_read(blk, 0, data, 1)) < 0) {
160 error_report("error while reading: %s", strerror(errno));
164 if (data[510] != 0x55 || data[511] != 0xaa) {
168 for (i = 0; i < 4; i++) {
169 read_partition(&data[446 + 16 * i], &mbr[i]);
171 if (!mbr[i].system || !mbr[i].nb_sectors_abs) {
175 if (mbr[i].system == 0xF || mbr[i].system == 0x5) {
176 struct partition_record ext[4];
180 if ((ret = blk_read(blk, mbr[i].start_sector_abs, data1, 1)) < 0) {
182 error_report("error while reading: %s", strerror(errno));
186 for (j = 0; j < 4; j++) {
187 read_partition(&data1[446 + 16 * j], &ext[j]);
188 if (!ext[j].system || !ext[j].nb_sectors_abs) {
192 if ((ext_partnum + j + 1) == partition) {
193 *offset = (uint64_t)ext[j].start_sector_abs << 9;
194 *size = (uint64_t)ext[j].nb_sectors_abs << 9;
199 } else if ((i + 1) == partition) {
200 *offset = (uint64_t)mbr[i].start_sector_abs << 9;
201 *size = (uint64_t)mbr[i].nb_sectors_abs << 9;
209 static void termsig_handler(int signum)
216 static void *show_parts(void *arg)
221 /* linux just needs an open() to trigger
222 * the partition table update
223 * but remember to load the module with max_part != 0 :
224 * modprobe nbd max_part=63
226 nbd = open(device, O_RDWR);
233 static void *nbd_client_thread(void *arg)
240 pthread_t show_parts_thread;
241 Error *local_error = NULL;
244 sock = socket_connect(saddr, &local_error, NULL, NULL);
246 error_report_err(local_error);
250 ret = nbd_receive_negotiate(sock, NULL, &nbdflags,
251 &size, &local_error);
254 error_report_err(local_error);
259 fd = open(device, O_RDWR);
261 /* Linux-only, we can use %m in printf. */
262 fprintf(stderr, "Failed to open %s: %m\n", device);
266 ret = nbd_init(fd, sock, nbdflags, size);
271 /* update partition table */
272 pthread_create(&show_parts_thread, NULL, show_parts, device);
275 fprintf(stderr, "NBD device %s is now connected to %s\n",
278 /* Close stderr so that the qemu-nbd process exits. */
279 dup2(STDOUT_FILENO, STDERR_FILENO);
282 ret = nbd_client(fd);
287 kill(getpid(), SIGTERM);
288 return (void *) EXIT_SUCCESS;
295 kill(getpid(), SIGTERM);
296 return (void *) EXIT_FAILURE;
299 static int nbd_can_accept(void)
301 return nb_fds < shared;
304 static void nbd_export_closed(NBDExport *exp)
306 assert(state == TERMINATING);
310 static void nbd_update_server_fd_handler(int fd);
312 static void nbd_client_closed(NBDClient *client)
315 if (nb_fds == 0 && !persistent && state == RUNNING) {
318 nbd_update_server_fd_handler(server_fd);
319 nbd_client_put(client);
322 static void nbd_accept(void *opaque)
324 struct sockaddr_in addr;
325 socklen_t addr_len = sizeof(addr);
327 int fd = accept(server_fd, (struct sockaddr *)&addr, &addr_len);
333 if (state >= TERMINATE) {
338 if (nbd_client_new(exp, fd, nbd_client_closed)) {
340 nbd_update_server_fd_handler(server_fd);
347 static void nbd_update_server_fd_handler(int fd)
349 if (nbd_can_accept()) {
350 qemu_set_fd_handler(fd, nbd_accept, NULL, (void *)(uintptr_t)fd);
352 qemu_set_fd_handler(fd, NULL, NULL, NULL);
357 static SocketAddress *nbd_build_socket_address(const char *sockpath,
361 SocketAddress *saddr;
363 saddr = g_new0(SocketAddress, 1);
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);
369 saddr->type = SOCKET_ADDRESS_KIND_INET;
370 saddr->u.inet = g_new0(InetSocketAddress, 1);
371 saddr->u.inet->host = g_strdup(bindto);
373 saddr->u.inet->port = g_strdup(port);
375 saddr->u.inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
383 int main(int argc, char **argv)
386 BlockDriverState *bs;
387 off_t dev_offset = 0;
388 uint32_t nbdflags = 0;
389 bool disconnect = false;
390 const char *bindto = "0.0.0.0";
391 const char *port = NULL;
392 char *sockpath = NULL;
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:";
398 struct option lopt[] = {
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' },
410 { "load-snapshot", 1, NULL, 'l' },
411 { "nocache", 0, NULL, 'n' },
412 { "cache", 1, NULL, QEMU_NBD_OPT_CACHE },
413 { "aio", 1, NULL, QEMU_NBD_OPT_AIO },
414 { "discard", 1, NULL, QEMU_NBD_OPT_DISCARD },
415 { "detect-zeroes", 1, NULL, QEMU_NBD_OPT_DETECT_ZEROES },
416 { "shared", 1, NULL, 'e' },
417 { "format", 1, NULL, 'f' },
418 { "persistent", 0, NULL, 't' },
419 { "verbose", 0, NULL, 'v' },
425 int flags = BDRV_O_RDWR;
429 bool seen_cache = false;
430 bool seen_discard = false;
431 bool seen_aio = false;
432 pthread_t client_thread;
433 const char *fmt = NULL;
434 Error *local_err = NULL;
435 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
436 QDict *options = NULL;
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.
441 struct sigaction sa_sigterm;
442 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
443 sa_sigterm.sa_handler = termsig_handler;
444 sigaction(SIGTERM, &sa_sigterm, NULL);
445 qemu_init_exec_dir(argv[0]);
447 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
450 flags |= BDRV_O_SNAPSHOT;
453 optarg = (char *) "none";
455 case QEMU_NBD_OPT_CACHE:
457 error_report("-n and --cache can only be specified once");
461 if (bdrv_parse_cache_flags(optarg, &flags) == -1) {
462 error_report("Invalid cache mode `%s'", optarg);
466 case QEMU_NBD_OPT_AIO:
468 error_report("--aio can only be specified once");
472 if (!strcmp(optarg, "native")) {
473 flags |= BDRV_O_NATIVE_AIO;
474 } else if (!strcmp(optarg, "threads")) {
475 /* this is the default */
477 error_report("invalid aio mode `%s'", optarg);
481 case QEMU_NBD_OPT_DISCARD:
483 error_report("--discard can only be specified once");
487 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
488 error_report("Invalid discard mode `%s'", optarg);
492 case QEMU_NBD_OPT_DETECT_ZEROES:
494 qapi_enum_parse(BlockdevDetectZeroesOptions_lookup,
496 BLOCKDEV_DETECT_ZEROES_OPTIONS__MAX,
497 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
500 error_report("Failed to parse detect_zeroes mode: %s",
501 error_get_pretty(local_err));
504 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
505 !(flags & BDRV_O_UNMAP)) {
506 error_report("setting detect-zeroes to unmap is not allowed "
507 "without setting discard operation to unmap");
518 dev_offset = strtoll (optarg, &end, 0);
520 error_report("Invalid offset `%s'", optarg);
523 if (dev_offset < 0) {
524 error_report("Offset must be positive `%s'", optarg);
529 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
530 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
533 error_report("Failed in parsing snapshot param `%s'",
538 sn_id_or_name = optarg;
542 nbdflags |= NBD_FLAG_READ_ONLY;
543 flags &= ~BDRV_O_RDWR;
546 partition = strtol(optarg, &end, 0);
548 error_report("Invalid partition `%s'", optarg);
551 if (partition < 1 || partition > 8) {
552 error_report("Invalid partition %d", partition);
558 if (sockpath[0] != '/') {
559 error_report("socket path must be absolute\n");
570 shared = strtol(optarg, &end, 0);
572 error_report("Invalid shared device number '%s'", optarg);
576 error_report("Shared device number must be greater than 0\n");
598 error_report("Try `%s --help' for more information.", argv[0]);
603 if ((argc - optind) != 1) {
604 error_report("Invalid number of argument.\n"
605 "Try `%s --help' for more information.",
611 fd = open(argv[optind], O_RDWR);
613 error_report("Cannot open %s: %s", argv[optind],
621 printf("%s disconnected\n", argv[optind]);
626 if (device && !verbose) {
631 if (qemu_pipe(stderr_fd) < 0) {
632 error_report("Error setting up communication pipe: %s",
637 /* Now daemonize, but keep a communication channel open to
638 * print errors and exit with the proper status code.
642 error_report("Failed to fork: %s", strerror(errno));
644 } else if (pid == 0) {
646 ret = qemu_daemon(1, 0);
648 /* Temporarily redirect stderr to the parent's pipe... */
649 dup2(stderr_fd[1], STDERR_FILENO);
651 error_report("Failed to daemonize: %s", strerror(errno));
655 /* ... close the descriptor we inherited and go on. */
661 /* In the parent. Print error messages from the child until
662 * it closes the pipe.
665 buf = g_malloc(1024);
666 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
668 ret = qemu_write_full(STDERR_FILENO, buf, ret);
674 error_report("Cannot read from daemon: %s",
679 /* Usually the daemon should not print any message.
680 * Exit with zero status in that case.
686 if (device != NULL && sockpath == NULL) {
687 sockpath = g_malloc(128);
688 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
691 saddr = nbd_build_socket_address(sockpath, bindto, port);
693 if (qemu_init_main_loop(&local_err)) {
694 error_report_err(local_err);
698 atexit(bdrv_close_all);
701 options = qdict_new();
702 qdict_put(options, "driver", qstring_from_str(fmt));
705 srcpath = argv[optind];
706 blk = blk_new_open("hda", srcpath, NULL, options, flags, &local_err);
708 error_report("Failed to blk_new_open '%s': %s", argv[optind],
709 error_get_pretty(local_err));
715 ret = bdrv_snapshot_load_tmp(bs,
716 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
717 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
719 } else if (sn_id_or_name) {
720 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
725 error_report("Failed to load snapshot: %s: %s",
726 error_get_pretty(local_err), strerror(errno));
730 bs->detect_zeroes = detect_zeroes;
731 fd_size = blk_getlength(blk);
733 error_report("Failed to determine the image length: %s",
738 if (partition != -1) {
739 ret = find_partition(blk, partition, &dev_offset, &fd_size);
742 error_report("Could not find partition %d: %s", partition,
748 exp = nbd_export_new(blk, dev_offset, fd_size, nbdflags, nbd_export_closed,
751 error_report_err(local_err);
755 fd = socket_listen(saddr, &local_err);
757 error_report_err(local_err);
764 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
766 error_report("Failed to create client thread: %s", strerror(ret));
770 /* Shut up GCC warnings. */
771 memset(&client_thread, 0, sizeof(client_thread));
775 nbd_update_server_fd_handler(fd);
777 /* now when the initialization is (almost) complete, chdir("/")
778 * to free any busy filesystems */
779 if (chdir("/") < 0) {
780 error_report("Could not chdir to root directory: %s",
787 main_loop_wait(false);
788 if (state == TERMINATE) {
790 nbd_export_close(exp);
794 } while (state != TERMINATED);
801 qemu_opts_del(sn_opts);
805 pthread_join(client_thread, &ret);