slirp: Generalizing and neutralizing ARP code
[qemu/ar7.git] / nbd / common.c
blob7b089b0f3b494b4d5735a5e06c0d7635110b1c6a
1 /*
2 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
4 * Network Block Device Common Code
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 "nbd-internal.h"
21 ssize_t nbd_wr_sync(int fd, void *buffer, size_t size, bool do_read)
23 size_t offset = 0;
24 int err;
26 if (qemu_in_coroutine()) {
27 if (do_read) {
28 return qemu_co_recv(fd, buffer, size);
29 } else {
30 return qemu_co_send(fd, buffer, size);
34 while (offset < size) {
35 ssize_t len;
37 if (do_read) {
38 len = qemu_recv(fd, buffer + offset, size - offset, 0);
39 } else {
40 len = send(fd, buffer + offset, size - offset, 0);
43 if (len < 0) {
44 err = socket_error();
46 /* recoverable error */
47 if (err == EINTR || (offset > 0 && (err == EAGAIN || err == EWOULDBLOCK))) {
48 continue;
51 /* unrecoverable error */
52 return -err;
55 /* eof */
56 if (len == 0) {
57 break;
60 offset += len;
63 return offset;