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