2 * Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira Networks.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 #include "dpif-linux.h"
27 #include <linux/types.h>
28 #include <linux/pkt_sched.h>
29 #include <linux/rtnetlink.h>
30 #include <linux/sockios.h>
34 #include <sys/epoll.h>
39 #include "dpif-provider.h"
40 #include "dynamic-string.h"
43 #include "netdev-linux.h"
44 #include "netdev-vport.h"
45 #include "netlink-notifier.h"
46 #include "netlink-socket.h"
50 #include "openvswitch/datapath-compat.h"
51 #include "openvswitch/tunnel.h"
53 #include "poll-loop.h"
57 #include "unaligned.h"
61 VLOG_DEFINE_THIS_MODULE(dpif_linux);
62 enum { MAX_PORTS = USHRT_MAX };
64 enum { N_UPCALL_SOCKS = 16 };
65 BUILD_ASSERT_DECL(IS_POW2(N_UPCALL_SOCKS));
66 BUILD_ASSERT_DECL(N_UPCALL_SOCKS <= 32); /* We use a 32-bit word as a mask. */
68 /* This ethtool flag was introduced in Linux 2.6.24, so it might be
69 * missing if we have old headers. */
70 #define ETH_FLAG_LRO (1 << 15) /* LRO is enabled */
72 struct dpif_linux_dp {
73 /* Generic Netlink header. */
76 /* struct ovs_header. */
80 const char *name; /* OVS_DP_ATTR_NAME. */
81 const uint32_t *upcall_pid; /* OVS_DP_UPCALL_PID. */
82 struct ovs_dp_stats stats; /* OVS_DP_ATTR_STATS. */
85 static void dpif_linux_dp_init(struct dpif_linux_dp *);
86 static int dpif_linux_dp_from_ofpbuf(struct dpif_linux_dp *,
87 const struct ofpbuf *);
88 static void dpif_linux_dp_dump_start(struct nl_dump *);
89 static int dpif_linux_dp_transact(const struct dpif_linux_dp *request,
90 struct dpif_linux_dp *reply,
91 struct ofpbuf **bufp);
92 static int dpif_linux_dp_get(const struct dpif *, struct dpif_linux_dp *reply,
93 struct ofpbuf **bufp);
95 struct dpif_linux_flow {
96 /* Generic Netlink header. */
99 /* struct ovs_header. */
100 unsigned int nlmsg_flags;
105 * The 'stats' member points to 64-bit data that might only be aligned on
106 * 32-bit boundaries, so get_unaligned_u64() should be used to access its
109 * If 'actions' is nonnull then OVS_FLOW_ATTR_ACTIONS will be included in
110 * the Netlink version of the command, even if actions_len is zero. */
111 const struct nlattr *key; /* OVS_FLOW_ATTR_KEY. */
113 const struct nlattr *actions; /* OVS_FLOW_ATTR_ACTIONS. */
115 const struct ovs_flow_stats *stats; /* OVS_FLOW_ATTR_STATS. */
116 const uint8_t *tcp_flags; /* OVS_FLOW_ATTR_TCP_FLAGS. */
117 const ovs_32aligned_u64 *used; /* OVS_FLOW_ATTR_USED. */
118 bool clear; /* OVS_FLOW_ATTR_CLEAR. */
121 static void dpif_linux_flow_init(struct dpif_linux_flow *);
122 static int dpif_linux_flow_from_ofpbuf(struct dpif_linux_flow *,
123 const struct ofpbuf *);
124 static void dpif_linux_flow_to_ofpbuf(const struct dpif_linux_flow *,
126 static int dpif_linux_flow_transact(struct dpif_linux_flow *request,
127 struct dpif_linux_flow *reply,
128 struct ofpbuf **bufp);
129 static void dpif_linux_flow_get_stats(const struct dpif_linux_flow *,
130 struct dpif_flow_stats *);
132 /* Datapath interface for the openvswitch Linux kernel module. */
137 /* Upcall messages. */
138 struct nl_sock *upcall_socks[N_UPCALL_SOCKS];
139 uint32_t ready_mask; /* 1-bit for each sock with unread messages. */
140 int epoll_fd; /* epoll fd that includes the upcall socks. */
142 /* Change notification. */
143 struct sset changed_ports; /* Ports that have changed. */
144 struct nln_notifier *port_notifier;
147 /* Port number allocation. */
148 uint16_t alloc_port_no;
151 static struct vlog_rate_limit error_rl = VLOG_RATE_LIMIT_INIT(9999, 5);
153 /* Generic Netlink family numbers for OVS. */
154 static int ovs_datapath_family;
155 static int ovs_vport_family;
156 static int ovs_flow_family;
157 static int ovs_packet_family;
159 /* Generic Netlink socket. */
160 static struct nl_sock *genl_sock;
161 static struct nln *nln = NULL;
163 static int dpif_linux_init(void);
164 static void open_dpif(const struct dpif_linux_dp *, struct dpif **);
165 static bool dpif_linux_nln_parse(struct ofpbuf *, void *);
166 static void dpif_linux_port_changed(const void *vport, void *dpif);
167 static uint32_t dpif_linux_port_get_pid(const struct dpif *, uint16_t port_no);
169 static void dpif_linux_vport_to_ofpbuf(const struct dpif_linux_vport *,
171 static int dpif_linux_vport_from_ofpbuf(struct dpif_linux_vport *,
172 const struct ofpbuf *);
174 static struct dpif_linux *
175 dpif_linux_cast(const struct dpif *dpif)
177 dpif_assert_class(dpif, &dpif_linux_class);
178 return CONTAINER_OF(dpif, struct dpif_linux, dpif);
182 dpif_linux_enumerate(struct sset *all_dps)
188 error = dpif_linux_init();
193 dpif_linux_dp_dump_start(&dump);
194 while (nl_dump_next(&dump, &msg)) {
195 struct dpif_linux_dp dp;
197 if (!dpif_linux_dp_from_ofpbuf(&dp, &msg)) {
198 sset_add(all_dps, dp.name);
201 return nl_dump_done(&dump);
205 dpif_linux_open(const struct dpif_class *class OVS_UNUSED, const char *name,
206 bool create, struct dpif **dpifp)
208 struct dpif_linux_dp dp_request, dp;
213 error = dpif_linux_init();
218 /* Create or look up datapath. */
219 dpif_linux_dp_init(&dp_request);
221 dp_request.cmd = OVS_DP_CMD_NEW;
223 dp_request.upcall_pid = &upcall_pid;
225 dp_request.cmd = OVS_DP_CMD_GET;
227 dp_request.name = name;
228 error = dpif_linux_dp_transact(&dp_request, &dp, &buf);
233 open_dpif(&dp, dpifp);
239 open_dpif(const struct dpif_linux_dp *dp, struct dpif **dpifp)
241 struct dpif_linux *dpif;
243 dpif = xzalloc(sizeof *dpif);
244 dpif->port_notifier = nln_notifier_create(nln, dpif_linux_port_changed,
248 dpif_init(&dpif->dpif, &dpif_linux_class, dp->name,
249 dp->dp_ifindex, dp->dp_ifindex);
251 dpif->dp_ifindex = dp->dp_ifindex;
252 sset_init(&dpif->changed_ports);
253 *dpifp = &dpif->dpif;
257 destroy_upcall_socks(struct dpif_linux *dpif)
261 if (dpif->epoll_fd >= 0) {
262 close(dpif->epoll_fd);
265 for (i = 0; i < N_UPCALL_SOCKS; i++) {
266 nl_sock_destroy(dpif->upcall_socks[i]);
267 dpif->upcall_socks[i] = NULL;
272 dpif_linux_close(struct dpif *dpif_)
274 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
276 nln_notifier_destroy(dpif->port_notifier);
277 destroy_upcall_socks(dpif);
278 sset_destroy(&dpif->changed_ports);
283 dpif_linux_destroy(struct dpif *dpif_)
285 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
286 struct dpif_linux_dp dp;
288 dpif_linux_dp_init(&dp);
289 dp.cmd = OVS_DP_CMD_DEL;
290 dp.dp_ifindex = dpif->dp_ifindex;
291 return dpif_linux_dp_transact(&dp, NULL, NULL);
295 dpif_linux_run(struct dpif *dpif OVS_UNUSED)
303 dpif_linux_wait(struct dpif *dpif OVS_UNUSED)
311 dpif_linux_get_stats(const struct dpif *dpif_, struct dpif_dp_stats *stats)
313 struct dpif_linux_dp dp;
317 error = dpif_linux_dp_get(dpif_, &dp, &buf);
319 stats->n_hit = dp.stats.n_hit;
320 stats->n_missed = dp.stats.n_missed;
321 stats->n_lost = dp.stats.n_lost;
322 stats->n_flows = dp.stats.n_flows;
329 dpif_linux_port_add(struct dpif *dpif_, struct netdev *netdev,
332 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
333 const char *name = netdev_get_name(netdev);
334 const char *type = netdev_get_type(netdev);
335 struct dpif_linux_vport request, reply;
336 const struct ofpbuf *options;
338 int error, i = 0, max_ports = MAX_PORTS;
340 dpif_linux_vport_init(&request);
341 request.cmd = OVS_VPORT_CMD_NEW;
342 request.dp_ifindex = dpif->dp_ifindex;
343 request.type = netdev_vport_get_vport_type(netdev);
344 if (request.type == OVS_VPORT_TYPE_UNSPEC) {
345 VLOG_WARN_RL(&error_rl, "%s: cannot create port `%s' because it has "
346 "unsupported type `%s'",
347 dpif_name(dpif_), name, type);
352 options = netdev_vport_get_options(netdev);
353 if (options && options->size) {
354 request.options = options->data;
355 request.options_len = options->size;
358 if (request.type == OVS_VPORT_TYPE_NETDEV) {
359 netdev_linux_ethtool_set_flag(netdev, ETH_FLAG_LRO, "LRO", false);
362 /* Loop until we find a port that isn't used. */
366 request.port_no = ++dpif->alloc_port_no;
367 upcall_pid = dpif_linux_port_get_pid(dpif_, request.port_no);
368 request.upcall_pid = &upcall_pid;
369 error = dpif_linux_vport_transact(&request, &reply, &buf);
372 *port_nop = reply.port_no;
373 VLOG_DBG("%s: assigning port %"PRIu32" to netlink pid %"PRIu32,
374 dpif_name(dpif_), request.port_no, upcall_pid);
375 } else if (error == EFBIG) {
376 /* Older datapath has lower limit. */
377 max_ports = dpif->alloc_port_no;
378 dpif->alloc_port_no = 0;
382 } while ((i++ < max_ports)
383 && (error == EBUSY || error == EFBIG));
389 dpif_linux_port_del(struct dpif *dpif_, uint16_t port_no)
391 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
392 struct dpif_linux_vport vport;
395 dpif_linux_vport_init(&vport);
396 vport.cmd = OVS_VPORT_CMD_DEL;
397 vport.dp_ifindex = dpif->dp_ifindex;
398 vport.port_no = port_no;
399 error = dpif_linux_vport_transact(&vport, NULL, NULL);
405 dpif_linux_port_query__(const struct dpif *dpif, uint32_t port_no,
406 const char *port_name, struct dpif_port *dpif_port)
408 struct dpif_linux_vport request;
409 struct dpif_linux_vport reply;
413 dpif_linux_vport_init(&request);
414 request.cmd = OVS_VPORT_CMD_GET;
415 request.dp_ifindex = dpif_linux_cast(dpif)->dp_ifindex;
416 request.port_no = port_no;
417 request.name = port_name;
419 error = dpif_linux_vport_transact(&request, &reply, &buf);
421 if (reply.dp_ifindex != request.dp_ifindex) {
422 /* A query by name reported that 'port_name' is in some datapath
423 * other than 'dpif', but the caller wants to know about 'dpif'. */
426 dpif_port->name = xstrdup(reply.name);
427 dpif_port->type = xstrdup(netdev_vport_get_netdev_type(&reply));
428 dpif_port->port_no = reply.port_no;
436 dpif_linux_port_query_by_number(const struct dpif *dpif, uint16_t port_no,
437 struct dpif_port *dpif_port)
439 return dpif_linux_port_query__(dpif, port_no, NULL, dpif_port);
443 dpif_linux_port_query_by_name(const struct dpif *dpif, const char *devname,
444 struct dpif_port *dpif_port)
446 return dpif_linux_port_query__(dpif, 0, devname, dpif_port);
450 dpif_linux_get_max_ports(const struct dpif *dpif OVS_UNUSED)
456 dpif_linux_port_get_pid(const struct dpif *dpif_, uint16_t port_no)
458 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
460 if (dpif->epoll_fd < 0) {
463 int idx = port_no & (N_UPCALL_SOCKS - 1);
464 return nl_sock_pid(dpif->upcall_socks[idx]);
469 dpif_linux_flow_flush(struct dpif *dpif_)
471 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
472 struct dpif_linux_flow flow;
474 dpif_linux_flow_init(&flow);
475 flow.cmd = OVS_FLOW_CMD_DEL;
476 flow.dp_ifindex = dpif->dp_ifindex;
477 return dpif_linux_flow_transact(&flow, NULL, NULL);
480 struct dpif_linux_port_state {
485 dpif_linux_port_dump_start(const struct dpif *dpif_, void **statep)
487 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
488 struct dpif_linux_port_state *state;
489 struct dpif_linux_vport request;
492 *statep = state = xmalloc(sizeof *state);
494 dpif_linux_vport_init(&request);
495 request.cmd = OVS_DP_CMD_GET;
496 request.dp_ifindex = dpif->dp_ifindex;
498 buf = ofpbuf_new(1024);
499 dpif_linux_vport_to_ofpbuf(&request, buf);
500 nl_dump_start(&state->dump, genl_sock, buf);
507 dpif_linux_port_dump_next(const struct dpif *dpif OVS_UNUSED, void *state_,
508 struct dpif_port *dpif_port)
510 struct dpif_linux_port_state *state = state_;
511 struct dpif_linux_vport vport;
515 if (!nl_dump_next(&state->dump, &buf)) {
519 error = dpif_linux_vport_from_ofpbuf(&vport, &buf);
524 dpif_port->name = (char *) vport.name;
525 dpif_port->type = (char *) netdev_vport_get_netdev_type(&vport);
526 dpif_port->port_no = vport.port_no;
531 dpif_linux_port_dump_done(const struct dpif *dpif_ OVS_UNUSED, void *state_)
533 struct dpif_linux_port_state *state = state_;
534 int error = nl_dump_done(&state->dump);
541 dpif_linux_port_poll(const struct dpif *dpif_, char **devnamep)
543 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
545 if (dpif->change_error) {
546 dpif->change_error = false;
547 sset_clear(&dpif->changed_ports);
549 } else if (!sset_is_empty(&dpif->changed_ports)) {
550 *devnamep = sset_pop(&dpif->changed_ports);
558 dpif_linux_port_poll_wait(const struct dpif *dpif_)
560 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
561 if (!sset_is_empty(&dpif->changed_ports) || dpif->change_error) {
562 poll_immediate_wake();
567 dpif_linux_flow_get__(const struct dpif *dpif_,
568 const struct nlattr *key, size_t key_len,
569 struct dpif_linux_flow *reply, struct ofpbuf **bufp)
571 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
572 struct dpif_linux_flow request;
574 dpif_linux_flow_init(&request);
575 request.cmd = OVS_FLOW_CMD_GET;
576 request.dp_ifindex = dpif->dp_ifindex;
578 request.key_len = key_len;
579 return dpif_linux_flow_transact(&request, reply, bufp);
583 dpif_linux_flow_get(const struct dpif *dpif_,
584 const struct nlattr *key, size_t key_len,
585 struct ofpbuf **actionsp, struct dpif_flow_stats *stats)
587 struct dpif_linux_flow reply;
591 error = dpif_linux_flow_get__(dpif_, key, key_len, &reply, &buf);
594 dpif_linux_flow_get_stats(&reply, stats);
597 buf->data = (void *) reply.actions;
598 buf->size = reply.actions_len;
608 dpif_linux_init_flow_put(struct dpif *dpif_, const struct dpif_flow_put *put,
609 struct dpif_linux_flow *request)
611 static struct nlattr dummy_action;
613 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
615 dpif_linux_flow_init(request);
616 request->cmd = (put->flags & DPIF_FP_CREATE
617 ? OVS_FLOW_CMD_NEW : OVS_FLOW_CMD_SET);
618 request->dp_ifindex = dpif->dp_ifindex;
619 request->key = put->key;
620 request->key_len = put->key_len;
621 /* Ensure that OVS_FLOW_ATTR_ACTIONS will always be included. */
622 request->actions = put->actions ? put->actions : &dummy_action;
623 request->actions_len = put->actions_len;
624 if (put->flags & DPIF_FP_ZERO_STATS) {
625 request->clear = true;
627 request->nlmsg_flags = put->flags & DPIF_FP_MODIFY ? 0 : NLM_F_CREATE;
631 dpif_linux_flow_put(struct dpif *dpif_, const struct dpif_flow_put *put)
633 struct dpif_linux_flow request, reply;
637 dpif_linux_init_flow_put(dpif_, put, &request);
638 error = dpif_linux_flow_transact(&request,
639 put->stats ? &reply : NULL,
640 put->stats ? &buf : NULL);
641 if (!error && put->stats) {
642 dpif_linux_flow_get_stats(&reply, put->stats);
649 dpif_linux_init_flow_del(struct dpif *dpif_, const struct dpif_flow_del *del,
650 struct dpif_linux_flow *request)
652 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
654 dpif_linux_flow_init(request);
655 request->cmd = OVS_FLOW_CMD_DEL;
656 request->dp_ifindex = dpif->dp_ifindex;
657 request->key = del->key;
658 request->key_len = del->key_len;
662 dpif_linux_flow_del(struct dpif *dpif_, const struct dpif_flow_del *del)
664 struct dpif_linux_flow request, reply;
668 dpif_linux_init_flow_del(dpif_, del, &request);
669 error = dpif_linux_flow_transact(&request,
670 del->stats ? &reply : NULL,
671 del->stats ? &buf : NULL);
672 if (!error && del->stats) {
673 dpif_linux_flow_get_stats(&reply, del->stats);
679 struct dpif_linux_flow_state {
681 struct dpif_linux_flow flow;
682 struct dpif_flow_stats stats;
687 dpif_linux_flow_dump_start(const struct dpif *dpif_, void **statep)
689 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
690 struct dpif_linux_flow_state *state;
691 struct dpif_linux_flow request;
694 *statep = state = xmalloc(sizeof *state);
696 dpif_linux_flow_init(&request);
697 request.cmd = OVS_DP_CMD_GET;
698 request.dp_ifindex = dpif->dp_ifindex;
700 buf = ofpbuf_new(1024);
701 dpif_linux_flow_to_ofpbuf(&request, buf);
702 nl_dump_start(&state->dump, genl_sock, buf);
711 dpif_linux_flow_dump_next(const struct dpif *dpif_ OVS_UNUSED, void *state_,
712 const struct nlattr **key, size_t *key_len,
713 const struct nlattr **actions, size_t *actions_len,
714 const struct dpif_flow_stats **stats)
716 struct dpif_linux_flow_state *state = state_;
721 ofpbuf_delete(state->buf);
724 if (!nl_dump_next(&state->dump, &buf)) {
728 error = dpif_linux_flow_from_ofpbuf(&state->flow, &buf);
733 if (actions && !state->flow.actions) {
734 error = dpif_linux_flow_get__(dpif_, state->flow.key,
736 &state->flow, &state->buf);
737 if (error == ENOENT) {
738 VLOG_DBG("dumped flow disappeared on get");
740 VLOG_WARN("error fetching dumped flow: %s", strerror(error));
746 *actions = state->flow.actions;
747 *actions_len = state->flow.actions_len;
750 *key = state->flow.key;
751 *key_len = state->flow.key_len;
754 dpif_linux_flow_get_stats(&state->flow, &state->stats);
755 *stats = &state->stats;
761 dpif_linux_flow_dump_done(const struct dpif *dpif OVS_UNUSED, void *state_)
763 struct dpif_linux_flow_state *state = state_;
764 int error = nl_dump_done(&state->dump);
765 ofpbuf_delete(state->buf);
771 dpif_linux_encode_execute(int dp_ifindex, const struct dpif_execute *d_exec,
774 struct ovs_header *k_exec;
776 ofpbuf_prealloc_tailroom(buf, (64
777 + d_exec->packet->size
779 + d_exec->actions_len));
781 nl_msg_put_genlmsghdr(buf, 0, ovs_packet_family, NLM_F_REQUEST,
782 OVS_PACKET_CMD_EXECUTE, OVS_PACKET_VERSION);
784 k_exec = ofpbuf_put_uninit(buf, sizeof *k_exec);
785 k_exec->dp_ifindex = dp_ifindex;
787 nl_msg_put_unspec(buf, OVS_PACKET_ATTR_PACKET,
788 d_exec->packet->data, d_exec->packet->size);
789 nl_msg_put_unspec(buf, OVS_PACKET_ATTR_KEY, d_exec->key, d_exec->key_len);
790 nl_msg_put_unspec(buf, OVS_PACKET_ATTR_ACTIONS,
791 d_exec->actions, d_exec->actions_len);
795 dpif_linux_execute__(int dp_ifindex, const struct dpif_execute *execute)
797 uint64_t request_stub[1024 / 8];
798 struct ofpbuf request;
801 ofpbuf_use_stub(&request, request_stub, sizeof request_stub);
802 dpif_linux_encode_execute(dp_ifindex, execute, &request);
803 error = nl_sock_transact(genl_sock, &request, NULL);
804 ofpbuf_uninit(&request);
810 dpif_linux_execute(struct dpif *dpif_, const struct dpif_execute *execute)
812 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
814 return dpif_linux_execute__(dpif->dp_ifindex, execute);
820 dpif_linux_operate__(struct dpif *dpif_, struct dpif_op **ops, size_t n_ops)
822 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
825 struct nl_transaction txn;
827 struct ofpbuf request;
828 uint64_t request_stub[1024 / 8];
831 uint64_t reply_stub[1024 / 8];
834 struct nl_transaction *txnsp[MAX_OPS];
837 assert(n_ops <= MAX_OPS);
838 for (i = 0; i < n_ops; i++) {
839 struct op_auxdata *aux = &auxes[i];
840 struct dpif_op *op = ops[i];
841 struct dpif_flow_put *put;
842 struct dpif_flow_del *del;
843 struct dpif_execute *execute;
844 struct dpif_linux_flow flow;
846 ofpbuf_use_stub(&aux->request,
847 aux->request_stub, sizeof aux->request_stub);
848 aux->txn.request = &aux->request;
850 ofpbuf_use_stub(&aux->reply, aux->reply_stub, sizeof aux->reply_stub);
851 aux->txn.reply = NULL;
854 case DPIF_OP_FLOW_PUT:
855 put = &op->u.flow_put;
856 dpif_linux_init_flow_put(dpif_, put, &flow);
858 flow.nlmsg_flags |= NLM_F_ECHO;
859 aux->txn.reply = &aux->reply;
861 dpif_linux_flow_to_ofpbuf(&flow, &aux->request);
864 case DPIF_OP_FLOW_DEL:
865 del = &op->u.flow_del;
866 dpif_linux_init_flow_del(dpif_, del, &flow);
868 flow.nlmsg_flags |= NLM_F_ECHO;
869 aux->txn.reply = &aux->reply;
871 dpif_linux_flow_to_ofpbuf(&flow, &aux->request);
874 case DPIF_OP_EXECUTE:
875 execute = &op->u.execute;
876 dpif_linux_encode_execute(dpif->dp_ifindex, execute,
885 for (i = 0; i < n_ops; i++) {
886 txnsp[i] = &auxes[i].txn;
888 nl_sock_transact_multiple(genl_sock, txnsp, n_ops);
890 for (i = 0; i < n_ops; i++) {
891 struct op_auxdata *aux = &auxes[i];
892 struct nl_transaction *txn = &auxes[i].txn;
893 struct dpif_op *op = ops[i];
894 struct dpif_flow_put *put;
895 struct dpif_flow_del *del;
897 op->error = txn->error;
900 case DPIF_OP_FLOW_PUT:
901 put = &op->u.flow_put;
902 if (!op->error && put->stats) {
903 struct dpif_linux_flow reply;
905 op->error = dpif_linux_flow_from_ofpbuf(&reply, txn->reply);
907 dpif_linux_flow_get_stats(&reply, put->stats);
912 case DPIF_OP_FLOW_DEL:
913 del = &op->u.flow_del;
914 if (!op->error && del->stats) {
915 struct dpif_linux_flow reply;
917 op->error = dpif_linux_flow_from_ofpbuf(&reply, txn->reply);
919 dpif_linux_flow_get_stats(&reply, del->stats);
924 case DPIF_OP_EXECUTE:
931 ofpbuf_uninit(&aux->request);
932 ofpbuf_uninit(&aux->reply);
937 dpif_linux_operate(struct dpif *dpif, struct dpif_op **ops, size_t n_ops)
940 size_t chunk = MIN(n_ops, MAX_OPS);
941 dpif_linux_operate__(dpif, ops, chunk);
948 set_upcall_pids(struct dpif *dpif_)
950 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
951 struct dpif_port_dump port_dump;
952 struct dpif_port port;
955 DPIF_PORT_FOR_EACH (&port, &port_dump, &dpif->dpif) {
956 uint32_t upcall_pid = dpif_linux_port_get_pid(dpif_, port.port_no);
957 struct dpif_linux_vport vport_request;
959 dpif_linux_vport_init(&vport_request);
960 vport_request.cmd = OVS_VPORT_CMD_SET;
961 vport_request.dp_ifindex = dpif->dp_ifindex;
962 vport_request.port_no = port.port_no;
963 vport_request.upcall_pid = &upcall_pid;
964 error = dpif_linux_vport_transact(&vport_request, NULL, NULL);
966 VLOG_DBG("%s: assigning port %"PRIu32" to netlink pid %"PRIu32,
967 dpif_name(&dpif->dpif), vport_request.port_no,
970 VLOG_WARN_RL(&error_rl, "%s: failed to set upcall pid on port: %s",
971 dpif_name(&dpif->dpif), strerror(error));
977 dpif_linux_recv_set(struct dpif *dpif_, bool enable)
979 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
981 if ((dpif->epoll_fd >= 0) == enable) {
986 destroy_upcall_socks(dpif);
991 dpif->epoll_fd = epoll_create(N_UPCALL_SOCKS);
992 if (dpif->epoll_fd < 0) {
996 for (i = 0; i < N_UPCALL_SOCKS; i++) {
997 struct epoll_event event;
999 error = nl_sock_create(NETLINK_GENERIC, &dpif->upcall_socks[i]);
1001 destroy_upcall_socks(dpif);
1005 memset(&event, 0, sizeof event);
1006 event.events = EPOLLIN;
1008 if (epoll_ctl(dpif->epoll_fd, EPOLL_CTL_ADD,
1009 nl_sock_fd(dpif->upcall_socks[i]), &event) < 0) {
1011 destroy_upcall_socks(dpif);
1016 dpif->ready_mask = 0;
1019 set_upcall_pids(dpif_);
1025 dpif_linux_queue_to_priority(const struct dpif *dpif OVS_UNUSED,
1026 uint32_t queue_id, uint32_t *priority)
1028 if (queue_id < 0xf000) {
1029 *priority = TC_H_MAKE(1 << 16, queue_id + 1);
1037 parse_odp_packet(struct ofpbuf *buf, struct dpif_upcall *upcall,
1040 static const struct nl_policy ovs_packet_policy[] = {
1041 /* Always present. */
1042 [OVS_PACKET_ATTR_PACKET] = { .type = NL_A_UNSPEC,
1043 .min_len = ETH_HEADER_LEN },
1044 [OVS_PACKET_ATTR_KEY] = { .type = NL_A_NESTED },
1046 /* OVS_PACKET_CMD_ACTION only. */
1047 [OVS_PACKET_ATTR_USERDATA] = { .type = NL_A_U64, .optional = true },
1050 struct ovs_header *ovs_header;
1051 struct nlattr *a[ARRAY_SIZE(ovs_packet_policy)];
1052 struct nlmsghdr *nlmsg;
1053 struct genlmsghdr *genl;
1057 ofpbuf_use_const(&b, buf->data, buf->size);
1059 nlmsg = ofpbuf_try_pull(&b, sizeof *nlmsg);
1060 genl = ofpbuf_try_pull(&b, sizeof *genl);
1061 ovs_header = ofpbuf_try_pull(&b, sizeof *ovs_header);
1062 if (!nlmsg || !genl || !ovs_header
1063 || nlmsg->nlmsg_type != ovs_packet_family
1064 || !nl_policy_parse(&b, 0, ovs_packet_policy, a,
1065 ARRAY_SIZE(ovs_packet_policy))) {
1069 type = (genl->cmd == OVS_PACKET_CMD_MISS ? DPIF_UC_MISS
1070 : genl->cmd == OVS_PACKET_CMD_ACTION ? DPIF_UC_ACTION
1076 memset(upcall, 0, sizeof *upcall);
1077 upcall->type = type;
1078 upcall->packet = buf;
1079 upcall->packet->data = (void *) nl_attr_get(a[OVS_PACKET_ATTR_PACKET]);
1080 upcall->packet->size = nl_attr_get_size(a[OVS_PACKET_ATTR_PACKET]);
1081 upcall->key = (void *) nl_attr_get(a[OVS_PACKET_ATTR_KEY]);
1082 upcall->key_len = nl_attr_get_size(a[OVS_PACKET_ATTR_KEY]);
1083 upcall->userdata = (a[OVS_PACKET_ATTR_USERDATA]
1084 ? nl_attr_get_u64(a[OVS_PACKET_ATTR_USERDATA])
1086 *dp_ifindex = ovs_header->dp_ifindex;
1092 dpif_linux_recv(struct dpif *dpif_, struct dpif_upcall *upcall)
1094 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1097 if (dpif->epoll_fd < 0) {
1101 if (!dpif->ready_mask) {
1102 struct epoll_event events[N_UPCALL_SOCKS];
1107 retval = epoll_wait(dpif->epoll_fd, events, N_UPCALL_SOCKS, 0);
1108 } while (retval < 0 && errno == EINTR);
1110 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
1111 VLOG_WARN_RL(&rl, "epoll_wait failed (%s)", strerror(errno));
1114 for (i = 0; i < retval; i++) {
1115 dpif->ready_mask |= 1u << events[i].data.u32;
1119 while (dpif->ready_mask) {
1120 int indx = ffs(dpif->ready_mask) - 1;
1121 struct nl_sock *upcall_sock = dpif->upcall_socks[indx];
1123 dpif->ready_mask &= ~(1u << indx);
1130 if (++read_tries > 50) {
1134 buf = ofpbuf_new(2048);
1135 error = nl_sock_recv(upcall_sock, buf, false);
1138 if (error == EAGAIN) {
1144 error = parse_odp_packet(buf, upcall, &dp_ifindex);
1145 if (!error && dp_ifindex == dpif->dp_ifindex) {
1160 dpif_linux_recv_wait(struct dpif *dpif_)
1162 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1164 if (dpif->epoll_fd < 0) {
1168 poll_fd_wait(dpif->epoll_fd, POLLIN);
1172 dpif_linux_recv_purge(struct dpif *dpif_)
1174 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1177 if (dpif->epoll_fd < 0) {
1181 for (i = 0; i < N_UPCALL_SOCKS; i++) {
1182 nl_sock_drain(dpif->upcall_socks[i]);
1186 const struct dpif_class dpif_linux_class = {
1188 dpif_linux_enumerate,
1194 dpif_linux_get_stats,
1195 dpif_linux_port_add,
1196 dpif_linux_port_del,
1197 dpif_linux_port_query_by_number,
1198 dpif_linux_port_query_by_name,
1199 dpif_linux_get_max_ports,
1200 dpif_linux_port_get_pid,
1201 dpif_linux_port_dump_start,
1202 dpif_linux_port_dump_next,
1203 dpif_linux_port_dump_done,
1204 dpif_linux_port_poll,
1205 dpif_linux_port_poll_wait,
1206 dpif_linux_flow_get,
1207 dpif_linux_flow_put,
1208 dpif_linux_flow_del,
1209 dpif_linux_flow_flush,
1210 dpif_linux_flow_dump_start,
1211 dpif_linux_flow_dump_next,
1212 dpif_linux_flow_dump_done,
1215 dpif_linux_recv_set,
1216 dpif_linux_queue_to_priority,
1218 dpif_linux_recv_wait,
1219 dpif_linux_recv_purge,
1223 dpif_linux_init(void)
1225 static int error = -1;
1228 unsigned int ovs_vport_mcgroup;
1230 error = nl_lookup_genl_family(OVS_DATAPATH_FAMILY,
1231 &ovs_datapath_family);
1233 VLOG_ERR("Generic Netlink family '%s' does not exist. "
1234 "The Open vSwitch kernel module is probably not loaded.",
1235 OVS_DATAPATH_FAMILY);
1238 error = nl_lookup_genl_family(OVS_VPORT_FAMILY, &ovs_vport_family);
1241 error = nl_lookup_genl_family(OVS_FLOW_FAMILY, &ovs_flow_family);
1244 error = nl_lookup_genl_family(OVS_PACKET_FAMILY,
1245 &ovs_packet_family);
1248 error = nl_sock_create(NETLINK_GENERIC, &genl_sock);
1251 error = nl_lookup_genl_mcgroup(OVS_VPORT_FAMILY, OVS_VPORT_MCGROUP,
1253 OVS_VPORT_MCGROUP_FALLBACK_ID);
1256 static struct dpif_linux_vport vport;
1257 nln = nln_create(NETLINK_GENERIC, ovs_vport_mcgroup,
1258 dpif_linux_nln_parse, &vport);
1266 dpif_linux_is_internal_device(const char *name)
1268 struct dpif_linux_vport reply;
1272 error = dpif_linux_vport_get(name, &reply, &buf);
1275 } else if (error != ENODEV && error != ENOENT) {
1276 VLOG_WARN_RL(&error_rl, "%s: vport query failed (%s)",
1277 name, strerror(error));
1280 return reply.type == OVS_VPORT_TYPE_INTERNAL;
1284 dpif_linux_vport_send(int dp_ifindex, uint32_t port_no,
1285 const void *data, size_t size)
1287 struct ofpbuf actions, key, packet;
1288 struct odputil_keybuf keybuf;
1289 struct dpif_execute execute;
1293 ofpbuf_use_const(&packet, data, size);
1294 flow_extract(&packet, 0, htonll(0), 0, &flow);
1296 ofpbuf_use_stack(&key, &keybuf, sizeof keybuf);
1297 odp_flow_key_from_flow(&key, &flow);
1299 ofpbuf_use_stack(&actions, &action, sizeof action);
1300 nl_msg_put_u32(&actions, OVS_ACTION_ATTR_OUTPUT, port_no);
1302 execute.key = key.data;
1303 execute.key_len = key.size;
1304 execute.actions = actions.data;
1305 execute.actions_len = actions.size;
1306 execute.packet = &packet;
1307 return dpif_linux_execute__(dp_ifindex, &execute);
1311 dpif_linux_nln_parse(struct ofpbuf *buf, void *vport_)
1313 struct dpif_linux_vport *vport = vport_;
1314 return dpif_linux_vport_from_ofpbuf(vport, buf) == 0;
1318 dpif_linux_port_changed(const void *vport_, void *dpif_)
1320 const struct dpif_linux_vport *vport = vport_;
1321 struct dpif_linux *dpif = dpif_;
1324 if (vport->dp_ifindex == dpif->dp_ifindex
1325 && (vport->cmd == OVS_VPORT_CMD_NEW
1326 || vport->cmd == OVS_VPORT_CMD_DEL
1327 || vport->cmd == OVS_VPORT_CMD_SET)) {
1328 VLOG_DBG("port_changed: dpif:%s vport:%s cmd:%"PRIu8,
1329 dpif->dpif.full_name, vport->name, vport->cmd);
1330 sset_add(&dpif->changed_ports, vport->name);
1333 dpif->change_error = true;
1337 /* Parses the contents of 'buf', which contains a "struct ovs_header" followed
1338 * by Netlink attributes, into 'vport'. Returns 0 if successful, otherwise a
1339 * positive errno value.
1341 * 'vport' will contain pointers into 'buf', so the caller should not free
1342 * 'buf' while 'vport' is still in use. */
1344 dpif_linux_vport_from_ofpbuf(struct dpif_linux_vport *vport,
1345 const struct ofpbuf *buf)
1347 static const struct nl_policy ovs_vport_policy[] = {
1348 [OVS_VPORT_ATTR_PORT_NO] = { .type = NL_A_U32 },
1349 [OVS_VPORT_ATTR_TYPE] = { .type = NL_A_U32 },
1350 [OVS_VPORT_ATTR_NAME] = { .type = NL_A_STRING, .max_len = IFNAMSIZ },
1351 [OVS_VPORT_ATTR_UPCALL_PID] = { .type = NL_A_U32 },
1352 [OVS_VPORT_ATTR_STATS] = { NL_POLICY_FOR(struct ovs_vport_stats),
1354 [OVS_VPORT_ATTR_ADDRESS] = { .type = NL_A_UNSPEC,
1355 .min_len = ETH_ADDR_LEN,
1356 .max_len = ETH_ADDR_LEN,
1358 [OVS_VPORT_ATTR_OPTIONS] = { .type = NL_A_NESTED, .optional = true },
1361 struct nlattr *a[ARRAY_SIZE(ovs_vport_policy)];
1362 struct ovs_header *ovs_header;
1363 struct nlmsghdr *nlmsg;
1364 struct genlmsghdr *genl;
1367 dpif_linux_vport_init(vport);
1369 ofpbuf_use_const(&b, buf->data, buf->size);
1370 nlmsg = ofpbuf_try_pull(&b, sizeof *nlmsg);
1371 genl = ofpbuf_try_pull(&b, sizeof *genl);
1372 ovs_header = ofpbuf_try_pull(&b, sizeof *ovs_header);
1373 if (!nlmsg || !genl || !ovs_header
1374 || nlmsg->nlmsg_type != ovs_vport_family
1375 || !nl_policy_parse(&b, 0, ovs_vport_policy, a,
1376 ARRAY_SIZE(ovs_vport_policy))) {
1380 vport->cmd = genl->cmd;
1381 vport->dp_ifindex = ovs_header->dp_ifindex;
1382 vport->port_no = nl_attr_get_u32(a[OVS_VPORT_ATTR_PORT_NO]);
1383 vport->type = nl_attr_get_u32(a[OVS_VPORT_ATTR_TYPE]);
1384 vport->name = nl_attr_get_string(a[OVS_VPORT_ATTR_NAME]);
1385 if (a[OVS_VPORT_ATTR_UPCALL_PID]) {
1386 vport->upcall_pid = nl_attr_get(a[OVS_VPORT_ATTR_UPCALL_PID]);
1388 if (a[OVS_VPORT_ATTR_STATS]) {
1389 vport->stats = nl_attr_get(a[OVS_VPORT_ATTR_STATS]);
1391 if (a[OVS_VPORT_ATTR_ADDRESS]) {
1392 vport->address = nl_attr_get(a[OVS_VPORT_ATTR_ADDRESS]);
1394 if (a[OVS_VPORT_ATTR_OPTIONS]) {
1395 vport->options = nl_attr_get(a[OVS_VPORT_ATTR_OPTIONS]);
1396 vport->options_len = nl_attr_get_size(a[OVS_VPORT_ATTR_OPTIONS]);
1401 /* Appends to 'buf' (which must initially be empty) a "struct ovs_header"
1402 * followed by Netlink attributes corresponding to 'vport'. */
1404 dpif_linux_vport_to_ofpbuf(const struct dpif_linux_vport *vport,
1407 struct ovs_header *ovs_header;
1409 nl_msg_put_genlmsghdr(buf, 0, ovs_vport_family, NLM_F_REQUEST | NLM_F_ECHO,
1410 vport->cmd, OVS_VPORT_VERSION);
1412 ovs_header = ofpbuf_put_uninit(buf, sizeof *ovs_header);
1413 ovs_header->dp_ifindex = vport->dp_ifindex;
1415 if (vport->port_no != UINT32_MAX) {
1416 nl_msg_put_u32(buf, OVS_VPORT_ATTR_PORT_NO, vport->port_no);
1419 if (vport->type != OVS_VPORT_TYPE_UNSPEC) {
1420 nl_msg_put_u32(buf, OVS_VPORT_ATTR_TYPE, vport->type);
1424 nl_msg_put_string(buf, OVS_VPORT_ATTR_NAME, vport->name);
1427 if (vport->upcall_pid) {
1428 nl_msg_put_u32(buf, OVS_VPORT_ATTR_UPCALL_PID, *vport->upcall_pid);
1432 nl_msg_put_unspec(buf, OVS_VPORT_ATTR_STATS,
1433 vport->stats, sizeof *vport->stats);
1436 if (vport->address) {
1437 nl_msg_put_unspec(buf, OVS_VPORT_ATTR_ADDRESS,
1438 vport->address, ETH_ADDR_LEN);
1441 if (vport->options) {
1442 nl_msg_put_nested(buf, OVS_VPORT_ATTR_OPTIONS,
1443 vport->options, vport->options_len);
1447 /* Clears 'vport' to "empty" values. */
1449 dpif_linux_vport_init(struct dpif_linux_vport *vport)
1451 memset(vport, 0, sizeof *vport);
1452 vport->port_no = UINT32_MAX;
1455 /* Executes 'request' in the kernel datapath. If the command fails, returns a
1456 * positive errno value. Otherwise, if 'reply' and 'bufp' are null, returns 0
1457 * without doing anything else. If 'reply' and 'bufp' are nonnull, then the
1458 * result of the command is expected to be an ovs_vport also, which is decoded
1459 * and stored in '*reply' and '*bufp'. The caller must free '*bufp' when the
1460 * reply is no longer needed ('reply' will contain pointers into '*bufp'). */
1462 dpif_linux_vport_transact(const struct dpif_linux_vport *request,
1463 struct dpif_linux_vport *reply,
1464 struct ofpbuf **bufp)
1466 struct ofpbuf *request_buf;
1469 assert((reply != NULL) == (bufp != NULL));
1471 error = dpif_linux_init();
1475 dpif_linux_vport_init(reply);
1480 request_buf = ofpbuf_new(1024);
1481 dpif_linux_vport_to_ofpbuf(request, request_buf);
1482 error = nl_sock_transact(genl_sock, request_buf, bufp);
1483 ofpbuf_delete(request_buf);
1487 error = dpif_linux_vport_from_ofpbuf(reply, *bufp);
1490 dpif_linux_vport_init(reply);
1491 ofpbuf_delete(*bufp);
1498 /* Obtains information about the kernel vport named 'name' and stores it into
1499 * '*reply' and '*bufp'. The caller must free '*bufp' when the reply is no
1500 * longer needed ('reply' will contain pointers into '*bufp'). */
1502 dpif_linux_vport_get(const char *name, struct dpif_linux_vport *reply,
1503 struct ofpbuf **bufp)
1505 struct dpif_linux_vport request;
1507 dpif_linux_vport_init(&request);
1508 request.cmd = OVS_VPORT_CMD_GET;
1509 request.name = name;
1511 return dpif_linux_vport_transact(&request, reply, bufp);
1514 /* Parses the contents of 'buf', which contains a "struct ovs_header" followed
1515 * by Netlink attributes, into 'dp'. Returns 0 if successful, otherwise a
1516 * positive errno value.
1518 * 'dp' will contain pointers into 'buf', so the caller should not free 'buf'
1519 * while 'dp' is still in use. */
1521 dpif_linux_dp_from_ofpbuf(struct dpif_linux_dp *dp, const struct ofpbuf *buf)
1523 static const struct nl_policy ovs_datapath_policy[] = {
1524 [OVS_DP_ATTR_NAME] = { .type = NL_A_STRING, .max_len = IFNAMSIZ },
1525 [OVS_DP_ATTR_STATS] = { NL_POLICY_FOR(struct ovs_dp_stats),
1529 struct nlattr *a[ARRAY_SIZE(ovs_datapath_policy)];
1530 struct ovs_header *ovs_header;
1531 struct nlmsghdr *nlmsg;
1532 struct genlmsghdr *genl;
1535 dpif_linux_dp_init(dp);
1537 ofpbuf_use_const(&b, buf->data, buf->size);
1538 nlmsg = ofpbuf_try_pull(&b, sizeof *nlmsg);
1539 genl = ofpbuf_try_pull(&b, sizeof *genl);
1540 ovs_header = ofpbuf_try_pull(&b, sizeof *ovs_header);
1541 if (!nlmsg || !genl || !ovs_header
1542 || nlmsg->nlmsg_type != ovs_datapath_family
1543 || !nl_policy_parse(&b, 0, ovs_datapath_policy, a,
1544 ARRAY_SIZE(ovs_datapath_policy))) {
1548 dp->cmd = genl->cmd;
1549 dp->dp_ifindex = ovs_header->dp_ifindex;
1550 dp->name = nl_attr_get_string(a[OVS_DP_ATTR_NAME]);
1551 if (a[OVS_DP_ATTR_STATS]) {
1552 /* Can't use structure assignment because Netlink doesn't ensure
1553 * sufficient alignment for 64-bit members. */
1554 memcpy(&dp->stats, nl_attr_get(a[OVS_DP_ATTR_STATS]),
1561 /* Appends to 'buf' the Generic Netlink message described by 'dp'. */
1563 dpif_linux_dp_to_ofpbuf(const struct dpif_linux_dp *dp, struct ofpbuf *buf)
1565 struct ovs_header *ovs_header;
1567 nl_msg_put_genlmsghdr(buf, 0, ovs_datapath_family,
1568 NLM_F_REQUEST | NLM_F_ECHO, dp->cmd,
1569 OVS_DATAPATH_VERSION);
1571 ovs_header = ofpbuf_put_uninit(buf, sizeof *ovs_header);
1572 ovs_header->dp_ifindex = dp->dp_ifindex;
1575 nl_msg_put_string(buf, OVS_DP_ATTR_NAME, dp->name);
1578 if (dp->upcall_pid) {
1579 nl_msg_put_u32(buf, OVS_DP_ATTR_UPCALL_PID, *dp->upcall_pid);
1582 /* Skip OVS_DP_ATTR_STATS since we never have a reason to serialize it. */
1585 /* Clears 'dp' to "empty" values. */
1587 dpif_linux_dp_init(struct dpif_linux_dp *dp)
1589 memset(dp, 0, sizeof *dp);
1593 dpif_linux_dp_dump_start(struct nl_dump *dump)
1595 struct dpif_linux_dp request;
1598 dpif_linux_dp_init(&request);
1599 request.cmd = OVS_DP_CMD_GET;
1601 buf = ofpbuf_new(1024);
1602 dpif_linux_dp_to_ofpbuf(&request, buf);
1603 nl_dump_start(dump, genl_sock, buf);
1607 /* Executes 'request' in the kernel datapath. If the command fails, returns a
1608 * positive errno value. Otherwise, if 'reply' and 'bufp' are null, returns 0
1609 * without doing anything else. If 'reply' and 'bufp' are nonnull, then the
1610 * result of the command is expected to be of the same form, which is decoded
1611 * and stored in '*reply' and '*bufp'. The caller must free '*bufp' when the
1612 * reply is no longer needed ('reply' will contain pointers into '*bufp'). */
1614 dpif_linux_dp_transact(const struct dpif_linux_dp *request,
1615 struct dpif_linux_dp *reply, struct ofpbuf **bufp)
1617 struct ofpbuf *request_buf;
1620 assert((reply != NULL) == (bufp != NULL));
1622 request_buf = ofpbuf_new(1024);
1623 dpif_linux_dp_to_ofpbuf(request, request_buf);
1624 error = nl_sock_transact(genl_sock, request_buf, bufp);
1625 ofpbuf_delete(request_buf);
1629 error = dpif_linux_dp_from_ofpbuf(reply, *bufp);
1632 dpif_linux_dp_init(reply);
1633 ofpbuf_delete(*bufp);
1640 /* Obtains information about 'dpif_' and stores it into '*reply' and '*bufp'.
1641 * The caller must free '*bufp' when the reply is no longer needed ('reply'
1642 * will contain pointers into '*bufp'). */
1644 dpif_linux_dp_get(const struct dpif *dpif_, struct dpif_linux_dp *reply,
1645 struct ofpbuf **bufp)
1647 struct dpif_linux *dpif = dpif_linux_cast(dpif_);
1648 struct dpif_linux_dp request;
1650 dpif_linux_dp_init(&request);
1651 request.cmd = OVS_DP_CMD_GET;
1652 request.dp_ifindex = dpif->dp_ifindex;
1654 return dpif_linux_dp_transact(&request, reply, bufp);
1657 /* Parses the contents of 'buf', which contains a "struct ovs_header" followed
1658 * by Netlink attributes, into 'flow'. Returns 0 if successful, otherwise a
1659 * positive errno value.
1661 * 'flow' will contain pointers into 'buf', so the caller should not free 'buf'
1662 * while 'flow' is still in use. */
1664 dpif_linux_flow_from_ofpbuf(struct dpif_linux_flow *flow,
1665 const struct ofpbuf *buf)
1667 static const struct nl_policy ovs_flow_policy[] = {
1668 [OVS_FLOW_ATTR_KEY] = { .type = NL_A_NESTED },
1669 [OVS_FLOW_ATTR_ACTIONS] = { .type = NL_A_NESTED, .optional = true },
1670 [OVS_FLOW_ATTR_STATS] = { NL_POLICY_FOR(struct ovs_flow_stats),
1672 [OVS_FLOW_ATTR_TCP_FLAGS] = { .type = NL_A_U8, .optional = true },
1673 [OVS_FLOW_ATTR_USED] = { .type = NL_A_U64, .optional = true },
1674 /* The kernel never uses OVS_FLOW_ATTR_CLEAR. */
1677 struct nlattr *a[ARRAY_SIZE(ovs_flow_policy)];
1678 struct ovs_header *ovs_header;
1679 struct nlmsghdr *nlmsg;
1680 struct genlmsghdr *genl;
1683 dpif_linux_flow_init(flow);
1685 ofpbuf_use_const(&b, buf->data, buf->size);
1686 nlmsg = ofpbuf_try_pull(&b, sizeof *nlmsg);
1687 genl = ofpbuf_try_pull(&b, sizeof *genl);
1688 ovs_header = ofpbuf_try_pull(&b, sizeof *ovs_header);
1689 if (!nlmsg || !genl || !ovs_header
1690 || nlmsg->nlmsg_type != ovs_flow_family
1691 || !nl_policy_parse(&b, 0, ovs_flow_policy, a,
1692 ARRAY_SIZE(ovs_flow_policy))) {
1696 flow->nlmsg_flags = nlmsg->nlmsg_flags;
1697 flow->dp_ifindex = ovs_header->dp_ifindex;
1698 flow->key = nl_attr_get(a[OVS_FLOW_ATTR_KEY]);
1699 flow->key_len = nl_attr_get_size(a[OVS_FLOW_ATTR_KEY]);
1700 if (a[OVS_FLOW_ATTR_ACTIONS]) {
1701 flow->actions = nl_attr_get(a[OVS_FLOW_ATTR_ACTIONS]);
1702 flow->actions_len = nl_attr_get_size(a[OVS_FLOW_ATTR_ACTIONS]);
1704 if (a[OVS_FLOW_ATTR_STATS]) {
1705 flow->stats = nl_attr_get(a[OVS_FLOW_ATTR_STATS]);
1707 if (a[OVS_FLOW_ATTR_TCP_FLAGS]) {
1708 flow->tcp_flags = nl_attr_get(a[OVS_FLOW_ATTR_TCP_FLAGS]);
1710 if (a[OVS_FLOW_ATTR_USED]) {
1711 flow->used = nl_attr_get(a[OVS_FLOW_ATTR_USED]);
1716 /* Appends to 'buf' (which must initially be empty) a "struct ovs_header"
1717 * followed by Netlink attributes corresponding to 'flow'. */
1719 dpif_linux_flow_to_ofpbuf(const struct dpif_linux_flow *flow,
1722 struct ovs_header *ovs_header;
1724 nl_msg_put_genlmsghdr(buf, 0, ovs_flow_family,
1725 NLM_F_REQUEST | flow->nlmsg_flags,
1726 flow->cmd, OVS_FLOW_VERSION);
1728 ovs_header = ofpbuf_put_uninit(buf, sizeof *ovs_header);
1729 ovs_header->dp_ifindex = flow->dp_ifindex;
1731 if (flow->key_len) {
1732 nl_msg_put_unspec(buf, OVS_FLOW_ATTR_KEY, flow->key, flow->key_len);
1735 if (flow->actions || flow->actions_len) {
1736 nl_msg_put_unspec(buf, OVS_FLOW_ATTR_ACTIONS,
1737 flow->actions, flow->actions_len);
1740 /* We never need to send these to the kernel. */
1741 assert(!flow->stats);
1742 assert(!flow->tcp_flags);
1743 assert(!flow->used);
1746 nl_msg_put_flag(buf, OVS_FLOW_ATTR_CLEAR);
1750 /* Clears 'flow' to "empty" values. */
1752 dpif_linux_flow_init(struct dpif_linux_flow *flow)
1754 memset(flow, 0, sizeof *flow);
1757 /* Executes 'request' in the kernel datapath. If the command fails, returns a
1758 * positive errno value. Otherwise, if 'reply' and 'bufp' are null, returns 0
1759 * without doing anything else. If 'reply' and 'bufp' are nonnull, then the
1760 * result of the command is expected to be a flow also, which is decoded and
1761 * stored in '*reply' and '*bufp'. The caller must free '*bufp' when the reply
1762 * is no longer needed ('reply' will contain pointers into '*bufp'). */
1764 dpif_linux_flow_transact(struct dpif_linux_flow *request,
1765 struct dpif_linux_flow *reply, struct ofpbuf **bufp)
1767 struct ofpbuf *request_buf;
1770 assert((reply != NULL) == (bufp != NULL));
1773 request->nlmsg_flags |= NLM_F_ECHO;
1776 request_buf = ofpbuf_new(1024);
1777 dpif_linux_flow_to_ofpbuf(request, request_buf);
1778 error = nl_sock_transact(genl_sock, request_buf, bufp);
1779 ofpbuf_delete(request_buf);
1783 error = dpif_linux_flow_from_ofpbuf(reply, *bufp);
1786 dpif_linux_flow_init(reply);
1787 ofpbuf_delete(*bufp);
1795 dpif_linux_flow_get_stats(const struct dpif_linux_flow *flow,
1796 struct dpif_flow_stats *stats)
1799 stats->n_packets = get_unaligned_u64(&flow->stats->n_packets);
1800 stats->n_bytes = get_unaligned_u64(&flow->stats->n_bytes);
1802 stats->n_packets = 0;
1805 stats->used = flow->used ? get_32aligned_u64(flow->used) : 0;
1806 stats->tcp_flags = flow->tcp_flags ? *flow->tcp_flags : 0;