blob: efca0e44a90c153e0dc06650a5e5c7f5a4af11bb [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;
Naphtali Spreif5edb012010-01-17 16:48:13 +0200549 int flags = BDRV_O_RDWR;
Eric Blake43b51012019-01-17 13:36:44 -0600550 int partition = 0;
Max Reitz4fbec262015-02-05 13:58:19 -0500551 int ret = 0;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200552 bool seen_cache = false;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100553 bool seen_discard = false;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200554 bool seen_aio = false;
Paolo Bonzinia517e882011-11-04 15:51:21 +0100555 pthread_t client_thread;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000556 const char *fmt = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +0200557 Error *local_err = NULL;
Peter Lievenb3838a42014-08-13 19:20:18 +0200558 BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
Max Reitz4fbec262015-02-05 13:58:19 -0500559 QDict *options = NULL;
Vladimir Sementsov-Ogievskiyf5cd0bb2018-10-03 20:02:27 +0300560 const char *export_name = ""; /* Default export name */
Eric Blakeb1a75b32016-10-14 13:33:03 -0500561 const char *export_description = NULL;
Eric Blake636192c2019-01-11 13:47:20 -0600562 const char *bitmap = NULL;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000563 const char *tlscredsid = NULL;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000564 bool imageOpts = false;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100565 bool writethrough = true;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300566 char *trace_file = NULL;
Max Reitzffb31e12016-09-28 22:46:42 +0200567 bool fork_process = false;
568 int old_stderr = -1;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000569 unsigned socket_activation;
bellard7a5ca862008-05-27 21:13:40 +0000570
Paolo Bonzinia517e882011-11-04 15:51:21 +0100571 /* The client thread uses SIGTERM to interrupt the server. A signal
572 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
573 */
Paolo Bonzinibb345112011-11-04 15:51:19 +0100574 struct sigaction sa_sigterm;
Paolo Bonzinibb345112011-11-04 15:51:19 +0100575 memset(&sa_sigterm, 0, sizeof(sa_sigterm));
576 sa_sigterm.sa_handler = termsig_handler;
577 sigaction(SIGTERM, &sa_sigterm, NULL);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100578
Max Reitz041e32b2017-06-11 14:37:14 +0200579#ifdef CONFIG_POSIX
580 signal(SIGPIPE, SIG_IGN);
581#endif
582
Daniel P. Berrangefe4db842016-10-04 14:35:52 +0100583 module_call_init(MODULE_INIT_TRACE);
Eric Blake3ba1b7b2018-12-15 07:53:03 -0600584 error_set_progname(argv[0]);
Eduardo Habkoste8f2d272016-05-12 11:10:04 -0300585 qcrypto_init(&error_fatal);
Daniel P. Berrangec2297082016-04-06 12:12:06 +0100586
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000587 module_call_init(MODULE_INIT_QOM);
588 qemu_add_opts(&qemu_object_opts);
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300589 qemu_add_opts(&qemu_trace_opts);
Fam Zheng10f5bff2014-02-10 14:48:51 +0800590 qemu_init_exec_dir(argv[0]);
Paolo Bonzinibb345112011-11-04 15:51:19 +0100591
bellard7a5ca862008-05-27 21:13:40 +0000592 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
593 switch (ch) {
594 case 's':
ths2f726482008-07-03 11:47:46 +0000595 flags |= BDRV_O_SNAPSHOT;
596 break;
597 case 'n':
Paolo Bonzini39a52352012-07-18 14:57:15 +0200598 optarg = (char *) "none";
599 /* fallthrough */
600 case QEMU_NBD_OPT_CACHE:
601 if (seen_cache) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100602 error_report("-n and --cache can only be specified once");
603 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200604 }
605 seen_cache = true;
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100606 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100607 error_report("Invalid cache mode `%s'", optarg);
608 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200609 }
bellard7a5ca862008-05-27 21:13:40 +0000610 break;
Paolo Bonzini39a52352012-07-18 14:57:15 +0200611 case QEMU_NBD_OPT_AIO:
612 if (seen_aio) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100613 error_report("--aio can only be specified once");
614 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200615 }
616 seen_aio = true;
617 if (!strcmp(optarg, "native")) {
618 flags |= BDRV_O_NATIVE_AIO;
619 } else if (!strcmp(optarg, "threads")) {
620 /* this is the default */
621 } else {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100622 error_report("invalid aio mode `%s'", optarg);
623 exit(EXIT_FAILURE);
Paolo Bonzini39a52352012-07-18 14:57:15 +0200624 }
625 break;
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100626 case QEMU_NBD_OPT_DISCARD:
627 if (seen_discard) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100628 error_report("--discard can only be specified once");
629 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100630 }
631 seen_discard = true;
632 if (bdrv_parse_discard_flags(optarg, &flags) == -1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100633 error_report("Invalid discard mode `%s'", optarg);
634 exit(EXIT_FAILURE);
Paolo Bonzinided9d2d2013-02-08 14:06:13 +0100635 }
636 break;
Peter Lievenb3838a42014-08-13 19:20:18 +0200637 case QEMU_NBD_OPT_DETECT_ZEROES:
638 detect_zeroes =
Marc-André Lureauf7abe0e2017-08-24 10:46:10 +0200639 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
Peter Lievenb3838a42014-08-13 19:20:18 +0200640 optarg,
Peter Lievenb3838a42014-08-13 19:20:18 +0200641 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
642 &local_err);
643 if (local_err) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100644 error_reportf_err(local_err,
645 "Failed to parse detect_zeroes mode: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100646 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200647 }
648 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
649 !(flags & BDRV_O_UNMAP)) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100650 error_report("setting detect-zeroes to unmap is not allowed "
651 "without setting discard operation to unmap");
652 exit(EXIT_FAILURE);
Peter Lievenb3838a42014-08-13 19:20:18 +0200653 }
654 break;
bellard7a5ca862008-05-27 21:13:40 +0000655 case 'b':
656 bindto = optarg;
657 break;
658 case 'p':
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100659 port = optarg;
bellard7a5ca862008-05-27 21:13:40 +0000660 break;
661 case 'o':
Eric Blake43b51012019-01-17 13:36:44 -0600662 if (qemu_strtou64(optarg, NULL, 0, &dev_offset) < 0) {
663 error_report("Invalid offset '%s'", optarg);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100664 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000665 }
bellard7a5ca862008-05-27 21:13:40 +0000666 break;
Wenchao Xia8c116b02013-12-04 17:10:55 +0800667 case 'l':
668 if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) {
Markus Armbruster70b94332015-02-13 12:50:26 +0100669 sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts,
670 optarg, false);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800671 if (!sn_opts) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100672 error_report("Failed in parsing snapshot param `%s'",
673 optarg);
674 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800675 }
676 } else {
677 sn_id_or_name = optarg;
678 }
679 /* fall through */
bellard7a5ca862008-05-27 21:13:40 +0000680 case 'r':
Paolo Bonzinib90fb4b2011-09-08 17:24:54 +0200681 nbdflags |= NBD_FLAG_READ_ONLY;
Naphtali Sprei07108b22010-03-14 15:19:57 +0200682 flags &= ~BDRV_O_RDWR;
bellard7a5ca862008-05-27 21:13:40 +0000683 break;
684 case 'P':
Eric Blake43b51012019-01-17 13:36:44 -0600685 if (qemu_strtoi(optarg, NULL, 0, &partition) < 0 ||
686 partition < 1 || partition > 8) {
687 error_report("Invalid partition '%s'", optarg);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100688 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200689 }
bellard7a5ca862008-05-27 21:13:40 +0000690 break;
Eric Blake636192c2019-01-11 13:47:20 -0600691 case 'B':
692 bitmap = optarg;
693 break;
thscd831bd2008-07-03 10:23:51 +0000694 case 'k':
Paolo Bonzinib32f6c22011-11-04 15:51:20 +0100695 sockpath = optarg;
Peter Lieven713cc672014-08-13 19:20:19 +0200696 if (sockpath[0] != '/') {
Markus Armbruster9af9e0f2015-12-18 16:35:19 +0100697 error_report("socket path must be absolute");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100698 exit(EXIT_FAILURE);
Peter Lieven713cc672014-08-13 19:20:19 +0200699 }
thscd831bd2008-07-03 10:23:51 +0000700 break;
701 case 'd':
702 disconnect = true;
703 break;
704 case 'c':
705 device = optarg;
706 break;
ths3b05a8e2008-07-03 12:45:02 +0000707 case 'e':
Eric Blake43b51012019-01-17 13:36:44 -0600708 if (qemu_strtoi(optarg, NULL, 0, &shared) < 0 ||
709 shared < 1) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100710 error_report("Invalid shared device number '%s'", optarg);
711 exit(EXIT_FAILURE);
ths3b05a8e2008-07-03 12:45:02 +0000712 }
ths3b05a8e2008-07-03 12:45:02 +0000713 break;
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000714 case 'f':
715 fmt = optarg;
716 break;
Peter Lieven713cc672014-08-13 19:20:19 +0200717 case 't':
718 persistent = 1;
719 break;
Daniel P. Berrange3d4b2f92016-02-10 18:41:08 +0000720 case 'x':
721 export_name = optarg;
722 break;
Eric Blakeb1a75b32016-10-14 13:33:03 -0500723 case 'D':
724 export_description = optarg;
725 break;
bellard7a5ca862008-05-27 21:13:40 +0000726 case 'v':
727 verbose = 1;
728 break;
729 case 'V':
730 version(argv[0]);
731 exit(0);
732 break;
733 case 'h':
734 usage(argv[0]);
735 exit(0);
736 break;
737 case '?':
Markus Armbruster85b01e02015-12-18 16:35:04 +0100738 error_report("Try `%s --help' for more information.", argv[0]);
739 exit(EXIT_FAILURE);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000740 case QEMU_NBD_OPT_OBJECT: {
741 QemuOpts *opts;
742 opts = qemu_opts_parse_noisily(&qemu_object_opts,
743 optarg, true);
744 if (!opts) {
745 exit(EXIT_FAILURE);
746 }
747 } break;
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000748 case QEMU_NBD_OPT_TLSCREDS:
749 tlscredsid = optarg;
750 break;
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000751 case QEMU_NBD_OPT_IMAGE_OPTS:
752 imageOpts = true;
753 break;
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300754 case 'T':
755 g_free(trace_file);
756 trace_file = trace_opt_parse(optarg);
757 break;
Max Reitzffb31e12016-09-28 22:46:42 +0200758 case QEMU_NBD_OPT_FORK:
759 fork_process = true;
760 break;
bellard7a5ca862008-05-27 21:13:40 +0000761 }
762 }
763
764 if ((argc - optind) != 1) {
Markus Armbruster433672b2015-12-18 16:35:24 +0100765 error_report("Invalid number of arguments");
766 error_printf("Try `%s --help' for more information.\n", argv[0]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100767 exit(EXIT_FAILURE);
bellard7a5ca862008-05-27 21:13:40 +0000768 }
769
Markus Armbruster7e1e0c12018-10-17 10:26:43 +0200770 qemu_opts_foreach(&qemu_object_opts,
771 user_creatable_add_opts_foreach,
772 NULL, &error_fatal);
Daniel P. Berrange0ab3b332016-02-10 18:41:00 +0000773
Denis V. Lunev39ca4632016-06-17 17:44:12 +0300774 if (!trace_init_backends()) {
775 exit(1);
776 }
777 trace_init_file(trace_file);
778 qemu_set_log(LOG_TRACE);
779
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000780 socket_activation = check_socket_activation();
781 if (socket_activation == 0) {
782 setup_address_and_port(&bindto, &port);
783 } else {
784 /* Using socket activation - check user didn't use -p etc. */
785 const char *err_msg = socket_activation_validate_opts(device, sockpath,
786 bindto, port);
787 if (err_msg != NULL) {
788 error_report("%s", err_msg);
789 exit(EXIT_FAILURE);
790 }
Paolo Bonzini53fabd42017-03-16 16:29:45 +0100791
792 /* qemu-nbd can only listen on a single socket. */
793 if (socket_activation > 1) {
794 error_report("qemu-nbd does not support socket activation with %s > 1",
795 "LISTEN_FDS");
796 exit(EXIT_FAILURE);
797 }
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000798 }
799
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000800 if (tlscredsid) {
801 if (sockpath) {
802 error_report("TLS is only supported with IPv4/IPv6");
803 exit(EXIT_FAILURE);
804 }
805 if (device) {
806 error_report("TLS is not supported with a host device");
807 exit(EXIT_FAILURE);
808 }
Daniel P. Berrange145614a2016-02-10 18:41:13 +0000809 tlscreds = nbd_get_tls_creds(tlscredsid, &local_err);
810 if (local_err) {
811 error_report("Failed to get TLS creds %s",
812 error_get_pretty(local_err));
813 exit(EXIT_FAILURE);
814 }
815 }
816
Eric Blake3c1fa352018-12-15 07:53:08 -0600817#if !HAVE_NBD_DEVICE
818 if (disconnect || device) {
819 error_report("Kernel /dev/nbdN support not available");
820 exit(EXIT_FAILURE);
821 }
822#else /* HAVE_NBD_DEVICE */
thscd831bd2008-07-03 10:23:51 +0000823 if (disconnect) {
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000824 int nbdfd = open(argv[optind], O_RDWR);
825 if (nbdfd < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100826 error_report("Cannot open %s: %s", argv[optind],
827 strerror(errno));
828 exit(EXIT_FAILURE);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100829 }
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000830 nbd_disconnect(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000831
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +0000832 close(nbdfd);
thscd831bd2008-07-03 10:23:51 +0000833
834 printf("%s disconnected\n", argv[optind]);
835
Peter Lieven713cc672014-08-13 19:20:19 +0200836 return 0;
thscd831bd2008-07-03 10:23:51 +0000837 }
Eric Blake3c1fa352018-12-15 07:53:08 -0600838#endif
thscd831bd2008-07-03 10:23:51 +0000839
Max Reitzffb31e12016-09-28 22:46:42 +0200840 if ((device && !verbose) || fork_process) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100841 int stderr_fd[2];
842 pid_t pid;
843 int ret;
844
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100845 if (qemu_pipe(stderr_fd) < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100846 error_report("Error setting up communication pipe: %s",
847 strerror(errno));
848 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100849 }
850
851 /* Now daemonize, but keep a communication channel open to
852 * print errors and exit with the proper status code.
853 */
854 pid = fork();
Max Reitz70d47392015-02-25 13:08:22 -0500855 if (pid < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100856 error_report("Failed to fork: %s", strerror(errno));
857 exit(EXIT_FAILURE);
Max Reitz70d47392015-02-25 13:08:22 -0500858 } else if (pid == 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100859 close(stderr_fd[0]);
Michael Tokarev9faf31b2012-01-16 18:37:44 +0400860 ret = qemu_daemon(1, 0);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100861
862 /* Temporarily redirect stderr to the parent's pipe... */
Max Reitzffb31e12016-09-28 22:46:42 +0200863 old_stderr = dup(STDERR_FILENO);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100864 dup2(stderr_fd[1], STDERR_FILENO);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100865 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100866 error_report("Failed to daemonize: %s", strerror(errno));
867 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100868 }
869
870 /* ... close the descriptor we inherited and go on. */
871 close(stderr_fd[1]);
872 } else {
873 bool errors = false;
874 char *buf;
875
876 /* In the parent. Print error messages from the child until
877 * it closes the pipe.
878 */
879 close(stderr_fd[1]);
880 buf = g_malloc(1024);
881 while ((ret = read(stderr_fd[0], buf, 1024)) > 0) {
882 errors = true;
883 ret = qemu_write_full(STDERR_FILENO, buf, ret);
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100884 if (ret < 0) {
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100885 exit(EXIT_FAILURE);
886 }
887 }
Paolo Bonzinifc19f8a2012-03-07 11:05:34 +0100888 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100889 error_report("Cannot read from daemon: %s",
890 strerror(errno));
891 exit(EXIT_FAILURE);
Paolo Bonzinic1f8fdc2011-11-04 15:51:22 +0100892 }
893
894 /* Usually the daemon should not print any message.
895 * Exit with zero status in that case.
896 */
897 exit(errors);
898 }
899 }
900
Paolo Bonzinia6ac2312011-12-06 09:07:00 +0100901 if (device != NULL && sockpath == NULL) {
902 sockpath = g_malloc(128);
903 snprintf(sockpath, 128, SOCKET_PATH, basename(device));
thscd831bd2008-07-03 10:23:51 +0000904 }
905
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000906 server = qio_net_listener_new();
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000907 if (socket_activation == 0) {
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000908 saddr = nbd_build_socket_address(sockpath, bindto, port);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000909 if (qio_net_listener_open_sync(server, saddr, &local_err) < 0) {
910 object_unref(OBJECT(server));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000911 error_report_err(local_err);
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000912 exit(EXIT_FAILURE);
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000913 }
914 } else {
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000915 size_t i;
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000916 /* See comment in check_socket_activation above. */
Daniel P. Berrangee4849c12017-12-18 10:16:43 +0000917 for (i = 0; i < socket_activation; i++) {
918 QIOChannelSocket *sioc;
919 sioc = qio_channel_socket_new_fd(FIRST_SOCKET_ACTIVATION_FD + i,
920 &local_err);
921 if (sioc == NULL) {
922 object_unref(OBJECT(server));
923 error_report("Failed to use socket activation: %s",
924 error_get_pretty(local_err));
925 exit(EXIT_FAILURE);
926 }
927 qio_net_listener_add(server, sioc);
928 object_unref(OBJECT(sioc));
Richard W.M. Jonesa721f532017-02-04 10:03:17 +0000929 }
930 }
Daniel P. Berrange48bec072015-09-16 14:52:23 +0100931
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300932 if (qemu_init_main_loop(&local_err)) {
Markus Armbruster565f65d2015-02-12 13:55:05 +0100933 error_report_err(local_err);
Chrysostomos Nanakos2f78e492014-09-18 14:30:49 +0300934 exit(EXIT_FAILURE);
935 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100936 bdrv_init();
Kevin Wolfb3b52992018-05-16 13:46:37 +0200937 atexit(qemu_nbd_shutdown);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100938
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000939 srcpath = argv[optind];
940 if (imageOpts) {
941 QemuOpts *opts;
942 if (fmt) {
943 error_report("--image-opts and -f are mutually exclusive");
944 exit(EXIT_FAILURE);
945 }
946 opts = qemu_opts_parse_noisily(&file_opts, srcpath, true);
947 if (!opts) {
948 qemu_opts_reset(&file_opts);
949 exit(EXIT_FAILURE);
950 }
951 options = qemu_opts_to_qdict(opts, NULL);
952 qemu_opts_reset(&file_opts);
Max Reitzefaa7c42016-03-16 19:54:38 +0100953 blk = blk_new_open(NULL, NULL, options, flags, &local_err);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000954 } else {
955 if (fmt) {
956 options = qdict_new();
Eric Blake46f5ac22017-04-27 16:58:17 -0500957 qdict_put_str(options, "driver", fmt);
Daniel P. Berrange77c9aae2016-02-17 10:10:19 +0000958 }
Max Reitzefaa7c42016-03-16 19:54:38 +0100959 blk = blk_new_open(srcpath, NULL, options, flags, &local_err);
Daniel P. Berrangee6b63672013-03-19 11:20:20 +0000960 }
961
Max Reitz4fbec262015-02-05 13:58:19 -0500962 if (!blk) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100963 error_reportf_err(local_err, "Failed to blk_new_open '%s': ",
964 argv[optind]);
Markus Armbruster85b01e02015-12-18 16:35:04 +0100965 exit(EXIT_FAILURE);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100966 }
Max Reitz4fbec262015-02-05 13:58:19 -0500967 bs = blk_bs(blk);
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100968
Kevin Wolf6effd5b2016-03-14 11:43:28 +0100969 blk_set_enable_write_cache(blk, !writethrough);
970
Wenchao Xia8c116b02013-12-04 17:10:55 +0800971 if (sn_opts) {
972 ret = bdrv_snapshot_load_tmp(bs,
973 qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID),
974 qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME),
975 &local_err);
976 } else if (sn_id_or_name) {
977 ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name,
978 &local_err);
979 }
980 if (ret < 0) {
Markus Armbrusterc29b77f2015-12-18 16:35:14 +0100981 error_reportf_err(local_err, "Failed to load snapshot: ");
Markus Armbruster85b01e02015-12-18 16:35:04 +0100982 exit(EXIT_FAILURE);
Wenchao Xia8c116b02013-12-04 17:10:55 +0800983 }
984
Peter Lievenb3838a42014-08-13 19:20:18 +0200985 bs->detect_zeroes = detect_zeroes;
Max Reitz4c58e802014-11-18 12:21:19 +0100986 fd_size = blk_getlength(blk);
Max Reitz98f44bb2015-02-25 13:08:21 -0500987 if (fd_size < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +0100988 error_report("Failed to determine the image length: %s",
989 strerror(-fd_size));
990 exit(EXIT_FAILURE);
Max Reitz98f44bb2015-02-25 13:08:21 -0500991 }
Paolo Bonzini802ddc32011-11-04 15:51:24 +0100992
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +0200993 if (dev_offset >= fd_size) {
Eric Blake9d26dfc2019-01-17 13:36:43 -0600994 error_report("Offset (%" PRIu64 ") has to be smaller than the image "
995 "size (%" PRId64 ")", dev_offset, fd_size);
Tomáš Golembiovskýe424b652016-10-05 23:40:20 +0200996 exit(EXIT_FAILURE);
997 }
998 fd_size -= dev_offset;
999
Eric Blake43b51012019-01-17 13:36:44 -06001000 if (partition) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001001 uint64_t limit;
Eric Blake44859362019-01-17 13:36:41 -06001002
1003 if (dev_offset) {
1004 error_report("Cannot request partition and offset together");
1005 exit(EXIT_FAILURE);
1006 }
1007 ret = find_partition(blk, partition, &dev_offset, &limit);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001008 if (ret < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001009 error_report("Could not find partition %d: %s", partition,
Markus Armbrustera4699e52015-12-18 16:35:10 +01001010 strerror(-ret));
Markus Armbruster85b01e02015-12-18 16:35:04 +01001011 exit(EXIT_FAILURE);
Paolo Bonzini185b4332012-03-05 08:56:10 +01001012 }
Eric Blake44859362019-01-17 13:36:41 -06001013 /*
1014 * MBR partition limits are (32-bit << 9); this assert lets
Eric Blake9d26dfc2019-01-17 13:36:43 -06001015 * the compiler know that we can't overflow 64 bits.
Eric Blake44859362019-01-17 13:36:41 -06001016 */
Eric Blake9d26dfc2019-01-17 13:36:43 -06001017 assert(dev_offset + limit >= dev_offset);
Eric Blake44859362019-01-17 13:36:41 -06001018 if (dev_offset + limit > fd_size) {
Eric Blake9d26dfc2019-01-17 13:36:43 -06001019 error_report("Discovered partition %d at offset %" PRIu64
1020 " size %" PRIu64 ", but size exceeds file length %"
1021 PRId64, partition, dev_offset, limit, fd_size);
Eric Blake44859362019-01-17 13:36:41 -06001022 exit(EXIT_FAILURE);
1023 }
1024 fd_size = limit;
Paolo Bonzini802ddc32011-11-04 15:51:24 +01001025 }
1026
Eric Blake3fa4c762019-01-11 13:47:16 -06001027 export = nbd_export_new(bs, dev_offset, fd_size, export_name,
Eric Blake636192c2019-01-11 13:47:20 -06001028 export_description, bitmap, nbdflags,
Eric Blake678ba272019-01-11 13:47:19 -06001029 nbd_export_closed, writethrough, NULL,
1030 &error_fatal);
ths3b05a8e2008-07-03 12:45:02 +00001031
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001032 if (device) {
Eric Blake3c1fa352018-12-15 07:53:08 -06001033#if HAVE_NBD_DEVICE
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001034 int ret;
1035
Paolo Bonzinia6ac2312011-12-06 09:07:00 +01001036 ret = pthread_create(&client_thread, NULL, nbd_client_thread, device);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001037 if (ret != 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001038 error_report("Failed to create client thread: %s", strerror(ret));
1039 exit(EXIT_FAILURE);
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001040 }
Eric Blake3c1fa352018-12-15 07:53:08 -06001041#endif
Paolo Bonzinif1ef5552011-11-04 15:51:23 +01001042 } else {
1043 /* Shut up GCC warnings. */
1044 memset(&client_thread, 0, sizeof(client_thread));
1045 }
1046
Daniel P. Berranged0d6ff52016-02-10 18:41:02 +00001047 nbd_update_server_watch();
bellard7a5ca862008-05-27 21:13:40 +00001048
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001049 /* now when the initialization is (almost) complete, chdir("/")
1050 * to free any busy filesystems */
1051 if (chdir("/") < 0) {
Markus Armbruster85b01e02015-12-18 16:35:04 +01001052 error_report("Could not chdir to root directory: %s",
1053 strerror(errno));
1054 exit(EXIT_FAILURE);
Michael Tokarev9faf31b2012-01-16 18:37:44 +04001055 }
1056
Max Reitzffb31e12016-09-28 22:46:42 +02001057 if (fork_process) {
1058 dup2(old_stderr, STDERR_FILENO);
1059 close(old_stderr);
1060 }
1061
Paolo Bonzini7860a382012-09-18 13:31:56 +02001062 state = RUNNING;
ths3b05a8e2008-07-03 12:45:02 +00001063 do {
Paolo Bonzinia61c6782011-09-12 17:28:11 +02001064 main_loop_wait(false);
Paolo Bonzini7860a382012-09-18 13:31:56 +02001065 if (state == TERMINATE) {
1066 state = TERMINATING;
Philippe Mathieu-Daudé9d976582019-01-11 17:35:19 +01001067 nbd_export_close(export);
1068 nbd_export_put(export);
1069 export = NULL;
Paolo Bonzini7860a382012-09-18 13:31:56 +02001070 }
1071 } while (state != TERMINATED);
ths3b05a8e2008-07-03 12:45:02 +00001072
Markus Armbruster26f54e92014-10-07 13:59:04 +02001073 blk_unref(blk);
Paolo Bonzinib32f6c22011-11-04 15:51:20 +01001074 if (sockpath) {
1075 unlink(sockpath);
1076 }
bellard7a5ca862008-05-27 21:13:40 +00001077
Markus Armbrusterfbf28a42014-09-29 16:07:55 +02001078 qemu_opts_del(sn_opts);
Wenchao Xia8c116b02013-12-04 17:10:55 +08001079
Paolo Bonzinia517e882011-11-04 15:51:21 +01001080 if (device) {
1081 void *ret;
1082 pthread_join(client_thread, &ret);
1083 exit(ret != NULL);
1084 } else {
1085 exit(EXIT_SUCCESS);
1086 }
bellard7a5ca862008-05-27 21:13:40 +00001087}