2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <netinet/in.h>
27 #include "connectivity.h"
30 #include "dynamic-string.h"
31 #include "fatal-signal.h"
34 #include "netdev-provider.h"
35 #include "netdev-vport.h"
37 #include "openflow/openflow.h"
39 #include "poll-loop.h"
47 VLOG_DEFINE_THIS_MODULE(netdev);
49 COVERAGE_DEFINE(netdev_received);
50 COVERAGE_DEFINE(netdev_sent);
51 COVERAGE_DEFINE(netdev_add_router);
52 COVERAGE_DEFINE(netdev_get_stats);
54 struct netdev_saved_flags {
55 struct netdev *netdev;
56 struct list node; /* In struct netdev's saved_flags_list. */
57 enum netdev_flags saved_flags;
58 enum netdev_flags saved_values;
61 /* Protects 'netdev_shash' and the mutable members of struct netdev. */
62 static struct ovs_mutex netdev_mutex = OVS_MUTEX_INITIALIZER;
64 /* All created network devices. */
65 static struct shash netdev_shash OVS_GUARDED_BY(netdev_mutex)
66 = SHASH_INITIALIZER(&netdev_shash);
68 /* Protects 'netdev_classes' against insertions or deletions.
70 * This is not an rwlock for performance reasons but to allow recursive
71 * acquisition when calling into providers. For example, netdev_run() calls
72 * into provider 'run' functions, which might reasonably want to call one of
73 * the netdev functions that takes netdev_class_rwlock read-only. */
74 static struct ovs_rwlock netdev_class_rwlock OVS_ACQ_BEFORE(netdev_mutex)
75 = OVS_RWLOCK_INITIALIZER;
77 /* Contains 'struct netdev_registered_class'es. */
78 static struct hmap netdev_classes OVS_GUARDED_BY(netdev_class_rwlock)
79 = HMAP_INITIALIZER(&netdev_classes);
81 struct netdev_registered_class {
82 struct hmap_node hmap_node; /* In 'netdev_classes', by class->type. */
83 const struct netdev_class *class;
84 atomic_int ref_cnt; /* Number of 'struct netdev's of this class. */
87 /* This is set pretty low because we probably won't learn anything from the
88 * additional log messages. */
89 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
91 static void restore_all_flags(void *aux OVS_UNUSED);
92 void update_device_args(struct netdev *, const struct shash *args);
95 netdev_initialize(void)
96 OVS_EXCLUDED(netdev_class_rwlock, netdev_mutex)
98 static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
100 if (ovsthread_once_start(&once)) {
101 fatal_signal_add_hook(restore_all_flags, NULL, NULL, true);
102 netdev_vport_patch_register();
104 #ifdef LINUX_DATAPATH
105 netdev_register_provider(&netdev_linux_class);
106 netdev_register_provider(&netdev_internal_class);
107 netdev_register_provider(&netdev_tap_class);
108 netdev_vport_tunnel_register();
110 #if defined(__FreeBSD__) || defined(__NetBSD__)
111 netdev_register_provider(&netdev_tap_class);
112 netdev_register_provider(&netdev_bsd_class);
115 ovsthread_once_done(&once);
119 /* Performs periodic work needed by all the various kinds of netdevs.
121 * If your program opens any netdevs, it must call this function within its
125 OVS_EXCLUDED(netdev_class_rwlock, netdev_mutex)
127 struct netdev_registered_class *rc;
129 ovs_rwlock_rdlock(&netdev_class_rwlock);
130 HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
131 if (rc->class->run) {
135 ovs_rwlock_unlock(&netdev_class_rwlock);
138 /* Arranges for poll_block() to wake up when netdev_run() needs to be called.
140 * If your program opens any netdevs, it must call this function within its
144 OVS_EXCLUDED(netdev_class_rwlock, netdev_mutex)
146 struct netdev_registered_class *rc;
148 ovs_rwlock_rdlock(&netdev_class_rwlock);
149 HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
150 if (rc->class->wait) {
154 ovs_rwlock_unlock(&netdev_class_rwlock);
157 static struct netdev_registered_class *
158 netdev_lookup_class(const char *type)
159 OVS_REQ_RDLOCK(netdev_class_rwlock)
161 struct netdev_registered_class *rc;
163 HMAP_FOR_EACH_WITH_HASH (rc, hmap_node, hash_string(type, 0),
165 if (!strcmp(type, rc->class->type)) {
172 /* Initializes and registers a new netdev provider. After successful
173 * registration, new netdevs of that type can be opened using netdev_open(). */
175 netdev_register_provider(const struct netdev_class *new_class)
176 OVS_EXCLUDED(netdev_class_rwlock, netdev_mutex)
180 ovs_rwlock_wrlock(&netdev_class_rwlock);
181 if (netdev_lookup_class(new_class->type)) {
182 VLOG_WARN("attempted to register duplicate netdev provider: %s",
186 error = new_class->init ? new_class->init() : 0;
188 struct netdev_registered_class *rc;
190 rc = xmalloc(sizeof *rc);
191 hmap_insert(&netdev_classes, &rc->hmap_node,
192 hash_string(new_class->type, 0));
193 rc->class = new_class;
194 atomic_init(&rc->ref_cnt, 0);
196 VLOG_ERR("failed to initialize %s network device class: %s",
197 new_class->type, ovs_strerror(error));
200 ovs_rwlock_unlock(&netdev_class_rwlock);
205 /* Unregisters a netdev provider. 'type' must have been previously
206 * registered and not currently be in use by any netdevs. After unregistration
207 * new netdevs of that type cannot be opened using netdev_open(). */
209 netdev_unregister_provider(const char *type)
210 OVS_EXCLUDED(netdev_class_rwlock, netdev_mutex)
212 struct netdev_registered_class *rc;
215 ovs_rwlock_wrlock(&netdev_class_rwlock);
216 rc = netdev_lookup_class(type);
218 VLOG_WARN("attempted to unregister a netdev provider that is not "
219 "registered: %s", type);
220 error = EAFNOSUPPORT;
224 atomic_read(&rc->ref_cnt, &ref_cnt);
226 hmap_remove(&netdev_classes, &rc->hmap_node);
227 atomic_destroy(&rc->ref_cnt);
231 VLOG_WARN("attempted to unregister in use netdev provider: %s",
236 ovs_rwlock_unlock(&netdev_class_rwlock);
241 /* Clears 'types' and enumerates the types of all currently registered netdev
242 * providers into it. The caller must first initialize the sset. */
244 netdev_enumerate_types(struct sset *types)
245 OVS_EXCLUDED(netdev_mutex)
247 struct netdev_registered_class *rc;
252 ovs_rwlock_rdlock(&netdev_class_rwlock);
253 HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
254 sset_add(types, rc->class->type);
256 ovs_rwlock_unlock(&netdev_class_rwlock);
259 /* Check that the network device name is not the same as any of the registered
260 * vport providers' dpif_port name (dpif_port is NULL if the vport provider
261 * does not define it) or the datapath internal port name (e.g. ovs-system).
263 * Returns true if there is a name conflict, false otherwise. */
265 netdev_is_reserved_name(const char *name)
266 OVS_EXCLUDED(netdev_mutex)
268 struct netdev_registered_class *rc;
272 ovs_rwlock_rdlock(&netdev_class_rwlock);
273 HMAP_FOR_EACH (rc, hmap_node, &netdev_classes) {
274 const char *dpif_port = netdev_vport_class_get_dpif_port(rc->class);
275 if (dpif_port && !strcmp(dpif_port, name)) {
276 ovs_rwlock_unlock(&netdev_class_rwlock);
280 ovs_rwlock_unlock(&netdev_class_rwlock);
282 if (!strncmp(name, "ovs-", 4)) {
287 dp_enumerate_types(&types);
288 SSET_FOR_EACH (type, &types) {
289 if (!strcmp(name+4, type)) {
290 sset_destroy(&types);
294 sset_destroy(&types);
300 /* Opens the network device named 'name' (e.g. "eth0") of the specified 'type'
301 * (e.g. "system") and returns zero if successful, otherwise a positive errno
302 * value. On success, sets '*netdevp' to the new network device, otherwise to
305 * Some network devices may need to be configured (with netdev_set_config())
306 * before they can be used. */
308 netdev_open(const char *name, const char *type, struct netdev **netdevp)
309 OVS_EXCLUDED(netdev_mutex)
311 struct netdev *netdev;
316 ovs_rwlock_rdlock(&netdev_class_rwlock);
317 ovs_mutex_lock(&netdev_mutex);
318 netdev = shash_find_data(&netdev_shash, name);
320 struct netdev_registered_class *rc;
322 rc = netdev_lookup_class(type && type[0] ? type : "system");
324 netdev = rc->class->alloc();
326 memset(netdev, 0, sizeof *netdev);
327 netdev->netdev_class = rc->class;
328 netdev->name = xstrdup(name);
329 netdev->node = shash_add(&netdev_shash, name, netdev);
330 list_init(&netdev->saved_flags_list);
332 error = rc->class->construct(netdev);
336 atomic_add(&rc->ref_cnt, 1, &old_ref_cnt);
337 seq_change(connectivity_seq_get());
340 ovs_assert(list_is_empty(&netdev->saved_flags_list));
341 shash_delete(&netdev_shash, netdev->node);
342 rc->class->dealloc(netdev);
348 VLOG_WARN("could not create netdev %s of unknown type %s",
350 error = EAFNOSUPPORT;
356 ovs_mutex_unlock(&netdev_mutex);
357 ovs_rwlock_unlock(&netdev_class_rwlock);
368 /* Returns a reference to 'netdev_' for the caller to own. Returns null if
369 * 'netdev_' is null. */
371 netdev_ref(const struct netdev *netdev_)
372 OVS_EXCLUDED(netdev_mutex)
374 struct netdev *netdev = CONST_CAST(struct netdev *, netdev_);
377 ovs_mutex_lock(&netdev_mutex);
378 ovs_assert(netdev->ref_cnt > 0);
380 ovs_mutex_unlock(&netdev_mutex);
385 /* Reconfigures the device 'netdev' with 'args'. 'args' may be empty
386 * or NULL if none are needed. */
388 netdev_set_config(struct netdev *netdev, const struct smap *args)
389 OVS_EXCLUDED(netdev_mutex)
391 if (netdev->netdev_class->set_config) {
392 const struct smap no_args = SMAP_INITIALIZER(&no_args);
395 error = netdev->netdev_class->set_config(netdev,
396 args ? args : &no_args);
398 VLOG_WARN("%s: could not set configuration (%s)",
399 netdev_get_name(netdev), ovs_strerror(error));
402 } else if (args && !smap_is_empty(args)) {
403 VLOG_WARN("%s: arguments provided to device that is not configurable",
404 netdev_get_name(netdev));
409 /* Returns the current configuration for 'netdev' in 'args'. The caller must
410 * have already initialized 'args' with smap_init(). Returns 0 on success, in
411 * which case 'args' will be filled with 'netdev''s configuration. On failure
412 * returns a positive errno value, in which case 'args' will be empty.
414 * The caller owns 'args' and its contents and must eventually free them with
417 netdev_get_config(const struct netdev *netdev, struct smap *args)
418 OVS_EXCLUDED(netdev_mutex)
423 if (netdev->netdev_class->get_config) {
424 error = netdev->netdev_class->get_config(netdev, args);
435 const struct netdev_tunnel_config *
436 netdev_get_tunnel_config(const struct netdev *netdev)
437 OVS_EXCLUDED(netdev_mutex)
439 if (netdev->netdev_class->get_tunnel_config) {
440 return netdev->netdev_class->get_tunnel_config(netdev);
447 netdev_unref(struct netdev *dev)
448 OVS_RELEASES(netdev_mutex)
450 ovs_assert(dev->ref_cnt);
451 if (!--dev->ref_cnt) {
452 const struct netdev_class *class = dev->netdev_class;
453 struct netdev_registered_class *rc;
456 dev->netdev_class->destruct(dev);
458 shash_delete(&netdev_shash, dev->node);
460 dev->netdev_class->dealloc(dev);
461 ovs_mutex_unlock(&netdev_mutex);
463 ovs_rwlock_rdlock(&netdev_class_rwlock);
464 rc = netdev_lookup_class(class->type);
465 atomic_sub(&rc->ref_cnt, 1, &old_ref_cnt);
466 ovs_assert(old_ref_cnt > 0);
467 ovs_rwlock_unlock(&netdev_class_rwlock);
469 ovs_mutex_unlock(&netdev_mutex);
473 /* Closes and destroys 'netdev'. */
475 netdev_close(struct netdev *netdev)
476 OVS_EXCLUDED(netdev_mutex)
479 ovs_mutex_lock(&netdev_mutex);
480 netdev_unref(netdev);
484 /* Parses 'netdev_name_', which is of the form [type@]name into its component
485 * pieces. 'name' and 'type' must be freed by the caller. */
487 netdev_parse_name(const char *netdev_name_, char **name, char **type)
489 char *netdev_name = xstrdup(netdev_name_);
492 separator = strchr(netdev_name, '@');
496 *name = xstrdup(separator + 1);
499 *type = xstrdup("system");
503 /* Attempts to open a netdev_rx handle for obtaining packets received on
504 * 'netdev'. On success, returns 0 and stores a nonnull 'netdev_rx *' into
505 * '*rxp'. On failure, returns a positive errno value and stores NULL into
508 * Some kinds of network devices might not support receiving packets. This
509 * function returns EOPNOTSUPP in that case.*/
511 netdev_rx_open(struct netdev *netdev, struct netdev_rx **rxp)
512 OVS_EXCLUDED(netdev_mutex)
516 if (netdev->netdev_class->rx_alloc) {
517 struct netdev_rx *rx = netdev->netdev_class->rx_alloc();
520 error = netdev->netdev_class->rx_construct(rx);
522 ovs_mutex_lock(&netdev_mutex);
524 ovs_mutex_unlock(&netdev_mutex);
529 netdev->netdev_class->rx_dealloc(rx);
543 netdev_rx_close(struct netdev_rx *rx)
544 OVS_EXCLUDED(netdev_mutex)
547 struct netdev *netdev = rx->netdev;
548 netdev->netdev_class->rx_destruct(rx);
549 netdev->netdev_class->rx_dealloc(rx);
550 netdev_close(netdev);
554 /* Attempts to receive a packet from 'rx' into the tailroom of 'buffer', which
555 * must initially be empty. If successful, returns 0 and increments
556 * 'buffer->size' by the number of bytes in the received packet, otherwise a
557 * positive errno value.
559 * Returns EAGAIN immediately if no packet is ready to be received.
561 * Returns EMSGSIZE, and discards the packet, if the received packet is longer
562 * than 'ofpbuf_tailroom(buffer)'.
564 * Implementations may make use of VLAN_HEADER_LEN bytes of tailroom to
565 * add a VLAN header which is obtained out-of-band to the packet. If
566 * this occurs then VLAN_HEADER_LEN bytes of tailroom will no longer be
567 * available for the packet, otherwise it may be used for the packet
570 * It is advised that the tailroom of 'buffer' should be
571 * VLAN_HEADER_LEN bytes longer than the MTU to allow space for an
572 * out-of-band VLAN header to be added to the packet. At the very least,
573 * 'buffer' must have at least ETH_TOTAL_MIN bytes of tailroom.
575 * This function may be set to null if it would always return EOPNOTSUPP
578 netdev_rx_recv(struct netdev_rx *rx, struct ofpbuf *buffer)
582 ovs_assert(buffer->size == 0);
583 ovs_assert(ofpbuf_tailroom(buffer) >= ETH_TOTAL_MIN);
585 retval = rx->netdev->netdev_class->rx_recv(rx, buffer);
587 COVERAGE_INC(netdev_received);
588 if (buffer->size < ETH_TOTAL_MIN) {
589 ofpbuf_put_zeros(buffer, ETH_TOTAL_MIN - buffer->size);
597 /* Arranges for poll_block() to wake up when a packet is ready to be received
600 netdev_rx_wait(struct netdev_rx *rx)
602 rx->netdev->netdev_class->rx_wait(rx);
605 /* Discards any packets ready to be received on 'rx'. */
607 netdev_rx_drain(struct netdev_rx *rx)
609 return (rx->netdev->netdev_class->rx_drain
610 ? rx->netdev->netdev_class->rx_drain(rx)
614 /* Sends 'buffer' on 'netdev'. Returns 0 if successful, otherwise a positive
615 * errno value. Returns EAGAIN without blocking if the packet cannot be queued
616 * immediately. Returns EMSGSIZE if a partial packet was transmitted or if
617 * the packet is too big or too small to transmit on the device.
619 * The caller retains ownership of 'buffer' in all cases.
621 * The kernel maintains a packet transmission queue, so the caller is not
622 * expected to do additional queuing of packets.
624 * Some network devices may not implement support for this function. In such
625 * cases this function will always return EOPNOTSUPP. */
627 netdev_send(struct netdev *netdev, const struct ofpbuf *buffer)
631 error = (netdev->netdev_class->send
632 ? netdev->netdev_class->send(netdev, buffer->data, buffer->size)
635 COVERAGE_INC(netdev_sent);
640 /* Registers with the poll loop to wake up from the next call to poll_block()
641 * when the packet transmission queue has sufficient room to transmit a packet
642 * with netdev_send().
644 * The kernel maintains a packet transmission queue, so the client is not
645 * expected to do additional queuing of packets. Thus, this function is
646 * unlikely to ever be used. It is included for completeness. */
648 netdev_send_wait(struct netdev *netdev)
650 if (netdev->netdev_class->send_wait) {
651 netdev->netdev_class->send_wait(netdev);
655 /* Attempts to set 'netdev''s MAC address to 'mac'. Returns 0 if successful,
656 * otherwise a positive errno value. */
658 netdev_set_etheraddr(struct netdev *netdev, const uint8_t mac[ETH_ADDR_LEN])
660 return netdev->netdev_class->set_etheraddr(netdev, mac);
663 /* Retrieves 'netdev''s MAC address. If successful, returns 0 and copies the
664 * the MAC address into 'mac'. On failure, returns a positive errno value and
665 * clears 'mac' to all-zeros. */
667 netdev_get_etheraddr(const struct netdev *netdev, uint8_t mac[ETH_ADDR_LEN])
669 return netdev->netdev_class->get_etheraddr(netdev, mac);
672 /* Returns the name of the network device that 'netdev' represents,
673 * e.g. "eth0". The caller must not modify or free the returned string. */
675 netdev_get_name(const struct netdev *netdev)
680 /* Retrieves the MTU of 'netdev'. The MTU is the maximum size of transmitted
681 * (and received) packets, in bytes, not including the hardware header; thus,
682 * this is typically 1500 bytes for Ethernet devices.
684 * If successful, returns 0 and stores the MTU size in '*mtup'. Returns
685 * EOPNOTSUPP if 'netdev' does not have an MTU (as e.g. some tunnels do not).
686 * On other failure, returns a positive errno value. On failure, sets '*mtup'
689 netdev_get_mtu(const struct netdev *netdev, int *mtup)
691 const struct netdev_class *class = netdev->netdev_class;
694 error = class->get_mtu ? class->get_mtu(netdev, mtup) : EOPNOTSUPP;
697 if (error != EOPNOTSUPP) {
698 VLOG_DBG_RL(&rl, "failed to retrieve MTU for network device %s: "
699 "%s", netdev_get_name(netdev), ovs_strerror(error));
705 /* Sets the MTU of 'netdev'. The MTU is the maximum size of transmitted
706 * (and received) packets, in bytes.
708 * If successful, returns 0. Returns EOPNOTSUPP if 'netdev' does not have an
709 * MTU (as e.g. some tunnels do not). On other failure, returns a positive
712 netdev_set_mtu(const struct netdev *netdev, int mtu)
714 const struct netdev_class *class = netdev->netdev_class;
717 error = class->set_mtu ? class->set_mtu(netdev, mtu) : EOPNOTSUPP;
718 if (error && error != EOPNOTSUPP) {
719 VLOG_DBG_RL(&rl, "failed to set MTU for network device %s: %s",
720 netdev_get_name(netdev), ovs_strerror(error));
726 /* Returns the ifindex of 'netdev', if successful, as a positive number. On
727 * failure, returns a negative errno value.
729 * The desired semantics of the ifindex value are a combination of those
730 * specified by POSIX for if_nametoindex() and by SNMP for ifIndex. An ifindex
731 * value should be unique within a host and remain stable at least until
732 * reboot. SNMP says an ifindex "ranges between 1 and the value of ifNumber"
733 * but many systems do not follow this rule anyhow.
735 * Some network devices may not implement support for this function. In such
736 * cases this function will always return -EOPNOTSUPP.
739 netdev_get_ifindex(const struct netdev *netdev)
741 int (*get_ifindex)(const struct netdev *);
743 get_ifindex = netdev->netdev_class->get_ifindex;
745 return get_ifindex ? get_ifindex(netdev) : -EOPNOTSUPP;
748 /* Stores the features supported by 'netdev' into each of '*current',
749 * '*advertised', '*supported', and '*peer' that are non-null. Each value is a
750 * bitmap of "enum ofp_port_features" bits, in host byte order. Returns 0 if
751 * successful, otherwise a positive errno value. On failure, all of the
752 * passed-in values are set to 0.
754 * Some network devices may not implement support for this function. In such
755 * cases this function will always return EOPNOTSUPP. */
757 netdev_get_features(const struct netdev *netdev,
758 enum netdev_features *current,
759 enum netdev_features *advertised,
760 enum netdev_features *supported,
761 enum netdev_features *peer)
763 int (*get_features)(const struct netdev *netdev,
764 enum netdev_features *current,
765 enum netdev_features *advertised,
766 enum netdev_features *supported,
767 enum netdev_features *peer);
768 enum netdev_features dummy[4];
775 advertised = &dummy[1];
778 supported = &dummy[2];
784 get_features = netdev->netdev_class->get_features;
786 ? get_features(netdev, current, advertised, supported,
790 *current = *advertised = *supported = *peer = 0;
795 /* Returns the maximum speed of a network connection that has the NETDEV_F_*
796 * bits in 'features', in bits per second. If no bits that indicate a speed
797 * are set in 'features', returns 'default_bps'. */
799 netdev_features_to_bps(enum netdev_features features,
800 uint64_t default_bps)
803 F_1000000MB = NETDEV_F_1TB_FD,
804 F_100000MB = NETDEV_F_100GB_FD,
805 F_40000MB = NETDEV_F_40GB_FD,
806 F_10000MB = NETDEV_F_10GB_FD,
807 F_1000MB = NETDEV_F_1GB_HD | NETDEV_F_1GB_FD,
808 F_100MB = NETDEV_F_100MB_HD | NETDEV_F_100MB_FD,
809 F_10MB = NETDEV_F_10MB_HD | NETDEV_F_10MB_FD
812 return ( features & F_1000000MB ? UINT64_C(1000000000000)
813 : features & F_100000MB ? UINT64_C(100000000000)
814 : features & F_40000MB ? UINT64_C(40000000000)
815 : features & F_10000MB ? UINT64_C(10000000000)
816 : features & F_1000MB ? UINT64_C(1000000000)
817 : features & F_100MB ? UINT64_C(100000000)
818 : features & F_10MB ? UINT64_C(10000000)
822 /* Returns true if any of the NETDEV_F_* bits that indicate a full-duplex link
823 * are set in 'features', otherwise false. */
825 netdev_features_is_full_duplex(enum netdev_features features)
827 return (features & (NETDEV_F_10MB_FD | NETDEV_F_100MB_FD | NETDEV_F_1GB_FD
828 | NETDEV_F_10GB_FD | NETDEV_F_40GB_FD
829 | NETDEV_F_100GB_FD | NETDEV_F_1TB_FD)) != 0;
832 /* Set the features advertised by 'netdev' to 'advertise'. Returns 0 if
833 * successful, otherwise a positive errno value. */
835 netdev_set_advertisements(struct netdev *netdev,
836 enum netdev_features advertise)
838 return (netdev->netdev_class->set_advertisements
839 ? netdev->netdev_class->set_advertisements(
844 /* If 'netdev' has an assigned IPv4 address, sets '*address' to that address
845 * and '*netmask' to its netmask and returns 0. Otherwise, returns a positive
846 * errno value and sets '*address' to 0 (INADDR_ANY).
848 * The following error values have well-defined meanings:
850 * - EADDRNOTAVAIL: 'netdev' has no assigned IPv4 address.
852 * - EOPNOTSUPP: No IPv4 network stack attached to 'netdev'.
854 * 'address' or 'netmask' or both may be null, in which case the address or
855 * netmask is not reported. */
857 netdev_get_in4(const struct netdev *netdev,
858 struct in_addr *address_, struct in_addr *netmask_)
860 struct in_addr address;
861 struct in_addr netmask;
864 error = (netdev->netdev_class->get_in4
865 ? netdev->netdev_class->get_in4(netdev,
869 address_->s_addr = error ? 0 : address.s_addr;
872 netmask_->s_addr = error ? 0 : netmask.s_addr;
877 /* Assigns 'addr' as 'netdev''s IPv4 address and 'mask' as its netmask. If
878 * 'addr' is INADDR_ANY, 'netdev''s IPv4 address is cleared. Returns a
879 * positive errno value. */
881 netdev_set_in4(struct netdev *netdev, struct in_addr addr, struct in_addr mask)
883 return (netdev->netdev_class->set_in4
884 ? netdev->netdev_class->set_in4(netdev, addr, mask)
888 /* Obtains ad IPv4 address from device name and save the address in
889 * in4. Returns 0 if successful, otherwise a positive errno value.
892 netdev_get_in4_by_name(const char *device_name, struct in_addr *in4)
894 struct netdev *netdev;
897 error = netdev_open(device_name, "system", &netdev);
899 in4->s_addr = htonl(0);
903 error = netdev_get_in4(netdev, in4, NULL);
904 netdev_close(netdev);
908 /* Adds 'router' as a default IP gateway for the TCP/IP stack that corresponds
911 netdev_add_router(struct netdev *netdev, struct in_addr router)
913 COVERAGE_INC(netdev_add_router);
914 return (netdev->netdev_class->add_router
915 ? netdev->netdev_class->add_router(netdev, router)
919 /* Looks up the next hop for 'host' for the TCP/IP stack that corresponds to
920 * 'netdev'. If a route cannot not be determined, sets '*next_hop' to 0,
921 * '*netdev_name' to null, and returns a positive errno value. Otherwise, if a
922 * next hop is found, stores the next hop gateway's address (0 if 'host' is on
923 * a directly connected network) in '*next_hop' and a copy of the name of the
924 * device to reach 'host' in '*netdev_name', and returns 0. The caller is
925 * responsible for freeing '*netdev_name' (by calling free()). */
927 netdev_get_next_hop(const struct netdev *netdev,
928 const struct in_addr *host, struct in_addr *next_hop,
931 int error = (netdev->netdev_class->get_next_hop
932 ? netdev->netdev_class->get_next_hop(
933 host, next_hop, netdev_name)
936 next_hop->s_addr = 0;
942 /* Populates 'smap' with status information.
944 * Populates 'smap' with 'netdev' specific status information. This
945 * information may be used to populate the status column of the Interface table
946 * as defined in ovs-vswitchd.conf.db(5). */
948 netdev_get_status(const struct netdev *netdev, struct smap *smap)
950 return (netdev->netdev_class->get_status
951 ? netdev->netdev_class->get_status(netdev, smap)
955 /* If 'netdev' has an assigned IPv6 address, sets '*in6' to that address and
956 * returns 0. Otherwise, returns a positive errno value and sets '*in6' to
957 * all-zero-bits (in6addr_any).
959 * The following error values have well-defined meanings:
961 * - EADDRNOTAVAIL: 'netdev' has no assigned IPv6 address.
963 * - EOPNOTSUPP: No IPv6 network stack attached to 'netdev'.
965 * 'in6' may be null, in which case the address itself is not reported. */
967 netdev_get_in6(const struct netdev *netdev, struct in6_addr *in6)
969 struct in6_addr dummy;
972 error = (netdev->netdev_class->get_in6
973 ? netdev->netdev_class->get_in6(netdev,
977 memset(in6, 0, sizeof *in6);
982 /* On 'netdev', turns off the flags in 'off' and then turns on the flags in
983 * 'on'. Returns 0 if successful, otherwise a positive errno value. */
985 do_update_flags(struct netdev *netdev, enum netdev_flags off,
986 enum netdev_flags on, enum netdev_flags *old_flagsp,
987 struct netdev_saved_flags **sfp)
988 OVS_EXCLUDED(netdev_mutex)
990 struct netdev_saved_flags *sf = NULL;
991 enum netdev_flags old_flags;
994 error = netdev->netdev_class->update_flags(netdev, off & ~on, on,
997 VLOG_WARN_RL(&rl, "failed to %s flags for network device %s: %s",
998 off || on ? "set" : "get", netdev_get_name(netdev),
999 ovs_strerror(error));
1001 } else if ((off || on) && sfp) {
1002 enum netdev_flags new_flags = (old_flags & ~off) | on;
1003 enum netdev_flags changed_flags = old_flags ^ new_flags;
1004 if (changed_flags) {
1005 ovs_mutex_lock(&netdev_mutex);
1006 *sfp = sf = xmalloc(sizeof *sf);
1007 sf->netdev = netdev;
1008 list_push_front(&netdev->saved_flags_list, &sf->node);
1009 sf->saved_flags = changed_flags;
1010 sf->saved_values = changed_flags & new_flags;
1013 ovs_mutex_unlock(&netdev_mutex);
1018 *old_flagsp = old_flags;
1027 /* Obtains the current flags for 'netdev' and stores them into '*flagsp'.
1028 * Returns 0 if successful, otherwise a positive errno value. On failure,
1029 * stores 0 into '*flagsp'. */
1031 netdev_get_flags(const struct netdev *netdev_, enum netdev_flags *flagsp)
1033 struct netdev *netdev = CONST_CAST(struct netdev *, netdev_);
1034 return do_update_flags(netdev, 0, 0, flagsp, NULL);
1037 /* Sets the flags for 'netdev' to 'flags'.
1038 * Returns 0 if successful, otherwise a positive errno value. */
1040 netdev_set_flags(struct netdev *netdev, enum netdev_flags flags,
1041 struct netdev_saved_flags **sfp)
1043 return do_update_flags(netdev, -1, flags, NULL, sfp);
1046 /* Turns on the specified 'flags' on 'netdev':
1048 * - On success, returns 0. If 'sfp' is nonnull, sets '*sfp' to a newly
1049 * allocated 'struct netdev_saved_flags *' that may be passed to
1050 * netdev_restore_flags() to restore the original values of 'flags' on
1051 * 'netdev' (this will happen automatically at program termination if
1052 * netdev_restore_flags() is never called) , or to NULL if no flags were
1055 * - On failure, returns a positive errno value. If 'sfp' is nonnull, sets
1056 * '*sfp' to NULL. */
1058 netdev_turn_flags_on(struct netdev *netdev, enum netdev_flags flags,
1059 struct netdev_saved_flags **sfp)
1061 return do_update_flags(netdev, 0, flags, NULL, sfp);
1064 /* Turns off the specified 'flags' on 'netdev'. See netdev_turn_flags_on() for
1065 * details of the interface. */
1067 netdev_turn_flags_off(struct netdev *netdev, enum netdev_flags flags,
1068 struct netdev_saved_flags **sfp)
1070 return do_update_flags(netdev, flags, 0, NULL, sfp);
1073 /* Restores the flags that were saved in 'sf', and destroys 'sf'.
1074 * Does nothing if 'sf' is NULL. */
1076 netdev_restore_flags(struct netdev_saved_flags *sf)
1077 OVS_EXCLUDED(netdev_mutex)
1080 struct netdev *netdev = sf->netdev;
1081 enum netdev_flags old_flags;
1083 netdev->netdev_class->update_flags(netdev,
1084 sf->saved_flags & sf->saved_values,
1085 sf->saved_flags & ~sf->saved_values,
1088 ovs_mutex_lock(&netdev_mutex);
1089 list_remove(&sf->node);
1091 netdev_unref(netdev);
1095 /* Looks up the ARP table entry for 'ip' on 'netdev'. If one exists and can be
1096 * successfully retrieved, it stores the corresponding MAC address in 'mac' and
1097 * returns 0. Otherwise, it returns a positive errno value; in particular,
1098 * ENXIO indicates that there is no ARP table entry for 'ip' on 'netdev'. */
1100 netdev_arp_lookup(const struct netdev *netdev,
1101 ovs_be32 ip, uint8_t mac[ETH_ADDR_LEN])
1103 int error = (netdev->netdev_class->arp_lookup
1104 ? netdev->netdev_class->arp_lookup(netdev, ip, mac)
1107 memset(mac, 0, ETH_ADDR_LEN);
1112 /* Returns true if carrier is active (link light is on) on 'netdev'. */
1114 netdev_get_carrier(const struct netdev *netdev)
1117 enum netdev_flags flags;
1120 netdev_get_flags(netdev, &flags);
1121 if (!(flags & NETDEV_UP)) {
1125 if (!netdev->netdev_class->get_carrier) {
1129 error = netdev->netdev_class->get_carrier(netdev, &carrier);
1131 VLOG_DBG("%s: failed to get network device carrier status, assuming "
1132 "down: %s", netdev_get_name(netdev), ovs_strerror(error));
1139 /* Returns the number of times 'netdev''s carrier has changed. */
1141 netdev_get_carrier_resets(const struct netdev *netdev)
1143 return (netdev->netdev_class->get_carrier_resets
1144 ? netdev->netdev_class->get_carrier_resets(netdev)
1148 /* Attempts to force netdev_get_carrier() to poll 'netdev''s MII registers for
1149 * link status instead of checking 'netdev''s carrier. 'netdev''s MII
1150 * registers will be polled once ever 'interval' milliseconds. If 'netdev'
1151 * does not support MII, another method may be used as a fallback. If
1152 * 'interval' is less than or equal to zero, reverts netdev_get_carrier() to
1153 * its normal behavior.
1155 * Returns 0 if successful, otherwise a positive errno value. */
1157 netdev_set_miimon_interval(struct netdev *netdev, long long int interval)
1159 return (netdev->netdev_class->set_miimon_interval
1160 ? netdev->netdev_class->set_miimon_interval(netdev, interval)
1164 /* Retrieves current device stats for 'netdev'. */
1166 netdev_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
1170 COVERAGE_INC(netdev_get_stats);
1171 error = (netdev->netdev_class->get_stats
1172 ? netdev->netdev_class->get_stats(netdev, stats)
1175 memset(stats, 0xff, sizeof *stats);
1180 /* Attempts to change the stats for 'netdev' to those provided in 'stats'.
1181 * Returns 0 if successful, otherwise a positive errno value.
1183 * This will probably fail for most network devices. Some devices might only
1184 * allow setting their stats to 0. */
1186 netdev_set_stats(struct netdev *netdev, const struct netdev_stats *stats)
1188 return (netdev->netdev_class->set_stats
1189 ? netdev->netdev_class->set_stats(netdev, stats)
1193 /* Attempts to set input rate limiting (policing) policy, such that up to
1194 * 'kbits_rate' kbps of traffic is accepted, with a maximum accumulative burst
1195 * size of 'kbits' kb. */
1197 netdev_set_policing(struct netdev *netdev, uint32_t kbits_rate,
1198 uint32_t kbits_burst)
1200 return (netdev->netdev_class->set_policing
1201 ? netdev->netdev_class->set_policing(netdev,
1202 kbits_rate, kbits_burst)
1206 /* Adds to 'types' all of the forms of QoS supported by 'netdev', or leaves it
1207 * empty if 'netdev' does not support QoS. Any names added to 'types' should
1208 * be documented as valid for the "type" column in the "QoS" table in
1209 * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1211 * Every network device supports disabling QoS with a type of "", but this type
1212 * will not be added to 'types'.
1214 * The caller must initialize 'types' (e.g. with sset_init()) before calling
1215 * this function. The caller is responsible for destroying 'types' (e.g. with
1216 * sset_destroy()) when it is no longer needed.
1218 * Returns 0 if successful, otherwise a positive errno value. */
1220 netdev_get_qos_types(const struct netdev *netdev, struct sset *types)
1222 const struct netdev_class *class = netdev->netdev_class;
1223 return (class->get_qos_types
1224 ? class->get_qos_types(netdev, types)
1228 /* Queries 'netdev' for its capabilities regarding the specified 'type' of QoS,
1229 * which should be "" or one of the types returned by netdev_get_qos_types()
1230 * for 'netdev'. Returns 0 if successful, otherwise a positive errno value.
1231 * On success, initializes 'caps' with the QoS capabilities; on failure, clears
1232 * 'caps' to all zeros. */
1234 netdev_get_qos_capabilities(const struct netdev *netdev, const char *type,
1235 struct netdev_qos_capabilities *caps)
1237 const struct netdev_class *class = netdev->netdev_class;
1240 int retval = (class->get_qos_capabilities
1241 ? class->get_qos_capabilities(netdev, type, caps)
1244 memset(caps, 0, sizeof *caps);
1248 /* Every netdev supports turning off QoS. */
1249 memset(caps, 0, sizeof *caps);
1254 /* Obtains the number of queues supported by 'netdev' for the specified 'type'
1255 * of QoS. Returns 0 if successful, otherwise a positive errno value. Stores
1256 * the number of queues (zero on failure) in '*n_queuesp'.
1258 * This is just a simple wrapper around netdev_get_qos_capabilities(). */
1260 netdev_get_n_queues(const struct netdev *netdev,
1261 const char *type, unsigned int *n_queuesp)
1263 struct netdev_qos_capabilities caps;
1266 retval = netdev_get_qos_capabilities(netdev, type, &caps);
1267 *n_queuesp = caps.n_queues;
1271 /* Queries 'netdev' about its currently configured form of QoS. If successful,
1272 * stores the name of the current form of QoS into '*typep', stores any details
1273 * of configuration as string key-value pairs in 'details', and returns 0. On
1274 * failure, sets '*typep' to NULL and returns a positive errno value.
1276 * A '*typep' of "" indicates that QoS is currently disabled on 'netdev'.
1278 * The caller must initialize 'details' as an empty smap (e.g. with
1279 * smap_init()) before calling this function. The caller must free 'details'
1280 * when it is no longer needed (e.g. with smap_destroy()).
1282 * The caller must not modify or free '*typep'.
1284 * '*typep' will be one of the types returned by netdev_get_qos_types() for
1285 * 'netdev'. The contents of 'details' should be documented as valid for
1286 * '*typep' in the "other_config" column in the "QoS" table in
1287 * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)). */
1289 netdev_get_qos(const struct netdev *netdev,
1290 const char **typep, struct smap *details)
1292 const struct netdev_class *class = netdev->netdev_class;
1295 if (class->get_qos) {
1296 retval = class->get_qos(netdev, typep, details);
1299 smap_clear(details);
1303 /* 'netdev' doesn't support QoS, so report that QoS is disabled. */
1309 /* Attempts to reconfigure QoS on 'netdev', changing the form of QoS to 'type'
1310 * with details of configuration from 'details'. Returns 0 if successful,
1311 * otherwise a positive errno value. On error, the previous QoS configuration
1314 * When this function changes the type of QoS (not just 'details'), this also
1315 * resets all queue configuration for 'netdev' to their defaults (which depend
1316 * on the specific type of QoS). Otherwise, the queue configuration for
1317 * 'netdev' is unchanged.
1319 * 'type' should be "" (to disable QoS) or one of the types returned by
1320 * netdev_get_qos_types() for 'netdev'. The contents of 'details' should be
1321 * documented as valid for the given 'type' in the "other_config" column in the
1322 * "QoS" table in vswitchd/vswitch.xml (which is built as
1323 * ovs-vswitchd.conf.db(8)).
1325 * NULL may be specified for 'details' if there are no configuration
1328 netdev_set_qos(struct netdev *netdev,
1329 const char *type, const struct smap *details)
1331 const struct netdev_class *class = netdev->netdev_class;
1337 if (class->set_qos) {
1339 static const struct smap empty = SMAP_INITIALIZER(&empty);
1342 return class->set_qos(netdev, type, details);
1344 return *type ? EOPNOTSUPP : 0;
1348 /* Queries 'netdev' for information about the queue numbered 'queue_id'. If
1349 * successful, adds that information as string key-value pairs to 'details'.
1350 * Returns 0 if successful, otherwise a positive errno value.
1352 * 'queue_id' must be less than the number of queues supported by 'netdev' for
1353 * the current form of QoS (e.g. as returned by netdev_get_n_queues(netdev)).
1355 * The returned contents of 'details' should be documented as valid for the
1356 * given 'type' in the "other_config" column in the "Queue" table in
1357 * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1359 * The caller must initialize 'details' (e.g. with smap_init()) before calling
1360 * this function. The caller must free 'details' when it is no longer needed
1361 * (e.g. with smap_destroy()). */
1363 netdev_get_queue(const struct netdev *netdev,
1364 unsigned int queue_id, struct smap *details)
1366 const struct netdev_class *class = netdev->netdev_class;
1369 retval = (class->get_queue
1370 ? class->get_queue(netdev, queue_id, details)
1373 smap_clear(details);
1378 /* Configures the queue numbered 'queue_id' on 'netdev' with the key-value
1379 * string pairs in 'details'. The contents of 'details' should be documented
1380 * as valid for the given 'type' in the "other_config" column in the "Queue"
1381 * table in vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1382 * Returns 0 if successful, otherwise a positive errno value. On failure, the
1383 * given queue's configuration should be unmodified.
1385 * 'queue_id' must be less than the number of queues supported by 'netdev' for
1386 * the current form of QoS (e.g. as returned by netdev_get_n_queues(netdev)).
1388 * This function does not modify 'details', and the caller retains ownership of
1391 netdev_set_queue(struct netdev *netdev,
1392 unsigned int queue_id, const struct smap *details)
1394 const struct netdev_class *class = netdev->netdev_class;
1395 return (class->set_queue
1396 ? class->set_queue(netdev, queue_id, details)
1400 /* Attempts to delete the queue numbered 'queue_id' from 'netdev'. Some kinds
1401 * of QoS may have a fixed set of queues, in which case attempts to delete them
1402 * will fail with EOPNOTSUPP.
1404 * Returns 0 if successful, otherwise a positive errno value. On failure, the
1405 * given queue will be unmodified.
1407 * 'queue_id' must be less than the number of queues supported by 'netdev' for
1408 * the current form of QoS (e.g. as returned by
1409 * netdev_get_n_queues(netdev)). */
1411 netdev_delete_queue(struct netdev *netdev, unsigned int queue_id)
1413 const struct netdev_class *class = netdev->netdev_class;
1414 return (class->delete_queue
1415 ? class->delete_queue(netdev, queue_id)
1419 /* Obtains statistics about 'queue_id' on 'netdev'. On success, returns 0 and
1420 * fills 'stats' with the queue's statistics; individual members of 'stats' may
1421 * be set to all-1-bits if the statistic is unavailable. On failure, returns a
1422 * positive errno value and fills 'stats' with values indicating unsupported
1425 netdev_get_queue_stats(const struct netdev *netdev, unsigned int queue_id,
1426 struct netdev_queue_stats *stats)
1428 const struct netdev_class *class = netdev->netdev_class;
1431 retval = (class->get_queue_stats
1432 ? class->get_queue_stats(netdev, queue_id, stats)
1435 stats->tx_bytes = UINT64_MAX;
1436 stats->tx_packets = UINT64_MAX;
1437 stats->tx_errors = UINT64_MAX;
1438 stats->created = LLONG_MIN;
1443 /* Initializes 'dump' to begin dumping the queues in a netdev.
1445 * This function provides no status indication. An error status for the entire
1446 * dump operation is provided when it is completed by calling
1447 * netdev_queue_dump_done().
1450 netdev_queue_dump_start(struct netdev_queue_dump *dump,
1451 const struct netdev *netdev)
1453 dump->netdev = netdev_ref(netdev);
1454 if (netdev->netdev_class->queue_dump_start) {
1455 dump->error = netdev->netdev_class->queue_dump_start(netdev,
1458 dump->error = EOPNOTSUPP;
1462 /* Attempts to retrieve another queue from 'dump', which must have been
1463 * initialized with netdev_queue_dump_start(). On success, stores a new queue
1464 * ID into '*queue_id', fills 'details' with configuration details for the
1465 * queue, and returns true. On failure, returns false.
1467 * Queues are not necessarily dumped in increasing order of queue ID (or any
1468 * other predictable order).
1470 * Failure might indicate an actual error or merely that the last queue has
1471 * been dumped. An error status for the entire dump operation is provided when
1472 * it is completed by calling netdev_queue_dump_done().
1474 * The returned contents of 'details' should be documented as valid for the
1475 * given 'type' in the "other_config" column in the "Queue" table in
1476 * vswitchd/vswitch.xml (which is built as ovs-vswitchd.conf.db(8)).
1478 * The caller must initialize 'details' (e.g. with smap_init()) before calling
1479 * this function. This function will clear and replace its contents. The
1480 * caller must free 'details' when it is no longer needed (e.g. with
1481 * smap_destroy()). */
1483 netdev_queue_dump_next(struct netdev_queue_dump *dump,
1484 unsigned int *queue_id, struct smap *details)
1486 const struct netdev *netdev = dump->netdev;
1492 dump->error = netdev->netdev_class->queue_dump_next(netdev, dump->state,
1496 netdev->netdev_class->queue_dump_done(netdev, dump->state);
1502 /* Completes queue table dump operation 'dump', which must have been
1503 * initialized with netdev_queue_dump_start(). Returns 0 if the dump operation
1504 * was error-free, otherwise a positive errno value describing the problem. */
1506 netdev_queue_dump_done(struct netdev_queue_dump *dump)
1508 const struct netdev *netdev = dump->netdev;
1509 if (!dump->error && netdev->netdev_class->queue_dump_done) {
1510 dump->error = netdev->netdev_class->queue_dump_done(netdev,
1513 netdev_close(dump->netdev);
1514 return dump->error == EOF ? 0 : dump->error;
1517 /* Iterates over all of 'netdev''s queues, calling 'cb' with the queue's ID,
1518 * its statistics, and the 'aux' specified by the caller. The order of
1519 * iteration is unspecified, but (when successful) each queue is visited
1522 * Calling this function may be more efficient than calling
1523 * netdev_get_queue_stats() for every queue.
1525 * 'cb' must not modify or free the statistics passed in.
1527 * Returns 0 if successful, otherwise a positive errno value. On error, some
1528 * configured queues may not have been included in the iteration. */
1530 netdev_dump_queue_stats(const struct netdev *netdev,
1531 netdev_dump_queue_stats_cb *cb, void *aux)
1533 const struct netdev_class *class = netdev->netdev_class;
1534 return (class->dump_queue_stats
1535 ? class->dump_queue_stats(netdev, cb, aux)
1540 /* Returns the class type of 'netdev'.
1542 * The caller must not free the returned value. */
1544 netdev_get_type(const struct netdev *netdev)
1546 return netdev->netdev_class->type;
1549 /* Returns the class associated with 'netdev'. */
1550 const struct netdev_class *
1551 netdev_get_class(const struct netdev *netdev)
1553 return netdev->netdev_class;
1556 /* Returns the netdev with 'name' or NULL if there is none.
1558 * The caller must free the returned netdev with netdev_close(). */
1560 netdev_from_name(const char *name)
1561 OVS_EXCLUDED(netdev_mutex)
1563 struct netdev *netdev;
1565 ovs_mutex_lock(&netdev_mutex);
1566 netdev = shash_find_data(&netdev_shash, name);
1570 ovs_mutex_unlock(&netdev_mutex);
1575 /* Fills 'device_list' with devices that match 'netdev_class'.
1577 * The caller is responsible for initializing and destroying 'device_list' and
1578 * must close each device on the list. */
1580 netdev_get_devices(const struct netdev_class *netdev_class,
1581 struct shash *device_list)
1582 OVS_EXCLUDED(netdev_mutex)
1584 struct shash_node *node;
1586 ovs_mutex_lock(&netdev_mutex);
1587 SHASH_FOR_EACH (node, &netdev_shash) {
1588 struct netdev *dev = node->data;
1590 if (dev->netdev_class == netdev_class) {
1592 shash_add(device_list, node->name, node->data);
1595 ovs_mutex_unlock(&netdev_mutex);
1599 netdev_get_type_from_name(const char *name)
1601 struct netdev *dev = netdev_from_name(name);
1602 const char *type = dev ? netdev_get_type(dev) : NULL;
1608 netdev_rx_get_netdev(const struct netdev_rx *rx)
1610 ovs_assert(rx->netdev->ref_cnt > 0);
1615 netdev_rx_get_name(const struct netdev_rx *rx)
1617 return netdev_get_name(netdev_rx_get_netdev(rx));
1621 restore_all_flags(void *aux OVS_UNUSED)
1623 struct shash_node *node;
1625 SHASH_FOR_EACH (node, &netdev_shash) {
1626 struct netdev *netdev = node->data;
1627 const struct netdev_saved_flags *sf;
1628 enum netdev_flags saved_values;
1629 enum netdev_flags saved_flags;
1631 saved_values = saved_flags = 0;
1632 LIST_FOR_EACH (sf, node, &netdev->saved_flags_list) {
1633 saved_flags |= sf->saved_flags;
1634 saved_values &= ~sf->saved_flags;
1635 saved_values |= sf->saved_flags & sf->saved_values;
1638 enum netdev_flags old_flags;
1640 netdev->netdev_class->update_flags(netdev,
1641 saved_flags & saved_values,
1642 saved_flags & ~saved_values,