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