]>
Commit | Line | Data |
---|---|---|
cd831bd7 | 1 | /* |
7a5ca864 FB |
2 | * Copyright (C) 2005 Anthony Liguori <[email protected]> |
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 | |
8167ee88 | 16 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
7a5ca864 FB |
17 | */ |
18 | ||
d38ea87a | 19 | #include "qemu/osdep.h" |
5a61cb60 | 20 | #include "qemu-common.h" |
26f54e9a | 21 | #include "sysemu/block-backend.h" |
b3838a40 | 22 | #include "block/block_int.h" |
737e150e | 23 | #include "block/nbd.h" |
6a1751b7 | 24 | #include "qemu/main-loop.h" |
537b41f5 | 25 | #include "qemu/error-report.h" |
0ab3b337 | 26 | #include "qemu/config-file.h" |
8c116b0e | 27 | #include "block/snapshot.h" |
b3838a40 | 28 | #include "qapi/util.h" |
d49b6836 | 29 | #include "qapi/qmp/qstring.h" |
0ab3b337 | 30 | #include "qom/object_interfaces.h" |
d0d6ff58 | 31 | #include "io/channel-socket.h" |
7a5ca864 | 32 | |
7a5ca864 | 33 | #include <getopt.h> |
d0d6ff58 DB |
34 | #include <sys/types.h> |
35 | #include <signal.h> | |
2bff4b6f | 36 | #include <libgen.h> |
a517e88b | 37 | #include <pthread.h> |
cd831bd7 | 38 | |
713cc671 PL |
39 | #define SOCKET_PATH "/var/lock/qemu-nbd-%s" |
40 | #define QEMU_NBD_OPT_CACHE 1 | |
41 | #define QEMU_NBD_OPT_AIO 2 | |
42 | #define QEMU_NBD_OPT_DISCARD 3 | |
b3838a40 | 43 | #define QEMU_NBD_OPT_DETECT_ZEROES 4 |
0ab3b337 | 44 | #define QEMU_NBD_OPT_OBJECT 5 |
145614a1 | 45 | #define QEMU_NBD_OPT_TLSCREDS 6 |
7a5ca864 | 46 | |
af49bbbe | 47 | static NBDExport *exp; |
3d4b2f9c | 48 | static bool newproto; |
b1d8e52e | 49 | static int verbose; |
a517e88b | 50 | static char *srcpath; |
48bec07e | 51 | static SocketAddress *saddr; |
7860a380 PB |
52 | static int persistent = 0; |
53 | static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state; | |
a61c6782 PB |
54 | static int shared = 1; |
55 | static int nb_fds; | |
d0d6ff58 DB |
56 | static QIOChannelSocket *server_ioc; |
57 | static int server_watch = -1; | |
145614a1 | 58 | static QCryptoTLSCreds *tlscreds; |
7a5ca864 FB |
59 | |
60 | static void usage(const char *name) | |
61 | { | |
b033cd86 | 62 | (printf) ( |
7a5ca864 FB |
63 | "Usage: %s [OPTIONS] FILE\n" |
64 | "QEMU Disk Network Block Device Server\n" | |
65 | "\n" | |
713cc671 PL |
66 | " -h, --help display this help and exit\n" |
67 | " -V, --version output version information and exit\n" | |
b033cd86 PB |
68 | "\n" |
69 | "Connection properties:\n" | |
713cc671 PL |
70 | " -p, --port=PORT port to listen on (default `%d')\n" |
71 | " -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n" | |
72 | " -k, --socket=PATH path to the unix socket\n" | |
73 | " (default '"SOCKET_PATH"')\n" | |
74 | " -e, --shared=NUM device can be shared by NUM clients (default '1')\n" | |
75 | " -t, --persistent don't exit on the last connection\n" | |
76 | " -v, --verbose display extra debugging information\n" | |
7a5ca864 | 77 | "\n" |
b033cd86 | 78 | "Exposing part of the image:\n" |
713cc671 PL |
79 | " -o, --offset=OFFSET offset into the image\n" |
80 | " -P, --partition=NUM only expose partition NUM\n" | |
b033cd86 | 81 | "\n" |
0ab3b337 DB |
82 | "General purpose options:\n" |
83 | " --object type,id=ID,... define an object such as 'secret' for providing\n" | |
84 | " passwords and/or encryption keys\n" | |
b033cd86 PB |
85 | #ifdef __linux__ |
86 | "Kernel NBD client support:\n" | |
713cc671 PL |
87 | " -c, --connect=DEV connect FILE to the local NBD device DEV\n" |
88 | " -d, --disconnect disconnect the specified device\n" | |
b033cd86 PB |
89 | "\n" |
90 | #endif | |
91 | "\n" | |
92 | "Block device options:\n" | |
713cc671 PL |
93 | " -f, --format=FORMAT set image format (raw, qcow2, ...)\n" |
94 | " -r, --read-only export read-only\n" | |
95 | " -s, --snapshot use FILE as an external snapshot, create a temporary\n" | |
96 | " file with backing_file=FILE, redirect the write to\n" | |
97 | " the temporary one\n" | |
8c116b0e | 98 | " -l, --load-snapshot=SNAPSHOT_PARAM\n" |
713cc671 PL |
99 | " load an internal snapshot inside FILE and export it\n" |
100 | " as an read-only device, SNAPSHOT_PARAM format is\n" | |
101 | " 'snapshot.id=[ID],snapshot.name=[NAME]', or\n" | |
102 | " '[ID_OR_NAME]'\n" | |
103 | " -n, --nocache disable host cache\n" | |
104 | " --cache=MODE set cache mode (none, writeback, ...)\n" | |
713cc671 | 105 | " --aio=MODE set AIO mode (native or threads)\n" |
b3838a40 | 106 | " --discard=MODE set discard mode (ignore, unmap)\n" |
6883de6c | 107 | " --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n" |
b033cd86 PB |
108 | "\n" |
109 | "Report bugs to <[email protected]>\n" | |
c2e2872b | 110 | , name, NBD_DEFAULT_PORT, "DEVICE"); |
7a5ca864 FB |
111 | } |
112 | ||
113 | static void version(const char *name) | |
114 | { | |
115 | printf( | |
315bc7aa | 116 | "%s version 0.0.1\n" |
7a5ca864 FB |
117 | "Written by Anthony Liguori.\n" |
118 | "\n" | |
119 | "Copyright (C) 2006 Anthony Liguori <[email protected]>.\n" | |
120 | "This is free software; see the source for copying conditions. There is NO\n" | |
121 | "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" | |
315bc7aa | 122 | , name); |
7a5ca864 FB |
123 | } |
124 | ||
125 | struct partition_record | |
126 | { | |
127 | uint8_t bootable; | |
128 | uint8_t start_head; | |
129 | uint32_t start_cylinder; | |
130 | uint8_t start_sector; | |
131 | uint8_t system; | |
132 | uint8_t end_head; | |
133 | uint8_t end_cylinder; | |
134 | uint8_t end_sector; | |
135 | uint32_t start_sector_abs; | |
136 | uint32_t nb_sectors_abs; | |
137 | }; | |
138 | ||
139 | static void read_partition(uint8_t *p, struct partition_record *r) | |
140 | { | |
141 | r->bootable = p[0]; | |
142 | r->start_head = p[1]; | |
143 | r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300); | |
144 | r->start_sector = p[2] & 0x3f; | |
145 | r->system = p[4]; | |
146 | r->end_head = p[5]; | |
147 | r->end_cylinder = p[7] | ((p[6] << 2) & 0x300); | |
148 | r->end_sector = p[6] & 0x3f; | |
ac97393d HR |
149 | |
150 | r->start_sector_abs = le32_to_cpup((uint32_t *)(p + 8)); | |
151 | r->nb_sectors_abs = le32_to_cpup((uint32_t *)(p + 12)); | |
7a5ca864 FB |
152 | } |
153 | ||
4c58e80a | 154 | static int find_partition(BlockBackend *blk, int partition, |
7a5ca864 FB |
155 | off_t *offset, off_t *size) |
156 | { | |
157 | struct partition_record mbr[4]; | |
158 | uint8_t data[512]; | |
159 | int i; | |
160 | int ext_partnum = 4; | |
cb7cf0e3 | 161 | int ret; |
7a5ca864 | 162 | |
4c58e80a | 163 | if ((ret = blk_read(blk, 0, data, 1)) < 0) { |
a4699e55 | 164 | error_report("error while reading: %s", strerror(-ret)); |
85b01e09 | 165 | exit(EXIT_FAILURE); |
cb7cf0e3 | 166 | } |
7a5ca864 FB |
167 | |
168 | if (data[510] != 0x55 || data[511] != 0xaa) { | |
185b4338 | 169 | return -EINVAL; |
7a5ca864 FB |
170 | } |
171 | ||
172 | for (i = 0; i < 4; i++) { | |
173 | read_partition(&data[446 + 16 * i], &mbr[i]); | |
174 | ||
453b07b1 | 175 | if (!mbr[i].system || !mbr[i].nb_sectors_abs) { |
7a5ca864 | 176 | continue; |
453b07b1 | 177 | } |
7a5ca864 FB |
178 | |
179 | if (mbr[i].system == 0xF || mbr[i].system == 0x5) { | |
180 | struct partition_record ext[4]; | |
181 | uint8_t data1[512]; | |
182 | int j; | |
183 | ||
4c58e80a | 184 | if ((ret = blk_read(blk, mbr[i].start_sector_abs, data1, 1)) < 0) { |
a4699e55 | 185 | error_report("error while reading: %s", strerror(-ret)); |
85b01e09 | 186 | exit(EXIT_FAILURE); |
cb7cf0e3 | 187 | } |
7a5ca864 FB |
188 | |
189 | for (j = 0; j < 4; j++) { | |
190 | read_partition(&data1[446 + 16 * j], &ext[j]); | |
453b07b1 | 191 | if (!ext[j].system || !ext[j].nb_sectors_abs) { |
7a5ca864 | 192 | continue; |
453b07b1 | 193 | } |
7a5ca864 FB |
194 | |
195 | if ((ext_partnum + j + 1) == partition) { | |
196 | *offset = (uint64_t)ext[j].start_sector_abs << 9; | |
197 | *size = (uint64_t)ext[j].nb_sectors_abs << 9; | |
198 | return 0; | |
199 | } | |
200 | } | |
201 | ext_partnum += 4; | |
202 | } else if ((i + 1) == partition) { | |
203 | *offset = (uint64_t)mbr[i].start_sector_abs << 9; | |
204 | *size = (uint64_t)mbr[i].nb_sectors_abs << 9; | |
205 | return 0; | |
206 | } | |
207 | } | |
208 | ||
185b4338 | 209 | return -ENOENT; |
7a5ca864 FB |
210 | } |
211 | ||
bb345110 PB |
212 | static void termsig_handler(int signum) |
213 | { | |
7860a380 | 214 | state = TERMINATE; |
a61c6782 | 215 | qemu_notify_event(); |
bb345110 PB |
216 | } |
217 | ||
537b41f5 | 218 | |
a517e88b | 219 | static void *show_parts(void *arg) |
cd831bd7 | 220 | { |
a6ac2313 | 221 | char *device = arg; |
a517e88b PB |
222 | int nbd; |
223 | ||
224 | /* linux just needs an open() to trigger | |
225 | * the partition table update | |
226 | * but remember to load the module with max_part != 0 : | |
227 | * modprobe nbd max_part=63 | |
228 | */ | |
229 | nbd = open(device, O_RDWR); | |
fc19f8a0 | 230 | if (nbd >= 0) { |
a517e88b PB |
231 | close(nbd); |
232 | } | |
233 | return NULL; | |
234 | } | |
cd831bd7 | 235 | |
a517e88b PB |
236 | static void *nbd_client_thread(void *arg) |
237 | { | |
a6ac2313 | 238 | char *device = arg; |
a517e88b | 239 | off_t size; |
a517e88b | 240 | uint32_t nbdflags; |
d0d6ff58 DB |
241 | QIOChannelSocket *sioc; |
242 | int fd; | |
a517e88b PB |
243 | int ret; |
244 | pthread_t show_parts_thread; | |
1ce52846 | 245 | Error *local_error = NULL; |
a517e88b | 246 | |
d0d6ff58 DB |
247 | sioc = qio_channel_socket_new(); |
248 | if (qio_channel_socket_connect_sync(sioc, | |
249 | saddr, | |
250 | &local_error) < 0) { | |
48bec07e | 251 | error_report_err(local_error); |
dc10e8b3 SH |
252 | goto out; |
253 | } | |
a517e88b | 254 | |
1c778ef7 | 255 | ret = nbd_receive_negotiate(QIO_CHANNEL(sioc), NULL, &nbdflags, |
f95910fe | 256 | NULL, NULL, NULL, |
3f472659 | 257 | &size, &local_error); |
fc19f8a0 | 258 | if (ret < 0) { |
1ce52846 | 259 | if (local_error) { |
78288671 | 260 | error_report_err(local_error); |
1ce52846 | 261 | } |
0c544d73 | 262 | goto out_socket; |
a517e88b PB |
263 | } |
264 | ||
a6ac2313 | 265 | fd = open(device, O_RDWR); |
fc19f8a0 | 266 | if (fd < 0) { |
a6ac2313 | 267 | /* Linux-only, we can use %m in printf. */ |
b9884681 | 268 | error_report("Failed to open %s: %m", device); |
0c544d73 | 269 | goto out_socket; |
a6ac2313 PB |
270 | } |
271 | ||
1c778ef7 | 272 | ret = nbd_init(fd, sioc, nbdflags, size); |
fc19f8a0 | 273 | if (ret < 0) { |
0c544d73 | 274 | goto out_fd; |
a517e88b PB |
275 | } |
276 | ||
277 | /* update partition table */ | |
a6ac2313 | 278 | pthread_create(&show_parts_thread, NULL, show_parts, device); |
a517e88b | 279 | |
c1f8fdc3 PB |
280 | if (verbose) { |
281 | fprintf(stderr, "NBD device %s is now connected to %s\n", | |
282 | device, srcpath); | |
283 | } else { | |
284 | /* Close stderr so that the qemu-nbd process exits. */ | |
285 | dup2(STDOUT_FILENO, STDERR_FILENO); | |
286 | } | |
a517e88b PB |
287 | |
288 | ret = nbd_client(fd); | |
289 | if (ret) { | |
0c544d73 | 290 | goto out_fd; |
cd831bd7 | 291 | } |
a517e88b | 292 | close(fd); |
d0d6ff58 | 293 | object_unref(OBJECT(sioc)); |
a517e88b PB |
294 | kill(getpid(), SIGTERM); |
295 | return (void *) EXIT_SUCCESS; | |
296 | ||
0c544d73 PB |
297 | out_fd: |
298 | close(fd); | |
299 | out_socket: | |
d0d6ff58 | 300 | object_unref(OBJECT(sioc)); |
a517e88b PB |
301 | out: |
302 | kill(getpid(), SIGTERM); | |
303 | return (void *) EXIT_FAILURE; | |
cd831bd7 TS |
304 | } |
305 | ||
e4afbf4f | 306 | static int nbd_can_accept(void) |
a61c6782 PB |
307 | { |
308 | return nb_fds < shared; | |
309 | } | |
310 | ||
7860a380 PB |
311 | static void nbd_export_closed(NBDExport *exp) |
312 | { | |
313 | assert(state == TERMINATING); | |
314 | state = TERMINATED; | |
315 | } | |
316 | ||
d0d6ff58 | 317 | static void nbd_update_server_watch(void); |
e4afbf4f | 318 | |
1743b515 | 319 | static void nbd_client_closed(NBDClient *client) |
a61c6782 | 320 | { |
1743b515 | 321 | nb_fds--; |
7860a380 PB |
322 | if (nb_fds == 0 && !persistent && state == RUNNING) { |
323 | state = TERMINATE; | |
324 | } | |
d0d6ff58 | 325 | nbd_update_server_watch(); |
7860a380 | 326 | nbd_client_put(client); |
a61c6782 PB |
327 | } |
328 | ||
d0d6ff58 | 329 | static gboolean nbd_accept(QIOChannel *ioc, GIOCondition cond, gpointer opaque) |
a61c6782 | 330 | { |
d0d6ff58 | 331 | QIOChannelSocket *cioc; |
a61c6782 | 332 | |
d0d6ff58 DB |
333 | cioc = qio_channel_socket_accept(QIO_CHANNEL_SOCKET(ioc), |
334 | NULL); | |
335 | if (!cioc) { | |
336 | return TRUE; | |
0c544d73 PB |
337 | } |
338 | ||
7860a380 | 339 | if (state >= TERMINATE) { |
d0d6ff58 DB |
340 | object_unref(OBJECT(cioc)); |
341 | return TRUE; | |
7860a380 PB |
342 | } |
343 | ||
ee7d7aab | 344 | nb_fds++; |
d0d6ff58 | 345 | nbd_update_server_watch(); |
f95910fe | 346 | nbd_client_new(newproto ? NULL : exp, cioc, |
145614a1 | 347 | tlscreds, NULL, nbd_client_closed); |
d0d6ff58 DB |
348 | object_unref(OBJECT(cioc)); |
349 | ||
350 | return TRUE; | |
a61c6782 PB |
351 | } |
352 | ||
d0d6ff58 | 353 | static void nbd_update_server_watch(void) |
e4afbf4f FZ |
354 | { |
355 | if (nbd_can_accept()) { | |
d0d6ff58 DB |
356 | if (server_watch == -1) { |
357 | server_watch = qio_channel_add_watch(QIO_CHANNEL(server_ioc), | |
358 | G_IO_IN, | |
359 | nbd_accept, | |
360 | NULL, NULL); | |
361 | } | |
e4afbf4f | 362 | } else { |
d0d6ff58 DB |
363 | if (server_watch != -1) { |
364 | g_source_remove(server_watch); | |
365 | server_watch = -1; | |
366 | } | |
e4afbf4f FZ |
367 | } |
368 | } | |
369 | ||
48bec07e DB |
370 | |
371 | static SocketAddress *nbd_build_socket_address(const char *sockpath, | |
372 | const char *bindto, | |
373 | const char *port) | |
374 | { | |
375 | SocketAddress *saddr; | |
376 | ||
377 | saddr = g_new0(SocketAddress, 1); | |
378 | if (sockpath) { | |
2d32adda EB |
379 | saddr->type = SOCKET_ADDRESS_KIND_UNIX; |
380 | saddr->u.q_unix = g_new0(UnixSocketAddress, 1); | |
381 | saddr->u.q_unix->path = g_strdup(sockpath); | |
48bec07e | 382 | } else { |
2d32adda EB |
383 | saddr->type = SOCKET_ADDRESS_KIND_INET; |
384 | saddr->u.inet = g_new0(InetSocketAddress, 1); | |
385 | saddr->u.inet->host = g_strdup(bindto); | |
48bec07e | 386 | if (port) { |
2d32adda | 387 | saddr->u.inet->port = g_strdup(port); |
48bec07e | 388 | } else { |
2d32adda | 389 | saddr->u.inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT); |
48bec07e DB |
390 | } |
391 | } | |
392 | ||
393 | return saddr; | |
394 | } | |
395 | ||
396 | ||
0ab3b337 DB |
397 | static QemuOptsList qemu_object_opts = { |
398 | .name = "object", | |
399 | .implied_opt_name = "qom-type", | |
400 | .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head), | |
401 | .desc = { | |
402 | { } | |
403 | }, | |
404 | }; | |
405 | ||
406 | ||
145614a1 DB |
407 | |
408 | static QCryptoTLSCreds *nbd_get_tls_creds(const char *id, Error **errp) | |
409 | { | |
410 | Object *obj; | |
411 | QCryptoTLSCreds *creds; | |
412 | ||
413 | obj = object_resolve_path_component( | |
414 | object_get_objects_root(), id); | |
415 | if (!obj) { | |
416 | error_setg(errp, "No TLS credentials with id '%s'", | |
417 | id); | |
418 | return NULL; | |
419 | } | |
420 | creds = (QCryptoTLSCreds *) | |
421 | object_dynamic_cast(obj, TYPE_QCRYPTO_TLS_CREDS); | |
422 | if (!creds) { | |
423 | error_setg(errp, "Object with id '%s' is not TLS credentials", | |
424 | id); | |
425 | return NULL; | |
426 | } | |
427 | ||
428 | if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_SERVER) { | |
429 | error_setg(errp, | |
430 | "Expecting TLS credentials with a server endpoint"); | |
431 | return NULL; | |
432 | } | |
433 | object_ref(obj); | |
434 | return creds; | |
435 | } | |
436 | ||
437 | ||
7a5ca864 FB |
438 | int main(int argc, char **argv) |
439 | { | |
26f54e9a | 440 | BlockBackend *blk; |
7a5ca864 FB |
441 | BlockDriverState *bs; |
442 | off_t dev_offset = 0; | |
b90fb4b8 | 443 | uint32_t nbdflags = 0; |
cd831bd7 | 444 | bool disconnect = false; |
7a5ca864 | 445 | const char *bindto = "0.0.0.0"; |
48bec07e DB |
446 | const char *port = NULL; |
447 | char *sockpath = NULL; | |
a6ac2313 | 448 | char *device = NULL; |
7a5ca864 | 449 | off_t fd_size; |
8c116b0e WX |
450 | QemuOpts *sn_opts = NULL; |
451 | const char *sn_id_or_name = NULL; | |
3d4b2f9c | 452 | const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:x:"; |
7a5ca864 | 453 | struct option lopt[] = { |
660f11be BS |
454 | { "help", 0, NULL, 'h' }, |
455 | { "version", 0, NULL, 'V' }, | |
456 | { "bind", 1, NULL, 'b' }, | |
457 | { "port", 1, NULL, 'p' }, | |
458 | { "socket", 1, NULL, 'k' }, | |
459 | { "offset", 1, NULL, 'o' }, | |
460 | { "read-only", 0, NULL, 'r' }, | |
461 | { "partition", 1, NULL, 'P' }, | |
462 | { "connect", 1, NULL, 'c' }, | |
463 | { "disconnect", 0, NULL, 'd' }, | |
464 | { "snapshot", 0, NULL, 's' }, | |
8c116b0e | 465 | { "load-snapshot", 1, NULL, 'l' }, |
660f11be | 466 | { "nocache", 0, NULL, 'n' }, |
39a5235c | 467 | { "cache", 1, NULL, QEMU_NBD_OPT_CACHE }, |
39a5235c | 468 | { "aio", 1, NULL, QEMU_NBD_OPT_AIO }, |
ded9d2d5 | 469 | { "discard", 1, NULL, QEMU_NBD_OPT_DISCARD }, |
b3838a40 | 470 | { "detect-zeroes", 1, NULL, QEMU_NBD_OPT_DETECT_ZEROES }, |
660f11be | 471 | { "shared", 1, NULL, 'e' }, |
e6b63677 | 472 | { "format", 1, NULL, 'f' }, |
660f11be BS |
473 | { "persistent", 0, NULL, 't' }, |
474 | { "verbose", 0, NULL, 'v' }, | |
0ab3b337 | 475 | { "object", 1, NULL, QEMU_NBD_OPT_OBJECT }, |
3d4b2f9c | 476 | { "export-name", 1, NULL, 'x' }, |
145614a1 | 477 | { "tls-creds", 1, NULL, QEMU_NBD_OPT_TLSCREDS }, |
660f11be | 478 | { NULL, 0, NULL, 0 } |
7a5ca864 FB |
479 | }; |
480 | int ch; | |
481 | int opt_ind = 0; | |
7a5ca864 | 482 | char *end; |
f5edb014 | 483 | int flags = BDRV_O_RDWR; |
7a5ca864 | 484 | int partition = -1; |
4fbec260 | 485 | int ret = 0; |
39a5235c | 486 | bool seen_cache = false; |
ded9d2d5 | 487 | bool seen_discard = false; |
39a5235c | 488 | bool seen_aio = false; |
a517e88b | 489 | pthread_t client_thread; |
e6b63677 | 490 | const char *fmt = NULL; |
34b5d2c6 | 491 | Error *local_err = NULL; |
b3838a40 | 492 | BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF; |
4fbec260 | 493 | QDict *options = NULL; |
3d4b2f9c | 494 | const char *export_name = NULL; |
145614a1 | 495 | const char *tlscredsid = NULL; |
7a5ca864 | 496 | |
a517e88b PB |
497 | /* The client thread uses SIGTERM to interrupt the server. A signal |
498 | * handler ensures that "qemu-nbd -v -c" exits with a nice status code. | |
499 | */ | |
bb345110 | 500 | struct sigaction sa_sigterm; |
bb345110 PB |
501 | memset(&sa_sigterm, 0, sizeof(sa_sigterm)); |
502 | sa_sigterm.sa_handler = termsig_handler; | |
503 | sigaction(SIGTERM, &sa_sigterm, NULL); | |
0ab3b337 DB |
504 | module_call_init(MODULE_INIT_QOM); |
505 | qemu_add_opts(&qemu_object_opts); | |
10f5bff6 | 506 | qemu_init_exec_dir(argv[0]); |
bb345110 | 507 | |
7a5ca864 FB |
508 | while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) { |
509 | switch (ch) { | |
510 | case 's': | |
2f726488 TS |
511 | flags |= BDRV_O_SNAPSHOT; |
512 | break; | |
513 | case 'n': | |
39a5235c PB |
514 | optarg = (char *) "none"; |
515 | /* fallthrough */ | |
516 | case QEMU_NBD_OPT_CACHE: | |
517 | if (seen_cache) { | |
85b01e09 MA |
518 | error_report("-n and --cache can only be specified once"); |
519 | exit(EXIT_FAILURE); | |
39a5235c PB |
520 | } |
521 | seen_cache = true; | |
522 | if (bdrv_parse_cache_flags(optarg, &flags) == -1) { | |
85b01e09 MA |
523 | error_report("Invalid cache mode `%s'", optarg); |
524 | exit(EXIT_FAILURE); | |
39a5235c | 525 | } |
7a5ca864 | 526 | break; |
39a5235c PB |
527 | case QEMU_NBD_OPT_AIO: |
528 | if (seen_aio) { | |
85b01e09 MA |
529 | error_report("--aio can only be specified once"); |
530 | exit(EXIT_FAILURE); | |
39a5235c PB |
531 | } |
532 | seen_aio = true; | |
533 | if (!strcmp(optarg, "native")) { | |
534 | flags |= BDRV_O_NATIVE_AIO; | |
535 | } else if (!strcmp(optarg, "threads")) { | |
536 | /* this is the default */ | |
537 | } else { | |
85b01e09 MA |
538 | error_report("invalid aio mode `%s'", optarg); |
539 | exit(EXIT_FAILURE); | |
39a5235c PB |
540 | } |
541 | break; | |
ded9d2d5 PB |
542 | case QEMU_NBD_OPT_DISCARD: |
543 | if (seen_discard) { | |
85b01e09 MA |
544 | error_report("--discard can only be specified once"); |
545 | exit(EXIT_FAILURE); | |
ded9d2d5 PB |
546 | } |
547 | seen_discard = true; | |
548 | if (bdrv_parse_discard_flags(optarg, &flags) == -1) { | |
85b01e09 MA |
549 | error_report("Invalid discard mode `%s'", optarg); |
550 | exit(EXIT_FAILURE); | |
ded9d2d5 PB |
551 | } |
552 | break; | |
b3838a40 PL |
553 | case QEMU_NBD_OPT_DETECT_ZEROES: |
554 | detect_zeroes = | |
555 | qapi_enum_parse(BlockdevDetectZeroesOptions_lookup, | |
556 | optarg, | |
7fb1cf16 | 557 | BLOCKDEV_DETECT_ZEROES_OPTIONS__MAX, |
b3838a40 PL |
558 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, |
559 | &local_err); | |
560 | if (local_err) { | |
c29b77f9 MA |
561 | error_reportf_err(local_err, |
562 | "Failed to parse detect_zeroes mode: "); | |
85b01e09 | 563 | exit(EXIT_FAILURE); |
b3838a40 PL |
564 | } |
565 | if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && | |
566 | !(flags & BDRV_O_UNMAP)) { | |
85b01e09 MA |
567 | error_report("setting detect-zeroes to unmap is not allowed " |
568 | "without setting discard operation to unmap"); | |
569 | exit(EXIT_FAILURE); | |
b3838a40 PL |
570 | } |
571 | break; | |
7a5ca864 FB |
572 | case 'b': |
573 | bindto = optarg; | |
574 | break; | |
575 | case 'p': | |
48bec07e | 576 | port = optarg; |
7a5ca864 FB |
577 | break; |
578 | case 'o': | |
579 | dev_offset = strtoll (optarg, &end, 0); | |
580 | if (*end) { | |
85b01e09 MA |
581 | error_report("Invalid offset `%s'", optarg); |
582 | exit(EXIT_FAILURE); | |
7a5ca864 FB |
583 | } |
584 | if (dev_offset < 0) { | |
85b01e09 MA |
585 | error_report("Offset must be positive `%s'", optarg); |
586 | exit(EXIT_FAILURE); | |
7a5ca864 FB |
587 | } |
588 | break; | |
8c116b0e WX |
589 | case 'l': |
590 | if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) { | |
70b94331 MA |
591 | sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts, |
592 | optarg, false); | |
8c116b0e | 593 | if (!sn_opts) { |
85b01e09 MA |
594 | error_report("Failed in parsing snapshot param `%s'", |
595 | optarg); | |
596 | exit(EXIT_FAILURE); | |
8c116b0e WX |
597 | } |
598 | } else { | |
599 | sn_id_or_name = optarg; | |
600 | } | |
601 | /* fall through */ | |
7a5ca864 | 602 | case 'r': |
b90fb4b8 | 603 | nbdflags |= NBD_FLAG_READ_ONLY; |
07108b29 | 604 | flags &= ~BDRV_O_RDWR; |
7a5ca864 FB |
605 | break; |
606 | case 'P': | |
607 | partition = strtol(optarg, &end, 0); | |
713cc671 | 608 | if (*end) { |
85b01e09 MA |
609 | error_report("Invalid partition `%s'", optarg); |
610 | exit(EXIT_FAILURE); | |
713cc671 PL |
611 | } |
612 | if (partition < 1 || partition > 8) { | |
85b01e09 MA |
613 | error_report("Invalid partition %d", partition); |
614 | exit(EXIT_FAILURE); | |
713cc671 | 615 | } |
7a5ca864 | 616 | break; |
cd831bd7 | 617 | case 'k': |
b32f6c28 | 618 | sockpath = optarg; |
713cc671 | 619 | if (sockpath[0] != '/') { |
9af9e0fe | 620 | error_report("socket path must be absolute"); |
85b01e09 | 621 | exit(EXIT_FAILURE); |
713cc671 | 622 | } |
cd831bd7 TS |
623 | break; |
624 | case 'd': | |
625 | disconnect = true; | |
626 | break; | |
627 | case 'c': | |
628 | device = optarg; | |
629 | break; | |
3b05a8e9 TS |
630 | case 'e': |
631 | shared = strtol(optarg, &end, 0); | |
632 | if (*end) { | |
85b01e09 MA |
633 | error_report("Invalid shared device number '%s'", optarg); |
634 | exit(EXIT_FAILURE); | |
3b05a8e9 TS |
635 | } |
636 | if (shared < 1) { | |
9af9e0fe | 637 | error_report("Shared device number must be greater than 0"); |
85b01e09 | 638 | exit(EXIT_FAILURE); |
3b05a8e9 TS |
639 | } |
640 | break; | |
e6b63677 DB |
641 | case 'f': |
642 | fmt = optarg; | |
643 | break; | |
713cc671 PL |
644 | case 't': |
645 | persistent = 1; | |
646 | break; | |
3d4b2f9c DB |
647 | case 'x': |
648 | export_name = optarg; | |
649 | break; | |
7a5ca864 FB |
650 | case 'v': |
651 | verbose = 1; | |
652 | break; | |
653 | case 'V': | |
654 | version(argv[0]); | |
655 | exit(0); | |
656 | break; | |
657 | case 'h': | |
658 | usage(argv[0]); | |
659 | exit(0); | |
660 | break; | |
661 | case '?': | |
85b01e09 MA |
662 | error_report("Try `%s --help' for more information.", argv[0]); |
663 | exit(EXIT_FAILURE); | |
0ab3b337 DB |
664 | case QEMU_NBD_OPT_OBJECT: { |
665 | QemuOpts *opts; | |
666 | opts = qemu_opts_parse_noisily(&qemu_object_opts, | |
667 | optarg, true); | |
668 | if (!opts) { | |
669 | exit(EXIT_FAILURE); | |
670 | } | |
671 | } break; | |
145614a1 DB |
672 | case QEMU_NBD_OPT_TLSCREDS: |
673 | tlscredsid = optarg; | |
674 | break; | |
7a5ca864 FB |
675 | } |
676 | } | |
677 | ||
678 | if ((argc - optind) != 1) { | |
433672b0 MA |
679 | error_report("Invalid number of arguments"); |
680 | error_printf("Try `%s --help' for more information.\n", argv[0]); | |
85b01e09 | 681 | exit(EXIT_FAILURE); |
7a5ca864 FB |
682 | } |
683 | ||
0ab3b337 DB |
684 | if (qemu_opts_foreach(&qemu_object_opts, |
685 | user_creatable_add_opts_foreach, | |
686 | NULL, &local_err)) { | |
687 | error_report_err(local_err); | |
688 | exit(EXIT_FAILURE); | |
689 | } | |
690 | ||
145614a1 DB |
691 | if (tlscredsid) { |
692 | if (sockpath) { | |
693 | error_report("TLS is only supported with IPv4/IPv6"); | |
694 | exit(EXIT_FAILURE); | |
695 | } | |
696 | if (device) { | |
697 | error_report("TLS is not supported with a host device"); | |
698 | exit(EXIT_FAILURE); | |
699 | } | |
700 | if (!export_name) { | |
701 | /* Set the default NBD protocol export name, since | |
702 | * we *must* use new style protocol for TLS */ | |
703 | export_name = ""; | |
704 | } | |
705 | tlscreds = nbd_get_tls_creds(tlscredsid, &local_err); | |
706 | if (local_err) { | |
707 | error_report("Failed to get TLS creds %s", | |
708 | error_get_pretty(local_err)); | |
709 | exit(EXIT_FAILURE); | |
710 | } | |
711 | } | |
712 | ||
cd831bd7 | 713 | if (disconnect) { |
d0d6ff58 DB |
714 | int nbdfd = open(argv[optind], O_RDWR); |
715 | if (nbdfd < 0) { | |
85b01e09 MA |
716 | error_report("Cannot open %s: %s", argv[optind], |
717 | strerror(errno)); | |
718 | exit(EXIT_FAILURE); | |
fc19f8a0 | 719 | } |
d0d6ff58 | 720 | nbd_disconnect(nbdfd); |
cd831bd7 | 721 | |
d0d6ff58 | 722 | close(nbdfd); |
cd831bd7 TS |
723 | |
724 | printf("%s disconnected\n", argv[optind]); | |
725 | ||
713cc671 | 726 | return 0; |
cd831bd7 TS |
727 | } |
728 | ||
c1f8fdc3 PB |
729 | if (device && !verbose) { |
730 | int stderr_fd[2]; | |
731 | pid_t pid; | |
732 | int ret; | |
733 | ||
fc19f8a0 | 734 | if (qemu_pipe(stderr_fd) < 0) { |
85b01e09 MA |
735 | error_report("Error setting up communication pipe: %s", |
736 | strerror(errno)); | |
737 | exit(EXIT_FAILURE); | |
c1f8fdc3 PB |
738 | } |
739 | ||
740 | /* Now daemonize, but keep a communication channel open to | |
741 | * print errors and exit with the proper status code. | |
742 | */ | |
743 | pid = fork(); | |
70d4739e | 744 | if (pid < 0) { |
85b01e09 MA |
745 | error_report("Failed to fork: %s", strerror(errno)); |
746 | exit(EXIT_FAILURE); | |
70d4739e | 747 | } else if (pid == 0) { |
c1f8fdc3 | 748 | close(stderr_fd[0]); |
9faf31b6 | 749 | ret = qemu_daemon(1, 0); |
c1f8fdc3 PB |
750 | |
751 | /* Temporarily redirect stderr to the parent's pipe... */ | |
752 | dup2(stderr_fd[1], STDERR_FILENO); | |
fc19f8a0 | 753 | if (ret < 0) { |
85b01e09 MA |
754 | error_report("Failed to daemonize: %s", strerror(errno)); |
755 | exit(EXIT_FAILURE); | |
c1f8fdc3 PB |
756 | } |
757 | ||
758 | /* ... close the descriptor we inherited and go on. */ | |
759 | close(stderr_fd[1]); | |
760 | } else { | |
761 | bool errors = false; | |
762 | char *buf; | |
763 | ||
764 | /* In the parent. Print error messages from the child until | |
765 | * it closes the pipe. | |
766 | */ | |
767 | close(stderr_fd[1]); | |
768 | buf = g_malloc(1024); | |
769 | while ((ret = read(stderr_fd[0], buf, 1024)) > 0) { | |
770 | errors = true; | |
771 | ret = qemu_write_full(STDERR_FILENO, buf, ret); | |
fc19f8a0 | 772 | if (ret < 0) { |
c1f8fdc3 PB |
773 | exit(EXIT_FAILURE); |
774 | } | |
775 | } | |
fc19f8a0 | 776 | if (ret < 0) { |
85b01e09 MA |
777 | error_report("Cannot read from daemon: %s", |
778 | strerror(errno)); | |
779 | exit(EXIT_FAILURE); | |
c1f8fdc3 PB |
780 | } |
781 | ||
782 | /* Usually the daemon should not print any message. | |
783 | * Exit with zero status in that case. | |
784 | */ | |
785 | exit(errors); | |
786 | } | |
787 | } | |
788 | ||
a6ac2313 PB |
789 | if (device != NULL && sockpath == NULL) { |
790 | sockpath = g_malloc(128); | |
791 | snprintf(sockpath, 128, SOCKET_PATH, basename(device)); | |
cd831bd7 TS |
792 | } |
793 | ||
48bec07e DB |
794 | saddr = nbd_build_socket_address(sockpath, bindto, port); |
795 | ||
2f78e491 | 796 | if (qemu_init_main_loop(&local_err)) { |
565f65d2 | 797 | error_report_err(local_err); |
2f78e491 CN |
798 | exit(EXIT_FAILURE); |
799 | } | |
802ddc37 PB |
800 | bdrv_init(); |
801 | atexit(bdrv_close_all); | |
802 | ||
e6b63677 | 803 | if (fmt) { |
4fbec260 HR |
804 | options = qdict_new(); |
805 | qdict_put(options, "driver", qstring_from_str(fmt)); | |
e6b63677 DB |
806 | } |
807 | ||
802ddc37 | 808 | srcpath = argv[optind]; |
4fbec260 HR |
809 | blk = blk_new_open("hda", srcpath, NULL, options, flags, &local_err); |
810 | if (!blk) { | |
c29b77f9 MA |
811 | error_reportf_err(local_err, "Failed to blk_new_open '%s': ", |
812 | argv[optind]); | |
85b01e09 | 813 | exit(EXIT_FAILURE); |
802ddc37 | 814 | } |
4fbec260 | 815 | bs = blk_bs(blk); |
802ddc37 | 816 | |
8c116b0e WX |
817 | if (sn_opts) { |
818 | ret = bdrv_snapshot_load_tmp(bs, | |
819 | qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID), | |
820 | qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME), | |
821 | &local_err); | |
822 | } else if (sn_id_or_name) { | |
823 | ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name, | |
824 | &local_err); | |
825 | } | |
826 | if (ret < 0) { | |
c29b77f9 | 827 | error_reportf_err(local_err, "Failed to load snapshot: "); |
85b01e09 | 828 | exit(EXIT_FAILURE); |
8c116b0e WX |
829 | } |
830 | ||
b3838a40 | 831 | bs->detect_zeroes = detect_zeroes; |
4c58e80a | 832 | fd_size = blk_getlength(blk); |
98f44bbe | 833 | if (fd_size < 0) { |
85b01e09 MA |
834 | error_report("Failed to determine the image length: %s", |
835 | strerror(-fd_size)); | |
836 | exit(EXIT_FAILURE); | |
98f44bbe | 837 | } |
802ddc37 | 838 | |
185b4338 | 839 | if (partition != -1) { |
4c58e80a | 840 | ret = find_partition(blk, partition, &dev_offset, &fd_size); |
185b4338 | 841 | if (ret < 0) { |
85b01e09 | 842 | error_report("Could not find partition %d: %s", partition, |
a4699e55 | 843 | strerror(-ret)); |
85b01e09 | 844 | exit(EXIT_FAILURE); |
185b4338 | 845 | } |
802ddc37 PB |
846 | } |
847 | ||
98f44bbe HR |
848 | exp = nbd_export_new(blk, dev_offset, fd_size, nbdflags, nbd_export_closed, |
849 | &local_err); | |
850 | if (!exp) { | |
4fffeb5e | 851 | error_report_err(local_err); |
85b01e09 | 852 | exit(EXIT_FAILURE); |
98f44bbe | 853 | } |
3d4b2f9c DB |
854 | if (export_name) { |
855 | nbd_export_set_name(exp, export_name); | |
856 | newproto = true; | |
857 | } | |
3b05a8e9 | 858 | |
d0d6ff58 DB |
859 | server_ioc = qio_channel_socket_new(); |
860 | if (qio_channel_socket_listen_sync(server_ioc, saddr, &local_err) < 0) { | |
861 | object_unref(OBJECT(server_ioc)); | |
48bec07e | 862 | error_report_err(local_err); |
7a5ca864 | 863 | return 1; |
a61c6782 | 864 | } |
f1ef5555 PB |
865 | |
866 | if (device) { | |
867 | int ret; | |
868 | ||
a6ac2313 | 869 | ret = pthread_create(&client_thread, NULL, nbd_client_thread, device); |
f1ef5555 | 870 | if (ret != 0) { |
85b01e09 MA |
871 | error_report("Failed to create client thread: %s", strerror(ret)); |
872 | exit(EXIT_FAILURE); | |
f1ef5555 PB |
873 | } |
874 | } else { | |
875 | /* Shut up GCC warnings. */ | |
876 | memset(&client_thread, 0, sizeof(client_thread)); | |
877 | } | |
878 | ||
d0d6ff58 | 879 | nbd_update_server_watch(); |
7a5ca864 | 880 | |
9faf31b6 MT |
881 | /* now when the initialization is (almost) complete, chdir("/") |
882 | * to free any busy filesystems */ | |
883 | if (chdir("/") < 0) { | |
85b01e09 MA |
884 | error_report("Could not chdir to root directory: %s", |
885 | strerror(errno)); | |
886 | exit(EXIT_FAILURE); | |
9faf31b6 MT |
887 | } |
888 | ||
7860a380 | 889 | state = RUNNING; |
3b05a8e9 | 890 | do { |
a61c6782 | 891 | main_loop_wait(false); |
7860a380 PB |
892 | if (state == TERMINATE) { |
893 | state = TERMINATING; | |
894 | nbd_export_close(exp); | |
895 | nbd_export_put(exp); | |
896 | exp = NULL; | |
897 | } | |
898 | } while (state != TERMINATED); | |
7a5ca864 | 899 | |
26f54e9a | 900 | blk_unref(blk); |
b32f6c28 PB |
901 | if (sockpath) { |
902 | unlink(sockpath); | |
903 | } | |
7a5ca864 | 904 | |
fbf28a43 | 905 | qemu_opts_del(sn_opts); |
8c116b0e | 906 | |
a517e88b PB |
907 | if (device) { |
908 | void *ret; | |
909 | pthread_join(client_thread, &ret); | |
910 | exit(ret != NULL); | |
911 | } else { | |
912 | exit(EXIT_SUCCESS); | |
913 | } | |
7a5ca864 | 914 | } |