blob: 598caa656b28f4402288ebfb824ac6a5f488ab20 [file] [log] [blame]
thscd831bd2008-07-03 10:23:51 +00001/*
bellard7a5ca862008-05-27 21:13:40 +00002 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
3 *
4 * Network Block Device
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Blue Swirl8167ee82009-07-16 20:47:01 +000016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
bellard7a5ca862008-05-27 21:13:40 +000017 */
18
Peter Maydelld38ea872016-01-29 17:50:05 +000019#include "qemu/osdep.h"
Eric Blakec2a3d7d2017-07-21 08:50:47 -050020#include <getopt.h>
21#include <libgen.h>
22#include <pthread.h>
23
Markus Armbrusterda34e652016-03-14 09:01:28 +010024#include "qapi/error.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020025#include "qemu/cutils.h"
Markus Armbruster26f54e92014-10-07 13:59:04 +020026#include "sysemu/block-backend.h"
Peter Lievenb3838a42014-08-13 19:20:18 +020027#include "block/block_int.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010028#include "block/nbd.h"
Alex Bligh6a1751b2013-08-21 16:02:47 +010029#include "qemu/main-loop.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010030#include "qemu/option.h"
Paolo Bonzini537b41f2014-02-17 14:43:51 +010031#include "qemu/error-report.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000032#include "qemu/config-file.h"
Paolo Bonzini58369e22016-03-15 17:22:36 +010033#include "qemu/bswap.h"
Denis V. Lunev39ca4632016-06-17 17:44:12 +030034#include "qemu/log.h"
Paolo Bonzini53fabd42017-03-16 16:29:45 +010035#include "qemu/systemd.h"
Wenchao Xia8c116b02013-12-04 17:10:55 +080036#include "block/snapshot.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010037#include "qapi/qmp/qdict.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010038#include "qapi/qmp/qstring.h"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +000039#include "qom/object_interfaces.h"
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +000040#include "io/channel-socket.h"
Daniel P. Berrangee4849c12017-12-18 10:16:43 +000041#include "io/net-listener.h"
Daniel P. Berrangec2297082016-04-06 12:12:06 +010042#include "crypto/init.h"
Denis V. Lunev39ca4632016-06-17 17:44:12 +030043#include "trace/control.h"
Eric Blakebe377132017-07-21 08:50:46 -050044#include "qemu-version.h"
bellard7a5ca862008-05-27 21:13:40 +000045
Eric Blake3c1fa352018-12-15 07:53:08 -060046#ifdef __linux__
47#define HAVE_NBD_DEVICE 1
48#else
49#define HAVE_NBD_DEVICE 0
50#endif
51
Peter Lieven713cc672014-08-13 19:20:19 +020052#define SOCKET_PATH "/var/lock/qemu-nbd-%s"
Daniel P. Berrangefa8b7ce2016-02-17 10:10:21 +000053#define QEMU_NBD_OPT_CACHE 256
54#define QEMU_NBD_OPT_AIO 257
55#define QEMU_NBD_OPT_DISCARD 258
56#define QEMU_NBD_OPT_DETECT_ZEROES 259
57#define QEMU_NBD_OPT_OBJECT 260
58#define QEMU_NBD_OPT_TLSCREDS 261
59#define QEMU_NBD_OPT_IMAGE_OPTS 262
Max Reitzffb31e12016-09-28 22:46:42 +020060#define QEMU_NBD_OPT_FORK 263
bellard7a5ca862008-05-27 21:13:40 +000061
Eric Blakebd31c212016-05-06 10:26:42 -060062#define MBR_SIZE 512
63
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +010064static NBDExport *export;
blueswir1b1d8e522008-10-26 13:43:07 +000065static int verbose;
Paolo Bonzinia517e882011-11-04 15:51:21 +010066static char *srcpath;
Markus Armbrusterbd269eb2017-04-26 09:36:41 +020067static SocketAddress *saddr;
Paolo Bonzini7860a382012-09-18 13:31:56 +020068static int persistent = 0;
69static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state;
Paolo Bonzinia61c6782011-09-12 17:28:11 +020070static int shared = 1;
71static int nb_fds;
Daniel P. Berrangee4849c12017-12-18 10:16:43 +000072static QIONetListener *server;
Daniel P. Berrange145614a2016-02-10 18:41:13 +000073static QCryptoTLSCreds *tlscreds;
bellard7a5ca862008-05-27 21:13:40 +000074
75static void usage(const char *name)
76{
Paolo Bonzinib033cd82012-07-18 14:50:52 +020077 (printf) (
bellard7a5ca862008-05-27 21:13:40 +000078"Usage: %s [OPTIONS] FILE\n"
79"QEMU Disk Network Block Device Server\n"
80"\n"
Peter Lieven713cc672014-08-13 19:20:19 +020081" -h, --help display this help and exit\n"
82" -V, --version output version information and exit\n"
bellard7a5ca862008-05-27 21:13:40 +000083"\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020084"Connection properties:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020085" -p, --port=PORT port to listen on (default `%d')\n"
86" -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
87" -k, --socket=PATH path to the unix socket\n"
88" (default '"SOCKET_PATH"')\n"
89" -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
90" -t, --persistent don't exit on the last connection\n"
91" -v, --verbose display extra debugging information\n"
Vladimir Sementsov-Ogievskiyf5cd0bb2018-10-03 20:02:27 +030092" -x, --export-name=NAME expose export by name (default is empty string)\n"
93" -D, --description=TEXT export a human-readable description\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020094"\n"
95"Exposing part of the image:\n"
Peter Lieven713cc672014-08-13 19:20:19 +020096" -o, --offset=OFFSET offset into the image\n"
97" -P, --partition=NUM only expose partition NUM\n"
Eric Blake636192c2019-01-11 13:47:20 -060098" -B, --bitmap=NAME expose a persistent dirty bitmap\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +020099"\n"
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000100"General purpose options:\n"
101" --object type,id=ID,... define an object such as 'secret' for providing\n"
102" passwords and/or encryption keys\n"
Eric Blakef7812df2018-10-03 13:04:26 -0500103" --tls-creds=ID use id of an earlier --object to provide TLS\n"
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300104" -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
105" specify tracing options\n"
Max Reitzffb31e12016-09-28 22:46:42 +0200106" --fork fork off the server process and exit the parent\n"
107" once the server is running\n"
Eric Blake3c1fa352018-12-15 07:53:08 -0600108#if HAVE_NBD_DEVICE
109"\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200110"Kernel NBD client support:\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200111" -c, --connect=DEV connect FILE to the local NBD device DEV\n"
112" -d, --disconnect disconnect the specified device\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200113#endif
114"\n"
115"Block device options:\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200116" -f, --format=FORMAT set image format (raw, qcow2, ...)\n"
117" -r, --read-only export read-only\n"
118" -s, --snapshot use FILE as an external snapshot, create a temporary\n"
119" file with backing_file=FILE, redirect the write to\n"
120" the temporary one\n"
Wenchao Xia8c116b02013-12-04 17:10:55 +0800121" -l, --load-snapshot=SNAPSHOT_PARAM\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200122" load an internal snapshot inside FILE and export it\n"
123" as an read-only device, SNAPSHOT_PARAM format is\n"
124" 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
125" '[ID_OR_NAME]'\n"
126" -n, --nocache disable host cache\n"
127" --cache=MODE set cache mode (none, writeback, ...)\n"
Peter Lieven713cc672014-08-13 19:20:19 +0200128" --aio=MODE set AIO mode (native or threads)\n"
Peter Lievenb3838a42014-08-13 19:20:18 +0200129" --discard=MODE set discard mode (ignore, unmap)\n"
Andrey Korolyov6883de62015-07-31 22:12:54 +0300130" --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n"
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000131" --image-opts treat FILE as a full set of image options\n"
Paolo Bonzinib033cd82012-07-18 14:50:52 +0200132"\n"
Eric Blakef5048cb2017-08-03 11:33:53 -0500133QEMU_HELP_BOTTOM "\n"
Laurent Vivierc2e28722010-09-17 20:37:25 +0200134 , name, NBD_DEFAULT_PORT, "DEVICE");
bellard7a5ca862008-05-27 21:13:40 +0000135}
136
137static void version(const char *name)
138{
139 printf(
Thomas Huth7e563bf2018-02-15 12:06:47 +0100140"%s " QEMU_FULL_VERSION "\n"
bellard7a5ca862008-05-27 21:13:40 +0000141"Written by Anthony Liguori.\n"
142"\n"
Eric Blakebe377132017-07-21 08:50:46 -0500143QEMU_COPYRIGHT "\n"
bellard7a5ca862008-05-27 21:13:40 +0000144"This is free software; see the source for copying conditions. There is NO\n"
145"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
ths315bc7a2008-07-18 18:06:23 +0000146 , name);
bellard7a5ca862008-05-27 21:13:40 +0000147}
148
149struct partition_record
150{
151 uint8_t bootable;
152 uint8_t start_head;
153 uint32_t start_cylinder;
154 uint8_t start_sector;
155 uint8_t system;
156 uint8_t end_head;
157 uint8_t end_cylinder;
158 uint8_t end_sector;
159 uint32_t start_sector_abs;
160 uint32_t nb_sectors_abs;
161};
162
163static void read_partition(uint8_t *p, struct partition_record *r)
164{
165 r->bootable = p[0];
166 r->start_head = p[1];
167 r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
168 r->start_sector = p[2] & 0x3f;
169 r->system = p[4];
170 r->end_head = p[5];
171 r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
172 r->end_sector = p[6] & 0x3f;
Max Reitzac973932015-02-25 13:08:23 -0500173
Peter Maydell773dce32016-06-10 16:00:36 +0100174 r->start_sector_abs = ldl_le_p(p + 8);
175 r->nb_sectors_abs = ldl_le_p(p + 12);
bellard7a5ca862008-05-27 21:13:40 +0000176}
177
Max Reitz4c58e802014-11-18 12:21:19 +0100178static int find_partition(BlockBackend *blk, int partition,
Eric Blake9d26dfc2019-01-17 13:36:43 -0600179 uint64_t *offset, uint64_t *size)
bellard7a5ca862008-05-27 21:13:40 +0000180{
181 struct partition_record mbr[4];
Eric Blakebd31c212016-05-06 10:26:42 -0600182 uint8_t data[MBR_SIZE];
bellard7a5ca862008-05-27 21:13:40 +0000183 int i;
184 int ext_partnum = 4;
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900185 int ret;
bellard7a5ca862008-05-27 21:13:40 +0000186
Eric Blakebd31c212016-05-06 10:26:42 -0600187 ret = blk_pread(blk, 0, data, sizeof(data));
188 if (ret < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100189 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100190 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900191 }
bellard7a5ca862008-05-27 21:13:40 +0000192
193 if (data[510] != 0x55 || data[511] != 0xaa) {
Paolo Bonzini185b4332012-03-05 08:56:10 +0100194 return -EINVAL;
bellard7a5ca862008-05-27 21:13:40 +0000195 }
196
197 for (i = 0; i < 4; i++) {
198 read_partition(&data[446 + 16 * i], &mbr[i]);
199
Max Reitz453b07b2015-02-25 13:08:15 -0500200 if (!mbr[i].system || !mbr[i].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000201 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500202 }
bellard7a5ca862008-05-27 21:13:40 +0000203
204 if (mbr[i].system == 0xF || mbr[i].system == 0x5) {
205 struct partition_record ext[4];
Eric Blakebd31c212016-05-06 10:26:42 -0600206 uint8_t data1[MBR_SIZE];
bellard7a5ca862008-05-27 21:13:40 +0000207 int j;
208
Eric Blakebd31c212016-05-06 10:26:42 -0600209 ret = blk_pread(blk, mbr[i].start_sector_abs * MBR_SIZE,
210 data1, sizeof(data1));
211 if (ret < 0) {
Markus Armbrustera4699e52015-12-18 16:35:10 +0100212 error_report("error while reading: %s", strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +0100213 exit(EXIT_FAILURE);
Ryota Ozakicb7cf0e2010-05-03 06:50:25 +0900214 }
bellard7a5ca862008-05-27 21:13:40 +0000215
216 for (j = 0; j < 4; j++) {
217 read_partition(&data1[446 + 16 * j], &ext[j]);
Max Reitz453b07b2015-02-25 13:08:15 -0500218 if (!ext[j].system || !ext[j].nb_sectors_abs) {
bellard7a5ca862008-05-27 21:13:40 +0000219 continue;
Max Reitz453b07b2015-02-25 13:08:15 -0500220 }
bellard7a5ca862008-05-27 21:13:40 +0000221
222 if ((ext_partnum + j + 1) == partition) {
223 *offset = (uint64_t)ext[j].start_sector_abs << 9;
224 *size = (uint64_t)ext[j].nb_sectors_abs << 9;
225 return 0;
226 }
227 }
228 ext_partnum += 4;
229 } else if ((i + 1) == partition) {
230 *offset = (uint64_t)mbr[i].start_sector_abs << 9;
231 *size = (uint64_t)mbr[i].nb_sectors_abs << 9;
232 return 0;
233 }
234 }
235
Paolo Bonzini185b4332012-03-05 08:56:10 +0100236 return -ENOENT;
bellard7a5ca862008-05-27 21:13:40 +0000237}
238
Paolo Bonzinibb345112011-11-04 15:51:19 +0100239static void termsig_handler(int signum)
240{
Pavel Butsykin23994a52016-04-14 13:20:15 +0300241 atomic_cmpxchg(&state, RUNNING, TERMINATE);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200242 qemu_notify_event();
Paolo Bonzinibb345112011-11-04 15:51:19 +0100243}
244
Paolo Bonzini537b41f2014-02-17 14:43:51 +0100245
Eric Blake3c1fa352018-12-15 07:53:08 -0600246#if HAVE_NBD_DEVICE
Paolo Bonzinia517e882011-11-04 15:51:21 +0100247static void *show_parts(void *arg)
thscd831bd2008-07-03 10:23:51 +0000248{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100249 char *device = arg;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100250 int nbd;
thscd831bd2008-07-03 10:23:51 +0000251
Paolo Bonzinia517e882011-11-04 15:51:21 +0100252 /* linux just needs an open() to trigger
253 * the partition table update
254 * but remember to load the module with max_part != 0 :
255 * modprobe nbd max_part=63
256 */
257 nbd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100258 if (nbd >= 0) {
Paolo Bonzinia517e882011-11-04 15:51:21 +0100259 close(nbd);
thscd831bd2008-07-03 10:23:51 +0000260 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100261 return NULL;
262}
263
264static void *nbd_client_thread(void *arg)
265{
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100266 char *device = arg;
Eric Blake081dd1f2017-07-07 15:30:49 -0500267 NBDExportInfo info = { .request_sizes = false, };
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000268 QIOChannelSocket *sioc;
269 int fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100270 int ret;
271 pthread_t show_parts_thread;
Max Reitz1ce52842015-01-26 21:02:59 -0500272 Error *local_error = NULL;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100273
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000274 sioc = qio_channel_socket_new();
275 if (qio_channel_socket_connect_sync(sioc,
276 saddr,
277 &local_error) < 0) {
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100278 error_report_err(local_error);
Stefan Hajnoczidc10e8b2012-01-05 13:16:07 +0000279 goto out;
280 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100281
Eric Blake004a89f2017-07-07 15:30:41 -0500282 ret = nbd_receive_negotiate(QIO_CHANNEL(sioc), NULL,
283 NULL, NULL, NULL, &info, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100284 if (ret < 0) {
Max Reitz1ce52842015-01-26 21:02:59 -0500285 if (local_error) {
Markus Armbruster78288672015-12-18 16:35:07 +0100286 error_report_err(local_error);
Max Reitz1ce52842015-01-26 21:02:59 -0500287 }
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100288 goto out_socket;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100289 }
290
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100291 fd = open(device, O_RDWR);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100292 if (fd < 0) {
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100293 /* Linux-only, we can use %m in printf. */
Markus Armbrusterb9884682015-12-18 16:35:18 +0100294 error_report("Failed to open %s: %m", device);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100295 goto out_socket;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100296 }
297
Eric Blake004a89f2017-07-07 15:30:41 -0500298 ret = nbd_init(fd, sioc, &info, &local_error);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100299 if (ret < 0) {
Vladimir Sementsov-Ogievskiybe41c102017-05-26 14:09:13 +0300300 error_report_err(local_error);
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100301 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100302 }
303
304 /* update partition table */
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100305 pthread_create(&show_parts_thread, NULL, show_parts, device);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100306
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100307 if (verbose) {
308 fprintf(stderr, "NBD device %s is now connected to %s\n",
309 device, srcpath);
310 } else {
311 /* Close stderr so that the qemu-nbd process exits. */
312 dup2(STDOUT_FILENO, STDERR_FILENO);
313 }
Paolo Bonzinia517e882011-11-04 15:51:21 +0100314
315 ret = nbd_client(fd);
316 if (ret) {
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100317 goto out_fd;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100318 }
319 close(fd);
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000320 object_unref(OBJECT(sioc));
Paolo Bonzinia517e882011-11-04 15:51:21 +0100321 kill(getpid(), SIGTERM);
322 return (void *) EXIT_SUCCESS;
323
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100324out_fd:
325 close(fd);
326out_socket:
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000327 object_unref(OBJECT(sioc));
Paolo Bonzinia517e882011-11-04 15:51:21 +0100328out:
329 kill(getpid(), SIGTERM);
330 return (void *) EXIT_FAILURE;
thscd831bd2008-07-03 10:23:51 +0000331}
Eric Blake3c1fa352018-12-15 07:53:08 -0600332#endif /* HAVE_NBD_DEVICE */
thscd831bd2008-07-03 10:23:51 +0000333
Fam Zhenge4afbf42015-05-19 10:50:59 +0000334static int nbd_can_accept(void)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200335{
Eric Blakedf8ad9f2017-05-26 22:04:21 -0500336 return state == RUNNING && nb_fds < shared;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200337}
338
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +0100339static void nbd_export_closed(NBDExport *export)
Paolo Bonzini7860a382012-09-18 13:31:56 +0200340{
341 assert(state == TERMINATING);
342 state = TERMINATED;
343}
344
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000345static void nbd_update_server_watch(void);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000346
Eric Blake0c9390d2017-06-08 17:26:17 -0500347static void nbd_client_closed(NBDClient *client, bool negotiated)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200348{
Paolo Bonzini1743b512011-09-19 14:33:23 +0200349 nb_fds--;
Eric Blake0c9390d2017-06-08 17:26:17 -0500350 if (negotiated && nb_fds == 0 && !persistent && state == RUNNING) {
Paolo Bonzini7860a382012-09-18 13:31:56 +0200351 state = TERMINATE;
352 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000353 nbd_update_server_watch();
Paolo Bonzini7860a382012-09-18 13:31:56 +0200354 nbd_client_put(client);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200355}
356
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000357static void nbd_accept(QIONetListener *listener, QIOChannelSocket *cioc,
358 gpointer opaque)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200359{
Paolo Bonzini7860a382012-09-18 13:31:56 +0200360 if (state >= TERMINATE) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000361 return;
Paolo Bonzini7860a382012-09-18 13:31:56 +0200362 }
363
Fam Zhengee7d7aa2016-01-14 16:41:01 +0800364 nb_fds++;
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000365 nbd_update_server_watch();
Vladimir Sementsov-Ogievskiy7f7dfe22018-10-03 20:02:28 +0300366 nbd_client_new(cioc, tlscreds, NULL, nbd_client_closed);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200367}
368
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000369static void nbd_update_server_watch(void)
Fam Zhenge4afbf42015-05-19 10:50:59 +0000370{
371 if (nbd_can_accept()) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000372 qio_net_listener_set_client_func(server, nbd_accept, NULL, NULL);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000373 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000374 qio_net_listener_set_client_func(server, NULL, NULL, NULL);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000375 }
376}
377
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100378
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200379static SocketAddress *nbd_build_socket_address(const char *sockpath,
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100380 const char *bindto,
381 const char *port)
382{
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200383 SocketAddress *saddr;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100384
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200385 saddr = g_new0(SocketAddress, 1);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100386 if (sockpath) {
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200387 saddr->type = SOCKET_ADDRESS_TYPE_UNIX;
388 saddr->u.q_unix.path = g_strdup(sockpath);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100389 } else {
Eric Blake03992932016-03-03 09:16:48 -0700390 InetSocketAddress *inet;
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200391 saddr->type = SOCKET_ADDRESS_TYPE_INET;
392 inet = &saddr->u.inet;
Eric Blake03992932016-03-03 09:16:48 -0700393 inet->host = g_strdup(bindto);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100394 if (port) {
Eric Blake03992932016-03-03 09:16:48 -0700395 inet->port = g_strdup(port);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100396 } else {
Eric Blake03992932016-03-03 09:16:48 -0700397 inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100398 }
399 }
400
401 return saddr;
402}
403
404
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000405static QemuOptsList file_opts = {
406 .name = "file",
407 .implied_opt_name = "file",
408 .head = QTAILQ_HEAD_INITIALIZER(file_opts.head),
409 .desc = {
410 /* no elements => accept any params */
411 { /* end of list */ }
412 },
413};
414
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000415static QemuOptsList qemu_object_opts = {
416 .name = "object",
417 .implied_opt_name = "qom-type",
418 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
419 .desc = {
420 { }
421 },
422};
423
424
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000425
426static QCryptoTLSCreds *nbd_get_tls_creds(const char *id, Error **errp)
427{
428 Object *obj;
429 QCryptoTLSCreds *creds;
430
431 obj = object_resolve_path_component(
432 object_get_objects_root(), id);
433 if (!obj) {
434 error_setg(errp, "No TLS credentials with id '%s'",
435 id);
436 return NULL;
437 }
438 creds = (QCryptoTLSCreds *)
439 object_dynamic_cast(obj, TYPE_QCRYPTO_TLS_CREDS);
440 if (!creds) {
441 error_setg(errp, "Object with id '%s' is not TLS credentials",
442 id);
443 return NULL;
444 }
445
446 if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_SERVER) {
447 error_setg(errp,
448 "Expecting TLS credentials with a server endpoint");
449 return NULL;
450 }
451 object_ref(obj);
452 return creds;
453}
454
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000455static void setup_address_and_port(const char **address, const char **port)
456{
457 if (*address == NULL) {
458 *address = "0.0.0.0";
459 }
460
461 if (*port == NULL) {
462 *port = stringify(NBD_DEFAULT_PORT);
463 }
464}
465
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000466/*
467 * Check socket parameters compatibility when socket activation is used.
468 */
469static const char *socket_activation_validate_opts(const char *device,
470 const char *sockpath,
471 const char *address,
472 const char *port)
473{
474 if (device != NULL) {
475 return "NBD device can't be set when using socket activation";
476 }
477
478 if (sockpath != NULL) {
479 return "Unix socket can't be set when using socket activation";
480 }
481
482 if (address != NULL) {
483 return "The interface can't be set when using socket activation";
484 }
485
486 if (port != NULL) {
487 return "TCP port number can't be set when using socket activation";
488 }
489
490 return NULL;
491}
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000492
Kevin Wolfb3b52992018-05-16 13:46:37 +0200493static void qemu_nbd_shutdown(void)
494{
495 job_cancel_sync_all();
496 bdrv_close_all();
497}
498
bellard7a5ca862008-05-27 21:13:40 +0000499int main(int argc, char **argv)
500{
Markus Armbruster26f54e92014-10-07 13:59:04 +0200501 BlockBackend *blk;
bellard7a5ca862008-05-27 21:13:40 +0000502 BlockDriverState *bs;
Eric Blake9d26dfc2019-01-17 13:36:43 -0600503 uint64_t dev_offset = 0;
Eric Blake7423f412016-07-21 13:34:46 -0600504 uint16_t nbdflags = 0;
thscd831bd2008-07-03 10:23:51 +0000505 bool disconnect = false;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000506 const char *bindto = NULL;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100507 const char *port = NULL;
508 char *sockpath = NULL;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100509 char *device = NULL;
Eric Blake9d26dfc2019-01-17 13:36:43 -0600510 int64_t fd_size;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800511 QemuOpts *sn_opts = NULL;
512 const char *sn_id_or_name = NULL;
Eric Blake636192c2019-01-11 13:47:20 -0600513 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:x:T:D:B:";
bellard7a5ca862008-05-27 21:13:40 +0000514 struct option lopt[] = {
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000515 { "help", no_argument, NULL, 'h' },
516 { "version", no_argument, NULL, 'V' },
517 { "bind", required_argument, NULL, 'b' },
518 { "port", required_argument, NULL, 'p' },
519 { "socket", required_argument, NULL, 'k' },
520 { "offset", required_argument, NULL, 'o' },
521 { "read-only", no_argument, NULL, 'r' },
522 { "partition", required_argument, NULL, 'P' },
Eric Blake636192c2019-01-11 13:47:20 -0600523 { "bitmap", required_argument, NULL, 'B' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000524 { "connect", required_argument, NULL, 'c' },
525 { "disconnect", no_argument, NULL, 'd' },
526 { "snapshot", no_argument, NULL, 's' },
527 { "load-snapshot", required_argument, NULL, 'l' },
528 { "nocache", no_argument, NULL, 'n' },
529 { "cache", required_argument, NULL, QEMU_NBD_OPT_CACHE },
530 { "aio", required_argument, NULL, QEMU_NBD_OPT_AIO },
531 { "discard", required_argument, NULL, QEMU_NBD_OPT_DISCARD },
532 { "detect-zeroes", required_argument, NULL,
533 QEMU_NBD_OPT_DETECT_ZEROES },
534 { "shared", required_argument, NULL, 'e' },
535 { "format", required_argument, NULL, 'f' },
536 { "persistent", no_argument, NULL, 't' },
537 { "verbose", no_argument, NULL, 'v' },
538 { "object", required_argument, NULL, QEMU_NBD_OPT_OBJECT },
539 { "export-name", required_argument, NULL, 'x' },
Eric Blakeb1a75b32016-10-14 13:33:03 -0500540 { "description", required_argument, NULL, 'D' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000541 { "tls-creds", required_argument, NULL, QEMU_NBD_OPT_TLSCREDS },
542 { "image-opts", no_argument, NULL, QEMU_NBD_OPT_IMAGE_OPTS },
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300543 { "trace", required_argument, NULL, 'T' },
Max Reitzffb31e12016-09-28 22:46:42 +0200544 { "fork", no_argument, NULL, QEMU_NBD_OPT_FORK },
Blue Swirl660f11b2009-07-31 21:16:51 +0000545 { NULL, 0, NULL, 0 }
bellard7a5ca862008-05-27 21:13:40 +0000546 };
547 int ch;
548 int opt_ind = 0;
bellard7a5ca862008-05-27 21:13:40 +0000549 char *end;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200550 int flags = BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000551 int partition = -1;
Max Reitz4fbec262015-02-05 13:58:19 -0500552 int ret = 0;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200553 bool seen_cache = false;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100554 bool seen_discard = false;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200555 bool seen_aio = false;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100556 pthread_t client_thread;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000557 const char *fmt = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200558 Error *local_err = NULL;
Peter Lievenb3838a42014-08-13 19:20:18 +0200559 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
Max Reitz4fbec262015-02-05 13:58:19 -0500560 QDict *options = NULL;
Vladimir Sementsov-Ogievskiyf5cd0bb2018-10-03 20:02:27 +0300561 const char *export_name = ""; /* Default export name */
Eric Blakeb1a75b32016-10-14 13:33:03 -0500562 const char *export_description = NULL;
Eric Blake636192c2019-01-11 13:47:20 -0600563 const char *bitmap = NULL;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000564 const char *tlscredsid = NULL;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000565 bool imageOpts = false;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100566 bool writethrough = true;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300567 char *trace_file = NULL;
Max Reitzffb31e12016-09-28 22:46:42 +0200568 bool fork_process = false;
569 int old_stderr = -1;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000570 unsigned socket_activation;
bellard7a5ca862008-05-27 21:13:40 +0000571
Paolo Bonzinia517e882011-11-04 15:51:21 +0100572 /* The client thread uses SIGTERM to interrupt the server. A signal
573 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
574 */
Paolo Bonzinibb345112011-11-04 15:51:19 +0100575 struct sigaction sa_sigterm;
Paolo Bonzinibb345112011-11-04 15:51:19 +0100576 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
577 sa_sigterm.sa_handler = termsig_handler;
578 sigaction(SIGTERM, &sa_sigterm, NULL);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100579
Max Reitz041e32b2017-06-11 14:37:14 +0200580#ifdef CONFIG_POSIX
581 signal(SIGPIPE, SIG_IGN);
582#endif
583
Daniel P. Berrangefe4db842016-10-04 14:35:52 +0100584 module_call_init(MODULE_INIT_TRACE);
Eric Blake3ba1b7b2018-12-15 07:53:03 -0600585 error_set_progname(argv[0]);
Eduardo Habkoste8f2d272016-05-12 11:10:04 -0300586 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100587
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000588 module_call_init(MODULE_INIT_QOM);
589 qemu_add_opts(&qemu_object_opts);
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300590 qemu_add_opts(&qemu_trace_opts);
Fam Zheng10f5bff2014-02-10 14:48:51 +0800591 qemu_init_exec_dir(argv[0]);
Paolo Bonzinibb345112011-11-04 15:51:19 +0100592
bellard7a5ca862008-05-27 21:13:40 +0000593 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
594 switch (ch) {
595 case 's':
ths2f726482008-07-03 11:47:46 +0000596 flags |= BDRV_O_SNAPSHOT;
597 break;
598 case 'n':
Paolo Bonzini39a52352012-07-18 14:57:15 +0200599 optarg = (char *) "none";
600 /* fallthrough */
601 case QEMU_NBD_OPT_CACHE:
602 if (seen_cache) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100603 error_report("-n and --cache can only be specified once");
604 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200605 }
606 seen_cache = true;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100607 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100608 error_report("Invalid cache mode `%s'", optarg);
609 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200610 }
bellard7a5ca862008-05-27 21:13:40 +0000611 break;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200612 case QEMU_NBD_OPT_AIO:
613 if (seen_aio) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100614 error_report("--aio can only be specified once");
615 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200616 }
617 seen_aio = true;
618 if (!strcmp(optarg, "native")) {
619 flags |= BDRV_O_NATIVE_AIO;
620 } else if (!strcmp(optarg, "threads")) {
621 /* this is the default */
622 } else {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100623 error_report("invalid aio mode `%s'", optarg);
624 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200625 }
626 break;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100627 case QEMU_NBD_OPT_DISCARD:
628 if (seen_discard) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100629 error_report("--discard can only be specified once");
630 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100631 }
632 seen_discard = true;
633 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100634 error_report("Invalid discard mode `%s'", optarg);
635 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100636 }
637 break;
Peter Lievenb3838a42014-08-13 19:20:18 +0200638 case QEMU_NBD_OPT_DETECT_ZEROES:
639 detect_zeroes =
Marc-André Lureauf7abe0e2017-08-24 10:46:10 +0200640 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
Peter Lievenb3838a42014-08-13 19:20:18 +0200641 optarg,
Peter Lievenb3838a42014-08-13 19:20:18 +0200642 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
643 &local_err);
644 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100645 error_reportf_err(local_err,
646 "Failed to parse detect_zeroes mode: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100647 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200648 }
649 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
650 !(flags & BDRV_O_UNMAP)) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100651 error_report("setting detect-zeroes to unmap is not allowed "
652 "without setting discard operation to unmap");
653 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200654 }
655 break;
bellard7a5ca862008-05-27 21:13:40 +0000656 case 'b':
657 bindto = optarg;
658 break;
659 case 'p':
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100660 port = optarg;
bellard7a5ca862008-05-27 21:13:40 +0000661 break;
662 case 'o':
663 dev_offset = strtoll (optarg, &end, 0);
664 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100665 error_report("Invalid offset `%s'", optarg);
666 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000667 }
bellard7a5ca862008-05-27 21:13:40 +0000668 break;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800669 case 'l':
670 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +0100671 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
672 optarg, false);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800673 if (!sn_opts) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100674 error_report("Failed in parsing snapshot param `%s'",
675 optarg);
676 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800677 }
678 } else {
679 sn_id_or_name = optarg;
680 }
681 /* fall through */
bellard7a5ca862008-05-27 21:13:40 +0000682 case 'r':
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200683 nbdflags |= NBD_FLAG_READ_ONLY;
Naphtali Sprei07108b22010-03-14 15:19:57 +0200684 flags &= ~BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000685 break;
686 case 'P':
687 partition = strtol(optarg, &end, 0);
Peter Lieven713cc672014-08-13 19:20:19 +0200688 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100689 error_report("Invalid partition `%s'", optarg);
690 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200691 }
692 if (partition < 1 || partition > 8) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100693 error_report("Invalid partition %d", partition);
694 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200695 }
bellard7a5ca862008-05-27 21:13:40 +0000696 break;
Eric Blake636192c2019-01-11 13:47:20 -0600697 case 'B':
698 bitmap = optarg;
699 break;
thscd831bd2008-07-03 10:23:51 +0000700 case 'k':
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100701 sockpath = optarg;
Peter Lieven713cc672014-08-13 19:20:19 +0200702 if (sockpath[0] != '/') {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100703 error_report("socket path must be absolute");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100704 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200705 }
thscd831bd2008-07-03 10:23:51 +0000706 break;
707 case 'd':
708 disconnect = true;
709 break;
710 case 'c':
711 device = optarg;
712 break;
ths3b05a8e2008-07-03 12:45:02 +0000713 case 'e':
714 shared = strtol(optarg, &end, 0);
715 if (*end) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100716 error_report("Invalid shared device number '%s'", optarg);
717 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000718 }
719 if (shared < 1) {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100720 error_report("Shared device number must be greater than 0");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100721 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000722 }
723 break;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000724 case 'f':
725 fmt = optarg;
726 break;
Peter Lieven713cc672014-08-13 19:20:19 +0200727 case 't':
728 persistent = 1;
729 break;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000730 case 'x':
731 export_name = optarg;
732 break;
Eric Blakeb1a75b32016-10-14 13:33:03 -0500733 case 'D':
734 export_description = optarg;
735 break;
bellard7a5ca862008-05-27 21:13:40 +0000736 case 'v':
737 verbose = 1;
738 break;
739 case 'V':
740 version(argv[0]);
741 exit(0);
742 break;
743 case 'h':
744 usage(argv[0]);
745 exit(0);
746 break;
747 case '?':
Markus Armbruster85b01e02015-12-18 16:35:04 +0100748 error_report("Try `%s --help' for more information.", argv[0]);
749 exit(EXIT_FAILURE);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000750 case QEMU_NBD_OPT_OBJECT: {
751 QemuOpts *opts;
752 opts = qemu_opts_parse_noisily(&qemu_object_opts,
753 optarg, true);
754 if (!opts) {
755 exit(EXIT_FAILURE);
756 }
757 } break;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000758 case QEMU_NBD_OPT_TLSCREDS:
759 tlscredsid = optarg;
760 break;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000761 case QEMU_NBD_OPT_IMAGE_OPTS:
762 imageOpts = true;
763 break;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300764 case 'T':
765 g_free(trace_file);
766 trace_file = trace_opt_parse(optarg);
767 break;
Max Reitzffb31e12016-09-28 22:46:42 +0200768 case QEMU_NBD_OPT_FORK:
769 fork_process = true;
770 break;
bellard7a5ca862008-05-27 21:13:40 +0000771 }
772 }
773
774 if ((argc - optind) != 1) {
Markus Armbruster433672b2015-12-18 16:35:24 +0100775 error_report("Invalid number of arguments");
776 error_printf("Try `%s --help' for more information.\n", argv[0]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100777 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000778 }
779
Markus Armbruster7e1e0c12018-10-17 10:26:43 +0200780 qemu_opts_foreach(&qemu_object_opts,
781 user_creatable_add_opts_foreach,
782 NULL, &error_fatal);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000783
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300784 if (!trace_init_backends()) {
785 exit(1);
786 }
787 trace_init_file(trace_file);
788 qemu_set_log(LOG_TRACE);
789
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000790 socket_activation = check_socket_activation();
791 if (socket_activation == 0) {
792 setup_address_and_port(&bindto, &port);
793 } else {
794 /* Using socket activation - check user didn't use -p etc. */
795 const char *err_msg = socket_activation_validate_opts(device, sockpath,
796 bindto, port);
797 if (err_msg != NULL) {
798 error_report("%s", err_msg);
799 exit(EXIT_FAILURE);
800 }
Paolo Bonzini53fabd42017-03-16 16:29:45 +0100801
802 /* qemu-nbd can only listen on a single socket. */
803 if (socket_activation > 1) {
804 error_report("qemu-nbd does not support socket activation with %s > 1",
805 "LISTEN_FDS");
806 exit(EXIT_FAILURE);
807 }
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000808 }
809
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000810 if (tlscredsid) {
811 if (sockpath) {
812 error_report("TLS is only supported with IPv4/IPv6");
813 exit(EXIT_FAILURE);
814 }
815 if (device) {
816 error_report("TLS is not supported with a host device");
817 exit(EXIT_FAILURE);
818 }
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000819 tlscreds = nbd_get_tls_creds(tlscredsid, &local_err);
820 if (local_err) {
821 error_report("Failed to get TLS creds %s",
822 error_get_pretty(local_err));
823 exit(EXIT_FAILURE);
824 }
825 }
826
Eric Blake3c1fa352018-12-15 07:53:08 -0600827#if !HAVE_NBD_DEVICE
828 if (disconnect || device) {
829 error_report("Kernel /dev/nbdN support not available");
830 exit(EXIT_FAILURE);
831 }
832#else /* HAVE_NBD_DEVICE */
thscd831bd2008-07-03 10:23:51 +0000833 if (disconnect) {
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000834 int nbdfd = open(argv[optind], O_RDWR);
835 if (nbdfd < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100836 error_report("Cannot open %s: %s", argv[optind],
837 strerror(errno));
838 exit(EXIT_FAILURE);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100839 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000840 nbd_disconnect(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000841
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000842 close(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000843
844 printf("%s disconnected\n", argv[optind]);
845
Peter Lieven713cc672014-08-13 19:20:19 +0200846 return 0;
thscd831bd2008-07-03 10:23:51 +0000847 }
Eric Blake3c1fa352018-12-15 07:53:08 -0600848#endif
thscd831bd2008-07-03 10:23:51 +0000849
Max Reitzffb31e12016-09-28 22:46:42 +0200850 if ((device && !verbose) || fork_process) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100851 int stderr_fd[2];
852 pid_t pid;
853 int ret;
854
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100855 if (qemu_pipe(stderr_fd) < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100856 error_report("Error setting up communication pipe: %s",
857 strerror(errno));
858 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100859 }
860
861 /* Now daemonize, but keep a communication channel open to
862 * print errors and exit with the proper status code.
863 */
864 pid = fork();
Max Reitz70d47392015-02-25 13:08:22 -0500865 if (pid < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100866 error_report("Failed to fork: %s", strerror(errno));
867 exit(EXIT_FAILURE);
Max Reitz70d47392015-02-25 13:08:22 -0500868 } else if (pid == 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100869 close(stderr_fd[0]);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400870 ret = qemu_daemon(1, 0);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100871
872 /* Temporarily redirect stderr to the parent's pipe... */
Max Reitzffb31e12016-09-28 22:46:42 +0200873 old_stderr = dup(STDERR_FILENO);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100874 dup2(stderr_fd[1], STDERR_FILENO);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100875 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100876 error_report("Failed to daemonize: %s", strerror(errno));
877 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100878 }
879
880 /* ... close the descriptor we inherited and go on. */
881 close(stderr_fd[1]);
882 } else {
883 bool errors = false;
884 char *buf;
885
886 /* In the parent. Print error messages from the child until
887 * it closes the pipe.
888 */
889 close(stderr_fd[1]);
890 buf = g_malloc(1024);
891 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
892 errors = true;
893 ret = qemu_write_full(STDERR_FILENO, buf, ret);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100894 if (ret < 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100895 exit(EXIT_FAILURE);
896 }
897 }
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100898 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100899 error_report("Cannot read from daemon: %s",
900 strerror(errno));
901 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100902 }
903
904 /* Usually the daemon should not print any message.
905 * Exit with zero status in that case.
906 */
907 exit(errors);
908 }
909 }
910
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100911 if (device != NULL && sockpath == NULL) {
912 sockpath = g_malloc(128);
913 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
thscd831bd2008-07-03 10:23:51 +0000914 }
915
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000916 server = qio_net_listener_new();
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000917 if (socket_activation == 0) {
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000918 saddr = nbd_build_socket_address(sockpath, bindto, port);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000919 if (qio_net_listener_open_sync(server, saddr, &local_err) < 0) {
920 object_unref(OBJECT(server));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000921 error_report_err(local_err);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000922 exit(EXIT_FAILURE);
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000923 }
924 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000925 size_t i;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000926 /* See comment in check_socket_activation above. */
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000927 for (i = 0; i < socket_activation; i++) {
928 QIOChannelSocket *sioc;
929 sioc = qio_channel_socket_new_fd(FIRST_SOCKET_ACTIVATION_FD + i,
930 &local_err);
931 if (sioc == NULL) {
932 object_unref(OBJECT(server));
933 error_report("Failed to use socket activation: %s",
934 error_get_pretty(local_err));
935 exit(EXIT_FAILURE);
936 }
937 qio_net_listener_add(server, sioc);
938 object_unref(OBJECT(sioc));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000939 }
940 }
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100941
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300942 if (qemu_init_main_loop(&local_err)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +0100943 error_report_err(local_err);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300944 exit(EXIT_FAILURE);
945 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100946 bdrv_init();
Kevin Wolfb3b52992018-05-16 13:46:37 +0200947 atexit(qemu_nbd_shutdown);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100948
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000949 srcpath = argv[optind];
950 if (imageOpts) {
951 QemuOpts *opts;
952 if (fmt) {
953 error_report("--image-opts and -f are mutually exclusive");
954 exit(EXIT_FAILURE);
955 }
956 opts = qemu_opts_parse_noisily(&file_opts, srcpath, true);
957 if (!opts) {
958 qemu_opts_reset(&file_opts);
959 exit(EXIT_FAILURE);
960 }
961 options = qemu_opts_to_qdict(opts, NULL);
962 qemu_opts_reset(&file_opts);
Max Reitzefaa7c42016-03-16 19:54:38 +0100963 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000964 } else {
965 if (fmt) {
966 options = qdict_new();
Eric Blake46f5ac22017-04-27 16:58:17 -0500967 qdict_put_str(options, "driver", fmt);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000968 }
Max Reitzefaa7c42016-03-16 19:54:38 +0100969 blk = blk_new_open(srcpath, NULL, options, flags, &local_err);
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000970 }
971
Max Reitz4fbec262015-02-05 13:58:19 -0500972 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100973 error_reportf_err(local_err, "Failed to blk_new_open '%s': ",
974 argv[optind]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100975 exit(EXIT_FAILURE);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100976 }
Max Reitz4fbec262015-02-05 13:58:19 -0500977 bs = blk_bs(blk);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100978
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100979 blk_set_enable_write_cache(blk, !writethrough);
980
Wenchao Xia8c116b02013-12-04 17:10:55 +0800981 if (sn_opts) {
982 ret = bdrv_snapshot_load_tmp(bs,
983 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
984 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
985 &local_err);
986 } else if (sn_id_or_name) {
987 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
988 &local_err);
989 }
990 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100991 error_reportf_err(local_err, "Failed to load snapshot: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100992 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800993 }
994
Peter Lievenb3838a42014-08-13 19:20:18 +0200995 bs->detect_zeroes = detect_zeroes;
Max Reitz4c58e802014-11-18 12:21:19 +0100996 fd_size = blk_getlength(blk);
Max Reitz98f44bb2015-02-25 13:08:21 -0500997 if (fd_size < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100998 error_report("Failed to determine the image length: %s",
999 strerror(-fd_size));
1000 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -05001001 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001002
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +02001003 if (dev_offset >= fd_size) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001004 error_report("Offset (%" PRIu64 ") has to be smaller than the image "
1005 "size (%" PRId64 ")", dev_offset, fd_size);
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +02001006 exit(EXIT_FAILURE);
1007 }
1008 fd_size -= dev_offset;
1009
Paolo Bonzini185b4332012-03-05 08:56:10 +01001010 if (partition != -1) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001011 uint64_t limit;
Eric Blake44859362019-01-17 13:36:41 -06001012
1013 if (dev_offset) {
1014 error_report("Cannot request partition and offset together");
1015 exit(EXIT_FAILURE);
1016 }
1017 ret = find_partition(blk, partition, &dev_offset, &limit);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001018 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001019 error_report("Could not find partition %d: %s", partition,
Markus Armbrustera4699e52015-12-18 16:35:10 +01001020 strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +01001021 exit(EXIT_FAILURE);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001022 }
Eric Blake44859362019-01-17 13:36:41 -06001023 /*
1024 * MBR partition limits are (32-bit << 9); this assert lets
Eric Blake9d26dfc2019-01-17 13:36:43 -06001025 * the compiler know that we can't overflow 64 bits.
Eric Blake44859362019-01-17 13:36:41 -06001026 */
Eric Blake9d26dfc2019-01-17 13:36:43 -06001027 assert(dev_offset + limit >= dev_offset);
Eric Blake44859362019-01-17 13:36:41 -06001028 if (dev_offset + limit > fd_size) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001029 error_report("Discovered partition %d at offset %" PRIu64
1030 " size %" PRIu64 ", but size exceeds file length %"
1031 PRId64, partition, dev_offset, limit, fd_size);
Eric Blake44859362019-01-17 13:36:41 -06001032 exit(EXIT_FAILURE);
1033 }
1034 fd_size = limit;
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001035 }
1036
Eric Blake3fa4c762019-01-11 13:47:16 -06001037 export = nbd_export_new(bs, dev_offset, fd_size, export_name,
Eric Blake636192c2019-01-11 13:47:20 -06001038 export_description, bitmap, nbdflags,
Eric Blake678ba272019-01-11 13:47:19 -06001039 nbd_export_closed, writethrough, NULL,
1040 &error_fatal);
ths3b05a8e2008-07-03 12:45:02 +00001041
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001042 if (device) {
Eric Blake3c1fa352018-12-15 07:53:08 -06001043#if HAVE_NBD_DEVICE
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001044 int ret;
1045
Paolo Bonzinia6ac2312011-12-06 09:07:00 +01001046 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001047 if (ret != 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001048 error_report("Failed to create client thread: %s", strerror(ret));
1049 exit(EXIT_FAILURE);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001050 }
Eric Blake3c1fa352018-12-15 07:53:08 -06001051#endif
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001052 } else {
1053 /* Shut up GCC warnings. */
1054 memset(&client_thread, 0, sizeof(client_thread));
1055 }
1056
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +00001057 nbd_update_server_watch();
bellard7a5ca862008-05-27 21:13:40 +00001058
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001059 /* now when the initialization is (almost) complete, chdir("/")
1060 * to free any busy filesystems */
1061 if (chdir("/") < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001062 error_report("Could not chdir to root directory: %s",
1063 strerror(errno));
1064 exit(EXIT_FAILURE);
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001065 }
1066
Max Reitzffb31e12016-09-28 22:46:42 +02001067 if (fork_process) {
1068 dup2(old_stderr, STDERR_FILENO);
1069 close(old_stderr);
1070 }
1071
Paolo Bonzini7860a382012-09-18 13:31:56 +02001072 state = RUNNING;
ths3b05a8e2008-07-03 12:45:02 +00001073 do {
Paolo Bonzinia61c6782011-09-12 17:28:11 +02001074 main_loop_wait(false);
Paolo Bonzini7860a382012-09-18 13:31:56 +02001075 if (state == TERMINATE) {
1076 state = TERMINATING;
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +01001077 nbd_export_close(export);
1078 nbd_export_put(export);
1079 export = NULL;
Paolo Bonzini7860a382012-09-18 13:31:56 +02001080 }
1081 } while (state != TERMINATED);
ths3b05a8e2008-07-03 12:45:02 +00001082
Markus Armbruster26f54e92014-10-07 13:59:04 +02001083 blk_unref(blk);
Paolo Bonzinib32f6c22011-11-04 15:51:20 +01001084 if (sockpath) {
1085 unlink(sockpath);
1086 }
bellard7a5ca862008-05-27 21:13:40 +00001087
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02001088 qemu_opts_del(sn_opts);
Wenchao Xia8c116b02013-12-04 17:10:55 +08001089
Paolo Bonzinia517e882011-11-04 15:51:21 +01001090 if (device) {
1091 void *ret;
1092 pthread_join(client_thread, &ret);
1093 exit(ret != NULL);
1094 } else {
1095 exit(EXIT_SUCCESS);
1096 }
bellard7a5ca862008-05-27 21:13:40 +00001097}