dpif: Make dpif_flow_dump_next() thread-safe.
[sliver-openvswitch.git] / lib / dpif-linux.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18
19 #include "dpif-linux.h"
20
21 #include <ctype.h>
22 #include <errno.h>
23 #include <fcntl.h>
24 #include <inttypes.h>
25 #include <net/if.h>
26 #include <linux/types.h>
27 #include <linux/pkt_sched.h>
28 #include <poll.h>
29 #include <stdlib.h>
30 #include <strings.h>
31 #include <sys/epoll.h>
32 #include <sys/stat.h>
33 #include <unistd.h>
34
35 #include "bitmap.h"
36 #include "dpif-provider.h"
37 #include "dynamic-string.h"
38 #include "flow.h"
39 #include "netdev.h"
40 #include "netdev-linux.h"
41 #include "netdev-vport.h"
42 #include "netlink-notifier.h"
43 #include "netlink-socket.h"
44 #include "netlink.h"
45 #include "odp-util.h"
46 #include "ofpbuf.h"
47 #include "packets.h"
48 #include "poll-loop.h"
49 #include "random.h"
50 #include "shash.h"
51 #include "sset.h"
52 #include "timeval.h"
53 #include "unaligned.h"
54 #include "util.h"
55 #include "vlog.h"
56
57 VLOG_DEFINE_THIS_MODULE(dpif_linux);
58 enum { MAX_PORTS = USHRT_MAX };
59
60 /* This ethtool flag was introduced in Linux 2.6.24, so it might be
61  * missing if we have old headers. */
62 #define ETH_FLAG_LRO      (1 << 15)    /* LRO is enabled */
63
64 struct dpif_linux_dp {
65     /* Generic Netlink header. */
66     uint8_t cmd;
67
68     /* struct ovs_header. */
69     int dp_ifindex;
70
71     /* Attributes. */
72     const char *name;                  /* OVS_DP_ATTR_NAME. */
73     const uint32_t *upcall_pid;        /* OVS_DP_ATTR_UPCALL_PID. */
74     uint32_t user_features;            /* OVS_DP_ATTR_USER_FEATURES */
75     struct ovs_dp_stats stats;         /* OVS_DP_ATTR_STATS. */
76     struct ovs_dp_megaflow_stats megaflow_stats;
77                                        /* OVS_DP_ATTR_MEGAFLOW_STATS.*/
78 };
79
80 static void dpif_linux_dp_init(struct dpif_linux_dp *);
81 static int dpif_linux_dp_from_ofpbuf(struct dpif_linux_dp *,
82                                      const struct ofpbuf *);
83 static void dpif_linux_dp_dump_start(struct nl_dump *);
84 static int dpif_linux_dp_transact(const struct dpif_linux_dp *request,
85                                   struct dpif_linux_dp *reply,
86                                   struct ofpbuf **bufp);
87 static int dpif_linux_dp_get(const struct dpif *, struct dpif_linux_dp *reply,
88                              struct ofpbuf **bufp);
89
90 struct dpif_linux_flow {
91     /* Generic Netlink header. */
92     uint8_t cmd;
93
94     /* struct ovs_header. */
95     unsigned int nlmsg_flags;
96     int dp_ifindex;
97
98     /* Attributes.
99      *
100      * The 'stats' member points to 64-bit data that might only be aligned on
101      * 32-bit boundaries, so get_unaligned_u64() should be used to access its
102      * values.
103      *
104      * If 'actions' is nonnull then OVS_FLOW_ATTR_ACTIONS will be included in
105      * the Netlink version of the command, even if actions_len is zero. */
106     const struct nlattr *key;           /* OVS_FLOW_ATTR_KEY. */
107     size_t key_len;
108     const struct nlattr *mask;          /* OVS_FLOW_ATTR_MASK. */
109     size_t mask_len;
110     const struct nlattr *actions;       /* OVS_FLOW_ATTR_ACTIONS. */
111     size_t actions_len;
112     const struct ovs_flow_stats *stats; /* OVS_FLOW_ATTR_STATS. */
113     const uint8_t *tcp_flags;           /* OVS_FLOW_ATTR_TCP_FLAGS. */
114     const ovs_32aligned_u64 *used;      /* OVS_FLOW_ATTR_USED. */
115     bool clear;                         /* OVS_FLOW_ATTR_CLEAR. */
116 };
117
118 static void dpif_linux_flow_init(struct dpif_linux_flow *);
119 static int dpif_linux_flow_from_ofpbuf(struct dpif_linux_flow *,
120                                        const struct ofpbuf *);
121 static void dpif_linux_flow_to_ofpbuf(const struct dpif_linux_flow *,
122                                       struct ofpbuf *);
123 static int dpif_linux_flow_transact(struct dpif_linux_flow *request,
124                                     struct dpif_linux_flow *reply,
125                                     struct ofpbuf **bufp);
126 static void dpif_linux_flow_get_stats(const struct dpif_linux_flow *,
127                                       struct dpif_flow_stats *);
128
129 /* One of the dpif channels between the kernel and userspace. */
130 struct dpif_channel {
131     struct nl_sock *sock;       /* Netlink socket. */
132     long long int last_poll;    /* Last time this channel was polled. */
133 };
134
135 static void report_loss(struct dpif *, struct dpif_channel *);
136
137 /* Datapath interface for the openvswitch Linux kernel module. */
138 struct dpif_linux {
139     struct dpif dpif;
140     int dp_ifindex;
141
142     /* Upcall messages. */
143     struct ovs_mutex upcall_lock;
144     int uc_array_size;          /* Size of 'channels' and 'epoll_events'. */
145     struct dpif_channel *channels;
146     struct epoll_event *epoll_events;
147     int epoll_fd;               /* epoll fd that includes channel socks. */
148     int n_events;               /* Num events returned by epoll_wait(). */
149     int event_offset;           /* Offset into 'epoll_events'. */
150
151     /* Change notification. */
152     struct nl_sock *port_notifier; /* vport multicast group subscriber. */
153     bool refresh_channels;
154 };
155
156 static struct vlog_rate_limit error_rl = VLOG_RATE_LIMIT_INIT(9999, 5);
157
158 /* Generic Netlink family numbers for OVS.
159  *
160  * Initialized by dpif_linux_init(). */
161 static int ovs_datapath_family;
162 static int ovs_vport_family;
163 static int ovs_flow_family;
164 static int ovs_packet_family;
165
166 /* Generic Netlink multicast groups for OVS.
167  *
168  * Initialized by dpif_linux_init(). */
169 static unsigned int ovs_vport_mcgroup;
170
171 static int dpif_linux_init(void);
172 static int open_dpif(const struct dpif_linux_dp *, struct dpif **);
173 static uint32_t dpif_linux_port_get_pid(const struct dpif *,
174                                         odp_port_t port_no);
175 static int dpif_linux_refresh_channels(struct dpif *);
176
177 static void dpif_linux_vport_to_ofpbuf(const struct dpif_linux_vport *,
178                                        struct ofpbuf *);
179 static int dpif_linux_vport_from_ofpbuf(struct dpif_linux_vport *,
180                                         const struct ofpbuf *);
181
182 static struct dpif_linux *
183 dpif_linux_cast(const struct dpif *dpif)
184 {
185     dpif_assert_class(dpif, &dpif_linux_class);
186     return CONTAINER_OF(dpif, struct dpif_linux, dpif);
187 }
188
189 static int
190 dpif_linux_enumerate(struct sset *all_dps)
191 {
192     struct nl_dump dump;
193     uint64_t reply_stub[NL_DUMP_BUFSIZE / 8];
194     struct ofpbuf msg, buf;
195     int error;
196
197     error = dpif_linux_init();
198     if (error) {
199         return error;
200     }
201
202     ofpbuf_use_stub(&buf, reply_stub, sizeof reply_stub);
203     dpif_linux_dp_dump_start(&dump);
204     while (nl_dump_next(&dump, &msg, &buf)) {
205         struct dpif_linux_dp dp;
206
207         if (!dpif_linux_dp_from_ofpbuf(&dp, &msg)) {
208             sset_add(all_dps, dp.name);
209         }
210     }
211     ofpbuf_uninit(&buf);
212     return nl_dump_done(&dump);
213 }
214
215 static int
216 dpif_linux_open(const struct dpif_class *class OVS_UNUSED, const char *name,
217                 bool create, struct dpif **dpifp)
218 {
219     struct dpif_linux_dp dp_request, dp;
220     struct ofpbuf *buf;
221     uint32_t upcall_pid;
222     int error;
223
224     error = dpif_linux_init();
225     if (error) {
226         return error;
227     }
228
229     /* Create or look up datapath. */
230     dpif_linux_dp_init(&dp_request);
231     if (create) {
232         dp_request.cmd = OVS_DP_CMD_NEW;
233         upcall_pid = 0;
234         dp_request.upcall_pid = &upcall_pid;
235     } else {
236         /* Use OVS_DP_CMD_SET to report user features */
237         dp_request.cmd = OVS_DP_CMD_SET;
238     }
239     dp_request.name = name;
240     dp_request.user_features |= OVS_DP_F_UNALIGNED;
241     error = dpif_linux_dp_transact(&dp_request, &dp, &buf);
242     if (error) {
243         return error;
244     }
245
246     error = open_dpif(&dp, dpifp);
247     ofpbuf_delete(buf);
248     return error;
249 }
250
251 static int
252 open_dpif(const struct dpif_linux_dp *dp, struct dpif **dpifp)
253 {
254     struct dpif_linux *dpif;
255
256     dpif = xzalloc(sizeof *dpif);
257     dpif->port_notifier = NULL;
258     ovs_mutex_init(&dpif->upcall_lock);
259     dpif->epoll_fd = -1;
260
261     dpif_init(&dpif->dpif, &dpif_linux_class, dp->name,
262               dp->dp_ifindex, dp->dp_ifindex);
263
264     dpif->dp_ifindex = dp->dp_ifindex;
265     *dpifp = &dpif->dpif;
266
267     return 0;
268 }
269
270 static void
271 destroy_channels(struct dpif_linux *dpif)
272 {
273     unsigned int i;
274
275     if (dpif->epoll_fd < 0) {
276         return;
277     }
278
279     for (i = 0; i < dpif->uc_array_size; i++ ) {
280         struct dpif_linux_vport vport_request;
281         struct dpif_channel *ch = &dpif->channels[i];
282         uint32_t upcall_pid = 0;
283
284         if (!ch->sock) {
285             continue;
286         }
287
288         epoll_ctl(dpif->epoll_fd, EPOLL_CTL_DEL, nl_sock_fd(ch->sock), NULL);
289
290         /* Turn off upcalls. */
291         dpif_linux_vport_init(&vport_request);
292         vport_request.cmd = OVS_VPORT_CMD_SET;
293         vport_request.dp_ifindex = dpif->dp_ifindex;
294         vport_request.port_no = u32_to_odp(i);
295         vport_request.upcall_pid = &upcall_pid;
296         dpif_linux_vport_transact(&vport_request, NULL, NULL);
297
298         nl_sock_destroy(ch->sock);
299     }
300
301     free(dpif->channels);
302     dpif->channels = NULL;
303     dpif->uc_array_size = 0;
304
305     free(dpif->epoll_events);
306     dpif->epoll_events = NULL;
307     dpif->n_events = dpif->event_offset = 0;
308
309     /* Don't close dpif->epoll_fd since that would cause other threads that
310      * call dpif_recv_wait(dpif) to wait on an arbitrary fd or a closed fd. */
311 }
312
313 static int
314 add_channel(struct dpif_linux *dpif, odp_port_t port_no, struct nl_sock *sock)
315 {
316     struct epoll_event event;
317     uint32_t port_idx = odp_to_u32(port_no);
318
319     if (dpif->epoll_fd < 0) {
320         return 0;
321     }
322
323     /* We assume that the datapath densely chooses port numbers, which
324      * can therefore be used as an index into an array of channels. */
325     if (port_idx >= dpif->uc_array_size) {
326         uint32_t new_size = port_idx + 1;
327         uint32_t i;
328
329         if (new_size > MAX_PORTS) {
330             VLOG_WARN_RL(&error_rl, "%s: datapath port %"PRIu32" too big",
331                          dpif_name(&dpif->dpif), port_no);
332             return EFBIG;
333         }
334
335         dpif->channels = xrealloc(dpif->channels,
336                                   new_size * sizeof *dpif->channels);
337         for (i = dpif->uc_array_size; i < new_size; i++) {
338             dpif->channels[i].sock = NULL;
339         }
340
341         dpif->epoll_events = xrealloc(dpif->epoll_events,
342                                       new_size * sizeof *dpif->epoll_events);
343         dpif->uc_array_size = new_size;
344     }
345
346     memset(&event, 0, sizeof event);
347     event.events = EPOLLIN;
348     event.data.u32 = port_idx;
349     if (epoll_ctl(dpif->epoll_fd, EPOLL_CTL_ADD, nl_sock_fd(sock),
350                   &event) < 0) {
351         return errno;
352     }
353
354     nl_sock_destroy(dpif->channels[port_idx].sock);
355     dpif->channels[port_idx].sock = sock;
356     dpif->channels[port_idx].last_poll = LLONG_MIN;
357
358     return 0;
359 }
360
361 static void
362 del_channel(struct dpif_linux *dpif, odp_port_t port_no)
363 {
364     struct dpif_channel *ch;
365     uint32_t port_idx = odp_to_u32(port_no);
366
367     if (dpif->epoll_fd < 0 || port_idx >= dpif->uc_array_size) {
368         return;
369     }
370
371     ch = &dpif->channels[port_idx];
372     if (!ch->sock) {
373         return;
374     }
375
376     epoll_ctl(dpif->epoll_fd, EPOLL_CTL_DEL, nl_sock_fd(ch->sock), NULL);
377     dpif->event_offset = dpif->n_events = 0;
378
379     nl_sock_destroy(ch->sock);
380     ch->sock = NULL;
381 }
382
383 static void
384 dpif_linux_close(struct dpif *dpif_)
385 {
386     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
387
388     nl_sock_destroy(dpif->port_notifier);
389     destroy_channels(dpif);
390     if (dpif->epoll_fd >= 0) {
391         close(dpif->epoll_fd);
392     }
393     ovs_mutex_destroy(&dpif->upcall_lock);
394     free(dpif);
395 }
396
397 static int
398 dpif_linux_destroy(struct dpif *dpif_)
399 {
400     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
401     struct dpif_linux_dp dp;
402
403     dpif_linux_dp_init(&dp);
404     dp.cmd = OVS_DP_CMD_DEL;
405     dp.dp_ifindex = dpif->dp_ifindex;
406     return dpif_linux_dp_transact(&dp, NULL, NULL);
407 }
408
409 static void
410 dpif_linux_run(struct dpif *dpif_)
411 {
412     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
413     if (dpif->refresh_channels) {
414         dpif->refresh_channels = false;
415         dpif_linux_refresh_channels(dpif_);
416     }
417 }
418
419 static int
420 dpif_linux_get_stats(const struct dpif *dpif_, struct dpif_dp_stats *stats)
421 {
422     struct dpif_linux_dp dp;
423     struct ofpbuf *buf;
424     int error;
425
426     error = dpif_linux_dp_get(dpif_, &dp, &buf);
427     if (!error) {
428         stats->n_hit    = dp.stats.n_hit;
429         stats->n_missed = dp.stats.n_missed;
430         stats->n_lost   = dp.stats.n_lost;
431         stats->n_flows  = dp.stats.n_flows;
432         stats->n_masks  = dp.megaflow_stats.n_masks;
433         stats->n_mask_hit  = dp.megaflow_stats.n_mask_hit;
434         ofpbuf_delete(buf);
435     }
436     return error;
437 }
438
439 static const char *
440 get_vport_type(const struct dpif_linux_vport *vport)
441 {
442     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
443
444     switch (vport->type) {
445     case OVS_VPORT_TYPE_NETDEV: {
446         const char *type = netdev_get_type_from_name(vport->name);
447
448         return type ? type : "system";
449     }
450
451     case OVS_VPORT_TYPE_INTERNAL:
452         return "internal";
453
454     case OVS_VPORT_TYPE_GRE:
455         return "gre";
456
457     case OVS_VPORT_TYPE_GRE64:
458         return "gre64";
459
460     case OVS_VPORT_TYPE_VXLAN:
461         return "vxlan";
462
463     case OVS_VPORT_TYPE_LISP:
464         return "lisp";
465
466     case OVS_VPORT_TYPE_UNSPEC:
467     case __OVS_VPORT_TYPE_MAX:
468         break;
469     }
470
471     VLOG_WARN_RL(&rl, "dp%d: port `%s' has unsupported type %u",
472                  vport->dp_ifindex, vport->name, (unsigned int) vport->type);
473     return "unknown";
474 }
475
476 static enum ovs_vport_type
477 netdev_to_ovs_vport_type(const struct netdev *netdev)
478 {
479     const char *type = netdev_get_type(netdev);
480
481     if (!strcmp(type, "tap") || !strcmp(type, "system")) {
482         return OVS_VPORT_TYPE_NETDEV;
483     } else if (!strcmp(type, "internal")) {
484         return OVS_VPORT_TYPE_INTERNAL;
485     } else if (strstr(type, "gre64")) {
486         return OVS_VPORT_TYPE_GRE64;
487     } else if (strstr(type, "gre")) {
488         return OVS_VPORT_TYPE_GRE;
489     } else if (!strcmp(type, "vxlan")) {
490         return OVS_VPORT_TYPE_VXLAN;
491     } else if (!strcmp(type, "lisp")) {
492         return OVS_VPORT_TYPE_LISP;
493     } else {
494         return OVS_VPORT_TYPE_UNSPEC;
495     }
496 }
497
498 static int
499 dpif_linux_port_add__(struct dpif *dpif_, struct netdev *netdev,
500                       odp_port_t *port_nop)
501 {
502     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
503     const struct netdev_tunnel_config *tnl_cfg;
504     char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
505     const char *name = netdev_vport_get_dpif_port(netdev,
506                                                   namebuf, sizeof namebuf);
507     const char *type = netdev_get_type(netdev);
508     struct dpif_linux_vport request, reply;
509     struct nl_sock *sock = NULL;
510     uint32_t upcall_pid;
511     struct ofpbuf *buf;
512     uint64_t options_stub[64 / 8];
513     struct ofpbuf options;
514     int error;
515
516     if (dpif->epoll_fd >= 0) {
517         error = nl_sock_create(NETLINK_GENERIC, &sock);
518         if (error) {
519             return error;
520         }
521     }
522
523     dpif_linux_vport_init(&request);
524     request.cmd = OVS_VPORT_CMD_NEW;
525     request.dp_ifindex = dpif->dp_ifindex;
526     request.type = netdev_to_ovs_vport_type(netdev);
527     if (request.type == OVS_VPORT_TYPE_UNSPEC) {
528         VLOG_WARN_RL(&error_rl, "%s: cannot create port `%s' because it has "
529                      "unsupported type `%s'",
530                      dpif_name(dpif_), name, type);
531         nl_sock_destroy(sock);
532         return EINVAL;
533     }
534     request.name = name;
535
536     if (request.type == OVS_VPORT_TYPE_NETDEV) {
537         netdev_linux_ethtool_set_flag(netdev, ETH_FLAG_LRO, "LRO", false);
538     }
539
540     tnl_cfg = netdev_get_tunnel_config(netdev);
541     if (tnl_cfg && tnl_cfg->dst_port != 0) {
542         ofpbuf_use_stack(&options, options_stub, sizeof options_stub);
543         nl_msg_put_u16(&options, OVS_TUNNEL_ATTR_DST_PORT,
544                        ntohs(tnl_cfg->dst_port));
545         request.options = options.data;
546         request.options_len = options.size;
547     }
548
549     request.port_no = *port_nop;
550     upcall_pid = sock ? nl_sock_pid(sock) : 0;
551     request.upcall_pid = &upcall_pid;
552
553     error = dpif_linux_vport_transact(&request, &reply, &buf);
554     if (!error) {
555         *port_nop = reply.port_no;
556         VLOG_DBG("%s: assigning port %"PRIu32" to netlink pid %"PRIu32,
557                  dpif_name(dpif_), reply.port_no, upcall_pid);
558     } else {
559         if (error == EBUSY && *port_nop != ODPP_NONE) {
560             VLOG_INFO("%s: requested port %"PRIu32" is in use",
561                       dpif_name(dpif_), *port_nop);
562         }
563         nl_sock_destroy(sock);
564         ofpbuf_delete(buf);
565         return error;
566     }
567     ofpbuf_delete(buf);
568
569     if (sock) {
570         error = add_channel(dpif, *port_nop, sock);
571         if (error) {
572             VLOG_INFO("%s: could not add channel for port %s",
573                       dpif_name(dpif_), name);
574
575             /* Delete the port. */
576             dpif_linux_vport_init(&request);
577             request.cmd = OVS_VPORT_CMD_DEL;
578             request.dp_ifindex = dpif->dp_ifindex;
579             request.port_no = *port_nop;
580             dpif_linux_vport_transact(&request, NULL, NULL);
581
582             nl_sock_destroy(sock);
583             return error;
584         }
585     }
586
587     return 0;
588 }
589
590 static int
591 dpif_linux_port_add(struct dpif *dpif_, struct netdev *netdev,
592                     odp_port_t *port_nop)
593 {
594     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
595     int error;
596
597     ovs_mutex_lock(&dpif->upcall_lock);
598     error = dpif_linux_port_add__(dpif_, netdev, port_nop);
599     ovs_mutex_unlock(&dpif->upcall_lock);
600
601     return error;
602 }
603
604 static int
605 dpif_linux_port_del__(struct dpif *dpif_, odp_port_t port_no)
606 {
607     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
608     struct dpif_linux_vport vport;
609     int error;
610
611     dpif_linux_vport_init(&vport);
612     vport.cmd = OVS_VPORT_CMD_DEL;
613     vport.dp_ifindex = dpif->dp_ifindex;
614     vport.port_no = port_no;
615     error = dpif_linux_vport_transact(&vport, NULL, NULL);
616
617     del_channel(dpif, port_no);
618
619     return error;
620 }
621
622 static int
623 dpif_linux_port_del(struct dpif *dpif_, odp_port_t port_no)
624 {
625     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
626     int error;
627
628     ovs_mutex_lock(&dpif->upcall_lock);
629     error = dpif_linux_port_del__(dpif_, port_no);
630     ovs_mutex_unlock(&dpif->upcall_lock);
631
632     return error;
633 }
634
635 static int
636 dpif_linux_port_query__(const struct dpif *dpif, odp_port_t port_no,
637                         const char *port_name, struct dpif_port *dpif_port)
638 {
639     struct dpif_linux_vport request;
640     struct dpif_linux_vport reply;
641     struct ofpbuf *buf;
642     int error;
643
644     dpif_linux_vport_init(&request);
645     request.cmd = OVS_VPORT_CMD_GET;
646     request.dp_ifindex = dpif_linux_cast(dpif)->dp_ifindex;
647     request.port_no = port_no;
648     request.name = port_name;
649
650     error = dpif_linux_vport_transact(&request, &reply, &buf);
651     if (!error) {
652         if (reply.dp_ifindex != request.dp_ifindex) {
653             /* A query by name reported that 'port_name' is in some datapath
654              * other than 'dpif', but the caller wants to know about 'dpif'. */
655             error = ENODEV;
656         } else if (dpif_port) {
657             dpif_port->name = xstrdup(reply.name);
658             dpif_port->type = xstrdup(get_vport_type(&reply));
659             dpif_port->port_no = reply.port_no;
660         }
661         ofpbuf_delete(buf);
662     }
663     return error;
664 }
665
666 static int
667 dpif_linux_port_query_by_number(const struct dpif *dpif, odp_port_t port_no,
668                                 struct dpif_port *dpif_port)
669 {
670     return dpif_linux_port_query__(dpif, port_no, NULL, dpif_port);
671 }
672
673 static int
674 dpif_linux_port_query_by_name(const struct dpif *dpif, const char *devname,
675                               struct dpif_port *dpif_port)
676 {
677     return dpif_linux_port_query__(dpif, 0, devname, dpif_port);
678 }
679
680 static uint32_t
681 dpif_linux_port_get_pid(const struct dpif *dpif_, odp_port_t port_no)
682 {
683     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
684     uint32_t port_idx = odp_to_u32(port_no);
685     uint32_t pid = 0;
686
687     ovs_mutex_lock(&dpif->upcall_lock);
688     if (dpif->epoll_fd >= 0) {
689         /* The ODPP_NONE "reserved" port number uses the "ovs-system"'s
690          * channel, since it is not heavily loaded. */
691         uint32_t idx = port_idx >= dpif->uc_array_size ? 0 : port_idx;
692         const struct nl_sock *sock = dpif->channels[idx].sock;
693         pid = sock ? nl_sock_pid(sock) : 0;
694     }
695     ovs_mutex_unlock(&dpif->upcall_lock);
696
697     return pid;
698 }
699
700 static int
701 dpif_linux_flow_flush(struct dpif *dpif_)
702 {
703     const struct dpif_linux *dpif = dpif_linux_cast(dpif_);
704     struct dpif_linux_flow flow;
705
706     dpif_linux_flow_init(&flow);
707     flow.cmd = OVS_FLOW_CMD_DEL;
708     flow.dp_ifindex = dpif->dp_ifindex;
709     return dpif_linux_flow_transact(&flow, NULL, NULL);
710 }
711
712 struct dpif_linux_port_state {
713     struct nl_dump dump;
714     struct ofpbuf buf;
715 };
716
717 static void
718 dpif_linux_port_dump_start__(const struct dpif *dpif_, struct nl_dump *dump)
719 {
720     const struct dpif_linux *dpif = dpif_linux_cast(dpif_);
721     struct dpif_linux_vport request;
722     struct ofpbuf *buf;
723
724     dpif_linux_vport_init(&request);
725     request.cmd = OVS_VPORT_CMD_GET;
726     request.dp_ifindex = dpif->dp_ifindex;
727
728     buf = ofpbuf_new(1024);
729     dpif_linux_vport_to_ofpbuf(&request, buf);
730     nl_dump_start(dump, NETLINK_GENERIC, buf);
731     ofpbuf_delete(buf);
732 }
733
734 static int
735 dpif_linux_port_dump_start(const struct dpif *dpif, void **statep)
736 {
737     struct dpif_linux_port_state *state;
738
739     *statep = state = xmalloc(sizeof *state);
740     dpif_linux_port_dump_start__(dpif, &state->dump);
741
742     ofpbuf_init(&state->buf, NL_DUMP_BUFSIZE);
743     return 0;
744 }
745
746 static int
747 dpif_linux_port_dump_next__(const struct dpif *dpif_, struct nl_dump *dump,
748                             struct dpif_linux_vport *vport,
749                             struct ofpbuf *buffer)
750 {
751     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
752     struct ofpbuf buf;
753     int error;
754
755     if (!nl_dump_next(dump, &buf, buffer)) {
756         return EOF;
757     }
758
759     error = dpif_linux_vport_from_ofpbuf(vport, &buf);
760     if (error) {
761         VLOG_WARN_RL(&error_rl, "%s: failed to parse vport record (%s)",
762                      dpif_name(&dpif->dpif), ovs_strerror(error));
763     }
764     return error;
765 }
766
767 static int
768 dpif_linux_port_dump_next(const struct dpif *dpif OVS_UNUSED, void *state_,
769                           struct dpif_port *dpif_port)
770 {
771     struct dpif_linux_port_state *state = state_;
772     struct dpif_linux_vport vport;
773     int error;
774
775     error = dpif_linux_port_dump_next__(dpif, &state->dump, &vport,
776                                         &state->buf);
777     if (error) {
778         return error;
779     }
780     dpif_port->name = CONST_CAST(char *, vport.name);
781     dpif_port->type = CONST_CAST(char *, get_vport_type(&vport));
782     dpif_port->port_no = vport.port_no;
783     return 0;
784 }
785
786 static int
787 dpif_linux_port_dump_done(const struct dpif *dpif_ OVS_UNUSED, void *state_)
788 {
789     struct dpif_linux_port_state *state = state_;
790     int error = nl_dump_done(&state->dump);
791
792     ofpbuf_uninit(&state->buf);
793     free(state);
794     return error;
795 }
796
797 static int
798 dpif_linux_port_poll(const struct dpif *dpif_, char **devnamep)
799 {
800     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
801
802     /* Lazily create the Netlink socket to listen for notifications. */
803     if (!dpif->port_notifier) {
804         struct nl_sock *sock;
805         int error;
806
807         error = nl_sock_create(NETLINK_GENERIC, &sock);
808         if (error) {
809             return error;
810         }
811
812         error = nl_sock_join_mcgroup(sock, ovs_vport_mcgroup);
813         if (error) {
814             nl_sock_destroy(sock);
815             return error;
816         }
817         dpif->port_notifier = sock;
818
819         /* We have no idea of the current state so report that everything
820          * changed. */
821         return ENOBUFS;
822     }
823
824     for (;;) {
825         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
826         uint64_t buf_stub[4096 / 8];
827         struct ofpbuf buf;
828         int error;
829
830         ofpbuf_use_stub(&buf, buf_stub, sizeof buf_stub);
831         error = nl_sock_recv(dpif->port_notifier, &buf, false);
832         if (!error) {
833             struct dpif_linux_vport vport;
834
835             error = dpif_linux_vport_from_ofpbuf(&vport, &buf);
836             if (!error) {
837                 if (vport.dp_ifindex == dpif->dp_ifindex
838                     && (vport.cmd == OVS_VPORT_CMD_NEW
839                         || vport.cmd == OVS_VPORT_CMD_DEL
840                         || vport.cmd == OVS_VPORT_CMD_SET)) {
841                     VLOG_DBG("port_changed: dpif:%s vport:%s cmd:%"PRIu8,
842                              dpif->dpif.full_name, vport.name, vport.cmd);
843                     if (vport.cmd == OVS_VPORT_CMD_DEL) {
844                         dpif->refresh_channels = true;
845                     }
846                     *devnamep = xstrdup(vport.name);
847                     ofpbuf_uninit(&buf);
848                     return 0;
849                 }
850             }
851         } else if (error != EAGAIN) {
852             VLOG_WARN_RL(&rl, "error reading or parsing netlink (%s)",
853                          ovs_strerror(error));
854             nl_sock_drain(dpif->port_notifier);
855             error = ENOBUFS;
856         }
857
858         ofpbuf_uninit(&buf);
859         if (error) {
860             return error;
861         }
862     }
863 }
864
865 static void
866 dpif_linux_port_poll_wait(const struct dpif *dpif_)
867 {
868     const struct dpif_linux *dpif = dpif_linux_cast(dpif_);
869
870     if (dpif->port_notifier) {
871         nl_sock_wait(dpif->port_notifier, POLLIN);
872     } else {
873         poll_immediate_wake();
874     }
875 }
876
877 static int
878 dpif_linux_flow_get__(const struct dpif *dpif_,
879                       const struct nlattr *key, size_t key_len,
880                       struct dpif_linux_flow *reply, struct ofpbuf **bufp)
881 {
882     const struct dpif_linux *dpif = dpif_linux_cast(dpif_);
883     struct dpif_linux_flow request;
884
885     dpif_linux_flow_init(&request);
886     request.cmd = OVS_FLOW_CMD_GET;
887     request.dp_ifindex = dpif->dp_ifindex;
888     request.key = key;
889     request.key_len = key_len;
890     return dpif_linux_flow_transact(&request, reply, bufp);
891 }
892
893 static int
894 dpif_linux_flow_get(const struct dpif *dpif_,
895                     const struct nlattr *key, size_t key_len,
896                     struct ofpbuf **actionsp, struct dpif_flow_stats *stats)
897 {
898     struct dpif_linux_flow reply;
899     struct ofpbuf *buf;
900     int error;
901
902     error = dpif_linux_flow_get__(dpif_, key, key_len, &reply, &buf);
903     if (!error) {
904         if (stats) {
905             dpif_linux_flow_get_stats(&reply, stats);
906         }
907         if (actionsp) {
908             buf->data = CONST_CAST(struct nlattr *, reply.actions);
909             buf->size = reply.actions_len;
910             *actionsp = buf;
911         } else {
912             ofpbuf_delete(buf);
913         }
914     }
915     return error;
916 }
917
918 static void
919 dpif_linux_init_flow_put(struct dpif *dpif_, const struct dpif_flow_put *put,
920                          struct dpif_linux_flow *request)
921 {
922     static const struct nlattr dummy_action;
923
924     const struct dpif_linux *dpif = dpif_linux_cast(dpif_);
925
926     dpif_linux_flow_init(request);
927     request->cmd = (put->flags & DPIF_FP_CREATE
928                     ? OVS_FLOW_CMD_NEW : OVS_FLOW_CMD_SET);
929     request->dp_ifindex = dpif->dp_ifindex;
930     request->key = put->key;
931     request->key_len = put->key_len;
932     request->mask = put->mask;
933     request->mask_len = put->mask_len;
934     /* Ensure that OVS_FLOW_ATTR_ACTIONS will always be included. */
935     request->actions = (put->actions
936                         ? put->actions
937                         : CONST_CAST(struct nlattr *, &dummy_action));
938     request->actions_len = put->actions_len;
939     if (put->flags & DPIF_FP_ZERO_STATS) {
940         request->clear = true;
941     }
942     request->nlmsg_flags = put->flags & DPIF_FP_MODIFY ? 0 : NLM_F_CREATE;
943 }
944
945 static int
946 dpif_linux_flow_put(struct dpif *dpif_, const struct dpif_flow_put *put)
947 {
948     struct dpif_linux_flow request, reply;
949     struct ofpbuf *buf;
950     int error;
951
952     dpif_linux_init_flow_put(dpif_, put, &request);
953     error = dpif_linux_flow_transact(&request,
954                                      put->stats ? &reply : NULL,
955                                      put->stats ? &buf : NULL);
956     if (!error && put->stats) {
957         dpif_linux_flow_get_stats(&reply, put->stats);
958         ofpbuf_delete(buf);
959     }
960     return error;
961 }
962
963 static void
964 dpif_linux_init_flow_del(struct dpif *dpif_, const struct dpif_flow_del *del,
965                          struct dpif_linux_flow *request)
966 {
967     const struct dpif_linux *dpif = dpif_linux_cast(dpif_);
968
969     dpif_linux_flow_init(request);
970     request->cmd = OVS_FLOW_CMD_DEL;
971     request->dp_ifindex = dpif->dp_ifindex;
972     request->key = del->key;
973     request->key_len = del->key_len;
974 }
975
976 static int
977 dpif_linux_flow_del(struct dpif *dpif_, const struct dpif_flow_del *del)
978 {
979     struct dpif_linux_flow request, reply;
980     struct ofpbuf *buf;
981     int error;
982
983     dpif_linux_init_flow_del(dpif_, del, &request);
984     error = dpif_linux_flow_transact(&request,
985                                      del->stats ? &reply : NULL,
986                                      del->stats ? &buf : NULL);
987     if (!error && del->stats) {
988         dpif_linux_flow_get_stats(&reply, del->stats);
989         ofpbuf_delete(buf);
990     }
991     return error;
992 }
993
994 struct dpif_linux_flow_state {
995     struct dpif_linux_flow flow;
996     struct dpif_flow_stats stats;
997     struct ofpbuf buffer;         /* Always used to store flows. */
998     struct ofpbuf *tmp;           /* Used if kernel does not supply actions. */
999 };
1000
1001 struct dpif_linux_flow_iter {
1002     struct nl_dump dump;
1003     atomic_int status;
1004 };
1005
1006 static void
1007 dpif_linux_flow_dump_state_init(void **statep)
1008 {
1009     struct dpif_linux_flow_state *state;
1010
1011     *statep = state = xmalloc(sizeof *state);
1012     ofpbuf_init(&state->buffer, NL_DUMP_BUFSIZE);
1013     state->tmp = NULL;
1014 }
1015
1016 static void
1017 dpif_linux_flow_dump_state_uninit(void *state_)
1018 {
1019     struct dpif_linux_flow_state *state = state_;
1020
1021     ofpbuf_uninit(&state->buffer);
1022     ofpbuf_delete(state->tmp);
1023     free(state);
1024 }
1025
1026 static int
1027 dpif_linux_flow_dump_start(const struct dpif *dpif_, void **iterp)
1028 {
1029     const struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1030     struct dpif_linux_flow_iter *iter;
1031     struct dpif_linux_flow request;
1032     struct ofpbuf *buf;
1033
1034     *iterp = iter = xmalloc(sizeof *iter);
1035
1036     dpif_linux_flow_init(&request);
1037     request.cmd = OVS_FLOW_CMD_GET;
1038     request.dp_ifindex = dpif->dp_ifindex;
1039
1040     buf = ofpbuf_new(1024);
1041     dpif_linux_flow_to_ofpbuf(&request, buf);
1042     nl_dump_start(&iter->dump, NETLINK_GENERIC, buf);
1043     ofpbuf_delete(buf);
1044     atomic_init(&iter->status, 0);
1045
1046     return 0;
1047 }
1048
1049 static int
1050 dpif_linux_flow_dump_next(const struct dpif *dpif_, void *iter_, void *state_,
1051                           const struct nlattr **key, size_t *key_len,
1052                           const struct nlattr **mask, size_t *mask_len,
1053                           const struct nlattr **actions, size_t *actions_len,
1054                           const struct dpif_flow_stats **stats)
1055 {
1056     struct dpif_linux_flow_iter *iter = iter_;
1057     struct dpif_linux_flow_state *state = state_;
1058     struct ofpbuf buf;
1059     int error;
1060
1061     do {
1062         ofpbuf_delete(state->tmp);
1063         state->tmp = NULL;
1064
1065         if (!nl_dump_next(&iter->dump, &buf, &state->buffer)) {
1066             return EOF;
1067         }
1068
1069         error = dpif_linux_flow_from_ofpbuf(&state->flow, &buf);
1070         if (error) {
1071             atomic_store(&iter->status, error);
1072             return error;
1073         }
1074
1075         if (actions && !state->flow.actions) {
1076             error = dpif_linux_flow_get__(dpif_, state->flow.key,
1077                                           state->flow.key_len,
1078                                           &state->flow, &state->tmp);
1079             if (error == ENOENT) {
1080                 VLOG_DBG("dumped flow disappeared on get");
1081             } else if (error) {
1082                 VLOG_WARN("error fetching dumped flow: %s",
1083                           ovs_strerror(error));
1084             }
1085         }
1086     } while (error);
1087
1088     if (actions) {
1089         *actions = state->flow.actions;
1090         *actions_len = state->flow.actions_len;
1091     }
1092     if (key) {
1093         *key = state->flow.key;
1094         *key_len = state->flow.key_len;
1095     }
1096     if (mask) {
1097         *mask = state->flow.mask;
1098         *mask_len = state->flow.mask ? state->flow.mask_len : 0;
1099     }
1100     if (stats) {
1101         dpif_linux_flow_get_stats(&state->flow, &state->stats);
1102         *stats = &state->stats;
1103     }
1104     return error;
1105 }
1106
1107 static int
1108 dpif_linux_flow_dump_done(const struct dpif *dpif OVS_UNUSED, void *iter_)
1109 {
1110     struct dpif_linux_flow_iter *iter = iter_;
1111     int dump_status;
1112     unsigned int nl_status = nl_dump_done(&iter->dump);
1113
1114     atomic_read(&iter->status, &dump_status);
1115     atomic_destroy(&iter->status);
1116     free(iter);
1117     return dump_status ? dump_status : nl_status;
1118 }
1119
1120 static void
1121 dpif_linux_encode_execute(int dp_ifindex, const struct dpif_execute *d_exec,
1122                           struct ofpbuf *buf)
1123 {
1124     struct ovs_header *k_exec;
1125     size_t key_ofs;
1126
1127     ofpbuf_prealloc_tailroom(buf, (64
1128                                    + d_exec->packet->size
1129                                    + ODP_KEY_METADATA_SIZE
1130                                    + d_exec->actions_len));
1131
1132     nl_msg_put_genlmsghdr(buf, 0, ovs_packet_family, NLM_F_REQUEST,
1133                           OVS_PACKET_CMD_EXECUTE, OVS_PACKET_VERSION);
1134
1135     k_exec = ofpbuf_put_uninit(buf, sizeof *k_exec);
1136     k_exec->dp_ifindex = dp_ifindex;
1137
1138     nl_msg_put_unspec(buf, OVS_PACKET_ATTR_PACKET,
1139                       d_exec->packet->data, d_exec->packet->size);
1140
1141     key_ofs = nl_msg_start_nested(buf, OVS_PACKET_ATTR_KEY);
1142     odp_key_from_pkt_metadata(buf, &d_exec->md);
1143     nl_msg_end_nested(buf, key_ofs);
1144
1145     nl_msg_put_unspec(buf, OVS_PACKET_ATTR_ACTIONS,
1146                       d_exec->actions, d_exec->actions_len);
1147 }
1148
1149 static int
1150 dpif_linux_execute__(int dp_ifindex, const struct dpif_execute *execute)
1151 {
1152     uint64_t request_stub[1024 / 8];
1153     struct ofpbuf request;
1154     int error;
1155
1156     ofpbuf_use_stub(&request, request_stub, sizeof request_stub);
1157     dpif_linux_encode_execute(dp_ifindex, execute, &request);
1158     error = nl_transact(NETLINK_GENERIC, &request, NULL);
1159     ofpbuf_uninit(&request);
1160
1161     return error;
1162 }
1163
1164 static int
1165 dpif_linux_execute(struct dpif *dpif_, struct dpif_execute *execute)
1166 {
1167     const struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1168
1169     return dpif_linux_execute__(dpif->dp_ifindex, execute);
1170 }
1171
1172 #define MAX_OPS 50
1173
1174 static void
1175 dpif_linux_operate__(struct dpif *dpif_, struct dpif_op **ops, size_t n_ops)
1176 {
1177     const struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1178
1179     struct op_auxdata {
1180         struct nl_transaction txn;
1181
1182         struct ofpbuf request;
1183         uint64_t request_stub[1024 / 8];
1184
1185         struct ofpbuf reply;
1186         uint64_t reply_stub[1024 / 8];
1187     } auxes[MAX_OPS];
1188
1189     struct nl_transaction *txnsp[MAX_OPS];
1190     size_t i;
1191
1192     ovs_assert(n_ops <= MAX_OPS);
1193     for (i = 0; i < n_ops; i++) {
1194         struct op_auxdata *aux = &auxes[i];
1195         struct dpif_op *op = ops[i];
1196         struct dpif_flow_put *put;
1197         struct dpif_flow_del *del;
1198         struct dpif_execute *execute;
1199         struct dpif_linux_flow flow;
1200
1201         ofpbuf_use_stub(&aux->request,
1202                         aux->request_stub, sizeof aux->request_stub);
1203         aux->txn.request = &aux->request;
1204
1205         ofpbuf_use_stub(&aux->reply, aux->reply_stub, sizeof aux->reply_stub);
1206         aux->txn.reply = NULL;
1207
1208         switch (op->type) {
1209         case DPIF_OP_FLOW_PUT:
1210             put = &op->u.flow_put;
1211             dpif_linux_init_flow_put(dpif_, put, &flow);
1212             if (put->stats) {
1213                 flow.nlmsg_flags |= NLM_F_ECHO;
1214                 aux->txn.reply = &aux->reply;
1215             }
1216             dpif_linux_flow_to_ofpbuf(&flow, &aux->request);
1217             break;
1218
1219         case DPIF_OP_FLOW_DEL:
1220             del = &op->u.flow_del;
1221             dpif_linux_init_flow_del(dpif_, del, &flow);
1222             if (del->stats) {
1223                 flow.nlmsg_flags |= NLM_F_ECHO;
1224                 aux->txn.reply = &aux->reply;
1225             }
1226             dpif_linux_flow_to_ofpbuf(&flow, &aux->request);
1227             break;
1228
1229         case DPIF_OP_EXECUTE:
1230             execute = &op->u.execute;
1231             dpif_linux_encode_execute(dpif->dp_ifindex, execute,
1232                                       &aux->request);
1233             break;
1234
1235         default:
1236             OVS_NOT_REACHED();
1237         }
1238     }
1239
1240     for (i = 0; i < n_ops; i++) {
1241         txnsp[i] = &auxes[i].txn;
1242     }
1243     nl_transact_multiple(NETLINK_GENERIC, txnsp, n_ops);
1244
1245     for (i = 0; i < n_ops; i++) {
1246         struct op_auxdata *aux = &auxes[i];
1247         struct nl_transaction *txn = &auxes[i].txn;
1248         struct dpif_op *op = ops[i];
1249         struct dpif_flow_put *put;
1250         struct dpif_flow_del *del;
1251
1252         op->error = txn->error;
1253
1254         switch (op->type) {
1255         case DPIF_OP_FLOW_PUT:
1256             put = &op->u.flow_put;
1257             if (put->stats) {
1258                 if (!op->error) {
1259                     struct dpif_linux_flow reply;
1260
1261                     op->error = dpif_linux_flow_from_ofpbuf(&reply,
1262                                                             txn->reply);
1263                     if (!op->error) {
1264                         dpif_linux_flow_get_stats(&reply, put->stats);
1265                     }
1266                 }
1267
1268                 if (op->error) {
1269                     memset(put->stats, 0, sizeof *put->stats);
1270                 }
1271             }
1272             break;
1273
1274         case DPIF_OP_FLOW_DEL:
1275             del = &op->u.flow_del;
1276             if (del->stats) {
1277                 if (!op->error) {
1278                     struct dpif_linux_flow reply;
1279
1280                     op->error = dpif_linux_flow_from_ofpbuf(&reply,
1281                                                             txn->reply);
1282                     if (!op->error) {
1283                         dpif_linux_flow_get_stats(&reply, del->stats);
1284                     }
1285                 }
1286
1287                 if (op->error) {
1288                     memset(del->stats, 0, sizeof *del->stats);
1289                 }
1290             }
1291             break;
1292
1293         case DPIF_OP_EXECUTE:
1294             break;
1295
1296         default:
1297             OVS_NOT_REACHED();
1298         }
1299
1300         ofpbuf_uninit(&aux->request);
1301         ofpbuf_uninit(&aux->reply);
1302     }
1303 }
1304
1305 static void
1306 dpif_linux_operate(struct dpif *dpif, struct dpif_op **ops, size_t n_ops)
1307 {
1308     while (n_ops > 0) {
1309         size_t chunk = MIN(n_ops, MAX_OPS);
1310         dpif_linux_operate__(dpif, ops, chunk);
1311         ops += chunk;
1312         n_ops -= chunk;
1313     }
1314 }
1315
1316 /* Synchronizes 'dpif->channels' with the set of vports currently in 'dpif' in
1317  * the kernel, by adding a new channel for any kernel vport that lacks one and
1318  * deleting any channels that have no backing kernel vports. */
1319 static int
1320 dpif_linux_refresh_channels(struct dpif *dpif_)
1321 {
1322     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1323     unsigned long int *keep_channels;
1324     struct dpif_linux_vport vport;
1325     size_t keep_channels_nbits;
1326     struct nl_dump dump;
1327     uint64_t reply_stub[NL_DUMP_BUFSIZE / 8];
1328     struct ofpbuf buf;
1329     int retval = 0;
1330     size_t i;
1331
1332     /* To start with, we need an epoll fd. */
1333     if (dpif->epoll_fd < 0) {
1334         dpif->epoll_fd = epoll_create(10);
1335         if (dpif->epoll_fd < 0) {
1336             return errno;
1337         }
1338     }
1339
1340     keep_channels_nbits = dpif->uc_array_size;
1341     keep_channels = bitmap_allocate(keep_channels_nbits);
1342
1343     dpif->n_events = dpif->event_offset = 0;
1344
1345     ofpbuf_use_stub(&buf, reply_stub, sizeof reply_stub);
1346     dpif_linux_port_dump_start__(dpif_, &dump);
1347     while (!dpif_linux_port_dump_next__(dpif_, &dump, &vport, &buf)) {
1348         uint32_t port_no = odp_to_u32(vport.port_no);
1349         struct nl_sock *sock = (port_no < dpif->uc_array_size
1350                                 ? dpif->channels[port_no].sock
1351                                 : NULL);
1352         bool new_sock = !sock;
1353         int error;
1354
1355         if (new_sock) {
1356             error = nl_sock_create(NETLINK_GENERIC, &sock);
1357             if (error) {
1358                 retval = error;
1359                 goto error;
1360             }
1361         }
1362
1363         /* Configure the vport to deliver misses to 'sock'. */
1364         if (!vport.upcall_pid || *vport.upcall_pid != nl_sock_pid(sock)) {
1365             uint32_t upcall_pid = nl_sock_pid(sock);
1366             struct dpif_linux_vport vport_request;
1367
1368             dpif_linux_vport_init(&vport_request);
1369             vport_request.cmd = OVS_VPORT_CMD_SET;
1370             vport_request.dp_ifindex = dpif->dp_ifindex;
1371             vport_request.port_no = vport.port_no;
1372             vport_request.upcall_pid = &upcall_pid;
1373             error = dpif_linux_vport_transact(&vport_request, NULL, NULL);
1374             if (!error) {
1375                 VLOG_DBG("%s: assigning port %"PRIu32" to netlink pid %"PRIu32,
1376                          dpif_name(&dpif->dpif), vport_request.port_no,
1377                          upcall_pid);
1378             } else {
1379                 VLOG_WARN_RL(&error_rl,
1380                              "%s: failed to set upcall pid on port: %s",
1381                              dpif_name(&dpif->dpif), ovs_strerror(error));
1382
1383                 if (error != ENODEV && error != ENOENT) {
1384                     retval = error;
1385                 } else {
1386                     /* The vport isn't really there, even though the dump says
1387                      * it is.  Probably we just hit a race after a port
1388                      * disappeared. */
1389                 }
1390                 goto error;
1391             }
1392         }
1393
1394         if (new_sock) {
1395             error = add_channel(dpif, vport.port_no, sock);
1396             if (error) {
1397                 VLOG_INFO("%s: could not add channel for port %s",
1398                           dpif_name(dpif_), vport.name);
1399                 retval = error;
1400                 goto error;
1401             }
1402         }
1403
1404         if (port_no < keep_channels_nbits) {
1405             bitmap_set1(keep_channels, port_no);
1406         }
1407         continue;
1408
1409     error:
1410         nl_sock_destroy(sock);
1411     }
1412     nl_dump_done(&dump);
1413     ofpbuf_uninit(&buf);
1414
1415     /* Discard any saved channels that we didn't reuse. */
1416     for (i = 0; i < keep_channels_nbits; i++) {
1417         if (!bitmap_is_set(keep_channels, i)) {
1418             nl_sock_destroy(dpif->channels[i].sock);
1419             dpif->channels[i].sock = NULL;
1420         }
1421     }
1422     free(keep_channels);
1423
1424     return retval;
1425 }
1426
1427 static int
1428 dpif_linux_recv_set__(struct dpif *dpif_, bool enable)
1429 {
1430     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1431
1432     if ((dpif->epoll_fd >= 0) == enable) {
1433         return 0;
1434     } else if (!enable) {
1435         destroy_channels(dpif);
1436         return 0;
1437     } else {
1438         return dpif_linux_refresh_channels(dpif_);
1439     }
1440 }
1441
1442 static int
1443 dpif_linux_recv_set(struct dpif *dpif_, bool enable)
1444 {
1445     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1446     int error;
1447
1448     ovs_mutex_lock(&dpif->upcall_lock);
1449     error = dpif_linux_recv_set__(dpif_, enable);
1450     ovs_mutex_unlock(&dpif->upcall_lock);
1451
1452     return error;
1453 }
1454
1455 static int
1456 dpif_linux_queue_to_priority(const struct dpif *dpif OVS_UNUSED,
1457                              uint32_t queue_id, uint32_t *priority)
1458 {
1459     if (queue_id < 0xf000) {
1460         *priority = TC_H_MAKE(1 << 16, queue_id + 1);
1461         return 0;
1462     } else {
1463         return EINVAL;
1464     }
1465 }
1466
1467 static int
1468 parse_odp_packet(struct ofpbuf *buf, struct dpif_upcall *upcall,
1469                  int *dp_ifindex)
1470 {
1471     static const struct nl_policy ovs_packet_policy[] = {
1472         /* Always present. */
1473         [OVS_PACKET_ATTR_PACKET] = { .type = NL_A_UNSPEC,
1474                                      .min_len = ETH_HEADER_LEN },
1475         [OVS_PACKET_ATTR_KEY] = { .type = NL_A_NESTED },
1476
1477         /* OVS_PACKET_CMD_ACTION only. */
1478         [OVS_PACKET_ATTR_USERDATA] = { .type = NL_A_UNSPEC, .optional = true },
1479     };
1480
1481     struct ovs_header *ovs_header;
1482     struct nlattr *a[ARRAY_SIZE(ovs_packet_policy)];
1483     struct nlmsghdr *nlmsg;
1484     struct genlmsghdr *genl;
1485     struct ofpbuf b;
1486     int type;
1487
1488     ofpbuf_use_const(&b, buf->data, buf->size);
1489
1490     nlmsg = ofpbuf_try_pull(&b, sizeof *nlmsg);
1491     genl = ofpbuf_try_pull(&b, sizeof *genl);
1492     ovs_header = ofpbuf_try_pull(&b, sizeof *ovs_header);
1493     if (!nlmsg || !genl || !ovs_header
1494         || nlmsg->nlmsg_type != ovs_packet_family
1495         || !nl_policy_parse(&b, 0, ovs_packet_policy, a,
1496                             ARRAY_SIZE(ovs_packet_policy))) {
1497         return EINVAL;
1498     }
1499
1500     type = (genl->cmd == OVS_PACKET_CMD_MISS ? DPIF_UC_MISS
1501             : genl->cmd == OVS_PACKET_CMD_ACTION ? DPIF_UC_ACTION
1502             : -1);
1503     if (type < 0) {
1504         return EINVAL;
1505     }
1506
1507     /* (Re)set ALL fields of '*upcall' on successful return. */
1508     upcall->type = type;
1509     upcall->key = CONST_CAST(struct nlattr *,
1510                              nl_attr_get(a[OVS_PACKET_ATTR_KEY]));
1511     upcall->key_len = nl_attr_get_size(a[OVS_PACKET_ATTR_KEY]);
1512     upcall->userdata = a[OVS_PACKET_ATTR_USERDATA];
1513
1514     /* Allow overwriting the netlink attribute header without reallocating. */
1515     ofpbuf_use_stub(&upcall->packet,
1516                     CONST_CAST(struct nlattr *,
1517                                nl_attr_get(a[OVS_PACKET_ATTR_PACKET])) - 1,
1518                     nl_attr_get_size(a[OVS_PACKET_ATTR_PACKET]) +
1519                     sizeof(struct nlattr));
1520     upcall->packet.data = (char *)upcall->packet.data + sizeof(struct nlattr);
1521     upcall->packet.size = nl_attr_get_size(a[OVS_PACKET_ATTR_PACKET]);
1522
1523     *dp_ifindex = ovs_header->dp_ifindex;
1524
1525     return 0;
1526 }
1527
1528 static int
1529 dpif_linux_recv__(struct dpif *dpif_, struct dpif_upcall *upcall,
1530                   struct ofpbuf *buf)
1531 {
1532     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1533     int read_tries = 0;
1534
1535     if (dpif->epoll_fd < 0) {
1536        return EAGAIN;
1537     }
1538
1539     if (dpif->event_offset >= dpif->n_events) {
1540         int retval;
1541
1542         dpif->event_offset = dpif->n_events = 0;
1543
1544         do {
1545             retval = epoll_wait(dpif->epoll_fd, dpif->epoll_events,
1546                                 dpif->uc_array_size, 0);
1547         } while (retval < 0 && errno == EINTR);
1548         if (retval < 0) {
1549             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
1550             VLOG_WARN_RL(&rl, "epoll_wait failed (%s)", ovs_strerror(errno));
1551         } else if (retval > 0) {
1552             dpif->n_events = retval;
1553         }
1554     }
1555
1556     while (dpif->event_offset < dpif->n_events) {
1557         int idx = dpif->epoll_events[dpif->event_offset].data.u32;
1558         struct dpif_channel *ch = &dpif->channels[idx];
1559
1560         dpif->event_offset++;
1561
1562         for (;;) {
1563             int dp_ifindex;
1564             int error;
1565
1566             if (++read_tries > 50) {
1567                 return EAGAIN;
1568             }
1569
1570             error = nl_sock_recv(ch->sock, buf, false);
1571             if (error == ENOBUFS) {
1572                 /* ENOBUFS typically means that we've received so many
1573                  * packets that the buffer overflowed.  Try again
1574                  * immediately because there's almost certainly a packet
1575                  * waiting for us. */
1576                 report_loss(dpif_, ch);
1577                 continue;
1578             }
1579
1580             ch->last_poll = time_msec();
1581             if (error) {
1582                 if (error == EAGAIN) {
1583                     break;
1584                 }
1585                 return error;
1586             }
1587
1588             error = parse_odp_packet(buf, upcall, &dp_ifindex);
1589             if (!error && dp_ifindex == dpif->dp_ifindex) {
1590                 return 0;
1591             } else if (error) {
1592                 return error;
1593             }
1594         }
1595     }
1596
1597     return EAGAIN;
1598 }
1599
1600 static int
1601 dpif_linux_recv(struct dpif *dpif_, struct dpif_upcall *upcall,
1602                 struct ofpbuf *buf)
1603 {
1604     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1605     int error;
1606
1607     ovs_mutex_lock(&dpif->upcall_lock);
1608     error = dpif_linux_recv__(dpif_, upcall, buf);
1609     ovs_mutex_unlock(&dpif->upcall_lock);
1610
1611     return error;
1612 }
1613
1614 static void
1615 dpif_linux_recv_wait(struct dpif *dpif_)
1616 {
1617     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1618
1619     ovs_mutex_lock(&dpif->upcall_lock);
1620     if (dpif->epoll_fd >= 0) {
1621         poll_fd_wait(dpif->epoll_fd, POLLIN);
1622     }
1623     ovs_mutex_unlock(&dpif->upcall_lock);
1624 }
1625
1626 static void
1627 dpif_linux_recv_purge(struct dpif *dpif_)
1628 {
1629     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1630
1631     ovs_mutex_lock(&dpif->upcall_lock);
1632     if (dpif->epoll_fd >= 0) {
1633         struct dpif_channel *ch;
1634
1635         for (ch = dpif->channels; ch < &dpif->channels[dpif->uc_array_size];
1636              ch++) {
1637             if (ch->sock) {
1638                 nl_sock_drain(ch->sock);
1639             }
1640         }
1641     }
1642     ovs_mutex_unlock(&dpif->upcall_lock);
1643 }
1644
1645 const struct dpif_class dpif_linux_class = {
1646     "system",
1647     dpif_linux_enumerate,
1648     NULL,
1649     dpif_linux_open,
1650     dpif_linux_close,
1651     dpif_linux_destroy,
1652     dpif_linux_run,
1653     NULL,                       /* wait */
1654     dpif_linux_get_stats,
1655     dpif_linux_port_add,
1656     dpif_linux_port_del,
1657     dpif_linux_port_query_by_number,
1658     dpif_linux_port_query_by_name,
1659     dpif_linux_port_get_pid,
1660     dpif_linux_port_dump_start,
1661     dpif_linux_port_dump_next,
1662     dpif_linux_port_dump_done,
1663     dpif_linux_port_poll,
1664     dpif_linux_port_poll_wait,
1665     dpif_linux_flow_get,
1666     dpif_linux_flow_put,
1667     dpif_linux_flow_del,
1668     dpif_linux_flow_flush,
1669     dpif_linux_flow_dump_state_init,
1670     dpif_linux_flow_dump_start,
1671     dpif_linux_flow_dump_next,
1672     dpif_linux_flow_dump_done,
1673     dpif_linux_flow_dump_state_uninit,
1674     dpif_linux_execute,
1675     dpif_linux_operate,
1676     dpif_linux_recv_set,
1677     dpif_linux_queue_to_priority,
1678     dpif_linux_recv,
1679     dpif_linux_recv_wait,
1680     dpif_linux_recv_purge,
1681 };
1682 \f
1683 static int
1684 dpif_linux_init(void)
1685 {
1686     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
1687     static int error;
1688
1689     if (ovsthread_once_start(&once)) {
1690         error = nl_lookup_genl_family(OVS_DATAPATH_FAMILY,
1691                                       &ovs_datapath_family);
1692         if (error) {
1693             VLOG_ERR("Generic Netlink family '%s' does not exist. "
1694                      "The Open vSwitch kernel module is probably not loaded.",
1695                      OVS_DATAPATH_FAMILY);
1696         }
1697         if (!error) {
1698             error = nl_lookup_genl_family(OVS_VPORT_FAMILY, &ovs_vport_family);
1699         }
1700         if (!error) {
1701             error = nl_lookup_genl_family(OVS_FLOW_FAMILY, &ovs_flow_family);
1702         }
1703         if (!error) {
1704             error = nl_lookup_genl_family(OVS_PACKET_FAMILY,
1705                                           &ovs_packet_family);
1706         }
1707         if (!error) {
1708             error = nl_lookup_genl_mcgroup(OVS_VPORT_FAMILY, OVS_VPORT_MCGROUP,
1709                                            &ovs_vport_mcgroup);
1710         }
1711
1712         ovsthread_once_done(&once);
1713     }
1714
1715     return error;
1716 }
1717
1718 bool
1719 dpif_linux_is_internal_device(const char *name)
1720 {
1721     struct dpif_linux_vport reply;
1722     struct ofpbuf *buf;
1723     int error;
1724
1725     error = dpif_linux_vport_get(name, &reply, &buf);
1726     if (!error) {
1727         ofpbuf_delete(buf);
1728     } else if (error != ENODEV && error != ENOENT) {
1729         VLOG_WARN_RL(&error_rl, "%s: vport query failed (%s)",
1730                      name, ovs_strerror(error));
1731     }
1732
1733     return reply.type == OVS_VPORT_TYPE_INTERNAL;
1734 }
1735 \f
1736 /* Parses the contents of 'buf', which contains a "struct ovs_header" followed
1737  * by Netlink attributes, into 'vport'.  Returns 0 if successful, otherwise a
1738  * positive errno value.
1739  *
1740  * 'vport' will contain pointers into 'buf', so the caller should not free
1741  * 'buf' while 'vport' is still in use. */
1742 static int
1743 dpif_linux_vport_from_ofpbuf(struct dpif_linux_vport *vport,
1744                              const struct ofpbuf *buf)
1745 {
1746     static const struct nl_policy ovs_vport_policy[] = {
1747         [OVS_VPORT_ATTR_PORT_NO] = { .type = NL_A_U32 },
1748         [OVS_VPORT_ATTR_TYPE] = { .type = NL_A_U32 },
1749         [OVS_VPORT_ATTR_NAME] = { .type = NL_A_STRING, .max_len = IFNAMSIZ },
1750         [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NL_A_U32 },
1751         [OVS_VPORT_ATTR_STATS] = { NL_POLICY_FOR(struct ovs_vport_stats),
1752                                    .optional = true },
1753         [OVS_VPORT_ATTR_OPTIONS] = { .type = NL_A_NESTED, .optional = true },
1754     };
1755
1756     struct nlattr *a[ARRAY_SIZE(ovs_vport_policy)];
1757     struct ovs_header *ovs_header;
1758     struct nlmsghdr *nlmsg;
1759     struct genlmsghdr *genl;
1760     struct ofpbuf b;
1761
1762     dpif_linux_vport_init(vport);
1763
1764     ofpbuf_use_const(&b, buf->data, buf->size);
1765     nlmsg = ofpbuf_try_pull(&b, sizeof *nlmsg);
1766     genl = ofpbuf_try_pull(&b, sizeof *genl);
1767     ovs_header = ofpbuf_try_pull(&b, sizeof *ovs_header);
1768     if (!nlmsg || !genl || !ovs_header
1769         || nlmsg->nlmsg_type != ovs_vport_family
1770         || !nl_policy_parse(&b, 0, ovs_vport_policy, a,
1771                             ARRAY_SIZE(ovs_vport_policy))) {
1772         return EINVAL;
1773     }
1774
1775     vport->cmd = genl->cmd;
1776     vport->dp_ifindex = ovs_header->dp_ifindex;
1777     vport->port_no = nl_attr_get_odp_port(a[OVS_VPORT_ATTR_PORT_NO]);
1778     vport->type = nl_attr_get_u32(a[OVS_VPORT_ATTR_TYPE]);
1779     vport->name = nl_attr_get_string(a[OVS_VPORT_ATTR_NAME]);
1780     if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
1781         vport->upcall_pid = nl_attr_get(a[OVS_VPORT_ATTR_UPCALL_PID]);
1782     }
1783     if (a[OVS_VPORT_ATTR_STATS]) {
1784         vport->stats = nl_attr_get(a[OVS_VPORT_ATTR_STATS]);
1785     }
1786     if (a[OVS_VPORT_ATTR_OPTIONS]) {
1787         vport->options = nl_attr_get(a[OVS_VPORT_ATTR_OPTIONS]);
1788         vport->options_len = nl_attr_get_size(a[OVS_VPORT_ATTR_OPTIONS]);
1789     }
1790     return 0;
1791 }
1792
1793 /* Appends to 'buf' (which must initially be empty) a "struct ovs_header"
1794  * followed by Netlink attributes corresponding to 'vport'. */
1795 static void
1796 dpif_linux_vport_to_ofpbuf(const struct dpif_linux_vport *vport,
1797                            struct ofpbuf *buf)
1798 {
1799     struct ovs_header *ovs_header;
1800
1801     nl_msg_put_genlmsghdr(buf, 0, ovs_vport_family, NLM_F_REQUEST | NLM_F_ECHO,
1802                           vport->cmd, OVS_VPORT_VERSION);
1803
1804     ovs_header = ofpbuf_put_uninit(buf, sizeof *ovs_header);
1805     ovs_header->dp_ifindex = vport->dp_ifindex;
1806
1807     if (vport->port_no != ODPP_NONE) {
1808         nl_msg_put_odp_port(buf, OVS_VPORT_ATTR_PORT_NO, vport->port_no);
1809     }
1810
1811     if (vport->type != OVS_VPORT_TYPE_UNSPEC) {
1812         nl_msg_put_u32(buf, OVS_VPORT_ATTR_TYPE, vport->type);
1813     }
1814
1815     if (vport->name) {
1816         nl_msg_put_string(buf, OVS_VPORT_ATTR_NAME, vport->name);
1817     }
1818
1819     if (vport->upcall_pid) {
1820         nl_msg_put_u32(buf, OVS_VPORT_ATTR_UPCALL_PID, *vport->upcall_pid);
1821     }
1822
1823     if (vport->stats) {
1824         nl_msg_put_unspec(buf, OVS_VPORT_ATTR_STATS,
1825                           vport->stats, sizeof *vport->stats);
1826     }
1827
1828     if (vport->options) {
1829         nl_msg_put_nested(buf, OVS_VPORT_ATTR_OPTIONS,
1830                           vport->options, vport->options_len);
1831     }
1832 }
1833
1834 /* Clears 'vport' to "empty" values. */
1835 void
1836 dpif_linux_vport_init(struct dpif_linux_vport *vport)
1837 {
1838     memset(vport, 0, sizeof *vport);
1839     vport->port_no = ODPP_NONE;
1840 }
1841
1842 /* Executes 'request' in the kernel datapath.  If the command fails, returns a
1843  * positive errno value.  Otherwise, if 'reply' and 'bufp' are null, returns 0
1844  * without doing anything else.  If 'reply' and 'bufp' are nonnull, then the
1845  * result of the command is expected to be an ovs_vport also, which is decoded
1846  * and stored in '*reply' and '*bufp'.  The caller must free '*bufp' when the
1847  * reply is no longer needed ('reply' will contain pointers into '*bufp'). */
1848 int
1849 dpif_linux_vport_transact(const struct dpif_linux_vport *request,
1850                           struct dpif_linux_vport *reply,
1851                           struct ofpbuf **bufp)
1852 {
1853     struct ofpbuf *request_buf;
1854     int error;
1855
1856     ovs_assert((reply != NULL) == (bufp != NULL));
1857
1858     error = dpif_linux_init();
1859     if (error) {
1860         if (reply) {
1861             *bufp = NULL;
1862             dpif_linux_vport_init(reply);
1863         }
1864         return error;
1865     }
1866
1867     request_buf = ofpbuf_new(1024);
1868     dpif_linux_vport_to_ofpbuf(request, request_buf);
1869     error = nl_transact(NETLINK_GENERIC, request_buf, bufp);
1870     ofpbuf_delete(request_buf);
1871
1872     if (reply) {
1873         if (!error) {
1874             error = dpif_linux_vport_from_ofpbuf(reply, *bufp);
1875         }
1876         if (error) {
1877             dpif_linux_vport_init(reply);
1878             ofpbuf_delete(*bufp);
1879             *bufp = NULL;
1880         }
1881     }
1882     return error;
1883 }
1884
1885 /* Obtains information about the kernel vport named 'name' and stores it into
1886  * '*reply' and '*bufp'.  The caller must free '*bufp' when the reply is no
1887  * longer needed ('reply' will contain pointers into '*bufp').  */
1888 int
1889 dpif_linux_vport_get(const char *name, struct dpif_linux_vport *reply,
1890                      struct ofpbuf **bufp)
1891 {
1892     struct dpif_linux_vport request;
1893
1894     dpif_linux_vport_init(&request);
1895     request.cmd = OVS_VPORT_CMD_GET;
1896     request.name = name;
1897
1898     return dpif_linux_vport_transact(&request, reply, bufp);
1899 }
1900 \f
1901 /* Parses the contents of 'buf', which contains a "struct ovs_header" followed
1902  * by Netlink attributes, into 'dp'.  Returns 0 if successful, otherwise a
1903  * positive errno value.
1904  *
1905  * 'dp' will contain pointers into 'buf', so the caller should not free 'buf'
1906  * while 'dp' is still in use. */
1907 static int
1908 dpif_linux_dp_from_ofpbuf(struct dpif_linux_dp *dp, const struct ofpbuf *buf)
1909 {
1910     static const struct nl_policy ovs_datapath_policy[] = {
1911         [OVS_DP_ATTR_NAME] = { .type = NL_A_STRING, .max_len = IFNAMSIZ },
1912         [OVS_DP_ATTR_STATS] = { NL_POLICY_FOR(struct ovs_dp_stats),
1913                                 .optional = true },
1914         [OVS_DP_ATTR_MEGAFLOW_STATS] = {
1915                         NL_POLICY_FOR(struct ovs_dp_megaflow_stats),
1916                         .optional = true },
1917     };
1918
1919     struct nlattr *a[ARRAY_SIZE(ovs_datapath_policy)];
1920     struct ovs_header *ovs_header;
1921     struct nlmsghdr *nlmsg;
1922     struct genlmsghdr *genl;
1923     struct ofpbuf b;
1924
1925     dpif_linux_dp_init(dp);
1926
1927     ofpbuf_use_const(&b, buf->data, buf->size);
1928     nlmsg = ofpbuf_try_pull(&b, sizeof *nlmsg);
1929     genl = ofpbuf_try_pull(&b, sizeof *genl);
1930     ovs_header = ofpbuf_try_pull(&b, sizeof *ovs_header);
1931     if (!nlmsg || !genl || !ovs_header
1932         || nlmsg->nlmsg_type != ovs_datapath_family
1933         || !nl_policy_parse(&b, 0, ovs_datapath_policy, a,
1934                             ARRAY_SIZE(ovs_datapath_policy))) {
1935         return EINVAL;
1936     }
1937
1938     dp->cmd = genl->cmd;
1939     dp->dp_ifindex = ovs_header->dp_ifindex;
1940     dp->name = nl_attr_get_string(a[OVS_DP_ATTR_NAME]);
1941     if (a[OVS_DP_ATTR_STATS]) {
1942         /* Can't use structure assignment because Netlink doesn't ensure
1943          * sufficient alignment for 64-bit members. */
1944         memcpy(&dp->stats, nl_attr_get(a[OVS_DP_ATTR_STATS]),
1945                sizeof dp->stats);
1946     }
1947
1948     if (a[OVS_DP_ATTR_MEGAFLOW_STATS]) {
1949         /* Can't use structure assignment because Netlink doesn't ensure
1950          * sufficient alignment for 64-bit members. */
1951         memcpy(&dp->megaflow_stats, nl_attr_get(a[OVS_DP_ATTR_MEGAFLOW_STATS]),
1952                sizeof dp->megaflow_stats);
1953     }
1954
1955     return 0;
1956 }
1957
1958 /* Appends to 'buf' the Generic Netlink message described by 'dp'. */
1959 static void
1960 dpif_linux_dp_to_ofpbuf(const struct dpif_linux_dp *dp, struct ofpbuf *buf)
1961 {
1962     struct ovs_header *ovs_header;
1963
1964     nl_msg_put_genlmsghdr(buf, 0, ovs_datapath_family,
1965                           NLM_F_REQUEST | NLM_F_ECHO, dp->cmd,
1966                           OVS_DATAPATH_VERSION);
1967
1968     ovs_header = ofpbuf_put_uninit(buf, sizeof *ovs_header);
1969     ovs_header->dp_ifindex = dp->dp_ifindex;
1970
1971     if (dp->name) {
1972         nl_msg_put_string(buf, OVS_DP_ATTR_NAME, dp->name);
1973     }
1974
1975     if (dp->upcall_pid) {
1976         nl_msg_put_u32(buf, OVS_DP_ATTR_UPCALL_PID, *dp->upcall_pid);
1977     }
1978
1979     if (dp->user_features) {
1980         nl_msg_put_u32(buf, OVS_DP_ATTR_USER_FEATURES, dp->user_features);
1981     }
1982
1983     /* Skip OVS_DP_ATTR_STATS since we never have a reason to serialize it. */
1984 }
1985
1986 /* Clears 'dp' to "empty" values. */
1987 static void
1988 dpif_linux_dp_init(struct dpif_linux_dp *dp)
1989 {
1990     memset(dp, 0, sizeof *dp);
1991     dp->megaflow_stats.n_masks = UINT32_MAX;
1992     dp->megaflow_stats.n_mask_hit = UINT64_MAX;
1993 }
1994
1995 static void
1996 dpif_linux_dp_dump_start(struct nl_dump *dump)
1997 {
1998     struct dpif_linux_dp request;
1999     struct ofpbuf *buf;
2000
2001     dpif_linux_dp_init(&request);
2002     request.cmd = OVS_DP_CMD_GET;
2003
2004     buf = ofpbuf_new(1024);
2005     dpif_linux_dp_to_ofpbuf(&request, buf);
2006     nl_dump_start(dump, NETLINK_GENERIC, buf);
2007     ofpbuf_delete(buf);
2008 }
2009
2010 /* Executes 'request' in the kernel datapath.  If the command fails, returns a
2011  * positive errno value.  Otherwise, if 'reply' and 'bufp' are null, returns 0
2012  * without doing anything else.  If 'reply' and 'bufp' are nonnull, then the
2013  * result of the command is expected to be of the same form, which is decoded
2014  * and stored in '*reply' and '*bufp'.  The caller must free '*bufp' when the
2015  * reply is no longer needed ('reply' will contain pointers into '*bufp'). */
2016 static int
2017 dpif_linux_dp_transact(const struct dpif_linux_dp *request,
2018                        struct dpif_linux_dp *reply, struct ofpbuf **bufp)
2019 {
2020     struct ofpbuf *request_buf;
2021     int error;
2022
2023     ovs_assert((reply != NULL) == (bufp != NULL));
2024
2025     request_buf = ofpbuf_new(1024);
2026     dpif_linux_dp_to_ofpbuf(request, request_buf);
2027     error = nl_transact(NETLINK_GENERIC, request_buf, bufp);
2028     ofpbuf_delete(request_buf);
2029
2030     if (reply) {
2031         dpif_linux_dp_init(reply);
2032         if (!error) {
2033             error = dpif_linux_dp_from_ofpbuf(reply, *bufp);
2034         }
2035         if (error) {
2036             ofpbuf_delete(*bufp);
2037             *bufp = NULL;
2038         }
2039     }
2040     return error;
2041 }
2042
2043 /* Obtains information about 'dpif_' and stores it into '*reply' and '*bufp'.
2044  * The caller must free '*bufp' when the reply is no longer needed ('reply'
2045  * will contain pointers into '*bufp').  */
2046 static int
2047 dpif_linux_dp_get(const struct dpif *dpif_, struct dpif_linux_dp *reply,
2048                   struct ofpbuf **bufp)
2049 {
2050     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
2051     struct dpif_linux_dp request;
2052
2053     dpif_linux_dp_init(&request);
2054     request.cmd = OVS_DP_CMD_GET;
2055     request.dp_ifindex = dpif->dp_ifindex;
2056
2057     return dpif_linux_dp_transact(&request, reply, bufp);
2058 }
2059 \f
2060 /* Parses the contents of 'buf', which contains a "struct ovs_header" followed
2061  * by Netlink attributes, into 'flow'.  Returns 0 if successful, otherwise a
2062  * positive errno value.
2063  *
2064  * 'flow' will contain pointers into 'buf', so the caller should not free 'buf'
2065  * while 'flow' is still in use. */
2066 static int
2067 dpif_linux_flow_from_ofpbuf(struct dpif_linux_flow *flow,
2068                             const struct ofpbuf *buf)
2069 {
2070     static const struct nl_policy ovs_flow_policy[] = {
2071         [OVS_FLOW_ATTR_KEY] = { .type = NL_A_NESTED },
2072         [OVS_FLOW_ATTR_MASK] = { .type = NL_A_NESTED, .optional = true },
2073         [OVS_FLOW_ATTR_ACTIONS] = { .type = NL_A_NESTED, .optional = true },
2074         [OVS_FLOW_ATTR_STATS] = { NL_POLICY_FOR(struct ovs_flow_stats),
2075                                   .optional = true },
2076         [OVS_FLOW_ATTR_TCP_FLAGS] = { .type = NL_A_U8, .optional = true },
2077         [OVS_FLOW_ATTR_USED] = { .type = NL_A_U64, .optional = true },
2078         /* The kernel never uses OVS_FLOW_ATTR_CLEAR. */
2079     };
2080
2081     struct nlattr *a[ARRAY_SIZE(ovs_flow_policy)];
2082     struct ovs_header *ovs_header;
2083     struct nlmsghdr *nlmsg;
2084     struct genlmsghdr *genl;
2085     struct ofpbuf b;
2086
2087     dpif_linux_flow_init(flow);
2088
2089     ofpbuf_use_const(&b, buf->data, buf->size);
2090     nlmsg = ofpbuf_try_pull(&b, sizeof *nlmsg);
2091     genl = ofpbuf_try_pull(&b, sizeof *genl);
2092     ovs_header = ofpbuf_try_pull(&b, sizeof *ovs_header);
2093     if (!nlmsg || !genl || !ovs_header
2094         || nlmsg->nlmsg_type != ovs_flow_family
2095         || !nl_policy_parse(&b, 0, ovs_flow_policy, a,
2096                             ARRAY_SIZE(ovs_flow_policy))) {
2097         return EINVAL;
2098     }
2099
2100     flow->nlmsg_flags = nlmsg->nlmsg_flags;
2101     flow->dp_ifindex = ovs_header->dp_ifindex;
2102     flow->key = nl_attr_get(a[OVS_FLOW_ATTR_KEY]);
2103     flow->key_len = nl_attr_get_size(a[OVS_FLOW_ATTR_KEY]);
2104
2105     if (a[OVS_FLOW_ATTR_MASK]) {
2106         flow->mask = nl_attr_get(a[OVS_FLOW_ATTR_MASK]);
2107         flow->mask_len = nl_attr_get_size(a[OVS_FLOW_ATTR_MASK]);
2108     }
2109     if (a[OVS_FLOW_ATTR_ACTIONS]) {
2110         flow->actions = nl_attr_get(a[OVS_FLOW_ATTR_ACTIONS]);
2111         flow->actions_len = nl_attr_get_size(a[OVS_FLOW_ATTR_ACTIONS]);
2112     }
2113     if (a[OVS_FLOW_ATTR_STATS]) {
2114         flow->stats = nl_attr_get(a[OVS_FLOW_ATTR_STATS]);
2115     }
2116     if (a[OVS_FLOW_ATTR_TCP_FLAGS]) {
2117         flow->tcp_flags = nl_attr_get(a[OVS_FLOW_ATTR_TCP_FLAGS]);
2118     }
2119     if (a[OVS_FLOW_ATTR_USED]) {
2120         flow->used = nl_attr_get(a[OVS_FLOW_ATTR_USED]);
2121     }
2122     return 0;
2123 }
2124
2125 /* Appends to 'buf' (which must initially be empty) a "struct ovs_header"
2126  * followed by Netlink attributes corresponding to 'flow'. */
2127 static void
2128 dpif_linux_flow_to_ofpbuf(const struct dpif_linux_flow *flow,
2129                           struct ofpbuf *buf)
2130 {
2131     struct ovs_header *ovs_header;
2132
2133     nl_msg_put_genlmsghdr(buf, 0, ovs_flow_family,
2134                           NLM_F_REQUEST | flow->nlmsg_flags,
2135                           flow->cmd, OVS_FLOW_VERSION);
2136
2137     ovs_header = ofpbuf_put_uninit(buf, sizeof *ovs_header);
2138     ovs_header->dp_ifindex = flow->dp_ifindex;
2139
2140     if (flow->key_len) {
2141         nl_msg_put_unspec(buf, OVS_FLOW_ATTR_KEY, flow->key, flow->key_len);
2142     }
2143
2144     if (flow->mask_len) {
2145         nl_msg_put_unspec(buf, OVS_FLOW_ATTR_MASK, flow->mask, flow->mask_len);
2146     }
2147
2148     if (flow->actions || flow->actions_len) {
2149         nl_msg_put_unspec(buf, OVS_FLOW_ATTR_ACTIONS,
2150                           flow->actions, flow->actions_len);
2151     }
2152
2153     /* We never need to send these to the kernel. */
2154     ovs_assert(!flow->stats);
2155     ovs_assert(!flow->tcp_flags);
2156     ovs_assert(!flow->used);
2157
2158     if (flow->clear) {
2159         nl_msg_put_flag(buf, OVS_FLOW_ATTR_CLEAR);
2160     }
2161 }
2162
2163 /* Clears 'flow' to "empty" values. */
2164 static void
2165 dpif_linux_flow_init(struct dpif_linux_flow *flow)
2166 {
2167     memset(flow, 0, sizeof *flow);
2168 }
2169
2170 /* Executes 'request' in the kernel datapath.  If the command fails, returns a
2171  * positive errno value.  Otherwise, if 'reply' and 'bufp' are null, returns 0
2172  * without doing anything else.  If 'reply' and 'bufp' are nonnull, then the
2173  * result of the command is expected to be a flow also, which is decoded and
2174  * stored in '*reply' and '*bufp'.  The caller must free '*bufp' when the reply
2175  * is no longer needed ('reply' will contain pointers into '*bufp'). */
2176 static int
2177 dpif_linux_flow_transact(struct dpif_linux_flow *request,
2178                          struct dpif_linux_flow *reply, struct ofpbuf **bufp)
2179 {
2180     struct ofpbuf *request_buf;
2181     int error;
2182
2183     ovs_assert((reply != NULL) == (bufp != NULL));
2184
2185     if (reply) {
2186         request->nlmsg_flags |= NLM_F_ECHO;
2187     }
2188
2189     request_buf = ofpbuf_new(1024);
2190     dpif_linux_flow_to_ofpbuf(request, request_buf);
2191     error = nl_transact(NETLINK_GENERIC, request_buf, bufp);
2192     ofpbuf_delete(request_buf);
2193
2194     if (reply) {
2195         if (!error) {
2196             error = dpif_linux_flow_from_ofpbuf(reply, *bufp);
2197         }
2198         if (error) {
2199             dpif_linux_flow_init(reply);
2200             ofpbuf_delete(*bufp);
2201             *bufp = NULL;
2202         }
2203     }
2204     return error;
2205 }
2206
2207 static void
2208 dpif_linux_flow_get_stats(const struct dpif_linux_flow *flow,
2209                           struct dpif_flow_stats *stats)
2210 {
2211     if (flow->stats) {
2212         stats->n_packets = get_unaligned_u64(&flow->stats->n_packets);
2213         stats->n_bytes = get_unaligned_u64(&flow->stats->n_bytes);
2214     } else {
2215         stats->n_packets = 0;
2216         stats->n_bytes = 0;
2217     }
2218     stats->used = flow->used ? get_32aligned_u64(flow->used) : 0;
2219     stats->tcp_flags = flow->tcp_flags ? *flow->tcp_flags : 0;
2220 }
2221 \f
2222 /* Logs information about a packet that was recently lost in 'ch' (in
2223  * 'dpif_'). */
2224 static void
2225 report_loss(struct dpif *dpif_, struct dpif_channel *ch)
2226 {
2227     struct dpif_linux *dpif = dpif_linux_cast(dpif_);
2228     static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 5);
2229     struct ds s;
2230
2231     if (VLOG_DROP_WARN(&rl)) {
2232         return;
2233     }
2234
2235     ds_init(&s);
2236     if (ch->last_poll != LLONG_MIN) {
2237         ds_put_format(&s, " (last polled %lld ms ago)",
2238                       time_msec() - ch->last_poll);
2239     }
2240
2241     VLOG_WARN("%s: lost packet on channel %"PRIdPTR"%s",
2242               dpif_name(dpif_), ch - dpif->channels, ds_cstr(&s));
2243     ds_destroy(&s);
2244 }