Merge branch 'mainstream'
[sliver-openvswitch.git] / lib / netdev.c
1 /*
2  * Copyright (c) 2008, 2009, 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 #include "netdev.h"
19
20 #include <errno.h>
21 #include <inttypes.h>
22 #include <netinet/in.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <unistd.h>
26
27 #include "coverage.h"
28 #include "dpif.h"
29 #include "dynamic-string.h"
30 #include "fatal-signal.h"
31 #include "hash.h"
32 #include "list.h"
33 #include "netdev-dpdk.h"
34 #include "netdev-provider.h"
35 #include "netdev-vport.h"
36 #include "ofpbuf.h"
37 #include "openflow/openflow.h"
38 #include "packets.h"
39 #include "poll-loop.h"
40 #include "shash.h"
41 #include "smap.h"
42 #include "sset.h"
43 #include "svec.h"
44 #include "vlog.h"
45
46 VLOG_DEFINE_THIS_MODULE(netdev);
47
48 COVERAGE_DEFINE(netdev_received);
49 COVERAGE_DEFINE(netdev_sent);
50 COVERAGE_DEFINE(netdev_add_router);
51 COVERAGE_DEFINE(netdev_get_stats);
52
53 struct netdev_saved_flags {
54     struct netdev *netdev;
55     struct list node;           /* In struct netdev's saved_flags_list. */
56     enum netdev_flags saved_flags;
57     enum netdev_flags saved_values;
58 };
59
60 /* Protects 'netdev_shash' and the mutable members of struct netdev. */
61 static struct ovs_mutex netdev_mutex = OVS_MUTEX_INITIALIZER;
62
63 /* All created network devices. */
64 static struct shash netdev_shash OVS_GUARDED_BY(netdev_mutex)
65     = SHASH_INITIALIZER(&netdev_shash);
66
67 /* Protects 'netdev_classes' against insertions or deletions.
68  *
69  * This is a recursive mutex to allow recursive acquisition when calling into
70  * providers.  For example, netdev_run() calls into provider 'run' functions,
71  * which might reasonably want to call one of the netdev functions that takes
72  * netdev_class_mutex. */
73 static struct ovs_mutex netdev_class_mutex OVS_ACQ_BEFORE(netdev_mutex);
74
75 /* Contains 'struct netdev_registered_class'es. */
76 static struct hmap netdev_classes OVS_GUARDED_BY(netdev_class_mutex)
77     = HMAP_INITIALIZER(&netdev_classes);
78
79 struct netdev_registered_class {
80     struct hmap_node hmap_node; /* In 'netdev_classes', by class->type. */
81     const struct netdev_class *class;
82     atomic_int ref_cnt;         /* Number of 'struct netdev's of this class. */
83 };
84
85 /* This is set pretty low because we probably won't learn anything from the
86  * additional log messages. */
87 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
88
89 static void restore_all_flags(void *aux OVS_UNUSED);
90 void update_device_args(struct netdev *, const struct shash *args);
91
92 int
93 netdev_n_rxq(const struct netdev *netdev)
94 {
95     return netdev->n_rxq;
96 }
97
98 bool
99 netdev_is_pmd(const struct netdev *netdev)
100 {
101     return !strcmp(netdev->netdev_class->type, "dpdk");
102 }
103
104 static void
105 netdev_class_mutex_initialize(void)
106     OVS_EXCLUDED(netdev_class_mutex, netdev_mutex)
107 {
108     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
109
110     if (ovsthread_once_start(&once)) {
111         ovs_mutex_init_recursive(&netdev_class_mutex);
112         ovsthread_once_done(&once);
113     }
114 }
115
116 static void
117 netdev_initialize(void)
118     OVS_EXCLUDED(netdev_class_mutex, netdev_mutex)
119 {
120     static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
121
122     if (ovsthread_once_start(&once)) {
123         netdev_class_mutex_initialize();
124
125         fatal_signal_add_hook(restore_all_flags, NULL, NULL, true);
126         netdev_vport_patch_register();
127
128 #ifdef __linux__
129         netdev_register_provider(&netdev_linux_class);
130         netdev_register_provider(&netdev_internal_class);
131         netdev_register_provider(&netdev_tap_class);
132         netdev_vport_tunnel_register();
133 #endif
134 #if defined(__FreeBSD__) || defined(__NetBSD__)
135         netdev_register_provider(&netdev_tap_class);
136         netdev_register_provider(&netdev_bsd_class);
137 #endif
138         netdev_register_provider(&netdev_tunnel_class);
139         netdev_register_provider(&netdev_pltap_class);
140         netdev_dpdk_register();
141
142         ovsthread_once_done(&once);
143     }
144 }
145
146 /* Performs periodic work needed by all the various kinds of netdevs.
147  *
148  * If your program opens any netdevs, it must call this function within its
149  * main poll loop. */
150 void
151 netdev_run(void)
152     OVS_EXCLUDED(netdev_class_mutex, netdev_mutex)
153 {
154     struct netdev_registered_class *rc;
155
156     netdev_initialize();
157     ovs_mutex_lock(&netdev_class_mutex);
158     HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
159         if (rc->class->run) {
160             rc->class->run();
161         }
162     }
163     ovs_mutex_unlock(&netdev_class_mutex);
164 }
165
166 /* Arranges for poll_block() to wake up when netdev_run() needs to be called.
167  *
168  * If your program opens any netdevs, it must call this function within its
169  * main poll loop. */
170 void
171 netdev_wait(void)
172     OVS_EXCLUDED(netdev_class_mutex, netdev_mutex)
173 {
174     struct netdev_registered_class *rc;
175
176     ovs_mutex_lock(&netdev_class_mutex);
177     HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
178         if (rc->class->wait) {
179             rc->class->wait();
180         }
181     }
182     ovs_mutex_unlock(&netdev_class_mutex);
183 }
184
185 static struct netdev_registered_class *
186 netdev_lookup_class(const char *type)
187     OVS_REQ_RDLOCK(netdev_class_mutex)
188 {
189     struct netdev_registered_class *rc;
190
191     HMAP_FOR_EACH_WITH_HASH (rc, hmap_node, hash_string(type, 0),
192                              &netdev_classes) {
193         if (!strcmp(type, rc->class->type)) {
194             return rc;
195         }
196     }
197     return NULL;
198 }
199
200 /* Initializes and registers a new netdev provider.  After successful
201  * registration, new netdevs of that type can be opened using netdev_open(). */
202 int
203 netdev_register_provider(const struct netdev_class *new_class)
204     OVS_EXCLUDED(netdev_class_mutex, netdev_mutex)
205 {
206     int error;
207
208     netdev_class_mutex_initialize();
209     ovs_mutex_lock(&netdev_class_mutex);
210     if (netdev_lookup_class(new_class->type)) {
211         VLOG_WARN("attempted to register duplicate netdev provider: %s",
212                    new_class->type);
213         error = EEXIST;
214     } else {
215         error = new_class->init ? new_class->init() : 0;
216         if (!error) {
217             struct netdev_registered_class *rc;
218
219             rc = xmalloc(sizeof *rc);
220             hmap_insert(&netdev_classes, &rc->hmap_node,
221                         hash_string(new_class->type, 0));
222             rc->class = new_class;
223             atomic_init(&rc->ref_cnt, 0);
224         } else {
225             VLOG_ERR("failed to initialize %s network device class: %s",
226                      new_class->type, ovs_strerror(error));
227         }
228     }
229     ovs_mutex_unlock(&netdev_class_mutex);
230
231     return error;
232 }
233
234 /* Unregisters a netdev provider.  'type' must have been previously
235  * registered and not currently be in use by any netdevs.  After unregistration
236  * new netdevs of that type cannot be opened using netdev_open(). */
237 int
238 netdev_unregister_provider(const char *type)
239     OVS_EXCLUDED(netdev_class_mutex, netdev_mutex)
240 {
241     struct netdev_registered_class *rc;
242     int error;
243
244     ovs_mutex_lock(&netdev_class_mutex);
245     rc = netdev_lookup_class(type);
246     if (!rc) {
247         VLOG_WARN("attempted to unregister a netdev provider that is not "
248                   "registered: %s", type);
249         error = EAFNOSUPPORT;
250     } else {
251         int ref_cnt;
252
253         atomic_read(&rc->ref_cnt, &ref_cnt);
254         if (!ref_cnt) {
255             hmap_remove(&netdev_classes, &rc->hmap_node);
256             free(rc);
257             error = 0;
258         } else {
259             VLOG_WARN("attempted to unregister in use netdev provider: %s",
260                       type);
261             error = EBUSY;
262         }
263     }
264     ovs_mutex_unlock(&netdev_class_mutex);
265
266     return error;
267 }
268
269 /* Clears 'types' and enumerates the types of all currently registered netdev
270  * providers into it.  The caller must first initialize the sset. */
271 void
272 netdev_enumerate_types(struct sset *types)
273     OVS_EXCLUDED(netdev_mutex)
274 {
275     struct netdev_registered_class *rc;
276
277     netdev_initialize();
278     sset_clear(types);
279
280     ovs_mutex_lock(&netdev_class_mutex);
281     HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
282         sset_add(types, rc->class->type);
283     }
284     ovs_mutex_unlock(&netdev_class_mutex);
285 }
286
287 /* Check that the network device name is not the same as any of the registered
288  * vport providers' dpif_port name (dpif_port is NULL if the vport provider
289  * does not define it) or the datapath internal port name (e.g. ovs-system).
290  *
291  * Returns true if there is a name conflict, false otherwise. */
292 bool
293 netdev_is_reserved_name(const char *name)
294     OVS_EXCLUDED(netdev_mutex)
295 {
296     struct netdev_registered_class *rc;
297
298     netdev_initialize();
299
300     ovs_mutex_lock(&netdev_class_mutex);
301     HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
302         const char *dpif_port = netdev_vport_class_get_dpif_port(rc->class);
303         if (dpif_port && !strcmp(dpif_port, name)) {
304             ovs_mutex_unlock(&netdev_class_mutex);
305             return true;
306         }
307     }
308     ovs_mutex_unlock(&netdev_class_mutex);
309
310     if (!strncmp(name, "ovs-", 4)) {
311         struct sset types;
312         const char *type;
313
314         sset_init(&types);
315         dp_enumerate_types(&types);
316         SSET_FOR_EACH (type, &types) {
317             if (!strcmp(name+4, type)) {
318                 sset_destroy(&types);
319                 return true;
320             }
321         }
322         sset_destroy(&types);
323     }
324
325     return false;
326 }
327
328 /* Opens the network device named 'name' (e.g. "eth0") of the specified 'type'
329  * (e.g. "system") and returns zero if successful, otherwise a positive errno
330  * value.  On success, sets '*netdevp' to the new network device, otherwise to
331  * null.
332  *
333  * Some network devices may need to be configured (with netdev_set_config())
334  * before they can be used. */
335 int
336 netdev_open(const char *name, const char *type, struct netdev **netdevp)
337     OVS_EXCLUDED(netdev_mutex)
338 {
339     struct netdev *netdev;
340     int error;
341
342     netdev_initialize();
343
344     ovs_mutex_lock(&netdev_class_mutex);
345     ovs_mutex_lock(&netdev_mutex);
346     netdev = shash_find_data(&netdev_shash, name);
347     if (!netdev) {
348         struct netdev_registered_class *rc;
349
350         rc = netdev_lookup_class(type && type[0] ? type : "system");
351         if (rc) {
352             netdev = rc->class->alloc();
353             if (netdev) {
354                 memset(netdev, 0, sizeof *netdev);
355                 netdev->netdev_class = rc->class;
356                 netdev->name = xstrdup(name);
357                 netdev->change_seq = 1;
358                 netdev->node = shash_add(&netdev_shash, name, netdev);
359
360                 /* By default enable one rx queue per netdev. */
361                 if (netdev->netdev_class->rxq_alloc) {
362                     netdev->n_rxq = 1;
363                 } else {
364                     netdev->n_rxq = 0;
365                 }
366                 list_init(&netdev->saved_flags_list);
367
368                 error = rc->class->construct(netdev);
369                 if (!error) {
370                     int old_ref_cnt;
371
372                     atomic_add(&rc->ref_cnt, 1, &old_ref_cnt);
373                     netdev_change_seq_changed(netdev);
374                 } else {
375                     free(netdev->name);
376                     ovs_assert(list_is_empty(&netdev->saved_flags_list));
377                     shash_delete(&netdev_shash, netdev->node);
378                     rc->class->dealloc(netdev);
379                 }
380             } else {
381                 error = ENOMEM;
382             }
383         } else {
384             VLOG_WARN("could not create netdev %s of unknown type %s",
385                       name, type);
386             error = EAFNOSUPPORT;
387         }
388     } else {
389         error = 0;
390     }
391
392     ovs_mutex_unlock(&netdev_mutex);
393     ovs_mutex_unlock(&netdev_class_mutex);
394
395     if (!error) {
396         netdev->ref_cnt++;
397         *netdevp = netdev;
398     } else {
399         *netdevp = NULL;
400     }
401     return error;
402 }
403
404 /* Returns a reference to 'netdev_' for the caller to own. Returns null if
405  * 'netdev_' is null. */
406 struct netdev *
407 netdev_ref(const struct netdev *netdev_)
408     OVS_EXCLUDED(netdev_mutex)
409 {
410     struct netdev *netdev = CONST_CAST(struct netdev *, netdev_);
411
412     if (netdev) {
413         ovs_mutex_lock(&netdev_mutex);
414         ovs_assert(netdev->ref_cnt > 0);
415         netdev->ref_cnt++;
416         ovs_mutex_unlock(&netdev_mutex);
417     }
418     return netdev;
419 }
420
421 /* Reconfigures the device 'netdev' with 'args'.  'args' may be empty
422  * or NULL if none are needed. */
423 int
424 netdev_set_config(struct netdev *netdev, const struct smap *args)
425     OVS_EXCLUDED(netdev_mutex)
426 {
427     if (netdev->netdev_class->set_config) {
428         const struct smap no_args = SMAP_INITIALIZER(&no_args);
429         int error;
430
431         error = netdev->netdev_class->set_config(netdev,
432                                                  args ? args : &no_args);
433         if (error) {
434             VLOG_WARN("%s: could not set configuration (%s)",
435                       netdev_get_name(netdev), ovs_strerror(error));
436         }
437         return error;
438     } else if (args && !smap_is_empty(args)) {
439         VLOG_WARN("%s: arguments provided to device that is not configurable",
440                   netdev_get_name(netdev));
441     }
442     return 0;
443 }
444
445 /* Returns the current configuration for 'netdev' in 'args'.  The caller must
446  * have already initialized 'args' with smap_init().  Returns 0 on success, in
447  * which case 'args' will be filled with 'netdev''s configuration.  On failure
448  * returns a positive errno value, in which case 'args' will be empty.
449  *
450  * The caller owns 'args' and its contents and must eventually free them with
451  * smap_destroy(). */
452 int
453 netdev_get_config(const struct netdev *netdev, struct smap *args)
454     OVS_EXCLUDED(netdev_mutex)
455 {
456     int error;
457
458     smap_clear(args);
459     if (netdev->netdev_class->get_config) {
460         error = netdev->netdev_class->get_config(netdev, args);
461         if (error) {
462             smap_clear(args);
463         }
464     } else {
465         error = 0;
466     }
467
468     return error;
469 }
470
471 const struct netdev_tunnel_config *
472 netdev_get_tunnel_config(const struct netdev *netdev)
473     OVS_EXCLUDED(netdev_mutex)
474 {
475     if (netdev->netdev_class->get_tunnel_config) {
476         return netdev->netdev_class->get_tunnel_config(netdev);
477     } else {
478         return NULL;
479     }
480 }
481
482 static void
483 netdev_unref(struct netdev *dev)
484     OVS_RELEASES(netdev_mutex)
485 {
486     ovs_assert(dev->ref_cnt);
487     if (!--dev->ref_cnt) {
488         const struct netdev_class *class = dev->netdev_class;
489         struct netdev_registered_class *rc;
490         int old_ref_cnt;
491
492         dev->netdev_class->destruct(dev);
493
494         shash_delete(&netdev_shash, dev->node);
495         free(dev->name);
496         dev->netdev_class->dealloc(dev);
497         ovs_mutex_unlock(&netdev_mutex);
498
499         ovs_mutex_lock(&netdev_class_mutex);
500         rc = netdev_lookup_class(class->type);
501         atomic_sub(&rc->ref_cnt, 1, &old_ref_cnt);
502         ovs_assert(old_ref_cnt > 0);
503         ovs_mutex_unlock(&netdev_class_mutex);
504     } else {
505         ovs_mutex_unlock(&netdev_mutex);
506     }
507 }
508
509 /* Closes and destroys 'netdev'. */
510 void
511 netdev_close(struct netdev *netdev)
512     OVS_EXCLUDED(netdev_mutex)
513 {
514     if (netdev) {
515         ovs_mutex_lock(&netdev_mutex);
516         netdev_unref(netdev);
517     }
518 }
519
520 /* Parses 'netdev_name_', which is of the form [type@]name into its component
521  * pieces.  'name' and 'type' must be freed by the caller. */
522 void
523 netdev_parse_name(const char *netdev_name_, char **name, char **type)
524 {
525     char *netdev_name = xstrdup(netdev_name_);
526     char *separator;
527
528     separator = strchr(netdev_name, '@');
529     if (separator) {
530         *separator = '\0';
531         *type = netdev_name;
532         *name = xstrdup(separator + 1);
533     } else {
534         *name = netdev_name;
535         *type = xstrdup("system");
536     }
537 }
538
539 /* Attempts to open a netdev_rxq handle for obtaining packets received on
540  * 'netdev'.  On success, returns 0 and stores a nonnull 'netdev_rxq *' into
541  * '*rxp'.  On failure, returns a positive errno value and stores NULL into
542  * '*rxp'.
543  *
544  * Some kinds of network devices might not support receiving packets.  This
545  * function returns EOPNOTSUPP in that case.*/
546 int
547 netdev_rxq_open(struct netdev *netdev, struct netdev_rxq **rxp, int id)
548     OVS_EXCLUDED(netdev_mutex)
549 {
550     int error;
551
552     if (netdev->netdev_class->rxq_alloc && id < netdev->n_rxq) {
553         struct netdev_rxq *rx = netdev->netdev_class->rxq_alloc();
554         if (rx) {
555             rx->netdev = netdev;
556             rx->queue_id = id;
557             error = netdev->netdev_class->rxq_construct(rx);
558             if (!error) {
559                 ovs_mutex_lock(&netdev_mutex);
560                 netdev->ref_cnt++;
561                 ovs_mutex_unlock(&netdev_mutex);
562
563                 *rxp = rx;
564                 return 0;
565             }
566             netdev->netdev_class->rxq_dealloc(rx);
567         } else {
568             error = ENOMEM;
569         }
570     } else {
571         error = EOPNOTSUPP;
572     }
573
574     *rxp = NULL;
575     return error;
576 }
577
578 /* Closes 'rx'. */
579 void
580 netdev_rxq_close(struct netdev_rxq *rx)
581     OVS_EXCLUDED(netdev_mutex)
582 {
583     if (rx) {
584         struct netdev *netdev = rx->netdev;
585         netdev->netdev_class->rxq_destruct(rx);
586         netdev->netdev_class->rxq_dealloc(rx);
587         netdev_close(netdev);
588     }
589 }
590
591 /* Attempts to receive batch of packets from 'rx'.
592  *
593  * Returns EAGAIN immediately if no packet is ready to be received.
594  *
595  * Returns EMSGSIZE, and discards the packet, if the received packet is longer
596  * than 'ofpbuf_tailroom(buffer)'.
597  *
598  * It is advised that the tailroom of 'buffer' should be
599  * VLAN_HEADER_LEN bytes longer than the MTU to allow space for an
600  * out-of-band VLAN header to be added to the packet.  At the very least,
601  * 'buffer' must have at least ETH_TOTAL_MIN bytes of tailroom.
602  *
603  * This function may be set to null if it would always return EOPNOTSUPP
604  * anyhow. */
605 int
606 netdev_rxq_recv(struct netdev_rxq *rx, struct ofpbuf **buffers, int *cnt)
607 {
608     int retval;
609
610     retval = rx->netdev->netdev_class->rxq_recv(rx, buffers, cnt);
611     if (!retval) {
612         COVERAGE_INC(netdev_received);
613     }
614     return retval;
615 }
616
617 /* Arranges for poll_block() to wake up when a packet is ready to be received
618  * on 'rx'. */
619 void
620 netdev_rxq_wait(struct netdev_rxq *rx)
621 {
622     rx->netdev->netdev_class->rxq_wait(rx);
623 }
624
625 /* Discards any packets ready to be received on 'rx'. */
626 int
627 netdev_rxq_drain(struct netdev_rxq *rx)
628 {
629     return (rx->netdev->netdev_class->rxq_drain
630             ? rx->netdev->netdev_class->rxq_drain(rx)
631             : 0);
632 }
633
634 /* Sends 'buffer' on 'netdev'.  Returns 0 if successful, otherwise a positive
635  * errno value.  Returns EAGAIN without blocking if the packet cannot be queued
636  * immediately.  Returns EMSGSIZE if a partial packet was transmitted or if
637  * the packet is too big or too small to transmit on the device.
638  *
639  * To retain ownership of 'buffer' caller can set may_steal to false.
640  *
641  * The kernel maintains a packet transmission queue, so the caller is not
642  * expected to do additional queuing of packets.
643  *
644  * Some network devices may not implement support for this function.  In such
645  * cases this function will always return EOPNOTSUPP. */
646 int
647 netdev_send(struct netdev *netdev, struct ofpbuf *buffer, bool may_steal)
648 {
649     int error;
650
651     error = (netdev->netdev_class->send
652              ? netdev->netdev_class->send(netdev, buffer, may_steal)
653              : EOPNOTSUPP);
654     if (!error) {
655         COVERAGE_INC(netdev_sent);
656     }
657     return error;
658 }
659
660 /* Registers with the poll loop to wake up from the next call to poll_block()
661  * when the packet transmission queue has sufficient room to transmit a packet
662  * with netdev_send().
663  *
664  * The kernel maintains a packet transmission queue, so the client is not
665  * expected to do additional queuing of packets.  Thus, this function is
666  * unlikely to ever be used.  It is included for completeness. */
667 void
668 netdev_send_wait(struct netdev *netdev)
669 {
670     if (netdev->netdev_class->send_wait) {
671         netdev->netdev_class->send_wait(netdev);
672     }
673 }
674
675 /* Attempts to set 'netdev''s MAC address to 'mac'.  Returns 0 if successful,
676  * otherwise a positive errno value. */
677 int
678 netdev_set_etheraddr(struct netdev *netdev, const uint8_t mac[ETH_ADDR_LEN])
679 {
680     return netdev->netdev_class->set_etheraddr(netdev, mac);
681 }
682
683 /* Retrieves 'netdev''s MAC address.  If successful, returns 0 and copies the
684  * the MAC address into 'mac'.  On failure, returns a positive errno value and
685  * clears 'mac' to all-zeros. */
686 int
687 netdev_get_etheraddr(const struct netdev *netdev, uint8_t mac[ETH_ADDR_LEN])
688 {
689     return netdev->netdev_class->get_etheraddr(netdev, mac);
690 }
691
692 /* Returns the name of the network device that 'netdev' represents,
693  * e.g. "eth0".  The caller must not modify or free the returned string. */
694 const char *
695 netdev_get_name(const struct netdev *netdev)
696 {
697     return netdev->name;
698 }
699
700 /* Retrieves the MTU of 'netdev'.  The MTU is the maximum size of transmitted
701  * (and received) packets, in bytes, not including the hardware header; thus,
702  * this is typically 1500 bytes for Ethernet devices.
703  *
704  * If successful, returns 0 and stores the MTU size in '*mtup'.  Returns
705  * EOPNOTSUPP if 'netdev' does not have an MTU (as e.g. some tunnels do not).
706  * On other failure, returns a positive errno value.  On failure, sets '*mtup'
707  * to 0. */
708 int
709 netdev_get_mtu(const struct netdev *netdev, int *mtup)
710 {
711     const struct netdev_class *class = netdev->netdev_class;
712     int error;
713
714     error = class->get_mtu ? class->get_mtu(netdev, mtup) : EOPNOTSUPP;
715     if (error) {
716         *mtup = 0;
717         if (error != EOPNOTSUPP) {
718             VLOG_DBG_RL(&rl, "failed to retrieve MTU for network device %s: "
719                          "%s", netdev_get_name(netdev), ovs_strerror(error));
720         }
721     }
722     return error;
723 }
724
725 /* Sets the MTU of 'netdev'.  The MTU is the maximum size of transmitted
726  * (and received) packets, in bytes.
727  *
728  * If successful, returns 0.  Returns EOPNOTSUPP if 'netdev' does not have an
729  * MTU (as e.g. some tunnels do not).  On other failure, returns a positive
730  * errno value. */
731 int
732 netdev_set_mtu(const struct netdev *netdev, int mtu)
733 {
734     const struct netdev_class *class = netdev->netdev_class;
735     int error;
736
737     error = class->set_mtu ? class->set_mtu(netdev, mtu) : EOPNOTSUPP;
738     if (error && error != EOPNOTSUPP) {
739         VLOG_DBG_RL(&rl, "failed to set MTU for network device %s: %s",
740                      netdev_get_name(netdev), ovs_strerror(error));
741     }
742
743     return error;
744 }
745
746 /* Returns the ifindex of 'netdev', if successful, as a positive number.  On
747  * failure, returns a negative errno value.
748  *
749  * The desired semantics of the ifindex value are a combination of those
750  * specified by POSIX for if_nametoindex() and by SNMP for ifIndex.  An ifindex
751  * value should be unique within a host and remain stable at least until
752  * reboot.  SNMP says an ifindex "ranges between 1 and the value of ifNumber"
753  * but many systems do not follow this rule anyhow.
754  *
755  * Some network devices may not implement support for this function.  In such
756  * cases this function will always return -EOPNOTSUPP.
757  */
758 int
759 netdev_get_ifindex(const struct netdev *netdev)
760 {
761     int (*get_ifindex)(const struct netdev *);
762
763     get_ifindex = netdev->netdev_class->get_ifindex;
764
765     return get_ifindex ? get_ifindex(netdev) : -EOPNOTSUPP;
766 }
767
768 /* Stores the features supported by 'netdev' into each of '*current',
769  * '*advertised', '*supported', and '*peer' that are non-null.  Each value is a
770  * bitmap of "enum ofp_port_features" bits, in host byte order.  Returns 0 if
771  * successful, otherwise a positive errno value.  On failure, all of the
772  * passed-in values are set to 0.
773  *
774  * Some network devices may not implement support for this function.  In such
775  * cases this function will always return EOPNOTSUPP. */
776 int
777 netdev_get_features(const struct netdev *netdev,
778                     enum netdev_features *current,
779                     enum netdev_features *advertised,
780                     enum netdev_features *supported,
781                     enum netdev_features *peer)
782 {
783     int (*get_features)(const struct netdev *netdev,
784                         enum netdev_features *current,
785                         enum netdev_features *advertised,
786                         enum netdev_features *supported,
787                         enum netdev_features *peer);
788     enum netdev_features dummy[4];
789     int error;
790
791     if (!current) {
792         current = &dummy[0];
793     }
794     if (!advertised) {
795         advertised = &dummy[1];
796     }
797     if (!supported) {
798         supported = &dummy[2];
799     }
800     if (!peer) {
801         peer = &dummy[3];
802     }
803
804     get_features = netdev->netdev_class->get_features;
805     error = get_features
806                     ? get_features(netdev, current, advertised, supported,
807                                    peer)
808                     : EOPNOTSUPP;
809     if (error) {
810         *current = *advertised = *supported = *peer = 0;
811     }
812     return error;
813 }
814
815 /* Returns the maximum speed of a network connection that has the NETDEV_F_*
816  * bits in 'features', in bits per second.  If no bits that indicate a speed
817  * are set in 'features', returns 'default_bps'. */
818 uint64_t
819 netdev_features_to_bps(enum netdev_features features,
820                        uint64_t default_bps)
821 {
822     enum {
823         F_1000000MB = NETDEV_F_1TB_FD,
824         F_100000MB = NETDEV_F_100GB_FD,
825         F_40000MB = NETDEV_F_40GB_FD,
826         F_10000MB = NETDEV_F_10GB_FD,
827         F_1000MB = NETDEV_F_1GB_HD | NETDEV_F_1GB_FD,
828         F_100MB = NETDEV_F_100MB_HD | NETDEV_F_100MB_FD,
829         F_10MB = NETDEV_F_10MB_HD | NETDEV_F_10MB_FD
830     };
831
832     return (  features & F_1000000MB ? UINT64_C(1000000000000)
833             : features & F_100000MB  ? UINT64_C(100000000000)
834             : features & F_40000MB   ? UINT64_C(40000000000)
835             : features & F_10000MB   ? UINT64_C(10000000000)
836             : features & F_1000MB    ? UINT64_C(1000000000)
837             : features & F_100MB     ? UINT64_C(100000000)
838             : features & F_10MB      ? UINT64_C(10000000)
839                                      : default_bps);
840 }
841
842 /* Returns true if any of the NETDEV_F_* bits that indicate a full-duplex link
843  * are set in 'features', otherwise false. */
844 bool
845 netdev_features_is_full_duplex(enum netdev_features features)
846 {
847     return (features & (NETDEV_F_10MB_FD | NETDEV_F_100MB_FD | NETDEV_F_1GB_FD
848                         | NETDEV_F_10GB_FD | NETDEV_F_40GB_FD
849                         | NETDEV_F_100GB_FD | NETDEV_F_1TB_FD)) != 0;
850 }
851
852 /* Set the features advertised by 'netdev' to 'advertise'.  Returns 0 if
853  * successful, otherwise a positive errno value. */
854 int
855 netdev_set_advertisements(struct netdev *netdev,
856                           enum netdev_features advertise)
857 {
858     return (netdev->netdev_class->set_advertisements
859             ? netdev->netdev_class->set_advertisements(
860                     netdev, advertise)
861             : EOPNOTSUPP);
862 }
863
864 /* If 'netdev' has an assigned IPv4 address, sets '*address' to that address
865  * and '*netmask' to its netmask and returns 0.  Otherwise, returns a positive
866  * errno value and sets '*address' to 0 (INADDR_ANY).
867  *
868  * The following error values have well-defined meanings:
869  *
870  *   - EADDRNOTAVAIL: 'netdev' has no assigned IPv4 address.
871  *
872  *   - EOPNOTSUPP: No IPv4 network stack attached to 'netdev'.
873  *
874  * 'address' or 'netmask' or both may be null, in which case the address or
875  * netmask is not reported. */
876 int
877 netdev_get_in4(const struct netdev *netdev,
878                struct in_addr *address_, struct in_addr *netmask_)
879 {
880     struct in_addr address;
881     struct in_addr netmask;
882     int error;
883
884     error = (netdev->netdev_class->get_in4
885              ? netdev->netdev_class->get_in4(netdev,
886                     &address, &netmask)
887              : EOPNOTSUPP);
888     if (address_) {
889         address_->s_addr = error ? 0 : address.s_addr;
890     }
891     if (netmask_) {
892         netmask_->s_addr = error ? 0 : netmask.s_addr;
893     }
894     return error;
895 }
896
897 /* Assigns 'addr' as 'netdev''s IPv4 address and 'mask' as its netmask.  If
898  * 'addr' is INADDR_ANY, 'netdev''s IPv4 address is cleared.  Returns a
899  * positive errno value. */
900 int
901 netdev_set_in4(struct netdev *netdev, struct in_addr addr, struct in_addr mask)
902 {
903     return (netdev->netdev_class->set_in4
904             ? netdev->netdev_class->set_in4(netdev, addr, mask)
905             : EOPNOTSUPP);
906 }
907
908 /* Obtains ad IPv4 address from device name and save the address in
909  * in4.  Returns 0 if successful, otherwise a positive errno value.
910  */
911 int
912 netdev_get_in4_by_name(const char *device_name, struct in_addr *in4)
913 {
914     struct netdev *netdev;
915     int error;
916
917     error = netdev_open(device_name, "system", &netdev);
918     if (error) {
919         in4->s_addr = htonl(0);
920         return error;
921     }
922
923     error = netdev_get_in4(netdev, in4, NULL);
924     netdev_close(netdev);
925     return error;
926 }
927
928 /* Adds 'router' as a default IP gateway for the TCP/IP stack that corresponds
929  * to 'netdev'. */
930 int
931 netdev_add_router(struct netdev *netdev, struct in_addr router)
932 {
933     COVERAGE_INC(netdev_add_router);
934     return (netdev->netdev_class->add_router
935             ? netdev->netdev_class->add_router(netdev, router)
936             : EOPNOTSUPP);
937 }
938
939 /* Looks up the next hop for 'host' for the TCP/IP stack that corresponds to
940  * 'netdev'.  If a route cannot not be determined, sets '*next_hop' to 0,
941  * '*netdev_name' to null, and returns a positive errno value.  Otherwise, if a
942  * next hop is found, stores the next hop gateway's address (0 if 'host' is on
943  * a directly connected network) in '*next_hop' and a copy of the name of the
944  * device to reach 'host' in '*netdev_name', and returns 0.  The caller is
945  * responsible for freeing '*netdev_name' (by calling free()). */
946 int
947 netdev_get_next_hop(const struct netdev *netdev,
948                     const struct in_addr *host, struct in_addr *next_hop,
949                     char **netdev_name)
950 {
951     int error = (netdev->netdev_class->get_next_hop
952                  ? netdev->netdev_class->get_next_hop(
953                         host, next_hop, netdev_name)
954                  : EOPNOTSUPP);
955     if (error) {
956         next_hop->s_addr = 0;
957         *netdev_name = NULL;
958     }
959     return error;
960 }
961
962 /* Populates 'smap' with status information.
963  *
964  * Populates 'smap' with 'netdev' specific status information.  This
965  * information may be used to populate the status column of the Interface table
966  * as defined in ovs-vswitchd.conf.db(5). */
967 int
968 netdev_get_status(const struct netdev *netdev, struct smap *smap)
969 {
970     return (netdev->netdev_class->get_status
971             ? netdev->netdev_class->get_status(netdev, smap)
972             : EOPNOTSUPP);
973 }
974
975 /* If 'netdev' has an assigned IPv6 address, sets '*in6' to that address and
976  * returns 0.  Otherwise, returns a positive errno value and sets '*in6' to
977  * all-zero-bits (in6addr_any).
978  *
979  * The following error values have well-defined meanings:
980  *
981  *   - EADDRNOTAVAIL: 'netdev' has no assigned IPv6 address.
982  *
983  *   - EOPNOTSUPP: No IPv6 network stack attached to 'netdev'.
984  *
985  * 'in6' may be null, in which case the address itself is not reported. */
986 int
987 netdev_get_in6(const struct netdev *netdev, struct in6_addr *in6)
988 {
989     struct in6_addr dummy;
990     int error;
991
992     error = (netdev->netdev_class->get_in6
993              ? netdev->netdev_class->get_in6(netdev,
994                     in6 ? in6 : &dummy)
995              : EOPNOTSUPP);
996     if (error && in6) {
997         memset(in6, 0, sizeof *in6);
998     }
999     return error;
1000 }
1001
1002 /* On 'netdev', turns off the flags in 'off' and then turns on the flags in
1003  * 'on'.  Returns 0 if successful, otherwise a positive errno value. */
1004 static int
1005 do_update_flags(struct netdev *netdev, enum netdev_flags off,
1006                 enum netdev_flags on, enum netdev_flags *old_flagsp,
1007                 struct netdev_saved_flags **sfp)
1008     OVS_EXCLUDED(netdev_mutex)
1009 {
1010     struct netdev_saved_flags *sf = NULL;
1011     enum netdev_flags old_flags;
1012     int error;
1013
1014     error = netdev->netdev_class->update_flags(netdev, off & ~on, on,
1015                                                &old_flags);
1016     if (error) {
1017         VLOG_WARN_RL(&rl, "failed to %s flags for network device %s: %s",
1018                      off || on ? "set" : "get", netdev_get_name(netdev),
1019                      ovs_strerror(error));
1020         old_flags = 0;
1021     } else if ((off || on) && sfp) {
1022         enum netdev_flags new_flags = (old_flags & ~off) | on;
1023         enum netdev_flags changed_flags = old_flags ^ new_flags;
1024         if (changed_flags) {
1025             ovs_mutex_lock(&netdev_mutex);
1026             *sfp = sf = xmalloc(sizeof *sf);
1027             sf->netdev = netdev;
1028             list_push_front(&netdev->saved_flags_list, &sf->node);
1029             sf->saved_flags = changed_flags;
1030             sf->saved_values = changed_flags & new_flags;
1031
1032             netdev->ref_cnt++;
1033             ovs_mutex_unlock(&netdev_mutex);
1034         }
1035     }
1036
1037     if (old_flagsp) {
1038         *old_flagsp = old_flags;
1039     }
1040     if (sfp) {
1041         *sfp = sf;
1042     }
1043
1044     return error;
1045 }
1046
1047 /* Obtains the current flags for 'netdev' and stores them into '*flagsp'.
1048  * Returns 0 if successful, otherwise a positive errno value.  On failure,
1049  * stores 0 into '*flagsp'. */
1050 int
1051 netdev_get_flags(const struct netdev *netdev_, enum netdev_flags *flagsp)
1052 {
1053     struct netdev *netdev = CONST_CAST(struct netdev *, netdev_);
1054     return do_update_flags(netdev, 0, 0, flagsp, NULL);
1055 }
1056
1057 /* Sets the flags for 'netdev' to 'flags'.
1058  * Returns 0 if successful, otherwise a positive errno value. */
1059 int
1060 netdev_set_flags(struct netdev *netdev, enum netdev_flags flags,
1061                  struct netdev_saved_flags **sfp)
1062 {
1063     return do_update_flags(netdev, -1, flags, NULL, sfp);
1064 }
1065
1066 /* Turns on the specified 'flags' on 'netdev':
1067  *
1068  *    - On success, returns 0.  If 'sfp' is nonnull, sets '*sfp' to a newly
1069  *      allocated 'struct netdev_saved_flags *' that may be passed to
1070  *      netdev_restore_flags() to restore the original values of 'flags' on
1071  *      'netdev' (this will happen automatically at program termination if
1072  *      netdev_restore_flags() is never called) , or to NULL if no flags were
1073  *      actually changed.
1074  *
1075  *    - On failure, returns a positive errno value.  If 'sfp' is nonnull, sets
1076  *      '*sfp' to NULL. */
1077 int
1078 netdev_turn_flags_on(struct netdev *netdev, enum netdev_flags flags,
1079                      struct netdev_saved_flags **sfp)
1080 {
1081     return do_update_flags(netdev, 0, flags, NULL, sfp);
1082 }
1083
1084 /* Turns off the specified 'flags' on 'netdev'.  See netdev_turn_flags_on() for
1085  * details of the interface. */
1086 int
1087 netdev_turn_flags_off(struct netdev *netdev, enum netdev_flags flags,
1088                       struct netdev_saved_flags **sfp)
1089 {
1090     return do_update_flags(netdev, flags, 0, NULL, sfp);
1091 }
1092
1093 /* Restores the flags that were saved in 'sf', and destroys 'sf'.
1094  * Does nothing if 'sf' is NULL. */
1095 void
1096 netdev_restore_flags(struct netdev_saved_flags *sf)
1097     OVS_EXCLUDED(netdev_mutex)
1098 {
1099     if (sf) {
1100         struct netdev *netdev = sf->netdev;
1101         enum netdev_flags old_flags;
1102
1103         netdev->netdev_class->update_flags(netdev,
1104                                            sf->saved_flags & sf->saved_values,
1105                                            sf->saved_flags & ~sf->saved_values,
1106                                            &old_flags);
1107
1108         ovs_mutex_lock(&netdev_mutex);
1109         list_remove(&sf->node);
1110         free(sf);
1111         netdev_unref(netdev);
1112     }
1113 }
1114
1115 /* Looks up the ARP table entry for 'ip' on 'netdev'.  If one exists and can be
1116  * successfully retrieved, it stores the corresponding MAC address in 'mac' and
1117  * returns 0.  Otherwise, it returns a positive errno value; in particular,
1118  * ENXIO indicates that there is no ARP table entry for 'ip' on 'netdev'. */
1119 int
1120 netdev_arp_lookup(const struct netdev *netdev,
1121                   ovs_be32 ip, uint8_t mac[ETH_ADDR_LEN])
1122 {
1123     int error = (netdev->netdev_class->arp_lookup
1124                  ? netdev->netdev_class->arp_lookup(netdev, ip, mac)
1125                  : EOPNOTSUPP);
1126     if (error) {
1127         memset(mac, 0, ETH_ADDR_LEN);
1128     }
1129     return error;
1130 }
1131
1132 /* Returns true if carrier is active (link light is on) on 'netdev'. */
1133 bool
1134 netdev_get_carrier(const struct netdev *netdev)
1135 {
1136     int error;
1137     enum netdev_flags flags;
1138     bool carrier;
1139
1140     netdev_get_flags(netdev, &flags);
1141     if (!(flags & NETDEV_UP)) {
1142         return false;
1143     }
1144
1145     if (!netdev->netdev_class->get_carrier) {
1146         return true;
1147     }
1148
1149     error = netdev->netdev_class->get_carrier(netdev, &carrier);
1150     if (error) {
1151         VLOG_DBG("%s: failed to get network device carrier status, assuming "
1152                  "down: %s", netdev_get_name(netdev), ovs_strerror(error));
1153         carrier = false;
1154     }
1155
1156     return carrier;
1157 }
1158
1159 /* Returns the number of times 'netdev''s carrier has changed. */
1160 long long int
1161 netdev_get_carrier_resets(const struct netdev *netdev)
1162 {
1163     return (netdev->netdev_class->get_carrier_resets
1164             ? netdev->netdev_class->get_carrier_resets(netdev)
1165             : 0);
1166 }
1167
1168 /* Attempts to force netdev_get_carrier() to poll 'netdev''s MII registers for
1169  * link status instead of checking 'netdev''s carrier.  'netdev''s MII
1170  * registers will be polled once ever 'interval' milliseconds.  If 'netdev'
1171  * does not support MII, another method may be used as a fallback.  If
1172  * 'interval' is less than or equal to zero, reverts netdev_get_carrier() to
1173  * its normal behavior.
1174  *
1175  * Returns 0 if successful, otherwise a positive errno value. */
1176 int
1177 netdev_set_miimon_interval(struct netdev *netdev, long long int interval)
1178 {
1179     return (netdev->netdev_class->set_miimon_interval
1180             ? netdev->netdev_class->set_miimon_interval(netdev, interval)
1181             : EOPNOTSUPP);
1182 }
1183
1184 /* Retrieves current device stats for 'netdev'. */
1185 int
1186 netdev_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
1187 {
1188     int error;
1189
1190     COVERAGE_INC(netdev_get_stats);
1191     error = (netdev->netdev_class->get_stats
1192              ? netdev->netdev_class->get_stats(netdev, stats)
1193              : EOPNOTSUPP);
1194     if (error) {
1195         memset(stats, 0xff, sizeof *stats);
1196     }
1197     return error;
1198 }
1199
1200 /* Attempts to change the stats for 'netdev' to those provided in 'stats'.
1201  * Returns 0 if successful, otherwise a positive errno value.
1202  *
1203  * This will probably fail for most network devices.  Some devices might only
1204  * allow setting their stats to 0. */
1205 int
1206 netdev_set_stats(struct netdev *netdev, const struct netdev_stats *stats)
1207 {
1208     return (netdev->netdev_class->set_stats
1209              ? netdev->netdev_class->set_stats(netdev, stats)
1210              : EOPNOTSUPP);
1211 }
1212
1213 /* Attempts to set input rate limiting (policing) policy, such that up to
1214  * 'kbits_rate' kbps of traffic is accepted, with a maximum accumulative burst
1215  * size of 'kbits' kb. */
1216 int
1217 netdev_set_policing(struct netdev *netdev, uint32_t kbits_rate,
1218                     uint32_t kbits_burst)
1219 {
1220     return (netdev->netdev_class->set_policing
1221             ? netdev->netdev_class->set_policing(netdev,
1222                     kbits_rate, kbits_burst)
1223             : EOPNOTSUPP);
1224 }
1225
1226 /* Adds to 'types' all of the forms of QoS supported by 'netdev', or leaves it
1227  * empty if 'netdev' does not support QoS.  Any names added to 'types' should
1228  * be documented as valid for the "type" column in the "QoS" table in
1229  * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1230  *
1231  * Every network device supports disabling QoS with a type of "", but this type
1232  * will not be added to 'types'.
1233  *
1234  * The caller must initialize 'types' (e.g. with sset_init()) before calling
1235  * this function.  The caller is responsible for destroying 'types' (e.g. with
1236  * sset_destroy()) when it is no longer needed.
1237  *
1238  * Returns 0 if successful, otherwise a positive errno value. */
1239 int
1240 netdev_get_qos_types(const struct netdev *netdev, struct sset *types)
1241 {
1242     const struct netdev_class *class = netdev->netdev_class;
1243     return (class->get_qos_types
1244             ? class->get_qos_types(netdev, types)
1245             : 0);
1246 }
1247
1248 /* Queries 'netdev' for its capabilities regarding the specified 'type' of QoS,
1249  * which should be "" or one of the types returned by netdev_get_qos_types()
1250  * for 'netdev'.  Returns 0 if successful, otherwise a positive errno value.
1251  * On success, initializes 'caps' with the QoS capabilities; on failure, clears
1252  * 'caps' to all zeros. */
1253 int
1254 netdev_get_qos_capabilities(const struct netdev *netdev, const char *type,
1255                             struct netdev_qos_capabilities *caps)
1256 {
1257     const struct netdev_class *class = netdev->netdev_class;
1258
1259     if (*type) {
1260         int retval = (class->get_qos_capabilities
1261                       ? class->get_qos_capabilities(netdev, type, caps)
1262                       : EOPNOTSUPP);
1263         if (retval) {
1264             memset(caps, 0, sizeof *caps);
1265         }
1266         return retval;
1267     } else {
1268         /* Every netdev supports turning off QoS. */
1269         memset(caps, 0, sizeof *caps);
1270         return 0;
1271     }
1272 }
1273
1274 /* Obtains the number of queues supported by 'netdev' for the specified 'type'
1275  * of QoS.  Returns 0 if successful, otherwise a positive errno value.  Stores
1276  * the number of queues (zero on failure) in '*n_queuesp'.
1277  *
1278  * This is just a simple wrapper around netdev_get_qos_capabilities(). */
1279 int
1280 netdev_get_n_queues(const struct netdev *netdev,
1281                     const char *type, unsigned int *n_queuesp)
1282 {
1283     struct netdev_qos_capabilities caps;
1284     int retval;
1285
1286     retval = netdev_get_qos_capabilities(netdev, type, &caps);
1287     *n_queuesp = caps.n_queues;
1288     return retval;
1289 }
1290
1291 /* Queries 'netdev' about its currently configured form of QoS.  If successful,
1292  * stores the name of the current form of QoS into '*typep', stores any details
1293  * of configuration as string key-value pairs in 'details', and returns 0.  On
1294  * failure, sets '*typep' to NULL and returns a positive errno value.
1295  *
1296  * A '*typep' of "" indicates that QoS is currently disabled on 'netdev'.
1297  *
1298  * The caller must initialize 'details' as an empty smap (e.g. with
1299  * smap_init()) before calling this function.  The caller must free 'details'
1300  * when it is no longer needed (e.g. with smap_destroy()).
1301  *
1302  * The caller must not modify or free '*typep'.
1303  *
1304  * '*typep' will be one of the types returned by netdev_get_qos_types() for
1305  * 'netdev'.  The contents of 'details' should be documented as valid for
1306  * '*typep' in the "other_config" column in the "QoS" table in
1307  * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)). */
1308 int
1309 netdev_get_qos(const struct netdev *netdev,
1310                const char **typep, struct smap *details)
1311 {
1312     const struct netdev_class *class = netdev->netdev_class;
1313     int retval;
1314
1315     if (class->get_qos) {
1316         retval = class->get_qos(netdev, typep, details);
1317         if (retval) {
1318             *typep = NULL;
1319             smap_clear(details);
1320         }
1321         return retval;
1322     } else {
1323         /* 'netdev' doesn't support QoS, so report that QoS is disabled. */
1324         *typep = "";
1325         return 0;
1326     }
1327 }
1328
1329 /* Attempts to reconfigure QoS on 'netdev', changing the form of QoS to 'type'
1330  * with details of configuration from 'details'.  Returns 0 if successful,
1331  * otherwise a positive errno value.  On error, the previous QoS configuration
1332  * is retained.
1333  *
1334  * When this function changes the type of QoS (not just 'details'), this also
1335  * resets all queue configuration for 'netdev' to their defaults (which depend
1336  * on the specific type of QoS).  Otherwise, the queue configuration for
1337  * 'netdev' is unchanged.
1338  *
1339  * 'type' should be "" (to disable QoS) or one of the types returned by
1340  * netdev_get_qos_types() for 'netdev'.  The contents of 'details' should be
1341  * documented as valid for the given 'type' in the "other_config" column in the
1342  * "QoS" table in vswitchd/vswitch.xml (which is built as
1343  * ovs-vswitchd.conf.db(8)).
1344  *
1345  * NULL may be specified for 'details' if there are no configuration
1346  * details. */
1347 int
1348 netdev_set_qos(struct netdev *netdev,
1349                const char *type, const struct smap *details)
1350 {
1351     const struct netdev_class *class = netdev->netdev_class;
1352
1353     if (!type) {
1354         type = "";
1355     }
1356
1357     if (class->set_qos) {
1358         if (!details) {
1359             static const struct smap empty = SMAP_INITIALIZER(&empty);
1360             details = &empty;
1361         }
1362         return class->set_qos(netdev, type, details);
1363     } else {
1364         return *type ? EOPNOTSUPP : 0;
1365     }
1366 }
1367
1368 /* Queries 'netdev' for information about the queue numbered 'queue_id'.  If
1369  * successful, adds that information as string key-value pairs to 'details'.
1370  * Returns 0 if successful, otherwise a positive errno value.
1371  *
1372  * 'queue_id' must be less than the number of queues supported by 'netdev' for
1373  * the current form of QoS (e.g. as returned by netdev_get_n_queues(netdev)).
1374  *
1375  * The returned contents of 'details' should be documented as valid for the
1376  * given 'type' in the "other_config" column in the "Queue" table in
1377  * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1378  *
1379  * The caller must initialize 'details' (e.g. with smap_init()) before calling
1380  * this function.  The caller must free 'details' when it is no longer needed
1381  * (e.g. with smap_destroy()). */
1382 int
1383 netdev_get_queue(const struct netdev *netdev,
1384                  unsigned int queue_id, struct smap *details)
1385 {
1386     const struct netdev_class *class = netdev->netdev_class;
1387     int retval;
1388
1389     retval = (class->get_queue
1390               ? class->get_queue(netdev, queue_id, details)
1391               : EOPNOTSUPP);
1392     if (retval) {
1393         smap_clear(details);
1394     }
1395     return retval;
1396 }
1397
1398 /* Configures the queue numbered 'queue_id' on 'netdev' with the key-value
1399  * string pairs in 'details'.  The contents of 'details' should be documented
1400  * as valid for the given 'type' in the "other_config" column in the "Queue"
1401  * table in vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1402  * Returns 0 if successful, otherwise a positive errno value.  On failure, the
1403  * given queue's configuration should be unmodified.
1404  *
1405  * 'queue_id' must be less than the number of queues supported by 'netdev' for
1406  * the current form of QoS (e.g. as returned by netdev_get_n_queues(netdev)).
1407  *
1408  * This function does not modify 'details', and the caller retains ownership of
1409  * it. */
1410 int
1411 netdev_set_queue(struct netdev *netdev,
1412                  unsigned int queue_id, const struct smap *details)
1413 {
1414     const struct netdev_class *class = netdev->netdev_class;
1415     return (class->set_queue
1416             ? class->set_queue(netdev, queue_id, details)
1417             : EOPNOTSUPP);
1418 }
1419
1420 /* Attempts to delete the queue numbered 'queue_id' from 'netdev'.  Some kinds
1421  * of QoS may have a fixed set of queues, in which case attempts to delete them
1422  * will fail with EOPNOTSUPP.
1423  *
1424  * Returns 0 if successful, otherwise a positive errno value.  On failure, the
1425  * given queue will be unmodified.
1426  *
1427  * 'queue_id' must be less than the number of queues supported by 'netdev' for
1428  * the current form of QoS (e.g. as returned by
1429  * netdev_get_n_queues(netdev)). */
1430 int
1431 netdev_delete_queue(struct netdev *netdev, unsigned int queue_id)
1432 {
1433     const struct netdev_class *class = netdev->netdev_class;
1434     return (class->delete_queue
1435             ? class->delete_queue(netdev, queue_id)
1436             : EOPNOTSUPP);
1437 }
1438
1439 /* Obtains statistics about 'queue_id' on 'netdev'.  On success, returns 0 and
1440  * fills 'stats' with the queue's statistics; individual members of 'stats' may
1441  * be set to all-1-bits if the statistic is unavailable.  On failure, returns a
1442  * positive errno value and fills 'stats' with values indicating unsupported
1443  * statistics. */
1444 int
1445 netdev_get_queue_stats(const struct netdev *netdev, unsigned int queue_id,
1446                        struct netdev_queue_stats *stats)
1447 {
1448     const struct netdev_class *class = netdev->netdev_class;
1449     int retval;
1450
1451     retval = (class->get_queue_stats
1452               ? class->get_queue_stats(netdev, queue_id, stats)
1453               : EOPNOTSUPP);
1454     if (retval) {
1455         stats->tx_bytes = UINT64_MAX;
1456         stats->tx_packets = UINT64_MAX;
1457         stats->tx_errors = UINT64_MAX;
1458         stats->created = LLONG_MIN;
1459     }
1460     return retval;
1461 }
1462
1463 /* Initializes 'dump' to begin dumping the queues in a netdev.
1464  *
1465  * This function provides no status indication.  An error status for the entire
1466  * dump operation is provided when it is completed by calling
1467  * netdev_queue_dump_done().
1468  */
1469 void
1470 netdev_queue_dump_start(struct netdev_queue_dump *dump,
1471                         const struct netdev *netdev)
1472 {
1473     dump->netdev = netdev_ref(netdev);
1474     if (netdev->netdev_class->queue_dump_start) {
1475         dump->error = netdev->netdev_class->queue_dump_start(netdev,
1476                                                              &dump->state);
1477     } else {
1478         dump->error = EOPNOTSUPP;
1479     }
1480 }
1481
1482 /* Attempts to retrieve another queue from 'dump', which must have been
1483  * initialized with netdev_queue_dump_start().  On success, stores a new queue
1484  * ID into '*queue_id', fills 'details' with configuration details for the
1485  * queue, and returns true.  On failure, returns false.
1486  *
1487  * Queues are not necessarily dumped in increasing order of queue ID (or any
1488  * other predictable order).
1489  *
1490  * Failure might indicate an actual error or merely that the last queue has
1491  * been dumped.  An error status for the entire dump operation is provided when
1492  * it is completed by calling netdev_queue_dump_done().
1493  *
1494  * The returned contents of 'details' should be documented as valid for the
1495  * given 'type' in the "other_config" column in the "Queue" table in
1496  * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1497  *
1498  * The caller must initialize 'details' (e.g. with smap_init()) before calling
1499  * this function.  This function will clear and replace its contents.  The
1500  * caller must free 'details' when it is no longer needed (e.g. with
1501  * smap_destroy()). */
1502 bool
1503 netdev_queue_dump_next(struct netdev_queue_dump *dump,
1504                        unsigned int *queue_id, struct smap *details)
1505 {
1506     const struct netdev *netdev = dump->netdev;
1507
1508     if (dump->error) {
1509         return false;
1510     }
1511
1512     dump->error = netdev->netdev_class->queue_dump_next(netdev, dump->state,
1513                                                         queue_id, details);
1514
1515     if (dump->error) {
1516         netdev->netdev_class->queue_dump_done(netdev, dump->state);
1517         return false;
1518     }
1519     return true;
1520 }
1521
1522 /* Completes queue table dump operation 'dump', which must have been
1523  * initialized with netdev_queue_dump_start().  Returns 0 if the dump operation
1524  * was error-free, otherwise a positive errno value describing the problem. */
1525 int
1526 netdev_queue_dump_done(struct netdev_queue_dump *dump)
1527 {
1528     const struct netdev *netdev = dump->netdev;
1529     if (!dump->error && netdev->netdev_class->queue_dump_done) {
1530         dump->error = netdev->netdev_class->queue_dump_done(netdev,
1531                                                             dump->state);
1532     }
1533     netdev_close(dump->netdev);
1534     return dump->error == EOF ? 0 : dump->error;
1535 }
1536
1537 /* Iterates over all of 'netdev''s queues, calling 'cb' with the queue's ID,
1538  * its statistics, and the 'aux' specified by the caller.  The order of
1539  * iteration is unspecified, but (when successful) each queue is visited
1540  * exactly once.
1541  *
1542  * Calling this function may be more efficient than calling
1543  * netdev_get_queue_stats() for every queue.
1544  *
1545  * 'cb' must not modify or free the statistics passed in.
1546  *
1547  * Returns 0 if successful, otherwise a positive errno value.  On error, some
1548  * configured queues may not have been included in the iteration. */
1549 int
1550 netdev_dump_queue_stats(const struct netdev *netdev,
1551                         netdev_dump_queue_stats_cb *cb, void *aux)
1552 {
1553     const struct netdev_class *class = netdev->netdev_class;
1554     return (class->dump_queue_stats
1555             ? class->dump_queue_stats(netdev, cb, aux)
1556             : EOPNOTSUPP);
1557 }
1558
1559 \f
1560 /* Returns the class type of 'netdev'.
1561  *
1562  * The caller must not free the returned value. */
1563 const char *
1564 netdev_get_type(const struct netdev *netdev)
1565 {
1566     return netdev->netdev_class->type;
1567 }
1568
1569 /* Returns the class associated with 'netdev'. */
1570 const struct netdev_class *
1571 netdev_get_class(const struct netdev *netdev)
1572 {
1573     return netdev->netdev_class;
1574 }
1575
1576 /* Returns the netdev with 'name' or NULL if there is none.
1577  *
1578  * The caller must free the returned netdev with netdev_close(). */
1579 struct netdev *
1580 netdev_from_name(const char *name)
1581     OVS_EXCLUDED(netdev_mutex)
1582 {
1583     struct netdev *netdev;
1584
1585     ovs_mutex_lock(&netdev_mutex);
1586     netdev = shash_find_data(&netdev_shash, name);
1587     if (netdev) {
1588         netdev->ref_cnt++;
1589     }
1590     ovs_mutex_unlock(&netdev_mutex);
1591
1592     return netdev;
1593 }
1594
1595 /* Fills 'device_list' with devices that match 'netdev_class'.
1596  *
1597  * The caller is responsible for initializing and destroying 'device_list' and
1598  * must close each device on the list. */
1599 void
1600 netdev_get_devices(const struct netdev_class *netdev_class,
1601                    struct shash *device_list)
1602     OVS_EXCLUDED(netdev_mutex)
1603 {
1604     struct shash_node *node;
1605
1606     ovs_mutex_lock(&netdev_mutex);
1607     SHASH_FOR_EACH (node, &netdev_shash) {
1608         struct netdev *dev = node->data;
1609
1610         if (dev->netdev_class == netdev_class) {
1611             dev->ref_cnt++;
1612             shash_add(device_list, node->name, node->data);
1613         }
1614     }
1615     ovs_mutex_unlock(&netdev_mutex);
1616 }
1617
1618 /* Extracts pointers to all 'netdev-vports' into an array 'vports'
1619  * and returns it.  Stores the size of the array into '*size'.
1620  *
1621  * The caller is responsible for freeing 'vports' and must close
1622  * each 'netdev-vport' in the list. */
1623 struct netdev **
1624 netdev_get_vports(size_t *size)
1625     OVS_EXCLUDED(netdev_mutex)
1626 {
1627     struct netdev **vports;
1628     struct shash_node *node;
1629     size_t n = 0;
1630
1631     if (!size) {
1632         return NULL;
1633     }
1634
1635     /* Explicitly allocates big enough chunk of memory. */
1636     vports = xmalloc(shash_count(&netdev_shash) * sizeof *vports);
1637     ovs_mutex_lock(&netdev_mutex);
1638     SHASH_FOR_EACH (node, &netdev_shash) {
1639         struct netdev *dev = node->data;
1640
1641         if (netdev_vport_is_vport_class(dev->netdev_class)) {
1642             dev->ref_cnt++;
1643             vports[n] = dev;
1644             n++;
1645         }
1646     }
1647     ovs_mutex_unlock(&netdev_mutex);
1648     *size = n;
1649
1650     return vports;
1651 }
1652
1653 const char *
1654 netdev_get_type_from_name(const char *name)
1655 {
1656     struct netdev *dev = netdev_from_name(name);
1657     const char *type = dev ? netdev_get_type(dev) : NULL;
1658     netdev_close(dev);
1659     return type;
1660 }
1661 \f
1662 struct netdev *
1663 netdev_rxq_get_netdev(const struct netdev_rxq *rx)
1664 {
1665     ovs_assert(rx->netdev->ref_cnt > 0);
1666     return rx->netdev;
1667 }
1668
1669 const char *
1670 netdev_rxq_get_name(const struct netdev_rxq *rx)
1671 {
1672     return netdev_get_name(netdev_rxq_get_netdev(rx));
1673 }
1674
1675 static void
1676 restore_all_flags(void *aux OVS_UNUSED)
1677 {
1678     struct shash_node *node;
1679
1680     SHASH_FOR_EACH (node, &netdev_shash) {
1681         struct netdev *netdev = node->data;
1682         const struct netdev_saved_flags *sf;
1683         enum netdev_flags saved_values;
1684         enum netdev_flags saved_flags;
1685
1686         saved_values = saved_flags = 0;
1687         LIST_FOR_EACH (sf, node, &netdev->saved_flags_list) {
1688             saved_flags |= sf->saved_flags;
1689             saved_values &= ~sf->saved_flags;
1690             saved_values |= sf->saved_flags & sf->saved_values;
1691         }
1692         if (saved_flags) {
1693             enum netdev_flags old_flags;
1694
1695             netdev->netdev_class->update_flags(netdev,
1696                                                saved_flags & saved_values,
1697                                                saved_flags & ~saved_values,
1698                                                &old_flags);
1699         }
1700     }
1701 }
1702
1703 uint64_t
1704 netdev_get_change_seq(const struct netdev *netdev)
1705 {
1706     return netdev->change_seq;
1707 }