qemu/include/qemu/iov.h
<<
>>
Prefs
   1/*
   2 * Helpers for using (partial) iovecs.
   3 *
   4 * Copyright (C) 2010 Red Hat, Inc.
   5 *
   6 * Author(s):
   7 *  Amit Shah <amit.shah@redhat.com>
   8 *  Michael Tokarev <mjt@tls.msk.ru>
   9 *
  10 * This work is licensed under the terms of the GNU GPL, version 2.  See
  11 * the COPYING file in the top-level directory.
  12 */
  13
  14#ifndef IOV_H
  15#define IOV_H
  16
  17/**
  18 * count and return data size, in bytes, of an iovec
  19 * starting at `iov' of `iov_cnt' number of elements.
  20 */
  21size_t iov_size(const struct iovec *iov, const unsigned int iov_cnt);
  22
  23/**
  24 * Copy from single continuous buffer to scatter-gather vector of buffers
  25 * (iovec) and back like memcpy() between two continuous memory regions.
  26 * Data in single continuous buffer starting at address `buf' and
  27 * `bytes' bytes long will be copied to/from an iovec `iov' with
  28 * `iov_cnt' number of elements, starting at byte position `offset'
  29 * within the iovec.  If the iovec does not contain enough space,
  30 * only part of data will be copied, up to the end of the iovec.
  31 * Number of bytes actually copied will be returned, which is
  32 *  min(bytes, iov_size(iov)-offset)
  33 * `Offset' must point to the inside of iovec.
  34 */
  35size_t iov_from_buf_full(const struct iovec *iov, unsigned int iov_cnt,
  36                         size_t offset, const void *buf, size_t bytes);
  37size_t iov_to_buf_full(const struct iovec *iov, const unsigned int iov_cnt,
  38                       size_t offset, void *buf, size_t bytes);
  39
  40static inline size_t
  41iov_from_buf(const struct iovec *iov, unsigned int iov_cnt,
  42             size_t offset, const void *buf, size_t bytes)
  43{
  44    if (__builtin_constant_p(bytes) && iov_cnt &&
  45        offset <= iov[0].iov_len && bytes <= iov[0].iov_len - offset) {
  46        memcpy(iov[0].iov_base + offset, buf, bytes);
  47        return bytes;
  48    } else {
  49        return iov_from_buf_full(iov, iov_cnt, offset, buf, bytes);
  50    }
  51}
  52
  53static inline size_t
  54iov_to_buf(const struct iovec *iov, const unsigned int iov_cnt,
  55           size_t offset, void *buf, size_t bytes)
  56{
  57    if (__builtin_constant_p(bytes) && iov_cnt &&
  58        offset <= iov[0].iov_len && bytes <= iov[0].iov_len - offset) {
  59        memcpy(buf, iov[0].iov_base + offset, bytes);
  60        return bytes;
  61    } else {
  62        return iov_to_buf_full(iov, iov_cnt, offset, buf, bytes);
  63    }
  64}
  65
  66/**
  67 * Set data bytes pointed out by iovec `iov' of size `iov_cnt' elements,
  68 * starting at byte offset `start', to value `fillc', repeating it
  69 * `bytes' number of times.  `Offset' must point to the inside of iovec.
  70 * If `bytes' is large enough, only last bytes portion of iovec,
  71 * up to the end of it, will be filled with the specified value.
  72 * Function return actual number of bytes processed, which is
  73 * min(size, iov_size(iov) - offset).
  74 */
  75size_t iov_memset(const struct iovec *iov, const unsigned int iov_cnt,
  76                  size_t offset, int fillc, size_t bytes);
  77
  78/*
  79 * Send/recv data from/to iovec buffers directly
  80 *
  81 * `offset' bytes in the beginning of iovec buffer are skipped and
  82 * next `bytes' bytes are used, which must be within data of iovec.
  83 *
  84 *   r = iov_send_recv(sockfd, iov, iovcnt, offset, bytes, true);
  85 *
  86 * is logically equivalent to
  87 *
  88 *   char *buf = malloc(bytes);
  89 *   iov_to_buf(iov, iovcnt, offset, buf, bytes);
  90 *   r = send(sockfd, buf, bytes, 0);
  91 *   free(buf);
  92 *
  93 * For iov_send_recv() _whole_ area being sent or received
  94 * should be within the iovec, not only beginning of it.
  95 */
  96ssize_t iov_send_recv(int sockfd, const struct iovec *iov, unsigned iov_cnt,
  97                      size_t offset, size_t bytes, bool do_send);
  98#define iov_recv(sockfd, iov, iov_cnt, offset, bytes) \
  99  iov_send_recv(sockfd, iov, iov_cnt, offset, bytes, false)
 100#define iov_send(sockfd, iov, iov_cnt, offset, bytes) \
 101  iov_send_recv(sockfd, iov, iov_cnt, offset, bytes, true)
 102
 103/**
 104 * Produce a text hexdump of iovec `iov' with `iov_cnt' number of elements
 105 * in file `fp', prefixing each line with `prefix' and processing not more
 106 * than `limit' data bytes.
 107 */
 108void iov_hexdump(const struct iovec *iov, const unsigned int iov_cnt,
 109                 FILE *fp, const char *prefix, size_t limit);
 110
 111/*
 112 * Partial copy of vector from iov to dst_iov (data is not copied).
 113 * dst_iov overlaps iov at a specified offset.
 114 * size of dst_iov is at most bytes. dst vector count is returned.
 115 */
 116unsigned iov_copy(struct iovec *dst_iov, unsigned int dst_iov_cnt,
 117                 const struct iovec *iov, unsigned int iov_cnt,
 118                 size_t offset, size_t bytes);
 119
 120/*
 121 * Remove a given number of bytes from the front or back of a vector.
 122 * This may update iov and/or iov_cnt to exclude iovec elements that are
 123 * no longer required.
 124 *
 125 * The number of bytes actually discarded is returned.  This number may be
 126 * smaller than requested if the vector is too small.
 127 */
 128size_t iov_discard_front(struct iovec **iov, unsigned int *iov_cnt,
 129                         size_t bytes);
 130size_t iov_discard_back(struct iovec *iov, unsigned int *iov_cnt,
 131                        size_t bytes);
 132
 133typedef struct QEMUIOVector {
 134    struct iovec *iov;
 135    int niov;
 136
 137    /*
 138     * For external @iov (qemu_iovec_init_external()) or allocated @iov
 139     * (qemu_iovec_init()), @size is the cumulative size of iovecs and
 140     * @local_iov is invalid and unused.
 141     *
 142     * For embedded @iov (QEMU_IOVEC_INIT_BUF() or qemu_iovec_init_buf()),
 143     * @iov is equal to &@local_iov, and @size is valid, as it has same
 144     * offset and type as @local_iov.iov_len, which is guaranteed by
 145     * static assertion below.
 146     *
 147     * @nalloc is always valid and is -1 both for embedded and external
 148     * cases. It is included in the union only to ensure the padding prior
 149     * to the @size field will not result in a 0-length array.
 150     */
 151    union {
 152        struct {
 153            int nalloc;
 154            struct iovec local_iov;
 155        };
 156        struct {
 157            char __pad[sizeof(int) + offsetof(struct iovec, iov_len)];
 158            size_t size;
 159        };
 160    };
 161} QEMUIOVector;
 162
 163QEMU_BUILD_BUG_ON(offsetof(QEMUIOVector, size) !=
 164                  offsetof(QEMUIOVector, local_iov.iov_len));
 165
 166#define QEMU_IOVEC_INIT_BUF(self, buf, len)              \
 167{                                                        \
 168    .iov = &(self).local_iov,                            \
 169    .niov = 1,                                           \
 170    .nalloc = -1,                                        \
 171    .local_iov = {                                       \
 172        .iov_base = (void *)(buf), /* cast away const */ \
 173        .iov_len = (len),                                \
 174    },                                                   \
 175}
 176
 177/*
 178 * qemu_iovec_init_buf
 179 *
 180 * Initialize embedded QEMUIOVector.
 181 *
 182 * Note: "const" is used over @buf pointer to make it simple to pass
 183 * const pointers, appearing in read functions. Then this "const" is
 184 * cast away by QEMU_IOVEC_INIT_BUF().
 185 */
 186static inline void qemu_iovec_init_buf(QEMUIOVector *qiov,
 187                                       const void *buf, size_t len)
 188{
 189    *qiov = (QEMUIOVector) QEMU_IOVEC_INIT_BUF(*qiov, buf, len);
 190}
 191
 192static inline void *qemu_iovec_buf(QEMUIOVector *qiov)
 193{
 194    /* Only supports embedded iov */
 195    assert(qiov->nalloc == -1 && qiov->iov == &qiov->local_iov);
 196
 197    return qiov->local_iov.iov_base;
 198}
 199
 200void qemu_iovec_init(QEMUIOVector *qiov, int alloc_hint);
 201void qemu_iovec_init_external(QEMUIOVector *qiov, struct iovec *iov, int niov);
 202void qemu_iovec_add(QEMUIOVector *qiov, void *base, size_t len);
 203void qemu_iovec_concat(QEMUIOVector *dst,
 204                       QEMUIOVector *src, size_t soffset, size_t sbytes);
 205size_t qemu_iovec_concat_iov(QEMUIOVector *dst,
 206                             struct iovec *src_iov, unsigned int src_cnt,
 207                             size_t soffset, size_t sbytes);
 208bool qemu_iovec_is_zero(QEMUIOVector *qiov);
 209void qemu_iovec_destroy(QEMUIOVector *qiov);
 210void qemu_iovec_reset(QEMUIOVector *qiov);
 211size_t qemu_iovec_to_buf(QEMUIOVector *qiov, size_t offset,
 212                         void *buf, size_t bytes);
 213size_t qemu_iovec_from_buf(QEMUIOVector *qiov, size_t offset,
 214                           const void *buf, size_t bytes);
 215size_t qemu_iovec_memset(QEMUIOVector *qiov, size_t offset,
 216                         int fillc, size_t bytes);
 217ssize_t qemu_iovec_compare(QEMUIOVector *a, QEMUIOVector *b);
 218void qemu_iovec_clone(QEMUIOVector *dest, const QEMUIOVector *src, void *buf);
 219void qemu_iovec_discard_back(QEMUIOVector *qiov, size_t bytes);
 220
 221#endif
 222