]> git.proxmox.com Git - mirror_ovs.git/blame - lib/netdev-dummy.c
async-append: New library to allow asynchronous appending to a log file.
[mirror_ovs.git] / lib / netdev-dummy.c
CommitLineData
614c4892 1/*
275707c3 2 * Copyright (c) 2010, 2011, 2012, 2013 Nicira, Inc.
614c4892
BP
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
fbac791a 23#include "flow.h"
614c4892
BP
24#include "list.h"
25#include "netdev-provider.h"
c060c4cf 26#include "netdev-vport.h"
fbac791a
BP
27#include "odp-util.h"
28#include "ofp-print.h"
29#include "ofpbuf.h"
614c4892 30#include "packets.h"
fbac791a 31#include "poll-loop.h"
614c4892 32#include "shash.h"
0cbfe35d 33#include "sset.h"
eab5611a
BP
34#include "stream.h"
35#include "unaligned.h"
fbac791a 36#include "unixctl.h"
614c4892
BP
37#include "vlog.h"
38
39VLOG_DEFINE_THIS_MODULE(netdev_dummy);
40
eab5611a
BP
41struct dummy_stream {
42 struct stream *stream;
43 struct ofpbuf rxbuf;
44 struct list txq;
45};
46
b5d57fc8
BP
47struct netdev_dummy {
48 struct netdev up;
614c4892
BP
49 uint8_t hwaddr[ETH_ADDR_LEN];
50 int mtu;
51 struct netdev_stats stats;
52 enum netdev_flags flags;
ac4d3bcb 53 unsigned int change_seq;
8073dd31 54 int ifindex;
796223f5 55
eab5611a
BP
56 struct pstream *pstream;
57 struct dummy_stream *streams;
58 size_t n_streams;
59
796223f5 60 struct list rxes; /* List of child "netdev_rx_dummy"s. */
614c4892
BP
61};
62
e34cfdd9
BP
63/* Max 'recv_queue_len' in struct netdev_dummy. */
64#define NETDEV_DUMMY_MAX_QUEUE 100
65
796223f5
BP
66struct netdev_rx_dummy {
67 struct netdev_rx up;
b5d57fc8 68 struct list node; /* In netdev_dummy's "rxes" list. */
fbac791a 69 struct list recv_queue;
e34cfdd9
BP
70 int recv_queue_len; /* list_size(&recv_queue). */
71 bool listening;
614c4892
BP
72};
73
b5d57fc8 74static struct shash dummy_netdevs = SHASH_INITIALIZER(&dummy_netdevs);
fbac791a 75
796223f5
BP
76static const struct netdev_rx_class netdev_rx_dummy_class;
77
95d4ec33 78static unixctl_cb_func netdev_dummy_set_admin_state;
614c4892 79static int netdev_dummy_create(const struct netdev_class *, const char *,
b5d57fc8
BP
80 struct netdev **);
81static void netdev_dummy_poll_notify(struct netdev_dummy *);
eab5611a
BP
82static void netdev_dummy_queue_packet(struct netdev_dummy *, struct ofpbuf *);
83
84static void dummy_stream_close(struct dummy_stream *);
614c4892
BP
85
86static bool
87is_dummy_class(const struct netdev_class *class)
88{
89 return class->create == netdev_dummy_create;
90}
91
614c4892
BP
92static struct netdev_dummy *
93netdev_dummy_cast(const struct netdev *netdev)
94{
b5d57fc8 95 ovs_assert(is_dummy_class(netdev_get_class(netdev)));
180c6d0b 96 return CONTAINER_OF(netdev, struct netdev_dummy, up);
614c4892
BP
97}
98
796223f5
BP
99static struct netdev_rx_dummy *
100netdev_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
eab5611a
BP
106static void
107netdev_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)",
10a89ef0 132 pstream_get_name(dev->pstream), ovs_strerror(error));
eab5611a
BP
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
208static void
209dummy_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
216static void
217netdev_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
614c4892
BP
240static int
241netdev_dummy_create(const struct netdev_class *class, const char *name,
b5d57fc8 242 struct netdev **netdevp)
614c4892
BP
243{
244 static unsigned int n = 0xaa550000;
b5d57fc8
BP
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;
eab5611a
BP
259
260 netdev->pstream = NULL;
261 netdev->streams = NULL;
262 netdev->n_streams = 0;
263
b5d57fc8
BP
264 list_init(&netdev->rxes);
265
266 shash_add(&dummy_netdevs, name, netdev);
614c4892
BP
267
268 n++;
269
b5d57fc8 270 *netdevp = &netdev->up;
614c4892
BP
271
272 return 0;
273}
274
275static void
b5d57fc8 276netdev_dummy_destroy(struct netdev *netdev_)
614c4892 277{
b5d57fc8 278 struct netdev_dummy *netdev = netdev_dummy_cast(netdev_);
eab5611a 279 size_t i;
614c4892 280
b5d57fc8
BP
281 shash_find_and_delete(&dummy_netdevs,
282 netdev_get_name(netdev_));
eab5611a
BP
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);
b5d57fc8 288 free(netdev);
614c4892
BP
289}
290
8073dd31 291static int
b5d57fc8 292netdev_dummy_get_config(const struct netdev *netdev_, struct smap *args)
8073dd31 293{
b5d57fc8 294 struct netdev_dummy *netdev = netdev_dummy_cast(netdev_);
8073dd31 295
b5d57fc8
BP
296 if (netdev->ifindex >= 0) {
297 smap_add_format(args, "ifindex", "%d", netdev->ifindex);
8073dd31 298 }
eab5611a
BP
299 if (netdev->pstream) {
300 smap_add(args, "pstream", pstream_get_name(netdev->pstream));
301 }
8073dd31
NM
302 return 0;
303}
304
305static int
b5d57fc8 306netdev_dummy_set_config(struct netdev *netdev_, const struct smap *args)
614c4892 307{
b5d57fc8 308 struct netdev_dummy *netdev = netdev_dummy_cast(netdev_);
eab5611a 309 const char *pstream;
614c4892 310
b5d57fc8 311 netdev->ifindex = smap_get_int(args, "ifindex", -EOPNOTSUPP);
eab5611a
BP
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) {
10a89ef0
BP
325 VLOG_WARN("%s: open failed (%s)",
326 pstream, ovs_strerror(error));
eab5611a
BP
327 }
328 }
329 }
614c4892
BP
330 return 0;
331}
332
7b6b0ef4 333static int
796223f5 334netdev_dummy_rx_open(struct netdev *netdev_, struct netdev_rx **rxp)
7b6b0ef4 335{
b5d57fc8 336 struct netdev_dummy *netdev = netdev_dummy_cast(netdev_);
796223f5
BP
337 struct netdev_rx_dummy *rx;
338
339 rx = xmalloc(sizeof *rx);
b5d57fc8
BP
340 netdev_rx_init(&rx->up, &netdev->up, &netdev_rx_dummy_class);
341 list_push_back(&netdev->rxes, &rx->node);
796223f5 342 list_init(&rx->recv_queue);
e34cfdd9 343 rx->recv_queue_len = 0;
796223f5
BP
344
345 *rxp = &rx->up;
7b6b0ef4
BP
346 return 0;
347}
348
349static int
796223f5 350netdev_rx_dummy_recv(struct netdev_rx *rx_, void *buffer, size_t size)
fbac791a 351{
796223f5 352 struct netdev_rx_dummy *rx = netdev_rx_dummy_cast(rx_);
fbac791a 353 struct ofpbuf *packet;
78945f19 354 size_t packet_size;
fbac791a 355
796223f5 356 if (list_is_empty(&rx->recv_queue)) {
fbac791a
BP
357 return -EAGAIN;
358 }
359
796223f5 360 packet = ofpbuf_from_list(list_pop_front(&rx->recv_queue));
e34cfdd9 361 rx->recv_queue_len--;
fbac791a
BP
362 if (packet->size > size) {
363 return -EMSGSIZE;
364 }
78945f19 365 packet_size = packet->size;
fbac791a
BP
366
367 memcpy(buffer, packet->data, packet->size);
368 ofpbuf_delete(packet);
369
78945f19 370 return packet_size;
fbac791a
BP
371}
372
373static void
796223f5 374netdev_rx_dummy_destroy(struct netdev_rx *rx_)
7b6b0ef4 375{
796223f5
BP
376 struct netdev_rx_dummy *rx = netdev_rx_dummy_cast(rx_);
377 list_remove(&rx->node);
378 ofpbuf_list_delete(&rx->recv_queue);
379 free(rx);
380}
381
382static void
383netdev_rx_dummy_wait(struct netdev_rx *rx_)
384{
385 struct netdev_rx_dummy *rx = netdev_rx_dummy_cast(rx_);
386 if (!list_is_empty(&rx->recv_queue)) {
fbac791a
BP
387 poll_immediate_wake();
388 }
389}
390
391static int
796223f5 392netdev_rx_dummy_drain(struct netdev_rx *rx_)
fbac791a 393{
796223f5
BP
394 struct netdev_rx_dummy *rx = netdev_rx_dummy_cast(rx_);
395 ofpbuf_list_delete(&rx->recv_queue);
e34cfdd9 396 rx->recv_queue_len = 0;
fbac791a 397 return 0;
7b6b0ef4
BP
398}
399
02d5bfe3 400static int
eab5611a 401netdev_dummy_send(struct netdev *netdev, const void *buffer, size_t size)
02d5bfe3 402{
b5d57fc8 403 struct netdev_dummy *dev = netdev_dummy_cast(netdev);
eab5611a
BP
404 size_t i;
405
406 if (size < ETH_HEADER_LEN) {
407 return EMSGSIZE;
408 } else {
409 const struct eth_header *eth = buffer;
410 int max_size;
411
412 max_size = dev->mtu + ETH_HEADER_LEN;
413 if (eth->eth_type == htons(ETH_TYPE_VLAN)) {
414 max_size += VLAN_HEADER_LEN;
415 }
416 if (size > max_size) {
417 return EMSGSIZE;
418 }
419 }
02d5bfe3
BP
420
421 dev->stats.tx_packets++;
422 dev->stats.tx_bytes += size;
423
eab5611a
BP
424 for (i = 0; i < dev->n_streams; i++) {
425 struct dummy_stream *s = &dev->streams[i];
426
427 if (list_size(&s->txq) < NETDEV_DUMMY_MAX_QUEUE) {
428 struct ofpbuf *b;
429
430 b = ofpbuf_clone_data_with_headroom(buffer, size, 2);
431 put_unaligned_be16(ofpbuf_push_uninit(b, 2), htons(size));
432 list_push_back(&s->txq, &b->list_node);
433 }
434 }
435
02d5bfe3
BP
436 return 0;
437}
438
614c4892
BP
439static int
440netdev_dummy_set_etheraddr(struct netdev *netdev,
441 const uint8_t mac[ETH_ADDR_LEN])
442{
b5d57fc8 443 struct netdev_dummy *dev = netdev_dummy_cast(netdev);
614c4892
BP
444
445 if (!eth_addr_equals(dev->hwaddr, mac)) {
446 memcpy(dev->hwaddr, mac, ETH_ADDR_LEN);
b5d57fc8 447 netdev_dummy_poll_notify(dev);
614c4892
BP
448 }
449
450 return 0;
451}
452
453static int
454netdev_dummy_get_etheraddr(const struct netdev *netdev,
455 uint8_t mac[ETH_ADDR_LEN])
456{
b5d57fc8 457 const struct netdev_dummy *dev = netdev_dummy_cast(netdev);
614c4892
BP
458
459 memcpy(mac, dev->hwaddr, ETH_ADDR_LEN);
460 return 0;
461}
462
463static int
464netdev_dummy_get_mtu(const struct netdev *netdev, int *mtup)
465{
b5d57fc8 466 const struct netdev_dummy *dev = netdev_dummy_cast(netdev);
614c4892
BP
467
468 *mtup = dev->mtu;
469 return 0;
470}
471
9b020780
PS
472static int
473netdev_dummy_set_mtu(const struct netdev *netdev, int mtu)
474{
b5d57fc8 475 struct netdev_dummy *dev = netdev_dummy_cast(netdev);
9b020780
PS
476
477 dev->mtu = mtu;
478 return 0;
479}
480
614c4892
BP
481static int
482netdev_dummy_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
483{
b5d57fc8 484 const struct netdev_dummy *dev = netdev_dummy_cast(netdev);
614c4892
BP
485
486 *stats = dev->stats;
487 return 0;
488}
489
490static int
491netdev_dummy_set_stats(struct netdev *netdev, const struct netdev_stats *stats)
492{
b5d57fc8 493 struct netdev_dummy *dev = netdev_dummy_cast(netdev);
614c4892
BP
494
495 dev->stats = *stats;
496 return 0;
497}
498
8073dd31
NM
499static int
500netdev_dummy_get_ifindex(const struct netdev *netdev)
501{
b5d57fc8 502 struct netdev_dummy *dev = netdev_dummy_cast(netdev);
8073dd31
NM
503
504 return dev->ifindex;
505}
506
614c4892 507static int
b5d57fc8 508netdev_dummy_update_flags(struct netdev *netdev_,
614c4892
BP
509 enum netdev_flags off, enum netdev_flags on,
510 enum netdev_flags *old_flagsp)
511{
b5d57fc8 512 struct netdev_dummy *netdev = netdev_dummy_cast(netdev_);
95d4ec33 513
614c4892
BP
514 if ((off | on) & ~(NETDEV_UP | NETDEV_PROMISC)) {
515 return EINVAL;
516 }
517
b5d57fc8
BP
518 *old_flagsp = netdev->flags;
519 netdev->flags |= on;
520 netdev->flags &= ~off;
521 if (*old_flagsp != netdev->flags) {
522 netdev_dummy_poll_notify(netdev);
614c4892
BP
523 }
524 return 0;
525}
526
ac4d3bcb
EJ
527static unsigned int
528netdev_dummy_change_seq(const struct netdev *netdev)
529{
b5d57fc8 530 return netdev_dummy_cast(netdev)->change_seq;
ac4d3bcb 531}
614c4892
BP
532\f
533/* Helper functions. */
534
535static void
b5d57fc8 536netdev_dummy_poll_notify(struct netdev_dummy *dev)
614c4892 537{
ac4d3bcb
EJ
538 dev->change_seq++;
539 if (!dev->change_seq) {
540 dev->change_seq++;
541 }
614c4892
BP
542}
543
544static const struct netdev_class dummy_class = {
545 "dummy",
546 NULL, /* init */
eab5611a
BP
547 netdev_dummy_run,
548 netdev_dummy_wait,
614c4892
BP
549
550 netdev_dummy_create,
551 netdev_dummy_destroy,
8073dd31
NM
552 netdev_dummy_get_config,
553 netdev_dummy_set_config,
f431bf7d 554 NULL, /* get_tunnel_config */
614c4892 555
796223f5 556 netdev_dummy_rx_open,
614c4892 557
02d5bfe3 558 netdev_dummy_send, /* send */
614c4892
BP
559 NULL, /* send_wait */
560
561 netdev_dummy_set_etheraddr,
562 netdev_dummy_get_etheraddr,
563 netdev_dummy_get_mtu,
9b020780 564 netdev_dummy_set_mtu,
8073dd31 565 netdev_dummy_get_ifindex,
614c4892 566 NULL, /* get_carrier */
65c3058c 567 NULL, /* get_carrier_resets */
63331829 568 NULL, /* get_miimon */
614c4892
BP
569 netdev_dummy_get_stats,
570 netdev_dummy_set_stats,
571
572 NULL, /* get_features */
573 NULL, /* set_advertisements */
614c4892
BP
574
575 NULL, /* set_policing */
576 NULL, /* get_qos_types */
577 NULL, /* get_qos_capabilities */
578 NULL, /* get_qos */
579 NULL, /* set_qos */
580 NULL, /* get_queue */
581 NULL, /* set_queue */
582 NULL, /* delete_queue */
583 NULL, /* get_queue_stats */
584 NULL, /* dump_queues */
585 NULL, /* dump_queue_stats */
586
587 NULL, /* get_in4 */
588 NULL, /* set_in4 */
589 NULL, /* get_in6 */
590 NULL, /* add_router */
591 NULL, /* get_next_hop */
275707c3 592 NULL, /* get_status */
614c4892
BP
593 NULL, /* arp_lookup */
594
595 netdev_dummy_update_flags,
596
ac4d3bcb 597 netdev_dummy_change_seq
614c4892
BP
598};
599
796223f5
BP
600static const struct netdev_rx_class netdev_rx_dummy_class = {
601 netdev_rx_dummy_destroy,
602 netdev_rx_dummy_recv,
603 netdev_rx_dummy_wait,
604 netdev_rx_dummy_drain,
605};
606
fbac791a
BP
607static struct ofpbuf *
608eth_from_packet_or_flow(const char *s)
609{
610 enum odp_key_fitness fitness;
611 struct ofpbuf *packet;
612 struct ofpbuf odp_key;
613 struct flow flow;
614 int error;
615
616 if (!eth_from_hex(s, &packet)) {
617 return packet;
618 }
619
620 /* Convert string to datapath key.
621 *
622 * It would actually be nicer to parse an OpenFlow-like flow key here, but
623 * the code for that currently calls exit() on parse error. We have to
624 * settle for parsing a datapath key for now.
625 */
626 ofpbuf_init(&odp_key, 0);
e6cc0bab 627 error = odp_flow_from_string(s, NULL, &odp_key, NULL);
fbac791a
BP
628 if (error) {
629 ofpbuf_uninit(&odp_key);
630 return NULL;
631 }
632
633 /* Convert odp_key to flow. */
634 fitness = odp_flow_key_to_flow(odp_key.data, odp_key.size, &flow);
635 if (fitness == ODP_FIT_ERROR) {
636 ofpbuf_uninit(&odp_key);
637 return NULL;
638 }
639
640 packet = ofpbuf_new(0);
641 flow_compose(packet, &flow);
642
643 ofpbuf_uninit(&odp_key);
644 return packet;
645}
646
323cc924 647static void
eab5611a 648netdev_dummy_queue_packet__(struct netdev_rx_dummy *rx, struct ofpbuf *packet)
2273ea5a 649{
eab5611a
BP
650 list_push_back(&rx->recv_queue, &packet->list_node);
651 rx->recv_queue_len++;
652}
2273ea5a 653
eab5611a
BP
654static void
655netdev_dummy_queue_packet(struct netdev_dummy *dummy, struct ofpbuf *packet)
656{
657 struct netdev_rx_dummy *rx, *prev;
658
659 prev = NULL;
2273ea5a
BP
660 LIST_FOR_EACH (rx, node, &dummy->rxes) {
661 if (rx->recv_queue_len < NETDEV_DUMMY_MAX_QUEUE) {
eab5611a
BP
662 if (prev) {
663 netdev_dummy_queue_packet__(prev, ofpbuf_clone(packet));
664 }
665 prev = rx;
2273ea5a
BP
666 }
667 }
eab5611a
BP
668 if (prev) {
669 netdev_dummy_queue_packet__(prev, packet);
670 } else {
671 ofpbuf_delete(packet);
672 }
2273ea5a
BP
673}
674
fbac791a
BP
675static void
676netdev_dummy_receive(struct unixctl_conn *conn,
677 int argc, const char *argv[], void *aux OVS_UNUSED)
678{
b5d57fc8 679 struct netdev_dummy *dummy_dev;
fbac791a
BP
680 int i;
681
b5d57fc8 682 dummy_dev = shash_find_data(&dummy_netdevs, argv[1]);
fbac791a 683 if (!dummy_dev) {
bde9f75d 684 unixctl_command_reply_error(conn, "no such dummy netdev");
fbac791a
BP
685 return;
686 }
687
fbac791a 688 for (i = 2; i < argc; i++) {
fbac791a
BP
689 struct ofpbuf *packet;
690
691 packet = eth_from_packet_or_flow(argv[i]);
692 if (!packet) {
bde9f75d 693 unixctl_command_reply_error(conn, "bad packet syntax");
fbac791a
BP
694 return;
695 }
696
02d5bfe3
BP
697 dummy_dev->stats.rx_packets++;
698 dummy_dev->stats.rx_bytes += packet->size;
699
eab5611a 700 netdev_dummy_queue_packet(dummy_dev, packet);
fbac791a
BP
701 }
702
323cc924 703 unixctl_command_reply(conn, NULL);
fbac791a
BP
704}
705
95d4ec33 706static void
b5d57fc8 707netdev_dummy_set_admin_state__(struct netdev_dummy *dev, bool admin_state)
95d4ec33
EJ
708{
709 enum netdev_flags old_flags;
710
711 if (admin_state) {
b5d57fc8 712 netdev_dummy_update_flags(&dev->up, 0, NETDEV_UP, &old_flags);
95d4ec33 713 } else {
b5d57fc8 714 netdev_dummy_update_flags(&dev->up, NETDEV_UP, 0, &old_flags);
95d4ec33
EJ
715 }
716}
717
718static void
719netdev_dummy_set_admin_state(struct unixctl_conn *conn, int argc,
720 const char *argv[], void *aux OVS_UNUSED)
721{
722 bool up;
723
724 if (!strcasecmp(argv[argc - 1], "up")) {
725 up = true;
726 } else if ( !strcasecmp(argv[argc - 1], "down")) {
727 up = false;
728 } else {
729 unixctl_command_reply_error(conn, "Invalid Admin State");
730 return;
731 }
732
733 if (argc > 2) {
b5d57fc8 734 struct netdev_dummy *dummy_dev;
95d4ec33 735
b5d57fc8 736 dummy_dev = shash_find_data(&dummy_netdevs, argv[1]);
95d4ec33 737 if (dummy_dev) {
b5d57fc8 738 netdev_dummy_set_admin_state__(dummy_dev, up);
95d4ec33
EJ
739 } else {
740 unixctl_command_reply_error(conn, "Unknown Dummy Interface");
741 return;
742 }
743 } else {
744 struct shash_node *node;
745
b5d57fc8
BP
746 SHASH_FOR_EACH (node, &dummy_netdevs) {
747 netdev_dummy_set_admin_state__(node->data, up);
95d4ec33
EJ
748 }
749 }
750 unixctl_command_reply(conn, "OK");
751}
752
614c4892 753void
0cbfe35d 754netdev_dummy_register(bool override)
614c4892 755{
fbac791a
BP
756 unixctl_command_register("netdev-dummy/receive", "NAME PACKET|FLOW...",
757 2, INT_MAX, netdev_dummy_receive, NULL);
95d4ec33
EJ
758 unixctl_command_register("netdev-dummy/set-admin-state",
759 "[netdev] up|down", 1, 2,
760 netdev_dummy_set_admin_state, NULL);
0cbfe35d
BP
761
762 if (override) {
763 struct sset types;
764 const char *type;
765
766 sset_init(&types);
767 netdev_enumerate_types(&types);
768 SSET_FOR_EACH (type, &types) {
769 if (!netdev_unregister_provider(type)) {
770 struct netdev_class *class;
771
772 class = xmalloc(sizeof *class);
773 *class = dummy_class;
774 class->type = xstrdup(type);
775 netdev_register_provider(class);
776 }
777 }
778 sset_destroy(&types);
779 }
780 netdev_register_provider(&dummy_class);
c060c4cf 781
7c54c27f 782 netdev_vport_tunnel_register();
614c4892 783}