blob: d5c32deab1ba8fee9d0deb7d2670812f412dbb62 [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) {
254 fprintf(stderr, "%s\n", error_get_pretty(local_error));
255 error_free(local_error);
256 }
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100257 goto out_socket;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100258 }
259
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100260 fd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100261 if (fd < 0) {
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100262 /* Linux-only, we can use %m in printf. */
Hani Benhabiles5672ee52014-05-13 00:35:16 +0100263 fprintf(stderr, "Failed to open %s: %m\n", device);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100264 goto out_socket;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100265 }
266
Max Reitz3f472652015-02-25 13:08:25 -0500267 ret = nbd_init(fd, sock, nbdflags, size);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100268 if (ret < 0) {
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100269 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100270 }
271
272 /* update partition table */
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100273 pthread_create(&show_parts_thread, NULL, show_parts, device);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100274
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100275 if (verbose) {
276 fprintf(stderr, "NBD device %s is now connected to %s\n",
277 device, srcpath);
278 } else {
279 /* Close stderr so that the qemu-nbd process exits. */
280 dup2(STDOUT_FILENO, STDERR_FILENO);
281 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100282
283 ret = nbd_client(fd);
284 if (ret) {
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100285 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100286 }
287 close(fd);
288 kill(getpid(), SIGTERM);
289 return (void *) EXIT_SUCCESS;
290
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100291out_fd:
292 close(fd);
293out_socket:
294 closesocket(sock);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100295out:
296 kill(getpid(), SIGTERM);
297 return (void *) EXIT_FAILURE;
thscd831bd2008-07-03 10:23:51 +0000298}
299
Fam Zhenge4afbf42015-05-19 10:50:59 +0000300static int nbd_can_accept(void)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200301{
302 return nb_fds < shared;
303}
304
Paolo Bonzini7860a382012-09-18 13:31:56 +0200305static void nbd_export_closed(NBDExport *exp)
306{
307 assert(state == TERMINATING);
308 state = TERMINATED;
309}
310
Fam Zhenge4afbf42015-05-19 10:50:59 +0000311static void nbd_update_server_fd_handler(int fd);
312
Paolo Bonzini1743b512011-09-19 14:33:23 +0200313static void nbd_client_closed(NBDClient *client)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200314{
Paolo Bonzini1743b512011-09-19 14:33:23 +0200315 nb_fds--;
Paolo Bonzini7860a382012-09-18 13:31:56 +0200316 if (nb_fds == 0 && !persistent && state == RUNNING) {
317 state = TERMINATE;
318 }
Fam Zhenge4afbf42015-05-19 10:50:59 +0000319 nbd_update_server_fd_handler(server_fd);
Paolo Bonzini7860a382012-09-18 13:31:56 +0200320 nbd_client_put(client);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200321}
322
323static void nbd_accept(void *opaque)
324{
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200325 struct sockaddr_in addr;
326 socklen_t addr_len = sizeof(addr);
327
328 int fd = accept(server_fd, (struct sockaddr *)&addr, &addr_len);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100329 if (fd < 0) {
330 perror("accept");
331 return;
332 }
333
Paolo Bonzini7860a382012-09-18 13:31:56 +0200334 if (state >= TERMINATE) {
335 close(fd);
336 return;
337 }
338
Hani Benhabiles36af5992014-05-13 00:35:15 +0100339 if (nbd_client_new(exp, fd, nbd_client_closed)) {
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200340 nb_fds++;
Fam Zhenge4afbf42015-05-19 10:50:59 +0000341 nbd_update_server_fd_handler(server_fd);
Hani Benhabiles36af5992014-05-13 00:35:15 +0100342 } else {
Hani Benhabiles27e5eae2014-05-31 22:39:42 +0100343 shutdown(fd, 2);
Hani Benhabiles36af5992014-05-13 00:35:15 +0100344 close(fd);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200345 }
346}
347
Fam Zhenge4afbf42015-05-19 10:50:59 +0000348static void nbd_update_server_fd_handler(int fd)
349{
350 if (nbd_can_accept()) {
351 qemu_set_fd_handler(fd, nbd_accept, NULL, (void *)(uintptr_t)fd);
352 } else {
353 qemu_set_fd_handler(fd, NULL, NULL, NULL);
354 }
355}
356
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100357
358static SocketAddress *nbd_build_socket_address(const char *sockpath,
359 const char *bindto,
360 const char *port)
361{
362 SocketAddress *saddr;
363
364 saddr = g_new0(SocketAddress, 1);
365 if (sockpath) {
Eric Blake2d32add2015-10-26 16:34:55 -0600366 saddr->type = SOCKET_ADDRESS_KIND_UNIX;
367 saddr->u.q_unix = g_new0(UnixSocketAddress, 1);
368 saddr->u.q_unix->path = g_strdup(sockpath);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100369 } else {
Eric Blake2d32add2015-10-26 16:34:55 -0600370 saddr->type = SOCKET_ADDRESS_KIND_INET;
371 saddr->u.inet = g_new0(InetSocketAddress, 1);
372 saddr->u.inet->host = g_strdup(bindto);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100373 if (port) {
Eric Blake2d32add2015-10-26 16:34:55 -0600374 saddr->u.inet->port = g_strdup(port);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100375 } else {
Eric Blake2d32add2015-10-26 16:34:55 -0600376 saddr->u.inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100377 }
378 }
379
380 return saddr;
381}
382
383
bellard7a5ca862008-05-27 21:13:40 +0000384int main(int argc, char **argv)
385{
Markus Armbruster26f54e92014-10-07 13:59:04 +0200386 BlockBackend *blk;
bellard7a5ca862008-05-27 21:13:40 +0000387 BlockDriverState *bs;
388 off_t dev_offset = 0;
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200389 uint32_t nbdflags = 0;
thscd831bd2008-07-03 10:23:51 +0000390 bool disconnect = false;
bellard7a5ca862008-05-27 21:13:40 +0000391 const char *bindto = "0.0.0.0";
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100392 const char *port = NULL;
393 char *sockpath = NULL;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100394 char *device = NULL;
bellard7a5ca862008-05-27 21:13:40 +0000395 off_t fd_size;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800396 QemuOpts *sn_opts = NULL;
397 const char *sn_id_or_name = NULL;
398 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:";
bellard7a5ca862008-05-27 21:13:40 +0000399 struct option lopt[] = {
Blue Swirl660f11b2009-07-31 21:16:51 +0000400 { "help", 0, NULL, 'h' },
401 { "version", 0, NULL, 'V' },
402 { "bind", 1, NULL, 'b' },
403 { "port", 1, NULL, 'p' },
404 { "socket", 1, NULL, 'k' },
405 { "offset", 1, NULL, 'o' },
406 { "read-only", 0, NULL, 'r' },
407 { "partition", 1, NULL, 'P' },
408 { "connect", 1, NULL, 'c' },
409 { "disconnect", 0, NULL, 'd' },
410 { "snapshot", 0, NULL, 's' },
Wenchao Xia8c116b02013-12-04 17:10:55 +0800411 { "load-snapshot", 1, NULL, 'l' },
Blue Swirl660f11b2009-07-31 21:16:51 +0000412 { "nocache", 0, NULL, 'n' },
Paolo Bonzini39a52352012-07-18 14:57:15 +0200413 { "cache", 1, NULL, QEMU_NBD_OPT_CACHE },
Paolo Bonzini39a52352012-07-18 14:57:15 +0200414 { "aio", 1, NULL, QEMU_NBD_OPT_AIO },
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100415 { "discard", 1, NULL, QEMU_NBD_OPT_DISCARD },
Peter Lievenb3838a42014-08-13 19:20:18 +0200416 { "detect-zeroes", 1, NULL, QEMU_NBD_OPT_DETECT_ZEROES },
Blue Swirl660f11b2009-07-31 21:16:51 +0000417 { "shared", 1, NULL, 'e' },
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000418 { "format", 1, NULL, 'f' },
Blue Swirl660f11b2009-07-31 21:16:51 +0000419 { "persistent", 0, NULL, 't' },
420 { "verbose", 0, NULL, 'v' },
421 { NULL, 0, NULL, 0 }
bellard7a5ca862008-05-27 21:13:40 +0000422 };
423 int ch;
424 int opt_ind = 0;
bellard7a5ca862008-05-27 21:13:40 +0000425 char *end;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200426 int flags = BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000427 int partition = -1;
Max Reitz4fbec262015-02-05 13:58:19 -0500428 int ret = 0;
ths3b05a8e2008-07-03 12:45:02 +0000429 int fd;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200430 bool seen_cache = false;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100431 bool seen_discard = false;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200432 bool seen_aio = false;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100433 pthread_t client_thread;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000434 const char *fmt = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200435 Error *local_err = NULL;
Peter Lievenb3838a42014-08-13 19:20:18 +0200436 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
Max Reitz4fbec262015-02-05 13:58:19 -0500437 QDict *options = NULL;
bellard7a5ca862008-05-27 21:13:40 +0000438
Paolo Bonzinia517e882011-11-04 15:51:21 +0100439 /* The client thread uses SIGTERM to interrupt the server. A signal
440 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
441 */
Paolo Bonzinibb345112011-11-04 15:51:19 +0100442 struct sigaction sa_sigterm;
Paolo Bonzinibb345112011-11-04 15:51:19 +0100443 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
444 sa_sigterm.sa_handler = termsig_handler;
445 sigaction(SIGTERM, &sa_sigterm, NULL);
Fam Zheng10f5bff2014-02-10 14:48:51 +0800446 qemu_init_exec_dir(argv[0]);
Paolo Bonzinibb345112011-11-04 15:51:19 +0100447
bellard7a5ca862008-05-27 21:13:40 +0000448 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
449 switch (ch) {
450 case 's':
ths2f726482008-07-03 11:47:46 +0000451 flags |= BDRV_O_SNAPSHOT;
452 break;
453 case 'n':
Paolo Bonzini39a52352012-07-18 14:57:15 +0200454 optarg = (char *) "none";
455 /* fallthrough */
456 case QEMU_NBD_OPT_CACHE:
457 if (seen_cache) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100458 error_report("-n and --cache can only be specified once");
459 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200460 }
461 seen_cache = true;
462 if (bdrv_parse_cache_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100463 error_report("Invalid cache mode `%s'", optarg);
464 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200465 }
bellard7a5ca862008-05-27 21:13:40 +0000466 break;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200467 case QEMU_NBD_OPT_AIO:
468 if (seen_aio) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100469 error_report("--aio can only be specified once");
470 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200471 }
472 seen_aio = true;
473 if (!strcmp(optarg, "native")) {
474 flags |= BDRV_O_NATIVE_AIO;
475 } else if (!strcmp(optarg, "threads")) {
476 /* this is the default */
477 } else {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100478 error_report("invalid aio mode `%s'", optarg);
479 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200480 }
481 break;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100482 case QEMU_NBD_OPT_DISCARD:
483 if (seen_discard) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100484 error_report("--discard can only be specified once");
485 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100486 }
487 seen_discard = true;
488 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100489 error_report("Invalid discard mode `%s'", optarg);
490 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100491 }
492 break;
Peter Lievenb3838a42014-08-13 19:20:18 +0200493 case QEMU_NBD_OPT_DETECT_ZEROES:
494 detect_zeroes =
495 qapi_enum_parse(BlockdevDetectZeroesOptions_lookup,
496 optarg,
Eric Blake7fb1cf12015-11-18 01:52:57 -0700497 BLOCKDEV_DETECT_ZEROES_OPTIONS__MAX,
Peter Lievenb3838a42014-08-13 19:20:18 +0200498 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
499 &local_err);
500 if (local_err) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100501 error_report("Failed to parse detect_zeroes mode: %s",
502 error_get_pretty(local_err));
503 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200504 }
505 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
506 !(flags & BDRV_O_UNMAP)) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100507 error_report("setting detect-zeroes to unmap is not allowed "
508 "without setting discard operation to unmap");
509 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200510 }
511 break;
bellard7a5ca862008-05-27 21:13:40 +0000512 case 'b':
513 bindto = optarg;
514 break;
515 case 'p':
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100516 port = optarg;
bellard7a5ca862008-05-27 21:13:40 +0000517 break;
518 case 'o':
519 dev_offset = strtoll (optarg, &end, 0);
520 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100521 error_report("Invalid offset `%s'", optarg);
522 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000523 }
524 if (dev_offset < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100525 error_report("Offset must be positive `%s'", optarg);
526 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000527 }
528 break;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800529 case 'l':
530 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +0100531 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
532 optarg, false);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800533 if (!sn_opts) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100534 error_report("Failed in parsing snapshot param `%s'",
535 optarg);
536 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800537 }
538 } else {
539 sn_id_or_name = optarg;
540 }
541 /* fall through */
bellard7a5ca862008-05-27 21:13:40 +0000542 case 'r':
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200543 nbdflags |= NBD_FLAG_READ_ONLY;
Naphtali Sprei07108b22010-03-14 15:19:57 +0200544 flags &= ~BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000545 break;
546 case 'P':
547 partition = strtol(optarg, &end, 0);
Peter Lieven713cc672014-08-13 19:20:19 +0200548 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100549 error_report("Invalid partition `%s'", optarg);
550 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200551 }
552 if (partition < 1 || partition > 8) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100553 error_report("Invalid partition %d", partition);
554 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200555 }
bellard7a5ca862008-05-27 21:13:40 +0000556 break;
thscd831bd2008-07-03 10:23:51 +0000557 case 'k':
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100558 sockpath = optarg;
Peter Lieven713cc672014-08-13 19:20:19 +0200559 if (sockpath[0] != '/') {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100560 error_report("socket path must be absolute\n");
561 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200562 }
thscd831bd2008-07-03 10:23:51 +0000563 break;
564 case 'd':
565 disconnect = true;
566 break;
567 case 'c':
568 device = optarg;
569 break;
ths3b05a8e2008-07-03 12:45:02 +0000570 case 'e':
571 shared = strtol(optarg, &end, 0);
572 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100573 error_report("Invalid shared device number '%s'", optarg);
574 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000575 }
576 if (shared < 1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100577 error_report("Shared device number must be greater than 0\n");
578 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000579 }
580 break;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000581 case 'f':
582 fmt = optarg;
583 break;
Peter Lieven713cc672014-08-13 19:20:19 +0200584 case 't':
585 persistent = 1;
586 break;
bellard7a5ca862008-05-27 21:13:40 +0000587 case 'v':
588 verbose = 1;
589 break;
590 case 'V':
591 version(argv[0]);
592 exit(0);
593 break;
594 case 'h':
595 usage(argv[0]);
596 exit(0);
597 break;
598 case '?':
Markus Armbruster85b01e02015-12-18 16:35:04 +0100599 error_report("Try `%s --help' for more information.", argv[0]);
600 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000601 }
602 }
603
604 if ((argc - optind) != 1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100605 error_report("Invalid number of argument.\n"
606 "Try `%s --help' for more information.",
607 argv[0]);
608 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000609 }
610
thscd831bd2008-07-03 10:23:51 +0000611 if (disconnect) {
612 fd = open(argv[optind], O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100613 if (fd < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100614 error_report("Cannot open %s: %s", argv[optind],
615 strerror(errno));
616 exit(EXIT_FAILURE);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100617 }
thscd831bd2008-07-03 10:23:51 +0000618 nbd_disconnect(fd);
619
620 close(fd);
621
622 printf("%s disconnected\n", argv[optind]);
623
Peter Lieven713cc672014-08-13 19:20:19 +0200624 return 0;
thscd831bd2008-07-03 10:23:51 +0000625 }
626
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100627 if (device && !verbose) {
628 int stderr_fd[2];
629 pid_t pid;
630 int ret;
631
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100632 if (qemu_pipe(stderr_fd) < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100633 error_report("Error setting up communication pipe: %s",
634 strerror(errno));
635 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100636 }
637
638 /* Now daemonize, but keep a communication channel open to
639 * print errors and exit with the proper status code.
640 */
641 pid = fork();
Max Reitz70d47392015-02-25 13:08:22 -0500642 if (pid < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100643 error_report("Failed to fork: %s", strerror(errno));
644 exit(EXIT_FAILURE);
Max Reitz70d47392015-02-25 13:08:22 -0500645 } else if (pid == 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100646 close(stderr_fd[0]);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400647 ret = qemu_daemon(1, 0);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100648
649 /* Temporarily redirect stderr to the parent's pipe... */
650 dup2(stderr_fd[1], STDERR_FILENO);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100651 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100652 error_report("Failed to daemonize: %s", strerror(errno));
653 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100654 }
655
656 /* ... close the descriptor we inherited and go on. */
657 close(stderr_fd[1]);
658 } else {
659 bool errors = false;
660 char *buf;
661
662 /* In the parent. Print error messages from the child until
663 * it closes the pipe.
664 */
665 close(stderr_fd[1]);
666 buf = g_malloc(1024);
667 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
668 errors = true;
669 ret = qemu_write_full(STDERR_FILENO, buf, ret);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100670 if (ret < 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100671 exit(EXIT_FAILURE);
672 }
673 }
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100674 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100675 error_report("Cannot read from daemon: %s",
676 strerror(errno));
677 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100678 }
679
680 /* Usually the daemon should not print any message.
681 * Exit with zero status in that case.
682 */
683 exit(errors);
684 }
685 }
686
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100687 if (device != NULL && sockpath == NULL) {
688 sockpath = g_malloc(128);
689 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
thscd831bd2008-07-03 10:23:51 +0000690 }
691
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100692 saddr = nbd_build_socket_address(sockpath, bindto, port);
693
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300694 if (qemu_init_main_loop(&local_err)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +0100695 error_report_err(local_err);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300696 exit(EXIT_FAILURE);
697 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100698 bdrv_init();
699 atexit(bdrv_close_all);
700
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000701 if (fmt) {
Max Reitz4fbec262015-02-05 13:58:19 -0500702 options = qdict_new();
703 qdict_put(options, "driver", qstring_from_str(fmt));
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000704 }
705
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100706 srcpath = argv[optind];
Max Reitz4fbec262015-02-05 13:58:19 -0500707 blk = blk_new_open("hda", srcpath, NULL, options, flags, &local_err);
708 if (!blk) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100709 error_report("Failed to blk_new_open '%s': %s", argv[optind],
710 error_get_pretty(local_err));
711 exit(EXIT_FAILURE);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100712 }
Max Reitz4fbec262015-02-05 13:58:19 -0500713 bs = blk_bs(blk);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100714
Wenchao Xia8c116b02013-12-04 17:10:55 +0800715 if (sn_opts) {
716 ret = bdrv_snapshot_load_tmp(bs,
717 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
718 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
719 &local_err);
720 } else if (sn_id_or_name) {
721 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
722 &local_err);
723 }
724 if (ret < 0) {
725 errno = -ret;
Markus Armbruster85b01e02015-12-18 16:35:04 +0100726 error_report("Failed to load snapshot: %s: %s",
727 error_get_pretty(local_err), strerror(errno));
728 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800729 }
730
Peter Lievenb3838a42014-08-13 19:20:18 +0200731 bs->detect_zeroes = detect_zeroes;
Max Reitz4c58e802014-11-18 12:21:19 +0100732 fd_size = blk_getlength(blk);
Max Reitz98f44bb2015-02-25 13:08:21 -0500733 if (fd_size < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100734 error_report("Failed to determine the image length: %s",
735 strerror(-fd_size));
736 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -0500737 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100738
Paolo Bonzini185b4332012-03-05 08:56:10 +0100739 if (partition != -1) {
Max Reitz4c58e802014-11-18 12:21:19 +0100740 ret = find_partition(blk, partition, &dev_offset, &fd_size);
Paolo Bonzini185b4332012-03-05 08:56:10 +0100741 if (ret < 0) {
742 errno = -ret;
Markus Armbruster85b01e02015-12-18 16:35:04 +0100743 error_report("Could not find partition %d: %s", partition,
744 strerror(errno));
745 exit(EXIT_FAILURE);
Paolo Bonzini185b4332012-03-05 08:56:10 +0100746 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100747 }
748
Max Reitz98f44bb2015-02-25 13:08:21 -0500749 exp = nbd_export_new(blk, dev_offset, fd_size, nbdflags, nbd_export_closed,
750 &local_err);
751 if (!exp) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100752 error_report("%s", error_get_pretty(local_err));
753 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -0500754 }
ths3b05a8e2008-07-03 12:45:02 +0000755
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100756 fd = socket_listen(saddr, &local_err);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100757 if (fd < 0) {
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100758 error_report_err(local_err);
bellard7a5ca862008-05-27 21:13:40 +0000759 return 1;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200760 }
Paolo Bonzinif1ef5552011-11-04 15:51:23 +0100761
762 if (device) {
763 int ret;
764
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100765 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +0100766 if (ret != 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100767 error_report("Failed to create client thread: %s", strerror(ret));
768 exit(EXIT_FAILURE);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +0100769 }
770 } else {
771 /* Shut up GCC warnings. */
772 memset(&client_thread, 0, sizeof(client_thread));
773 }
774
Fam Zhenge4afbf42015-05-19 10:50:59 +0000775 server_fd = fd;
776 nbd_update_server_fd_handler(fd);
bellard7a5ca862008-05-27 21:13:40 +0000777
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400778 /* now when the initialization is (almost) complete, chdir("/")
779 * to free any busy filesystems */
780 if (chdir("/") < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100781 error_report("Could not chdir to root directory: %s",
782 strerror(errno));
783 exit(EXIT_FAILURE);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400784 }
785
Paolo Bonzini7860a382012-09-18 13:31:56 +0200786 state = RUNNING;
ths3b05a8e2008-07-03 12:45:02 +0000787 do {
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200788 main_loop_wait(false);
Paolo Bonzini7860a382012-09-18 13:31:56 +0200789 if (state == TERMINATE) {
790 state = TERMINATING;
791 nbd_export_close(exp);
792 nbd_export_put(exp);
793 exp = NULL;
794 }
795 } while (state != TERMINATED);
ths3b05a8e2008-07-03 12:45:02 +0000796
Markus Armbruster26f54e92014-10-07 13:59:04 +0200797 blk_unref(blk);
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100798 if (sockpath) {
799 unlink(sockpath);
800 }
bellard7a5ca862008-05-27 21:13:40 +0000801
Markus Armbrusterfbf28a42014-09-29 16:07:55 +0200802 qemu_opts_del(sn_opts);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800803
Paolo Bonzinia517e882011-11-04 15:51:21 +0100804 if (device) {
805 void *ret;
806 pthread_join(client_thread, &ret);
807 exit(ret != NULL);
808 } else {
809 exit(EXIT_SUCCESS);
810 }
bellard7a5ca862008-05-27 21:13:40 +0000811}