lib: Simplify rtnetlink routing functionality.
[sliver-openvswitch.git] / lib / netdev-vport.c
1 /*
2  * Copyright (c) 2010, 2011 Nicira Networks.
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 <linux/rtnetlink.h>
25 #include <net/if.h>
26 #include <sys/ioctl.h>
27
28 #include "byte-order.h"
29 #include "hash.h"
30 #include "hmap.h"
31 #include "list.h"
32 #include "netdev-provider.h"
33 #include "netlink.h"
34 #include "netlink-socket.h"
35 #include "ofpbuf.h"
36 #include "openvswitch/datapath-protocol.h"
37 #include "openvswitch/tunnel.h"
38 #include "packets.h"
39 #include "rtnetlink.h"
40 #include "route-table.h"
41 #include "rtnetlink-link.h"
42 #include "shash.h"
43 #include "socket-util.h"
44 #include "vlog.h"
45
46 VLOG_DEFINE_THIS_MODULE(netdev_vport);
47
48 static struct hmap name_map;
49 static struct rtnetlink_notifier netdev_vport_link_notifier;
50
51 struct name_node {
52     struct hmap_node node; /* Node in name_map. */
53     uint32_t ifi_index;    /* Kernel interface index. */
54
55     char ifname[IFNAMSIZ]; /* Interface name. */
56 };
57
58 struct netdev_vport_notifier {
59     struct netdev_notifier notifier;
60     struct list list_node;
61     struct shash_node *shash_node;
62 };
63
64 struct netdev_dev_vport {
65     struct netdev_dev netdev_dev;
66     uint64_t config[VPORT_CONFIG_SIZE / 8];
67 };
68
69 struct netdev_vport {
70     struct netdev netdev;
71 };
72
73 struct vport_class {
74     struct netdev_class netdev_class;
75     int (*parse_config)(const struct netdev_dev *, const struct shash *args,
76                         void *config);
77 };
78
79 static struct shash netdev_vport_notifiers =
80                                     SHASH_INITIALIZER(&netdev_vport_notifiers);
81
82 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
83
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 *);
88
89 static void netdev_vport_tnl_iface_init(void);
90 static void netdev_vport_link_change(const struct rtnetlink_link_change *,
91                                      void *);
92 static const char *netdev_vport_get_tnl_iface(const struct netdev *netdev);
93
94 static bool
95 is_vport_class(const struct netdev_class *class)
96 {
97     return class->create == netdev_vport_create;
98 }
99
100 static const struct vport_class *
101 vport_class_cast(const struct netdev_class *class)
102 {
103     assert(is_vport_class(class));
104     return CONTAINER_OF(class, struct vport_class, netdev_class);
105 }
106
107 static struct netdev_dev_vport *
108 netdev_dev_vport_cast(const struct netdev_dev *netdev_dev)
109 {
110     assert(is_vport_class(netdev_dev_get_class(netdev_dev)));
111     return CONTAINER_OF(netdev_dev, struct netdev_dev_vport, netdev_dev);
112 }
113
114 static struct netdev_vport *
115 netdev_vport_cast(const struct netdev *netdev)
116 {
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);
120 }
121
122 /* If 'netdev' is a vport netdev, copies its kernel configuration into
123  * 'config'.  Otherwise leaves 'config' untouched. */
124 void
125 netdev_vport_get_config(const struct netdev *netdev, void *config)
126 {
127     const struct netdev_dev *dev = netdev_get_dev(netdev);
128
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);
132     }
133 }
134
135 static int
136 netdev_vport_init(void)
137 {
138     netdev_vport_tnl_iface_init();
139     route_table_register();
140     return 0;
141 }
142
143 static int
144 netdev_vport_create(const struct netdev_class *netdev_class, const char *name,
145                     const struct shash *args,
146                     struct netdev_dev **netdev_devp)
147 {
148     const struct vport_class *vport_class = vport_class_cast(netdev_class);
149     struct netdev_dev_vport *dev;
150     int error;
151
152     dev = xmalloc(sizeof *dev);
153     *netdev_devp = &dev->netdev_dev;
154     netdev_dev_init(&dev->netdev_dev, name, netdev_class);
155
156     memset(dev->config, 0, sizeof dev->config);
157     error = vport_class->parse_config(&dev->netdev_dev, args, dev->config);
158
159     if (error) {
160         netdev_dev_uninit(&dev->netdev_dev, true);
161     }
162     return error;
163 }
164
165 static void
166 netdev_vport_destroy(struct netdev_dev *netdev_dev_)
167 {
168     struct netdev_dev_vport *netdev_dev = netdev_dev_vport_cast(netdev_dev_);
169
170     route_table_unregister();
171     free(netdev_dev);
172 }
173
174 static int
175 netdev_vport_open(struct netdev_dev *netdev_dev_, int ethertype OVS_UNUSED,
176                 struct netdev **netdevp)
177 {
178     struct netdev_vport *netdev;
179
180     netdev = xmalloc(sizeof *netdev);
181     netdev_init(&netdev->netdev, netdev_dev_);
182
183     *netdevp = &netdev->netdev;
184     return 0;
185 }
186
187 static void
188 netdev_vport_close(struct netdev *netdev_)
189 {
190     struct netdev_vport *netdev = netdev_vport_cast(netdev_);
191     free(netdev);
192 }
193
194 static int
195 netdev_vport_reconfigure(struct netdev_dev *dev_,
196                          const struct shash *args)
197 {
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;
202     int error;
203
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);
215         }
216     }
217     return error;
218 }
219
220 static int
221 netdev_vport_set_etheraddr(struct netdev *netdev,
222                            const uint8_t mac[ETH_ADDR_LEN])
223 {
224     struct odp_vport_ether vport_ether;
225     int err;
226
227     ovs_strlcpy(vport_ether.devname, netdev_get_name(netdev),
228                 sizeof vport_ether.devname);
229
230     memcpy(vport_ether.ether_addr, mac, ETH_ADDR_LEN);
231
232     err = netdev_vport_do_ioctl(ODP_VPORT_ETHER_SET, &vport_ether);
233     if (err) {
234         return err;
235     }
236
237     netdev_vport_poll_notify(netdev);
238     return 0;
239 }
240
241 static int
242 netdev_vport_get_etheraddr(const struct netdev *netdev,
243                            uint8_t mac[ETH_ADDR_LEN])
244 {
245     struct odp_vport_ether vport_ether;
246     int err;
247
248     ovs_strlcpy(vport_ether.devname, netdev_get_name(netdev),
249                 sizeof vport_ether.devname);
250
251     err = netdev_vport_do_ioctl(ODP_VPORT_ETHER_GET, &vport_ether);
252     if (err) {
253         return err;
254     }
255
256     memcpy(mac, vport_ether.ether_addr, ETH_ADDR_LEN);
257     return 0;
258 }
259
260 static int
261 netdev_vport_get_mtu(const struct netdev *netdev, int *mtup)
262 {
263     struct odp_vport_mtu vport_mtu;
264     int err;
265
266     ovs_strlcpy(vport_mtu.devname, netdev_get_name(netdev),
267                 sizeof vport_mtu.devname);
268
269     err = netdev_vport_do_ioctl(ODP_VPORT_MTU_GET, &vport_mtu);
270     if (err) {
271         return err;
272     }
273
274     *mtup = vport_mtu.mtu;
275     return 0;
276 }
277
278 int
279 netdev_vport_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
280 {
281     const char *name = netdev_get_name(netdev);
282     struct odp_vport_stats_req ovsr;
283     int err;
284
285     ovs_strlcpy(ovsr.devname, name, sizeof ovsr.devname);
286     err = netdev_vport_do_ioctl(ODP_VPORT_STATS_GET, &ovsr);
287     if (err) {
288         return err;
289     }
290
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;
312
313     return 0;
314 }
315
316 int
317 netdev_vport_set_stats(struct netdev *netdev, const struct netdev_stats *stats)
318 {
319     struct odp_vport_stats_req ovsr;
320     int err;
321
322     ovs_strlcpy(ovsr.devname, netdev_get_name(netdev), sizeof ovsr.devname);
323
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;
345
346     err = netdev_vport_do_ioctl(ODP_VPORT_STATS_SET, &ovsr);
347
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. */
352     if (err == ENODEV) {
353         err = EOPNOTSUPP;
354     }
355
356     return err;
357 }
358
359 static int
360 netdev_vport_get_status(const struct netdev *netdev, struct shash *sh)
361 {
362     const char *iface = netdev_vport_get_tnl_iface(netdev);
363
364     if (iface) {
365         shash_add(sh, "tunnel_egress_iface", xstrdup(iface));
366     }
367
368     return 0;
369 }
370
371 static int
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)
375 {
376     if (off & (NETDEV_UP | NETDEV_PROMISC)) {
377         return EOPNOTSUPP;
378     }
379
380     *old_flagsp = NETDEV_UP | NETDEV_PROMISC;
381     return 0;
382 }
383
384 static char *
385 make_poll_name(const struct netdev *netdev)
386 {
387     return xasprintf("%s:%s", netdev_get_type(netdev), netdev_get_name(netdev));
388 }
389
390 static int
391 netdev_vport_poll_add(struct netdev *netdev,
392                       void (*cb)(struct netdev_notifier *), void *aux,
393                       struct netdev_notifier **notifierp)
394 {
395     char *poll_name = make_poll_name(netdev);
396     struct netdev_vport_notifier *notifier;
397     struct list *list;
398     struct shash_node *shash_node;
399
400     shash_node = shash_find_data(&netdev_vport_notifiers, poll_name);
401     if (!shash_node) {
402         list = xmalloc(sizeof *list);
403         list_init(list);
404         shash_node = shash_add(&netdev_vport_notifiers, poll_name, list);
405     } else {
406         list = shash_node->data;
407     }
408
409     notifier = xmalloc(sizeof *notifier);
410     netdev_notifier_init(&notifier->notifier, netdev, cb, aux);
411     list_push_back(list, &notifier->list_node);
412     notifier->shash_node = shash_node;
413
414     *notifierp = &notifier->notifier;
415     free(poll_name);
416
417     return 0;
418 }
419
420 static void
421 netdev_vport_poll_remove(struct netdev_notifier *notifier_)
422 {
423     struct netdev_vport_notifier *notifier =
424                 CONTAINER_OF(notifier_, struct netdev_vport_notifier, notifier);
425
426     struct list *list;
427
428     list = list_remove(&notifier->list_node);
429     if (list_is_empty(list)) {
430         shash_delete(&netdev_vport_notifiers, notifier->shash_node);
431         free(list);
432     }
433
434     free(notifier);
435 }
436
437 static void
438 netdev_vport_run(void)
439 {
440     rtnetlink_link_notifier_run();
441     route_table_run();
442 }
443
444 static void
445 netdev_vport_wait(void)
446 {
447     rtnetlink_link_notifier_wait();
448     route_table_wait();
449 }
450 \f
451 /* get_tnl_iface() implementation. */
452
453 static struct name_node *
454 name_node_lookup(int ifi_index)
455 {
456     struct name_node *nn;
457
458     HMAP_FOR_EACH_WITH_HASH(nn, node, hash_int(ifi_index, 0), &name_map) {
459         if (nn->ifi_index == ifi_index) {
460             return nn;
461         }
462     }
463
464     return NULL;
465 }
466
467 /* Queries the kernel for fresh data to populate the name map with. */
468 static int
469 netdev_vport_reset_names(void)
470 {
471     int error;
472     struct nl_dump dump;
473     struct rtgenmsg *rtmsg;
474     struct ofpbuf request, reply;
475     static struct nl_sock *rtnl_sock;
476     struct name_node *nn, *nn_next;
477
478     HMAP_FOR_EACH_SAFE(nn, nn_next, node, &name_map) {
479         hmap_remove(&name_map, &nn->node);
480         free(nn);
481     }
482
483     error = nl_sock_create(NETLINK_ROUTE, 0, 0, 0, &rtnl_sock);
484     if (error) {
485         VLOG_WARN_RL(&rl, "Failed to create NETLINK_ROUTE socket");
486         return error;
487     }
488
489     ofpbuf_init(&request, 0);
490
491     nl_msg_put_nlmsghdr(&request, sizeof *rtmsg, RTM_GETLINK, NLM_F_REQUEST);
492
493     rtmsg = ofpbuf_put_zeros(&request, sizeof *rtmsg);
494     rtmsg->rtgen_family = AF_INET;
495
496     nl_dump_start(&dump, rtnl_sock, &request);
497
498     while (nl_dump_next(&dump, &reply)) {
499         struct rtnetlink_link_change change;
500
501         if (rtnetlink_link_parse(&reply, &change)) {
502             netdev_vport_link_change(&change, NULL);
503         }
504     }
505
506     error = nl_dump_done(&dump);
507     nl_sock_destroy(rtnl_sock);
508
509     return error;
510 }
511
512 static void
513 netdev_vport_link_change(const struct rtnetlink_link_change *change,
514                          void *aux OVS_UNUSED)
515 {
516
517     if (!change) {
518         netdev_vport_reset_names();
519     } else if (change->nlmsg_type == RTM_NEWLINK) {
520         struct name_node *nn;
521
522         if (name_node_lookup(change->ifi_index)) {
523             return;
524         }
525
526         nn            = xzalloc(sizeof *nn);
527         nn->ifi_index = change->ifi_index;
528
529         strncpy(nn->ifname, change->ifname, IFNAMSIZ);
530         nn->ifname[IFNAMSIZ - 1] = '\0';
531
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;
535
536         nn = name_node_lookup(change->ifi_index);
537
538         if (nn) {
539             hmap_remove(&name_map, &nn->node);
540             free(nn);
541         }
542
543     } else {
544         VLOG_WARN_RL(&rl, "Received unexpected rtnetlink message type %d",
545                      change->nlmsg_type);
546     }
547 }
548
549 static void
550 netdev_vport_tnl_iface_init(void)
551 {
552     static bool tnl_iface_is_init = false;
553
554     if (!tnl_iface_is_init) {
555         hmap_init(&name_map);
556
557         rtnetlink_link_notifier_register(&netdev_vport_link_notifier,
558                                          netdev_vport_link_change, NULL);
559
560         netdev_vport_reset_names();
561         tnl_iface_is_init = true;
562     }
563 }
564
565 static const char *
566 netdev_vport_get_tnl_iface(const struct netdev *netdev)
567 {
568     int ifindex;
569     uint32_t route;
570     struct netdev_dev_vport *ndv;
571     struct tnl_port_config *config;
572
573     ndv = netdev_dev_vport_cast(netdev_get_dev(netdev));
574     config = (struct tnl_port_config *) ndv->config;
575     route = config->daddr;
576
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) {
581                 return nn->ifname;
582             }
583         }
584     }
585
586     return NULL;
587 }
588 \f
589 /* Helper functions. */
590
591 static int
592 netdev_vport_do_ioctl(int cmd, void *arg)
593 {
594     static int ioctl_fd = -1;
595
596     if (ioctl_fd < 0) {
597         ioctl_fd = open("/dev/net/dp0", O_RDONLY | O_NONBLOCK);
598         if (ioctl_fd < 0) {
599             VLOG_ERR_RL(&rl, "failed to open ioctl fd: %s", strerror(errno));
600             return errno;
601         }
602     }
603
604     return ioctl(ioctl_fd, cmd, arg) ? errno : 0;
605 }
606
607 static void
608 netdev_vport_poll_notify(const struct netdev *netdev)
609 {
610     char *poll_name = make_poll_name(netdev);
611     struct list *list = shash_find_data(&netdev_vport_notifiers,
612                                         poll_name);
613
614     if (list) {
615         struct netdev_vport_notifier *notifier;
616
617         LIST_FOR_EACH (notifier, list_node, list) {
618             struct netdev_notifier *n = &notifier->notifier;
619             n->cb(n);
620         }
621     }
622
623     free(poll_name);
624 }
625 \f
626 /* Code specific to individual vport types. */
627
628 static int
629 parse_tunnel_config(const struct netdev_dev *dev, const struct shash *args,
630                     void *configp)
631 {
632     const char *name = netdev_dev_get_name(dev);
633     const char *type = netdev_dev_get_type(dev);
634     bool is_gre = false;
635     bool is_ipsec = false;
636     struct tnl_port_config config;
637     struct shash_node *node;
638     bool ipsec_mech_set = false;
639
640     memset(&config, 0, sizeof config);
641     config.flags |= TNL_F_PMTUD;
642     config.flags |= TNL_F_HDR_CACHE;
643
644     if (!strcmp(type, "gre")) {
645         is_gre = true;
646     } else if (!strcmp(type, "ipsec_gre")) {
647         is_gre = true;
648         is_ipsec = true;
649
650         config.flags |= TNL_F_IPSEC;
651
652         /* IPsec doesn't work when header caching is enabled. */
653         config.flags &= ~TNL_F_HDR_CACHE;
654     }
655
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);
661             } else {
662                 config.daddr = in_addr.s_addr;
663             }
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);
668             } else {
669                 config.saddr = in_addr.s_addr;
670             }
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;
675             } else {
676                 uint64_t key = strtoull(node->data, NULL, 0);
677                 config.out_key = config.in_key = htonll(key);
678             }
679         } else if (!strcmp(node->name, "in_key") && is_gre) {
680             if (!strcmp(node->data, "flow")) {
681                 config.flags |= TNL_F_IN_KEY_MATCH;
682             } else {
683                 config.in_key = htonll(strtoull(node->data, NULL, 0));
684             }
685         } else if (!strcmp(node->name, "out_key") && is_gre) {
686             if (!strcmp(node->data, "flow")) {
687                 config.flags |= TNL_F_OUT_KEY_ACTION;
688             } else {
689                 config.out_key = htonll(strtoull(node->data, NULL, 0));
690             }
691         } else if (!strcmp(node->name, "tos")) {
692             if (!strcmp(node->data, "inherit")) {
693                 config.flags |= TNL_F_TOS_INHERIT;
694             } else {
695                 config.tos = atoi(node->data);
696             }
697         } else if (!strcmp(node->name, "ttl")) {
698             if (!strcmp(node->data, "inherit")) {
699                 config.flags |= TNL_F_TTL_INHERIT;
700             } else {
701                 config.ttl = atoi(node->data);
702             }
703         } else if (!strcmp(node->name, "csum") && is_gre) {
704             if (!strcmp(node->data, "true")) {
705                 config.flags |= TNL_F_CSUM;
706             }
707         } else if (!strcmp(node->name, "pmtud")) {
708             if (!strcmp(node->data, "false")) {
709                 config.flags &= ~TNL_F_PMTUD;
710             }
711         } else if (!strcmp(node->name, "header_cache")) {
712             if (!strcmp(node->data, "false")) {
713                 config.flags &= ~TNL_F_HDR_CACHE;
714             }
715         } else if (!strcmp(node->name, "peer_cert") && is_ipsec) {
716             if (shash_find(args, "certificate")) {
717                 ipsec_mech_set = true;
718             } else {
719                 const char *use_ssl_cert;
720
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.
726                  */
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",
730                               name);
731                     return EINVAL;
732                 }
733                 ipsec_mech_set = true;
734             }
735         } else if (!strcmp(node->name, "psk") && is_ipsec) {
736             ipsec_mech_set = true;
737         } else if (is_ipsec
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. */
742         } else {
743             VLOG_WARN("%s: unknown %s argument '%s'",
744                       name, type, node->name);
745         }
746     }
747
748     if (is_ipsec) {
749         if (shash_find(args, "peer_cert") && shash_find(args, "psk")) {
750             VLOG_WARN("%s: cannot define both 'peer_cert' and 'psk'", name);
751             return EINVAL;
752         }
753
754         if (!ipsec_mech_set) {
755             VLOG_WARN("%s: IPsec requires an 'peer_cert' or psk' argument",
756                       name);
757             return EINVAL;
758         }
759     }
760
761     if (!config.daddr) {
762         VLOG_WARN("%s: %s type requires valid 'remote_ip' argument",
763                   name, type);
764         return EINVAL;
765     }
766
767     BUILD_ASSERT(sizeof config <= VPORT_CONFIG_SIZE);
768     memcpy(configp, &config, sizeof config);
769     return 0;
770 }
771
772 static int
773 parse_patch_config(const struct netdev_dev *dev, const struct shash *args,
774                    void *configp)
775 {
776     const char *name = netdev_dev_get_name(dev);
777     const char *peer;
778
779     peer = shash_find_data(args, "peer");
780     if (!peer) {
781         VLOG_WARN("%s: patch type requires valid 'peer' argument", name);
782         return EINVAL;
783     }
784
785     if (shash_count(args) > 1) {
786         VLOG_WARN("%s: patch type takes only a 'peer' argument", name);
787         return EINVAL;
788     }
789
790     if (strlen(peer) >= MIN(IFNAMSIZ, VPORT_CONFIG_SIZE)) {
791         VLOG_WARN("%s: patch 'peer' arg too long", name);
792         return EINVAL;
793     }
794
795     if (!strcmp(name, peer)) {
796         VLOG_WARN("%s: patch peer must not be self", name);
797         return EINVAL;
798     }
799
800     strncpy(configp, peer, VPORT_CONFIG_SIZE);
801
802     return 0;
803 }
804 \f
805 #define VPORT_FUNCTIONS(GET_STATUS)                         \
806     netdev_vport_init,                                      \
807     netdev_vport_run,                                       \
808     netdev_vport_wait,                                      \
809                                                             \
810     netdev_vport_create,                                    \
811     netdev_vport_destroy,                                   \
812     netdev_vport_reconfigure,                               \
813                                                             \
814     netdev_vport_open,                                      \
815     netdev_vport_close,                                     \
816                                                             \
817     NULL,                       /* enumerate */             \
818                                                             \
819     NULL,                       /* recv */                  \
820     NULL,                       /* recv_wait */             \
821     NULL,                       /* drain */                 \
822                                                             \
823     NULL,                       /* send */                  \
824     NULL,                       /* send_wait */             \
825                                                             \
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,                                 \
834                                                             \
835     NULL,                       /* get_features */          \
836     NULL,                       /* set_advertisements */    \
837     NULL,                       /* get_vlan_vid */          \
838                                                             \
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 */      \
850                                                             \
851     NULL,                       /* get_in4 */               \
852     NULL,                       /* set_in4 */               \
853     NULL,                       /* get_in6 */               \
854     NULL,                       /* add_router */            \
855     NULL,                       /* get_next_hop */          \
856     GET_STATUS,                                             \
857     NULL,                       /* arp_lookup */            \
858                                                             \
859     netdev_vport_update_flags,                              \
860                                                             \
861     netdev_vport_poll_add,                                  \
862     netdev_vport_poll_remove,
863
864 void
865 netdev_vport_register(void)
866 {
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 }
875     };
876
877     int i;
878
879     for (i = 0; i < ARRAY_SIZE(vport_classes); i++) {
880         netdev_register_provider(&vport_classes[i].netdev_class);
881     }
882 }