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.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include <qemu-common.h>
20 #include "block_int.h"
27 #include <sys/types.h>
28 #include <sys/socket.h>
29 #include <netinet/in.h>
30 #include <netinet/tcp.h>
31 #include <arpa/inet.h>
35 #define SOCKET_PATH "/var/lock/qemu-nbd-%s"
37 #define NBD_BUFFER_SIZE (1024*1024)
41 static void usage(const char *name)
44 "Usage: %s [OPTIONS] FILE\n"
45 "QEMU Disk Network Block Device Server\n"
47 " -p, --port=PORT port to listen on (default `%d')\n"
48 " -o, --offset=OFFSET offset into the image\n"
49 " -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
50 " -k, --socket=PATH path to the unix socket\n"
51 " (default '"SOCKET_PATH"')\n"
52 " -r, --read-only export read-only\n"
53 " -P, --partition=NUM only expose partition NUM\n"
54 " -s, --snapshot use snapshot file\n"
55 " -n, --nocache disable host cache\n"
56 " -c, --connect=DEV connect FILE to the local NBD device DEV\n"
57 " -d, --disconnect disconnect the specified device\n"
58 " -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
59 " -t, --persistent don't exit on the last connection\n"
60 " -v, --verbose display extra debugging information\n"
61 " -h, --help display this help and exit\n"
62 " -V, --version output version information and exit\n"
65 , name, NBD_DEFAULT_PORT, "DEVICE");
68 static void version(const char *name)
72 "Written by Anthony Liguori.\n"
75 "This is free software; see the source for copying conditions. There is NO\n"
76 "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
80 struct partition_record
84 uint32_t start_cylinder;
90 uint32_t start_sector_abs;
91 uint32_t nb_sectors_abs;
94 static void read_partition(uint8_t *p, struct partition_record *r)
98 r->start_cylinder = p[3] | ((p[2] << 2) & 0x0300);
99 r->start_sector = p[2] & 0x3f;
102 r->end_cylinder = p[7] | ((p[6] << 2) & 0x300);
103 r->end_sector = p[6] & 0x3f;
104 r->start_sector_abs = p[8] | p[9] << 8 | p[10] << 16 | p[11] << 24;
105 r->nb_sectors_abs = p[12] | p[13] << 8 | p[14] << 16 | p[15] << 24;
108 static int find_partition(BlockDriverState *bs, int partition,
109 off_t *offset, off_t *size)
111 struct partition_record mbr[4];
117 if ((ret = bdrv_read(bs, 0, data, 1)) < 0) {
119 err(EXIT_FAILURE, "error while reading");
122 if (data[510] != 0x55 || data[511] != 0xaa) {
127 for (i = 0; i < 4; i++) {
128 read_partition(&data[446 + 16 * i], &mbr[i]);
130 if (!mbr[i].nb_sectors_abs)
133 if (mbr[i].system == 0xF || mbr[i].system == 0x5) {
134 struct partition_record ext[4];
138 if ((ret = bdrv_read(bs, mbr[i].start_sector_abs, data1, 1)) < 0) {
140 err(EXIT_FAILURE, "error while reading");
143 for (j = 0; j < 4; j++) {
144 read_partition(&data1[446 + 16 * j], &ext[j]);
145 if (!ext[j].nb_sectors_abs)
148 if ((ext_partnum + j + 1) == partition) {
149 *offset = (uint64_t)ext[j].start_sector_abs << 9;
150 *size = (uint64_t)ext[j].nb_sectors_abs << 9;
155 } else if ((i + 1) == partition) {
156 *offset = (uint64_t)mbr[i].start_sector_abs << 9;
157 *size = (uint64_t)mbr[i].nb_sectors_abs << 9;
166 static void show_parts(const char *device)
171 /* linux just needs an open() to trigger
172 * the partition table update
173 * but remember to load the module with max_part != 0 :
174 * modprobe nbd max_part=63
176 nbd = open(device, O_RDWR);
183 int main(int argc, char **argv)
185 BlockDriverState *bs;
186 off_t dev_offset = 0;
188 bool readonly = false;
189 bool disconnect = false;
190 const char *bindto = "0.0.0.0";
191 int port = NBD_DEFAULT_PORT;
192 struct sockaddr_in addr;
193 socklen_t addr_len = sizeof(addr);
198 const char *sopt = "hVb:o:p:rsnP:c:dvk:e:t";
199 struct option lopt[] = {
200 { "help", 0, NULL, 'h' },
201 { "version", 0, NULL, 'V' },
202 { "bind", 1, NULL, 'b' },
203 { "port", 1, NULL, 'p' },
204 { "socket", 1, NULL, 'k' },
205 { "offset", 1, NULL, 'o' },
206 { "read-only", 0, NULL, 'r' },
207 { "partition", 1, NULL, 'P' },
208 { "connect", 1, NULL, 'c' },
209 { "disconnect", 0, NULL, 'd' },
210 { "snapshot", 0, NULL, 's' },
211 { "nocache", 0, NULL, 'n' },
212 { "shared", 1, NULL, 'e' },
213 { "persistent", 0, NULL, 't' },
214 { "verbose", 0, NULL, 'v' },
221 int flags = BDRV_O_RDWR;
235 while ((ch = getopt_long(argc, argv, sopt, lopt, &opt_ind)) != -1) {
238 flags |= BDRV_O_SNAPSHOT;
241 flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
247 li = strtol(optarg, &end, 0);
249 errx(EXIT_FAILURE, "Invalid port `%s'", optarg);
251 if (li < 1 || li > 65535) {
252 errx(EXIT_FAILURE, "Port out of range `%s'", optarg);
257 dev_offset = strtoll (optarg, &end, 0);
259 errx(EXIT_FAILURE, "Invalid offset `%s'", optarg);
261 if (dev_offset < 0) {
262 errx(EXIT_FAILURE, "Offset must be positive `%s'", optarg);
267 flags &= ~BDRV_O_RDWR;
270 partition = strtol(optarg, &end, 0);
272 errx(EXIT_FAILURE, "Invalid partition `%s'", optarg);
273 if (partition < 1 || partition > 8)
274 errx(EXIT_FAILURE, "Invalid partition %d", partition);
278 if (socket[0] != '/')
279 errx(EXIT_FAILURE, "socket path must be absolute\n");
288 shared = strtol(optarg, &end, 0);
290 errx(EXIT_FAILURE, "Invalid shared device number '%s'", optarg);
293 errx(EXIT_FAILURE, "Shared device number must be greater than 0\n");
311 errx(EXIT_FAILURE, "Try `%s --help' for more information.",
316 if ((argc - optind) != 1) {
317 errx(EXIT_FAILURE, "Invalid number of argument.\n"
318 "Try `%s --help' for more information.",
323 fd = open(argv[optind], O_RDWR);
325 err(EXIT_FAILURE, "Cannot open %s", argv[optind]);
331 printf("%s disconnected\n", argv[optind]);
338 bs = bdrv_new("hda");
340 if ((ret = bdrv_open(bs, argv[optind], flags, NULL)) < 0) {
342 err(EXIT_FAILURE, "Failed to bdrv_open '%s'", argv[optind]);
345 fd_size = bs->total_sectors * 512;
347 if (partition != -1 &&
348 find_partition(bs, partition, &dev_offset, &fd_size))
349 err(EXIT_FAILURE, "Could not find partition %d", partition);
355 /* want to fail before daemonizing */
356 if (access(device, R_OK|W_OK) == -1) {
357 err(EXIT_FAILURE, "Could not access '%s'", device);
361 /* detach client and server */
362 if (daemon(0, 0) == -1) {
363 err(EXIT_FAILURE, "Failed to daemonize");
367 if (socket == NULL) {
368 snprintf(sockpath, sizeof(sockpath), SOCKET_PATH,
384 sock = unix_socket_outgoing(socket);
386 if (errno != ENOENT && errno != ECONNREFUSED) {
390 sleep(1); /* wait children */
392 } while (sock == -1);
394 fd = open(device, O_RDWR);
400 ret = nbd_receive_negotiate(sock, NULL, &nbdflags,
407 ret = nbd_init(fd, sock, size, blocksize);
413 printf("NBD device %s is now connected to file %s\n",
414 device, argv[optind]);
416 /* update partition table */
420 ret = nbd_client(fd);
434 sharing_fds = qemu_malloc((shared + 1) * sizeof(int));
437 sharing_fds[0] = unix_socket_incoming(socket);
439 sharing_fds[0] = tcp_socket_incoming(bindto, port);
442 if (sharing_fds[0] == -1)
444 max_fd = sharing_fds[0];
447 data = qemu_blockalign(bs, NBD_BUFFER_SIZE);
449 errx(EXIT_FAILURE, "Cannot allocate data buffer");
454 for (i = 0; i < nb_fds; i++)
455 FD_SET(sharing_fds[i], &fds);
457 ret = select(max_fd + 1, &fds, NULL, NULL, NULL);
461 if (FD_ISSET(sharing_fds[0], &fds))
463 for (i = 1; i < nb_fds && ret; i++) {
464 if (FD_ISSET(sharing_fds[i], &fds)) {
465 if (nbd_trip(bs, sharing_fds[i], fd_size, dev_offset,
466 &offset, readonly, data, NBD_BUFFER_SIZE) != 0) {
467 close(sharing_fds[i]);
469 sharing_fds[i] = sharing_fds[nb_fds];
475 /* new connection ? */
476 if (FD_ISSET(sharing_fds[0], &fds)) {
477 if (nb_fds < shared + 1) {
478 sharing_fds[nb_fds] = accept(sharing_fds[0],
479 (struct sockaddr *)&addr,
481 if (sharing_fds[nb_fds] != -1 &&
482 nbd_negotiate(sharing_fds[nb_fds], fd_size) != -1) {
483 if (sharing_fds[nb_fds] > max_fd)
484 max_fd = sharing_fds[nb_fds];
489 } while (persistent || nb_fds > 1);
492 close(sharing_fds[0]);
494 qemu_free(sharing_fds);