error: Use error_report_err() instead of ad hoc prints
[sdk/emulator/qemu.git] / qemu-nbd.c
1 /*
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
16  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
17  */
18
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"
29
30 #include <stdarg.h>
31 #include <stdio.h>
32 #include <getopt.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>
38 #include <signal.h>
39 #include <libgen.h>
40 #include <pthread.h>
41
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
47
48 static NBDExport *exp;
49 static int verbose;
50 static char *srcpath;
51 static SocketAddress *saddr;
52 static int persistent = 0;
53 static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state;
54 static int shared = 1;
55 static int nb_fds;
56 static int server_fd;
57
58 static void usage(const char *name)
59 {
60     (printf) (
61 "Usage: %s [OPTIONS] FILE\n"
62 "QEMU Disk Network Block Device Server\n"
63 "\n"
64 "  -h, --help                display this help and exit\n"
65 "  -V, --version             output version information and exit\n"
66 "\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"
75 "\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"
79 "\n"
80 #ifdef __linux__
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"
84 "\n"
85 #endif
86 "\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"
97 "                            '[ID_OR_NAME]'\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"
103 "\n"
104 "Report bugs to <qemu-devel@nongnu.org>\n"
105     , name, NBD_DEFAULT_PORT, "DEVICE");
106 }
107
108 static void version(const char *name)
109 {
110     printf(
111 "%s version 0.0.1\n"
112 "Written by Anthony Liguori.\n"
113 "\n"
114 "Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>.\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"
117     , name);
118 }
119
120 struct partition_record
121 {
122     uint8_t bootable;
123     uint8_t start_head;
124     uint32_t start_cylinder;
125     uint8_t start_sector;
126     uint8_t system;
127     uint8_t end_head;
128     uint8_t end_cylinder;
129     uint8_t end_sector;
130     uint32_t start_sector_abs;
131     uint32_t nb_sectors_abs;
132 };
133
134 static void read_partition(uint8_t *p, struct partition_record *r)
135 {
136     r->bootable = p[0];
137     r->start_head = p[1];
138     r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
139     r->start_sector = p[2] & 0x3f;
140     r->system = p[4];
141     r->end_head = p[5];
142     r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
143     r->end_sector = p[6] & 0x3f;
144
145     r->start_sector_abs = le32_to_cpup((uint32_t *)(p +  8));
146     r->nb_sectors_abs   = le32_to_cpup((uint32_t *)(p + 12));
147 }
148
149 static int find_partition(BlockBackend *blk, int partition,
150                           off_t *offset, off_t *size)
151 {
152     struct partition_record mbr[4];
153     uint8_t data[512];
154     int i;
155     int ext_partnum = 4;
156     int ret;
157
158     if ((ret = blk_read(blk, 0, data, 1)) < 0) {
159         errno = -ret;
160         error_report("error while reading: %s", strerror(errno));
161         exit(EXIT_FAILURE);
162     }
163
164     if (data[510] != 0x55 || data[511] != 0xaa) {
165         return -EINVAL;
166     }
167
168     for (i = 0; i < 4; i++) {
169         read_partition(&data[446 + 16 * i], &mbr[i]);
170
171         if (!mbr[i].system || !mbr[i].nb_sectors_abs) {
172             continue;
173         }
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
180             if ((ret = blk_read(blk, mbr[i].start_sector_abs, data1, 1)) < 0) {
181                 errno = -ret;
182                 error_report("error while reading: %s", strerror(errno));
183                 exit(EXIT_FAILURE);
184             }
185
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) {
189                     continue;
190                 }
191
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;
195                     return 0;
196                 }
197             }
198             ext_partnum += 4;
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;
202             return 0;
203         }
204     }
205
206     return -ENOENT;
207 }
208
209 static void termsig_handler(int signum)
210 {
211     state = TERMINATE;
212     qemu_notify_event();
213 }
214
215
216 static void *show_parts(void *arg)
217 {
218     char *device = arg;
219     int nbd;
220
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
225      */
226     nbd = open(device, O_RDWR);
227     if (nbd >= 0) {
228         close(nbd);
229     }
230     return NULL;
231 }
232
233 static void *nbd_client_thread(void *arg)
234 {
235     char *device = arg;
236     off_t size;
237     uint32_t nbdflags;
238     int fd, sock;
239     int ret;
240     pthread_t show_parts_thread;
241     Error *local_error = NULL;
242
243
244     sock = socket_connect(saddr, &local_error, NULL, NULL);
245     if (sock < 0) {
246         error_report_err(local_error);
247         goto out;
248     }
249
250     ret = nbd_receive_negotiate(sock, NULL, &nbdflags,
251                                 &size, &local_error);
252     if (ret < 0) {
253         if (local_error) {
254             error_report_err(local_error);
255         }
256         goto out_socket;
257     }
258
259     fd = open(device, O_RDWR);
260     if (fd < 0) {
261         /* Linux-only, we can use %m in printf.  */
262         fprintf(stderr, "Failed to open %s: %m\n", device);
263         goto out_socket;
264     }
265
266     ret = nbd_init(fd, sock, nbdflags, size);
267     if (ret < 0) {
268         goto out_fd;
269     }
270
271     /* update partition table */
272     pthread_create(&show_parts_thread, NULL, show_parts, device);
273
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     }
281
282     ret = nbd_client(fd);
283     if (ret) {
284         goto out_fd;
285     }
286     close(fd);
287     kill(getpid(), SIGTERM);
288     return (void *) EXIT_SUCCESS;
289
290 out_fd:
291     close(fd);
292 out_socket:
293     closesocket(sock);
294 out:
295     kill(getpid(), SIGTERM);
296     return (void *) EXIT_FAILURE;
297 }
298
299 static int nbd_can_accept(void)
300 {
301     return nb_fds < shared;
302 }
303
304 static void nbd_export_closed(NBDExport *exp)
305 {
306     assert(state == TERMINATING);
307     state = TERMINATED;
308 }
309
310 static void nbd_update_server_fd_handler(int fd);
311
312 static void nbd_client_closed(NBDClient *client)
313 {
314     nb_fds--;
315     if (nb_fds == 0 && !persistent && state == RUNNING) {
316         state = TERMINATE;
317     }
318     nbd_update_server_fd_handler(server_fd);
319     nbd_client_put(client);
320 }
321
322 static void nbd_accept(void *opaque)
323 {
324     struct sockaddr_in addr;
325     socklen_t addr_len = sizeof(addr);
326
327     int fd = accept(server_fd, (struct sockaddr *)&addr, &addr_len);
328     if (fd < 0) {
329         perror("accept");
330         return;
331     }
332
333     if (state >= TERMINATE) {
334         close(fd);
335         return;
336     }
337
338     if (nbd_client_new(exp, fd, nbd_client_closed)) {
339         nb_fds++;
340         nbd_update_server_fd_handler(server_fd);
341     } else {
342         shutdown(fd, 2);
343         close(fd);
344     }
345 }
346
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
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) {
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);
368     } else {
369         saddr->type = SOCKET_ADDRESS_KIND_INET;
370         saddr->u.inet = g_new0(InetSocketAddress, 1);
371         saddr->u.inet->host = g_strdup(bindto);
372         if (port) {
373             saddr->u.inet->port = g_strdup(port);
374         } else  {
375             saddr->u.inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
376         }
377     }
378
379     return saddr;
380 }
381
382
383 int main(int argc, char **argv)
384 {
385     BlockBackend *blk;
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;
393     char *device = NULL;
394     off_t fd_size;
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' },
420         { NULL, 0, NULL, 0 }
421     };
422     int ch;
423     int opt_ind = 0;
424     char *end;
425     int flags = BDRV_O_RDWR;
426     int partition = -1;
427     int ret = 0;
428     int fd;
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;
437
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      */
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]);
446
447     while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
448         switch (ch) {
449         case 's':
450             flags |= BDRV_O_SNAPSHOT;
451             break;
452         case 'n':
453             optarg = (char *) "none";
454             /* fallthrough */
455         case QEMU_NBD_OPT_CACHE:
456             if (seen_cache) {
457                 error_report("-n and --cache can only be specified once");
458                 exit(EXIT_FAILURE);
459             }
460             seen_cache = true;
461             if (bdrv_parse_cache_flags(optarg, &flags) == -1) {
462                 error_report("Invalid cache mode `%s'", optarg);
463                 exit(EXIT_FAILURE);
464             }
465             break;
466         case QEMU_NBD_OPT_AIO:
467             if (seen_aio) {
468                 error_report("--aio can only be specified once");
469                 exit(EXIT_FAILURE);
470             }
471             seen_aio = true;
472             if (!strcmp(optarg, "native")) {
473                 flags |= BDRV_O_NATIVE_AIO;
474             } else if (!strcmp(optarg, "threads")) {
475                 /* this is the default */
476             } else {
477                error_report("invalid aio mode `%s'", optarg);
478                exit(EXIT_FAILURE);
479             }
480             break;
481         case QEMU_NBD_OPT_DISCARD:
482             if (seen_discard) {
483                 error_report("--discard can only be specified once");
484                 exit(EXIT_FAILURE);
485             }
486             seen_discard = true;
487             if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
488                 error_report("Invalid discard mode `%s'", optarg);
489                 exit(EXIT_FAILURE);
490             }
491             break;
492         case QEMU_NBD_OPT_DETECT_ZEROES:
493             detect_zeroes =
494                 qapi_enum_parse(BlockdevDetectZeroesOptions_lookup,
495                                 optarg,
496                                 BLOCKDEV_DETECT_ZEROES_OPTIONS__MAX,
497                                 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
498                                 &local_err);
499             if (local_err) {
500                 error_report("Failed to parse detect_zeroes mode: %s",
501                              error_get_pretty(local_err));
502                 exit(EXIT_FAILURE);
503             }
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");
508                 exit(EXIT_FAILURE);
509             }
510             break;
511         case 'b':
512             bindto = optarg;
513             break;
514         case 'p':
515             port = optarg;
516             break;
517         case 'o':
518                 dev_offset = strtoll (optarg, &end, 0);
519             if (*end) {
520                 error_report("Invalid offset `%s'", optarg);
521                 exit(EXIT_FAILURE);
522             }
523             if (dev_offset < 0) {
524                 error_report("Offset must be positive `%s'", optarg);
525                 exit(EXIT_FAILURE);
526             }
527             break;
528         case 'l':
529             if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
530                 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
531                                                   optarg, false);
532                 if (!sn_opts) {
533                     error_report("Failed in parsing snapshot param `%s'",
534                                  optarg);
535                     exit(EXIT_FAILURE);
536                 }
537             } else {
538                 sn_id_or_name = optarg;
539             }
540             /* fall through */
541         case 'r':
542             nbdflags |= NBD_FLAG_READ_ONLY;
543             flags &= ~BDRV_O_RDWR;
544             break;
545         case 'P':
546             partition = strtol(optarg, &end, 0);
547             if (*end) {
548                 error_report("Invalid partition `%s'", optarg);
549                 exit(EXIT_FAILURE);
550             }
551             if (partition < 1 || partition > 8) {
552                 error_report("Invalid partition %d", partition);
553                 exit(EXIT_FAILURE);
554             }
555             break;
556         case 'k':
557             sockpath = optarg;
558             if (sockpath[0] != '/') {
559                 error_report("socket path must be absolute\n");
560                 exit(EXIT_FAILURE);
561             }
562             break;
563         case 'd':
564             disconnect = true;
565             break;
566         case 'c':
567             device = optarg;
568             break;
569         case 'e':
570             shared = strtol(optarg, &end, 0);
571             if (*end) {
572                 error_report("Invalid shared device number '%s'", optarg);
573                 exit(EXIT_FAILURE);
574             }
575             if (shared < 1) {
576                 error_report("Shared device number must be greater than 0\n");
577                 exit(EXIT_FAILURE);
578             }
579             break;
580         case 'f':
581             fmt = optarg;
582             break;
583         case 't':
584             persistent = 1;
585             break;
586         case 'v':
587             verbose = 1;
588             break;
589         case 'V':
590             version(argv[0]);
591             exit(0);
592             break;
593         case 'h':
594             usage(argv[0]);
595             exit(0);
596             break;
597         case '?':
598             error_report("Try `%s --help' for more information.", argv[0]);
599             exit(EXIT_FAILURE);
600         }
601     }
602
603     if ((argc - optind) != 1) {
604         error_report("Invalid number of argument.\n"
605                      "Try `%s --help' for more information.",
606                      argv[0]);
607         exit(EXIT_FAILURE);
608     }
609
610     if (disconnect) {
611         fd = open(argv[optind], O_RDWR);
612         if (fd < 0) {
613             error_report("Cannot open %s: %s", argv[optind],
614                          strerror(errno));
615             exit(EXIT_FAILURE);
616         }
617         nbd_disconnect(fd);
618
619         close(fd);
620
621         printf("%s disconnected\n", argv[optind]);
622
623         return 0;
624     }
625
626     if (device && !verbose) {
627         int stderr_fd[2];
628         pid_t pid;
629         int ret;
630
631         if (qemu_pipe(stderr_fd) < 0) {
632             error_report("Error setting up communication pipe: %s",
633                          strerror(errno));
634             exit(EXIT_FAILURE);
635         }
636
637         /* Now daemonize, but keep a communication channel open to
638          * print errors and exit with the proper status code.
639          */
640         pid = fork();
641         if (pid < 0) {
642             error_report("Failed to fork: %s", strerror(errno));
643             exit(EXIT_FAILURE);
644         } else if (pid == 0) {
645             close(stderr_fd[0]);
646             ret = qemu_daemon(1, 0);
647
648             /* Temporarily redirect stderr to the parent's pipe...  */
649             dup2(stderr_fd[1], STDERR_FILENO);
650             if (ret < 0) {
651                 error_report("Failed to daemonize: %s", strerror(errno));
652                 exit(EXIT_FAILURE);
653             }
654
655             /* ... close the descriptor we inherited and go on.  */
656             close(stderr_fd[1]);
657         } else {
658             bool errors = false;
659             char *buf;
660
661             /* In the parent.  Print error messages from the child until
662              * it closes the pipe.
663              */
664             close(stderr_fd[1]);
665             buf = g_malloc(1024);
666             while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
667                 errors = true;
668                 ret = qemu_write_full(STDERR_FILENO, buf, ret);
669                 if (ret < 0) {
670                     exit(EXIT_FAILURE);
671                 }
672             }
673             if (ret < 0) {
674                 error_report("Cannot read from daemon: %s",
675                              strerror(errno));
676                 exit(EXIT_FAILURE);
677             }
678
679             /* Usually the daemon should not print any message.
680              * Exit with zero status in that case.
681              */
682             exit(errors);
683         }
684     }
685
686     if (device != NULL && sockpath == NULL) {
687         sockpath = g_malloc(128);
688         snprintf(sockpath, 128, SOCKET_PATH, basename(device));
689     }
690
691     saddr = nbd_build_socket_address(sockpath, bindto, port);
692
693     if (qemu_init_main_loop(&local_err)) {
694         error_report_err(local_err);
695         exit(EXIT_FAILURE);
696     }
697     bdrv_init();
698     atexit(bdrv_close_all);
699
700     if (fmt) {
701         options = qdict_new();
702         qdict_put(options, "driver", qstring_from_str(fmt));
703     }
704
705     srcpath = argv[optind];
706     blk = blk_new_open("hda", srcpath, NULL, options, flags, &local_err);
707     if (!blk) {
708         error_report("Failed to blk_new_open '%s': %s", argv[optind],
709                      error_get_pretty(local_err));
710         exit(EXIT_FAILURE);
711     }
712     bs = blk_bs(blk);
713
714     if (sn_opts) {
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),
718                                      &local_err);
719     } else if (sn_id_or_name) {
720         ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
721                                                    &local_err);
722     }
723     if (ret < 0) {
724         errno = -ret;
725         error_report("Failed to load snapshot: %s: %s",
726                      error_get_pretty(local_err), strerror(errno));
727         exit(EXIT_FAILURE);
728     }
729
730     bs->detect_zeroes = detect_zeroes;
731     fd_size = blk_getlength(blk);
732     if (fd_size < 0) {
733         error_report("Failed to determine the image length: %s",
734                      strerror(-fd_size));
735         exit(EXIT_FAILURE);
736     }
737
738     if (partition != -1) {
739         ret = find_partition(blk, partition, &dev_offset, &fd_size);
740         if (ret < 0) {
741             errno = -ret;
742             error_report("Could not find partition %d: %s", partition,
743                          strerror(errno));
744             exit(EXIT_FAILURE);
745         }
746     }
747
748     exp = nbd_export_new(blk, dev_offset, fd_size, nbdflags, nbd_export_closed,
749                          &local_err);
750     if (!exp) {
751         error_report_err(local_err);
752         exit(EXIT_FAILURE);
753     }
754
755     fd = socket_listen(saddr, &local_err);
756     if (fd < 0) {
757         error_report_err(local_err);
758         return 1;
759     }
760
761     if (device) {
762         int ret;
763
764         ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
765         if (ret != 0) {
766             error_report("Failed to create client thread: %s", strerror(ret));
767             exit(EXIT_FAILURE);
768         }
769     } else {
770         /* Shut up GCC warnings.  */
771         memset(&client_thread, 0, sizeof(client_thread));
772     }
773
774     server_fd = fd;
775     nbd_update_server_fd_handler(fd);
776
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",
781                      strerror(errno));
782         exit(EXIT_FAILURE);
783     }
784
785     state = RUNNING;
786     do {
787         main_loop_wait(false);
788         if (state == TERMINATE) {
789             state = TERMINATING;
790             nbd_export_close(exp);
791             nbd_export_put(exp);
792             exp = NULL;
793         }
794     } while (state != TERMINATED);
795
796     blk_unref(blk);
797     if (sockpath) {
798         unlink(sockpath);
799     }
800
801     qemu_opts_del(sn_opts);
802
803     if (device) {
804         void *ret;
805         pthread_join(client_thread, &ret);
806         exit(ret != NULL);
807     } else {
808         exit(EXIT_SUCCESS);
809     }
810 }