blob: 706552e64ce6266f4267fd6194e31b2a5455dba2 [file] [log] [blame]
thscd831bd2008-07-03 10:23:51 +00001/*
bellard7a5ca862008-05-27 21:13:40 +00002 * 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
Blue Swirl8167ee82009-07-16 20:47:01 +000016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
bellard7a5ca862008-05-27 21:13:40 +000017 */
18
Stefan Weil5a61cb62011-09-08 17:55:32 +020019#include "qemu-common.h"
Markus Armbruster26f54e92014-10-07 13:59:04 +020020#include "sysemu/block-backend.h"
Peter Lievenb3838a42014-08-13 19:20:18 +020021#include "block/block_int.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010022#include "block/nbd.h"
Alex Bligh6a1751b2013-08-21 16:02:47 +010023#include "qemu/main-loop.h"
Paolo Bonzini537b41f2014-02-17 14:43:51 +010024#include "qemu/sockets.h"
25#include "qemu/error-report.h"
Wenchao Xia8c116b02013-12-04 17:10:55 +080026#include "block/snapshot.h"
Peter Lievenb3838a42014-08-13 19:20:18 +020027#include "qapi/util.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010028#include "qapi/qmp/qstring.h"
bellard7a5ca862008-05-27 21:13:40 +000029
bellard7a5ca862008-05-27 21:13:40 +000030#include <stdarg.h>
31#include <stdio.h>
32#include <getopt.h>
thscd831bd2008-07-03 10:23:51 +000033#include <sys/types.h>
bellard7a5ca862008-05-27 21:13:40 +000034#include <sys/socket.h>
35#include <netinet/in.h>
36#include <netinet/tcp.h>
37#include <arpa/inet.h>
thscd831bd2008-07-03 10:23:51 +000038#include <signal.h>
Blue Swirl2bff4b62009-12-23 15:34:04 +000039#include <libgen.h>
Paolo Bonzinia517e882011-11-04 15:51:21 +010040#include <pthread.h>
thscd831bd2008-07-03 10:23:51 +000041
Peter Lieven713cc672014-08-13 19:20:19 +020042#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
Peter Lievenb3838a42014-08-13 19:20:18 +020046#define QEMU_NBD_OPT_DETECT_ZEROES 4
bellard7a5ca862008-05-27 21:13:40 +000047
Paolo Bonziniaf49bbb2011-09-19 14:03:37 +020048static NBDExport *exp;
blueswir1b1d8e522008-10-26 13:43:07 +000049static int verbose;
Paolo Bonzinia517e882011-11-04 15:51:21 +010050static char *srcpath;
Daniel P. Berrange48bec072015-09-16 14:52:23 +010051static SocketAddress *saddr;
Paolo Bonzini7860a382012-09-18 13:31:56 +020052static int persistent = 0;
53static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state;
Paolo Bonzinia61c6782011-09-12 17:28:11 +020054static int shared = 1;
55static int nb_fds;
Fam Zhenge4afbf42015-05-19 10:50:59 +000056static int server_fd;
bellard7a5ca862008-05-27 21:13:40 +000057
58static void usage(const char *name)
59{
Paolo Bonzinib033cd82012-07-18 14:50:52 +020060 (printf) (
bellard7a5ca862008-05-27 21:13:40 +000061"Usage: %s [OPTIONS] FILE\n"
62"QEMU Disk Network Block Device Server\n"
63"\n"
Peter Lieven713cc672014-08-13 19:20:19 +020064" -h, --help display this help and exit\n"
65" -V, --version output version information and exit\n"
bellard7a5ca862008-05-27 21:13:40 +000066"\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020067"Connection properties:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020068" -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"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020075"\n"
76"Exposing part of the image:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020077" -o, --offset=OFFSET offset into the image\n"
78" -P, --partition=NUM only expose partition NUM\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020079"\n"
80#ifdef __linux__
81"Kernel NBD client support:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020082" -c, --connect=DEV connect FILE to the local NBD device DEV\n"
83" -d, --disconnect disconnect the specified device\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020084"\n"
85#endif
86"\n"
87"Block device options:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020088" -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"
Wenchao Xia8c116b02013-12-04 17:10:55 +080093" -l, --load-snapshot=SNAPSHOT_PARAM\n"
Peter Lieven713cc672014-08-13 19:20:19 +020094" 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"
Peter Lieven713cc672014-08-13 19:20:19 +0200100" --aio=MODE set AIO mode (native or threads)\n"
Peter Lievenb3838a42014-08-13 19:20:18 +0200101" --discard=MODE set discard mode (ignore, unmap)\n"
Andrey Korolyov6883de62015-07-31 22:12:54 +0300102" --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200103"\n"
104"Report bugs to <qemu-devel@nongnu.org>\n"
Laurent Vivierc2e28722010-09-17 20:37:25 +0200105 , name, NBD_DEFAULT_PORT, "DEVICE");
bellard7a5ca862008-05-27 21:13:40 +0000106}
107
108static void version(const char *name)
109{
110 printf(
ths315bc7a2008-07-18 18:06:23 +0000111"%s version 0.0.1\n"
bellard7a5ca862008-05-27 21:13:40 +0000112"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"
ths315bc7a2008-07-18 18:06:23 +0000117 , name);
bellard7a5ca862008-05-27 21:13:40 +0000118}
119
120struct 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
134static 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;
Max Reitzac973932015-02-25 13:08:23 -0500144
145 r->start_sector_abs = le32_to_cpup((uint32_t *)(p + 8));
146 r->nb_sectors_abs = le32_to_cpup((uint32_t *)(p + 12));
bellard7a5ca862008-05-27 21:13:40 +0000147}
148
Max Reitz4c58e802014-11-18 12:21:19 +0100149static int find_partition(BlockBackend *blk, int partition,
bellard7a5ca862008-05-27 21:13:40 +0000150 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;
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900156 int ret;
bellard7a5ca862008-05-27 21:13:40 +0000157
Max Reitz4c58e802014-11-18 12:21:19 +0100158 if ((ret = blk_read(blk, 0, data, 1)) < 0) {
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900159 errno = -ret;
Markus Armbruster85b01e02015-12-18 16:35:04 +0100160 error_report("error while reading: %s", strerror(errno));
161 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900162 }
bellard7a5ca862008-05-27 21:13:40 +0000163
164 if (data[510] != 0x55 || data[511] != 0xaa) {
Paolo Bonzini185b4332012-03-05 08:56:10 +0100165 return -EINVAL;
bellard7a5ca862008-05-27 21:13:40 +0000166 }
167
168 for (i = 0; i < 4; i++) {
169 read_partition(&data[446 + 16 * i], &mbr[i]);
170
Max Reitz453b07b2015-02-25 13:08:15 -0500171 if (!mbr[i].system || !mbr[i].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000172 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500173 }
bellard7a5ca862008-05-27 21:13:40 +0000174
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
Max Reitz4c58e802014-11-18 12:21:19 +0100180 if ((ret = blk_read(blk, mbr[i].start_sector_abs, data1, 1)) < 0) {
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900181 errno = -ret;
Markus Armbruster85b01e02015-12-18 16:35:04 +0100182 error_report("error while reading: %s", strerror(errno));
183 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900184 }
bellard7a5ca862008-05-27 21:13:40 +0000185
186 for (j = 0; j < 4; j++) {
187 read_partition(&data1[446 + 16 * j], &ext[j]);
Max Reitz453b07b2015-02-25 13:08:15 -0500188 if (!ext[j].system || !ext[j].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000189 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500190 }
bellard7a5ca862008-05-27 21:13:40 +0000191
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
Paolo Bonzini185b4332012-03-05 08:56:10 +0100206 return -ENOENT;
bellard7a5ca862008-05-27 21:13:40 +0000207}
208
Paolo Bonzinibb345112011-11-04 15:51:19 +0100209static void termsig_handler(int signum)
210{
Paolo Bonzini7860a382012-09-18 13:31:56 +0200211 state = TERMINATE;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200212 qemu_notify_event();
Paolo Bonzinibb345112011-11-04 15:51:19 +0100213}
214
Paolo Bonzini537b41f2014-02-17 14:43:51 +0100215
Paolo Bonzinia517e882011-11-04 15:51:21 +0100216static void *show_parts(void *arg)
thscd831bd2008-07-03 10:23:51 +0000217{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100218 char *device = arg;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100219 int nbd;
thscd831bd2008-07-03 10:23:51 +0000220
Paolo Bonzinia517e882011-11-04 15:51:21 +0100221 /* 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);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100227 if (nbd >= 0) {
Paolo Bonzinia517e882011-11-04 15:51:21 +0100228 close(nbd);
thscd831bd2008-07-03 10:23:51 +0000229 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100230 return NULL;
231}
232
233static void *nbd_client_thread(void *arg)
234{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100235 char *device = arg;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100236 off_t size;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100237 uint32_t nbdflags;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100238 int fd, sock;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100239 int ret;
240 pthread_t show_parts_thread;
Max Reitz1ce52842015-01-26 21:02:59 -0500241 Error *local_error = NULL;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100242
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100243
244 sock = socket_connect(saddr, &local_error, NULL, NULL);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100245 if (sock < 0) {
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100246 error_report_err(local_error);
Stefan Hajnoczidc10e8b2012-01-05 13:16:07 +0000247 goto out;
248 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100249
250 ret = nbd_receive_negotiate(sock, NULL, &nbdflags,
Max Reitz3f472652015-02-25 13:08:25 -0500251 &size, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100252 if (ret < 0) {
Max Reitz1ce52842015-01-26 21:02:59 -0500253 if (local_error) {
Markus Armbruster78288672015-12-18 16:35:07 +0100254 error_report_err(local_error);
Max Reitz1ce52842015-01-26 21:02:59 -0500255 }
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100256 goto out_socket;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100257 }
258
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100259 fd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100260 if (fd < 0) {
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100261 /* Linux-only, we can use %m in printf. */
Hani Benhabiles5672ee52014-05-13 00:35:16 +0100262 fprintf(stderr, "Failed to open %s: %m\n", device);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100263 goto out_socket;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100264 }
265
Max Reitz3f472652015-02-25 13:08:25 -0500266 ret = nbd_init(fd, sock, nbdflags, size);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100267 if (ret < 0) {
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100268 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100269 }
270
271 /* update partition table */
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100272 pthread_create(&show_parts_thread, NULL, show_parts, device);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100273
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100274 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 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100281
282 ret = nbd_client(fd);
283 if (ret) {
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100284 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100285 }
286 close(fd);
287 kill(getpid(), SIGTERM);
288 return (void *) EXIT_SUCCESS;
289
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100290out_fd:
291 close(fd);
292out_socket:
293 closesocket(sock);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100294out:
295 kill(getpid(), SIGTERM);
296 return (void *) EXIT_FAILURE;
thscd831bd2008-07-03 10:23:51 +0000297}
298
Fam Zhenge4afbf42015-05-19 10:50:59 +0000299static int nbd_can_accept(void)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200300{
301 return nb_fds < shared;
302}
303
Paolo Bonzini7860a382012-09-18 13:31:56 +0200304static void nbd_export_closed(NBDExport *exp)
305{
306 assert(state == TERMINATING);
307 state = TERMINATED;
308}
309
Fam Zhenge4afbf42015-05-19 10:50:59 +0000310static void nbd_update_server_fd_handler(int fd);
311
Paolo Bonzini1743b512011-09-19 14:33:23 +0200312static void nbd_client_closed(NBDClient *client)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200313{
Paolo Bonzini1743b512011-09-19 14:33:23 +0200314 nb_fds--;
Paolo Bonzini7860a382012-09-18 13:31:56 +0200315 if (nb_fds == 0 && !persistent && state == RUNNING) {
316 state = TERMINATE;
317 }
Fam Zhenge4afbf42015-05-19 10:50:59 +0000318 nbd_update_server_fd_handler(server_fd);
Paolo Bonzini7860a382012-09-18 13:31:56 +0200319 nbd_client_put(client);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200320}
321
322static void nbd_accept(void *opaque)
323{
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200324 struct sockaddr_in addr;
325 socklen_t addr_len = sizeof(addr);
326
327 int fd = accept(server_fd, (struct sockaddr *)&addr, &addr_len);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100328 if (fd < 0) {
329 perror("accept");
330 return;
331 }
332
Paolo Bonzini7860a382012-09-18 13:31:56 +0200333 if (state >= TERMINATE) {
334 close(fd);
335 return;
336 }
337
Hani Benhabiles36af5992014-05-13 00:35:15 +0100338 if (nbd_client_new(exp, fd, nbd_client_closed)) {
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200339 nb_fds++;
Fam Zhenge4afbf42015-05-19 10:50:59 +0000340 nbd_update_server_fd_handler(server_fd);
Hani Benhabiles36af5992014-05-13 00:35:15 +0100341 } else {
Hani Benhabiles27e5eae2014-05-31 22:39:42 +0100342 shutdown(fd, 2);
Hani Benhabiles36af5992014-05-13 00:35:15 +0100343 close(fd);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200344 }
345}
346
Fam Zhenge4afbf42015-05-19 10:50:59 +0000347static 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
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100356
357static 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) {
Eric Blake2d32add2015-10-26 16:34:55 -0600365 saddr->type = SOCKET_ADDRESS_KIND_UNIX;
366 saddr->u.q_unix = g_new0(UnixSocketAddress, 1);
367 saddr->u.q_unix->path = g_strdup(sockpath);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100368 } else {
Eric Blake2d32add2015-10-26 16:34:55 -0600369 saddr->type = SOCKET_ADDRESS_KIND_INET;
370 saddr->u.inet = g_new0(InetSocketAddress, 1);
371 saddr->u.inet->host = g_strdup(bindto);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100372 if (port) {
Eric Blake2d32add2015-10-26 16:34:55 -0600373 saddr->u.inet->port = g_strdup(port);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100374 } else {
Eric Blake2d32add2015-10-26 16:34:55 -0600375 saddr->u.inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100376 }
377 }
378
379 return saddr;
380}
381
382
bellard7a5ca862008-05-27 21:13:40 +0000383int main(int argc, char **argv)
384{
Markus Armbruster26f54e92014-10-07 13:59:04 +0200385 BlockBackend *blk;
bellard7a5ca862008-05-27 21:13:40 +0000386 BlockDriverState *bs;
387 off_t dev_offset = 0;
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200388 uint32_t nbdflags = 0;
thscd831bd2008-07-03 10:23:51 +0000389 bool disconnect = false;
bellard7a5ca862008-05-27 21:13:40 +0000390 const char *bindto = "0.0.0.0";
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100391 const char *port = NULL;
392 char *sockpath = NULL;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100393 char *device = NULL;
bellard7a5ca862008-05-27 21:13:40 +0000394 off_t fd_size;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800395 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:";
bellard7a5ca862008-05-27 21:13:40 +0000398 struct option lopt[] = {
Blue Swirl660f11b2009-07-31 21:16:51 +0000399 { "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' },
Wenchao Xia8c116b02013-12-04 17:10:55 +0800410 { "load-snapshot", 1, NULL, 'l' },
Blue Swirl660f11b2009-07-31 21:16:51 +0000411 { "nocache", 0, NULL, 'n' },
Paolo Bonzini39a52352012-07-18 14:57:15 +0200412 { "cache", 1, NULL, QEMU_NBD_OPT_CACHE },
Paolo Bonzini39a52352012-07-18 14:57:15 +0200413 { "aio", 1, NULL, QEMU_NBD_OPT_AIO },
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100414 { "discard", 1, NULL, QEMU_NBD_OPT_DISCARD },
Peter Lievenb3838a42014-08-13 19:20:18 +0200415 { "detect-zeroes", 1, NULL, QEMU_NBD_OPT_DETECT_ZEROES },
Blue Swirl660f11b2009-07-31 21:16:51 +0000416 { "shared", 1, NULL, 'e' },
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000417 { "format", 1, NULL, 'f' },
Blue Swirl660f11b2009-07-31 21:16:51 +0000418 { "persistent", 0, NULL, 't' },
419 { "verbose", 0, NULL, 'v' },
420 { NULL, 0, NULL, 0 }
bellard7a5ca862008-05-27 21:13:40 +0000421 };
422 int ch;
423 int opt_ind = 0;
bellard7a5ca862008-05-27 21:13:40 +0000424 char *end;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200425 int flags = BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000426 int partition = -1;
Max Reitz4fbec262015-02-05 13:58:19 -0500427 int ret = 0;
ths3b05a8e2008-07-03 12:45:02 +0000428 int fd;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200429 bool seen_cache = false;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100430 bool seen_discard = false;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200431 bool seen_aio = false;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100432 pthread_t client_thread;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000433 const char *fmt = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200434 Error *local_err = NULL;
Peter Lievenb3838a42014-08-13 19:20:18 +0200435 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
Max Reitz4fbec262015-02-05 13:58:19 -0500436 QDict *options = NULL;
bellard7a5ca862008-05-27 21:13:40 +0000437
Paolo Bonzinia517e882011-11-04 15:51:21 +0100438 /* 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 */
Paolo Bonzinibb345112011-11-04 15:51:19 +0100441 struct sigaction sa_sigterm;
Paolo Bonzinibb345112011-11-04 15:51:19 +0100442 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
443 sa_sigterm.sa_handler = termsig_handler;
444 sigaction(SIGTERM, &sa_sigterm, NULL);
Fam Zheng10f5bff2014-02-10 14:48:51 +0800445 qemu_init_exec_dir(argv[0]);
Paolo Bonzinibb345112011-11-04 15:51:19 +0100446
bellard7a5ca862008-05-27 21:13:40 +0000447 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
448 switch (ch) {
449 case 's':
ths2f726482008-07-03 11:47:46 +0000450 flags |= BDRV_O_SNAPSHOT;
451 break;
452 case 'n':
Paolo Bonzini39a52352012-07-18 14:57:15 +0200453 optarg = (char *) "none";
454 /* fallthrough */
455 case QEMU_NBD_OPT_CACHE:
456 if (seen_cache) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100457 error_report("-n and --cache can only be specified once");
458 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200459 }
460 seen_cache = true;
461 if (bdrv_parse_cache_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100462 error_report("Invalid cache mode `%s'", optarg);
463 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200464 }
bellard7a5ca862008-05-27 21:13:40 +0000465 break;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200466 case QEMU_NBD_OPT_AIO:
467 if (seen_aio) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100468 error_report("--aio can only be specified once");
469 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200470 }
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 {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100477 error_report("invalid aio mode `%s'", optarg);
478 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200479 }
480 break;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100481 case QEMU_NBD_OPT_DISCARD:
482 if (seen_discard) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100483 error_report("--discard can only be specified once");
484 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100485 }
486 seen_discard = true;
487 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100488 error_report("Invalid discard mode `%s'", optarg);
489 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100490 }
491 break;
Peter Lievenb3838a42014-08-13 19:20:18 +0200492 case QEMU_NBD_OPT_DETECT_ZEROES:
493 detect_zeroes =
494 qapi_enum_parse(BlockdevDetectZeroesOptions_lookup,
495 optarg,
Eric Blake7fb1cf12015-11-18 01:52:57 -0700496 BLOCKDEV_DETECT_ZEROES_OPTIONS__MAX,
Peter Lievenb3838a42014-08-13 19:20:18 +0200497 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
498 &local_err);
499 if (local_err) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100500 error_report("Failed to parse detect_zeroes mode: %s",
501 error_get_pretty(local_err));
502 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200503 }
504 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
505 !(flags & BDRV_O_UNMAP)) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100506 error_report("setting detect-zeroes to unmap is not allowed "
507 "without setting discard operation to unmap");
508 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200509 }
510 break;
bellard7a5ca862008-05-27 21:13:40 +0000511 case 'b':
512 bindto = optarg;
513 break;
514 case 'p':
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100515 port = optarg;
bellard7a5ca862008-05-27 21:13:40 +0000516 break;
517 case 'o':
518 dev_offset = strtoll (optarg, &end, 0);
519 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100520 error_report("Invalid offset `%s'", optarg);
521 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000522 }
523 if (dev_offset < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100524 error_report("Offset must be positive `%s'", optarg);
525 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000526 }
527 break;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800528 case 'l':
529 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +0100530 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
531 optarg, false);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800532 if (!sn_opts) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100533 error_report("Failed in parsing snapshot param `%s'",
534 optarg);
535 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800536 }
537 } else {
538 sn_id_or_name = optarg;
539 }
540 /* fall through */
bellard7a5ca862008-05-27 21:13:40 +0000541 case 'r':
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200542 nbdflags |= NBD_FLAG_READ_ONLY;
Naphtali Sprei07108b22010-03-14 15:19:57 +0200543 flags &= ~BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000544 break;
545 case 'P':
546 partition = strtol(optarg, &end, 0);
Peter Lieven713cc672014-08-13 19:20:19 +0200547 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100548 error_report("Invalid partition `%s'", optarg);
549 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200550 }
551 if (partition < 1 || partition > 8) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100552 error_report("Invalid partition %d", partition);
553 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200554 }
bellard7a5ca862008-05-27 21:13:40 +0000555 break;
thscd831bd2008-07-03 10:23:51 +0000556 case 'k':
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100557 sockpath = optarg;
Peter Lieven713cc672014-08-13 19:20:19 +0200558 if (sockpath[0] != '/') {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100559 error_report("socket path must be absolute\n");
560 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200561 }
thscd831bd2008-07-03 10:23:51 +0000562 break;
563 case 'd':
564 disconnect = true;
565 break;
566 case 'c':
567 device = optarg;
568 break;
ths3b05a8e2008-07-03 12:45:02 +0000569 case 'e':
570 shared = strtol(optarg, &end, 0);
571 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100572 error_report("Invalid shared device number '%s'", optarg);
573 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000574 }
575 if (shared < 1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100576 error_report("Shared device number must be greater than 0\n");
577 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000578 }
579 break;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000580 case 'f':
581 fmt = optarg;
582 break;
Peter Lieven713cc672014-08-13 19:20:19 +0200583 case 't':
584 persistent = 1;
585 break;
bellard7a5ca862008-05-27 21:13:40 +0000586 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 '?':
Markus Armbruster85b01e02015-12-18 16:35:04 +0100598 error_report("Try `%s --help' for more information.", argv[0]);
599 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000600 }
601 }
602
603 if ((argc - optind) != 1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100604 error_report("Invalid number of argument.\n"
605 "Try `%s --help' for more information.",
606 argv[0]);
607 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000608 }
609
thscd831bd2008-07-03 10:23:51 +0000610 if (disconnect) {
611 fd = open(argv[optind], O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100612 if (fd < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100613 error_report("Cannot open %s: %s", argv[optind],
614 strerror(errno));
615 exit(EXIT_FAILURE);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100616 }
thscd831bd2008-07-03 10:23:51 +0000617 nbd_disconnect(fd);
618
619 close(fd);
620
621 printf("%s disconnected\n", argv[optind]);
622
Peter Lieven713cc672014-08-13 19:20:19 +0200623 return 0;
thscd831bd2008-07-03 10:23:51 +0000624 }
625
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100626 if (device && !verbose) {
627 int stderr_fd[2];
628 pid_t pid;
629 int ret;
630
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100631 if (qemu_pipe(stderr_fd) < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100632 error_report("Error setting up communication pipe: %s",
633 strerror(errno));
634 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100635 }
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();
Max Reitz70d47392015-02-25 13:08:22 -0500641 if (pid < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100642 error_report("Failed to fork: %s", strerror(errno));
643 exit(EXIT_FAILURE);
Max Reitz70d47392015-02-25 13:08:22 -0500644 } else if (pid == 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100645 close(stderr_fd[0]);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400646 ret = qemu_daemon(1, 0);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100647
648 /* Temporarily redirect stderr to the parent's pipe... */
649 dup2(stderr_fd[1], STDERR_FILENO);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100650 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100651 error_report("Failed to daemonize: %s", strerror(errno));
652 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100653 }
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);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100669 if (ret < 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100670 exit(EXIT_FAILURE);
671 }
672 }
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100673 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100674 error_report("Cannot read from daemon: %s",
675 strerror(errno));
676 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100677 }
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
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100686 if (device != NULL && sockpath == NULL) {
687 sockpath = g_malloc(128);
688 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
thscd831bd2008-07-03 10:23:51 +0000689 }
690
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100691 saddr = nbd_build_socket_address(sockpath, bindto, port);
692
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300693 if (qemu_init_main_loop(&local_err)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +0100694 error_report_err(local_err);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300695 exit(EXIT_FAILURE);
696 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100697 bdrv_init();
698 atexit(bdrv_close_all);
699
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000700 if (fmt) {
Max Reitz4fbec262015-02-05 13:58:19 -0500701 options = qdict_new();
702 qdict_put(options, "driver", qstring_from_str(fmt));
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000703 }
704
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100705 srcpath = argv[optind];
Max Reitz4fbec262015-02-05 13:58:19 -0500706 blk = blk_new_open("hda", srcpath, NULL, options, flags, &local_err);
707 if (!blk) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100708 error_report("Failed to blk_new_open '%s': %s", argv[optind],
709 error_get_pretty(local_err));
710 exit(EXIT_FAILURE);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100711 }
Max Reitz4fbec262015-02-05 13:58:19 -0500712 bs = blk_bs(blk);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100713
Wenchao Xia8c116b02013-12-04 17:10:55 +0800714 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;
Markus Armbruster85b01e02015-12-18 16:35:04 +0100725 error_report("Failed to load snapshot: %s: %s",
726 error_get_pretty(local_err), strerror(errno));
727 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800728 }
729
Peter Lievenb3838a42014-08-13 19:20:18 +0200730 bs->detect_zeroes = detect_zeroes;
Max Reitz4c58e802014-11-18 12:21:19 +0100731 fd_size = blk_getlength(blk);
Max Reitz98f44bb2015-02-25 13:08:21 -0500732 if (fd_size < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100733 error_report("Failed to determine the image length: %s",
734 strerror(-fd_size));
735 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -0500736 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100737
Paolo Bonzini185b4332012-03-05 08:56:10 +0100738 if (partition != -1) {
Max Reitz4c58e802014-11-18 12:21:19 +0100739 ret = find_partition(blk, partition, &dev_offset, &fd_size);
Paolo Bonzini185b4332012-03-05 08:56:10 +0100740 if (ret < 0) {
741 errno = -ret;
Markus Armbruster85b01e02015-12-18 16:35:04 +0100742 error_report("Could not find partition %d: %s", partition,
743 strerror(errno));
744 exit(EXIT_FAILURE);
Paolo Bonzini185b4332012-03-05 08:56:10 +0100745 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100746 }
747
Max Reitz98f44bb2015-02-25 13:08:21 -0500748 exp = nbd_export_new(blk, dev_offset, fd_size, nbdflags, nbd_export_closed,
749 &local_err);
750 if (!exp) {
Markus Armbruster4fffeb52015-12-18 16:35:05 +0100751 error_report_err(local_err);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100752 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -0500753 }
ths3b05a8e2008-07-03 12:45:02 +0000754
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100755 fd = socket_listen(saddr, &local_err);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100756 if (fd < 0) {
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100757 error_report_err(local_err);
bellard7a5ca862008-05-27 21:13:40 +0000758 return 1;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200759 }
Paolo Bonzinif1ef5552011-11-04 15:51:23 +0100760
761 if (device) {
762 int ret;
763
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100764 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +0100765 if (ret != 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100766 error_report("Failed to create client thread: %s", strerror(ret));
767 exit(EXIT_FAILURE);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +0100768 }
769 } else {
770 /* Shut up GCC warnings. */
771 memset(&client_thread, 0, sizeof(client_thread));
772 }
773
Fam Zhenge4afbf42015-05-19 10:50:59 +0000774 server_fd = fd;
775 nbd_update_server_fd_handler(fd);
bellard7a5ca862008-05-27 21:13:40 +0000776
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400777 /* now when the initialization is (almost) complete, chdir("/")
778 * to free any busy filesystems */
779 if (chdir("/") < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100780 error_report("Could not chdir to root directory: %s",
781 strerror(errno));
782 exit(EXIT_FAILURE);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400783 }
784
Paolo Bonzini7860a382012-09-18 13:31:56 +0200785 state = RUNNING;
ths3b05a8e2008-07-03 12:45:02 +0000786 do {
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200787 main_loop_wait(false);
Paolo Bonzini7860a382012-09-18 13:31:56 +0200788 if (state == TERMINATE) {
789 state = TERMINATING;
790 nbd_export_close(exp);
791 nbd_export_put(exp);
792 exp = NULL;
793 }
794 } while (state != TERMINATED);
ths3b05a8e2008-07-03 12:45:02 +0000795
Markus Armbruster26f54e92014-10-07 13:59:04 +0200796 blk_unref(blk);
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100797 if (sockpath) {
798 unlink(sockpath);
799 }
bellard7a5ca862008-05-27 21:13:40 +0000800
Markus Armbrusterfbf28a42014-09-29 16:07:55 +0200801 qemu_opts_del(sn_opts);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800802
Paolo Bonzinia517e882011-11-04 15:51:21 +0100803 if (device) {
804 void *ret;
805 pthread_join(client_thread, &ret);
806 exit(ret != NULL);
807 } else {
808 exit(EXIT_SUCCESS);
809 }
bellard7a5ca862008-05-27 21:13:40 +0000810}