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