]> git.proxmox.com Git - mirror_ovs.git/blob - lib/dpif-linux.c
Create specific types for ofp and odp port
[mirror_ovs.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 nl_sock *genl_sock;
166 static struct nln *nln = NULL;
167
168 static int dpif_linux_init(void);
169 static void open_dpif(const struct dpif_linux_dp *, struct dpif **);
170 static bool dpif_linux_nln_parse(struct ofpbuf *, void *);
171 static void dpif_linux_port_changed(const void *vport, void *dpif);
172 static uint32_t dpif_linux_port_get_pid(const struct dpif *,
173 odp_port_t port_no);
174
175 static void dpif_linux_vport_to_ofpbuf(const struct dpif_linux_vport *,
176 struct ofpbuf *);
177 static int dpif_linux_vport_from_ofpbuf(struct dpif_linux_vport *,
178 const struct ofpbuf *);
179
180 static struct dpif_linux *
181 dpif_linux_cast(const struct dpif *dpif)
182 {
183 dpif_assert_class(dpif, &dpif_linux_class);
184 return CONTAINER_OF(dpif, struct dpif_linux, dpif);
185 }
186
187 static int
188 dpif_linux_enumerate(struct sset *all_dps)
189 {
190 struct nl_dump dump;
191 struct ofpbuf msg;
192 int error;
193
194 error = dpif_linux_init();
195 if (error) {
196 return error;
197 }
198
199 dpif_linux_dp_dump_start(&dump);
200 while (nl_dump_next(&dump, &msg)) {
201 struct dpif_linux_dp dp;
202
203 if (!dpif_linux_dp_from_ofpbuf(&dp, &msg)) {
204 sset_add(all_dps, dp.name);
205 }
206 }
207 return nl_dump_done(&dump);
208 }
209
210 static int
211 dpif_linux_open(const struct dpif_class *class OVS_UNUSED, const char *name,
212 bool create, struct dpif **dpifp)
213 {
214 struct dpif_linux_dp dp_request, dp;
215 struct ofpbuf *buf;
216 uint32_t upcall_pid;
217 int error;
218
219 error = dpif_linux_init();
220 if (error) {
221 return error;
222 }
223
224 /* Create or look up datapath. */
225 dpif_linux_dp_init(&dp_request);
226 if (create) {
227 dp_request.cmd = OVS_DP_CMD_NEW;
228 upcall_pid = 0;
229 dp_request.upcall_pid = &upcall_pid;
230 } else {
231 dp_request.cmd = OVS_DP_CMD_GET;
232 }
233 dp_request.name = name;
234 error = dpif_linux_dp_transact(&dp_request, &dp, &buf);
235 if (error) {
236 return error;
237 }
238
239 open_dpif(&dp, dpifp);
240 ofpbuf_delete(buf);
241 return 0;
242 }
243
244 static void
245 open_dpif(const struct dpif_linux_dp *dp, struct dpif **dpifp)
246 {
247 struct dpif_linux *dpif;
248
249 dpif = xzalloc(sizeof *dpif);
250 dpif->port_notifier = nln_notifier_create(nln, dpif_linux_port_changed,
251 dpif);
252 dpif->epoll_fd = -1;
253
254 dpif_init(&dpif->dpif, &dpif_linux_class, dp->name,
255 dp->dp_ifindex, dp->dp_ifindex);
256
257 dpif->dp_ifindex = dp->dp_ifindex;
258 sset_init(&dpif->changed_ports);
259 *dpifp = &dpif->dpif;
260 }
261
262 static void
263 destroy_channels(struct dpif_linux *dpif)
264 {
265 unsigned int i;
266
267 if (dpif->epoll_fd < 0) {
268 return;
269 }
270
271 for (i = 0; i < dpif->uc_array_size; i++ ) {
272 struct dpif_linux_vport vport_request;
273 struct dpif_channel *ch = &dpif->channels[i];
274 uint32_t upcall_pid = 0;
275
276 if (!ch->sock) {
277 continue;
278 }
279
280 /* Turn off upcalls. */
281 dpif_linux_vport_init(&vport_request);
282 vport_request.cmd = OVS_VPORT_CMD_SET;
283 vport_request.dp_ifindex = dpif->dp_ifindex;
284 vport_request.port_no = u32_to_odp(i);
285 vport_request.upcall_pid = &upcall_pid;
286 dpif_linux_vport_transact(&vport_request, NULL, NULL);
287
288 nl_sock_destroy(ch->sock);
289 }
290
291 free(dpif->channels);
292 dpif->channels = NULL;
293 dpif->uc_array_size = 0;
294
295 free(dpif->epoll_events);
296 dpif->epoll_events = NULL;
297 dpif->n_events = dpif->event_offset = 0;
298
299 close(dpif->epoll_fd);
300 dpif->epoll_fd = -1;
301 }
302
303 static int
304 add_channel(struct dpif_linux *dpif, odp_port_t port_no, struct nl_sock *sock)
305 {
306 struct epoll_event event;
307 uint32_t port_idx = odp_to_u32(port_no);
308
309 if (dpif->epoll_fd < 0) {
310 return 0;
311 }
312
313 /* We assume that the datapath densely chooses port numbers, which
314 * can therefore be used as an index into an array of channels. */
315 if (port_idx >= dpif->uc_array_size) {
316 uint32_t new_size = port_idx + 1;
317 uint32_t i;
318
319 if (new_size > MAX_PORTS) {
320 VLOG_WARN_RL(&error_rl, "%s: datapath port %"PRIu32" too big",
321 dpif_name(&dpif->dpif), port_no);
322 return EFBIG;
323 }
324
325 dpif->channels = xrealloc(dpif->channels,
326 new_size * sizeof *dpif->channels);
327 for (i = dpif->uc_array_size; i < new_size; i++) {
328 dpif->channels[i].sock = NULL;
329 }
330
331 dpif->epoll_events = xrealloc(dpif->epoll_events,
332 new_size * sizeof *dpif->epoll_events);
333 dpif->uc_array_size = new_size;
334 }
335
336 memset(&event, 0, sizeof event);
337 event.events = EPOLLIN;
338 event.data.u32 = port_idx;
339 if (epoll_ctl(dpif->epoll_fd, EPOLL_CTL_ADD, nl_sock_fd(sock),
340 &event) < 0) {
341 return errno;
342 }
343
344 nl_sock_destroy(dpif->channels[port_idx].sock);
345 dpif->channels[port_idx].sock = sock;
346 dpif->channels[port_idx].last_poll = LLONG_MIN;
347
348 return 0;
349 }
350
351 static void
352 del_channel(struct dpif_linux *dpif, odp_port_t port_no)
353 {
354 struct dpif_channel *ch;
355 uint32_t port_idx = odp_to_u32(port_no);
356
357 if (dpif->epoll_fd < 0 || port_idx >= dpif->uc_array_size) {
358 return;
359 }
360
361 ch = &dpif->channels[port_idx];
362 if (!ch->sock) {
363 return;
364 }
365
366 epoll_ctl(dpif->epoll_fd, EPOLL_CTL_DEL, nl_sock_fd(ch->sock), NULL);
367 dpif->event_offset = dpif->n_events = 0;
368
369 nl_sock_destroy(ch->sock);
370 ch->sock = NULL;
371 }
372
373 static void
374 dpif_linux_close(struct dpif *dpif_)
375 {
376 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
377
378 nln_notifier_destroy(dpif->port_notifier);
379 destroy_channels(dpif);
380 sset_destroy(&dpif->changed_ports);
381 free(dpif);
382 }
383
384 static int
385 dpif_linux_destroy(struct dpif *dpif_)
386 {
387 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
388 struct dpif_linux_dp dp;
389
390 dpif_linux_dp_init(&dp);
391 dp.cmd = OVS_DP_CMD_DEL;
392 dp.dp_ifindex = dpif->dp_ifindex;
393 return dpif_linux_dp_transact(&dp, NULL, NULL);
394 }
395
396 static void
397 dpif_linux_run(struct dpif *dpif_ OVS_UNUSED)
398 {
399 if (nln) {
400 nln_run(nln);
401 }
402 }
403
404 static void
405 dpif_linux_wait(struct dpif *dpif OVS_UNUSED)
406 {
407 if (nln) {
408 nln_wait(nln);
409 }
410 }
411
412 static int
413 dpif_linux_get_stats(const struct dpif *dpif_, struct dpif_dp_stats *stats)
414 {
415 struct dpif_linux_dp dp;
416 struct ofpbuf *buf;
417 int error;
418
419 error = dpif_linux_dp_get(dpif_, &dp, &buf);
420 if (!error) {
421 stats->n_hit = dp.stats.n_hit;
422 stats->n_missed = dp.stats.n_missed;
423 stats->n_lost = dp.stats.n_lost;
424 stats->n_flows = dp.stats.n_flows;
425 ofpbuf_delete(buf);
426 }
427 return error;
428 }
429
430 static const char *
431 get_vport_type(const struct dpif_linux_vport *vport)
432 {
433 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
434
435 switch (vport->type) {
436 case OVS_VPORT_TYPE_NETDEV:
437 return "system";
438
439 case OVS_VPORT_TYPE_INTERNAL:
440 return "internal";
441
442 case OVS_VPORT_TYPE_GRE:
443 return "gre";
444
445 case OVS_VPORT_TYPE_GRE64:
446 return "gre64";
447
448 case OVS_VPORT_TYPE_VXLAN:
449 return "vxlan";
450
451 case OVS_VPORT_TYPE_LISP:
452 return "lisp";
453
454 case OVS_VPORT_TYPE_UNSPEC:
455 case __OVS_VPORT_TYPE_MAX:
456 break;
457 }
458
459 VLOG_WARN_RL(&rl, "dp%d: port `%s' has unsupported type %u",
460 vport->dp_ifindex, vport->name, (unsigned int) vport->type);
461 return "unknown";
462 }
463
464 static enum ovs_vport_type
465 netdev_to_ovs_vport_type(const struct netdev *netdev)
466 {
467 const char *type = netdev_get_type(netdev);
468
469 if (!strcmp(type, "tap") || !strcmp(type, "system")) {
470 return OVS_VPORT_TYPE_NETDEV;
471 } else if (!strcmp(type, "internal")) {
472 return OVS_VPORT_TYPE_INTERNAL;
473 } else if (strstr(type, "gre64")) {
474 return OVS_VPORT_TYPE_GRE64;
475 } else if (strstr(type, "gre")) {
476 return OVS_VPORT_TYPE_GRE;
477 } else if (!strcmp(type, "vxlan")) {
478 return OVS_VPORT_TYPE_VXLAN;
479 } else if (!strcmp(type, "lisp")) {
480 return OVS_VPORT_TYPE_LISP;
481 } else {
482 return OVS_VPORT_TYPE_UNSPEC;
483 }
484 }
485
486 static int
487 dpif_linux_port_add(struct dpif *dpif_, struct netdev *netdev,
488 odp_port_t *port_nop)
489 {
490 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
491 const struct netdev_tunnel_config *tnl_cfg;
492 char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
493 const char *name = netdev_vport_get_dpif_port(netdev,
494 namebuf, sizeof namebuf);
495 const char *type = netdev_get_type(netdev);
496 struct dpif_linux_vport request, reply;
497 struct nl_sock *sock = NULL;
498 uint32_t upcall_pid;
499 struct ofpbuf *buf;
500 uint64_t options_stub[64 / 8];
501 struct ofpbuf options;
502 int error;
503
504 if (dpif->epoll_fd >= 0) {
505 error = nl_sock_create(NETLINK_GENERIC, &sock);
506 if (error) {
507 return error;
508 }
509 }
510
511 dpif_linux_vport_init(&request);
512 request.cmd = OVS_VPORT_CMD_NEW;
513 request.dp_ifindex = dpif->dp_ifindex;
514 request.type = netdev_to_ovs_vport_type(netdev);
515 if (request.type == OVS_VPORT_TYPE_UNSPEC) {
516 VLOG_WARN_RL(&error_rl, "%s: cannot create port `%s' because it has "
517 "unsupported type `%s'",
518 dpif_name(dpif_), name, type);
519 nl_sock_destroy(sock);
520 return EINVAL;
521 }
522 request.name = name;
523
524 if (request.type == OVS_VPORT_TYPE_NETDEV) {
525 netdev_linux_ethtool_set_flag(netdev, ETH_FLAG_LRO, "LRO", false);
526 }
527
528 tnl_cfg = netdev_get_tunnel_config(netdev);
529 if (tnl_cfg && tnl_cfg->dst_port != 0) {
530 ofpbuf_use_stack(&options, options_stub, sizeof options_stub);
531 nl_msg_put_u16(&options, OVS_TUNNEL_ATTR_DST_PORT,
532 ntohs(tnl_cfg->dst_port));
533 request.options = options.data;
534 request.options_len = options.size;
535 }
536
537 request.port_no = *port_nop;
538 upcall_pid = sock ? nl_sock_pid(sock) : 0;
539 request.upcall_pid = &upcall_pid;
540
541 error = dpif_linux_vport_transact(&request, &reply, &buf);
542 if (!error) {
543 *port_nop = reply.port_no;
544 VLOG_DBG("%s: assigning port %"PRIu32" to netlink pid %"PRIu32,
545 dpif_name(dpif_), reply.port_no, upcall_pid);
546 } else {
547 if (error == EBUSY && *port_nop != ODPP_NONE) {
548 VLOG_INFO("%s: requested port %"PRIu32" is in use",
549 dpif_name(dpif_), *port_nop);
550 }
551 nl_sock_destroy(sock);
552 ofpbuf_delete(buf);
553 return error;
554 }
555 ofpbuf_delete(buf);
556
557 if (sock) {
558 error = add_channel(dpif, *port_nop, sock);
559 if (error) {
560 VLOG_INFO("%s: could not add channel for port %s",
561 dpif_name(dpif_), name);
562
563 /* Delete the port. */
564 dpif_linux_vport_init(&request);
565 request.cmd = OVS_VPORT_CMD_DEL;
566 request.dp_ifindex = dpif->dp_ifindex;
567 request.port_no = *port_nop;
568 dpif_linux_vport_transact(&request, NULL, NULL);
569
570 nl_sock_destroy(sock);
571 return error;
572 }
573 }
574
575 return 0;
576 }
577
578 static int
579 dpif_linux_port_del(struct dpif *dpif_, odp_port_t port_no)
580 {
581 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
582 struct dpif_linux_vport vport;
583 int error;
584
585 dpif_linux_vport_init(&vport);
586 vport.cmd = OVS_VPORT_CMD_DEL;
587 vport.dp_ifindex = dpif->dp_ifindex;
588 vport.port_no = port_no;
589 error = dpif_linux_vport_transact(&vport, NULL, NULL);
590
591 del_channel(dpif, port_no);
592
593 return error;
594 }
595
596 static int
597 dpif_linux_port_query__(const struct dpif *dpif, odp_port_t port_no,
598 const char *port_name, struct dpif_port *dpif_port)
599 {
600 struct dpif_linux_vport request;
601 struct dpif_linux_vport reply;
602 struct ofpbuf *buf;
603 int error;
604
605 dpif_linux_vport_init(&request);
606 request.cmd = OVS_VPORT_CMD_GET;
607 request.dp_ifindex = dpif_linux_cast(dpif)->dp_ifindex;
608 request.port_no = port_no;
609 request.name = port_name;
610
611 error = dpif_linux_vport_transact(&request, &reply, &buf);
612 if (!error) {
613 if (reply.dp_ifindex != request.dp_ifindex) {
614 /* A query by name reported that 'port_name' is in some datapath
615 * other than 'dpif', but the caller wants to know about 'dpif'. */
616 error = ENODEV;
617 } else if (dpif_port) {
618 dpif_port->name = xstrdup(reply.name);
619 dpif_port->type = xstrdup(get_vport_type(&reply));
620 dpif_port->port_no = reply.port_no;
621 }
622 ofpbuf_delete(buf);
623 }
624 return error;
625 }
626
627 static int
628 dpif_linux_port_query_by_number(const struct dpif *dpif, odp_port_t port_no,
629 struct dpif_port *dpif_port)
630 {
631 return dpif_linux_port_query__(dpif, port_no, NULL, dpif_port);
632 }
633
634 static int
635 dpif_linux_port_query_by_name(const struct dpif *dpif, const char *devname,
636 struct dpif_port *dpif_port)
637 {
638 return dpif_linux_port_query__(dpif, 0, devname, dpif_port);
639 }
640
641 static odp_port_t
642 dpif_linux_get_max_ports(const struct dpif *dpif OVS_UNUSED)
643 {
644 return u32_to_odp(MAX_PORTS);
645 }
646
647 static uint32_t
648 dpif_linux_port_get_pid(const struct dpif *dpif_, odp_port_t port_no)
649 {
650 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
651 uint32_t port_idx = odp_to_u32(port_no);
652
653 if (dpif->epoll_fd < 0) {
654 return 0;
655 } else {
656 /* The ODPP_NONE "reserved" port number uses the "ovs-system"'s
657 * channel, since it is not heavily loaded. */
658 uint32_t idx = port_idx >= dpif->uc_array_size ? 0 : port_idx;
659 return nl_sock_pid(dpif->channels[idx].sock);
660 }
661 }
662
663 static int
664 dpif_linux_flow_flush(struct dpif *dpif_)
665 {
666 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
667 struct dpif_linux_flow flow;
668
669 dpif_linux_flow_init(&flow);
670 flow.cmd = OVS_FLOW_CMD_DEL;
671 flow.dp_ifindex = dpif->dp_ifindex;
672 return dpif_linux_flow_transact(&flow, NULL, NULL);
673 }
674
675 struct dpif_linux_port_state {
676 struct nl_dump dump;
677 };
678
679 static int
680 dpif_linux_port_dump_start(const struct dpif *dpif_, void **statep)
681 {
682 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
683 struct dpif_linux_port_state *state;
684 struct dpif_linux_vport request;
685 struct ofpbuf *buf;
686
687 *statep = state = xmalloc(sizeof *state);
688
689 dpif_linux_vport_init(&request);
690 request.cmd = OVS_DP_CMD_GET;
691 request.dp_ifindex = dpif->dp_ifindex;
692
693 buf = ofpbuf_new(1024);
694 dpif_linux_vport_to_ofpbuf(&request, buf);
695 nl_dump_start(&state->dump, genl_sock, buf);
696 ofpbuf_delete(buf);
697
698 return 0;
699 }
700
701 static int
702 dpif_linux_port_dump_next(const struct dpif *dpif OVS_UNUSED, void *state_,
703 struct dpif_port *dpif_port)
704 {
705 struct dpif_linux_port_state *state = state_;
706 struct dpif_linux_vport vport;
707 struct ofpbuf buf;
708 int error;
709
710 if (!nl_dump_next(&state->dump, &buf)) {
711 return EOF;
712 }
713
714 error = dpif_linux_vport_from_ofpbuf(&vport, &buf);
715 if (error) {
716 return error;
717 }
718
719 dpif_port->name = CONST_CAST(char *, vport.name);
720 dpif_port->type = CONST_CAST(char *, get_vport_type(&vport));
721 dpif_port->port_no = vport.port_no;
722 return 0;
723 }
724
725 static int
726 dpif_linux_port_dump_done(const struct dpif *dpif_ OVS_UNUSED, void *state_)
727 {
728 struct dpif_linux_port_state *state = state_;
729 int error = nl_dump_done(&state->dump);
730
731 free(state);
732 return error;
733 }
734
735 static int
736 dpif_linux_port_poll(const struct dpif *dpif_, char **devnamep)
737 {
738 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
739
740 if (dpif->change_error) {
741 dpif->change_error = false;
742 sset_clear(&dpif->changed_ports);
743 return ENOBUFS;
744 } else if (!sset_is_empty(&dpif->changed_ports)) {
745 *devnamep = sset_pop(&dpif->changed_ports);
746 return 0;
747 } else {
748 return EAGAIN;
749 }
750 }
751
752 static void
753 dpif_linux_port_poll_wait(const struct dpif *dpif_)
754 {
755 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
756 if (!sset_is_empty(&dpif->changed_ports) || dpif->change_error) {
757 poll_immediate_wake();
758 }
759 }
760
761 static int
762 dpif_linux_flow_get__(const struct dpif *dpif_,
763 const struct nlattr *key, size_t key_len,
764 struct dpif_linux_flow *reply, struct ofpbuf **bufp)
765 {
766 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
767 struct dpif_linux_flow request;
768
769 dpif_linux_flow_init(&request);
770 request.cmd = OVS_FLOW_CMD_GET;
771 request.dp_ifindex = dpif->dp_ifindex;
772 request.key = key;
773 request.key_len = key_len;
774 return dpif_linux_flow_transact(&request, reply, bufp);
775 }
776
777 static int
778 dpif_linux_flow_get(const struct dpif *dpif_,
779 const struct nlattr *key, size_t key_len,
780 struct ofpbuf **actionsp, struct dpif_flow_stats *stats)
781 {
782 struct dpif_linux_flow reply;
783 struct ofpbuf *buf;
784 int error;
785
786 error = dpif_linux_flow_get__(dpif_, key, key_len, &reply, &buf);
787 if (!error) {
788 if (stats) {
789 dpif_linux_flow_get_stats(&reply, stats);
790 }
791 if (actionsp) {
792 buf->data = CONST_CAST(struct nlattr *, reply.actions);
793 buf->size = reply.actions_len;
794 *actionsp = buf;
795 } else {
796 ofpbuf_delete(buf);
797 }
798 }
799 return error;
800 }
801
802 static void
803 dpif_linux_init_flow_put(struct dpif *dpif_, const struct dpif_flow_put *put,
804 struct dpif_linux_flow *request)
805 {
806 static const struct nlattr dummy_action;
807
808 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
809
810 dpif_linux_flow_init(request);
811 request->cmd = (put->flags & DPIF_FP_CREATE
812 ? OVS_FLOW_CMD_NEW : OVS_FLOW_CMD_SET);
813 request->dp_ifindex = dpif->dp_ifindex;
814 request->key = put->key;
815 request->key_len = put->key_len;
816 request->mask = put->mask;
817 request->mask_len = put->mask_len;
818 /* Ensure that OVS_FLOW_ATTR_ACTIONS will always be included. */
819 request->actions = (put->actions
820 ? put->actions
821 : CONST_CAST(struct nlattr *, &dummy_action));
822 request->actions_len = put->actions_len;
823 if (put->flags & DPIF_FP_ZERO_STATS) {
824 request->clear = true;
825 }
826 request->nlmsg_flags = put->flags & DPIF_FP_MODIFY ? 0 : NLM_F_CREATE;
827 }
828
829 static int
830 dpif_linux_flow_put(struct dpif *dpif_, const struct dpif_flow_put *put)
831 {
832 struct dpif_linux_flow request, reply;
833 struct ofpbuf *buf;
834 int error;
835
836 dpif_linux_init_flow_put(dpif_, put, &request);
837 error = dpif_linux_flow_transact(&request,
838 put->stats ? &reply : NULL,
839 put->stats ? &buf : NULL);
840 if (!error && put->stats) {
841 dpif_linux_flow_get_stats(&reply, put->stats);
842 ofpbuf_delete(buf);
843 }
844 return error;
845 }
846
847 static void
848 dpif_linux_init_flow_del(struct dpif *dpif_, const struct dpif_flow_del *del,
849 struct dpif_linux_flow *request)
850 {
851 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
852
853 dpif_linux_flow_init(request);
854 request->cmd = OVS_FLOW_CMD_DEL;
855 request->dp_ifindex = dpif->dp_ifindex;
856 request->key = del->key;
857 request->key_len = del->key_len;
858 }
859
860 static int
861 dpif_linux_flow_del(struct dpif *dpif_, const struct dpif_flow_del *del)
862 {
863 struct dpif_linux_flow request, reply;
864 struct ofpbuf *buf;
865 int error;
866
867 dpif_linux_init_flow_del(dpif_, del, &request);
868 error = dpif_linux_flow_transact(&request,
869 del->stats ? &reply : NULL,
870 del->stats ? &buf : NULL);
871 if (!error && del->stats) {
872 dpif_linux_flow_get_stats(&reply, del->stats);
873 ofpbuf_delete(buf);
874 }
875 return error;
876 }
877
878 struct dpif_linux_flow_state {
879 struct nl_dump dump;
880 struct dpif_linux_flow flow;
881 struct dpif_flow_stats stats;
882 struct ofpbuf *buf;
883 };
884
885 static int
886 dpif_linux_flow_dump_start(const struct dpif *dpif_, void **statep)
887 {
888 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
889 struct dpif_linux_flow_state *state;
890 struct dpif_linux_flow request;
891 struct ofpbuf *buf;
892
893 *statep = state = xmalloc(sizeof *state);
894
895 dpif_linux_flow_init(&request);
896 request.cmd = OVS_DP_CMD_GET;
897 request.dp_ifindex = dpif->dp_ifindex;
898
899 buf = ofpbuf_new(1024);
900 dpif_linux_flow_to_ofpbuf(&request, buf);
901 nl_dump_start(&state->dump, genl_sock, buf);
902 ofpbuf_delete(buf);
903
904 state->buf = NULL;
905
906 return 0;
907 }
908
909 static int
910 dpif_linux_flow_dump_next(const struct dpif *dpif_ OVS_UNUSED, void *state_,
911 const struct nlattr **key, size_t *key_len,
912 const struct nlattr **mask, size_t *mask_len,
913 const struct nlattr **actions, size_t *actions_len,
914 const struct dpif_flow_stats **stats)
915 {
916 struct dpif_linux_flow_state *state = state_;
917 struct ofpbuf buf;
918 int error;
919
920 do {
921 ofpbuf_delete(state->buf);
922 state->buf = NULL;
923
924 if (!nl_dump_next(&state->dump, &buf)) {
925 return EOF;
926 }
927
928 error = dpif_linux_flow_from_ofpbuf(&state->flow, &buf);
929 if (error) {
930 return error;
931 }
932
933 if (actions && !state->flow.actions) {
934 error = dpif_linux_flow_get__(dpif_, state->flow.key,
935 state->flow.key_len,
936 &state->flow, &state->buf);
937 if (error == ENOENT) {
938 VLOG_DBG("dumped flow disappeared on get");
939 } else if (error) {
940 VLOG_WARN("error fetching dumped flow: %s", 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_sock_transact(genl_sock, &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 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 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_sock_transact_multiple(genl_sock, 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), 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)", 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 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 int error = -1;
1444
1445 if (error < 0) {
1446 unsigned int ovs_vport_mcgroup;
1447
1448 error = nl_lookup_genl_family(OVS_DATAPATH_FAMILY,
1449 &ovs_datapath_family);
1450 if (error) {
1451 VLOG_ERR("Generic Netlink family '%s' does not exist. "
1452 "The Open vSwitch kernel module is probably not loaded.",
1453 OVS_DATAPATH_FAMILY);
1454 }
1455 if (!error) {
1456 error = nl_lookup_genl_family(OVS_VPORT_FAMILY, &ovs_vport_family);
1457 }
1458 if (!error) {
1459 error = nl_lookup_genl_family(OVS_FLOW_FAMILY, &ovs_flow_family);
1460 }
1461 if (!error) {
1462 error = nl_lookup_genl_family(OVS_PACKET_FAMILY,
1463 &ovs_packet_family);
1464 }
1465 if (!error) {
1466 error = nl_sock_create(NETLINK_GENERIC, &genl_sock);
1467 }
1468 if (!error) {
1469 error = nl_lookup_genl_mcgroup(OVS_VPORT_FAMILY, OVS_VPORT_MCGROUP,
1470 &ovs_vport_mcgroup,
1471 OVS_VPORT_MCGROUP_FALLBACK_ID);
1472 }
1473 if (!error) {
1474 static struct dpif_linux_vport vport;
1475 nln = nln_create(NETLINK_GENERIC, ovs_vport_mcgroup,
1476 dpif_linux_nln_parse, &vport);
1477 }
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, 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_sock_transact(genl_sock, 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, genl_sock, 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_sock_transact(genl_sock, 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_sock_transact(genl_sock, 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 }