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