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