]>
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" |
c2a3d7da EB |
20 | #include <getopt.h> |
21 | #include <libgen.h> | |
22 | #include <pthread.h> | |
23 | ||
da34e65c | 24 | #include "qapi/error.h" |
f348b6d1 | 25 | #include "qemu/cutils.h" |
26f54e9a | 26 | #include "sysemu/block-backend.h" |
b3838a40 | 27 | #include "block/block_int.h" |
737e150e | 28 | #include "block/nbd.h" |
6a1751b7 | 29 | #include "qemu/main-loop.h" |
922a01a0 | 30 | #include "qemu/option.h" |
537b41f5 | 31 | #include "qemu/error-report.h" |
0ab3b337 | 32 | #include "qemu/config-file.h" |
58369e22 | 33 | #include "qemu/bswap.h" |
39ca463e | 34 | #include "qemu/log.h" |
53fabd4b | 35 | #include "qemu/systemd.h" |
8c116b0e | 36 | #include "block/snapshot.h" |
452fcdbc | 37 | #include "qapi/qmp/qdict.h" |
d49b6836 | 38 | #include "qapi/qmp/qstring.h" |
0ab3b337 | 39 | #include "qom/object_interfaces.h" |
d0d6ff58 | 40 | #include "io/channel-socket.h" |
e4849c1d | 41 | #include "io/net-listener.h" |
c2297088 | 42 | #include "crypto/init.h" |
39ca463e | 43 | #include "trace/control.h" |
be377133 | 44 | #include "qemu-version.h" |
7a5ca864 | 45 | |
3c1fa35d EB |
46 | #ifdef __linux__ |
47 | #define HAVE_NBD_DEVICE 1 | |
48 | #else | |
49 | #define HAVE_NBD_DEVICE 0 | |
50 | #endif | |
51 | ||
713cc671 | 52 | #define SOCKET_PATH "/var/lock/qemu-nbd-%s" |
fa8b7ce2 DB |
53 | #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 | |
ffb31e1d | 60 | #define QEMU_NBD_OPT_FORK 263 |
b25e12da | 61 | #define QEMU_NBD_OPT_TLSAUTHZ 264 |
7a5ca864 | 62 | |
bd31c214 EB |
63 | #define MBR_SIZE 512 |
64 | ||
9d976580 | 65 | static NBDExport *export; |
b1d8e52e | 66 | static int verbose; |
a517e88b | 67 | static char *srcpath; |
bd269ebc | 68 | static SocketAddress *saddr; |
7860a380 PB |
69 | static int persistent = 0; |
70 | static enum { RUNNING, TERMINATE, TERMINATING, TERMINATED } state; | |
a61c6782 PB |
71 | static int shared = 1; |
72 | static int nb_fds; | |
e4849c1d | 73 | static QIONetListener *server; |
145614a1 | 74 | static QCryptoTLSCreds *tlscreds; |
b25e12da | 75 | static const char *tlsauthz; |
7a5ca864 FB |
76 | |
77 | static void usage(const char *name) | |
78 | { | |
b033cd86 | 79 | (printf) ( |
7a5ca864 | 80 | "Usage: %s [OPTIONS] FILE\n" |
68b96f15 EB |
81 | " or: %s -L [OPTIONS]\n" |
82 | "QEMU Disk Network Block Device Utility\n" | |
7a5ca864 | 83 | "\n" |
713cc671 PL |
84 | " -h, --help display this help and exit\n" |
85 | " -V, --version output version information and exit\n" | |
b033cd86 PB |
86 | "\n" |
87 | "Connection properties:\n" | |
713cc671 PL |
88 | " -p, --port=PORT port to listen on (default `%d')\n" |
89 | " -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n" | |
90 | " -k, --socket=PATH path to the unix socket\n" | |
91 | " (default '"SOCKET_PATH"')\n" | |
92 | " -e, --shared=NUM device can be shared by NUM clients (default '1')\n" | |
93 | " -t, --persistent don't exit on the last connection\n" | |
94 | " -v, --verbose display extra debugging information\n" | |
f5cd0bb5 VSO |
95 | " -x, --export-name=NAME expose export by name (default is empty string)\n" |
96 | " -D, --description=TEXT export a human-readable description\n" | |
7a5ca864 | 97 | "\n" |
b033cd86 | 98 | "Exposing part of the image:\n" |
713cc671 PL |
99 | " -o, --offset=OFFSET offset into the image\n" |
100 | " -P, --partition=NUM only expose partition NUM\n" | |
636192c4 | 101 | " -B, --bitmap=NAME expose a persistent dirty bitmap\n" |
b033cd86 | 102 | "\n" |
0ab3b337 | 103 | "General purpose options:\n" |
68b96f15 | 104 | " -L, --list list exports available from another NBD server\n" |
0ab3b337 DB |
105 | " --object type,id=ID,... define an object such as 'secret' for providing\n" |
106 | " passwords and/or encryption keys\n" | |
f7812df7 | 107 | " --tls-creds=ID use id of an earlier --object to provide TLS\n" |
b25e12da DB |
108 | " --tls-authz=ID use id of an earlier --object to provide\n" |
109 | " authorization\n" | |
39ca463e DL |
110 | " -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n" |
111 | " specify tracing options\n" | |
ffb31e1d HR |
112 | " --fork fork off the server process and exit the parent\n" |
113 | " once the server is running\n" | |
3c1fa35d EB |
114 | #if HAVE_NBD_DEVICE |
115 | "\n" | |
b033cd86 | 116 | "Kernel NBD client support:\n" |
713cc671 PL |
117 | " -c, --connect=DEV connect FILE to the local NBD device DEV\n" |
118 | " -d, --disconnect disconnect the specified device\n" | |
b033cd86 PB |
119 | #endif |
120 | "\n" | |
121 | "Block device options:\n" | |
713cc671 PL |
122 | " -f, --format=FORMAT set image format (raw, qcow2, ...)\n" |
123 | " -r, --read-only export read-only\n" | |
124 | " -s, --snapshot use FILE as an external snapshot, create a temporary\n" | |
125 | " file with backing_file=FILE, redirect the write to\n" | |
126 | " the temporary one\n" | |
8c116b0e | 127 | " -l, --load-snapshot=SNAPSHOT_PARAM\n" |
713cc671 PL |
128 | " load an internal snapshot inside FILE and export it\n" |
129 | " as an read-only device, SNAPSHOT_PARAM format is\n" | |
130 | " 'snapshot.id=[ID],snapshot.name=[NAME]', or\n" | |
131 | " '[ID_OR_NAME]'\n" | |
132 | " -n, --nocache disable host cache\n" | |
133 | " --cache=MODE set cache mode (none, writeback, ...)\n" | |
713cc671 | 134 | " --aio=MODE set AIO mode (native or threads)\n" |
b3838a40 | 135 | " --discard=MODE set discard mode (ignore, unmap)\n" |
6883de6c | 136 | " --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n" |
77c9aaef | 137 | " --image-opts treat FILE as a full set of image options\n" |
b033cd86 | 138 | "\n" |
f5048cb7 | 139 | QEMU_HELP_BOTTOM "\n" |
68b96f15 | 140 | , name, name, NBD_DEFAULT_PORT, "DEVICE"); |
7a5ca864 FB |
141 | } |
142 | ||
143 | static void version(const char *name) | |
144 | { | |
145 | printf( | |
7e563bfb | 146 | "%s " QEMU_FULL_VERSION "\n" |
7a5ca864 FB |
147 | "Written by Anthony Liguori.\n" |
148 | "\n" | |
be377133 | 149 | QEMU_COPYRIGHT "\n" |
7a5ca864 FB |
150 | "This is free software; see the source for copying conditions. There is NO\n" |
151 | "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" | |
315bc7aa | 152 | , name); |
7a5ca864 FB |
153 | } |
154 | ||
155 | struct partition_record | |
156 | { | |
157 | uint8_t bootable; | |
158 | uint8_t start_head; | |
159 | uint32_t start_cylinder; | |
160 | uint8_t start_sector; | |
161 | uint8_t system; | |
162 | uint8_t end_head; | |
163 | uint8_t end_cylinder; | |
164 | uint8_t end_sector; | |
165 | uint32_t start_sector_abs; | |
166 | uint32_t nb_sectors_abs; | |
167 | }; | |
168 | ||
169 | static void read_partition(uint8_t *p, struct partition_record *r) | |
170 | { | |
171 | r->bootable = p[0]; | |
172 | r->start_head = p[1]; | |
173 | r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300); | |
174 | r->start_sector = p[2] & 0x3f; | |
175 | r->system = p[4]; | |
176 | r->end_head = p[5]; | |
177 | r->end_cylinder = p[7] | ((p[6] << 2) & 0x300); | |
178 | r->end_sector = p[6] & 0x3f; | |
ac97393d | 179 | |
773dce3c PM |
180 | r->start_sector_abs = ldl_le_p(p + 8); |
181 | r->nb_sectors_abs = ldl_le_p(p + 12); | |
7a5ca864 FB |
182 | } |
183 | ||
4c58e80a | 184 | static int find_partition(BlockBackend *blk, int partition, |
9d26dfcb | 185 | uint64_t *offset, uint64_t *size) |
7a5ca864 FB |
186 | { |
187 | struct partition_record mbr[4]; | |
bd31c214 | 188 | uint8_t data[MBR_SIZE]; |
7a5ca864 FB |
189 | int i; |
190 | int ext_partnum = 4; | |
cb7cf0e3 | 191 | int ret; |
7a5ca864 | 192 | |
bd31c214 EB |
193 | ret = blk_pread(blk, 0, data, sizeof(data)); |
194 | if (ret < 0) { | |
a4699e55 | 195 | error_report("error while reading: %s", strerror(-ret)); |
85b01e09 | 196 | exit(EXIT_FAILURE); |
cb7cf0e3 | 197 | } |
7a5ca864 FB |
198 | |
199 | if (data[510] != 0x55 || data[511] != 0xaa) { | |
185b4338 | 200 | return -EINVAL; |
7a5ca864 FB |
201 | } |
202 | ||
203 | for (i = 0; i < 4; i++) { | |
204 | read_partition(&data[446 + 16 * i], &mbr[i]); | |
205 | ||
453b07b1 | 206 | if (!mbr[i].system || !mbr[i].nb_sectors_abs) { |
7a5ca864 | 207 | continue; |
453b07b1 | 208 | } |
7a5ca864 FB |
209 | |
210 | if (mbr[i].system == 0xF || mbr[i].system == 0x5) { | |
211 | struct partition_record ext[4]; | |
bd31c214 | 212 | uint8_t data1[MBR_SIZE]; |
7a5ca864 FB |
213 | int j; |
214 | ||
bd31c214 EB |
215 | ret = blk_pread(blk, mbr[i].start_sector_abs * MBR_SIZE, |
216 | data1, sizeof(data1)); | |
217 | if (ret < 0) { | |
a4699e55 | 218 | error_report("error while reading: %s", strerror(-ret)); |
85b01e09 | 219 | exit(EXIT_FAILURE); |
cb7cf0e3 | 220 | } |
7a5ca864 FB |
221 | |
222 | for (j = 0; j < 4; j++) { | |
223 | read_partition(&data1[446 + 16 * j], &ext[j]); | |
453b07b1 | 224 | if (!ext[j].system || !ext[j].nb_sectors_abs) { |
7a5ca864 | 225 | continue; |
453b07b1 | 226 | } |
7a5ca864 FB |
227 | |
228 | if ((ext_partnum + j + 1) == partition) { | |
229 | *offset = (uint64_t)ext[j].start_sector_abs << 9; | |
230 | *size = (uint64_t)ext[j].nb_sectors_abs << 9; | |
231 | return 0; | |
232 | } | |
233 | } | |
234 | ext_partnum += 4; | |
235 | } else if ((i + 1) == partition) { | |
236 | *offset = (uint64_t)mbr[i].start_sector_abs << 9; | |
237 | *size = (uint64_t)mbr[i].nb_sectors_abs << 9; | |
238 | return 0; | |
239 | } | |
240 | } | |
241 | ||
185b4338 | 242 | return -ENOENT; |
7a5ca864 FB |
243 | } |
244 | ||
bb345110 PB |
245 | static void termsig_handler(int signum) |
246 | { | |
23994a5f | 247 | atomic_cmpxchg(&state, RUNNING, TERMINATE); |
a61c6782 | 248 | qemu_notify_event(); |
bb345110 PB |
249 | } |
250 | ||
537b41f5 | 251 | |
68b96f15 EB |
252 | static int qemu_nbd_client_list(SocketAddress *saddr, QCryptoTLSCreds *tls, |
253 | const char *hostname) | |
254 | { | |
255 | int ret = EXIT_FAILURE; | |
256 | int rc; | |
257 | Error *err = NULL; | |
258 | QIOChannelSocket *sioc; | |
259 | NBDExportInfo *list; | |
260 | int i, j; | |
261 | ||
262 | sioc = qio_channel_socket_new(); | |
263 | if (qio_channel_socket_connect_sync(sioc, saddr, &err) < 0) { | |
264 | error_report_err(err); | |
265 | return EXIT_FAILURE; | |
266 | } | |
267 | rc = nbd_receive_export_list(QIO_CHANNEL(sioc), tls, hostname, &list, | |
268 | &err); | |
269 | if (rc < 0) { | |
270 | if (err) { | |
271 | error_report_err(err); | |
272 | } | |
273 | goto out; | |
274 | } | |
275 | printf("exports available: %d\n", rc); | |
276 | for (i = 0; i < rc; i++) { | |
277 | printf(" export: '%s'\n", list[i].name); | |
278 | if (list[i].description && *list[i].description) { | |
279 | printf(" description: %s\n", list[i].description); | |
280 | } | |
281 | if (list[i].flags & NBD_FLAG_HAS_FLAGS) { | |
282 | printf(" size: %" PRIu64 "\n", list[i].size); | |
283 | printf(" flags: 0x%x (", list[i].flags); | |
284 | if (list[i].flags & NBD_FLAG_READ_ONLY) { | |
285 | printf(" readonly"); | |
286 | } | |
287 | if (list[i].flags & NBD_FLAG_SEND_FLUSH) { | |
288 | printf(" flush"); | |
289 | } | |
290 | if (list[i].flags & NBD_FLAG_SEND_FUA) { | |
291 | printf(" fua"); | |
292 | } | |
293 | if (list[i].flags & NBD_FLAG_ROTATIONAL) { | |
294 | printf(" rotational"); | |
295 | } | |
296 | if (list[i].flags & NBD_FLAG_SEND_TRIM) { | |
297 | printf(" trim"); | |
298 | } | |
299 | if (list[i].flags & NBD_FLAG_SEND_WRITE_ZEROES) { | |
300 | printf(" zeroes"); | |
301 | } | |
302 | if (list[i].flags & NBD_FLAG_SEND_DF) { | |
303 | printf(" df"); | |
304 | } | |
305 | if (list[i].flags & NBD_FLAG_CAN_MULTI_CONN) { | |
306 | printf(" multi"); | |
307 | } | |
308 | if (list[i].flags & NBD_FLAG_SEND_RESIZE) { | |
309 | printf(" resize"); | |
310 | } | |
311 | if (list[i].flags & NBD_FLAG_SEND_CACHE) { | |
312 | printf(" cache"); | |
313 | } | |
314 | printf(" )\n"); | |
315 | } | |
316 | if (list[i].min_block) { | |
317 | printf(" min block: %u\n", list[i].min_block); | |
318 | printf(" opt block: %u\n", list[i].opt_block); | |
319 | printf(" max block: %u\n", list[i].max_block); | |
320 | } | |
321 | if (list[i].n_contexts) { | |
322 | printf(" available meta contexts: %d\n", list[i].n_contexts); | |
323 | for (j = 0; j < list[i].n_contexts; j++) { | |
324 | printf(" %s\n", list[i].contexts[j]); | |
325 | } | |
326 | } | |
327 | } | |
328 | nbd_free_export_list(list, rc); | |
329 | ||
330 | ret = EXIT_SUCCESS; | |
331 | out: | |
332 | object_unref(OBJECT(sioc)); | |
333 | return ret; | |
334 | } | |
335 | ||
336 | ||
3c1fa35d | 337 | #if HAVE_NBD_DEVICE |
a517e88b | 338 | static void *show_parts(void *arg) |
cd831bd7 | 339 | { |
a6ac2313 | 340 | char *device = arg; |
a517e88b PB |
341 | int nbd; |
342 | ||
343 | /* linux just needs an open() to trigger | |
344 | * the partition table update | |
345 | * but remember to load the module with max_part != 0 : | |
346 | * modprobe nbd max_part=63 | |
347 | */ | |
348 | nbd = open(device, O_RDWR); | |
fc19f8a0 | 349 | if (nbd >= 0) { |
a517e88b PB |
350 | close(nbd); |
351 | } | |
352 | return NULL; | |
353 | } | |
cd831bd7 | 354 | |
a517e88b PB |
355 | static void *nbd_client_thread(void *arg) |
356 | { | |
a6ac2313 | 357 | char *device = arg; |
6dc1667d | 358 | NBDExportInfo info = { .request_sizes = false, .name = g_strdup("") }; |
d0d6ff58 DB |
359 | QIOChannelSocket *sioc; |
360 | int fd; | |
a517e88b PB |
361 | int ret; |
362 | pthread_t show_parts_thread; | |
1ce52846 | 363 | Error *local_error = NULL; |
a517e88b | 364 | |
d0d6ff58 DB |
365 | sioc = qio_channel_socket_new(); |
366 | if (qio_channel_socket_connect_sync(sioc, | |
367 | saddr, | |
368 | &local_error) < 0) { | |
48bec07e | 369 | error_report_err(local_error); |
dc10e8b3 SH |
370 | goto out; |
371 | } | |
a517e88b | 372 | |
6dc1667d | 373 | ret = nbd_receive_negotiate(QIO_CHANNEL(sioc), |
004a89fc | 374 | NULL, NULL, NULL, &info, &local_error); |
fc19f8a0 | 375 | if (ret < 0) { |
1ce52846 | 376 | if (local_error) { |
78288671 | 377 | error_report_err(local_error); |
1ce52846 | 378 | } |
0c544d73 | 379 | goto out_socket; |
a517e88b PB |
380 | } |
381 | ||
a6ac2313 | 382 | fd = open(device, O_RDWR); |
fc19f8a0 | 383 | if (fd < 0) { |
a6ac2313 | 384 | /* Linux-only, we can use %m in printf. */ |
b9884681 | 385 | error_report("Failed to open %s: %m", device); |
0c544d73 | 386 | goto out_socket; |
a6ac2313 PB |
387 | } |
388 | ||
004a89fc | 389 | ret = nbd_init(fd, sioc, &info, &local_error); |
fc19f8a0 | 390 | if (ret < 0) { |
be41c100 | 391 | error_report_err(local_error); |
0c544d73 | 392 | goto out_fd; |
a517e88b PB |
393 | } |
394 | ||
395 | /* update partition table */ | |
a6ac2313 | 396 | pthread_create(&show_parts_thread, NULL, show_parts, device); |
a517e88b | 397 | |
c1f8fdc3 PB |
398 | if (verbose) { |
399 | fprintf(stderr, "NBD device %s is now connected to %s\n", | |
400 | device, srcpath); | |
401 | } else { | |
402 | /* Close stderr so that the qemu-nbd process exits. */ | |
403 | dup2(STDOUT_FILENO, STDERR_FILENO); | |
404 | } | |
a517e88b PB |
405 | |
406 | ret = nbd_client(fd); | |
407 | if (ret) { | |
0c544d73 | 408 | goto out_fd; |
cd831bd7 | 409 | } |
a517e88b | 410 | close(fd); |
d0d6ff58 | 411 | object_unref(OBJECT(sioc)); |
6dc1667d | 412 | g_free(info.name); |
a517e88b PB |
413 | kill(getpid(), SIGTERM); |
414 | return (void *) EXIT_SUCCESS; | |
415 | ||
0c544d73 PB |
416 | out_fd: |
417 | close(fd); | |
418 | out_socket: | |
d0d6ff58 | 419 | object_unref(OBJECT(sioc)); |
a517e88b | 420 | out: |
6dc1667d | 421 | g_free(info.name); |
a517e88b PB |
422 | kill(getpid(), SIGTERM); |
423 | return (void *) EXIT_FAILURE; | |
cd831bd7 | 424 | } |
3c1fa35d | 425 | #endif /* HAVE_NBD_DEVICE */ |
cd831bd7 | 426 | |
e4afbf4f | 427 | static int nbd_can_accept(void) |
a61c6782 | 428 | { |
df8ad9f1 | 429 | return state == RUNNING && nb_fds < shared; |
a61c6782 PB |
430 | } |
431 | ||
9d976580 | 432 | static void nbd_export_closed(NBDExport *export) |
7860a380 PB |
433 | { |
434 | assert(state == TERMINATING); | |
435 | state = TERMINATED; | |
436 | } | |
437 | ||
d0d6ff58 | 438 | static void nbd_update_server_watch(void); |
e4afbf4f | 439 | |
0c9390d9 | 440 | static void nbd_client_closed(NBDClient *client, bool negotiated) |
a61c6782 | 441 | { |
1743b515 | 442 | nb_fds--; |
0c9390d9 | 443 | if (negotiated && nb_fds == 0 && !persistent && state == RUNNING) { |
7860a380 PB |
444 | state = TERMINATE; |
445 | } | |
d0d6ff58 | 446 | nbd_update_server_watch(); |
7860a380 | 447 | nbd_client_put(client); |
a61c6782 PB |
448 | } |
449 | ||
e4849c1d DB |
450 | static void nbd_accept(QIONetListener *listener, QIOChannelSocket *cioc, |
451 | gpointer opaque) | |
a61c6782 | 452 | { |
7860a380 | 453 | if (state >= TERMINATE) { |
e4849c1d | 454 | return; |
7860a380 PB |
455 | } |
456 | ||
ee7d7aab | 457 | nb_fds++; |
d0d6ff58 | 458 | nbd_update_server_watch(); |
b25e12da | 459 | nbd_client_new(cioc, tlscreds, tlsauthz, nbd_client_closed); |
a61c6782 PB |
460 | } |
461 | ||
d0d6ff58 | 462 | static void nbd_update_server_watch(void) |
e4afbf4f FZ |
463 | { |
464 | if (nbd_can_accept()) { | |
e4849c1d | 465 | qio_net_listener_set_client_func(server, nbd_accept, NULL, NULL); |
e4afbf4f | 466 | } else { |
e4849c1d | 467 | qio_net_listener_set_client_func(server, NULL, NULL, NULL); |
e4afbf4f FZ |
468 | } |
469 | } | |
470 | ||
48bec07e | 471 | |
bd269ebc | 472 | static SocketAddress *nbd_build_socket_address(const char *sockpath, |
48bec07e DB |
473 | const char *bindto, |
474 | const char *port) | |
475 | { | |
bd269ebc | 476 | SocketAddress *saddr; |
48bec07e | 477 | |
bd269ebc | 478 | saddr = g_new0(SocketAddress, 1); |
48bec07e | 479 | if (sockpath) { |
bd269ebc MA |
480 | saddr->type = SOCKET_ADDRESS_TYPE_UNIX; |
481 | saddr->u.q_unix.path = g_strdup(sockpath); | |
48bec07e | 482 | } else { |
0399293e | 483 | InetSocketAddress *inet; |
bd269ebc MA |
484 | saddr->type = SOCKET_ADDRESS_TYPE_INET; |
485 | inet = &saddr->u.inet; | |
0399293e | 486 | inet->host = g_strdup(bindto); |
48bec07e | 487 | if (port) { |
0399293e | 488 | inet->port = g_strdup(port); |
48bec07e | 489 | } else { |
0399293e | 490 | inet->port = g_strdup_printf("%d", NBD_DEFAULT_PORT); |
48bec07e DB |
491 | } |
492 | } | |
493 | ||
494 | return saddr; | |
495 | } | |
496 | ||
497 | ||
77c9aaef DB |
498 | static QemuOptsList file_opts = { |
499 | .name = "file", | |
500 | .implied_opt_name = "file", | |
501 | .head = QTAILQ_HEAD_INITIALIZER(file_opts.head), | |
502 | .desc = { | |
503 | /* no elements => accept any params */ | |
504 | { /* end of list */ } | |
505 | }, | |
506 | }; | |
507 | ||
0ab3b337 DB |
508 | static QemuOptsList qemu_object_opts = { |
509 | .name = "object", | |
510 | .implied_opt_name = "qom-type", | |
511 | .head = QTAILQ_HEAD_INITIALIZER(qemu_object_opts.head), | |
512 | .desc = { | |
513 | { } | |
514 | }, | |
515 | }; | |
516 | ||
517 | ||
145614a1 | 518 | |
68b96f15 EB |
519 | static QCryptoTLSCreds *nbd_get_tls_creds(const char *id, bool list, |
520 | Error **errp) | |
145614a1 DB |
521 | { |
522 | Object *obj; | |
523 | QCryptoTLSCreds *creds; | |
524 | ||
525 | obj = object_resolve_path_component( | |
526 | object_get_objects_root(), id); | |
527 | if (!obj) { | |
528 | error_setg(errp, "No TLS credentials with id '%s'", | |
529 | id); | |
530 | return NULL; | |
531 | } | |
532 | creds = (QCryptoTLSCreds *) | |
533 | object_dynamic_cast(obj, TYPE_QCRYPTO_TLS_CREDS); | |
534 | if (!creds) { | |
535 | error_setg(errp, "Object with id '%s' is not TLS credentials", | |
536 | id); | |
537 | return NULL; | |
538 | } | |
539 | ||
68b96f15 EB |
540 | if (list) { |
541 | if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT) { | |
542 | error_setg(errp, | |
543 | "Expecting TLS credentials with a client endpoint"); | |
544 | return NULL; | |
545 | } | |
546 | } else { | |
547 | if (creds->endpoint != QCRYPTO_TLS_CREDS_ENDPOINT_SERVER) { | |
548 | error_setg(errp, | |
549 | "Expecting TLS credentials with a server endpoint"); | |
550 | return NULL; | |
551 | } | |
145614a1 DB |
552 | } |
553 | object_ref(obj); | |
554 | return creds; | |
555 | } | |
556 | ||
a721f53b RJ |
557 | static void setup_address_and_port(const char **address, const char **port) |
558 | { | |
559 | if (*address == NULL) { | |
560 | *address = "0.0.0.0"; | |
561 | } | |
562 | ||
563 | if (*port == NULL) { | |
564 | *port = stringify(NBD_DEFAULT_PORT); | |
565 | } | |
566 | } | |
567 | ||
a721f53b RJ |
568 | /* |
569 | * Check socket parameters compatibility when socket activation is used. | |
570 | */ | |
571 | static const char *socket_activation_validate_opts(const char *device, | |
572 | const char *sockpath, | |
573 | const char *address, | |
68b96f15 EB |
574 | const char *port, |
575 | bool list) | |
a721f53b RJ |
576 | { |
577 | if (device != NULL) { | |
578 | return "NBD device can't be set when using socket activation"; | |
579 | } | |
580 | ||
581 | if (sockpath != NULL) { | |
582 | return "Unix socket can't be set when using socket activation"; | |
583 | } | |
584 | ||
585 | if (address != NULL) { | |
586 | return "The interface can't be set when using socket activation"; | |
587 | } | |
588 | ||
589 | if (port != NULL) { | |
590 | return "TCP port number can't be set when using socket activation"; | |
591 | } | |
592 | ||
68b96f15 EB |
593 | if (list) { |
594 | return "List mode is incompatible with socket activation"; | |
595 | } | |
596 | ||
a721f53b RJ |
597 | return NULL; |
598 | } | |
145614a1 | 599 | |
b3b5299d KW |
600 | static void qemu_nbd_shutdown(void) |
601 | { | |
602 | job_cancel_sync_all(); | |
603 | bdrv_close_all(); | |
604 | } | |
605 | ||
7a5ca864 FB |
606 | int main(int argc, char **argv) |
607 | { | |
26f54e9a | 608 | BlockBackend *blk; |
7a5ca864 | 609 | BlockDriverState *bs; |
9d26dfcb | 610 | uint64_t dev_offset = 0; |
7423f417 | 611 | uint16_t nbdflags = 0; |
cd831bd7 | 612 | bool disconnect = false; |
a721f53b | 613 | const char *bindto = NULL; |
48bec07e DB |
614 | const char *port = NULL; |
615 | char *sockpath = NULL; | |
a6ac2313 | 616 | char *device = NULL; |
9d26dfcb | 617 | int64_t fd_size; |
8c116b0e WX |
618 | QemuOpts *sn_opts = NULL; |
619 | const char *sn_id_or_name = NULL; | |
68b96f15 | 620 | const char *sopt = "hVb:o:p:rsnP:c:dvk:e:f:tl:x:T:D:B:L"; |
7a5ca864 | 621 | struct option lopt[] = { |
aa6e546c DB |
622 | { "help", no_argument, NULL, 'h' }, |
623 | { "version", no_argument, NULL, 'V' }, | |
624 | { "bind", required_argument, NULL, 'b' }, | |
625 | { "port", required_argument, NULL, 'p' }, | |
626 | { "socket", required_argument, NULL, 'k' }, | |
627 | { "offset", required_argument, NULL, 'o' }, | |
628 | { "read-only", no_argument, NULL, 'r' }, | |
629 | { "partition", required_argument, NULL, 'P' }, | |
636192c4 | 630 | { "bitmap", required_argument, NULL, 'B' }, |
aa6e546c DB |
631 | { "connect", required_argument, NULL, 'c' }, |
632 | { "disconnect", no_argument, NULL, 'd' }, | |
68b96f15 | 633 | { "list", no_argument, NULL, 'L' }, |
aa6e546c DB |
634 | { "snapshot", no_argument, NULL, 's' }, |
635 | { "load-snapshot", required_argument, NULL, 'l' }, | |
636 | { "nocache", no_argument, NULL, 'n' }, | |
637 | { "cache", required_argument, NULL, QEMU_NBD_OPT_CACHE }, | |
638 | { "aio", required_argument, NULL, QEMU_NBD_OPT_AIO }, | |
639 | { "discard", required_argument, NULL, QEMU_NBD_OPT_DISCARD }, | |
640 | { "detect-zeroes", required_argument, NULL, | |
641 | QEMU_NBD_OPT_DETECT_ZEROES }, | |
642 | { "shared", required_argument, NULL, 'e' }, | |
643 | { "format", required_argument, NULL, 'f' }, | |
644 | { "persistent", no_argument, NULL, 't' }, | |
645 | { "verbose", no_argument, NULL, 'v' }, | |
646 | { "object", required_argument, NULL, QEMU_NBD_OPT_OBJECT }, | |
647 | { "export-name", required_argument, NULL, 'x' }, | |
b1a75b33 | 648 | { "description", required_argument, NULL, 'D' }, |
aa6e546c | 649 | { "tls-creds", required_argument, NULL, QEMU_NBD_OPT_TLSCREDS }, |
b25e12da | 650 | { "tls-authz", required_argument, NULL, QEMU_NBD_OPT_TLSAUTHZ }, |
aa6e546c | 651 | { "image-opts", no_argument, NULL, QEMU_NBD_OPT_IMAGE_OPTS }, |
39ca463e | 652 | { "trace", required_argument, NULL, 'T' }, |
ffb31e1d | 653 | { "fork", no_argument, NULL, QEMU_NBD_OPT_FORK }, |
660f11be | 654 | { NULL, 0, NULL, 0 } |
7a5ca864 FB |
655 | }; |
656 | int ch; | |
657 | int opt_ind = 0; | |
f5edb014 | 658 | int flags = BDRV_O_RDWR; |
43b51011 | 659 | int partition = 0; |
4fbec260 | 660 | int ret = 0; |
39a5235c | 661 | bool seen_cache = false; |
ded9d2d5 | 662 | bool seen_discard = false; |
39a5235c | 663 | bool seen_aio = false; |
a517e88b | 664 | pthread_t client_thread; |
e6b63677 | 665 | const char *fmt = NULL; |
34b5d2c6 | 666 | Error *local_err = NULL; |
b3838a40 | 667 | BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF; |
4fbec260 | 668 | QDict *options = NULL; |
68b96f15 | 669 | const char *export_name = NULL; /* defaults to "" later for server mode */ |
b1a75b33 | 670 | const char *export_description = NULL; |
636192c4 | 671 | const char *bitmap = NULL; |
145614a1 | 672 | const char *tlscredsid = NULL; |
77c9aaef | 673 | bool imageOpts = false; |
6effd5bf | 674 | bool writethrough = true; |
39ca463e | 675 | char *trace_file = NULL; |
ffb31e1d | 676 | bool fork_process = false; |
68b96f15 | 677 | bool list = false; |
ffb31e1d | 678 | int old_stderr = -1; |
a721f53b | 679 | unsigned socket_activation; |
7a5ca864 | 680 | |
a517e88b PB |
681 | /* The client thread uses SIGTERM to interrupt the server. A signal |
682 | * handler ensures that "qemu-nbd -v -c" exits with a nice status code. | |
683 | */ | |
bb345110 | 684 | struct sigaction sa_sigterm; |
bb345110 PB |
685 | memset(&sa_sigterm, 0, sizeof(sa_sigterm)); |
686 | sa_sigterm.sa_handler = termsig_handler; | |
687 | sigaction(SIGTERM, &sa_sigterm, NULL); | |
c2297088 | 688 | |
041e32b8 HR |
689 | #ifdef CONFIG_POSIX |
690 | signal(SIGPIPE, SIG_IGN); | |
691 | #endif | |
692 | ||
f5852efa | 693 | error_init(argv[0]); |
fe4db84d | 694 | module_call_init(MODULE_INIT_TRACE); |
e8f2d272 | 695 | qcrypto_init(&error_fatal); |
c2297088 | 696 | |
0ab3b337 DB |
697 | module_call_init(MODULE_INIT_QOM); |
698 | qemu_add_opts(&qemu_object_opts); | |
39ca463e | 699 | qemu_add_opts(&qemu_trace_opts); |
10f5bff6 | 700 | qemu_init_exec_dir(argv[0]); |
bb345110 | 701 | |
7a5ca864 FB |
702 | while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) { |
703 | switch (ch) { | |
704 | case 's': | |
2f726488 TS |
705 | flags |= BDRV_O_SNAPSHOT; |
706 | break; | |
707 | case 'n': | |
39a5235c PB |
708 | optarg = (char *) "none"; |
709 | /* fallthrough */ | |
710 | case QEMU_NBD_OPT_CACHE: | |
711 | if (seen_cache) { | |
85b01e09 MA |
712 | error_report("-n and --cache can only be specified once"); |
713 | exit(EXIT_FAILURE); | |
39a5235c PB |
714 | } |
715 | seen_cache = true; | |
6effd5bf | 716 | if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) == -1) { |
85b01e09 MA |
717 | error_report("Invalid cache mode `%s'", optarg); |
718 | exit(EXIT_FAILURE); | |
39a5235c | 719 | } |
7a5ca864 | 720 | break; |
39a5235c PB |
721 | case QEMU_NBD_OPT_AIO: |
722 | if (seen_aio) { | |
85b01e09 MA |
723 | error_report("--aio can only be specified once"); |
724 | exit(EXIT_FAILURE); | |
39a5235c PB |
725 | } |
726 | seen_aio = true; | |
727 | if (!strcmp(optarg, "native")) { | |
728 | flags |= BDRV_O_NATIVE_AIO; | |
729 | } else if (!strcmp(optarg, "threads")) { | |
730 | /* this is the default */ | |
731 | } else { | |
85b01e09 MA |
732 | error_report("invalid aio mode `%s'", optarg); |
733 | exit(EXIT_FAILURE); | |
39a5235c PB |
734 | } |
735 | break; | |
ded9d2d5 PB |
736 | case QEMU_NBD_OPT_DISCARD: |
737 | if (seen_discard) { | |
85b01e09 MA |
738 | error_report("--discard can only be specified once"); |
739 | exit(EXIT_FAILURE); | |
ded9d2d5 PB |
740 | } |
741 | seen_discard = true; | |
742 | if (bdrv_parse_discard_flags(optarg, &flags) == -1) { | |
85b01e09 MA |
743 | error_report("Invalid discard mode `%s'", optarg); |
744 | exit(EXIT_FAILURE); | |
ded9d2d5 PB |
745 | } |
746 | break; | |
b3838a40 PL |
747 | case QEMU_NBD_OPT_DETECT_ZEROES: |
748 | detect_zeroes = | |
f7abe0ec | 749 | qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, |
b3838a40 | 750 | optarg, |
b3838a40 PL |
751 | BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, |
752 | &local_err); | |
753 | if (local_err) { | |
c29b77f9 MA |
754 | error_reportf_err(local_err, |
755 | "Failed to parse detect_zeroes mode: "); | |
85b01e09 | 756 | exit(EXIT_FAILURE); |
b3838a40 PL |
757 | } |
758 | if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP && | |
759 | !(flags & BDRV_O_UNMAP)) { | |
85b01e09 MA |
760 | error_report("setting detect-zeroes to unmap is not allowed " |
761 | "without setting discard operation to unmap"); | |
762 | exit(EXIT_FAILURE); | |
b3838a40 PL |
763 | } |
764 | break; | |
7a5ca864 FB |
765 | case 'b': |
766 | bindto = optarg; | |
767 | break; | |
768 | case 'p': | |
48bec07e | 769 | port = optarg; |
7a5ca864 FB |
770 | break; |
771 | case 'o': | |
43b51011 EB |
772 | if (qemu_strtou64(optarg, NULL, 0, &dev_offset) < 0) { |
773 | error_report("Invalid offset '%s'", optarg); | |
85b01e09 | 774 | exit(EXIT_FAILURE); |
7a5ca864 | 775 | } |
7a5ca864 | 776 | break; |
8c116b0e WX |
777 | case 'l': |
778 | if (strstart(optarg, SNAPSHOT_OPT_BASE, NULL)) { | |
70b94331 MA |
779 | sn_opts = qemu_opts_parse_noisily(&internal_snapshot_opts, |
780 | optarg, false); | |
8c116b0e | 781 | if (!sn_opts) { |
85b01e09 MA |
782 | error_report("Failed in parsing snapshot param `%s'", |
783 | optarg); | |
784 | exit(EXIT_FAILURE); | |
8c116b0e WX |
785 | } |
786 | } else { | |
787 | sn_id_or_name = optarg; | |
788 | } | |
789 | /* fall through */ | |
7a5ca864 | 790 | case 'r': |
b90fb4b8 | 791 | nbdflags |= NBD_FLAG_READ_ONLY; |
07108b29 | 792 | flags &= ~BDRV_O_RDWR; |
7a5ca864 FB |
793 | break; |
794 | case 'P': | |
0ae2d546 EB |
795 | warn_report("The '-P' option is deprecated; use --image-opts with " |
796 | "a raw device wrapper for subset exports instead"); | |
43b51011 EB |
797 | if (qemu_strtoi(optarg, NULL, 0, &partition) < 0 || |
798 | partition < 1 || partition > 8) { | |
799 | error_report("Invalid partition '%s'", optarg); | |
85b01e09 | 800 | exit(EXIT_FAILURE); |
713cc671 | 801 | } |
7a5ca864 | 802 | break; |
636192c4 EB |
803 | case 'B': |
804 | bitmap = optarg; | |
805 | break; | |
cd831bd7 | 806 | case 'k': |
b32f6c28 | 807 | sockpath = optarg; |
713cc671 | 808 | if (sockpath[0] != '/') { |
9af9e0fe | 809 | error_report("socket path must be absolute"); |
85b01e09 | 810 | exit(EXIT_FAILURE); |
713cc671 | 811 | } |
cd831bd7 TS |
812 | break; |
813 | case 'd': | |
814 | disconnect = true; | |
815 | break; | |
816 | case 'c': | |
817 | device = optarg; | |
818 | break; | |
3b05a8e9 | 819 | case 'e': |
43b51011 EB |
820 | if (qemu_strtoi(optarg, NULL, 0, &shared) < 0 || |
821 | shared < 1) { | |
85b01e09 MA |
822 | error_report("Invalid shared device number '%s'", optarg); |
823 | exit(EXIT_FAILURE); | |
3b05a8e9 | 824 | } |
3b05a8e9 | 825 | break; |
e6b63677 DB |
826 | case 'f': |
827 | fmt = optarg; | |
828 | break; | |
713cc671 PL |
829 | case 't': |
830 | persistent = 1; | |
831 | break; | |
3d4b2f9c DB |
832 | case 'x': |
833 | export_name = optarg; | |
834 | break; | |
b1a75b33 EB |
835 | case 'D': |
836 | export_description = optarg; | |
837 | break; | |
7a5ca864 FB |
838 | case 'v': |
839 | verbose = 1; | |
840 | break; | |
841 | case 'V': | |
842 | version(argv[0]); | |
843 | exit(0); | |
844 | break; | |
845 | case 'h': | |
846 | usage(argv[0]); | |
847 | exit(0); | |
848 | break; | |
849 | case '?': | |
85b01e09 MA |
850 | error_report("Try `%s --help' for more information.", argv[0]); |
851 | exit(EXIT_FAILURE); | |
0ab3b337 DB |
852 | case QEMU_NBD_OPT_OBJECT: { |
853 | QemuOpts *opts; | |
854 | opts = qemu_opts_parse_noisily(&qemu_object_opts, | |
855 | optarg, true); | |
856 | if (!opts) { | |
857 | exit(EXIT_FAILURE); | |
858 | } | |
859 | } break; | |
145614a1 DB |
860 | case QEMU_NBD_OPT_TLSCREDS: |
861 | tlscredsid = optarg; | |
862 | break; | |
77c9aaef DB |
863 | case QEMU_NBD_OPT_IMAGE_OPTS: |
864 | imageOpts = true; | |
865 | break; | |
39ca463e DL |
866 | case 'T': |
867 | g_free(trace_file); | |
868 | trace_file = trace_opt_parse(optarg); | |
869 | break; | |
b25e12da DB |
870 | case QEMU_NBD_OPT_TLSAUTHZ: |
871 | tlsauthz = optarg; | |
872 | break; | |
ffb31e1d HR |
873 | case QEMU_NBD_OPT_FORK: |
874 | fork_process = true; | |
875 | break; | |
68b96f15 EB |
876 | case 'L': |
877 | list = true; | |
878 | break; | |
7a5ca864 FB |
879 | } |
880 | } | |
881 | ||
68b96f15 EB |
882 | if (list) { |
883 | if (argc != optind) { | |
884 | error_report("List mode is incompatible with a file name"); | |
885 | exit(EXIT_FAILURE); | |
886 | } | |
887 | if (export_name || export_description || dev_offset || partition || | |
888 | device || disconnect || fmt || sn_id_or_name || bitmap || | |
889 | seen_aio || seen_discard || seen_cache) { | |
890 | error_report("List mode is incompatible with per-device settings"); | |
891 | exit(EXIT_FAILURE); | |
892 | } | |
893 | if (fork_process) { | |
894 | error_report("List mode is incompatible with forking"); | |
895 | exit(EXIT_FAILURE); | |
896 | } | |
897 | } else if ((argc - optind) != 1) { | |
433672b0 MA |
898 | error_report("Invalid number of arguments"); |
899 | error_printf("Try `%s --help' for more information.\n", argv[0]); | |
85b01e09 | 900 | exit(EXIT_FAILURE); |
68b96f15 EB |
901 | } else if (!export_name) { |
902 | export_name = ""; | |
7a5ca864 FB |
903 | } |
904 | ||
7e1e0c11 MA |
905 | qemu_opts_foreach(&qemu_object_opts, |
906 | user_creatable_add_opts_foreach, | |
907 | NULL, &error_fatal); | |
0ab3b337 | 908 | |
39ca463e DL |
909 | if (!trace_init_backends()) { |
910 | exit(1); | |
911 | } | |
912 | trace_init_file(trace_file); | |
913 | qemu_set_log(LOG_TRACE); | |
914 | ||
a721f53b RJ |
915 | socket_activation = check_socket_activation(); |
916 | if (socket_activation == 0) { | |
917 | setup_address_and_port(&bindto, &port); | |
918 | } else { | |
919 | /* Using socket activation - check user didn't use -p etc. */ | |
920 | const char *err_msg = socket_activation_validate_opts(device, sockpath, | |
68b96f15 EB |
921 | bindto, port, |
922 | list); | |
a721f53b RJ |
923 | if (err_msg != NULL) { |
924 | error_report("%s", err_msg); | |
925 | exit(EXIT_FAILURE); | |
926 | } | |
53fabd4b PB |
927 | |
928 | /* qemu-nbd can only listen on a single socket. */ | |
929 | if (socket_activation > 1) { | |
930 | error_report("qemu-nbd does not support socket activation with %s > 1", | |
931 | "LISTEN_FDS"); | |
932 | exit(EXIT_FAILURE); | |
933 | } | |
a721f53b RJ |
934 | } |
935 | ||
145614a1 DB |
936 | if (tlscredsid) { |
937 | if (sockpath) { | |
938 | error_report("TLS is only supported with IPv4/IPv6"); | |
939 | exit(EXIT_FAILURE); | |
940 | } | |
941 | if (device) { | |
942 | error_report("TLS is not supported with a host device"); | |
943 | exit(EXIT_FAILURE); | |
944 | } | |
b25e12da DB |
945 | if (tlsauthz && list) { |
946 | error_report("TLS authorization is incompatible with export list"); | |
947 | exit(EXIT_FAILURE); | |
948 | } | |
68b96f15 | 949 | tlscreds = nbd_get_tls_creds(tlscredsid, list, &local_err); |
145614a1 DB |
950 | if (local_err) { |
951 | error_report("Failed to get TLS creds %s", | |
952 | error_get_pretty(local_err)); | |
953 | exit(EXIT_FAILURE); | |
954 | } | |
b25e12da DB |
955 | } else { |
956 | if (tlsauthz) { | |
957 | error_report("--tls-authz is not permitted without --tls-creds"); | |
958 | exit(EXIT_FAILURE); | |
959 | } | |
145614a1 DB |
960 | } |
961 | ||
68b96f15 EB |
962 | if (list) { |
963 | saddr = nbd_build_socket_address(sockpath, bindto, port); | |
964 | return qemu_nbd_client_list(saddr, tlscreds, bindto); | |
965 | } | |
966 | ||
3c1fa35d EB |
967 | #if !HAVE_NBD_DEVICE |
968 | if (disconnect || device) { | |
969 | error_report("Kernel /dev/nbdN support not available"); | |
970 | exit(EXIT_FAILURE); | |
971 | } | |
972 | #else /* HAVE_NBD_DEVICE */ | |
cd831bd7 | 973 | if (disconnect) { |
d0d6ff58 DB |
974 | int nbdfd = open(argv[optind], O_RDWR); |
975 | if (nbdfd < 0) { | |
85b01e09 MA |
976 | error_report("Cannot open %s: %s", argv[optind], |
977 | strerror(errno)); | |
978 | exit(EXIT_FAILURE); | |
fc19f8a0 | 979 | } |
d0d6ff58 | 980 | nbd_disconnect(nbdfd); |
cd831bd7 | 981 | |
d0d6ff58 | 982 | close(nbdfd); |
cd831bd7 TS |
983 | |
984 | printf("%s disconnected\n", argv[optind]); | |
985 | ||
713cc671 | 986 | return 0; |
cd831bd7 | 987 | } |
3c1fa35d | 988 | #endif |
cd831bd7 | 989 | |
ffb31e1d | 990 | if ((device && !verbose) || fork_process) { |
c1f8fdc3 PB |
991 | int stderr_fd[2]; |
992 | pid_t pid; | |
993 | int ret; | |
994 | ||
fc19f8a0 | 995 | if (qemu_pipe(stderr_fd) < 0) { |
85b01e09 MA |
996 | error_report("Error setting up communication pipe: %s", |
997 | strerror(errno)); | |
998 | exit(EXIT_FAILURE); | |
c1f8fdc3 PB |
999 | } |
1000 | ||
1001 | /* Now daemonize, but keep a communication channel open to | |
1002 | * print errors and exit with the proper status code. | |
1003 | */ | |
1004 | pid = fork(); | |
70d4739e | 1005 | if (pid < 0) { |
85b01e09 MA |
1006 | error_report("Failed to fork: %s", strerror(errno)); |
1007 | exit(EXIT_FAILURE); | |
70d4739e | 1008 | } else if (pid == 0) { |
c1f8fdc3 | 1009 | close(stderr_fd[0]); |
9faf31b6 | 1010 | ret = qemu_daemon(1, 0); |
c1f8fdc3 PB |
1011 | |
1012 | /* Temporarily redirect stderr to the parent's pipe... */ | |
ffb31e1d | 1013 | old_stderr = dup(STDERR_FILENO); |
c1f8fdc3 | 1014 | dup2(stderr_fd[1], STDERR_FILENO); |
fc19f8a0 | 1015 | if (ret < 0) { |
85b01e09 MA |
1016 | error_report("Failed to daemonize: %s", strerror(errno)); |
1017 | exit(EXIT_FAILURE); | |
c1f8fdc3 PB |
1018 | } |
1019 | ||
1020 | /* ... close the descriptor we inherited and go on. */ | |
1021 | close(stderr_fd[1]); | |
1022 | } else { | |
1023 | bool errors = false; | |
1024 | char *buf; | |
1025 | ||
1026 | /* In the parent. Print error messages from the child until | |
1027 | * it closes the pipe. | |
1028 | */ | |
1029 | close(stderr_fd[1]); | |
1030 | buf = g_malloc(1024); | |
1031 | while ((ret = read(stderr_fd[0], buf, 1024)) > 0) { | |
1032 | errors = true; | |
1033 | ret = qemu_write_full(STDERR_FILENO, buf, ret); | |
fc19f8a0 | 1034 | if (ret < 0) { |
c1f8fdc3 PB |
1035 | exit(EXIT_FAILURE); |
1036 | } | |
1037 | } | |
fc19f8a0 | 1038 | if (ret < 0) { |
85b01e09 MA |
1039 | error_report("Cannot read from daemon: %s", |
1040 | strerror(errno)); | |
1041 | exit(EXIT_FAILURE); | |
c1f8fdc3 PB |
1042 | } |
1043 | ||
1044 | /* Usually the daemon should not print any message. | |
1045 | * Exit with zero status in that case. | |
1046 | */ | |
1047 | exit(errors); | |
1048 | } | |
1049 | } | |
1050 | ||
a6ac2313 PB |
1051 | if (device != NULL && sockpath == NULL) { |
1052 | sockpath = g_malloc(128); | |
1053 | snprintf(sockpath, 128, SOCKET_PATH, basename(device)); | |
cd831bd7 TS |
1054 | } |
1055 | ||
e4849c1d | 1056 | server = qio_net_listener_new(); |
a721f53b | 1057 | if (socket_activation == 0) { |
a721f53b | 1058 | saddr = nbd_build_socket_address(sockpath, bindto, port); |
e4849c1d DB |
1059 | if (qio_net_listener_open_sync(server, saddr, &local_err) < 0) { |
1060 | object_unref(OBJECT(server)); | |
a721f53b | 1061 | error_report_err(local_err); |
e4849c1d | 1062 | exit(EXIT_FAILURE); |
a721f53b RJ |
1063 | } |
1064 | } else { | |
e4849c1d | 1065 | size_t i; |
a721f53b | 1066 | /* See comment in check_socket_activation above. */ |
e4849c1d DB |
1067 | for (i = 0; i < socket_activation; i++) { |
1068 | QIOChannelSocket *sioc; | |
1069 | sioc = qio_channel_socket_new_fd(FIRST_SOCKET_ACTIVATION_FD + i, | |
1070 | &local_err); | |
1071 | if (sioc == NULL) { | |
1072 | object_unref(OBJECT(server)); | |
1073 | error_report("Failed to use socket activation: %s", | |
1074 | error_get_pretty(local_err)); | |
1075 | exit(EXIT_FAILURE); | |
1076 | } | |
1077 | qio_net_listener_add(server, sioc); | |
1078 | object_unref(OBJECT(sioc)); | |
a721f53b RJ |
1079 | } |
1080 | } | |
48bec07e | 1081 | |
2f78e491 | 1082 | if (qemu_init_main_loop(&local_err)) { |
565f65d2 | 1083 | error_report_err(local_err); |
2f78e491 CN |
1084 | exit(EXIT_FAILURE); |
1085 | } | |
802ddc37 | 1086 | bdrv_init(); |
b3b5299d | 1087 | atexit(qemu_nbd_shutdown); |
802ddc37 | 1088 | |
77c9aaef DB |
1089 | srcpath = argv[optind]; |
1090 | if (imageOpts) { | |
1091 | QemuOpts *opts; | |
1092 | if (fmt) { | |
1093 | error_report("--image-opts and -f are mutually exclusive"); | |
1094 | exit(EXIT_FAILURE); | |
1095 | } | |
1096 | opts = qemu_opts_parse_noisily(&file_opts, srcpath, true); | |
1097 | if (!opts) { | |
1098 | qemu_opts_reset(&file_opts); | |
1099 | exit(EXIT_FAILURE); | |
1100 | } | |
1101 | options = qemu_opts_to_qdict(opts, NULL); | |
1102 | qemu_opts_reset(&file_opts); | |
efaa7c4e | 1103 | blk = blk_new_open(NULL, NULL, options, flags, &local_err); |
77c9aaef DB |
1104 | } else { |
1105 | if (fmt) { | |
1106 | options = qdict_new(); | |
46f5ac20 | 1107 | qdict_put_str(options, "driver", fmt); |
77c9aaef | 1108 | } |
efaa7c4e | 1109 | blk = blk_new_open(srcpath, NULL, options, flags, &local_err); |
e6b63677 DB |
1110 | } |
1111 | ||
4fbec260 | 1112 | if (!blk) { |
c29b77f9 MA |
1113 | error_reportf_err(local_err, "Failed to blk_new_open '%s': ", |
1114 | argv[optind]); | |
85b01e09 | 1115 | exit(EXIT_FAILURE); |
802ddc37 | 1116 | } |
4fbec260 | 1117 | bs = blk_bs(blk); |
802ddc37 | 1118 | |
6effd5bf KW |
1119 | blk_set_enable_write_cache(blk, !writethrough); |
1120 | ||
8c116b0e WX |
1121 | if (sn_opts) { |
1122 | ret = bdrv_snapshot_load_tmp(bs, | |
1123 | qemu_opt_get(sn_opts, SNAPSHOT_OPT_ID), | |
1124 | qemu_opt_get(sn_opts, SNAPSHOT_OPT_NAME), | |
1125 | &local_err); | |
1126 | } else if (sn_id_or_name) { | |
1127 | ret = bdrv_snapshot_load_tmp_by_id_or_name(bs, sn_id_or_name, | |
1128 | &local_err); | |
1129 | } | |
1130 | if (ret < 0) { | |
c29b77f9 | 1131 | error_reportf_err(local_err, "Failed to load snapshot: "); |
85b01e09 | 1132 | exit(EXIT_FAILURE); |
8c116b0e WX |
1133 | } |
1134 | ||
b3838a40 | 1135 | bs->detect_zeroes = detect_zeroes; |
4c58e80a | 1136 | fd_size = blk_getlength(blk); |
98f44bbe | 1137 | if (fd_size < 0) { |
85b01e09 MA |
1138 | error_report("Failed to determine the image length: %s", |
1139 | strerror(-fd_size)); | |
1140 | exit(EXIT_FAILURE); | |
98f44bbe | 1141 | } |
802ddc37 | 1142 | |
e424b655 | 1143 | if (dev_offset >= fd_size) { |
9d26dfcb EB |
1144 | error_report("Offset (%" PRIu64 ") has to be smaller than the image " |
1145 | "size (%" PRId64 ")", dev_offset, fd_size); | |
e424b655 TG |
1146 | exit(EXIT_FAILURE); |
1147 | } | |
1148 | fd_size -= dev_offset; | |
1149 | ||
43b51011 | 1150 | if (partition) { |
9d26dfcb | 1151 | uint64_t limit; |
4485936b EB |
1152 | |
1153 | if (dev_offset) { | |
1154 | error_report("Cannot request partition and offset together"); | |
1155 | exit(EXIT_FAILURE); | |
1156 | } | |
1157 | ret = find_partition(blk, partition, &dev_offset, &limit); | |
185b4338 | 1158 | if (ret < 0) { |
85b01e09 | 1159 | error_report("Could not find partition %d: %s", partition, |
a4699e55 | 1160 | strerror(-ret)); |
85b01e09 | 1161 | exit(EXIT_FAILURE); |
185b4338 | 1162 | } |
4485936b EB |
1163 | /* |
1164 | * MBR partition limits are (32-bit << 9); this assert lets | |
9d26dfcb | 1165 | * the compiler know that we can't overflow 64 bits. |
4485936b | 1166 | */ |
9d26dfcb | 1167 | assert(dev_offset + limit >= dev_offset); |
4485936b | 1168 | if (dev_offset + limit > fd_size) { |
9d26dfcb EB |
1169 | error_report("Discovered partition %d at offset %" PRIu64 |
1170 | " size %" PRIu64 ", but size exceeds file length %" | |
1171 | PRId64, partition, dev_offset, limit, fd_size); | |
4485936b EB |
1172 | exit(EXIT_FAILURE); |
1173 | } | |
1174 | fd_size = limit; | |
802ddc37 PB |
1175 | } |
1176 | ||
3fa4c765 | 1177 | export = nbd_export_new(bs, dev_offset, fd_size, export_name, |
636192c4 | 1178 | export_description, bitmap, nbdflags, |
678ba275 EB |
1179 | nbd_export_closed, writethrough, NULL, |
1180 | &error_fatal); | |
3b05a8e9 | 1181 | |
f1ef5555 | 1182 | if (device) { |
3c1fa35d | 1183 | #if HAVE_NBD_DEVICE |
f1ef5555 PB |
1184 | int ret; |
1185 | ||
a6ac2313 | 1186 | ret = pthread_create(&client_thread, NULL, nbd_client_thread, device); |
f1ef5555 | 1187 | if (ret != 0) { |
85b01e09 MA |
1188 | error_report("Failed to create client thread: %s", strerror(ret)); |
1189 | exit(EXIT_FAILURE); | |
f1ef5555 | 1190 | } |
3c1fa35d | 1191 | #endif |
f1ef5555 PB |
1192 | } else { |
1193 | /* Shut up GCC warnings. */ | |
1194 | memset(&client_thread, 0, sizeof(client_thread)); | |
1195 | } | |
1196 | ||
d0d6ff58 | 1197 | nbd_update_server_watch(); |
7a5ca864 | 1198 | |
9faf31b6 MT |
1199 | /* now when the initialization is (almost) complete, chdir("/") |
1200 | * to free any busy filesystems */ | |
1201 | if (chdir("/") < 0) { | |
85b01e09 MA |
1202 | error_report("Could not chdir to root directory: %s", |
1203 | strerror(errno)); | |
1204 | exit(EXIT_FAILURE); | |
9faf31b6 MT |
1205 | } |
1206 | ||
ffb31e1d HR |
1207 | if (fork_process) { |
1208 | dup2(old_stderr, STDERR_FILENO); | |
1209 | close(old_stderr); | |
1210 | } | |
1211 | ||
7860a380 | 1212 | state = RUNNING; |
3b05a8e9 | 1213 | do { |
a61c6782 | 1214 | main_loop_wait(false); |
7860a380 PB |
1215 | if (state == TERMINATE) { |
1216 | state = TERMINATING; | |
9d976580 PMD |
1217 | nbd_export_close(export); |
1218 | nbd_export_put(export); | |
1219 | export = NULL; | |
7860a380 PB |
1220 | } |
1221 | } while (state != TERMINATED); | |
7a5ca864 | 1222 | |
26f54e9a | 1223 | blk_unref(blk); |
b32f6c28 PB |
1224 | if (sockpath) { |
1225 | unlink(sockpath); | |
1226 | } | |
7a5ca864 | 1227 | |
fbf28a43 | 1228 | qemu_opts_del(sn_opts); |
8c116b0e | 1229 | |
a517e88b PB |
1230 | if (device) { |
1231 | void *ret; | |
1232 | pthread_join(client_thread, &ret); | |
1233 | exit(ret != NULL); | |
1234 | } else { | |
1235 | exit(EXIT_SUCCESS); | |
1236 | } | |
7a5ca864 | 1237 | } |