blob: 130c30631406d4058331af744b0e398dfd4580b4 [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
Peter Maydelld38ea872016-01-29 17:50:05 +000019#include "qemu/osdep.h"
Stefan Weil5a61cb62011-09-08 17:55:32 +020020#include "qemu-common.h"
Markus Armbruster26f54e92014-10-07 13:59:04 +020021#include "sysemu/block-backend.h"
Peter Lievenb3838a42014-08-13 19:20:18 +020022#include "block/block_int.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010023#include "block/nbd.h"
Alex Bligh6a1751b2013-08-21 16:02:47 +010024#include "qemu/main-loop.h"
Paolo Bonzini537b41f2014-02-17 14:43:51 +010025#include "qemu/sockets.h"
26#include "qemu/error-report.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000027#include "qemu/config-file.h"
Wenchao Xia8c116b02013-12-04 17:10:55 +080028#include "block/snapshot.h"
Peter Lievenb3838a42014-08-13 19:20:18 +020029#include "qapi/util.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010030#include "qapi/qmp/qstring.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000031#include "qom/object_interfaces.h"
bellard7a5ca862008-05-27 21:13:40 +000032
bellard7a5ca862008-05-27 21:13:40 +000033#include <getopt.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>
Blue Swirl2bff4b62009-12-23 15:34:04 +000038#include <libgen.h>
Paolo Bonzinia517e882011-11-04 15:51:21 +010039#include <pthread.h>
thscd831bd2008-07-03 10:23:51 +000040
Peter Lieven713cc672014-08-13 19:20:19 +020041#define SOCKET_PATH "/var/lock/qemu-nbd-%s"
42#define QEMU_NBD_OPT_CACHE 1
43#define QEMU_NBD_OPT_AIO 2
44#define QEMU_NBD_OPT_DISCARD 3
Peter Lievenb3838a42014-08-13 19:20:18 +020045#define QEMU_NBD_OPT_DETECT_ZEROES 4
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000046#define QEMU_NBD_OPT_OBJECT 5
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"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000080"General purpose options:\n"
81" --object type,id=ID,... define an object such as 'secret' for providing\n"
82" passwords and/or encryption keys\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020083#ifdef __linux__
84"Kernel NBD client support:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020085" -c, --connect=DEV connect FILE to the local NBD device DEV\n"
86" -d, --disconnect disconnect the specified device\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020087"\n"
88#endif
89"\n"
90"Block device options:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020091" -f, --format=FORMAT set image format (raw, qcow2, ...)\n"
92" -r, --read-only export read-only\n"
93" -s, --snapshot use FILE as an external snapshot, create a temporary\n"
94" file with backing_file=FILE, redirect the write to\n"
95" the temporary one\n"
Wenchao Xia8c116b02013-12-04 17:10:55 +080096" -l, --load-snapshot=SNAPSHOT_PARAM\n"
Peter Lieven713cc672014-08-13 19:20:19 +020097" load an internal snapshot inside FILE and export it\n"
98" as an read-only device, SNAPSHOT_PARAM format is\n"
99" 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
100" '[ID_OR_NAME]'\n"
101" -n, --nocache disable host cache\n"
102" --cache=MODE set cache mode (none, writeback, ...)\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200103" --aio=MODE set AIO mode (native or threads)\n"
Peter Lievenb3838a42014-08-13 19:20:18 +0200104" --discard=MODE set discard mode (ignore, unmap)\n"
Andrey Korolyov6883de62015-07-31 22:12:54 +0300105" --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200106"\n"
107"Report bugs to <qemu-devel@nongnu.org>\n"
Laurent Vivierc2e28722010-09-17 20:37:25 +0200108 , name, NBD_DEFAULT_PORT, "DEVICE");
bellard7a5ca862008-05-27 21:13:40 +0000109}
110
111static void version(const char *name)
112{
113 printf(
ths315bc7a2008-07-18 18:06:23 +0000114"%s version 0.0.1\n"
bellard7a5ca862008-05-27 21:13:40 +0000115"Written by Anthony Liguori.\n"
116"\n"
117"Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>.\n"
118"This is free software; see the source for copying conditions. There is NO\n"
119"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
ths315bc7a2008-07-18 18:06:23 +0000120 , name);
bellard7a5ca862008-05-27 21:13:40 +0000121}
122
123struct partition_record
124{
125 uint8_t bootable;
126 uint8_t start_head;
127 uint32_t start_cylinder;
128 uint8_t start_sector;
129 uint8_t system;
130 uint8_t end_head;
131 uint8_t end_cylinder;
132 uint8_t end_sector;
133 uint32_t start_sector_abs;
134 uint32_t nb_sectors_abs;
135};
136
137static void read_partition(uint8_t *p, struct partition_record *r)
138{
139 r->bootable = p[0];
140 r->start_head = p[1];
141 r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
142 r->start_sector = p[2] & 0x3f;
143 r->system = p[4];
144 r->end_head = p[5];
145 r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
146 r->end_sector = p[6] & 0x3f;
Max Reitzac973932015-02-25 13:08:23 -0500147
148 r->start_sector_abs = le32_to_cpup((uint32_t *)(p + 8));
149 r->nb_sectors_abs = le32_to_cpup((uint32_t *)(p + 12));
bellard7a5ca862008-05-27 21:13:40 +0000150}
151
Max Reitz4c58e802014-11-18 12:21:19 +0100152static int find_partition(BlockBackend *blk, int partition,
bellard7a5ca862008-05-27 21:13:40 +0000153 off_t *offset, off_t *size)
154{
155 struct partition_record mbr[4];
156 uint8_t data[512];
157 int i;
158 int ext_partnum = 4;
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900159 int ret;
bellard7a5ca862008-05-27 21:13:40 +0000160
Max Reitz4c58e802014-11-18 12:21:19 +0100161 if ((ret = blk_read(blk, 0, data, 1)) < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100162 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100163 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900164 }
bellard7a5ca862008-05-27 21:13:40 +0000165
166 if (data[510] != 0x55 || data[511] != 0xaa) {
Paolo Bonzini185b4332012-03-05 08:56:10 +0100167 return -EINVAL;
bellard7a5ca862008-05-27 21:13:40 +0000168 }
169
170 for (i = 0; i < 4; i++) {
171 read_partition(&data[446 + 16 * i], &mbr[i]);
172
Max Reitz453b07b2015-02-25 13:08:15 -0500173 if (!mbr[i].system || !mbr[i].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000174 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500175 }
bellard7a5ca862008-05-27 21:13:40 +0000176
177 if (mbr[i].system == 0xF || mbr[i].system == 0x5) {
178 struct partition_record ext[4];
179 uint8_t data1[512];
180 int j;
181
Max Reitz4c58e802014-11-18 12:21:19 +0100182 if ((ret = blk_read(blk, mbr[i].start_sector_abs, data1, 1)) < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100183 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100184 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900185 }
bellard7a5ca862008-05-27 21:13:40 +0000186
187 for (j = 0; j < 4; j++) {
188 read_partition(&data1[446 + 16 * j], &ext[j]);
Max Reitz453b07b2015-02-25 13:08:15 -0500189 if (!ext[j].system || !ext[j].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000190 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500191 }
bellard7a5ca862008-05-27 21:13:40 +0000192
193 if ((ext_partnum + j + 1) == partition) {
194 *offset = (uint64_t)ext[j].start_sector_abs << 9;
195 *size = (uint64_t)ext[j].nb_sectors_abs << 9;
196 return 0;
197 }
198 }
199 ext_partnum += 4;
200 } else if ((i + 1) == partition) {
201 *offset = (uint64_t)mbr[i].start_sector_abs << 9;
202 *size = (uint64_t)mbr[i].nb_sectors_abs << 9;
203 return 0;
204 }
205 }
206
Paolo Bonzini185b4332012-03-05 08:56:10 +0100207 return -ENOENT;
bellard7a5ca862008-05-27 21:13:40 +0000208}
209
Paolo Bonzinibb345112011-11-04 15:51:19 +0100210static void termsig_handler(int signum)
211{
Paolo Bonzini7860a382012-09-18 13:31:56 +0200212 state = TERMINATE;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200213 qemu_notify_event();
Paolo Bonzinibb345112011-11-04 15:51:19 +0100214}
215
Paolo Bonzini537b41f2014-02-17 14:43:51 +0100216
Paolo Bonzinia517e882011-11-04 15:51:21 +0100217static void *show_parts(void *arg)
thscd831bd2008-07-03 10:23:51 +0000218{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100219 char *device = arg;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100220 int nbd;
thscd831bd2008-07-03 10:23:51 +0000221
Paolo Bonzinia517e882011-11-04 15:51:21 +0100222 /* linux just needs an open() to trigger
223 * the partition table update
224 * but remember to load the module with max_part != 0 :
225 * modprobe nbd max_part=63
226 */
227 nbd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100228 if (nbd >= 0) {
Paolo Bonzinia517e882011-11-04 15:51:21 +0100229 close(nbd);
thscd831bd2008-07-03 10:23:51 +0000230 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100231 return NULL;
232}
233
234static void *nbd_client_thread(void *arg)
235{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100236 char *device = arg;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100237 off_t size;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100238 uint32_t nbdflags;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100239 int fd, sock;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100240 int ret;
241 pthread_t show_parts_thread;
Max Reitz1ce52842015-01-26 21:02:59 -0500242 Error *local_error = NULL;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100243
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100244
245 sock = socket_connect(saddr, &local_error, NULL, NULL);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100246 if (sock < 0) {
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100247 error_report_err(local_error);
Stefan Hajnoczidc10e8b2012-01-05 13:16:07 +0000248 goto out;
249 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100250
251 ret = nbd_receive_negotiate(sock, NULL, &nbdflags,
Max Reitz3f472652015-02-25 13:08:25 -0500252 &size, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100253 if (ret < 0) {
Max Reitz1ce52842015-01-26 21:02:59 -0500254 if (local_error) {
Markus Armbruster78288672015-12-18 16:35:07 +0100255 error_report_err(local_error);
Max Reitz1ce52842015-01-26 21:02:59 -0500256 }
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. */
Markus Armbrusterb9884682015-12-18 16:35:18 +0100263 error_report("Failed to open %s: %m", 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
Fam Zhengee7d7aa2016-01-14 16:41:01 +0800339 nb_fds++;
340 nbd_update_server_fd_handler(server_fd);
341 nbd_client_new(exp, fd, nbd_client_closed);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200342}
343
Fam Zhenge4afbf42015-05-19 10:50:59 +0000344static void nbd_update_server_fd_handler(int fd)
345{
346 if (nbd_can_accept()) {
347 qemu_set_fd_handler(fd, nbd_accept, NULL, (void *)(uintptr_t)fd);
348 } else {
349 qemu_set_fd_handler(fd, NULL, NULL, NULL);
350 }
351}
352
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100353
354static SocketAddress *nbd_build_socket_address(const char *sockpath,
355 const char *bindto,
356 const char *port)
357{
358 SocketAddress *saddr;
359
360 saddr = g_new0(SocketAddress, 1);
361 if (sockpath) {
Eric Blake2d32add2015-10-26 16:34:55 -0600362 saddr->type = SOCKET_ADDRESS_KIND_UNIX;
363 saddr->u.q_unix = g_new0(UnixSocketAddress, 1);
364 saddr->u.q_unix->path = g_strdup(sockpath);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100365 } else {
Eric Blake2d32add2015-10-26 16:34:55 -0600366 saddr->type = SOCKET_ADDRESS_KIND_INET;
367 saddr->u.inet = g_new0(InetSocketAddress, 1);
368 saddr->u.inet->host = g_strdup(bindto);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100369 if (port) {
Eric Blake2d32add2015-10-26 16:34:55 -0600370 saddr->u.inet->port = g_strdup(port);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100371 } else {
Eric Blake2d32add2015-10-26 16:34:55 -0600372 saddr->u.inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100373 }
374 }
375
376 return saddr;
377}
378
379
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000380static QemuOptsList qemu_object_opts = {
381 .name = "object",
382 .implied_opt_name = "qom-type",
383 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
384 .desc = {
385 { }
386 },
387};
388
389
bellard7a5ca862008-05-27 21:13:40 +0000390int main(int argc, char **argv)
391{
Markus Armbruster26f54e92014-10-07 13:59:04 +0200392 BlockBackend *blk;
bellard7a5ca862008-05-27 21:13:40 +0000393 BlockDriverState *bs;
394 off_t dev_offset = 0;
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200395 uint32_t nbdflags = 0;
thscd831bd2008-07-03 10:23:51 +0000396 bool disconnect = false;
bellard7a5ca862008-05-27 21:13:40 +0000397 const char *bindto = "0.0.0.0";
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100398 const char *port = NULL;
399 char *sockpath = NULL;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100400 char *device = NULL;
bellard7a5ca862008-05-27 21:13:40 +0000401 off_t fd_size;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800402 QemuOpts *sn_opts = NULL;
403 const char *sn_id_or_name = NULL;
404 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:";
bellard7a5ca862008-05-27 21:13:40 +0000405 struct option lopt[] = {
Blue Swirl660f11b2009-07-31 21:16:51 +0000406 { "help", 0, NULL, 'h' },
407 { "version", 0, NULL, 'V' },
408 { "bind", 1, NULL, 'b' },
409 { "port", 1, NULL, 'p' },
410 { "socket", 1, NULL, 'k' },
411 { "offset", 1, NULL, 'o' },
412 { "read-only", 0, NULL, 'r' },
413 { "partition", 1, NULL, 'P' },
414 { "connect", 1, NULL, 'c' },
415 { "disconnect", 0, NULL, 'd' },
416 { "snapshot", 0, NULL, 's' },
Wenchao Xia8c116b02013-12-04 17:10:55 +0800417 { "load-snapshot", 1, NULL, 'l' },
Blue Swirl660f11b2009-07-31 21:16:51 +0000418 { "nocache", 0, NULL, 'n' },
Paolo Bonzini39a52352012-07-18 14:57:15 +0200419 { "cache", 1, NULL, QEMU_NBD_OPT_CACHE },
Paolo Bonzini39a52352012-07-18 14:57:15 +0200420 { "aio", 1, NULL, QEMU_NBD_OPT_AIO },
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100421 { "discard", 1, NULL, QEMU_NBD_OPT_DISCARD },
Peter Lievenb3838a42014-08-13 19:20:18 +0200422 { "detect-zeroes", 1, NULL, QEMU_NBD_OPT_DETECT_ZEROES },
Blue Swirl660f11b2009-07-31 21:16:51 +0000423 { "shared", 1, NULL, 'e' },
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000424 { "format", 1, NULL, 'f' },
Blue Swirl660f11b2009-07-31 21:16:51 +0000425 { "persistent", 0, NULL, 't' },
426 { "verbose", 0, NULL, 'v' },
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000427 { "object", 1, NULL, QEMU_NBD_OPT_OBJECT },
Blue Swirl660f11b2009-07-31 21:16:51 +0000428 { NULL, 0, NULL, 0 }
bellard7a5ca862008-05-27 21:13:40 +0000429 };
430 int ch;
431 int opt_ind = 0;
bellard7a5ca862008-05-27 21:13:40 +0000432 char *end;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200433 int flags = BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000434 int partition = -1;
Max Reitz4fbec262015-02-05 13:58:19 -0500435 int ret = 0;
ths3b05a8e2008-07-03 12:45:02 +0000436 int fd;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200437 bool seen_cache = false;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100438 bool seen_discard = false;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200439 bool seen_aio = false;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100440 pthread_t client_thread;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000441 const char *fmt = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200442 Error *local_err = NULL;
Peter Lievenb3838a42014-08-13 19:20:18 +0200443 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
Max Reitz4fbec262015-02-05 13:58:19 -0500444 QDict *options = NULL;
bellard7a5ca862008-05-27 21:13:40 +0000445
Paolo Bonzinia517e882011-11-04 15:51:21 +0100446 /* The client thread uses SIGTERM to interrupt the server. A signal
447 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
448 */
Paolo Bonzinibb345112011-11-04 15:51:19 +0100449 struct sigaction sa_sigterm;
Paolo Bonzinibb345112011-11-04 15:51:19 +0100450 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
451 sa_sigterm.sa_handler = termsig_handler;
452 sigaction(SIGTERM, &sa_sigterm, NULL);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000453 module_call_init(MODULE_INIT_QOM);
454 qemu_add_opts(&qemu_object_opts);
Fam Zheng10f5bff2014-02-10 14:48:51 +0800455 qemu_init_exec_dir(argv[0]);
Paolo Bonzinibb345112011-11-04 15:51:19 +0100456
bellard7a5ca862008-05-27 21:13:40 +0000457 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
458 switch (ch) {
459 case 's':
ths2f726482008-07-03 11:47:46 +0000460 flags |= BDRV_O_SNAPSHOT;
461 break;
462 case 'n':
Paolo Bonzini39a52352012-07-18 14:57:15 +0200463 optarg = (char *) "none";
464 /* fallthrough */
465 case QEMU_NBD_OPT_CACHE:
466 if (seen_cache) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100467 error_report("-n and --cache can only be specified once");
468 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200469 }
470 seen_cache = true;
471 if (bdrv_parse_cache_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100472 error_report("Invalid cache mode `%s'", optarg);
473 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200474 }
bellard7a5ca862008-05-27 21:13:40 +0000475 break;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200476 case QEMU_NBD_OPT_AIO:
477 if (seen_aio) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100478 error_report("--aio can only be specified once");
479 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200480 }
481 seen_aio = true;
482 if (!strcmp(optarg, "native")) {
483 flags |= BDRV_O_NATIVE_AIO;
484 } else if (!strcmp(optarg, "threads")) {
485 /* this is the default */
486 } else {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100487 error_report("invalid aio mode `%s'", optarg);
488 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200489 }
490 break;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100491 case QEMU_NBD_OPT_DISCARD:
492 if (seen_discard) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100493 error_report("--discard can only be specified once");
494 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100495 }
496 seen_discard = true;
497 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100498 error_report("Invalid discard mode `%s'", optarg);
499 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100500 }
501 break;
Peter Lievenb3838a42014-08-13 19:20:18 +0200502 case QEMU_NBD_OPT_DETECT_ZEROES:
503 detect_zeroes =
504 qapi_enum_parse(BlockdevDetectZeroesOptions_lookup,
505 optarg,
Eric Blake7fb1cf12015-11-18 01:52:57 -0700506 BLOCKDEV_DETECT_ZEROES_OPTIONS__MAX,
Peter Lievenb3838a42014-08-13 19:20:18 +0200507 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
508 &local_err);
509 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100510 error_reportf_err(local_err,
511 "Failed to parse detect_zeroes mode: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100512 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200513 }
514 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
515 !(flags & BDRV_O_UNMAP)) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100516 error_report("setting detect-zeroes to unmap is not allowed "
517 "without setting discard operation to unmap");
518 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200519 }
520 break;
bellard7a5ca862008-05-27 21:13:40 +0000521 case 'b':
522 bindto = optarg;
523 break;
524 case 'p':
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100525 port = optarg;
bellard7a5ca862008-05-27 21:13:40 +0000526 break;
527 case 'o':
528 dev_offset = strtoll (optarg, &end, 0);
529 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100530 error_report("Invalid offset `%s'", optarg);
531 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000532 }
533 if (dev_offset < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100534 error_report("Offset must be positive `%s'", optarg);
535 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000536 }
537 break;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800538 case 'l':
539 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +0100540 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
541 optarg, false);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800542 if (!sn_opts) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100543 error_report("Failed in parsing snapshot param `%s'",
544 optarg);
545 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800546 }
547 } else {
548 sn_id_or_name = optarg;
549 }
550 /* fall through */
bellard7a5ca862008-05-27 21:13:40 +0000551 case 'r':
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200552 nbdflags |= NBD_FLAG_READ_ONLY;
Naphtali Sprei07108b22010-03-14 15:19:57 +0200553 flags &= ~BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000554 break;
555 case 'P':
556 partition = strtol(optarg, &end, 0);
Peter Lieven713cc672014-08-13 19:20:19 +0200557 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100558 error_report("Invalid partition `%s'", optarg);
559 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200560 }
561 if (partition < 1 || partition > 8) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100562 error_report("Invalid partition %d", partition);
563 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200564 }
bellard7a5ca862008-05-27 21:13:40 +0000565 break;
thscd831bd2008-07-03 10:23:51 +0000566 case 'k':
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100567 sockpath = optarg;
Peter Lieven713cc672014-08-13 19:20:19 +0200568 if (sockpath[0] != '/') {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100569 error_report("socket path must be absolute");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100570 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200571 }
thscd831bd2008-07-03 10:23:51 +0000572 break;
573 case 'd':
574 disconnect = true;
575 break;
576 case 'c':
577 device = optarg;
578 break;
ths3b05a8e2008-07-03 12:45:02 +0000579 case 'e':
580 shared = strtol(optarg, &end, 0);
581 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100582 error_report("Invalid shared device number '%s'", optarg);
583 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000584 }
585 if (shared < 1) {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100586 error_report("Shared device number must be greater than 0");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100587 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000588 }
589 break;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000590 case 'f':
591 fmt = optarg;
592 break;
Peter Lieven713cc672014-08-13 19:20:19 +0200593 case 't':
594 persistent = 1;
595 break;
bellard7a5ca862008-05-27 21:13:40 +0000596 case 'v':
597 verbose = 1;
598 break;
599 case 'V':
600 version(argv[0]);
601 exit(0);
602 break;
603 case 'h':
604 usage(argv[0]);
605 exit(0);
606 break;
607 case '?':
Markus Armbruster85b01e02015-12-18 16:35:04 +0100608 error_report("Try `%s --help' for more information.", argv[0]);
609 exit(EXIT_FAILURE);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000610 case QEMU_NBD_OPT_OBJECT: {
611 QemuOpts *opts;
612 opts = qemu_opts_parse_noisily(&qemu_object_opts,
613 optarg, true);
614 if (!opts) {
615 exit(EXIT_FAILURE);
616 }
617 } break;
bellard7a5ca862008-05-27 21:13:40 +0000618 }
619 }
620
621 if ((argc - optind) != 1) {
Markus Armbruster433672b2015-12-18 16:35:24 +0100622 error_report("Invalid number of arguments");
623 error_printf("Try `%s --help' for more information.\n", argv[0]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100624 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000625 }
626
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000627 if (qemu_opts_foreach(&qemu_object_opts,
628 user_creatable_add_opts_foreach,
629 NULL, &local_err)) {
630 error_report_err(local_err);
631 exit(EXIT_FAILURE);
632 }
633
thscd831bd2008-07-03 10:23:51 +0000634 if (disconnect) {
635 fd = open(argv[optind], O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100636 if (fd < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100637 error_report("Cannot open %s: %s", argv[optind],
638 strerror(errno));
639 exit(EXIT_FAILURE);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100640 }
thscd831bd2008-07-03 10:23:51 +0000641 nbd_disconnect(fd);
642
643 close(fd);
644
645 printf("%s disconnected\n", argv[optind]);
646
Peter Lieven713cc672014-08-13 19:20:19 +0200647 return 0;
thscd831bd2008-07-03 10:23:51 +0000648 }
649
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100650 if (device && !verbose) {
651 int stderr_fd[2];
652 pid_t pid;
653 int ret;
654
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100655 if (qemu_pipe(stderr_fd) < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100656 error_report("Error setting up communication pipe: %s",
657 strerror(errno));
658 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100659 }
660
661 /* Now daemonize, but keep a communication channel open to
662 * print errors and exit with the proper status code.
663 */
664 pid = fork();
Max Reitz70d47392015-02-25 13:08:22 -0500665 if (pid < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100666 error_report("Failed to fork: %s", strerror(errno));
667 exit(EXIT_FAILURE);
Max Reitz70d47392015-02-25 13:08:22 -0500668 } else if (pid == 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100669 close(stderr_fd[0]);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400670 ret = qemu_daemon(1, 0);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100671
672 /* Temporarily redirect stderr to the parent's pipe... */
673 dup2(stderr_fd[1], STDERR_FILENO);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100674 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100675 error_report("Failed to daemonize: %s", strerror(errno));
676 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100677 }
678
679 /* ... close the descriptor we inherited and go on. */
680 close(stderr_fd[1]);
681 } else {
682 bool errors = false;
683 char *buf;
684
685 /* In the parent. Print error messages from the child until
686 * it closes the pipe.
687 */
688 close(stderr_fd[1]);
689 buf = g_malloc(1024);
690 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
691 errors = true;
692 ret = qemu_write_full(STDERR_FILENO, buf, ret);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100693 if (ret < 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100694 exit(EXIT_FAILURE);
695 }
696 }
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100697 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100698 error_report("Cannot read from daemon: %s",
699 strerror(errno));
700 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100701 }
702
703 /* Usually the daemon should not print any message.
704 * Exit with zero status in that case.
705 */
706 exit(errors);
707 }
708 }
709
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100710 if (device != NULL && sockpath == NULL) {
711 sockpath = g_malloc(128);
712 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
thscd831bd2008-07-03 10:23:51 +0000713 }
714
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100715 saddr = nbd_build_socket_address(sockpath, bindto, port);
716
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300717 if (qemu_init_main_loop(&local_err)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +0100718 error_report_err(local_err);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300719 exit(EXIT_FAILURE);
720 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100721 bdrv_init();
722 atexit(bdrv_close_all);
723
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000724 if (fmt) {
Max Reitz4fbec262015-02-05 13:58:19 -0500725 options = qdict_new();
726 qdict_put(options, "driver", qstring_from_str(fmt));
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000727 }
728
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100729 srcpath = argv[optind];
Max Reitz4fbec262015-02-05 13:58:19 -0500730 blk = blk_new_open("hda", srcpath, NULL, options, flags, &local_err);
731 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100732 error_reportf_err(local_err, "Failed to blk_new_open '%s': ",
733 argv[optind]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100734 exit(EXIT_FAILURE);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100735 }
Max Reitz4fbec262015-02-05 13:58:19 -0500736 bs = blk_bs(blk);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100737
Wenchao Xia8c116b02013-12-04 17:10:55 +0800738 if (sn_opts) {
739 ret = bdrv_snapshot_load_tmp(bs,
740 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
741 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
742 &local_err);
743 } else if (sn_id_or_name) {
744 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
745 &local_err);
746 }
747 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100748 error_reportf_err(local_err, "Failed to load snapshot: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100749 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800750 }
751
Peter Lievenb3838a42014-08-13 19:20:18 +0200752 bs->detect_zeroes = detect_zeroes;
Max Reitz4c58e802014-11-18 12:21:19 +0100753 fd_size = blk_getlength(blk);
Max Reitz98f44bb2015-02-25 13:08:21 -0500754 if (fd_size < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100755 error_report("Failed to determine the image length: %s",
756 strerror(-fd_size));
757 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -0500758 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100759
Paolo Bonzini185b4332012-03-05 08:56:10 +0100760 if (partition != -1) {
Max Reitz4c58e802014-11-18 12:21:19 +0100761 ret = find_partition(blk, partition, &dev_offset, &fd_size);
Paolo Bonzini185b4332012-03-05 08:56:10 +0100762 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100763 error_report("Could not find partition %d: %s", partition,
Markus Armbrustera4699e52015-12-18 16:35:10 +0100764 strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100765 exit(EXIT_FAILURE);
Paolo Bonzini185b4332012-03-05 08:56:10 +0100766 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100767 }
768
Max Reitz98f44bb2015-02-25 13:08:21 -0500769 exp = nbd_export_new(blk, dev_offset, fd_size, nbdflags, nbd_export_closed,
770 &local_err);
771 if (!exp) {
Markus Armbruster4fffeb52015-12-18 16:35:05 +0100772 error_report_err(local_err);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100773 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -0500774 }
ths3b05a8e2008-07-03 12:45:02 +0000775
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100776 fd = socket_listen(saddr, &local_err);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100777 if (fd < 0) {
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100778 error_report_err(local_err);
bellard7a5ca862008-05-27 21:13:40 +0000779 return 1;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200780 }
Paolo Bonzinif1ef5552011-11-04 15:51:23 +0100781
782 if (device) {
783 int ret;
784
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100785 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +0100786 if (ret != 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100787 error_report("Failed to create client thread: %s", strerror(ret));
788 exit(EXIT_FAILURE);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +0100789 }
790 } else {
791 /* Shut up GCC warnings. */
792 memset(&client_thread, 0, sizeof(client_thread));
793 }
794
Fam Zhenge4afbf42015-05-19 10:50:59 +0000795 server_fd = fd;
796 nbd_update_server_fd_handler(fd);
bellard7a5ca862008-05-27 21:13:40 +0000797
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400798 /* now when the initialization is (almost) complete, chdir("/")
799 * to free any busy filesystems */
800 if (chdir("/") < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100801 error_report("Could not chdir to root directory: %s",
802 strerror(errno));
803 exit(EXIT_FAILURE);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400804 }
805
Paolo Bonzini7860a382012-09-18 13:31:56 +0200806 state = RUNNING;
ths3b05a8e2008-07-03 12:45:02 +0000807 do {
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200808 main_loop_wait(false);
Paolo Bonzini7860a382012-09-18 13:31:56 +0200809 if (state == TERMINATE) {
810 state = TERMINATING;
811 nbd_export_close(exp);
812 nbd_export_put(exp);
813 exp = NULL;
814 }
815 } while (state != TERMINATED);
ths3b05a8e2008-07-03 12:45:02 +0000816
Markus Armbruster26f54e92014-10-07 13:59:04 +0200817 blk_unref(blk);
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100818 if (sockpath) {
819 unlink(sockpath);
820 }
bellard7a5ca862008-05-27 21:13:40 +0000821
Markus Armbrusterfbf28a42014-09-29 16:07:55 +0200822 qemu_opts_del(sn_opts);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800823
Paolo Bonzinia517e882011-11-04 15:51:21 +0100824 if (device) {
825 void *ret;
826 pthread_join(client_thread, &ret);
827 exit(ret != NULL);
828 } else {
829 exit(EXIT_SUCCESS);
830 }
bellard7a5ca862008-05-27 21:13:40 +0000831}