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