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