vxlan: Update netdev_vport_get_dpif_port() to support VXLAN port names
[sliver-openvswitch.git] / lib / netdev-vport.c
1 /*
2  * Copyright (c) 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 "netdev-vport.h"
20
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <sys/socket.h>
24 #include <net/if.h>
25 #include <sys/ioctl.h>
26
27 #include "byte-order.h"
28 #include "daemon.h"
29 #include "dirs.h"
30 #include "dpif.h"
31 #include "hash.h"
32 #include "hmap.h"
33 #include "list.h"
34 #include "netdev-provider.h"
35 #include "ofpbuf.h"
36 #include "packets.h"
37 #include "route-table.h"
38 #include "shash.h"
39 #include "socket-util.h"
40 #include "vlog.h"
41
42 VLOG_DEFINE_THIS_MODULE(netdev_vport);
43
44 /* Default to the OTV port, per the VXLAN IETF draft. */
45 #define VXLAN_DST_PORT 8472
46
47 #define DEFAULT_TTL 64
48
49 struct netdev_dev_vport {
50     struct netdev_dev netdev_dev;
51     unsigned int change_seq;
52     uint8_t etheraddr[ETH_ADDR_LEN];
53     struct netdev_stats stats;
54
55     /* Tunnels. */
56     struct netdev_tunnel_config tnl_cfg;
57
58     /* Patch Ports. */
59     char *peer;
60 };
61
62 struct vport_class {
63     const char *dpif_port;
64     struct netdev_class netdev_class;
65 };
66
67 static int netdev_vport_create(const struct netdev_class *, const char *,
68                                struct netdev_dev **);
69 static int get_patch_config(struct netdev_dev *, struct smap *args);
70 static int get_tunnel_config(struct netdev_dev *, struct smap *args);
71 static void netdev_vport_poll_notify(struct netdev_dev_vport *);
72
73 static bool
74 is_vport_class(const struct netdev_class *class)
75 {
76     return class->create == netdev_vport_create;
77 }
78
79 static const struct vport_class *
80 vport_class_cast(const struct netdev_class *class)
81 {
82     ovs_assert(is_vport_class(class));
83     return CONTAINER_OF(class, struct vport_class, netdev_class);
84 }
85
86 static struct netdev_dev_vport *
87 netdev_dev_vport_cast(const struct netdev_dev *netdev_dev)
88 {
89     ovs_assert(is_vport_class(netdev_dev_get_class(netdev_dev)));
90     return CONTAINER_OF(netdev_dev, struct netdev_dev_vport, netdev_dev);
91 }
92
93 static struct netdev_dev_vport *
94 netdev_vport_get_dev(const struct netdev *netdev)
95 {
96     return netdev_dev_vport_cast(netdev_get_dev(netdev));
97 }
98
99 static const struct netdev_tunnel_config *
100 get_netdev_tunnel_config(const struct netdev_dev *netdev_dev)
101 {
102     return &netdev_dev_vport_cast(netdev_dev)->tnl_cfg;
103 }
104
105 bool
106 netdev_vport_is_patch(const struct netdev *netdev)
107 {
108     const struct netdev_dev *dev = netdev_get_dev(netdev);
109     const struct netdev_class *class = netdev_dev_get_class(dev);
110
111     return class->get_config == get_patch_config;
112 }
113
114 static bool
115 netdev_vport_is_vxlan(const struct netdev *netdev)
116 {
117     const struct netdev_dev *dev = netdev_get_dev(netdev);
118     const struct netdev_class *class = netdev_dev_get_class(dev);
119     const char *type = netdev_dev_get_type(dev);
120
121     return (class->get_config == get_tunnel_config
122             && !strcmp("vxlan", type));
123 }
124
125 const char *
126 netdev_vport_get_dpif_port(const struct netdev *netdev)
127 {
128     const struct netdev_dev *dev = netdev_get_dev(netdev);
129     const struct netdev_class *class = netdev_dev_get_class(dev);
130     const char *dpif_port;
131
132     if (netdev_vport_is_vxlan(netdev)) {
133         const struct netdev_dev_vport *vport = netdev_vport_get_dev(netdev);
134         const char *type = netdev_dev_get_type(dev);
135         static char dpif_port_vxlan[IFNAMSIZ];
136
137         /*
138          * Note: IFNAMSIZ is 16 bytes long. The maximum length of a VXLAN
139          * port name below is 15 bytes. Still, assert here on the size of
140          * strlen(type) in case that changes in the future.
141          */
142         ovs_assert(strlen(type) + 10 < IFNAMSIZ);
143         snprintf(dpif_port_vxlan, IFNAMSIZ, "%s_sys_%d", type,
144                  ntohs(vport->tnl_cfg.dst_port));
145         return dpif_port_vxlan;
146     } else {
147         dpif_port = (is_vport_class(class)
148                      ? vport_class_cast(class)->dpif_port
149                      : NULL);
150     }
151
152     return dpif_port ? dpif_port : netdev_get_name(netdev);
153 }
154
155 static int
156 netdev_vport_create(const struct netdev_class *netdev_class, const char *name,
157                     struct netdev_dev **netdev_devp)
158 {
159     struct netdev_dev_vport *dev;
160
161     dev = xzalloc(sizeof *dev);
162     netdev_dev_init(&dev->netdev_dev, name, netdev_class);
163     dev->change_seq = 1;
164     eth_addr_random(dev->etheraddr);
165
166     *netdev_devp = &dev->netdev_dev;
167     route_table_register();
168
169     return 0;
170 }
171
172 static void
173 netdev_vport_destroy(struct netdev_dev *netdev_dev_)
174 {
175     struct netdev_dev_vport *netdev_dev = netdev_dev_vport_cast(netdev_dev_);
176
177     route_table_unregister();
178     free(netdev_dev->peer);
179     free(netdev_dev);
180 }
181
182 static int
183 netdev_vport_open(struct netdev_dev *netdev_dev, struct netdev **netdevp)
184 {
185     *netdevp = xmalloc(sizeof **netdevp);
186     netdev_init(*netdevp, netdev_dev);
187     return 0;
188 }
189
190 static void
191 netdev_vport_close(struct netdev *netdev)
192 {
193     free(netdev);
194 }
195
196 static int
197 netdev_vport_set_etheraddr(struct netdev *netdev,
198                            const uint8_t mac[ETH_ADDR_LEN])
199 {
200     struct netdev_dev_vport *dev = netdev_vport_get_dev(netdev);
201     memcpy(dev->etheraddr, mac, ETH_ADDR_LEN);
202     netdev_vport_poll_notify(dev);
203     return 0;
204 }
205
206 static int
207 netdev_vport_get_etheraddr(const struct netdev *netdev,
208                            uint8_t mac[ETH_ADDR_LEN])
209 {
210     memcpy(mac, netdev_vport_get_dev(netdev)->etheraddr, ETH_ADDR_LEN);
211     return 0;
212 }
213
214 static int
215 tunnel_get_status(const struct netdev *netdev, struct smap *smap)
216 {
217     static char iface[IFNAMSIZ];
218     ovs_be32 route;
219
220     route = netdev_vport_get_dev(netdev)->tnl_cfg.ip_dst;
221     if (route_table_get_name(route, iface)) {
222         struct netdev *egress_netdev;
223
224         smap_add(smap, "tunnel_egress_iface", iface);
225
226         if (!netdev_open(iface, "system", &egress_netdev)) {
227             smap_add(smap, "tunnel_egress_iface_carrier",
228                      netdev_get_carrier(egress_netdev) ? "up" : "down");
229             netdev_close(egress_netdev);
230         }
231     }
232
233     return 0;
234 }
235
236 static int
237 netdev_vport_update_flags(struct netdev *netdev OVS_UNUSED,
238                         enum netdev_flags off, enum netdev_flags on OVS_UNUSED,
239                         enum netdev_flags *old_flagsp)
240 {
241     if (off & (NETDEV_UP | NETDEV_PROMISC)) {
242         return EOPNOTSUPP;
243     }
244
245     *old_flagsp = NETDEV_UP | NETDEV_PROMISC;
246     return 0;
247 }
248
249 static unsigned int
250 netdev_vport_change_seq(const struct netdev *netdev)
251 {
252     return netdev_vport_get_dev(netdev)->change_seq;
253 }
254
255 static void
256 netdev_vport_run(void)
257 {
258     route_table_run();
259 }
260
261 static void
262 netdev_vport_wait(void)
263 {
264     route_table_wait();
265 }
266 \f
267 /* Helper functions. */
268
269 static void
270 netdev_vport_poll_notify(struct netdev_dev_vport *ndv)
271 {
272     ndv->change_seq++;
273     if (!ndv->change_seq) {
274         ndv->change_seq++;
275     }
276 }
277 \f
278 /* Code specific to tunnel types. */
279
280 static ovs_be64
281 parse_key(const struct smap *args, const char *name,
282           bool *present, bool *flow)
283 {
284     const char *s;
285
286     *present = false;
287     *flow = false;
288
289     s = smap_get(args, name);
290     if (!s) {
291         s = smap_get(args, "key");
292         if (!s) {
293             return 0;
294         }
295     }
296
297     *present = true;
298
299     if (!strcmp(s, "flow")) {
300         *flow = true;
301         return 0;
302     } else {
303         return htonll(strtoull(s, NULL, 0));
304     }
305 }
306
307 static int
308 set_tunnel_config(struct netdev_dev *dev_, const struct smap *args)
309 {
310     struct netdev_dev_vport *dev = netdev_dev_vport_cast(dev_);
311     const char *name = netdev_dev_get_name(dev_);
312     const char *type = netdev_dev_get_type(dev_);
313     bool ipsec_mech_set, needs_dst_port, has_csum;
314     struct netdev_tunnel_config tnl_cfg;
315     struct smap_node *node;
316
317     has_csum = strstr(type, "gre");
318     ipsec_mech_set = false;
319     memset(&tnl_cfg, 0, sizeof tnl_cfg);
320
321     if (!strcmp(type, "capwap")) {
322         VLOG_WARN_ONCE("CAPWAP tunnel support is deprecated.");
323     }
324
325     needs_dst_port = !strcmp(type, "vxlan");
326     tnl_cfg.ipsec = strstr(type, "ipsec");
327     tnl_cfg.dont_fragment = true;
328
329     SMAP_FOR_EACH (node, args) {
330         if (!strcmp(node->key, "remote_ip")) {
331             struct in_addr in_addr;
332             if (lookup_ip(node->value, &in_addr)) {
333                 VLOG_WARN("%s: bad %s 'remote_ip'", name, type);
334             } else {
335                 tnl_cfg.ip_dst = in_addr.s_addr;
336             }
337         } else if (!strcmp(node->key, "local_ip")) {
338             struct in_addr in_addr;
339             if (lookup_ip(node->value, &in_addr)) {
340                 VLOG_WARN("%s: bad %s 'local_ip'", name, type);
341             } else {
342                 tnl_cfg.ip_src = in_addr.s_addr;
343             }
344         } else if (!strcmp(node->key, "tos")) {
345             if (!strcmp(node->value, "inherit")) {
346                 tnl_cfg.tos_inherit = true;
347             } else {
348                 char *endptr;
349                 int tos;
350                 tos = strtol(node->value, &endptr, 0);
351                 if (*endptr == '\0' && tos == (tos & IP_DSCP_MASK)) {
352                     tnl_cfg.tos = tos;
353                 } else {
354                     VLOG_WARN("%s: invalid TOS %s", name, node->value);
355                 }
356             }
357         } else if (!strcmp(node->key, "ttl")) {
358             if (!strcmp(node->value, "inherit")) {
359                 tnl_cfg.ttl_inherit = true;
360             } else {
361                 tnl_cfg.ttl = atoi(node->value);
362             }
363         } else if (!strcmp(node->key, "dst_port") && needs_dst_port) {
364             tnl_cfg.dst_port = htons(atoi(node->value));
365         } else if (!strcmp(node->key, "csum") && has_csum) {
366             if (!strcmp(node->value, "true")) {
367                 tnl_cfg.csum = true;
368             }
369         } else if (!strcmp(node->key, "df_default")) {
370             if (!strcmp(node->value, "false")) {
371                 tnl_cfg.dont_fragment = false;
372             }
373         } else if (!strcmp(node->key, "peer_cert") && tnl_cfg.ipsec) {
374             if (smap_get(args, "certificate")) {
375                 ipsec_mech_set = true;
376             } else {
377                 const char *use_ssl_cert;
378
379                 /* If the "use_ssl_cert" is true, then "certificate" and
380                  * "private_key" will be pulled from the SSL table.  The
381                  * use of this option is strongly discouraged, since it
382                  * will like be removed when multiple SSL configurations
383                  * are supported by OVS.
384                  */
385                 use_ssl_cert = smap_get(args, "use_ssl_cert");
386                 if (!use_ssl_cert || strcmp(use_ssl_cert, "true")) {
387                     VLOG_ERR("%s: 'peer_cert' requires 'certificate' argument",
388                              name);
389                     return EINVAL;
390                 }
391                 ipsec_mech_set = true;
392             }
393         } else if (!strcmp(node->key, "psk") && tnl_cfg.ipsec) {
394             ipsec_mech_set = true;
395         } else if (tnl_cfg.ipsec
396                 && (!strcmp(node->key, "certificate")
397                     || !strcmp(node->key, "private_key")
398                     || !strcmp(node->key, "use_ssl_cert"))) {
399             /* Ignore options not used by the netdev. */
400         } else if (!strcmp(node->key, "key") ||
401                    !strcmp(node->key, "in_key") ||
402                    !strcmp(node->key, "out_key")) {
403             /* Handled separately below. */
404         } else {
405             VLOG_WARN("%s: unknown %s argument '%s'", name, type, node->key);
406         }
407     }
408
409     /* Add a default destination port for VXLAN if none specified. */
410     if (needs_dst_port && !tnl_cfg.dst_port) {
411         tnl_cfg.dst_port = htons(VXLAN_DST_PORT);
412     }
413
414     if (tnl_cfg.ipsec) {
415         static pid_t pid = 0;
416         if (pid <= 0) {
417             char *file_name = xasprintf("%s/%s", ovs_rundir(),
418                                         "ovs-monitor-ipsec.pid");
419             pid = read_pidfile(file_name);
420             free(file_name);
421         }
422
423         if (pid < 0) {
424             VLOG_ERR("%s: IPsec requires the ovs-monitor-ipsec daemon",
425                      name);
426             return EINVAL;
427         }
428
429         if (smap_get(args, "peer_cert") && smap_get(args, "psk")) {
430             VLOG_ERR("%s: cannot define both 'peer_cert' and 'psk'", name);
431             return EINVAL;
432         }
433
434         if (!ipsec_mech_set) {
435             VLOG_ERR("%s: IPsec requires an 'peer_cert' or psk' argument",
436                      name);
437             return EINVAL;
438         }
439     }
440
441     if (!tnl_cfg.ip_dst) {
442         VLOG_ERR("%s: %s type requires valid 'remote_ip' argument",
443                  name, type);
444         return EINVAL;
445     }
446
447     if (tnl_cfg.ip_src) {
448         if (ip_is_multicast(tnl_cfg.ip_dst)) {
449             VLOG_WARN("%s: remote_ip is multicast, ignoring local_ip", name);
450             tnl_cfg.ip_src = 0;
451         }
452     }
453
454     if (!tnl_cfg.ttl) {
455         tnl_cfg.ttl = DEFAULT_TTL;
456     }
457
458     tnl_cfg.in_key = parse_key(args, "in_key",
459                                &tnl_cfg.in_key_present,
460                                &tnl_cfg.in_key_flow);
461
462     tnl_cfg.out_key = parse_key(args, "out_key",
463                                &tnl_cfg.out_key_present,
464                                &tnl_cfg.out_key_flow);
465
466     dev->tnl_cfg = tnl_cfg;
467     netdev_vport_poll_notify(dev);
468
469     return 0;
470 }
471
472 static int
473 get_tunnel_config(struct netdev_dev *dev, struct smap *args)
474 {
475     const struct netdev_tunnel_config *tnl_cfg =
476         &netdev_dev_vport_cast(dev)->tnl_cfg;
477
478     if (tnl_cfg->ip_dst) {
479         smap_add_format(args, "remote_ip", IP_FMT, IP_ARGS(tnl_cfg->ip_dst));
480     }
481
482     if (tnl_cfg->ip_src) {
483         smap_add_format(args, "local_ip", IP_FMT, IP_ARGS(tnl_cfg->ip_src));
484     }
485
486     if (tnl_cfg->in_key_flow && tnl_cfg->out_key_flow) {
487         smap_add(args, "key", "flow");
488     } else if (tnl_cfg->in_key_present && tnl_cfg->out_key_present
489                && tnl_cfg->in_key == tnl_cfg->out_key) {
490         smap_add_format(args, "key", "%"PRIu64, ntohll(tnl_cfg->in_key));
491     } else {
492         if (tnl_cfg->in_key_flow) {
493             smap_add(args, "in_key", "flow");
494         } else if (tnl_cfg->in_key_present) {
495             smap_add_format(args, "in_key", "%"PRIu64,
496                             ntohll(tnl_cfg->in_key));
497         }
498
499         if (tnl_cfg->out_key_flow) {
500             smap_add(args, "out_key", "flow");
501         } else if (tnl_cfg->out_key_present) {
502             smap_add_format(args, "out_key", "%"PRIu64,
503                             ntohll(tnl_cfg->out_key));
504         }
505     }
506
507     if (tnl_cfg->ttl_inherit) {
508         smap_add(args, "ttl", "inherit");
509     } else if (tnl_cfg->ttl != DEFAULT_TTL) {
510         smap_add_format(args, "ttl", "%"PRIu8, tnl_cfg->ttl);
511     }
512
513     if (tnl_cfg->tos_inherit) {
514         smap_add(args, "tos", "inherit");
515     } else if (tnl_cfg->tos) {
516         smap_add_format(args, "tos", "0x%x", tnl_cfg->tos);
517     }
518
519     if (tnl_cfg->dst_port) {
520         uint16_t dst_port = ntohs(tnl_cfg->dst_port);
521         if (dst_port != VXLAN_DST_PORT) {
522             smap_add_format(args, "dst_port", "%d", dst_port);
523         }
524     }
525
526     if (tnl_cfg->csum) {
527         smap_add(args, "csum", "true");
528     }
529
530     if (!tnl_cfg->dont_fragment) {
531         smap_add(args, "df_default", "false");
532     }
533
534     return 0;
535 }
536 \f
537 /* Code specific to patch ports. */
538
539 const char *
540 netdev_vport_patch_peer(const struct netdev *netdev)
541 {
542     return netdev_vport_is_patch(netdev)
543         ? netdev_vport_get_dev(netdev)->peer
544         : NULL;
545 }
546
547 void
548 netdev_vport_inc_rx(const struct netdev *netdev,
549                           const struct dpif_flow_stats *stats)
550 {
551     if (is_vport_class(netdev_dev_get_class(netdev_get_dev(netdev)))) {
552         struct netdev_dev_vport *dev = netdev_vport_get_dev(netdev);
553         dev->stats.rx_packets += stats->n_packets;
554         dev->stats.rx_bytes += stats->n_bytes;
555     }
556 }
557
558 void
559 netdev_vport_inc_tx(const struct netdev *netdev,
560                     const struct dpif_flow_stats *stats)
561 {
562     if (is_vport_class(netdev_dev_get_class(netdev_get_dev(netdev)))) {
563         struct netdev_dev_vport *dev = netdev_vport_get_dev(netdev);
564         dev->stats.tx_packets += stats->n_packets;
565         dev->stats.tx_bytes += stats->n_bytes;
566     }
567 }
568
569 static int
570 get_patch_config(struct netdev_dev *dev_, struct smap *args)
571 {
572     struct netdev_dev_vport *dev = netdev_dev_vport_cast(dev_);
573
574     if (dev->peer) {
575         smap_add(args, "peer", dev->peer);
576     }
577     return 0;
578 }
579
580 static int
581 set_patch_config(struct netdev_dev *dev_, const struct smap *args)
582 {
583     struct netdev_dev_vport *dev = netdev_dev_vport_cast(dev_);
584     const char *name = netdev_dev_get_name(dev_);
585     const char *peer;
586
587     peer = smap_get(args, "peer");
588     if (!peer) {
589         VLOG_ERR("%s: patch type requires valid 'peer' argument", name);
590         return EINVAL;
591     }
592
593     if (smap_count(args) > 1) {
594         VLOG_ERR("%s: patch type takes only a 'peer' argument", name);
595         return EINVAL;
596     }
597
598     if (!strcmp(name, peer)) {
599         VLOG_ERR("%s: patch peer must not be self", name);
600         return EINVAL;
601     }
602
603     free(dev->peer);
604     dev->peer = xstrdup(peer);
605
606     return 0;
607 }
608
609 static int
610 get_stats(const struct netdev *netdev, struct netdev_stats *stats)
611 {
612     struct netdev_dev_vport *dev = netdev_vport_get_dev(netdev);
613     memcpy(stats, &dev->stats, sizeof *stats);
614     return 0;
615 }
616 \f
617 #define VPORT_FUNCTIONS(GET_CONFIG, SET_CONFIG,             \
618                         GET_TUNNEL_CONFIG, GET_STATUS)      \
619     NULL,                                                   \
620     netdev_vport_run,                                       \
621     netdev_vport_wait,                                      \
622                                                             \
623     netdev_vport_create,                                    \
624     netdev_vport_destroy,                                   \
625     GET_CONFIG,                                             \
626     SET_CONFIG,                                             \
627     GET_TUNNEL_CONFIG,                                      \
628                                                             \
629     netdev_vport_open,                                      \
630     netdev_vport_close,                                     \
631                                                             \
632     NULL,                       /* listen */                \
633     NULL,                       /* recv */                  \
634     NULL,                       /* recv_wait */             \
635     NULL,                       /* drain */                 \
636                                                             \
637     NULL,                       /* send */                  \
638     NULL,                       /* send_wait */             \
639                                                             \
640     netdev_vport_set_etheraddr,                             \
641     netdev_vport_get_etheraddr,                             \
642     NULL,                       /* get_mtu */               \
643     NULL,                       /* set_mtu */               \
644     NULL,                       /* get_ifindex */           \
645     NULL,                       /* get_carrier */           \
646     NULL,                       /* get_carrier_resets */    \
647     NULL,                       /* get_miimon */            \
648     get_stats,                                              \
649     NULL,                       /* set_stats */             \
650                                                             \
651     NULL,                       /* get_features */          \
652     NULL,                       /* set_advertisements */    \
653                                                             \
654     NULL,                       /* set_policing */          \
655     NULL,                       /* get_qos_types */         \
656     NULL,                       /* get_qos_capabilities */  \
657     NULL,                       /* get_qos */               \
658     NULL,                       /* set_qos */               \
659     NULL,                       /* get_queue */             \
660     NULL,                       /* set_queue */             \
661     NULL,                       /* delete_queue */          \
662     NULL,                       /* get_queue_stats */       \
663     NULL,                       /* dump_queues */           \
664     NULL,                       /* dump_queue_stats */      \
665                                                             \
666     NULL,                       /* get_in4 */               \
667     NULL,                       /* set_in4 */               \
668     NULL,                       /* get_in6 */               \
669     NULL,                       /* add_router */            \
670     NULL,                       /* get_next_hop */          \
671     GET_STATUS,                                             \
672     NULL,                       /* arp_lookup */            \
673                                                             \
674     netdev_vport_update_flags,                              \
675                                                             \
676     netdev_vport_change_seq
677
678 #define TUNNEL_CLASS(NAME, DPIF_PORT)                       \
679     { DPIF_PORT,                                            \
680         { NAME, VPORT_FUNCTIONS(get_tunnel_config,          \
681                                 set_tunnel_config,          \
682                                 get_netdev_tunnel_config,   \
683                                 tunnel_get_status) }}
684
685 void
686 netdev_vport_tunnel_register(void)
687 {
688     static const struct vport_class vport_classes[] = {
689         TUNNEL_CLASS("gre", "gre_system"),
690         TUNNEL_CLASS("ipsec_gre", "gre_system"),
691         TUNNEL_CLASS("gre64", "gre64_system"),
692         TUNNEL_CLASS("ipsec_gre64", "gre64_system"),
693         TUNNEL_CLASS("capwap", "capwap_system"),
694         TUNNEL_CLASS("vxlan", "vxlan_system")
695     };
696
697     int i;
698
699     for (i = 0; i < ARRAY_SIZE(vport_classes); i++) {
700         netdev_register_provider(&vport_classes[i].netdev_class);
701     }
702 }
703
704 void
705 netdev_vport_patch_register(void)
706 {
707     static const struct vport_class patch_class =
708         { NULL,
709             { "patch", VPORT_FUNCTIONS(get_patch_config,
710                                        set_patch_config,
711                                        NULL,
712                                        NULL) }};
713     netdev_register_provider(&patch_class.netdev_class);
714 }