blob: 1f7b2a03f5d2b5ff43d4f9f9f94562ec2baf2d07 [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
bellard7a5ca862008-05-27 21:13:40 +000061
Eric Blakebd31c212016-05-06 10:26:42 -060062#define MBR_SIZE 512
63
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +010064static NBDExport *export;
blueswir1b1d8e522008-10-26 13:43:07 +000065static int verbose;
Paolo Bonzinia517e882011-11-04 15:51:21 +010066static char *srcpath;
Markus Armbrusterbd269eb2017-04-26 09:36:41 +020067static SocketAddress *saddr;
Paolo Bonzini7860a382012-09-18 13:31:56 +020068static int persistent = 0;
69static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state;
Paolo Bonzinia61c6782011-09-12 17:28:11 +020070static int shared = 1;
71static int nb_fds;
Daniel P. Berrangee4849c12017-12-18 10:16:43 +000072static QIONetListener *server;
Daniel P. Berrange145614a2016-02-10 18:41:13 +000073static QCryptoTLSCreds *tlscreds;
bellard7a5ca862008-05-27 21:13:40 +000074
75static void usage(const char *name)
76{
Paolo Bonzinib033cd82012-07-18 14:50:52 +020077 (printf) (
bellard7a5ca862008-05-27 21:13:40 +000078"Usage: %s [OPTIONS] FILE\n"
Eric Blake68b96f12019-01-17 13:36:56 -060079" or: %s -L [OPTIONS]\n"
80"QEMU Disk Network Block Device Utility\n"
bellard7a5ca862008-05-27 21:13:40 +000081"\n"
Peter Lieven713cc672014-08-13 19:20:19 +020082" -h, --help display this help and exit\n"
83" -V, --version output version information and exit\n"
bellard7a5ca862008-05-27 21:13:40 +000084"\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020085"Connection properties:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020086" -p, --port=PORT port to listen on (default `%d')\n"
87" -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
88" -k, --socket=PATH path to the unix socket\n"
89" (default '"SOCKET_PATH"')\n"
90" -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
91" -t, --persistent don't exit on the last connection\n"
92" -v, --verbose display extra debugging information\n"
Vladimir Sementsov-Ogievskiyf5cd0bb2018-10-03 20:02:27 +030093" -x, --export-name=NAME expose export by name (default is empty string)\n"
94" -D, --description=TEXT export a human-readable description\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020095"\n"
96"Exposing part of the image:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020097" -o, --offset=OFFSET offset into the image\n"
98" -P, --partition=NUM only expose partition NUM\n"
Eric Blake636192c2019-01-11 13:47:20 -060099" -B, --bitmap=NAME expose a persistent dirty bitmap\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200100"\n"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000101"General purpose options:\n"
Eric Blake68b96f12019-01-17 13:36:56 -0600102" -L, --list list exports available from another NBD server\n"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000103" --object type,id=ID,... define an object such as 'secret' for providing\n"
104" passwords and/or encryption keys\n"
Eric Blakef7812df2018-10-03 13:04:26 -0500105" --tls-creds=ID use id of an earlier --object to provide TLS\n"
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300106" -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
107" specify tracing options\n"
Max Reitzffb31e12016-09-28 22:46:42 +0200108" --fork fork off the server process and exit the parent\n"
109" once the server is running\n"
Eric Blake3c1fa352018-12-15 07:53:08 -0600110#if HAVE_NBD_DEVICE
111"\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200112"Kernel NBD client support:\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200113" -c, --connect=DEV connect FILE to the local NBD device DEV\n"
114" -d, --disconnect disconnect the specified device\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200115#endif
116"\n"
117"Block device options:\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200118" -f, --format=FORMAT set image format (raw, qcow2, ...)\n"
119" -r, --read-only export read-only\n"
120" -s, --snapshot use FILE as an external snapshot, create a temporary\n"
121" file with backing_file=FILE, redirect the write to\n"
122" the temporary one\n"
Wenchao Xia8c116b02013-12-04 17:10:55 +0800123" -l, --load-snapshot=SNAPSHOT_PARAM\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200124" load an internal snapshot inside FILE and export it\n"
125" as an read-only device, SNAPSHOT_PARAM format is\n"
126" 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
127" '[ID_OR_NAME]'\n"
128" -n, --nocache disable host cache\n"
129" --cache=MODE set cache mode (none, writeback, ...)\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200130" --aio=MODE set AIO mode (native or threads)\n"
Peter Lievenb3838a42014-08-13 19:20:18 +0200131" --discard=MODE set discard mode (ignore, unmap)\n"
Andrey Korolyov6883de62015-07-31 22:12:54 +0300132" --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n"
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000133" --image-opts treat FILE as a full set of image options\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200134"\n"
Eric Blakef5048cb2017-08-03 11:33:53 -0500135QEMU_HELP_BOTTOM "\n"
Eric Blake68b96f12019-01-17 13:36:56 -0600136 , name, name, NBD_DEFAULT_PORT, "DEVICE");
bellard7a5ca862008-05-27 21:13:40 +0000137}
138
139static void version(const char *name)
140{
141 printf(
Thomas Huth7e563bf2018-02-15 12:06:47 +0100142"%s " QEMU_FULL_VERSION "\n"
bellard7a5ca862008-05-27 21:13:40 +0000143"Written by Anthony Liguori.\n"
144"\n"
Eric Blakebe377132017-07-21 08:50:46 -0500145QEMU_COPYRIGHT "\n"
bellard7a5ca862008-05-27 21:13:40 +0000146"This is free software; see the source for copying conditions. There is NO\n"
147"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
ths315bc7a2008-07-18 18:06:23 +0000148 , name);
bellard7a5ca862008-05-27 21:13:40 +0000149}
150
151struct partition_record
152{
153 uint8_t bootable;
154 uint8_t start_head;
155 uint32_t start_cylinder;
156 uint8_t start_sector;
157 uint8_t system;
158 uint8_t end_head;
159 uint8_t end_cylinder;
160 uint8_t end_sector;
161 uint32_t start_sector_abs;
162 uint32_t nb_sectors_abs;
163};
164
165static void read_partition(uint8_t *p, struct partition_record *r)
166{
167 r->bootable = p[0];
168 r->start_head = p[1];
169 r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
170 r->start_sector = p[2] & 0x3f;
171 r->system = p[4];
172 r->end_head = p[5];
173 r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
174 r->end_sector = p[6] & 0x3f;
Max Reitzac973932015-02-25 13:08:23 -0500175
Peter Maydell773dce32016-06-10 16:00:36 +0100176 r->start_sector_abs = ldl_le_p(p + 8);
177 r->nb_sectors_abs = ldl_le_p(p + 12);
bellard7a5ca862008-05-27 21:13:40 +0000178}
179
Max Reitz4c58e802014-11-18 12:21:19 +0100180static int find_partition(BlockBackend *blk, int partition,
Eric Blake9d26dfc2019-01-17 13:36:43 -0600181 uint64_t *offset, uint64_t *size)
bellard7a5ca862008-05-27 21:13:40 +0000182{
183 struct partition_record mbr[4];
Eric Blakebd31c212016-05-06 10:26:42 -0600184 uint8_t data[MBR_SIZE];
bellard7a5ca862008-05-27 21:13:40 +0000185 int i;
186 int ext_partnum = 4;
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900187 int ret;
bellard7a5ca862008-05-27 21:13:40 +0000188
Eric Blakebd31c212016-05-06 10:26:42 -0600189 ret = blk_pread(blk, 0, data, sizeof(data));
190 if (ret < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100191 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100192 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900193 }
bellard7a5ca862008-05-27 21:13:40 +0000194
195 if (data[510] != 0x55 || data[511] != 0xaa) {
Paolo Bonzini185b4332012-03-05 08:56:10 +0100196 return -EINVAL;
bellard7a5ca862008-05-27 21:13:40 +0000197 }
198
199 for (i = 0; i < 4; i++) {
200 read_partition(&data[446 + 16 * i], &mbr[i]);
201
Max Reitz453b07b2015-02-25 13:08:15 -0500202 if (!mbr[i].system || !mbr[i].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000203 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500204 }
bellard7a5ca862008-05-27 21:13:40 +0000205
206 if (mbr[i].system == 0xF || mbr[i].system == 0x5) {
207 struct partition_record ext[4];
Eric Blakebd31c212016-05-06 10:26:42 -0600208 uint8_t data1[MBR_SIZE];
bellard7a5ca862008-05-27 21:13:40 +0000209 int j;
210
Eric Blakebd31c212016-05-06 10:26:42 -0600211 ret = blk_pread(blk, mbr[i].start_sector_abs * MBR_SIZE,
212 data1, sizeof(data1));
213 if (ret < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100214 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100215 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900216 }
bellard7a5ca862008-05-27 21:13:40 +0000217
218 for (j = 0; j < 4; j++) {
219 read_partition(&data1[446 + 16 * j], &ext[j]);
Max Reitz453b07b2015-02-25 13:08:15 -0500220 if (!ext[j].system || !ext[j].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000221 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500222 }
bellard7a5ca862008-05-27 21:13:40 +0000223
224 if ((ext_partnum + j + 1) == partition) {
225 *offset = (uint64_t)ext[j].start_sector_abs << 9;
226 *size = (uint64_t)ext[j].nb_sectors_abs << 9;
227 return 0;
228 }
229 }
230 ext_partnum += 4;
231 } else if ((i + 1) == partition) {
232 *offset = (uint64_t)mbr[i].start_sector_abs << 9;
233 *size = (uint64_t)mbr[i].nb_sectors_abs << 9;
234 return 0;
235 }
236 }
237
Paolo Bonzini185b4332012-03-05 08:56:10 +0100238 return -ENOENT;
bellard7a5ca862008-05-27 21:13:40 +0000239}
240
Paolo Bonzinibb345112011-11-04 15:51:19 +0100241static void termsig_handler(int signum)
242{
Pavel Butsykin23994a52016-04-14 13:20:15 +0300243 atomic_cmpxchg(&state, RUNNING, TERMINATE);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200244 qemu_notify_event();
Paolo Bonzinibb345112011-11-04 15:51:19 +0100245}
246
Paolo Bonzini537b41f2014-02-17 14:43:51 +0100247
Eric Blake68b96f12019-01-17 13:36:56 -0600248static int qemu_nbd_client_list(SocketAddress *saddr, QCryptoTLSCreds *tls,
249 const char *hostname)
250{
251 int ret = EXIT_FAILURE;
252 int rc;
253 Error *err = NULL;
254 QIOChannelSocket *sioc;
255 NBDExportInfo *list;
256 int i, j;
257
258 sioc = qio_channel_socket_new();
259 if (qio_channel_socket_connect_sync(sioc, saddr, &err) < 0) {
260 error_report_err(err);
261 return EXIT_FAILURE;
262 }
263 rc = nbd_receive_export_list(QIO_CHANNEL(sioc), tls, hostname, &list,
264 &err);
265 if (rc < 0) {
266 if (err) {
267 error_report_err(err);
268 }
269 goto out;
270 }
271 printf("exports available: %d\n", rc);
272 for (i = 0; i < rc; i++) {
273 printf(" export: '%s'\n", list[i].name);
274 if (list[i].description && *list[i].description) {
275 printf(" description: %s\n", list[i].description);
276 }
277 if (list[i].flags & NBD_FLAG_HAS_FLAGS) {
278 printf(" size: %" PRIu64 "\n", list[i].size);
279 printf(" flags: 0x%x (", list[i].flags);
280 if (list[i].flags & NBD_FLAG_READ_ONLY) {
281 printf(" readonly");
282 }
283 if (list[i].flags & NBD_FLAG_SEND_FLUSH) {
284 printf(" flush");
285 }
286 if (list[i].flags & NBD_FLAG_SEND_FUA) {
287 printf(" fua");
288 }
289 if (list[i].flags & NBD_FLAG_ROTATIONAL) {
290 printf(" rotational");
291 }
292 if (list[i].flags & NBD_FLAG_SEND_TRIM) {
293 printf(" trim");
294 }
295 if (list[i].flags & NBD_FLAG_SEND_WRITE_ZEROES) {
296 printf(" zeroes");
297 }
298 if (list[i].flags & NBD_FLAG_SEND_DF) {
299 printf(" df");
300 }
301 if (list[i].flags & NBD_FLAG_CAN_MULTI_CONN) {
302 printf(" multi");
303 }
304 if (list[i].flags & NBD_FLAG_SEND_RESIZE) {
305 printf(" resize");
306 }
307 if (list[i].flags & NBD_FLAG_SEND_CACHE) {
308 printf(" cache");
309 }
310 printf(" )\n");
311 }
312 if (list[i].min_block) {
313 printf(" min block: %u\n", list[i].min_block);
314 printf(" opt block: %u\n", list[i].opt_block);
315 printf(" max block: %u\n", list[i].max_block);
316 }
317 if (list[i].n_contexts) {
318 printf(" available meta contexts: %d\n", list[i].n_contexts);
319 for (j = 0; j < list[i].n_contexts; j++) {
320 printf(" %s\n", list[i].contexts[j]);
321 }
322 }
323 }
324 nbd_free_export_list(list, rc);
325
326 ret = EXIT_SUCCESS;
327 out:
328 object_unref(OBJECT(sioc));
329 return ret;
330}
331
332
Eric Blake3c1fa352018-12-15 07:53:08 -0600333#if HAVE_NBD_DEVICE
Paolo Bonzinia517e882011-11-04 15:51:21 +0100334static void *show_parts(void *arg)
thscd831bd2008-07-03 10:23:51 +0000335{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100336 char *device = arg;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100337 int nbd;
thscd831bd2008-07-03 10:23:51 +0000338
Paolo Bonzinia517e882011-11-04 15:51:21 +0100339 /* linux just needs an open() to trigger
340 * the partition table update
341 * but remember to load the module with max_part != 0 :
342 * modprobe nbd max_part=63
343 */
344 nbd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100345 if (nbd >= 0) {
Paolo Bonzinia517e882011-11-04 15:51:21 +0100346 close(nbd);
thscd831bd2008-07-03 10:23:51 +0000347 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100348 return NULL;
349}
350
351static void *nbd_client_thread(void *arg)
352{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100353 char *device = arg;
Eric Blake6dc16672019-01-17 13:36:46 -0600354 NBDExportInfo info = { .request_sizes = false, .name = g_strdup("") };
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000355 QIOChannelSocket *sioc;
356 int fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100357 int ret;
358 pthread_t show_parts_thread;
Max Reitz1ce52842015-01-26 21:02:59 -0500359 Error *local_error = NULL;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100360
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000361 sioc = qio_channel_socket_new();
362 if (qio_channel_socket_connect_sync(sioc,
363 saddr,
364 &local_error) < 0) {
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100365 error_report_err(local_error);
Stefan Hajnoczidc10e8b2012-01-05 13:16:07 +0000366 goto out;
367 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100368
Eric Blake6dc16672019-01-17 13:36:46 -0600369 ret = nbd_receive_negotiate(QIO_CHANNEL(sioc),
Eric Blake004a89f2017-07-07 15:30:41 -0500370 NULL, NULL, NULL, &info, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100371 if (ret < 0) {
Max Reitz1ce52842015-01-26 21:02:59 -0500372 if (local_error) {
Markus Armbruster78288672015-12-18 16:35:07 +0100373 error_report_err(local_error);
Max Reitz1ce52842015-01-26 21:02:59 -0500374 }
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100375 goto out_socket;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100376 }
377
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100378 fd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100379 if (fd < 0) {
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100380 /* Linux-only, we can use %m in printf. */
Markus Armbrusterb9884682015-12-18 16:35:18 +0100381 error_report("Failed to open %s: %m", device);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100382 goto out_socket;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100383 }
384
Eric Blake004a89f2017-07-07 15:30:41 -0500385 ret = nbd_init(fd, sioc, &info, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100386 if (ret < 0) {
Vladimir Sementsov-Ogievskiybe41c102017-05-26 14:09:13 +0300387 error_report_err(local_error);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100388 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100389 }
390
391 /* update partition table */
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100392 pthread_create(&show_parts_thread, NULL, show_parts, device);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100393
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100394 if (verbose) {
395 fprintf(stderr, "NBD device %s is now connected to %s\n",
396 device, srcpath);
397 } else {
398 /* Close stderr so that the qemu-nbd process exits. */
399 dup2(STDOUT_FILENO, STDERR_FILENO);
400 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100401
402 ret = nbd_client(fd);
403 if (ret) {
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100404 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100405 }
406 close(fd);
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000407 object_unref(OBJECT(sioc));
Eric Blake6dc16672019-01-17 13:36:46 -0600408 g_free(info.name);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100409 kill(getpid(), SIGTERM);
410 return (void *) EXIT_SUCCESS;
411
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100412out_fd:
413 close(fd);
414out_socket:
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000415 object_unref(OBJECT(sioc));
Paolo Bonzinia517e882011-11-04 15:51:21 +0100416out:
Eric Blake6dc16672019-01-17 13:36:46 -0600417 g_free(info.name);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100418 kill(getpid(), SIGTERM);
419 return (void *) EXIT_FAILURE;
thscd831bd2008-07-03 10:23:51 +0000420}
Eric Blake3c1fa352018-12-15 07:53:08 -0600421#endif /* HAVE_NBD_DEVICE */
thscd831bd2008-07-03 10:23:51 +0000422
Fam Zhenge4afbf42015-05-19 10:50:59 +0000423static int nbd_can_accept(void)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200424{
Eric Blakedf8ad9f2017-05-26 22:04:21 -0500425 return state == RUNNING && nb_fds < shared;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200426}
427
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +0100428static void nbd_export_closed(NBDExport *export)
Paolo Bonzini7860a382012-09-18 13:31:56 +0200429{
430 assert(state == TERMINATING);
431 state = TERMINATED;
432}
433
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000434static void nbd_update_server_watch(void);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000435
Eric Blake0c9390d2017-06-08 17:26:17 -0500436static void nbd_client_closed(NBDClient *client, bool negotiated)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200437{
Paolo Bonzini1743b512011-09-19 14:33:23 +0200438 nb_fds--;
Eric Blake0c9390d2017-06-08 17:26:17 -0500439 if (negotiated && nb_fds == 0 && !persistent && state == RUNNING) {
Paolo Bonzini7860a382012-09-18 13:31:56 +0200440 state = TERMINATE;
441 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000442 nbd_update_server_watch();
Paolo Bonzini7860a382012-09-18 13:31:56 +0200443 nbd_client_put(client);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200444}
445
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000446static void nbd_accept(QIONetListener *listener, QIOChannelSocket *cioc,
447 gpointer opaque)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200448{
Paolo Bonzini7860a382012-09-18 13:31:56 +0200449 if (state >= TERMINATE) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000450 return;
Paolo Bonzini7860a382012-09-18 13:31:56 +0200451 }
452
Fam Zhengee7d7aa2016-01-14 16:41:01 +0800453 nb_fds++;
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000454 nbd_update_server_watch();
Vladimir Sementsov-Ogievskiy7f7dfe22018-10-03 20:02:28 +0300455 nbd_client_new(cioc, tlscreds, NULL, nbd_client_closed);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200456}
457
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000458static void nbd_update_server_watch(void)
Fam Zhenge4afbf42015-05-19 10:50:59 +0000459{
460 if (nbd_can_accept()) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000461 qio_net_listener_set_client_func(server, nbd_accept, NULL, NULL);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000462 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000463 qio_net_listener_set_client_func(server, NULL, NULL, NULL);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000464 }
465}
466
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100467
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200468static SocketAddress *nbd_build_socket_address(const char *sockpath,
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100469 const char *bindto,
470 const char *port)
471{
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200472 SocketAddress *saddr;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100473
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200474 saddr = g_new0(SocketAddress, 1);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100475 if (sockpath) {
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200476 saddr->type = SOCKET_ADDRESS_TYPE_UNIX;
477 saddr->u.q_unix.path = g_strdup(sockpath);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100478 } else {
Eric Blake03992932016-03-03 09:16:48 -0700479 InetSocketAddress *inet;
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200480 saddr->type = SOCKET_ADDRESS_TYPE_INET;
481 inet = &saddr->u.inet;
Eric Blake03992932016-03-03 09:16:48 -0700482 inet->host = g_strdup(bindto);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100483 if (port) {
Eric Blake03992932016-03-03 09:16:48 -0700484 inet->port = g_strdup(port);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100485 } else {
Eric Blake03992932016-03-03 09:16:48 -0700486 inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100487 }
488 }
489
490 return saddr;
491}
492
493
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000494static QemuOptsList file_opts = {
495 .name = "file",
496 .implied_opt_name = "file",
497 .head = QTAILQ_HEAD_INITIALIZER(file_opts.head),
498 .desc = {
499 /* no elements => accept any params */
500 { /* end of list */ }
501 },
502};
503
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000504static QemuOptsList qemu_object_opts = {
505 .name = "object",
506 .implied_opt_name = "qom-type",
507 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
508 .desc = {
509 { }
510 },
511};
512
513
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000514
Eric Blake68b96f12019-01-17 13:36:56 -0600515static QCryptoTLSCreds *nbd_get_tls_creds(const char *id, bool list,
516 Error **errp)
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000517{
518 Object *obj;
519 QCryptoTLSCreds *creds;
520
521 obj = object_resolve_path_component(
522 object_get_objects_root(), id);
523 if (!obj) {
524 error_setg(errp, "No TLS credentials with id '%s'",
525 id);
526 return NULL;
527 }
528 creds = (QCryptoTLSCreds *)
529 object_dynamic_cast(obj, TYPE_QCRYPTO_TLS_CREDS);
530 if (!creds) {
531 error_setg(errp, "Object with id '%s' is not TLS credentials",
532 id);
533 return NULL;
534 }
535
Eric Blake68b96f12019-01-17 13:36:56 -0600536 if (list) {
537 if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT) {
538 error_setg(errp,
539 "Expecting TLS credentials with a client endpoint");
540 return NULL;
541 }
542 } else {
543 if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_SERVER) {
544 error_setg(errp,
545 "Expecting TLS credentials with a server endpoint");
546 return NULL;
547 }
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000548 }
549 object_ref(obj);
550 return creds;
551}
552
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000553static void setup_address_and_port(const char **address, const char **port)
554{
555 if (*address == NULL) {
556 *address = "0.0.0.0";
557 }
558
559 if (*port == NULL) {
560 *port = stringify(NBD_DEFAULT_PORT);
561 }
562}
563
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000564/*
565 * Check socket parameters compatibility when socket activation is used.
566 */
567static const char *socket_activation_validate_opts(const char *device,
568 const char *sockpath,
569 const char *address,
Eric Blake68b96f12019-01-17 13:36:56 -0600570 const char *port,
571 bool list)
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000572{
573 if (device != NULL) {
574 return "NBD device can't be set when using socket activation";
575 }
576
577 if (sockpath != NULL) {
578 return "Unix socket can't be set when using socket activation";
579 }
580
581 if (address != NULL) {
582 return "The interface can't be set when using socket activation";
583 }
584
585 if (port != NULL) {
586 return "TCP port number can't be set when using socket activation";
587 }
588
Eric Blake68b96f12019-01-17 13:36:56 -0600589 if (list) {
590 return "List mode is incompatible with socket activation";
591 }
592
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000593 return NULL;
594}
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000595
Kevin Wolfb3b52992018-05-16 13:46:37 +0200596static void qemu_nbd_shutdown(void)
597{
598 job_cancel_sync_all();
599 bdrv_close_all();
600}
601
bellard7a5ca862008-05-27 21:13:40 +0000602int main(int argc, char **argv)
603{
Markus Armbruster26f54e92014-10-07 13:59:04 +0200604 BlockBackend *blk;
bellard7a5ca862008-05-27 21:13:40 +0000605 BlockDriverState *bs;
Eric Blake9d26dfc2019-01-17 13:36:43 -0600606 uint64_t dev_offset = 0;
Eric Blake7423f412016-07-21 13:34:46 -0600607 uint16_t nbdflags = 0;
thscd831bd2008-07-03 10:23:51 +0000608 bool disconnect = false;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000609 const char *bindto = NULL;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100610 const char *port = NULL;
611 char *sockpath = NULL;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100612 char *device = NULL;
Eric Blake9d26dfc2019-01-17 13:36:43 -0600613 int64_t fd_size;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800614 QemuOpts *sn_opts = NULL;
615 const char *sn_id_or_name = NULL;
Eric Blake68b96f12019-01-17 13:36:56 -0600616 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:x:T:D:B:L";
bellard7a5ca862008-05-27 21:13:40 +0000617 struct option lopt[] = {
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000618 { "help", no_argument, NULL, 'h' },
619 { "version", no_argument, NULL, 'V' },
620 { "bind", required_argument, NULL, 'b' },
621 { "port", required_argument, NULL, 'p' },
622 { "socket", required_argument, NULL, 'k' },
623 { "offset", required_argument, NULL, 'o' },
624 { "read-only", no_argument, NULL, 'r' },
625 { "partition", required_argument, NULL, 'P' },
Eric Blake636192c2019-01-11 13:47:20 -0600626 { "bitmap", required_argument, NULL, 'B' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000627 { "connect", required_argument, NULL, 'c' },
628 { "disconnect", no_argument, NULL, 'd' },
Eric Blake68b96f12019-01-17 13:36:56 -0600629 { "list", no_argument, NULL, 'L' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000630 { "snapshot", no_argument, NULL, 's' },
631 { "load-snapshot", required_argument, NULL, 'l' },
632 { "nocache", no_argument, NULL, 'n' },
633 { "cache", required_argument, NULL, QEMU_NBD_OPT_CACHE },
634 { "aio", required_argument, NULL, QEMU_NBD_OPT_AIO },
635 { "discard", required_argument, NULL, QEMU_NBD_OPT_DISCARD },
636 { "detect-zeroes", required_argument, NULL,
637 QEMU_NBD_OPT_DETECT_ZEROES },
638 { "shared", required_argument, NULL, 'e' },
639 { "format", required_argument, NULL, 'f' },
640 { "persistent", no_argument, NULL, 't' },
641 { "verbose", no_argument, NULL, 'v' },
642 { "object", required_argument, NULL, QEMU_NBD_OPT_OBJECT },
643 { "export-name", required_argument, NULL, 'x' },
Eric Blakeb1a75b32016-10-14 13:33:03 -0500644 { "description", required_argument, NULL, 'D' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000645 { "tls-creds", required_argument, NULL, QEMU_NBD_OPT_TLSCREDS },
646 { "image-opts", no_argument, NULL, QEMU_NBD_OPT_IMAGE_OPTS },
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300647 { "trace", required_argument, NULL, 'T' },
Max Reitzffb31e12016-09-28 22:46:42 +0200648 { "fork", no_argument, NULL, QEMU_NBD_OPT_FORK },
Blue Swirl660f11b2009-07-31 21:16:51 +0000649 { NULL, 0, NULL, 0 }
bellard7a5ca862008-05-27 21:13:40 +0000650 };
651 int ch;
652 int opt_ind = 0;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200653 int flags = BDRV_O_RDWR;
Eric Blake43b51012019-01-17 13:36:44 -0600654 int partition = 0;
Max Reitz4fbec262015-02-05 13:58:19 -0500655 int ret = 0;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200656 bool seen_cache = false;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100657 bool seen_discard = false;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200658 bool seen_aio = false;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100659 pthread_t client_thread;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000660 const char *fmt = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200661 Error *local_err = NULL;
Peter Lievenb3838a42014-08-13 19:20:18 +0200662 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
Max Reitz4fbec262015-02-05 13:58:19 -0500663 QDict *options = NULL;
Eric Blake68b96f12019-01-17 13:36:56 -0600664 const char *export_name = NULL; /* defaults to "" later for server mode */
Eric Blakeb1a75b32016-10-14 13:33:03 -0500665 const char *export_description = NULL;
Eric Blake636192c2019-01-11 13:47:20 -0600666 const char *bitmap = NULL;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000667 const char *tlscredsid = NULL;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000668 bool imageOpts = false;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100669 bool writethrough = true;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300670 char *trace_file = NULL;
Max Reitzffb31e12016-09-28 22:46:42 +0200671 bool fork_process = false;
Eric Blake68b96f12019-01-17 13:36:56 -0600672 bool list = false;
Max Reitzffb31e12016-09-28 22:46:42 +0200673 int old_stderr = -1;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000674 unsigned socket_activation;
bellard7a5ca862008-05-27 21:13:40 +0000675
Paolo Bonzinia517e882011-11-04 15:51:21 +0100676 /* The client thread uses SIGTERM to interrupt the server. A signal
677 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
678 */
Paolo Bonzinibb345112011-11-04 15:51:19 +0100679 struct sigaction sa_sigterm;
Paolo Bonzinibb345112011-11-04 15:51:19 +0100680 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
681 sa_sigterm.sa_handler = termsig_handler;
682 sigaction(SIGTERM, &sa_sigterm, NULL);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100683
Max Reitz041e32b2017-06-11 14:37:14 +0200684#ifdef CONFIG_POSIX
685 signal(SIGPIPE, SIG_IGN);
686#endif
687
Daniel P. Berrangefe4db842016-10-04 14:35:52 +0100688 module_call_init(MODULE_INIT_TRACE);
Eric Blake3ba1b7b2018-12-15 07:53:03 -0600689 error_set_progname(argv[0]);
Eduardo Habkoste8f2d272016-05-12 11:10:04 -0300690 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100691
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000692 module_call_init(MODULE_INIT_QOM);
693 qemu_add_opts(&qemu_object_opts);
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300694 qemu_add_opts(&qemu_trace_opts);
Fam Zheng10f5bff2014-02-10 14:48:51 +0800695 qemu_init_exec_dir(argv[0]);
Paolo Bonzinibb345112011-11-04 15:51:19 +0100696
bellard7a5ca862008-05-27 21:13:40 +0000697 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
698 switch (ch) {
699 case 's':
ths2f726482008-07-03 11:47:46 +0000700 flags |= BDRV_O_SNAPSHOT;
701 break;
702 case 'n':
Paolo Bonzini39a52352012-07-18 14:57:15 +0200703 optarg = (char *) "none";
704 /* fallthrough */
705 case QEMU_NBD_OPT_CACHE:
706 if (seen_cache) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100707 error_report("-n and --cache can only be specified once");
708 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200709 }
710 seen_cache = true;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100711 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100712 error_report("Invalid cache mode `%s'", optarg);
713 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200714 }
bellard7a5ca862008-05-27 21:13:40 +0000715 break;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200716 case QEMU_NBD_OPT_AIO:
717 if (seen_aio) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100718 error_report("--aio can only be specified once");
719 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200720 }
721 seen_aio = true;
722 if (!strcmp(optarg, "native")) {
723 flags |= BDRV_O_NATIVE_AIO;
724 } else if (!strcmp(optarg, "threads")) {
725 /* this is the default */
726 } else {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100727 error_report("invalid aio mode `%s'", optarg);
728 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200729 }
730 break;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100731 case QEMU_NBD_OPT_DISCARD:
732 if (seen_discard) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100733 error_report("--discard can only be specified once");
734 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100735 }
736 seen_discard = true;
737 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100738 error_report("Invalid discard mode `%s'", optarg);
739 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100740 }
741 break;
Peter Lievenb3838a42014-08-13 19:20:18 +0200742 case QEMU_NBD_OPT_DETECT_ZEROES:
743 detect_zeroes =
Marc-André Lureauf7abe0e2017-08-24 10:46:10 +0200744 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
Peter Lievenb3838a42014-08-13 19:20:18 +0200745 optarg,
Peter Lievenb3838a42014-08-13 19:20:18 +0200746 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
747 &local_err);
748 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100749 error_reportf_err(local_err,
750 "Failed to parse detect_zeroes mode: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100751 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200752 }
753 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
754 !(flags & BDRV_O_UNMAP)) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100755 error_report("setting detect-zeroes to unmap is not allowed "
756 "without setting discard operation to unmap");
757 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200758 }
759 break;
bellard7a5ca862008-05-27 21:13:40 +0000760 case 'b':
761 bindto = optarg;
762 break;
763 case 'p':
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100764 port = optarg;
bellard7a5ca862008-05-27 21:13:40 +0000765 break;
766 case 'o':
Eric Blake43b51012019-01-17 13:36:44 -0600767 if (qemu_strtou64(optarg, NULL, 0, &dev_offset) < 0) {
768 error_report("Invalid offset '%s'", optarg);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100769 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000770 }
bellard7a5ca862008-05-27 21:13:40 +0000771 break;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800772 case 'l':
773 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +0100774 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
775 optarg, false);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800776 if (!sn_opts) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100777 error_report("Failed in parsing snapshot param `%s'",
778 optarg);
779 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800780 }
781 } else {
782 sn_id_or_name = optarg;
783 }
784 /* fall through */
bellard7a5ca862008-05-27 21:13:40 +0000785 case 'r':
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200786 nbdflags |= NBD_FLAG_READ_ONLY;
Naphtali Sprei07108b22010-03-14 15:19:57 +0200787 flags &= ~BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000788 break;
789 case 'P':
Eric Blake43b51012019-01-17 13:36:44 -0600790 if (qemu_strtoi(optarg, NULL, 0, &partition) < 0 ||
791 partition < 1 || partition > 8) {
792 error_report("Invalid partition '%s'", optarg);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100793 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200794 }
bellard7a5ca862008-05-27 21:13:40 +0000795 break;
Eric Blake636192c2019-01-11 13:47:20 -0600796 case 'B':
797 bitmap = optarg;
798 break;
thscd831bd2008-07-03 10:23:51 +0000799 case 'k':
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100800 sockpath = optarg;
Peter Lieven713cc672014-08-13 19:20:19 +0200801 if (sockpath[0] != '/') {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100802 error_report("socket path must be absolute");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100803 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200804 }
thscd831bd2008-07-03 10:23:51 +0000805 break;
806 case 'd':
807 disconnect = true;
808 break;
809 case 'c':
810 device = optarg;
811 break;
ths3b05a8e2008-07-03 12:45:02 +0000812 case 'e':
Eric Blake43b51012019-01-17 13:36:44 -0600813 if (qemu_strtoi(optarg, NULL, 0, &shared) < 0 ||
814 shared < 1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100815 error_report("Invalid shared device number '%s'", optarg);
816 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000817 }
ths3b05a8e2008-07-03 12:45:02 +0000818 break;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000819 case 'f':
820 fmt = optarg;
821 break;
Peter Lieven713cc672014-08-13 19:20:19 +0200822 case 't':
823 persistent = 1;
824 break;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000825 case 'x':
826 export_name = optarg;
827 break;
Eric Blakeb1a75b32016-10-14 13:33:03 -0500828 case 'D':
829 export_description = optarg;
830 break;
bellard7a5ca862008-05-27 21:13:40 +0000831 case 'v':
832 verbose = 1;
833 break;
834 case 'V':
835 version(argv[0]);
836 exit(0);
837 break;
838 case 'h':
839 usage(argv[0]);
840 exit(0);
841 break;
842 case '?':
Markus Armbruster85b01e02015-12-18 16:35:04 +0100843 error_report("Try `%s --help' for more information.", argv[0]);
844 exit(EXIT_FAILURE);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000845 case QEMU_NBD_OPT_OBJECT: {
846 QemuOpts *opts;
847 opts = qemu_opts_parse_noisily(&qemu_object_opts,
848 optarg, true);
849 if (!opts) {
850 exit(EXIT_FAILURE);
851 }
852 } break;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000853 case QEMU_NBD_OPT_TLSCREDS:
854 tlscredsid = optarg;
855 break;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000856 case QEMU_NBD_OPT_IMAGE_OPTS:
857 imageOpts = true;
858 break;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300859 case 'T':
860 g_free(trace_file);
861 trace_file = trace_opt_parse(optarg);
862 break;
Max Reitzffb31e12016-09-28 22:46:42 +0200863 case QEMU_NBD_OPT_FORK:
864 fork_process = true;
865 break;
Eric Blake68b96f12019-01-17 13:36:56 -0600866 case 'L':
867 list = true;
868 break;
bellard7a5ca862008-05-27 21:13:40 +0000869 }
870 }
871
Eric Blake68b96f12019-01-17 13:36:56 -0600872 if (list) {
873 if (argc != optind) {
874 error_report("List mode is incompatible with a file name");
875 exit(EXIT_FAILURE);
876 }
877 if (export_name || export_description || dev_offset || partition ||
878 device || disconnect || fmt || sn_id_or_name || bitmap ||
879 seen_aio || seen_discard || seen_cache) {
880 error_report("List mode is incompatible with per-device settings");
881 exit(EXIT_FAILURE);
882 }
883 if (fork_process) {
884 error_report("List mode is incompatible with forking");
885 exit(EXIT_FAILURE);
886 }
887 } else if ((argc - optind) != 1) {
Markus Armbruster433672b2015-12-18 16:35:24 +0100888 error_report("Invalid number of arguments");
889 error_printf("Try `%s --help' for more information.\n", argv[0]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100890 exit(EXIT_FAILURE);
Eric Blake68b96f12019-01-17 13:36:56 -0600891 } else if (!export_name) {
892 export_name = "";
bellard7a5ca862008-05-27 21:13:40 +0000893 }
894
Markus Armbruster7e1e0c12018-10-17 10:26:43 +0200895 qemu_opts_foreach(&qemu_object_opts,
896 user_creatable_add_opts_foreach,
897 NULL, &error_fatal);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000898
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300899 if (!trace_init_backends()) {
900 exit(1);
901 }
902 trace_init_file(trace_file);
903 qemu_set_log(LOG_TRACE);
904
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000905 socket_activation = check_socket_activation();
906 if (socket_activation == 0) {
907 setup_address_and_port(&bindto, &port);
908 } else {
909 /* Using socket activation - check user didn't use -p etc. */
910 const char *err_msg = socket_activation_validate_opts(device, sockpath,
Eric Blake68b96f12019-01-17 13:36:56 -0600911 bindto, port,
912 list);
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000913 if (err_msg != NULL) {
914 error_report("%s", err_msg);
915 exit(EXIT_FAILURE);
916 }
Paolo Bonzini53fabd42017-03-16 16:29:45 +0100917
918 /* qemu-nbd can only listen on a single socket. */
919 if (socket_activation > 1) {
920 error_report("qemu-nbd does not support socket activation with %s > 1",
921 "LISTEN_FDS");
922 exit(EXIT_FAILURE);
923 }
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000924 }
925
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000926 if (tlscredsid) {
927 if (sockpath) {
928 error_report("TLS is only supported with IPv4/IPv6");
929 exit(EXIT_FAILURE);
930 }
931 if (device) {
932 error_report("TLS is not supported with a host device");
933 exit(EXIT_FAILURE);
934 }
Eric Blake68b96f12019-01-17 13:36:56 -0600935 tlscreds = nbd_get_tls_creds(tlscredsid, list, &local_err);
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000936 if (local_err) {
937 error_report("Failed to get TLS creds %s",
938 error_get_pretty(local_err));
939 exit(EXIT_FAILURE);
940 }
941 }
942
Eric Blake68b96f12019-01-17 13:36:56 -0600943 if (list) {
944 saddr = nbd_build_socket_address(sockpath, bindto, port);
945 return qemu_nbd_client_list(saddr, tlscreds, bindto);
946 }
947
Eric Blake3c1fa352018-12-15 07:53:08 -0600948#if !HAVE_NBD_DEVICE
949 if (disconnect || device) {
950 error_report("Kernel /dev/nbdN support not available");
951 exit(EXIT_FAILURE);
952 }
953#else /* HAVE_NBD_DEVICE */
thscd831bd2008-07-03 10:23:51 +0000954 if (disconnect) {
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000955 int nbdfd = open(argv[optind], O_RDWR);
956 if (nbdfd < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100957 error_report("Cannot open %s: %s", argv[optind],
958 strerror(errno));
959 exit(EXIT_FAILURE);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100960 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000961 nbd_disconnect(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000962
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000963 close(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000964
965 printf("%s disconnected\n", argv[optind]);
966
Peter Lieven713cc672014-08-13 19:20:19 +0200967 return 0;
thscd831bd2008-07-03 10:23:51 +0000968 }
Eric Blake3c1fa352018-12-15 07:53:08 -0600969#endif
thscd831bd2008-07-03 10:23:51 +0000970
Max Reitzffb31e12016-09-28 22:46:42 +0200971 if ((device && !verbose) || fork_process) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100972 int stderr_fd[2];
973 pid_t pid;
974 int ret;
975
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100976 if (qemu_pipe(stderr_fd) < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100977 error_report("Error setting up communication pipe: %s",
978 strerror(errno));
979 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100980 }
981
982 /* Now daemonize, but keep a communication channel open to
983 * print errors and exit with the proper status code.
984 */
985 pid = fork();
Max Reitz70d47392015-02-25 13:08:22 -0500986 if (pid < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100987 error_report("Failed to fork: %s", strerror(errno));
988 exit(EXIT_FAILURE);
Max Reitz70d47392015-02-25 13:08:22 -0500989 } else if (pid == 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100990 close(stderr_fd[0]);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400991 ret = qemu_daemon(1, 0);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100992
993 /* Temporarily redirect stderr to the parent's pipe... */
Max Reitzffb31e12016-09-28 22:46:42 +0200994 old_stderr = dup(STDERR_FILENO);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100995 dup2(stderr_fd[1], STDERR_FILENO);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100996 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100997 error_report("Failed to daemonize: %s", strerror(errno));
998 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100999 }
1000
1001 /* ... close the descriptor we inherited and go on. */
1002 close(stderr_fd[1]);
1003 } else {
1004 bool errors = false;
1005 char *buf;
1006
1007 /* In the parent. Print error messages from the child until
1008 * it closes the pipe.
1009 */
1010 close(stderr_fd[1]);
1011 buf = g_malloc(1024);
1012 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
1013 errors = true;
1014 ret = qemu_write_full(STDERR_FILENO, buf, ret);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +01001015 if (ret < 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +01001016 exit(EXIT_FAILURE);
1017 }
1018 }
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +01001019 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001020 error_report("Cannot read from daemon: %s",
1021 strerror(errno));
1022 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +01001023 }
1024
1025 /* Usually the daemon should not print any message.
1026 * Exit with zero status in that case.
1027 */
1028 exit(errors);
1029 }
1030 }
1031
Paolo Bonzinia6ac2312011-12-06 09:07:00 +01001032 if (device != NULL && sockpath == NULL) {
1033 sockpath = g_malloc(128);
1034 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
thscd831bd2008-07-03 10:23:51 +00001035 }
1036
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001037 server = qio_net_listener_new();
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001038 if (socket_activation == 0) {
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001039 saddr = nbd_build_socket_address(sockpath, bindto, port);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001040 if (qio_net_listener_open_sync(server, saddr, &local_err) < 0) {
1041 object_unref(OBJECT(server));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001042 error_report_err(local_err);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001043 exit(EXIT_FAILURE);
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001044 }
1045 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001046 size_t i;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001047 /* See comment in check_socket_activation above. */
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001048 for (i = 0; i < socket_activation; i++) {
1049 QIOChannelSocket *sioc;
1050 sioc = qio_channel_socket_new_fd(FIRST_SOCKET_ACTIVATION_FD + i,
1051 &local_err);
1052 if (sioc == NULL) {
1053 object_unref(OBJECT(server));
1054 error_report("Failed to use socket activation: %s",
1055 error_get_pretty(local_err));
1056 exit(EXIT_FAILURE);
1057 }
1058 qio_net_listener_add(server, sioc);
1059 object_unref(OBJECT(sioc));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001060 }
1061 }
Daniel P. Berrange48bec072015-09-16 14:52:23 +01001062
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03001063 if (qemu_init_main_loop(&local_err)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01001064 error_report_err(local_err);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03001065 exit(EXIT_FAILURE);
1066 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001067 bdrv_init();
Kevin Wolfb3b52992018-05-16 13:46:37 +02001068 atexit(qemu_nbd_shutdown);
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001069
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +00001070 srcpath = argv[optind];
1071 if (imageOpts) {
1072 QemuOpts *opts;
1073 if (fmt) {
1074 error_report("--image-opts and -f are mutually exclusive");
1075 exit(EXIT_FAILURE);
1076 }
1077 opts = qemu_opts_parse_noisily(&file_opts, srcpath, true);
1078 if (!opts) {
1079 qemu_opts_reset(&file_opts);
1080 exit(EXIT_FAILURE);
1081 }
1082 options = qemu_opts_to_qdict(opts, NULL);
1083 qemu_opts_reset(&file_opts);
Max Reitzefaa7c42016-03-16 19:54:38 +01001084 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +00001085 } else {
1086 if (fmt) {
1087 options = qdict_new();
Eric Blake46f5ac22017-04-27 16:58:17 -05001088 qdict_put_str(options, "driver", fmt);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +00001089 }
Max Reitzefaa7c42016-03-16 19:54:38 +01001090 blk = blk_new_open(srcpath, NULL, options, flags, &local_err);
Daniel P. Berrangee6b63672013-03-19 11:20:20 +00001091 }
1092
Max Reitz4fbec262015-02-05 13:58:19 -05001093 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01001094 error_reportf_err(local_err, "Failed to blk_new_open '%s': ",
1095 argv[optind]);
Markus Armbruster85b01e02015-12-18 16:35:04 +01001096 exit(EXIT_FAILURE);
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001097 }
Max Reitz4fbec262015-02-05 13:58:19 -05001098 bs = blk_bs(blk);
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001099
Kevin Wolf6effd5b2016-03-14 11:43:28 +01001100 blk_set_enable_write_cache(blk, !writethrough);
1101
Wenchao Xia8c116b02013-12-04 17:10:55 +08001102 if (sn_opts) {
1103 ret = bdrv_snapshot_load_tmp(bs,
1104 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
1105 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
1106 &local_err);
1107 } else if (sn_id_or_name) {
1108 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
1109 &local_err);
1110 }
1111 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01001112 error_reportf_err(local_err, "Failed to load snapshot: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +01001113 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +08001114 }
1115
Peter Lievenb3838a42014-08-13 19:20:18 +02001116 bs->detect_zeroes = detect_zeroes;
Max Reitz4c58e802014-11-18 12:21:19 +01001117 fd_size = blk_getlength(blk);
Max Reitz98f44bb2015-02-25 13:08:21 -05001118 if (fd_size < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001119 error_report("Failed to determine the image length: %s",
1120 strerror(-fd_size));
1121 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -05001122 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001123
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +02001124 if (dev_offset >= fd_size) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001125 error_report("Offset (%" PRIu64 ") has to be smaller than the image "
1126 "size (%" PRId64 ")", dev_offset, fd_size);
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +02001127 exit(EXIT_FAILURE);
1128 }
1129 fd_size -= dev_offset;
1130
Eric Blake43b51012019-01-17 13:36:44 -06001131 if (partition) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001132 uint64_t limit;
Eric Blake44859362019-01-17 13:36:41 -06001133
1134 if (dev_offset) {
1135 error_report("Cannot request partition and offset together");
1136 exit(EXIT_FAILURE);
1137 }
1138 ret = find_partition(blk, partition, &dev_offset, &limit);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001139 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001140 error_report("Could not find partition %d: %s", partition,
Markus Armbrustera4699e52015-12-18 16:35:10 +01001141 strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +01001142 exit(EXIT_FAILURE);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001143 }
Eric Blake44859362019-01-17 13:36:41 -06001144 /*
1145 * MBR partition limits are (32-bit << 9); this assert lets
Eric Blake9d26dfc2019-01-17 13:36:43 -06001146 * the compiler know that we can't overflow 64 bits.
Eric Blake44859362019-01-17 13:36:41 -06001147 */
Eric Blake9d26dfc2019-01-17 13:36:43 -06001148 assert(dev_offset + limit >= dev_offset);
Eric Blake44859362019-01-17 13:36:41 -06001149 if (dev_offset + limit > fd_size) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001150 error_report("Discovered partition %d at offset %" PRIu64
1151 " size %" PRIu64 ", but size exceeds file length %"
1152 PRId64, partition, dev_offset, limit, fd_size);
Eric Blake44859362019-01-17 13:36:41 -06001153 exit(EXIT_FAILURE);
1154 }
1155 fd_size = limit;
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001156 }
1157
Eric Blake3fa4c762019-01-11 13:47:16 -06001158 export = nbd_export_new(bs, dev_offset, fd_size, export_name,
Eric Blake636192c2019-01-11 13:47:20 -06001159 export_description, bitmap, nbdflags,
Eric Blake678ba272019-01-11 13:47:19 -06001160 nbd_export_closed, writethrough, NULL,
1161 &error_fatal);
ths3b05a8e2008-07-03 12:45:02 +00001162
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001163 if (device) {
Eric Blake3c1fa352018-12-15 07:53:08 -06001164#if HAVE_NBD_DEVICE
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001165 int ret;
1166
Paolo Bonzinia6ac2312011-12-06 09:07:00 +01001167 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001168 if (ret != 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001169 error_report("Failed to create client thread: %s", strerror(ret));
1170 exit(EXIT_FAILURE);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001171 }
Eric Blake3c1fa352018-12-15 07:53:08 -06001172#endif
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001173 } else {
1174 /* Shut up GCC warnings. */
1175 memset(&client_thread, 0, sizeof(client_thread));
1176 }
1177
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +00001178 nbd_update_server_watch();
bellard7a5ca862008-05-27 21:13:40 +00001179
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001180 /* now when the initialization is (almost) complete, chdir("/")
1181 * to free any busy filesystems */
1182 if (chdir("/") < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001183 error_report("Could not chdir to root directory: %s",
1184 strerror(errno));
1185 exit(EXIT_FAILURE);
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001186 }
1187
Max Reitzffb31e12016-09-28 22:46:42 +02001188 if (fork_process) {
1189 dup2(old_stderr, STDERR_FILENO);
1190 close(old_stderr);
1191 }
1192
Paolo Bonzini7860a382012-09-18 13:31:56 +02001193 state = RUNNING;
ths3b05a8e2008-07-03 12:45:02 +00001194 do {
Paolo Bonzinia61c6782011-09-12 17:28:11 +02001195 main_loop_wait(false);
Paolo Bonzini7860a382012-09-18 13:31:56 +02001196 if (state == TERMINATE) {
1197 state = TERMINATING;
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +01001198 nbd_export_close(export);
1199 nbd_export_put(export);
1200 export = NULL;
Paolo Bonzini7860a382012-09-18 13:31:56 +02001201 }
1202 } while (state != TERMINATED);
ths3b05a8e2008-07-03 12:45:02 +00001203
Markus Armbruster26f54e92014-10-07 13:59:04 +02001204 blk_unref(blk);
Paolo Bonzinib32f6c22011-11-04 15:51:20 +01001205 if (sockpath) {
1206 unlink(sockpath);
1207 }
bellard7a5ca862008-05-27 21:13:40 +00001208
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02001209 qemu_opts_del(sn_opts);
Wenchao Xia8c116b02013-12-04 17:10:55 +08001210
Paolo Bonzinia517e882011-11-04 15:51:21 +01001211 if (device) {
1212 void *ret;
1213 pthread_join(client_thread, &ret);
1214 exit(ret != NULL);
1215 } else {
1216 exit(EXIT_SUCCESS);
1217 }
bellard7a5ca862008-05-27 21:13:40 +00001218}