2 * Copyright (c) 2010, 2011 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 "netdev-vport.h"
23 #include <sys/socket.h>
24 #include <linux/rtnetlink.h>
26 #include <sys/ioctl.h>
28 #include "byte-order.h"
32 #include "netdev-provider.h"
34 #include "netlink-socket.h"
36 #include "openvswitch/datapath-protocol.h"
37 #include "openvswitch/tunnel.h"
39 #include "rtnetlink.h"
40 #include "route-table.h"
41 #include "rtnetlink-link.h"
43 #include "socket-util.h"
46 VLOG_DEFINE_THIS_MODULE(netdev_vport);
48 static struct hmap name_map;
49 static struct rtnetlink_notifier netdev_vport_link_notifier;
52 struct hmap_node node; /* Node in name_map. */
53 uint32_t ifi_index; /* Kernel interface index. */
55 char ifname[IFNAMSIZ]; /* Interface name. */
58 struct netdev_vport_notifier {
59 struct netdev_notifier notifier;
60 struct list list_node;
61 struct shash_node *shash_node;
64 struct netdev_dev_vport {
65 struct netdev_dev netdev_dev;
66 uint64_t config[VPORT_CONFIG_SIZE / 8];
74 struct netdev_class netdev_class;
75 int (*parse_config)(const struct netdev_dev *, const struct shash *args,
79 static struct shash netdev_vport_notifiers =
80 SHASH_INITIALIZER(&netdev_vport_notifiers);
82 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
84 static int netdev_vport_do_ioctl(int cmd, void *arg);
85 static int netdev_vport_create(const struct netdev_class *, const char *,
86 const struct shash *, struct netdev_dev **);
87 static void netdev_vport_poll_notify(const struct netdev *);
89 static void netdev_vport_tnl_iface_init(void);
90 static void netdev_vport_link_change(const struct rtnetlink_link_change *,
92 static const char *netdev_vport_get_tnl_iface(const struct netdev *netdev);
95 is_vport_class(const struct netdev_class *class)
97 return class->create == netdev_vport_create;
100 static const struct vport_class *
101 vport_class_cast(const struct netdev_class *class)
103 assert(is_vport_class(class));
104 return CONTAINER_OF(class, struct vport_class, netdev_class);
107 static struct netdev_dev_vport *
108 netdev_dev_vport_cast(const struct netdev_dev *netdev_dev)
110 assert(is_vport_class(netdev_dev_get_class(netdev_dev)));
111 return CONTAINER_OF(netdev_dev, struct netdev_dev_vport, netdev_dev);
114 static struct netdev_vport *
115 netdev_vport_cast(const struct netdev *netdev)
117 struct netdev_dev *netdev_dev = netdev_get_dev(netdev);
118 assert(is_vport_class(netdev_dev_get_class(netdev_dev)));
119 return CONTAINER_OF(netdev, struct netdev_vport, netdev);
122 /* If 'netdev' is a vport netdev, copies its kernel configuration into
123 * 'config'. Otherwise leaves 'config' untouched. */
125 netdev_vport_get_config(const struct netdev *netdev, void *config)
127 const struct netdev_dev *dev = netdev_get_dev(netdev);
129 if (is_vport_class(netdev_dev_get_class(dev))) {
130 const struct netdev_dev_vport *vport = netdev_dev_vport_cast(dev);
131 memcpy(config, vport->config, VPORT_CONFIG_SIZE);
136 netdev_vport_init(void)
138 netdev_vport_tnl_iface_init();
139 route_table_register();
144 netdev_vport_create(const struct netdev_class *netdev_class, const char *name,
145 const struct shash *args,
146 struct netdev_dev **netdev_devp)
148 const struct vport_class *vport_class = vport_class_cast(netdev_class);
149 struct netdev_dev_vport *dev;
152 dev = xmalloc(sizeof *dev);
153 *netdev_devp = &dev->netdev_dev;
154 netdev_dev_init(&dev->netdev_dev, name, netdev_class);
156 memset(dev->config, 0, sizeof dev->config);
157 error = vport_class->parse_config(&dev->netdev_dev, args, dev->config);
160 netdev_dev_uninit(&dev->netdev_dev, true);
166 netdev_vport_destroy(struct netdev_dev *netdev_dev_)
168 struct netdev_dev_vport *netdev_dev = netdev_dev_vport_cast(netdev_dev_);
170 route_table_unregister();
175 netdev_vport_open(struct netdev_dev *netdev_dev_, int ethertype OVS_UNUSED,
176 struct netdev **netdevp)
178 struct netdev_vport *netdev;
180 netdev = xmalloc(sizeof *netdev);
181 netdev_init(&netdev->netdev, netdev_dev_);
183 *netdevp = &netdev->netdev;
188 netdev_vport_close(struct netdev *netdev_)
190 struct netdev_vport *netdev = netdev_vport_cast(netdev_);
195 netdev_vport_reconfigure(struct netdev_dev *dev_,
196 const struct shash *args)
198 const struct netdev_class *netdev_class = netdev_dev_get_class(dev_);
199 const struct vport_class *vport_class = vport_class_cast(netdev_class);
200 struct netdev_dev_vport *dev = netdev_dev_vport_cast(dev_);
201 struct odp_port port;
204 memset(&port, 0, sizeof port);
205 strncpy(port.devname, netdev_dev_get_name(dev_), sizeof port.devname);
206 strncpy(port.type, netdev_dev_get_type(dev_), sizeof port.type);
207 error = vport_class->parse_config(dev_, args, port.config);
208 if (!error && memcmp(port.config, dev->config, sizeof dev->config)) {
209 error = netdev_vport_do_ioctl(ODP_VPORT_MOD, &port);
210 if (!error || error == ENODEV) {
211 /* Either reconfiguration succeeded or this vport is not installed
212 * in the kernel (e.g. it hasn't been added to a dpif yet with
213 * dpif_port_add()). */
214 memcpy(dev->config, port.config, sizeof dev->config);
221 netdev_vport_set_etheraddr(struct netdev *netdev,
222 const uint8_t mac[ETH_ADDR_LEN])
224 struct odp_vport_ether vport_ether;
227 ovs_strlcpy(vport_ether.devname, netdev_get_name(netdev),
228 sizeof vport_ether.devname);
230 memcpy(vport_ether.ether_addr, mac, ETH_ADDR_LEN);
232 err = netdev_vport_do_ioctl(ODP_VPORT_ETHER_SET, &vport_ether);
237 netdev_vport_poll_notify(netdev);
242 netdev_vport_get_etheraddr(const struct netdev *netdev,
243 uint8_t mac[ETH_ADDR_LEN])
245 struct odp_vport_ether vport_ether;
248 ovs_strlcpy(vport_ether.devname, netdev_get_name(netdev),
249 sizeof vport_ether.devname);
251 err = netdev_vport_do_ioctl(ODP_VPORT_ETHER_GET, &vport_ether);
256 memcpy(mac, vport_ether.ether_addr, ETH_ADDR_LEN);
261 netdev_vport_get_mtu(const struct netdev *netdev, int *mtup)
263 struct odp_vport_mtu vport_mtu;
266 ovs_strlcpy(vport_mtu.devname, netdev_get_name(netdev),
267 sizeof vport_mtu.devname);
269 err = netdev_vport_do_ioctl(ODP_VPORT_MTU_GET, &vport_mtu);
274 *mtup = vport_mtu.mtu;
279 netdev_vport_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
281 const char *name = netdev_get_name(netdev);
282 struct odp_vport_stats_req ovsr;
285 ovs_strlcpy(ovsr.devname, name, sizeof ovsr.devname);
286 err = netdev_vport_do_ioctl(ODP_VPORT_STATS_GET, &ovsr);
291 stats->rx_packets = ovsr.stats.rx_packets;
292 stats->tx_packets = ovsr.stats.tx_packets;
293 stats->rx_bytes = ovsr.stats.rx_bytes;
294 stats->tx_bytes = ovsr.stats.tx_bytes;
295 stats->rx_errors = ovsr.stats.rx_errors;
296 stats->tx_errors = ovsr.stats.tx_errors;
297 stats->rx_dropped = ovsr.stats.rx_dropped;
298 stats->tx_dropped = ovsr.stats.tx_dropped;
299 stats->multicast = ovsr.stats.multicast;
300 stats->collisions = ovsr.stats.collisions;
301 stats->rx_length_errors = ovsr.stats.rx_length_errors;
302 stats->rx_over_errors = ovsr.stats.rx_over_errors;
303 stats->rx_crc_errors = ovsr.stats.rx_crc_errors;
304 stats->rx_frame_errors = ovsr.stats.rx_frame_errors;
305 stats->rx_fifo_errors = ovsr.stats.rx_fifo_errors;
306 stats->rx_missed_errors = ovsr.stats.rx_missed_errors;
307 stats->tx_aborted_errors = ovsr.stats.tx_aborted_errors;
308 stats->tx_carrier_errors = ovsr.stats.tx_carrier_errors;
309 stats->tx_fifo_errors = ovsr.stats.tx_fifo_errors;
310 stats->tx_heartbeat_errors = ovsr.stats.tx_heartbeat_errors;
311 stats->tx_window_errors = ovsr.stats.tx_window_errors;
317 netdev_vport_set_stats(struct netdev *netdev, const struct netdev_stats *stats)
319 struct odp_vport_stats_req ovsr;
322 ovs_strlcpy(ovsr.devname, netdev_get_name(netdev), sizeof ovsr.devname);
324 ovsr.stats.rx_packets = stats->rx_packets;
325 ovsr.stats.tx_packets = stats->tx_packets;
326 ovsr.stats.rx_bytes = stats->rx_bytes;
327 ovsr.stats.tx_bytes = stats->tx_bytes;
328 ovsr.stats.rx_errors = stats->rx_errors;
329 ovsr.stats.tx_errors = stats->tx_errors;
330 ovsr.stats.rx_dropped = stats->rx_dropped;
331 ovsr.stats.tx_dropped = stats->tx_dropped;
332 ovsr.stats.multicast = stats->multicast;
333 ovsr.stats.collisions = stats->collisions;
334 ovsr.stats.rx_length_errors = stats->rx_length_errors;
335 ovsr.stats.rx_over_errors = stats->rx_over_errors;
336 ovsr.stats.rx_crc_errors = stats->rx_crc_errors;
337 ovsr.stats.rx_frame_errors = stats->rx_frame_errors;
338 ovsr.stats.rx_fifo_errors = stats->rx_fifo_errors;
339 ovsr.stats.rx_missed_errors = stats->rx_missed_errors;
340 ovsr.stats.tx_aborted_errors = stats->tx_aborted_errors;
341 ovsr.stats.tx_carrier_errors = stats->tx_carrier_errors;
342 ovsr.stats.tx_fifo_errors = stats->tx_fifo_errors;
343 ovsr.stats.tx_heartbeat_errors = stats->tx_heartbeat_errors;
344 ovsr.stats.tx_window_errors = stats->tx_window_errors;
346 err = netdev_vport_do_ioctl(ODP_VPORT_STATS_SET, &ovsr);
348 /* If the vport layer doesn't know about the device, that doesn't mean it
349 * doesn't exist (after all were able to open it when netdev_open() was
350 * called), it just means that it isn't attached and we'll be getting
351 * stats a different way. */
360 netdev_vport_get_status(const struct netdev *netdev, struct shash *sh)
362 const char *iface = netdev_vport_get_tnl_iface(netdev);
365 shash_add(sh, "tunnel_egress_iface", xstrdup(iface));
372 netdev_vport_update_flags(struct netdev *netdev OVS_UNUSED,
373 enum netdev_flags off, enum netdev_flags on OVS_UNUSED,
374 enum netdev_flags *old_flagsp)
376 if (off & (NETDEV_UP | NETDEV_PROMISC)) {
380 *old_flagsp = NETDEV_UP | NETDEV_PROMISC;
385 make_poll_name(const struct netdev *netdev)
387 return xasprintf("%s:%s", netdev_get_type(netdev), netdev_get_name(netdev));
391 netdev_vport_poll_add(struct netdev *netdev,
392 void (*cb)(struct netdev_notifier *), void *aux,
393 struct netdev_notifier **notifierp)
395 char *poll_name = make_poll_name(netdev);
396 struct netdev_vport_notifier *notifier;
398 struct shash_node *shash_node;
400 shash_node = shash_find_data(&netdev_vport_notifiers, poll_name);
402 list = xmalloc(sizeof *list);
404 shash_node = shash_add(&netdev_vport_notifiers, poll_name, list);
406 list = shash_node->data;
409 notifier = xmalloc(sizeof *notifier);
410 netdev_notifier_init(¬ifier->notifier, netdev, cb, aux);
411 list_push_back(list, ¬ifier->list_node);
412 notifier->shash_node = shash_node;
414 *notifierp = ¬ifier->notifier;
421 netdev_vport_poll_remove(struct netdev_notifier *notifier_)
423 struct netdev_vport_notifier *notifier =
424 CONTAINER_OF(notifier_, struct netdev_vport_notifier, notifier);
428 list = list_remove(¬ifier->list_node);
429 if (list_is_empty(list)) {
430 shash_delete(&netdev_vport_notifiers, notifier->shash_node);
438 netdev_vport_run(void)
440 rtnetlink_link_notifier_run();
445 netdev_vport_wait(void)
447 rtnetlink_link_notifier_wait();
451 /* get_tnl_iface() implementation. */
453 static struct name_node *
454 name_node_lookup(int ifi_index)
456 struct name_node *nn;
458 HMAP_FOR_EACH_WITH_HASH(nn, node, hash_int(ifi_index, 0), &name_map) {
459 if (nn->ifi_index == ifi_index) {
467 /* Queries the kernel for fresh data to populate the name map with. */
469 netdev_vport_reset_names(void)
473 struct rtgenmsg *rtmsg;
474 struct ofpbuf request, reply;
475 static struct nl_sock *rtnl_sock;
476 struct name_node *nn, *nn_next;
478 HMAP_FOR_EACH_SAFE(nn, nn_next, node, &name_map) {
479 hmap_remove(&name_map, &nn->node);
483 error = nl_sock_create(NETLINK_ROUTE, 0, 0, 0, &rtnl_sock);
485 VLOG_WARN_RL(&rl, "Failed to create NETLINK_ROUTE socket");
489 ofpbuf_init(&request, 0);
491 nl_msg_put_nlmsghdr(&request, sizeof *rtmsg, RTM_GETLINK, NLM_F_REQUEST);
493 rtmsg = ofpbuf_put_zeros(&request, sizeof *rtmsg);
494 rtmsg->rtgen_family = AF_INET;
496 nl_dump_start(&dump, rtnl_sock, &request);
498 while (nl_dump_next(&dump, &reply)) {
499 struct rtnetlink_link_change change;
501 if (rtnetlink_link_parse(&reply, &change)) {
502 netdev_vport_link_change(&change, NULL);
506 error = nl_dump_done(&dump);
507 nl_sock_destroy(rtnl_sock);
513 netdev_vport_link_change(const struct rtnetlink_link_change *change,
514 void *aux OVS_UNUSED)
518 netdev_vport_reset_names();
519 } else if (change->nlmsg_type == RTM_NEWLINK) {
520 struct name_node *nn;
522 if (name_node_lookup(change->ifi_index)) {
526 nn = xzalloc(sizeof *nn);
527 nn->ifi_index = change->ifi_index;
529 strncpy(nn->ifname, change->ifname, IFNAMSIZ);
530 nn->ifname[IFNAMSIZ - 1] = '\0';
532 hmap_insert(&name_map, &nn->node, hash_int(nn->ifi_index, 0));
533 } else if (change->nlmsg_type == RTM_DELLINK) {
534 struct name_node *nn;
536 nn = name_node_lookup(change->ifi_index);
539 hmap_remove(&name_map, &nn->node);
544 VLOG_WARN_RL(&rl, "Received unexpected rtnetlink message type %d",
550 netdev_vport_tnl_iface_init(void)
552 static bool tnl_iface_is_init = false;
554 if (!tnl_iface_is_init) {
555 hmap_init(&name_map);
557 rtnetlink_link_notifier_register(&netdev_vport_link_notifier,
558 netdev_vport_link_change, NULL);
560 netdev_vport_reset_names();
561 tnl_iface_is_init = true;
566 netdev_vport_get_tnl_iface(const struct netdev *netdev)
570 struct netdev_dev_vport *ndv;
571 struct tnl_port_config *config;
573 ndv = netdev_dev_vport_cast(netdev_get_dev(netdev));
574 config = (struct tnl_port_config *) ndv->config;
575 route = config->daddr;
577 if (route_table_get_ifindex(route, &ifindex)) {
578 struct name_node *nn;
579 HMAP_FOR_EACH_WITH_HASH(nn, node, hash_int(ifindex, 0), &name_map) {
580 if (nn->ifi_index == ifindex) {
589 /* Helper functions. */
592 netdev_vport_do_ioctl(int cmd, void *arg)
594 static int ioctl_fd = -1;
597 ioctl_fd = open("/dev/net/dp0", O_RDONLY | O_NONBLOCK);
599 VLOG_ERR_RL(&rl, "failed to open ioctl fd: %s", strerror(errno));
604 return ioctl(ioctl_fd, cmd, arg) ? errno : 0;
608 netdev_vport_poll_notify(const struct netdev *netdev)
610 char *poll_name = make_poll_name(netdev);
611 struct list *list = shash_find_data(&netdev_vport_notifiers,
615 struct netdev_vport_notifier *notifier;
617 LIST_FOR_EACH (notifier, list_node, list) {
618 struct netdev_notifier *n = ¬ifier->notifier;
626 /* Code specific to individual vport types. */
629 parse_tunnel_config(const struct netdev_dev *dev, const struct shash *args,
632 const char *name = netdev_dev_get_name(dev);
633 const char *type = netdev_dev_get_type(dev);
635 bool is_ipsec = false;
636 struct tnl_port_config config;
637 struct shash_node *node;
638 bool ipsec_mech_set = false;
640 memset(&config, 0, sizeof config);
641 config.flags |= TNL_F_PMTUD;
642 config.flags |= TNL_F_HDR_CACHE;
644 if (!strcmp(type, "gre")) {
646 } else if (!strcmp(type, "ipsec_gre")) {
650 config.flags |= TNL_F_IPSEC;
652 /* IPsec doesn't work when header caching is enabled. */
653 config.flags &= ~TNL_F_HDR_CACHE;
656 SHASH_FOR_EACH (node, args) {
657 if (!strcmp(node->name, "remote_ip")) {
658 struct in_addr in_addr;
659 if (lookup_ip(node->data, &in_addr)) {
660 VLOG_WARN("%s: bad %s 'remote_ip'", name, type);
662 config.daddr = in_addr.s_addr;
664 } else if (!strcmp(node->name, "local_ip")) {
665 struct in_addr in_addr;
666 if (lookup_ip(node->data, &in_addr)) {
667 VLOG_WARN("%s: bad %s 'local_ip'", name, type);
669 config.saddr = in_addr.s_addr;
671 } else if (!strcmp(node->name, "key") && is_gre) {
672 if (!strcmp(node->data, "flow")) {
673 config.flags |= TNL_F_IN_KEY_MATCH;
674 config.flags |= TNL_F_OUT_KEY_ACTION;
676 uint64_t key = strtoull(node->data, NULL, 0);
677 config.out_key = config.in_key = htonll(key);
679 } else if (!strcmp(node->name, "in_key") && is_gre) {
680 if (!strcmp(node->data, "flow")) {
681 config.flags |= TNL_F_IN_KEY_MATCH;
683 config.in_key = htonll(strtoull(node->data, NULL, 0));
685 } else if (!strcmp(node->name, "out_key") && is_gre) {
686 if (!strcmp(node->data, "flow")) {
687 config.flags |= TNL_F_OUT_KEY_ACTION;
689 config.out_key = htonll(strtoull(node->data, NULL, 0));
691 } else if (!strcmp(node->name, "tos")) {
692 if (!strcmp(node->data, "inherit")) {
693 config.flags |= TNL_F_TOS_INHERIT;
695 config.tos = atoi(node->data);
697 } else if (!strcmp(node->name, "ttl")) {
698 if (!strcmp(node->data, "inherit")) {
699 config.flags |= TNL_F_TTL_INHERIT;
701 config.ttl = atoi(node->data);
703 } else if (!strcmp(node->name, "csum") && is_gre) {
704 if (!strcmp(node->data, "true")) {
705 config.flags |= TNL_F_CSUM;
707 } else if (!strcmp(node->name, "pmtud")) {
708 if (!strcmp(node->data, "false")) {
709 config.flags &= ~TNL_F_PMTUD;
711 } else if (!strcmp(node->name, "header_cache")) {
712 if (!strcmp(node->data, "false")) {
713 config.flags &= ~TNL_F_HDR_CACHE;
715 } else if (!strcmp(node->name, "peer_cert") && is_ipsec) {
716 if (shash_find(args, "certificate")) {
717 ipsec_mech_set = true;
719 const char *use_ssl_cert;
721 /* If the "use_ssl_cert" is true, then "certificate" and
722 * "private_key" will be pulled from the SSL table. The
723 * use of this option is strongly discouraged, since it
724 * will like be removed when multiple SSL configurations
725 * are supported by OVS.
727 use_ssl_cert = shash_find_data(args, "use_ssl_cert");
728 if (!use_ssl_cert || strcmp(use_ssl_cert, "true")) {
729 VLOG_WARN("%s: 'peer_cert' requires 'certificate' argument",
733 ipsec_mech_set = true;
735 } else if (!strcmp(node->name, "psk") && is_ipsec) {
736 ipsec_mech_set = true;
738 && (!strcmp(node->name, "certificate")
739 || !strcmp(node->name, "private_key")
740 || !strcmp(node->name, "use_ssl_cert"))) {
741 /* Ignore options not used by the netdev. */
743 VLOG_WARN("%s: unknown %s argument '%s'",
744 name, type, node->name);
749 if (shash_find(args, "peer_cert") && shash_find(args, "psk")) {
750 VLOG_WARN("%s: cannot define both 'peer_cert' and 'psk'", name);
754 if (!ipsec_mech_set) {
755 VLOG_WARN("%s: IPsec requires an 'peer_cert' or psk' argument",
762 VLOG_WARN("%s: %s type requires valid 'remote_ip' argument",
767 BUILD_ASSERT(sizeof config <= VPORT_CONFIG_SIZE);
768 memcpy(configp, &config, sizeof config);
773 parse_patch_config(const struct netdev_dev *dev, const struct shash *args,
776 const char *name = netdev_dev_get_name(dev);
779 peer = shash_find_data(args, "peer");
781 VLOG_WARN("%s: patch type requires valid 'peer' argument", name);
785 if (shash_count(args) > 1) {
786 VLOG_WARN("%s: patch type takes only a 'peer' argument", name);
790 if (strlen(peer) >= MIN(IFNAMSIZ, VPORT_CONFIG_SIZE)) {
791 VLOG_WARN("%s: patch 'peer' arg too long", name);
795 if (!strcmp(name, peer)) {
796 VLOG_WARN("%s: patch peer must not be self", name);
800 strncpy(configp, peer, VPORT_CONFIG_SIZE);
805 #define VPORT_FUNCTIONS(GET_STATUS) \
810 netdev_vport_create, \
811 netdev_vport_destroy, \
812 netdev_vport_reconfigure, \
815 netdev_vport_close, \
817 NULL, /* enumerate */ \
820 NULL, /* recv_wait */ \
824 NULL, /* send_wait */ \
826 netdev_vport_set_etheraddr, \
827 netdev_vport_get_etheraddr, \
828 netdev_vport_get_mtu, \
829 NULL, /* get_ifindex */ \
830 NULL, /* get_carrier */ \
831 NULL, /* get_miimon */ \
832 netdev_vport_get_stats, \
833 netdev_vport_set_stats, \
835 NULL, /* get_features */ \
836 NULL, /* set_advertisements */ \
837 NULL, /* get_vlan_vid */ \
839 NULL, /* set_policing */ \
840 NULL, /* get_qos_types */ \
841 NULL, /* get_qos_capabilities */ \
842 NULL, /* get_qos */ \
843 NULL, /* set_qos */ \
844 NULL, /* get_queue */ \
845 NULL, /* set_queue */ \
846 NULL, /* delete_queue */ \
847 NULL, /* get_queue_stats */ \
848 NULL, /* dump_queues */ \
849 NULL, /* dump_queue_stats */ \
851 NULL, /* get_in4 */ \
852 NULL, /* set_in4 */ \
853 NULL, /* get_in6 */ \
854 NULL, /* add_router */ \
855 NULL, /* get_next_hop */ \
857 NULL, /* arp_lookup */ \
859 netdev_vport_update_flags, \
861 netdev_vport_poll_add, \
862 netdev_vport_poll_remove,
865 netdev_vport_register(void)
867 static const struct vport_class vport_classes[] = {
868 { { "gre", VPORT_FUNCTIONS(netdev_vport_get_status) },
869 parse_tunnel_config },
870 { { "ipsec_gre", VPORT_FUNCTIONS(netdev_vport_get_status) },
871 parse_tunnel_config },
872 { { "capwap", VPORT_FUNCTIONS(netdev_vport_get_status) },
873 parse_tunnel_config },
874 { { "patch", VPORT_FUNCTIONS(NULL) }, parse_patch_config }
879 for (i = 0; i < ARRAY_SIZE(vport_classes); i++) {
880 netdev_register_provider(&vport_classes[i].netdev_class);