2 * Copyright (c) 2010, 2011, 2012 Nicira, Inc.
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 "netdev-vport.h"
23 #include <sys/socket.h>
24 #include <linux/openvswitch.h>
25 #include <linux/rtnetlink.h>
27 #include <sys/ioctl.h>
29 #include "byte-order.h"
32 #include "dpif-linux.h"
36 #include "netdev-linux.h"
37 #include "netdev-provider.h"
39 #include "netlink-notifier.h"
40 #include "netlink-socket.h"
42 #include "openvswitch/tunnel.h"
44 #include "route-table.h"
46 #include "socket-util.h"
47 #include "unaligned.h"
50 VLOG_DEFINE_THIS_MODULE(netdev_vport);
52 struct netdev_dev_vport {
53 struct netdev_dev netdev_dev;
54 struct ofpbuf *options;
55 int dp_ifindex; /* -1 if unknown. */
56 uint32_t port_no; /* UINT32_MAX if unknown. */
57 unsigned int change_seq;
65 enum ovs_vport_type type;
66 struct netdev_class netdev_class;
67 int (*parse_config)(const char *name, const char *type,
68 const struct smap *args, struct ofpbuf *options);
69 int (*unparse_config)(const char *name, const char *type,
70 const struct nlattr *options, size_t options_len,
74 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
76 static int netdev_vport_create(const struct netdev_class *, const char *,
77 struct netdev_dev **);
78 static void netdev_vport_poll_notify(const struct netdev *);
79 static int tnl_port_config_from_nlattr(const struct nlattr *options,
81 struct nlattr *a[OVS_TUNNEL_ATTR_MAX + 1]);
83 static const char *netdev_vport_get_tnl_iface(const struct netdev *netdev);
86 is_vport_class(const struct netdev_class *class)
88 return class->create == netdev_vport_create;
91 static const struct vport_class *
92 vport_class_cast(const struct netdev_class *class)
94 assert(is_vport_class(class));
95 return CONTAINER_OF(class, struct vport_class, netdev_class);
98 static struct netdev_dev_vport *
99 netdev_dev_vport_cast(const struct netdev_dev *netdev_dev)
101 assert(is_vport_class(netdev_dev_get_class(netdev_dev)));
102 return CONTAINER_OF(netdev_dev, struct netdev_dev_vport, netdev_dev);
105 static struct netdev_vport *
106 netdev_vport_cast(const struct netdev *netdev)
108 struct netdev_dev *netdev_dev = netdev_get_dev(netdev);
109 assert(is_vport_class(netdev_dev_get_class(netdev_dev)));
110 return CONTAINER_OF(netdev, struct netdev_vport, netdev);
113 /* If 'netdev' is a vport netdev, returns an ofpbuf that contains Netlink
114 * options to include in OVS_VPORT_ATTR_OPTIONS for configuring that vport.
115 * Otherwise returns NULL. */
116 const struct ofpbuf *
117 netdev_vport_get_options(const struct netdev *netdev)
119 const struct netdev_dev *dev = netdev_get_dev(netdev);
121 return (is_vport_class(netdev_dev_get_class(dev))
122 ? netdev_dev_vport_cast(dev)->options
127 netdev_vport_get_vport_type(const struct netdev *netdev)
129 const struct netdev_dev *dev = netdev_get_dev(netdev);
130 const struct netdev_class *class = netdev_dev_get_class(dev);
132 return (is_vport_class(class) ? vport_class_cast(class)->type
133 : class == &netdev_internal_class ? OVS_VPORT_TYPE_INTERNAL
134 : (class == &netdev_linux_class ||
135 class == &netdev_tap_class) ? OVS_VPORT_TYPE_NETDEV
136 : OVS_VPORT_TYPE_UNSPEC);
140 netdev_vport_get_netdev_type(const struct dpif_linux_vport *vport)
142 struct nlattr *a[OVS_TUNNEL_ATTR_MAX + 1];
144 switch (vport->type) {
145 case OVS_VPORT_TYPE_UNSPEC:
148 case OVS_VPORT_TYPE_NETDEV:
151 case OVS_VPORT_TYPE_INTERNAL:
154 case OVS_VPORT_TYPE_PATCH:
157 case OVS_VPORT_TYPE_GRE:
158 if (tnl_port_config_from_nlattr(vport->options, vport->options_len,
162 return (nl_attr_get_u32(a[OVS_TUNNEL_ATTR_FLAGS]) & TNL_F_IPSEC
163 ? "ipsec_gre" : "gre");
165 case OVS_VPORT_TYPE_CAPWAP:
168 case __OVS_VPORT_TYPE_MAX:
172 VLOG_WARN_RL(&rl, "dp%d: port `%s' has unsupported type %u",
173 vport->dp_ifindex, vport->name, (unsigned int) vport->type);
178 netdev_vport_create(const struct netdev_class *netdev_class, const char *name,
179 struct netdev_dev **netdev_devp)
181 struct netdev_dev_vport *dev;
183 dev = xmalloc(sizeof *dev);
184 netdev_dev_init(&dev->netdev_dev, name, netdev_class);
186 dev->dp_ifindex = -1;
187 dev->port_no = UINT32_MAX;
190 *netdev_devp = &dev->netdev_dev;
191 route_table_register();
197 netdev_vport_destroy(struct netdev_dev *netdev_dev_)
199 struct netdev_dev_vport *netdev_dev = netdev_dev_vport_cast(netdev_dev_);
201 ofpbuf_delete(netdev_dev->options);
202 route_table_unregister();
207 netdev_vport_open(struct netdev_dev *netdev_dev_, struct netdev **netdevp)
209 struct netdev_vport *netdev;
211 netdev = xmalloc(sizeof *netdev);
212 netdev_init(&netdev->netdev, netdev_dev_);
214 *netdevp = &netdev->netdev;
219 netdev_vport_close(struct netdev *netdev_)
221 struct netdev_vport *netdev = netdev_vport_cast(netdev_);
226 netdev_vport_get_config(struct netdev_dev *dev_, struct smap *args)
228 const struct netdev_class *netdev_class = netdev_dev_get_class(dev_);
229 const struct vport_class *vport_class = vport_class_cast(netdev_class);
230 struct netdev_dev_vport *dev = netdev_dev_vport_cast(dev_);
231 const char *name = netdev_dev_get_name(dev_);
235 struct dpif_linux_vport reply;
238 error = dpif_linux_vport_get(name, &reply, &buf);
240 VLOG_ERR_RL(&rl, "%s: vport query failed (%s)",
241 name, strerror(error));
245 dev->options = ofpbuf_clone_data(reply.options, reply.options_len);
246 dev->dp_ifindex = reply.dp_ifindex;
247 dev->port_no = reply.port_no;
251 error = vport_class->unparse_config(name, netdev_class->type,
256 VLOG_ERR_RL(&rl, "%s: failed to parse kernel config (%s)",
257 name, strerror(error));
263 netdev_vport_set_config(struct netdev_dev *dev_, const struct smap *args)
265 const struct netdev_class *netdev_class = netdev_dev_get_class(dev_);
266 const struct vport_class *vport_class = vport_class_cast(netdev_class);
267 struct netdev_dev_vport *dev = netdev_dev_vport_cast(dev_);
268 const char *name = netdev_dev_get_name(dev_);
269 struct ofpbuf *options;
272 options = ofpbuf_new(64);
273 error = vport_class->parse_config(name, netdev_dev_get_type(dev_),
277 || options->size != dev->options->size
278 || memcmp(options->data, dev->options->data, options->size))) {
279 struct dpif_linux_vport vport;
281 dpif_linux_vport_init(&vport);
282 vport.cmd = OVS_VPORT_CMD_SET;
284 vport.options = options->data;
285 vport.options_len = options->size;
286 error = dpif_linux_vport_transact(&vport, NULL, NULL);
287 if (!error || error == ENODEV) {
288 /* Either reconfiguration succeeded or this vport is not installed
289 * in the kernel (e.g. it hasn't been added to a dpif yet with
290 * dpif_port_add()). */
291 ofpbuf_delete(dev->options);
292 dev->options = options;
297 ofpbuf_delete(options);
303 netdev_vport_send(struct netdev *netdev, const void *data, size_t size)
305 struct netdev_dev *dev_ = netdev_get_dev(netdev);
306 struct netdev_dev_vport *dev = netdev_dev_vport_cast(dev_);
308 if (dev->dp_ifindex == -1) {
309 const char *name = netdev_get_name(netdev);
310 struct dpif_linux_vport reply;
314 error = dpif_linux_vport_get(name, &reply, &buf);
316 VLOG_ERR_RL(&rl, "%s: failed to query vport for send (%s)",
317 name, strerror(error));
320 dev->dp_ifindex = reply.dp_ifindex;
321 dev->port_no = reply.port_no;
325 return dpif_linux_vport_send(dev->dp_ifindex, dev->port_no, data, size);
329 netdev_vport_set_etheraddr(struct netdev *netdev,
330 const uint8_t mac[ETH_ADDR_LEN])
332 struct dpif_linux_vport vport;
335 dpif_linux_vport_init(&vport);
336 vport.cmd = OVS_VPORT_CMD_SET;
337 vport.name = netdev_get_name(netdev);
340 error = dpif_linux_vport_transact(&vport, NULL, NULL);
342 netdev_vport_poll_notify(netdev);
348 netdev_vport_get_etheraddr(const struct netdev *netdev,
349 uint8_t mac[ETH_ADDR_LEN])
351 struct dpif_linux_vport reply;
355 error = dpif_linux_vport_get(netdev_get_name(netdev), &reply, &buf);
358 memcpy(mac, reply.address, ETH_ADDR_LEN);
367 /* Copies 'src' into 'dst', performing format conversion in the process.
369 * 'src' is allowed to be misaligned. */
371 netdev_stats_from_ovs_vport_stats(struct netdev_stats *dst,
372 const struct ovs_vport_stats *src)
374 dst->rx_packets = get_unaligned_u64(&src->rx_packets);
375 dst->tx_packets = get_unaligned_u64(&src->tx_packets);
376 dst->rx_bytes = get_unaligned_u64(&src->rx_bytes);
377 dst->tx_bytes = get_unaligned_u64(&src->tx_bytes);
378 dst->rx_errors = get_unaligned_u64(&src->rx_errors);
379 dst->tx_errors = get_unaligned_u64(&src->tx_errors);
380 dst->rx_dropped = get_unaligned_u64(&src->rx_dropped);
381 dst->tx_dropped = get_unaligned_u64(&src->tx_dropped);
384 dst->rx_length_errors = 0;
385 dst->rx_over_errors = 0;
386 dst->rx_crc_errors = 0;
387 dst->rx_frame_errors = 0;
388 dst->rx_fifo_errors = 0;
389 dst->rx_missed_errors = 0;
390 dst->tx_aborted_errors = 0;
391 dst->tx_carrier_errors = 0;
392 dst->tx_fifo_errors = 0;
393 dst->tx_heartbeat_errors = 0;
394 dst->tx_window_errors = 0;
397 /* Copies 'src' into 'dst', performing format conversion in the process. */
399 netdev_stats_to_ovs_vport_stats(struct ovs_vport_stats *dst,
400 const struct netdev_stats *src)
402 dst->rx_packets = src->rx_packets;
403 dst->tx_packets = src->tx_packets;
404 dst->rx_bytes = src->rx_bytes;
405 dst->tx_bytes = src->tx_bytes;
406 dst->rx_errors = src->rx_errors;
407 dst->tx_errors = src->tx_errors;
408 dst->rx_dropped = src->rx_dropped;
409 dst->tx_dropped = src->tx_dropped;
413 netdev_vport_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
415 struct dpif_linux_vport reply;
419 error = dpif_linux_vport_get(netdev_get_name(netdev), &reply, &buf);
422 } else if (!reply.stats) {
427 netdev_stats_from_ovs_vport_stats(stats, reply.stats);
435 netdev_vport_set_stats(struct netdev *netdev, const struct netdev_stats *stats)
437 struct ovs_vport_stats rtnl_stats;
438 struct dpif_linux_vport vport;
441 netdev_stats_to_ovs_vport_stats(&rtnl_stats, stats);
443 dpif_linux_vport_init(&vport);
444 vport.cmd = OVS_VPORT_CMD_SET;
445 vport.name = netdev_get_name(netdev);
446 vport.stats = &rtnl_stats;
448 err = dpif_linux_vport_transact(&vport, NULL, NULL);
450 /* If the vport layer doesn't know about the device, that doesn't mean it
451 * doesn't exist (after all were able to open it when netdev_open() was
452 * called), it just means that it isn't attached and we'll be getting
453 * stats a different way. */
462 netdev_vport_get_drv_info(const struct netdev *netdev, struct smap *smap)
464 const char *iface = netdev_vport_get_tnl_iface(netdev);
467 struct netdev *egress_netdev;
469 smap_add(smap, "tunnel_egress_iface", iface);
471 if (!netdev_open(iface, "system", &egress_netdev)) {
472 smap_add(smap, "tunnel_egress_iface_carrier",
473 netdev_get_carrier(egress_netdev) ? "up" : "down");
474 netdev_close(egress_netdev);
482 netdev_vport_update_flags(struct netdev *netdev OVS_UNUSED,
483 enum netdev_flags off, enum netdev_flags on OVS_UNUSED,
484 enum netdev_flags *old_flagsp)
486 if (off & (NETDEV_UP | NETDEV_PROMISC)) {
490 *old_flagsp = NETDEV_UP | NETDEV_PROMISC;
495 netdev_vport_change_seq(const struct netdev *netdev)
497 return netdev_dev_vport_cast(netdev_get_dev(netdev))->change_seq;
501 netdev_vport_run(void)
507 netdev_vport_wait(void)
512 /* get_tnl_iface() implementation. */
514 netdev_vport_get_tnl_iface(const struct netdev *netdev)
516 struct nlattr *a[OVS_TUNNEL_ATTR_MAX + 1];
518 struct netdev_dev_vport *ndv;
519 static char name[IFNAMSIZ];
521 ndv = netdev_dev_vport_cast(netdev_get_dev(netdev));
522 if (tnl_port_config_from_nlattr(ndv->options->data, ndv->options->size,
526 route = nl_attr_get_be32(a[OVS_TUNNEL_ATTR_DST_IPV4]);
528 if (route_table_get_name(route, name)) {
535 /* Helper functions. */
538 netdev_vport_poll_notify(const struct netdev *netdev)
540 struct netdev_dev_vport *ndv;
542 ndv = netdev_dev_vport_cast(netdev_get_dev(netdev));
545 if (!ndv->change_seq) {
550 /* Code specific to individual vport types. */
553 set_key(const struct smap *args, const char *name, uint16_t type,
554 struct ofpbuf *options)
558 s = smap_get(args, name);
560 s = smap_get(args, "key");
566 if (!strcmp(s, "flow")) {
567 /* This is the default if no attribute is present. */
569 nl_msg_put_be64(options, type, htonll(strtoull(s, NULL, 0)));
574 parse_tunnel_config(const char *name, const char *type,
575 const struct smap *args, struct ofpbuf *options)
578 bool is_ipsec = false;
579 struct smap_node *node;
580 bool ipsec_mech_set = false;
581 ovs_be32 daddr = htonl(0);
582 ovs_be32 saddr = htonl(0);
585 flags = TNL_F_DF_DEFAULT | TNL_F_PMTUD | TNL_F_HDR_CACHE;
586 if (!strcmp(type, "gre")) {
588 } else if (!strcmp(type, "ipsec_gre")) {
591 flags |= TNL_F_IPSEC;
592 flags &= ~TNL_F_HDR_CACHE;
595 SMAP_FOR_EACH (node, args) {
596 if (!strcmp(node->key, "remote_ip")) {
597 struct in_addr in_addr;
598 if (lookup_ip(node->value, &in_addr)) {
599 VLOG_WARN("%s: bad %s 'remote_ip'", name, type);
601 daddr = in_addr.s_addr;
603 } else if (!strcmp(node->key, "local_ip")) {
604 struct in_addr in_addr;
605 if (lookup_ip(node->value, &in_addr)) {
606 VLOG_WARN("%s: bad %s 'local_ip'", name, type);
608 saddr = in_addr.s_addr;
610 } else if (!strcmp(node->key, "tos")) {
611 if (!strcmp(node->value, "inherit")) {
612 flags |= TNL_F_TOS_INHERIT;
616 tos = strtol(node->value, &endptr, 0);
617 if (*endptr == '\0' && tos == (tos & IP_DSCP_MASK)) {
618 nl_msg_put_u8(options, OVS_TUNNEL_ATTR_TOS, tos);
620 VLOG_WARN("%s: invalid TOS %s", name, node->value);
623 } else if (!strcmp(node->key, "ttl")) {
624 if (!strcmp(node->value, "inherit")) {
625 flags |= TNL_F_TTL_INHERIT;
627 nl_msg_put_u8(options, OVS_TUNNEL_ATTR_TTL, atoi(node->value));
629 } else if (!strcmp(node->key, "csum") && is_gre) {
630 if (!strcmp(node->value, "true")) {
633 } else if (!strcmp(node->key, "df_inherit")) {
634 if (!strcmp(node->value, "true")) {
635 flags |= TNL_F_DF_INHERIT;
637 } else if (!strcmp(node->key, "df_default")) {
638 if (!strcmp(node->value, "false")) {
639 flags &= ~TNL_F_DF_DEFAULT;
641 } else if (!strcmp(node->key, "pmtud")) {
642 if (!strcmp(node->value, "false")) {
643 flags &= ~TNL_F_PMTUD;
645 } else if (!strcmp(node->key, "header_cache")) {
646 if (!strcmp(node->value, "false")) {
647 flags &= ~TNL_F_HDR_CACHE;
649 } else if (!strcmp(node->key, "peer_cert") && is_ipsec) {
650 if (smap_get(args, "certificate")) {
651 ipsec_mech_set = true;
653 const char *use_ssl_cert;
655 /* If the "use_ssl_cert" is true, then "certificate" and
656 * "private_key" will be pulled from the SSL table. The
657 * use of this option is strongly discouraged, since it
658 * will like be removed when multiple SSL configurations
659 * are supported by OVS.
661 use_ssl_cert = smap_get(args, "use_ssl_cert");
662 if (!use_ssl_cert || strcmp(use_ssl_cert, "true")) {
663 VLOG_ERR("%s: 'peer_cert' requires 'certificate' argument",
667 ipsec_mech_set = true;
669 } else if (!strcmp(node->key, "psk") && is_ipsec) {
670 ipsec_mech_set = true;
672 && (!strcmp(node->key, "certificate")
673 || !strcmp(node->key, "private_key")
674 || !strcmp(node->key, "use_ssl_cert"))) {
675 /* Ignore options not used by the netdev. */
676 } else if (!strcmp(node->key, "key") ||
677 !strcmp(node->key, "in_key") ||
678 !strcmp(node->key, "out_key")) {
679 /* Handled separately below. */
681 VLOG_WARN("%s: unknown %s argument '%s'", name, type, node->key);
686 static pid_t pid = 0;
688 char *file_name = xasprintf("%s/%s", ovs_rundir(),
689 "ovs-monitor-ipsec.pid");
690 pid = read_pidfile(file_name);
695 VLOG_ERR("%s: IPsec requires the ovs-monitor-ipsec daemon",
700 if (smap_get(args, "peer_cert") && smap_get(args, "psk")) {
701 VLOG_ERR("%s: cannot define both 'peer_cert' and 'psk'", name);
705 if (!ipsec_mech_set) {
706 VLOG_ERR("%s: IPsec requires an 'peer_cert' or psk' argument",
712 set_key(args, "in_key", OVS_TUNNEL_ATTR_IN_KEY, options);
713 set_key(args, "out_key", OVS_TUNNEL_ATTR_OUT_KEY, options);
716 VLOG_ERR("%s: %s type requires valid 'remote_ip' argument",
720 nl_msg_put_be32(options, OVS_TUNNEL_ATTR_DST_IPV4, daddr);
723 if (ip_is_multicast(daddr)) {
724 VLOG_WARN("%s: remote_ip is multicast, ignoring local_ip", name);
726 nl_msg_put_be32(options, OVS_TUNNEL_ATTR_SRC_IPV4, saddr);
730 nl_msg_put_u32(options, OVS_TUNNEL_ATTR_FLAGS, flags);
736 tnl_port_config_from_nlattr(const struct nlattr *options, size_t options_len,
737 struct nlattr *a[OVS_TUNNEL_ATTR_MAX + 1])
739 static const struct nl_policy ovs_tunnel_policy[] = {
740 [OVS_TUNNEL_ATTR_FLAGS] = { .type = NL_A_U32 },
741 [OVS_TUNNEL_ATTR_DST_IPV4] = { .type = NL_A_BE32 },
742 [OVS_TUNNEL_ATTR_SRC_IPV4] = { .type = NL_A_BE32, .optional = true },
743 [OVS_TUNNEL_ATTR_IN_KEY] = { .type = NL_A_BE64, .optional = true },
744 [OVS_TUNNEL_ATTR_OUT_KEY] = { .type = NL_A_BE64, .optional = true },
745 [OVS_TUNNEL_ATTR_TOS] = { .type = NL_A_U8, .optional = true },
746 [OVS_TUNNEL_ATTR_TTL] = { .type = NL_A_U8, .optional = true },
750 ofpbuf_use_const(&buf, options, options_len);
751 if (!nl_policy_parse(&buf, 0, ovs_tunnel_policy,
752 a, ARRAY_SIZE(ovs_tunnel_policy))) {
759 get_be64_or_zero(const struct nlattr *a)
761 return a ? ntohll(nl_attr_get_be64(a)) : 0;
765 unparse_tunnel_config(const char *name OVS_UNUSED, const char *type OVS_UNUSED,
766 const struct nlattr *options, size_t options_len,
769 struct nlattr *a[OVS_TUNNEL_ATTR_MAX + 1];
774 error = tnl_port_config_from_nlattr(options, options_len, a);
779 flags = nl_attr_get_u32(a[OVS_TUNNEL_ATTR_FLAGS]);
780 if (!(flags & TNL_F_HDR_CACHE) == !(flags & TNL_F_IPSEC)) {
781 smap_add(args, "header_cache",
782 flags & TNL_F_HDR_CACHE ? "true" : "false");
785 daddr = nl_attr_get_be32(a[OVS_TUNNEL_ATTR_DST_IPV4]);
786 smap_add_format(args, "remote_ip", IP_FMT, IP_ARGS(&daddr));
788 if (a[OVS_TUNNEL_ATTR_SRC_IPV4]) {
789 ovs_be32 saddr = nl_attr_get_be32(a[OVS_TUNNEL_ATTR_SRC_IPV4]);
790 smap_add_format(args, "local_ip", IP_FMT, IP_ARGS(&saddr));
793 if (!a[OVS_TUNNEL_ATTR_IN_KEY] && !a[OVS_TUNNEL_ATTR_OUT_KEY]) {
794 smap_add(args, "key", "flow");
796 uint64_t in_key = get_be64_or_zero(a[OVS_TUNNEL_ATTR_IN_KEY]);
797 uint64_t out_key = get_be64_or_zero(a[OVS_TUNNEL_ATTR_OUT_KEY]);
799 if (in_key && in_key == out_key) {
800 smap_add_format(args, "key", "%"PRIu64, in_key);
802 if (!a[OVS_TUNNEL_ATTR_IN_KEY]) {
803 smap_add(args, "in_key", "flow");
805 smap_add_format(args, "in_key", "%"PRIu64, in_key);
808 if (!a[OVS_TUNNEL_ATTR_OUT_KEY]) {
809 smap_add(args, "out_key", "flow");
810 } else if (out_key) {
811 smap_add_format(args, "out_key", "%"PRIu64, out_key);
816 if (flags & TNL_F_TTL_INHERIT) {
817 smap_add(args, "tos", "inherit");
818 } else if (a[OVS_TUNNEL_ATTR_TTL]) {
819 int ttl = nl_attr_get_u8(a[OVS_TUNNEL_ATTR_TTL]);
820 smap_add_format(args, "tos", "%d", ttl);
823 if (flags & TNL_F_TOS_INHERIT) {
824 smap_add(args, "tos", "inherit");
825 } else if (a[OVS_TUNNEL_ATTR_TOS]) {
826 int tos = nl_attr_get_u8(a[OVS_TUNNEL_ATTR_TOS]);
827 smap_add_format(args, "tos", "0x%x", tos);
830 if (flags & TNL_F_CSUM) {
831 smap_add(args, "csum", "true");
833 if (flags & TNL_F_DF_INHERIT) {
834 smap_add(args, "df_inherit", "true");
836 if (!(flags & TNL_F_DF_DEFAULT)) {
837 smap_add(args, "df_default", "false");
839 if (!(flags & TNL_F_PMTUD)) {
840 smap_add(args, "pmtud", "false");
847 parse_patch_config(const char *name, const char *type OVS_UNUSED,
848 const struct smap *args, struct ofpbuf *options)
852 peer = smap_get(args, "peer");
854 VLOG_ERR("%s: patch type requires valid 'peer' argument", name);
858 if (smap_count(args) > 1) {
859 VLOG_ERR("%s: patch type takes only a 'peer' argument", name);
863 if (strlen(peer) >= IFNAMSIZ) {
864 VLOG_ERR("%s: patch 'peer' arg too long", name);
868 if (!strcmp(name, peer)) {
869 VLOG_ERR("%s: patch peer must not be self", name);
873 nl_msg_put_string(options, OVS_PATCH_ATTR_PEER, peer);
879 unparse_patch_config(const char *name OVS_UNUSED, const char *type OVS_UNUSED,
880 const struct nlattr *options, size_t options_len,
883 static const struct nl_policy ovs_patch_policy[] = {
884 [OVS_PATCH_ATTR_PEER] = { .type = NL_A_STRING,
889 struct nlattr *a[ARRAY_SIZE(ovs_patch_policy)];
892 ofpbuf_use_const(&buf, options, options_len);
893 if (!nl_policy_parse(&buf, 0, ovs_patch_policy,
894 a, ARRAY_SIZE(ovs_patch_policy))) {
898 smap_add(args, "peer", nl_attr_get_string(a[OVS_PATCH_ATTR_PEER]));
902 #define VPORT_FUNCTIONS(GET_STATUS) \
907 netdev_vport_create, \
908 netdev_vport_destroy, \
909 netdev_vport_get_config, \
910 netdev_vport_set_config, \
913 netdev_vport_close, \
917 NULL, /* recv_wait */ \
920 netdev_vport_send, /* send */ \
921 NULL, /* send_wait */ \
923 netdev_vport_set_etheraddr, \
924 netdev_vport_get_etheraddr, \
925 NULL, /* get_mtu */ \
926 NULL, /* set_mtu */ \
927 NULL, /* get_ifindex */ \
928 NULL, /* get_carrier */ \
929 NULL, /* get_carrier_resets */ \
930 NULL, /* get_miimon */ \
931 netdev_vport_get_stats, \
932 netdev_vport_set_stats, \
934 NULL, /* get_features */ \
935 NULL, /* set_advertisements */ \
937 NULL, /* set_policing */ \
938 NULL, /* get_qos_types */ \
939 NULL, /* get_qos_capabilities */ \
940 NULL, /* get_qos */ \
941 NULL, /* set_qos */ \
942 NULL, /* get_queue */ \
943 NULL, /* set_queue */ \
944 NULL, /* delete_queue */ \
945 NULL, /* get_queue_stats */ \
946 NULL, /* dump_queues */ \
947 NULL, /* dump_queue_stats */ \
949 NULL, /* get_in4 */ \
950 NULL, /* set_in4 */ \
951 NULL, /* get_in6 */ \
952 NULL, /* add_router */ \
953 NULL, /* get_next_hop */ \
955 NULL, /* arp_lookup */ \
957 netdev_vport_update_flags, \
959 netdev_vport_change_seq
962 netdev_vport_register(void)
964 static const struct vport_class vport_classes[] = {
965 { OVS_VPORT_TYPE_GRE,
966 { "gre", VPORT_FUNCTIONS(netdev_vport_get_drv_info) },
967 parse_tunnel_config, unparse_tunnel_config },
969 { OVS_VPORT_TYPE_GRE,
970 { "ipsec_gre", VPORT_FUNCTIONS(netdev_vport_get_drv_info) },
971 parse_tunnel_config, unparse_tunnel_config },
973 { OVS_VPORT_TYPE_CAPWAP,
974 { "capwap", VPORT_FUNCTIONS(netdev_vport_get_drv_info) },
975 parse_tunnel_config, unparse_tunnel_config },
977 { OVS_VPORT_TYPE_PATCH,
978 { "patch", VPORT_FUNCTIONS(NULL) },
979 parse_patch_config, unparse_patch_config }
984 for (i = 0; i < ARRAY_SIZE(vport_classes); i++) {
985 netdev_register_provider(&vport_classes[i].netdev_class);