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