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