blob: 3c538700eaef7492ebcbfaa7ffaf26b61fa99a6c [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 Blake6dc16672019-01-17 13:36:46 -0600267 NBDExportInfo info = { .request_sizes = false, .name = g_strdup("") };
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 Blake6dc16672019-01-17 13:36:46 -0600282 ret = nbd_receive_negotiate(QIO_CHANNEL(sioc),
Eric Blake004a89f2017-07-07 15:30:41 -0500283 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));
Eric Blake6dc16672019-01-17 13:36:46 -0600321 g_free(info.name);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100322 kill(getpid(), SIGTERM);
323 return (void *) EXIT_SUCCESS;
324
Paolo Bonzini0c544d72014-03-14 18:10:54 +0100325out_fd:
326 close(fd);
327out_socket:
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000328 object_unref(OBJECT(sioc));
Paolo Bonzinia517e882011-11-04 15:51:21 +0100329out:
Eric Blake6dc16672019-01-17 13:36:46 -0600330 g_free(info.name);
Paolo Bonzinia517e882011-11-04 15:51:21 +0100331 kill(getpid(), SIGTERM);
332 return (void *) EXIT_FAILURE;
thscd831bd2008-07-03 10:23:51 +0000333}
Eric Blake3c1fa352018-12-15 07:53:08 -0600334#endif /* HAVE_NBD_DEVICE */
thscd831bd2008-07-03 10:23:51 +0000335
Fam Zhenge4afbf42015-05-19 10:50:59 +0000336static int nbd_can_accept(void)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200337{
Eric Blakedf8ad9f2017-05-26 22:04:21 -0500338 return state == RUNNING && nb_fds < shared;
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200339}
340
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +0100341static void nbd_export_closed(NBDExport *export)
Paolo Bonzini7860a382012-09-18 13:31:56 +0200342{
343 assert(state == TERMINATING);
344 state = TERMINATED;
345}
346
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000347static void nbd_update_server_watch(void);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000348
Eric Blake0c9390d2017-06-08 17:26:17 -0500349static void nbd_client_closed(NBDClient *client, bool negotiated)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200350{
Paolo Bonzini1743b512011-09-19 14:33:23 +0200351 nb_fds--;
Eric Blake0c9390d2017-06-08 17:26:17 -0500352 if (negotiated && nb_fds == 0 && !persistent && state == RUNNING) {
Paolo Bonzini7860a382012-09-18 13:31:56 +0200353 state = TERMINATE;
354 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000355 nbd_update_server_watch();
Paolo Bonzini7860a382012-09-18 13:31:56 +0200356 nbd_client_put(client);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200357}
358
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000359static void nbd_accept(QIONetListener *listener, QIOChannelSocket *cioc,
360 gpointer opaque)
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200361{
Paolo Bonzini7860a382012-09-18 13:31:56 +0200362 if (state >= TERMINATE) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000363 return;
Paolo Bonzini7860a382012-09-18 13:31:56 +0200364 }
365
Fam Zhengee7d7aa2016-01-14 16:41:01 +0800366 nb_fds++;
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000367 nbd_update_server_watch();
Vladimir Sementsov-Ogievskiy7f7dfe22018-10-03 20:02:28 +0300368 nbd_client_new(cioc, tlscreds, NULL, nbd_client_closed);
Paolo Bonzinia61c6782011-09-12 17:28:11 +0200369}
370
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000371static void nbd_update_server_watch(void)
Fam Zhenge4afbf42015-05-19 10:50:59 +0000372{
373 if (nbd_can_accept()) {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000374 qio_net_listener_set_client_func(server, nbd_accept, NULL, NULL);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000375 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000376 qio_net_listener_set_client_func(server, NULL, NULL, NULL);
Fam Zhenge4afbf42015-05-19 10:50:59 +0000377 }
378}
379
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100380
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200381static SocketAddress *nbd_build_socket_address(const char *sockpath,
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100382 const char *bindto,
383 const char *port)
384{
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200385 SocketAddress *saddr;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100386
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200387 saddr = g_new0(SocketAddress, 1);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100388 if (sockpath) {
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200389 saddr->type = SOCKET_ADDRESS_TYPE_UNIX;
390 saddr->u.q_unix.path = g_strdup(sockpath);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100391 } else {
Eric Blake03992932016-03-03 09:16:48 -0700392 InetSocketAddress *inet;
Markus Armbrusterbd269eb2017-04-26 09:36:41 +0200393 saddr->type = SOCKET_ADDRESS_TYPE_INET;
394 inet = &saddr->u.inet;
Eric Blake03992932016-03-03 09:16:48 -0700395 inet->host = g_strdup(bindto);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100396 if (port) {
Eric Blake03992932016-03-03 09:16:48 -0700397 inet->port = g_strdup(port);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100398 } else {
Eric Blake03992932016-03-03 09:16:48 -0700399 inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT);
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100400 }
401 }
402
403 return saddr;
404}
405
406
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000407static QemuOptsList file_opts = {
408 .name = "file",
409 .implied_opt_name = "file",
410 .head = QTAILQ_HEAD_INITIALIZER(file_opts.head),
411 .desc = {
412 /* no elements => accept any params */
413 { /* end of list */ }
414 },
415};
416
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000417static QemuOptsList qemu_object_opts = {
418 .name = "object",
419 .implied_opt_name = "qom-type",
420 .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head),
421 .desc = {
422 { }
423 },
424};
425
426
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000427
428static QCryptoTLSCreds *nbd_get_tls_creds(const char *id, Error **errp)
429{
430 Object *obj;
431 QCryptoTLSCreds *creds;
432
433 obj = object_resolve_path_component(
434 object_get_objects_root(), id);
435 if (!obj) {
436 error_setg(errp, "No TLS credentials with id '%s'",
437 id);
438 return NULL;
439 }
440 creds = (QCryptoTLSCreds *)
441 object_dynamic_cast(obj, TYPE_QCRYPTO_TLS_CREDS);
442 if (!creds) {
443 error_setg(errp, "Object with id '%s' is not TLS credentials",
444 id);
445 return NULL;
446 }
447
448 if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_SERVER) {
449 error_setg(errp,
450 "Expecting TLS credentials with a server endpoint");
451 return NULL;
452 }
453 object_ref(obj);
454 return creds;
455}
456
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000457static void setup_address_and_port(const char **address, const char **port)
458{
459 if (*address == NULL) {
460 *address = "0.0.0.0";
461 }
462
463 if (*port == NULL) {
464 *port = stringify(NBD_DEFAULT_PORT);
465 }
466}
467
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000468/*
469 * Check socket parameters compatibility when socket activation is used.
470 */
471static const char *socket_activation_validate_opts(const char *device,
472 const char *sockpath,
473 const char *address,
474 const char *port)
475{
476 if (device != NULL) {
477 return "NBD device can't be set when using socket activation";
478 }
479
480 if (sockpath != NULL) {
481 return "Unix socket can't be set when using socket activation";
482 }
483
484 if (address != NULL) {
485 return "The interface can't be set when using socket activation";
486 }
487
488 if (port != NULL) {
489 return "TCP port number can't be set when using socket activation";
490 }
491
492 return NULL;
493}
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000494
Kevin Wolfb3b52992018-05-16 13:46:37 +0200495static void qemu_nbd_shutdown(void)
496{
497 job_cancel_sync_all();
498 bdrv_close_all();
499}
500
bellard7a5ca862008-05-27 21:13:40 +0000501int main(int argc, char **argv)
502{
Markus Armbruster26f54e92014-10-07 13:59:04 +0200503 BlockBackend *blk;
bellard7a5ca862008-05-27 21:13:40 +0000504 BlockDriverState *bs;
Eric Blake9d26dfc2019-01-17 13:36:43 -0600505 uint64_t dev_offset = 0;
Eric Blake7423f412016-07-21 13:34:46 -0600506 uint16_t nbdflags = 0;
thscd831bd2008-07-03 10:23:51 +0000507 bool disconnect = false;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000508 const char *bindto = NULL;
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100509 const char *port = NULL;
510 char *sockpath = NULL;
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100511 char *device = NULL;
Eric Blake9d26dfc2019-01-17 13:36:43 -0600512 int64_t fd_size;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800513 QemuOpts *sn_opts = NULL;
514 const char *sn_id_or_name = NULL;
Eric Blake636192c2019-01-11 13:47:20 -0600515 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:x:T:D:B:";
bellard7a5ca862008-05-27 21:13:40 +0000516 struct option lopt[] = {
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000517 { "help", no_argument, NULL, 'h' },
518 { "version", no_argument, NULL, 'V' },
519 { "bind", required_argument, NULL, 'b' },
520 { "port", required_argument, NULL, 'p' },
521 { "socket", required_argument, NULL, 'k' },
522 { "offset", required_argument, NULL, 'o' },
523 { "read-only", no_argument, NULL, 'r' },
524 { "partition", required_argument, NULL, 'P' },
Eric Blake636192c2019-01-11 13:47:20 -0600525 { "bitmap", required_argument, NULL, 'B' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000526 { "connect", required_argument, NULL, 'c' },
527 { "disconnect", no_argument, NULL, 'd' },
528 { "snapshot", no_argument, NULL, 's' },
529 { "load-snapshot", required_argument, NULL, 'l' },
530 { "nocache", no_argument, NULL, 'n' },
531 { "cache", required_argument, NULL, QEMU_NBD_OPT_CACHE },
532 { "aio", required_argument, NULL, QEMU_NBD_OPT_AIO },
533 { "discard", required_argument, NULL, QEMU_NBD_OPT_DISCARD },
534 { "detect-zeroes", required_argument, NULL,
535 QEMU_NBD_OPT_DETECT_ZEROES },
536 { "shared", required_argument, NULL, 'e' },
537 { "format", required_argument, NULL, 'f' },
538 { "persistent", no_argument, NULL, 't' },
539 { "verbose", no_argument, NULL, 'v' },
540 { "object", required_argument, NULL, QEMU_NBD_OPT_OBJECT },
541 { "export-name", required_argument, NULL, 'x' },
Eric Blakeb1a75b32016-10-14 13:33:03 -0500542 { "description", required_argument, NULL, 'D' },
Daniel P. Berrangeaa6e5462016-02-17 10:10:22 +0000543 { "tls-creds", required_argument, NULL, QEMU_NBD_OPT_TLSCREDS },
544 { "image-opts", no_argument, NULL, QEMU_NBD_OPT_IMAGE_OPTS },
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300545 { "trace", required_argument, NULL, 'T' },
Max Reitzffb31e12016-09-28 22:46:42 +0200546 { "fork", no_argument, NULL, QEMU_NBD_OPT_FORK },
Blue Swirl660f11b2009-07-31 21:16:51 +0000547 { NULL, 0, NULL, 0 }
bellard7a5ca862008-05-27 21:13:40 +0000548 };
549 int ch;
550 int opt_ind = 0;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200551 int flags = BDRV_O_RDWR;
Eric Blake43b51012019-01-17 13:36:44 -0600552 int partition = 0;
Max Reitz4fbec262015-02-05 13:58:19 -0500553 int ret = 0;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200554 bool seen_cache = false;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100555 bool seen_discard = false;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200556 bool seen_aio = false;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100557 pthread_t client_thread;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000558 const char *fmt = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200559 Error *local_err = NULL;
Peter Lievenb3838a42014-08-13 19:20:18 +0200560 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
Max Reitz4fbec262015-02-05 13:58:19 -0500561 QDict *options = NULL;
Vladimir Sementsov-Ogievskiyf5cd0bb2018-10-03 20:02:27 +0300562 const char *export_name = ""; /* Default export name */
Eric Blakeb1a75b32016-10-14 13:33:03 -0500563 const char *export_description = NULL;
Eric Blake636192c2019-01-11 13:47:20 -0600564 const char *bitmap = NULL;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000565 const char *tlscredsid = NULL;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000566 bool imageOpts = false;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100567 bool writethrough = true;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300568 char *trace_file = NULL;
Max Reitzffb31e12016-09-28 22:46:42 +0200569 bool fork_process = false;
570 int old_stderr = -1;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000571 unsigned socket_activation;
bellard7a5ca862008-05-27 21:13:40 +0000572
Paolo Bonzinia517e882011-11-04 15:51:21 +0100573 /* The client thread uses SIGTERM to interrupt the server. A signal
574 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
575 */
Paolo Bonzinibb345112011-11-04 15:51:19 +0100576 struct sigaction sa_sigterm;
Paolo Bonzinibb345112011-11-04 15:51:19 +0100577 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
578 sa_sigterm.sa_handler = termsig_handler;
579 sigaction(SIGTERM, &sa_sigterm, NULL);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100580
Max Reitz041e32b2017-06-11 14:37:14 +0200581#ifdef CONFIG_POSIX
582 signal(SIGPIPE, SIG_IGN);
583#endif
584
Daniel P. Berrangefe4db842016-10-04 14:35:52 +0100585 module_call_init(MODULE_INIT_TRACE);
Eric Blake3ba1b7b2018-12-15 07:53:03 -0600586 error_set_progname(argv[0]);
Eduardo Habkoste8f2d272016-05-12 11:10:04 -0300587 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100588
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000589 module_call_init(MODULE_INIT_QOM);
590 qemu_add_opts(&qemu_object_opts);
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300591 qemu_add_opts(&qemu_trace_opts);
Fam Zheng10f5bff2014-02-10 14:48:51 +0800592 qemu_init_exec_dir(argv[0]);
Paolo Bonzinibb345112011-11-04 15:51:19 +0100593
bellard7a5ca862008-05-27 21:13:40 +0000594 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
595 switch (ch) {
596 case 's':
ths2f726482008-07-03 11:47:46 +0000597 flags |= BDRV_O_SNAPSHOT;
598 break;
599 case 'n':
Paolo Bonzini39a52352012-07-18 14:57:15 +0200600 optarg = (char *) "none";
601 /* fallthrough */
602 case QEMU_NBD_OPT_CACHE:
603 if (seen_cache) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100604 error_report("-n and --cache can only be specified once");
605 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200606 }
607 seen_cache = true;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100608 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100609 error_report("Invalid cache mode `%s'", optarg);
610 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200611 }
bellard7a5ca862008-05-27 21:13:40 +0000612 break;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200613 case QEMU_NBD_OPT_AIO:
614 if (seen_aio) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100615 error_report("--aio can only be specified once");
616 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200617 }
618 seen_aio = true;
619 if (!strcmp(optarg, "native")) {
620 flags |= BDRV_O_NATIVE_AIO;
621 } else if (!strcmp(optarg, "threads")) {
622 /* this is the default */
623 } else {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100624 error_report("invalid aio mode `%s'", optarg);
625 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200626 }
627 break;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100628 case QEMU_NBD_OPT_DISCARD:
629 if (seen_discard) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100630 error_report("--discard can only be specified once");
631 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100632 }
633 seen_discard = true;
634 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100635 error_report("Invalid discard mode `%s'", optarg);
636 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100637 }
638 break;
Peter Lievenb3838a42014-08-13 19:20:18 +0200639 case QEMU_NBD_OPT_DETECT_ZEROES:
640 detect_zeroes =
Marc-André Lureauf7abe0e2017-08-24 10:46:10 +0200641 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
Peter Lievenb3838a42014-08-13 19:20:18 +0200642 optarg,
Peter Lievenb3838a42014-08-13 19:20:18 +0200643 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
644 &local_err);
645 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100646 error_reportf_err(local_err,
647 "Failed to parse detect_zeroes mode: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100648 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200649 }
650 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
651 !(flags & BDRV_O_UNMAP)) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100652 error_report("setting detect-zeroes to unmap is not allowed "
653 "without setting discard operation to unmap");
654 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200655 }
656 break;
bellard7a5ca862008-05-27 21:13:40 +0000657 case 'b':
658 bindto = optarg;
659 break;
660 case 'p':
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100661 port = optarg;
bellard7a5ca862008-05-27 21:13:40 +0000662 break;
663 case 'o':
Eric Blake43b51012019-01-17 13:36:44 -0600664 if (qemu_strtou64(optarg, NULL, 0, &dev_offset) < 0) {
665 error_report("Invalid offset '%s'", optarg);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100666 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':
Eric Blake43b51012019-01-17 13:36:44 -0600687 if (qemu_strtoi(optarg, NULL, 0, &partition) < 0 ||
688 partition < 1 || partition > 8) {
689 error_report("Invalid partition '%s'", optarg);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100690 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200691 }
bellard7a5ca862008-05-27 21:13:40 +0000692 break;
Eric Blake636192c2019-01-11 13:47:20 -0600693 case 'B':
694 bitmap = optarg;
695 break;
thscd831bd2008-07-03 10:23:51 +0000696 case 'k':
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100697 sockpath = optarg;
Peter Lieven713cc672014-08-13 19:20:19 +0200698 if (sockpath[0] != '/') {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100699 error_report("socket path must be absolute");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100700 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200701 }
thscd831bd2008-07-03 10:23:51 +0000702 break;
703 case 'd':
704 disconnect = true;
705 break;
706 case 'c':
707 device = optarg;
708 break;
ths3b05a8e2008-07-03 12:45:02 +0000709 case 'e':
Eric Blake43b51012019-01-17 13:36:44 -0600710 if (qemu_strtoi(optarg, NULL, 0, &shared) < 0 ||
711 shared < 1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100712 error_report("Invalid shared device number '%s'", optarg);
713 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000714 }
ths3b05a8e2008-07-03 12:45:02 +0000715 break;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000716 case 'f':
717 fmt = optarg;
718 break;
Peter Lieven713cc672014-08-13 19:20:19 +0200719 case 't':
720 persistent = 1;
721 break;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000722 case 'x':
723 export_name = optarg;
724 break;
Eric Blakeb1a75b32016-10-14 13:33:03 -0500725 case 'D':
726 export_description = optarg;
727 break;
bellard7a5ca862008-05-27 21:13:40 +0000728 case 'v':
729 verbose = 1;
730 break;
731 case 'V':
732 version(argv[0]);
733 exit(0);
734 break;
735 case 'h':
736 usage(argv[0]);
737 exit(0);
738 break;
739 case '?':
Markus Armbruster85b01e02015-12-18 16:35:04 +0100740 error_report("Try `%s --help' for more information.", argv[0]);
741 exit(EXIT_FAILURE);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000742 case QEMU_NBD_OPT_OBJECT: {
743 QemuOpts *opts;
744 opts = qemu_opts_parse_noisily(&qemu_object_opts,
745 optarg, true);
746 if (!opts) {
747 exit(EXIT_FAILURE);
748 }
749 } break;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000750 case QEMU_NBD_OPT_TLSCREDS:
751 tlscredsid = optarg;
752 break;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000753 case QEMU_NBD_OPT_IMAGE_OPTS:
754 imageOpts = true;
755 break;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300756 case 'T':
757 g_free(trace_file);
758 trace_file = trace_opt_parse(optarg);
759 break;
Max Reitzffb31e12016-09-28 22:46:42 +0200760 case QEMU_NBD_OPT_FORK:
761 fork_process = true;
762 break;
bellard7a5ca862008-05-27 21:13:40 +0000763 }
764 }
765
766 if ((argc - optind) != 1) {
Markus Armbruster433672b2015-12-18 16:35:24 +0100767 error_report("Invalid number of arguments");
768 error_printf("Try `%s --help' for more information.\n", argv[0]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100769 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000770 }
771
Markus Armbruster7e1e0c12018-10-17 10:26:43 +0200772 qemu_opts_foreach(&qemu_object_opts,
773 user_creatable_add_opts_foreach,
774 NULL, &error_fatal);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000775
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 }
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000811 tlscreds = nbd_get_tls_creds(tlscredsid, &local_err);
812 if (local_err) {
813 error_report("Failed to get TLS creds %s",
814 error_get_pretty(local_err));
815 exit(EXIT_FAILURE);
816 }
817 }
818
Eric Blake3c1fa352018-12-15 07:53:08 -0600819#if !HAVE_NBD_DEVICE
820 if (disconnect || device) {
821 error_report("Kernel /dev/nbdN support not available");
822 exit(EXIT_FAILURE);
823 }
824#else /* HAVE_NBD_DEVICE */
thscd831bd2008-07-03 10:23:51 +0000825 if (disconnect) {
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000826 int nbdfd = open(argv[optind], O_RDWR);
827 if (nbdfd < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100828 error_report("Cannot open %s: %s", argv[optind],
829 strerror(errno));
830 exit(EXIT_FAILURE);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100831 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000832 nbd_disconnect(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000833
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000834 close(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000835
836 printf("%s disconnected\n", argv[optind]);
837
Peter Lieven713cc672014-08-13 19:20:19 +0200838 return 0;
thscd831bd2008-07-03 10:23:51 +0000839 }
Eric Blake3c1fa352018-12-15 07:53:08 -0600840#endif
thscd831bd2008-07-03 10:23:51 +0000841
Max Reitzffb31e12016-09-28 22:46:42 +0200842 if ((device && !verbose) || fork_process) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100843 int stderr_fd[2];
844 pid_t pid;
845 int ret;
846
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100847 if (qemu_pipe(stderr_fd) < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100848 error_report("Error setting up communication pipe: %s",
849 strerror(errno));
850 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100851 }
852
853 /* Now daemonize, but keep a communication channel open to
854 * print errors and exit with the proper status code.
855 */
856 pid = fork();
Max Reitz70d47392015-02-25 13:08:22 -0500857 if (pid < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100858 error_report("Failed to fork: %s", strerror(errno));
859 exit(EXIT_FAILURE);
Max Reitz70d47392015-02-25 13:08:22 -0500860 } else if (pid == 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100861 close(stderr_fd[0]);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400862 ret = qemu_daemon(1, 0);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100863
864 /* Temporarily redirect stderr to the parent's pipe... */
Max Reitzffb31e12016-09-28 22:46:42 +0200865 old_stderr = dup(STDERR_FILENO);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100866 dup2(stderr_fd[1], STDERR_FILENO);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100867 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100868 error_report("Failed to daemonize: %s", strerror(errno));
869 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100870 }
871
872 /* ... close the descriptor we inherited and go on. */
873 close(stderr_fd[1]);
874 } else {
875 bool errors = false;
876 char *buf;
877
878 /* In the parent. Print error messages from the child until
879 * it closes the pipe.
880 */
881 close(stderr_fd[1]);
882 buf = g_malloc(1024);
883 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
884 errors = true;
885 ret = qemu_write_full(STDERR_FILENO, buf, ret);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100886 if (ret < 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100887 exit(EXIT_FAILURE);
888 }
889 }
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100890 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100891 error_report("Cannot read from daemon: %s",
892 strerror(errno));
893 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100894 }
895
896 /* Usually the daemon should not print any message.
897 * Exit with zero status in that case.
898 */
899 exit(errors);
900 }
901 }
902
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100903 if (device != NULL && sockpath == NULL) {
904 sockpath = g_malloc(128);
905 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
thscd831bd2008-07-03 10:23:51 +0000906 }
907
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000908 server = qio_net_listener_new();
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000909 if (socket_activation == 0) {
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000910 saddr = nbd_build_socket_address(sockpath, bindto, port);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000911 if (qio_net_listener_open_sync(server, saddr, &local_err) < 0) {
912 object_unref(OBJECT(server));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000913 error_report_err(local_err);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000914 exit(EXIT_FAILURE);
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000915 }
916 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000917 size_t i;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000918 /* See comment in check_socket_activation above. */
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000919 for (i = 0; i < socket_activation; i++) {
920 QIOChannelSocket *sioc;
921 sioc = qio_channel_socket_new_fd(FIRST_SOCKET_ACTIVATION_FD + i,
922 &local_err);
923 if (sioc == NULL) {
924 object_unref(OBJECT(server));
925 error_report("Failed to use socket activation: %s",
926 error_get_pretty(local_err));
927 exit(EXIT_FAILURE);
928 }
929 qio_net_listener_add(server, sioc);
930 object_unref(OBJECT(sioc));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000931 }
932 }
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100933
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300934 if (qemu_init_main_loop(&local_err)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +0100935 error_report_err(local_err);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300936 exit(EXIT_FAILURE);
937 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100938 bdrv_init();
Kevin Wolfb3b52992018-05-16 13:46:37 +0200939 atexit(qemu_nbd_shutdown);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100940
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000941 srcpath = argv[optind];
942 if (imageOpts) {
943 QemuOpts *opts;
944 if (fmt) {
945 error_report("--image-opts and -f are mutually exclusive");
946 exit(EXIT_FAILURE);
947 }
948 opts = qemu_opts_parse_noisily(&file_opts, srcpath, true);
949 if (!opts) {
950 qemu_opts_reset(&file_opts);
951 exit(EXIT_FAILURE);
952 }
953 options = qemu_opts_to_qdict(opts, NULL);
954 qemu_opts_reset(&file_opts);
Max Reitzefaa7c42016-03-16 19:54:38 +0100955 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000956 } else {
957 if (fmt) {
958 options = qdict_new();
Eric Blake46f5ac22017-04-27 16:58:17 -0500959 qdict_put_str(options, "driver", fmt);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000960 }
Max Reitzefaa7c42016-03-16 19:54:38 +0100961 blk = blk_new_open(srcpath, NULL, options, flags, &local_err);
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000962 }
963
Max Reitz4fbec262015-02-05 13:58:19 -0500964 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100965 error_reportf_err(local_err, "Failed to blk_new_open '%s': ",
966 argv[optind]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100967 exit(EXIT_FAILURE);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100968 }
Max Reitz4fbec262015-02-05 13:58:19 -0500969 bs = blk_bs(blk);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100970
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100971 blk_set_enable_write_cache(blk, !writethrough);
972
Wenchao Xia8c116b02013-12-04 17:10:55 +0800973 if (sn_opts) {
974 ret = bdrv_snapshot_load_tmp(bs,
975 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
976 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
977 &local_err);
978 } else if (sn_id_or_name) {
979 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
980 &local_err);
981 }
982 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100983 error_reportf_err(local_err, "Failed to load snapshot: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100984 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800985 }
986
Peter Lievenb3838a42014-08-13 19:20:18 +0200987 bs->detect_zeroes = detect_zeroes;
Max Reitz4c58e802014-11-18 12:21:19 +0100988 fd_size = blk_getlength(blk);
Max Reitz98f44bb2015-02-25 13:08:21 -0500989 if (fd_size < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100990 error_report("Failed to determine the image length: %s",
991 strerror(-fd_size));
992 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -0500993 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100994
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +0200995 if (dev_offset >= fd_size) {
Eric Blake9d26dfc2019-01-17 13:36:43 -0600996 error_report("Offset (%" PRIu64 ") has to be smaller than the image "
997 "size (%" PRId64 ")", dev_offset, fd_size);
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +0200998 exit(EXIT_FAILURE);
999 }
1000 fd_size -= dev_offset;
1001
Eric Blake43b51012019-01-17 13:36:44 -06001002 if (partition) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001003 uint64_t limit;
Eric Blake44859362019-01-17 13:36:41 -06001004
1005 if (dev_offset) {
1006 error_report("Cannot request partition and offset together");
1007 exit(EXIT_FAILURE);
1008 }
1009 ret = find_partition(blk, partition, &dev_offset, &limit);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001010 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001011 error_report("Could not find partition %d: %s", partition,
Markus Armbrustera4699e52015-12-18 16:35:10 +01001012 strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +01001013 exit(EXIT_FAILURE);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001014 }
Eric Blake44859362019-01-17 13:36:41 -06001015 /*
1016 * MBR partition limits are (32-bit << 9); this assert lets
Eric Blake9d26dfc2019-01-17 13:36:43 -06001017 * the compiler know that we can't overflow 64 bits.
Eric Blake44859362019-01-17 13:36:41 -06001018 */
Eric Blake9d26dfc2019-01-17 13:36:43 -06001019 assert(dev_offset + limit >= dev_offset);
Eric Blake44859362019-01-17 13:36:41 -06001020 if (dev_offset + limit > fd_size) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001021 error_report("Discovered partition %d at offset %" PRIu64
1022 " size %" PRIu64 ", but size exceeds file length %"
1023 PRId64, partition, dev_offset, limit, fd_size);
Eric Blake44859362019-01-17 13:36:41 -06001024 exit(EXIT_FAILURE);
1025 }
1026 fd_size = limit;
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001027 }
1028
Eric Blake3fa4c762019-01-11 13:47:16 -06001029 export = nbd_export_new(bs, dev_offset, fd_size, export_name,
Eric Blake636192c2019-01-11 13:47:20 -06001030 export_description, bitmap, nbdflags,
Eric Blake678ba272019-01-11 13:47:19 -06001031 nbd_export_closed, writethrough, NULL,
1032 &error_fatal);
ths3b05a8e2008-07-03 12:45:02 +00001033
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001034 if (device) {
Eric Blake3c1fa352018-12-15 07:53:08 -06001035#if HAVE_NBD_DEVICE
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001036 int ret;
1037
Paolo Bonzinia6ac2312011-12-06 09:07:00 +01001038 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001039 if (ret != 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001040 error_report("Failed to create client thread: %s", strerror(ret));
1041 exit(EXIT_FAILURE);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001042 }
Eric Blake3c1fa352018-12-15 07:53:08 -06001043#endif
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001044 } else {
1045 /* Shut up GCC warnings. */
1046 memset(&client_thread, 0, sizeof(client_thread));
1047 }
1048
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +00001049 nbd_update_server_watch();
bellard7a5ca862008-05-27 21:13:40 +00001050
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001051 /* now when the initialization is (almost) complete, chdir("/")
1052 * to free any busy filesystems */
1053 if (chdir("/") < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001054 error_report("Could not chdir to root directory: %s",
1055 strerror(errno));
1056 exit(EXIT_FAILURE);
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001057 }
1058
Max Reitzffb31e12016-09-28 22:46:42 +02001059 if (fork_process) {
1060 dup2(old_stderr, STDERR_FILENO);
1061 close(old_stderr);
1062 }
1063
Paolo Bonzini7860a382012-09-18 13:31:56 +02001064 state = RUNNING;
ths3b05a8e2008-07-03 12:45:02 +00001065 do {
Paolo Bonzinia61c6782011-09-12 17:28:11 +02001066 main_loop_wait(false);
Paolo Bonzini7860a382012-09-18 13:31:56 +02001067 if (state == TERMINATE) {
1068 state = TERMINATING;
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +01001069 nbd_export_close(export);
1070 nbd_export_put(export);
1071 export = NULL;
Paolo Bonzini7860a382012-09-18 13:31:56 +02001072 }
1073 } while (state != TERMINATED);
ths3b05a8e2008-07-03 12:45:02 +00001074
Markus Armbruster26f54e92014-10-07 13:59:04 +02001075 blk_unref(blk);
Paolo Bonzinib32f6c22011-11-04 15:51:20 +01001076 if (sockpath) {
1077 unlink(sockpath);
1078 }
bellard7a5ca862008-05-27 21:13:40 +00001079
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02001080 qemu_opts_del(sn_opts);
Wenchao Xia8c116b02013-12-04 17:10:55 +08001081
Paolo Bonzinia517e882011-11-04 15:51:21 +01001082 if (device) {
1083 void *ret;
1084 pthread_join(client_thread, &ret);
1085 exit(ret != NULL);
1086 } else {
1087 exit(EXIT_SUCCESS);
1088 }
bellard7a5ca862008-05-27 21:13:40 +00001089}