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