blob: 2c9754e5d687fce447dd0e4db7b247c80c7fa3f2 [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"
Markus Armbrusterda34e652016-03-14 09:01:28 +010020#include "qapi/error.h"
Stefan Weil5a61cb62011-09-08 17:55:32 +020021#include "qemu-common.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020022#include "qemu/cutils.h"
Markus Armbruster26f54e92014-10-07 13:59:04 +020023#include "sysemu/block-backend.h"
Peter Lievenb3838a42014-08-13 19:20:18 +020024#include "block/block_int.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010025#include "block/nbd.h"
Alex Bligh6a1751b2013-08-21 16:02:47 +010026#include "qemu/main-loop.h"
Paolo Bonzini537b41f2014-02-17 14:43:51 +010027#include "qemu/error-report.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000028#include "qemu/config-file.h"
Wenchao Xia8c116b02013-12-04 17:10:55 +080029#include "block/snapshot.h"
Peter Lievenb3838a42014-08-13 19:20:18 +020030#include "qapi/util.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010031#include "qapi/qmp/qstring.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000032#include "qom/object_interfaces.h"
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +000033#include "io/channel-socket.h"
Daniel P. Berrangec2297082016-04-06 12:12:06 +010034#include "crypto/init.h"
bellard7a5ca862008-05-27 21:13:40 +000035
bellard7a5ca862008-05-27 21:13:40 +000036#include <getopt.h>
Blue Swirl2bff4b62009-12-23 15:34:04 +000037#include <libgen.h>
Paolo Bonzinia517e882011-11-04 15:51:21 +010038#include <pthread.h>
thscd831bd2008-07-03 10:23:51 +000039
Peter Lieven713cc672014-08-13 19:20:19 +020040#define SOCKET_PATH "/var/lock/qemu-nbd-%s"
Daniel P. Berrangefa8b7ce2016-02-17 10:10:21 +000041#define QEMU_NBD_OPT_CACHE 256
42#define QEMU_NBD_OPT_AIO 257
43#define QEMU_NBD_OPT_DISCARD 258
44#define QEMU_NBD_OPT_DETECT_ZEROES 259
45#define QEMU_NBD_OPT_OBJECT 260
46#define QEMU_NBD_OPT_TLSCREDS 261
47#define QEMU_NBD_OPT_IMAGE_OPTS 262
bellard7a5ca862008-05-27 21:13:40 +000048
Paolo Bonziniaf49bbb2011-09-19 14:03:37 +020049static NBDExport *exp;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +000050static bool newproto;
blueswir1b1d8e522008-10-26 13:43:07 +000051static int verbose;
Paolo Bonzinia517e882011-11-04 15:51:21 +010052static char *srcpath;
Daniel P. Berrange48bec072015-09-16 14:52:23 +010053static SocketAddress *saddr;
Paolo Bonzini7860a382012-09-18 13:31:56 +020054static int persistent = 0;
55static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state;
Paolo Bonzinia61c6782011-09-12 17:28:11 +020056static int shared = 1;
57static int nb_fds;
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +000058static QIOChannelSocket *server_ioc;
59static int server_watch = -1;
Daniel P. Berrange145614a2016-02-10 18:41:13 +000060static QCryptoTLSCreds *tlscreds;
bellard7a5ca862008-05-27 21:13:40 +000061
62static void usage(const char *name)
63{
Paolo Bonzinib033cd82012-07-18 14:50:52 +020064 (printf) (
bellard7a5ca862008-05-27 21:13:40 +000065"Usage: %s [OPTIONS] FILE\n"
66"QEMU Disk Network Block Device Server\n"
67"\n"
Peter Lieven713cc672014-08-13 19:20:19 +020068" -h, --help display this help and exit\n"
69" -V, --version output version information and exit\n"
bellard7a5ca862008-05-27 21:13:40 +000070"\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020071"Connection properties:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020072" -p, --port=PORT port to listen on (default `%d')\n"
73" -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
74" -k, --socket=PATH path to the unix socket\n"
75" (default '"SOCKET_PATH"')\n"
76" -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
77" -t, --persistent don't exit on the last connection\n"
78" -v, --verbose display extra debugging information\n"
Eric Blake332a2542016-04-05 20:02:08 -060079" -x, --export-name=NAME expose export by name\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020080"\n"
81"Exposing part of the image:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020082" -o, --offset=OFFSET offset into the image\n"
83" -P, --partition=NUM only expose partition NUM\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020084"\n"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000085"General purpose options:\n"
86" --object type,id=ID,... define an object such as 'secret' for providing\n"
87" passwords and/or encryption keys\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020088#ifdef __linux__
89"Kernel NBD client support:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020090" -c, --connect=DEV connect FILE to the local NBD device DEV\n"
91" -d, --disconnect disconnect the specified device\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020092"\n"
93#endif
94"\n"
95"Block device options:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020096" -f, --format=FORMAT set image format (raw, qcow2, ...)\n"
97" -r, --read-only export read-only\n"
98" -s, --snapshot use FILE as an external snapshot, create a temporary\n"
99" file with backing_file=FILE, redirect the write to\n"
100" the temporary one\n"
Wenchao Xia8c116b02013-12-04 17:10:55 +0800101" -l, --load-snapshot=SNAPSHOT_PARAM\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200102" load an internal snapshot inside FILE and export it\n"
103" as an read-only device, SNAPSHOT_PARAM format is\n"
104" 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
105" '[ID_OR_NAME]'\n"
106" -n, --nocache disable host cache\n"
107" --cache=MODE set cache mode (none, writeback, ...)\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200108" --aio=MODE set AIO mode (native or threads)\n"
Peter Lievenb3838a42014-08-13 19:20:18 +0200109" --discard=MODE set discard mode (ignore, unmap)\n"
Andrey Korolyov6883de62015-07-31 22:12:54 +0300110" --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n"
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000111" --image-opts treat FILE as a full set of image options\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200112"\n"
113"Report bugs to <qemu-devel@nongnu.org>\n"
Laurent Vivierc2e28722010-09-17 20:37:25 +0200114 , name, NBD_DEFAULT_PORT, "DEVICE");
bellard7a5ca862008-05-27 21:13:40 +0000115}
116
117static void version(const char *name)
118{
119 printf(
ths315bc7a2008-07-18 18:06:23 +0000120"%s version 0.0.1\n"
bellard7a5ca862008-05-27 21:13:40 +0000121"Written by Anthony Liguori.\n"
122"\n"
123"Copyright (C) 2006 Anthony Liguori <anthony@codemonkey.ws>.\n"
124"This is free software; see the source for copying conditions. There is NO\n"
125"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
ths315bc7a2008-07-18 18:06:23 +0000126 , name);
bellard7a5ca862008-05-27 21:13:40 +0000127}
128
129struct partition_record
130{
131 uint8_t bootable;
132 uint8_t start_head;
133 uint32_t start_cylinder;
134 uint8_t start_sector;
135 uint8_t system;
136 uint8_t end_head;
137 uint8_t end_cylinder;
138 uint8_t end_sector;
139 uint32_t start_sector_abs;
140 uint32_t nb_sectors_abs;
141};
142
143static void read_partition(uint8_t *p, struct partition_record *r)
144{
145 r->bootable = p[0];
146 r->start_head = p[1];
147 r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
148 r->start_sector = p[2] & 0x3f;
149 r->system = p[4];
150 r->end_head = p[5];
151 r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
152 r->end_sector = p[6] & 0x3f;
Max Reitzac973932015-02-25 13:08:23 -0500153
154 r->start_sector_abs = le32_to_cpup((uint32_t *)(p + 8));
155 r->nb_sectors_abs = le32_to_cpup((uint32_t *)(p + 12));
bellard7a5ca862008-05-27 21:13:40 +0000156}
157
Max Reitz4c58e802014-11-18 12:21:19 +0100158static int find_partition(BlockBackend *blk, int partition,
bellard7a5ca862008-05-27 21:13:40 +0000159 off_t *offset, off_t *size)
160{
161 struct partition_record mbr[4];
162 uint8_t data[512];
163 int i;
164 int ext_partnum = 4;
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900165 int ret;
bellard7a5ca862008-05-27 21:13:40 +0000166
Max Reitz4c58e802014-11-18 12:21:19 +0100167 if ((ret = blk_read(blk, 0, data, 1)) < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100168 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100169 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900170 }
bellard7a5ca862008-05-27 21:13:40 +0000171
172 if (data[510] != 0x55 || data[511] != 0xaa) {
Paolo Bonzini185b4332012-03-05 08:56:10 +0100173 return -EINVAL;
bellard7a5ca862008-05-27 21:13:40 +0000174 }
175
176 for (i = 0; i < 4; i++) {
177 read_partition(&data[446 + 16 * i], &mbr[i]);
178
Max Reitz453b07b2015-02-25 13:08:15 -0500179 if (!mbr[i].system || !mbr[i].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000180 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500181 }
bellard7a5ca862008-05-27 21:13:40 +0000182
183 if (mbr[i].system == 0xF || mbr[i].system == 0x5) {
184 struct partition_record ext[4];
185 uint8_t data1[512];
186 int j;
187
Max Reitz4c58e802014-11-18 12:21:19 +0100188 if ((ret = blk_read(blk, mbr[i].start_sector_abs, data1, 1)) < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100189 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100190 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900191 }
bellard7a5ca862008-05-27 21:13:40 +0000192
193 for (j = 0; j < 4; j++) {
194 read_partition(&data1[446 + 16 * j], &ext[j]);
Max Reitz453b07b2015-02-25 13:08:15 -0500195 if (!ext[j].system || !ext[j].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000196 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500197 }
bellard7a5ca862008-05-27 21:13:40 +0000198
199 if ((ext_partnum + j + 1) == partition) {
200 *offset = (uint64_t)ext[j].start_sector_abs << 9;
201 *size = (uint64_t)ext[j].nb_sectors_abs << 9;
202 return 0;
203 }
204 }
205 ext_partnum += 4;
206 } else if ((i + 1) == partition) {
207 *offset = (uint64_t)mbr[i].start_sector_abs << 9;
208 *size = (uint64_t)mbr[i].nb_sectors_abs << 9;
209 return 0;
210 }
211 }
212
Paolo Bonzini185b4332012-03-05 08:56:10 +0100213 return -ENOENT;
bellard7a5ca862008-05-27 21:13:40 +0000214}
215
Paolo Bonzinibb345112011-11-04 15:51:19 +0100216static void termsig_handler(int signum)
217{
Pavel Butsykin23994a52016-04-14 13:20:15 +0300218 atomic_cmpxchg(&state, RUNNING, TERMINATE);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200219 qemu_notify_event();
Paolo Bonzinibb345112011-11-04 15:51:19 +0100220}
221
Paolo Bonzini537b41f2014-02-17 14:43:51 +0100222
Paolo Bonzinia517e882011-11-04 15:51:21 +0100223static void *show_parts(void *arg)
thscd831bd2008-07-03 10:23:51 +0000224{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100225 char *device = arg;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100226 int nbd;
thscd831bd2008-07-03 10:23:51 +0000227
Paolo Bonzinia517e882011-11-04 15:51:21 +0100228 /* linux just needs an open() to trigger
229 * the partition table update
230 * but remember to load the module with max_part != 0 :
231 * modprobe nbd max_part=63
232 */
233 nbd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100234 if (nbd >= 0) {
Paolo Bonzinia517e882011-11-04 15:51:21 +0100235 close(nbd);
thscd831bd2008-07-03 10:23:51 +0000236 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100237 return NULL;
238}
239
240static void *nbd_client_thread(void *arg)
241{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100242 char *device = arg;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100243 off_t size;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100244 uint32_t nbdflags;
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000245 QIOChannelSocket *sioc;
246 int fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100247 int ret;
248 pthread_t show_parts_thread;
Max Reitz1ce52842015-01-26 21:02:59 -0500249 Error *local_error = NULL;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100250
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000251 sioc = qio_channel_socket_new();
252 if (qio_channel_socket_connect_sync(sioc,
253 saddr,
254 &local_error) < 0) {
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100255 error_report_err(local_error);
Stefan Hajnoczidc10e8b2012-01-05 13:16:07 +0000256 goto out;
257 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100258
Daniel P. Berrange1c778ef2016-02-10 18:41:04 +0000259 ret = nbd_receive_negotiate(QIO_CHANNEL(sioc), NULL, &nbdflags,
Daniel P. Berrangef95910f2016-02-10 18:41:11 +0000260 NULL, NULL, NULL,
Max Reitz3f472652015-02-25 13:08:25 -0500261 &size, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100262 if (ret < 0) {
Max Reitz1ce52842015-01-26 21:02:59 -0500263 if (local_error) {
Markus Armbruster78288672015-12-18 16:35:07 +0100264 error_report_err(local_error);
Max Reitz1ce52842015-01-26 21:02:59 -0500265 }
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100266 goto out_socket;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100267 }
268
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100269 fd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100270 if (fd < 0) {
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100271 /* Linux-only, we can use %m in printf. */
Markus Armbrusterb9884682015-12-18 16:35:18 +0100272 error_report("Failed to open %s: %m", device);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100273 goto out_socket;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100274 }
275
Daniel P. Berrange1c778ef2016-02-10 18:41:04 +0000276 ret = nbd_init(fd, sioc, nbdflags, size);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100277 if (ret < 0) {
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100278 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100279 }
280
281 /* update partition table */
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100282 pthread_create(&show_parts_thread, NULL, show_parts, device);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100283
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100284 if (verbose) {
285 fprintf(stderr, "NBD device %s is now connected to %s\n",
286 device, srcpath);
287 } else {
288 /* Close stderr so that the qemu-nbd process exits. */
289 dup2(STDOUT_FILENO, STDERR_FILENO);
290 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100291
292 ret = nbd_client(fd);
293 if (ret) {
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100294 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100295 }
296 close(fd);
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000297 object_unref(OBJECT(sioc));
Paolo Bonzinia517e882011-11-04 15:51:21 +0100298 kill(getpid(), SIGTERM);
299 return (void *) EXIT_SUCCESS;
300
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100301out_fd:
302 close(fd);
303out_socket:
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000304 object_unref(OBJECT(sioc));
Paolo Bonzinia517e882011-11-04 15:51:21 +0100305out:
306 kill(getpid(), SIGTERM);
307 return (void *) EXIT_FAILURE;
thscd831bd2008-07-03 10:23:51 +0000308}
309
Fam Zhenge4afbf42015-05-19 10:50:59 +0000310static int nbd_can_accept(void)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200311{
312 return nb_fds < shared;
313}
314
Paolo Bonzini7860a382012-09-18 13:31:56 +0200315static void nbd_export_closed(NBDExport *exp)
316{
317 assert(state == TERMINATING);
318 state = TERMINATED;
319}
320
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000321static void nbd_update_server_watch(void);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000322
Paolo Bonzini1743b512011-09-19 14:33:23 +0200323static void nbd_client_closed(NBDClient *client)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200324{
Paolo Bonzini1743b512011-09-19 14:33:23 +0200325 nb_fds--;
Paolo Bonzini7860a382012-09-18 13:31:56 +0200326 if (nb_fds == 0 && !persistent && state == RUNNING) {
327 state = TERMINATE;
328 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000329 nbd_update_server_watch();
Paolo Bonzini7860a382012-09-18 13:31:56 +0200330 nbd_client_put(client);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200331}
332
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000333static gboolean nbd_accept(QIOChannel *ioc, GIOCondition cond, gpointer opaque)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200334{
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000335 QIOChannelSocket *cioc;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200336
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000337 cioc = qio_channel_socket_accept(QIO_CHANNEL_SOCKET(ioc),
338 NULL);
339 if (!cioc) {
340 return TRUE;
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100341 }
342
Paolo Bonzini7860a382012-09-18 13:31:56 +0200343 if (state >= TERMINATE) {
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000344 object_unref(OBJECT(cioc));
345 return TRUE;
Paolo Bonzini7860a382012-09-18 13:31:56 +0200346 }
347
Fam Zhengee7d7aa2016-01-14 16:41:01 +0800348 nb_fds++;
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000349 nbd_update_server_watch();
Daniel P. Berrangef95910f2016-02-10 18:41:11 +0000350 nbd_client_new(newproto ? NULL : exp, cioc,
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000351 tlscreds, NULL, nbd_client_closed);
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000352 object_unref(OBJECT(cioc));
353
354 return TRUE;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200355}
356
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000357static void nbd_update_server_watch(void)
Fam Zhenge4afbf42015-05-19 10:50:59 +0000358{
359 if (nbd_can_accept()) {
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000360 if (server_watch == -1) {
361 server_watch = qio_channel_add_watch(QIO_CHANNEL(server_ioc),
362 G_IO_IN,
363 nbd_accept,
364 NULL, NULL);
365 }
Fam Zhenge4afbf42015-05-19 10:50:59 +0000366 } else {
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000367 if (server_watch != -1) {
368 g_source_remove(server_watch);
369 server_watch = -1;
370 }
Fam Zhenge4afbf42015-05-19 10:50:59 +0000371 }
372}
373
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100374
375static SocketAddress *nbd_build_socket_address(const char *sockpath,
376 const char *bindto,
377 const char *port)
378{
379 SocketAddress *saddr;
380
381 saddr = g_new0(SocketAddress, 1);
382 if (sockpath) {
Eric Blake2d32add2015-10-26 16:34:55 -0600383 saddr->type = SOCKET_ADDRESS_KIND_UNIX;
Eric Blake32bafa82016-03-17 16:48:37 -0600384 saddr->u.q_unix.data = g_new0(UnixSocketAddress, 1);
385 saddr->u.q_unix.data->path = g_strdup(sockpath);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100386 } else {
Eric Blake03992932016-03-03 09:16:48 -0700387 InetSocketAddress *inet;
Eric Blake2d32add2015-10-26 16:34:55 -0600388 saddr->type = SOCKET_ADDRESS_KIND_INET;
Eric Blake32bafa82016-03-17 16:48:37 -0600389 inet = saddr->u.inet.data = g_new0(InetSocketAddress, 1);
Eric Blake03992932016-03-03 09:16:48 -0700390 inet->host = g_strdup(bindto);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100391 if (port) {
Eric Blake03992932016-03-03 09:16:48 -0700392 inet->port = g_strdup(port);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100393 } else {
Eric Blake03992932016-03-03 09:16:48 -0700394 inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100395 }
396 }
397
398 return saddr;
399}
400
401
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000402static QemuOptsList file_opts = {
403 .name = "file",
404 .implied_opt_name = "file",
405 .head = QTAILQ_HEAD_INITIALIZER(file_opts.head),
406 .desc = {
407 /* no elements => accept any params */
408 { /* end of list */ }
409 },
410};
411
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000412static QemuOptsList qemu_object_opts = {
413 .name = "object",
414 .implied_opt_name = "qom-type",
415 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
416 .desc = {
417 { }
418 },
419};
420
421
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000422
423static QCryptoTLSCreds *nbd_get_tls_creds(const char *id, Error **errp)
424{
425 Object *obj;
426 QCryptoTLSCreds *creds;
427
428 obj = object_resolve_path_component(
429 object_get_objects_root(), id);
430 if (!obj) {
431 error_setg(errp, "No TLS credentials with id '%s'",
432 id);
433 return NULL;
434 }
435 creds = (QCryptoTLSCreds *)
436 object_dynamic_cast(obj, TYPE_QCRYPTO_TLS_CREDS);
437 if (!creds) {
438 error_setg(errp, "Object with id '%s' is not TLS credentials",
439 id);
440 return NULL;
441 }
442
443 if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_SERVER) {
444 error_setg(errp,
445 "Expecting TLS credentials with a server endpoint");
446 return NULL;
447 }
448 object_ref(obj);
449 return creds;
450}
451
452
bellard7a5ca862008-05-27 21:13:40 +0000453int main(int argc, char **argv)
454{
Markus Armbruster26f54e92014-10-07 13:59:04 +0200455 BlockBackend *blk;
bellard7a5ca862008-05-27 21:13:40 +0000456 BlockDriverState *bs;
457 off_t dev_offset = 0;
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200458 uint32_t nbdflags = 0;
thscd831bd2008-07-03 10:23:51 +0000459 bool disconnect = false;
bellard7a5ca862008-05-27 21:13:40 +0000460 const char *bindto = "0.0.0.0";
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100461 const char *port = NULL;
462 char *sockpath = NULL;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100463 char *device = NULL;
bellard7a5ca862008-05-27 21:13:40 +0000464 off_t fd_size;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800465 QemuOpts *sn_opts = NULL;
466 const char *sn_id_or_name = NULL;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000467 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:x:";
bellard7a5ca862008-05-27 21:13:40 +0000468 struct option lopt[] = {
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000469 { "help", no_argument, NULL, 'h' },
470 { "version", no_argument, NULL, 'V' },
471 { "bind", required_argument, NULL, 'b' },
472 { "port", required_argument, NULL, 'p' },
473 { "socket", required_argument, NULL, 'k' },
474 { "offset", required_argument, NULL, 'o' },
475 { "read-only", no_argument, NULL, 'r' },
476 { "partition", required_argument, NULL, 'P' },
477 { "connect", required_argument, NULL, 'c' },
478 { "disconnect", no_argument, NULL, 'd' },
479 { "snapshot", no_argument, NULL, 's' },
480 { "load-snapshot", required_argument, NULL, 'l' },
481 { "nocache", no_argument, NULL, 'n' },
482 { "cache", required_argument, NULL, QEMU_NBD_OPT_CACHE },
483 { "aio", required_argument, NULL, QEMU_NBD_OPT_AIO },
484 { "discard", required_argument, NULL, QEMU_NBD_OPT_DISCARD },
485 { "detect-zeroes", required_argument, NULL,
486 QEMU_NBD_OPT_DETECT_ZEROES },
487 { "shared", required_argument, NULL, 'e' },
488 { "format", required_argument, NULL, 'f' },
489 { "persistent", no_argument, NULL, 't' },
490 { "verbose", no_argument, NULL, 'v' },
491 { "object", required_argument, NULL, QEMU_NBD_OPT_OBJECT },
492 { "export-name", required_argument, NULL, 'x' },
493 { "tls-creds", required_argument, NULL, QEMU_NBD_OPT_TLSCREDS },
494 { "image-opts", no_argument, NULL, QEMU_NBD_OPT_IMAGE_OPTS },
Blue Swirl660f11b2009-07-31 21:16:51 +0000495 { NULL, 0, NULL, 0 }
bellard7a5ca862008-05-27 21:13:40 +0000496 };
497 int ch;
498 int opt_ind = 0;
bellard7a5ca862008-05-27 21:13:40 +0000499 char *end;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200500 int flags = BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000501 int partition = -1;
Max Reitz4fbec262015-02-05 13:58:19 -0500502 int ret = 0;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200503 bool seen_cache = false;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100504 bool seen_discard = false;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200505 bool seen_aio = false;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100506 pthread_t client_thread;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000507 const char *fmt = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200508 Error *local_err = NULL;
Peter Lievenb3838a42014-08-13 19:20:18 +0200509 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
Max Reitz4fbec262015-02-05 13:58:19 -0500510 QDict *options = NULL;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000511 const char *export_name = NULL;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000512 const char *tlscredsid = NULL;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000513 bool imageOpts = false;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100514 bool writethrough = true;
bellard7a5ca862008-05-27 21:13:40 +0000515
Paolo Bonzinia517e882011-11-04 15:51:21 +0100516 /* The client thread uses SIGTERM to interrupt the server. A signal
517 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
518 */
Paolo Bonzinibb345112011-11-04 15:51:19 +0100519 struct sigaction sa_sigterm;
Paolo Bonzinibb345112011-11-04 15:51:19 +0100520 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
521 sa_sigterm.sa_handler = termsig_handler;
522 sigaction(SIGTERM, &sa_sigterm, NULL);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100523
524 if (qcrypto_init(&local_err) < 0) {
525 error_reportf_err(local_err, "cannot initialize crypto: ");
526 exit(1);
527 }
528
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000529 module_call_init(MODULE_INIT_QOM);
530 qemu_add_opts(&qemu_object_opts);
Fam Zheng10f5bff2014-02-10 14:48:51 +0800531 qemu_init_exec_dir(argv[0]);
Paolo Bonzinibb345112011-11-04 15:51:19 +0100532
bellard7a5ca862008-05-27 21:13:40 +0000533 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
534 switch (ch) {
535 case 's':
ths2f726482008-07-03 11:47:46 +0000536 flags |= BDRV_O_SNAPSHOT;
537 break;
538 case 'n':
Paolo Bonzini39a52352012-07-18 14:57:15 +0200539 optarg = (char *) "none";
540 /* fallthrough */
541 case QEMU_NBD_OPT_CACHE:
542 if (seen_cache) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100543 error_report("-n and --cache can only be specified once");
544 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200545 }
546 seen_cache = true;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100547 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100548 error_report("Invalid cache mode `%s'", optarg);
549 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200550 }
bellard7a5ca862008-05-27 21:13:40 +0000551 break;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200552 case QEMU_NBD_OPT_AIO:
553 if (seen_aio) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100554 error_report("--aio can only be specified once");
555 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200556 }
557 seen_aio = true;
558 if (!strcmp(optarg, "native")) {
559 flags |= BDRV_O_NATIVE_AIO;
560 } else if (!strcmp(optarg, "threads")) {
561 /* this is the default */
562 } else {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100563 error_report("invalid aio mode `%s'", optarg);
564 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200565 }
566 break;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100567 case QEMU_NBD_OPT_DISCARD:
568 if (seen_discard) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100569 error_report("--discard can only be specified once");
570 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100571 }
572 seen_discard = true;
573 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100574 error_report("Invalid discard mode `%s'", optarg);
575 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100576 }
577 break;
Peter Lievenb3838a42014-08-13 19:20:18 +0200578 case QEMU_NBD_OPT_DETECT_ZEROES:
579 detect_zeroes =
580 qapi_enum_parse(BlockdevDetectZeroesOptions_lookup,
581 optarg,
Eric Blake7fb1cf12015-11-18 01:52:57 -0700582 BLOCKDEV_DETECT_ZEROES_OPTIONS__MAX,
Peter Lievenb3838a42014-08-13 19:20:18 +0200583 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
584 &local_err);
585 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100586 error_reportf_err(local_err,
587 "Failed to parse detect_zeroes mode: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100588 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200589 }
590 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
591 !(flags & BDRV_O_UNMAP)) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100592 error_report("setting detect-zeroes to unmap is not allowed "
593 "without setting discard operation to unmap");
594 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200595 }
596 break;
bellard7a5ca862008-05-27 21:13:40 +0000597 case 'b':
598 bindto = optarg;
599 break;
600 case 'p':
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100601 port = optarg;
bellard7a5ca862008-05-27 21:13:40 +0000602 break;
603 case 'o':
604 dev_offset = strtoll (optarg, &end, 0);
605 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100606 error_report("Invalid offset `%s'", optarg);
607 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000608 }
609 if (dev_offset < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100610 error_report("Offset must be positive `%s'", optarg);
611 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000612 }
613 break;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800614 case 'l':
615 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +0100616 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
617 optarg, false);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800618 if (!sn_opts) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100619 error_report("Failed in parsing snapshot param `%s'",
620 optarg);
621 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800622 }
623 } else {
624 sn_id_or_name = optarg;
625 }
626 /* fall through */
bellard7a5ca862008-05-27 21:13:40 +0000627 case 'r':
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200628 nbdflags |= NBD_FLAG_READ_ONLY;
Naphtali Sprei07108b22010-03-14 15:19:57 +0200629 flags &= ~BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000630 break;
631 case 'P':
632 partition = strtol(optarg, &end, 0);
Peter Lieven713cc672014-08-13 19:20:19 +0200633 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100634 error_report("Invalid partition `%s'", optarg);
635 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200636 }
637 if (partition < 1 || partition > 8) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100638 error_report("Invalid partition %d", partition);
639 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200640 }
bellard7a5ca862008-05-27 21:13:40 +0000641 break;
thscd831bd2008-07-03 10:23:51 +0000642 case 'k':
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100643 sockpath = optarg;
Peter Lieven713cc672014-08-13 19:20:19 +0200644 if (sockpath[0] != '/') {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100645 error_report("socket path must be absolute");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100646 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200647 }
thscd831bd2008-07-03 10:23:51 +0000648 break;
649 case 'd':
650 disconnect = true;
651 break;
652 case 'c':
653 device = optarg;
654 break;
ths3b05a8e2008-07-03 12:45:02 +0000655 case 'e':
656 shared = strtol(optarg, &end, 0);
657 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100658 error_report("Invalid shared device number '%s'", optarg);
659 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000660 }
661 if (shared < 1) {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100662 error_report("Shared device number must be greater than 0");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100663 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000664 }
665 break;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000666 case 'f':
667 fmt = optarg;
668 break;
Peter Lieven713cc672014-08-13 19:20:19 +0200669 case 't':
670 persistent = 1;
671 break;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000672 case 'x':
673 export_name = optarg;
674 break;
bellard7a5ca862008-05-27 21:13:40 +0000675 case 'v':
676 verbose = 1;
677 break;
678 case 'V':
679 version(argv[0]);
680 exit(0);
681 break;
682 case 'h':
683 usage(argv[0]);
684 exit(0);
685 break;
686 case '?':
Markus Armbruster85b01e02015-12-18 16:35:04 +0100687 error_report("Try `%s --help' for more information.", argv[0]);
688 exit(EXIT_FAILURE);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000689 case QEMU_NBD_OPT_OBJECT: {
690 QemuOpts *opts;
691 opts = qemu_opts_parse_noisily(&qemu_object_opts,
692 optarg, true);
693 if (!opts) {
694 exit(EXIT_FAILURE);
695 }
696 } break;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000697 case QEMU_NBD_OPT_TLSCREDS:
698 tlscredsid = optarg;
699 break;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000700 case QEMU_NBD_OPT_IMAGE_OPTS:
701 imageOpts = true;
702 break;
bellard7a5ca862008-05-27 21:13:40 +0000703 }
704 }
705
706 if ((argc - optind) != 1) {
Markus Armbruster433672b2015-12-18 16:35:24 +0100707 error_report("Invalid number of arguments");
708 error_printf("Try `%s --help' for more information.\n", argv[0]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100709 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000710 }
711
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000712 if (qemu_opts_foreach(&qemu_object_opts,
713 user_creatable_add_opts_foreach,
714 NULL, &local_err)) {
715 error_report_err(local_err);
716 exit(EXIT_FAILURE);
717 }
718
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000719 if (tlscredsid) {
720 if (sockpath) {
721 error_report("TLS is only supported with IPv4/IPv6");
722 exit(EXIT_FAILURE);
723 }
724 if (device) {
725 error_report("TLS is not supported with a host device");
726 exit(EXIT_FAILURE);
727 }
728 if (!export_name) {
729 /* Set the default NBD protocol export name, since
730 * we *must* use new style protocol for TLS */
731 export_name = "";
732 }
733 tlscreds = nbd_get_tls_creds(tlscredsid, &local_err);
734 if (local_err) {
735 error_report("Failed to get TLS creds %s",
736 error_get_pretty(local_err));
737 exit(EXIT_FAILURE);
738 }
739 }
740
thscd831bd2008-07-03 10:23:51 +0000741 if (disconnect) {
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000742 int nbdfd = open(argv[optind], O_RDWR);
743 if (nbdfd < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100744 error_report("Cannot open %s: %s", argv[optind],
745 strerror(errno));
746 exit(EXIT_FAILURE);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100747 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000748 nbd_disconnect(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000749
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000750 close(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000751
752 printf("%s disconnected\n", argv[optind]);
753
Peter Lieven713cc672014-08-13 19:20:19 +0200754 return 0;
thscd831bd2008-07-03 10:23:51 +0000755 }
756
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100757 if (device && !verbose) {
758 int stderr_fd[2];
759 pid_t pid;
760 int ret;
761
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100762 if (qemu_pipe(stderr_fd) < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100763 error_report("Error setting up communication pipe: %s",
764 strerror(errno));
765 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100766 }
767
768 /* Now daemonize, but keep a communication channel open to
769 * print errors and exit with the proper status code.
770 */
771 pid = fork();
Max Reitz70d47392015-02-25 13:08:22 -0500772 if (pid < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100773 error_report("Failed to fork: %s", strerror(errno));
774 exit(EXIT_FAILURE);
Max Reitz70d47392015-02-25 13:08:22 -0500775 } else if (pid == 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100776 close(stderr_fd[0]);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400777 ret = qemu_daemon(1, 0);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100778
779 /* Temporarily redirect stderr to the parent's pipe... */
780 dup2(stderr_fd[1], STDERR_FILENO);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100781 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100782 error_report("Failed to daemonize: %s", strerror(errno));
783 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100784 }
785
786 /* ... close the descriptor we inherited and go on. */
787 close(stderr_fd[1]);
788 } else {
789 bool errors = false;
790 char *buf;
791
792 /* In the parent. Print error messages from the child until
793 * it closes the pipe.
794 */
795 close(stderr_fd[1]);
796 buf = g_malloc(1024);
797 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
798 errors = true;
799 ret = qemu_write_full(STDERR_FILENO, buf, ret);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100800 if (ret < 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100801 exit(EXIT_FAILURE);
802 }
803 }
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100804 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100805 error_report("Cannot read from daemon: %s",
806 strerror(errno));
807 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100808 }
809
810 /* Usually the daemon should not print any message.
811 * Exit with zero status in that case.
812 */
813 exit(errors);
814 }
815 }
816
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100817 if (device != NULL && sockpath == NULL) {
818 sockpath = g_malloc(128);
819 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
thscd831bd2008-07-03 10:23:51 +0000820 }
821
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100822 saddr = nbd_build_socket_address(sockpath, bindto, port);
823
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300824 if (qemu_init_main_loop(&local_err)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +0100825 error_report_err(local_err);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300826 exit(EXIT_FAILURE);
827 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100828 bdrv_init();
829 atexit(bdrv_close_all);
830
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000831 srcpath = argv[optind];
832 if (imageOpts) {
833 QemuOpts *opts;
834 if (fmt) {
835 error_report("--image-opts and -f are mutually exclusive");
836 exit(EXIT_FAILURE);
837 }
838 opts = qemu_opts_parse_noisily(&file_opts, srcpath, true);
839 if (!opts) {
840 qemu_opts_reset(&file_opts);
841 exit(EXIT_FAILURE);
842 }
843 options = qemu_opts_to_qdict(opts, NULL);
844 qemu_opts_reset(&file_opts);
Max Reitzefaa7c42016-03-16 19:54:38 +0100845 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000846 } else {
847 if (fmt) {
848 options = qdict_new();
849 qdict_put(options, "driver", qstring_from_str(fmt));
850 }
Max Reitzefaa7c42016-03-16 19:54:38 +0100851 blk = blk_new_open(srcpath, NULL, options, flags, &local_err);
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000852 }
853
Max Reitz4fbec262015-02-05 13:58:19 -0500854 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100855 error_reportf_err(local_err, "Failed to blk_new_open '%s': ",
856 argv[optind]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100857 exit(EXIT_FAILURE);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100858 }
Max Reitz4fbec262015-02-05 13:58:19 -0500859 bs = blk_bs(blk);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100860
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100861 blk_set_enable_write_cache(blk, !writethrough);
862
Wenchao Xia8c116b02013-12-04 17:10:55 +0800863 if (sn_opts) {
864 ret = bdrv_snapshot_load_tmp(bs,
865 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
866 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
867 &local_err);
868 } else if (sn_id_or_name) {
869 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
870 &local_err);
871 }
872 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100873 error_reportf_err(local_err, "Failed to load snapshot: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100874 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800875 }
876
Peter Lievenb3838a42014-08-13 19:20:18 +0200877 bs->detect_zeroes = detect_zeroes;
Max Reitz4c58e802014-11-18 12:21:19 +0100878 fd_size = blk_getlength(blk);
Max Reitz98f44bb2015-02-25 13:08:21 -0500879 if (fd_size < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100880 error_report("Failed to determine the image length: %s",
881 strerror(-fd_size));
882 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -0500883 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100884
Paolo Bonzini185b4332012-03-05 08:56:10 +0100885 if (partition != -1) {
Max Reitz4c58e802014-11-18 12:21:19 +0100886 ret = find_partition(blk, partition, &dev_offset, &fd_size);
Paolo Bonzini185b4332012-03-05 08:56:10 +0100887 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100888 error_report("Could not find partition %d: %s", partition,
Markus Armbrustera4699e52015-12-18 16:35:10 +0100889 strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100890 exit(EXIT_FAILURE);
Paolo Bonzini185b4332012-03-05 08:56:10 +0100891 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100892 }
893
Max Reitz98f44bb2015-02-25 13:08:21 -0500894 exp = nbd_export_new(blk, dev_offset, fd_size, nbdflags, nbd_export_closed,
895 &local_err);
896 if (!exp) {
Markus Armbruster4fffeb52015-12-18 16:35:05 +0100897 error_report_err(local_err);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100898 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -0500899 }
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000900 if (export_name) {
901 nbd_export_set_name(exp, export_name);
902 newproto = true;
903 }
ths3b05a8e2008-07-03 12:45:02 +0000904
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000905 server_ioc = qio_channel_socket_new();
906 if (qio_channel_socket_listen_sync(server_ioc, saddr, &local_err) < 0) {
907 object_unref(OBJECT(server_ioc));
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100908 error_report_err(local_err);
bellard7a5ca862008-05-27 21:13:40 +0000909 return 1;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200910 }
Paolo Bonzinif1ef5552011-11-04 15:51:23 +0100911
912 if (device) {
913 int ret;
914
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100915 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +0100916 if (ret != 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100917 error_report("Failed to create client thread: %s", strerror(ret));
918 exit(EXIT_FAILURE);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +0100919 }
920 } else {
921 /* Shut up GCC warnings. */
922 memset(&client_thread, 0, sizeof(client_thread));
923 }
924
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000925 nbd_update_server_watch();
bellard7a5ca862008-05-27 21:13:40 +0000926
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400927 /* now when the initialization is (almost) complete, chdir("/")
928 * to free any busy filesystems */
929 if (chdir("/") < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100930 error_report("Could not chdir to root directory: %s",
931 strerror(errno));
932 exit(EXIT_FAILURE);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400933 }
934
Paolo Bonzini7860a382012-09-18 13:31:56 +0200935 state = RUNNING;
ths3b05a8e2008-07-03 12:45:02 +0000936 do {
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200937 main_loop_wait(false);
Paolo Bonzini7860a382012-09-18 13:31:56 +0200938 if (state == TERMINATE) {
939 state = TERMINATING;
940 nbd_export_close(exp);
941 nbd_export_put(exp);
942 exp = NULL;
943 }
944 } while (state != TERMINATED);
ths3b05a8e2008-07-03 12:45:02 +0000945
Markus Armbruster26f54e92014-10-07 13:59:04 +0200946 blk_unref(blk);
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100947 if (sockpath) {
948 unlink(sockpath);
949 }
bellard7a5ca862008-05-27 21:13:40 +0000950
Markus Armbrusterfbf28a42014-09-29 16:07:55 +0200951 qemu_opts_del(sn_opts);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800952
Paolo Bonzinia517e882011-11-04 15:51:21 +0100953 if (device) {
954 void *ret;
955 pthread_join(client_thread, &ret);
956 exit(ret != NULL);
957 } else {
958 exit(EXIT_SUCCESS);
959 }
bellard7a5ca862008-05-27 21:13:40 +0000960}