1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
/*
* QEMU rocker switch emulation - TLV parsing and composing
*
* Copyright (c) 2014 Jiri Pirko <jiri@resnulli.us>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef ROCKER_TLV_H
#define ROCKER_TLV_H
#define ROCKER_TLV_ALIGNTO 8U
#define ROCKER_TLV_ALIGN(len) \
(((len) + ROCKER_TLV_ALIGNTO - 1) & ~(ROCKER_TLV_ALIGNTO - 1))
#define ROCKER_TLV_HDRLEN ROCKER_TLV_ALIGN(sizeof(RockerTlv))
/*
* <------- ROCKER_TLV_HDRLEN -------> <--- ROCKER_TLV_ALIGN(payload) --->
* +-----------------------------+- - -+- - - - - - - - - - - - - - -+- - -+
* | Header | Pad | Payload | Pad |
* | (RockerTlv) | ing | | ing |
* +-----------------------------+- - -+- - - - - - - - - - - - - - -+- - -+
* <--------------------------- tlv->len -------------------------->
*/
static inline RockerTlv *rocker_tlv_next(const RockerTlv *tlv, int *remaining)
{
int totlen = ROCKER_TLV_ALIGN(le16_to_cpu(tlv->len));
*remaining -= totlen;
return (RockerTlv *) ((char *) tlv + totlen);
}
static inline int rocker_tlv_ok(const RockerTlv *tlv, int remaining)
{
return remaining >= (int) ROCKER_TLV_HDRLEN &&
le16_to_cpu(tlv->len) >= ROCKER_TLV_HDRLEN &&
le16_to_cpu(tlv->len) <= remaining;
}
#define rocker_tlv_for_each(pos, head, len, rem) \
for (pos = head, rem = len; \
rocker_tlv_ok(pos, rem); \
pos = rocker_tlv_next(pos, &(rem)))
#define rocker_tlv_for_each_nested(pos, tlv, rem) \
rocker_tlv_for_each(pos, rocker_tlv_data(tlv), rocker_tlv_len(tlv), rem)
static inline int rocker_tlv_size(int payload)
{
return ROCKER_TLV_HDRLEN + payload;
}
static inline int rocker_tlv_total_size(int payload)
{
return ROCKER_TLV_ALIGN(rocker_tlv_size(payload));
}
static inline int rocker_tlv_padlen(int payload)
{
return rocker_tlv_total_size(payload) - rocker_tlv_size(payload);
}
static inline int rocker_tlv_type(const RockerTlv *tlv)
{
return le32_to_cpu(tlv->type);
}
static inline void *rocker_tlv_data(const RockerTlv *tlv)
{
return (char *) tlv + ROCKER_TLV_HDRLEN;
}
static inline int rocker_tlv_len(const RockerTlv *tlv)
{
return le16_to_cpu(tlv->len) - ROCKER_TLV_HDRLEN;
}
static inline uint8_t rocker_tlv_get_u8(const RockerTlv *tlv)
{
return *(uint8_t *) rocker_tlv_data(tlv);
}
static inline uint16_t rocker_tlv_get_u16(const RockerTlv *tlv)
{
return *(uint16_t *) rocker_tlv_data(tlv);
}
static inline uint32_t rocker_tlv_get_u32(const RockerTlv *tlv)
{
return *(uint32_t *) rocker_tlv_data(tlv);
}
static inline uint64_t rocker_tlv_get_u64(const RockerTlv *tlv)
{
return *(uint64_t *) rocker_tlv_data(tlv);
}
static inline uint16_t rocker_tlv_get_le16(const RockerTlv *tlv)
{
return lduw_le_p(rocker_tlv_data(tlv));
}
static inline uint32_t rocker_tlv_get_le32(const RockerTlv *tlv)
{
return ldl_le_p(rocker_tlv_data(tlv));
}
static inline uint64_t rocker_tlv_get_le64(const RockerTlv *tlv)
{
return ldq_le_p(rocker_tlv_data(tlv));
}
static inline void rocker_tlv_parse(RockerTlv **tb, int maxtype,
const char *buf, int buf_len)
{
const RockerTlv *tlv;
const RockerTlv *head = (const RockerTlv *) buf;
int rem;
memset(tb, 0, sizeof(RockerTlv *) * (maxtype + 1));
rocker_tlv_for_each(tlv, head, buf_len, rem) {
uint32_t type = rocker_tlv_type(tlv);
if (type > 0 && type <= maxtype) {
tb[type] = (RockerTlv *) tlv;
}
}
}
static inline void rocker_tlv_parse_nested(RockerTlv **tb, int maxtype,
const RockerTlv *tlv)
{
rocker_tlv_parse(tb, maxtype, rocker_tlv_data(tlv), rocker_tlv_len(tlv));
}
static inline RockerTlv *rocker_tlv_start(char *buf, int buf_pos)
{
return (RockerTlv *) (buf + buf_pos);
}
static inline void rocker_tlv_put_iov(char *buf, int *buf_pos,
int type, const struct iovec *iov,
const unsigned int iovcnt)
{
size_t len = iov_size(iov, iovcnt);
int total_size = rocker_tlv_total_size(len);
RockerTlv *tlv;
tlv = rocker_tlv_start(buf, *buf_pos);
*buf_pos += total_size;
tlv->type = cpu_to_le32(type);
tlv->len = cpu_to_le16(rocker_tlv_size(len));
iov_to_buf(iov, iovcnt, 0, rocker_tlv_data(tlv), len);
memset((char *) tlv + le16_to_cpu(tlv->len), 0, rocker_tlv_padlen(len));
}
static inline void rocker_tlv_put(char *buf, int *buf_pos,
int type, int len, void *data)
{
struct iovec iov = {
.iov_base = data,
.iov_len = len,
};
rocker_tlv_put_iov(buf, buf_pos, type, &iov, 1);
}
static inline void rocker_tlv_put_u8(char *buf, int *buf_pos,
int type, uint8_t value)
{
rocker_tlv_put(buf, buf_pos, type, sizeof(uint8_t), &value);
}
static inline void rocker_tlv_put_u16(char *buf, int *buf_pos,
int type, uint16_t value)
{
rocker_tlv_put(buf, buf_pos, type, sizeof(uint16_t), &value);
}
static inline void rocker_tlv_put_u32(char *buf, int *buf_pos,
int type, uint32_t value)
{
rocker_tlv_put(buf, buf_pos, type, sizeof(uint32_t), &value);
}
static inline void rocker_tlv_put_u64(char *buf, int *buf_pos,
int type, uint64_t value)
{
rocker_tlv_put(buf, buf_pos, type, sizeof(uint64_t), &value);
}
static inline void rocker_tlv_put_le16(char *buf, int *buf_pos,
int type, uint16_t value)
{
value = cpu_to_le16(value);
rocker_tlv_put(buf, buf_pos, type, sizeof(uint16_t), &value);
}
static inline void rocker_tlv_put_le32(char *buf, int *buf_pos,
int type, uint32_t value)
{
value = cpu_to_le32(value);
rocker_tlv_put(buf, buf_pos, type, sizeof(uint32_t), &value);
}
static inline void rocker_tlv_put_le64(char *buf, int *buf_pos,
int type, uint64_t value)
{
value = cpu_to_le64(value);
rocker_tlv_put(buf, buf_pos, type, sizeof(uint64_t), &value);
}
static inline RockerTlv *rocker_tlv_nest_start(char *buf, int *buf_pos,
int type)
{
RockerTlv *start = rocker_tlv_start(buf, *buf_pos);
rocker_tlv_put(buf, buf_pos, type, 0, NULL);
return start;
}
static inline void rocker_tlv_nest_end(char *buf, int *buf_pos,
RockerTlv *start)
{
start->len = (char *) rocker_tlv_start(buf, *buf_pos) - (char *) start;
}
static inline void rocker_tlv_nest_cancel(char *buf, int *buf_pos,
RockerTlv *start)
{
*buf_pos = (char *) start - buf;
}
#endif
|