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