blob: 9032b6de2acef18a8e17f367175d8511ec0fd433 [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 Armbrustera8d25322019-05-23 16:35:08 +020024#include "qemu-common.h"
Markus Armbrusterda34e652016-03-14 09:01:28 +010025#include "qapi/error.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020026#include "qemu/cutils.h"
Markus Armbruster26f54e92014-10-07 13:59:04 +020027#include "sysemu/block-backend.h"
Peter Lievenb3838a42014-08-13 19:20:18 +020028#include "block/block_int.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010029#include "block/nbd.h"
Alex Bligh6a1751b2013-08-21 16:02:47 +010030#include "qemu/main-loop.h"
Markus Armbruster0b8fa322019-05-23 16:35:07 +020031#include "qemu/module.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010032#include "qemu/option.h"
Paolo Bonzini537b41f2014-02-17 14:43:51 +010033#include "qemu/error-report.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000034#include "qemu/config-file.h"
Paolo Bonzini58369e22016-03-15 17:22:36 +010035#include "qemu/bswap.h"
Denis V. Lunev39ca4632016-06-17 17:44:12 +030036#include "qemu/log.h"
Paolo Bonzini53fabd42017-03-16 16:29:45 +010037#include "qemu/systemd.h"
Wenchao Xia8c116b02013-12-04 17:10:55 +080038#include "block/snapshot.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010039#include "qapi/qmp/qdict.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010040#include "qapi/qmp/qstring.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000041#include "qom/object_interfaces.h"
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +000042#include "io/channel-socket.h"
Daniel P. Berrangee4849c12017-12-18 10:16:43 +000043#include "io/net-listener.h"
Daniel P. Berrangec2297082016-04-06 12:12:06 +010044#include "crypto/init.h"
Denis V. Lunev39ca4632016-06-17 17:44:12 +030045#include "trace/control.h"
Eric Blakebe377132017-07-21 08:50:46 -050046#include "qemu-version.h"
bellard7a5ca862008-05-27 21:13:40 +000047
Eric Blake3c1fa352018-12-15 07:53:08 -060048#ifdef __linux__
49#define HAVE_NBD_DEVICE 1
50#else
51#define HAVE_NBD_DEVICE 0
52#endif
53
Peter Lieven713cc672014-08-13 19:20:19 +020054#define SOCKET_PATH "/var/lock/qemu-nbd-%s"
Daniel P. Berrangefa8b7ce2016-02-17 10:10:21 +000055#define QEMU_NBD_OPT_CACHE 256
56#define QEMU_NBD_OPT_AIO 257
57#define QEMU_NBD_OPT_DISCARD 258
58#define QEMU_NBD_OPT_DETECT_ZEROES 259
59#define QEMU_NBD_OPT_OBJECT 260
60#define QEMU_NBD_OPT_TLSCREDS 261
61#define QEMU_NBD_OPT_IMAGE_OPTS 262
Max Reitzffb31e12016-09-28 22:46:42 +020062#define QEMU_NBD_OPT_FORK 263
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +000063#define QEMU_NBD_OPT_TLSAUTHZ 264
Max Reitz637bc5a2019-05-08 23:18:16 +020064#define QEMU_NBD_OPT_PID_FILE 265
bellard7a5ca862008-05-27 21:13:40 +000065
Eric Blakebd31c212016-05-06 10:26:42 -060066#define MBR_SIZE 512
67
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +010068static NBDExport *export;
blueswir1b1d8e522008-10-26 13:43:07 +000069static int verbose;
Paolo Bonzinia517e882011-11-04 15:51:21 +010070static char *srcpath;
Markus Armbrusterbd269eb2017-04-26 09:36:41 +020071static SocketAddress *saddr;
Paolo Bonzini7860a382012-09-18 13:31:56 +020072static int persistent = 0;
73static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state;
Paolo Bonzinia61c6782011-09-12 17:28:11 +020074static int shared = 1;
75static int nb_fds;
Daniel P. Berrangee4849c12017-12-18 10:16:43 +000076static QIONetListener *server;
Daniel P. Berrange145614a2016-02-10 18:41:13 +000077static QCryptoTLSCreds *tlscreds;
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +000078static const char *tlsauthz;
bellard7a5ca862008-05-27 21:13:40 +000079
80static void usage(const char *name)
81{
Paolo Bonzinib033cd82012-07-18 14:50:52 +020082 (printf) (
bellard7a5ca862008-05-27 21:13:40 +000083"Usage: %s [OPTIONS] FILE\n"
Eric Blake68b96f12019-01-17 13:36:56 -060084" or: %s -L [OPTIONS]\n"
85"QEMU Disk Network Block Device Utility\n"
bellard7a5ca862008-05-27 21:13:40 +000086"\n"
Peter Lieven713cc672014-08-13 19:20:19 +020087" -h, --help display this help and exit\n"
88" -V, --version output version information and exit\n"
bellard7a5ca862008-05-27 21:13:40 +000089"\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020090"Connection properties:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020091" -p, --port=PORT port to listen on (default `%d')\n"
92" -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
93" -k, --socket=PATH path to the unix socket\n"
94" (default '"SOCKET_PATH"')\n"
95" -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
96" -t, --persistent don't exit on the last connection\n"
97" -v, --verbose display extra debugging information\n"
Vladimir Sementsov-Ogievskiyf5cd0bb2018-10-03 20:02:27 +030098" -x, --export-name=NAME expose export by name (default is empty string)\n"
99" -D, --description=TEXT export a human-readable description\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200100"\n"
101"Exposing part of the image:\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200102" -o, --offset=OFFSET offset into the image\n"
103" -P, --partition=NUM only expose partition NUM\n"
Eric Blake636192c2019-01-11 13:47:20 -0600104" -B, --bitmap=NAME expose a persistent dirty bitmap\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200105"\n"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000106"General purpose options:\n"
Eric Blake68b96f12019-01-17 13:36:56 -0600107" -L, --list list exports available from another NBD server\n"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000108" --object type,id=ID,... define an object such as 'secret' for providing\n"
109" passwords and/or encryption keys\n"
Eric Blakef7812df2018-10-03 13:04:26 -0500110" --tls-creds=ID use id of an earlier --object to provide TLS\n"
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +0000111" --tls-authz=ID use id of an earlier --object to provide\n"
112" authorization\n"
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300113" -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
114" specify tracing options\n"
Max Reitzffb31e12016-09-28 22:46:42 +0200115" --fork fork off the server process and exit the parent\n"
116" once the server is running\n"
Max Reitz637bc5a2019-05-08 23:18:16 +0200117" --pid-file=PATH store the server's process ID in the given file\n"
Eric Blake3c1fa352018-12-15 07:53:08 -0600118#if HAVE_NBD_DEVICE
119"\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200120"Kernel NBD client support:\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200121" -c, --connect=DEV connect FILE to the local NBD device DEV\n"
122" -d, --disconnect disconnect the specified device\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200123#endif
124"\n"
125"Block device options:\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200126" -f, --format=FORMAT set image format (raw, qcow2, ...)\n"
127" -r, --read-only export read-only\n"
128" -s, --snapshot use FILE as an external snapshot, create a temporary\n"
129" file with backing_file=FILE, redirect the write to\n"
130" the temporary one\n"
Wenchao Xia8c116b02013-12-04 17:10:55 +0800131" -l, --load-snapshot=SNAPSHOT_PARAM\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200132" load an internal snapshot inside FILE and export it\n"
133" as an read-only device, SNAPSHOT_PARAM format is\n"
134" 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
135" '[ID_OR_NAME]'\n"
136" -n, --nocache disable host cache\n"
137" --cache=MODE set cache mode (none, writeback, ...)\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200138" --aio=MODE set AIO mode (native or threads)\n"
Peter Lievenb3838a42014-08-13 19:20:18 +0200139" --discard=MODE set discard mode (ignore, unmap)\n"
Andrey Korolyov6883de62015-07-31 22:12:54 +0300140" --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n"
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000141" --image-opts treat FILE as a full set of image options\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200142"\n"
Eric Blakef5048cb2017-08-03 11:33:53 -0500143QEMU_HELP_BOTTOM "\n"
Eric Blake68b96f12019-01-17 13:36:56 -0600144 , name, name, NBD_DEFAULT_PORT, "DEVICE");
bellard7a5ca862008-05-27 21:13:40 +0000145}
146
147static void version(const char *name)
148{
149 printf(
Thomas Huth7e563bf2018-02-15 12:06:47 +0100150"%s " QEMU_FULL_VERSION "\n"
bellard7a5ca862008-05-27 21:13:40 +0000151"Written by Anthony Liguori.\n"
152"\n"
Eric Blakebe377132017-07-21 08:50:46 -0500153QEMU_COPYRIGHT "\n"
bellard7a5ca862008-05-27 21:13:40 +0000154"This is free software; see the source for copying conditions. There is NO\n"
155"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
ths315bc7a2008-07-18 18:06:23 +0000156 , name);
bellard7a5ca862008-05-27 21:13:40 +0000157}
158
159struct partition_record
160{
161 uint8_t bootable;
162 uint8_t start_head;
163 uint32_t start_cylinder;
164 uint8_t start_sector;
165 uint8_t system;
166 uint8_t end_head;
167 uint8_t end_cylinder;
168 uint8_t end_sector;
169 uint32_t start_sector_abs;
170 uint32_t nb_sectors_abs;
171};
172
173static void read_partition(uint8_t *p, struct partition_record *r)
174{
175 r->bootable = p[0];
176 r->start_head = p[1];
177 r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
178 r->start_sector = p[2] & 0x3f;
179 r->system = p[4];
180 r->end_head = p[5];
181 r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
182 r->end_sector = p[6] & 0x3f;
Max Reitzac973932015-02-25 13:08:23 -0500183
Peter Maydell773dce32016-06-10 16:00:36 +0100184 r->start_sector_abs = ldl_le_p(p + 8);
185 r->nb_sectors_abs = ldl_le_p(p + 12);
bellard7a5ca862008-05-27 21:13:40 +0000186}
187
Max Reitz4c58e802014-11-18 12:21:19 +0100188static int find_partition(BlockBackend *blk, int partition,
Eric Blake9d26dfc2019-01-17 13:36:43 -0600189 uint64_t *offset, uint64_t *size)
bellard7a5ca862008-05-27 21:13:40 +0000190{
191 struct partition_record mbr[4];
Eric Blakebd31c212016-05-06 10:26:42 -0600192 uint8_t data[MBR_SIZE];
bellard7a5ca862008-05-27 21:13:40 +0000193 int i;
194 int ext_partnum = 4;
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900195 int ret;
bellard7a5ca862008-05-27 21:13:40 +0000196
Eric Blakebd31c212016-05-06 10:26:42 -0600197 ret = blk_pread(blk, 0, data, sizeof(data));
198 if (ret < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100199 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100200 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900201 }
bellard7a5ca862008-05-27 21:13:40 +0000202
203 if (data[510] != 0x55 || data[511] != 0xaa) {
Paolo Bonzini185b4332012-03-05 08:56:10 +0100204 return -EINVAL;
bellard7a5ca862008-05-27 21:13:40 +0000205 }
206
207 for (i = 0; i < 4; i++) {
208 read_partition(&data[446 + 16 * i], &mbr[i]);
209
Max Reitz453b07b2015-02-25 13:08:15 -0500210 if (!mbr[i].system || !mbr[i].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000211 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500212 }
bellard7a5ca862008-05-27 21:13:40 +0000213
214 if (mbr[i].system == 0xF || mbr[i].system == 0x5) {
215 struct partition_record ext[4];
Eric Blakebd31c212016-05-06 10:26:42 -0600216 uint8_t data1[MBR_SIZE];
bellard7a5ca862008-05-27 21:13:40 +0000217 int j;
218
Eric Blakebd31c212016-05-06 10:26:42 -0600219 ret = blk_pread(blk, mbr[i].start_sector_abs * MBR_SIZE,
220 data1, sizeof(data1));
221 if (ret < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100222 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100223 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900224 }
bellard7a5ca862008-05-27 21:13:40 +0000225
226 for (j = 0; j < 4; j++) {
227 read_partition(&data1[446 + 16 * j], &ext[j]);
Max Reitz453b07b2015-02-25 13:08:15 -0500228 if (!ext[j].system || !ext[j].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000229 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500230 }
bellard7a5ca862008-05-27 21:13:40 +0000231
232 if ((ext_partnum + j + 1) == partition) {
233 *offset = (uint64_t)ext[j].start_sector_abs << 9;
234 *size = (uint64_t)ext[j].nb_sectors_abs << 9;
235 return 0;
236 }
237 }
238 ext_partnum += 4;
239 } else if ((i + 1) == partition) {
240 *offset = (uint64_t)mbr[i].start_sector_abs << 9;
241 *size = (uint64_t)mbr[i].nb_sectors_abs << 9;
242 return 0;
243 }
244 }
245
Paolo Bonzini185b4332012-03-05 08:56:10 +0100246 return -ENOENT;
bellard7a5ca862008-05-27 21:13:40 +0000247}
248
Paolo Bonzinibb345112011-11-04 15:51:19 +0100249static void termsig_handler(int signum)
250{
Pavel Butsykin23994a52016-04-14 13:20:15 +0300251 atomic_cmpxchg(&state, RUNNING, TERMINATE);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200252 qemu_notify_event();
Paolo Bonzinibb345112011-11-04 15:51:19 +0100253}
254
Paolo Bonzini537b41f2014-02-17 14:43:51 +0100255
Eric Blake68b96f12019-01-17 13:36:56 -0600256static int qemu_nbd_client_list(SocketAddress *saddr, QCryptoTLSCreds *tls,
257 const char *hostname)
258{
259 int ret = EXIT_FAILURE;
260 int rc;
261 Error *err = NULL;
262 QIOChannelSocket *sioc;
263 NBDExportInfo *list;
264 int i, j;
265
266 sioc = qio_channel_socket_new();
267 if (qio_channel_socket_connect_sync(sioc, saddr, &err) < 0) {
268 error_report_err(err);
269 return EXIT_FAILURE;
270 }
271 rc = nbd_receive_export_list(QIO_CHANNEL(sioc), tls, hostname, &list,
272 &err);
273 if (rc < 0) {
274 if (err) {
275 error_report_err(err);
276 }
277 goto out;
278 }
279 printf("exports available: %d\n", rc);
280 for (i = 0; i < rc; i++) {
281 printf(" export: '%s'\n", list[i].name);
282 if (list[i].description && *list[i].description) {
283 printf(" description: %s\n", list[i].description);
284 }
285 if (list[i].flags & NBD_FLAG_HAS_FLAGS) {
Max Reitzc4e2aff2019-04-05 21:16:35 +0200286 static const char *const flag_names[] = {
287 [NBD_FLAG_READ_ONLY_BIT] = "readonly",
288 [NBD_FLAG_SEND_FLUSH_BIT] = "flush",
289 [NBD_FLAG_SEND_FUA_BIT] = "fua",
290 [NBD_FLAG_ROTATIONAL_BIT] = "rotational",
291 [NBD_FLAG_SEND_TRIM_BIT] = "trim",
292 [NBD_FLAG_SEND_WRITE_ZEROES_BIT] = "zeroes",
293 [NBD_FLAG_SEND_DF_BIT] = "df",
294 [NBD_FLAG_CAN_MULTI_CONN_BIT] = "multi",
295 [NBD_FLAG_SEND_RESIZE_BIT] = "resize",
296 [NBD_FLAG_SEND_CACHE_BIT] = "cache",
Eric Blake0a479542019-08-23 09:37:23 -0500297 [NBD_FLAG_SEND_FAST_ZERO_BIT] = "fast-zero",
Max Reitzc4e2aff2019-04-05 21:16:35 +0200298 };
299
Eric Blake68b96f12019-01-17 13:36:56 -0600300 printf(" size: %" PRIu64 "\n", list[i].size);
301 printf(" flags: 0x%x (", list[i].flags);
Max Reitzc4e2aff2019-04-05 21:16:35 +0200302 for (size_t bit = 0; bit < ARRAY_SIZE(flag_names); bit++) {
303 if (flag_names[bit] && (list[i].flags & (1 << bit))) {
304 printf(" %s", flag_names[bit]);
305 }
Eric Blake68b96f12019-01-17 13:36:56 -0600306 }
307 printf(" )\n");
308 }
309 if (list[i].min_block) {
310 printf(" min block: %u\n", list[i].min_block);
311 printf(" opt block: %u\n", list[i].opt_block);
312 printf(" max block: %u\n", list[i].max_block);
313 }
314 if (list[i].n_contexts) {
315 printf(" available meta contexts: %d\n", list[i].n_contexts);
316 for (j = 0; j < list[i].n_contexts; j++) {
317 printf(" %s\n", list[i].contexts[j]);
318 }
319 }
320 }
321 nbd_free_export_list(list, rc);
322
323 ret = EXIT_SUCCESS;
324 out:
325 object_unref(OBJECT(sioc));
326 return ret;
327}
328
329
Eric Blake3c1fa352018-12-15 07:53:08 -0600330#if HAVE_NBD_DEVICE
Paolo Bonzinia517e882011-11-04 15:51:21 +0100331static void *show_parts(void *arg)
thscd831bd2008-07-03 10:23:51 +0000332{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100333 char *device = arg;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100334 int nbd;
thscd831bd2008-07-03 10:23:51 +0000335
Paolo Bonzinia517e882011-11-04 15:51:21 +0100336 /* linux just needs an open() to trigger
337 * the partition table update
338 * but remember to load the module with max_part != 0 :
339 * modprobe nbd max_part=63
340 */
341 nbd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100342 if (nbd >= 0) {
Paolo Bonzinia517e882011-11-04 15:51:21 +0100343 close(nbd);
thscd831bd2008-07-03 10:23:51 +0000344 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100345 return NULL;
346}
347
348static void *nbd_client_thread(void *arg)
349{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100350 char *device = arg;
Eric Blake6dc16672019-01-17 13:36:46 -0600351 NBDExportInfo info = { .request_sizes = false, .name = g_strdup("") };
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000352 QIOChannelSocket *sioc;
353 int fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100354 int ret;
355 pthread_t show_parts_thread;
Max Reitz1ce52842015-01-26 21:02:59 -0500356 Error *local_error = NULL;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100357
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000358 sioc = qio_channel_socket_new();
359 if (qio_channel_socket_connect_sync(sioc,
360 saddr,
361 &local_error) < 0) {
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100362 error_report_err(local_error);
Stefan Hajnoczidc10e8b2012-01-05 13:16:07 +0000363 goto out;
364 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100365
Vladimir Sementsov-Ogievskiya8e2bb62019-06-18 14:43:21 +0300366 ret = nbd_receive_negotiate(NULL, QIO_CHANNEL(sioc),
Eric Blake004a89f2017-07-07 15:30:41 -0500367 NULL, NULL, NULL, &info, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100368 if (ret < 0) {
Max Reitz1ce52842015-01-26 21:02:59 -0500369 if (local_error) {
Markus Armbruster78288672015-12-18 16:35:07 +0100370 error_report_err(local_error);
Max Reitz1ce52842015-01-26 21:02:59 -0500371 }
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100372 goto out_socket;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100373 }
374
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100375 fd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100376 if (fd < 0) {
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100377 /* Linux-only, we can use %m in printf. */
Markus Armbrusterb9884682015-12-18 16:35:18 +0100378 error_report("Failed to open %s: %m", device);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100379 goto out_socket;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100380 }
381
Eric Blake004a89f2017-07-07 15:30:41 -0500382 ret = nbd_init(fd, sioc, &info, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100383 if (ret < 0) {
Vladimir Sementsov-Ogievskiybe41c102017-05-26 14:09:13 +0300384 error_report_err(local_error);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100385 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100386 }
387
388 /* update partition table */
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100389 pthread_create(&show_parts_thread, NULL, show_parts, device);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100390
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100391 if (verbose) {
392 fprintf(stderr, "NBD device %s is now connected to %s\n",
393 device, srcpath);
394 } else {
395 /* Close stderr so that the qemu-nbd process exits. */
396 dup2(STDOUT_FILENO, STDERR_FILENO);
397 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100398
399 ret = nbd_client(fd);
400 if (ret) {
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100401 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100402 }
403 close(fd);
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000404 object_unref(OBJECT(sioc));
Eric Blake6dc16672019-01-17 13:36:46 -0600405 g_free(info.name);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100406 kill(getpid(), SIGTERM);
407 return (void *) EXIT_SUCCESS;
408
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100409out_fd:
410 close(fd);
411out_socket:
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000412 object_unref(OBJECT(sioc));
Paolo Bonzinia517e882011-11-04 15:51:21 +0100413out:
Eric Blake6dc16672019-01-17 13:36:46 -0600414 g_free(info.name);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100415 kill(getpid(), SIGTERM);
416 return (void *) EXIT_FAILURE;
thscd831bd2008-07-03 10:23:51 +0000417}
Eric Blake3c1fa352018-12-15 07:53:08 -0600418#endif /* HAVE_NBD_DEVICE */
thscd831bd2008-07-03 10:23:51 +0000419
Fam Zhenge4afbf42015-05-19 10:50:59 +0000420static int nbd_can_accept(void)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200421{
Eric Blakedf8ad9f2017-05-26 22:04:21 -0500422 return state == RUNNING && nb_fds < shared;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200423}
424
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +0100425static void nbd_export_closed(NBDExport *export)
Paolo Bonzini7860a382012-09-18 13:31:56 +0200426{
427 assert(state == TERMINATING);
428 state = TERMINATED;
429}
430
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000431static void nbd_update_server_watch(void);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000432
Eric Blake0c9390d2017-06-08 17:26:17 -0500433static void nbd_client_closed(NBDClient *client, bool negotiated)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200434{
Paolo Bonzini1743b512011-09-19 14:33:23 +0200435 nb_fds--;
Eric Blake0c9390d2017-06-08 17:26:17 -0500436 if (negotiated && nb_fds == 0 && !persistent && state == RUNNING) {
Paolo Bonzini7860a382012-09-18 13:31:56 +0200437 state = TERMINATE;
438 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000439 nbd_update_server_watch();
Paolo Bonzini7860a382012-09-18 13:31:56 +0200440 nbd_client_put(client);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200441}
442
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000443static void nbd_accept(QIONetListener *listener, QIOChannelSocket *cioc,
444 gpointer opaque)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200445{
Paolo Bonzini7860a382012-09-18 13:31:56 +0200446 if (state >= TERMINATE) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000447 return;
Paolo Bonzini7860a382012-09-18 13:31:56 +0200448 }
449
Fam Zhengee7d7aa2016-01-14 16:41:01 +0800450 nb_fds++;
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000451 nbd_update_server_watch();
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +0000452 nbd_client_new(cioc, tlscreds, tlsauthz, nbd_client_closed);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200453}
454
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000455static void nbd_update_server_watch(void)
Fam Zhenge4afbf42015-05-19 10:50:59 +0000456{
457 if (nbd_can_accept()) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000458 qio_net_listener_set_client_func(server, nbd_accept, NULL, NULL);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000459 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000460 qio_net_listener_set_client_func(server, NULL, NULL, NULL);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000461 }
462}
463
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100464
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200465static SocketAddress *nbd_build_socket_address(const char *sockpath,
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100466 const char *bindto,
467 const char *port)
468{
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200469 SocketAddress *saddr;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100470
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200471 saddr = g_new0(SocketAddress, 1);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100472 if (sockpath) {
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200473 saddr->type = SOCKET_ADDRESS_TYPE_UNIX;
474 saddr->u.q_unix.path = g_strdup(sockpath);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100475 } else {
Eric Blake03992932016-03-03 09:16:48 -0700476 InetSocketAddress *inet;
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200477 saddr->type = SOCKET_ADDRESS_TYPE_INET;
478 inet = &saddr->u.inet;
Eric Blake03992932016-03-03 09:16:48 -0700479 inet->host = g_strdup(bindto);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100480 if (port) {
Eric Blake03992932016-03-03 09:16:48 -0700481 inet->port = g_strdup(port);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100482 } else {
Eric Blake03992932016-03-03 09:16:48 -0700483 inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100484 }
485 }
486
487 return saddr;
488}
489
490
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000491static QemuOptsList file_opts = {
492 .name = "file",
493 .implied_opt_name = "file",
494 .head = QTAILQ_HEAD_INITIALIZER(file_opts.head),
495 .desc = {
496 /* no elements => accept any params */
497 { /* end of list */ }
498 },
499};
500
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000501static QemuOptsList qemu_object_opts = {
502 .name = "object",
503 .implied_opt_name = "qom-type",
504 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
505 .desc = {
506 { }
507 },
508};
509
510
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000511
Eric Blake68b96f12019-01-17 13:36:56 -0600512static QCryptoTLSCreds *nbd_get_tls_creds(const char *id, bool list,
513 Error **errp)
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000514{
515 Object *obj;
516 QCryptoTLSCreds *creds;
517
518 obj = object_resolve_path_component(
519 object_get_objects_root(), id);
520 if (!obj) {
521 error_setg(errp, "No TLS credentials with id '%s'",
522 id);
523 return NULL;
524 }
525 creds = (QCryptoTLSCreds *)
526 object_dynamic_cast(obj, TYPE_QCRYPTO_TLS_CREDS);
527 if (!creds) {
528 error_setg(errp, "Object with id '%s' is not TLS credentials",
529 id);
530 return NULL;
531 }
532
Eric Blake68b96f12019-01-17 13:36:56 -0600533 if (list) {
534 if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT) {
535 error_setg(errp,
536 "Expecting TLS credentials with a client endpoint");
537 return NULL;
538 }
539 } else {
540 if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_SERVER) {
541 error_setg(errp,
542 "Expecting TLS credentials with a server endpoint");
543 return NULL;
544 }
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000545 }
546 object_ref(obj);
547 return creds;
548}
549
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000550static void setup_address_and_port(const char **address, const char **port)
551{
552 if (*address == NULL) {
553 *address = "0.0.0.0";
554 }
555
556 if (*port == NULL) {
557 *port = stringify(NBD_DEFAULT_PORT);
558 }
559}
560
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000561/*
562 * Check socket parameters compatibility when socket activation is used.
563 */
564static const char *socket_activation_validate_opts(const char *device,
565 const char *sockpath,
566 const char *address,
Eric Blake68b96f12019-01-17 13:36:56 -0600567 const char *port,
568 bool list)
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000569{
570 if (device != NULL) {
571 return "NBD device can't be set when using socket activation";
572 }
573
574 if (sockpath != NULL) {
575 return "Unix socket can't be set when using socket activation";
576 }
577
578 if (address != NULL) {
579 return "The interface can't be set when using socket activation";
580 }
581
582 if (port != NULL) {
583 return "TCP port number can't be set when using socket activation";
584 }
585
Eric Blake68b96f12019-01-17 13:36:56 -0600586 if (list) {
587 return "List mode is incompatible with socket activation";
588 }
589
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000590 return NULL;
591}
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000592
Kevin Wolfb3b52992018-05-16 13:46:37 +0200593static void qemu_nbd_shutdown(void)
594{
595 job_cancel_sync_all();
596 bdrv_close_all();
597}
598
bellard7a5ca862008-05-27 21:13:40 +0000599int main(int argc, char **argv)
600{
Markus Armbruster26f54e92014-10-07 13:59:04 +0200601 BlockBackend *blk;
bellard7a5ca862008-05-27 21:13:40 +0000602 BlockDriverState *bs;
Eric Blake9d26dfc2019-01-17 13:36:43 -0600603 uint64_t dev_offset = 0;
Eric Blakedbb38ca2019-08-23 09:37:22 -0500604 bool readonly = false;
thscd831bd2008-07-03 10:23:51 +0000605 bool disconnect = false;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000606 const char *bindto = NULL;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100607 const char *port = NULL;
608 char *sockpath = NULL;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100609 char *device = NULL;
Eric Blake9d26dfc2019-01-17 13:36:43 -0600610 int64_t fd_size;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800611 QemuOpts *sn_opts = NULL;
612 const char *sn_id_or_name = NULL;
Eric Blake68b96f12019-01-17 13:36:56 -0600613 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:x:T:D:B:L";
bellard7a5ca862008-05-27 21:13:40 +0000614 struct option lopt[] = {
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000615 { "help", no_argument, NULL, 'h' },
616 { "version", no_argument, NULL, 'V' },
617 { "bind", required_argument, NULL, 'b' },
618 { "port", required_argument, NULL, 'p' },
619 { "socket", required_argument, NULL, 'k' },
620 { "offset", required_argument, NULL, 'o' },
621 { "read-only", no_argument, NULL, 'r' },
622 { "partition", required_argument, NULL, 'P' },
Eric Blake636192c2019-01-11 13:47:20 -0600623 { "bitmap", required_argument, NULL, 'B' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000624 { "connect", required_argument, NULL, 'c' },
625 { "disconnect", no_argument, NULL, 'd' },
Eric Blake68b96f12019-01-17 13:36:56 -0600626 { "list", no_argument, NULL, 'L' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000627 { "snapshot", no_argument, NULL, 's' },
628 { "load-snapshot", required_argument, NULL, 'l' },
629 { "nocache", no_argument, NULL, 'n' },
630 { "cache", required_argument, NULL, QEMU_NBD_OPT_CACHE },
631 { "aio", required_argument, NULL, QEMU_NBD_OPT_AIO },
632 { "discard", required_argument, NULL, QEMU_NBD_OPT_DISCARD },
633 { "detect-zeroes", required_argument, NULL,
634 QEMU_NBD_OPT_DETECT_ZEROES },
635 { "shared", required_argument, NULL, 'e' },
636 { "format", required_argument, NULL, 'f' },
637 { "persistent", no_argument, NULL, 't' },
638 { "verbose", no_argument, NULL, 'v' },
639 { "object", required_argument, NULL, QEMU_NBD_OPT_OBJECT },
640 { "export-name", required_argument, NULL, 'x' },
Eric Blakeb1a75b32016-10-14 13:33:03 -0500641 { "description", required_argument, NULL, 'D' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000642 { "tls-creds", required_argument, NULL, QEMU_NBD_OPT_TLSCREDS },
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +0000643 { "tls-authz", required_argument, NULL, QEMU_NBD_OPT_TLSAUTHZ },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000644 { "image-opts", no_argument, NULL, QEMU_NBD_OPT_IMAGE_OPTS },
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300645 { "trace", required_argument, NULL, 'T' },
Max Reitzffb31e12016-09-28 22:46:42 +0200646 { "fork", no_argument, NULL, QEMU_NBD_OPT_FORK },
Max Reitz637bc5a2019-05-08 23:18:16 +0200647 { "pid-file", required_argument, NULL, QEMU_NBD_OPT_PID_FILE },
Blue Swirl660f11b2009-07-31 21:16:51 +0000648 { NULL, 0, NULL, 0 }
bellard7a5ca862008-05-27 21:13:40 +0000649 };
650 int ch;
651 int opt_ind = 0;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200652 int flags = BDRV_O_RDWR;
Eric Blake43b51012019-01-17 13:36:44 -0600653 int partition = 0;
Max Reitz4fbec262015-02-05 13:58:19 -0500654 int ret = 0;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200655 bool seen_cache = false;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100656 bool seen_discard = false;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200657 bool seen_aio = false;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100658 pthread_t client_thread;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000659 const char *fmt = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200660 Error *local_err = NULL;
Peter Lievenb3838a42014-08-13 19:20:18 +0200661 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
Max Reitz4fbec262015-02-05 13:58:19 -0500662 QDict *options = NULL;
Eric Blake68b96f12019-01-17 13:36:56 -0600663 const char *export_name = NULL; /* defaults to "" later for server mode */
Eric Blakeb1a75b32016-10-14 13:33:03 -0500664 const char *export_description = NULL;
Eric Blake636192c2019-01-11 13:47:20 -0600665 const char *bitmap = NULL;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000666 const char *tlscredsid = NULL;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000667 bool imageOpts = false;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100668 bool writethrough = true;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300669 char *trace_file = NULL;
Max Reitzffb31e12016-09-28 22:46:42 +0200670 bool fork_process = false;
Eric Blake68b96f12019-01-17 13:36:56 -0600671 bool list = false;
Max Reitzffb31e12016-09-28 22:46:42 +0200672 int old_stderr = -1;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000673 unsigned socket_activation;
Max Reitz637bc5a2019-05-08 23:18:16 +0200674 const char *pid_file_name = NULL;
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
Christophe Fergeauf5852ef2019-01-31 17:46:14 +0100688 error_init(argv[0]);
Daniel P. Berrangefe4db842016-10-04 14:35:52 +0100689 module_call_init(MODULE_INIT_TRACE);
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':
Eric Blakedbb38ca2019-08-23 09:37:22 -0500786 readonly = true;
Naphtali Sprei07108b22010-03-14 15:19:57 +0200787 flags &= ~BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000788 break;
789 case 'P':
Eric Blake0ae2d542019-01-25 17:48:37 -0600790 warn_report("The '-P' option is deprecated; use --image-opts with "
791 "a raw device wrapper for subset exports instead");
Eric Blake43b51012019-01-17 13:36:44 -0600792 if (qemu_strtoi(optarg, NULL, 0, &partition) < 0 ||
793 partition < 1 || partition > 8) {
794 error_report("Invalid partition '%s'", optarg);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100795 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200796 }
bellard7a5ca862008-05-27 21:13:40 +0000797 break;
Eric Blake636192c2019-01-11 13:47:20 -0600798 case 'B':
799 bitmap = optarg;
800 break;
thscd831bd2008-07-03 10:23:51 +0000801 case 'k':
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100802 sockpath = optarg;
Peter Lieven713cc672014-08-13 19:20:19 +0200803 if (sockpath[0] != '/') {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100804 error_report("socket path must be absolute");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100805 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200806 }
thscd831bd2008-07-03 10:23:51 +0000807 break;
808 case 'd':
809 disconnect = true;
810 break;
811 case 'c':
812 device = optarg;
813 break;
ths3b05a8e2008-07-03 12:45:02 +0000814 case 'e':
Eric Blake43b51012019-01-17 13:36:44 -0600815 if (qemu_strtoi(optarg, NULL, 0, &shared) < 0 ||
816 shared < 1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100817 error_report("Invalid shared device number '%s'", optarg);
818 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000819 }
ths3b05a8e2008-07-03 12:45:02 +0000820 break;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000821 case 'f':
822 fmt = optarg;
823 break;
Peter Lieven713cc672014-08-13 19:20:19 +0200824 case 't':
825 persistent = 1;
826 break;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000827 case 'x':
828 export_name = optarg;
829 break;
Eric Blakeb1a75b32016-10-14 13:33:03 -0500830 case 'D':
831 export_description = optarg;
832 break;
bellard7a5ca862008-05-27 21:13:40 +0000833 case 'v':
834 verbose = 1;
835 break;
836 case 'V':
837 version(argv[0]);
838 exit(0);
839 break;
840 case 'h':
841 usage(argv[0]);
842 exit(0);
843 break;
844 case '?':
Markus Armbruster85b01e02015-12-18 16:35:04 +0100845 error_report("Try `%s --help' for more information.", argv[0]);
846 exit(EXIT_FAILURE);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000847 case QEMU_NBD_OPT_OBJECT: {
848 QemuOpts *opts;
849 opts = qemu_opts_parse_noisily(&qemu_object_opts,
850 optarg, true);
851 if (!opts) {
852 exit(EXIT_FAILURE);
853 }
854 } break;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000855 case QEMU_NBD_OPT_TLSCREDS:
856 tlscredsid = optarg;
857 break;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000858 case QEMU_NBD_OPT_IMAGE_OPTS:
859 imageOpts = true;
860 break;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300861 case 'T':
862 g_free(trace_file);
863 trace_file = trace_opt_parse(optarg);
864 break;
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +0000865 case QEMU_NBD_OPT_TLSAUTHZ:
866 tlsauthz = optarg;
867 break;
Max Reitzffb31e12016-09-28 22:46:42 +0200868 case QEMU_NBD_OPT_FORK:
869 fork_process = true;
870 break;
Eric Blake68b96f12019-01-17 13:36:56 -0600871 case 'L':
872 list = true;
873 break;
Max Reitz637bc5a2019-05-08 23:18:16 +0200874 case QEMU_NBD_OPT_PID_FILE:
875 pid_file_name = optarg;
876 break;
bellard7a5ca862008-05-27 21:13:40 +0000877 }
878 }
879
Eric Blake68b96f12019-01-17 13:36:56 -0600880 if (list) {
881 if (argc != optind) {
882 error_report("List mode is incompatible with a file name");
883 exit(EXIT_FAILURE);
884 }
885 if (export_name || export_description || dev_offset || partition ||
886 device || disconnect || fmt || sn_id_or_name || bitmap ||
887 seen_aio || seen_discard || seen_cache) {
888 error_report("List mode is incompatible with per-device settings");
889 exit(EXIT_FAILURE);
890 }
891 if (fork_process) {
892 error_report("List mode is incompatible with forking");
893 exit(EXIT_FAILURE);
894 }
895 } else if ((argc - optind) != 1) {
Markus Armbruster433672b2015-12-18 16:35:24 +0100896 error_report("Invalid number of arguments");
897 error_printf("Try `%s --help' for more information.\n", argv[0]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100898 exit(EXIT_FAILURE);
Eric Blake68b96f12019-01-17 13:36:56 -0600899 } else if (!export_name) {
900 export_name = "";
bellard7a5ca862008-05-27 21:13:40 +0000901 }
902
Markus Armbruster7e1e0c12018-10-17 10:26:43 +0200903 qemu_opts_foreach(&qemu_object_opts,
904 user_creatable_add_opts_foreach,
905 NULL, &error_fatal);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000906
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300907 if (!trace_init_backends()) {
908 exit(1);
909 }
910 trace_init_file(trace_file);
911 qemu_set_log(LOG_TRACE);
912
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000913 socket_activation = check_socket_activation();
914 if (socket_activation == 0) {
915 setup_address_and_port(&bindto, &port);
916 } else {
917 /* Using socket activation - check user didn't use -p etc. */
918 const char *err_msg = socket_activation_validate_opts(device, sockpath,
Eric Blake68b96f12019-01-17 13:36:56 -0600919 bindto, port,
920 list);
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000921 if (err_msg != NULL) {
922 error_report("%s", err_msg);
923 exit(EXIT_FAILURE);
924 }
Paolo Bonzini53fabd42017-03-16 16:29:45 +0100925
926 /* qemu-nbd can only listen on a single socket. */
927 if (socket_activation > 1) {
928 error_report("qemu-nbd does not support socket activation with %s > 1",
929 "LISTEN_FDS");
930 exit(EXIT_FAILURE);
931 }
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000932 }
933
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000934 if (tlscredsid) {
935 if (sockpath) {
936 error_report("TLS is only supported with IPv4/IPv6");
937 exit(EXIT_FAILURE);
938 }
939 if (device) {
940 error_report("TLS is not supported with a host device");
941 exit(EXIT_FAILURE);
942 }
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +0000943 if (tlsauthz && list) {
944 error_report("TLS authorization is incompatible with export list");
945 exit(EXIT_FAILURE);
946 }
Eric Blake68b96f12019-01-17 13:36:56 -0600947 tlscreds = nbd_get_tls_creds(tlscredsid, list, &local_err);
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000948 if (local_err) {
949 error_report("Failed to get TLS creds %s",
950 error_get_pretty(local_err));
951 exit(EXIT_FAILURE);
952 }
Daniel P. Berrangeb25e12d2019-02-27 16:20:33 +0000953 } else {
954 if (tlsauthz) {
955 error_report("--tls-authz is not permitted without --tls-creds");
956 exit(EXIT_FAILURE);
957 }
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000958 }
959
Eric Blake68b96f12019-01-17 13:36:56 -0600960 if (list) {
961 saddr = nbd_build_socket_address(sockpath, bindto, port);
962 return qemu_nbd_client_list(saddr, tlscreds, bindto);
963 }
964
Eric Blake3c1fa352018-12-15 07:53:08 -0600965#if !HAVE_NBD_DEVICE
966 if (disconnect || device) {
967 error_report("Kernel /dev/nbdN support not available");
968 exit(EXIT_FAILURE);
969 }
970#else /* HAVE_NBD_DEVICE */
thscd831bd2008-07-03 10:23:51 +0000971 if (disconnect) {
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000972 int nbdfd = open(argv[optind], O_RDWR);
973 if (nbdfd < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100974 error_report("Cannot open %s: %s", argv[optind],
975 strerror(errno));
976 exit(EXIT_FAILURE);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100977 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000978 nbd_disconnect(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000979
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000980 close(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000981
982 printf("%s disconnected\n", argv[optind]);
983
Peter Lieven713cc672014-08-13 19:20:19 +0200984 return 0;
thscd831bd2008-07-03 10:23:51 +0000985 }
Eric Blake3c1fa352018-12-15 07:53:08 -0600986#endif
thscd831bd2008-07-03 10:23:51 +0000987
Max Reitzffb31e12016-09-28 22:46:42 +0200988 if ((device && !verbose) || fork_process) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100989 int stderr_fd[2];
990 pid_t pid;
991 int ret;
992
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100993 if (qemu_pipe(stderr_fd) < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100994 error_report("Error setting up communication pipe: %s",
995 strerror(errno));
996 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100997 }
998
999 /* Now daemonize, but keep a communication channel open to
1000 * print errors and exit with the proper status code.
1001 */
1002 pid = fork();
Max Reitz70d47392015-02-25 13:08:22 -05001003 if (pid < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001004 error_report("Failed to fork: %s", strerror(errno));
1005 exit(EXIT_FAILURE);
Max Reitz70d47392015-02-25 13:08:22 -05001006 } else if (pid == 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +01001007 close(stderr_fd[0]);
Max Reitze6df58a2019-05-08 23:18:18 +02001008
1009 old_stderr = dup(STDERR_FILENO);
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001010 ret = qemu_daemon(1, 0);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +01001011
1012 /* Temporarily redirect stderr to the parent's pipe... */
1013 dup2(stderr_fd[1], STDERR_FILENO);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +01001014 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001015 error_report("Failed to daemonize: %s", strerror(errno));
1016 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +01001017 }
1018
1019 /* ... close the descriptor we inherited and go on. */
1020 close(stderr_fd[1]);
1021 } else {
1022 bool errors = false;
1023 char *buf;
1024
1025 /* In the parent. Print error messages from the child until
1026 * it closes the pipe.
1027 */
1028 close(stderr_fd[1]);
1029 buf = g_malloc(1024);
1030 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
1031 errors = true;
1032 ret = qemu_write_full(STDERR_FILENO, buf, ret);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +01001033 if (ret < 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +01001034 exit(EXIT_FAILURE);
1035 }
1036 }
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +01001037 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001038 error_report("Cannot read from daemon: %s",
1039 strerror(errno));
1040 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +01001041 }
1042
1043 /* Usually the daemon should not print any message.
1044 * Exit with zero status in that case.
1045 */
1046 exit(errors);
1047 }
1048 }
1049
Paolo Bonzinia6ac2312011-12-06 09:07:00 +01001050 if (device != NULL && sockpath == NULL) {
1051 sockpath = g_malloc(128);
1052 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
thscd831bd2008-07-03 10:23:51 +00001053 }
1054
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001055 server = qio_net_listener_new();
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001056 if (socket_activation == 0) {
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001057 saddr = nbd_build_socket_address(sockpath, bindto, port);
Juan Quintelafc8135c2019-08-19 18:08:21 +02001058 if (qio_net_listener_open_sync(server, saddr, 1, &local_err) < 0) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001059 object_unref(OBJECT(server));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001060 error_report_err(local_err);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001061 exit(EXIT_FAILURE);
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001062 }
1063 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001064 size_t i;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001065 /* See comment in check_socket_activation above. */
Daniel P. Berrangee4849c12017-12-18 10:16:43 +00001066 for (i = 0; i < socket_activation; i++) {
1067 QIOChannelSocket *sioc;
1068 sioc = qio_channel_socket_new_fd(FIRST_SOCKET_ACTIVATION_FD + i,
1069 &local_err);
1070 if (sioc == NULL) {
1071 object_unref(OBJECT(server));
1072 error_report("Failed to use socket activation: %s",
1073 error_get_pretty(local_err));
1074 exit(EXIT_FAILURE);
1075 }
1076 qio_net_listener_add(server, sioc);
1077 object_unref(OBJECT(sioc));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +00001078 }
1079 }
Daniel P. Berrange48bec072015-09-16 14:52:23 +01001080
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03001081 if (qemu_init_main_loop(&local_err)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +01001082 error_report_err(local_err);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +03001083 exit(EXIT_FAILURE);
1084 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001085 bdrv_init();
Kevin Wolfb3b52992018-05-16 13:46:37 +02001086 atexit(qemu_nbd_shutdown);
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001087
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +00001088 srcpath = argv[optind];
1089 if (imageOpts) {
1090 QemuOpts *opts;
1091 if (fmt) {
1092 error_report("--image-opts and -f are mutually exclusive");
1093 exit(EXIT_FAILURE);
1094 }
1095 opts = qemu_opts_parse_noisily(&file_opts, srcpath, true);
1096 if (!opts) {
1097 qemu_opts_reset(&file_opts);
1098 exit(EXIT_FAILURE);
1099 }
1100 options = qemu_opts_to_qdict(opts, NULL);
1101 qemu_opts_reset(&file_opts);
Max Reitzefaa7c42016-03-16 19:54:38 +01001102 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +00001103 } else {
1104 if (fmt) {
1105 options = qdict_new();
Eric Blake46f5ac22017-04-27 16:58:17 -05001106 qdict_put_str(options, "driver", fmt);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +00001107 }
Max Reitzefaa7c42016-03-16 19:54:38 +01001108 blk = blk_new_open(srcpath, NULL, options, flags, &local_err);
Daniel P. Berrangee6b63672013-03-19 11:20:20 +00001109 }
1110
Max Reitz4fbec262015-02-05 13:58:19 -05001111 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01001112 error_reportf_err(local_err, "Failed to blk_new_open '%s': ",
1113 argv[optind]);
Markus Armbruster85b01e02015-12-18 16:35:04 +01001114 exit(EXIT_FAILURE);
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001115 }
Max Reitz4fbec262015-02-05 13:58:19 -05001116 bs = blk_bs(blk);
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001117
Kevin Wolf6effd5b2016-03-14 11:43:28 +01001118 blk_set_enable_write_cache(blk, !writethrough);
1119
Wenchao Xia8c116b02013-12-04 17:10:55 +08001120 if (sn_opts) {
1121 ret = bdrv_snapshot_load_tmp(bs,
1122 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
1123 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
1124 &local_err);
1125 } else if (sn_id_or_name) {
1126 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
1127 &local_err);
1128 }
1129 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +01001130 error_reportf_err(local_err, "Failed to load snapshot: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +01001131 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +08001132 }
1133
Peter Lievenb3838a42014-08-13 19:20:18 +02001134 bs->detect_zeroes = detect_zeroes;
Max Reitz4c58e802014-11-18 12:21:19 +01001135 fd_size = blk_getlength(blk);
Max Reitz98f44bb2015-02-25 13:08:21 -05001136 if (fd_size < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001137 error_report("Failed to determine the image length: %s",
1138 strerror(-fd_size));
1139 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -05001140 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001141
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +02001142 if (dev_offset >= fd_size) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001143 error_report("Offset (%" PRIu64 ") has to be smaller than the image "
1144 "size (%" PRId64 ")", dev_offset, fd_size);
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +02001145 exit(EXIT_FAILURE);
1146 }
1147 fd_size -= dev_offset;
1148
Eric Blake43b51012019-01-17 13:36:44 -06001149 if (partition) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001150 uint64_t limit;
Eric Blake44859362019-01-17 13:36:41 -06001151
1152 if (dev_offset) {
1153 error_report("Cannot request partition and offset together");
1154 exit(EXIT_FAILURE);
1155 }
1156 ret = find_partition(blk, partition, &dev_offset, &limit);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001157 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001158 error_report("Could not find partition %d: %s", partition,
Markus Armbrustera4699e52015-12-18 16:35:10 +01001159 strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +01001160 exit(EXIT_FAILURE);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001161 }
Eric Blake44859362019-01-17 13:36:41 -06001162 /*
1163 * MBR partition limits are (32-bit << 9); this assert lets
Eric Blake9d26dfc2019-01-17 13:36:43 -06001164 * the compiler know that we can't overflow 64 bits.
Eric Blake44859362019-01-17 13:36:41 -06001165 */
Eric Blake9d26dfc2019-01-17 13:36:43 -06001166 assert(dev_offset + limit >= dev_offset);
Eric Blake44859362019-01-17 13:36:41 -06001167 if (dev_offset + limit > fd_size) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001168 error_report("Discovered partition %d at offset %" PRIu64
1169 " size %" PRIu64 ", but size exceeds file length %"
1170 PRId64, partition, dev_offset, limit, fd_size);
Eric Blake44859362019-01-17 13:36:41 -06001171 exit(EXIT_FAILURE);
1172 }
1173 fd_size = limit;
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001174 }
1175
Eric Blake3fa4c762019-01-11 13:47:16 -06001176 export = nbd_export_new(bs, dev_offset, fd_size, export_name,
Eric Blakedbb38ca2019-08-23 09:37:22 -05001177 export_description, bitmap, readonly, shared > 1,
Eric Blake678ba272019-01-11 13:47:19 -06001178 nbd_export_closed, writethrough, NULL,
1179 &error_fatal);
ths3b05a8e2008-07-03 12:45:02 +00001180
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001181 if (device) {
Eric Blake3c1fa352018-12-15 07:53:08 -06001182#if HAVE_NBD_DEVICE
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001183 int ret;
1184
Paolo Bonzinia6ac2312011-12-06 09:07:00 +01001185 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001186 if (ret != 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001187 error_report("Failed to create client thread: %s", strerror(ret));
1188 exit(EXIT_FAILURE);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001189 }
Eric Blake3c1fa352018-12-15 07:53:08 -06001190#endif
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001191 } else {
1192 /* Shut up GCC warnings. */
1193 memset(&client_thread, 0, sizeof(client_thread));
1194 }
1195
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +00001196 nbd_update_server_watch();
bellard7a5ca862008-05-27 21:13:40 +00001197
Max Reitz637bc5a2019-05-08 23:18:16 +02001198 if (pid_file_name) {
1199 qemu_write_pidfile(pid_file_name, &error_fatal);
1200 }
1201
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001202 /* now when the initialization is (almost) complete, chdir("/")
1203 * to free any busy filesystems */
1204 if (chdir("/") < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001205 error_report("Could not chdir to root directory: %s",
1206 strerror(errno));
1207 exit(EXIT_FAILURE);
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001208 }
1209
Max Reitzffb31e12016-09-28 22:46:42 +02001210 if (fork_process) {
1211 dup2(old_stderr, STDERR_FILENO);
1212 close(old_stderr);
1213 }
1214
Paolo Bonzini7860a382012-09-18 13:31:56 +02001215 state = RUNNING;
ths3b05a8e2008-07-03 12:45:02 +00001216 do {
Paolo Bonzinia61c6782011-09-12 17:28:11 +02001217 main_loop_wait(false);
Paolo Bonzini7860a382012-09-18 13:31:56 +02001218 if (state == TERMINATE) {
1219 state = TERMINATING;
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +01001220 nbd_export_close(export);
1221 nbd_export_put(export);
1222 export = NULL;
Paolo Bonzini7860a382012-09-18 13:31:56 +02001223 }
1224 } while (state != TERMINATED);
ths3b05a8e2008-07-03 12:45:02 +00001225
Markus Armbruster26f54e92014-10-07 13:59:04 +02001226 blk_unref(blk);
Paolo Bonzinib32f6c22011-11-04 15:51:20 +01001227 if (sockpath) {
1228 unlink(sockpath);
1229 }
bellard7a5ca862008-05-27 21:13:40 +00001230
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02001231 qemu_opts_del(sn_opts);
Wenchao Xia8c116b02013-12-04 17:10:55 +08001232
Paolo Bonzinia517e882011-11-04 15:51:21 +01001233 if (device) {
1234 void *ret;
1235 pthread_join(client_thread, &ret);
1236 exit(ret != NULL);
1237 } else {
1238 exit(EXIT_SUCCESS);
1239 }
bellard7a5ca862008-05-27 21:13:40 +00001240}