Merge branch 'mainstream'
[sliver-openvswitch.git] / lib / netdev.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18 #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 "dynamic-string.h"
29 #include "fatal-signal.h"
30 #include "hash.h"
31 #include "list.h"
32 #include "netdev-provider.h"
33 #include "netdev-vport.h"
34 #include "ofpbuf.h"
35 #include "openflow/openflow.h"
36 #include "packets.h"
37 #include "poll-loop.h"
38 #include "shash.h"
39 #include "smap.h"
40 #include "sset.h"
41 #include "svec.h"
42 #include "vlog.h"
43
44 VLOG_DEFINE_THIS_MODULE(netdev);
45
46 COVERAGE_DEFINE(netdev_received);
47 COVERAGE_DEFINE(netdev_sent);
48 COVERAGE_DEFINE(netdev_add_router);
49 COVERAGE_DEFINE(netdev_get_stats);
50
51 static struct shash netdev_classes = SHASH_INITIALIZER(&netdev_classes);
52
53 /* All created network devices. */
54 static struct shash netdev_dev_shash = SHASH_INITIALIZER(&netdev_dev_shash);
55
56 /* All open network devices. */
57 static struct list netdev_list = LIST_INITIALIZER(&netdev_list);
58
59 /* This is set pretty low because we probably won't learn anything from the
60  * additional log messages. */
61 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
62
63 static void close_all_netdevs(void *aux OVS_UNUSED);
64 static int restore_flags(struct netdev *netdev);
65 void update_device_args(struct netdev_dev *, const struct shash *args);
66
67 static void
68 netdev_initialize(void)
69 {
70     static bool inited;
71
72     if (!inited) {
73         inited = true;
74
75         fatal_signal_add_hook(close_all_netdevs, NULL, NULL, true);
76         netdev_vport_patch_register();
77
78 #ifdef LINUX_DATAPATH
79         netdev_register_provider(&netdev_linux_class);
80         netdev_register_provider(&netdev_internal_class);
81         netdev_register_provider(&netdev_tap_class);
82         netdev_vport_tunnel_register();
83 #endif
84 #ifdef __FreeBSD__
85         netdev_register_provider(&netdev_tap_class);
86         netdev_register_provider(&netdev_bsd_class);
87 #endif
88         netdev_register_provider(&netdev_tunnel_class);
89         netdev_register_provider(&netdev_pltap_class);
90     }
91 }
92
93 /* Performs periodic work needed by all the various kinds of netdevs.
94  *
95  * If your program opens any netdevs, it must call this function within its
96  * main poll loop. */
97 void
98 netdev_run(void)
99 {
100     struct shash_node *node;
101     SHASH_FOR_EACH(node, &netdev_classes) {
102         const struct netdev_class *netdev_class = node->data;
103         if (netdev_class->run) {
104             netdev_class->run();
105         }
106     }
107 }
108
109 /* Arranges for poll_block() to wake up when netdev_run() needs to be called.
110  *
111  * If your program opens any netdevs, it must call this function within its
112  * main poll loop. */
113 void
114 netdev_wait(void)
115 {
116     struct shash_node *node;
117     SHASH_FOR_EACH(node, &netdev_classes) {
118         const struct netdev_class *netdev_class = node->data;
119         if (netdev_class->wait) {
120             netdev_class->wait();
121         }
122     }
123 }
124
125 /* Initializes and registers a new netdev provider.  After successful
126  * registration, new netdevs of that type can be opened using netdev_open(). */
127 int
128 netdev_register_provider(const struct netdev_class *new_class)
129 {
130     if (shash_find(&netdev_classes, new_class->type)) {
131         VLOG_WARN("attempted to register duplicate netdev provider: %s",
132                    new_class->type);
133         return EEXIST;
134     }
135
136     if (new_class->init) {
137         int error = new_class->init();
138         if (error) {
139             VLOG_ERR("failed to initialize %s network device class: %s",
140                      new_class->type, strerror(error));
141             return error;
142         }
143     }
144
145     shash_add(&netdev_classes, new_class->type, new_class);
146
147     return 0;
148 }
149
150 /* Unregisters a netdev provider.  'type' must have been previously
151  * registered and not currently be in use by any netdevs.  After unregistration
152  * new netdevs of that type cannot be opened using netdev_open(). */
153 int
154 netdev_unregister_provider(const char *type)
155 {
156     struct shash_node *del_node, *netdev_dev_node;
157
158     del_node = shash_find(&netdev_classes, type);
159     if (!del_node) {
160         VLOG_WARN("attempted to unregister a netdev provider that is not "
161                   "registered: %s", type);
162         return EAFNOSUPPORT;
163     }
164
165     SHASH_FOR_EACH(netdev_dev_node, &netdev_dev_shash) {
166         struct netdev_dev *netdev_dev = netdev_dev_node->data;
167         if (!strcmp(netdev_dev->netdev_class->type, type)) {
168             VLOG_WARN("attempted to unregister in use netdev provider: %s",
169                       type);
170             return EBUSY;
171         }
172     }
173
174     shash_delete(&netdev_classes, del_node);
175
176     return 0;
177 }
178
179 const struct netdev_class *
180 netdev_lookup_provider(const char *type)
181 {
182     netdev_initialize();
183     return shash_find_data(&netdev_classes, type && type[0] ? type : "system");
184 }
185
186 /* Clears 'types' and enumerates the types of all currently registered netdev
187  * providers into it.  The caller must first initialize the sset. */
188 void
189 netdev_enumerate_types(struct sset *types)
190 {
191     struct shash_node *node;
192
193     netdev_initialize();
194     sset_clear(types);
195
196     SHASH_FOR_EACH(node, &netdev_classes) {
197         const struct netdev_class *netdev_class = node->data;
198         sset_add(types, netdev_class->type);
199     }
200 }
201
202 /* Opens the network device named 'name' (e.g. "eth0") of the specified 'type'
203  * (e.g. "system") and returns zero if successful, otherwise a positive errno
204  * value.  On success, sets '*netdevp' to the new network device, otherwise to
205  * null.
206  *
207  * Some network devices may need to be configured (with netdev_set_config())
208  * before they can be used. */
209 int
210 netdev_open(const char *name, const char *type, struct netdev **netdevp)
211 {
212     struct netdev_dev *netdev_dev;
213     int error;
214
215     *netdevp = NULL;
216     netdev_initialize();
217
218     netdev_dev = shash_find_data(&netdev_dev_shash, name);
219
220     if (!netdev_dev) {
221         const struct netdev_class *class;
222
223         class = netdev_lookup_provider(type);
224         if (!class) {
225             VLOG_WARN("could not create netdev %s of unknown type %s",
226                       name, type);
227             return EAFNOSUPPORT;
228         }
229         error = class->create(class, name, &netdev_dev);
230         if (error) {
231             return error;
232         }
233         ovs_assert(netdev_dev->netdev_class == class);
234
235     }
236
237     error = netdev_dev->netdev_class->open(netdev_dev, netdevp);
238
239     if (!error) {
240         netdev_dev->ref_cnt++;
241     } else {
242         if (!netdev_dev->ref_cnt) {
243             netdev_dev_uninit(netdev_dev, true);
244         }
245     }
246
247     return error;
248 }
249
250 /* Reconfigures the device 'netdev' with 'args'.  'args' may be empty
251  * or NULL if none are needed. */
252 int
253 netdev_set_config(struct netdev *netdev, const struct smap *args)
254 {
255     struct netdev_dev *netdev_dev = netdev_get_dev(netdev);
256
257     if (netdev_dev->netdev_class->set_config) {
258         struct smap no_args = SMAP_INITIALIZER(&no_args);
259         return netdev_dev->netdev_class->set_config(netdev_dev,
260                                                     args ? args : &no_args);
261     } else if (args && !smap_is_empty(args)) {
262         VLOG_WARN("%s: arguments provided to device that is not configurable",
263                   netdev_get_name(netdev));
264     }
265
266     return 0;
267 }
268
269 /* Returns the current configuration for 'netdev' in 'args'.  The caller must
270  * have already initialized 'args' with smap_init().  Returns 0 on success, in
271  * which case 'args' will be filled with 'netdev''s configuration.  On failure
272  * returns a positive errno value, in which case 'args' will be empty.
273  *
274  * The caller owns 'args' and its contents and must eventually free them with
275  * smap_destroy(). */
276 int
277 netdev_get_config(const struct netdev *netdev, struct smap *args)
278 {
279     struct netdev_dev *netdev_dev = netdev_get_dev(netdev);
280     int error;
281
282     smap_clear(args);
283     if (netdev_dev->netdev_class->get_config) {
284         error = netdev_dev->netdev_class->get_config(netdev_dev, args);
285         if (error) {
286             smap_clear(args);
287         }
288     } else {
289         error = 0;
290     }
291
292     return error;
293 }
294
295 const struct netdev_tunnel_config *
296 netdev_get_tunnel_config(const struct netdev *netdev)
297 {
298     struct netdev_dev *netdev_dev = netdev_get_dev(netdev);
299
300     if (netdev_dev->netdev_class->get_tunnel_config) {
301         return netdev_dev->netdev_class->get_tunnel_config(netdev_dev);
302     } else {
303         return NULL;
304     }
305 }
306
307 /* Closes and destroys 'netdev'. */
308 void
309 netdev_close(struct netdev *netdev)
310 {
311     if (netdev) {
312         struct netdev_dev *netdev_dev = netdev_get_dev(netdev);
313
314         ovs_assert(netdev_dev->ref_cnt);
315         netdev_dev->ref_cnt--;
316         netdev_uninit(netdev, true);
317
318         /* If the reference count for the netdev device is zero, destroy it. */
319         if (!netdev_dev->ref_cnt) {
320             netdev_dev_uninit(netdev_dev, true);
321         }
322     }
323 }
324
325 /* Returns true if a network device named 'name' exists and may be opened,
326  * otherwise false. */
327 bool
328 netdev_exists(const char *name)
329 {
330     struct netdev *netdev;
331     int error;
332
333     error = netdev_open(name, "system", &netdev);
334     if (!error) {
335         netdev_close(netdev);
336         return true;
337     } else {
338         if (error != ENODEV) {
339             VLOG_WARN("failed to open network device %s: %s",
340                       name, strerror(error));
341         }
342         return false;
343     }
344 }
345
346 /* Returns true if a network device named 'name' is currently opened,
347  * otherwise false. */
348 bool
349 netdev_is_open(const char *name)
350 {
351     return !!shash_find_data(&netdev_dev_shash, name);
352 }
353
354 /* Parses 'netdev_name_', which is of the form [type@]name into its component
355  * pieces.  'name' and 'type' must be freed by the caller. */
356 void
357 netdev_parse_name(const char *netdev_name_, char **name, char **type)
358 {
359     char *netdev_name = xstrdup(netdev_name_);
360     char *separator;
361
362     separator = strchr(netdev_name, '@');
363     if (separator) {
364         *separator = '\0';
365         *type = netdev_name;
366         *name = xstrdup(separator + 1);
367     } else {
368         *name = netdev_name;
369         *type = xstrdup("system");
370     }
371 }
372
373 /* Attempts to set up 'netdev' for receiving packets with netdev_recv().
374  * Returns 0 if successful, otherwise a positive errno value.  EOPNOTSUPP
375  * indicates that the network device does not implement packet reception
376  * through this interface. */
377 int
378 netdev_listen(struct netdev *netdev)
379 {
380     int (*listen)(struct netdev *);
381
382     listen = netdev_get_dev(netdev)->netdev_class->listen;
383     return listen ? (listen)(netdev) : EOPNOTSUPP;
384 }
385
386 /* Attempts to receive a packet from 'netdev' into 'buffer', which the caller
387  * must have initialized with sufficient room for the packet.  The space
388  * required to receive any packet is ETH_HEADER_LEN bytes, plus VLAN_HEADER_LEN
389  * bytes, plus the device's MTU (which may be retrieved via netdev_get_mtu()).
390  * (Some devices do not allow for a VLAN header, in which case VLAN_HEADER_LEN
391  * need not be included.)
392  *
393  * This function can only be expected to return a packet if ->listen() has
394  * been called successfully.
395  *
396  * If a packet is successfully retrieved, returns 0.  In this case 'buffer' is
397  * guaranteed to contain at least ETH_TOTAL_MIN bytes.  Otherwise, returns a
398  * positive errno value.  Returns EAGAIN immediately if no packet is ready to
399  * be returned.
400  *
401  * Some network devices may not implement support for this function.  In such
402  * cases this function will always return EOPNOTSUPP. */
403 int
404 netdev_recv(struct netdev *netdev, struct ofpbuf *buffer)
405 {
406     int (*recv)(struct netdev *, void *, size_t);
407     int retval;
408
409     ovs_assert(buffer->size == 0);
410     ovs_assert(ofpbuf_tailroom(buffer) >= ETH_TOTAL_MIN);
411
412     recv = netdev_get_dev(netdev)->netdev_class->recv;
413     retval = (recv
414               ? (recv)(netdev, buffer->data, ofpbuf_tailroom(buffer))
415               : -EOPNOTSUPP);
416     if (retval >= 0) {
417         COVERAGE_INC(netdev_received);
418         buffer->size += retval;
419         if (buffer->size < ETH_TOTAL_MIN) {
420             ofpbuf_put_zeros(buffer, ETH_TOTAL_MIN - buffer->size);
421         }
422         return 0;
423     } else {
424         return -retval;
425     }
426 }
427
428 /* Registers with the poll loop to wake up from the next call to poll_block()
429  * when a packet is ready to be received with netdev_recv() on 'netdev'. */
430 void
431 netdev_recv_wait(struct netdev *netdev)
432 {
433     void (*recv_wait)(struct netdev *);
434
435     recv_wait = netdev_get_dev(netdev)->netdev_class->recv_wait;
436     if (recv_wait) {
437         recv_wait(netdev);
438     }
439 }
440
441 /* Discards all packets waiting to be received from 'netdev'. */
442 int
443 netdev_drain(struct netdev *netdev)
444 {
445     int (*drain)(struct netdev *);
446
447     drain = netdev_get_dev(netdev)->netdev_class->drain;
448     return drain ? drain(netdev) : 0;
449 }
450
451 /* Sends 'buffer' on 'netdev'.  Returns 0 if successful, otherwise a positive
452  * errno value.  Returns EAGAIN without blocking if the packet cannot be queued
453  * immediately.  Returns EMSGSIZE if a partial packet was transmitted or if
454  * the packet is too big or too small to transmit on the device.
455  *
456  * The caller retains ownership of 'buffer' in all cases.
457  *
458  * The kernel maintains a packet transmission queue, so the caller is not
459  * expected to do additional queuing of packets.
460  *
461  * Some network devices may not implement support for this function.  In such
462  * cases this function will always return EOPNOTSUPP. */
463 int
464 netdev_send(struct netdev *netdev, const struct ofpbuf *buffer)
465 {
466     int (*send)(struct netdev *, const void *, size_t);
467     int error;
468
469     send = netdev_get_dev(netdev)->netdev_class->send;
470     error = send ? (send)(netdev, buffer->data, buffer->size) : EOPNOTSUPP;
471     if (!error) {
472         COVERAGE_INC(netdev_sent);
473     }
474     return error;
475 }
476
477 /* Registers with the poll loop to wake up from the next call to poll_block()
478  * when the packet transmission queue has sufficient room to transmit a packet
479  * with netdev_send().
480  *
481  * The kernel maintains a packet transmission queue, so the client is not
482  * expected to do additional queuing of packets.  Thus, this function is
483  * unlikely to ever be used.  It is included for completeness. */
484 void
485 netdev_send_wait(struct netdev *netdev)
486 {
487     void (*send_wait)(struct netdev *);
488
489     send_wait = netdev_get_dev(netdev)->netdev_class->send_wait;
490     if (send_wait) {
491         send_wait(netdev);
492     }
493 }
494
495 /* Attempts to set 'netdev''s MAC address to 'mac'.  Returns 0 if successful,
496  * otherwise a positive errno value. */
497 int
498 netdev_set_etheraddr(struct netdev *netdev, const uint8_t mac[ETH_ADDR_LEN])
499 {
500     return netdev_get_dev(netdev)->netdev_class->set_etheraddr(netdev, mac);
501 }
502
503 /* Retrieves 'netdev''s MAC address.  If successful, returns 0 and copies the
504  * the MAC address into 'mac'.  On failure, returns a positive errno value and
505  * clears 'mac' to all-zeros. */
506 int
507 netdev_get_etheraddr(const struct netdev *netdev, uint8_t mac[ETH_ADDR_LEN])
508 {
509     return netdev_get_dev(netdev)->netdev_class->get_etheraddr(netdev, mac);
510 }
511
512 /* Returns the name of the network device that 'netdev' represents,
513  * e.g. "eth0".  The caller must not modify or free the returned string. */
514 const char *
515 netdev_get_name(const struct netdev *netdev)
516 {
517     return netdev_get_dev(netdev)->name;
518 }
519
520 /* Retrieves the MTU of 'netdev'.  The MTU is the maximum size of transmitted
521  * (and received) packets, in bytes, not including the hardware header; thus,
522  * this is typically 1500 bytes for Ethernet devices.
523  *
524  * If successful, returns 0 and stores the MTU size in '*mtup'.  Returns
525  * EOPNOTSUPP if 'netdev' does not have an MTU (as e.g. some tunnels do not).
526  * On other failure, returns a positive errno value.  On failure, sets '*mtup'
527  * to 0. */
528 int
529 netdev_get_mtu(const struct netdev *netdev, int *mtup)
530 {
531     const struct netdev_class *class = netdev_get_dev(netdev)->netdev_class;
532     int error;
533
534     error = class->get_mtu ? class->get_mtu(netdev, mtup) : EOPNOTSUPP;
535     if (error) {
536         *mtup = 0;
537         if (error != EOPNOTSUPP) {
538             VLOG_DBG_RL(&rl, "failed to retrieve MTU for network device %s: "
539                          "%s", netdev_get_name(netdev), strerror(error));
540         }
541     }
542     return error;
543 }
544
545 /* Sets the MTU of 'netdev'.  The MTU is the maximum size of transmitted
546  * (and received) packets, in bytes.
547  *
548  * If successful, returns 0.  Returns EOPNOTSUPP if 'netdev' does not have an
549  * MTU (as e.g. some tunnels do not).  On other failure, returns a positive
550  * errno value. */
551 int
552 netdev_set_mtu(const struct netdev *netdev, int mtu)
553 {
554     const struct netdev_class *class = netdev_get_dev(netdev)->netdev_class;
555     int error;
556
557     error = class->set_mtu ? class->set_mtu(netdev, mtu) : EOPNOTSUPP;
558     if (error && error != EOPNOTSUPP) {
559         VLOG_DBG_RL(&rl, "failed to set MTU for network device %s: %s",
560                      netdev_get_name(netdev), strerror(error));
561     }
562
563     return error;
564 }
565
566 /* Returns the ifindex of 'netdev', if successful, as a positive number.  On
567  * failure, returns a negative errno value.
568  *
569  * The desired semantics of the ifindex value are a combination of those
570  * specified by POSIX for if_nametoindex() and by SNMP for ifIndex.  An ifindex
571  * value should be unique within a host and remain stable at least until
572  * reboot.  SNMP says an ifindex "ranges between 1 and the value of ifNumber"
573  * but many systems do not follow this rule anyhow.
574  *
575  * Some network devices may not implement support for this function.  In such
576  * cases this function will always return -EOPNOTSUPP.
577  */
578 int
579 netdev_get_ifindex(const struct netdev *netdev)
580 {
581     int (*get_ifindex)(const struct netdev *);
582
583     get_ifindex = netdev_get_dev(netdev)->netdev_class->get_ifindex;
584
585     return get_ifindex ? get_ifindex(netdev) : -EOPNOTSUPP;
586 }
587
588 /* Stores the features supported by 'netdev' into each of '*current',
589  * '*advertised', '*supported', and '*peer' that are non-null.  Each value is a
590  * bitmap of "enum ofp_port_features" bits, in host byte order.  Returns 0 if
591  * successful, otherwise a positive errno value.  On failure, all of the
592  * passed-in values are set to 0.
593  *
594  * Some network devices may not implement support for this function.  In such
595  * cases this function will always return EOPNOTSUPP. */
596 int
597 netdev_get_features(const struct netdev *netdev,
598                     enum netdev_features *current,
599                     enum netdev_features *advertised,
600                     enum netdev_features *supported,
601                     enum netdev_features *peer)
602 {
603     int (*get_features)(const struct netdev *netdev,
604                         enum netdev_features *current,
605                         enum netdev_features *advertised,
606                         enum netdev_features *supported,
607                         enum netdev_features *peer);
608     enum netdev_features dummy[4];
609     int error;
610
611     if (!current) {
612         current = &dummy[0];
613     }
614     if (!advertised) {
615         advertised = &dummy[1];
616     }
617     if (!supported) {
618         supported = &dummy[2];
619     }
620     if (!peer) {
621         peer = &dummy[3];
622     }
623
624     get_features = netdev_get_dev(netdev)->netdev_class->get_features;
625     error = get_features
626                     ? get_features(netdev, current, advertised, supported,
627                                    peer)
628                     : EOPNOTSUPP;
629     if (error) {
630         *current = *advertised = *supported = *peer = 0;
631     }
632     return error;
633 }
634
635 /* Returns the maximum speed of a network connection that has the NETDEV_F_*
636  * bits in 'features', in bits per second.  If no bits that indicate a speed
637  * are set in 'features', returns 'default_bps'. */
638 uint64_t
639 netdev_features_to_bps(enum netdev_features features,
640                        uint64_t default_bps)
641 {
642     enum {
643         F_1000000MB = NETDEV_F_1TB_FD,
644         F_100000MB = NETDEV_F_100GB_FD,
645         F_40000MB = NETDEV_F_40GB_FD,
646         F_10000MB = NETDEV_F_10GB_FD,
647         F_1000MB = NETDEV_F_1GB_HD | NETDEV_F_1GB_FD,
648         F_100MB = NETDEV_F_100MB_HD | NETDEV_F_100MB_FD,
649         F_10MB = NETDEV_F_10MB_HD | NETDEV_F_10MB_FD
650     };
651
652     return (  features & F_1000000MB ? UINT64_C(1000000000000)
653             : features & F_100000MB  ? UINT64_C(100000000000)
654             : features & F_40000MB   ? UINT64_C(40000000000)
655             : features & F_10000MB   ? UINT64_C(10000000000)
656             : features & F_1000MB    ? UINT64_C(1000000000)
657             : features & F_100MB     ? UINT64_C(100000000)
658             : features & F_10MB      ? UINT64_C(10000000)
659                                      : default_bps);
660 }
661
662 /* Returns true if any of the NETDEV_F_* bits that indicate a full-duplex link
663  * are set in 'features', otherwise false. */
664 bool
665 netdev_features_is_full_duplex(enum netdev_features features)
666 {
667     return (features & (NETDEV_F_10MB_FD | NETDEV_F_100MB_FD | NETDEV_F_1GB_FD
668                         | NETDEV_F_10GB_FD | NETDEV_F_40GB_FD
669                         | NETDEV_F_100GB_FD | NETDEV_F_1TB_FD)) != 0;
670 }
671
672 /* Set the features advertised by 'netdev' to 'advertise'.  Returns 0 if
673  * successful, otherwise a positive errno value. */
674 int
675 netdev_set_advertisements(struct netdev *netdev,
676                           enum netdev_features advertise)
677 {
678     return (netdev_get_dev(netdev)->netdev_class->set_advertisements
679             ? netdev_get_dev(netdev)->netdev_class->set_advertisements(
680                     netdev, advertise)
681             : EOPNOTSUPP);
682 }
683
684 /* If 'netdev' has an assigned IPv4 address, sets '*address' to that address
685  * and '*netmask' to its netmask and returns 0.  Otherwise, returns a positive
686  * errno value and sets '*address' to 0 (INADDR_ANY).
687  *
688  * The following error values have well-defined meanings:
689  *
690  *   - EADDRNOTAVAIL: 'netdev' has no assigned IPv4 address.
691  *
692  *   - EOPNOTSUPP: No IPv4 network stack attached to 'netdev'.
693  *
694  * 'address' or 'netmask' or both may be null, in which case the address or
695  * netmask is not reported. */
696 int
697 netdev_get_in4(const struct netdev *netdev,
698                struct in_addr *address_, struct in_addr *netmask_)
699 {
700     struct in_addr address;
701     struct in_addr netmask;
702     int error;
703
704     error = (netdev_get_dev(netdev)->netdev_class->get_in4
705              ? netdev_get_dev(netdev)->netdev_class->get_in4(netdev,
706                     &address, &netmask)
707              : EOPNOTSUPP);
708     if (address_) {
709         address_->s_addr = error ? 0 : address.s_addr;
710     }
711     if (netmask_) {
712         netmask_->s_addr = error ? 0 : netmask.s_addr;
713     }
714     return error;
715 }
716
717 /* Assigns 'addr' as 'netdev''s IPv4 address and 'mask' as its netmask.  If
718  * 'addr' is INADDR_ANY, 'netdev''s IPv4 address is cleared.  Returns a
719  * positive errno value. */
720 int
721 netdev_set_in4(struct netdev *netdev, struct in_addr addr, struct in_addr mask)
722 {
723     return (netdev_get_dev(netdev)->netdev_class->set_in4
724             ? netdev_get_dev(netdev)->netdev_class->set_in4(netdev, addr, mask)
725             : EOPNOTSUPP);
726 }
727
728 /* Obtains ad IPv4 address from device name and save the address in
729  * in4.  Returns 0 if successful, otherwise a positive errno value.
730  */
731 int
732 netdev_get_in4_by_name(const char *device_name, struct in_addr *in4)
733 {
734     struct netdev *netdev;
735     int error;
736
737     error = netdev_open(device_name, "system", &netdev);
738     if (error) {
739         in4->s_addr = htonl(0);
740         return error;
741     }
742
743     error = netdev_get_in4(netdev, in4, NULL);
744     netdev_close(netdev);
745     return error;
746 }
747
748 /* Adds 'router' as a default IP gateway for the TCP/IP stack that corresponds
749  * to 'netdev'. */
750 int
751 netdev_add_router(struct netdev *netdev, struct in_addr router)
752 {
753     COVERAGE_INC(netdev_add_router);
754     return (netdev_get_dev(netdev)->netdev_class->add_router
755             ? netdev_get_dev(netdev)->netdev_class->add_router(netdev, router)
756             : EOPNOTSUPP);
757 }
758
759 /* Looks up the next hop for 'host' for the TCP/IP stack that corresponds to
760  * 'netdev'.  If a route cannot not be determined, sets '*next_hop' to 0,
761  * '*netdev_name' to null, and returns a positive errno value.  Otherwise, if a
762  * next hop is found, stores the next hop gateway's address (0 if 'host' is on
763  * a directly connected network) in '*next_hop' and a copy of the name of the
764  * device to reach 'host' in '*netdev_name', and returns 0.  The caller is
765  * responsible for freeing '*netdev_name' (by calling free()). */
766 int
767 netdev_get_next_hop(const struct netdev *netdev,
768                     const struct in_addr *host, struct in_addr *next_hop,
769                     char **netdev_name)
770 {
771     int error = (netdev_get_dev(netdev)->netdev_class->get_next_hop
772                  ? netdev_get_dev(netdev)->netdev_class->get_next_hop(
773                         host, next_hop, netdev_name)
774                  : EOPNOTSUPP);
775     if (error) {
776         next_hop->s_addr = 0;
777         *netdev_name = NULL;
778     }
779     return error;
780 }
781
782 /* Populates 'smap' with status information.
783  *
784  * Populates 'smap' with 'netdev' specific status information.  This
785  * information may be used to populate the status column of the Interface table
786  * as defined in ovs-vswitchd.conf.db(5). */
787 int
788 netdev_get_status(const struct netdev *netdev, struct smap *smap)
789 {
790     struct netdev_dev *dev = netdev_get_dev(netdev);
791
792     return (dev->netdev_class->get_status
793             ? dev->netdev_class->get_status(netdev, smap)
794             : EOPNOTSUPP);
795 }
796
797 /* If 'netdev' has an assigned IPv6 address, sets '*in6' to that address and
798  * returns 0.  Otherwise, returns a positive errno value and sets '*in6' to
799  * all-zero-bits (in6addr_any).
800  *
801  * The following error values have well-defined meanings:
802  *
803  *   - EADDRNOTAVAIL: 'netdev' has no assigned IPv6 address.
804  *
805  *   - EOPNOTSUPP: No IPv6 network stack attached to 'netdev'.
806  *
807  * 'in6' may be null, in which case the address itself is not reported. */
808 int
809 netdev_get_in6(const struct netdev *netdev, struct in6_addr *in6)
810 {
811     struct in6_addr dummy;
812     int error;
813
814     error = (netdev_get_dev(netdev)->netdev_class->get_in6
815              ? netdev_get_dev(netdev)->netdev_class->get_in6(netdev,
816                     in6 ? in6 : &dummy)
817              : EOPNOTSUPP);
818     if (error && in6) {
819         memset(in6, 0, sizeof *in6);
820     }
821     return error;
822 }
823
824 /* On 'netdev', turns off the flags in 'off' and then turns on the flags in
825  * 'on'.  If 'permanent' is true, the changes will persist; otherwise, they
826  * will be reverted when 'netdev' is closed or the program exits.  Returns 0 if
827  * successful, otherwise a positive errno value. */
828 static int
829 do_update_flags(struct netdev *netdev, enum netdev_flags off,
830                 enum netdev_flags on, enum netdev_flags *old_flagsp,
831                 bool permanent)
832 {
833     enum netdev_flags old_flags;
834     int error;
835
836     error = netdev_get_dev(netdev)->netdev_class->update_flags(netdev,
837                 off & ~on, on, &old_flags);
838     if (error) {
839         VLOG_WARN_RL(&rl, "failed to %s flags for network device %s: %s",
840                      off || on ? "set" : "get", netdev_get_name(netdev),
841                      strerror(error));
842         old_flags = 0;
843     } else if ((off || on) && !permanent) {
844         enum netdev_flags new_flags = (old_flags & ~off) | on;
845         enum netdev_flags changed_flags = old_flags ^ new_flags;
846         if (changed_flags) {
847             if (!netdev->changed_flags) {
848                 netdev->save_flags = old_flags;
849             }
850             netdev->changed_flags |= changed_flags;
851         }
852     }
853     if (old_flagsp) {
854         *old_flagsp = old_flags;
855     }
856     return error;
857 }
858
859 /* Obtains the current flags for 'netdev' and stores them into '*flagsp'.
860  * Returns 0 if successful, otherwise a positive errno value.  On failure,
861  * stores 0 into '*flagsp'. */
862 int
863 netdev_get_flags(const struct netdev *netdev_, enum netdev_flags *flagsp)
864 {
865     struct netdev *netdev = CONST_CAST(struct netdev *, netdev_);
866     return do_update_flags(netdev, 0, 0, flagsp, false);
867 }
868
869 /* Sets the flags for 'netdev' to 'flags'.
870  * If 'permanent' is true, the changes will persist; otherwise, they
871  * will be reverted when 'netdev' is closed or the program exits.
872  * Returns 0 if successful, otherwise a positive errno value. */
873 int
874 netdev_set_flags(struct netdev *netdev, enum netdev_flags flags,
875                  bool permanent)
876 {
877     return do_update_flags(netdev, -1, flags, NULL, permanent);
878 }
879
880 /* Turns on the specified 'flags' on 'netdev'.
881  * If 'permanent' is true, the changes will persist; otherwise, they
882  * will be reverted when 'netdev' is closed or the program exits.
883  * Returns 0 if successful, otherwise a positive errno value. */
884 int
885 netdev_turn_flags_on(struct netdev *netdev, enum netdev_flags flags,
886                      bool permanent)
887 {
888     return do_update_flags(netdev, 0, flags, NULL, permanent);
889 }
890
891 /* Turns off the specified 'flags' on 'netdev'.
892  * If 'permanent' is true, the changes will persist; otherwise, they
893  * will be reverted when 'netdev' is closed or the program exits.
894  * Returns 0 if successful, otherwise a positive errno value. */
895 int
896 netdev_turn_flags_off(struct netdev *netdev, enum netdev_flags flags,
897                       bool permanent)
898 {
899     return do_update_flags(netdev, flags, 0, NULL, permanent);
900 }
901
902 /* Looks up the ARP table entry for 'ip' on 'netdev'.  If one exists and can be
903  * successfully retrieved, it stores the corresponding MAC address in 'mac' and
904  * returns 0.  Otherwise, it returns a positive errno value; in particular,
905  * ENXIO indicates that there is no ARP table entry for 'ip' on 'netdev'. */
906 int
907 netdev_arp_lookup(const struct netdev *netdev,
908                   ovs_be32 ip, uint8_t mac[ETH_ADDR_LEN])
909 {
910     int error = (netdev_get_dev(netdev)->netdev_class->arp_lookup
911                  ? netdev_get_dev(netdev)->netdev_class->arp_lookup(netdev,
912                         ip, mac)
913                  : EOPNOTSUPP);
914     if (error) {
915         memset(mac, 0, ETH_ADDR_LEN);
916     }
917     return error;
918 }
919
920 /* Returns true if carrier is active (link light is on) on 'netdev'. */
921 bool
922 netdev_get_carrier(const struct netdev *netdev)
923 {
924     int error;
925     enum netdev_flags flags;
926     bool carrier;
927
928     netdev_get_flags(netdev, &flags);
929     if (!(flags & NETDEV_UP)) {
930         return false;
931     }
932
933     if (!netdev_get_dev(netdev)->netdev_class->get_carrier) {
934         return true;
935     }
936
937     error = netdev_get_dev(netdev)->netdev_class->get_carrier(netdev,
938                                                               &carrier);
939     if (error) {
940         VLOG_DBG("%s: failed to get network device carrier status, assuming "
941                  "down: %s", netdev_get_name(netdev), strerror(error));
942         carrier = false;
943     }
944
945     return carrier;
946 }
947
948 /* Returns the number of times 'netdev''s carrier has changed. */
949 long long int
950 netdev_get_carrier_resets(const struct netdev *netdev)
951 {
952     return (netdev_get_dev(netdev)->netdev_class->get_carrier_resets
953             ? netdev_get_dev(netdev)->netdev_class->get_carrier_resets(netdev)
954             : 0);
955 }
956
957 /* Attempts to force netdev_get_carrier() to poll 'netdev''s MII registers for
958  * link status instead of checking 'netdev''s carrier.  'netdev''s MII
959  * registers will be polled once ever 'interval' milliseconds.  If 'netdev'
960  * does not support MII, another method may be used as a fallback.  If
961  * 'interval' is less than or equal to zero, reverts netdev_get_carrier() to
962  * its normal behavior.
963  *
964  * Returns 0 if successful, otherwise a positive errno value. */
965 int
966 netdev_set_miimon_interval(struct netdev *netdev, long long int interval)
967 {
968     struct netdev_dev *netdev_dev = netdev_get_dev(netdev);
969     return (netdev_dev->netdev_class->set_miimon_interval
970             ? netdev_dev->netdev_class->set_miimon_interval(netdev, interval)
971             : EOPNOTSUPP);
972 }
973
974 /* Retrieves current device stats for 'netdev'. */
975 int
976 netdev_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
977 {
978     int error;
979
980     COVERAGE_INC(netdev_get_stats);
981     error = (netdev_get_dev(netdev)->netdev_class->get_stats
982              ? netdev_get_dev(netdev)->netdev_class->get_stats(netdev, stats)
983              : EOPNOTSUPP);
984     if (error) {
985         memset(stats, 0xff, sizeof *stats);
986     }
987     return error;
988 }
989
990 /* Attempts to change the stats for 'netdev' to those provided in 'stats'.
991  * Returns 0 if successful, otherwise a positive errno value.
992  *
993  * This will probably fail for most network devices.  Some devices might only
994  * allow setting their stats to 0. */
995 int
996 netdev_set_stats(struct netdev *netdev, const struct netdev_stats *stats)
997 {
998     return (netdev_get_dev(netdev)->netdev_class->set_stats
999              ? netdev_get_dev(netdev)->netdev_class->set_stats(netdev, stats)
1000              : EOPNOTSUPP);
1001 }
1002
1003 /* Attempts to set input rate limiting (policing) policy, such that up to
1004  * 'kbits_rate' kbps of traffic is accepted, with a maximum accumulative burst
1005  * size of 'kbits' kb. */
1006 int
1007 netdev_set_policing(struct netdev *netdev, uint32_t kbits_rate,
1008                     uint32_t kbits_burst)
1009 {
1010     return (netdev_get_dev(netdev)->netdev_class->set_policing
1011             ? netdev_get_dev(netdev)->netdev_class->set_policing(netdev,
1012                     kbits_rate, kbits_burst)
1013             : EOPNOTSUPP);
1014 }
1015
1016 /* Adds to 'types' all of the forms of QoS supported by 'netdev', or leaves it
1017  * empty if 'netdev' does not support QoS.  Any names added to 'types' should
1018  * be documented as valid for the "type" column in the "QoS" table in
1019  * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1020  *
1021  * Every network device supports disabling QoS with a type of "", but this type
1022  * will not be added to 'types'.
1023  *
1024  * The caller must initialize 'types' (e.g. with sset_init()) before calling
1025  * this function.  The caller is responsible for destroying 'types' (e.g. with
1026  * sset_destroy()) when it is no longer needed.
1027  *
1028  * Returns 0 if successful, otherwise a positive errno value. */
1029 int
1030 netdev_get_qos_types(const struct netdev *netdev, struct sset *types)
1031 {
1032     const struct netdev_class *class = netdev_get_dev(netdev)->netdev_class;
1033     return (class->get_qos_types
1034             ? class->get_qos_types(netdev, types)
1035             : 0);
1036 }
1037
1038 /* Queries 'netdev' for its capabilities regarding the specified 'type' of QoS,
1039  * which should be "" or one of the types returned by netdev_get_qos_types()
1040  * for 'netdev'.  Returns 0 if successful, otherwise a positive errno value.
1041  * On success, initializes 'caps' with the QoS capabilities; on failure, clears
1042  * 'caps' to all zeros. */
1043 int
1044 netdev_get_qos_capabilities(const struct netdev *netdev, const char *type,
1045                             struct netdev_qos_capabilities *caps)
1046 {
1047     const struct netdev_class *class = netdev_get_dev(netdev)->netdev_class;
1048
1049     if (*type) {
1050         int retval = (class->get_qos_capabilities
1051                       ? class->get_qos_capabilities(netdev, type, caps)
1052                       : EOPNOTSUPP);
1053         if (retval) {
1054             memset(caps, 0, sizeof *caps);
1055         }
1056         return retval;
1057     } else {
1058         /* Every netdev supports turning off QoS. */
1059         memset(caps, 0, sizeof *caps);
1060         return 0;
1061     }
1062 }
1063
1064 /* Obtains the number of queues supported by 'netdev' for the specified 'type'
1065  * of QoS.  Returns 0 if successful, otherwise a positive errno value.  Stores
1066  * the number of queues (zero on failure) in '*n_queuesp'.
1067  *
1068  * This is just a simple wrapper around netdev_get_qos_capabilities(). */
1069 int
1070 netdev_get_n_queues(const struct netdev *netdev,
1071                     const char *type, unsigned int *n_queuesp)
1072 {
1073     struct netdev_qos_capabilities caps;
1074     int retval;
1075
1076     retval = netdev_get_qos_capabilities(netdev, type, &caps);
1077     *n_queuesp = caps.n_queues;
1078     return retval;
1079 }
1080
1081 /* Queries 'netdev' about its currently configured form of QoS.  If successful,
1082  * stores the name of the current form of QoS into '*typep', stores any details
1083  * of configuration as string key-value pairs in 'details', and returns 0.  On
1084  * failure, sets '*typep' to NULL and returns a positive errno value.
1085  *
1086  * A '*typep' of "" indicates that QoS is currently disabled on 'netdev'.
1087  *
1088  * The caller must initialize 'details' as an empty smap (e.g. with
1089  * smap_init()) before calling this function.  The caller must free 'details'
1090  * when it is no longer needed (e.g. with smap_destroy()).
1091  *
1092  * The caller must not modify or free '*typep'.
1093  *
1094  * '*typep' will be one of the types returned by netdev_get_qos_types() for
1095  * 'netdev'.  The contents of 'details' should be documented as valid for
1096  * '*typep' in the "other_config" column in the "QoS" table in
1097  * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)). */
1098 int
1099 netdev_get_qos(const struct netdev *netdev,
1100                const char **typep, struct smap *details)
1101 {
1102     const struct netdev_class *class = netdev_get_dev(netdev)->netdev_class;
1103     int retval;
1104
1105     if (class->get_qos) {
1106         retval = class->get_qos(netdev, typep, details);
1107         if (retval) {
1108             *typep = NULL;
1109             smap_clear(details);
1110         }
1111         return retval;
1112     } else {
1113         /* 'netdev' doesn't support QoS, so report that QoS is disabled. */
1114         *typep = "";
1115         return 0;
1116     }
1117 }
1118
1119 /* Attempts to reconfigure QoS on 'netdev', changing the form of QoS to 'type'
1120  * with details of configuration from 'details'.  Returns 0 if successful,
1121  * otherwise a positive errno value.  On error, the previous QoS configuration
1122  * is retained.
1123  *
1124  * When this function changes the type of QoS (not just 'details'), this also
1125  * resets all queue configuration for 'netdev' to their defaults (which depend
1126  * on the specific type of QoS).  Otherwise, the queue configuration for
1127  * 'netdev' is unchanged.
1128  *
1129  * 'type' should be "" (to disable QoS) or one of the types returned by
1130  * netdev_get_qos_types() for 'netdev'.  The contents of 'details' should be
1131  * documented as valid for the given 'type' in the "other_config" column in the
1132  * "QoS" table in vswitchd/vswitch.xml (which is built as
1133  * ovs-vswitchd.conf.db(8)).
1134  *
1135  * NULL may be specified for 'details' if there are no configuration
1136  * details. */
1137 int
1138 netdev_set_qos(struct netdev *netdev,
1139                const char *type, const struct smap *details)
1140 {
1141     const struct netdev_class *class = netdev_get_dev(netdev)->netdev_class;
1142
1143     if (!type) {
1144         type = "";
1145     }
1146
1147     if (class->set_qos) {
1148         if (!details) {
1149             static struct smap empty = SMAP_INITIALIZER(&empty);
1150             details = &empty;
1151         }
1152         return class->set_qos(netdev, type, details);
1153     } else {
1154         return *type ? EOPNOTSUPP : 0;
1155     }
1156 }
1157
1158 /* Queries 'netdev' for information about the queue numbered 'queue_id'.  If
1159  * successful, adds that information as string key-value pairs to 'details'.
1160  * Returns 0 if successful, otherwise a positive errno value.
1161  *
1162  * 'queue_id' must be less than the number of queues supported by 'netdev' for
1163  * the current form of QoS (e.g. as returned by netdev_get_n_queues(netdev)).
1164  *
1165  * The returned contents of 'details' should be documented as valid for the
1166  * given 'type' in the "other_config" column in the "Queue" table in
1167  * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1168  *
1169  * The caller must initialize 'details' (e.g. with smap_init()) before calling
1170  * this function.  The caller must free 'details' when it is no longer needed
1171  * (e.g. with smap_destroy()). */
1172 int
1173 netdev_get_queue(const struct netdev *netdev,
1174                  unsigned int queue_id, struct smap *details)
1175 {
1176     const struct netdev_class *class = netdev_get_dev(netdev)->netdev_class;
1177     int retval;
1178
1179     retval = (class->get_queue
1180               ? class->get_queue(netdev, queue_id, details)
1181               : EOPNOTSUPP);
1182     if (retval) {
1183         smap_clear(details);
1184     }
1185     return retval;
1186 }
1187
1188 /* Configures the queue numbered 'queue_id' on 'netdev' with the key-value
1189  * string pairs in 'details'.  The contents of 'details' should be documented
1190  * as valid for the given 'type' in the "other_config" column in the "Queue"
1191  * table in vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1192  * Returns 0 if successful, otherwise a positive errno value.  On failure, the
1193  * given queue's configuration should be unmodified.
1194  *
1195  * 'queue_id' must be less than the number of queues supported by 'netdev' for
1196  * the current form of QoS (e.g. as returned by netdev_get_n_queues(netdev)).
1197  *
1198  * This function does not modify 'details', and the caller retains ownership of
1199  * it. */
1200 int
1201 netdev_set_queue(struct netdev *netdev,
1202                  unsigned int queue_id, const struct smap *details)
1203 {
1204     const struct netdev_class *class = netdev_get_dev(netdev)->netdev_class;
1205     return (class->set_queue
1206             ? class->set_queue(netdev, queue_id, details)
1207             : EOPNOTSUPP);
1208 }
1209
1210 /* Attempts to delete the queue numbered 'queue_id' from 'netdev'.  Some kinds
1211  * of QoS may have a fixed set of queues, in which case attempts to delete them
1212  * will fail with EOPNOTSUPP.
1213  *
1214  * Returns 0 if successful, otherwise a positive errno value.  On failure, the
1215  * given queue will be unmodified.
1216  *
1217  * 'queue_id' must be less than the number of queues supported by 'netdev' for
1218  * the current form of QoS (e.g. as returned by
1219  * netdev_get_n_queues(netdev)). */
1220 int
1221 netdev_delete_queue(struct netdev *netdev, unsigned int queue_id)
1222 {
1223     const struct netdev_class *class = netdev_get_dev(netdev)->netdev_class;
1224     return (class->delete_queue
1225             ? class->delete_queue(netdev, queue_id)
1226             : EOPNOTSUPP);
1227 }
1228
1229 /* Obtains statistics about 'queue_id' on 'netdev'.  On success, returns 0 and
1230  * fills 'stats' with the queue's statistics; individual members of 'stats' may
1231  * be set to all-1-bits if the statistic is unavailable.  On failure, returns a
1232  * positive errno value and fills 'stats' with all-1-bits. */
1233 int
1234 netdev_get_queue_stats(const struct netdev *netdev, unsigned int queue_id,
1235                        struct netdev_queue_stats *stats)
1236 {
1237     const struct netdev_class *class = netdev_get_dev(netdev)->netdev_class;
1238     int retval;
1239
1240     retval = (class->get_queue_stats
1241               ? class->get_queue_stats(netdev, queue_id, stats)
1242               : EOPNOTSUPP);
1243     if (retval) {
1244         memset(stats, 0xff, sizeof *stats);
1245     }
1246     return retval;
1247 }
1248
1249 /* Iterates over all of 'netdev''s queues, calling 'cb' with the queue's ID,
1250  * its configuration, and the 'aux' specified by the caller.  The order of
1251  * iteration is unspecified, but (when successful) each queue is visited
1252  * exactly once.
1253  *
1254  * Calling this function may be more efficient than calling netdev_get_queue()
1255  * for every queue.
1256  *
1257  * 'cb' must not modify or free the 'details' argument passed in.  It may
1258  * delete or modify the queue passed in as its 'queue_id' argument.  It may
1259  * modify but must not delete any other queue within 'netdev'.  'cb' should not
1260  * add new queues because this may cause some queues to be visited twice or not
1261  * at all.
1262  *
1263  * Returns 0 if successful, otherwise a positive errno value.  On error, some
1264  * configured queues may not have been included in the iteration. */
1265 int
1266 netdev_dump_queues(const struct netdev *netdev,
1267                    netdev_dump_queues_cb *cb, void *aux)
1268 {
1269     const struct netdev_class *class = netdev_get_dev(netdev)->netdev_class;
1270     return (class->dump_queues
1271             ? class->dump_queues(netdev, cb, aux)
1272             : EOPNOTSUPP);
1273 }
1274
1275 /* Iterates over all of 'netdev''s queues, calling 'cb' with the queue's ID,
1276  * its statistics, and the 'aux' specified by the caller.  The order of
1277  * iteration is unspecified, but (when successful) each queue is visited
1278  * exactly once.
1279  *
1280  * Calling this function may be more efficient than calling
1281  * netdev_get_queue_stats() for every queue.
1282  *
1283  * 'cb' must not modify or free the statistics passed in.
1284  *
1285  * Returns 0 if successful, otherwise a positive errno value.  On error, some
1286  * configured queues may not have been included in the iteration. */
1287 int
1288 netdev_dump_queue_stats(const struct netdev *netdev,
1289                         netdev_dump_queue_stats_cb *cb, void *aux)
1290 {
1291     const struct netdev_class *class = netdev_get_dev(netdev)->netdev_class;
1292     return (class->dump_queue_stats
1293             ? class->dump_queue_stats(netdev, cb, aux)
1294             : EOPNOTSUPP);
1295 }
1296
1297 /* Returns a sequence number which indicates changes in one of 'netdev''s
1298  * properties.  The returned sequence will be nonzero so that callers have a
1299  * value which they may use as a reset when tracking 'netdev'.
1300  *
1301  * The returned sequence number will change whenever 'netdev''s flags,
1302  * features, ethernet address, or carrier changes.  It may change for other
1303  * reasons as well, or no reason at all. */
1304 unsigned int
1305 netdev_change_seq(const struct netdev *netdev)
1306 {
1307     return netdev_get_dev(netdev)->netdev_class->change_seq(netdev);
1308 }
1309 \f
1310 /* Initializes 'netdev_dev' as a netdev device named 'name' of the specified
1311  * 'netdev_class'.  This function is ordinarily called from a netdev provider's
1312  * 'create' function.
1313  *
1314  * This function adds 'netdev_dev' to a netdev-owned shash, so it is
1315  * very important that 'netdev_dev' only be freed after calling
1316  * the refcount drops to zero.  */
1317 void
1318 netdev_dev_init(struct netdev_dev *netdev_dev, const char *name,
1319                 const struct netdev_class *netdev_class)
1320 {
1321     ovs_assert(!shash_find(&netdev_dev_shash, name));
1322
1323     memset(netdev_dev, 0, sizeof *netdev_dev);
1324     netdev_dev->netdev_class = netdev_class;
1325     netdev_dev->name = xstrdup(name);
1326     netdev_dev->node = shash_add(&netdev_dev_shash, name, netdev_dev);
1327 }
1328
1329 /* Undoes the results of initialization.
1330  *
1331  * Normally this function does not need to be called as netdev_close has
1332  * the same effect when the refcount drops to zero.
1333  * However, it may be called by providers due to an error on creation
1334  * that occurs after initialization.  It this case netdev_close() would
1335  * never be called. */
1336 void
1337 netdev_dev_uninit(struct netdev_dev *netdev_dev, bool destroy)
1338 {
1339     char *name = netdev_dev->name;
1340
1341     ovs_assert(!netdev_dev->ref_cnt);
1342
1343     shash_delete(&netdev_dev_shash, netdev_dev->node);
1344
1345     if (destroy) {
1346         netdev_dev->netdev_class->destroy(netdev_dev);
1347     }
1348     free(name);
1349 }
1350
1351 /* Returns the class type of 'netdev_dev'.
1352  *
1353  * The caller must not free the returned value. */
1354 const char *
1355 netdev_dev_get_type(const struct netdev_dev *netdev_dev)
1356 {
1357     return netdev_dev->netdev_class->type;
1358 }
1359
1360 /* Returns the class associated with 'netdev_dev'. */
1361 const struct netdev_class *
1362 netdev_dev_get_class(const struct netdev_dev *netdev_dev)
1363 {
1364     return netdev_dev->netdev_class;
1365 }
1366
1367 /* Returns the name of 'netdev_dev'.
1368  *
1369  * The caller must not free the returned value. */
1370 const char *
1371 netdev_dev_get_name(const struct netdev_dev *netdev_dev)
1372 {
1373     return netdev_dev->name;
1374 }
1375
1376 /* Returns the netdev_dev with 'name' or NULL if there is none.
1377  *
1378  * The caller must not free the returned value. */
1379 struct netdev_dev *
1380 netdev_dev_from_name(const char *name)
1381 {
1382     return shash_find_data(&netdev_dev_shash, name);
1383 }
1384
1385 /* Fills 'device_list' with devices that match 'netdev_class'.
1386  *
1387  * The caller is responsible for initializing and destroying 'device_list'
1388  * but the contained netdev_devs must not be freed. */
1389 void
1390 netdev_dev_get_devices(const struct netdev_class *netdev_class,
1391                        struct shash *device_list)
1392 {
1393     struct shash_node *node;
1394     SHASH_FOR_EACH (node, &netdev_dev_shash) {
1395         struct netdev_dev *dev = node->data;
1396
1397         if (dev->netdev_class == netdev_class) {
1398             shash_add(device_list, node->name, node->data);
1399         }
1400     }
1401 }
1402
1403 /* Initializes 'netdev' as a instance of the netdev_dev.
1404  *
1405  * This function adds 'netdev' to a netdev-owned linked list, so it is very
1406  * important that 'netdev' only be freed after calling netdev_close(). */
1407 void
1408 netdev_init(struct netdev *netdev, struct netdev_dev *netdev_dev)
1409 {
1410     memset(netdev, 0, sizeof *netdev);
1411     netdev->netdev_dev = netdev_dev;
1412     list_push_back(&netdev_list, &netdev->node);
1413 }
1414
1415 /* Undoes the results of initialization.
1416  *
1417  * Normally this function only needs to be called from netdev_close().
1418  * However, it may be called by providers due to an error on opening
1419  * that occurs after initialization.  It this case netdev_close() would
1420  * never be called. */
1421 void
1422 netdev_uninit(struct netdev *netdev, bool close)
1423 {
1424     /* Restore flags that we changed, if any. */
1425     int error = restore_flags(netdev);
1426     list_remove(&netdev->node);
1427     if (error) {
1428         VLOG_WARN("failed to restore network device flags on %s: %s",
1429                   netdev_get_name(netdev), strerror(error));
1430     }
1431
1432     if (close) {
1433         netdev_get_dev(netdev)->netdev_class->close(netdev);
1434     }
1435 }
1436
1437
1438 /* Returns the class type of 'netdev'.
1439  *
1440  * The caller must not free the returned value. */
1441 const char *
1442 netdev_get_type(const struct netdev *netdev)
1443 {
1444     return netdev_get_dev(netdev)->netdev_class->type;
1445 }
1446
1447
1448 const char *
1449 netdev_get_type_from_name(const char *name)
1450 {
1451     const struct netdev_dev *dev = netdev_dev_from_name(name);
1452     return dev ? netdev_dev_get_type(dev) : NULL;
1453 }
1454
1455 struct netdev_dev *
1456 netdev_get_dev(const struct netdev *netdev)
1457 {
1458     return netdev->netdev_dev;
1459 }
1460 \f
1461 /* Restore the network device flags on 'netdev' to those that were active
1462  * before we changed them.  Returns 0 if successful, otherwise a positive
1463  * errno value.
1464  *
1465  * To avoid reentry, the caller must ensure that fatal signals are blocked. */
1466 static int
1467 restore_flags(struct netdev *netdev)
1468 {
1469     if (netdev->changed_flags) {
1470         enum netdev_flags restore = netdev->save_flags & netdev->changed_flags;
1471         enum netdev_flags old_flags;
1472         return netdev_get_dev(netdev)->netdev_class->update_flags(netdev,
1473                                            netdev->changed_flags & ~restore,
1474                                            restore, &old_flags);
1475     }
1476     return 0;
1477 }
1478
1479 /* Close all netdevs on shutdown so they can do any needed cleanup such as
1480  * destroying devices, restoring flags, etc. */
1481 static void
1482 close_all_netdevs(void *aux OVS_UNUSED)
1483 {
1484     struct netdev *netdev, *next;
1485     LIST_FOR_EACH_SAFE(netdev, next, node, &netdev_list) {
1486         netdev_close(netdev);
1487     }
1488 }