linux-aio: use event notifiers
[qemu/ar7.git] / iov.c
blobae17e7dff6d2e90cf607658703dcfdff61579634
1 /*
2 * Helpers for getting linearized buffers from iov / filling buffers into iovs
4 * Copyright IBM, Corp. 2007, 2008
5 * Copyright (C) 2010 Red Hat, Inc.
7 * Author(s):
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Amit Shah <amit.shah@redhat.com>
10 * Michael Tokarev <mjt@tls.msk.ru>
12 * This work is licensed under the terms of the GNU GPL, version 2. See
13 * the COPYING file in the top-level directory.
15 * Contributions after 2012-01-13 are licensed under the terms of the
16 * GNU GPL, version 2 or (at your option) any later version.
19 #include "iov.h"
21 #ifdef _WIN32
22 # include <windows.h>
23 # include <winsock2.h>
24 #else
25 # include <sys/types.h>
26 # include <sys/socket.h>
27 #endif
29 size_t iov_from_buf(const struct iovec *iov, unsigned int iov_cnt,
30 size_t offset, const void *buf, size_t bytes)
32 size_t done;
33 unsigned int i;
34 for (i = 0, done = 0; (offset || done < bytes) && i < iov_cnt; i++) {
35 if (offset < iov[i].iov_len) {
36 size_t len = MIN(iov[i].iov_len - offset, bytes - done);
37 memcpy(iov[i].iov_base + offset, buf + done, len);
38 done += len;
39 offset = 0;
40 } else {
41 offset -= iov[i].iov_len;
44 assert(offset == 0);
45 return done;
48 size_t iov_to_buf(const struct iovec *iov, const unsigned int iov_cnt,
49 size_t offset, void *buf, size_t bytes)
51 size_t done;
52 unsigned int i;
53 for (i = 0, done = 0; (offset || done < bytes) && i < iov_cnt; i++) {
54 if (offset < iov[i].iov_len) {
55 size_t len = MIN(iov[i].iov_len - offset, bytes - done);
56 memcpy(buf + done, iov[i].iov_base + offset, len);
57 done += len;
58 offset = 0;
59 } else {
60 offset -= iov[i].iov_len;
63 assert(offset == 0);
64 return done;
67 size_t iov_memset(const struct iovec *iov, const unsigned int iov_cnt,
68 size_t offset, int fillc, size_t bytes)
70 size_t done;
71 unsigned int i;
72 for (i = 0, done = 0; (offset || done < bytes) && i < iov_cnt; i++) {
73 if (offset < iov[i].iov_len) {
74 size_t len = MIN(iov[i].iov_len - offset, bytes - done);
75 memset(iov[i].iov_base + offset, fillc, len);
76 done += len;
77 offset = 0;
78 } else {
79 offset -= iov[i].iov_len;
82 assert(offset == 0);
83 return done;
86 size_t iov_size(const struct iovec *iov, const unsigned int iov_cnt)
88 size_t len;
89 unsigned int i;
91 len = 0;
92 for (i = 0; i < iov_cnt; i++) {
93 len += iov[i].iov_len;
95 return len;
98 /* helper function for iov_send_recv() */
99 static ssize_t
100 do_send_recv(int sockfd, struct iovec *iov, unsigned iov_cnt, bool do_send)
102 #if defined CONFIG_IOVEC && defined CONFIG_POSIX
103 ssize_t ret;
104 struct msghdr msg;
105 memset(&msg, 0, sizeof(msg));
106 msg.msg_iov = iov;
107 msg.msg_iovlen = iov_cnt;
108 do {
109 ret = do_send
110 ? sendmsg(sockfd, &msg, 0)
111 : recvmsg(sockfd, &msg, 0);
112 } while (ret < 0 && errno == EINTR);
113 return ret;
114 #else
115 /* else send piece-by-piece */
116 /*XXX Note: windows has WSASend() and WSARecv() */
117 unsigned i = 0;
118 ssize_t ret = 0;
119 while (i < iov_cnt) {
120 ssize_t r = do_send
121 ? send(sockfd, iov[i].iov_base, iov[i].iov_len, 0)
122 : recv(sockfd, iov[i].iov_base, iov[i].iov_len, 0);
123 if (r > 0) {
124 ret += r;
125 } else if (!r) {
126 break;
127 } else if (errno == EINTR) {
128 continue;
129 } else {
130 /* else it is some "other" error,
131 * only return if there was no data processed. */
132 if (ret == 0) {
133 ret = -1;
135 break;
137 i++;
139 return ret;
140 #endif
143 ssize_t iov_send_recv(int sockfd, struct iovec *iov, unsigned iov_cnt,
144 size_t offset, size_t bytes,
145 bool do_send)
147 ssize_t ret;
148 unsigned si, ei; /* start and end indexes */
149 if (bytes == 0) {
150 /* Catch the do-nothing case early, as otherwise we will pass an
151 * empty iovec to sendmsg/recvmsg(), and not all implementations
152 * accept this.
154 return 0;
157 /* Find the start position, skipping `offset' bytes:
158 * first, skip all full-sized vector elements, */
159 for (si = 0; si < iov_cnt && offset >= iov[si].iov_len; ++si) {
160 offset -= iov[si].iov_len;
162 if (offset) {
163 assert(si < iov_cnt);
164 /* second, skip `offset' bytes from the (now) first element,
165 * undo it on exit */
166 iov[si].iov_base += offset;
167 iov[si].iov_len -= offset;
169 /* Find the end position skipping `bytes' bytes: */
170 /* first, skip all full-sized elements */
171 for (ei = si; ei < iov_cnt && iov[ei].iov_len <= bytes; ++ei) {
172 bytes -= iov[ei].iov_len;
174 if (bytes) {
175 /* second, fixup the last element, and remember
176 * the length we've cut from the end of it in `bytes' */
177 size_t tail;
178 assert(ei < iov_cnt);
179 assert(iov[ei].iov_len > bytes);
180 tail = iov[ei].iov_len - bytes;
181 iov[ei].iov_len = bytes;
182 bytes = tail; /* bytes is now equal to the tail size */
183 ++ei;
186 ret = do_send_recv(sockfd, iov + si, ei - si, do_send);
188 /* Undo the changes above */
189 if (offset) {
190 iov[si].iov_base -= offset;
191 iov[si].iov_len += offset;
193 if (bytes) {
194 iov[ei-1].iov_len += bytes;
197 return ret;
201 void iov_hexdump(const struct iovec *iov, const unsigned int iov_cnt,
202 FILE *fp, const char *prefix, size_t limit)
204 unsigned int i, v, b;
205 uint8_t *c;
207 c = iov[0].iov_base;
208 for (i = 0, v = 0, b = 0; b < limit; i++, b++) {
209 if (i == iov[v].iov_len) {
210 i = 0; v++;
211 if (v == iov_cnt) {
212 break;
214 c = iov[v].iov_base;
216 if ((b % 16) == 0) {
217 fprintf(fp, "%s: %04x:", prefix, b);
219 if ((b % 4) == 0) {
220 fprintf(fp, " ");
222 fprintf(fp, " %02x", c[i]);
223 if ((b % 16) == 15) {
224 fprintf(fp, "\n");
227 if ((b % 16) != 0) {
228 fprintf(fp, "\n");
232 /* io vectors */
234 void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint)
236 qiov->iov = g_malloc(alloc_hint * sizeof(struct iovec));
237 qiov->niov = 0;
238 qiov->nalloc = alloc_hint;
239 qiov->size = 0;
242 void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov)
244 int i;
246 qiov->iov = iov;
247 qiov->niov = niov;
248 qiov->nalloc = -1;
249 qiov->size = 0;
250 for (i = 0; i < niov; i++)
251 qiov->size += iov[i].iov_len;
254 void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len)
256 assert(qiov->nalloc != -1);
258 if (qiov->niov == qiov->nalloc) {
259 qiov->nalloc = 2 * qiov->nalloc + 1;
260 qiov->iov = g_realloc(qiov->iov, qiov->nalloc * sizeof(struct iovec));
262 qiov->iov[qiov->niov].iov_base = base;
263 qiov->iov[qiov->niov].iov_len = len;
264 qiov->size += len;
265 ++qiov->niov;
269 * Concatenates (partial) iovecs from src to the end of dst.
270 * It starts copying after skipping `soffset' bytes at the
271 * beginning of src and adds individual vectors from src to
272 * dst copies up to `sbytes' bytes total, or up to the end
273 * of src if it comes first. This way, it is okay to specify
274 * very large value for `sbytes' to indicate "up to the end
275 * of src".
276 * Only vector pointers are processed, not the actual data buffers.
278 void qemu_iovec_concat(QEMUIOVector *dst,
279 QEMUIOVector *src, size_t soffset, size_t sbytes)
281 int i;
282 size_t done;
283 struct iovec *siov = src->iov;
284 assert(dst->nalloc != -1);
285 assert(src->size >= soffset);
286 for (i = 0, done = 0; done < sbytes && i < src->niov; i++) {
287 if (soffset < siov[i].iov_len) {
288 size_t len = MIN(siov[i].iov_len - soffset, sbytes - done);
289 qemu_iovec_add(dst, siov[i].iov_base + soffset, len);
290 done += len;
291 soffset = 0;
292 } else {
293 soffset -= siov[i].iov_len;
296 /* return done; */
299 void qemu_iovec_destroy(QEMUIOVector *qiov)
301 assert(qiov->nalloc != -1);
303 qemu_iovec_reset(qiov);
304 g_free(qiov->iov);
305 qiov->nalloc = 0;
306 qiov->iov = NULL;
309 void qemu_iovec_reset(QEMUIOVector *qiov)
311 assert(qiov->nalloc != -1);
313 qiov->niov = 0;
314 qiov->size = 0;
317 size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset,
318 void *buf, size_t bytes)
320 return iov_to_buf(qiov->iov, qiov->niov, offset, buf, bytes);
323 size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset,
324 const void *buf, size_t bytes)
326 return iov_from_buf(qiov->iov, qiov->niov, offset, buf, bytes);
329 size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset,
330 int fillc, size_t bytes)
332 return iov_memset(qiov->iov, qiov->niov, offset, fillc, bytes);