]> git.proxmox.com Git - mirror_qemu.git/blame - qemu-nbd.c
migratioin/ram: leave RAMBlock->bmap blank on allocating
[mirror_qemu.git] / qemu-nbd.c
CommitLineData
cd831bd7 1/*
7a5ca864
FB
2 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
3 *
4 * Network Block Device
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
8167ee88 16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
7a5ca864
FB
17 */
18
d38ea87a 19#include "qemu/osdep.h"
c2a3d7da
EB
20#include <getopt.h>
21#include <libgen.h>
22#include <pthread.h>
23
da34e65c 24#include "qapi/error.h"
f348b6d1 25#include "qemu/cutils.h"
26f54e9a 26#include "sysemu/block-backend.h"
b3838a40 27#include "block/block_int.h"
737e150e 28#include "block/nbd.h"
6a1751b7 29#include "qemu/main-loop.h"
922a01a0 30#include "qemu/option.h"
537b41f5 31#include "qemu/error-report.h"
0ab3b337 32#include "qemu/config-file.h"
58369e22 33#include "qemu/bswap.h"
39ca463e 34#include "qemu/log.h"
53fabd4b 35#include "qemu/systemd.h"
8c116b0e 36#include "block/snapshot.h"
452fcdbc 37#include "qapi/qmp/qdict.h"
d49b6836 38#include "qapi/qmp/qstring.h"
0ab3b337 39#include "qom/object_interfaces.h"
d0d6ff58 40#include "io/channel-socket.h"
e4849c1d 41#include "io/net-listener.h"
c2297088 42#include "crypto/init.h"
39ca463e 43#include "trace/control.h"
be377133 44#include "qemu-version.h"
7a5ca864 45
3c1fa35d
EB
46#ifdef __linux__
47#define HAVE_NBD_DEVICE 1
48#else
49#define HAVE_NBD_DEVICE 0
50#endif
51
713cc671 52#define SOCKET_PATH "/var/lock/qemu-nbd-%s"
fa8b7ce2
DB
53#define QEMU_NBD_OPT_CACHE 256
54#define QEMU_NBD_OPT_AIO 257
55#define QEMU_NBD_OPT_DISCARD 258
56#define QEMU_NBD_OPT_DETECT_ZEROES 259
57#define QEMU_NBD_OPT_OBJECT 260
58#define QEMU_NBD_OPT_TLSCREDS 261
59#define QEMU_NBD_OPT_IMAGE_OPTS 262
ffb31e1d 60#define QEMU_NBD_OPT_FORK 263
b25e12da 61#define QEMU_NBD_OPT_TLSAUTHZ 264
7a5ca864 62
bd31c214
EB
63#define MBR_SIZE 512
64
9d976580 65static NBDExport *export;
b1d8e52e 66static int verbose;
a517e88b 67static char *srcpath;
bd269ebc 68static SocketAddress *saddr;
7860a380
PB
69static int persistent = 0;
70static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state;
a61c6782
PB
71static int shared = 1;
72static int nb_fds;
e4849c1d 73static QIONetListener *server;
145614a1 74static QCryptoTLSCreds *tlscreds;
b25e12da 75static const char *tlsauthz;
7a5ca864
FB
76
77static void usage(const char *name)
78{
b033cd86 79 (printf) (
7a5ca864 80"Usage: %s [OPTIONS] FILE\n"
68b96f15
EB
81" or: %s -L [OPTIONS]\n"
82"QEMU Disk Network Block Device Utility\n"
7a5ca864 83"\n"
713cc671
PL
84" -h, --help display this help and exit\n"
85" -V, --version output version information and exit\n"
b033cd86
PB
86"\n"
87"Connection properties:\n"
713cc671
PL
88" -p, --port=PORT port to listen on (default `%d')\n"
89" -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
90" -k, --socket=PATH path to the unix socket\n"
91" (default '"SOCKET_PATH"')\n"
92" -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
93" -t, --persistent don't exit on the last connection\n"
94" -v, --verbose display extra debugging information\n"
f5cd0bb5
VSO
95" -x, --export-name=NAME expose export by name (default is empty string)\n"
96" -D, --description=TEXT export a human-readable description\n"
7a5ca864 97"\n"
b033cd86 98"Exposing part of the image:\n"
713cc671
PL
99" -o, --offset=OFFSET offset into the image\n"
100" -P, --partition=NUM only expose partition NUM\n"
636192c4 101" -B, --bitmap=NAME expose a persistent dirty bitmap\n"
b033cd86 102"\n"
0ab3b337 103"General purpose options:\n"
68b96f15 104" -L, --list list exports available from another NBD server\n"
0ab3b337
DB
105" --object type,id=ID,... define an object such as 'secret' for providing\n"
106" passwords and/or encryption keys\n"
f7812df7 107" --tls-creds=ID use id of an earlier --object to provide TLS\n"
b25e12da
DB
108" --tls-authz=ID use id of an earlier --object to provide\n"
109" authorization\n"
39ca463e
DL
110" -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
111" specify tracing options\n"
ffb31e1d
HR
112" --fork fork off the server process and exit the parent\n"
113" once the server is running\n"
3c1fa35d
EB
114#if HAVE_NBD_DEVICE
115"\n"
b033cd86 116"Kernel NBD client support:\n"
713cc671
PL
117" -c, --connect=DEV connect FILE to the local NBD device DEV\n"
118" -d, --disconnect disconnect the specified device\n"
b033cd86
PB
119#endif
120"\n"
121"Block device options:\n"
713cc671
PL
122" -f, --format=FORMAT set image format (raw, qcow2, ...)\n"
123" -r, --read-only export read-only\n"
124" -s, --snapshot use FILE as an external snapshot, create a temporary\n"
125" file with backing_file=FILE, redirect the write to\n"
126" the temporary one\n"
8c116b0e 127" -l, --load-snapshot=SNAPSHOT_PARAM\n"
713cc671
PL
128" load an internal snapshot inside FILE and export it\n"
129" as an read-only device, SNAPSHOT_PARAM format is\n"
130" 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
131" '[ID_OR_NAME]'\n"
132" -n, --nocache disable host cache\n"
133" --cache=MODE set cache mode (none, writeback, ...)\n"
713cc671 134" --aio=MODE set AIO mode (native or threads)\n"
b3838a40 135" --discard=MODE set discard mode (ignore, unmap)\n"
6883de6c 136" --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n"
77c9aaef 137" --image-opts treat FILE as a full set of image options\n"
b033cd86 138"\n"
f5048cb7 139QEMU_HELP_BOTTOM "\n"
68b96f15 140 , name, name, NBD_DEFAULT_PORT, "DEVICE");
7a5ca864
FB
141}
142
143static void version(const char *name)
144{
145 printf(
7e563bfb 146"%s " QEMU_FULL_VERSION "\n"
7a5ca864
FB
147"Written by Anthony Liguori.\n"
148"\n"
be377133 149QEMU_COPYRIGHT "\n"
7a5ca864
FB
150"This is free software; see the source for copying conditions. There is NO\n"
151"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
315bc7aa 152 , name);
7a5ca864
FB
153}
154
155struct partition_record
156{
157 uint8_t bootable;
158 uint8_t start_head;
159 uint32_t start_cylinder;
160 uint8_t start_sector;
161 uint8_t system;
162 uint8_t end_head;
163 uint8_t end_cylinder;
164 uint8_t end_sector;
165 uint32_t start_sector_abs;
166 uint32_t nb_sectors_abs;
167};
168
169static void read_partition(uint8_t *p, struct partition_record *r)
170{
171 r->bootable = p[0];
172 r->start_head = p[1];
173 r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
174 r->start_sector = p[2] & 0x3f;
175 r->system = p[4];
176 r->end_head = p[5];
177 r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
178 r->end_sector = p[6] & 0x3f;
ac97393d 179
773dce3c
PM
180 r->start_sector_abs = ldl_le_p(p + 8);
181 r->nb_sectors_abs = ldl_le_p(p + 12);
7a5ca864
FB
182}
183
4c58e80a 184static int find_partition(BlockBackend *blk, int partition,
9d26dfcb 185 uint64_t *offset, uint64_t *size)
7a5ca864
FB
186{
187 struct partition_record mbr[4];
bd31c214 188 uint8_t data[MBR_SIZE];
7a5ca864
FB
189 int i;
190 int ext_partnum = 4;
cb7cf0e3 191 int ret;
7a5ca864 192
bd31c214
EB
193 ret = blk_pread(blk, 0, data, sizeof(data));
194 if (ret < 0) {
a4699e55 195 error_report("error while reading: %s", strerror(-ret));
85b01e09 196 exit(EXIT_FAILURE);
cb7cf0e3 197 }
7a5ca864
FB
198
199 if (data[510] != 0x55 || data[511] != 0xaa) {
185b4338 200 return -EINVAL;
7a5ca864
FB
201 }
202
203 for (i = 0; i < 4; i++) {
204 read_partition(&data[446 + 16 * i], &mbr[i]);
205
453b07b1 206 if (!mbr[i].system || !mbr[i].nb_sectors_abs) {
7a5ca864 207 continue;
453b07b1 208 }
7a5ca864
FB
209
210 if (mbr[i].system == 0xF || mbr[i].system == 0x5) {
211 struct partition_record ext[4];
bd31c214 212 uint8_t data1[MBR_SIZE];
7a5ca864
FB
213 int j;
214
bd31c214
EB
215 ret = blk_pread(blk, mbr[i].start_sector_abs * MBR_SIZE,
216 data1, sizeof(data1));
217 if (ret < 0) {
a4699e55 218 error_report("error while reading: %s", strerror(-ret));
85b01e09 219 exit(EXIT_FAILURE);
cb7cf0e3 220 }
7a5ca864
FB
221
222 for (j = 0; j < 4; j++) {
223 read_partition(&data1[446 + 16 * j], &ext[j]);
453b07b1 224 if (!ext[j].system || !ext[j].nb_sectors_abs) {
7a5ca864 225 continue;
453b07b1 226 }
7a5ca864
FB
227
228 if ((ext_partnum + j + 1) == partition) {
229 *offset = (uint64_t)ext[j].start_sector_abs << 9;
230 *size = (uint64_t)ext[j].nb_sectors_abs << 9;
231 return 0;
232 }
233 }
234 ext_partnum += 4;
235 } else if ((i + 1) == partition) {
236 *offset = (uint64_t)mbr[i].start_sector_abs << 9;
237 *size = (uint64_t)mbr[i].nb_sectors_abs << 9;
238 return 0;
239 }
240 }
241
185b4338 242 return -ENOENT;
7a5ca864
FB
243}
244
bb345110
PB
245static void termsig_handler(int signum)
246{
23994a5f 247 atomic_cmpxchg(&state, RUNNING, TERMINATE);
a61c6782 248 qemu_notify_event();
bb345110
PB
249}
250
537b41f5 251
68b96f15
EB
252static int qemu_nbd_client_list(SocketAddress *saddr, QCryptoTLSCreds *tls,
253 const char *hostname)
254{
255 int ret = EXIT_FAILURE;
256 int rc;
257 Error *err = NULL;
258 QIOChannelSocket *sioc;
259 NBDExportInfo *list;
260 int i, j;
261
262 sioc = qio_channel_socket_new();
263 if (qio_channel_socket_connect_sync(sioc, saddr, &err) < 0) {
264 error_report_err(err);
265 return EXIT_FAILURE;
266 }
267 rc = nbd_receive_export_list(QIO_CHANNEL(sioc), tls, hostname, &list,
268 &err);
269 if (rc < 0) {
270 if (err) {
271 error_report_err(err);
272 }
273 goto out;
274 }
275 printf("exports available: %d\n", rc);
276 for (i = 0; i < rc; i++) {
277 printf(" export: '%s'\n", list[i].name);
278 if (list[i].description && *list[i].description) {
279 printf(" description: %s\n", list[i].description);
280 }
281 if (list[i].flags & NBD_FLAG_HAS_FLAGS) {
c4e2aff8
HR
282 static const char *const flag_names[] = {
283 [NBD_FLAG_READ_ONLY_BIT] = "readonly",
284 [NBD_FLAG_SEND_FLUSH_BIT] = "flush",
285 [NBD_FLAG_SEND_FUA_BIT] = "fua",
286 [NBD_FLAG_ROTATIONAL_BIT] = "rotational",
287 [NBD_FLAG_SEND_TRIM_BIT] = "trim",
288 [NBD_FLAG_SEND_WRITE_ZEROES_BIT] = "zeroes",
289 [NBD_FLAG_SEND_DF_BIT] = "df",
290 [NBD_FLAG_CAN_MULTI_CONN_BIT] = "multi",
291 [NBD_FLAG_SEND_RESIZE_BIT] = "resize",
292 [NBD_FLAG_SEND_CACHE_BIT] = "cache",
293 };
294
68b96f15
EB
295 printf(" size: %" PRIu64 "\n", list[i].size);
296 printf(" flags: 0x%x (", list[i].flags);
c4e2aff8
HR
297 for (size_t bit = 0; bit < ARRAY_SIZE(flag_names); bit++) {
298 if (flag_names[bit] && (list[i].flags & (1 << bit))) {
299 printf(" %s", flag_names[bit]);
300 }
68b96f15
EB
301 }
302 printf(" )\n");
303 }
304 if (list[i].min_block) {
305 printf(" min block: %u\n", list[i].min_block);
306 printf(" opt block: %u\n", list[i].opt_block);
307 printf(" max block: %u\n", list[i].max_block);
308 }
309 if (list[i].n_contexts) {
310 printf(" available meta contexts: %d\n", list[i].n_contexts);
311 for (j = 0; j < list[i].n_contexts; j++) {
312 printf(" %s\n", list[i].contexts[j]);
313 }
314 }
315 }
316 nbd_free_export_list(list, rc);
317
318 ret = EXIT_SUCCESS;
319 out:
320 object_unref(OBJECT(sioc));
321 return ret;
322}
323
324
3c1fa35d 325#if HAVE_NBD_DEVICE
a517e88b 326static void *show_parts(void *arg)
cd831bd7 327{
a6ac2313 328 char *device = arg;
a517e88b
PB
329 int nbd;
330
331 /* linux just needs an open() to trigger
332 * the partition table update
333 * but remember to load the module with max_part != 0 :
334 * modprobe nbd max_part=63
335 */
336 nbd = open(device, O_RDWR);
fc19f8a0 337 if (nbd >= 0) {
a517e88b
PB
338 close(nbd);
339 }
340 return NULL;
341}
cd831bd7 342
a517e88b
PB
343static void *nbd_client_thread(void *arg)
344{
a6ac2313 345 char *device = arg;
6dc1667d 346 NBDExportInfo info = { .request_sizes = false, .name = g_strdup("") };
d0d6ff58
DB
347 QIOChannelSocket *sioc;
348 int fd;
a517e88b
PB
349 int ret;
350 pthread_t show_parts_thread;
1ce52846 351 Error *local_error = NULL;
a517e88b 352
d0d6ff58
DB
353 sioc = qio_channel_socket_new();
354 if (qio_channel_socket_connect_sync(sioc,
355 saddr,
356 &local_error) < 0) {
48bec07e 357 error_report_err(local_error);
dc10e8b3
SH
358 goto out;
359 }
a517e88b 360
6dc1667d 361 ret = nbd_receive_negotiate(QIO_CHANNEL(sioc),
004a89fc 362 NULL, NULL, NULL, &info, &local_error);
fc19f8a0 363 if (ret < 0) {
1ce52846 364 if (local_error) {
78288671 365 error_report_err(local_error);
1ce52846 366 }
0c544d73 367 goto out_socket;
a517e88b
PB
368 }
369
a6ac2313 370 fd = open(device, O_RDWR);
fc19f8a0 371 if (fd < 0) {
a6ac2313 372 /* Linux-only, we can use %m in printf. */
b9884681 373 error_report("Failed to open %s: %m", device);
0c544d73 374 goto out_socket;
a6ac2313
PB
375 }
376
004a89fc 377 ret = nbd_init(fd, sioc, &info, &local_error);
fc19f8a0 378 if (ret < 0) {
be41c100 379 error_report_err(local_error);
0c544d73 380 goto out_fd;
a517e88b
PB
381 }
382
383 /* update partition table */
a6ac2313 384 pthread_create(&show_parts_thread, NULL, show_parts, device);
a517e88b 385
c1f8fdc3
PB
386 if (verbose) {
387 fprintf(stderr, "NBD device %s is now connected to %s\n",
388 device, srcpath);
389 } else {
390 /* Close stderr so that the qemu-nbd process exits. */
391 dup2(STDOUT_FILENO, STDERR_FILENO);
392 }
a517e88b
PB
393
394 ret = nbd_client(fd);
395 if (ret) {
0c544d73 396 goto out_fd;
cd831bd7 397 }
a517e88b 398 close(fd);
d0d6ff58 399 object_unref(OBJECT(sioc));
6dc1667d 400 g_free(info.name);
a517e88b
PB
401 kill(getpid(), SIGTERM);
402 return (void *) EXIT_SUCCESS;
403
0c544d73
PB
404out_fd:
405 close(fd);
406out_socket:
d0d6ff58 407 object_unref(OBJECT(sioc));
a517e88b 408out:
6dc1667d 409 g_free(info.name);
a517e88b
PB
410 kill(getpid(), SIGTERM);
411 return (void *) EXIT_FAILURE;
cd831bd7 412}
3c1fa35d 413#endif /* HAVE_NBD_DEVICE */
cd831bd7 414
e4afbf4f 415static int nbd_can_accept(void)
a61c6782 416{
df8ad9f1 417 return state == RUNNING && nb_fds < shared;
a61c6782
PB
418}
419
9d976580 420static void nbd_export_closed(NBDExport *export)
7860a380
PB
421{
422 assert(state == TERMINATING);
423 state = TERMINATED;
424}
425
d0d6ff58 426static void nbd_update_server_watch(void);
e4afbf4f 427
0c9390d9 428static void nbd_client_closed(NBDClient *client, bool negotiated)
a61c6782 429{
1743b515 430 nb_fds--;
0c9390d9 431 if (negotiated && nb_fds == 0 && !persistent && state == RUNNING) {
7860a380
PB
432 state = TERMINATE;
433 }
d0d6ff58 434 nbd_update_server_watch();
7860a380 435 nbd_client_put(client);
a61c6782
PB
436}
437
e4849c1d
DB
438static void nbd_accept(QIONetListener *listener, QIOChannelSocket *cioc,
439 gpointer opaque)
a61c6782 440{
7860a380 441 if (state >= TERMINATE) {
e4849c1d 442 return;
7860a380
PB
443 }
444
ee7d7aab 445 nb_fds++;
d0d6ff58 446 nbd_update_server_watch();
b25e12da 447 nbd_client_new(cioc, tlscreds, tlsauthz, nbd_client_closed);
a61c6782
PB
448}
449
d0d6ff58 450static void nbd_update_server_watch(void)
e4afbf4f
FZ
451{
452 if (nbd_can_accept()) {
e4849c1d 453 qio_net_listener_set_client_func(server, nbd_accept, NULL, NULL);
e4afbf4f 454 } else {
e4849c1d 455 qio_net_listener_set_client_func(server, NULL, NULL, NULL);
e4afbf4f
FZ
456 }
457}
458
48bec07e 459
bd269ebc 460static SocketAddress *nbd_build_socket_address(const char *sockpath,
48bec07e
DB
461 const char *bindto,
462 const char *port)
463{
bd269ebc 464 SocketAddress *saddr;
48bec07e 465
bd269ebc 466 saddr = g_new0(SocketAddress, 1);
48bec07e 467 if (sockpath) {
bd269ebc
MA
468 saddr->type = SOCKET_ADDRESS_TYPE_UNIX;
469 saddr->u.q_unix.path = g_strdup(sockpath);
48bec07e 470 } else {
0399293e 471 InetSocketAddress *inet;
bd269ebc
MA
472 saddr->type = SOCKET_ADDRESS_TYPE_INET;
473 inet = &saddr->u.inet;
0399293e 474 inet->host = g_strdup(bindto);
48bec07e 475 if (port) {
0399293e 476 inet->port = g_strdup(port);
48bec07e 477 } else {
0399293e 478 inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
48bec07e
DB
479 }
480 }
481
482 return saddr;
483}
484
485
77c9aaef
DB
486static QemuOptsList file_opts = {
487 .name = "file",
488 .implied_opt_name = "file",
489 .head = QTAILQ_HEAD_INITIALIZER(file_opts.head),
490 .desc = {
491 /* no elements => accept any params */
492 { /* end of list */ }
493 },
494};
495
0ab3b337
DB
496static QemuOptsList qemu_object_opts = {
497 .name = "object",
498 .implied_opt_name = "qom-type",
499 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
500 .desc = {
501 { }
502 },
503};
504
505
145614a1 506
68b96f15
EB
507static QCryptoTLSCreds *nbd_get_tls_creds(const char *id, bool list,
508 Error **errp)
145614a1
DB
509{
510 Object *obj;
511 QCryptoTLSCreds *creds;
512
513 obj = object_resolve_path_component(
514 object_get_objects_root(), id);
515 if (!obj) {
516 error_setg(errp, "No TLS credentials with id '%s'",
517 id);
518 return NULL;
519 }
520 creds = (QCryptoTLSCreds *)
521 object_dynamic_cast(obj, TYPE_QCRYPTO_TLS_CREDS);
522 if (!creds) {
523 error_setg(errp, "Object with id '%s' is not TLS credentials",
524 id);
525 return NULL;
526 }
527
68b96f15
EB
528 if (list) {
529 if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT) {
530 error_setg(errp,
531 "Expecting TLS credentials with a client endpoint");
532 return NULL;
533 }
534 } else {
535 if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_SERVER) {
536 error_setg(errp,
537 "Expecting TLS credentials with a server endpoint");
538 return NULL;
539 }
145614a1
DB
540 }
541 object_ref(obj);
542 return creds;
543}
544
a721f53b
RJ
545static void setup_address_and_port(const char **address, const char **port)
546{
547 if (*address == NULL) {
548 *address = "0.0.0.0";
549 }
550
551 if (*port == NULL) {
552 *port = stringify(NBD_DEFAULT_PORT);
553 }
554}
555
a721f53b
RJ
556/*
557 * Check socket parameters compatibility when socket activation is used.
558 */
559static const char *socket_activation_validate_opts(const char *device,
560 const char *sockpath,
561 const char *address,
68b96f15
EB
562 const char *port,
563 bool list)
a721f53b
RJ
564{
565 if (device != NULL) {
566 return "NBD device can't be set when using socket activation";
567 }
568
569 if (sockpath != NULL) {
570 return "Unix socket can't be set when using socket activation";
571 }
572
573 if (address != NULL) {
574 return "The interface can't be set when using socket activation";
575 }
576
577 if (port != NULL) {
578 return "TCP port number can't be set when using socket activation";
579 }
580
68b96f15
EB
581 if (list) {
582 return "List mode is incompatible with socket activation";
583 }
584
a721f53b
RJ
585 return NULL;
586}
145614a1 587
b3b5299d
KW
588static void qemu_nbd_shutdown(void)
589{
590 job_cancel_sync_all();
591 bdrv_close_all();
592}
593
7a5ca864
FB
594int main(int argc, char **argv)
595{
26f54e9a 596 BlockBackend *blk;
7a5ca864 597 BlockDriverState *bs;
9d26dfcb 598 uint64_t dev_offset = 0;
7423f417 599 uint16_t nbdflags = 0;
cd831bd7 600 bool disconnect = false;
a721f53b 601 const char *bindto = NULL;
48bec07e
DB
602 const char *port = NULL;
603 char *sockpath = NULL;
a6ac2313 604 char *device = NULL;
9d26dfcb 605 int64_t fd_size;
8c116b0e
WX
606 QemuOpts *sn_opts = NULL;
607 const char *sn_id_or_name = NULL;
68b96f15 608 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:x:T:D:B:L";
7a5ca864 609 struct option lopt[] = {
aa6e546c
DB
610 { "help", no_argument, NULL, 'h' },
611 { "version", no_argument, NULL, 'V' },
612 { "bind", required_argument, NULL, 'b' },
613 { "port", required_argument, NULL, 'p' },
614 { "socket", required_argument, NULL, 'k' },
615 { "offset", required_argument, NULL, 'o' },
616 { "read-only", no_argument, NULL, 'r' },
617 { "partition", required_argument, NULL, 'P' },
636192c4 618 { "bitmap", required_argument, NULL, 'B' },
aa6e546c
DB
619 { "connect", required_argument, NULL, 'c' },
620 { "disconnect", no_argument, NULL, 'd' },
68b96f15 621 { "list", no_argument, NULL, 'L' },
aa6e546c
DB
622 { "snapshot", no_argument, NULL, 's' },
623 { "load-snapshot", required_argument, NULL, 'l' },
624 { "nocache", no_argument, NULL, 'n' },
625 { "cache", required_argument, NULL, QEMU_NBD_OPT_CACHE },
626 { "aio", required_argument, NULL, QEMU_NBD_OPT_AIO },
627 { "discard", required_argument, NULL, QEMU_NBD_OPT_DISCARD },
628 { "detect-zeroes", required_argument, NULL,
629 QEMU_NBD_OPT_DETECT_ZEROES },
630 { "shared", required_argument, NULL, 'e' },
631 { "format", required_argument, NULL, 'f' },
632 { "persistent", no_argument, NULL, 't' },
633 { "verbose", no_argument, NULL, 'v' },
634 { "object", required_argument, NULL, QEMU_NBD_OPT_OBJECT },
635 { "export-name", required_argument, NULL, 'x' },
b1a75b33 636 { "description", required_argument, NULL, 'D' },
aa6e546c 637 { "tls-creds", required_argument, NULL, QEMU_NBD_OPT_TLSCREDS },
b25e12da 638 { "tls-authz", required_argument, NULL, QEMU_NBD_OPT_TLSAUTHZ },
aa6e546c 639 { "image-opts", no_argument, NULL, QEMU_NBD_OPT_IMAGE_OPTS },
39ca463e 640 { "trace", required_argument, NULL, 'T' },
ffb31e1d 641 { "fork", no_argument, NULL, QEMU_NBD_OPT_FORK },
660f11be 642 { NULL, 0, NULL, 0 }
7a5ca864
FB
643 };
644 int ch;
645 int opt_ind = 0;
f5edb014 646 int flags = BDRV_O_RDWR;
43b51011 647 int partition = 0;
4fbec260 648 int ret = 0;
39a5235c 649 bool seen_cache = false;
ded9d2d5 650 bool seen_discard = false;
39a5235c 651 bool seen_aio = false;
a517e88b 652 pthread_t client_thread;
e6b63677 653 const char *fmt = NULL;
34b5d2c6 654 Error *local_err = NULL;
b3838a40 655 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
4fbec260 656 QDict *options = NULL;
68b96f15 657 const char *export_name = NULL; /* defaults to "" later for server mode */
b1a75b33 658 const char *export_description = NULL;
636192c4 659 const char *bitmap = NULL;
145614a1 660 const char *tlscredsid = NULL;
77c9aaef 661 bool imageOpts = false;
6effd5bf 662 bool writethrough = true;
39ca463e 663 char *trace_file = NULL;
ffb31e1d 664 bool fork_process = false;
68b96f15 665 bool list = false;
ffb31e1d 666 int old_stderr = -1;
a721f53b 667 unsigned socket_activation;
7a5ca864 668
a517e88b
PB
669 /* The client thread uses SIGTERM to interrupt the server. A signal
670 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
671 */
bb345110 672 struct sigaction sa_sigterm;
bb345110
PB
673 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
674 sa_sigterm.sa_handler = termsig_handler;
675 sigaction(SIGTERM, &sa_sigterm, NULL);
c2297088 676
041e32b8
HR
677#ifdef CONFIG_POSIX
678 signal(SIGPIPE, SIG_IGN);
679#endif
680
f5852efa 681 error_init(argv[0]);
fe4db84d 682 module_call_init(MODULE_INIT_TRACE);
e8f2d272 683 qcrypto_init(&error_fatal);
c2297088 684
0ab3b337
DB
685 module_call_init(MODULE_INIT_QOM);
686 qemu_add_opts(&qemu_object_opts);
39ca463e 687 qemu_add_opts(&qemu_trace_opts);
10f5bff6 688 qemu_init_exec_dir(argv[0]);
bb345110 689
7a5ca864
FB
690 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
691 switch (ch) {
692 case 's':
2f726488
TS
693 flags |= BDRV_O_SNAPSHOT;
694 break;
695 case 'n':
39a5235c
PB
696 optarg = (char *) "none";
697 /* fallthrough */
698 case QEMU_NBD_OPT_CACHE:
699 if (seen_cache) {
85b01e09
MA
700 error_report("-n and --cache can only be specified once");
701 exit(EXIT_FAILURE);
39a5235c
PB
702 }
703 seen_cache = true;
6effd5bf 704 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) == -1) {
85b01e09
MA
705 error_report("Invalid cache mode `%s'", optarg);
706 exit(EXIT_FAILURE);
39a5235c 707 }
7a5ca864 708 break;
39a5235c
PB
709 case QEMU_NBD_OPT_AIO:
710 if (seen_aio) {
85b01e09
MA
711 error_report("--aio can only be specified once");
712 exit(EXIT_FAILURE);
39a5235c
PB
713 }
714 seen_aio = true;
715 if (!strcmp(optarg, "native")) {
716 flags |= BDRV_O_NATIVE_AIO;
717 } else if (!strcmp(optarg, "threads")) {
718 /* this is the default */
719 } else {
85b01e09
MA
720 error_report("invalid aio mode `%s'", optarg);
721 exit(EXIT_FAILURE);
39a5235c
PB
722 }
723 break;
ded9d2d5
PB
724 case QEMU_NBD_OPT_DISCARD:
725 if (seen_discard) {
85b01e09
MA
726 error_report("--discard can only be specified once");
727 exit(EXIT_FAILURE);
ded9d2d5
PB
728 }
729 seen_discard = true;
730 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
85b01e09
MA
731 error_report("Invalid discard mode `%s'", optarg);
732 exit(EXIT_FAILURE);
ded9d2d5
PB
733 }
734 break;
b3838a40
PL
735 case QEMU_NBD_OPT_DETECT_ZEROES:
736 detect_zeroes =
f7abe0ec 737 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
b3838a40 738 optarg,
b3838a40
PL
739 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
740 &local_err);
741 if (local_err) {
c29b77f9
MA
742 error_reportf_err(local_err,
743 "Failed to parse detect_zeroes mode: ");
85b01e09 744 exit(EXIT_FAILURE);
b3838a40
PL
745 }
746 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
747 !(flags & BDRV_O_UNMAP)) {
85b01e09
MA
748 error_report("setting detect-zeroes to unmap is not allowed "
749 "without setting discard operation to unmap");
750 exit(EXIT_FAILURE);
b3838a40
PL
751 }
752 break;
7a5ca864
FB
753 case 'b':
754 bindto = optarg;
755 break;
756 case 'p':
48bec07e 757 port = optarg;
7a5ca864
FB
758 break;
759 case 'o':
43b51011
EB
760 if (qemu_strtou64(optarg, NULL, 0, &dev_offset) < 0) {
761 error_report("Invalid offset '%s'", optarg);
85b01e09 762 exit(EXIT_FAILURE);
7a5ca864 763 }
7a5ca864 764 break;
8c116b0e
WX
765 case 'l':
766 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
70b94331
MA
767 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
768 optarg, false);
8c116b0e 769 if (!sn_opts) {
85b01e09
MA
770 error_report("Failed in parsing snapshot param `%s'",
771 optarg);
772 exit(EXIT_FAILURE);
8c116b0e
WX
773 }
774 } else {
775 sn_id_or_name = optarg;
776 }
777 /* fall through */
7a5ca864 778 case 'r':
b90fb4b8 779 nbdflags |= NBD_FLAG_READ_ONLY;
07108b29 780 flags &= ~BDRV_O_RDWR;
7a5ca864
FB
781 break;
782 case 'P':
0ae2d546
EB
783 warn_report("The '-P' option is deprecated; use --image-opts with "
784 "a raw device wrapper for subset exports instead");
43b51011
EB
785 if (qemu_strtoi(optarg, NULL, 0, &partition) < 0 ||
786 partition < 1 || partition > 8) {
787 error_report("Invalid partition '%s'", optarg);
85b01e09 788 exit(EXIT_FAILURE);
713cc671 789 }
7a5ca864 790 break;
636192c4
EB
791 case 'B':
792 bitmap = optarg;
793 break;
cd831bd7 794 case 'k':
b32f6c28 795 sockpath = optarg;
713cc671 796 if (sockpath[0] != '/') {
9af9e0fe 797 error_report("socket path must be absolute");
85b01e09 798 exit(EXIT_FAILURE);
713cc671 799 }
cd831bd7
TS
800 break;
801 case 'd':
802 disconnect = true;
803 break;
804 case 'c':
805 device = optarg;
806 break;
3b05a8e9 807 case 'e':
43b51011
EB
808 if (qemu_strtoi(optarg, NULL, 0, &shared) < 0 ||
809 shared < 1) {
85b01e09
MA
810 error_report("Invalid shared device number '%s'", optarg);
811 exit(EXIT_FAILURE);
3b05a8e9 812 }
3b05a8e9 813 break;
e6b63677
DB
814 case 'f':
815 fmt = optarg;
816 break;
713cc671
PL
817 case 't':
818 persistent = 1;
819 break;
3d4b2f9c
DB
820 case 'x':
821 export_name = optarg;
822 break;
b1a75b33
EB
823 case 'D':
824 export_description = optarg;
825 break;
7a5ca864
FB
826 case 'v':
827 verbose = 1;
828 break;
829 case 'V':
830 version(argv[0]);
831 exit(0);
832 break;
833 case 'h':
834 usage(argv[0]);
835 exit(0);
836 break;
837 case '?':
85b01e09
MA
838 error_report("Try `%s --help' for more information.", argv[0]);
839 exit(EXIT_FAILURE);
0ab3b337
DB
840 case QEMU_NBD_OPT_OBJECT: {
841 QemuOpts *opts;
842 opts = qemu_opts_parse_noisily(&qemu_object_opts,
843 optarg, true);
844 if (!opts) {
845 exit(EXIT_FAILURE);
846 }
847 } break;
145614a1
DB
848 case QEMU_NBD_OPT_TLSCREDS:
849 tlscredsid = optarg;
850 break;
77c9aaef
DB
851 case QEMU_NBD_OPT_IMAGE_OPTS:
852 imageOpts = true;
853 break;
39ca463e
DL
854 case 'T':
855 g_free(trace_file);
856 trace_file = trace_opt_parse(optarg);
857 break;
b25e12da
DB
858 case QEMU_NBD_OPT_TLSAUTHZ:
859 tlsauthz = optarg;
860 break;
ffb31e1d
HR
861 case QEMU_NBD_OPT_FORK:
862 fork_process = true;
863 break;
68b96f15
EB
864 case 'L':
865 list = true;
866 break;
7a5ca864
FB
867 }
868 }
869
68b96f15
EB
870 if (list) {
871 if (argc != optind) {
872 error_report("List mode is incompatible with a file name");
873 exit(EXIT_FAILURE);
874 }
875 if (export_name || export_description || dev_offset || partition ||
876 device || disconnect || fmt || sn_id_or_name || bitmap ||
877 seen_aio || seen_discard || seen_cache) {
878 error_report("List mode is incompatible with per-device settings");
879 exit(EXIT_FAILURE);
880 }
881 if (fork_process) {
882 error_report("List mode is incompatible with forking");
883 exit(EXIT_FAILURE);
884 }
885 } else if ((argc - optind) != 1) {
433672b0
MA
886 error_report("Invalid number of arguments");
887 error_printf("Try `%s --help' for more information.\n", argv[0]);
85b01e09 888 exit(EXIT_FAILURE);
68b96f15
EB
889 } else if (!export_name) {
890 export_name = "";
7a5ca864
FB
891 }
892
7e1e0c11
MA
893 qemu_opts_foreach(&qemu_object_opts,
894 user_creatable_add_opts_foreach,
895 NULL, &error_fatal);
0ab3b337 896
39ca463e
DL
897 if (!trace_init_backends()) {
898 exit(1);
899 }
900 trace_init_file(trace_file);
901 qemu_set_log(LOG_TRACE);
902
a721f53b
RJ
903 socket_activation = check_socket_activation();
904 if (socket_activation == 0) {
905 setup_address_and_port(&bindto, &port);
906 } else {
907 /* Using socket activation - check user didn't use -p etc. */
908 const char *err_msg = socket_activation_validate_opts(device, sockpath,
68b96f15
EB
909 bindto, port,
910 list);
a721f53b
RJ
911 if (err_msg != NULL) {
912 error_report("%s", err_msg);
913 exit(EXIT_FAILURE);
914 }
53fabd4b
PB
915
916 /* qemu-nbd can only listen on a single socket. */
917 if (socket_activation > 1) {
918 error_report("qemu-nbd does not support socket activation with %s > 1",
919 "LISTEN_FDS");
920 exit(EXIT_FAILURE);
921 }
a721f53b
RJ
922 }
923
145614a1
DB
924 if (tlscredsid) {
925 if (sockpath) {
926 error_report("TLS is only supported with IPv4/IPv6");
927 exit(EXIT_FAILURE);
928 }
929 if (device) {
930 error_report("TLS is not supported with a host device");
931 exit(EXIT_FAILURE);
932 }
b25e12da
DB
933 if (tlsauthz && list) {
934 error_report("TLS authorization is incompatible with export list");
935 exit(EXIT_FAILURE);
936 }
68b96f15 937 tlscreds = nbd_get_tls_creds(tlscredsid, list, &local_err);
145614a1
DB
938 if (local_err) {
939 error_report("Failed to get TLS creds %s",
940 error_get_pretty(local_err));
941 exit(EXIT_FAILURE);
942 }
b25e12da
DB
943 } else {
944 if (tlsauthz) {
945 error_report("--tls-authz is not permitted without --tls-creds");
946 exit(EXIT_FAILURE);
947 }
145614a1
DB
948 }
949
68b96f15
EB
950 if (list) {
951 saddr = nbd_build_socket_address(sockpath, bindto, port);
952 return qemu_nbd_client_list(saddr, tlscreds, bindto);
953 }
954
3c1fa35d
EB
955#if !HAVE_NBD_DEVICE
956 if (disconnect || device) {
957 error_report("Kernel /dev/nbdN support not available");
958 exit(EXIT_FAILURE);
959 }
960#else /* HAVE_NBD_DEVICE */
cd831bd7 961 if (disconnect) {
d0d6ff58
DB
962 int nbdfd = open(argv[optind], O_RDWR);
963 if (nbdfd < 0) {
85b01e09
MA
964 error_report("Cannot open %s: %s", argv[optind],
965 strerror(errno));
966 exit(EXIT_FAILURE);
fc19f8a0 967 }
d0d6ff58 968 nbd_disconnect(nbdfd);
cd831bd7 969
d0d6ff58 970 close(nbdfd);
cd831bd7
TS
971
972 printf("%s disconnected\n", argv[optind]);
973
713cc671 974 return 0;
cd831bd7 975 }
3c1fa35d 976#endif
cd831bd7 977
ffb31e1d 978 if ((device && !verbose) || fork_process) {
c1f8fdc3
PB
979 int stderr_fd[2];
980 pid_t pid;
981 int ret;
982
fc19f8a0 983 if (qemu_pipe(stderr_fd) < 0) {
85b01e09
MA
984 error_report("Error setting up communication pipe: %s",
985 strerror(errno));
986 exit(EXIT_FAILURE);
c1f8fdc3
PB
987 }
988
989 /* Now daemonize, but keep a communication channel open to
990 * print errors and exit with the proper status code.
991 */
992 pid = fork();
70d4739e 993 if (pid < 0) {
85b01e09
MA
994 error_report("Failed to fork: %s", strerror(errno));
995 exit(EXIT_FAILURE);
70d4739e 996 } else if (pid == 0) {
c1f8fdc3 997 close(stderr_fd[0]);
9faf31b6 998 ret = qemu_daemon(1, 0);
c1f8fdc3
PB
999
1000 /* Temporarily redirect stderr to the parent's pipe... */
ffb31e1d 1001 old_stderr = dup(STDERR_FILENO);
c1f8fdc3 1002 dup2(stderr_fd[1], STDERR_FILENO);
fc19f8a0 1003 if (ret < 0) {
85b01e09
MA
1004 error_report("Failed to daemonize: %s", strerror(errno));
1005 exit(EXIT_FAILURE);
c1f8fdc3
PB
1006 }
1007
1008 /* ... close the descriptor we inherited and go on. */
1009 close(stderr_fd[1]);
1010 } else {
1011 bool errors = false;
1012 char *buf;
1013
1014 /* In the parent. Print error messages from the child until
1015 * it closes the pipe.
1016 */
1017 close(stderr_fd[1]);
1018 buf = g_malloc(1024);
1019 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
1020 errors = true;
1021 ret = qemu_write_full(STDERR_FILENO, buf, ret);
fc19f8a0 1022 if (ret < 0) {
c1f8fdc3
PB
1023 exit(EXIT_FAILURE);
1024 }
1025 }
fc19f8a0 1026 if (ret < 0) {
85b01e09
MA
1027 error_report("Cannot read from daemon: %s",
1028 strerror(errno));
1029 exit(EXIT_FAILURE);
c1f8fdc3
PB
1030 }
1031
1032 /* Usually the daemon should not print any message.
1033 * Exit with zero status in that case.
1034 */
1035 exit(errors);
1036 }
1037 }
1038
a6ac2313
PB
1039 if (device != NULL && sockpath == NULL) {
1040 sockpath = g_malloc(128);
1041 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
cd831bd7
TS
1042 }
1043
e4849c1d 1044 server = qio_net_listener_new();
a721f53b 1045 if (socket_activation == 0) {
a721f53b 1046 saddr = nbd_build_socket_address(sockpath, bindto, port);
e4849c1d
DB
1047 if (qio_net_listener_open_sync(server, saddr, &local_err) < 0) {
1048 object_unref(OBJECT(server));
a721f53b 1049 error_report_err(local_err);
e4849c1d 1050 exit(EXIT_FAILURE);
a721f53b
RJ
1051 }
1052 } else {
e4849c1d 1053 size_t i;
a721f53b 1054 /* See comment in check_socket_activation above. */
e4849c1d
DB
1055 for (i = 0; i < socket_activation; i++) {
1056 QIOChannelSocket *sioc;
1057 sioc = qio_channel_socket_new_fd(FIRST_SOCKET_ACTIVATION_FD + i,
1058 &local_err);
1059 if (sioc == NULL) {
1060 object_unref(OBJECT(server));
1061 error_report("Failed to use socket activation: %s",
1062 error_get_pretty(local_err));
1063 exit(EXIT_FAILURE);
1064 }
1065 qio_net_listener_add(server, sioc);
1066 object_unref(OBJECT(sioc));
a721f53b
RJ
1067 }
1068 }
48bec07e 1069
2f78e491 1070 if (qemu_init_main_loop(&local_err)) {
565f65d2 1071 error_report_err(local_err);
2f78e491
CN
1072 exit(EXIT_FAILURE);
1073 }
802ddc37 1074 bdrv_init();
b3b5299d 1075 atexit(qemu_nbd_shutdown);
802ddc37 1076
77c9aaef
DB
1077 srcpath = argv[optind];
1078 if (imageOpts) {
1079 QemuOpts *opts;
1080 if (fmt) {
1081 error_report("--image-opts and -f are mutually exclusive");
1082 exit(EXIT_FAILURE);
1083 }
1084 opts = qemu_opts_parse_noisily(&file_opts, srcpath, true);
1085 if (!opts) {
1086 qemu_opts_reset(&file_opts);
1087 exit(EXIT_FAILURE);
1088 }
1089 options = qemu_opts_to_qdict(opts, NULL);
1090 qemu_opts_reset(&file_opts);
efaa7c4e 1091 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
77c9aaef
DB
1092 } else {
1093 if (fmt) {
1094 options = qdict_new();
46f5ac20 1095 qdict_put_str(options, "driver", fmt);
77c9aaef 1096 }
efaa7c4e 1097 blk = blk_new_open(srcpath, NULL, options, flags, &local_err);
e6b63677
DB
1098 }
1099
4fbec260 1100 if (!blk) {
c29b77f9
MA
1101 error_reportf_err(local_err, "Failed to blk_new_open '%s': ",
1102 argv[optind]);
85b01e09 1103 exit(EXIT_FAILURE);
802ddc37 1104 }
4fbec260 1105 bs = blk_bs(blk);
802ddc37 1106
6effd5bf
KW
1107 blk_set_enable_write_cache(blk, !writethrough);
1108
8c116b0e
WX
1109 if (sn_opts) {
1110 ret = bdrv_snapshot_load_tmp(bs,
1111 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
1112 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
1113 &local_err);
1114 } else if (sn_id_or_name) {
1115 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
1116 &local_err);
1117 }
1118 if (ret < 0) {
c29b77f9 1119 error_reportf_err(local_err, "Failed to load snapshot: ");
85b01e09 1120 exit(EXIT_FAILURE);
8c116b0e
WX
1121 }
1122
b3838a40 1123 bs->detect_zeroes = detect_zeroes;
4c58e80a 1124 fd_size = blk_getlength(blk);
98f44bbe 1125 if (fd_size < 0) {
85b01e09
MA
1126 error_report("Failed to determine the image length: %s",
1127 strerror(-fd_size));
1128 exit(EXIT_FAILURE);
98f44bbe 1129 }
802ddc37 1130
e424b655 1131 if (dev_offset >= fd_size) {
9d26dfcb
EB
1132 error_report("Offset (%" PRIu64 ") has to be smaller than the image "
1133 "size (%" PRId64 ")", dev_offset, fd_size);
e424b655
TG
1134 exit(EXIT_FAILURE);
1135 }
1136 fd_size -= dev_offset;
1137
43b51011 1138 if (partition) {
9d26dfcb 1139 uint64_t limit;
4485936b
EB
1140
1141 if (dev_offset) {
1142 error_report("Cannot request partition and offset together");
1143 exit(EXIT_FAILURE);
1144 }
1145 ret = find_partition(blk, partition, &dev_offset, &limit);
185b4338 1146 if (ret < 0) {
85b01e09 1147 error_report("Could not find partition %d: %s", partition,
a4699e55 1148 strerror(-ret));
85b01e09 1149 exit(EXIT_FAILURE);
185b4338 1150 }
4485936b
EB
1151 /*
1152 * MBR partition limits are (32-bit << 9); this assert lets
9d26dfcb 1153 * the compiler know that we can't overflow 64 bits.
4485936b 1154 */
9d26dfcb 1155 assert(dev_offset + limit >= dev_offset);
4485936b 1156 if (dev_offset + limit > fd_size) {
9d26dfcb
EB
1157 error_report("Discovered partition %d at offset %" PRIu64
1158 " size %" PRIu64 ", but size exceeds file length %"
1159 PRId64, partition, dev_offset, limit, fd_size);
4485936b
EB
1160 exit(EXIT_FAILURE);
1161 }
1162 fd_size = limit;
802ddc37
PB
1163 }
1164
3fa4c765 1165 export = nbd_export_new(bs, dev_offset, fd_size, export_name,
636192c4 1166 export_description, bitmap, nbdflags,
678ba275
EB
1167 nbd_export_closed, writethrough, NULL,
1168 &error_fatal);
3b05a8e9 1169
f1ef5555 1170 if (device) {
3c1fa35d 1171#if HAVE_NBD_DEVICE
f1ef5555
PB
1172 int ret;
1173
a6ac2313 1174 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
f1ef5555 1175 if (ret != 0) {
85b01e09
MA
1176 error_report("Failed to create client thread: %s", strerror(ret));
1177 exit(EXIT_FAILURE);
f1ef5555 1178 }
3c1fa35d 1179#endif
f1ef5555
PB
1180 } else {
1181 /* Shut up GCC warnings. */
1182 memset(&client_thread, 0, sizeof(client_thread));
1183 }
1184
d0d6ff58 1185 nbd_update_server_watch();
7a5ca864 1186
9faf31b6
MT
1187 /* now when the initialization is (almost) complete, chdir("/")
1188 * to free any busy filesystems */
1189 if (chdir("/") < 0) {
85b01e09
MA
1190 error_report("Could not chdir to root directory: %s",
1191 strerror(errno));
1192 exit(EXIT_FAILURE);
9faf31b6
MT
1193 }
1194
ffb31e1d
HR
1195 if (fork_process) {
1196 dup2(old_stderr, STDERR_FILENO);
1197 close(old_stderr);
1198 }
1199
7860a380 1200 state = RUNNING;
3b05a8e9 1201 do {
a61c6782 1202 main_loop_wait(false);
7860a380
PB
1203 if (state == TERMINATE) {
1204 state = TERMINATING;
9d976580
PMD
1205 nbd_export_close(export);
1206 nbd_export_put(export);
1207 export = NULL;
7860a380
PB
1208 }
1209 } while (state != TERMINATED);
7a5ca864 1210
26f54e9a 1211 blk_unref(blk);
b32f6c28
PB
1212 if (sockpath) {
1213 unlink(sockpath);
1214 }
7a5ca864 1215
fbf28a43 1216 qemu_opts_del(sn_opts);
8c116b0e 1217
a517e88b
PB
1218 if (device) {
1219 void *ret;
1220 pthread_join(client_thread, &ret);
1221 exit(ret != NULL);
1222 } else {
1223 exit(EXIT_SUCCESS);
1224 }
7a5ca864 1225}