2009-07-08 13:19:16 -07:00
|
|
|
|
/*
|
2012-05-02 15:21:36 -07:00
|
|
|
|
* Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at:
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
2009-06-15 15:11:30 -07:00
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#include "netlink.h"
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <inttypes.h>
|
2010-12-10 09:51:03 -08:00
|
|
|
|
#include <sys/types.h>
|
2009-07-08 13:19:16 -07:00
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include "coverage.h"
|
|
|
|
|
#include "netlink-protocol.h"
|
|
|
|
|
#include "ofpbuf.h"
|
|
|
|
|
#include "timeval.h"
|
2011-01-18 11:51:46 -08:00
|
|
|
|
#include "unaligned.h"
|
2009-07-08 13:19:16 -07:00
|
|
|
|
#include "vlog.h"
|
2010-07-16 11:02:49 -07:00
|
|
|
|
|
2010-10-19 14:47:01 -07:00
|
|
|
|
VLOG_DEFINE_THIS_MODULE(netlink);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
|
|
|
|
/* A single (bad) Netlink message can in theory dump out many, many log
|
|
|
|
|
* messages, so the burst size is set quite high here to avoid missing useful
|
|
|
|
|
* information. Also, at high logging levels we log *all* Netlink messages. */
|
|
|
|
|
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(60, 600);
|
|
|
|
|
|
|
|
|
|
/* Returns the nlmsghdr at the head of 'msg'.
|
|
|
|
|
*
|
|
|
|
|
* 'msg' must be at least as large as a nlmsghdr. */
|
|
|
|
|
struct nlmsghdr *
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_msg_nlmsghdr(const struct ofpbuf *msg)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
return ofpbuf_at_assert(msg, 0, NLMSG_HDRLEN);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the genlmsghdr just past 'msg''s nlmsghdr.
|
|
|
|
|
*
|
|
|
|
|
* Returns a null pointer if 'msg' is not large enough to contain an nlmsghdr
|
|
|
|
|
* and a genlmsghdr. */
|
|
|
|
|
struct genlmsghdr *
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_msg_genlmsghdr(const struct ofpbuf *msg)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
return ofpbuf_at(msg, NLMSG_HDRLEN, GENL_HDRLEN);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If 'buffer' is a NLMSG_ERROR message, stores 0 in '*errorp' if it is an ACK
|
|
|
|
|
* message, otherwise a positive errno value, and returns true. If 'buffer' is
|
|
|
|
|
* not an NLMSG_ERROR message, returns false.
|
|
|
|
|
*
|
|
|
|
|
* 'msg' must be at least as large as a nlmsghdr. */
|
|
|
|
|
bool
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_msg_nlmsgerr(const struct ofpbuf *msg, int *errorp)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
if (nl_msg_nlmsghdr(msg)->nlmsg_type == NLMSG_ERROR) {
|
|
|
|
|
struct nlmsgerr *err = ofpbuf_at(msg, NLMSG_HDRLEN, sizeof *err);
|
|
|
|
|
int code = EPROTO;
|
|
|
|
|
if (!err) {
|
|
|
|
|
VLOG_ERR_RL(&rl, "received invalid nlmsgerr (%zd bytes < %zd)",
|
|
|
|
|
msg->size, NLMSG_HDRLEN + sizeof *err);
|
|
|
|
|
} else if (err->error <= 0 && err->error > INT_MIN) {
|
|
|
|
|
code = -err->error;
|
|
|
|
|
}
|
|
|
|
|
if (errorp) {
|
|
|
|
|
*errorp = code;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Ensures that 'b' has room for at least 'size' bytes plus netlink padding at
|
|
|
|
|
* its tail end, reallocating and copying its data if necessary. */
|
|
|
|
|
void
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_msg_reserve(struct ofpbuf *msg, size_t size)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
ofpbuf_prealloc_tailroom(msg, NLMSG_ALIGN(size));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Puts a nlmsghdr at the beginning of 'msg', which must be initially empty.
|
2010-06-03 10:22:31 -07:00
|
|
|
|
* Uses the given 'type' and 'flags'. 'expected_payload' should be
|
2009-07-08 13:19:16 -07:00
|
|
|
|
* an estimate of the number of payload bytes to be supplied; if the size of
|
|
|
|
|
* the payload is unknown a value of 0 is acceptable.
|
|
|
|
|
*
|
|
|
|
|
* 'type' is ordinarily an enumerated value specific to the Netlink protocol
|
|
|
|
|
* (e.g. RTM_NEWLINK, for NETLINK_ROUTE protocol). For Generic Netlink, 'type'
|
|
|
|
|
* is the family number obtained via nl_lookup_genl_family().
|
|
|
|
|
*
|
|
|
|
|
* 'flags' is a bit-mask that indicates what kind of request is being made. It
|
|
|
|
|
* is often NLM_F_REQUEST indicating that a request is being made, commonly
|
|
|
|
|
* or'd with NLM_F_ACK to request an acknowledgement.
|
|
|
|
|
*
|
netlink: Postpone choosing sequence numbers until send time.
Choosing sequence numbers at time of creating a packet means that
nl_sock_transact_multiple() has to search for the sequence number
of a reply, because the sequence numbers of the requests aren't
necessarily sequential. This commit makes it possible to avoid
the search, by deferring choice of sequence numbers until the
time that we send the packets. It doesn't actually modify
nl_sock_transact_multiple(), which will happen in a later commit.
Previously, I was concerned about a theoretical race condition
described in a comment in the old versino of this code:
This implementation uses sequence numbers that are unique
process-wide, to avoid a hypothetical race: send request, close
socket, open new socket that reuses the old socket's PID value,
send request on new socket, receive reply from kernel to old
socket but with same PID and sequence number. (This race could be
avoided other ways, e.g. by preventing PIDs from being quickly
reused).
However, I no longer believe that this can be a real problem,
because Netlink operates synchronously. The reply to a request
will always arrive before the socket can be closed and a new
socket opened with the old socket's PID.
Signed-off-by: Ben Pfaff <blp@nicira.com>
2012-04-16 16:01:01 -07:00
|
|
|
|
* Sets the new nlmsghdr's nlmsg_len, nlmsg_seq, and nlmsg_pid fields to 0 for
|
|
|
|
|
* now. Functions that send Netlink messages will fill these in just before
|
|
|
|
|
* sending the message.
|
2010-06-03 10:22:31 -07:00
|
|
|
|
*
|
|
|
|
|
* nl_msg_put_genlmsghdr() is more convenient for composing a Generic Netlink
|
2009-07-08 13:19:16 -07:00
|
|
|
|
* message. */
|
|
|
|
|
void
|
2010-06-03 10:22:31 -07:00
|
|
|
|
nl_msg_put_nlmsghdr(struct ofpbuf *msg,
|
2010-08-30 00:24:53 -07:00
|
|
|
|
size_t expected_payload, uint32_t type, uint32_t flags)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
struct nlmsghdr *nlmsghdr;
|
|
|
|
|
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(msg->size == 0);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
|
|
|
|
nl_msg_reserve(msg, NLMSG_HDRLEN + expected_payload);
|
|
|
|
|
nlmsghdr = nl_msg_put_uninit(msg, NLMSG_HDRLEN);
|
|
|
|
|
nlmsghdr->nlmsg_len = 0;
|
|
|
|
|
nlmsghdr->nlmsg_type = type;
|
|
|
|
|
nlmsghdr->nlmsg_flags = flags;
|
netlink: Postpone choosing sequence numbers until send time.
Choosing sequence numbers at time of creating a packet means that
nl_sock_transact_multiple() has to search for the sequence number
of a reply, because the sequence numbers of the requests aren't
necessarily sequential. This commit makes it possible to avoid
the search, by deferring choice of sequence numbers until the
time that we send the packets. It doesn't actually modify
nl_sock_transact_multiple(), which will happen in a later commit.
Previously, I was concerned about a theoretical race condition
described in a comment in the old versino of this code:
This implementation uses sequence numbers that are unique
process-wide, to avoid a hypothetical race: send request, close
socket, open new socket that reuses the old socket's PID value,
send request on new socket, receive reply from kernel to old
socket but with same PID and sequence number. (This race could be
avoided other ways, e.g. by preventing PIDs from being quickly
reused).
However, I no longer believe that this can be a real problem,
because Netlink operates synchronously. The reply to a request
will always arrive before the socket can be closed and a new
socket opened with the old socket's PID.
Signed-off-by: Ben Pfaff <blp@nicira.com>
2012-04-16 16:01:01 -07:00
|
|
|
|
nlmsghdr->nlmsg_seq = 0;
|
2010-06-03 10:22:31 -07:00
|
|
|
|
nlmsghdr->nlmsg_pid = 0;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Puts a nlmsghdr and genlmsghdr at the beginning of 'msg', which must be
|
2010-06-03 10:22:31 -07:00
|
|
|
|
* initially empty. 'expected_payload' should be an estimate of the number of
|
|
|
|
|
* payload bytes to be supplied; if the size of the payload is unknown a value
|
|
|
|
|
* of 0 is acceptable.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
|
|
|
|
* 'family' is the family number obtained via nl_lookup_genl_family().
|
|
|
|
|
*
|
|
|
|
|
* 'flags' is a bit-mask that indicates what kind of request is being made. It
|
|
|
|
|
* is often NLM_F_REQUEST indicating that a request is being made, commonly
|
|
|
|
|
* or'd with NLM_F_ACK to request an acknowledgement.
|
|
|
|
|
*
|
|
|
|
|
* 'cmd' is an enumerated value specific to the Generic Netlink family
|
|
|
|
|
* (e.g. CTRL_CMD_NEWFAMILY for the GENL_ID_CTRL family).
|
|
|
|
|
*
|
|
|
|
|
* 'version' is a version number specific to the family and command (often 1).
|
|
|
|
|
*
|
2010-06-03 10:22:31 -07:00
|
|
|
|
* Sets the new nlmsghdr's nlmsg_pid field to 0 for now. nl_sock_send() will
|
|
|
|
|
* fill it in just before sending the message.
|
|
|
|
|
*
|
|
|
|
|
* nl_msg_put_nlmsghdr() should be used to compose Netlink messages that are
|
|
|
|
|
* not Generic Netlink messages. */
|
2009-07-08 13:19:16 -07:00
|
|
|
|
void
|
2010-06-03 10:22:31 -07:00
|
|
|
|
nl_msg_put_genlmsghdr(struct ofpbuf *msg, size_t expected_payload,
|
|
|
|
|
int family, uint32_t flags, uint8_t cmd, uint8_t version)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
struct genlmsghdr *genlmsghdr;
|
|
|
|
|
|
2010-06-03 10:22:31 -07:00
|
|
|
|
nl_msg_put_nlmsghdr(msg, GENL_HDRLEN + expected_payload, family, flags);
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(msg->size == NLMSG_HDRLEN);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
genlmsghdr = nl_msg_put_uninit(msg, GENL_HDRLEN);
|
|
|
|
|
genlmsghdr->cmd = cmd;
|
|
|
|
|
genlmsghdr->version = version;
|
|
|
|
|
genlmsghdr->reserved = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Appends the 'size' bytes of data in 'p', plus Netlink padding if needed, to
|
|
|
|
|
* the tail end of 'msg'. Data in 'msg' is reallocated and copied if
|
|
|
|
|
* necessary. */
|
|
|
|
|
void
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_msg_put(struct ofpbuf *msg, const void *data, size_t size)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
memcpy(nl_msg_put_uninit(msg, size), data, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Appends 'size' bytes of data, plus Netlink padding if needed, to the tail
|
|
|
|
|
* end of 'msg', reallocating and copying its data if necessary. Returns a
|
|
|
|
|
* pointer to the first byte of the new data, which is left uninitialized. */
|
|
|
|
|
void *
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_msg_put_uninit(struct ofpbuf *msg, size_t size)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
size_t pad = NLMSG_ALIGN(size) - size;
|
|
|
|
|
char *p = ofpbuf_put_uninit(msg, size + pad);
|
|
|
|
|
if (pad) {
|
2010-08-30 00:24:53 -07:00
|
|
|
|
memset(p + size, 0, pad);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-26 12:57:41 -07:00
|
|
|
|
/* Prepends the 'size' bytes of data in 'p', plus Netlink padding if needed, to
|
|
|
|
|
* the head end of 'msg'. Data in 'msg' is reallocated and copied if
|
|
|
|
|
* necessary. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_push(struct ofpbuf *msg, const void *data, size_t size)
|
|
|
|
|
{
|
|
|
|
|
memcpy(nl_msg_push_uninit(msg, size), data, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepends 'size' bytes of data, plus Netlink padding if needed, to the head
|
|
|
|
|
* end of 'msg', reallocating and copying its data if necessary. Returns a
|
|
|
|
|
* pointer to the first byte of the new data, which is left uninitialized. */
|
|
|
|
|
void *
|
|
|
|
|
nl_msg_push_uninit(struct ofpbuf *msg, size_t size)
|
|
|
|
|
{
|
|
|
|
|
size_t pad = NLMSG_ALIGN(size) - size;
|
|
|
|
|
char *p = ofpbuf_push_uninit(msg, size + pad);
|
|
|
|
|
if (pad) {
|
|
|
|
|
memset(p + size, 0, pad);
|
|
|
|
|
}
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
/* Appends a Netlink attribute of the given 'type' and room for 'size' bytes of
|
|
|
|
|
* data as its payload, plus Netlink padding if needed, to the tail end of
|
|
|
|
|
* 'msg', reallocating and copying its data if necessary. Returns a pointer to
|
|
|
|
|
* the first byte of data in the attribute, which is left uninitialized. */
|
|
|
|
|
void *
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_msg_put_unspec_uninit(struct ofpbuf *msg, uint16_t type, size_t size)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
size_t total_size = NLA_HDRLEN + size;
|
|
|
|
|
struct nlattr* nla = nl_msg_put_uninit(msg, total_size);
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(NLA_ALIGN(total_size) <= UINT16_MAX);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
nla->nla_len = total_size;
|
|
|
|
|
nla->nla_type = type;
|
|
|
|
|
return nla + 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Appends a Netlink attribute of the given 'type' and the 'size' bytes of
|
|
|
|
|
* 'data' as its payload, to the tail end of 'msg', reallocating and copying
|
|
|
|
|
* its data if necessary. Returns a pointer to the first byte of data in the
|
|
|
|
|
* attribute, which is left uninitialized. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_put_unspec(struct ofpbuf *msg, uint16_t type,
|
2010-08-30 00:24:53 -07:00
|
|
|
|
const void *data, size_t size)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
memcpy(nl_msg_put_unspec_uninit(msg, type, size), data, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Appends a Netlink attribute of the given 'type' and no payload to 'msg'.
|
|
|
|
|
* (Some Netlink protocols use the presence or absence of an attribute as a
|
|
|
|
|
* Boolean flag.) */
|
|
|
|
|
void
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_msg_put_flag(struct ofpbuf *msg, uint16_t type)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
nl_msg_put_unspec(msg, type, NULL, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Appends a Netlink attribute of the given 'type' and the given 8-bit 'value'
|
|
|
|
|
* to 'msg'. */
|
|
|
|
|
void
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_msg_put_u8(struct ofpbuf *msg, uint16_t type, uint8_t value)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
nl_msg_put_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-07 09:37:29 -08:00
|
|
|
|
/* Appends a Netlink attribute of the given 'type' and the given 16-bit host
|
|
|
|
|
* byte order 'value' to 'msg'. */
|
2009-07-08 13:19:16 -07:00
|
|
|
|
void
|
|
|
|
|
nl_msg_put_u16(struct ofpbuf *msg, uint16_t type, uint16_t value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_put_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-07 09:37:29 -08:00
|
|
|
|
/* Appends a Netlink attribute of the given 'type' and the given 32-bit host
|
|
|
|
|
* byte order 'value' to 'msg'. */
|
2009-07-08 13:19:16 -07:00
|
|
|
|
void
|
|
|
|
|
nl_msg_put_u32(struct ofpbuf *msg, uint16_t type, uint32_t value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_put_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-07 09:37:29 -08:00
|
|
|
|
/* Appends a Netlink attribute of the given 'type' and the given 64-bit host
|
|
|
|
|
* byte order 'value' to 'msg'. */
|
2009-07-08 13:19:16 -07:00
|
|
|
|
void
|
|
|
|
|
nl_msg_put_u64(struct ofpbuf *msg, uint16_t type, uint64_t value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_put_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-07 09:37:29 -08:00
|
|
|
|
/* Appends a Netlink attribute of the given 'type' and the given 16-bit network
|
|
|
|
|
* byte order 'value' to 'msg'. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_put_be16(struct ofpbuf *msg, uint16_t type, ovs_be16 value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_put_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Appends a Netlink attribute of the given 'type' and the given 32-bit network
|
|
|
|
|
* byte order 'value' to 'msg'. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_put_be32(struct ofpbuf *msg, uint16_t type, ovs_be32 value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_put_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Appends a Netlink attribute of the given 'type' and the given 64-bit network
|
|
|
|
|
* byte order 'value' to 'msg'. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_put_be64(struct ofpbuf *msg, uint16_t type, ovs_be64 value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_put_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
/* Appends a Netlink attribute of the given 'type' and the given
|
|
|
|
|
* null-terminated string 'value' to 'msg'. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_put_string(struct ofpbuf *msg, uint16_t type, const char *value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_put_unspec(msg, type, value, strlen(value) + 1);
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-26 12:57:41 -07:00
|
|
|
|
/* Prepends a Netlink attribute of the given 'type' and room for 'size' bytes
|
|
|
|
|
* of data as its payload, plus Netlink padding if needed, to the head end of
|
|
|
|
|
* 'msg', reallocating and copying its data if necessary. Returns a pointer to
|
|
|
|
|
* the first byte of data in the attribute, which is left uninitialized. */
|
|
|
|
|
void *
|
|
|
|
|
nl_msg_push_unspec_uninit(struct ofpbuf *msg, uint16_t type, size_t size)
|
|
|
|
|
{
|
|
|
|
|
size_t total_size = NLA_HDRLEN + size;
|
|
|
|
|
struct nlattr* nla = nl_msg_push_uninit(msg, total_size);
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(NLA_ALIGN(total_size) <= UINT16_MAX);
|
2011-09-26 12:57:41 -07:00
|
|
|
|
nla->nla_len = total_size;
|
|
|
|
|
nla->nla_type = type;
|
|
|
|
|
return nla + 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepends a Netlink attribute of the given 'type' and the 'size' bytes of
|
|
|
|
|
* 'data' as its payload, to the head end of 'msg', reallocating and copying
|
|
|
|
|
* its data if necessary. Returns a pointer to the first byte of data in the
|
|
|
|
|
* attribute, which is left uninitialized. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_push_unspec(struct ofpbuf *msg, uint16_t type,
|
|
|
|
|
const void *data, size_t size)
|
|
|
|
|
{
|
|
|
|
|
memcpy(nl_msg_push_unspec_uninit(msg, type, size), data, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepends a Netlink attribute of the given 'type' and no payload to 'msg'.
|
|
|
|
|
* (Some Netlink protocols use the presence or absence of an attribute as a
|
|
|
|
|
* Boolean flag.) */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_push_flag(struct ofpbuf *msg, uint16_t type)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_push_unspec(msg, type, NULL, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepends a Netlink attribute of the given 'type' and the given 8-bit 'value'
|
|
|
|
|
* to 'msg'. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_push_u8(struct ofpbuf *msg, uint16_t type, uint8_t value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_push_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepends a Netlink attribute of the given 'type' and the given 16-bit host
|
|
|
|
|
* byte order 'value' to 'msg'. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_push_u16(struct ofpbuf *msg, uint16_t type, uint16_t value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_push_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepends a Netlink attribute of the given 'type' and the given 32-bit host
|
|
|
|
|
* byte order 'value' to 'msg'. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_push_u32(struct ofpbuf *msg, uint16_t type, uint32_t value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_push_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepends a Netlink attribute of the given 'type' and the given 64-bit host
|
|
|
|
|
* byte order 'value' to 'msg'. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_push_u64(struct ofpbuf *msg, uint16_t type, uint64_t value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_push_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepends a Netlink attribute of the given 'type' and the given 16-bit
|
|
|
|
|
* network byte order 'value' to 'msg'. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_push_be16(struct ofpbuf *msg, uint16_t type, ovs_be16 value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_push_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepends a Netlink attribute of the given 'type' and the given 32-bit
|
|
|
|
|
* network byte order 'value' to 'msg'. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_push_be32(struct ofpbuf *msg, uint16_t type, ovs_be32 value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_push_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepends a Netlink attribute of the given 'type' and the given 64-bit
|
|
|
|
|
* network byte order 'value' to 'msg'. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_push_be64(struct ofpbuf *msg, uint16_t type, ovs_be64 value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_push_unspec(msg, type, &value, sizeof value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepends a Netlink attribute of the given 'type' and the given
|
|
|
|
|
* null-terminated string 'value' to 'msg'. */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_push_string(struct ofpbuf *msg, uint16_t type, const char *value)
|
|
|
|
|
{
|
|
|
|
|
nl_msg_push_unspec(msg, type, value, strlen(value) + 1);
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-28 16:16:23 -07:00
|
|
|
|
/* Adds the header for nested Netlink attributes to 'msg', with the specified
|
|
|
|
|
* 'type', and returns the header's offset within 'msg'. The caller should add
|
|
|
|
|
* the content for the nested Netlink attribute to 'msg' (e.g. using the other
|
|
|
|
|
* nl_msg_*() functions), and then pass the returned offset to
|
|
|
|
|
* nl_msg_end_nested() to finish up the nested attributes. */
|
|
|
|
|
size_t
|
|
|
|
|
nl_msg_start_nested(struct ofpbuf *msg, uint16_t type)
|
|
|
|
|
{
|
|
|
|
|
size_t offset = msg->size;
|
|
|
|
|
nl_msg_put_unspec(msg, type, NULL, 0);
|
|
|
|
|
return offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Finalizes a nested Netlink attribute in 'msg'. 'offset' should be the value
|
|
|
|
|
* returned by nl_msg_start_nested(). */
|
|
|
|
|
void
|
|
|
|
|
nl_msg_end_nested(struct ofpbuf *msg, size_t offset)
|
|
|
|
|
{
|
|
|
|
|
struct nlattr *attr = ofpbuf_at_assert(msg, offset, sizeof *attr);
|
|
|
|
|
attr->nla_len = msg->size - offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Appends a nested Netlink attribute of the given 'type', with the 'size'
|
|
|
|
|
* bytes of content starting at 'data', to 'msg'. */
|
2009-07-08 13:19:16 -07:00
|
|
|
|
void
|
|
|
|
|
nl_msg_put_nested(struct ofpbuf *msg,
|
2010-05-28 16:16:23 -07:00
|
|
|
|
uint16_t type, const void *data, size_t size)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2010-05-28 16:16:23 -07:00
|
|
|
|
size_t offset = nl_msg_start_nested(msg, type);
|
|
|
|
|
nl_msg_put(msg, data, size);
|
|
|
|
|
nl_msg_end_nested(msg, offset);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2010-05-20 17:14:22 -07:00
|
|
|
|
/* If 'buffer' begins with a valid "struct nlmsghdr", pulls the header and its
|
|
|
|
|
* payload off 'buffer', stores header and payload in 'msg->data' and
|
|
|
|
|
* 'msg->size', and returns a pointer to the header.
|
|
|
|
|
*
|
|
|
|
|
* If 'buffer' does not begin with a "struct nlmsghdr" or begins with one that
|
|
|
|
|
* is invalid, returns NULL without modifying 'buffer'. */
|
|
|
|
|
struct nlmsghdr *
|
|
|
|
|
nl_msg_next(struct ofpbuf *buffer, struct ofpbuf *msg)
|
|
|
|
|
{
|
|
|
|
|
if (buffer->size >= sizeof(struct nlmsghdr)) {
|
|
|
|
|
struct nlmsghdr *nlmsghdr = nl_msg_nlmsghdr(buffer);
|
|
|
|
|
size_t len = nlmsghdr->nlmsg_len;
|
|
|
|
|
if (len >= sizeof *nlmsghdr && len <= buffer->size) {
|
2010-12-02 14:53:12 -08:00
|
|
|
|
ofpbuf_use_const(msg, nlmsghdr, len);
|
2010-05-20 17:14:22 -07:00
|
|
|
|
ofpbuf_pull(buffer, len);
|
|
|
|
|
return nlmsghdr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
msg->data = NULL;
|
|
|
|
|
msg->size = 0;
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Attributes. */
|
|
|
|
|
|
2010-12-07 09:37:59 -08:00
|
|
|
|
/* Returns the bits of 'nla->nla_type' that are significant for determining its
|
|
|
|
|
* type. */
|
|
|
|
|
int
|
|
|
|
|
nl_attr_type(const struct nlattr *nla)
|
|
|
|
|
{
|
|
|
|
|
return nla->nla_type & NLA_TYPE_MASK;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
/* Returns the first byte in the payload of attribute 'nla'. */
|
|
|
|
|
const void *
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_attr_get(const struct nlattr *nla)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(nla->nla_len >= NLA_HDRLEN);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
return nla + 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the number of bytes in the payload of attribute 'nla'. */
|
|
|
|
|
size_t
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_attr_get_size(const struct nlattr *nla)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(nla->nla_len >= NLA_HDRLEN);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
return nla->nla_len - NLA_HDRLEN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Asserts that 'nla''s payload is at least 'size' bytes long, and returns the
|
|
|
|
|
* first byte of the payload. */
|
|
|
|
|
const void *
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_attr_get_unspec(const struct nlattr *nla, size_t size)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(nla->nla_len >= NLA_HDRLEN + size);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
return nla + 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns true if 'nla' is nonnull. (Some Netlink protocols use the presence
|
|
|
|
|
* or absence of an attribute as a Boolean flag.) */
|
|
|
|
|
bool
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_attr_get_flag(const struct nlattr *nla)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
return nla != NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define NL_ATTR_GET_AS(NLA, TYPE) \
|
|
|
|
|
(*(TYPE*) nl_attr_get_unspec(nla, sizeof(TYPE)))
|
|
|
|
|
|
|
|
|
|
/* Returns the 8-bit value in 'nla''s payload.
|
|
|
|
|
*
|
|
|
|
|
* Asserts that 'nla''s payload is at least 1 byte long. */
|
|
|
|
|
uint8_t
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_attr_get_u8(const struct nlattr *nla)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
return NL_ATTR_GET_AS(nla, uint8_t);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-07 09:37:29 -08:00
|
|
|
|
/* Returns the 16-bit host byte order value in 'nla''s payload.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
|
|
|
|
* Asserts that 'nla''s payload is at least 2 bytes long. */
|
|
|
|
|
uint16_t
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_attr_get_u16(const struct nlattr *nla)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
return NL_ATTR_GET_AS(nla, uint16_t);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-07 09:37:29 -08:00
|
|
|
|
/* Returns the 32-bit host byte order value in 'nla''s payload.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
|
|
|
|
* Asserts that 'nla''s payload is at least 4 bytes long. */
|
|
|
|
|
uint32_t
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_attr_get_u32(const struct nlattr *nla)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
|
|
|
|
return NL_ATTR_GET_AS(nla, uint32_t);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-07 09:37:29 -08:00
|
|
|
|
/* Returns the 64-bit host byte order value in 'nla''s payload.
|
2009-07-08 13:19:16 -07:00
|
|
|
|
*
|
|
|
|
|
* Asserts that 'nla''s payload is at least 8 bytes long. */
|
|
|
|
|
uint64_t
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_attr_get_u64(const struct nlattr *nla)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2011-01-18 11:51:46 -08:00
|
|
|
|
const ovs_32aligned_u64 *x = nl_attr_get_unspec(nla, sizeof *x);
|
|
|
|
|
return get_32aligned_u64(x);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-07 09:37:29 -08:00
|
|
|
|
/* Returns the 16-bit network byte order value in 'nla''s payload.
|
|
|
|
|
*
|
|
|
|
|
* Asserts that 'nla''s payload is at least 2 bytes long. */
|
|
|
|
|
ovs_be16
|
|
|
|
|
nl_attr_get_be16(const struct nlattr *nla)
|
|
|
|
|
{
|
|
|
|
|
return NL_ATTR_GET_AS(nla, ovs_be16);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the 32-bit network byte order value in 'nla''s payload.
|
|
|
|
|
*
|
|
|
|
|
* Asserts that 'nla''s payload is at least 4 bytes long. */
|
|
|
|
|
ovs_be32
|
|
|
|
|
nl_attr_get_be32(const struct nlattr *nla)
|
|
|
|
|
{
|
|
|
|
|
return NL_ATTR_GET_AS(nla, ovs_be32);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the 64-bit network byte order value in 'nla''s payload.
|
|
|
|
|
*
|
|
|
|
|
* Asserts that 'nla''s payload is at least 8 bytes long. */
|
|
|
|
|
ovs_be64
|
|
|
|
|
nl_attr_get_be64(const struct nlattr *nla)
|
|
|
|
|
{
|
2011-01-18 11:51:46 -08:00
|
|
|
|
const ovs_32aligned_be64 *x = nl_attr_get_unspec(nla, sizeof *x);
|
|
|
|
|
return get_32aligned_be64(x);
|
2010-12-07 09:37:29 -08:00
|
|
|
|
}
|
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
/* Returns the null-terminated string value in 'nla''s payload.
|
|
|
|
|
*
|
|
|
|
|
* Asserts that 'nla''s payload contains a null-terminated string. */
|
|
|
|
|
const char *
|
2010-08-30 00:24:53 -07:00
|
|
|
|
nl_attr_get_string(const struct nlattr *nla)
|
2009-07-08 13:19:16 -07:00
|
|
|
|
{
|
2012-11-06 13:14:55 -08:00
|
|
|
|
ovs_assert(nla->nla_len > NLA_HDRLEN);
|
|
|
|
|
ovs_assert(memchr(nl_attr_get(nla), '\0', nla->nla_len - NLA_HDRLEN));
|
2009-07-08 13:19:16 -07:00
|
|
|
|
return nl_attr_get(nla);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-02 14:53:12 -08:00
|
|
|
|
/* Initializes 'nested' to the payload of 'nla'. */
|
2010-05-20 15:57:56 -07:00
|
|
|
|
void
|
|
|
|
|
nl_attr_get_nested(const struct nlattr *nla, struct ofpbuf *nested)
|
|
|
|
|
{
|
2010-12-02 14:53:12 -08:00
|
|
|
|
ofpbuf_use_const(nested, nl_attr_get(nla), nl_attr_get_size(nla));
|
2010-05-20 15:57:56 -07:00
|
|
|
|
}
|
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
/* Default minimum and maximum payload sizes for each type of attribute. */
|
|
|
|
|
static const size_t attr_len_range[][2] = {
|
|
|
|
|
[0 ... N_NL_ATTR_TYPES - 1] = { 0, SIZE_MAX },
|
|
|
|
|
[NL_A_U8] = { 1, 1 },
|
|
|
|
|
[NL_A_U16] = { 2, 2 },
|
|
|
|
|
[NL_A_U32] = { 4, 4 },
|
|
|
|
|
[NL_A_U64] = { 8, 8 },
|
|
|
|
|
[NL_A_STRING] = { 1, SIZE_MAX },
|
|
|
|
|
[NL_A_FLAG] = { 0, SIZE_MAX },
|
2010-05-20 15:53:17 -07:00
|
|
|
|
[NL_A_NESTED] = { 0, SIZE_MAX },
|
2009-07-08 13:19:16 -07:00
|
|
|
|
};
|
|
|
|
|
|
2011-11-07 09:21:03 -08:00
|
|
|
|
bool
|
|
|
|
|
nl_attr_validate(const struct nlattr *nla, const struct nl_policy *policy)
|
|
|
|
|
{
|
|
|
|
|
uint16_t type = nl_attr_type(nla);
|
|
|
|
|
size_t min_len;
|
|
|
|
|
size_t max_len;
|
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
|
|
if (policy->type == NL_A_NO_ATTR) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Figure out min and max length. */
|
|
|
|
|
min_len = policy->min_len;
|
|
|
|
|
if (!min_len) {
|
|
|
|
|
min_len = attr_len_range[policy->type][0];
|
|
|
|
|
}
|
|
|
|
|
max_len = policy->max_len;
|
|
|
|
|
if (!max_len) {
|
|
|
|
|
max_len = attr_len_range[policy->type][1];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Verify length. */
|
|
|
|
|
len = nl_attr_get_size(nla);
|
|
|
|
|
if (len < min_len || len > max_len) {
|
|
|
|
|
VLOG_DBG_RL(&rl, "attr %"PRIu16" length %zu not in "
|
|
|
|
|
"allowed range %zu...%zu", type, len, min_len, max_len);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Strings must be null terminated and must not have embedded nulls. */
|
|
|
|
|
if (policy->type == NL_A_STRING) {
|
|
|
|
|
if (((char *) nla)[nla->nla_len - 1]) {
|
|
|
|
|
VLOG_DBG_RL(&rl, "attr %"PRIu16" lacks null at end", type);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (memchr(nla + 1, '\0', len - 1) != NULL) {
|
|
|
|
|
VLOG_DBG_RL(&rl, "attr %"PRIu16" has bad length", type);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-08 13:19:16 -07:00
|
|
|
|
/* Parses the 'msg' starting at the given 'nla_offset' as a sequence of Netlink
|
|
|
|
|
* attributes. 'policy[i]', for 0 <= i < n_attrs, specifies how the attribute
|
|
|
|
|
* with nla_type == i is parsed; a pointer to attribute i is stored in
|
|
|
|
|
* attrs[i]. Returns true if successful, false on failure.
|
|
|
|
|
*
|
|
|
|
|
* If the Netlink attributes in 'msg' follow a Netlink header and a Generic
|
|
|
|
|
* Netlink header, then 'nla_offset' should be NLMSG_HDRLEN + GENL_HDRLEN. */
|
|
|
|
|
bool
|
|
|
|
|
nl_policy_parse(const struct ofpbuf *msg, size_t nla_offset,
|
|
|
|
|
const struct nl_policy policy[],
|
|
|
|
|
struct nlattr *attrs[], size_t n_attrs)
|
|
|
|
|
{
|
2011-11-01 14:48:44 -07:00
|
|
|
|
struct nlattr *nla;
|
|
|
|
|
size_t left;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
size_t i;
|
|
|
|
|
|
2011-11-07 09:21:03 -08:00
|
|
|
|
memset(attrs, 0, n_attrs * sizeof *attrs);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
|
2011-11-01 14:48:44 -07:00
|
|
|
|
if (msg->size < nla_offset) {
|
2009-07-08 13:19:16 -07:00
|
|
|
|
VLOG_DBG_RL(&rl, "missing headers in nl_policy_parse");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-01 14:48:44 -07:00
|
|
|
|
NL_ATTR_FOR_EACH (nla, left,
|
|
|
|
|
(struct nlattr *) ((char *) msg->data + nla_offset),
|
2011-11-07 09:21:03 -08:00
|
|
|
|
msg->size - nla_offset)
|
|
|
|
|
{
|
2011-11-01 14:48:44 -07:00
|
|
|
|
uint16_t type = nl_attr_type(nla);
|
2009-07-08 13:19:16 -07:00
|
|
|
|
if (type < n_attrs && policy[type].type != NL_A_NO_ATTR) {
|
2010-09-02 10:09:09 -07:00
|
|
|
|
const struct nl_policy *e = &policy[type];
|
2011-11-07 09:21:03 -08:00
|
|
|
|
if (!nl_attr_validate(nla, e)) {
|
2009-07-08 13:19:16 -07:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2011-01-11 14:12:03 -08:00
|
|
|
|
if (attrs[type]) {
|
2011-11-07 09:21:03 -08:00
|
|
|
|
VLOG_DBG_RL(&rl, "duplicate attr %"PRIu16, type);
|
2011-01-11 14:12:03 -08:00
|
|
|
|
}
|
2009-07-08 13:19:16 -07:00
|
|
|
|
attrs[type] = nla;
|
|
|
|
|
}
|
2011-11-01 14:48:44 -07:00
|
|
|
|
}
|
|
|
|
|
if (left) {
|
|
|
|
|
VLOG_DBG_RL(&rl, "attributes followed by garbage");
|
|
|
|
|
return false;
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
2011-11-07 09:21:03 -08:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < n_attrs; i++) {
|
|
|
|
|
const struct nl_policy *e = &policy[i];
|
|
|
|
|
if (!e->optional && e->type != NL_A_NO_ATTR && !attrs[i]) {
|
|
|
|
|
VLOG_DBG_RL(&rl, "required attr %zu missing", i);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2009-07-08 13:19:16 -07:00
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2010-05-20 15:57:56 -07:00
|
|
|
|
|
|
|
|
|
/* Parses the Netlink attributes within 'nla'. 'policy[i]', for 0 <= i <
|
|
|
|
|
* n_attrs, specifies how the attribute with nla_type == i is parsed; a pointer
|
|
|
|
|
* to attribute i is stored in attrs[i]. Returns true if successful, false on
|
|
|
|
|
* failure. */
|
|
|
|
|
bool
|
|
|
|
|
nl_parse_nested(const struct nlattr *nla, const struct nl_policy policy[],
|
|
|
|
|
struct nlattr *attrs[], size_t n_attrs)
|
|
|
|
|
{
|
|
|
|
|
struct ofpbuf buf;
|
|
|
|
|
|
|
|
|
|
nl_attr_get_nested(nla, &buf);
|
|
|
|
|
return nl_policy_parse(&buf, 0, policy, attrs, n_attrs);
|
|
|
|
|
}
|
2011-01-13 12:36:06 -08:00
|
|
|
|
|
2011-09-23 11:53:12 -07:00
|
|
|
|
const struct nlattr *
|
2011-01-13 12:36:06 -08:00
|
|
|
|
nl_attr_find__(const struct nlattr *attrs, size_t size, uint16_t type)
|
|
|
|
|
{
|
|
|
|
|
const struct nlattr *nla;
|
|
|
|
|
size_t left;
|
|
|
|
|
|
|
|
|
|
NL_ATTR_FOR_EACH (nla, left, attrs, size) {
|
2011-11-07 09:21:03 -08:00
|
|
|
|
if (nl_attr_type(nla) == type) {
|
2011-01-13 12:36:06 -08:00
|
|
|
|
return nla;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the first Netlink attribute within 'buf' with the specified 'type',
|
|
|
|
|
* skipping a header of 'hdr_len' bytes at the beginning of 'buf'.
|
|
|
|
|
*
|
|
|
|
|
* This function does not validate the attribute's length. */
|
|
|
|
|
const struct nlattr *
|
|
|
|
|
nl_attr_find(const struct ofpbuf *buf, size_t hdr_len, uint16_t type)
|
|
|
|
|
{
|
|
|
|
|
const uint8_t *start = (const uint8_t *) buf->data + hdr_len;
|
|
|
|
|
return nl_attr_find__((const struct nlattr *) start, buf->size - hdr_len,
|
|
|
|
|
type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the first Netlink attribute within 'nla' with the specified
|
|
|
|
|
* 'type'.
|
|
|
|
|
*
|
|
|
|
|
* This function does not validate the attribute's length. */
|
|
|
|
|
const struct nlattr *
|
|
|
|
|
nl_attr_find_nested(const struct nlattr *nla, uint16_t type)
|
|
|
|
|
{
|
|
|
|
|
return nl_attr_find__(nl_attr_get(nla), nl_attr_get_size(nla), type);
|
|
|
|
|
}
|