netdev-vport: Do not update netdev when there is no config change.
[cascardo/ovs.git] / lib / netdev-vport.c
1 /*
2  * Copyright (c) 2010, 2011, 2012, 2013, 2014 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 "poll-loop.h"
38 #include "route-table.h"
39 #include "shash.h"
40 #include "socket-util.h"
41 #include "vlog.h"
42
43 VLOG_DEFINE_THIS_MODULE(netdev_vport);
44
45 #define VXLAN_DST_PORT 4789
46 #define LISP_DST_PORT 4341
47
48 #define DEFAULT_TTL 64
49
50 struct netdev_vport {
51     struct netdev up;
52
53     /* Protects all members below. */
54     struct ovs_mutex mutex;
55
56     uint8_t etheraddr[ETH_ADDR_LEN];
57     struct netdev_stats stats;
58
59     /* Tunnels. */
60     struct netdev_tunnel_config tnl_cfg;
61     char egress_iface[IFNAMSIZ];
62     bool carrier_status;
63
64     /* Patch Ports. */
65     char *peer;
66 };
67
68 struct vport_class {
69     const char *dpif_port;
70     struct netdev_class netdev_class;
71 };
72
73 /* Last read of the route-table's change number. */
74 static uint64_t rt_change_seqno;
75
76 static int netdev_vport_construct(struct netdev *);
77 static int get_patch_config(const struct netdev *netdev, struct smap *args);
78 static int get_tunnel_config(const struct netdev *, struct smap *args);
79 static bool tunnel_check_status_change__(struct netdev_vport *);
80
81 static bool
82 is_vport_class(const struct netdev_class *class)
83 {
84     return class->construct == netdev_vport_construct;
85 }
86
87 bool
88 netdev_vport_is_vport_class(const struct netdev_class *class)
89 {
90     return is_vport_class(class);
91 }
92
93 static const struct vport_class *
94 vport_class_cast(const struct netdev_class *class)
95 {
96     ovs_assert(is_vport_class(class));
97     return CONTAINER_OF(class, struct vport_class, netdev_class);
98 }
99
100 static struct netdev_vport *
101 netdev_vport_cast(const struct netdev *netdev)
102 {
103     ovs_assert(is_vport_class(netdev_get_class(netdev)));
104     return CONTAINER_OF(netdev, struct netdev_vport, up);
105 }
106
107 static const struct netdev_tunnel_config *
108 get_netdev_tunnel_config(const struct netdev *netdev)
109 {
110     return &netdev_vport_cast(netdev)->tnl_cfg;
111 }
112
113 bool
114 netdev_vport_is_patch(const struct netdev *netdev)
115 {
116     const struct netdev_class *class = netdev_get_class(netdev);
117
118     return class->get_config == get_patch_config;
119 }
120
121 bool
122 netdev_vport_is_layer3(const struct netdev *dev)
123 {
124     const char *type = netdev_get_type(dev);
125
126     return (!strcmp("lisp", type));
127 }
128
129 static bool
130 netdev_vport_needs_dst_port(const struct netdev *dev)
131 {
132     const struct netdev_class *class = netdev_get_class(dev);
133     const char *type = netdev_get_type(dev);
134
135     return (class->get_config == get_tunnel_config &&
136             (!strcmp("vxlan", type) || !strcmp("lisp", type)));
137 }
138
139 const char *
140 netdev_vport_class_get_dpif_port(const struct netdev_class *class)
141 {
142     return is_vport_class(class) ? vport_class_cast(class)->dpif_port : NULL;
143 }
144
145 const char *
146 netdev_vport_get_dpif_port(const struct netdev *netdev,
147                            char namebuf[], size_t bufsize)
148 {
149     if (netdev_vport_needs_dst_port(netdev)) {
150         const struct netdev_vport *vport = netdev_vport_cast(netdev);
151         const char *type = netdev_get_type(netdev);
152
153         /*
154          * Note: IFNAMSIZ is 16 bytes long. The maximum length of a VXLAN
155          * or LISP port name below is 15 or 14 bytes respectively. Still,
156          * assert here on the size of strlen(type) in case that changes
157          * in the future.
158          */
159         BUILD_ASSERT(NETDEV_VPORT_NAME_BUFSIZE >= IFNAMSIZ);
160         ovs_assert(strlen(type) + 10 < IFNAMSIZ);
161         snprintf(namebuf, bufsize, "%s_sys_%d", type,
162                  ntohs(vport->tnl_cfg.dst_port));
163         return namebuf;
164     } else {
165         const struct netdev_class *class = netdev_get_class(netdev);
166         const char *dpif_port = netdev_vport_class_get_dpif_port(class);
167         return dpif_port ? dpif_port : netdev_get_name(netdev);
168     }
169 }
170
171 char *
172 netdev_vport_get_dpif_port_strdup(const struct netdev *netdev)
173 {
174     char namebuf[NETDEV_VPORT_NAME_BUFSIZE];
175
176     return xstrdup(netdev_vport_get_dpif_port(netdev, namebuf,
177                                               sizeof namebuf));
178 }
179
180 /* Whenever the route-table change number is incremented,
181  * netdev_vport_route_changed() should be called to update
182  * the corresponding tunnel interface status. */
183 static void
184 netdev_vport_route_changed(void)
185 {
186     struct netdev **vports;
187     size_t i, n_vports;
188
189     vports = netdev_get_vports(&n_vports);
190     for (i = 0; i < n_vports; i++) {
191         struct netdev *netdev_ = vports[i];
192         struct netdev_vport *netdev = netdev_vport_cast(netdev_);
193
194         ovs_mutex_lock(&netdev->mutex);
195         /* Finds all tunnel vports. */
196         if (netdev->tnl_cfg.ip_dst) {
197             if (tunnel_check_status_change__(netdev)) {
198                 netdev_change_seq_changed(netdev_);
199             }
200         }
201         ovs_mutex_unlock(&netdev->mutex);
202
203         netdev_close(netdev_);
204     }
205
206     free(vports);
207 }
208
209 static struct netdev *
210 netdev_vport_alloc(void)
211 {
212     struct netdev_vport *netdev = xzalloc(sizeof *netdev);
213     return &netdev->up;
214 }
215
216 static int
217 netdev_vport_construct(struct netdev *netdev_)
218 {
219     struct netdev_vport *netdev = netdev_vport_cast(netdev_);
220
221     ovs_mutex_init(&netdev->mutex);
222     eth_addr_random(netdev->etheraddr);
223
224     route_table_register();
225
226     return 0;
227 }
228
229 static void
230 netdev_vport_destruct(struct netdev *netdev_)
231 {
232     struct netdev_vport *netdev = netdev_vport_cast(netdev_);
233
234     route_table_unregister();
235     free(netdev->peer);
236     ovs_mutex_destroy(&netdev->mutex);
237 }
238
239 static void
240 netdev_vport_dealloc(struct netdev *netdev_)
241 {
242     struct netdev_vport *netdev = netdev_vport_cast(netdev_);
243     free(netdev);
244 }
245
246 static int
247 netdev_vport_set_etheraddr(struct netdev *netdev_,
248                            const uint8_t mac[ETH_ADDR_LEN])
249 {
250     struct netdev_vport *netdev = netdev_vport_cast(netdev_);
251
252     ovs_mutex_lock(&netdev->mutex);
253     memcpy(netdev->etheraddr, mac, ETH_ADDR_LEN);
254     ovs_mutex_unlock(&netdev->mutex);
255     netdev_change_seq_changed(netdev_);
256
257     return 0;
258 }
259
260 static int
261 netdev_vport_get_etheraddr(const struct netdev *netdev_,
262                            uint8_t mac[ETH_ADDR_LEN])
263 {
264     struct netdev_vport *netdev = netdev_vport_cast(netdev_);
265
266     ovs_mutex_lock(&netdev->mutex);
267     memcpy(mac, netdev->etheraddr, ETH_ADDR_LEN);
268     ovs_mutex_unlock(&netdev->mutex);
269
270     return 0;
271 }
272
273 /* Checks if the tunnel status has changed and returns a boolean.
274  * Updates the tunnel status if it has changed. */
275 static bool
276 tunnel_check_status_change__(struct netdev_vport *netdev)
277     OVS_REQUIRES(netdev->mutex)
278 {
279     char iface[IFNAMSIZ];
280     bool status = false;
281     ovs_be32 route;
282
283     iface[0] = '\0';
284     route = netdev->tnl_cfg.ip_dst;
285     if (route_table_get_name(route, iface)) {
286         struct netdev *egress_netdev;
287
288         if (!netdev_open(iface, "system", &egress_netdev)) {
289             status = netdev_get_carrier(egress_netdev);
290             netdev_close(egress_netdev);
291         }
292     }
293
294     if (strcmp(netdev->egress_iface, iface)
295         || netdev->carrier_status != status) {
296         ovs_strlcpy(netdev->egress_iface, iface, IFNAMSIZ);
297         netdev->carrier_status = status;
298
299         return true;
300     }
301
302     return false;
303 }
304
305 static int
306 tunnel_get_status(const struct netdev *netdev_, struct smap *smap)
307 {
308     struct netdev_vport *netdev = netdev_vport_cast(netdev_);
309
310     if (netdev->egress_iface[0]) {
311         smap_add(smap, "tunnel_egress_iface", netdev->egress_iface);
312
313         smap_add(smap, "tunnel_egress_iface_carrier",
314                  netdev->carrier_status ? "up" : "down");
315     }
316
317     return 0;
318 }
319
320 static int
321 netdev_vport_update_flags(struct netdev *netdev OVS_UNUSED,
322                           enum netdev_flags off,
323                           enum netdev_flags on OVS_UNUSED,
324                           enum netdev_flags *old_flagsp)
325 {
326     if (off & (NETDEV_UP | NETDEV_PROMISC)) {
327         return EOPNOTSUPP;
328     }
329
330     *old_flagsp = NETDEV_UP | NETDEV_PROMISC;
331     return 0;
332 }
333
334 static void
335 netdev_vport_run(void)
336 {
337     uint64_t seq;
338
339     route_table_run();
340     seq = route_table_get_change_seq();
341     if (rt_change_seqno != seq) {
342         rt_change_seqno = seq;
343         netdev_vport_route_changed();
344     }
345 }
346
347 static void
348 netdev_vport_wait(void)
349 {
350     uint64_t seq;
351
352     route_table_wait();
353     seq = route_table_get_change_seq();
354     if (rt_change_seqno != seq) {
355         poll_immediate_wake();
356     }
357 }
358 \f
359 /* Code specific to tunnel types. */
360
361 static ovs_be64
362 parse_key(const struct smap *args, const char *name,
363           bool *present, bool *flow)
364 {
365     const char *s;
366
367     *present = false;
368     *flow = false;
369
370     s = smap_get(args, name);
371     if (!s) {
372         s = smap_get(args, "key");
373         if (!s) {
374             return 0;
375         }
376     }
377
378     *present = true;
379
380     if (!strcmp(s, "flow")) {
381         *flow = true;
382         return 0;
383     } else {
384         return htonll(strtoull(s, NULL, 0));
385     }
386 }
387
388 static int
389 set_tunnel_config(struct netdev *dev_, const struct smap *args)
390 {
391     struct netdev_vport *dev = netdev_vport_cast(dev_);
392     const char *name = netdev_get_name(dev_);
393     const char *type = netdev_get_type(dev_);
394     bool ipsec_mech_set, needs_dst_port, has_csum;
395     struct netdev_tunnel_config tnl_cfg;
396     struct smap_node *node;
397
398     has_csum = strstr(type, "gre");
399     ipsec_mech_set = false;
400     memset(&tnl_cfg, 0, sizeof tnl_cfg);
401
402     needs_dst_port = netdev_vport_needs_dst_port(dev_);
403     tnl_cfg.ipsec = strstr(type, "ipsec");
404     tnl_cfg.dont_fragment = true;
405
406     SMAP_FOR_EACH (node, args) {
407         if (!strcmp(node->key, "remote_ip")) {
408             struct in_addr in_addr;
409             if (!strcmp(node->value, "flow")) {
410                 tnl_cfg.ip_dst_flow = true;
411                 tnl_cfg.ip_dst = htonl(0);
412             } else if (lookup_ip(node->value, &in_addr)) {
413                 VLOG_WARN("%s: bad %s 'remote_ip'", name, type);
414             } else if (ip_is_multicast(in_addr.s_addr)) {
415                 VLOG_WARN("%s: multicast remote_ip="IP_FMT" not allowed",
416                           name, IP_ARGS(in_addr.s_addr));
417                 return EINVAL;
418             } else {
419                 tnl_cfg.ip_dst = in_addr.s_addr;
420             }
421         } else if (!strcmp(node->key, "local_ip")) {
422             struct in_addr in_addr;
423             if (!strcmp(node->value, "flow")) {
424                 tnl_cfg.ip_src_flow = true;
425                 tnl_cfg.ip_src = htonl(0);
426             } else if (lookup_ip(node->value, &in_addr)) {
427                 VLOG_WARN("%s: bad %s 'local_ip'", name, type);
428             } else {
429                 tnl_cfg.ip_src = in_addr.s_addr;
430             }
431         } else if (!strcmp(node->key, "tos")) {
432             if (!strcmp(node->value, "inherit")) {
433                 tnl_cfg.tos_inherit = true;
434             } else {
435                 char *endptr;
436                 int tos;
437                 tos = strtol(node->value, &endptr, 0);
438                 if (*endptr == '\0' && tos == (tos & IP_DSCP_MASK)) {
439                     tnl_cfg.tos = tos;
440                 } else {
441                     VLOG_WARN("%s: invalid TOS %s", name, node->value);
442                 }
443             }
444         } else if (!strcmp(node->key, "ttl")) {
445             if (!strcmp(node->value, "inherit")) {
446                 tnl_cfg.ttl_inherit = true;
447             } else {
448                 tnl_cfg.ttl = atoi(node->value);
449             }
450         } else if (!strcmp(node->key, "dst_port") && needs_dst_port) {
451             tnl_cfg.dst_port = htons(atoi(node->value));
452         } else if (!strcmp(node->key, "csum") && has_csum) {
453             if (!strcmp(node->value, "true")) {
454                 tnl_cfg.csum = true;
455             }
456         } else if (!strcmp(node->key, "df_default")) {
457             if (!strcmp(node->value, "false")) {
458                 tnl_cfg.dont_fragment = false;
459             }
460         } else if (!strcmp(node->key, "peer_cert") && tnl_cfg.ipsec) {
461             if (smap_get(args, "certificate")) {
462                 ipsec_mech_set = true;
463             } else {
464                 const char *use_ssl_cert;
465
466                 /* If the "use_ssl_cert" is true, then "certificate" and
467                  * "private_key" will be pulled from the SSL table.  The
468                  * use of this option is strongly discouraged, since it
469                  * will like be removed when multiple SSL configurations
470                  * are supported by OVS.
471                  */
472                 use_ssl_cert = smap_get(args, "use_ssl_cert");
473                 if (!use_ssl_cert || strcmp(use_ssl_cert, "true")) {
474                     VLOG_ERR("%s: 'peer_cert' requires 'certificate' argument",
475                              name);
476                     return EINVAL;
477                 }
478                 ipsec_mech_set = true;
479             }
480         } else if (!strcmp(node->key, "psk") && tnl_cfg.ipsec) {
481             ipsec_mech_set = true;
482         } else if (tnl_cfg.ipsec
483                 && (!strcmp(node->key, "certificate")
484                     || !strcmp(node->key, "private_key")
485                     || !strcmp(node->key, "use_ssl_cert"))) {
486             /* Ignore options not used by the netdev. */
487         } else if (!strcmp(node->key, "key") ||
488                    !strcmp(node->key, "in_key") ||
489                    !strcmp(node->key, "out_key")) {
490             /* Handled separately below. */
491         } else {
492             VLOG_WARN("%s: unknown %s argument '%s'", name, type, node->key);
493         }
494     }
495
496     /* Add a default destination port for VXLAN if none specified. */
497     if (!strcmp(type, "vxlan") && !tnl_cfg.dst_port) {
498         tnl_cfg.dst_port = htons(VXLAN_DST_PORT);
499     }
500
501     /* Add a default destination port for LISP if none specified. */
502     if (!strcmp(type, "lisp") && !tnl_cfg.dst_port) {
503         tnl_cfg.dst_port = htons(LISP_DST_PORT);
504     }
505
506     if (tnl_cfg.ipsec) {
507         static struct ovs_mutex mutex = OVS_MUTEX_INITIALIZER;
508         static pid_t pid = 0;
509
510 #ifndef _WIN32
511         ovs_mutex_lock(&mutex);
512         if (pid <= 0) {
513             char *file_name = xasprintf("%s/%s", ovs_rundir(),
514                                         "ovs-monitor-ipsec.pid");
515             pid = read_pidfile(file_name);
516             free(file_name);
517         }
518         ovs_mutex_unlock(&mutex);
519 #endif
520
521         if (pid < 0) {
522             VLOG_ERR("%s: IPsec requires the ovs-monitor-ipsec daemon",
523                      name);
524             return EINVAL;
525         }
526
527         if (smap_get(args, "peer_cert") && smap_get(args, "psk")) {
528             VLOG_ERR("%s: cannot define both 'peer_cert' and 'psk'", name);
529             return EINVAL;
530         }
531
532         if (!ipsec_mech_set) {
533             VLOG_ERR("%s: IPsec requires an 'peer_cert' or psk' argument",
534                      name);
535             return EINVAL;
536         }
537     }
538
539     if (!tnl_cfg.ip_dst && !tnl_cfg.ip_dst_flow) {
540         VLOG_ERR("%s: %s type requires valid 'remote_ip' argument",
541                  name, type);
542         return EINVAL;
543     }
544     if (tnl_cfg.ip_src_flow && !tnl_cfg.ip_dst_flow) {
545         VLOG_ERR("%s: %s type requires 'remote_ip=flow' with 'local_ip=flow'",
546                  name, type);
547         return EINVAL;
548     }
549     if (!tnl_cfg.ttl) {
550         tnl_cfg.ttl = DEFAULT_TTL;
551     }
552
553     tnl_cfg.in_key = parse_key(args, "in_key",
554                                &tnl_cfg.in_key_present,
555                                &tnl_cfg.in_key_flow);
556
557     tnl_cfg.out_key = parse_key(args, "out_key",
558                                &tnl_cfg.out_key_present,
559                                &tnl_cfg.out_key_flow);
560
561     ovs_mutex_lock(&dev->mutex);
562     if (memcmp(&dev->tnl_cfg, &tnl_cfg, sizeof tnl_cfg)) {
563         dev->tnl_cfg = tnl_cfg;
564         tunnel_check_status_change__(dev);
565         netdev_change_seq_changed(dev_);
566     }
567     ovs_mutex_unlock(&dev->mutex);
568
569     return 0;
570 }
571
572 static int
573 get_tunnel_config(const struct netdev *dev, struct smap *args)
574 {
575     struct netdev_vport *netdev = netdev_vport_cast(dev);
576     struct netdev_tunnel_config tnl_cfg;
577
578     ovs_mutex_lock(&netdev->mutex);
579     tnl_cfg = netdev->tnl_cfg;
580     ovs_mutex_unlock(&netdev->mutex);
581
582     if (tnl_cfg.ip_dst) {
583         smap_add_format(args, "remote_ip", IP_FMT, IP_ARGS(tnl_cfg.ip_dst));
584     } else if (tnl_cfg.ip_dst_flow) {
585         smap_add(args, "remote_ip", "flow");
586     }
587
588     if (tnl_cfg.ip_src) {
589         smap_add_format(args, "local_ip", IP_FMT, IP_ARGS(tnl_cfg.ip_src));
590     } else if (tnl_cfg.ip_src_flow) {
591         smap_add(args, "local_ip", "flow");
592     }
593
594     if (tnl_cfg.in_key_flow && tnl_cfg.out_key_flow) {
595         smap_add(args, "key", "flow");
596     } else if (tnl_cfg.in_key_present && tnl_cfg.out_key_present
597                && tnl_cfg.in_key == tnl_cfg.out_key) {
598         smap_add_format(args, "key", "%"PRIu64, ntohll(tnl_cfg.in_key));
599     } else {
600         if (tnl_cfg.in_key_flow) {
601             smap_add(args, "in_key", "flow");
602         } else if (tnl_cfg.in_key_present) {
603             smap_add_format(args, "in_key", "%"PRIu64,
604                             ntohll(tnl_cfg.in_key));
605         }
606
607         if (tnl_cfg.out_key_flow) {
608             smap_add(args, "out_key", "flow");
609         } else if (tnl_cfg.out_key_present) {
610             smap_add_format(args, "out_key", "%"PRIu64,
611                             ntohll(tnl_cfg.out_key));
612         }
613     }
614
615     if (tnl_cfg.ttl_inherit) {
616         smap_add(args, "ttl", "inherit");
617     } else if (tnl_cfg.ttl != DEFAULT_TTL) {
618         smap_add_format(args, "ttl", "%"PRIu8, tnl_cfg.ttl);
619     }
620
621     if (tnl_cfg.tos_inherit) {
622         smap_add(args, "tos", "inherit");
623     } else if (tnl_cfg.tos) {
624         smap_add_format(args, "tos", "0x%x", tnl_cfg.tos);
625     }
626
627     if (tnl_cfg.dst_port) {
628         uint16_t dst_port = ntohs(tnl_cfg.dst_port);
629         const char *type = netdev_get_type(dev);
630
631         if ((!strcmp("vxlan", type) && dst_port != VXLAN_DST_PORT) ||
632             (!strcmp("lisp", type) && dst_port != LISP_DST_PORT)) {
633             smap_add_format(args, "dst_port", "%d", dst_port);
634         }
635     }
636
637     if (tnl_cfg.csum) {
638         smap_add(args, "csum", "true");
639     }
640
641     if (!tnl_cfg.dont_fragment) {
642         smap_add(args, "df_default", "false");
643     }
644
645     return 0;
646 }
647 \f
648 /* Code specific to patch ports. */
649
650 /* If 'netdev' is a patch port, returns the name of its peer as a malloc()'d
651  * string that the caller must free.
652  *
653  * If 'netdev' is not a patch port, returns NULL. */
654 char *
655 netdev_vport_patch_peer(const struct netdev *netdev_)
656 {
657     char *peer = NULL;
658
659     if (netdev_vport_is_patch(netdev_)) {
660         struct netdev_vport *netdev = netdev_vport_cast(netdev_);
661
662         ovs_mutex_lock(&netdev->mutex);
663         if (netdev->peer) {
664             peer = xstrdup(netdev->peer);
665         }
666         ovs_mutex_unlock(&netdev->mutex);
667     }
668
669     return peer;
670 }
671
672 void
673 netdev_vport_inc_rx(const struct netdev *netdev,
674                     const struct dpif_flow_stats *stats)
675 {
676     if (is_vport_class(netdev_get_class(netdev))) {
677         struct netdev_vport *dev = netdev_vport_cast(netdev);
678
679         ovs_mutex_lock(&dev->mutex);
680         dev->stats.rx_packets += stats->n_packets;
681         dev->stats.rx_bytes += stats->n_bytes;
682         ovs_mutex_unlock(&dev->mutex);
683     }
684 }
685
686 void
687 netdev_vport_inc_tx(const struct netdev *netdev,
688                     const struct dpif_flow_stats *stats)
689 {
690     if (is_vport_class(netdev_get_class(netdev))) {
691         struct netdev_vport *dev = netdev_vport_cast(netdev);
692
693         ovs_mutex_lock(&dev->mutex);
694         dev->stats.tx_packets += stats->n_packets;
695         dev->stats.tx_bytes += stats->n_bytes;
696         ovs_mutex_unlock(&dev->mutex);
697     }
698 }
699
700 static int
701 get_patch_config(const struct netdev *dev_, struct smap *args)
702 {
703     struct netdev_vport *dev = netdev_vport_cast(dev_);
704
705     ovs_mutex_lock(&dev->mutex);
706     if (dev->peer) {
707         smap_add(args, "peer", dev->peer);
708     }
709     ovs_mutex_unlock(&dev->mutex);
710
711     return 0;
712 }
713
714 static int
715 set_patch_config(struct netdev *dev_, const struct smap *args)
716 {
717     struct netdev_vport *dev = netdev_vport_cast(dev_);
718     const char *name = netdev_get_name(dev_);
719     const char *peer;
720
721     peer = smap_get(args, "peer");
722     if (!peer) {
723         VLOG_ERR("%s: patch type requires valid 'peer' argument", name);
724         return EINVAL;
725     }
726
727     if (smap_count(args) > 1) {
728         VLOG_ERR("%s: patch type takes only a 'peer' argument", name);
729         return EINVAL;
730     }
731
732     if (!strcmp(name, peer)) {
733         VLOG_ERR("%s: patch peer must not be self", name);
734         return EINVAL;
735     }
736
737     ovs_mutex_lock(&dev->mutex);
738     if (!dev->peer || strcmp(dev->peer, peer)) {
739         free(dev->peer);
740         dev->peer = xstrdup(peer);
741         netdev_change_seq_changed(dev_);
742     }
743     ovs_mutex_unlock(&dev->mutex);
744
745     return 0;
746 }
747
748 static int
749 get_stats(const struct netdev *netdev, struct netdev_stats *stats)
750 {
751     struct netdev_vport *dev = netdev_vport_cast(netdev);
752
753     ovs_mutex_lock(&dev->mutex);
754     *stats = dev->stats;
755     ovs_mutex_unlock(&dev->mutex);
756
757     return 0;
758 }
759 \f
760 #define VPORT_FUNCTIONS(GET_CONFIG, SET_CONFIG,             \
761                         GET_TUNNEL_CONFIG, GET_STATUS)      \
762     NULL,                                                   \
763     netdev_vport_run,                                       \
764     netdev_vport_wait,                                      \
765                                                             \
766     netdev_vport_alloc,                                     \
767     netdev_vport_construct,                                 \
768     netdev_vport_destruct,                                  \
769     netdev_vport_dealloc,                                   \
770     GET_CONFIG,                                             \
771     SET_CONFIG,                                             \
772     GET_TUNNEL_CONFIG,                                      \
773                                                             \
774     NULL,                       /* send */                  \
775     NULL,                       /* send_wait */             \
776                                                             \
777     netdev_vport_set_etheraddr,                             \
778     netdev_vport_get_etheraddr,                             \
779     NULL,                       /* get_mtu */               \
780     NULL,                       /* set_mtu */               \
781     NULL,                       /* get_ifindex */           \
782     NULL,                       /* get_carrier */           \
783     NULL,                       /* get_carrier_resets */    \
784     NULL,                       /* get_miimon */            \
785     get_stats,                                              \
786     NULL,                       /* set_stats */             \
787                                                             \
788     NULL,                       /* get_features */          \
789     NULL,                       /* set_advertisements */    \
790                                                             \
791     NULL,                       /* set_policing */          \
792     NULL,                       /* get_qos_types */         \
793     NULL,                       /* get_qos_capabilities */  \
794     NULL,                       /* get_qos */               \
795     NULL,                       /* set_qos */               \
796     NULL,                       /* get_queue */             \
797     NULL,                       /* set_queue */             \
798     NULL,                       /* delete_queue */          \
799     NULL,                       /* get_queue_stats */       \
800     NULL,                       /* queue_dump_start */      \
801     NULL,                       /* queue_dump_next */       \
802     NULL,                       /* queue_dump_done */       \
803     NULL,                       /* dump_queue_stats */      \
804                                                             \
805     NULL,                       /* get_in4 */               \
806     NULL,                       /* set_in4 */               \
807     NULL,                       /* get_in6 */               \
808     NULL,                       /* add_router */            \
809     NULL,                       /* get_next_hop */          \
810     GET_STATUS,                                             \
811     NULL,                       /* arp_lookup */            \
812                                                             \
813     netdev_vport_update_flags,                              \
814                                                             \
815     NULL,                   /* rx_alloc */                  \
816     NULL,                   /* rx_construct */              \
817     NULL,                   /* rx_destruct */               \
818     NULL,                   /* rx_dealloc */                \
819     NULL,                   /* rx_recv */                   \
820     NULL,                   /* rx_wait */                   \
821     NULL,                   /* rx_drain */
822
823 #define TUNNEL_CLASS(NAME, DPIF_PORT)                       \
824     { DPIF_PORT,                                            \
825         { NAME, VPORT_FUNCTIONS(get_tunnel_config,          \
826                                 set_tunnel_config,          \
827                                 get_netdev_tunnel_config,   \
828                                 tunnel_get_status) }}
829
830 void
831 netdev_vport_tunnel_register(void)
832 {
833     static const struct vport_class vport_classes[] = {
834         TUNNEL_CLASS("gre", "gre_system"),
835         TUNNEL_CLASS("ipsec_gre", "gre_system"),
836         TUNNEL_CLASS("gre64", "gre64_system"),
837         TUNNEL_CLASS("ipsec_gre64", "gre64_system"),
838         TUNNEL_CLASS("vxlan", "vxlan_system"),
839         TUNNEL_CLASS("lisp", "lisp_system")
840     };
841     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
842
843     if (ovsthread_once_start(&once)) {
844         int i;
845
846         for (i = 0; i < ARRAY_SIZE(vport_classes); i++) {
847             netdev_register_provider(&vport_classes[i].netdev_class);
848         }
849         ovsthread_once_done(&once);
850     }
851 }
852
853 void
854 netdev_vport_patch_register(void)
855 {
856     static const struct vport_class patch_class =
857         { NULL,
858             { "patch", VPORT_FUNCTIONS(get_patch_config,
859                                        set_patch_config,
860                                        NULL,
861                                        NULL) }};
862     netdev_register_provider(&patch_class.netdev_class);
863 }