]> git.proxmox.com Git - mirror_ovs.git/blob - lib/netdev-dummy.c
ovs-dpctl: Add mega flow support
[mirror_ovs.git] / lib / netdev-dummy.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 "dummy.h"
20
21 #include <errno.h>
22
23 #include "flow.h"
24 #include "list.h"
25 #include "netdev-provider.h"
26 #include "netdev-vport.h"
27 #include "odp-util.h"
28 #include "ofp-print.h"
29 #include "ofpbuf.h"
30 #include "packets.h"
31 #include "poll-loop.h"
32 #include "shash.h"
33 #include "sset.h"
34 #include "stream.h"
35 #include "unaligned.h"
36 #include "unixctl.h"
37 #include "vlog.h"
38
39 VLOG_DEFINE_THIS_MODULE(netdev_dummy);
40
41 struct dummy_stream {
42 struct stream *stream;
43 struct ofpbuf rxbuf;
44 struct list txq;
45 };
46
47 struct netdev_dummy {
48 struct netdev up;
49 uint8_t hwaddr[ETH_ADDR_LEN];
50 int mtu;
51 struct netdev_stats stats;
52 enum netdev_flags flags;
53 unsigned int change_seq;
54 int ifindex;
55
56 struct pstream *pstream;
57 struct dummy_stream *streams;
58 size_t n_streams;
59
60 struct list rxes; /* List of child "netdev_rx_dummy"s. */
61 };
62
63 /* Max 'recv_queue_len' in struct netdev_dummy. */
64 #define NETDEV_DUMMY_MAX_QUEUE 100
65
66 struct netdev_rx_dummy {
67 struct netdev_rx up;
68 struct list node; /* In netdev_dummy's "rxes" list. */
69 struct list recv_queue;
70 int recv_queue_len; /* list_size(&recv_queue). */
71 bool listening;
72 };
73
74 static struct shash dummy_netdevs = SHASH_INITIALIZER(&dummy_netdevs);
75
76 static const struct netdev_rx_class netdev_rx_dummy_class;
77
78 static unixctl_cb_func netdev_dummy_set_admin_state;
79 static int netdev_dummy_create(const struct netdev_class *, const char *,
80 struct netdev **);
81 static void netdev_dummy_poll_notify(struct netdev_dummy *);
82 static void netdev_dummy_queue_packet(struct netdev_dummy *, struct ofpbuf *);
83
84 static void dummy_stream_close(struct dummy_stream *);
85
86 static bool
87 is_dummy_class(const struct netdev_class *class)
88 {
89 return class->create == netdev_dummy_create;
90 }
91
92 static struct netdev_dummy *
93 netdev_dummy_cast(const struct netdev *netdev)
94 {
95 ovs_assert(is_dummy_class(netdev_get_class(netdev)));
96 return CONTAINER_OF(netdev, struct netdev_dummy, up);
97 }
98
99 static struct netdev_rx_dummy *
100 netdev_rx_dummy_cast(const struct netdev_rx *rx)
101 {
102 netdev_rx_assert_class(rx, &netdev_rx_dummy_class);
103 return CONTAINER_OF(rx, struct netdev_rx_dummy, up);
104 }
105
106 static void
107 netdev_dummy_run(void)
108 {
109 struct shash_node *node;
110
111 SHASH_FOR_EACH (node, &dummy_netdevs) {
112 struct netdev_dummy *dev = node->data;
113 size_t i;
114
115 if (dev->pstream) {
116 struct stream *new_stream;
117 int error;
118
119 error = pstream_accept(dev->pstream, &new_stream);
120 if (!error) {
121 struct dummy_stream *s;
122
123 dev->streams = xrealloc(dev->streams,
124 ((dev->n_streams + 1)
125 * sizeof *dev->streams));
126 s = &dev->streams[dev->n_streams++];
127 s->stream = new_stream;
128 ofpbuf_init(&s->rxbuf, 2048);
129 list_init(&s->txq);
130 } else if (error != EAGAIN) {
131 VLOG_WARN("%s: accept failed (%s)",
132 pstream_get_name(dev->pstream), strerror(error));
133 pstream_close(dev->pstream);
134 dev->pstream = NULL;
135 }
136 }
137
138 for (i = 0; i < dev->n_streams; i++) {
139 struct dummy_stream *s = &dev->streams[i];
140 int error = 0;
141 size_t n;
142
143 stream_run(s->stream);
144
145 if (!list_is_empty(&s->txq)) {
146 struct ofpbuf *txbuf;
147 int retval;
148
149 txbuf = ofpbuf_from_list(list_front(&s->txq));
150 retval = stream_send(s->stream, txbuf->data, txbuf->size);
151 if (retval > 0) {
152 ofpbuf_pull(txbuf, retval);
153 if (!txbuf->size) {
154 list_remove(&txbuf->list_node);
155 ofpbuf_delete(txbuf);
156 }
157 } else if (retval != -EAGAIN) {
158 error = -retval;
159 }
160 }
161
162 if (!error) {
163 if (s->rxbuf.size < 2) {
164 n = 2 - s->rxbuf.size;
165 } else {
166 uint16_t frame_len;
167
168 frame_len = ntohs(get_unaligned_be16(s->rxbuf.data));
169 if (frame_len < ETH_HEADER_LEN) {
170 error = EPROTO;
171 n = 0;
172 } else {
173 n = (2 + frame_len) - s->rxbuf.size;
174 }
175 }
176 }
177 if (!error) {
178 int retval;
179
180 ofpbuf_prealloc_tailroom(&s->rxbuf, n);
181 retval = stream_recv(s->stream, ofpbuf_tail(&s->rxbuf), n);
182 if (retval > 0) {
183 s->rxbuf.size += retval;
184 if (retval == n && s->rxbuf.size > 2) {
185 ofpbuf_pull(&s->rxbuf, 2);
186 netdev_dummy_queue_packet(dev,
187 ofpbuf_clone(&s->rxbuf));
188 ofpbuf_clear(&s->rxbuf);
189 }
190 } else if (retval != -EAGAIN) {
191 error = (retval < 0 ? -retval
192 : s->rxbuf.size ? EPROTO
193 : EOF);
194 }
195 }
196
197 if (error) {
198 VLOG_DBG("%s: closing connection (%s)",
199 stream_get_name(s->stream),
200 ovs_retval_to_string(error));
201 dummy_stream_close(&dev->streams[i]);
202 dev->streams[i] = dev->streams[--dev->n_streams];
203 }
204 }
205 }
206 }
207
208 static void
209 dummy_stream_close(struct dummy_stream *s)
210 {
211 stream_close(s->stream);
212 ofpbuf_uninit(&s->rxbuf);
213 ofpbuf_list_delete(&s->txq);
214 }
215
216 static void
217 netdev_dummy_wait(void)
218 {
219 struct shash_node *node;
220
221 SHASH_FOR_EACH (node, &dummy_netdevs) {
222 struct netdev_dummy *dev = node->data;
223 size_t i;
224
225 if (dev->pstream) {
226 pstream_wait(dev->pstream);
227 }
228 for (i = 0; i < dev->n_streams; i++) {
229 struct dummy_stream *s = &dev->streams[i];
230
231 stream_run_wait(s->stream);
232 if (!list_is_empty(&s->txq)) {
233 stream_send_wait(s->stream);
234 }
235 stream_recv_wait(s->stream);
236 }
237 }
238 }
239
240 static int
241 netdev_dummy_create(const struct netdev_class *class, const char *name,
242 struct netdev **netdevp)
243 {
244 static unsigned int n = 0xaa550000;
245 struct netdev_dummy *netdev;
246
247 netdev = xzalloc(sizeof *netdev);
248 netdev_init(&netdev->up, name, class);
249 netdev->hwaddr[0] = 0xaa;
250 netdev->hwaddr[1] = 0x55;
251 netdev->hwaddr[2] = n >> 24;
252 netdev->hwaddr[3] = n >> 16;
253 netdev->hwaddr[4] = n >> 8;
254 netdev->hwaddr[5] = n;
255 netdev->mtu = 1500;
256 netdev->flags = 0;
257 netdev->change_seq = 1;
258 netdev->ifindex = -EOPNOTSUPP;
259
260 netdev->pstream = NULL;
261 netdev->streams = NULL;
262 netdev->n_streams = 0;
263
264 list_init(&netdev->rxes);
265
266 shash_add(&dummy_netdevs, name, netdev);
267
268 n++;
269
270 *netdevp = &netdev->up;
271
272 return 0;
273 }
274
275 static void
276 netdev_dummy_destroy(struct netdev *netdev_)
277 {
278 struct netdev_dummy *netdev = netdev_dummy_cast(netdev_);
279 size_t i;
280
281 shash_find_and_delete(&dummy_netdevs,
282 netdev_get_name(netdev_));
283 pstream_close(netdev->pstream);
284 for (i = 0; i < netdev->n_streams; i++) {
285 dummy_stream_close(&netdev->streams[i]);
286 }
287 free(netdev->streams);
288 free(netdev);
289 }
290
291 static int
292 netdev_dummy_get_config(const struct netdev *netdev_, struct smap *args)
293 {
294 struct netdev_dummy *netdev = netdev_dummy_cast(netdev_);
295
296 if (netdev->ifindex >= 0) {
297 smap_add_format(args, "ifindex", "%d", netdev->ifindex);
298 }
299 if (netdev->pstream) {
300 smap_add(args, "pstream", pstream_get_name(netdev->pstream));
301 }
302 return 0;
303 }
304
305 static int
306 netdev_dummy_set_config(struct netdev *netdev_, const struct smap *args)
307 {
308 struct netdev_dummy *netdev = netdev_dummy_cast(netdev_);
309 const char *pstream;
310
311 netdev->ifindex = smap_get_int(args, "ifindex", -EOPNOTSUPP);
312
313 pstream = smap_get(args, "pstream");
314 if (!pstream
315 || !netdev->pstream
316 || strcmp(pstream_get_name(netdev->pstream), pstream)) {
317 pstream_close(netdev->pstream);
318 netdev->pstream = NULL;
319
320 if (pstream) {
321 int error;
322
323 error = pstream_open(pstream, &netdev->pstream, DSCP_DEFAULT);
324 if (error) {
325 VLOG_WARN("%s: open failed (%s)", pstream, strerror(error));
326 }
327 }
328 }
329 return 0;
330 }
331
332 static int
333 netdev_dummy_rx_open(struct netdev *netdev_, struct netdev_rx **rxp)
334 {
335 struct netdev_dummy *netdev = netdev_dummy_cast(netdev_);
336 struct netdev_rx_dummy *rx;
337
338 rx = xmalloc(sizeof *rx);
339 netdev_rx_init(&rx->up, &netdev->up, &netdev_rx_dummy_class);
340 list_push_back(&netdev->rxes, &rx->node);
341 list_init(&rx->recv_queue);
342 rx->recv_queue_len = 0;
343
344 *rxp = &rx->up;
345 return 0;
346 }
347
348 static int
349 netdev_rx_dummy_recv(struct netdev_rx *rx_, void *buffer, size_t size)
350 {
351 struct netdev_rx_dummy *rx = netdev_rx_dummy_cast(rx_);
352 struct ofpbuf *packet;
353 size_t packet_size;
354
355 if (list_is_empty(&rx->recv_queue)) {
356 return -EAGAIN;
357 }
358
359 packet = ofpbuf_from_list(list_pop_front(&rx->recv_queue));
360 rx->recv_queue_len--;
361 if (packet->size > size) {
362 return -EMSGSIZE;
363 }
364 packet_size = packet->size;
365
366 memcpy(buffer, packet->data, packet->size);
367 ofpbuf_delete(packet);
368
369 return packet_size;
370 }
371
372 static void
373 netdev_rx_dummy_destroy(struct netdev_rx *rx_)
374 {
375 struct netdev_rx_dummy *rx = netdev_rx_dummy_cast(rx_);
376 list_remove(&rx->node);
377 ofpbuf_list_delete(&rx->recv_queue);
378 free(rx);
379 }
380
381 static void
382 netdev_rx_dummy_wait(struct netdev_rx *rx_)
383 {
384 struct netdev_rx_dummy *rx = netdev_rx_dummy_cast(rx_);
385 if (!list_is_empty(&rx->recv_queue)) {
386 poll_immediate_wake();
387 }
388 }
389
390 static int
391 netdev_rx_dummy_drain(struct netdev_rx *rx_)
392 {
393 struct netdev_rx_dummy *rx = netdev_rx_dummy_cast(rx_);
394 ofpbuf_list_delete(&rx->recv_queue);
395 rx->recv_queue_len = 0;
396 return 0;
397 }
398
399 static int
400 netdev_dummy_send(struct netdev *netdev, const void *buffer, size_t size)
401 {
402 struct netdev_dummy *dev = netdev_dummy_cast(netdev);
403 size_t i;
404
405 if (size < ETH_HEADER_LEN) {
406 return EMSGSIZE;
407 } else {
408 const struct eth_header *eth = buffer;
409 int max_size;
410
411 max_size = dev->mtu + ETH_HEADER_LEN;
412 if (eth->eth_type == htons(ETH_TYPE_VLAN)) {
413 max_size += VLAN_HEADER_LEN;
414 }
415 if (size > max_size) {
416 return EMSGSIZE;
417 }
418 }
419
420 dev->stats.tx_packets++;
421 dev->stats.tx_bytes += size;
422
423 for (i = 0; i < dev->n_streams; i++) {
424 struct dummy_stream *s = &dev->streams[i];
425
426 if (list_size(&s->txq) < NETDEV_DUMMY_MAX_QUEUE) {
427 struct ofpbuf *b;
428
429 b = ofpbuf_clone_data_with_headroom(buffer, size, 2);
430 put_unaligned_be16(ofpbuf_push_uninit(b, 2), htons(size));
431 list_push_back(&s->txq, &b->list_node);
432 }
433 }
434
435 return 0;
436 }
437
438 static int
439 netdev_dummy_set_etheraddr(struct netdev *netdev,
440 const uint8_t mac[ETH_ADDR_LEN])
441 {
442 struct netdev_dummy *dev = netdev_dummy_cast(netdev);
443
444 if (!eth_addr_equals(dev->hwaddr, mac)) {
445 memcpy(dev->hwaddr, mac, ETH_ADDR_LEN);
446 netdev_dummy_poll_notify(dev);
447 }
448
449 return 0;
450 }
451
452 static int
453 netdev_dummy_get_etheraddr(const struct netdev *netdev,
454 uint8_t mac[ETH_ADDR_LEN])
455 {
456 const struct netdev_dummy *dev = netdev_dummy_cast(netdev);
457
458 memcpy(mac, dev->hwaddr, ETH_ADDR_LEN);
459 return 0;
460 }
461
462 static int
463 netdev_dummy_get_mtu(const struct netdev *netdev, int *mtup)
464 {
465 const struct netdev_dummy *dev = netdev_dummy_cast(netdev);
466
467 *mtup = dev->mtu;
468 return 0;
469 }
470
471 static int
472 netdev_dummy_set_mtu(const struct netdev *netdev, int mtu)
473 {
474 struct netdev_dummy *dev = netdev_dummy_cast(netdev);
475
476 dev->mtu = mtu;
477 return 0;
478 }
479
480 static int
481 netdev_dummy_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
482 {
483 const struct netdev_dummy *dev = netdev_dummy_cast(netdev);
484
485 *stats = dev->stats;
486 return 0;
487 }
488
489 static int
490 netdev_dummy_set_stats(struct netdev *netdev, const struct netdev_stats *stats)
491 {
492 struct netdev_dummy *dev = netdev_dummy_cast(netdev);
493
494 dev->stats = *stats;
495 return 0;
496 }
497
498 static int
499 netdev_dummy_get_ifindex(const struct netdev *netdev)
500 {
501 struct netdev_dummy *dev = netdev_dummy_cast(netdev);
502
503 return dev->ifindex;
504 }
505
506 static int
507 netdev_dummy_update_flags(struct netdev *netdev_,
508 enum netdev_flags off, enum netdev_flags on,
509 enum netdev_flags *old_flagsp)
510 {
511 struct netdev_dummy *netdev = netdev_dummy_cast(netdev_);
512
513 if ((off | on) & ~(NETDEV_UP | NETDEV_PROMISC)) {
514 return EINVAL;
515 }
516
517 *old_flagsp = netdev->flags;
518 netdev->flags |= on;
519 netdev->flags &= ~off;
520 if (*old_flagsp != netdev->flags) {
521 netdev_dummy_poll_notify(netdev);
522 }
523 return 0;
524 }
525
526 static unsigned int
527 netdev_dummy_change_seq(const struct netdev *netdev)
528 {
529 return netdev_dummy_cast(netdev)->change_seq;
530 }
531 \f
532 /* Helper functions. */
533
534 static void
535 netdev_dummy_poll_notify(struct netdev_dummy *dev)
536 {
537 dev->change_seq++;
538 if (!dev->change_seq) {
539 dev->change_seq++;
540 }
541 }
542
543 static const struct netdev_class dummy_class = {
544 "dummy",
545 NULL, /* init */
546 netdev_dummy_run,
547 netdev_dummy_wait,
548
549 netdev_dummy_create,
550 netdev_dummy_destroy,
551 netdev_dummy_get_config,
552 netdev_dummy_set_config,
553 NULL, /* get_tunnel_config */
554
555 netdev_dummy_rx_open,
556
557 netdev_dummy_send, /* send */
558 NULL, /* send_wait */
559
560 netdev_dummy_set_etheraddr,
561 netdev_dummy_get_etheraddr,
562 netdev_dummy_get_mtu,
563 netdev_dummy_set_mtu,
564 netdev_dummy_get_ifindex,
565 NULL, /* get_carrier */
566 NULL, /* get_carrier_resets */
567 NULL, /* get_miimon */
568 netdev_dummy_get_stats,
569 netdev_dummy_set_stats,
570
571 NULL, /* get_features */
572 NULL, /* set_advertisements */
573
574 NULL, /* set_policing */
575 NULL, /* get_qos_types */
576 NULL, /* get_qos_capabilities */
577 NULL, /* get_qos */
578 NULL, /* set_qos */
579 NULL, /* get_queue */
580 NULL, /* set_queue */
581 NULL, /* delete_queue */
582 NULL, /* get_queue_stats */
583 NULL, /* dump_queues */
584 NULL, /* dump_queue_stats */
585
586 NULL, /* get_in4 */
587 NULL, /* set_in4 */
588 NULL, /* get_in6 */
589 NULL, /* add_router */
590 NULL, /* get_next_hop */
591 NULL, /* get_status */
592 NULL, /* arp_lookup */
593
594 netdev_dummy_update_flags,
595
596 netdev_dummy_change_seq
597 };
598
599 static const struct netdev_rx_class netdev_rx_dummy_class = {
600 netdev_rx_dummy_destroy,
601 netdev_rx_dummy_recv,
602 netdev_rx_dummy_wait,
603 netdev_rx_dummy_drain,
604 };
605
606 static struct ofpbuf *
607 eth_from_packet_or_flow(const char *s)
608 {
609 enum odp_key_fitness fitness;
610 struct ofpbuf *packet;
611 struct ofpbuf odp_key;
612 struct flow flow;
613 int error;
614
615 if (!eth_from_hex(s, &packet)) {
616 return packet;
617 }
618
619 /* Convert string to datapath key.
620 *
621 * It would actually be nicer to parse an OpenFlow-like flow key here, but
622 * the code for that currently calls exit() on parse error. We have to
623 * settle for parsing a datapath key for now.
624 */
625 ofpbuf_init(&odp_key, 0);
626 error = odp_flow_from_string(s, NULL, &odp_key, NULL);
627 if (error) {
628 ofpbuf_uninit(&odp_key);
629 return NULL;
630 }
631
632 /* Convert odp_key to flow. */
633 fitness = odp_flow_key_to_flow(odp_key.data, odp_key.size, &flow);
634 if (fitness == ODP_FIT_ERROR) {
635 ofpbuf_uninit(&odp_key);
636 return NULL;
637 }
638
639 packet = ofpbuf_new(0);
640 flow_compose(packet, &flow);
641
642 ofpbuf_uninit(&odp_key);
643 return packet;
644 }
645
646 static void
647 netdev_dummy_queue_packet__(struct netdev_rx_dummy *rx, struct ofpbuf *packet)
648 {
649 list_push_back(&rx->recv_queue, &packet->list_node);
650 rx->recv_queue_len++;
651 }
652
653 static void
654 netdev_dummy_queue_packet(struct netdev_dummy *dummy, struct ofpbuf *packet)
655 {
656 struct netdev_rx_dummy *rx, *prev;
657
658 prev = NULL;
659 LIST_FOR_EACH (rx, node, &dummy->rxes) {
660 if (rx->recv_queue_len < NETDEV_DUMMY_MAX_QUEUE) {
661 if (prev) {
662 netdev_dummy_queue_packet__(prev, ofpbuf_clone(packet));
663 }
664 prev = rx;
665 }
666 }
667 if (prev) {
668 netdev_dummy_queue_packet__(prev, packet);
669 } else {
670 ofpbuf_delete(packet);
671 }
672 }
673
674 static void
675 netdev_dummy_receive(struct unixctl_conn *conn,
676 int argc, const char *argv[], void *aux OVS_UNUSED)
677 {
678 struct netdev_dummy *dummy_dev;
679 int i;
680
681 dummy_dev = shash_find_data(&dummy_netdevs, argv[1]);
682 if (!dummy_dev) {
683 unixctl_command_reply_error(conn, "no such dummy netdev");
684 return;
685 }
686
687 for (i = 2; i < argc; i++) {
688 struct ofpbuf *packet;
689
690 packet = eth_from_packet_or_flow(argv[i]);
691 if (!packet) {
692 unixctl_command_reply_error(conn, "bad packet syntax");
693 return;
694 }
695
696 dummy_dev->stats.rx_packets++;
697 dummy_dev->stats.rx_bytes += packet->size;
698
699 netdev_dummy_queue_packet(dummy_dev, packet);
700 }
701
702 unixctl_command_reply(conn, NULL);
703 }
704
705 static void
706 netdev_dummy_set_admin_state__(struct netdev_dummy *dev, bool admin_state)
707 {
708 enum netdev_flags old_flags;
709
710 if (admin_state) {
711 netdev_dummy_update_flags(&dev->up, 0, NETDEV_UP, &old_flags);
712 } else {
713 netdev_dummy_update_flags(&dev->up, NETDEV_UP, 0, &old_flags);
714 }
715 }
716
717 static void
718 netdev_dummy_set_admin_state(struct unixctl_conn *conn, int argc,
719 const char *argv[], void *aux OVS_UNUSED)
720 {
721 bool up;
722
723 if (!strcasecmp(argv[argc - 1], "up")) {
724 up = true;
725 } else if ( !strcasecmp(argv[argc - 1], "down")) {
726 up = false;
727 } else {
728 unixctl_command_reply_error(conn, "Invalid Admin State");
729 return;
730 }
731
732 if (argc > 2) {
733 struct netdev_dummy *dummy_dev;
734
735 dummy_dev = shash_find_data(&dummy_netdevs, argv[1]);
736 if (dummy_dev) {
737 netdev_dummy_set_admin_state__(dummy_dev, up);
738 } else {
739 unixctl_command_reply_error(conn, "Unknown Dummy Interface");
740 return;
741 }
742 } else {
743 struct shash_node *node;
744
745 SHASH_FOR_EACH (node, &dummy_netdevs) {
746 netdev_dummy_set_admin_state__(node->data, up);
747 }
748 }
749 unixctl_command_reply(conn, "OK");
750 }
751
752 void
753 netdev_dummy_register(bool override)
754 {
755 unixctl_command_register("netdev-dummy/receive", "NAME PACKET|FLOW...",
756 2, INT_MAX, netdev_dummy_receive, NULL);
757 unixctl_command_register("netdev-dummy/set-admin-state",
758 "[netdev] up|down", 1, 2,
759 netdev_dummy_set_admin_state, NULL);
760
761 if (override) {
762 struct sset types;
763 const char *type;
764
765 sset_init(&types);
766 netdev_enumerate_types(&types);
767 SSET_FOR_EACH (type, &types) {
768 if (!netdev_unregister_provider(type)) {
769 struct netdev_class *class;
770
771 class = xmalloc(sizeof *class);
772 *class = dummy_class;
773 class->type = xstrdup(type);
774 netdev_register_provider(class);
775 }
776 }
777 sset_destroy(&types);
778 }
779 netdev_register_provider(&dummy_class);
780
781 netdev_vport_tunnel_register();
782 }