blob: 51b9d38c72732c821cb4ee5bf362533406ce2494 [file] [log] [blame]
thscd831bd2008-07-03 10:23:51 +00001/*
bellard7a5ca862008-05-27 21:13:40 +00002 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
3 *
4 * Network Block Device
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Blue Swirl8167ee82009-07-16 20:47:01 +000016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
bellard7a5ca862008-05-27 21:13:40 +000017 */
18
Peter Maydelld38ea872016-01-29 17:50:05 +000019#include "qemu/osdep.h"
Eric Blakec2a3d7d2017-07-21 08:50:47 -050020#include <getopt.h>
21#include <libgen.h>
22#include <pthread.h>
23
Markus Armbrusterda34e652016-03-14 09:01:28 +010024#include "qapi/error.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020025#include "qemu/cutils.h"
Markus Armbruster26f54e92014-10-07 13:59:04 +020026#include "sysemu/block-backend.h"
Peter Lievenb3838a42014-08-13 19:20:18 +020027#include "block/block_int.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010028#include "block/nbd.h"
Alex Bligh6a1751b2013-08-21 16:02:47 +010029#include "qemu/main-loop.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010030#include "qemu/option.h"
Paolo Bonzini537b41f2014-02-17 14:43:51 +010031#include "qemu/error-report.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000032#include "qemu/config-file.h"
Paolo Bonzini58369e22016-03-15 17:22:36 +010033#include "qemu/bswap.h"
Denis V. Lunev39ca4632016-06-17 17:44:12 +030034#include "qemu/log.h"
Paolo Bonzini53fabd42017-03-16 16:29:45 +010035#include "qemu/systemd.h"
Wenchao Xia8c116b02013-12-04 17:10:55 +080036#include "block/snapshot.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010037#include "qapi/qmp/qdict.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010038#include "qapi/qmp/qstring.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000039#include "qom/object_interfaces.h"
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +000040#include "io/channel-socket.h"
Daniel P. Berrangee4849c12017-12-18 10:16:43 +000041#include "io/net-listener.h"
Daniel P. Berrangec2297082016-04-06 12:12:06 +010042#include "crypto/init.h"
Denis V. Lunev39ca4632016-06-17 17:44:12 +030043#include "trace/control.h"
Eric Blakebe377132017-07-21 08:50:46 -050044#include "qemu-version.h"
bellard7a5ca862008-05-27 21:13:40 +000045
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. Berrange145614a2016-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. Berranged0d6ff52016-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. Berranged0d6ff52016-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. Berranged0d6ff52016-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. Berranged0d6ff52016-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. Berranged0d6ff52016-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. Berranged0d6ff52016-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. Berranged0d6ff52016-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. Berrange145614a2016-02-10 18:41:13 +0000358 tlscreds, NULL, nbd_client_closed);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200359}
360
Daniel P. Berranged0d6ff52016-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. Berrange145614a2016-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. Berrange145614a2016-02-10 18:41:13 +0000484
Kevin Wolfb3b52992018-05-16 13:46:37 +0200485static void qemu_nbd_shutdown(void)
486{
487 job_cancel_sync_all();
488 bdrv_close_all();
489}
490
bellard7a5ca862008-05-27 21:13:40 +0000491int main(int argc, char **argv)
492{
Markus Armbruster26f54e92014-10-07 13:59:04 +0200493 BlockBackend *blk;
bellard7a5ca862008-05-27 21:13:40 +0000494 BlockDriverState *bs;
495 off_t dev_offset = 0;
Eric Blake7423f412016-07-21 13:34:46 -0600496 uint16_t nbdflags = 0;
thscd831bd2008-07-03 10:23:51 +0000497 bool disconnect = false;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000498 const char *bindto = NULL;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100499 const char *port = NULL;
500 char *sockpath = NULL;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100501 char *device = NULL;
bellard7a5ca862008-05-27 21:13:40 +0000502 off_t fd_size;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800503 QemuOpts *sn_opts = NULL;
504 const char *sn_id_or_name = NULL;
Eric Blakeb1a75b32016-10-14 13:33:03 -0500505 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:x:T:D:";
bellard7a5ca862008-05-27 21:13:40 +0000506 struct option lopt[] = {
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000507 { "help", no_argument, NULL, 'h' },
508 { "version", no_argument, NULL, 'V' },
509 { "bind", required_argument, NULL, 'b' },
510 { "port", required_argument, NULL, 'p' },
511 { "socket", required_argument, NULL, 'k' },
512 { "offset", required_argument, NULL, 'o' },
513 { "read-only", no_argument, NULL, 'r' },
514 { "partition", required_argument, NULL, 'P' },
515 { "connect", required_argument, NULL, 'c' },
516 { "disconnect", no_argument, NULL, 'd' },
517 { "snapshot", no_argument, NULL, 's' },
518 { "load-snapshot", required_argument, NULL, 'l' },
519 { "nocache", no_argument, NULL, 'n' },
520 { "cache", required_argument, NULL, QEMU_NBD_OPT_CACHE },
521 { "aio", required_argument, NULL, QEMU_NBD_OPT_AIO },
522 { "discard", required_argument, NULL, QEMU_NBD_OPT_DISCARD },
523 { "detect-zeroes", required_argument, NULL,
524 QEMU_NBD_OPT_DETECT_ZEROES },
525 { "shared", required_argument, NULL, 'e' },
526 { "format", required_argument, NULL, 'f' },
527 { "persistent", no_argument, NULL, 't' },
528 { "verbose", no_argument, NULL, 'v' },
529 { "object", required_argument, NULL, QEMU_NBD_OPT_OBJECT },
530 { "export-name", required_argument, NULL, 'x' },
Eric Blakeb1a75b32016-10-14 13:33:03 -0500531 { "description", required_argument, NULL, 'D' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000532 { "tls-creds", required_argument, NULL, QEMU_NBD_OPT_TLSCREDS },
533 { "image-opts", no_argument, NULL, QEMU_NBD_OPT_IMAGE_OPTS },
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300534 { "trace", required_argument, NULL, 'T' },
Max Reitzffb31e12016-09-28 22:46:42 +0200535 { "fork", no_argument, NULL, QEMU_NBD_OPT_FORK },
Blue Swirl660f11b2009-07-31 21:16:51 +0000536 { NULL, 0, NULL, 0 }
bellard7a5ca862008-05-27 21:13:40 +0000537 };
538 int ch;
539 int opt_ind = 0;
bellard7a5ca862008-05-27 21:13:40 +0000540 char *end;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200541 int flags = BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000542 int partition = -1;
Max Reitz4fbec262015-02-05 13:58:19 -0500543 int ret = 0;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200544 bool seen_cache = false;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100545 bool seen_discard = false;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200546 bool seen_aio = false;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100547 pthread_t client_thread;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000548 const char *fmt = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200549 Error *local_err = NULL;
Peter Lievenb3838a42014-08-13 19:20:18 +0200550 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
Max Reitz4fbec262015-02-05 13:58:19 -0500551 QDict *options = NULL;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000552 const char *export_name = NULL;
Eric Blakeb1a75b32016-10-14 13:33:03 -0500553 const char *export_description = NULL;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000554 const char *tlscredsid = NULL;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000555 bool imageOpts = false;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100556 bool writethrough = true;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300557 char *trace_file = NULL;
Max Reitzffb31e12016-09-28 22:46:42 +0200558 bool fork_process = false;
559 int old_stderr = -1;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000560 unsigned socket_activation;
bellard7a5ca862008-05-27 21:13:40 +0000561
Paolo Bonzinia517e882011-11-04 15:51:21 +0100562 /* The client thread uses SIGTERM to interrupt the server. A signal
563 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
564 */
Paolo Bonzinibb345112011-11-04 15:51:19 +0100565 struct sigaction sa_sigterm;
Paolo Bonzinibb345112011-11-04 15:51:19 +0100566 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
567 sa_sigterm.sa_handler = termsig_handler;
568 sigaction(SIGTERM, &sa_sigterm, NULL);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100569
Max Reitz041e32b2017-06-11 14:37:14 +0200570#ifdef CONFIG_POSIX
571 signal(SIGPIPE, SIG_IGN);
572#endif
573
Daniel P. Berrangefe4db842016-10-04 14:35:52 +0100574 module_call_init(MODULE_INIT_TRACE);
Eduardo Habkoste8f2d272016-05-12 11:10:04 -0300575 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100576
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000577 module_call_init(MODULE_INIT_QOM);
578 qemu_add_opts(&qemu_object_opts);
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300579 qemu_add_opts(&qemu_trace_opts);
Fam Zheng10f5bff2014-02-10 14:48:51 +0800580 qemu_init_exec_dir(argv[0]);
Paolo Bonzinibb345112011-11-04 15:51:19 +0100581
bellard7a5ca862008-05-27 21:13:40 +0000582 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
583 switch (ch) {
584 case 's':
ths2f726482008-07-03 11:47:46 +0000585 flags |= BDRV_O_SNAPSHOT;
586 break;
587 case 'n':
Paolo Bonzini39a52352012-07-18 14:57:15 +0200588 optarg = (char *) "none";
589 /* fallthrough */
590 case QEMU_NBD_OPT_CACHE:
591 if (seen_cache) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100592 error_report("-n and --cache can only be specified once");
593 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200594 }
595 seen_cache = true;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100596 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100597 error_report("Invalid cache mode `%s'", optarg);
598 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200599 }
bellard7a5ca862008-05-27 21:13:40 +0000600 break;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200601 case QEMU_NBD_OPT_AIO:
602 if (seen_aio) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100603 error_report("--aio can only be specified once");
604 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200605 }
606 seen_aio = true;
607 if (!strcmp(optarg, "native")) {
608 flags |= BDRV_O_NATIVE_AIO;
609 } else if (!strcmp(optarg, "threads")) {
610 /* this is the default */
611 } else {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100612 error_report("invalid aio mode `%s'", optarg);
613 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200614 }
615 break;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100616 case QEMU_NBD_OPT_DISCARD:
617 if (seen_discard) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100618 error_report("--discard can only be specified once");
619 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100620 }
621 seen_discard = true;
622 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100623 error_report("Invalid discard mode `%s'", optarg);
624 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100625 }
626 break;
Peter Lievenb3838a42014-08-13 19:20:18 +0200627 case QEMU_NBD_OPT_DETECT_ZEROES:
628 detect_zeroes =
Marc-André Lureauf7abe0e2017-08-24 10:46:10 +0200629 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
Peter Lievenb3838a42014-08-13 19:20:18 +0200630 optarg,
Peter Lievenb3838a42014-08-13 19:20:18 +0200631 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
632 &local_err);
633 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100634 error_reportf_err(local_err,
635 "Failed to parse detect_zeroes mode: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100636 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200637 }
638 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
639 !(flags & BDRV_O_UNMAP)) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100640 error_report("setting detect-zeroes to unmap is not allowed "
641 "without setting discard operation to unmap");
642 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200643 }
644 break;
bellard7a5ca862008-05-27 21:13:40 +0000645 case 'b':
646 bindto = optarg;
647 break;
648 case 'p':
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100649 port = optarg;
bellard7a5ca862008-05-27 21:13:40 +0000650 break;
651 case 'o':
652 dev_offset = strtoll (optarg, &end, 0);
653 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100654 error_report("Invalid offset `%s'", optarg);
655 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000656 }
657 if (dev_offset < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100658 error_report("Offset must be positive `%s'", optarg);
659 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000660 }
661 break;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800662 case 'l':
663 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +0100664 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
665 optarg, false);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800666 if (!sn_opts) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100667 error_report("Failed in parsing snapshot param `%s'",
668 optarg);
669 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800670 }
671 } else {
672 sn_id_or_name = optarg;
673 }
674 /* fall through */
bellard7a5ca862008-05-27 21:13:40 +0000675 case 'r':
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200676 nbdflags |= NBD_FLAG_READ_ONLY;
Naphtali Sprei07108b22010-03-14 15:19:57 +0200677 flags &= ~BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000678 break;
679 case 'P':
680 partition = strtol(optarg, &end, 0);
Peter Lieven713cc672014-08-13 19:20:19 +0200681 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100682 error_report("Invalid partition `%s'", optarg);
683 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200684 }
685 if (partition < 1 || partition > 8) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100686 error_report("Invalid partition %d", partition);
687 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200688 }
bellard7a5ca862008-05-27 21:13:40 +0000689 break;
thscd831bd2008-07-03 10:23:51 +0000690 case 'k':
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100691 sockpath = optarg;
Peter Lieven713cc672014-08-13 19:20:19 +0200692 if (sockpath[0] != '/') {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100693 error_report("socket path must be absolute");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100694 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200695 }
thscd831bd2008-07-03 10:23:51 +0000696 break;
697 case 'd':
698 disconnect = true;
699 break;
700 case 'c':
701 device = optarg;
702 break;
ths3b05a8e2008-07-03 12:45:02 +0000703 case 'e':
704 shared = strtol(optarg, &end, 0);
705 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100706 error_report("Invalid shared device number '%s'", optarg);
707 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000708 }
709 if (shared < 1) {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100710 error_report("Shared device number must be greater than 0");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100711 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000712 }
713 break;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000714 case 'f':
715 fmt = optarg;
716 break;
Peter Lieven713cc672014-08-13 19:20:19 +0200717 case 't':
718 persistent = 1;
719 break;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000720 case 'x':
721 export_name = optarg;
722 break;
Eric Blakeb1a75b32016-10-14 13:33:03 -0500723 case 'D':
724 export_description = optarg;
725 break;
bellard7a5ca862008-05-27 21:13:40 +0000726 case 'v':
727 verbose = 1;
728 break;
729 case 'V':
730 version(argv[0]);
731 exit(0);
732 break;
733 case 'h':
734 usage(argv[0]);
735 exit(0);
736 break;
737 case '?':
Markus Armbruster85b01e02015-12-18 16:35:04 +0100738 error_report("Try `%s --help' for more information.", argv[0]);
739 exit(EXIT_FAILURE);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000740 case QEMU_NBD_OPT_OBJECT: {
741 QemuOpts *opts;
742 opts = qemu_opts_parse_noisily(&qemu_object_opts,
743 optarg, true);
744 if (!opts) {
745 exit(EXIT_FAILURE);
746 }
747 } break;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000748 case QEMU_NBD_OPT_TLSCREDS:
749 tlscredsid = optarg;
750 break;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000751 case QEMU_NBD_OPT_IMAGE_OPTS:
752 imageOpts = true;
753 break;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300754 case 'T':
755 g_free(trace_file);
756 trace_file = trace_opt_parse(optarg);
757 break;
Max Reitzffb31e12016-09-28 22:46:42 +0200758 case QEMU_NBD_OPT_FORK:
759 fork_process = true;
760 break;
bellard7a5ca862008-05-27 21:13:40 +0000761 }
762 }
763
764 if ((argc - optind) != 1) {
Markus Armbruster433672b2015-12-18 16:35:24 +0100765 error_report("Invalid number of arguments");
766 error_printf("Try `%s --help' for more information.\n", argv[0]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100767 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000768 }
769
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000770 if (qemu_opts_foreach(&qemu_object_opts,
771 user_creatable_add_opts_foreach,
Markus Armbruster51b9b472016-04-27 16:29:09 +0200772 NULL, NULL)) {
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000773 exit(EXIT_FAILURE);
774 }
775
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300776 if (!trace_init_backends()) {
777 exit(1);
778 }
779 trace_init_file(trace_file);
780 qemu_set_log(LOG_TRACE);
781
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000782 socket_activation = check_socket_activation();
783 if (socket_activation == 0) {
784 setup_address_and_port(&bindto, &port);
785 } else {
786 /* Using socket activation - check user didn't use -p etc. */
787 const char *err_msg = socket_activation_validate_opts(device, sockpath,
788 bindto, port);
789 if (err_msg != NULL) {
790 error_report("%s", err_msg);
791 exit(EXIT_FAILURE);
792 }
Paolo Bonzini53fabd42017-03-16 16:29:45 +0100793
794 /* qemu-nbd can only listen on a single socket. */
795 if (socket_activation > 1) {
796 error_report("qemu-nbd does not support socket activation with %s > 1",
797 "LISTEN_FDS");
798 exit(EXIT_FAILURE);
799 }
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000800 }
801
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000802 if (tlscredsid) {
803 if (sockpath) {
804 error_report("TLS is only supported with IPv4/IPv6");
805 exit(EXIT_FAILURE);
806 }
807 if (device) {
808 error_report("TLS is not supported with a host device");
809 exit(EXIT_FAILURE);
810 }
811 if (!export_name) {
812 /* Set the default NBD protocol export name, since
813 * we *must* use new style protocol for TLS */
814 export_name = "";
815 }
816 tlscreds = nbd_get_tls_creds(tlscredsid, &local_err);
817 if (local_err) {
818 error_report("Failed to get TLS creds %s",
819 error_get_pretty(local_err));
820 exit(EXIT_FAILURE);
821 }
822 }
823
thscd831bd2008-07-03 10:23:51 +0000824 if (disconnect) {
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000825 int nbdfd = open(argv[optind], O_RDWR);
826 if (nbdfd < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100827 error_report("Cannot open %s: %s", argv[optind],
828 strerror(errno));
829 exit(EXIT_FAILURE);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100830 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000831 nbd_disconnect(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000832
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000833 close(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000834
835 printf("%s disconnected\n", argv[optind]);
836
Peter Lieven713cc672014-08-13 19:20:19 +0200837 return 0;
thscd831bd2008-07-03 10:23:51 +0000838 }
839
Max Reitzffb31e12016-09-28 22:46:42 +0200840 if ((device && !verbose) || fork_process) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100841 int stderr_fd[2];
842 pid_t pid;
843 int ret;
844
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100845 if (qemu_pipe(stderr_fd) < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100846 error_report("Error setting up communication pipe: %s",
847 strerror(errno));
848 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100849 }
850
851 /* Now daemonize, but keep a communication channel open to
852 * print errors and exit with the proper status code.
853 */
854 pid = fork();
Max Reitz70d47392015-02-25 13:08:22 -0500855 if (pid < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100856 error_report("Failed to fork: %s", strerror(errno));
857 exit(EXIT_FAILURE);
Max Reitz70d47392015-02-25 13:08:22 -0500858 } else if (pid == 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100859 close(stderr_fd[0]);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400860 ret = qemu_daemon(1, 0);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100861
862 /* Temporarily redirect stderr to the parent's pipe... */
Max Reitzffb31e12016-09-28 22:46:42 +0200863 old_stderr = dup(STDERR_FILENO);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100864 dup2(stderr_fd[1], STDERR_FILENO);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100865 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100866 error_report("Failed to daemonize: %s", strerror(errno));
867 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100868 }
869
870 /* ... close the descriptor we inherited and go on. */
871 close(stderr_fd[1]);
872 } else {
873 bool errors = false;
874 char *buf;
875
876 /* In the parent. Print error messages from the child until
877 * it closes the pipe.
878 */
879 close(stderr_fd[1]);
880 buf = g_malloc(1024);
881 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
882 errors = true;
883 ret = qemu_write_full(STDERR_FILENO, buf, ret);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100884 if (ret < 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100885 exit(EXIT_FAILURE);
886 }
887 }
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100888 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100889 error_report("Cannot read from daemon: %s",
890 strerror(errno));
891 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100892 }
893
894 /* Usually the daemon should not print any message.
895 * Exit with zero status in that case.
896 */
897 exit(errors);
898 }
899 }
900
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100901 if (device != NULL && sockpath == NULL) {
902 sockpath = g_malloc(128);
903 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
thscd831bd2008-07-03 10:23:51 +0000904 }
905
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000906 server = qio_net_listener_new();
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000907 if (socket_activation == 0) {
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000908 saddr = nbd_build_socket_address(sockpath, bindto, port);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000909 if (qio_net_listener_open_sync(server, saddr, &local_err) < 0) {
910 object_unref(OBJECT(server));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000911 error_report_err(local_err);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000912 exit(EXIT_FAILURE);
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000913 }
914 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000915 size_t i;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000916 /* See comment in check_socket_activation above. */
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000917 for (i = 0; i < socket_activation; i++) {
918 QIOChannelSocket *sioc;
919 sioc = qio_channel_socket_new_fd(FIRST_SOCKET_ACTIVATION_FD + i,
920 &local_err);
921 if (sioc == NULL) {
922 object_unref(OBJECT(server));
923 error_report("Failed to use socket activation: %s",
924 error_get_pretty(local_err));
925 exit(EXIT_FAILURE);
926 }
927 qio_net_listener_add(server, sioc);
928 object_unref(OBJECT(sioc));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000929 }
930 }
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100931
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300932 if (qemu_init_main_loop(&local_err)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +0100933 error_report_err(local_err);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300934 exit(EXIT_FAILURE);
935 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100936 bdrv_init();
Kevin Wolfb3b52992018-05-16 13:46:37 +0200937 atexit(qemu_nbd_shutdown);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100938
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000939 srcpath = argv[optind];
940 if (imageOpts) {
941 QemuOpts *opts;
942 if (fmt) {
943 error_report("--image-opts and -f are mutually exclusive");
944 exit(EXIT_FAILURE);
945 }
946 opts = qemu_opts_parse_noisily(&file_opts, srcpath, true);
947 if (!opts) {
948 qemu_opts_reset(&file_opts);
949 exit(EXIT_FAILURE);
950 }
951 options = qemu_opts_to_qdict(opts, NULL);
952 qemu_opts_reset(&file_opts);
Max Reitzefaa7c42016-03-16 19:54:38 +0100953 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000954 } else {
955 if (fmt) {
956 options = qdict_new();
Eric Blake46f5ac22017-04-27 16:58:17 -0500957 qdict_put_str(options, "driver", fmt);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000958 }
Max Reitzefaa7c42016-03-16 19:54:38 +0100959 blk = blk_new_open(srcpath, NULL, options, flags, &local_err);
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000960 }
961
Max Reitz4fbec262015-02-05 13:58:19 -0500962 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100963 error_reportf_err(local_err, "Failed to blk_new_open '%s': ",
964 argv[optind]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100965 exit(EXIT_FAILURE);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100966 }
Max Reitz4fbec262015-02-05 13:58:19 -0500967 bs = blk_bs(blk);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100968
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100969 blk_set_enable_write_cache(blk, !writethrough);
970
Wenchao Xia8c116b02013-12-04 17:10:55 +0800971 if (sn_opts) {
972 ret = bdrv_snapshot_load_tmp(bs,
973 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
974 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
975 &local_err);
976 } else if (sn_id_or_name) {
977 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
978 &local_err);
979 }
980 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100981 error_reportf_err(local_err, "Failed to load snapshot: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100982 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800983 }
984
Peter Lievenb3838a42014-08-13 19:20:18 +0200985 bs->detect_zeroes = detect_zeroes;
Max Reitz4c58e802014-11-18 12:21:19 +0100986 fd_size = blk_getlength(blk);
Max Reitz98f44bb2015-02-25 13:08:21 -0500987 if (fd_size < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100988 error_report("Failed to determine the image length: %s",
989 strerror(-fd_size));
990 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -0500991 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100992
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +0200993 if (dev_offset >= fd_size) {
994 error_report("Offset (%lld) has to be smaller than the image size "
995 "(%lld)",
996 (long long int)dev_offset, (long long int)fd_size);
997 exit(EXIT_FAILURE);
998 }
999 fd_size -= dev_offset;
1000
Paolo Bonzini185b4332012-03-05 08:56:10 +01001001 if (partition != -1) {
Max Reitz4c58e802014-11-18 12:21:19 +01001002 ret = find_partition(blk, partition, &dev_offset, &fd_size);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001003 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001004 error_report("Could not find partition %d: %s", partition,
Markus Armbrustera4699e52015-12-18 16:35:10 +01001005 strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +01001006 exit(EXIT_FAILURE);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001007 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001008 }
1009
Kevin Wolfcd7fca92016-07-06 11:22:39 +02001010 exp = nbd_export_new(bs, dev_offset, fd_size, nbdflags, nbd_export_closed,
1011 writethrough, NULL, &local_err);
Max Reitz98f44bb2015-02-25 13:08:21 -05001012 if (!exp) {
Markus Armbruster4fffeb52015-12-18 16:35:05 +01001013 error_report_err(local_err);
Markus Armbruster85b01e02015-12-18 16:35:04 +01001014 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -05001015 }
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +00001016 if (export_name) {
1017 nbd_export_set_name(exp, export_name);
Eric Blakeb1a75b32016-10-14 13:33:03 -05001018 nbd_export_set_description(exp, export_description);
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +00001019 newproto = true;
Eric Blakeb1a75b32016-10-14 13:33:03 -05001020 } else if (export_description) {
1021 error_report("Export description requires an export name");
1022 exit(EXIT_FAILURE);
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +00001023 }
ths3b05a8e2008-07-03 12:45:02 +00001024
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001025 if (device) {
1026 int ret;
1027
Paolo Bonzinia6ac2312011-12-06 09:07:00 +01001028 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001029 if (ret != 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001030 error_report("Failed to create client thread: %s", strerror(ret));
1031 exit(EXIT_FAILURE);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001032 }
1033 } else {
1034 /* Shut up GCC warnings. */
1035 memset(&client_thread, 0, sizeof(client_thread));
1036 }
1037
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +00001038 nbd_update_server_watch();
bellard7a5ca862008-05-27 21:13:40 +00001039
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001040 /* now when the initialization is (almost) complete, chdir("/")
1041 * to free any busy filesystems */
1042 if (chdir("/") < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001043 error_report("Could not chdir to root directory: %s",
1044 strerror(errno));
1045 exit(EXIT_FAILURE);
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001046 }
1047
Max Reitzffb31e12016-09-28 22:46:42 +02001048 if (fork_process) {
1049 dup2(old_stderr, STDERR_FILENO);
1050 close(old_stderr);
1051 }
1052
Paolo Bonzini7860a382012-09-18 13:31:56 +02001053 state = RUNNING;
ths3b05a8e2008-07-03 12:45:02 +00001054 do {
Paolo Bonzinia61c6782011-09-12 17:28:11 +02001055 main_loop_wait(false);
Paolo Bonzini7860a382012-09-18 13:31:56 +02001056 if (state == TERMINATE) {
1057 state = TERMINATING;
1058 nbd_export_close(exp);
1059 nbd_export_put(exp);
1060 exp = NULL;
1061 }
1062 } while (state != TERMINATED);
ths3b05a8e2008-07-03 12:45:02 +00001063
Markus Armbruster26f54e92014-10-07 13:59:04 +02001064 blk_unref(blk);
Paolo Bonzinib32f6c22011-11-04 15:51:20 +01001065 if (sockpath) {
1066 unlink(sockpath);
1067 }
bellard7a5ca862008-05-27 21:13:40 +00001068
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02001069 qemu_opts_del(sn_opts);
Wenchao Xia8c116b02013-12-04 17:10:55 +08001070
Paolo Bonzinia517e882011-11-04 15:51:21 +01001071 if (device) {
1072 void *ret;
1073 pthread_join(client_thread, &ret);
1074 exit(ret != NULL);
1075 } else {
1076 exit(EXIT_SUCCESS);
1077 }
bellard7a5ca862008-05-27 21:13:40 +00001078}