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