]> git.proxmox.com Git - ovs.git/blame - lib/netlink.c
netlink: Use NL_ATTR_FOR_EACH in nl_policy_parse().
[ovs.git] / lib / netlink.c
CommitLineData
064af421 1/*
b18fcf8e 2 * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
064af421 3 *
a14bc59f
BP
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
064af421 7 *
a14bc59f
BP
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
064af421
BP
15 */
16
17#include <config.h>
18#include "netlink.h"
19#include <assert.h>
20#include <errno.h>
21#include <inttypes.h>
2fe27d5a 22#include <sys/types.h>
064af421
BP
23#include <unistd.h>
24#include "coverage.h"
064af421
BP
25#include "netlink-protocol.h"
26#include "ofpbuf.h"
064af421 27#include "timeval.h"
34c7bb50 28#include "unaligned.h"
064af421 29#include "vlog.h"
5136ce49 30
d98e6007 31VLOG_DEFINE_THIS_MODULE(netlink);
064af421 32
064af421
BP
33/* A single (bad) Netlink message can in theory dump out many, many log
34 * messages, so the burst size is set quite high here to avoid missing useful
35 * information. Also, at high logging levels we log *all* Netlink messages. */
36static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(60, 600);
37
064af421
BP
38/* Returns the nlmsghdr at the head of 'msg'.
39 *
40 * 'msg' must be at least as large as a nlmsghdr. */
41struct nlmsghdr *
d295e8e9 42nl_msg_nlmsghdr(const struct ofpbuf *msg)
064af421
BP
43{
44 return ofpbuf_at_assert(msg, 0, NLMSG_HDRLEN);
45}
46
47/* Returns the genlmsghdr just past 'msg''s nlmsghdr.
48 *
49 * Returns a null pointer if 'msg' is not large enough to contain an nlmsghdr
50 * and a genlmsghdr. */
51struct genlmsghdr *
d295e8e9 52nl_msg_genlmsghdr(const struct ofpbuf *msg)
064af421
BP
53{
54 return ofpbuf_at(msg, NLMSG_HDRLEN, GENL_HDRLEN);
55}
56
57/* If 'buffer' is a NLMSG_ERROR message, stores 0 in '*errorp' if it is an ACK
58 * message, otherwise a positive errno value, and returns true. If 'buffer' is
59 * not an NLMSG_ERROR message, returns false.
60 *
61 * 'msg' must be at least as large as a nlmsghdr. */
62bool
d295e8e9 63nl_msg_nlmsgerr(const struct ofpbuf *msg, int *errorp)
064af421
BP
64{
65 if (nl_msg_nlmsghdr(msg)->nlmsg_type == NLMSG_ERROR) {
66 struct nlmsgerr *err = ofpbuf_at(msg, NLMSG_HDRLEN, sizeof *err);
67 int code = EPROTO;
68 if (!err) {
69 VLOG_ERR_RL(&rl, "received invalid nlmsgerr (%zd bytes < %zd)",
70 msg->size, NLMSG_HDRLEN + sizeof *err);
71 } else if (err->error <= 0 && err->error > INT_MIN) {
72 code = -err->error;
73 }
74 if (errorp) {
75 *errorp = code;
76 }
77 return true;
78 } else {
79 return false;
80 }
81}
82
83/* Ensures that 'b' has room for at least 'size' bytes plus netlink padding at
84 * its tail end, reallocating and copying its data if necessary. */
85void
d295e8e9 86nl_msg_reserve(struct ofpbuf *msg, size_t size)
064af421
BP
87{
88 ofpbuf_prealloc_tailroom(msg, NLMSG_ALIGN(size));
89}
90
2fe27d5a
BP
91static uint32_t
92get_nlmsg_seq(void)
93{
94 /* Next nlmsghdr sequence number.
95 *
96 * This implementation uses sequence numbers that are unique process-wide,
97 * to avoid a hypothetical race: send request, close socket, open new
98 * socket that reuses the old socket's PID value, send request on new
99 * socket, receive reply from kernel to old socket but with same PID and
100 * sequence number. (This race could be avoided other ways, e.g. by
101 * preventing PIDs from being quickly reused). */
102 static uint32_t next_seq;
103
104 if (next_seq == 0) {
105 /* Pick initial sequence number. */
106 next_seq = getpid() ^ time_wall();
107 }
108 return next_seq++;
109}
110
064af421 111/* Puts a nlmsghdr at the beginning of 'msg', which must be initially empty.
69123704 112 * Uses the given 'type' and 'flags'. 'expected_payload' should be
064af421
BP
113 * an estimate of the number of payload bytes to be supplied; if the size of
114 * the payload is unknown a value of 0 is acceptable.
115 *
116 * 'type' is ordinarily an enumerated value specific to the Netlink protocol
117 * (e.g. RTM_NEWLINK, for NETLINK_ROUTE protocol). For Generic Netlink, 'type'
118 * is the family number obtained via nl_lookup_genl_family().
119 *
120 * 'flags' is a bit-mask that indicates what kind of request is being made. It
121 * is often NLM_F_REQUEST indicating that a request is being made, commonly
122 * or'd with NLM_F_ACK to request an acknowledgement.
123 *
69123704
BP
124 * Sets the new nlmsghdr's nlmsg_pid field to 0 for now. nl_sock_send() will
125 * fill it in just before sending the message.
126 *
127 * nl_msg_put_genlmsghdr() is more convenient for composing a Generic Netlink
064af421
BP
128 * message. */
129void
69123704 130nl_msg_put_nlmsghdr(struct ofpbuf *msg,
d295e8e9 131 size_t expected_payload, uint32_t type, uint32_t flags)
064af421
BP
132{
133 struct nlmsghdr *nlmsghdr;
134
135 assert(msg->size == 0);
136
137 nl_msg_reserve(msg, NLMSG_HDRLEN + expected_payload);
138 nlmsghdr = nl_msg_put_uninit(msg, NLMSG_HDRLEN);
139 nlmsghdr->nlmsg_len = 0;
140 nlmsghdr->nlmsg_type = type;
141 nlmsghdr->nlmsg_flags = flags;
2fe27d5a 142 nlmsghdr->nlmsg_seq = get_nlmsg_seq();
69123704 143 nlmsghdr->nlmsg_pid = 0;
064af421
BP
144}
145
146/* Puts a nlmsghdr and genlmsghdr at the beginning of 'msg', which must be
69123704
BP
147 * initially empty. 'expected_payload' should be an estimate of the number of
148 * payload bytes to be supplied; if the size of the payload is unknown a value
149 * of 0 is acceptable.
064af421
BP
150 *
151 * 'family' is the family number obtained via nl_lookup_genl_family().
152 *
153 * 'flags' is a bit-mask that indicates what kind of request is being made. It
154 * is often NLM_F_REQUEST indicating that a request is being made, commonly
155 * or'd with NLM_F_ACK to request an acknowledgement.
156 *
157 * 'cmd' is an enumerated value specific to the Generic Netlink family
158 * (e.g. CTRL_CMD_NEWFAMILY for the GENL_ID_CTRL family).
159 *
160 * 'version' is a version number specific to the family and command (often 1).
161 *
69123704
BP
162 * Sets the new nlmsghdr's nlmsg_pid field to 0 for now. nl_sock_send() will
163 * fill it in just before sending the message.
164 *
165 * nl_msg_put_nlmsghdr() should be used to compose Netlink messages that are
166 * not Generic Netlink messages. */
064af421 167void
69123704
BP
168nl_msg_put_genlmsghdr(struct ofpbuf *msg, size_t expected_payload,
169 int family, uint32_t flags, uint8_t cmd, uint8_t version)
064af421
BP
170{
171 struct genlmsghdr *genlmsghdr;
172
69123704 173 nl_msg_put_nlmsghdr(msg, GENL_HDRLEN + expected_payload, family, flags);
064af421
BP
174 assert(msg->size == NLMSG_HDRLEN);
175 genlmsghdr = nl_msg_put_uninit(msg, GENL_HDRLEN);
176 genlmsghdr->cmd = cmd;
177 genlmsghdr->version = version;
178 genlmsghdr->reserved = 0;
179}
180
181/* Appends the 'size' bytes of data in 'p', plus Netlink padding if needed, to
182 * the tail end of 'msg'. Data in 'msg' is reallocated and copied if
183 * necessary. */
184void
d295e8e9 185nl_msg_put(struct ofpbuf *msg, const void *data, size_t size)
064af421
BP
186{
187 memcpy(nl_msg_put_uninit(msg, size), data, size);
188}
189
190/* Appends 'size' bytes of data, plus Netlink padding if needed, to the tail
191 * end of 'msg', reallocating and copying its data if necessary. Returns a
192 * pointer to the first byte of the new data, which is left uninitialized. */
193void *
d295e8e9 194nl_msg_put_uninit(struct ofpbuf *msg, size_t size)
064af421
BP
195{
196 size_t pad = NLMSG_ALIGN(size) - size;
197 char *p = ofpbuf_put_uninit(msg, size + pad);
198 if (pad) {
d295e8e9 199 memset(p + size, 0, pad);
064af421
BP
200 }
201 return p;
202}
203
46d34fef
BP
204/* Prepends the 'size' bytes of data in 'p', plus Netlink padding if needed, to
205 * the head end of 'msg'. Data in 'msg' is reallocated and copied if
206 * necessary. */
207void
208nl_msg_push(struct ofpbuf *msg, const void *data, size_t size)
209{
210 memcpy(nl_msg_push_uninit(msg, size), data, size);
211}
212
213/* Prepends 'size' bytes of data, plus Netlink padding if needed, to the head
214 * end of 'msg', reallocating and copying its data if necessary. Returns a
215 * pointer to the first byte of the new data, which is left uninitialized. */
216void *
217nl_msg_push_uninit(struct ofpbuf *msg, size_t size)
218{
219 size_t pad = NLMSG_ALIGN(size) - size;
220 char *p = ofpbuf_push_uninit(msg, size + pad);
221 if (pad) {
222 memset(p + size, 0, pad);
223 }
224 return p;
225}
226
064af421
BP
227/* Appends a Netlink attribute of the given 'type' and room for 'size' bytes of
228 * data as its payload, plus Netlink padding if needed, to the tail end of
229 * 'msg', reallocating and copying its data if necessary. Returns a pointer to
230 * the first byte of data in the attribute, which is left uninitialized. */
231void *
d295e8e9 232nl_msg_put_unspec_uninit(struct ofpbuf *msg, uint16_t type, size_t size)
064af421
BP
233{
234 size_t total_size = NLA_HDRLEN + size;
235 struct nlattr* nla = nl_msg_put_uninit(msg, total_size);
236 assert(NLA_ALIGN(total_size) <= UINT16_MAX);
237 nla->nla_len = total_size;
238 nla->nla_type = type;
239 return nla + 1;
240}
241
242/* Appends a Netlink attribute of the given 'type' and the 'size' bytes of
243 * 'data' as its payload, to the tail end of 'msg', reallocating and copying
244 * its data if necessary. Returns a pointer to the first byte of data in the
245 * attribute, which is left uninitialized. */
246void
247nl_msg_put_unspec(struct ofpbuf *msg, uint16_t type,
d295e8e9 248 const void *data, size_t size)
064af421
BP
249{
250 memcpy(nl_msg_put_unspec_uninit(msg, type, size), data, size);
251}
252
253/* Appends a Netlink attribute of the given 'type' and no payload to 'msg'.
254 * (Some Netlink protocols use the presence or absence of an attribute as a
255 * Boolean flag.) */
256void
d295e8e9 257nl_msg_put_flag(struct ofpbuf *msg, uint16_t type)
064af421
BP
258{
259 nl_msg_put_unspec(msg, type, NULL, 0);
260}
261
262/* Appends a Netlink attribute of the given 'type' and the given 8-bit 'value'
263 * to 'msg'. */
264void
d295e8e9 265nl_msg_put_u8(struct ofpbuf *msg, uint16_t type, uint8_t value)
064af421
BP
266{
267 nl_msg_put_unspec(msg, type, &value, sizeof value);
268}
269
ee913f98
BP
270/* Appends a Netlink attribute of the given 'type' and the given 16-bit host
271 * byte order 'value' to 'msg'. */
064af421
BP
272void
273nl_msg_put_u16(struct ofpbuf *msg, uint16_t type, uint16_t value)
274{
275 nl_msg_put_unspec(msg, type, &value, sizeof value);
276}
277
ee913f98
BP
278/* Appends a Netlink attribute of the given 'type' and the given 32-bit host
279 * byte order 'value' to 'msg'. */
064af421
BP
280void
281nl_msg_put_u32(struct ofpbuf *msg, uint16_t type, uint32_t value)
282{
283 nl_msg_put_unspec(msg, type, &value, sizeof value);
284}
285
ee913f98
BP
286/* Appends a Netlink attribute of the given 'type' and the given 64-bit host
287 * byte order 'value' to 'msg'. */
064af421
BP
288void
289nl_msg_put_u64(struct ofpbuf *msg, uint16_t type, uint64_t value)
290{
291 nl_msg_put_unspec(msg, type, &value, sizeof value);
292}
293
ee913f98
BP
294/* Appends a Netlink attribute of the given 'type' and the given 16-bit network
295 * byte order 'value' to 'msg'. */
296void
297nl_msg_put_be16(struct ofpbuf *msg, uint16_t type, ovs_be16 value)
298{
299 nl_msg_put_unspec(msg, type, &value, sizeof value);
300}
301
302/* Appends a Netlink attribute of the given 'type' and the given 32-bit network
303 * byte order 'value' to 'msg'. */
304void
305nl_msg_put_be32(struct ofpbuf *msg, uint16_t type, ovs_be32 value)
306{
307 nl_msg_put_unspec(msg, type, &value, sizeof value);
308}
309
310/* Appends a Netlink attribute of the given 'type' and the given 64-bit network
311 * byte order 'value' to 'msg'. */
312void
313nl_msg_put_be64(struct ofpbuf *msg, uint16_t type, ovs_be64 value)
314{
315 nl_msg_put_unspec(msg, type, &value, sizeof value);
316}
317
064af421
BP
318/* Appends a Netlink attribute of the given 'type' and the given
319 * null-terminated string 'value' to 'msg'. */
320void
321nl_msg_put_string(struct ofpbuf *msg, uint16_t type, const char *value)
322{
323 nl_msg_put_unspec(msg, type, value, strlen(value) + 1);
324}
325
46d34fef
BP
326/* Prepends a Netlink attribute of the given 'type' and room for 'size' bytes
327 * of data as its payload, plus Netlink padding if needed, to the head end of
328 * 'msg', reallocating and copying its data if necessary. Returns a pointer to
329 * the first byte of data in the attribute, which is left uninitialized. */
330void *
331nl_msg_push_unspec_uninit(struct ofpbuf *msg, uint16_t type, size_t size)
332{
333 size_t total_size = NLA_HDRLEN + size;
334 struct nlattr* nla = nl_msg_push_uninit(msg, total_size);
335 assert(NLA_ALIGN(total_size) <= UINT16_MAX);
336 nla->nla_len = total_size;
337 nla->nla_type = type;
338 return nla + 1;
339}
340
341/* Prepends a Netlink attribute of the given 'type' and the 'size' bytes of
342 * 'data' as its payload, to the head end of 'msg', reallocating and copying
343 * its data if necessary. Returns a pointer to the first byte of data in the
344 * attribute, which is left uninitialized. */
345void
346nl_msg_push_unspec(struct ofpbuf *msg, uint16_t type,
347 const void *data, size_t size)
348{
349 memcpy(nl_msg_push_unspec_uninit(msg, type, size), data, size);
350}
351
352/* Prepends a Netlink attribute of the given 'type' and no payload to 'msg'.
353 * (Some Netlink protocols use the presence or absence of an attribute as a
354 * Boolean flag.) */
355void
356nl_msg_push_flag(struct ofpbuf *msg, uint16_t type)
357{
358 nl_msg_push_unspec(msg, type, NULL, 0);
359}
360
361/* Prepends a Netlink attribute of the given 'type' and the given 8-bit 'value'
362 * to 'msg'. */
363void
364nl_msg_push_u8(struct ofpbuf *msg, uint16_t type, uint8_t value)
365{
366 nl_msg_push_unspec(msg, type, &value, sizeof value);
367}
368
369/* Prepends a Netlink attribute of the given 'type' and the given 16-bit host
370 * byte order 'value' to 'msg'. */
371void
372nl_msg_push_u16(struct ofpbuf *msg, uint16_t type, uint16_t value)
373{
374 nl_msg_push_unspec(msg, type, &value, sizeof value);
375}
376
377/* Prepends a Netlink attribute of the given 'type' and the given 32-bit host
378 * byte order 'value' to 'msg'. */
379void
380nl_msg_push_u32(struct ofpbuf *msg, uint16_t type, uint32_t value)
381{
382 nl_msg_push_unspec(msg, type, &value, sizeof value);
383}
384
385/* Prepends a Netlink attribute of the given 'type' and the given 64-bit host
386 * byte order 'value' to 'msg'. */
387void
388nl_msg_push_u64(struct ofpbuf *msg, uint16_t type, uint64_t value)
389{
390 nl_msg_push_unspec(msg, type, &value, sizeof value);
391}
392
393/* Prepends a Netlink attribute of the given 'type' and the given 16-bit
394 * network byte order 'value' to 'msg'. */
395void
396nl_msg_push_be16(struct ofpbuf *msg, uint16_t type, ovs_be16 value)
397{
398 nl_msg_push_unspec(msg, type, &value, sizeof value);
399}
400
401/* Prepends a Netlink attribute of the given 'type' and the given 32-bit
402 * network byte order 'value' to 'msg'. */
403void
404nl_msg_push_be32(struct ofpbuf *msg, uint16_t type, ovs_be32 value)
405{
406 nl_msg_push_unspec(msg, type, &value, sizeof value);
407}
408
409/* Prepends a Netlink attribute of the given 'type' and the given 64-bit
410 * network byte order 'value' to 'msg'. */
411void
412nl_msg_push_be64(struct ofpbuf *msg, uint16_t type, ovs_be64 value)
413{
414 nl_msg_push_unspec(msg, type, &value, sizeof value);
415}
416
417/* Prepends a Netlink attribute of the given 'type' and the given
418 * null-terminated string 'value' to 'msg'. */
419void
420nl_msg_push_string(struct ofpbuf *msg, uint16_t type, const char *value)
421{
422 nl_msg_push_unspec(msg, type, value, strlen(value) + 1);
423}
424
38a99756
BP
425/* Adds the header for nested Netlink attributes to 'msg', with the specified
426 * 'type', and returns the header's offset within 'msg'. The caller should add
427 * the content for the nested Netlink attribute to 'msg' (e.g. using the other
428 * nl_msg_*() functions), and then pass the returned offset to
429 * nl_msg_end_nested() to finish up the nested attributes. */
430size_t
431nl_msg_start_nested(struct ofpbuf *msg, uint16_t type)
432{
433 size_t offset = msg->size;
434 nl_msg_put_unspec(msg, type, NULL, 0);
435 return offset;
436}
437
438/* Finalizes a nested Netlink attribute in 'msg'. 'offset' should be the value
439 * returned by nl_msg_start_nested(). */
440void
441nl_msg_end_nested(struct ofpbuf *msg, size_t offset)
442{
443 struct nlattr *attr = ofpbuf_at_assert(msg, offset, sizeof *attr);
444 attr->nla_len = msg->size - offset;
445}
446
447/* Appends a nested Netlink attribute of the given 'type', with the 'size'
448 * bytes of content starting at 'data', to 'msg'. */
064af421
BP
449void
450nl_msg_put_nested(struct ofpbuf *msg,
38a99756 451 uint16_t type, const void *data, size_t size)
064af421 452{
38a99756
BP
453 size_t offset = nl_msg_start_nested(msg, type);
454 nl_msg_put(msg, data, size);
455 nl_msg_end_nested(msg, offset);
064af421
BP
456}
457
974d6a6d
BP
458/* If 'buffer' begins with a valid "struct nlmsghdr", pulls the header and its
459 * payload off 'buffer', stores header and payload in 'msg->data' and
460 * 'msg->size', and returns a pointer to the header.
461 *
462 * If 'buffer' does not begin with a "struct nlmsghdr" or begins with one that
463 * is invalid, returns NULL without modifying 'buffer'. */
464struct nlmsghdr *
465nl_msg_next(struct ofpbuf *buffer, struct ofpbuf *msg)
466{
467 if (buffer->size >= sizeof(struct nlmsghdr)) {
468 struct nlmsghdr *nlmsghdr = nl_msg_nlmsghdr(buffer);
469 size_t len = nlmsghdr->nlmsg_len;
470 if (len >= sizeof *nlmsghdr && len <= buffer->size) {
0bc9407d 471 ofpbuf_use_const(msg, nlmsghdr, len);
974d6a6d
BP
472 ofpbuf_pull(buffer, len);
473 return nlmsghdr;
474 }
475 }
476
477 msg->data = NULL;
478 msg->size = 0;
479 return NULL;
480}
481\f
482/* Attributes. */
483
7c624478
BP
484/* Returns the bits of 'nla->nla_type' that are significant for determining its
485 * type. */
486int
487nl_attr_type(const struct nlattr *nla)
488{
489 return nla->nla_type & NLA_TYPE_MASK;
490}
491
064af421
BP
492/* Returns the first byte in the payload of attribute 'nla'. */
493const void *
d295e8e9 494nl_attr_get(const struct nlattr *nla)
064af421
BP
495{
496 assert(nla->nla_len >= NLA_HDRLEN);
497 return nla + 1;
498}
499
500/* Returns the number of bytes in the payload of attribute 'nla'. */
501size_t
d295e8e9 502nl_attr_get_size(const struct nlattr *nla)
064af421
BP
503{
504 assert(nla->nla_len >= NLA_HDRLEN);
505 return nla->nla_len - NLA_HDRLEN;
506}
507
508/* Asserts that 'nla''s payload is at least 'size' bytes long, and returns the
509 * first byte of the payload. */
510const void *
d295e8e9 511nl_attr_get_unspec(const struct nlattr *nla, size_t size)
064af421
BP
512{
513 assert(nla->nla_len >= NLA_HDRLEN + size);
514 return nla + 1;
515}
516
517/* Returns true if 'nla' is nonnull. (Some Netlink protocols use the presence
518 * or absence of an attribute as a Boolean flag.) */
519bool
d295e8e9 520nl_attr_get_flag(const struct nlattr *nla)
064af421
BP
521{
522 return nla != NULL;
523}
524
525#define NL_ATTR_GET_AS(NLA, TYPE) \
526 (*(TYPE*) nl_attr_get_unspec(nla, sizeof(TYPE)))
527
528/* Returns the 8-bit value in 'nla''s payload.
529 *
530 * Asserts that 'nla''s payload is at least 1 byte long. */
531uint8_t
d295e8e9 532nl_attr_get_u8(const struct nlattr *nla)
064af421
BP
533{
534 return NL_ATTR_GET_AS(nla, uint8_t);
535}
536
ee913f98 537/* Returns the 16-bit host byte order value in 'nla''s payload.
064af421
BP
538 *
539 * Asserts that 'nla''s payload is at least 2 bytes long. */
540uint16_t
d295e8e9 541nl_attr_get_u16(const struct nlattr *nla)
064af421
BP
542{
543 return NL_ATTR_GET_AS(nla, uint16_t);
544}
545
ee913f98 546/* Returns the 32-bit host byte order value in 'nla''s payload.
064af421
BP
547 *
548 * Asserts that 'nla''s payload is at least 4 bytes long. */
549uint32_t
d295e8e9 550nl_attr_get_u32(const struct nlattr *nla)
064af421
BP
551{
552 return NL_ATTR_GET_AS(nla, uint32_t);
553}
554
ee913f98 555/* Returns the 64-bit host byte order value in 'nla''s payload.
064af421
BP
556 *
557 * Asserts that 'nla''s payload is at least 8 bytes long. */
558uint64_t
d295e8e9 559nl_attr_get_u64(const struct nlattr *nla)
064af421 560{
34c7bb50
BP
561 const ovs_32aligned_u64 *x = nl_attr_get_unspec(nla, sizeof *x);
562 return get_32aligned_u64(x);
064af421
BP
563}
564
ee913f98
BP
565/* Returns the 16-bit network byte order value in 'nla''s payload.
566 *
567 * Asserts that 'nla''s payload is at least 2 bytes long. */
568ovs_be16
569nl_attr_get_be16(const struct nlattr *nla)
570{
571 return NL_ATTR_GET_AS(nla, ovs_be16);
572}
573
574/* Returns the 32-bit network byte order value in 'nla''s payload.
575 *
576 * Asserts that 'nla''s payload is at least 4 bytes long. */
577ovs_be32
578nl_attr_get_be32(const struct nlattr *nla)
579{
580 return NL_ATTR_GET_AS(nla, ovs_be32);
581}
582
583/* Returns the 64-bit network byte order value in 'nla''s payload.
584 *
585 * Asserts that 'nla''s payload is at least 8 bytes long. */
586ovs_be64
587nl_attr_get_be64(const struct nlattr *nla)
588{
34c7bb50
BP
589 const ovs_32aligned_be64 *x = nl_attr_get_unspec(nla, sizeof *x);
590 return get_32aligned_be64(x);
ee913f98
BP
591}
592
064af421
BP
593/* Returns the null-terminated string value in 'nla''s payload.
594 *
595 * Asserts that 'nla''s payload contains a null-terminated string. */
596const char *
d295e8e9 597nl_attr_get_string(const struct nlattr *nla)
064af421
BP
598{
599 assert(nla->nla_len > NLA_HDRLEN);
600 assert(memchr(nl_attr_get(nla), '\0', nla->nla_len - NLA_HDRLEN) != NULL);
601 return nl_attr_get(nla);
602}
603
0bc9407d 604/* Initializes 'nested' to the payload of 'nla'. */
25eeae6a
BP
605void
606nl_attr_get_nested(const struct nlattr *nla, struct ofpbuf *nested)
607{
0bc9407d 608 ofpbuf_use_const(nested, nl_attr_get(nla), nl_attr_get_size(nla));
25eeae6a
BP
609}
610
064af421
BP
611/* Default minimum and maximum payload sizes for each type of attribute. */
612static const size_t attr_len_range[][2] = {
613 [0 ... N_NL_ATTR_TYPES - 1] = { 0, SIZE_MAX },
614 [NL_A_U8] = { 1, 1 },
615 [NL_A_U16] = { 2, 2 },
616 [NL_A_U32] = { 4, 4 },
617 [NL_A_U64] = { 8, 8 },
618 [NL_A_STRING] = { 1, SIZE_MAX },
619 [NL_A_FLAG] = { 0, SIZE_MAX },
b4d73e97 620 [NL_A_NESTED] = { 0, SIZE_MAX },
064af421
BP
621};
622
623/* Parses the 'msg' starting at the given 'nla_offset' as a sequence of Netlink
624 * attributes. 'policy[i]', for 0 <= i < n_attrs, specifies how the attribute
625 * with nla_type == i is parsed; a pointer to attribute i is stored in
626 * attrs[i]. Returns true if successful, false on failure.
627 *
628 * If the Netlink attributes in 'msg' follow a Netlink header and a Generic
629 * Netlink header, then 'nla_offset' should be NLMSG_HDRLEN + GENL_HDRLEN. */
630bool
631nl_policy_parse(const struct ofpbuf *msg, size_t nla_offset,
632 const struct nl_policy policy[],
633 struct nlattr *attrs[], size_t n_attrs)
634{
506564b8 635 struct nlattr *nla;
064af421 636 size_t n_required;
506564b8 637 size_t left;
064af421
BP
638 size_t i;
639
640 n_required = 0;
641 for (i = 0; i < n_attrs; i++) {
642 attrs[i] = NULL;
643
644 assert(policy[i].type < N_NL_ATTR_TYPES);
645 if (policy[i].type != NL_A_NO_ATTR
646 && policy[i].type != NL_A_FLAG
647 && !policy[i].optional) {
648 n_required++;
649 }
650 }
651
506564b8 652 if (msg->size < nla_offset) {
064af421
BP
653 VLOG_DBG_RL(&rl, "missing headers in nl_policy_parse");
654 return false;
655 }
064af421 656
506564b8
BP
657 NL_ATTR_FOR_EACH (nla, left,
658 (struct nlattr *) ((char *) msg->data + nla_offset),
659 msg->size - nla_offset) {
660 size_t offset = (char*)nla - (char*)msg->data;
661 size_t len = nl_attr_get_size(nla);
662 uint16_t type = nl_attr_type(nla);
064af421 663 if (type < n_attrs && policy[type].type != NL_A_NO_ATTR) {
2a022368 664 const struct nl_policy *e = &policy[type];
064af421
BP
665 size_t min_len, max_len;
666
667 /* Validate length and content. */
2a022368
BP
668 min_len = e->min_len ? e->min_len : attr_len_range[e->type][0];
669 max_len = e->max_len ? e->max_len : attr_len_range[e->type][1];
064af421
BP
670 if (len < min_len || len > max_len) {
671 VLOG_DBG_RL(&rl, "%zu: attr %"PRIu16" length %zu not in "
672 "allowed range %zu...%zu",
673 offset, type, len, min_len, max_len);
674 return false;
675 }
2a022368 676 if (e->type == NL_A_STRING) {
064af421
BP
677 if (((char *) nla)[nla->nla_len - 1]) {
678 VLOG_DBG_RL(&rl, "%zu: attr %"PRIu16" lacks null at end",
679 offset, type);
680 return false;
681 }
682 if (memchr(nla + 1, '\0', len - 1) != NULL) {
683 VLOG_DBG_RL(&rl, "%zu: attr %"PRIu16" has bad length",
684 offset, type);
685 return false;
686 }
687 }
2a022368 688 if (!e->optional && attrs[type] == NULL) {
064af421
BP
689 assert(n_required > 0);
690 --n_required;
691 }
33cada0c
BP
692 if (attrs[type]) {
693 VLOG_DBG_RL(&rl, "%zu: duplicate attr %"PRIu16, offset, type);
694 }
064af421
BP
695 attrs[type] = nla;
696 } else {
697 /* Skip attribute type that we don't care about. */
698 }
506564b8
BP
699 }
700 if (left) {
701 VLOG_DBG_RL(&rl, "attributes followed by garbage");
702 return false;
064af421
BP
703 }
704 if (n_required) {
705 VLOG_DBG_RL(&rl, "%zu required attrs missing", n_required);
706 return false;
707 }
708 return true;
709}
25eeae6a
BP
710
711/* Parses the Netlink attributes within 'nla'. 'policy[i]', for 0 <= i <
712 * n_attrs, specifies how the attribute with nla_type == i is parsed; a pointer
713 * to attribute i is stored in attrs[i]. Returns true if successful, false on
714 * failure. */
715bool
716nl_parse_nested(const struct nlattr *nla, const struct nl_policy policy[],
717 struct nlattr *attrs[], size_t n_attrs)
718{
719 struct ofpbuf buf;
720
721 nl_attr_get_nested(nla, &buf);
722 return nl_policy_parse(&buf, 0, policy, attrs, n_attrs);
723}
b18fcf8e 724
0b6c119b 725const struct nlattr *
b18fcf8e
BP
726nl_attr_find__(const struct nlattr *attrs, size_t size, uint16_t type)
727{
728 const struct nlattr *nla;
729 size_t left;
730
731 NL_ATTR_FOR_EACH (nla, left, attrs, size) {
732 if (nl_attr_type (nla) == type) {
733 return nla;
734 }
735 }
736 return NULL;
737}
738
739/* Returns the first Netlink attribute within 'buf' with the specified 'type',
740 * skipping a header of 'hdr_len' bytes at the beginning of 'buf'.
741 *
742 * This function does not validate the attribute's length. */
743const struct nlattr *
744nl_attr_find(const struct ofpbuf *buf, size_t hdr_len, uint16_t type)
745{
746 const uint8_t *start = (const uint8_t *) buf->data + hdr_len;
747 return nl_attr_find__((const struct nlattr *) start, buf->size - hdr_len,
748 type);
749}
750
751/* Returns the first Netlink attribute within 'nla' with the specified
752 * 'type'.
753 *
754 * This function does not validate the attribute's length. */
755const struct nlattr *
756nl_attr_find_nested(const struct nlattr *nla, uint16_t type)
757{
758 return nl_attr_find__(nl_attr_get(nla), nl_attr_get_size(nla), type);
759}