1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#include "qemu/osdep.h"
20#include "qemu-common.h"
21#include "qemu/iov.h"
22#include "qemu/sockets.h"
23#include "qemu/cutils.h"
24
25size_t iov_from_buf_full(const struct iovec *iov, unsigned int iov_cnt,
26 size_t offset, const void *buf, size_t bytes)
27{
28 size_t done;
29 unsigned int i;
30 for (i = 0, done = 0; (offset || done < bytes) && i < iov_cnt; i++) {
31 if (offset < iov[i].iov_len) {
32 size_t len = MIN(iov[i].iov_len - offset, bytes - done);
33 memcpy(iov[i].iov_base + offset, buf + done, len);
34 done += len;
35 offset = 0;
36 } else {
37 offset -= iov[i].iov_len;
38 }
39 }
40 assert(offset == 0);
41 return done;
42}
43
44size_t iov_to_buf_full(const struct iovec *iov, const unsigned int iov_cnt,
45 size_t offset, void *buf, size_t bytes)
46{
47 size_t done;
48 unsigned int i;
49 for (i = 0, done = 0; (offset || done < bytes) && i < iov_cnt; i++) {
50 if (offset < iov[i].iov_len) {
51 size_t len = MIN(iov[i].iov_len - offset, bytes - done);
52 memcpy(buf + done, iov[i].iov_base + offset, len);
53 done += len;
54 offset = 0;
55 } else {
56 offset -= iov[i].iov_len;
57 }
58 }
59 assert(offset == 0);
60 return done;
61}
62
63size_t iov_memset(const struct iovec *iov, const unsigned int iov_cnt,
64 size_t offset, int fillc, size_t bytes)
65{
66 size_t done;
67 unsigned int i;
68 for (i = 0, done = 0; (offset || done < bytes) && i < iov_cnt; i++) {
69 if (offset < iov[i].iov_len) {
70 size_t len = MIN(iov[i].iov_len - offset, bytes - done);
71 memset(iov[i].iov_base + offset, fillc, len);
72 done += len;
73 offset = 0;
74 } else {
75 offset -= iov[i].iov_len;
76 }
77 }
78 assert(offset == 0);
79 return done;
80}
81
82size_t iov_size(const struct iovec *iov, const unsigned int iov_cnt)
83{
84 size_t len;
85 unsigned int i;
86
87 len = 0;
88 for (i = 0; i < iov_cnt; i++) {
89 len += iov[i].iov_len;
90 }
91 return len;
92}
93
94
95static ssize_t
96do_send_recv(int sockfd, struct iovec *iov, unsigned iov_cnt, bool do_send)
97{
98#ifdef CONFIG_POSIX
99 ssize_t ret;
100 struct msghdr msg;
101 memset(&msg, 0, sizeof(msg));
102 msg.msg_iov = iov;
103 msg.msg_iovlen = iov_cnt;
104 do {
105 ret = do_send
106 ? sendmsg(sockfd, &msg, 0)
107 : recvmsg(sockfd, &msg, 0);
108 } while (ret < 0 && errno == EINTR);
109 return ret;
110#else
111
112
113 unsigned i = 0;
114 ssize_t ret = 0;
115 while (i < iov_cnt) {
116 ssize_t r = do_send
117 ? send(sockfd, iov[i].iov_base, iov[i].iov_len, 0)
118 : recv(sockfd, iov[i].iov_base, iov[i].iov_len, 0);
119 if (r > 0) {
120 ret += r;
121 } else if (!r) {
122 break;
123 } else if (errno == EINTR) {
124 continue;
125 } else {
126
127
128 if (ret == 0) {
129 ret = -1;
130 }
131 break;
132 }
133 i++;
134 }
135 return ret;
136#endif
137}
138
139ssize_t iov_send_recv(int sockfd, const struct iovec *_iov, unsigned iov_cnt,
140 size_t offset, size_t bytes,
141 bool do_send)
142{
143 ssize_t total = 0;
144 ssize_t ret;
145 size_t orig_len, tail;
146 unsigned niov;
147 struct iovec *local_iov, *iov;
148
149 if (bytes <= 0) {
150 return 0;
151 }
152
153 local_iov = g_new0(struct iovec, iov_cnt);
154 iov_copy(local_iov, iov_cnt, _iov, iov_cnt, offset, bytes);
155 offset = 0;
156 iov = local_iov;
157
158 while (bytes > 0) {
159
160
161 for (niov = 0; niov < iov_cnt && offset >= iov[niov].iov_len; ++niov) {
162 offset -= iov[niov].iov_len;
163 }
164
165
166
167 assert(niov < iov_cnt);
168 iov += niov;
169 iov_cnt -= niov;
170
171 if (offset) {
172
173
174 iov[0].iov_base += offset;
175 iov[0].iov_len -= offset;
176 }
177
178
179 tail = bytes;
180 for (niov = 0; niov < iov_cnt && iov[niov].iov_len <= tail; ++niov) {
181 tail -= iov[niov].iov_len;
182 }
183 if (tail) {
184
185
186 assert(niov < iov_cnt);
187 assert(iov[niov].iov_len > tail);
188 orig_len = iov[niov].iov_len;
189 iov[niov++].iov_len = tail;
190 ret = do_send_recv(sockfd, iov, niov, do_send);
191
192 iov[niov-1].iov_len = orig_len;
193 } else {
194 ret = do_send_recv(sockfd, iov, niov, do_send);
195 }
196 if (offset) {
197 iov[0].iov_base -= offset;
198 iov[0].iov_len += offset;
199 }
200
201 if (ret < 0) {
202 assert(errno != EINTR);
203 g_free(local_iov);
204 if (errno == EAGAIN && total > 0) {
205 return total;
206 }
207 return -1;
208 }
209
210 if (ret == 0 && !do_send) {
211
212
213 break;
214 }
215
216
217 offset += ret;
218 total += ret;
219 bytes -= ret;
220 }
221
222 g_free(local_iov);
223 return total;
224}
225
226
227void iov_hexdump(const struct iovec *iov, const unsigned int iov_cnt,
228 FILE *fp, const char *prefix, size_t limit)
229{
230 int v;
231 size_t size = 0;
232 char *buf;
233
234 for (v = 0; v < iov_cnt; v++) {
235 size += iov[v].iov_len;
236 }
237 size = size > limit ? limit : size;
238 buf = g_malloc(size);
239 iov_to_buf(iov, iov_cnt, 0, buf, size);
240 qemu_hexdump(buf, fp, prefix, size);
241 g_free(buf);
242}
243
244unsigned iov_copy(struct iovec *dst_iov, unsigned int dst_iov_cnt,
245 const struct iovec *iov, unsigned int iov_cnt,
246 size_t offset, size_t bytes)
247{
248 size_t len;
249 unsigned int i, j;
250 for (i = 0, j = 0;
251 i < iov_cnt && j < dst_iov_cnt && (offset || bytes); i++) {
252 if (offset >= iov[i].iov_len) {
253 offset -= iov[i].iov_len;
254 continue;
255 }
256 len = MIN(bytes, iov[i].iov_len - offset);
257
258 dst_iov[j].iov_base = iov[i].iov_base + offset;
259 dst_iov[j].iov_len = len;
260 j++;
261 bytes -= len;
262 offset = 0;
263 }
264 assert(offset == 0);
265 return j;
266}
267
268
269
270void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint)
271{
272 qiov->iov = g_new(struct iovec, alloc_hint);
273 qiov->niov = 0;
274 qiov->nalloc = alloc_hint;
275 qiov->size = 0;
276}
277
278void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov)
279{
280 int i;
281
282 qiov->iov = iov;
283 qiov->niov = niov;
284 qiov->nalloc = -1;
285 qiov->size = 0;
286 for (i = 0; i < niov; i++)
287 qiov->size += iov[i].iov_len;
288}
289
290void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len)
291{
292 assert(qiov->nalloc != -1);
293
294 if (qiov->niov == qiov->nalloc) {
295 qiov->nalloc = 2 * qiov->nalloc + 1;
296 qiov->iov = g_renew(struct iovec, qiov->iov, qiov->nalloc);
297 }
298 qiov->iov[qiov->niov].iov_base = base;
299 qiov->iov[qiov->niov].iov_len = len;
300 qiov->size += len;
301 ++qiov->niov;
302}
303
304
305
306
307
308
309
310
311
312
313
314size_t qemu_iovec_concat_iov(QEMUIOVector *dst,
315 struct iovec *src_iov, unsigned int src_cnt,
316 size_t soffset, size_t sbytes)
317{
318 int i;
319 size_t done;
320
321 if (!sbytes) {
322 return 0;
323 }
324 assert(dst->nalloc != -1);
325 for (i = 0, done = 0; done < sbytes && i < src_cnt; i++) {
326 if (soffset < src_iov[i].iov_len) {
327 size_t len = MIN(src_iov[i].iov_len - soffset, sbytes - done);
328 qemu_iovec_add(dst, src_iov[i].iov_base + soffset, len);
329 done += len;
330 soffset = 0;
331 } else {
332 soffset -= src_iov[i].iov_len;
333 }
334 }
335 assert(soffset == 0);
336
337 return done;
338}
339
340
341
342
343
344
345
346
347
348
349
350void qemu_iovec_concat(QEMUIOVector *dst,
351 QEMUIOVector *src, size_t soffset, size_t sbytes)
352{
353 qemu_iovec_concat_iov(dst, src->iov, src->niov, soffset, sbytes);
354}
355
356
357
358
359
360
361
362
363static struct iovec *iov_skip_offset(struct iovec *iov, size_t offset,
364 size_t *remaining_offset)
365{
366 while (offset > 0 && offset >= iov->iov_len) {
367 offset -= iov->iov_len;
368 iov++;
369 }
370 *remaining_offset = offset;
371
372 return iov;
373}
374
375
376
377
378
379
380
381
382static struct iovec *qiov_slice(QEMUIOVector *qiov,
383 size_t offset, size_t len,
384 size_t *head, size_t *tail, int *niov)
385{
386 struct iovec *iov, *end_iov;
387
388 assert(offset + len <= qiov->size);
389
390 iov = iov_skip_offset(qiov->iov, offset, head);
391 end_iov = iov_skip_offset(iov, *head + len, tail);
392
393 if (*tail > 0) {
394 assert(*tail < end_iov->iov_len);
395 *tail = end_iov->iov_len - *tail;
396 end_iov++;
397 }
398
399 *niov = end_iov - iov;
400
401 return iov;
402}
403
404
405
406
407
408void qemu_iovec_init_extended(
409 QEMUIOVector *qiov,
410 void *head_buf, size_t head_len,
411 QEMUIOVector *mid_qiov, size_t mid_offset, size_t mid_len,
412 void *tail_buf, size_t tail_len)
413{
414 size_t mid_head, mid_tail;
415 int total_niov, mid_niov = 0;
416 struct iovec *p, *mid_iov;
417
418 if (mid_len) {
419 mid_iov = qiov_slice(mid_qiov, mid_offset, mid_len,
420 &mid_head, &mid_tail, &mid_niov);
421 }
422
423 total_niov = !!head_len + mid_niov + !!tail_len;
424 if (total_niov == 1) {
425 qemu_iovec_init_buf(qiov, NULL, 0);
426 p = &qiov->local_iov;
427 } else {
428 qiov->niov = qiov->nalloc = total_niov;
429 qiov->size = head_len + mid_len + tail_len;
430 p = qiov->iov = g_new(struct iovec, qiov->niov);
431 }
432
433 if (head_len) {
434 p->iov_base = head_buf;
435 p->iov_len = head_len;
436 p++;
437 }
438
439 if (mid_len) {
440 memcpy(p, mid_iov, mid_niov * sizeof(*p));
441 p[0].iov_base = (uint8_t *)p[0].iov_base + mid_head;
442 p[0].iov_len -= mid_head;
443 p[mid_niov - 1].iov_len -= mid_tail;
444 p += mid_niov;
445 }
446
447 if (tail_len) {
448 p->iov_base = tail_buf;
449 p->iov_len = tail_len;
450 }
451}
452
453
454
455
456bool qemu_iovec_is_zero(QEMUIOVector *qiov, size_t offset, size_t bytes)
457{
458 struct iovec *iov;
459 size_t current_offset;
460
461 assert(offset + bytes <= qiov->size);
462
463 iov = iov_skip_offset(qiov->iov, offset, ¤t_offset);
464
465 while (bytes) {
466 uint8_t *base = (uint8_t *)iov->iov_base + current_offset;
467 size_t len = MIN(iov->iov_len - current_offset, bytes);
468
469 if (!buffer_is_zero(base, len)) {
470 return false;
471 }
472
473 current_offset = 0;
474 bytes -= len;
475 iov++;
476 }
477
478 return true;
479}
480
481void qemu_iovec_init_slice(QEMUIOVector *qiov, QEMUIOVector *source,
482 size_t offset, size_t len)
483{
484 qemu_iovec_init_extended(qiov, NULL, 0, source, offset, len, NULL, 0);
485}
486
487void qemu_iovec_destroy(QEMUIOVector *qiov)
488{
489 if (qiov->nalloc != -1) {
490 g_free(qiov->iov);
491 }
492
493 memset(qiov, 0, sizeof(*qiov));
494}
495
496void qemu_iovec_reset(QEMUIOVector *qiov)
497{
498 assert(qiov->nalloc != -1);
499
500 qiov->niov = 0;
501 qiov->size = 0;
502}
503
504size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset,
505 void *buf, size_t bytes)
506{
507 return iov_to_buf(qiov->iov, qiov->niov, offset, buf, bytes);
508}
509
510size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset,
511 const void *buf, size_t bytes)
512{
513 return iov_from_buf(qiov->iov, qiov->niov, offset, buf, bytes);
514}
515
516size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset,
517 int fillc, size_t bytes)
518{
519 return iov_memset(qiov->iov, qiov->niov, offset, fillc, bytes);
520}
521
522
523
524
525
526
527
528
529
530
531
532ssize_t qemu_iovec_compare(QEMUIOVector *a, QEMUIOVector *b)
533{
534 int i;
535 ssize_t offset = 0;
536
537 assert(a->niov == b->niov);
538 for (i = 0; i < a->niov; i++) {
539 size_t len = 0;
540 uint8_t *p = (uint8_t *)a->iov[i].iov_base;
541 uint8_t *q = (uint8_t *)b->iov[i].iov_base;
542
543 assert(a->iov[i].iov_len == b->iov[i].iov_len);
544 while (len < a->iov[i].iov_len && *p++ == *q++) {
545 len++;
546 }
547
548 offset += len;
549
550 if (len != a->iov[i].iov_len) {
551 return offset;
552 }
553 }
554 return -1;
555}
556
557typedef struct {
558 int src_index;
559 struct iovec *src_iov;
560 void *dest_base;
561} IOVectorSortElem;
562
563static int sortelem_cmp_src_base(const void *a, const void *b)
564{
565 const IOVectorSortElem *elem_a = a;
566 const IOVectorSortElem *elem_b = b;
567
568
569 if (elem_a->src_iov->iov_base < elem_b->src_iov->iov_base) {
570 return -1;
571 } else if (elem_a->src_iov->iov_base > elem_b->src_iov->iov_base) {
572 return 1;
573 } else {
574 return 0;
575 }
576}
577
578static int sortelem_cmp_src_index(const void *a, const void *b)
579{
580 const IOVectorSortElem *elem_a = a;
581 const IOVectorSortElem *elem_b = b;
582
583 return elem_a->src_index - elem_b->src_index;
584}
585
586
587
588
589
590
591
592void qemu_iovec_clone(QEMUIOVector *dest, const QEMUIOVector *src, void *buf)
593{
594 IOVectorSortElem sortelems[src->niov];
595 void *last_end;
596 int i;
597
598
599 for (i = 0; i < src->niov; i++) {
600 sortelems[i].src_index = i;
601 sortelems[i].src_iov = &src->iov[i];
602 }
603 qsort(sortelems, src->niov, sizeof(sortelems[0]), sortelem_cmp_src_base);
604
605
606 last_end = NULL;
607 for (i = 0; i < src->niov; i++) {
608 struct iovec *cur = sortelems[i].src_iov;
609 ptrdiff_t rewind = 0;
610
611
612 if (last_end && last_end > cur->iov_base) {
613 rewind = last_end - cur->iov_base;
614 }
615
616 sortelems[i].dest_base = buf - rewind;
617 buf += cur->iov_len - MIN(rewind, cur->iov_len);
618 last_end = MAX(cur->iov_base + cur->iov_len, last_end);
619 }
620
621
622 qsort(sortelems, src->niov, sizeof(sortelems[0]), sortelem_cmp_src_index);
623 for (i = 0; i < src->niov; i++) {
624 qemu_iovec_add(dest, sortelems[i].dest_base, src->iov[i].iov_len);
625 }
626}
627
628size_t iov_discard_front(struct iovec **iov, unsigned int *iov_cnt,
629 size_t bytes)
630{
631 size_t total = 0;
632 struct iovec *cur;
633
634 for (cur = *iov; *iov_cnt > 0; cur++) {
635 if (cur->iov_len > bytes) {
636 cur->iov_base += bytes;
637 cur->iov_len -= bytes;
638 total += bytes;
639 break;
640 }
641
642 bytes -= cur->iov_len;
643 total += cur->iov_len;
644 *iov_cnt -= 1;
645 }
646
647 *iov = cur;
648 return total;
649}
650
651size_t iov_discard_back(struct iovec *iov, unsigned int *iov_cnt,
652 size_t bytes)
653{
654 size_t total = 0;
655 struct iovec *cur;
656
657 if (*iov_cnt == 0) {
658 return 0;
659 }
660
661 cur = iov + (*iov_cnt - 1);
662
663 while (*iov_cnt > 0) {
664 if (cur->iov_len > bytes) {
665 cur->iov_len -= bytes;
666 total += bytes;
667 break;
668 }
669
670 bytes -= cur->iov_len;
671 total += cur->iov_len;
672 cur--;
673 *iov_cnt -= 1;
674 }
675
676 return total;
677}
678
679void qemu_iovec_discard_back(QEMUIOVector *qiov, size_t bytes)
680{
681 size_t total;
682 unsigned int niov = qiov->niov;
683
684 assert(qiov->size >= bytes);
685 total = iov_discard_back(qiov->iov, &niov, bytes);
686 assert(total == bytes);
687
688 qiov->niov = niov;
689 qiov->size -= bytes;
690}
691