datapath: Remove WARN_ON_ONCE(1) now that this code has been exercised.
[sliver-openvswitch.git] / lib / netdev.c
1 /*
2  * Copyright (c) 2008, 2009 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 "list.h"
32 #include "netdev-provider.h"
33 #include "ofpbuf.h"
34 #include "packets.h"
35 #include "poll-loop.h"
36 #include "shash.h"
37 #include "svec.h"
38
39 #define THIS_MODULE VLM_netdev
40 #include "vlog.h"
41
42 static const struct netdev_class *netdev_classes[] = {
43     &netdev_linux_class,
44     &netdev_tap_class,
45 };
46 static int n_netdev_classes = ARRAY_SIZE(netdev_classes);
47
48 /* All open network devices. */
49 static struct list netdev_list = LIST_INITIALIZER(&netdev_list);
50
51 /* This is set pretty low because we probably won't learn anything from the
52  * additional log messages. */
53 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
54
55 static void restore_all_flags(void *aux);
56 static int restore_flags(struct netdev *netdev);
57
58 /* Attempts to initialize the netdev module.  Returns 0 if successful,
59  * otherwise a positive errno value.
60  *
61  * Calling this function is optional.  If not called explicitly, it will
62  * automatically be called upon the first attempt to open a network device. */
63 int
64 netdev_initialize(void)
65 {
66     static int status = -1;
67     if (status < 0) {
68         int i, j;
69
70         fatal_signal_add_hook(restore_all_flags, NULL, true);
71
72         status = 0;
73         for (i = j = 0; i < n_netdev_classes; i++) {
74             const struct netdev_class *class = netdev_classes[i];
75             if (class->init) {
76                 int retval = class->init();
77                 if (!retval) {
78                     netdev_classes[j++] = class;
79                 } else {
80                     VLOG_ERR("failed to initialize %s network device "
81                              "class: %s", class->name, strerror(retval));
82                     if (!status) {
83                         status = retval;
84                     }
85                 }
86             }
87         }
88         n_netdev_classes = j;
89     }
90     return status;
91 }
92
93 /* Performs periodic work needed by all the various kinds of netdevs.
94  *
95  * If your program opens any netdevs, it must call this function within its
96  * main poll loop. */
97 void
98 netdev_run(void)
99 {
100     int i;
101     for (i = 0; i < n_netdev_classes; i++) {
102         const struct netdev_class *class = netdev_classes[i];
103         if (class->run) {
104             class->run();
105         }
106     }
107 }
108
109 /* Arranges for poll_block() to wake up when netdev_run() needs to be called.
110  *
111  * If your program opens any netdevs, it must call this function within its
112  * main poll loop. */
113 void
114 netdev_wait(void)
115 {
116     int i;
117     for (i = 0; i < n_netdev_classes; i++) {
118         const struct netdev_class *class = netdev_classes[i];
119         if (class->wait) {
120             class->wait();
121         }
122     }
123 }
124
125 /* Opens the network device named 'name' (e.g. "eth0") and returns zero if
126  * successful, otherwise a positive errno value.  On success, sets '*netdevp'
127  * to the new network device, otherwise to null.
128  *
129  * 'ethertype' may be a 16-bit Ethernet protocol value in host byte order to
130  * capture frames of that type received on the device.  It may also be one of
131  * the 'enum netdev_pseudo_ethertype' values to receive frames in one of those
132  * categories. */
133 int
134 netdev_open(const char *name_, int ethertype, struct netdev **netdevp)
135 {
136     char *name = xstrdup(name_);
137     char *prefix, *suffix, *colon;
138     struct netdev *netdev = NULL;
139     int error;
140     int i;
141
142     netdev_initialize();
143     colon = strchr(name, ':');
144     if (colon) {
145         *colon = '\0';
146         prefix = name;
147         suffix = colon + 1;
148     } else {
149         prefix = "";
150         suffix = name;
151     }
152
153     for (i = 0; i < n_netdev_classes; i++) {
154         const struct netdev_class *class = netdev_classes[i];
155         if (!strcmp(prefix, class->prefix)) {
156             error = class->open(name_, suffix, ethertype, &netdev);
157             goto exit;
158         }
159     }
160     error = EAFNOSUPPORT;
161
162 exit:
163     *netdevp = error ? NULL : netdev;
164     return error;
165 }
166
167 /* Closes and destroys 'netdev'. */
168 void
169 netdev_close(struct netdev *netdev)
170 {
171     if (netdev) {
172         char *name;
173         int error;
174
175         /* Restore flags that we changed, if any. */
176         fatal_signal_block();
177         error = restore_flags(netdev);
178         list_remove(&netdev->node);
179         fatal_signal_unblock();
180         if (error) {
181             VLOG_WARN("failed to restore network device flags on %s: %s",
182                       netdev->name, strerror(error));
183         }
184
185         /* Free. */
186         name = netdev->name;
187         netdev->class->close(netdev);
188         free(name);
189     }
190 }
191
192 /* Returns true if a network device named 'name' exists and may be opened,
193  * otherwise false. */
194 bool
195 netdev_exists(const char *name)
196 {
197     struct netdev *netdev;
198     int error;
199
200     error = netdev_open(name, NETDEV_ETH_TYPE_NONE, &netdev);
201     if (!error) {
202         netdev_close(netdev);
203         return true;
204     } else {
205         if (error != ENODEV) {
206             VLOG_WARN("failed to open network device %s: %s",
207                       name, strerror(error));
208         }
209         return false;
210     }
211 }
212
213 /* Initializes 'svec' with a list of the names of all known network devices. */
214 int
215 netdev_enumerate(struct svec *svec)
216 {
217     int error;
218     int i;
219
220     svec_init(svec);
221
222     netdev_initialize();
223
224     error = 0;
225     for (i = 0; i < n_netdev_classes; i++) {
226         const struct netdev_class *class = netdev_classes[i];
227         if (class->enumerate) {
228             int retval = class->enumerate(svec);
229             if (retval) {
230                 VLOG_WARN("failed to enumerate %s network devices: %s",
231                           class->name, strerror(retval));
232                 if (!error) {
233                     error = retval;
234                 }
235             }
236         }
237     }
238     return error;
239 }
240
241 /* Attempts to receive a packet from 'netdev' into 'buffer', which the caller
242  * must have initialized with sufficient room for the packet.  The space
243  * required to receive any packet is ETH_HEADER_LEN bytes, plus VLAN_HEADER_LEN
244  * bytes, plus the device's MTU (which may be retrieved via netdev_get_mtu()).
245  * (Some devices do not allow for a VLAN header, in which case VLAN_HEADER_LEN
246  * need not be included.)
247  *
248  * If a packet is successfully retrieved, returns 0.  In this case 'buffer' is
249  * guaranteed to contain at least ETH_TOTAL_MIN bytes.  Otherwise, returns a
250  * positive errno value.  Returns EAGAIN immediately if no packet is ready to
251  * be returned.
252  */
253 int
254 netdev_recv(struct netdev *netdev, struct ofpbuf *buffer)
255 {
256     int retval;
257
258     assert(buffer->size == 0);
259     assert(ofpbuf_tailroom(buffer) >= ETH_TOTAL_MIN);
260
261     retval = netdev->class->recv(netdev,
262                                  buffer->data, ofpbuf_tailroom(buffer));
263     if (retval >= 0) {
264         COVERAGE_INC(netdev_received);
265         buffer->size += retval;
266         if (buffer->size < ETH_TOTAL_MIN) {
267             ofpbuf_put_zeros(buffer, ETH_TOTAL_MIN - buffer->size);
268         }
269         return 0;
270     } else {
271         return -retval;
272     }
273 }
274
275 /* Registers with the poll loop to wake up from the next call to poll_block()
276  * when a packet is ready to be received with netdev_recv() on 'netdev'. */
277 void
278 netdev_recv_wait(struct netdev *netdev)
279 {
280     netdev->class->recv_wait(netdev);
281 }
282
283 /* Discards all packets waiting to be received from 'netdev'. */
284 int
285 netdev_drain(struct netdev *netdev)
286 {
287     return netdev->class->drain(netdev);
288 }
289
290 /* Sends 'buffer' on 'netdev'.  Returns 0 if successful, otherwise a positive
291  * errno value.  Returns EAGAIN without blocking if the packet cannot be queued
292  * immediately.  Returns EMSGSIZE if a partial packet was transmitted or if
293  * the packet is too big or too small to transmit on the device.
294  *
295  * The caller retains ownership of 'buffer' in all cases.
296  *
297  * The kernel maintains a packet transmission queue, so the caller is not
298  * expected to do additional queuing of packets. */
299 int
300 netdev_send(struct netdev *netdev, const struct ofpbuf *buffer)
301 {
302     int error = netdev->class->send(netdev, buffer->data, buffer->size);
303     if (!error) {
304         COVERAGE_INC(netdev_sent);
305     }
306     return error;
307 }
308
309 /* Registers with the poll loop to wake up from the next call to poll_block()
310  * when the packet transmission queue has sufficient room to transmit a packet
311  * with netdev_send().
312  *
313  * The kernel maintains a packet transmission queue, so the client is not
314  * expected to do additional queuing of packets.  Thus, this function is
315  * unlikely to ever be used.  It is included for completeness. */
316 void
317 netdev_send_wait(struct netdev *netdev)
318 {
319     return netdev->class->send_wait(netdev);
320 }
321
322 /* Attempts to set 'netdev''s MAC address to 'mac'.  Returns 0 if successful,
323  * otherwise a positive errno value. */
324 int
325 netdev_set_etheraddr(struct netdev *netdev, const uint8_t mac[ETH_ADDR_LEN])
326 {
327     return netdev->class->set_etheraddr(netdev, mac);
328 }
329
330 /* Retrieves 'netdev''s MAC address.  If successful, returns 0 and copies the
331  * the MAC address into 'mac'.  On failure, returns a positive errno value and
332  * clears 'mac' to all-zeros. */
333 int
334 netdev_get_etheraddr(const struct netdev *netdev, uint8_t mac[ETH_ADDR_LEN])
335 {
336     return netdev->class->get_etheraddr(netdev, mac);
337 }
338
339 /* Returns the name of the network device that 'netdev' represents,
340  * e.g. "eth0".  The caller must not modify or free the returned string. */
341 const char *
342 netdev_get_name(const struct netdev *netdev)
343 {
344     return netdev->name;
345 }
346
347 /* Retrieves the MTU of 'netdev'.  The MTU is the maximum size of transmitted
348  * (and received) packets, in bytes, not including the hardware header; thus,
349  * this is typically 1500 bytes for Ethernet devices.
350  *
351  * If successful, returns 0 and stores the MTU size in '*mtup'.  On failure,
352  * returns a positive errno value and stores ETH_PAYLOAD_MAX (1500) in
353  * '*mtup'. */
354 int
355 netdev_get_mtu(const struct netdev *netdev, int *mtup)
356 {
357     int error = netdev->class->get_mtu(netdev, mtup);
358     if (error) {
359         VLOG_WARN_RL(&rl, "failed to retrieve MTU for network device %s: %s",
360                      netdev_get_name(netdev), strerror(error));
361         *mtup = ETH_PAYLOAD_MAX;
362     }
363     return error;
364 }
365
366 /* Stores the features supported by 'netdev' into each of '*current',
367  * '*advertised', '*supported', and '*peer' that are non-null.  Each value is a
368  * bitmap of "enum ofp_port_features" bits, in host byte order.  Returns 0 if
369  * successful, otherwise a positive errno value.  On failure, all of the
370  * passed-in values are set to 0. */
371 int
372 netdev_get_features(struct netdev *netdev,
373                     uint32_t *current, uint32_t *advertised,
374                     uint32_t *supported, uint32_t *peer)
375 {
376     uint32_t dummy[4];
377     return netdev->class->get_features(netdev,
378                                        current ? current : &dummy[0],
379                                        advertised ? advertised : &dummy[1],
380                                        supported ? supported : &dummy[2],
381                                        peer ? peer : &dummy[3]);
382 }
383
384 /* Set the features advertised by 'netdev' to 'advertise'.  Returns 0 if
385  * successful, otherwise a positive errno value. */
386 int
387 netdev_set_advertisements(struct netdev *netdev, uint32_t advertise)
388 {
389     return (netdev->class->set_advertisements
390             ? netdev->class->set_advertisements(netdev, advertise)
391             : EOPNOTSUPP);
392 }
393
394 /* If 'netdev' has an assigned IPv4 address, sets '*in4' to that address and
395  * returns 0.  Otherwise, returns a positive errno value and sets '*in4' to 0
396  * (INADDR_ANY).
397  *
398  * The following error values have well-defined meanings:
399  *
400  *   - EADDRNOTAVAIL: 'netdev' has no assigned IPv4 address.
401  *
402  *   - EOPNOTSUPP: No IPv4 network stack attached to 'netdev'.
403  *
404  * 'in4' may be null, in which case the address itself is not reported. */
405 int
406 netdev_get_in4(const struct netdev *netdev, struct in_addr *in4)
407 {
408     struct in_addr dummy;
409     int error;
410
411     error = (netdev->class->get_in4
412              ? netdev->class->get_in4(netdev, in4 ? in4 : &dummy)
413              : EOPNOTSUPP);
414     if (error && in4) {
415         in4->s_addr = 0;
416     }
417     return error;
418 }
419
420 /* Assigns 'addr' as 'netdev''s IPv4 address and 'mask' as its netmask.  If
421  * 'addr' is INADDR_ANY, 'netdev''s IPv4 address is cleared.  Returns a
422  * positive errno value. */
423 int
424 netdev_set_in4(struct netdev *netdev, struct in_addr addr, struct in_addr mask)
425 {
426     return (netdev->class->set_in4
427             ? netdev->class->set_in4(netdev, addr, mask)
428             : EOPNOTSUPP);
429 }
430
431 /* Adds 'router' as a default IP gateway for the TCP/IP stack that corresponds
432  * to 'netdev'. */
433 int
434 netdev_add_router(struct netdev *netdev, struct in_addr router)
435 {
436     COVERAGE_INC(netdev_add_router);
437     return (netdev->class->add_router
438             ? netdev->class->add_router(netdev, router)
439             : EOPNOTSUPP);
440 }
441
442 /* If 'netdev' has an assigned IPv6 address, sets '*in6' to that address and
443  * returns 0.  Otherwise, returns a positive errno value and sets '*in6' to
444  * all-zero-bits (in6addr_any).
445  *
446  * The following error values have well-defined meanings:
447  *
448  *   - EADDRNOTAVAIL: 'netdev' has no assigned IPv6 address.
449  *
450  *   - EOPNOTSUPP: No IPv6 network stack attached to 'netdev'.
451  *
452  * 'in6' may be null, in which case the address itself is not reported. */
453 int
454 netdev_get_in6(const struct netdev *netdev, struct in6_addr *in6)
455 {
456     struct in6_addr dummy;
457     int error;
458
459     error = (netdev->class->get_in6
460              ? netdev->class->get_in6(netdev, in6 ? in6 : &dummy)
461              : EOPNOTSUPP);
462     if (error && in6) {
463         memset(in6, 0, sizeof *in6);
464     }
465     return error;
466 }
467
468 /* On 'netdev', turns off the flags in 'off' and then turns on the flags in
469  * 'on'.  If 'permanent' is true, the changes will persist; otherwise, they
470  * will be reverted when 'netdev' is closed or the program exits.  Returns 0 if
471  * successful, otherwise a positive errno value. */
472 static int
473 do_update_flags(struct netdev *netdev, enum netdev_flags off,
474                 enum netdev_flags on, enum netdev_flags *old_flagsp,
475                 bool permanent)
476 {
477     enum netdev_flags old_flags;
478     int error;
479
480     error = netdev->class->update_flags(netdev, off & ~on, on, &old_flags);
481     if (error) {
482         VLOG_WARN_RL(&rl, "failed to %s flags for network device %s: %s",
483                      off || on ? "set" : "get", netdev_get_name(netdev),
484                      strerror(error));
485         old_flags = 0;
486     } else if ((off || on) && !permanent) {
487         enum netdev_flags new_flags = (old_flags & ~off) | on;
488         enum netdev_flags changed_flags = old_flags ^ new_flags;
489         if (changed_flags) {
490             if (!netdev->changed_flags) {
491                 netdev->save_flags = old_flags;
492             }
493             netdev->changed_flags |= changed_flags;
494         }
495     }
496     if (old_flagsp) {
497         *old_flagsp = old_flags;
498     }
499     return error;
500 }
501
502 /* Obtains the current flags for 'netdev' and stores them into '*flagsp'.
503  * Returns 0 if successful, otherwise a positive errno value.  On failure,
504  * stores 0 into '*flagsp'. */
505 int
506 netdev_get_flags(const struct netdev *netdev_, enum netdev_flags *flagsp)
507 {
508     struct netdev *netdev = (struct netdev *) netdev_;
509     return do_update_flags(netdev, 0, 0, flagsp, false);
510 }
511
512 /* Sets the flags for 'netdev' to 'flags'.
513  * If 'permanent' is true, the changes will persist; otherwise, they
514  * will be reverted when 'netdev' is closed or the program exits.
515  * Returns 0 if successful, otherwise a positive errno value. */
516 int
517 netdev_set_flags(struct netdev *netdev, enum netdev_flags flags,
518                  bool permanent)
519 {
520     return do_update_flags(netdev, -1, flags, NULL, permanent);
521 }
522
523 /* Turns on the specified 'flags' on 'netdev'.
524  * If 'permanent' is true, the changes will persist; otherwise, they
525  * will be reverted when 'netdev' is closed or the program exits.
526  * Returns 0 if successful, otherwise a positive errno value. */
527 int
528 netdev_turn_flags_on(struct netdev *netdev, enum netdev_flags flags,
529                      bool permanent)
530 {
531     return do_update_flags(netdev, 0, flags, NULL, permanent);
532 }
533
534 /* Turns off the specified 'flags' on 'netdev'.
535  * If 'permanent' is true, the changes will persist; otherwise, they
536  * will be reverted when 'netdev' is closed or the program exits.
537  * Returns 0 if successful, otherwise a positive errno value. */
538 int
539 netdev_turn_flags_off(struct netdev *netdev, enum netdev_flags flags,
540                       bool permanent)
541 {
542     return do_update_flags(netdev, flags, 0, NULL, permanent);
543 }
544
545 /* Looks up the ARP table entry for 'ip' on 'netdev'.  If one exists and can be
546  * successfully retrieved, it stores the corresponding MAC address in 'mac' and
547  * returns 0.  Otherwise, it returns a positive errno value; in particular,
548  * ENXIO indicates that there is no ARP table entry for 'ip' on 'netdev'. */
549 int
550 netdev_arp_lookup(const struct netdev *netdev,
551                   uint32_t ip, uint8_t mac[ETH_ADDR_LEN])
552 {
553     int error = (netdev->class->arp_lookup
554                  ? netdev->class->arp_lookup(netdev, ip, mac)
555                  : EOPNOTSUPP);
556     if (error) {
557         memset(mac, 0, ETH_ADDR_LEN);
558     }
559     return error;
560 }
561
562 /* Sets 'carrier' to true if carrier is active (link light is on) on
563  * 'netdev'. */
564 int
565 netdev_get_carrier(const struct netdev *netdev, bool *carrier)
566 {
567     int error = (netdev->class->get_carrier
568                  ? netdev->class->get_carrier(netdev, carrier)
569                  : EOPNOTSUPP);
570     if (error) {
571         *carrier = false;
572     }
573     return error;
574 }
575
576 /* Retrieves current device stats for 'netdev'. */
577 int
578 netdev_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
579 {
580     int error;
581
582     COVERAGE_INC(netdev_get_stats);
583     error = (netdev->class->get_stats
584              ? netdev->class->get_stats(netdev, stats)
585              : EOPNOTSUPP);
586     if (error) {
587         memset(stats, 0xff, sizeof *stats);
588     }
589     return error;
590 }
591
592 /* Attempts to set input rate limiting (policing) policy, such that up to
593  * 'kbits_rate' kbps of traffic is accepted, with a maximum accumulative burst
594  * size of 'kbits' kb. */
595 int
596 netdev_set_policing(struct netdev *netdev, uint32_t kbits_rate,
597                     uint32_t kbits_burst)
598 {
599     return (netdev->class->set_policing
600             ? netdev->class->set_policing(netdev, kbits_rate, kbits_burst)
601             : EOPNOTSUPP);
602 }
603
604 /* If 'netdev' is a VLAN network device (e.g. one created with vconfig(8)),
605  * sets '*vlan_vid' to the VLAN VID associated with that device and returns 0.
606  * Otherwise returns a errno value (specifically ENOENT if 'netdev_name' is the
607  * name of a network device that is not a VLAN device) and sets '*vlan_vid' to
608  * -1. */
609 int
610 netdev_get_vlan_vid(const struct netdev *netdev, int *vlan_vid)
611 {
612     int error = (netdev->class->get_vlan_vid
613                  ? netdev->class->get_vlan_vid(netdev, vlan_vid)
614                  : ENOENT);
615     if (error) {
616         *vlan_vid = 0;
617     }
618     return error;
619 }
620
621 /* Returns a network device that has 'in4' as its IP address, if one exists,
622  * otherwise a null pointer. */
623 struct netdev *
624 netdev_find_dev_by_in4(const struct in_addr *in4)
625 {
626     struct netdev *netdev;
627     struct svec dev_list;
628     size_t i;
629
630     netdev_enumerate(&dev_list);
631     for (i = 0; i < dev_list.n; i++) {
632         const char *name = dev_list.names[i];
633         struct in_addr dev_in4;
634
635         if (!netdev_open(name, NETDEV_ETH_TYPE_NONE, &netdev)
636             && !netdev_get_in4(netdev, &dev_in4)
637             && dev_in4.s_addr == in4->s_addr) {
638             goto exit;
639         }
640         netdev_close(netdev);
641     }
642     netdev = NULL;
643
644 exit:
645     svec_destroy(&dev_list);
646     return netdev;
647 }
648 \f
649 /* Initializes 'netdev' as a netdev named 'name' of the specified 'class'.
650  *
651  * This function adds 'netdev' to a netdev-owned linked list, so it is very
652  * important that 'netdev' only be freed after calling netdev_close(). */
653 void
654 netdev_init(struct netdev *netdev, const char *name,
655             const struct netdev_class *class)
656 {
657     netdev->class = class;
658     netdev->name = xstrdup(name);
659     netdev->save_flags = 0;
660     netdev->changed_flags = 0;
661     list_push_back(&netdev_list, &netdev->node);
662 }
663
664 /* Initializes 'notifier' as a netdev notifier for 'netdev', for which
665  * notification will consist of calling 'cb', with auxiliary data 'aux'. */
666 void
667 netdev_notifier_init(struct netdev_notifier *notifier, struct netdev *netdev,
668                      void (*cb)(struct netdev_notifier *), void *aux)
669 {
670     notifier->netdev = netdev;
671     notifier->cb = cb;
672     notifier->aux = aux;
673 }
674 \f
675 /* Tracks changes in the status of a set of network devices. */
676 struct netdev_monitor {
677     struct shash polled_netdevs;
678     struct shash changed_netdevs;
679 };
680
681 /* Creates and returns a new structure for monitor changes in the status of
682  * network devices. */
683 struct netdev_monitor *
684 netdev_monitor_create(void)
685 {
686     struct netdev_monitor *monitor = xmalloc(sizeof *monitor);
687     shash_init(&monitor->polled_netdevs);
688     shash_init(&monitor->changed_netdevs);
689     return monitor;
690 }
691
692 /* Destroys 'monitor'. */
693 void
694 netdev_monitor_destroy(struct netdev_monitor *monitor)
695 {
696     if (monitor) {
697         struct shash_node *node;
698
699         SHASH_FOR_EACH (node, &monitor->polled_netdevs) {
700             struct netdev_notifier *notifier = node->data;
701             notifier->netdev->class->poll_remove(notifier);
702         }
703
704         shash_destroy(&monitor->polled_netdevs);
705         shash_destroy(&monitor->changed_netdevs);
706         free(monitor);
707     }
708 }
709
710 static void
711 netdev_monitor_cb(struct netdev_notifier *notifier)
712 {
713     struct netdev_monitor *monitor = notifier->aux;
714     const char *name = netdev_get_name(notifier->netdev);
715     if (!shash_find(&monitor->changed_netdevs, name)) {
716         shash_add(&monitor->changed_netdevs, name, NULL);
717     }
718 }
719
720 /* Attempts to add 'netdev' as a netdev monitored by 'monitor'.  Returns 0 if
721  * successful, otherwise a positive errno value.
722  *
723  * Adding a given 'netdev' to a monitor multiple times is equivalent to adding
724  * it once. */
725 int
726 netdev_monitor_add(struct netdev_monitor *monitor, struct netdev *netdev)
727 {
728     const char *netdev_name = netdev_get_name(netdev);
729     int error = 0;
730     if (!shash_find(&monitor->polled_netdevs, netdev_name)
731         && netdev->class->poll_add)
732     {
733         struct netdev_notifier *notifier;
734         error = netdev->class->poll_add(netdev, netdev_monitor_cb, monitor,
735                                         &notifier);
736         if (!error) {
737             assert(notifier->netdev == netdev);
738             shash_add(&monitor->polled_netdevs, netdev_name, notifier);
739         }
740     }
741     return error;
742 }
743
744 /* Removes 'netdev' from the set of netdevs monitored by 'monitor'.  (This has
745  * no effect if 'netdev' is not in the set of devices monitored by
746  * 'monitor'.) */
747 void
748 netdev_monitor_remove(struct netdev_monitor *monitor, struct netdev *netdev)
749 {
750     const char *netdev_name = netdev_get_name(netdev);
751     struct shash_node *node;
752
753     node = shash_find(&monitor->polled_netdevs, netdev_name);
754     if (node) {
755         /* Cancel future notifications. */
756         struct netdev_notifier *notifier = node->data;
757         netdev->class->poll_remove(notifier);
758         shash_delete(&monitor->polled_netdevs, node);
759
760         /* Drop any pending notification. */
761         node = shash_find(&monitor->changed_netdevs, netdev_name);
762         if (node) {
763             shash_delete(&monitor->changed_netdevs, node);
764         }
765     }
766 }
767
768 /* Checks for changes to netdevs in the set monitored by 'monitor'.  If any of
769  * the attributes (Ethernet address, carrier status, speed or peer-advertised
770  * speed, flags, etc.) of a network device monitored by 'monitor' has changed,
771  * sets '*devnamep' to the name of a device that has changed and returns 0.
772  * The caller is responsible for freeing '*devnamep' (with free()).
773  *
774  * If no devices have changed, sets '*devnamep' to NULL and returns EAGAIN.
775  */
776 int
777 netdev_monitor_poll(struct netdev_monitor *monitor, char **devnamep)
778 {
779     struct shash_node *node = shash_first(&monitor->changed_netdevs);
780     if (!node) {
781         *devnamep = NULL;
782         return EAGAIN;
783     } else {
784         *devnamep = xstrdup(node->name);
785         shash_delete(&monitor->changed_netdevs, node);
786         return 0;
787     }
788 }
789
790 /* Registers with the poll loop to wake up from the next call to poll_block()
791  * when netdev_monitor_poll(monitor) would indicate that a device has
792  * changed. */
793 void
794 netdev_monitor_poll_wait(const struct netdev_monitor *monitor)
795 {
796     if (!shash_is_empty(&monitor->changed_netdevs)) {
797         poll_immediate_wake();
798     } else {
799         /* XXX Nothing needed here for netdev_linux, but maybe other netdev
800          * classes need help. */
801     }
802 }
803 \f
804 /* Restore the network device flags on 'netdev' to those that were active
805  * before we changed them.  Returns 0 if successful, otherwise a positive
806  * errno value.
807  *
808  * To avoid reentry, the caller must ensure that fatal signals are blocked. */
809 static int
810 restore_flags(struct netdev *netdev)
811 {
812     if (netdev->changed_flags) {
813         enum netdev_flags restore = netdev->save_flags & netdev->changed_flags;
814         enum netdev_flags old_flags;
815         return netdev->class->update_flags(netdev,
816                                            netdev->changed_flags & ~restore,
817                                            restore, &old_flags);
818     }
819     return 0;
820 }
821
822 /* Retores all the flags on all network devices that we modified.  Called from
823  * a signal handler, so it does not attempt to report error conditions. */
824 static void
825 restore_all_flags(void *aux UNUSED)
826 {
827     struct netdev *netdev;
828     LIST_FOR_EACH (netdev, struct netdev, node, &netdev_list) {
829         restore_flags(netdev);
830     }
831 }