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