Mask LL portion of B to 24 bits in tcg_out_b (Thanks to Thiemo Seufer)
[qemu/mini2440/sniper_sniper_test.git] / nbd.c
blob306d1fa28b19d73e02473cac34b92ec9799d03bd
1 /*
2 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
4 * Network Block Device
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, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include "nbd.h"
22 #include <errno.h>
23 #include <string.h>
24 #include <sys/ioctl.h>
25 #include <ctype.h>
26 #include <inttypes.h>
27 #include <sys/socket.h>
28 #include <sys/un.h>
29 #include <netinet/in.h>
30 #include <netinet/tcp.h>
31 #include <arpa/inet.h>
32 #include <netdb.h>
34 #if defined(QEMU_NBD)
35 extern int verbose;
36 #else
37 static int verbose = 0;
38 #endif
40 #define TRACE(msg, ...) do { \
41 if (verbose) LOG(msg, ## __VA_ARGS__); \
42 } while(0)
44 #define LOG(msg, ...) do { \
45 fprintf(stderr, "%s:%s():L%d: " msg "\n", \
46 __FILE__, __FUNCTION__, __LINE__, ## __VA_ARGS__); \
47 } while(0)
49 /* This is all part of the "official" NBD API */
51 #define NBD_REQUEST_MAGIC 0x25609513
52 #define NBD_REPLY_MAGIC 0x67446698
54 #define NBD_SET_SOCK _IO(0xab, 0)
55 #define NBD_SET_BLKSIZE _IO(0xab, 1)
56 #define NBD_SET_SIZE _IO(0xab, 2)
57 #define NBD_DO_IT _IO(0xab, 3)
58 #define NBD_CLEAR_SOCK _IO(0xab, 4)
59 #define NBD_CLEAR_QUE _IO(0xab, 5)
60 #define NBD_PRINT_DEBUG _IO(0xab, 6)
61 #define NBD_SET_SIZE_BLOCKS _IO(0xab, 7)
62 #define NBD_DISCONNECT _IO(0xab, 8)
64 /* That's all folks */
66 #define read_sync(fd, buffer, size) nbd_wr_sync(fd, buffer, size, true)
67 #define write_sync(fd, buffer, size) nbd_wr_sync(fd, buffer, size, false)
69 size_t nbd_wr_sync(int fd, void *buffer, size_t size, bool do_read)
71 size_t offset = 0;
73 while (offset < size) {
74 ssize_t len;
76 if (do_read) {
77 len = read(fd, buffer + offset, size - offset);
78 } else {
79 len = write(fd, buffer + offset, size - offset);
82 /* recoverable error */
83 if (len == -1 && (errno == EAGAIN || errno == EINTR)) {
84 continue;
87 /* eof */
88 if (len == 0) {
89 break;
92 /* unrecoverable error */
93 if (len == -1) {
94 return 0;
97 offset += len;
100 return offset;
103 int tcp_socket_outgoing(const char *address, uint16_t port)
105 int s;
106 struct in_addr in;
107 struct sockaddr_in addr;
108 int serrno;
110 s = socket(PF_INET, SOCK_STREAM, 0);
111 if (s == -1) {
112 return -1;
115 if (inet_aton(address, &in) == 0) {
116 struct hostent *ent;
118 ent = gethostbyname(address);
119 if (ent == NULL) {
120 goto error;
123 memcpy(&in, ent->h_addr, sizeof(in));
126 addr.sin_family = AF_INET;
127 addr.sin_port = htons(port);
128 memcpy(&addr.sin_addr.s_addr, &in, sizeof(in));
130 if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) == -1) {
131 goto error;
134 return s;
135 error:
136 serrno = errno;
137 close(s);
138 errno = serrno;
139 return -1;
142 int tcp_socket_incoming(const char *address, uint16_t port)
144 int s;
145 struct in_addr in;
146 struct sockaddr_in addr;
147 int serrno;
148 int opt;
150 s = socket(PF_INET, SOCK_STREAM, 0);
151 if (s == -1) {
152 return -1;
155 if (inet_aton(address, &in) == 0) {
156 struct hostent *ent;
158 ent = gethostbyname(address);
159 if (ent == NULL) {
160 goto error;
163 memcpy(&in, ent->h_addr, sizeof(in));
166 addr.sin_family = AF_INET;
167 addr.sin_port = htons(port);
168 memcpy(&addr.sin_addr.s_addr, &in, sizeof(in));
170 opt = 1;
171 if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) == -1) {
172 goto error;
175 if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) == -1) {
176 goto error;
179 if (listen(s, 128) == -1) {
180 goto error;
183 return s;
184 error:
185 serrno = errno;
186 close(s);
187 errno = serrno;
188 return -1;
191 int unix_socket_incoming(const char *path)
193 int s;
194 struct sockaddr_un addr;
195 int serrno;
197 s = socket(PF_UNIX, SOCK_STREAM, 0);
198 if (s == -1) {
199 return -1;
202 memset(&addr, 0, sizeof(addr));
203 addr.sun_family = AF_UNIX;
204 pstrcpy(addr.sun_path, sizeof(addr.sun_path), path);
206 if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) == -1) {
207 goto error;
210 if (listen(s, 128) == -1) {
211 goto error;
214 return s;
215 error:
216 serrno = errno;
217 close(s);
218 errno = serrno;
219 return -1;
222 int unix_socket_outgoing(const char *path)
224 int s;
225 struct sockaddr_un addr;
226 int serrno;
228 s = socket(PF_UNIX, SOCK_STREAM, 0);
229 if (s == -1) {
230 return -1;
233 memset(&addr, 0, sizeof(addr));
234 addr.sun_family = AF_UNIX;
235 pstrcpy(addr.sun_path, sizeof(addr.sun_path), path);
237 if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) == -1) {
238 goto error;
241 return s;
242 error:
243 serrno = errno;
244 close(s);
245 errno = serrno;
246 return -1;
250 /* Basic flow
252 Server Client
254 Negotiate
255 Request
256 Response
257 Request
258 Response
261 Request (type == 2)
264 int nbd_negotiate(BlockDriverState *bs, int csock, off_t size)
266 char buf[8 + 8 + 8 + 128];
268 /* Negotiate
269 [ 0 .. 7] passwd ("NBDMAGIC")
270 [ 8 .. 15] magic (0x00420281861253)
271 [16 .. 23] size
272 [24 .. 151] reserved (0)
275 TRACE("Beginning negotiation.");
276 memcpy(buf, "NBDMAGIC", 8);
277 cpu_to_be64w((uint64_t*)(buf + 8), 0x00420281861253LL);
278 cpu_to_be64w((uint64_t*)(buf + 16), size);
279 memset(buf + 24, 0, 128);
281 if (write_sync(csock, buf, sizeof(buf)) != sizeof(buf)) {
282 LOG("write failed");
283 errno = EINVAL;
284 return -1;
287 TRACE("Negotation succeeded.");
289 return 0;
292 int nbd_receive_negotiate(int csock, off_t *size, size_t *blocksize)
294 char buf[8 + 8 + 8 + 128];
295 uint64_t magic;
297 TRACE("Receiving negotation.");
299 if (read_sync(csock, buf, sizeof(buf)) != sizeof(buf)) {
300 LOG("read failed");
301 errno = EINVAL;
302 return -1;
305 magic = be64_to_cpup((uint64_t*)(buf + 8));
306 *size = be64_to_cpup((uint64_t*)(buf + 16));
307 *blocksize = 1024;
309 TRACE("Magic is %c%c%c%c%c%c%c%c",
310 isprint(buf[0]) ? buf[0] : '.',
311 isprint(buf[1]) ? buf[1] : '.',
312 isprint(buf[2]) ? buf[2] : '.',
313 isprint(buf[3]) ? buf[3] : '.',
314 isprint(buf[4]) ? buf[4] : '.',
315 isprint(buf[5]) ? buf[5] : '.',
316 isprint(buf[6]) ? buf[6] : '.',
317 isprint(buf[7]) ? buf[7] : '.');
318 TRACE("Magic is 0x%" PRIx64, magic);
319 TRACE("Size is %" PRIu64, *size);
321 if (memcmp(buf, "NBDMAGIC", 8) != 0) {
322 LOG("Invalid magic received");
323 errno = EINVAL;
324 return -1;
327 TRACE("Checking magic");
329 if (magic != 0x00420281861253LL) {
330 LOG("Bad magic received");
331 errno = EINVAL;
332 return -1;
334 return 0;
337 int nbd_init(int fd, int csock, off_t size, size_t blocksize)
339 TRACE("Setting block size to %lu", (unsigned long)blocksize);
341 if (ioctl(fd, NBD_SET_BLKSIZE, blocksize) == -1) {
342 int serrno = errno;
343 LOG("Failed setting NBD block size");
344 errno = serrno;
345 return -1;
348 TRACE("Setting size to %llu block(s)",
349 (unsigned long long)(size / blocksize));
351 if (ioctl(fd, NBD_SET_SIZE_BLOCKS, size / blocksize) == -1) {
352 int serrno = errno;
353 LOG("Failed setting size (in blocks)");
354 errno = serrno;
355 return -1;
358 TRACE("Clearing NBD socket");
360 if (ioctl(fd, NBD_CLEAR_SOCK) == -1) {
361 int serrno = errno;
362 LOG("Failed clearing NBD socket");
363 errno = serrno;
364 return -1;
367 TRACE("Setting NBD socket");
369 if (ioctl(fd, NBD_SET_SOCK, csock) == -1) {
370 int serrno = errno;
371 LOG("Failed to set NBD socket");
372 errno = serrno;
373 return -1;
376 TRACE("Negotiation ended");
378 return 0;
381 int nbd_disconnect(int fd)
383 ioctl(fd, NBD_CLEAR_QUE);
384 ioctl(fd, NBD_DISCONNECT);
385 ioctl(fd, NBD_CLEAR_SOCK);
386 return 0;
389 int nbd_client(int fd, int csock)
391 int ret;
392 int serrno;
394 TRACE("Doing NBD loop");
396 ret = ioctl(fd, NBD_DO_IT);
397 serrno = errno;
399 TRACE("NBD loop returned %d: %s", ret, strerror(serrno));
401 TRACE("Clearing NBD queue");
402 ioctl(fd, NBD_CLEAR_QUE);
404 TRACE("Clearing NBD socket");
405 ioctl(fd, NBD_CLEAR_SOCK);
407 errno = serrno;
408 return ret;
411 int nbd_send_request(int csock, struct nbd_request *request)
413 uint8_t buf[4 + 4 + 8 + 8 + 4];
415 cpu_to_be32w((uint32_t*)buf, NBD_REQUEST_MAGIC);
416 cpu_to_be32w((uint32_t*)(buf + 4), request->type);
417 cpu_to_be64w((uint64_t*)(buf + 8), request->handle);
418 cpu_to_be64w((uint64_t*)(buf + 16), request->from);
419 cpu_to_be32w((uint32_t*)(buf + 24), request->len);
421 TRACE("Sending request to client");
423 if (write_sync(csock, buf, sizeof(buf)) != sizeof(buf)) {
424 LOG("writing to socket failed");
425 errno = EINVAL;
426 return -1;
428 return 0;
432 static int nbd_receive_request(int csock, struct nbd_request *request)
434 uint8_t buf[4 + 4 + 8 + 8 + 4];
435 uint32_t magic;
437 if (read_sync(csock, buf, sizeof(buf)) != sizeof(buf)) {
438 LOG("read failed");
439 errno = EINVAL;
440 return -1;
443 /* Request
444 [ 0 .. 3] magic (NBD_REQUEST_MAGIC)
445 [ 4 .. 7] type (0 == READ, 1 == WRITE)
446 [ 8 .. 15] handle
447 [16 .. 23] from
448 [24 .. 27] len
451 magic = be32_to_cpup((uint32_t*)buf);
452 request->type = be32_to_cpup((uint32_t*)(buf + 4));
453 request->handle = be64_to_cpup((uint64_t*)(buf + 8));
454 request->from = be64_to_cpup((uint64_t*)(buf + 16));
455 request->len = be32_to_cpup((uint32_t*)(buf + 24));
457 TRACE("Got request: "
458 "{ magic = 0x%x, .type = %d, from = %" PRIu64" , len = %u }",
459 magic, request->type, request->from, request->len);
461 if (magic != NBD_REQUEST_MAGIC) {
462 LOG("invalid magic (got 0x%x)", magic);
463 errno = EINVAL;
464 return -1;
468 int nbd_receive_reply(int csock, struct nbd_reply *reply)
470 uint8_t buf[4 + 4 + 8];
471 uint32_t magic;
473 memset(buf, 0xAA, sizeof(buf));
475 if (read_sync(csock, buf, sizeof(buf)) != sizeof(buf)) {
476 LOG("read failed");
477 errno = EINVAL;
478 return -1;
481 /* Reply
482 [ 0 .. 3] magic (NBD_REPLY_MAGIC)
483 [ 4 .. 7] error (0 == no error)
484 [ 7 .. 15] handle
487 magic = be32_to_cpup((uint32_t*)buf);
488 reply->error = be32_to_cpup((uint32_t*)(buf + 4));
489 reply->handle = be64_to_cpup((uint64_t*)(buf + 8));
491 TRACE("Got reply: "
492 "{ magic = 0x%x, .error = %d, handle = %" PRIu64" }",
493 magic, reply->error, reply->handle);
495 if (magic != NBD_REPLY_MAGIC) {
496 LOG("invalid magic (got 0x%x)", magic);
497 errno = EINVAL;
498 return -1;
500 return 0;
503 static int nbd_send_reply(int csock, struct nbd_reply *reply)
505 uint8_t buf[4 + 4 + 8];
507 /* Reply
508 [ 0 .. 3] magic (NBD_REPLY_MAGIC)
509 [ 4 .. 7] error (0 == no error)
510 [ 7 .. 15] handle
512 cpu_to_be32w((uint32_t*)buf, NBD_REPLY_MAGIC);
513 cpu_to_be32w((uint32_t*)(buf + 4), reply->error);
514 cpu_to_be64w((uint64_t*)(buf + 8), reply->handle);
516 TRACE("Sending response to client");
518 if (write_sync(csock, buf, sizeof(buf)) != sizeof(buf)) {
519 LOG("writing to socket failed");
520 errno = EINVAL;
521 return -1;
523 return 0;
526 int nbd_trip(BlockDriverState *bs, int csock, off_t size, uint64_t dev_offset,
527 off_t *offset, bool readonly, uint8_t *data, int data_size)
529 struct nbd_request request;
530 struct nbd_reply reply;
532 TRACE("Reading request.");
534 if (nbd_receive_request(csock, &request) == -1)
535 return -1;
537 if (request.len > data_size) {
538 LOG("len (%u) is larger than max len (%u)",
539 request.len, data_size);
540 errno = EINVAL;
541 return -1;
544 if ((request.from + request.len) < request.from) {
545 LOG("integer overflow detected! "
546 "you're probably being attacked");
547 errno = EINVAL;
548 return -1;
551 if ((request.from + request.len) > size) {
552 LOG("From: %" PRIu64 ", Len: %u, Size: %" PRIu64
553 ", Offset: %" PRIu64 "\n",
554 request.from, request.len, size, dev_offset);
555 LOG("requested operation past EOF--bad client?");
556 errno = EINVAL;
557 return -1;
560 TRACE("Decoding type");
562 reply.handle = request.handle;
563 reply.error = 0;
565 switch (request.type) {
566 case NBD_CMD_READ:
567 TRACE("Request type is READ");
569 if (bdrv_read(bs, (request.from + dev_offset) / 512, data,
570 request.len / 512) == -1) {
571 LOG("reading from file failed");
572 errno = EINVAL;
573 return -1;
575 *offset += request.len;
577 TRACE("Read %u byte(s)", request.len);
579 if (nbd_send_reply(csock, &reply) == -1)
580 return -1;
582 TRACE("Sending data to client");
584 if (write_sync(csock, data, request.len) != request.len) {
585 LOG("writing to socket failed");
586 errno = EINVAL;
587 return -1;
589 break;
590 case NBD_CMD_WRITE:
591 TRACE("Request type is WRITE");
593 TRACE("Reading %u byte(s)", request.len);
595 if (read_sync(csock, data, request.len) != request.len) {
596 LOG("reading from socket failed");
597 errno = EINVAL;
598 return -1;
601 if (readonly) {
602 TRACE("Server is read-only, return error");
603 reply.error = 1;
604 } else {
605 TRACE("Writing to device");
607 if (bdrv_write(bs, (request.from + dev_offset) / 512,
608 data, request.len / 512) == -1) {
609 LOG("writing to file failed");
610 errno = EINVAL;
611 return -1;
614 *offset += request.len;
617 if (nbd_send_reply(csock, &reply) == -1)
618 return -1;
619 break;
620 case NBD_CMD_DISC:
621 TRACE("Request type is DISCONNECT");
622 errno = 0;
623 return 1;
624 default:
625 LOG("invalid request type (%u) received", request.type);
626 errno = EINVAL;
627 return -1;
630 TRACE("Request/Reply complete");
632 return 0;