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