blob: 0af0560ad1c65fa6d67b66e57e747849ce4f9979 [file] [log] [blame]
thscd831bd2008-07-03 10:23:51 +00001/*
bellard7a5ca862008-05-27 21:13:40 +00002 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
3 *
4 * Network Block Device
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Blue Swirl8167ee82009-07-16 20:47:01 +000016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
bellard7a5ca862008-05-27 21:13:40 +000017 */
18
Peter Maydelld38ea872016-01-29 17:50:05 +000019#include "qemu/osdep.h"
Eric Blakec2a3d7d2017-07-21 08:50:47 -050020#include <getopt.h>
21#include <libgen.h>
22#include <pthread.h>
23
Markus Armbrusterda34e652016-03-14 09:01:28 +010024#include "qapi/error.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020025#include "qemu/cutils.h"
Markus Armbruster26f54e92014-10-07 13:59:04 +020026#include "sysemu/block-backend.h"
Peter Lievenb3838a42014-08-13 19:20:18 +020027#include "block/block_int.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010028#include "block/nbd.h"
Alex Bligh6a1751b2013-08-21 16:02:47 +010029#include "qemu/main-loop.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010030#include "qemu/option.h"
Paolo Bonzini537b41f2014-02-17 14:43:51 +010031#include "qemu/error-report.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000032#include "qemu/config-file.h"
Paolo Bonzini58369e22016-03-15 17:22:36 +010033#include "qemu/bswap.h"
Denis V. Lunev39ca4632016-06-17 17:44:12 +030034#include "qemu/log.h"
Paolo Bonzini53fabd42017-03-16 16:29:45 +010035#include "qemu/systemd.h"
Wenchao Xia8c116b02013-12-04 17:10:55 +080036#include "block/snapshot.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010037#include "qapi/qmp/qdict.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010038#include "qapi/qmp/qstring.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000039#include "qom/object_interfaces.h"
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +000040#include "io/channel-socket.h"
Daniel P. Berrangee4849c12017-12-18 10:16:43 +000041#include "io/net-listener.h"
Daniel P. Berrangec2297082016-04-06 12:12:06 +010042#include "crypto/init.h"
Denis V. Lunev39ca4632016-06-17 17:44:12 +030043#include "trace/control.h"
Eric Blakebe377132017-07-21 08:50:46 -050044#include "qemu-version.h"
bellard7a5ca862008-05-27 21:13:40 +000045
Peter Lieven713cc672014-08-13 19:20:19 +020046#define SOCKET_PATH "/var/lock/qemu-nbd-%s"
Daniel P. Berrangefa8b7ce2016-02-17 10:10:21 +000047#define QEMU_NBD_OPT_CACHE 256
48#define QEMU_NBD_OPT_AIO 257
49#define QEMU_NBD_OPT_DISCARD 258
50#define QEMU_NBD_OPT_DETECT_ZEROES 259
51#define QEMU_NBD_OPT_OBJECT 260
52#define QEMU_NBD_OPT_TLSCREDS 261
53#define QEMU_NBD_OPT_IMAGE_OPTS 262
Max Reitzffb31e12016-09-28 22:46:42 +020054#define QEMU_NBD_OPT_FORK 263
bellard7a5ca862008-05-27 21:13:40 +000055
Eric Blakebd31c212016-05-06 10:26:42 -060056#define MBR_SIZE 512
57
Paolo Bonziniaf49bbb2011-09-19 14:03:37 +020058static NBDExport *exp;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +000059static bool newproto;
blueswir1b1d8e522008-10-26 13:43:07 +000060static int verbose;
Paolo Bonzinia517e882011-11-04 15:51:21 +010061static char *srcpath;
Markus Armbrusterbd269eb2017-04-26 09:36:41 +020062static SocketAddress *saddr;
Paolo Bonzini7860a382012-09-18 13:31:56 +020063static int persistent = 0;
64static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state;
Paolo Bonzinia61c6782011-09-12 17:28:11 +020065static int shared = 1;
66static int nb_fds;
Daniel P. Berrangee4849c12017-12-18 10:16:43 +000067static QIONetListener *server;
Daniel P. Berrange145614a12016-02-10 18:41:13 +000068static QCryptoTLSCreds *tlscreds;
bellard7a5ca862008-05-27 21:13:40 +000069
70static void usage(const char *name)
71{
Paolo Bonzinib033cd82012-07-18 14:50:52 +020072 (printf) (
bellard7a5ca862008-05-27 21:13:40 +000073"Usage: %s [OPTIONS] FILE\n"
74"QEMU Disk Network Block Device Server\n"
75"\n"
Peter Lieven713cc672014-08-13 19:20:19 +020076" -h, --help display this help and exit\n"
77" -V, --version output version information and exit\n"
bellard7a5ca862008-05-27 21:13:40 +000078"\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020079"Connection properties:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020080" -p, --port=PORT port to listen on (default `%d')\n"
81" -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
82" -k, --socket=PATH path to the unix socket\n"
83" (default '"SOCKET_PATH"')\n"
84" -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
85" -t, --persistent don't exit on the last connection\n"
86" -v, --verbose display extra debugging information\n"
Eric Blake332a2542016-04-05 20:02:08 -060087" -x, --export-name=NAME expose export by name\n"
Eric Blakeb1a75b32016-10-14 13:33:03 -050088" -D, --description=TEXT with -x, also export a human-readable description\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020089"\n"
90"Exposing part of the image:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020091" -o, --offset=OFFSET offset into the image\n"
92" -P, --partition=NUM only expose partition NUM\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020093"\n"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000094"General purpose options:\n"
95" --object type,id=ID,... define an object such as 'secret' for providing\n"
96" passwords and/or encryption keys\n"
Denis V. Lunev39ca4632016-06-17 17:44:12 +030097" -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
98" specify tracing options\n"
Max Reitzffb31e12016-09-28 22:46:42 +020099" --fork fork off the server process and exit the parent\n"
100" once the server is running\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200101#ifdef __linux__
102"Kernel NBD client support:\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200103" -c, --connect=DEV connect FILE to the local NBD device DEV\n"
104" -d, --disconnect disconnect the specified device\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200105"\n"
106#endif
107"\n"
108"Block device options:\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200109" -f, --format=FORMAT set image format (raw, qcow2, ...)\n"
110" -r, --read-only export read-only\n"
111" -s, --snapshot use FILE as an external snapshot, create a temporary\n"
112" file with backing_file=FILE, redirect the write to\n"
113" the temporary one\n"
Wenchao Xia8c116b02013-12-04 17:10:55 +0800114" -l, --load-snapshot=SNAPSHOT_PARAM\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200115" load an internal snapshot inside FILE and export it\n"
116" as an read-only device, SNAPSHOT_PARAM format is\n"
117" 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
118" '[ID_OR_NAME]'\n"
119" -n, --nocache disable host cache\n"
120" --cache=MODE set cache mode (none, writeback, ...)\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200121" --aio=MODE set AIO mode (native or threads)\n"
Peter Lievenb3838a42014-08-13 19:20:18 +0200122" --discard=MODE set discard mode (ignore, unmap)\n"
Andrey Korolyov6883de62015-07-31 22:12:54 +0300123" --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n"
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000124" --image-opts treat FILE as a full set of image options\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200125"\n"
Eric Blakef5048cb2017-08-03 11:33:53 -0500126QEMU_HELP_BOTTOM "\n"
Laurent Vivierc2e28722010-09-17 20:37:25 +0200127 , name, NBD_DEFAULT_PORT, "DEVICE");
bellard7a5ca862008-05-27 21:13:40 +0000128}
129
130static void version(const char *name)
131{
132 printf(
Thomas Huth7e563bf2018-02-15 12:06:47 +0100133"%s " QEMU_FULL_VERSION "\n"
bellard7a5ca862008-05-27 21:13:40 +0000134"Written by Anthony Liguori.\n"
135"\n"
Eric Blakebe377132017-07-21 08:50:46 -0500136QEMU_COPYRIGHT "\n"
bellard7a5ca862008-05-27 21:13:40 +0000137"This is free software; see the source for copying conditions. There is NO\n"
138"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
ths315bc7a2008-07-18 18:06:23 +0000139 , name);
bellard7a5ca862008-05-27 21:13:40 +0000140}
141
142struct partition_record
143{
144 uint8_t bootable;
145 uint8_t start_head;
146 uint32_t start_cylinder;
147 uint8_t start_sector;
148 uint8_t system;
149 uint8_t end_head;
150 uint8_t end_cylinder;
151 uint8_t end_sector;
152 uint32_t start_sector_abs;
153 uint32_t nb_sectors_abs;
154};
155
156static void read_partition(uint8_t *p, struct partition_record *r)
157{
158 r->bootable = p[0];
159 r->start_head = p[1];
160 r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
161 r->start_sector = p[2] & 0x3f;
162 r->system = p[4];
163 r->end_head = p[5];
164 r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
165 r->end_sector = p[6] & 0x3f;
Max Reitzac973932015-02-25 13:08:23 -0500166
Peter Maydell773dce32016-06-10 16:00:36 +0100167 r->start_sector_abs = ldl_le_p(p + 8);
168 r->nb_sectors_abs = ldl_le_p(p + 12);
bellard7a5ca862008-05-27 21:13:40 +0000169}
170
Max Reitz4c58e802014-11-18 12:21:19 +0100171static int find_partition(BlockBackend *blk, int partition,
bellard7a5ca862008-05-27 21:13:40 +0000172 off_t *offset, off_t *size)
173{
174 struct partition_record mbr[4];
Eric Blakebd31c212016-05-06 10:26:42 -0600175 uint8_t data[MBR_SIZE];
bellard7a5ca862008-05-27 21:13:40 +0000176 int i;
177 int ext_partnum = 4;
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900178 int ret;
bellard7a5ca862008-05-27 21:13:40 +0000179
Eric Blakebd31c212016-05-06 10:26:42 -0600180 ret = blk_pread(blk, 0, data, sizeof(data));
181 if (ret < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100182 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100183 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900184 }
bellard7a5ca862008-05-27 21:13:40 +0000185
186 if (data[510] != 0x55 || data[511] != 0xaa) {
Paolo Bonzini185b4332012-03-05 08:56:10 +0100187 return -EINVAL;
bellard7a5ca862008-05-27 21:13:40 +0000188 }
189
190 for (i = 0; i < 4; i++) {
191 read_partition(&data[446 + 16 * i], &mbr[i]);
192
Max Reitz453b07b2015-02-25 13:08:15 -0500193 if (!mbr[i].system || !mbr[i].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000194 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500195 }
bellard7a5ca862008-05-27 21:13:40 +0000196
197 if (mbr[i].system == 0xF || mbr[i].system == 0x5) {
198 struct partition_record ext[4];
Eric Blakebd31c212016-05-06 10:26:42 -0600199 uint8_t data1[MBR_SIZE];
bellard7a5ca862008-05-27 21:13:40 +0000200 int j;
201
Eric Blakebd31c212016-05-06 10:26:42 -0600202 ret = blk_pread(blk, mbr[i].start_sector_abs * MBR_SIZE,
203 data1, sizeof(data1));
204 if (ret < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100205 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100206 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900207 }
bellard7a5ca862008-05-27 21:13:40 +0000208
209 for (j = 0; j < 4; j++) {
210 read_partition(&data1[446 + 16 * j], &ext[j]);
Max Reitz453b07b2015-02-25 13:08:15 -0500211 if (!ext[j].system || !ext[j].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000212 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500213 }
bellard7a5ca862008-05-27 21:13:40 +0000214
215 if ((ext_partnum + j + 1) == partition) {
216 *offset = (uint64_t)ext[j].start_sector_abs << 9;
217 *size = (uint64_t)ext[j].nb_sectors_abs << 9;
218 return 0;
219 }
220 }
221 ext_partnum += 4;
222 } else if ((i + 1) == partition) {
223 *offset = (uint64_t)mbr[i].start_sector_abs << 9;
224 *size = (uint64_t)mbr[i].nb_sectors_abs << 9;
225 return 0;
226 }
227 }
228
Paolo Bonzini185b4332012-03-05 08:56:10 +0100229 return -ENOENT;
bellard7a5ca862008-05-27 21:13:40 +0000230}
231
Paolo Bonzinibb345112011-11-04 15:51:19 +0100232static void termsig_handler(int signum)
233{
Pavel Butsykin23994a52016-04-14 13:20:15 +0300234 atomic_cmpxchg(&state, RUNNING, TERMINATE);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200235 qemu_notify_event();
Paolo Bonzinibb345112011-11-04 15:51:19 +0100236}
237
Paolo Bonzini537b41f2014-02-17 14:43:51 +0100238
Paolo Bonzinia517e882011-11-04 15:51:21 +0100239static void *show_parts(void *arg)
thscd831bd2008-07-03 10:23:51 +0000240{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100241 char *device = arg;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100242 int nbd;
thscd831bd2008-07-03 10:23:51 +0000243
Paolo Bonzinia517e882011-11-04 15:51:21 +0100244 /* linux just needs an open() to trigger
245 * the partition table update
246 * but remember to load the module with max_part != 0 :
247 * modprobe nbd max_part=63
248 */
249 nbd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100250 if (nbd >= 0) {
Paolo Bonzinia517e882011-11-04 15:51:21 +0100251 close(nbd);
thscd831bd2008-07-03 10:23:51 +0000252 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100253 return NULL;
254}
255
256static void *nbd_client_thread(void *arg)
257{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100258 char *device = arg;
Eric Blake081dd1f2017-07-07 15:30:49 -0500259 NBDExportInfo info = { .request_sizes = false, };
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +0000260 QIOChannelSocket *sioc;
261 int fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100262 int ret;
263 pthread_t show_parts_thread;
Max Reitz1ce52842015-01-26 21:02:59 -0500264 Error *local_error = NULL;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100265
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +0000266 sioc = qio_channel_socket_new();
267 if (qio_channel_socket_connect_sync(sioc,
268 saddr,
269 &local_error) < 0) {
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100270 error_report_err(local_error);
Stefan Hajnoczidc10e8b2012-01-05 13:16:07 +0000271 goto out;
272 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100273
Eric Blake004a89f2017-07-07 15:30:41 -0500274 ret = nbd_receive_negotiate(QIO_CHANNEL(sioc), NULL,
275 NULL, NULL, NULL, &info, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100276 if (ret < 0) {
Max Reitz1ce52842015-01-26 21:02:59 -0500277 if (local_error) {
Markus Armbruster78288672015-12-18 16:35:07 +0100278 error_report_err(local_error);
Max Reitz1ce52842015-01-26 21:02:59 -0500279 }
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100280 goto out_socket;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100281 }
282
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100283 fd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100284 if (fd < 0) {
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100285 /* Linux-only, we can use %m in printf. */
Markus Armbrusterb9884682015-12-18 16:35:18 +0100286 error_report("Failed to open %s: %m", device);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100287 goto out_socket;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100288 }
289
Eric Blake004a89f2017-07-07 15:30:41 -0500290 ret = nbd_init(fd, sioc, &info, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100291 if (ret < 0) {
Vladimir Sementsov-Ogievskiybe41c102017-05-26 14:09:13 +0300292 error_report_err(local_error);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100293 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100294 }
295
296 /* update partition table */
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100297 pthread_create(&show_parts_thread, NULL, show_parts, device);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100298
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100299 if (verbose) {
300 fprintf(stderr, "NBD device %s is now connected to %s\n",
301 device, srcpath);
302 } else {
303 /* Close stderr so that the qemu-nbd process exits. */
304 dup2(STDOUT_FILENO, STDERR_FILENO);
305 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100306
307 ret = nbd_client(fd);
308 if (ret) {
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100309 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100310 }
311 close(fd);
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +0000312 object_unref(OBJECT(sioc));
Paolo Bonzinia517e882011-11-04 15:51:21 +0100313 kill(getpid(), SIGTERM);
314 return (void *) EXIT_SUCCESS;
315
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100316out_fd:
317 close(fd);
318out_socket:
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +0000319 object_unref(OBJECT(sioc));
Paolo Bonzinia517e882011-11-04 15:51:21 +0100320out:
321 kill(getpid(), SIGTERM);
322 return (void *) EXIT_FAILURE;
thscd831bd2008-07-03 10:23:51 +0000323}
324
Fam Zhenge4afbf42015-05-19 10:50:59 +0000325static int nbd_can_accept(void)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200326{
Eric Blakedf8ad9f2017-05-26 22:04:21 -0500327 return state == RUNNING && nb_fds < shared;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200328}
329
Paolo Bonzini7860a382012-09-18 13:31:56 +0200330static void nbd_export_closed(NBDExport *exp)
331{
332 assert(state == TERMINATING);
333 state = TERMINATED;
334}
335
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +0000336static void nbd_update_server_watch(void);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000337
Eric Blake0c9390d2017-06-08 17:26:17 -0500338static void nbd_client_closed(NBDClient *client, bool negotiated)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200339{
Paolo Bonzini1743b512011-09-19 14:33:23 +0200340 nb_fds--;
Eric Blake0c9390d2017-06-08 17:26:17 -0500341 if (negotiated && nb_fds == 0 && !persistent && state == RUNNING) {
Paolo Bonzini7860a382012-09-18 13:31:56 +0200342 state = TERMINATE;
343 }
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +0000344 nbd_update_server_watch();
Paolo Bonzini7860a382012-09-18 13:31:56 +0200345 nbd_client_put(client);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200346}
347
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000348static void nbd_accept(QIONetListener *listener, QIOChannelSocket *cioc,
349 gpointer opaque)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200350{
Paolo Bonzini7860a382012-09-18 13:31:56 +0200351 if (state >= TERMINATE) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000352 return;
Paolo Bonzini7860a382012-09-18 13:31:56 +0200353 }
354
Fam Zhengee7d7aa2016-01-14 16:41:01 +0800355 nb_fds++;
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +0000356 nbd_update_server_watch();
Daniel P. Berrangef95910f2016-02-10 18:41:11 +0000357 nbd_client_new(newproto ? NULL : exp, cioc,
Daniel P. Berrange145614a12016-02-10 18:41:13 +0000358 tlscreds, NULL, nbd_client_closed);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200359}
360
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +0000361static void nbd_update_server_watch(void)
Fam Zhenge4afbf42015-05-19 10:50:59 +0000362{
363 if (nbd_can_accept()) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000364 qio_net_listener_set_client_func(server, nbd_accept, NULL, NULL);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000365 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000366 qio_net_listener_set_client_func(server, NULL, NULL, NULL);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000367 }
368}
369
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100370
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200371static SocketAddress *nbd_build_socket_address(const char *sockpath,
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100372 const char *bindto,
373 const char *port)
374{
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200375 SocketAddress *saddr;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100376
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200377 saddr = g_new0(SocketAddress, 1);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100378 if (sockpath) {
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200379 saddr->type = SOCKET_ADDRESS_TYPE_UNIX;
380 saddr->u.q_unix.path = g_strdup(sockpath);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100381 } else {
Eric Blake03992932016-03-03 09:16:48 -0700382 InetSocketAddress *inet;
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200383 saddr->type = SOCKET_ADDRESS_TYPE_INET;
384 inet = &saddr->u.inet;
Eric Blake03992932016-03-03 09:16:48 -0700385 inet->host = g_strdup(bindto);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100386 if (port) {
Eric Blake03992932016-03-03 09:16:48 -0700387 inet->port = g_strdup(port);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100388 } else {
Eric Blake03992932016-03-03 09:16:48 -0700389 inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100390 }
391 }
392
393 return saddr;
394}
395
396
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000397static QemuOptsList file_opts = {
398 .name = "file",
399 .implied_opt_name = "file",
400 .head = QTAILQ_HEAD_INITIALIZER(file_opts.head),
401 .desc = {
402 /* no elements => accept any params */
403 { /* end of list */ }
404 },
405};
406
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000407static QemuOptsList qemu_object_opts = {
408 .name = "object",
409 .implied_opt_name = "qom-type",
410 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
411 .desc = {
412 { }
413 },
414};
415
416
Daniel P. Berrange145614a12016-02-10 18:41:13 +0000417
418static QCryptoTLSCreds *nbd_get_tls_creds(const char *id, Error **errp)
419{
420 Object *obj;
421 QCryptoTLSCreds *creds;
422
423 obj = object_resolve_path_component(
424 object_get_objects_root(), id);
425 if (!obj) {
426 error_setg(errp, "No TLS credentials with id '%s'",
427 id);
428 return NULL;
429 }
430 creds = (QCryptoTLSCreds *)
431 object_dynamic_cast(obj, TYPE_QCRYPTO_TLS_CREDS);
432 if (!creds) {
433 error_setg(errp, "Object with id '%s' is not TLS credentials",
434 id);
435 return NULL;
436 }
437
438 if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_SERVER) {
439 error_setg(errp,
440 "Expecting TLS credentials with a server endpoint");
441 return NULL;
442 }
443 object_ref(obj);
444 return creds;
445}
446
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000447static void setup_address_and_port(const char **address, const char **port)
448{
449 if (*address == NULL) {
450 *address = "0.0.0.0";
451 }
452
453 if (*port == NULL) {
454 *port = stringify(NBD_DEFAULT_PORT);
455 }
456}
457
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000458/*
459 * Check socket parameters compatibility when socket activation is used.
460 */
461static const char *socket_activation_validate_opts(const char *device,
462 const char *sockpath,
463 const char *address,
464 const char *port)
465{
466 if (device != NULL) {
467 return "NBD device can't be set when using socket activation";
468 }
469
470 if (sockpath != NULL) {
471 return "Unix socket can't be set when using socket activation";
472 }
473
474 if (address != NULL) {
475 return "The interface can't be set when using socket activation";
476 }
477
478 if (port != NULL) {
479 return "TCP port number can't be set when using socket activation";
480 }
481
482 return NULL;
483}
Daniel P. Berrange145614a12016-02-10 18:41:13 +0000484
bellard7a5ca862008-05-27 21:13:40 +0000485int main(int argc, char **argv)
486{
Markus Armbruster26f54e92014-10-07 13:59:04 +0200487 BlockBackend *blk;
bellard7a5ca862008-05-27 21:13:40 +0000488 BlockDriverState *bs;
489 off_t dev_offset = 0;
Eric Blake7423f412016-07-21 13:34:46 -0600490 uint16_t nbdflags = 0;
thscd831bd2008-07-03 10:23:51 +0000491 bool disconnect = false;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000492 const char *bindto = NULL;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100493 const char *port = NULL;
494 char *sockpath = NULL;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100495 char *device = NULL;
bellard7a5ca862008-05-27 21:13:40 +0000496 off_t fd_size;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800497 QemuOpts *sn_opts = NULL;
498 const char *sn_id_or_name = NULL;
Eric Blakeb1a75b32016-10-14 13:33:03 -0500499 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:x:T:D:";
bellard7a5ca862008-05-27 21:13:40 +0000500 struct option lopt[] = {
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000501 { "help", no_argument, NULL, 'h' },
502 { "version", no_argument, NULL, 'V' },
503 { "bind", required_argument, NULL, 'b' },
504 { "port", required_argument, NULL, 'p' },
505 { "socket", required_argument, NULL, 'k' },
506 { "offset", required_argument, NULL, 'o' },
507 { "read-only", no_argument, NULL, 'r' },
508 { "partition", required_argument, NULL, 'P' },
509 { "connect", required_argument, NULL, 'c' },
510 { "disconnect", no_argument, NULL, 'd' },
511 { "snapshot", no_argument, NULL, 's' },
512 { "load-snapshot", required_argument, NULL, 'l' },
513 { "nocache", no_argument, NULL, 'n' },
514 { "cache", required_argument, NULL, QEMU_NBD_OPT_CACHE },
515 { "aio", required_argument, NULL, QEMU_NBD_OPT_AIO },
516 { "discard", required_argument, NULL, QEMU_NBD_OPT_DISCARD },
517 { "detect-zeroes", required_argument, NULL,
518 QEMU_NBD_OPT_DETECT_ZEROES },
519 { "shared", required_argument, NULL, 'e' },
520 { "format", required_argument, NULL, 'f' },
521 { "persistent", no_argument, NULL, 't' },
522 { "verbose", no_argument, NULL, 'v' },
523 { "object", required_argument, NULL, QEMU_NBD_OPT_OBJECT },
524 { "export-name", required_argument, NULL, 'x' },
Eric Blakeb1a75b32016-10-14 13:33:03 -0500525 { "description", required_argument, NULL, 'D' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000526 { "tls-creds", required_argument, NULL, QEMU_NBD_OPT_TLSCREDS },
527 { "image-opts", no_argument, NULL, QEMU_NBD_OPT_IMAGE_OPTS },
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300528 { "trace", required_argument, NULL, 'T' },
Max Reitzffb31e12016-09-28 22:46:42 +0200529 { "fork", no_argument, NULL, QEMU_NBD_OPT_FORK },
Blue Swirl660f11b2009-07-31 21:16:51 +0000530 { NULL, 0, NULL, 0 }
bellard7a5ca862008-05-27 21:13:40 +0000531 };
532 int ch;
533 int opt_ind = 0;
bellard7a5ca862008-05-27 21:13:40 +0000534 char *end;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200535 int flags = BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000536 int partition = -1;
Max Reitz4fbec262015-02-05 13:58:19 -0500537 int ret = 0;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200538 bool seen_cache = false;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100539 bool seen_discard = false;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200540 bool seen_aio = false;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100541 pthread_t client_thread;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000542 const char *fmt = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200543 Error *local_err = NULL;
Peter Lievenb3838a42014-08-13 19:20:18 +0200544 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
Max Reitz4fbec262015-02-05 13:58:19 -0500545 QDict *options = NULL;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000546 const char *export_name = NULL;
Eric Blakeb1a75b32016-10-14 13:33:03 -0500547 const char *export_description = NULL;
Daniel P. Berrange145614a12016-02-10 18:41:13 +0000548 const char *tlscredsid = NULL;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000549 bool imageOpts = false;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100550 bool writethrough = true;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300551 char *trace_file = NULL;
Max Reitzffb31e12016-09-28 22:46:42 +0200552 bool fork_process = false;
553 int old_stderr = -1;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000554 unsigned socket_activation;
bellard7a5ca862008-05-27 21:13:40 +0000555
Paolo Bonzinia517e882011-11-04 15:51:21 +0100556 /* The client thread uses SIGTERM to interrupt the server. A signal
557 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
558 */
Paolo Bonzinibb345112011-11-04 15:51:19 +0100559 struct sigaction sa_sigterm;
Paolo Bonzinibb345112011-11-04 15:51:19 +0100560 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
561 sa_sigterm.sa_handler = termsig_handler;
562 sigaction(SIGTERM, &sa_sigterm, NULL);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100563
Max Reitz041e32b2017-06-11 14:37:14 +0200564#ifdef CONFIG_POSIX
565 signal(SIGPIPE, SIG_IGN);
566#endif
567
Daniel P. Berrangefe4db842016-10-04 14:35:52 +0100568 module_call_init(MODULE_INIT_TRACE);
Eduardo Habkoste8f2d272016-05-12 11:10:04 -0300569 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100570
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000571 module_call_init(MODULE_INIT_QOM);
572 qemu_add_opts(&qemu_object_opts);
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300573 qemu_add_opts(&qemu_trace_opts);
Fam Zheng10f5bff2014-02-10 14:48:51 +0800574 qemu_init_exec_dir(argv[0]);
Paolo Bonzinibb345112011-11-04 15:51:19 +0100575
bellard7a5ca862008-05-27 21:13:40 +0000576 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
577 switch (ch) {
578 case 's':
ths2f726482008-07-03 11:47:46 +0000579 flags |= BDRV_O_SNAPSHOT;
580 break;
581 case 'n':
Paolo Bonzini39a52352012-07-18 14:57:15 +0200582 optarg = (char *) "none";
583 /* fallthrough */
584 case QEMU_NBD_OPT_CACHE:
585 if (seen_cache) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100586 error_report("-n and --cache can only be specified once");
587 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200588 }
589 seen_cache = true;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100590 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100591 error_report("Invalid cache mode `%s'", optarg);
592 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200593 }
bellard7a5ca862008-05-27 21:13:40 +0000594 break;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200595 case QEMU_NBD_OPT_AIO:
596 if (seen_aio) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100597 error_report("--aio can only be specified once");
598 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200599 }
600 seen_aio = true;
601 if (!strcmp(optarg, "native")) {
602 flags |= BDRV_O_NATIVE_AIO;
603 } else if (!strcmp(optarg, "threads")) {
604 /* this is the default */
605 } else {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100606 error_report("invalid aio mode `%s'", optarg);
607 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200608 }
609 break;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100610 case QEMU_NBD_OPT_DISCARD:
611 if (seen_discard) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100612 error_report("--discard can only be specified once");
613 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100614 }
615 seen_discard = true;
616 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100617 error_report("Invalid discard mode `%s'", optarg);
618 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100619 }
620 break;
Peter Lievenb3838a42014-08-13 19:20:18 +0200621 case QEMU_NBD_OPT_DETECT_ZEROES:
622 detect_zeroes =
Marc-André Lureauf7abe0e2017-08-24 10:46:10 +0200623 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
Peter Lievenb3838a42014-08-13 19:20:18 +0200624 optarg,
Peter Lievenb3838a42014-08-13 19:20:18 +0200625 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
626 &local_err);
627 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100628 error_reportf_err(local_err,
629 "Failed to parse detect_zeroes mode: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100630 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200631 }
632 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
633 !(flags & BDRV_O_UNMAP)) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100634 error_report("setting detect-zeroes to unmap is not allowed "
635 "without setting discard operation to unmap");
636 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200637 }
638 break;
bellard7a5ca862008-05-27 21:13:40 +0000639 case 'b':
640 bindto = optarg;
641 break;
642 case 'p':
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100643 port = optarg;
bellard7a5ca862008-05-27 21:13:40 +0000644 break;
645 case 'o':
646 dev_offset = strtoll (optarg, &end, 0);
647 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100648 error_report("Invalid offset `%s'", optarg);
649 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000650 }
651 if (dev_offset < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100652 error_report("Offset must be positive `%s'", optarg);
653 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000654 }
655 break;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800656 case 'l':
657 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +0100658 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
659 optarg, false);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800660 if (!sn_opts) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100661 error_report("Failed in parsing snapshot param `%s'",
662 optarg);
663 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800664 }
665 } else {
666 sn_id_or_name = optarg;
667 }
668 /* fall through */
bellard7a5ca862008-05-27 21:13:40 +0000669 case 'r':
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200670 nbdflags |= NBD_FLAG_READ_ONLY;
Naphtali Sprei07108b22010-03-14 15:19:57 +0200671 flags &= ~BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000672 break;
673 case 'P':
674 partition = strtol(optarg, &end, 0);
Peter Lieven713cc672014-08-13 19:20:19 +0200675 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100676 error_report("Invalid partition `%s'", optarg);
677 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200678 }
679 if (partition < 1 || partition > 8) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100680 error_report("Invalid partition %d", partition);
681 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200682 }
bellard7a5ca862008-05-27 21:13:40 +0000683 break;
thscd831bd2008-07-03 10:23:51 +0000684 case 'k':
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100685 sockpath = optarg;
Peter Lieven713cc672014-08-13 19:20:19 +0200686 if (sockpath[0] != '/') {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100687 error_report("socket path must be absolute");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100688 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200689 }
thscd831bd2008-07-03 10:23:51 +0000690 break;
691 case 'd':
692 disconnect = true;
693 break;
694 case 'c':
695 device = optarg;
696 break;
ths3b05a8e2008-07-03 12:45:02 +0000697 case 'e':
698 shared = strtol(optarg, &end, 0);
699 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100700 error_report("Invalid shared device number '%s'", optarg);
701 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000702 }
703 if (shared < 1) {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100704 error_report("Shared device number must be greater than 0");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100705 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000706 }
707 break;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000708 case 'f':
709 fmt = optarg;
710 break;
Peter Lieven713cc672014-08-13 19:20:19 +0200711 case 't':
712 persistent = 1;
713 break;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000714 case 'x':
715 export_name = optarg;
716 break;
Eric Blakeb1a75b32016-10-14 13:33:03 -0500717 case 'D':
718 export_description = optarg;
719 break;
bellard7a5ca862008-05-27 21:13:40 +0000720 case 'v':
721 verbose = 1;
722 break;
723 case 'V':
724 version(argv[0]);
725 exit(0);
726 break;
727 case 'h':
728 usage(argv[0]);
729 exit(0);
730 break;
731 case '?':
Markus Armbruster85b01e02015-12-18 16:35:04 +0100732 error_report("Try `%s --help' for more information.", argv[0]);
733 exit(EXIT_FAILURE);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000734 case QEMU_NBD_OPT_OBJECT: {
735 QemuOpts *opts;
736 opts = qemu_opts_parse_noisily(&qemu_object_opts,
737 optarg, true);
738 if (!opts) {
739 exit(EXIT_FAILURE);
740 }
741 } break;
Daniel P. Berrange145614a12016-02-10 18:41:13 +0000742 case QEMU_NBD_OPT_TLSCREDS:
743 tlscredsid = optarg;
744 break;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000745 case QEMU_NBD_OPT_IMAGE_OPTS:
746 imageOpts = true;
747 break;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300748 case 'T':
749 g_free(trace_file);
750 trace_file = trace_opt_parse(optarg);
751 break;
Max Reitzffb31e12016-09-28 22:46:42 +0200752 case QEMU_NBD_OPT_FORK:
753 fork_process = true;
754 break;
bellard7a5ca862008-05-27 21:13:40 +0000755 }
756 }
757
758 if ((argc - optind) != 1) {
Markus Armbruster433672b2015-12-18 16:35:24 +0100759 error_report("Invalid number of arguments");
760 error_printf("Try `%s --help' for more information.\n", argv[0]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100761 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000762 }
763
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000764 if (qemu_opts_foreach(&qemu_object_opts,
765 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200766 NULL, NULL)) {
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000767 exit(EXIT_FAILURE);
768 }
769
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300770 if (!trace_init_backends()) {
771 exit(1);
772 }
773 trace_init_file(trace_file);
774 qemu_set_log(LOG_TRACE);
775
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000776 socket_activation = check_socket_activation();
777 if (socket_activation == 0) {
778 setup_address_and_port(&bindto, &port);
779 } else {
780 /* Using socket activation - check user didn't use -p etc. */
781 const char *err_msg = socket_activation_validate_opts(device, sockpath,
782 bindto, port);
783 if (err_msg != NULL) {
784 error_report("%s", err_msg);
785 exit(EXIT_FAILURE);
786 }
Paolo Bonzini53fabd42017-03-16 16:29:45 +0100787
788 /* qemu-nbd can only listen on a single socket. */
789 if (socket_activation > 1) {
790 error_report("qemu-nbd does not support socket activation with %s > 1",
791 "LISTEN_FDS");
792 exit(EXIT_FAILURE);
793 }
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000794 }
795
Daniel P. Berrange145614a12016-02-10 18:41:13 +0000796 if (tlscredsid) {
797 if (sockpath) {
798 error_report("TLS is only supported with IPv4/IPv6");
799 exit(EXIT_FAILURE);
800 }
801 if (device) {
802 error_report("TLS is not supported with a host device");
803 exit(EXIT_FAILURE);
804 }
805 if (!export_name) {
806 /* Set the default NBD protocol export name, since
807 * we *must* use new style protocol for TLS */
808 export_name = "";
809 }
810 tlscreds = nbd_get_tls_creds(tlscredsid, &local_err);
811 if (local_err) {
812 error_report("Failed to get TLS creds %s",
813 error_get_pretty(local_err));
814 exit(EXIT_FAILURE);
815 }
816 }
817
thscd831bd2008-07-03 10:23:51 +0000818 if (disconnect) {
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +0000819 int nbdfd = open(argv[optind], O_RDWR);
820 if (nbdfd < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100821 error_report("Cannot open %s: %s", argv[optind],
822 strerror(errno));
823 exit(EXIT_FAILURE);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100824 }
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +0000825 nbd_disconnect(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000826
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +0000827 close(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000828
829 printf("%s disconnected\n", argv[optind]);
830
Peter Lieven713cc672014-08-13 19:20:19 +0200831 return 0;
thscd831bd2008-07-03 10:23:51 +0000832 }
833
Max Reitzffb31e12016-09-28 22:46:42 +0200834 if ((device && !verbose) || fork_process) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100835 int stderr_fd[2];
836 pid_t pid;
837 int ret;
838
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100839 if (qemu_pipe(stderr_fd) < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100840 error_report("Error setting up communication pipe: %s",
841 strerror(errno));
842 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100843 }
844
845 /* Now daemonize, but keep a communication channel open to
846 * print errors and exit with the proper status code.
847 */
848 pid = fork();
Max Reitz70d47392015-02-25 13:08:22 -0500849 if (pid < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100850 error_report("Failed to fork: %s", strerror(errno));
851 exit(EXIT_FAILURE);
Max Reitz70d47392015-02-25 13:08:22 -0500852 } else if (pid == 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100853 close(stderr_fd[0]);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400854 ret = qemu_daemon(1, 0);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100855
856 /* Temporarily redirect stderr to the parent's pipe... */
Max Reitzffb31e12016-09-28 22:46:42 +0200857 old_stderr = dup(STDERR_FILENO);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100858 dup2(stderr_fd[1], STDERR_FILENO);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100859 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100860 error_report("Failed to daemonize: %s", strerror(errno));
861 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100862 }
863
864 /* ... close the descriptor we inherited and go on. */
865 close(stderr_fd[1]);
866 } else {
867 bool errors = false;
868 char *buf;
869
870 /* In the parent. Print error messages from the child until
871 * it closes the pipe.
872 */
873 close(stderr_fd[1]);
874 buf = g_malloc(1024);
875 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
876 errors = true;
877 ret = qemu_write_full(STDERR_FILENO, buf, ret);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100878 if (ret < 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100879 exit(EXIT_FAILURE);
880 }
881 }
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100882 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100883 error_report("Cannot read from daemon: %s",
884 strerror(errno));
885 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100886 }
887
888 /* Usually the daemon should not print any message.
889 * Exit with zero status in that case.
890 */
891 exit(errors);
892 }
893 }
894
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100895 if (device != NULL && sockpath == NULL) {
896 sockpath = g_malloc(128);
897 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
thscd831bd2008-07-03 10:23:51 +0000898 }
899
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000900 server = qio_net_listener_new();
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000901 if (socket_activation == 0) {
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000902 saddr = nbd_build_socket_address(sockpath, bindto, port);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000903 if (qio_net_listener_open_sync(server, saddr, &local_err) < 0) {
904 object_unref(OBJECT(server));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000905 error_report_err(local_err);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000906 exit(EXIT_FAILURE);
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000907 }
908 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000909 size_t i;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000910 /* See comment in check_socket_activation above. */
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000911 for (i = 0; i < socket_activation; i++) {
912 QIOChannelSocket *sioc;
913 sioc = qio_channel_socket_new_fd(FIRST_SOCKET_ACTIVATION_FD + i,
914 &local_err);
915 if (sioc == NULL) {
916 object_unref(OBJECT(server));
917 error_report("Failed to use socket activation: %s",
918 error_get_pretty(local_err));
919 exit(EXIT_FAILURE);
920 }
921 qio_net_listener_add(server, sioc);
922 object_unref(OBJECT(sioc));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000923 }
924 }
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100925
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300926 if (qemu_init_main_loop(&local_err)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +0100927 error_report_err(local_err);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300928 exit(EXIT_FAILURE);
929 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100930 bdrv_init();
931 atexit(bdrv_close_all);
932
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000933 srcpath = argv[optind];
934 if (imageOpts) {
935 QemuOpts *opts;
936 if (fmt) {
937 error_report("--image-opts and -f are mutually exclusive");
938 exit(EXIT_FAILURE);
939 }
940 opts = qemu_opts_parse_noisily(&file_opts, srcpath, true);
941 if (!opts) {
942 qemu_opts_reset(&file_opts);
943 exit(EXIT_FAILURE);
944 }
945 options = qemu_opts_to_qdict(opts, NULL);
946 qemu_opts_reset(&file_opts);
Max Reitzefaa7c42016-03-16 19:54:38 +0100947 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000948 } else {
949 if (fmt) {
950 options = qdict_new();
Eric Blake46f5ac22017-04-27 16:58:17 -0500951 qdict_put_str(options, "driver", fmt);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000952 }
Max Reitzefaa7c42016-03-16 19:54:38 +0100953 blk = blk_new_open(srcpath, NULL, options, flags, &local_err);
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000954 }
955
Max Reitz4fbec262015-02-05 13:58:19 -0500956 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100957 error_reportf_err(local_err, "Failed to blk_new_open '%s': ",
958 argv[optind]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100959 exit(EXIT_FAILURE);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100960 }
Max Reitz4fbec262015-02-05 13:58:19 -0500961 bs = blk_bs(blk);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100962
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100963 blk_set_enable_write_cache(blk, !writethrough);
964
Wenchao Xia8c116b02013-12-04 17:10:55 +0800965 if (sn_opts) {
966 ret = bdrv_snapshot_load_tmp(bs,
967 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
968 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
969 &local_err);
970 } else if (sn_id_or_name) {
971 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
972 &local_err);
973 }
974 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100975 error_reportf_err(local_err, "Failed to load snapshot: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100976 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800977 }
978
Peter Lievenb3838a42014-08-13 19:20:18 +0200979 bs->detect_zeroes = detect_zeroes;
Max Reitz4c58e802014-11-18 12:21:19 +0100980 fd_size = blk_getlength(blk);
Max Reitz98f44bb2015-02-25 13:08:21 -0500981 if (fd_size < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100982 error_report("Failed to determine the image length: %s",
983 strerror(-fd_size));
984 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -0500985 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100986
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +0200987 if (dev_offset >= fd_size) {
988 error_report("Offset (%lld) has to be smaller than the image size "
989 "(%lld)",
990 (long long int)dev_offset, (long long int)fd_size);
991 exit(EXIT_FAILURE);
992 }
993 fd_size -= dev_offset;
994
Paolo Bonzini185b4332012-03-05 08:56:10 +0100995 if (partition != -1) {
Max Reitz4c58e802014-11-18 12:21:19 +0100996 ret = find_partition(blk, partition, &dev_offset, &fd_size);
Paolo Bonzini185b4332012-03-05 08:56:10 +0100997 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100998 error_report("Could not find partition %d: %s", partition,
Markus Armbrustera4699e52015-12-18 16:35:10 +0100999 strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +01001000 exit(EXIT_FAILURE);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001001 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001002 }
1003
Kevin Wolfcd7fca92016-07-06 11:22:39 +02001004 exp = nbd_export_new(bs, dev_offset, fd_size, nbdflags, nbd_export_closed,
1005 writethrough, NULL, &local_err);
Max Reitz98f44bb2015-02-25 13:08:21 -05001006 if (!exp) {
Markus Armbruster4fffeb52015-12-18 16:35:05 +01001007 error_report_err(local_err);
Markus Armbruster85b01e02015-12-18 16:35:04 +01001008 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -05001009 }
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +00001010 if (export_name) {
1011 nbd_export_set_name(exp, export_name);
Eric Blakeb1a75b32016-10-14 13:33:03 -05001012 nbd_export_set_description(exp, export_description);
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +00001013 newproto = true;
Eric Blakeb1a75b32016-10-14 13:33:03 -05001014 } else if (export_description) {
1015 error_report("Export description requires an export name");
1016 exit(EXIT_FAILURE);
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +00001017 }
ths3b05a8e2008-07-03 12:45:02 +00001018
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001019 if (device) {
1020 int ret;
1021
Paolo Bonzinia6ac2312011-12-06 09:07:00 +01001022 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001023 if (ret != 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001024 error_report("Failed to create client thread: %s", strerror(ret));
1025 exit(EXIT_FAILURE);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001026 }
1027 } else {
1028 /* Shut up GCC warnings. */
1029 memset(&client_thread, 0, sizeof(client_thread));
1030 }
1031
Daniel P. Berranged0d6ff582016-02-10 18:41:02 +00001032 nbd_update_server_watch();
bellard7a5ca862008-05-27 21:13:40 +00001033
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001034 /* now when the initialization is (almost) complete, chdir("/")
1035 * to free any busy filesystems */
1036 if (chdir("/") < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001037 error_report("Could not chdir to root directory: %s",
1038 strerror(errno));
1039 exit(EXIT_FAILURE);
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001040 }
1041
Max Reitzffb31e12016-09-28 22:46:42 +02001042 if (fork_process) {
1043 dup2(old_stderr, STDERR_FILENO);
1044 close(old_stderr);
1045 }
1046
Paolo Bonzini7860a382012-09-18 13:31:56 +02001047 state = RUNNING;
ths3b05a8e2008-07-03 12:45:02 +00001048 do {
Paolo Bonzinia61c6782011-09-12 17:28:11 +02001049 main_loop_wait(false);
Paolo Bonzini7860a382012-09-18 13:31:56 +02001050 if (state == TERMINATE) {
1051 state = TERMINATING;
1052 nbd_export_close(exp);
1053 nbd_export_put(exp);
1054 exp = NULL;
1055 }
1056 } while (state != TERMINATED);
ths3b05a8e2008-07-03 12:45:02 +00001057
Markus Armbruster26f54e92014-10-07 13:59:04 +02001058 blk_unref(blk);
Paolo Bonzinib32f6c22011-11-04 15:51:20 +01001059 if (sockpath) {
1060 unlink(sockpath);
1061 }
bellard7a5ca862008-05-27 21:13:40 +00001062
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02001063 qemu_opts_del(sn_opts);
Wenchao Xia8c116b02013-12-04 17:10:55 +08001064
Paolo Bonzinia517e882011-11-04 15:51:21 +01001065 if (device) {
1066 void *ret;
1067 pthread_join(client_thread, &ret);
1068 exit(ret != NULL);
1069 } else {
1070 exit(EXIT_SUCCESS);
1071 }
bellard7a5ca862008-05-27 21:13:40 +00001072}