netlink: Drop sock parameter from nl_msg_put_(ge)nlmsghdr().
[sliver-openvswitch.git] / lib / netlink.c
1 /*
2  * Copyright (c) 2008, 2009, 2010 Nicira Networks.
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 <assert.h>
20 #include <errno.h>
21 #include <inttypes.h>
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <time.h>
26 #include <unistd.h>
27 #include "coverage.h"
28 #include "dynamic-string.h"
29 #include "netlink-protocol.h"
30 #include "ofpbuf.h"
31 #include "poll-loop.h"
32 #include "timeval.h"
33 #include "util.h"
34
35 #include "vlog.h"
36 #define THIS_MODULE VLM_netlink
37
38 /* Linux header file confusion causes this to be undefined. */
39 #ifndef SOL_NETLINK
40 #define SOL_NETLINK 270
41 #endif
42
43 /* A single (bad) Netlink message can in theory dump out many, many log
44  * messages, so the burst size is set quite high here to avoid missing useful
45  * information.  Also, at high logging levels we log *all* Netlink messages. */
46 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(60, 600);
47
48 static void log_nlmsg(const char *function, int error,
49                       const void *message, size_t size);
50 \f
51 /* Netlink sockets. */
52
53 struct nl_sock
54 {
55     int fd;
56     uint32_t pid;
57 };
58
59 /* Next nlmsghdr sequence number.
60  * 
61  * This implementation uses sequence numbers that are unique process-wide, to
62  * avoid a hypothetical race: send request, close socket, open new socket that
63  * reuses the old socket's PID value, send request on new socket, receive reply
64  * from kernel to old socket but with same PID and sequence number.  (This race
65  * could be avoided other ways, e.g. by preventing PIDs from being quickly
66  * reused). */
67 static uint32_t next_seq;
68
69 static int alloc_pid(uint32_t *);
70 static void free_pid(uint32_t);
71
72 /* Creates a new netlink socket for the given netlink 'protocol'
73  * (NETLINK_ROUTE, NETLINK_GENERIC, ...).  Returns 0 and sets '*sockp' to the
74  * new socket if successful, otherwise returns a positive errno value.
75  *
76  * If 'multicast_group' is nonzero, the new socket subscribes to the specified
77  * netlink multicast group.  (A netlink socket may listen to an arbitrary
78  * number of multicast groups, but so far we only need one at a time.)
79  *
80  * Nonzero 'so_sndbuf' or 'so_rcvbuf' override the kernel default send or
81  * receive buffer size, respectively.
82  */
83 int
84 nl_sock_create(int protocol, int multicast_group,
85                size_t so_sndbuf, size_t so_rcvbuf, struct nl_sock **sockp)
86 {
87     struct nl_sock *sock;
88     struct sockaddr_nl local, remote;
89     int retval = 0;
90
91     if (next_seq == 0) {
92         /* Pick initial sequence number. */
93         next_seq = getpid() ^ time_wall();
94     }
95
96     *sockp = NULL;
97     sock = malloc(sizeof *sock);
98     if (sock == NULL) {
99         return ENOMEM;
100     }
101
102     sock->fd = socket(AF_NETLINK, SOCK_RAW, protocol);
103     if (sock->fd < 0) {
104         VLOG_ERR("fcntl: %s", strerror(errno));
105         goto error;
106     }
107
108     retval = alloc_pid(&sock->pid);
109     if (retval) {
110         goto error;
111     }
112
113     if (so_sndbuf != 0
114         && setsockopt(sock->fd, SOL_SOCKET, SO_SNDBUF,
115                       &so_sndbuf, sizeof so_sndbuf) < 0) {
116         VLOG_ERR("setsockopt(SO_SNDBUF,%zu): %s", so_sndbuf, strerror(errno));
117         goto error_free_pid;
118     }
119
120     if (so_rcvbuf != 0
121         && setsockopt(sock->fd, SOL_SOCKET, SO_RCVBUF,
122                       &so_rcvbuf, sizeof so_rcvbuf) < 0) {
123         VLOG_ERR("setsockopt(SO_RCVBUF,%zu): %s", so_rcvbuf, strerror(errno));
124         goto error_free_pid;
125     }
126
127     /* Bind local address as our selected pid. */
128     memset(&local, 0, sizeof local);
129     local.nl_family = AF_NETLINK;
130     local.nl_pid = sock->pid;
131     if (multicast_group > 0 && multicast_group <= 32) {
132         /* This method of joining multicast groups is supported by old kernels,
133          * but it only allows 32 multicast groups per protocol. */
134         local.nl_groups |= 1ul << (multicast_group - 1);
135     }
136     if (bind(sock->fd, (struct sockaddr *) &local, sizeof local) < 0) {
137         VLOG_ERR("bind(%"PRIu32"): %s", sock->pid, strerror(errno));
138         goto error_free_pid;
139     }
140
141     /* Bind remote address as the kernel (pid 0). */
142     memset(&remote, 0, sizeof remote);
143     remote.nl_family = AF_NETLINK;
144     remote.nl_pid = 0;
145     if (connect(sock->fd, (struct sockaddr *) &remote, sizeof remote) < 0) {
146         VLOG_ERR("connect(0): %s", strerror(errno));
147         goto error_free_pid;
148     }
149
150     /* Older kernel headers failed to define this macro.  We want our programs
151      * to support the newer kernel features even if compiled with older
152      * headers, so define it ourselves in such a case. */
153 #ifndef NETLINK_ADD_MEMBERSHIP
154 #define NETLINK_ADD_MEMBERSHIP 1
155 #endif
156
157     /* This method of joining multicast groups is only supported by newish
158      * kernels, but it allows for an arbitrary number of multicast groups. */
159     if (multicast_group > 32
160         && setsockopt(sock->fd, SOL_NETLINK, NETLINK_ADD_MEMBERSHIP,
161                       &multicast_group, sizeof multicast_group) < 0) {
162         VLOG_ERR("setsockopt(NETLINK_ADD_MEMBERSHIP,%d): %s",
163                  multicast_group, strerror(errno));
164         goto error_free_pid;
165     }
166
167     *sockp = sock;
168     return 0;
169
170 error_free_pid:
171     free_pid(sock->pid);
172 error:
173     if (retval == 0) {
174         retval = errno;
175         if (retval == 0) {
176             retval = EINVAL;
177         }
178     }
179     if (sock->fd >= 0) {
180         close(sock->fd);
181     }
182     free(sock);
183     return retval;
184 }
185
186 /* Destroys netlink socket 'sock'. */
187 void
188 nl_sock_destroy(struct nl_sock *sock) 
189 {
190     if (sock) {
191         close(sock->fd);
192         free_pid(sock->pid);
193         free(sock);
194     }
195 }
196
197 /* Tries to send 'msg', which must contain a Netlink message, to the kernel on
198  * 'sock'.  nlmsg_len in 'msg' will be finalized to match msg->size, and
199  * nlmsg_pid will be set to 'sock''s pid, before the message is sent.
200  *
201  * Returns 0 if successful, otherwise a positive errno value.  If
202  * 'wait' is true, then the send will wait until buffer space is ready;
203  * otherwise, returns EAGAIN if the 'sock' send buffer is full. */
204 int
205 nl_sock_send(struct nl_sock *sock, const struct ofpbuf *msg, bool wait) 
206 {
207     struct nlmsghdr *nlmsg = nl_msg_nlmsghdr(msg);
208     int error;
209
210     nlmsg->nlmsg_len = msg->size;
211     nlmsg->nlmsg_pid = sock->pid;
212     do {
213         int retval;
214         retval = send(sock->fd, msg->data, msg->size, wait ? 0 : MSG_DONTWAIT);
215         error = retval < 0 ? errno : 0;
216     } while (error == EINTR);
217     log_nlmsg(__func__, error, msg->data, msg->size);
218     if (!error) {
219         COVERAGE_INC(netlink_sent);
220     }
221     return error;
222 }
223
224 /* Tries to send the 'n_iov' chunks of data in 'iov' to the kernel on 'sock' as
225  * a single Netlink message.  (The message must be fully formed and not require
226  * finalization of its nlmsg_len or nlmsg_pid fields.)
227  *
228  * Returns 0 if successful, otherwise a positive errno value.  If 'wait' is
229  * true, then the send will wait until buffer space is ready; otherwise,
230  * returns EAGAIN if the 'sock' send buffer is full. */
231 int
232 nl_sock_sendv(struct nl_sock *sock, const struct iovec iov[], size_t n_iov,
233               bool wait) 
234 {
235     struct msghdr msg;
236     int error;
237
238     COVERAGE_INC(netlink_send);
239     memset(&msg, 0, sizeof msg);
240     msg.msg_iov = (struct iovec *) iov;
241     msg.msg_iovlen = n_iov;
242     do {
243         int retval;
244         retval = sendmsg(sock->fd, &msg, wait ? 0 : MSG_DONTWAIT);
245         error = retval < 0 ? errno : 0;
246     } while (error == EINTR);
247     if (error != EAGAIN) {
248         log_nlmsg(__func__, error, iov[0].iov_base, iov[0].iov_len);
249         if (!error) {
250             COVERAGE_INC(netlink_sent);
251         }
252     }
253     return error;
254 }
255
256 /* Tries to receive a netlink message from the kernel on 'sock'.  If
257  * successful, stores the received message into '*bufp' and returns 0.  The
258  * caller is responsible for destroying the message with ofpbuf_delete().  On
259  * failure, returns a positive errno value and stores a null pointer into
260  * '*bufp'.
261  *
262  * If 'wait' is true, nl_sock_recv waits for a message to be ready; otherwise,
263  * returns EAGAIN if the 'sock' receive buffer is empty. */
264 int
265 nl_sock_recv(struct nl_sock *sock, struct ofpbuf **bufp, bool wait) 
266 {
267     uint8_t tmp;
268     ssize_t bufsize = 2048;
269     ssize_t nbytes, nbytes2;
270     struct ofpbuf *buf;
271     struct nlmsghdr *nlmsghdr;
272     struct iovec iov;
273     struct msghdr msg = {
274         .msg_name = NULL,
275         .msg_namelen = 0,
276         .msg_iov = &iov,
277         .msg_iovlen = 1,
278         .msg_control = NULL,
279         .msg_controllen = 0,
280         .msg_flags = 0
281     };
282
283     buf = ofpbuf_new(bufsize);
284     *bufp = NULL;
285
286 try_again:
287     /* Attempt to read the message.  We don't know the size of the data
288      * yet, so we take a guess at 2048.  If we're wrong, we keep trying
289      * and doubling the buffer size each time. 
290      */
291     nlmsghdr = ofpbuf_put_uninit(buf, bufsize);
292     iov.iov_base = nlmsghdr;
293     iov.iov_len = bufsize;
294     do {
295         nbytes = recvmsg(sock->fd, &msg, (wait ? 0 : MSG_DONTWAIT) | MSG_PEEK); 
296     } while (nbytes < 0 && errno == EINTR);
297     if (nbytes < 0) {
298         ofpbuf_delete(buf);
299         return errno;
300     }
301     if (msg.msg_flags & MSG_TRUNC) {
302         COVERAGE_INC(netlink_recv_retry);
303         bufsize *= 2;
304         ofpbuf_reinit(buf, bufsize);
305         goto try_again;
306     }
307     buf->size = nbytes;
308
309     /* We successfully read the message, so recv again to clear the queue */
310     iov.iov_base = &tmp;
311     iov.iov_len = 1;
312     do {
313         nbytes2 = recvmsg(sock->fd, &msg, MSG_DONTWAIT);
314     } while (nbytes2 < 0 && errno == EINTR);
315     if (nbytes2 < 0) {
316         if (errno == ENOBUFS) {
317             /* The kernel is notifying us that a message it tried to send to us
318              * was dropped.  We have to pass this along to the caller in case
319              * it wants to retry a request.  So kill the buffer, which we can
320              * re-read next time. */
321             COVERAGE_INC(netlink_overflow);
322             ofpbuf_delete(buf);
323             return ENOBUFS;
324         } else {
325             VLOG_ERR_RL(&rl, "failed to remove nlmsg from socket: %s\n",
326                         strerror(errno));
327         }
328     }
329     if (nbytes < sizeof *nlmsghdr
330         || nlmsghdr->nlmsg_len < sizeof *nlmsghdr
331         || nlmsghdr->nlmsg_len > nbytes) {
332         VLOG_ERR_RL(&rl, "received invalid nlmsg (%zd bytes < %d)",
333                     bufsize, NLMSG_HDRLEN);
334         ofpbuf_delete(buf);
335         return EPROTO;
336     }
337     *bufp = buf;
338     log_nlmsg(__func__, 0, buf->data, buf->size);
339     COVERAGE_INC(netlink_received);
340     return 0;
341 }
342
343 /* Sends 'request' to the kernel via 'sock' and waits for a response.  If
344  * successful, stores the reply into '*replyp' and returns 0.  The caller is
345  * responsible for destroying the reply with ofpbuf_delete().  On failure,
346  * returns a positive errno value and stores a null pointer into '*replyp'.
347  *
348  * nlmsg_len in 'msg' will be finalized to match msg->size, and nlmsg_pid will
349  * be set to 'sock''s pid, before the message is sent.  NLM_F_ACK will be set
350  * in nlmsg_flags.
351  *
352  * The caller is responsible for destroying 'request'.
353  *
354  * Bare Netlink is an unreliable transport protocol.  This function layers
355  * reliable delivery and reply semantics on top of bare Netlink.
356  * 
357  * In Netlink, sending a request to the kernel is reliable enough, because the
358  * kernel will tell us if the message cannot be queued (and we will in that
359  * case put it on the transmit queue and wait until it can be delivered).
360  * 
361  * Receiving the reply is the real problem: if the socket buffer is full when
362  * the kernel tries to send the reply, the reply will be dropped.  However, the
363  * kernel sets a flag that a reply has been dropped.  The next call to recv
364  * then returns ENOBUFS.  We can then re-send the request.
365  *
366  * Caveats:
367  *
368  *      1. Netlink depends on sequence numbers to match up requests and
369  *         replies.  The sender of a request supplies a sequence number, and
370  *         the reply echos back that sequence number.
371  *
372  *         This is fine, but (1) some kernel netlink implementations are
373  *         broken, in that they fail to echo sequence numbers and (2) this
374  *         function will drop packets with non-matching sequence numbers, so
375  *         that only a single request can be usefully transacted at a time.
376  *
377  *      2. Resending the request causes it to be re-executed, so the request
378  *         needs to be idempotent.
379  */
380 int
381 nl_sock_transact(struct nl_sock *sock,
382                  const struct ofpbuf *request, struct ofpbuf **replyp) 
383 {
384     uint32_t seq = nl_msg_nlmsghdr(request)->nlmsg_seq;
385     struct nlmsghdr *nlmsghdr;
386     struct ofpbuf *reply;
387     int retval;
388
389     *replyp = NULL;
390
391     /* Ensure that we get a reply even if this message doesn't ordinarily call
392      * for one. */
393     nl_msg_nlmsghdr(request)->nlmsg_flags |= NLM_F_ACK;
394     
395 send:
396     retval = nl_sock_send(sock, request, true);
397     if (retval) {
398         return retval;
399     }
400
401 recv:
402     retval = nl_sock_recv(sock, &reply, true);
403     if (retval) {
404         if (retval == ENOBUFS) {
405             COVERAGE_INC(netlink_overflow);
406             VLOG_DBG_RL(&rl, "receive buffer overflow, resending request");
407             goto send;
408         } else {
409             return retval;
410         }
411     }
412     nlmsghdr = nl_msg_nlmsghdr(reply);
413     if (seq != nlmsghdr->nlmsg_seq) {
414         VLOG_DBG_RL(&rl, "ignoring seq %"PRIu32" != expected %"PRIu32,
415                     nl_msg_nlmsghdr(reply)->nlmsg_seq, seq);
416         ofpbuf_delete(reply);
417         goto recv;
418     }
419     if (nl_msg_nlmsgerr(reply, &retval)) {
420         ofpbuf_delete(reply);
421         if (retval) {
422             VLOG_DBG_RL(&rl, "received NAK error=%d (%s)",
423                         retval, strerror(retval));
424         }
425         return retval != EAGAIN ? retval : EPROTO;
426     }
427
428     *replyp = reply;
429     return 0;
430 }
431
432 /* Causes poll_block() to wake up when any of the specified 'events' (which is
433  * a OR'd combination of POLLIN, POLLOUT, etc.) occur on 'sock'. */
434 void
435 nl_sock_wait(const struct nl_sock *sock, short int events)
436 {
437     poll_fd_wait(sock->fd, events);
438 }
439 \f
440 /* Netlink messages. */
441
442 /* Returns the nlmsghdr at the head of 'msg'.
443  *
444  * 'msg' must be at least as large as a nlmsghdr. */
445 struct nlmsghdr *
446 nl_msg_nlmsghdr(const struct ofpbuf *msg) 
447 {
448     return ofpbuf_at_assert(msg, 0, NLMSG_HDRLEN);
449 }
450
451 /* Returns the genlmsghdr just past 'msg''s nlmsghdr.
452  *
453  * Returns a null pointer if 'msg' is not large enough to contain an nlmsghdr
454  * and a genlmsghdr. */
455 struct genlmsghdr *
456 nl_msg_genlmsghdr(const struct ofpbuf *msg) 
457 {
458     return ofpbuf_at(msg, NLMSG_HDRLEN, GENL_HDRLEN);
459 }
460
461 /* If 'buffer' is a NLMSG_ERROR message, stores 0 in '*errorp' if it is an ACK
462  * message, otherwise a positive errno value, and returns true.  If 'buffer' is
463  * not an NLMSG_ERROR message, returns false.
464  *
465  * 'msg' must be at least as large as a nlmsghdr. */
466 bool
467 nl_msg_nlmsgerr(const struct ofpbuf *msg, int *errorp) 
468 {
469     if (nl_msg_nlmsghdr(msg)->nlmsg_type == NLMSG_ERROR) {
470         struct nlmsgerr *err = ofpbuf_at(msg, NLMSG_HDRLEN, sizeof *err);
471         int code = EPROTO;
472         if (!err) {
473             VLOG_ERR_RL(&rl, "received invalid nlmsgerr (%zd bytes < %zd)",
474                         msg->size, NLMSG_HDRLEN + sizeof *err);
475         } else if (err->error <= 0 && err->error > INT_MIN) {
476             code = -err->error;
477         }
478         if (errorp) {
479             *errorp = code;
480         }
481         return true;
482     } else {
483         return false;
484     }
485 }
486
487 /* Ensures that 'b' has room for at least 'size' bytes plus netlink padding at
488  * its tail end, reallocating and copying its data if necessary. */
489 void
490 nl_msg_reserve(struct ofpbuf *msg, size_t size) 
491 {
492     ofpbuf_prealloc_tailroom(msg, NLMSG_ALIGN(size));
493 }
494
495 /* Puts a nlmsghdr at the beginning of 'msg', which must be initially empty.
496  * Uses the given 'type' and 'flags'.  'expected_payload' should be
497  * an estimate of the number of payload bytes to be supplied; if the size of
498  * the payload is unknown a value of 0 is acceptable.
499  *
500  * 'type' is ordinarily an enumerated value specific to the Netlink protocol
501  * (e.g. RTM_NEWLINK, for NETLINK_ROUTE protocol).  For Generic Netlink, 'type'
502  * is the family number obtained via nl_lookup_genl_family().
503  *
504  * 'flags' is a bit-mask that indicates what kind of request is being made.  It
505  * is often NLM_F_REQUEST indicating that a request is being made, commonly
506  * or'd with NLM_F_ACK to request an acknowledgement.
507  *
508  * Sets the new nlmsghdr's nlmsg_pid field to 0 for now.  nl_sock_send() will
509  * fill it in just before sending the message.
510  *
511  * nl_msg_put_genlmsghdr() is more convenient for composing a Generic Netlink
512  * message. */
513 void
514 nl_msg_put_nlmsghdr(struct ofpbuf *msg,
515                     size_t expected_payload, uint32_t type, uint32_t flags) 
516 {
517     struct nlmsghdr *nlmsghdr;
518
519     assert(msg->size == 0);
520
521     nl_msg_reserve(msg, NLMSG_HDRLEN + expected_payload);
522     nlmsghdr = nl_msg_put_uninit(msg, NLMSG_HDRLEN);
523     nlmsghdr->nlmsg_len = 0;
524     nlmsghdr->nlmsg_type = type;
525     nlmsghdr->nlmsg_flags = flags;
526     nlmsghdr->nlmsg_seq = ++next_seq;
527     nlmsghdr->nlmsg_pid = 0;
528 }
529
530 /* Puts a nlmsghdr and genlmsghdr at the beginning of 'msg', which must be
531  * initially empty.  'expected_payload' should be an estimate of the number of
532  * payload bytes to be supplied; if the size of the payload is unknown a value
533  * of 0 is acceptable.
534  *
535  * 'family' is the family number obtained via nl_lookup_genl_family().
536  *
537  * 'flags' is a bit-mask that indicates what kind of request is being made.  It
538  * is often NLM_F_REQUEST indicating that a request is being made, commonly
539  * or'd with NLM_F_ACK to request an acknowledgement.
540  *
541  * 'cmd' is an enumerated value specific to the Generic Netlink family
542  * (e.g. CTRL_CMD_NEWFAMILY for the GENL_ID_CTRL family).
543  *
544  * 'version' is a version number specific to the family and command (often 1).
545  *
546  * Sets the new nlmsghdr's nlmsg_pid field to 0 for now.  nl_sock_send() will
547  * fill it in just before sending the message.
548  *
549  * nl_msg_put_nlmsghdr() should be used to compose Netlink messages that are
550  * not Generic Netlink messages. */
551 void
552 nl_msg_put_genlmsghdr(struct ofpbuf *msg, size_t expected_payload,
553                       int family, uint32_t flags, uint8_t cmd, uint8_t version)
554 {
555     struct genlmsghdr *genlmsghdr;
556
557     nl_msg_put_nlmsghdr(msg, GENL_HDRLEN + expected_payload, family, flags);
558     assert(msg->size == NLMSG_HDRLEN);
559     genlmsghdr = nl_msg_put_uninit(msg, GENL_HDRLEN);
560     genlmsghdr->cmd = cmd;
561     genlmsghdr->version = version;
562     genlmsghdr->reserved = 0;
563 }
564
565 /* Appends the 'size' bytes of data in 'p', plus Netlink padding if needed, to
566  * the tail end of 'msg'.  Data in 'msg' is reallocated and copied if
567  * necessary. */
568 void
569 nl_msg_put(struct ofpbuf *msg, const void *data, size_t size) 
570 {
571     memcpy(nl_msg_put_uninit(msg, size), data, size);
572 }
573
574 /* Appends 'size' bytes of data, plus Netlink padding if needed, to the tail
575  * end of 'msg', reallocating and copying its data if necessary.  Returns a
576  * pointer to the first byte of the new data, which is left uninitialized. */
577 void *
578 nl_msg_put_uninit(struct ofpbuf *msg, size_t size) 
579 {
580     size_t pad = NLMSG_ALIGN(size) - size;
581     char *p = ofpbuf_put_uninit(msg, size + pad);
582     if (pad) {
583         memset(p + size, 0, pad); 
584     }
585     return p;
586 }
587
588 /* Appends a Netlink attribute of the given 'type' and room for 'size' bytes of
589  * data as its payload, plus Netlink padding if needed, to the tail end of
590  * 'msg', reallocating and copying its data if necessary.  Returns a pointer to
591  * the first byte of data in the attribute, which is left uninitialized. */
592 void *
593 nl_msg_put_unspec_uninit(struct ofpbuf *msg, uint16_t type, size_t size) 
594 {
595     size_t total_size = NLA_HDRLEN + size;
596     struct nlattr* nla = nl_msg_put_uninit(msg, total_size);
597     assert(NLA_ALIGN(total_size) <= UINT16_MAX);
598     nla->nla_len = total_size;
599     nla->nla_type = type;
600     return nla + 1;
601 }
602
603 /* Appends a Netlink attribute of the given 'type' and the 'size' bytes of
604  * 'data' as its payload, to the tail end of 'msg', reallocating and copying
605  * its data if necessary.  Returns a pointer to the first byte of data in the
606  * attribute, which is left uninitialized. */
607 void
608 nl_msg_put_unspec(struct ofpbuf *msg, uint16_t type,
609                   const void *data, size_t size) 
610 {
611     memcpy(nl_msg_put_unspec_uninit(msg, type, size), data, size);
612 }
613
614 /* Appends a Netlink attribute of the given 'type' and no payload to 'msg'.
615  * (Some Netlink protocols use the presence or absence of an attribute as a
616  * Boolean flag.) */
617 void
618 nl_msg_put_flag(struct ofpbuf *msg, uint16_t type) 
619 {
620     nl_msg_put_unspec(msg, type, NULL, 0);
621 }
622
623 /* Appends a Netlink attribute of the given 'type' and the given 8-bit 'value'
624  * to 'msg'. */
625 void
626 nl_msg_put_u8(struct ofpbuf *msg, uint16_t type, uint8_t value) 
627 {
628     nl_msg_put_unspec(msg, type, &value, sizeof value);
629 }
630
631 /* Appends a Netlink attribute of the given 'type' and the given 16-bit 'value'
632  * to 'msg'. */
633 void
634 nl_msg_put_u16(struct ofpbuf *msg, uint16_t type, uint16_t value)
635 {
636     nl_msg_put_unspec(msg, type, &value, sizeof value);
637 }
638
639 /* Appends a Netlink attribute of the given 'type' and the given 32-bit 'value'
640  * to 'msg'. */
641 void
642 nl_msg_put_u32(struct ofpbuf *msg, uint16_t type, uint32_t value)
643 {
644     nl_msg_put_unspec(msg, type, &value, sizeof value);
645 }
646
647 /* Appends a Netlink attribute of the given 'type' and the given 64-bit 'value'
648  * to 'msg'. */
649 void
650 nl_msg_put_u64(struct ofpbuf *msg, uint16_t type, uint64_t value)
651 {
652     nl_msg_put_unspec(msg, type, &value, sizeof value);
653 }
654
655 /* Appends a Netlink attribute of the given 'type' and the given
656  * null-terminated string 'value' to 'msg'. */
657 void
658 nl_msg_put_string(struct ofpbuf *msg, uint16_t type, const char *value)
659 {
660     nl_msg_put_unspec(msg, type, value, strlen(value) + 1);
661 }
662
663 /* Appends a Netlink attribute of the given 'type' and the given buffered
664  * netlink message in 'nested_msg' to 'msg'.  The nlmsg_len field in
665  * 'nested_msg' is finalized to match 'nested_msg->size'. */
666 void
667 nl_msg_put_nested(struct ofpbuf *msg,
668                   uint16_t type, struct ofpbuf *nested_msg)
669 {
670     nl_msg_nlmsghdr(nested_msg)->nlmsg_len = nested_msg->size;
671     nl_msg_put_unspec(msg, type, nested_msg->data, nested_msg->size);
672 }
673
674 /* Returns the first byte in the payload of attribute 'nla'. */
675 const void *
676 nl_attr_get(const struct nlattr *nla) 
677 {
678     assert(nla->nla_len >= NLA_HDRLEN);
679     return nla + 1;
680 }
681
682 /* Returns the number of bytes in the payload of attribute 'nla'. */
683 size_t
684 nl_attr_get_size(const struct nlattr *nla) 
685 {
686     assert(nla->nla_len >= NLA_HDRLEN);
687     return nla->nla_len - NLA_HDRLEN;
688 }
689
690 /* Asserts that 'nla''s payload is at least 'size' bytes long, and returns the
691  * first byte of the payload. */
692 const void *
693 nl_attr_get_unspec(const struct nlattr *nla, size_t size) 
694 {
695     assert(nla->nla_len >= NLA_HDRLEN + size);
696     return nla + 1;
697 }
698
699 /* Returns true if 'nla' is nonnull.  (Some Netlink protocols use the presence
700  * or absence of an attribute as a Boolean flag.) */
701 bool
702 nl_attr_get_flag(const struct nlattr *nla) 
703 {
704     return nla != NULL;
705 }
706
707 #define NL_ATTR_GET_AS(NLA, TYPE) \
708         (*(TYPE*) nl_attr_get_unspec(nla, sizeof(TYPE)))
709
710 /* Returns the 8-bit value in 'nla''s payload.
711  *
712  * Asserts that 'nla''s payload is at least 1 byte long. */
713 uint8_t
714 nl_attr_get_u8(const struct nlattr *nla) 
715 {
716     return NL_ATTR_GET_AS(nla, uint8_t);
717 }
718
719 /* Returns the 16-bit value in 'nla''s payload.
720  *
721  * Asserts that 'nla''s payload is at least 2 bytes long. */
722 uint16_t
723 nl_attr_get_u16(const struct nlattr *nla) 
724 {
725     return NL_ATTR_GET_AS(nla, uint16_t);
726 }
727
728 /* Returns the 32-bit value in 'nla''s payload.
729  *
730  * Asserts that 'nla''s payload is at least 4 bytes long. */
731 uint32_t
732 nl_attr_get_u32(const struct nlattr *nla) 
733 {
734     return NL_ATTR_GET_AS(nla, uint32_t);
735 }
736
737 /* Returns the 64-bit value in 'nla''s payload.
738  *
739  * Asserts that 'nla''s payload is at least 8 bytes long. */
740 uint64_t
741 nl_attr_get_u64(const struct nlattr *nla) 
742 {
743     return NL_ATTR_GET_AS(nla, uint64_t);
744 }
745
746 /* Returns the null-terminated string value in 'nla''s payload.
747  *
748  * Asserts that 'nla''s payload contains a null-terminated string. */
749 const char *
750 nl_attr_get_string(const struct nlattr *nla) 
751 {
752     assert(nla->nla_len > NLA_HDRLEN);
753     assert(memchr(nl_attr_get(nla), '\0', nla->nla_len - NLA_HDRLEN) != NULL);
754     return nl_attr_get(nla);
755 }
756
757 /* Default minimum and maximum payload sizes for each type of attribute. */
758 static const size_t attr_len_range[][2] = {
759     [0 ... N_NL_ATTR_TYPES - 1] = { 0, SIZE_MAX },
760     [NL_A_U8] = { 1, 1 },
761     [NL_A_U16] = { 2, 2 },
762     [NL_A_U32] = { 4, 4 },
763     [NL_A_U64] = { 8, 8 },
764     [NL_A_STRING] = { 1, SIZE_MAX },
765     [NL_A_FLAG] = { 0, SIZE_MAX },
766     [NL_A_NESTED] = { NLMSG_HDRLEN, SIZE_MAX },
767 };
768
769 /* Parses the 'msg' starting at the given 'nla_offset' as a sequence of Netlink
770  * attributes.  'policy[i]', for 0 <= i < n_attrs, specifies how the attribute
771  * with nla_type == i is parsed; a pointer to attribute i is stored in
772  * attrs[i].  Returns true if successful, false on failure.
773  *
774  * If the Netlink attributes in 'msg' follow a Netlink header and a Generic
775  * Netlink header, then 'nla_offset' should be NLMSG_HDRLEN + GENL_HDRLEN. */
776 bool
777 nl_policy_parse(const struct ofpbuf *msg, size_t nla_offset,
778                 const struct nl_policy policy[],
779                 struct nlattr *attrs[], size_t n_attrs)
780 {
781     void *p, *tail;
782     size_t n_required;
783     size_t i;
784
785     n_required = 0;
786     for (i = 0; i < n_attrs; i++) {
787         attrs[i] = NULL;
788
789         assert(policy[i].type < N_NL_ATTR_TYPES);
790         if (policy[i].type != NL_A_NO_ATTR
791             && policy[i].type != NL_A_FLAG
792             && !policy[i].optional) {
793             n_required++;
794         }
795     }
796
797     p = ofpbuf_at(msg, nla_offset, 0);
798     if (p == NULL) {
799         VLOG_DBG_RL(&rl, "missing headers in nl_policy_parse");
800         return false;
801     }
802     tail = ofpbuf_tail(msg);
803
804     while (p < tail) {
805         size_t offset = (char*)p - (char*)msg->data;
806         struct nlattr *nla = p;
807         size_t len, aligned_len;
808         uint16_t type;
809
810         /* Make sure its claimed length is plausible. */
811         if (nla->nla_len < NLA_HDRLEN) {
812             VLOG_DBG_RL(&rl, "%zu: attr shorter than NLA_HDRLEN (%"PRIu16")",
813                         offset, nla->nla_len);
814             return false;
815         }
816         len = nla->nla_len - NLA_HDRLEN;
817         aligned_len = NLA_ALIGN(len);
818         if (aligned_len > (char*)tail - (char*)p) {
819             VLOG_DBG_RL(&rl, "%zu: attr %"PRIu16" aligned data len (%zu) "
820                         "> bytes left (%tu)",
821                         offset, nla->nla_type, aligned_len,
822                         (char*)tail - (char*)p);
823             return false;
824         }
825
826         type = nla->nla_type;
827         if (type < n_attrs && policy[type].type != NL_A_NO_ATTR) {
828             const struct nl_policy *p = &policy[type];
829             size_t min_len, max_len;
830
831             /* Validate length and content. */
832             min_len = p->min_len ? p->min_len : attr_len_range[p->type][0];
833             max_len = p->max_len ? p->max_len : attr_len_range[p->type][1];
834             if (len < min_len || len > max_len) {
835                 VLOG_DBG_RL(&rl, "%zu: attr %"PRIu16" length %zu not in "
836                             "allowed range %zu...%zu",
837                             offset, type, len, min_len, max_len);
838                 return false;
839             }
840             if (p->type == NL_A_STRING) {
841                 if (((char *) nla)[nla->nla_len - 1]) {
842                     VLOG_DBG_RL(&rl, "%zu: attr %"PRIu16" lacks null at end",
843                                 offset, type);
844                     return false;
845                 }
846                 if (memchr(nla + 1, '\0', len - 1) != NULL) {
847                     VLOG_DBG_RL(&rl, "%zu: attr %"PRIu16" has bad length",
848                                 offset, type);
849                     return false;
850                 }
851             }
852             if (!p->optional && attrs[type] == NULL) {
853                 assert(n_required > 0);
854                 --n_required;
855             }
856             attrs[type] = nla;
857         } else {
858             /* Skip attribute type that we don't care about. */
859         }
860         p = (char*)p + NLA_ALIGN(nla->nla_len);
861     }
862     if (n_required) {
863         VLOG_DBG_RL(&rl, "%zu required attrs missing", n_required);
864         return false;
865     }
866     return true;
867 }
868 \f
869 /* Miscellaneous.  */
870
871 static const struct nl_policy family_policy[CTRL_ATTR_MAX + 1] = { 
872     [CTRL_ATTR_FAMILY_ID] = {.type = NL_A_U16},
873 };
874
875 static int do_lookup_genl_family(const char *name) 
876 {
877     struct nl_sock *sock;
878     struct ofpbuf request, *reply;
879     struct nlattr *attrs[ARRAY_SIZE(family_policy)];
880     int retval;
881
882     retval = nl_sock_create(NETLINK_GENERIC, 0, 0, 0, &sock);
883     if (retval) {
884         return -retval;
885     }
886
887     ofpbuf_init(&request, 0);
888     nl_msg_put_genlmsghdr(&request, 0, GENL_ID_CTRL, NLM_F_REQUEST,
889                           CTRL_CMD_GETFAMILY, 1);
890     nl_msg_put_string(&request, CTRL_ATTR_FAMILY_NAME, name);
891     retval = nl_sock_transact(sock, &request, &reply);
892     ofpbuf_uninit(&request);
893     if (retval) {
894         nl_sock_destroy(sock);
895         return -retval;
896     }
897
898     if (!nl_policy_parse(reply, NLMSG_HDRLEN + GENL_HDRLEN,
899                          family_policy, attrs, ARRAY_SIZE(family_policy))) {
900         nl_sock_destroy(sock);
901         ofpbuf_delete(reply);
902         return -EPROTO;
903     }
904
905     retval = nl_attr_get_u16(attrs[CTRL_ATTR_FAMILY_ID]);
906     if (retval == 0) {
907         retval = -EPROTO;
908     }
909     nl_sock_destroy(sock);
910     ofpbuf_delete(reply);
911     return retval;
912 }
913
914 /* If '*number' is 0, translates the given Generic Netlink family 'name' to a
915  * number and stores it in '*number'.  If successful, returns 0 and the caller
916  * may use '*number' as the family number.  On failure, returns a positive
917  * errno value and '*number' caches the errno value. */
918 int
919 nl_lookup_genl_family(const char *name, int *number) 
920 {
921     if (*number == 0) {
922         *number = do_lookup_genl_family(name);
923         assert(*number != 0);
924     }
925     return *number > 0 ? 0 : -*number;
926 }
927 \f
928 /* Netlink PID.
929  *
930  * Every Netlink socket must be bound to a unique 32-bit PID.  By convention,
931  * programs that have a single Netlink socket use their Unix process ID as PID,
932  * and programs with multiple Netlink sockets add a unique per-socket
933  * identifier in the bits above the Unix process ID.
934  *
935  * The kernel has Netlink PID 0.
936  */
937
938 /* Parameters for how many bits in the PID should come from the Unix process ID
939  * and how many unique per-socket. */
940 #define SOCKET_BITS 10
941 #define MAX_SOCKETS (1u << SOCKET_BITS)
942
943 #define PROCESS_BITS (32 - SOCKET_BITS)
944 #define MAX_PROCESSES (1u << PROCESS_BITS)
945 #define PROCESS_MASK ((uint32_t) (MAX_PROCESSES - 1))
946
947 /* Bit vector of unused socket identifiers. */
948 static uint32_t avail_sockets[ROUND_UP(MAX_SOCKETS, 32)];
949
950 /* Allocates and returns a new Netlink PID. */
951 static int
952 alloc_pid(uint32_t *pid)
953 {
954     int i;
955
956     for (i = 0; i < MAX_SOCKETS; i++) {
957         if ((avail_sockets[i / 32] & (1u << (i % 32))) == 0) {
958             avail_sockets[i / 32] |= 1u << (i % 32);
959             *pid = (getpid() & PROCESS_MASK) | (i << PROCESS_BITS);
960             return 0;
961         }
962     }
963     VLOG_ERR("netlink pid space exhausted");
964     return ENOBUFS;
965 }
966
967 /* Makes the specified 'pid' available for reuse. */
968 static void
969 free_pid(uint32_t pid)
970 {
971     int sock = pid >> PROCESS_BITS;
972     assert(avail_sockets[sock / 32] & (1u << (sock % 32)));
973     avail_sockets[sock / 32] &= ~(1u << (sock % 32));
974 }
975 \f
976 static void
977 nlmsghdr_to_string(const struct nlmsghdr *h, struct ds *ds)
978 {
979     struct nlmsg_flag {
980         unsigned int bits;
981         const char *name;
982     };
983     static const struct nlmsg_flag flags[] = { 
984         { NLM_F_REQUEST, "REQUEST" },
985         { NLM_F_MULTI, "MULTI" },
986         { NLM_F_ACK, "ACK" },
987         { NLM_F_ECHO, "ECHO" },
988         { NLM_F_DUMP, "DUMP" },
989         { NLM_F_ROOT, "ROOT" },
990         { NLM_F_MATCH, "MATCH" },
991         { NLM_F_ATOMIC, "ATOMIC" },
992     };
993     const struct nlmsg_flag *flag;
994     uint16_t flags_left;
995
996     ds_put_format(ds, "nl(len:%"PRIu32", type=%"PRIu16,
997                   h->nlmsg_len, h->nlmsg_type);
998     if (h->nlmsg_type == NLMSG_NOOP) {
999         ds_put_cstr(ds, "(no-op)");
1000     } else if (h->nlmsg_type == NLMSG_ERROR) {
1001         ds_put_cstr(ds, "(error)");
1002     } else if (h->nlmsg_type == NLMSG_DONE) {
1003         ds_put_cstr(ds, "(done)");
1004     } else if (h->nlmsg_type == NLMSG_OVERRUN) {
1005         ds_put_cstr(ds, "(overrun)");
1006     } else if (h->nlmsg_type < NLMSG_MIN_TYPE) {
1007         ds_put_cstr(ds, "(reserved)");
1008     } else {
1009         ds_put_cstr(ds, "(family-defined)");
1010     }
1011     ds_put_format(ds, ", flags=%"PRIx16, h->nlmsg_flags);
1012     flags_left = h->nlmsg_flags;
1013     for (flag = flags; flag < &flags[ARRAY_SIZE(flags)]; flag++) {
1014         if ((flags_left & flag->bits) == flag->bits) {
1015             ds_put_format(ds, "[%s]", flag->name);
1016             flags_left &= ~flag->bits;
1017         }
1018     }
1019     if (flags_left) {
1020         ds_put_format(ds, "[OTHER:%"PRIx16"]", flags_left);
1021     }
1022     ds_put_format(ds, ", seq=%"PRIx32", pid=%"PRIu32"(%d:%d))",
1023                   h->nlmsg_seq, h->nlmsg_pid,
1024                   (int) (h->nlmsg_pid & PROCESS_MASK),
1025                   (int) (h->nlmsg_pid >> PROCESS_BITS));
1026 }
1027
1028 static char *
1029 nlmsg_to_string(const struct ofpbuf *buffer)
1030 {
1031     struct ds ds = DS_EMPTY_INITIALIZER;
1032     const struct nlmsghdr *h = ofpbuf_at(buffer, 0, NLMSG_HDRLEN);
1033     if (h) {
1034         nlmsghdr_to_string(h, &ds);
1035         if (h->nlmsg_type == NLMSG_ERROR) {
1036             const struct nlmsgerr *e;
1037             e = ofpbuf_at(buffer, NLMSG_HDRLEN,
1038                           NLMSG_ALIGN(sizeof(struct nlmsgerr)));
1039             if (e) {
1040                 ds_put_format(&ds, " error(%d", e->error);
1041                 if (e->error < 0) {
1042                     ds_put_format(&ds, "(%s)", strerror(-e->error));
1043                 }
1044                 ds_put_cstr(&ds, ", in-reply-to(");
1045                 nlmsghdr_to_string(&e->msg, &ds);
1046                 ds_put_cstr(&ds, "))");
1047             } else {
1048                 ds_put_cstr(&ds, " error(truncated)");
1049             }
1050         } else if (h->nlmsg_type == NLMSG_DONE) {
1051             int *error = ofpbuf_at(buffer, NLMSG_HDRLEN, sizeof *error);
1052             if (error) {
1053                 ds_put_format(&ds, " done(%d", *error);
1054                 if (*error < 0) {
1055                     ds_put_format(&ds, "(%s)", strerror(-*error));
1056                 }
1057                 ds_put_cstr(&ds, ")");
1058             } else {
1059                 ds_put_cstr(&ds, " done(truncated)");
1060             }
1061         }
1062     } else {
1063         ds_put_cstr(&ds, "nl(truncated)");
1064     }
1065     return ds.string;
1066 }
1067
1068 static void
1069 log_nlmsg(const char *function, int error,
1070           const void *message, size_t size)
1071 {
1072     struct ofpbuf buffer;
1073     char *nlmsg;
1074
1075     if (!VLOG_IS_DBG_ENABLED()) {
1076         return;
1077     }
1078
1079     buffer.data = (void *) message;
1080     buffer.size = size;
1081     nlmsg = nlmsg_to_string(&buffer);
1082     VLOG_DBG_RL(&rl, "%s (%s): %s", function, strerror(error), nlmsg);
1083     free(nlmsg);
1084 }
1085