]> git.proxmox.com Git - mirror_ovs.git/blame - lib/netlink-socket.c
Global replace of Nicira Networks.
[mirror_ovs.git] / lib / netlink-socket.c
CommitLineData
2fe27d5a 1/*
e0edde6f 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc.
2fe27d5a
BP
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-socket.h"
19#include <assert.h>
20#include <errno.h>
21#include <inttypes.h>
22#include <stdlib.h>
23#include <sys/types.h>
cc75061a 24#include <sys/uio.h>
2fe27d5a
BP
25#include <unistd.h>
26#include "coverage.h"
27#include "dynamic-string.h"
2ad204c8
BP
28#include "hash.h"
29#include "hmap.h"
2fe27d5a
BP
30#include "netlink.h"
31#include "netlink-protocol.h"
32#include "ofpbuf.h"
33#include "poll-loop.h"
6b7c12fd 34#include "socket-util.h"
2fe27d5a 35#include "stress.h"
cc75061a 36#include "util.h"
2fe27d5a
BP
37#include "vlog.h"
38
39VLOG_DEFINE_THIS_MODULE(netlink_socket);
40
41COVERAGE_DEFINE(netlink_overflow);
42COVERAGE_DEFINE(netlink_received);
fc999dda 43COVERAGE_DEFINE(netlink_recv_jumbo);
2fe27d5a
BP
44COVERAGE_DEFINE(netlink_send);
45COVERAGE_DEFINE(netlink_sent);
46
47/* Linux header file confusion causes this to be undefined. */
48#ifndef SOL_NETLINK
49#define SOL_NETLINK 270
50#endif
51
52/* A single (bad) Netlink message can in theory dump out many, many log
53 * messages, so the burst size is set quite high here to avoid missing useful
54 * information. Also, at high logging levels we log *all* Netlink messages. */
55static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(60, 600);
56
7d7447df 57static uint32_t nl_sock_allocate_seq(struct nl_sock *, unsigned int n);
2fe27d5a 58static void log_nlmsg(const char *function, int error,
7041c3a9 59 const void *message, size_t size, int protocol);
2fe27d5a
BP
60\f
61/* Netlink sockets. */
62
63struct nl_sock
64{
65 int fd;
7d7447df 66 uint32_t next_seq;
2fe27d5a 67 uint32_t pid;
7041c3a9 68 int protocol;
c6eab56d 69 struct nl_dump *dump;
cc75061a 70 unsigned int rcvbuf; /* Receive buffer size (SO_RCVBUF). */
2fe27d5a
BP
71};
72
cc75061a
BP
73/* Compile-time limit on iovecs, so that we can allocate a maximum-size array
74 * of iovecs on the stack. */
75#define MAX_IOVS 128
76
77/* Maximum number of iovecs that may be passed to sendmsg, capped at a
78 * minimum of _XOPEN_IOV_MAX (16) and a maximum of MAX_IOVS.
79 *
80 * Initialized by nl_sock_create(). */
81static int max_iovs;
82
c6eab56d 83static int nl_sock_cow__(struct nl_sock *);
2fe27d5a
BP
84
85/* Creates a new netlink socket for the given netlink 'protocol'
86 * (NETLINK_ROUTE, NETLINK_GENERIC, ...). Returns 0 and sets '*sockp' to the
cceb11f5 87 * new socket if successful, otherwise returns a positive errno value. */
2fe27d5a 88int
cceb11f5 89nl_sock_create(int protocol, struct nl_sock **sockp)
2fe27d5a
BP
90{
91 struct nl_sock *sock;
92 struct sockaddr_nl local, remote;
2c5a6834 93 socklen_t local_size;
d2b9f5b0 94 int rcvbuf;
2fe27d5a
BP
95 int retval = 0;
96
cc75061a
BP
97 if (!max_iovs) {
98 int save_errno = errno;
99 errno = 0;
100
101 max_iovs = sysconf(_SC_UIO_MAXIOV);
102 if (max_iovs < _XOPEN_IOV_MAX) {
103 if (max_iovs == -1 && errno) {
104 VLOG_WARN("sysconf(_SC_UIO_MAXIOV): %s", strerror(errno));
105 }
106 max_iovs = _XOPEN_IOV_MAX;
107 } else if (max_iovs > MAX_IOVS) {
108 max_iovs = MAX_IOVS;
109 }
110
111 errno = save_errno;
112 }
113
2fe27d5a
BP
114 *sockp = NULL;
115 sock = malloc(sizeof *sock);
116 if (sock == NULL) {
117 return ENOMEM;
118 }
119
120 sock->fd = socket(AF_NETLINK, SOCK_RAW, protocol);
121 if (sock->fd < 0) {
122 VLOG_ERR("fcntl: %s", strerror(errno));
123 goto error;
124 }
7041c3a9 125 sock->protocol = protocol;
2ad204c8 126 sock->dump = NULL;
7d7447df 127 sock->next_seq = 1;
2fe27d5a 128
d2b9f5b0
BP
129 rcvbuf = 1024 * 1024;
130 if (setsockopt(sock->fd, SOL_SOCKET, SO_RCVBUFFORCE,
131 &rcvbuf, sizeof rcvbuf)) {
132 VLOG_WARN_RL(&rl, "setting %d-byte socket receive buffer failed (%s)",
133 rcvbuf, strerror(errno));
134 }
135
cc75061a
BP
136 retval = get_socket_rcvbuf(sock->fd);
137 if (retval < 0) {
138 retval = -retval;
139 goto error;
140 }
141 sock->rcvbuf = retval;
142
2c5a6834 143 /* Connect to kernel (pid 0) as remote address. */
2fe27d5a
BP
144 memset(&remote, 0, sizeof remote);
145 remote.nl_family = AF_NETLINK;
146 remote.nl_pid = 0;
147 if (connect(sock->fd, (struct sockaddr *) &remote, sizeof remote) < 0) {
148 VLOG_ERR("connect(0): %s", strerror(errno));
2c5a6834
BP
149 goto error;
150 }
151
152 /* Obtain pid assigned by kernel. */
153 local_size = sizeof local;
154 if (getsockname(sock->fd, (struct sockaddr *) &local, &local_size) < 0) {
155 VLOG_ERR("getsockname: %s", strerror(errno));
156 goto error;
157 }
158 if (local_size < sizeof local || local.nl_family != AF_NETLINK) {
159 VLOG_ERR("getsockname returned bad Netlink name");
160 retval = EINVAL;
161 goto error;
2fe27d5a 162 }
2c5a6834 163 sock->pid = local.nl_pid;
2fe27d5a 164
2fe27d5a
BP
165 *sockp = sock;
166 return 0;
167
2fe27d5a
BP
168error:
169 if (retval == 0) {
170 retval = errno;
171 if (retval == 0) {
172 retval = EINVAL;
173 }
174 }
175 if (sock->fd >= 0) {
176 close(sock->fd);
177 }
178 free(sock);
179 return retval;
180}
181
c6eab56d
BP
182/* Creates a new netlink socket for the same protocol as 'src'. Returns 0 and
183 * sets '*sockp' to the new socket if successful, otherwise returns a positive
184 * errno value. */
185int
186nl_sock_clone(const struct nl_sock *src, struct nl_sock **sockp)
187{
188 return nl_sock_create(src->protocol, sockp);
189}
190
2fe27d5a
BP
191/* Destroys netlink socket 'sock'. */
192void
193nl_sock_destroy(struct nl_sock *sock)
194{
195 if (sock) {
c6eab56d
BP
196 if (sock->dump) {
197 sock->dump = NULL;
198 } else {
199 close(sock->fd);
c6eab56d
BP
200 free(sock);
201 }
2fe27d5a
BP
202 }
203}
204
cceb11f5
BP
205/* Tries to add 'sock' as a listener for 'multicast_group'. Returns 0 if
206 * successful, otherwise a positive errno value.
207 *
a838c4fe
BP
208 * A socket that is subscribed to a multicast group that receives asynchronous
209 * notifications must not be used for Netlink transactions or dumps, because
210 * transactions and dumps can cause notifications to be lost.
211 *
cceb11f5
BP
212 * Multicast group numbers are always positive.
213 *
214 * It is not an error to attempt to join a multicast group to which a socket
215 * already belongs. */
216int
217nl_sock_join_mcgroup(struct nl_sock *sock, unsigned int multicast_group)
218{
c6eab56d
BP
219 int error = nl_sock_cow__(sock);
220 if (error) {
221 return error;
222 }
cceb11f5
BP
223 if (setsockopt(sock->fd, SOL_NETLINK, NETLINK_ADD_MEMBERSHIP,
224 &multicast_group, sizeof multicast_group) < 0) {
225 VLOG_WARN("could not join multicast group %u (%s)",
226 multicast_group, strerror(errno));
227 return errno;
228 }
229 return 0;
230}
231
232/* Tries to make 'sock' stop listening to 'multicast_group'. Returns 0 if
233 * successful, otherwise a positive errno value.
234 *
235 * Multicast group numbers are always positive.
236 *
237 * It is not an error to attempt to leave a multicast group to which a socket
238 * does not belong.
239 *
240 * On success, reading from 'sock' will still return any messages that were
241 * received on 'multicast_group' before the group was left. */
242int
243nl_sock_leave_mcgroup(struct nl_sock *sock, unsigned int multicast_group)
244{
c6eab56d 245 assert(!sock->dump);
cceb11f5
BP
246 if (setsockopt(sock->fd, SOL_NETLINK, NETLINK_DROP_MEMBERSHIP,
247 &multicast_group, sizeof multicast_group) < 0) {
248 VLOG_WARN("could not leave multicast group %u (%s)",
249 multicast_group, strerror(errno));
250 return errno;
251 }
252 return 0;
253}
254
c6eab56d
BP
255static int
256nl_sock_send__(struct nl_sock *sock, const struct ofpbuf *msg, bool wait)
2fe27d5a
BP
257{
258 struct nlmsghdr *nlmsg = nl_msg_nlmsghdr(msg);
259 int error;
260
261 nlmsg->nlmsg_len = msg->size;
7d7447df 262 nlmsg->nlmsg_seq = nl_sock_allocate_seq(sock, 1);
2fe27d5a
BP
263 nlmsg->nlmsg_pid = sock->pid;
264 do {
265 int retval;
266 retval = send(sock->fd, msg->data, msg->size, wait ? 0 : MSG_DONTWAIT);
267 error = retval < 0 ? errno : 0;
268 } while (error == EINTR);
7041c3a9 269 log_nlmsg(__func__, error, msg->data, msg->size, sock->protocol);
2fe27d5a
BP
270 if (!error) {
271 COVERAGE_INC(netlink_sent);
272 }
273 return error;
274}
275
c6eab56d
BP
276/* Tries to send 'msg', which must contain a Netlink message, to the kernel on
277 * 'sock'. nlmsg_len in 'msg' will be finalized to match msg->size, and
278 * nlmsg_pid will be set to 'sock''s pid, before the message is sent.
279 *
280 * Returns 0 if successful, otherwise a positive errno value. If
281 * 'wait' is true, then the send will wait until buffer space is ready;
282 * otherwise, returns EAGAIN if the 'sock' send buffer is full. */
283int
284nl_sock_send(struct nl_sock *sock, const struct ofpbuf *msg, bool wait)
285{
286 int error = nl_sock_cow__(sock);
287 if (error) {
288 return error;
289 }
290 return nl_sock_send__(sock, msg, wait);
291}
292
2fe27d5a
BP
293/* This stress option is useful for testing that OVS properly tolerates
294 * -ENOBUFS on NetLink sockets. Such errors are unavoidable because they can
295 * occur if the kernel cannot temporarily allocate enough GFP_ATOMIC memory to
296 * reply to a request. They can also occur if messages arrive on a multicast
297 * channel faster than OVS can process them. */
298STRESS_OPTION(
299 netlink_overflow, "simulate netlink socket receive buffer overflow",
300 5, 1, -1, 100);
301
c6eab56d 302static int
72d32ac0 303nl_sock_recv__(struct nl_sock *sock, struct ofpbuf *buf, bool wait)
2fe27d5a 304{
72d32ac0
BP
305 /* We can't accurately predict the size of the data to be received. The
306 * caller is supposed to have allocated enough space in 'buf' to handle the
307 * "typical" case. To handle exceptions, we make available enough space in
308 * 'tail' to allow Netlink messages to be up to 64 kB long (a reasonable
309 * figure since that's the maximum length of a Netlink attribute). */
2fe27d5a 310 struct nlmsghdr *nlmsghdr;
72d32ac0 311 uint8_t tail[65536];
fc999dda 312 struct iovec iov[2];
fc999dda
BP
313 struct msghdr msg;
314 ssize_t retval;
315
72d32ac0
BP
316 assert(buf->allocated >= sizeof *nlmsghdr);
317 ofpbuf_clear(buf);
2fe27d5a 318
72d32ac0
BP
319 iov[0].iov_base = buf->base;
320 iov[0].iov_len = buf->allocated;
fc999dda 321 iov[1].iov_base = tail;
72d32ac0 322 iov[1].iov_len = sizeof tail;
fc999dda
BP
323
324 memset(&msg, 0, sizeof msg);
325 msg.msg_iov = iov;
326 msg.msg_iovlen = 2;
327
2fe27d5a 328 do {
fc999dda
BP
329 retval = recvmsg(sock->fd, &msg, wait ? 0 : MSG_DONTWAIT);
330 } while (retval < 0 && errno == EINTR);
331
332 if (retval < 0) {
333 int error = errno;
334 if (error == ENOBUFS) {
335 /* Socket receive buffer overflow dropped one or more messages that
336 * the kernel tried to send to us. */
337 COVERAGE_INC(netlink_overflow);
338 }
fc999dda 339 return error;
2fe27d5a 340 }
fc999dda 341
2fe27d5a 342 if (msg.msg_flags & MSG_TRUNC) {
72d32ac0
BP
343 VLOG_ERR_RL(&rl, "truncated message (longer than %zu bytes)",
344 sizeof tail);
fc999dda 345 return E2BIG;
2fe27d5a 346 }
2fe27d5a 347
fc999dda
BP
348 nlmsghdr = buf->data;
349 if (retval < sizeof *nlmsghdr
2fe27d5a 350 || nlmsghdr->nlmsg_len < sizeof *nlmsghdr
fc999dda 351 || nlmsghdr->nlmsg_len > retval) {
72d32ac0
BP
352 VLOG_ERR_RL(&rl, "received invalid nlmsg (%zd bytes < %zu)",
353 retval, sizeof *nlmsghdr);
2fe27d5a
BP
354 return EPROTO;
355 }
356
357 if (STRESS(netlink_overflow)) {
2fe27d5a
BP
358 return ENOBUFS;
359 }
360
72d32ac0
BP
361 buf->size = MIN(retval, buf->allocated);
362 if (retval > buf->allocated) {
363 COVERAGE_INC(netlink_recv_jumbo);
364 ofpbuf_put(buf, tail, retval - buf->allocated);
365 }
366
7041c3a9 367 log_nlmsg(__func__, 0, buf->data, buf->size, sock->protocol);
2fe27d5a
BP
368 COVERAGE_INC(netlink_received);
369
370 return 0;
371}
372
72d32ac0
BP
373/* Tries to receive a Netlink message from the kernel on 'sock' into 'buf'. If
374 * 'wait' is true, waits for a message to be ready. Otherwise, fails with
375 * EAGAIN if the 'sock' receive buffer is empty.
376 *
377 * The caller must have initialized 'buf' with an allocation of at least
378 * NLMSG_HDRLEN bytes. For best performance, the caller should allocate enough
379 * space for a "typical" message.
380 *
381 * On success, returns 0 and replaces 'buf''s previous content by the received
382 * message. This function expands 'buf''s allocated memory, as necessary, to
383 * hold the actual size of the received message.
c6eab56d 384 *
72d32ac0
BP
385 * On failure, returns a positive errno value and clears 'buf' to zero length.
386 * 'buf' retains its previous memory allocation.
387 *
388 * Regardless of success or failure, this function resets 'buf''s headroom to
389 * 0. */
c6eab56d 390int
72d32ac0 391nl_sock_recv(struct nl_sock *sock, struct ofpbuf *buf, bool wait)
c6eab56d
BP
392{
393 int error = nl_sock_cow__(sock);
394 if (error) {
395 return error;
396 }
72d32ac0 397 return nl_sock_recv__(sock, buf, wait);
cc75061a
BP
398}
399
400static void
401nl_sock_record_errors__(struct nl_transaction **transactions, size_t n,
402 int error)
403{
404 size_t i;
405
406 for (i = 0; i < n; i++) {
72d32ac0
BP
407 struct nl_transaction *txn = transactions[i];
408
409 txn->error = error;
410 if (txn->reply) {
411 ofpbuf_clear(txn->reply);
412 }
cc75061a
BP
413 }
414}
415
416static int
417nl_sock_transact_multiple__(struct nl_sock *sock,
418 struct nl_transaction **transactions, size_t n,
419 size_t *done)
420{
72d32ac0
BP
421 uint64_t tmp_reply_stub[1024 / 8];
422 struct nl_transaction tmp_txn;
423 struct ofpbuf tmp_reply;
424
425 uint32_t base_seq;
cc75061a
BP
426 struct iovec iovs[MAX_IOVS];
427 struct msghdr msg;
428 int error;
429 int i;
430
72d32ac0 431 base_seq = nl_sock_allocate_seq(sock, n);
cc75061a
BP
432 *done = 0;
433 for (i = 0; i < n; i++) {
72d32ac0
BP
434 struct nl_transaction *txn = transactions[i];
435 struct nlmsghdr *nlmsg = nl_msg_nlmsghdr(txn->request);
cc75061a 436
72d32ac0
BP
437 nlmsg->nlmsg_len = txn->request->size;
438 nlmsg->nlmsg_seq = base_seq + i;
cc75061a 439 nlmsg->nlmsg_pid = sock->pid;
cc75061a 440
72d32ac0
BP
441 iovs[i].iov_base = txn->request->data;
442 iovs[i].iov_len = txn->request->size;
cc75061a
BP
443 }
444
445 memset(&msg, 0, sizeof msg);
446 msg.msg_iov = iovs;
447 msg.msg_iovlen = n;
448 do {
449 error = sendmsg(sock->fd, &msg, 0) < 0 ? errno : 0;
450 } while (error == EINTR);
451
452 for (i = 0; i < n; i++) {
72d32ac0 453 struct nl_transaction *txn = transactions[i];
cc75061a 454
72d32ac0 455 log_nlmsg(__func__, error, txn->request->data, txn->request->size,
cc75061a
BP
456 sock->protocol);
457 }
458 if (!error) {
459 COVERAGE_ADD(netlink_sent, n);
460 }
461
462 if (error) {
463 return error;
464 }
465
72d32ac0
BP
466 ofpbuf_use_stub(&tmp_reply, tmp_reply_stub, sizeof tmp_reply_stub);
467 tmp_txn.request = NULL;
468 tmp_txn.reply = &tmp_reply;
469 tmp_txn.error = 0;
cc75061a 470 while (n > 0) {
72d32ac0
BP
471 struct nl_transaction *buf_txn, *txn;
472 uint32_t seq;
473
474 /* Find a transaction whose buffer we can use for receiving a reply.
475 * If no such transaction is left, use tmp_txn. */
476 buf_txn = &tmp_txn;
477 for (i = 0; i < n; i++) {
478 if (transactions[i]->reply) {
479 buf_txn = transactions[i];
480 break;
481 }
482 }
cc75061a 483
72d32ac0
BP
484 /* Receive a reply. */
485 error = nl_sock_recv__(sock, buf_txn->reply, false);
486 if (error) {
487 if (error == EAGAIN) {
488 nl_sock_record_errors__(transactions, n, 0);
489 *done += n;
490 error = 0;
491 }
492 break;
cc75061a
BP
493 }
494
72d32ac0
BP
495 /* Match the reply up with a transaction. */
496 seq = nl_msg_nlmsghdr(buf_txn->reply)->nlmsg_seq;
497 if (seq < base_seq || seq >= base_seq + n) {
498 VLOG_DBG_RL(&rl, "ignoring unexpected seq %#"PRIx32, seq);
cc75061a
BP
499 continue;
500 }
72d32ac0
BP
501 i = seq - base_seq;
502 txn = transactions[i];
cc75061a 503
72d32ac0
BP
504 /* Fill in the results for 'txn'. */
505 if (nl_msg_nlmsgerr(buf_txn->reply, &txn->error)) {
506 if (txn->reply) {
507 ofpbuf_clear(txn->reply);
508 }
509 if (txn->error) {
cc75061a 510 VLOG_DBG_RL(&rl, "received NAK error=%d (%s)",
72d32ac0 511 error, strerror(txn->error));
cc75061a 512 }
cc75061a 513 } else {
72d32ac0
BP
514 txn->error = 0;
515 if (txn->reply && txn != buf_txn) {
516 /* Swap buffers. */
517 struct ofpbuf *reply = buf_txn->reply;
518 buf_txn->reply = txn->reply;
519 txn->reply = reply;
520 }
cc75061a
BP
521 }
522
72d32ac0
BP
523 /* Fill in the results for transactions before 'txn'. (We have to do
524 * this after the results for 'txn' itself because of the buffer swap
525 * above.) */
526 nl_sock_record_errors__(transactions, i, 0);
527
528 /* Advance. */
cc75061a
BP
529 *done += i + 1;
530 transactions += i + 1;
531 n -= i + 1;
72d32ac0 532 base_seq += i + 1;
cc75061a 533 }
72d32ac0 534 ofpbuf_uninit(&tmp_reply);
cc75061a 535
72d32ac0 536 return error;
cc75061a
BP
537}
538
72d32ac0
BP
539/* Sends the 'request' member of the 'n' transactions in 'transactions' on
540 * 'sock', in order, and receives responses to all of them. Fills in the
cc75061a 541 * 'error' member of each transaction with 0 if it was successful, otherwise
72d32ac0
BP
542 * with a positive errno value. If 'reply' is nonnull, then it will be filled
543 * with the reply if the message receives a detailed reply. In other cases,
544 * i.e. where the request failed or had no reply beyond an indication of
545 * success, 'reply' will be cleared if it is nonnull.
cc75061a
BP
546 *
547 * The caller is responsible for destroying each request and reply, and the
548 * transactions array itself.
549 *
550 * Before sending each message, this function will finalize nlmsg_len in each
72d32ac0
BP
551 * 'request' to match the ofpbuf's size, set nlmsg_pid to 'sock''s pid, and
552 * initialize nlmsg_seq.
cc75061a
BP
553 *
554 * Bare Netlink is an unreliable transport protocol. This function layers
555 * reliable delivery and reply semantics on top of bare Netlink. See
556 * nl_sock_transact() for some caveats.
557 */
558void
559nl_sock_transact_multiple(struct nl_sock *sock,
560 struct nl_transaction **transactions, size_t n)
561{
562 int max_batch_count;
563 int error;
564
565 if (!n) {
566 return;
567 }
568
569 error = nl_sock_cow__(sock);
570 if (error) {
571 nl_sock_record_errors__(transactions, n, error);
572 return;
573 }
574
575 /* In theory, every request could have a 64 kB reply. But the default and
576 * maximum socket rcvbuf size with typical Dom0 memory sizes both tend to
577 * be a bit below 128 kB, so that would only allow a single message in a
578 * "batch". So we assume that replies average (at most) 4 kB, which allows
579 * a good deal of batching.
580 *
581 * In practice, most of the requests that we batch either have no reply at
582 * all or a brief reply. */
583 max_batch_count = MAX(sock->rcvbuf / 4096, 1);
584 max_batch_count = MIN(max_batch_count, max_iovs);
585
586 while (n > 0) {
587 size_t count, bytes;
588 size_t done;
589
590 /* Batch up to 'max_batch_count' transactions. But cap it at about a
591 * page of requests total because big skbuffs are expensive to
592 * allocate in the kernel. */
593#if defined(PAGESIZE)
594 enum { MAX_BATCH_BYTES = MAX(1, PAGESIZE - 512) };
595#else
596 enum { MAX_BATCH_BYTES = 4096 - 512 };
597#endif
598 bytes = transactions[0]->request->size;
599 for (count = 1; count < n && count < max_batch_count; count++) {
600 if (bytes + transactions[count]->request->size > MAX_BATCH_BYTES) {
601 break;
602 }
603 bytes += transactions[count]->request->size;
604 }
605
606 error = nl_sock_transact_multiple__(sock, transactions, count, &done);
607 transactions += done;
608 n -= done;
609
610 if (error == ENOBUFS) {
611 VLOG_DBG_RL(&rl, "receive buffer overflow, resending request");
612 } else if (error) {
613 VLOG_ERR_RL(&rl, "transaction error (%s)", strerror(error));
614 nl_sock_record_errors__(transactions, n, error);
615 }
616 }
617}
618
2fe27d5a
BP
619/* Sends 'request' to the kernel via 'sock' and waits for a response. If
620 * successful, returns 0. On failure, returns a positive errno value.
621 *
622 * If 'replyp' is nonnull, then on success '*replyp' is set to the kernel's
623 * reply, which the caller is responsible for freeing with ofpbuf_delete(), and
624 * on failure '*replyp' is set to NULL. If 'replyp' is null, then the kernel's
625 * reply, if any, is discarded.
626 *
7d7447df
BP
627 * Before the message is sent, nlmsg_len in 'request' will be finalized to
628 * match msg->size, nlmsg_pid will be set to 'sock''s pid, and nlmsg_seq will
629 * be initialized, NLM_F_ACK will be set in nlmsg_flags.
2fe27d5a
BP
630 *
631 * The caller is responsible for destroying 'request'.
632 *
633 * Bare Netlink is an unreliable transport protocol. This function layers
634 * reliable delivery and reply semantics on top of bare Netlink.
635 *
636 * In Netlink, sending a request to the kernel is reliable enough, because the
637 * kernel will tell us if the message cannot be queued (and we will in that
638 * case put it on the transmit queue and wait until it can be delivered).
639 *
640 * Receiving the reply is the real problem: if the socket buffer is full when
641 * the kernel tries to send the reply, the reply will be dropped. However, the
642 * kernel sets a flag that a reply has been dropped. The next call to recv
643 * then returns ENOBUFS. We can then re-send the request.
644 *
645 * Caveats:
646 *
647 * 1. Netlink depends on sequence numbers to match up requests and
648 * replies. The sender of a request supplies a sequence number, and
649 * the reply echos back that sequence number.
650 *
651 * This is fine, but (1) some kernel netlink implementations are
652 * broken, in that they fail to echo sequence numbers and (2) this
653 * function will drop packets with non-matching sequence numbers, so
654 * that only a single request can be usefully transacted at a time.
655 *
656 * 2. Resending the request causes it to be re-executed, so the request
657 * needs to be idempotent.
658 */
659int
cc75061a
BP
660nl_sock_transact(struct nl_sock *sock, const struct ofpbuf *request,
661 struct ofpbuf **replyp)
2fe27d5a 662{
cc75061a
BP
663 struct nl_transaction *transactionp;
664 struct nl_transaction transaction;
2fe27d5a 665
cc75061a 666 transaction.request = (struct ofpbuf *) request;
72d32ac0 667 transaction.reply = replyp ? ofpbuf_new(1024) : NULL;
cc75061a 668 transactionp = &transaction;
72d32ac0 669
cc75061a 670 nl_sock_transact_multiple(sock, &transactionp, 1);
72d32ac0 671
2fe27d5a 672 if (replyp) {
72d32ac0
BP
673 if (transaction.error) {
674 ofpbuf_delete(transaction.reply);
675 *replyp = NULL;
676 } else {
677 *replyp = transaction.reply;
678 }
2fe27d5a 679 }
72d32ac0 680
cc75061a 681 return transaction.error;
2fe27d5a
BP
682}
683
6b7c12fd
BP
684/* Drain all the messages currently in 'sock''s receive queue. */
685int
686nl_sock_drain(struct nl_sock *sock)
687{
c6eab56d
BP
688 int error = nl_sock_cow__(sock);
689 if (error) {
690 return error;
691 }
6b7c12fd
BP
692 return drain_rcvbuf(sock->fd);
693}
694
c6eab56d
BP
695/* The client is attempting some operation on 'sock'. If 'sock' has an ongoing
696 * dump operation, then replace 'sock''s fd with a new socket and hand 'sock''s
697 * old fd over to the dump. */
698static int
699nl_sock_cow__(struct nl_sock *sock)
700{
701 struct nl_sock *copy;
702 uint32_t tmp_pid;
703 int tmp_fd;
704 int error;
705
706 if (!sock->dump) {
707 return 0;
708 }
709
710 error = nl_sock_clone(sock, &copy);
711 if (error) {
712 return error;
713 }
714
715 tmp_fd = sock->fd;
716 sock->fd = copy->fd;
717 copy->fd = tmp_fd;
718
719 tmp_pid = sock->pid;
720 sock->pid = copy->pid;
721 copy->pid = tmp_pid;
722
723 sock->dump->sock = copy;
724 sock->dump = NULL;
725
726 return 0;
727}
728
2fe27d5a
BP
729/* Starts a Netlink "dump" operation, by sending 'request' to the kernel via
730 * 'sock', and initializes 'dump' to reflect the state of the operation.
731 *
732 * nlmsg_len in 'msg' will be finalized to match msg->size, and nlmsg_pid will
733 * be set to 'sock''s pid, before the message is sent. NLM_F_DUMP and
734 * NLM_F_ACK will be set in nlmsg_flags.
735 *
c6eab56d
BP
736 * This Netlink socket library is designed to ensure that the dump is reliable
737 * and that it will not interfere with other operations on 'sock', including
738 * destroying or sending and receiving messages on 'sock'. One corner case is
739 * not handled:
2fe27d5a 740 *
c6eab56d
BP
741 * - If 'sock' has been used to send a request (e.g. with nl_sock_send())
742 * whose response has not yet been received (e.g. with nl_sock_recv()).
743 * This is unusual: usually nl_sock_transact() is used to send a message
744 * and receive its reply all in one go.
2fe27d5a
BP
745 *
746 * This function provides no status indication. An error status for the entire
747 * dump operation is provided when it is completed by calling nl_dump_done().
748 *
c6eab56d
BP
749 * The caller is responsible for destroying 'request'.
750 *
751 * The new 'dump' is independent of 'sock'. 'sock' and 'dump' may be destroyed
752 * in either order.
2fe27d5a
BP
753 */
754void
755nl_dump_start(struct nl_dump *dump,
756 struct nl_sock *sock, const struct ofpbuf *request)
757{
72d32ac0 758 ofpbuf_init(&dump->buffer, 4096);
a838c4fe
BP
759 if (sock->dump) {
760 /* 'sock' already has an ongoing dump. Clone the socket because
761 * Netlink only allows one dump at a time. */
c6eab56d
BP
762 dump->status = nl_sock_clone(sock, &dump->sock);
763 if (dump->status) {
764 return;
765 }
766 } else {
767 sock->dump = dump;
768 dump->sock = sock;
769 dump->status = 0;
770 }
7d7447df
BP
771
772 nl_msg_nlmsghdr(request)->nlmsg_flags |= NLM_F_DUMP | NLM_F_ACK;
c6eab56d 773 dump->status = nl_sock_send__(sock, request, true);
7d7447df 774 dump->seq = nl_msg_nlmsghdr(request)->nlmsg_seq;
2fe27d5a
BP
775}
776
777/* Helper function for nl_dump_next(). */
778static int
72d32ac0 779nl_dump_recv(struct nl_dump *dump)
2fe27d5a
BP
780{
781 struct nlmsghdr *nlmsghdr;
2fe27d5a
BP
782 int retval;
783
72d32ac0 784 retval = nl_sock_recv__(dump->sock, &dump->buffer, true);
2fe27d5a
BP
785 if (retval) {
786 return retval == EINTR ? EAGAIN : retval;
787 }
2fe27d5a 788
72d32ac0 789 nlmsghdr = nl_msg_nlmsghdr(&dump->buffer);
2fe27d5a 790 if (dump->seq != nlmsghdr->nlmsg_seq) {
727ef33f 791 VLOG_DBG_RL(&rl, "ignoring seq %#"PRIx32" != expected %#"PRIx32,
2fe27d5a
BP
792 nlmsghdr->nlmsg_seq, dump->seq);
793 return EAGAIN;
794 }
795
72d32ac0 796 if (nl_msg_nlmsgerr(&dump->buffer, &retval)) {
2fe27d5a
BP
797 VLOG_INFO_RL(&rl, "netlink dump request error (%s)",
798 strerror(retval));
799 return retval && retval != EAGAIN ? retval : EPROTO;
800 }
801
802 return 0;
803}
804
805/* Attempts to retrieve another reply from 'dump', which must have been
806 * initialized with nl_dump_start().
807 *
808 * If successful, returns true and points 'reply->data' and 'reply->size' to
809 * the message that was retrieved. The caller must not modify 'reply' (because
810 * it points into the middle of a larger buffer).
811 *
812 * On failure, returns false and sets 'reply->data' to NULL and 'reply->size'
813 * to 0. Failure might indicate an actual error or merely the end of replies.
814 * An error status for the entire dump operation is provided when it is
815 * completed by calling nl_dump_done().
816 */
817bool
818nl_dump_next(struct nl_dump *dump, struct ofpbuf *reply)
819{
820 struct nlmsghdr *nlmsghdr;
821
822 reply->data = NULL;
823 reply->size = 0;
824 if (dump->status) {
825 return false;
826 }
827
72d32ac0
BP
828 while (!dump->buffer.size) {
829 int retval = nl_dump_recv(dump);
2fe27d5a 830 if (retval) {
72d32ac0 831 ofpbuf_clear(&dump->buffer);
2fe27d5a
BP
832 if (retval != EAGAIN) {
833 dump->status = retval;
834 return false;
835 }
836 }
837 }
838
72d32ac0 839 nlmsghdr = nl_msg_next(&dump->buffer, reply);
2fe27d5a
BP
840 if (!nlmsghdr) {
841 VLOG_WARN_RL(&rl, "netlink dump reply contains message fragment");
842 dump->status = EPROTO;
843 return false;
844 } else if (nlmsghdr->nlmsg_type == NLMSG_DONE) {
845 dump->status = EOF;
846 return false;
847 }
848
849 return true;
850}
851
852/* Completes Netlink dump operation 'dump', which must have been initialized
853 * with nl_dump_start(). Returns 0 if the dump operation was error-free,
854 * otherwise a positive errno value describing the problem. */
855int
856nl_dump_done(struct nl_dump *dump)
857{
858 /* Drain any remaining messages that the client didn't read. Otherwise the
859 * kernel will continue to queue them up and waste buffer space. */
860 while (!dump->status) {
861 struct ofpbuf reply;
862 if (!nl_dump_next(dump, &reply)) {
863 assert(dump->status);
864 }
865 }
866
c6eab56d
BP
867 if (dump->sock) {
868 if (dump->sock->dump) {
869 dump->sock->dump = NULL;
870 } else {
871 nl_sock_destroy(dump->sock);
872 }
873 }
72d32ac0 874 ofpbuf_uninit(&dump->buffer);
2fe27d5a
BP
875 return dump->status == EOF ? 0 : dump->status;
876}
877
878/* Causes poll_block() to wake up when any of the specified 'events' (which is
879 * a OR'd combination of POLLIN, POLLOUT, etc.) occur on 'sock'. */
880void
881nl_sock_wait(const struct nl_sock *sock, short int events)
882{
883 poll_fd_wait(sock->fd, events);
884}
50802adb 885
8522ba09
BP
886/* Returns the underlying fd for 'sock', for use in "poll()"-like operations
887 * that can't use nl_sock_wait().
888 *
889 * It's a little tricky to use the returned fd correctly, because nl_sock does
890 * "copy on write" to allow a single nl_sock to be used for notifications,
891 * transactions, and dumps. If 'sock' is used only for notifications and
892 * transactions (and never for dump) then the usage is safe. */
893int
894nl_sock_fd(const struct nl_sock *sock)
895{
896 return sock->fd;
897}
898
50802adb
JG
899/* Returns the PID associated with this socket. */
900uint32_t
901nl_sock_pid(const struct nl_sock *sock)
902{
903 return sock->pid;
904}
2fe27d5a
BP
905\f
906/* Miscellaneous. */
907
2ad204c8
BP
908struct genl_family {
909 struct hmap_node hmap_node;
910 uint16_t id;
911 char *name;
912};
913
914static struct hmap genl_families = HMAP_INITIALIZER(&genl_families);
915
2fe27d5a
BP
916static const struct nl_policy family_policy[CTRL_ATTR_MAX + 1] = {
917 [CTRL_ATTR_FAMILY_ID] = {.type = NL_A_U16},
213a13ed 918 [CTRL_ATTR_MCAST_GROUPS] = {.type = NL_A_NESTED, .optional = true},
2fe27d5a
BP
919};
920
2ad204c8
BP
921static struct genl_family *
922find_genl_family_by_id(uint16_t id)
923{
924 struct genl_family *family;
925
926 HMAP_FOR_EACH_IN_BUCKET (family, hmap_node, hash_int(id, 0),
927 &genl_families) {
928 if (family->id == id) {
929 return family;
930 }
931 }
932 return NULL;
933}
934
935static void
936define_genl_family(uint16_t id, const char *name)
937{
938 struct genl_family *family = find_genl_family_by_id(id);
939
940 if (family) {
941 if (!strcmp(family->name, name)) {
942 return;
943 }
944 free(family->name);
945 } else {
946 family = xmalloc(sizeof *family);
947 family->id = id;
948 hmap_insert(&genl_families, &family->hmap_node, hash_int(id, 0));
949 }
950 family->name = xstrdup(name);
951}
952
953static const char *
954genl_family_to_name(uint16_t id)
955{
956 if (id == GENL_ID_CTRL) {
957 return "control";
958 } else {
959 struct genl_family *family = find_genl_family_by_id(id);
960 return family ? family->name : "unknown";
961 }
962}
963
e408762f 964static int
2a477244
BP
965do_lookup_genl_family(const char *name, struct nlattr **attrs,
966 struct ofpbuf **replyp)
2fe27d5a
BP
967{
968 struct nl_sock *sock;
969 struct ofpbuf request, *reply;
2a477244 970 int error;
2fe27d5a 971
2a477244
BP
972 *replyp = NULL;
973 error = nl_sock_create(NETLINK_GENERIC, &sock);
974 if (error) {
975 return error;
2fe27d5a
BP
976 }
977
978 ofpbuf_init(&request, 0);
979 nl_msg_put_genlmsghdr(&request, 0, GENL_ID_CTRL, NLM_F_REQUEST,
980 CTRL_CMD_GETFAMILY, 1);
981 nl_msg_put_string(&request, CTRL_ATTR_FAMILY_NAME, name);
2a477244 982 error = nl_sock_transact(sock, &request, &reply);
2fe27d5a 983 ofpbuf_uninit(&request);
2a477244 984 if (error) {
2fe27d5a 985 nl_sock_destroy(sock);
2a477244 986 return error;
2fe27d5a
BP
987 }
988
989 if (!nl_policy_parse(reply, NLMSG_HDRLEN + GENL_HDRLEN,
2a477244
BP
990 family_policy, attrs, ARRAY_SIZE(family_policy))
991 || nl_attr_get_u16(attrs[CTRL_ATTR_FAMILY_ID]) == 0) {
2fe27d5a
BP
992 nl_sock_destroy(sock);
993 ofpbuf_delete(reply);
2a477244 994 return EPROTO;
2fe27d5a
BP
995 }
996
2fe27d5a 997 nl_sock_destroy(sock);
2a477244
BP
998 *replyp = reply;
999 return 0;
2fe27d5a
BP
1000}
1001
e408762f
EJ
1002/* Finds the multicast group called 'group_name' in genl family 'family_name'.
1003 * When successful, writes its result to 'multicast_group' and returns 0.
213a13ed
EJ
1004 * Otherwise, clears 'multicast_group' and returns a positive error code.
1005 *
1006 * Some kernels do not support looking up a multicast group with this function.
1007 * In this case, 'multicast_group' will be populated with 'fallback'. */
e408762f
EJ
1008int
1009nl_lookup_genl_mcgroup(const char *family_name, const char *group_name,
213a13ed 1010 unsigned int *multicast_group, unsigned int fallback)
e408762f
EJ
1011{
1012 struct nlattr *family_attrs[ARRAY_SIZE(family_policy)];
6d23c6f4 1013 const struct nlattr *mc;
2a477244 1014 struct ofpbuf *reply;
e408762f 1015 unsigned int left;
2a477244 1016 int error;
e408762f
EJ
1017
1018 *multicast_group = 0;
2a477244
BP
1019 error = do_lookup_genl_family(family_name, family_attrs, &reply);
1020 if (error) {
1021 return error;
e408762f
EJ
1022 }
1023
213a13ed
EJ
1024 if (!family_attrs[CTRL_ATTR_MCAST_GROUPS]) {
1025 *multicast_group = fallback;
1026 VLOG_WARN("%s-%s: has no multicast group, using fallback %d",
1027 family_name, group_name, *multicast_group);
1028 error = 0;
1029 goto exit;
1030 }
1031
6d23c6f4 1032 NL_NESTED_FOR_EACH (mc, left, family_attrs[CTRL_ATTR_MCAST_GROUPS]) {
e408762f
EJ
1033 static const struct nl_policy mc_policy[] = {
1034 [CTRL_ATTR_MCAST_GRP_ID] = {.type = NL_A_U32},
1035 [CTRL_ATTR_MCAST_GRP_NAME] = {.type = NL_A_STRING},
1036 };
1037
1038 struct nlattr *mc_attrs[ARRAY_SIZE(mc_policy)];
1039 const char *mc_name;
1040
1041 if (!nl_parse_nested(mc, mc_policy, mc_attrs, ARRAY_SIZE(mc_policy))) {
2a477244
BP
1042 error = EPROTO;
1043 goto exit;
e408762f
EJ
1044 }
1045
1046 mc_name = nl_attr_get_string(mc_attrs[CTRL_ATTR_MCAST_GRP_NAME]);
1047 if (!strcmp(group_name, mc_name)) {
1048 *multicast_group =
1049 nl_attr_get_u32(mc_attrs[CTRL_ATTR_MCAST_GRP_ID]);
2a477244
BP
1050 error = 0;
1051 goto exit;
e408762f
EJ
1052 }
1053 }
2a477244 1054 error = EPROTO;
e408762f 1055
2a477244
BP
1056exit:
1057 ofpbuf_delete(reply);
1058 return error;
e408762f
EJ
1059}
1060
2fe27d5a
BP
1061/* If '*number' is 0, translates the given Generic Netlink family 'name' to a
1062 * number and stores it in '*number'. If successful, returns 0 and the caller
1063 * may use '*number' as the family number. On failure, returns a positive
1064 * errno value and '*number' caches the errno value. */
1065int
1066nl_lookup_genl_family(const char *name, int *number)
1067{
1068 if (*number == 0) {
2a477244
BP
1069 struct nlattr *attrs[ARRAY_SIZE(family_policy)];
1070 struct ofpbuf *reply;
1071 int error;
1072
1073 error = do_lookup_genl_family(name, attrs, &reply);
1074 if (!error) {
1075 *number = nl_attr_get_u16(attrs[CTRL_ATTR_FAMILY_ID]);
1076 define_genl_family(*number, name);
1077 } else {
1078 *number = -error;
1079 }
1080 ofpbuf_delete(reply);
1081
2fe27d5a
BP
1082 assert(*number != 0);
1083 }
1084 return *number > 0 ? 0 : -*number;
1085}
1086\f
7d7447df
BP
1087static uint32_t
1088nl_sock_allocate_seq(struct nl_sock *sock, unsigned int n)
1089{
1090 uint32_t seq = sock->next_seq;
1091
1092 sock->next_seq += n;
1093
1094 /* Make it impossible for the next request for sequence numbers to wrap
1095 * around to 0. Start over with 1 to avoid ever using a sequence number of
1096 * 0, because the kernel uses sequence number 0 for notifications. */
1097 if (sock->next_seq >= UINT32_MAX / 2) {
1098 sock->next_seq = 1;
1099 }
1100
1101 return seq;
1102}
1103
2fe27d5a 1104static void
2ad204c8 1105nlmsghdr_to_string(const struct nlmsghdr *h, int protocol, struct ds *ds)
2fe27d5a
BP
1106{
1107 struct nlmsg_flag {
1108 unsigned int bits;
1109 const char *name;
1110 };
1111 static const struct nlmsg_flag flags[] = {
1112 { NLM_F_REQUEST, "REQUEST" },
1113 { NLM_F_MULTI, "MULTI" },
1114 { NLM_F_ACK, "ACK" },
1115 { NLM_F_ECHO, "ECHO" },
1116 { NLM_F_DUMP, "DUMP" },
1117 { NLM_F_ROOT, "ROOT" },
1118 { NLM_F_MATCH, "MATCH" },
1119 { NLM_F_ATOMIC, "ATOMIC" },
1120 };
1121 const struct nlmsg_flag *flag;
1122 uint16_t flags_left;
1123
1124 ds_put_format(ds, "nl(len:%"PRIu32", type=%"PRIu16,
1125 h->nlmsg_len, h->nlmsg_type);
1126 if (h->nlmsg_type == NLMSG_NOOP) {
1127 ds_put_cstr(ds, "(no-op)");
1128 } else if (h->nlmsg_type == NLMSG_ERROR) {
1129 ds_put_cstr(ds, "(error)");
1130 } else if (h->nlmsg_type == NLMSG_DONE) {
1131 ds_put_cstr(ds, "(done)");
1132 } else if (h->nlmsg_type == NLMSG_OVERRUN) {
1133 ds_put_cstr(ds, "(overrun)");
1134 } else if (h->nlmsg_type < NLMSG_MIN_TYPE) {
1135 ds_put_cstr(ds, "(reserved)");
2ad204c8
BP
1136 } else if (protocol == NETLINK_GENERIC) {
1137 ds_put_format(ds, "(%s)", genl_family_to_name(h->nlmsg_type));
2fe27d5a
BP
1138 } else {
1139 ds_put_cstr(ds, "(family-defined)");
1140 }
1141 ds_put_format(ds, ", flags=%"PRIx16, h->nlmsg_flags);
1142 flags_left = h->nlmsg_flags;
1143 for (flag = flags; flag < &flags[ARRAY_SIZE(flags)]; flag++) {
1144 if ((flags_left & flag->bits) == flag->bits) {
1145 ds_put_format(ds, "[%s]", flag->name);
1146 flags_left &= ~flag->bits;
1147 }
1148 }
1149 if (flags_left) {
1150 ds_put_format(ds, "[OTHER:%"PRIx16"]", flags_left);
1151 }
2c5a6834
BP
1152 ds_put_format(ds, ", seq=%"PRIx32", pid=%"PRIu32,
1153 h->nlmsg_seq, h->nlmsg_pid);
2fe27d5a
BP
1154}
1155
1156static char *
7041c3a9 1157nlmsg_to_string(const struct ofpbuf *buffer, int protocol)
2fe27d5a
BP
1158{
1159 struct ds ds = DS_EMPTY_INITIALIZER;
1160 const struct nlmsghdr *h = ofpbuf_at(buffer, 0, NLMSG_HDRLEN);
1161 if (h) {
2ad204c8 1162 nlmsghdr_to_string(h, protocol, &ds);
2fe27d5a
BP
1163 if (h->nlmsg_type == NLMSG_ERROR) {
1164 const struct nlmsgerr *e;
1165 e = ofpbuf_at(buffer, NLMSG_HDRLEN,
1166 NLMSG_ALIGN(sizeof(struct nlmsgerr)));
1167 if (e) {
1168 ds_put_format(&ds, " error(%d", e->error);
1169 if (e->error < 0) {
1170 ds_put_format(&ds, "(%s)", strerror(-e->error));
1171 }
1172 ds_put_cstr(&ds, ", in-reply-to(");
2ad204c8 1173 nlmsghdr_to_string(&e->msg, protocol, &ds);
2fe27d5a
BP
1174 ds_put_cstr(&ds, "))");
1175 } else {
1176 ds_put_cstr(&ds, " error(truncated)");
1177 }
1178 } else if (h->nlmsg_type == NLMSG_DONE) {
1179 int *error = ofpbuf_at(buffer, NLMSG_HDRLEN, sizeof *error);
1180 if (error) {
1181 ds_put_format(&ds, " done(%d", *error);
1182 if (*error < 0) {
1183 ds_put_format(&ds, "(%s)", strerror(-*error));
1184 }
1185 ds_put_cstr(&ds, ")");
1186 } else {
1187 ds_put_cstr(&ds, " done(truncated)");
1188 }
7041c3a9
BP
1189 } else if (protocol == NETLINK_GENERIC) {
1190 struct genlmsghdr *genl = nl_msg_genlmsghdr(buffer);
1191 if (genl) {
1192 ds_put_format(&ds, ",genl(cmd=%"PRIu8",version=%"PRIu8")",
1193 genl->cmd, genl->version);
1194 }
2fe27d5a
BP
1195 }
1196 } else {
1197 ds_put_cstr(&ds, "nl(truncated)");
1198 }
1199 return ds.string;
1200}
1201
1202static void
1203log_nlmsg(const char *function, int error,
7041c3a9 1204 const void *message, size_t size, int protocol)
2fe27d5a
BP
1205{
1206 struct ofpbuf buffer;
1207 char *nlmsg;
1208
1209 if (!VLOG_IS_DBG_ENABLED()) {
1210 return;
1211 }
1212
1213 ofpbuf_use_const(&buffer, message, size);
7041c3a9 1214 nlmsg = nlmsg_to_string(&buffer, protocol);
2fe27d5a
BP
1215 VLOG_DBG_RL(&rl, "%s (%s): %s", function, strerror(error), nlmsg);
1216 free(nlmsg);
1217}