blob: 081fcf74d5c95311c28a3a47c033ccf016f9b21e [file] [log] [blame]
thscd831bd2008-07-03 10:23:51 +00001/*
bellard7a5ca862008-05-27 21:13:40 +00002 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
3 *
4 * Network Block Device
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Blue Swirl8167ee82009-07-16 20:47:01 +000016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
bellard7a5ca862008-05-27 21:13:40 +000017 */
18
Peter Maydelld38ea872016-01-29 17:50:05 +000019#include "qemu/osdep.h"
Eric Blakec2a3d7d2017-07-21 08:50:47 -050020#include <getopt.h>
21#include <libgen.h>
22#include <pthread.h>
23
Markus Armbrusterda34e652016-03-14 09:01:28 +010024#include "qapi/error.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020025#include "qemu/cutils.h"
Markus Armbruster26f54e92014-10-07 13:59:04 +020026#include "sysemu/block-backend.h"
Peter Lievenb3838a42014-08-13 19:20:18 +020027#include "block/block_int.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010028#include "block/nbd.h"
Alex Bligh6a1751b2013-08-21 16:02:47 +010029#include "qemu/main-loop.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010030#include "qemu/option.h"
Paolo Bonzini537b41f2014-02-17 14:43:51 +010031#include "qemu/error-report.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000032#include "qemu/config-file.h"
Paolo Bonzini58369e22016-03-15 17:22:36 +010033#include "qemu/bswap.h"
Denis V. Lunev39ca4632016-06-17 17:44:12 +030034#include "qemu/log.h"
Paolo Bonzini53fabd42017-03-16 16:29:45 +010035#include "qemu/systemd.h"
Wenchao Xia8c116b02013-12-04 17:10:55 +080036#include "block/snapshot.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010037#include "qapi/qmp/qdict.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010038#include "qapi/qmp/qstring.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000039#include "qom/object_interfaces.h"
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +000040#include "io/channel-socket.h"
Daniel P. Berrangee4849c12017-12-18 10:16:43 +000041#include "io/net-listener.h"
Daniel P. Berrangec2297082016-04-06 12:12:06 +010042#include "crypto/init.h"
Denis V. Lunev39ca4632016-06-17 17:44:12 +030043#include "trace/control.h"
Eric Blakebe377132017-07-21 08:50:46 -050044#include "qemu-version.h"
bellard7a5ca862008-05-27 21:13:40 +000045
Eric Blake3c1fa352018-12-15 07:53:08 -060046#ifdef __linux__
47#define HAVE_NBD_DEVICE 1
48#else
49#define HAVE_NBD_DEVICE 0
50#endif
51
Peter Lieven713cc672014-08-13 19:20:19 +020052#define SOCKET_PATH "/var/lock/qemu-nbd-%s"
Daniel P. Berrangefa8b7ce2016-02-17 10:10:21 +000053#define QEMU_NBD_OPT_CACHE 256
54#define QEMU_NBD_OPT_AIO 257
55#define QEMU_NBD_OPT_DISCARD 258
56#define QEMU_NBD_OPT_DETECT_ZEROES 259
57#define QEMU_NBD_OPT_OBJECT 260
58#define QEMU_NBD_OPT_TLSCREDS 261
59#define QEMU_NBD_OPT_IMAGE_OPTS 262
Max Reitzffb31e12016-09-28 22:46:42 +020060#define QEMU_NBD_OPT_FORK 263
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +000061#define QEMU_NBD_OPT_TLSAUTHZ 264
bellard7a5ca862008-05-27 21:13:40 +000062
Eric Blakebd31c212016-05-06 10:26:42 -060063#define MBR_SIZE 512
64
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +010065static NBDExport *export;
blueswir1b1d8e522008-10-26 13:43:07 +000066static int verbose;
Paolo Bonzinia517e882011-11-04 15:51:21 +010067static char *srcpath;
Markus Armbrusterbd269eb2017-04-26 09:36:41 +020068static SocketAddress *saddr;
Paolo Bonzini7860a382012-09-18 13:31:56 +020069static int persistent = 0;
70static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state;
Paolo Bonzinia61c6782011-09-12 17:28:11 +020071static int shared = 1;
72static int nb_fds;
Daniel P. Berrangee4849c12017-12-18 10:16:43 +000073static QIONetListener *server;
Daniel P. Berrange145614a2016-02-10 18:41:13 +000074static QCryptoTLSCreds *tlscreds;
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +000075static const char *tlsauthz;
bellard7a5ca862008-05-27 21:13:40 +000076
77static void usage(const char *name)
78{
Paolo Bonzinib033cd82012-07-18 14:50:52 +020079 (printf) (
bellard7a5ca862008-05-27 21:13:40 +000080"Usage: %s [OPTIONS] FILE\n"
Eric Blake68b96f12019-01-17 13:36:56 -060081" or: %s -L [OPTIONS]\n"
82"QEMU Disk Network Block Device Utility\n"
bellard7a5ca862008-05-27 21:13:40 +000083"\n"
Peter Lieven713cc672014-08-13 19:20:19 +020084" -h, --help display this help and exit\n"
85" -V, --version output version information and exit\n"
bellard7a5ca862008-05-27 21:13:40 +000086"\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020087"Connection properties:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020088" -p, --port=PORT port to listen on (default `%d')\n"
89" -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
90" -k, --socket=PATH path to the unix socket\n"
91" (default '"SOCKET_PATH"')\n"
92" -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
93" -t, --persistent don't exit on the last connection\n"
94" -v, --verbose display extra debugging information\n"
Vladimir Sementsov-Ogievskiyf5cd0bb2018-10-03 20:02:27 +030095" -x, --export-name=NAME expose export by name (default is empty string)\n"
96" -D, --description=TEXT export a human-readable description\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020097"\n"
98"Exposing part of the image:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020099" -o, --offset=OFFSET offset into the image\n"
100" -P, --partition=NUM only expose partition NUM\n"
Eric Blake636192c2019-01-11 13:47:20 -0600101" -B, --bitmap=NAME expose a persistent dirty bitmap\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200102"\n"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000103"General purpose options:\n"
Eric Blake68b96f12019-01-17 13:36:56 -0600104" -L, --list list exports available from another NBD server\n"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000105" --object type,id=ID,... define an object such as 'secret' for providing\n"
106" passwords and/or encryption keys\n"
Eric Blakef7812df2018-10-03 13:04:26 -0500107" --tls-creds=ID use id of an earlier --object to provide TLS\n"
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +0000108" --tls-authz=ID use id of an earlier --object to provide\n"
109" authorization\n"
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300110" -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
111" specify tracing options\n"
Max Reitzffb31e12016-09-28 22:46:42 +0200112" --fork fork off the server process and exit the parent\n"
113" once the server is running\n"
Eric Blake3c1fa352018-12-15 07:53:08 -0600114#if HAVE_NBD_DEVICE
115"\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200116"Kernel NBD client support:\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200117" -c, --connect=DEV connect FILE to the local NBD device DEV\n"
118" -d, --disconnect disconnect the specified device\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200119#endif
120"\n"
121"Block device options:\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200122" -f, --format=FORMAT set image format (raw, qcow2, ...)\n"
123" -r, --read-only export read-only\n"
124" -s, --snapshot use FILE as an external snapshot, create a temporary\n"
125" file with backing_file=FILE, redirect the write to\n"
126" the temporary one\n"
Wenchao Xia8c116b02013-12-04 17:10:55 +0800127" -l, --load-snapshot=SNAPSHOT_PARAM\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200128" load an internal snapshot inside FILE and export it\n"
129" as an read-only device, SNAPSHOT_PARAM format is\n"
130" 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
131" '[ID_OR_NAME]'\n"
132" -n, --nocache disable host cache\n"
133" --cache=MODE set cache mode (none, writeback, ...)\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200134" --aio=MODE set AIO mode (native or threads)\n"
Peter Lievenb3838a42014-08-13 19:20:18 +0200135" --discard=MODE set discard mode (ignore, unmap)\n"
Andrey Korolyov6883de62015-07-31 22:12:54 +0300136" --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n"
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000137" --image-opts treat FILE as a full set of image options\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200138"\n"
Eric Blakef5048cb2017-08-03 11:33:53 -0500139QEMU_HELP_BOTTOM "\n"
Eric Blake68b96f12019-01-17 13:36:56 -0600140 , name, name, NBD_DEFAULT_PORT, "DEVICE");
bellard7a5ca862008-05-27 21:13:40 +0000141}
142
143static void version(const char *name)
144{
145 printf(
Thomas Huth7e563bf2018-02-15 12:06:47 +0100146"%s " QEMU_FULL_VERSION "\n"
bellard7a5ca862008-05-27 21:13:40 +0000147"Written by Anthony Liguori.\n"
148"\n"
Eric Blakebe377132017-07-21 08:50:46 -0500149QEMU_COPYRIGHT "\n"
bellard7a5ca862008-05-27 21:13:40 +0000150"This is free software; see the source for copying conditions. There is NO\n"
151"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
ths315bc7a2008-07-18 18:06:23 +0000152 , name);
bellard7a5ca862008-05-27 21:13:40 +0000153}
154
155struct partition_record
156{
157 uint8_t bootable;
158 uint8_t start_head;
159 uint32_t start_cylinder;
160 uint8_t start_sector;
161 uint8_t system;
162 uint8_t end_head;
163 uint8_t end_cylinder;
164 uint8_t end_sector;
165 uint32_t start_sector_abs;
166 uint32_t nb_sectors_abs;
167};
168
169static void read_partition(uint8_t *p, struct partition_record *r)
170{
171 r->bootable = p[0];
172 r->start_head = p[1];
173 r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
174 r->start_sector = p[2] & 0x3f;
175 r->system = p[4];
176 r->end_head = p[5];
177 r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
178 r->end_sector = p[6] & 0x3f;
Max Reitzac973932015-02-25 13:08:23 -0500179
Peter Maydell773dce32016-06-10 16:00:36 +0100180 r->start_sector_abs = ldl_le_p(p + 8);
181 r->nb_sectors_abs = ldl_le_p(p + 12);
bellard7a5ca862008-05-27 21:13:40 +0000182}
183
Max Reitz4c58e802014-11-18 12:21:19 +0100184static int find_partition(BlockBackend *blk, int partition,
Eric Blake9d26dfc2019-01-17 13:36:43 -0600185 uint64_t *offset, uint64_t *size)
bellard7a5ca862008-05-27 21:13:40 +0000186{
187 struct partition_record mbr[4];
Eric Blakebd31c212016-05-06 10:26:42 -0600188 uint8_t data[MBR_SIZE];
bellard7a5ca862008-05-27 21:13:40 +0000189 int i;
190 int ext_partnum = 4;
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900191 int ret;
bellard7a5ca862008-05-27 21:13:40 +0000192
Eric Blakebd31c212016-05-06 10:26:42 -0600193 ret = blk_pread(blk, 0, data, sizeof(data));
194 if (ret < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100195 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100196 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900197 }
bellard7a5ca862008-05-27 21:13:40 +0000198
199 if (data[510] != 0x55 || data[511] != 0xaa) {
Paolo Bonzini185b4332012-03-05 08:56:10 +0100200 return -EINVAL;
bellard7a5ca862008-05-27 21:13:40 +0000201 }
202
203 for (i = 0; i < 4; i++) {
204 read_partition(&data[446 + 16 * i], &mbr[i]);
205
Max Reitz453b07b2015-02-25 13:08:15 -0500206 if (!mbr[i].system || !mbr[i].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000207 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500208 }
bellard7a5ca862008-05-27 21:13:40 +0000209
210 if (mbr[i].system == 0xF || mbr[i].system == 0x5) {
211 struct partition_record ext[4];
Eric Blakebd31c212016-05-06 10:26:42 -0600212 uint8_t data1[MBR_SIZE];
bellard7a5ca862008-05-27 21:13:40 +0000213 int j;
214
Eric Blakebd31c212016-05-06 10:26:42 -0600215 ret = blk_pread(blk, mbr[i].start_sector_abs * MBR_SIZE,
216 data1, sizeof(data1));
217 if (ret < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100218 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100219 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900220 }
bellard7a5ca862008-05-27 21:13:40 +0000221
222 for (j = 0; j < 4; j++) {
223 read_partition(&data1[446 + 16 * j], &ext[j]);
Max Reitz453b07b2015-02-25 13:08:15 -0500224 if (!ext[j].system || !ext[j].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000225 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500226 }
bellard7a5ca862008-05-27 21:13:40 +0000227
228 if ((ext_partnum + j + 1) == partition) {
229 *offset = (uint64_t)ext[j].start_sector_abs << 9;
230 *size = (uint64_t)ext[j].nb_sectors_abs << 9;
231 return 0;
232 }
233 }
234 ext_partnum += 4;
235 } else if ((i + 1) == partition) {
236 *offset = (uint64_t)mbr[i].start_sector_abs << 9;
237 *size = (uint64_t)mbr[i].nb_sectors_abs << 9;
238 return 0;
239 }
240 }
241
Paolo Bonzini185b4332012-03-05 08:56:10 +0100242 return -ENOENT;
bellard7a5ca862008-05-27 21:13:40 +0000243}
244
Paolo Bonzinibb345112011-11-04 15:51:19 +0100245static void termsig_handler(int signum)
246{
Pavel Butsykin23994a52016-04-14 13:20:15 +0300247 atomic_cmpxchg(&state, RUNNING, TERMINATE);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200248 qemu_notify_event();
Paolo Bonzinibb345112011-11-04 15:51:19 +0100249}
250
Paolo Bonzini537b41f2014-02-17 14:43:51 +0100251
Eric Blake68b96f12019-01-17 13:36:56 -0600252static int qemu_nbd_client_list(SocketAddress *saddr, QCryptoTLSCreds *tls,
253 const char *hostname)
254{
255 int ret = EXIT_FAILURE;
256 int rc;
257 Error *err = NULL;
258 QIOChannelSocket *sioc;
259 NBDExportInfo *list;
260 int i, j;
261
262 sioc = qio_channel_socket_new();
263 if (qio_channel_socket_connect_sync(sioc, saddr, &err) < 0) {
264 error_report_err(err);
265 return EXIT_FAILURE;
266 }
267 rc = nbd_receive_export_list(QIO_CHANNEL(sioc), tls, hostname, &list,
268 &err);
269 if (rc < 0) {
270 if (err) {
271 error_report_err(err);
272 }
273 goto out;
274 }
275 printf("exports available: %d\n", rc);
276 for (i = 0; i < rc; i++) {
277 printf(" export: '%s'\n", list[i].name);
278 if (list[i].description && *list[i].description) {
279 printf(" description: %s\n", list[i].description);
280 }
281 if (list[i].flags & NBD_FLAG_HAS_FLAGS) {
Max Reitzc4e2aff2019-04-05 21:16:35 +0200282 static const char *const flag_names[] = {
283 [NBD_FLAG_READ_ONLY_BIT] = "readonly",
284 [NBD_FLAG_SEND_FLUSH_BIT] = "flush",
285 [NBD_FLAG_SEND_FUA_BIT] = "fua",
286 [NBD_FLAG_ROTATIONAL_BIT] = "rotational",
287 [NBD_FLAG_SEND_TRIM_BIT] = "trim",
288 [NBD_FLAG_SEND_WRITE_ZEROES_BIT] = "zeroes",
289 [NBD_FLAG_SEND_DF_BIT] = "df",
290 [NBD_FLAG_CAN_MULTI_CONN_BIT] = "multi",
291 [NBD_FLAG_SEND_RESIZE_BIT] = "resize",
292 [NBD_FLAG_SEND_CACHE_BIT] = "cache",
293 };
294
Eric Blake68b96f12019-01-17 13:36:56 -0600295 printf(" size: %" PRIu64 "\n", list[i].size);
296 printf(" flags: 0x%x (", list[i].flags);
Max Reitzc4e2aff2019-04-05 21:16:35 +0200297 for (size_t bit = 0; bit < ARRAY_SIZE(flag_names); bit++) {
298 if (flag_names[bit] && (list[i].flags & (1 << bit))) {
299 printf(" %s", flag_names[bit]);
300 }
Eric Blake68b96f12019-01-17 13:36:56 -0600301 }
302 printf(" )\n");
303 }
304 if (list[i].min_block) {
305 printf(" min block: %u\n", list[i].min_block);
306 printf(" opt block: %u\n", list[i].opt_block);
307 printf(" max block: %u\n", list[i].max_block);
308 }
309 if (list[i].n_contexts) {
310 printf(" available meta contexts: %d\n", list[i].n_contexts);
311 for (j = 0; j < list[i].n_contexts; j++) {
312 printf(" %s\n", list[i].contexts[j]);
313 }
314 }
315 }
316 nbd_free_export_list(list, rc);
317
318 ret = EXIT_SUCCESS;
319 out:
320 object_unref(OBJECT(sioc));
321 return ret;
322}
323
324
Eric Blake3c1fa352018-12-15 07:53:08 -0600325#if HAVE_NBD_DEVICE
Paolo Bonzinia517e882011-11-04 15:51:21 +0100326static void *show_parts(void *arg)
thscd831bd2008-07-03 10:23:51 +0000327{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100328 char *device = arg;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100329 int nbd;
thscd831bd2008-07-03 10:23:51 +0000330
Paolo Bonzinia517e882011-11-04 15:51:21 +0100331 /* linux just needs an open() to trigger
332 * the partition table update
333 * but remember to load the module with max_part != 0 :
334 * modprobe nbd max_part=63
335 */
336 nbd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100337 if (nbd >= 0) {
Paolo Bonzinia517e882011-11-04 15:51:21 +0100338 close(nbd);
thscd831bd2008-07-03 10:23:51 +0000339 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100340 return NULL;
341}
342
343static void *nbd_client_thread(void *arg)
344{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100345 char *device = arg;
Eric Blake6dc16672019-01-17 13:36:46 -0600346 NBDExportInfo info = { .request_sizes = false, .name = g_strdup("") };
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000347 QIOChannelSocket *sioc;
348 int fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100349 int ret;
350 pthread_t show_parts_thread;
Max Reitz1ce52842015-01-26 21:02:59 -0500351 Error *local_error = NULL;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100352
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000353 sioc = qio_channel_socket_new();
354 if (qio_channel_socket_connect_sync(sioc,
355 saddr,
356 &local_error) < 0) {
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100357 error_report_err(local_error);
Stefan Hajnoczidc10e8b2012-01-05 13:16:07 +0000358 goto out;
359 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100360
Eric Blake6dc16672019-01-17 13:36:46 -0600361 ret = nbd_receive_negotiate(QIO_CHANNEL(sioc),
Eric Blake004a89f2017-07-07 15:30:41 -0500362 NULL, NULL, NULL, &info, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100363 if (ret < 0) {
Max Reitz1ce52842015-01-26 21:02:59 -0500364 if (local_error) {
Markus Armbruster78288672015-12-18 16:35:07 +0100365 error_report_err(local_error);
Max Reitz1ce52842015-01-26 21:02:59 -0500366 }
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100367 goto out_socket;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100368 }
369
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100370 fd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100371 if (fd < 0) {
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100372 /* Linux-only, we can use %m in printf. */
Markus Armbrusterb9884682015-12-18 16:35:18 +0100373 error_report("Failed to open %s: %m", device);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100374 goto out_socket;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100375 }
376
Eric Blake004a89f2017-07-07 15:30:41 -0500377 ret = nbd_init(fd, sioc, &info, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100378 if (ret < 0) {
Vladimir Sementsov-Ogievskiybe41c102017-05-26 14:09:13 +0300379 error_report_err(local_error);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100380 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100381 }
382
383 /* update partition table */
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100384 pthread_create(&show_parts_thread, NULL, show_parts, device);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100385
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100386 if (verbose) {
387 fprintf(stderr, "NBD device %s is now connected to %s\n",
388 device, srcpath);
389 } else {
390 /* Close stderr so that the qemu-nbd process exits. */
391 dup2(STDOUT_FILENO, STDERR_FILENO);
392 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100393
394 ret = nbd_client(fd);
395 if (ret) {
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100396 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100397 }
398 close(fd);
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000399 object_unref(OBJECT(sioc));
Eric Blake6dc16672019-01-17 13:36:46 -0600400 g_free(info.name);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100401 kill(getpid(), SIGTERM);
402 return (void *) EXIT_SUCCESS;
403
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100404out_fd:
405 close(fd);
406out_socket:
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000407 object_unref(OBJECT(sioc));
Paolo Bonzinia517e882011-11-04 15:51:21 +0100408out:
Eric Blake6dc16672019-01-17 13:36:46 -0600409 g_free(info.name);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100410 kill(getpid(), SIGTERM);
411 return (void *) EXIT_FAILURE;
thscd831bd2008-07-03 10:23:51 +0000412}
Eric Blake3c1fa352018-12-15 07:53:08 -0600413#endif /* HAVE_NBD_DEVICE */
thscd831bd2008-07-03 10:23:51 +0000414
Fam Zhenge4afbf42015-05-19 10:50:59 +0000415static int nbd_can_accept(void)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200416{
Eric Blakedf8ad9f2017-05-26 22:04:21 -0500417 return state == RUNNING && nb_fds < shared;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200418}
419
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +0100420static void nbd_export_closed(NBDExport *export)
Paolo Bonzini7860a382012-09-18 13:31:56 +0200421{
422 assert(state == TERMINATING);
423 state = TERMINATED;
424}
425
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000426static void nbd_update_server_watch(void);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000427
Eric Blake0c9390d2017-06-08 17:26:17 -0500428static void nbd_client_closed(NBDClient *client, bool negotiated)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200429{
Paolo Bonzini1743b512011-09-19 14:33:23 +0200430 nb_fds--;
Eric Blake0c9390d2017-06-08 17:26:17 -0500431 if (negotiated && nb_fds == 0 && !persistent && state == RUNNING) {
Paolo Bonzini7860a382012-09-18 13:31:56 +0200432 state = TERMINATE;
433 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000434 nbd_update_server_watch();
Paolo Bonzini7860a382012-09-18 13:31:56 +0200435 nbd_client_put(client);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200436}
437
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000438static void nbd_accept(QIONetListener *listener, QIOChannelSocket *cioc,
439 gpointer opaque)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200440{
Paolo Bonzini7860a382012-09-18 13:31:56 +0200441 if (state >= TERMINATE) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000442 return;
Paolo Bonzini7860a382012-09-18 13:31:56 +0200443 }
444
Fam Zhengee7d7aa2016-01-14 16:41:01 +0800445 nb_fds++;
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000446 nbd_update_server_watch();
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +0000447 nbd_client_new(cioc, tlscreds, tlsauthz, nbd_client_closed);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200448}
449
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000450static void nbd_update_server_watch(void)
Fam Zhenge4afbf42015-05-19 10:50:59 +0000451{
452 if (nbd_can_accept()) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000453 qio_net_listener_set_client_func(server, nbd_accept, NULL, NULL);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000454 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000455 qio_net_listener_set_client_func(server, NULL, NULL, NULL);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000456 }
457}
458
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100459
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200460static SocketAddress *nbd_build_socket_address(const char *sockpath,
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100461 const char *bindto,
462 const char *port)
463{
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200464 SocketAddress *saddr;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100465
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200466 saddr = g_new0(SocketAddress, 1);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100467 if (sockpath) {
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200468 saddr->type = SOCKET_ADDRESS_TYPE_UNIX;
469 saddr->u.q_unix.path = g_strdup(sockpath);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100470 } else {
Eric Blake03992932016-03-03 09:16:48 -0700471 InetSocketAddress *inet;
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200472 saddr->type = SOCKET_ADDRESS_TYPE_INET;
473 inet = &saddr->u.inet;
Eric Blake03992932016-03-03 09:16:48 -0700474 inet->host = g_strdup(bindto);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100475 if (port) {
Eric Blake03992932016-03-03 09:16:48 -0700476 inet->port = g_strdup(port);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100477 } else {
Eric Blake03992932016-03-03 09:16:48 -0700478 inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100479 }
480 }
481
482 return saddr;
483}
484
485
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000486static QemuOptsList file_opts = {
487 .name = "file",
488 .implied_opt_name = "file",
489 .head = QTAILQ_HEAD_INITIALIZER(file_opts.head),
490 .desc = {
491 /* no elements => accept any params */
492 { /* end of list */ }
493 },
494};
495
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000496static QemuOptsList qemu_object_opts = {
497 .name = "object",
498 .implied_opt_name = "qom-type",
499 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
500 .desc = {
501 { }
502 },
503};
504
505
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000506
Eric Blake68b96f12019-01-17 13:36:56 -0600507static QCryptoTLSCreds *nbd_get_tls_creds(const char *id, bool list,
508 Error **errp)
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000509{
510 Object *obj;
511 QCryptoTLSCreds *creds;
512
513 obj = object_resolve_path_component(
514 object_get_objects_root(), id);
515 if (!obj) {
516 error_setg(errp, "No TLS credentials with id '%s'",
517 id);
518 return NULL;
519 }
520 creds = (QCryptoTLSCreds *)
521 object_dynamic_cast(obj, TYPE_QCRYPTO_TLS_CREDS);
522 if (!creds) {
523 error_setg(errp, "Object with id '%s' is not TLS credentials",
524 id);
525 return NULL;
526 }
527
Eric Blake68b96f12019-01-17 13:36:56 -0600528 if (list) {
529 if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT) {
530 error_setg(errp,
531 "Expecting TLS credentials with a client endpoint");
532 return NULL;
533 }
534 } else {
535 if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_SERVER) {
536 error_setg(errp,
537 "Expecting TLS credentials with a server endpoint");
538 return NULL;
539 }
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000540 }
541 object_ref(obj);
542 return creds;
543}
544
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000545static void setup_address_and_port(const char **address, const char **port)
546{
547 if (*address == NULL) {
548 *address = "0.0.0.0";
549 }
550
551 if (*port == NULL) {
552 *port = stringify(NBD_DEFAULT_PORT);
553 }
554}
555
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000556/*
557 * Check socket parameters compatibility when socket activation is used.
558 */
559static const char *socket_activation_validate_opts(const char *device,
560 const char *sockpath,
561 const char *address,
Eric Blake68b96f12019-01-17 13:36:56 -0600562 const char *port,
563 bool list)
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000564{
565 if (device != NULL) {
566 return "NBD device can't be set when using socket activation";
567 }
568
569 if (sockpath != NULL) {
570 return "Unix socket can't be set when using socket activation";
571 }
572
573 if (address != NULL) {
574 return "The interface can't be set when using socket activation";
575 }
576
577 if (port != NULL) {
578 return "TCP port number can't be set when using socket activation";
579 }
580
Eric Blake68b96f12019-01-17 13:36:56 -0600581 if (list) {
582 return "List mode is incompatible with socket activation";
583 }
584
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000585 return NULL;
586}
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000587
Kevin Wolfb3b52992018-05-16 13:46:37 +0200588static void qemu_nbd_shutdown(void)
589{
590 job_cancel_sync_all();
591 bdrv_close_all();
592}
593
bellard7a5ca862008-05-27 21:13:40 +0000594int main(int argc, char **argv)
595{
Markus Armbruster26f54e92014-10-07 13:59:04 +0200596 BlockBackend *blk;
bellard7a5ca862008-05-27 21:13:40 +0000597 BlockDriverState *bs;
Eric Blake9d26dfc2019-01-17 13:36:43 -0600598 uint64_t dev_offset = 0;
Eric Blake7423f412016-07-21 13:34:46 -0600599 uint16_t nbdflags = 0;
thscd831bd2008-07-03 10:23:51 +0000600 bool disconnect = false;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000601 const char *bindto = NULL;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100602 const char *port = NULL;
603 char *sockpath = NULL;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100604 char *device = NULL;
Eric Blake9d26dfc2019-01-17 13:36:43 -0600605 int64_t fd_size;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800606 QemuOpts *sn_opts = NULL;
607 const char *sn_id_or_name = NULL;
Eric Blake68b96f12019-01-17 13:36:56 -0600608 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:x:T:D:B:L";
bellard7a5ca862008-05-27 21:13:40 +0000609 struct option lopt[] = {
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000610 { "help", no_argument, NULL, 'h' },
611 { "version", no_argument, NULL, 'V' },
612 { "bind", required_argument, NULL, 'b' },
613 { "port", required_argument, NULL, 'p' },
614 { "socket", required_argument, NULL, 'k' },
615 { "offset", required_argument, NULL, 'o' },
616 { "read-only", no_argument, NULL, 'r' },
617 { "partition", required_argument, NULL, 'P' },
Eric Blake636192c2019-01-11 13:47:20 -0600618 { "bitmap", required_argument, NULL, 'B' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000619 { "connect", required_argument, NULL, 'c' },
620 { "disconnect", no_argument, NULL, 'd' },
Eric Blake68b96f12019-01-17 13:36:56 -0600621 { "list", no_argument, NULL, 'L' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000622 { "snapshot", no_argument, NULL, 's' },
623 { "load-snapshot", required_argument, NULL, 'l' },
624 { "nocache", no_argument, NULL, 'n' },
625 { "cache", required_argument, NULL, QEMU_NBD_OPT_CACHE },
626 { "aio", required_argument, NULL, QEMU_NBD_OPT_AIO },
627 { "discard", required_argument, NULL, QEMU_NBD_OPT_DISCARD },
628 { "detect-zeroes", required_argument, NULL,
629 QEMU_NBD_OPT_DETECT_ZEROES },
630 { "shared", required_argument, NULL, 'e' },
631 { "format", required_argument, NULL, 'f' },
632 { "persistent", no_argument, NULL, 't' },
633 { "verbose", no_argument, NULL, 'v' },
634 { "object", required_argument, NULL, QEMU_NBD_OPT_OBJECT },
635 { "export-name", required_argument, NULL, 'x' },
Eric Blakeb1a75b32016-10-14 13:33:03 -0500636 { "description", required_argument, NULL, 'D' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000637 { "tls-creds", required_argument, NULL, QEMU_NBD_OPT_TLSCREDS },
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +0000638 { "tls-authz", required_argument, NULL, QEMU_NBD_OPT_TLSAUTHZ },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000639 { "image-opts", no_argument, NULL, QEMU_NBD_OPT_IMAGE_OPTS },
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300640 { "trace", required_argument, NULL, 'T' },
Max Reitzffb31e12016-09-28 22:46:42 +0200641 { "fork", no_argument, NULL, QEMU_NBD_OPT_FORK },
Blue Swirl660f11b2009-07-31 21:16:51 +0000642 { NULL, 0, NULL, 0 }
bellard7a5ca862008-05-27 21:13:40 +0000643 };
644 int ch;
645 int opt_ind = 0;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200646 int flags = BDRV_O_RDWR;
Eric Blake43b51012019-01-17 13:36:44 -0600647 int partition = 0;
Max Reitz4fbec262015-02-05 13:58:19 -0500648 int ret = 0;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200649 bool seen_cache = false;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100650 bool seen_discard = false;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200651 bool seen_aio = false;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100652 pthread_t client_thread;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000653 const char *fmt = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200654 Error *local_err = NULL;
Peter Lievenb3838a42014-08-13 19:20:18 +0200655 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
Max Reitz4fbec262015-02-05 13:58:19 -0500656 QDict *options = NULL;
Eric Blake68b96f12019-01-17 13:36:56 -0600657 const char *export_name = NULL; /* defaults to "" later for server mode */
Eric Blakeb1a75b32016-10-14 13:33:03 -0500658 const char *export_description = NULL;
Eric Blake636192c2019-01-11 13:47:20 -0600659 const char *bitmap = NULL;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000660 const char *tlscredsid = NULL;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000661 bool imageOpts = false;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100662 bool writethrough = true;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300663 char *trace_file = NULL;
Max Reitzffb31e12016-09-28 22:46:42 +0200664 bool fork_process = false;
Eric Blake68b96f12019-01-17 13:36:56 -0600665 bool list = false;
Max Reitzffb31e12016-09-28 22:46:42 +0200666 int old_stderr = -1;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000667 unsigned socket_activation;
bellard7a5ca862008-05-27 21:13:40 +0000668
Paolo Bonzinia517e882011-11-04 15:51:21 +0100669 /* The client thread uses SIGTERM to interrupt the server. A signal
670 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
671 */
Paolo Bonzinibb345112011-11-04 15:51:19 +0100672 struct sigaction sa_sigterm;
Paolo Bonzinibb345112011-11-04 15:51:19 +0100673 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
674 sa_sigterm.sa_handler = termsig_handler;
675 sigaction(SIGTERM, &sa_sigterm, NULL);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100676
Max Reitz041e32b2017-06-11 14:37:14 +0200677#ifdef CONFIG_POSIX
678 signal(SIGPIPE, SIG_IGN);
679#endif
680
Christophe Fergeauf5852ef2019-01-31 17:46:14 +0100681 error_init(argv[0]);
Daniel P. Berrangefe4db842016-10-04 14:35:52 +0100682 module_call_init(MODULE_INIT_TRACE);
Eduardo Habkoste8f2d272016-05-12 11:10:04 -0300683 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100684
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000685 module_call_init(MODULE_INIT_QOM);
686 qemu_add_opts(&qemu_object_opts);
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300687 qemu_add_opts(&qemu_trace_opts);
Fam Zheng10f5bff2014-02-10 14:48:51 +0800688 qemu_init_exec_dir(argv[0]);
Paolo Bonzinibb345112011-11-04 15:51:19 +0100689
bellard7a5ca862008-05-27 21:13:40 +0000690 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
691 switch (ch) {
692 case 's':
ths2f726482008-07-03 11:47:46 +0000693 flags |= BDRV_O_SNAPSHOT;
694 break;
695 case 'n':
Paolo Bonzini39a52352012-07-18 14:57:15 +0200696 optarg = (char *) "none";
697 /* fallthrough */
698 case QEMU_NBD_OPT_CACHE:
699 if (seen_cache) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100700 error_report("-n and --cache can only be specified once");
701 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200702 }
703 seen_cache = true;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100704 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100705 error_report("Invalid cache mode `%s'", optarg);
706 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200707 }
bellard7a5ca862008-05-27 21:13:40 +0000708 break;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200709 case QEMU_NBD_OPT_AIO:
710 if (seen_aio) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100711 error_report("--aio can only be specified once");
712 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200713 }
714 seen_aio = true;
715 if (!strcmp(optarg, "native")) {
716 flags |= BDRV_O_NATIVE_AIO;
717 } else if (!strcmp(optarg, "threads")) {
718 /* this is the default */
719 } else {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100720 error_report("invalid aio mode `%s'", optarg);
721 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200722 }
723 break;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100724 case QEMU_NBD_OPT_DISCARD:
725 if (seen_discard) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100726 error_report("--discard can only be specified once");
727 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100728 }
729 seen_discard = true;
730 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100731 error_report("Invalid discard mode `%s'", optarg);
732 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100733 }
734 break;
Peter Lievenb3838a42014-08-13 19:20:18 +0200735 case QEMU_NBD_OPT_DETECT_ZEROES:
736 detect_zeroes =
Marc-André Lureauf7abe0e2017-08-24 10:46:10 +0200737 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
Peter Lievenb3838a42014-08-13 19:20:18 +0200738 optarg,
Peter Lievenb3838a42014-08-13 19:20:18 +0200739 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
740 &local_err);
741 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100742 error_reportf_err(local_err,
743 "Failed to parse detect_zeroes mode: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100744 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200745 }
746 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
747 !(flags & BDRV_O_UNMAP)) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100748 error_report("setting detect-zeroes to unmap is not allowed "
749 "without setting discard operation to unmap");
750 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200751 }
752 break;
bellard7a5ca862008-05-27 21:13:40 +0000753 case 'b':
754 bindto = optarg;
755 break;
756 case 'p':
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100757 port = optarg;
bellard7a5ca862008-05-27 21:13:40 +0000758 break;
759 case 'o':
Eric Blake43b51012019-01-17 13:36:44 -0600760 if (qemu_strtou64(optarg, NULL, 0, &dev_offset) < 0) {
761 error_report("Invalid offset '%s'", optarg);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100762 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000763 }
bellard7a5ca862008-05-27 21:13:40 +0000764 break;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800765 case 'l':
766 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +0100767 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
768 optarg, false);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800769 if (!sn_opts) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100770 error_report("Failed in parsing snapshot param `%s'",
771 optarg);
772 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800773 }
774 } else {
775 sn_id_or_name = optarg;
776 }
777 /* fall through */
bellard7a5ca862008-05-27 21:13:40 +0000778 case 'r':
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200779 nbdflags |= NBD_FLAG_READ_ONLY;
Naphtali Sprei07108b22010-03-14 15:19:57 +0200780 flags &= ~BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000781 break;
782 case 'P':
Eric Blake0ae2d542019-01-25 17:48:37 -0600783 warn_report("The '-P' option is deprecated; use --image-opts with "
784 "a raw device wrapper for subset exports instead");
Eric Blake43b51012019-01-17 13:36:44 -0600785 if (qemu_strtoi(optarg, NULL, 0, &partition) < 0 ||
786 partition < 1 || partition > 8) {
787 error_report("Invalid partition '%s'", optarg);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100788 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200789 }
bellard7a5ca862008-05-27 21:13:40 +0000790 break;
Eric Blake636192c2019-01-11 13:47:20 -0600791 case 'B':
792 bitmap = optarg;
793 break;
thscd831bd2008-07-03 10:23:51 +0000794 case 'k':
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100795 sockpath = optarg;
Peter Lieven713cc672014-08-13 19:20:19 +0200796 if (sockpath[0] != '/') {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100797 error_report("socket path must be absolute");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100798 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200799 }
thscd831bd2008-07-03 10:23:51 +0000800 break;
801 case 'd':
802 disconnect = true;
803 break;
804 case 'c':
805 device = optarg;
806 break;
ths3b05a8e2008-07-03 12:45:02 +0000807 case 'e':
Eric Blake43b51012019-01-17 13:36:44 -0600808 if (qemu_strtoi(optarg, NULL, 0, &shared) < 0 ||
809 shared < 1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100810 error_report("Invalid shared device number '%s'", optarg);
811 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000812 }
ths3b05a8e2008-07-03 12:45:02 +0000813 break;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000814 case 'f':
815 fmt = optarg;
816 break;
Peter Lieven713cc672014-08-13 19:20:19 +0200817 case 't':
818 persistent = 1;
819 break;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000820 case 'x':
821 export_name = optarg;
822 break;
Eric Blakeb1a75b32016-10-14 13:33:03 -0500823 case 'D':
824 export_description = optarg;
825 break;
bellard7a5ca862008-05-27 21:13:40 +0000826 case 'v':
827 verbose = 1;
828 break;
829 case 'V':
830 version(argv[0]);
831 exit(0);
832 break;
833 case 'h':
834 usage(argv[0]);
835 exit(0);
836 break;
837 case '?':
Markus Armbruster85b01e02015-12-18 16:35:04 +0100838 error_report("Try `%s --help' for more information.", argv[0]);
839 exit(EXIT_FAILURE);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000840 case QEMU_NBD_OPT_OBJECT: {
841 QemuOpts *opts;
842 opts = qemu_opts_parse_noisily(&qemu_object_opts,
843 optarg, true);
844 if (!opts) {
845 exit(EXIT_FAILURE);
846 }
847 } break;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000848 case QEMU_NBD_OPT_TLSCREDS:
849 tlscredsid = optarg;
850 break;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000851 case QEMU_NBD_OPT_IMAGE_OPTS:
852 imageOpts = true;
853 break;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300854 case 'T':
855 g_free(trace_file);
856 trace_file = trace_opt_parse(optarg);
857 break;
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +0000858 case QEMU_NBD_OPT_TLSAUTHZ:
859 tlsauthz = optarg;
860 break;
Max Reitzffb31e12016-09-28 22:46:42 +0200861 case QEMU_NBD_OPT_FORK:
862 fork_process = true;
863 break;
Eric Blake68b96f12019-01-17 13:36:56 -0600864 case 'L':
865 list = true;
866 break;
bellard7a5ca862008-05-27 21:13:40 +0000867 }
868 }
869
Eric Blake68b96f12019-01-17 13:36:56 -0600870 if (list) {
871 if (argc != optind) {
872 error_report("List mode is incompatible with a file name");
873 exit(EXIT_FAILURE);
874 }
875 if (export_name || export_description || dev_offset || partition ||
876 device || disconnect || fmt || sn_id_or_name || bitmap ||
877 seen_aio || seen_discard || seen_cache) {
878 error_report("List mode is incompatible with per-device settings");
879 exit(EXIT_FAILURE);
880 }
881 if (fork_process) {
882 error_report("List mode is incompatible with forking");
883 exit(EXIT_FAILURE);
884 }
885 } else if ((argc - optind) != 1) {
Markus Armbruster433672b2015-12-18 16:35:24 +0100886 error_report("Invalid number of arguments");
887 error_printf("Try `%s --help' for more information.\n", argv[0]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100888 exit(EXIT_FAILURE);
Eric Blake68b96f12019-01-17 13:36:56 -0600889 } else if (!export_name) {
890 export_name = "";
bellard7a5ca862008-05-27 21:13:40 +0000891 }
892
Markus Armbruster7e1e0c12018-10-17 10:26:43 +0200893 qemu_opts_foreach(&qemu_object_opts,
894 user_creatable_add_opts_foreach,
895 NULL, &error_fatal);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000896
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300897 if (!trace_init_backends()) {
898 exit(1);
899 }
900 trace_init_file(trace_file);
901 qemu_set_log(LOG_TRACE);
902
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000903 socket_activation = check_socket_activation();
904 if (socket_activation == 0) {
905 setup_address_and_port(&bindto, &port);
906 } else {
907 /* Using socket activation - check user didn't use -p etc. */
908 const char *err_msg = socket_activation_validate_opts(device, sockpath,
Eric Blake68b96f12019-01-17 13:36:56 -0600909 bindto, port,
910 list);
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000911 if (err_msg != NULL) {
912 error_report("%s", err_msg);
913 exit(EXIT_FAILURE);
914 }
Paolo Bonzini53fabd42017-03-16 16:29:45 +0100915
916 /* qemu-nbd can only listen on a single socket. */
917 if (socket_activation > 1) {
918 error_report("qemu-nbd does not support socket activation with %s > 1",
919 "LISTEN_FDS");
920 exit(EXIT_FAILURE);
921 }
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000922 }
923
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000924 if (tlscredsid) {
925 if (sockpath) {
926 error_report("TLS is only supported with IPv4/IPv6");
927 exit(EXIT_FAILURE);
928 }
929 if (device) {
930 error_report("TLS is not supported with a host device");
931 exit(EXIT_FAILURE);
932 }
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +0000933 if (tlsauthz && list) {
934 error_report("TLS authorization is incompatible with export list");
935 exit(EXIT_FAILURE);
936 }
Eric Blake68b96f12019-01-17 13:36:56 -0600937 tlscreds = nbd_get_tls_creds(tlscredsid, list, &local_err);
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000938 if (local_err) {
939 error_report("Failed to get TLS creds %s",
940 error_get_pretty(local_err));
941 exit(EXIT_FAILURE);
942 }
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +0000943 } else {
944 if (tlsauthz) {
945 error_report("--tls-authz is not permitted without --tls-creds");
946 exit(EXIT_FAILURE);
947 }
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000948 }
949
Eric Blake68b96f12019-01-17 13:36:56 -0600950 if (list) {
951 saddr = nbd_build_socket_address(sockpath, bindto, port);
952 return qemu_nbd_client_list(saddr, tlscreds, bindto);
953 }
954
Eric Blake3c1fa352018-12-15 07:53:08 -0600955#if !HAVE_NBD_DEVICE
956 if (disconnect || device) {
957 error_report("Kernel /dev/nbdN support not available");
958 exit(EXIT_FAILURE);
959 }
960#else /* HAVE_NBD_DEVICE */
thscd831bd2008-07-03 10:23:51 +0000961 if (disconnect) {
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000962 int nbdfd = open(argv[optind], O_RDWR);
963 if (nbdfd < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100964 error_report("Cannot open %s: %s", argv[optind],
965 strerror(errno));
966 exit(EXIT_FAILURE);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100967 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000968 nbd_disconnect(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000969
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000970 close(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000971
972 printf("%s disconnected\n", argv[optind]);
973
Peter Lieven713cc672014-08-13 19:20:19 +0200974 return 0;
thscd831bd2008-07-03 10:23:51 +0000975 }
Eric Blake3c1fa352018-12-15 07:53:08 -0600976#endif
thscd831bd2008-07-03 10:23:51 +0000977
Max Reitzffb31e12016-09-28 22:46:42 +0200978 if ((device && !verbose) || fork_process) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100979 int stderr_fd[2];
980 pid_t pid;
981 int ret;
982
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100983 if (qemu_pipe(stderr_fd) < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100984 error_report("Error setting up communication pipe: %s",
985 strerror(errno));
986 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100987 }
988
989 /* Now daemonize, but keep a communication channel open to
990 * print errors and exit with the proper status code.
991 */
992 pid = fork();
Max Reitz70d47392015-02-25 13:08:22 -0500993 if (pid < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100994 error_report("Failed to fork: %s", strerror(errno));
995 exit(EXIT_FAILURE);
Max Reitz70d47392015-02-25 13:08:22 -0500996 } else if (pid == 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100997 close(stderr_fd[0]);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400998 ret = qemu_daemon(1, 0);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100999
1000 /* Temporarily redirect stderr to the parent's pipe... */
Max Reitzffb31e12016-09-28 22:46:42 +02001001 old_stderr = dup(STDERR_FILENO);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +01001002 dup2(stderr_fd[1], STDERR_FILENO);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +01001003 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001004 error_report("Failed to daemonize: %s", strerror(errno));
1005 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +01001006 }
1007
1008 /* ... close the descriptor we inherited and go on. */
1009 close(stderr_fd[1]);
1010 } else {
1011 bool errors = false;
1012 char *buf;
1013
1014 /* In the parent. Print error messages from the child until
1015 * it closes the pipe.
1016 */
1017 close(stderr_fd[1]);
1018 buf = g_malloc(1024);
1019 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
1020 errors = true;
1021 ret = qemu_write_full(STDERR_FILENO, buf, ret);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +01001022 if (ret < 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +01001023 exit(EXIT_FAILURE);
1024 }
1025 }
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +01001026 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001027 error_report("Cannot read from daemon: %s",
1028 strerror(errno));
1029 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +01001030 }
1031
1032 /* Usually the daemon should not print any message.
1033 * Exit with zero status in that case.
1034 */
1035 exit(errors);
1036 }
1037 }
1038
Paolo Bonzinia6ac2312011-12-06 09:07:00 +01001039 if (device != NULL && sockpath == NULL) {
1040 sockpath = g_malloc(128);
1041 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
thscd831bd2008-07-03 10:23:51 +00001042 }
1043
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001044 server = qio_net_listener_new();
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001045 if (socket_activation == 0) {
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001046 saddr = nbd_build_socket_address(sockpath, bindto, port);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001047 if (qio_net_listener_open_sync(server, saddr, &local_err) < 0) {
1048 object_unref(OBJECT(server));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001049 error_report_err(local_err);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001050 exit(EXIT_FAILURE);
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001051 }
1052 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001053 size_t i;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001054 /* See comment in check_socket_activation above. */
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001055 for (i = 0; i < socket_activation; i++) {
1056 QIOChannelSocket *sioc;
1057 sioc = qio_channel_socket_new_fd(FIRST_SOCKET_ACTIVATION_FD + i,
1058 &local_err);
1059 if (sioc == NULL) {
1060 object_unref(OBJECT(server));
1061 error_report("Failed to use socket activation: %s",
1062 error_get_pretty(local_err));
1063 exit(EXIT_FAILURE);
1064 }
1065 qio_net_listener_add(server, sioc);
1066 object_unref(OBJECT(sioc));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001067 }
1068 }
Daniel P. Berrange48bec072015-09-16 14:52:23 +01001069
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03001070 if (qemu_init_main_loop(&local_err)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01001071 error_report_err(local_err);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03001072 exit(EXIT_FAILURE);
1073 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001074 bdrv_init();
Kevin Wolfb3b52992018-05-16 13:46:37 +02001075 atexit(qemu_nbd_shutdown);
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001076
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +00001077 srcpath = argv[optind];
1078 if (imageOpts) {
1079 QemuOpts *opts;
1080 if (fmt) {
1081 error_report("--image-opts and -f are mutually exclusive");
1082 exit(EXIT_FAILURE);
1083 }
1084 opts = qemu_opts_parse_noisily(&file_opts, srcpath, true);
1085 if (!opts) {
1086 qemu_opts_reset(&file_opts);
1087 exit(EXIT_FAILURE);
1088 }
1089 options = qemu_opts_to_qdict(opts, NULL);
1090 qemu_opts_reset(&file_opts);
Max Reitzefaa7c42016-03-16 19:54:38 +01001091 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +00001092 } else {
1093 if (fmt) {
1094 options = qdict_new();
Eric Blake46f5ac22017-04-27 16:58:17 -05001095 qdict_put_str(options, "driver", fmt);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +00001096 }
Max Reitzefaa7c42016-03-16 19:54:38 +01001097 blk = blk_new_open(srcpath, NULL, options, flags, &local_err);
Daniel P. Berrangee6b63672013-03-19 11:20:20 +00001098 }
1099
Max Reitz4fbec262015-02-05 13:58:19 -05001100 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01001101 error_reportf_err(local_err, "Failed to blk_new_open '%s': ",
1102 argv[optind]);
Markus Armbruster85b01e02015-12-18 16:35:04 +01001103 exit(EXIT_FAILURE);
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001104 }
Max Reitz4fbec262015-02-05 13:58:19 -05001105 bs = blk_bs(blk);
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001106
Kevin Wolf6effd5b2016-03-14 11:43:28 +01001107 blk_set_enable_write_cache(blk, !writethrough);
1108
Wenchao Xia8c116b02013-12-04 17:10:55 +08001109 if (sn_opts) {
1110 ret = bdrv_snapshot_load_tmp(bs,
1111 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
1112 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
1113 &local_err);
1114 } else if (sn_id_or_name) {
1115 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
1116 &local_err);
1117 }
1118 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01001119 error_reportf_err(local_err, "Failed to load snapshot: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +01001120 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +08001121 }
1122
Peter Lievenb3838a42014-08-13 19:20:18 +02001123 bs->detect_zeroes = detect_zeroes;
Max Reitz4c58e802014-11-18 12:21:19 +01001124 fd_size = blk_getlength(blk);
Max Reitz98f44bb2015-02-25 13:08:21 -05001125 if (fd_size < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001126 error_report("Failed to determine the image length: %s",
1127 strerror(-fd_size));
1128 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -05001129 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001130
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +02001131 if (dev_offset >= fd_size) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001132 error_report("Offset (%" PRIu64 ") has to be smaller than the image "
1133 "size (%" PRId64 ")", dev_offset, fd_size);
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +02001134 exit(EXIT_FAILURE);
1135 }
1136 fd_size -= dev_offset;
1137
Eric Blake43b51012019-01-17 13:36:44 -06001138 if (partition) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001139 uint64_t limit;
Eric Blake44859362019-01-17 13:36:41 -06001140
1141 if (dev_offset) {
1142 error_report("Cannot request partition and offset together");
1143 exit(EXIT_FAILURE);
1144 }
1145 ret = find_partition(blk, partition, &dev_offset, &limit);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001146 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001147 error_report("Could not find partition %d: %s", partition,
Markus Armbrustera4699e52015-12-18 16:35:10 +01001148 strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +01001149 exit(EXIT_FAILURE);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001150 }
Eric Blake44859362019-01-17 13:36:41 -06001151 /*
1152 * MBR partition limits are (32-bit << 9); this assert lets
Eric Blake9d26dfc2019-01-17 13:36:43 -06001153 * the compiler know that we can't overflow 64 bits.
Eric Blake44859362019-01-17 13:36:41 -06001154 */
Eric Blake9d26dfc2019-01-17 13:36:43 -06001155 assert(dev_offset + limit >= dev_offset);
Eric Blake44859362019-01-17 13:36:41 -06001156 if (dev_offset + limit > fd_size) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001157 error_report("Discovered partition %d at offset %" PRIu64
1158 " size %" PRIu64 ", but size exceeds file length %"
1159 PRId64, partition, dev_offset, limit, fd_size);
Eric Blake44859362019-01-17 13:36:41 -06001160 exit(EXIT_FAILURE);
1161 }
1162 fd_size = limit;
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001163 }
1164
Eric Blake3fa4c762019-01-11 13:47:16 -06001165 export = nbd_export_new(bs, dev_offset, fd_size, export_name,
Eric Blake636192c2019-01-11 13:47:20 -06001166 export_description, bitmap, nbdflags,
Eric Blake678ba272019-01-11 13:47:19 -06001167 nbd_export_closed, writethrough, NULL,
1168 &error_fatal);
ths3b05a8e2008-07-03 12:45:02 +00001169
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001170 if (device) {
Eric Blake3c1fa352018-12-15 07:53:08 -06001171#if HAVE_NBD_DEVICE
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001172 int ret;
1173
Paolo Bonzinia6ac2312011-12-06 09:07:00 +01001174 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001175 if (ret != 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001176 error_report("Failed to create client thread: %s", strerror(ret));
1177 exit(EXIT_FAILURE);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001178 }
Eric Blake3c1fa352018-12-15 07:53:08 -06001179#endif
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001180 } else {
1181 /* Shut up GCC warnings. */
1182 memset(&client_thread, 0, sizeof(client_thread));
1183 }
1184
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +00001185 nbd_update_server_watch();
bellard7a5ca862008-05-27 21:13:40 +00001186
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001187 /* now when the initialization is (almost) complete, chdir("/")
1188 * to free any busy filesystems */
1189 if (chdir("/") < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001190 error_report("Could not chdir to root directory: %s",
1191 strerror(errno));
1192 exit(EXIT_FAILURE);
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001193 }
1194
Max Reitzffb31e12016-09-28 22:46:42 +02001195 if (fork_process) {
1196 dup2(old_stderr, STDERR_FILENO);
1197 close(old_stderr);
1198 }
1199
Paolo Bonzini7860a382012-09-18 13:31:56 +02001200 state = RUNNING;
ths3b05a8e2008-07-03 12:45:02 +00001201 do {
Paolo Bonzinia61c6782011-09-12 17:28:11 +02001202 main_loop_wait(false);
Paolo Bonzini7860a382012-09-18 13:31:56 +02001203 if (state == TERMINATE) {
1204 state = TERMINATING;
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +01001205 nbd_export_close(export);
1206 nbd_export_put(export);
1207 export = NULL;
Paolo Bonzini7860a382012-09-18 13:31:56 +02001208 }
1209 } while (state != TERMINATED);
ths3b05a8e2008-07-03 12:45:02 +00001210
Markus Armbruster26f54e92014-10-07 13:59:04 +02001211 blk_unref(blk);
Paolo Bonzinib32f6c22011-11-04 15:51:20 +01001212 if (sockpath) {
1213 unlink(sockpath);
1214 }
bellard7a5ca862008-05-27 21:13:40 +00001215
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02001216 qemu_opts_del(sn_opts);
Wenchao Xia8c116b02013-12-04 17:10:55 +08001217
Paolo Bonzinia517e882011-11-04 15:51:21 +01001218 if (device) {
1219 void *ret;
1220 pthread_join(client_thread, &ret);
1221 exit(ret != NULL);
1222 } else {
1223 exit(EXIT_SUCCESS);
1224 }
bellard7a5ca862008-05-27 21:13:40 +00001225}