6bb3537196a83ea12f76d54470dfeb98fd7238c0
[cascardo/ovs.git] / lib / netlink.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015 Nicira, Inc.
3  *
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:
7  *
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.
15  */
16
17 #include <config.h>
18 #include "netlink.h"
19 #include <errno.h>
20 #include <inttypes.h>
21 #include <sys/types.h>
22 #include <unistd.h>
23 #include "coverage.h"
24 #include "flow.h"
25 #include "netlink-protocol.h"
26 #include "ofpbuf.h"
27 #include "timeval.h"
28 #include "unaligned.h"
29 #include "openvswitch/vlog.h"
30
31 VLOG_DEFINE_THIS_MODULE(netlink);
32
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. */
36 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(60, 600);
37
38 /* Returns the nlmsghdr at the head of 'msg'.
39  *
40  * 'msg' must be at least as large as a nlmsghdr. */
41 struct nlmsghdr *
42 nl_msg_nlmsghdr(const struct ofpbuf *msg)
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. */
51 struct genlmsghdr *
52 nl_msg_genlmsghdr(const struct ofpbuf *msg)
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. */
62 bool
63 nl_msg_nlmsgerr(const struct ofpbuf *msg, int *errorp)
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 (%"PRIu32" bytes < %"PRIuSIZE")",
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. */
85 void
86 nl_msg_reserve(struct ofpbuf *msg, size_t size)
87 {
88     ofpbuf_prealloc_tailroom(msg, NLMSG_ALIGN(size));
89 }
90
91 /* Puts a nlmsghdr at the beginning of 'msg', which must be initially empty.
92  * Uses the given 'type' and 'flags'.  'expected_payload' should be
93  * an estimate of the number of payload bytes to be supplied; if the size of
94  * the payload is unknown a value of 0 is acceptable.
95  *
96  * 'type' is ordinarily an enumerated value specific to the Netlink protocol
97  * (e.g. RTM_NEWLINK, for NETLINK_ROUTE protocol).  For Generic Netlink, 'type'
98  * is the family number obtained via nl_lookup_genl_family().
99  *
100  * 'flags' is a bit-mask that indicates what kind of request is being made.  It
101  * is often NLM_F_REQUEST indicating that a request is being made, commonly
102  * or'd with NLM_F_ACK to request an acknowledgement.
103  *
104  * Sets the new nlmsghdr's nlmsg_len, nlmsg_seq, and nlmsg_pid fields to 0 for
105  * now.  Functions that send Netlink messages will fill these in just before
106  * sending the message.
107  *
108  * nl_msg_put_genlmsghdr() is more convenient for composing a Generic Netlink
109  * message. */
110 void
111 nl_msg_put_nlmsghdr(struct ofpbuf *msg,
112                     size_t expected_payload, uint32_t type, uint32_t flags)
113 {
114     struct nlmsghdr *nlmsghdr;
115
116     ovs_assert(msg->size == 0);
117
118     nl_msg_reserve(msg, NLMSG_HDRLEN + expected_payload);
119     nlmsghdr = nl_msg_put_uninit(msg, NLMSG_HDRLEN);
120     nlmsghdr->nlmsg_len = 0;
121     nlmsghdr->nlmsg_type = type;
122     nlmsghdr->nlmsg_flags = flags;
123     nlmsghdr->nlmsg_seq = 0;
124     nlmsghdr->nlmsg_pid = 0;
125 }
126
127 /* Puts a nlmsghdr and genlmsghdr at the beginning of 'msg', which must be
128  * initially empty.  'expected_payload' should be an estimate of the number of
129  * payload bytes to be supplied; if the size of the payload is unknown a value
130  * of 0 is acceptable.
131  *
132  * 'family' is the family number obtained via nl_lookup_genl_family().
133  *
134  * 'flags' is a bit-mask that indicates what kind of request is being made.  It
135  * is often NLM_F_REQUEST indicating that a request is being made, commonly
136  * or'd with NLM_F_ACK to request an acknowledgement.
137  *
138  * 'cmd' is an enumerated value specific to the Generic Netlink family
139  * (e.g. CTRL_CMD_NEWFAMILY for the GENL_ID_CTRL family).
140  *
141  * 'version' is a version number specific to the family and command (often 1).
142  *
143  * Sets the new nlmsghdr's nlmsg_pid field to 0 for now.  nl_sock_send() will
144  * fill it in just before sending the message.
145  *
146  * nl_msg_put_nlmsghdr() should be used to compose Netlink messages that are
147  * not Generic Netlink messages. */
148 void
149 nl_msg_put_genlmsghdr(struct ofpbuf *msg, size_t expected_payload,
150                       int family, uint32_t flags, uint8_t cmd, uint8_t version)
151 {
152     struct genlmsghdr *genlmsghdr;
153
154     nl_msg_put_nlmsghdr(msg, GENL_HDRLEN + expected_payload, family, flags);
155     ovs_assert(msg->size == NLMSG_HDRLEN);
156     genlmsghdr = nl_msg_put_uninit(msg, GENL_HDRLEN);
157     genlmsghdr->cmd = cmd;
158     genlmsghdr->version = version;
159     genlmsghdr->reserved = 0;
160 }
161
162 /* Appends the 'size' bytes of data in 'p', plus Netlink padding if needed, to
163  * the tail end of 'msg'.  Data in 'msg' is reallocated and copied if
164  * necessary. */
165 void
166 nl_msg_put(struct ofpbuf *msg, const void *data, size_t size)
167 {
168     memcpy(nl_msg_put_uninit(msg, size), data, size);
169 }
170
171 /* Appends 'size' bytes of data, plus Netlink padding if needed, to the tail
172  * end of 'msg', reallocating and copying its data if necessary.  Returns a
173  * pointer to the first byte of the new data, which is left uninitialized. */
174 void *
175 nl_msg_put_uninit(struct ofpbuf *msg, size_t size)
176 {
177     size_t pad = PAD_SIZE(size, NLMSG_ALIGNTO);
178     char *p = ofpbuf_put_uninit(msg, size + pad);
179     if (pad) {
180         memset(p + size, 0, pad);
181     }
182     return p;
183 }
184
185 /* Prepends the 'size' bytes of data in 'p', plus Netlink padding if needed, to
186  * the head end of 'msg'.  Data in 'msg' is reallocated and copied if
187  * necessary. */
188 void
189 nl_msg_push(struct ofpbuf *msg, const void *data, size_t size)
190 {
191     memcpy(nl_msg_push_uninit(msg, size), data, size);
192 }
193
194 /* Prepends 'size' bytes of data, plus Netlink padding if needed, to the head
195  * end of 'msg', reallocating and copying its data if necessary.  Returns a
196  * pointer to the first byte of the new data, which is left uninitialized. */
197 void *
198 nl_msg_push_uninit(struct ofpbuf *msg, size_t size)
199 {
200     size_t pad = PAD_SIZE(size, NLMSG_ALIGNTO);
201     char *p = ofpbuf_push_uninit(msg, size + pad);
202     if (pad) {
203         memset(p + size, 0, pad);
204     }
205     return p;
206 }
207
208 /* Appends a Netlink attribute of the given 'type' and room for 'size' bytes of
209  * data as its payload, plus Netlink padding if needed, to the tail end of
210  * 'msg', reallocating and copying its data if necessary.  Returns a pointer to
211  * the first byte of data in the attribute, which is left uninitialized. */
212 void *
213 nl_msg_put_unspec_uninit(struct ofpbuf *msg, uint16_t type, size_t size)
214 {
215     size_t total_size = NLA_HDRLEN + size;
216     struct nlattr* nla = nl_msg_put_uninit(msg, total_size);
217     ovs_assert(!nl_attr_oversized(size));
218     nla->nla_len = total_size;
219     nla->nla_type = type;
220     return nla + 1;
221 }
222
223 /* Appends a Netlink attribute of the given 'type' and room for 'size' bytes of
224  * data as its payload, plus Netlink padding if needed, to the tail end of
225  * 'msg', reallocating and copying its data if necessary.  Returns a pointer to
226  * the first byte of data in the attribute, which is zeroed. */
227 void *
228 nl_msg_put_unspec_zero(struct ofpbuf *msg, uint16_t type, size_t size)
229 {
230     void *data = nl_msg_put_unspec_uninit(msg, type, size);
231     memset(data, 0, size);
232     return data;
233 }
234
235 /* Appends a Netlink attribute of the given 'type' and the 'size' bytes of
236  * 'data' as its payload, to the tail end of 'msg', reallocating and copying
237  * its data if necessary.  Returns a pointer to the first byte of data in the
238  * attribute, which is left uninitialized. */
239 void
240 nl_msg_put_unspec(struct ofpbuf *msg, uint16_t type,
241                   const void *data, size_t size)
242 {
243     memcpy(nl_msg_put_unspec_uninit(msg, type, size), data, size);
244 }
245
246 /* Appends a Netlink attribute of the given 'type' and no payload to 'msg'.
247  * (Some Netlink protocols use the presence or absence of an attribute as a
248  * Boolean flag.) */
249 void
250 nl_msg_put_flag(struct ofpbuf *msg, uint16_t type)
251 {
252     nl_msg_put_unspec(msg, type, NULL, 0);
253 }
254
255 /* Appends a Netlink attribute of the given 'type' and the given 8-bit 'value'
256  * to 'msg'. */
257 void
258 nl_msg_put_u8(struct ofpbuf *msg, uint16_t type, uint8_t value)
259 {
260     nl_msg_put_unspec(msg, type, &value, sizeof value);
261 }
262
263 /* Appends a Netlink attribute of the given 'type' and the given 16-bit host
264  * byte order 'value' to 'msg'. */
265 void
266 nl_msg_put_u16(struct ofpbuf *msg, uint16_t type, uint16_t value)
267 {
268     nl_msg_put_unspec(msg, type, &value, sizeof value);
269 }
270
271 /* Appends a Netlink attribute of the given 'type' and the given 32-bit host
272  * byte order 'value' to 'msg'. */
273 void
274 nl_msg_put_u32(struct ofpbuf *msg, uint16_t type, uint32_t value)
275 {
276     nl_msg_put_unspec(msg, type, &value, sizeof value);
277 }
278
279 /* Appends a Netlink attribute of the given 'type' and the given 64-bit host
280  * byte order 'value' to 'msg'. */
281 void
282 nl_msg_put_u64(struct ofpbuf *msg, uint16_t type, uint64_t value)
283 {
284     nl_msg_put_unspec(msg, type, &value, sizeof value);
285 }
286
287 /* Appends a Netlink attribute of the given 'type' and the given 16-bit network
288  * byte order 'value' to 'msg'. */
289 void
290 nl_msg_put_be16(struct ofpbuf *msg, uint16_t type, ovs_be16 value)
291 {
292     nl_msg_put_unspec(msg, type, &value, sizeof value);
293 }
294
295 /* Appends a Netlink attribute of the given 'type' and the given 32-bit network
296  * byte order 'value' to 'msg'. */
297 void
298 nl_msg_put_be32(struct ofpbuf *msg, uint16_t type, ovs_be32 value)
299 {
300     nl_msg_put_unspec(msg, type, &value, sizeof value);
301 }
302
303 /* Appends a Netlink attribute of the given 'type' and the given 64-bit network
304  * byte order 'value' to 'msg'. */
305 void
306 nl_msg_put_be64(struct ofpbuf *msg, uint16_t type, ovs_be64 value)
307 {
308     nl_msg_put_unspec(msg, type, &value, sizeof value);
309 }
310
311 /* Appends a Netlink attribute of the given 'type' and the given IPv6
312  * address order 'value' to 'msg'. */
313 void
314 nl_msg_put_in6_addr(struct ofpbuf *msg, uint16_t type,
315                     const struct in6_addr *value)
316 {
317     nl_msg_put_unspec(msg, type, value, sizeof *value);
318 }
319
320 /* Appends a Netlink attribute of the given 'type' and the given odp_port_t
321  * 'value' to 'msg'. */
322 void
323 nl_msg_put_odp_port(struct ofpbuf *msg, uint16_t type, odp_port_t value)
324 {
325     nl_msg_put_u32(msg, type, odp_to_u32(value));
326 }
327
328
329 /* Appends a Netlink attribute of the given 'type' and the given
330  * null-terminated string 'value' to 'msg'. */
331 void
332 nl_msg_put_string(struct ofpbuf *msg, uint16_t type, const char *value)
333 {
334     nl_msg_put_unspec(msg, type, value, strlen(value) + 1);
335 }
336
337 /* Prepends a Netlink attribute of the given 'type' and room for 'size' bytes
338  * of data as its payload, plus Netlink padding if needed, to the head end of
339  * 'msg', reallocating and copying its data if necessary.  Returns a pointer to
340  * the first byte of data in the attribute, which is left uninitialized. */
341 void *
342 nl_msg_push_unspec_uninit(struct ofpbuf *msg, uint16_t type, size_t size)
343 {
344     size_t total_size = NLA_HDRLEN + size;
345     struct nlattr* nla = nl_msg_push_uninit(msg, total_size);
346     ovs_assert(!nl_attr_oversized(size));
347     nla->nla_len = total_size;
348     nla->nla_type = type;
349     return nla + 1;
350 }
351
352 /* Prepends a Netlink attribute of the given 'type' and the 'size' bytes of
353  * 'data' as its payload, to the head end of 'msg', reallocating and copying
354  * its data if necessary.  Returns a pointer to the first byte of data in the
355  * attribute, which is left uninitialized. */
356 void
357 nl_msg_push_unspec(struct ofpbuf *msg, uint16_t type,
358                   const void *data, size_t size)
359 {
360     memcpy(nl_msg_push_unspec_uninit(msg, type, size), data, size);
361 }
362
363 /* Prepends a Netlink attribute of the given 'type' and no payload to 'msg'.
364  * (Some Netlink protocols use the presence or absence of an attribute as a
365  * Boolean flag.) */
366 void
367 nl_msg_push_flag(struct ofpbuf *msg, uint16_t type)
368 {
369     nl_msg_push_unspec(msg, type, NULL, 0);
370 }
371
372 /* Prepends a Netlink attribute of the given 'type' and the given 8-bit 'value'
373  * to 'msg'. */
374 void
375 nl_msg_push_u8(struct ofpbuf *msg, uint16_t type, uint8_t value)
376 {
377     nl_msg_push_unspec(msg, type, &value, sizeof value);
378 }
379
380 /* Prepends a Netlink attribute of the given 'type' and the given 16-bit host
381  * byte order 'value' to 'msg'. */
382 void
383 nl_msg_push_u16(struct ofpbuf *msg, uint16_t type, uint16_t value)
384 {
385     nl_msg_push_unspec(msg, type, &value, sizeof value);
386 }
387
388 /* Prepends a Netlink attribute of the given 'type' and the given 32-bit host
389  * byte order 'value' to 'msg'. */
390 void
391 nl_msg_push_u32(struct ofpbuf *msg, uint16_t type, uint32_t value)
392 {
393     nl_msg_push_unspec(msg, type, &value, sizeof value);
394 }
395
396 /* Prepends a Netlink attribute of the given 'type' and the given 64-bit host
397  * byte order 'value' to 'msg'. */
398 void
399 nl_msg_push_u64(struct ofpbuf *msg, uint16_t type, uint64_t value)
400 {
401     nl_msg_push_unspec(msg, type, &value, sizeof value);
402 }
403
404 /* Prepends a Netlink attribute of the given 'type' and the given 16-bit
405  * network byte order 'value' to 'msg'. */
406 void
407 nl_msg_push_be16(struct ofpbuf *msg, uint16_t type, ovs_be16 value)
408 {
409     nl_msg_push_unspec(msg, type, &value, sizeof value);
410 }
411
412 /* Prepends a Netlink attribute of the given 'type' and the given 32-bit
413  * network byte order 'value' to 'msg'. */
414 void
415 nl_msg_push_be32(struct ofpbuf *msg, uint16_t type, ovs_be32 value)
416 {
417     nl_msg_push_unspec(msg, type, &value, sizeof value);
418 }
419
420 /* Prepends a Netlink attribute of the given 'type' and the given 64-bit
421  * network byte order 'value' to 'msg'. */
422 void
423 nl_msg_push_be64(struct ofpbuf *msg, uint16_t type, ovs_be64 value)
424 {
425     nl_msg_push_unspec(msg, type, &value, sizeof value);
426 }
427
428 /* Prepends a Netlink attribute of the given 'type' and the given
429  * null-terminated string 'value' to 'msg'. */
430 void
431 nl_msg_push_string(struct ofpbuf *msg, uint16_t type, const char *value)
432 {
433     nl_msg_push_unspec(msg, type, value, strlen(value) + 1);
434 }
435
436 /* Adds the header for nested Netlink attributes to 'msg', with the specified
437  * 'type', and returns the header's offset within 'msg'.  The caller should add
438  * the content for the nested Netlink attribute to 'msg' (e.g. using the other
439  * nl_msg_*() functions), and then pass the returned offset to
440  * nl_msg_end_nested() to finish up the nested attributes. */
441 size_t
442 nl_msg_start_nested(struct ofpbuf *msg, uint16_t type)
443 {
444     size_t offset = msg->size;
445     nl_msg_put_unspec(msg, type, NULL, 0);
446     return offset;
447 }
448
449 /* Finalizes a nested Netlink attribute in 'msg'.  'offset' should be the value
450  * returned by nl_msg_start_nested(). */
451 void
452 nl_msg_end_nested(struct ofpbuf *msg, size_t offset)
453 {
454     struct nlattr *attr = ofpbuf_at_assert(msg, offset, sizeof *attr);
455     attr->nla_len = msg->size - offset;
456 }
457
458 /* Appends a nested Netlink attribute of the given 'type', with the 'size'
459  * bytes of content starting at 'data', to 'msg'. */
460 void
461 nl_msg_put_nested(struct ofpbuf *msg,
462                   uint16_t type, const void *data, size_t size)
463 {
464     size_t offset = nl_msg_start_nested(msg, type);
465     nl_msg_put(msg, data, size);
466     nl_msg_end_nested(msg, offset);
467 }
468
469 /* If 'buffer' begins with a valid "struct nlmsghdr", pulls the header and its
470  * payload off 'buffer', stores header and payload in 'msg->data' and
471  * 'msg->size', and returns a pointer to the header.
472  *
473  * If 'buffer' does not begin with a "struct nlmsghdr" or begins with one that
474  * is invalid, returns NULL and clears 'buffer' and 'msg'. */
475 struct nlmsghdr *
476 nl_msg_next(struct ofpbuf *buffer, struct ofpbuf *msg)
477 {
478     if (buffer->size >= sizeof(struct nlmsghdr)) {
479         struct nlmsghdr *nlmsghdr = nl_msg_nlmsghdr(buffer);
480         size_t len = nlmsghdr->nlmsg_len;
481         if (len >= sizeof *nlmsghdr && len <= buffer->size) {
482             ofpbuf_use_const(msg, nlmsghdr, len);
483             ofpbuf_pull(buffer, len);
484             return nlmsghdr;
485         }
486     }
487
488     ofpbuf_clear(buffer);
489     msg->data = NULL;
490     msg->size = 0;
491     return NULL;
492 }
493
494 /* Returns true if a Netlink attribute with a payload that is 'payload_size'
495  * bytes long would be oversized, that is, if it's not possible to create an
496  * nlattr of that size because its size wouldn't fit in the 16-bit nla_len
497  * field. */
498 bool
499 nl_attr_oversized(size_t payload_size)
500 {
501     return payload_size > UINT16_MAX - NLA_HDRLEN;
502 }
503 \f
504 /* Attributes. */
505
506 /* Returns the bits of 'nla->nla_type' that are significant for determining its
507  * type. */
508 int
509 nl_attr_type(const struct nlattr *nla)
510 {
511     return nla->nla_type & NLA_TYPE_MASK;
512 }
513
514 /* Returns the first byte in the payload of attribute 'nla'. */
515 const void *
516 nl_attr_get(const struct nlattr *nla)
517 {
518     ovs_assert(nla->nla_len >= NLA_HDRLEN);
519     return nla + 1;
520 }
521
522 /* Returns the number of bytes in the payload of attribute 'nla'. */
523 size_t
524 nl_attr_get_size(const struct nlattr *nla)
525 {
526     ovs_assert(nla->nla_len >= NLA_HDRLEN);
527     return nla->nla_len - NLA_HDRLEN;
528 }
529
530 /* Asserts that 'nla''s payload is at least 'size' bytes long, and returns the
531  * first byte of the payload. */
532 const void *
533 nl_attr_get_unspec(const struct nlattr *nla, size_t size)
534 {
535     ovs_assert(nla->nla_len >= NLA_HDRLEN + size);
536     return nla + 1;
537 }
538
539 /* Returns true if 'nla' is nonnull.  (Some Netlink protocols use the presence
540  * or absence of an attribute as a Boolean flag.) */
541 bool
542 nl_attr_get_flag(const struct nlattr *nla)
543 {
544     return nla != NULL;
545 }
546
547 #define NL_ATTR_GET_AS(NLA, TYPE) \
548         (*(TYPE*) nl_attr_get_unspec(nla, sizeof(TYPE)))
549
550 /* Returns the 8-bit value in 'nla''s payload.
551  *
552  * Asserts that 'nla''s payload is at least 1 byte long. */
553 uint8_t
554 nl_attr_get_u8(const struct nlattr *nla)
555 {
556     return NL_ATTR_GET_AS(nla, uint8_t);
557 }
558
559 /* Returns the 16-bit host byte order value in 'nla''s payload.
560  *
561  * Asserts that 'nla''s payload is at least 2 bytes long. */
562 uint16_t
563 nl_attr_get_u16(const struct nlattr *nla)
564 {
565     return NL_ATTR_GET_AS(nla, uint16_t);
566 }
567
568 /* Returns the 32-bit host byte order value in 'nla''s payload.
569  *
570  * Asserts that 'nla''s payload is at least 4 bytes long. */
571 uint32_t
572 nl_attr_get_u32(const struct nlattr *nla)
573 {
574     return NL_ATTR_GET_AS(nla, uint32_t);
575 }
576
577 /* Returns the 64-bit host byte order value in 'nla''s payload.
578  *
579  * Asserts that 'nla''s payload is at least 8 bytes long. */
580 uint64_t
581 nl_attr_get_u64(const struct nlattr *nla)
582 {
583     const ovs_32aligned_u64 *x = nl_attr_get_unspec(nla, sizeof *x);
584     return get_32aligned_u64(x);
585 }
586
587 /* Returns the 16-bit network byte order value in 'nla''s payload.
588  *
589  * Asserts that 'nla''s payload is at least 2 bytes long. */
590 ovs_be16
591 nl_attr_get_be16(const struct nlattr *nla)
592 {
593     return NL_ATTR_GET_AS(nla, ovs_be16);
594 }
595
596 /* Returns the 32-bit network byte order value in 'nla''s payload.
597  *
598  * Asserts that 'nla''s payload is at least 4 bytes long. */
599 ovs_be32
600 nl_attr_get_be32(const struct nlattr *nla)
601 {
602     return NL_ATTR_GET_AS(nla, ovs_be32);
603 }
604
605 /* Returns the 64-bit network byte order value in 'nla''s payload.
606  *
607  * Asserts that 'nla''s payload is at least 8 bytes long. */
608 ovs_be64
609 nl_attr_get_be64(const struct nlattr *nla)
610 {
611     const ovs_32aligned_be64 *x = nl_attr_get_unspec(nla, sizeof *x);
612     return get_32aligned_be64(x);
613 }
614
615 /* Returns the IPv6 address value in 'nla''s payload.
616  *
617  * Asserts that 'nla''s payload is at least 16 bytes long. */
618 struct in6_addr
619 nl_attr_get_in6_addr(const struct nlattr *nla)
620 {
621     return NL_ATTR_GET_AS(nla, struct in6_addr);
622 }
623
624 /* Returns the 32-bit odp_port_t value in 'nla''s payload.
625  *
626  * Asserts that 'nla''s payload is at least 4 bytes long. */
627 odp_port_t
628 nl_attr_get_odp_port(const struct nlattr *nla)
629 {
630     return u32_to_odp(nl_attr_get_u32(nla));
631 }
632
633 /* Returns the null-terminated string value in 'nla''s payload.
634  *
635  * Asserts that 'nla''s payload contains a null-terminated string. */
636 const char *
637 nl_attr_get_string(const struct nlattr *nla)
638 {
639     ovs_assert(nla->nla_len > NLA_HDRLEN);
640     ovs_assert(memchr(nl_attr_get(nla), '\0', nla->nla_len - NLA_HDRLEN));
641     return nl_attr_get(nla);
642 }
643
644 /* Initializes 'nested' to the payload of 'nla'. */
645 void
646 nl_attr_get_nested(const struct nlattr *nla, struct ofpbuf *nested)
647 {
648     ofpbuf_use_const(nested, nl_attr_get(nla), nl_attr_get_size(nla));
649 }
650
651 /* Default minimum payload size for each type of attribute. */
652 static size_t
653 min_attr_len(enum nl_attr_type type)
654 {
655     switch (type) {
656     case NL_A_NO_ATTR: return 0;
657     case NL_A_UNSPEC: return 0;
658     case NL_A_U8: return 1;
659     case NL_A_U16: return 2;
660     case NL_A_U32: return 4;
661     case NL_A_U64: return 8;
662     case NL_A_STRING: return 1;
663     case NL_A_FLAG: return 0;
664     case NL_A_IPV6: return 16;
665     case NL_A_NESTED: return 0;
666     case N_NL_ATTR_TYPES: default: OVS_NOT_REACHED();
667     }
668 }
669
670 /* Default maximum payload size for each type of attribute. */
671 static size_t
672 max_attr_len(enum nl_attr_type type)
673 {
674     switch (type) {
675     case NL_A_NO_ATTR: return SIZE_MAX;
676     case NL_A_UNSPEC: return SIZE_MAX;
677     case NL_A_U8: return 1;
678     case NL_A_U16: return 2;
679     case NL_A_U32: return 4;
680     case NL_A_U64: return 8;
681     case NL_A_STRING: return SIZE_MAX;
682     case NL_A_FLAG: return SIZE_MAX;
683     case NL_A_IPV6: return 16;
684     case NL_A_NESTED: return SIZE_MAX;
685     case N_NL_ATTR_TYPES: default: OVS_NOT_REACHED();
686     }
687 }
688
689 bool
690 nl_attr_validate(const struct nlattr *nla, const struct nl_policy *policy)
691 {
692     uint16_t type = nl_attr_type(nla);
693     size_t min_len;
694     size_t max_len;
695     size_t len;
696
697     if (policy->type == NL_A_NO_ATTR) {
698         return true;
699     }
700
701     /* Figure out min and max length. */
702     min_len = policy->min_len;
703     if (!min_len) {
704         min_len = min_attr_len(policy->type);
705     }
706     max_len = policy->max_len;
707     if (!max_len) {
708         max_len = max_attr_len(policy->type);
709     }
710
711     /* Verify length. */
712     len = nl_attr_get_size(nla);
713     if (len < min_len || len > max_len) {
714         VLOG_DBG_RL(&rl, "attr %"PRIu16" length %"PRIuSIZE" not in "
715                     "allowed range %"PRIuSIZE"...%"PRIuSIZE, type, len, min_len, max_len);
716         return false;
717     }
718
719     /* Strings must be null terminated and must not have embedded nulls. */
720     if (policy->type == NL_A_STRING) {
721         if (((char *) nla)[nla->nla_len - 1]) {
722             VLOG_DBG_RL(&rl, "attr %"PRIu16" lacks null at end", type);
723             return false;
724         }
725         if (memchr(nla + 1, '\0', len - 1) != NULL) {
726             VLOG_DBG_RL(&rl, "attr %"PRIu16" has bad length", type);
727             return false;
728         }
729     }
730
731     return true;
732 }
733
734 /* Parses the 'msg' starting at the given 'nla_offset' as a sequence of Netlink
735  * attributes.  'policy[i]', for 0 <= i < n_attrs, specifies how the attribute
736  * with nla_type == i is parsed; a pointer to attribute i is stored in
737  * attrs[i].  Returns true if successful, false on failure.
738  *
739  * If the Netlink attributes in 'msg' follow a Netlink header and a Generic
740  * Netlink header, then 'nla_offset' should be NLMSG_HDRLEN + GENL_HDRLEN. */
741 bool
742 nl_policy_parse(const struct ofpbuf *msg, size_t nla_offset,
743                 const struct nl_policy policy[],
744                 struct nlattr *attrs[], size_t n_attrs)
745 {
746     struct nlattr *nla;
747     size_t left;
748     size_t i;
749
750     memset(attrs, 0, n_attrs * sizeof *attrs);
751
752     if (msg->size < nla_offset) {
753         VLOG_DBG_RL(&rl, "missing headers in nl_policy_parse");
754         return false;
755     }
756
757     NL_ATTR_FOR_EACH (nla, left, ofpbuf_at(msg, nla_offset, 0),
758                       msg->size - nla_offset)
759     {
760         uint16_t type = nl_attr_type(nla);
761         if (type < n_attrs && policy[type].type != NL_A_NO_ATTR) {
762             const struct nl_policy *e = &policy[type];
763             if (!nl_attr_validate(nla, e)) {
764                 return false;
765             }
766             if (attrs[type]) {
767                 VLOG_DBG_RL(&rl, "duplicate attr %"PRIu16, type);
768             }
769             attrs[type] = nla;
770         }
771     }
772     if (left) {
773         VLOG_DBG_RL(&rl, "attributes followed by garbage");
774         return false;
775     }
776
777     for (i = 0; i < n_attrs; i++) {
778         const struct nl_policy *e = &policy[i];
779         if (!e->optional && e->type != NL_A_NO_ATTR && !attrs[i]) {
780             VLOG_DBG_RL(&rl, "required attr %"PRIuSIZE" missing", i);
781             return false;
782         }
783     }
784     return true;
785 }
786
787 /* Parses the Netlink attributes within 'nla'.  'policy[i]', for 0 <= i <
788  * n_attrs, specifies how the attribute with nla_type == i is parsed; a pointer
789  * to attribute i is stored in attrs[i].  Returns true if successful, false on
790  * failure. */
791 bool
792 nl_parse_nested(const struct nlattr *nla, const struct nl_policy policy[],
793                 struct nlattr *attrs[], size_t n_attrs)
794 {
795     struct ofpbuf buf;
796
797     nl_attr_get_nested(nla, &buf);
798     return nl_policy_parse(&buf, 0, policy, attrs, n_attrs);
799 }
800
801 const struct nlattr *
802 nl_attr_find__(const struct nlattr *attrs, size_t size, uint16_t type)
803 {
804     const struct nlattr *nla;
805     size_t left;
806
807     NL_ATTR_FOR_EACH (nla, left, attrs, size) {
808         if (nl_attr_type(nla) == type) {
809             return nla;
810         }
811     }
812     return NULL;
813 }
814
815 /* Returns the first Netlink attribute within 'buf' with the specified 'type',
816  * skipping a header of 'hdr_len' bytes at the beginning of 'buf'.
817  *
818  * This function does not validate the attribute's length. */
819 const struct nlattr *
820 nl_attr_find(const struct ofpbuf *buf, size_t hdr_len, uint16_t type)
821 {
822     return nl_attr_find__(ofpbuf_at(buf, hdr_len, 0), buf->size - hdr_len,
823                           type);
824 }
825
826 /* Returns the first Netlink attribute within 'nla' with the specified
827  * 'type'.
828  *
829  * This function does not validate the attribute's length. */
830 const struct nlattr *
831 nl_attr_find_nested(const struct nlattr *nla, uint16_t type)
832 {
833     return nl_attr_find__(nl_attr_get(nla), nl_attr_get_size(nla), type);
834 }