2 * Copyright (c) 2008, 2009, 2010 Nicira Networks.
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.
23 #include <netinet/in.h>
29 #include "dynamic-string.h"
30 #include "fatal-signal.h"
33 #include "netdev-provider.h"
35 #include "openflow/openflow.h"
37 #include "poll-loop.h"
41 #define THIS_MODULE VLM_netdev
44 static const struct netdev_class *base_netdev_classes[] = {
51 static struct shash netdev_classes = SHASH_INITIALIZER(&netdev_classes);
53 /* All created network devices. */
54 static struct shash netdev_dev_shash = SHASH_INITIALIZER(&netdev_dev_shash);
56 /* All open network devices. */
57 static struct list netdev_list = LIST_INITIALIZER(&netdev_list);
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);
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);
68 netdev_initialize(void)
70 static int status = -1;
75 fatal_signal_add_hook(close_all_netdevs, NULL, NULL, true);
78 for (i = 0; i < ARRAY_SIZE(base_netdev_classes); i++) {
79 netdev_register_provider(base_netdev_classes[i]);
84 /* Performs periodic work needed by all the various kinds of netdevs.
86 * If your program opens any netdevs, it must call this function within its
91 struct shash_node *node;
92 SHASH_FOR_EACH(node, &netdev_classes) {
93 const struct netdev_class *netdev_class = node->data;
94 if (netdev_class->run) {
100 /* Arranges for poll_block() to wake up when netdev_run() needs to be called.
102 * If your program opens any netdevs, it must call this function within its
107 struct shash_node *node;
108 SHASH_FOR_EACH(node, &netdev_classes) {
109 const struct netdev_class *netdev_class = node->data;
110 if (netdev_class->wait) {
111 netdev_class->wait();
116 /* Initializes and registers a new netdev provider. After successful
117 * registration, new netdevs of that type can be opened using netdev_open(). */
119 netdev_register_provider(const struct netdev_class *new_class)
121 struct netdev_class *new_provider;
123 if (shash_find(&netdev_classes, new_class->type)) {
124 VLOG_WARN("attempted to register duplicate netdev provider: %s",
129 if (new_class->init) {
130 int error = new_class->init();
132 VLOG_ERR("failed to initialize %s network device class: %s",
133 new_class->type, strerror(error));
138 new_provider = xmalloc(sizeof *new_provider);
139 memcpy(new_provider, new_class, sizeof *new_provider);
141 shash_add(&netdev_classes, new_class->type, new_provider);
146 /* Unregisters a netdev provider. 'type' must have been previously
147 * registered and not currently be in use by any netdevs. After unregistration
148 * new netdevs of that type cannot be opened using netdev_open(). */
150 netdev_unregister_provider(const char *type)
152 struct shash_node *del_node, *netdev_dev_node;
154 del_node = shash_find(&netdev_classes, type);
156 VLOG_WARN("attempted to unregister a netdev provider that is not "
157 "registered: %s", type);
161 SHASH_FOR_EACH(netdev_dev_node, &netdev_dev_shash) {
162 struct netdev_dev *netdev_dev = netdev_dev_node->data;
163 if (!strcmp(netdev_dev->netdev_class->type, type)) {
164 VLOG_WARN("attempted to unregister in use netdev provider: %s",
170 shash_delete(&netdev_classes, del_node);
171 free(del_node->data);
176 /* Clears 'types' and enumerates the types of all currently registered netdev
177 * providers into it. The caller must first initialize the svec. */
179 netdev_enumerate_types(struct svec *types)
181 struct shash_node *node;
186 SHASH_FOR_EACH(node, &netdev_classes) {
187 const struct netdev_class *netdev_class = node->data;
188 svec_add(types, netdev_class->type);
192 /* Compares 'args' to those used to those used by 'dev'. Returns true
193 * if the arguments are the same, false otherwise. Does not update the
194 * values stored in 'dev'. */
196 compare_device_args(const struct netdev_dev *dev, const struct shash *args)
198 const struct shash_node **new_args;
202 if (shash_count(args) != dev->n_args) {
206 new_args = shash_sort(args);
207 for (i = 0; i < dev->n_args; i++) {
208 if (strcmp(dev->args[i].key, new_args[i]->name) ||
209 strcmp(dev->args[i].value, new_args[i]->data)) {
221 compare_args(const void *a_, const void *b_)
223 const struct arg *a = a_;
224 const struct arg *b = b_;
225 return strcmp(a->key, b->key);
229 update_device_args(struct netdev_dev *dev, const struct shash *args)
231 struct shash_node *node;
235 for (i = 0; i < dev->n_args; i++) {
236 free(dev->args[i].key);
237 free(dev->args[i].value);
244 if (!args || shash_is_empty(args)) {
248 dev->n_args = shash_count(args);
249 dev->args = xmalloc(dev->n_args * sizeof *dev->args);
252 SHASH_FOR_EACH(node, args) {
253 dev->args[i].key = xstrdup(node->name);
254 dev->args[i].value = xstrdup(node->data);
258 qsort(dev->args, dev->n_args, sizeof *dev->args, compare_args);
262 create_device(struct netdev_options *options, struct netdev_dev **netdev_devp)
264 struct netdev_class *netdev_class;
266 if (!options->may_create) {
267 VLOG_WARN("attempted to create a device that may not be created: %s",
272 if (!options->type || strlen(options->type) == 0) {
273 /* Default to system. */
274 options->type = "system";
277 netdev_class = shash_find_data(&netdev_classes, options->type);
279 VLOG_WARN("could not create netdev %s of unknown type %s",
280 options->name, options->type);
284 return netdev_class->create(options->name, options->type, options->args,
288 /* Opens the network device named 'name' (e.g. "eth0") and returns zero if
289 * successful, otherwise a positive errno value. On success, sets '*netdevp'
290 * to the new network device, otherwise to null.
292 * If this is the first time the device has been opened, then create is called
293 * before opening. The device is created using the given type and arguments.
295 * 'ethertype' may be a 16-bit Ethernet protocol value in host byte order to
296 * capture frames of that type received on the device. It may also be one of
297 * the 'enum netdev_pseudo_ethertype' values to receive frames in one of those
300 * If the 'may_create' flag is set then this is allowed to be the first time
301 * the device is opened (i.e. the refcount will be 1 after this call). It
302 * may be set to false if the device should have already been created.
304 * If the 'may_open' flag is set then the call will succeed even if another
305 * caller has already opened it. It may be to false if the device should not
306 * currently be open. */
309 netdev_open(struct netdev_options *options, struct netdev **netdevp)
311 struct shash empty_args = SHASH_INITIALIZER(&empty_args);
312 struct netdev_dev *netdev_dev;
318 if (!options->args) {
319 options->args = &empty_args;
322 netdev_dev = shash_find_data(&netdev_dev_shash, options->name);
325 error = create_device(options, &netdev_dev);
329 update_device_args(netdev_dev, options->args);
331 } else if (options->may_open) {
332 if (!shash_is_empty(options->args) &&
333 !compare_device_args(netdev_dev, options->args)) {
335 VLOG_WARN("%s: attempted to open already created netdev with "
336 "different arguments", options->name);
340 VLOG_WARN("%s: attempted to create a netdev device with bound name",
345 error = netdev_dev->netdev_class->open(netdev_dev, options->ethertype,
349 netdev_dev->ref_cnt++;
351 if (!netdev_dev->ref_cnt) {
352 netdev_dev_uninit(netdev_dev, true);
360 netdev_open_default(const char *name, struct netdev **netdevp)
362 struct netdev_options options;
364 memset(&options, 0, sizeof options);
367 options.ethertype = NETDEV_ETH_TYPE_NONE;
368 options.may_create = true;
369 options.may_open = true;
371 return netdev_open(&options, netdevp);
374 /* Reconfigures the device 'netdev' with 'args'. 'args' may be empty
375 * or NULL if none are needed. */
377 netdev_reconfigure(struct netdev *netdev, const struct shash *args)
379 struct shash empty_args = SHASH_INITIALIZER(&empty_args);
380 struct netdev_dev *netdev_dev = netdev_get_dev(netdev);
386 if (netdev_dev->netdev_class->reconfigure) {
387 if (!compare_device_args(netdev_dev, args)) {
388 update_device_args(netdev_dev, args);
389 return netdev_dev->netdev_class->reconfigure(netdev_dev, args);
391 } else if (!shash_is_empty(args)) {
392 VLOG_WARN("%s: arguments provided to device that does not have a "
393 "reconfigure function", netdev_get_name(netdev));
399 /* Closes and destroys 'netdev'. */
401 netdev_close(struct netdev *netdev)
404 struct netdev_dev *netdev_dev = netdev_get_dev(netdev);
406 assert(netdev_dev->ref_cnt);
407 netdev_dev->ref_cnt--;
408 netdev_uninit(netdev, true);
410 /* If the reference count for the netdev device is zero, destroy it. */
411 if (!netdev_dev->ref_cnt) {
412 netdev_dev_uninit(netdev_dev, true);
417 /* Returns true if a network device named 'name' exists and may be opened,
418 * otherwise false. */
420 netdev_exists(const char *name)
422 struct netdev *netdev;
425 error = netdev_open_default(name, &netdev);
427 netdev_close(netdev);
430 if (error != ENODEV) {
431 VLOG_WARN("failed to open network device %s: %s",
432 name, strerror(error));
438 /* Returns true if a network device named 'name' is currently opened,
439 * otherwise false. */
441 netdev_is_open(const char *name)
443 return !!shash_find_data(&netdev_dev_shash, name);
446 /* Clears 'svec' and enumerates the names of all known network devices. */
448 netdev_enumerate(struct svec *svec)
450 struct shash_node *node;
456 SHASH_FOR_EACH(node, &netdev_classes) {
457 const struct netdev_class *netdev_class = node->data;
458 if (netdev_class->enumerate) {
459 int retval = netdev_class->enumerate(svec);
461 VLOG_WARN("failed to enumerate %s network devices: %s",
462 netdev_class->type, strerror(retval));
473 /* Attempts to receive a packet from 'netdev' into 'buffer', which the caller
474 * must have initialized with sufficient room for the packet. The space
475 * required to receive any packet is ETH_HEADER_LEN bytes, plus VLAN_HEADER_LEN
476 * bytes, plus the device's MTU (which may be retrieved via netdev_get_mtu()).
477 * (Some devices do not allow for a VLAN header, in which case VLAN_HEADER_LEN
478 * need not be included.)
480 * If a packet is successfully retrieved, returns 0. In this case 'buffer' is
481 * guaranteed to contain at least ETH_TOTAL_MIN bytes. Otherwise, returns a
482 * positive errno value. Returns EAGAIN immediately if no packet is ready to
485 * Some network devices may not implement support for this function. In such
486 * cases this function will always return EOPNOTSUPP.
489 netdev_recv(struct netdev *netdev, struct ofpbuf *buffer)
491 int (*recv)(struct netdev *, void *, size_t);
494 assert(buffer->size == 0);
495 assert(ofpbuf_tailroom(buffer) >= ETH_TOTAL_MIN);
497 recv = netdev_get_dev(netdev)->netdev_class->recv;
499 ? (recv)(netdev, buffer->data, ofpbuf_tailroom(buffer))
502 COVERAGE_INC(netdev_received);
503 buffer->size += retval;
504 if (buffer->size < ETH_TOTAL_MIN) {
505 ofpbuf_put_zeros(buffer, ETH_TOTAL_MIN - buffer->size);
513 /* Registers with the poll loop to wake up from the next call to poll_block()
514 * when a packet is ready to be received with netdev_recv() on 'netdev'. */
516 netdev_recv_wait(struct netdev *netdev)
518 void (*recv_wait)(struct netdev *);
520 recv_wait = netdev_get_dev(netdev)->netdev_class->recv_wait;
526 /* Discards all packets waiting to be received from 'netdev'. */
528 netdev_drain(struct netdev *netdev)
530 int (*drain)(struct netdev *);
532 drain = netdev_get_dev(netdev)->netdev_class->drain;
533 return drain ? drain(netdev) : 0;
536 /* Sends 'buffer' on 'netdev'. Returns 0 if successful, otherwise a positive
537 * errno value. Returns EAGAIN without blocking if the packet cannot be queued
538 * immediately. Returns EMSGSIZE if a partial packet was transmitted or if
539 * the packet is too big or too small to transmit on the device.
541 * The caller retains ownership of 'buffer' in all cases.
543 * The kernel maintains a packet transmission queue, so the caller is not
544 * expected to do additional queuing of packets.
546 * Some network devices may not implement support for this function. In such
547 * cases this function will always return EOPNOTSUPP. */
549 netdev_send(struct netdev *netdev, const struct ofpbuf *buffer)
551 int (*send)(struct netdev *, const void *, size_t);
554 send = netdev_get_dev(netdev)->netdev_class->send;
555 error = send ? (send)(netdev, buffer->data, buffer->size) : EOPNOTSUPP;
557 COVERAGE_INC(netdev_sent);
562 /* Registers with the poll loop to wake up from the next call to poll_block()
563 * when the packet transmission queue has sufficient room to transmit a packet
564 * with netdev_send().
566 * The kernel maintains a packet transmission queue, so the client is not
567 * expected to do additional queuing of packets. Thus, this function is
568 * unlikely to ever be used. It is included for completeness. */
570 netdev_send_wait(struct netdev *netdev)
572 void (*send_wait)(struct netdev *);
574 send_wait = netdev_get_dev(netdev)->netdev_class->send_wait;
580 /* Attempts to set 'netdev''s MAC address to 'mac'. Returns 0 if successful,
581 * otherwise a positive errno value. */
583 netdev_set_etheraddr(struct netdev *netdev, const uint8_t mac[ETH_ADDR_LEN])
585 return netdev_get_dev(netdev)->netdev_class->set_etheraddr(netdev, mac);
588 /* Retrieves 'netdev''s MAC address. If successful, returns 0 and copies the
589 * the MAC address into 'mac'. On failure, returns a positive errno value and
590 * clears 'mac' to all-zeros. */
592 netdev_get_etheraddr(const struct netdev *netdev, uint8_t mac[ETH_ADDR_LEN])
594 return netdev_get_dev(netdev)->netdev_class->get_etheraddr(netdev, mac);
597 /* Returns the name of the network device that 'netdev' represents,
598 * e.g. "eth0". The caller must not modify or free the returned string. */
600 netdev_get_name(const struct netdev *netdev)
602 return netdev_get_dev(netdev)->name;
605 /* Retrieves the MTU of 'netdev'. The MTU is the maximum size of transmitted
606 * (and received) packets, in bytes, not including the hardware header; thus,
607 * this is typically 1500 bytes for Ethernet devices.
609 * If successful, returns 0 and stores the MTU size in '*mtup'. On failure,
610 * returns a positive errno value and stores ETH_PAYLOAD_MAX (1500) in
613 netdev_get_mtu(const struct netdev *netdev, int *mtup)
615 int error = netdev_get_dev(netdev)->netdev_class->get_mtu(netdev, mtup);
617 VLOG_WARN_RL(&rl, "failed to retrieve MTU for network device %s: %s",
618 netdev_get_name(netdev), strerror(error));
619 *mtup = ETH_PAYLOAD_MAX;
624 /* Returns the ifindex of 'netdev', if successful, as a positive number. On
625 * failure, returns a negative errno value.
627 * The desired semantics of the ifindex value are a combination of those
628 * specified by POSIX for if_nametoindex() and by SNMP for ifIndex. An ifindex
629 * value should be unique within a host and remain stable at least until
630 * reboot. SNMP says an ifindex "ranges between 1 and the value of ifNumber"
631 * but many systems do not follow this rule anyhow.
633 * Some network devices may not implement support for this function. In such
634 * cases this function will always return -EOPNOTSUPP.
637 netdev_get_ifindex(const struct netdev *netdev)
639 int (*get_ifindex)(const struct netdev *);
641 get_ifindex = netdev_get_dev(netdev)->netdev_class->get_ifindex;
643 return get_ifindex ? get_ifindex(netdev) : -EOPNOTSUPP;
646 /* Stores the features supported by 'netdev' into each of '*current',
647 * '*advertised', '*supported', and '*peer' that are non-null. Each value is a
648 * bitmap of "enum ofp_port_features" bits, in host byte order. Returns 0 if
649 * successful, otherwise a positive errno value. On failure, all of the
650 * passed-in values are set to 0.
652 * Some network devices may not implement support for this function. In such
653 * cases this function will always return EOPNOTSUPP.
656 netdev_get_features(struct netdev *netdev,
657 uint32_t *current, uint32_t *advertised,
658 uint32_t *supported, uint32_t *peer)
660 int (*get_features)(struct netdev *netdev,
661 uint32_t *current, uint32_t *advertised,
662 uint32_t *supported, uint32_t *peer);
670 advertised = &dummy[1];
673 supported = &dummy[2];
679 get_features = netdev_get_dev(netdev)->netdev_class->get_features;
681 ? get_features(netdev, current, advertised, supported, peer)
684 *current = *advertised = *supported = *peer = 0;
689 /* Returns the maximum speed of a network connection that has the "enum
690 * ofp_port_features" bits in 'features', in bits per second. If no bits that
691 * indicate a speed are set in 'features', assumes 100Mbps. */
693 netdev_features_to_bps(uint32_t features)
696 F_10000MB = OFPPF_10GB_FD,
697 F_1000MB = OFPPF_1GB_HD | OFPPF_1GB_FD,
698 F_100MB = OFPPF_100MB_HD | OFPPF_100MB_FD,
699 F_10MB = OFPPF_10MB_HD | OFPPF_10MB_FD
702 return ( features & F_10000MB ? UINT64_C(10000000000)
703 : features & F_1000MB ? UINT64_C(1000000000)
704 : features & F_100MB ? UINT64_C(100000000)
705 : features & F_10MB ? UINT64_C(10000000)
706 : UINT64_C(100000000));
709 /* Returns true if any of the "enum ofp_port_features" bits that indicate a
710 * full-duplex link are set in 'features', otherwise false. */
712 netdev_features_is_full_duplex(uint32_t features)
714 return (features & (OFPPF_10MB_FD | OFPPF_100MB_FD | OFPPF_1GB_FD
715 | OFPPF_10GB_FD)) != 0;
718 /* Set the features advertised by 'netdev' to 'advertise'. Returns 0 if
719 * successful, otherwise a positive errno value. */
721 netdev_set_advertisements(struct netdev *netdev, uint32_t advertise)
723 return (netdev_get_dev(netdev)->netdev_class->set_advertisements
724 ? netdev_get_dev(netdev)->netdev_class->set_advertisements(
729 /* If 'netdev' has an assigned IPv4 address, sets '*address' to that address
730 * and '*netmask' to its netmask and returns 0. Otherwise, returns a positive
731 * errno value and sets '*address' to 0 (INADDR_ANY).
733 * The following error values have well-defined meanings:
735 * - EADDRNOTAVAIL: 'netdev' has no assigned IPv4 address.
737 * - EOPNOTSUPP: No IPv4 network stack attached to 'netdev'.
739 * 'address' or 'netmask' or both may be null, in which case the address or netmask
740 * is not reported. */
742 netdev_get_in4(const struct netdev *netdev,
743 struct in_addr *address_, struct in_addr *netmask_)
745 struct in_addr address;
746 struct in_addr netmask;
749 error = (netdev_get_dev(netdev)->netdev_class->get_in4
750 ? netdev_get_dev(netdev)->netdev_class->get_in4(netdev,
754 address_->s_addr = error ? 0 : address.s_addr;
757 netmask_->s_addr = error ? 0 : netmask.s_addr;
762 /* Assigns 'addr' as 'netdev''s IPv4 address and 'mask' as its netmask. If
763 * 'addr' is INADDR_ANY, 'netdev''s IPv4 address is cleared. Returns a
764 * positive errno value. */
766 netdev_set_in4(struct netdev *netdev, struct in_addr addr, struct in_addr mask)
768 return (netdev_get_dev(netdev)->netdev_class->set_in4
769 ? netdev_get_dev(netdev)->netdev_class->set_in4(netdev, addr, mask)
773 /* Adds 'router' as a default IP gateway for the TCP/IP stack that corresponds
776 netdev_add_router(struct netdev *netdev, struct in_addr router)
778 COVERAGE_INC(netdev_add_router);
779 return (netdev_get_dev(netdev)->netdev_class->add_router
780 ? netdev_get_dev(netdev)->netdev_class->add_router(netdev, router)
784 /* Looks up the next hop for 'host' for the TCP/IP stack that corresponds to
785 * 'netdev'. If a route cannot not be determined, sets '*next_hop' to 0,
786 * '*netdev_name' to null, and returns a positive errno value. Otherwise, if a
787 * next hop is found, stores the next hop gateway's address (0 if 'host' is on
788 * a directly connected network) in '*next_hop' and a copy of the name of the
789 * device to reach 'host' in '*netdev_name', and returns 0. The caller is
790 * responsible for freeing '*netdev_name' (by calling free()). */
792 netdev_get_next_hop(const struct netdev *netdev,
793 const struct in_addr *host, struct in_addr *next_hop,
796 int error = (netdev_get_dev(netdev)->netdev_class->get_next_hop
797 ? netdev_get_dev(netdev)->netdev_class->get_next_hop(
798 host, next_hop, netdev_name)
801 next_hop->s_addr = 0;
807 /* If 'netdev' has an assigned IPv6 address, sets '*in6' to that address and
808 * returns 0. Otherwise, returns a positive errno value and sets '*in6' to
809 * all-zero-bits (in6addr_any).
811 * The following error values have well-defined meanings:
813 * - EADDRNOTAVAIL: 'netdev' has no assigned IPv6 address.
815 * - EOPNOTSUPP: No IPv6 network stack attached to 'netdev'.
817 * 'in6' may be null, in which case the address itself is not reported. */
819 netdev_get_in6(const struct netdev *netdev, struct in6_addr *in6)
821 struct in6_addr dummy;
824 error = (netdev_get_dev(netdev)->netdev_class->get_in6
825 ? netdev_get_dev(netdev)->netdev_class->get_in6(netdev,
829 memset(in6, 0, sizeof *in6);
834 /* On 'netdev', turns off the flags in 'off' and then turns on the flags in
835 * 'on'. If 'permanent' is true, the changes will persist; otherwise, they
836 * will be reverted when 'netdev' is closed or the program exits. Returns 0 if
837 * successful, otherwise a positive errno value. */
839 do_update_flags(struct netdev *netdev, enum netdev_flags off,
840 enum netdev_flags on, enum netdev_flags *old_flagsp,
843 enum netdev_flags old_flags;
846 error = netdev_get_dev(netdev)->netdev_class->update_flags(netdev,
847 off & ~on, on, &old_flags);
849 VLOG_WARN_RL(&rl, "failed to %s flags for network device %s: %s",
850 off || on ? "set" : "get", netdev_get_name(netdev),
853 } else if ((off || on) && !permanent) {
854 enum netdev_flags new_flags = (old_flags & ~off) | on;
855 enum netdev_flags changed_flags = old_flags ^ new_flags;
857 if (!netdev->changed_flags) {
858 netdev->save_flags = old_flags;
860 netdev->changed_flags |= changed_flags;
864 *old_flagsp = old_flags;
869 /* Obtains the current flags for 'netdev' and stores them into '*flagsp'.
870 * Returns 0 if successful, otherwise a positive errno value. On failure,
871 * stores 0 into '*flagsp'. */
873 netdev_get_flags(const struct netdev *netdev_, enum netdev_flags *flagsp)
875 struct netdev *netdev = (struct netdev *) netdev_;
876 return do_update_flags(netdev, 0, 0, flagsp, false);
879 /* Sets the flags for 'netdev' to 'flags'.
880 * If 'permanent' is true, the changes will persist; otherwise, they
881 * will be reverted when 'netdev' is closed or the program exits.
882 * Returns 0 if successful, otherwise a positive errno value. */
884 netdev_set_flags(struct netdev *netdev, enum netdev_flags flags,
887 return do_update_flags(netdev, -1, flags, NULL, permanent);
890 /* Turns on the specified 'flags' on 'netdev'.
891 * If 'permanent' is true, the changes will persist; otherwise, they
892 * will be reverted when 'netdev' is closed or the program exits.
893 * Returns 0 if successful, otherwise a positive errno value. */
895 netdev_turn_flags_on(struct netdev *netdev, enum netdev_flags flags,
898 return do_update_flags(netdev, 0, flags, NULL, permanent);
901 /* Turns off the specified 'flags' on 'netdev'.
902 * If 'permanent' is true, the changes will persist; otherwise, they
903 * will be reverted when 'netdev' is closed or the program exits.
904 * Returns 0 if successful, otherwise a positive errno value. */
906 netdev_turn_flags_off(struct netdev *netdev, enum netdev_flags flags,
909 return do_update_flags(netdev, flags, 0, NULL, permanent);
912 /* Looks up the ARP table entry for 'ip' on 'netdev'. If one exists and can be
913 * successfully retrieved, it stores the corresponding MAC address in 'mac' and
914 * returns 0. Otherwise, it returns a positive errno value; in particular,
915 * ENXIO indicates that there is no ARP table entry for 'ip' on 'netdev'. */
917 netdev_arp_lookup(const struct netdev *netdev,
918 uint32_t ip, uint8_t mac[ETH_ADDR_LEN])
920 int error = (netdev_get_dev(netdev)->netdev_class->arp_lookup
921 ? netdev_get_dev(netdev)->netdev_class->arp_lookup(netdev,
925 memset(mac, 0, ETH_ADDR_LEN);
930 /* Sets 'carrier' to true if carrier is active (link light is on) on
933 netdev_get_carrier(const struct netdev *netdev, bool *carrier)
935 int error = (netdev_get_dev(netdev)->netdev_class->get_carrier
936 ? netdev_get_dev(netdev)->netdev_class->get_carrier(netdev,
945 /* Retrieves current device stats for 'netdev'. */
947 netdev_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
951 COVERAGE_INC(netdev_get_stats);
952 error = (netdev_get_dev(netdev)->netdev_class->get_stats
953 ? netdev_get_dev(netdev)->netdev_class->get_stats(netdev, stats)
956 memset(stats, 0xff, sizeof *stats);
961 /* Attempts to set input rate limiting (policing) policy, such that up to
962 * 'kbits_rate' kbps of traffic is accepted, with a maximum accumulative burst
963 * size of 'kbits' kb. */
965 netdev_set_policing(struct netdev *netdev, uint32_t kbits_rate,
966 uint32_t kbits_burst)
968 return (netdev_get_dev(netdev)->netdev_class->set_policing
969 ? netdev_get_dev(netdev)->netdev_class->set_policing(netdev,
970 kbits_rate, kbits_burst)
974 /* If 'netdev' is a VLAN network device (e.g. one created with vconfig(8)),
975 * sets '*vlan_vid' to the VLAN VID associated with that device and returns 0.
976 * Otherwise returns a errno value (specifically ENOENT if 'netdev_name' is the
977 * name of a network device that is not a VLAN device) and sets '*vlan_vid' to
980 netdev_get_vlan_vid(const struct netdev *netdev, int *vlan_vid)
982 int error = (netdev_get_dev(netdev)->netdev_class->get_vlan_vid
983 ? netdev_get_dev(netdev)->netdev_class->get_vlan_vid(netdev,
992 /* Returns a network device that has 'in4' as its IP address, if one exists,
993 * otherwise a null pointer. */
995 netdev_find_dev_by_in4(const struct in_addr *in4)
997 struct netdev *netdev;
998 struct svec dev_list = SVEC_EMPTY_INITIALIZER;
1001 netdev_enumerate(&dev_list);
1002 for (i = 0; i < dev_list.n; i++) {
1003 const char *name = dev_list.names[i];
1004 struct in_addr dev_in4;
1006 if (!netdev_open_default(name, &netdev)
1007 && !netdev_get_in4(netdev, &dev_in4, NULL)
1008 && dev_in4.s_addr == in4->s_addr) {
1011 netdev_close(netdev);
1016 svec_destroy(&dev_list);
1020 /* Initializes 'netdev_dev' as a netdev device named 'name' of the
1021 * specified 'netdev_class'.
1023 * This function adds 'netdev_dev' to a netdev-owned shash, so it is
1024 * very important that 'netdev_dev' only be freed after calling
1025 * the refcount drops to zero. */
1027 netdev_dev_init(struct netdev_dev *netdev_dev, const char *name,
1028 const struct netdev_class *netdev_class)
1030 assert(!shash_find(&netdev_dev_shash, name));
1032 memset(netdev_dev, 0, sizeof *netdev_dev);
1033 netdev_dev->netdev_class = netdev_class;
1034 netdev_dev->name = xstrdup(name);
1035 netdev_dev->node = shash_add(&netdev_dev_shash, name, netdev_dev);
1038 /* Undoes the results of initialization.
1040 * Normally this function does not need to be called as netdev_close has
1041 * the same effect when the refcount drops to zero.
1042 * However, it may be called by providers due to an error on creation
1043 * that occurs after initialization. It this case netdev_close() would
1044 * never be called. */
1046 netdev_dev_uninit(struct netdev_dev *netdev_dev, bool destroy)
1048 char *name = netdev_dev->name;
1050 assert(!netdev_dev->ref_cnt);
1052 shash_delete(&netdev_dev_shash, netdev_dev->node);
1053 update_device_args(netdev_dev, NULL);
1056 netdev_dev->netdev_class->destroy(netdev_dev);
1061 /* Returns the class type of 'netdev_dev'.
1063 * The caller must not free the returned value. */
1065 netdev_dev_get_type(const struct netdev_dev *netdev_dev)
1067 return netdev_dev->netdev_class->type;
1070 /* Returns the class associated with 'netdev_dev'. */
1071 const struct netdev_class *
1072 netdev_dev_get_class(const struct netdev_dev *netdev_dev)
1074 return netdev_dev->netdev_class;
1077 /* Returns the name of 'netdev_dev'.
1079 * The caller must not free the returned value. */
1081 netdev_dev_get_name(const struct netdev_dev *netdev_dev)
1083 return netdev_dev->name;
1086 /* Returns the netdev_dev with 'name' or NULL if there is none.
1088 * The caller must not free the returned value. */
1090 netdev_dev_from_name(const char *name)
1092 return shash_find_data(&netdev_dev_shash, name);
1095 /* Fills 'device_list' with devices that match 'netdev_class'.
1097 * The caller is responsible for initializing and destroying 'device_list'
1098 * but the contained netdev_devs must not be freed. */
1100 netdev_dev_get_devices(const struct netdev_class *netdev_class,
1101 struct shash *device_list)
1103 struct shash_node *node;
1104 SHASH_FOR_EACH (node, &netdev_dev_shash) {
1105 struct netdev_dev *dev = node->data;
1107 if (dev->netdev_class == netdev_class) {
1108 shash_add(device_list, node->name, node->data);
1113 /* Initializes 'netdev' as a instance of the netdev_dev.
1115 * This function adds 'netdev' to a netdev-owned linked list, so it is very
1116 * important that 'netdev' only be freed after calling netdev_close(). */
1118 netdev_init(struct netdev *netdev, struct netdev_dev *netdev_dev)
1120 memset(netdev, 0, sizeof *netdev);
1121 netdev->netdev_dev = netdev_dev;
1122 list_push_back(&netdev_list, &netdev->node);
1125 /* Undoes the results of initialization.
1127 * Normally this function only needs to be called from netdev_close().
1128 * However, it may be called by providers due to an error on opening
1129 * that occurs after initialization. It this case netdev_close() would
1130 * never be called. */
1132 netdev_uninit(struct netdev *netdev, bool close)
1134 /* Restore flags that we changed, if any. */
1135 int error = restore_flags(netdev);
1136 list_remove(&netdev->node);
1138 VLOG_WARN("failed to restore network device flags on %s: %s",
1139 netdev_get_name(netdev), strerror(error));
1143 netdev_get_dev(netdev)->netdev_class->close(netdev);
1148 /* Returns the class type of 'netdev'.
1150 * The caller must not free the returned value. */
1152 netdev_get_type(const struct netdev *netdev)
1154 return netdev_get_dev(netdev)->netdev_class->type;
1158 netdev_get_dev(const struct netdev *netdev)
1160 return netdev->netdev_dev;
1163 /* Initializes 'notifier' as a netdev notifier for 'netdev', for which
1164 * notification will consist of calling 'cb', with auxiliary data 'aux'. */
1166 netdev_notifier_init(struct netdev_notifier *notifier, struct netdev *netdev,
1167 void (*cb)(struct netdev_notifier *), void *aux)
1169 notifier->netdev = netdev;
1171 notifier->aux = aux;
1174 /* Tracks changes in the status of a set of network devices. */
1175 struct netdev_monitor {
1176 struct shash polled_netdevs;
1177 struct shash changed_netdevs;
1180 /* Creates and returns a new structure for monitor changes in the status of
1181 * network devices. */
1182 struct netdev_monitor *
1183 netdev_monitor_create(void)
1185 struct netdev_monitor *monitor = xmalloc(sizeof *monitor);
1186 shash_init(&monitor->polled_netdevs);
1187 shash_init(&monitor->changed_netdevs);
1191 /* Destroys 'monitor'. */
1193 netdev_monitor_destroy(struct netdev_monitor *monitor)
1196 struct shash_node *node;
1198 SHASH_FOR_EACH (node, &monitor->polled_netdevs) {
1199 struct netdev_notifier *notifier = node->data;
1200 netdev_get_dev(notifier->netdev)->netdev_class->poll_remove(
1204 shash_destroy(&monitor->polled_netdevs);
1205 shash_destroy(&monitor->changed_netdevs);
1211 netdev_monitor_cb(struct netdev_notifier *notifier)
1213 struct netdev_monitor *monitor = notifier->aux;
1214 const char *name = netdev_get_name(notifier->netdev);
1215 if (!shash_find(&monitor->changed_netdevs, name)) {
1216 shash_add(&monitor->changed_netdevs, name, NULL);
1220 /* Attempts to add 'netdev' as a netdev monitored by 'monitor'. Returns 0 if
1221 * successful, otherwise a positive errno value.
1223 * Adding a given 'netdev' to a monitor multiple times is equivalent to adding
1226 netdev_monitor_add(struct netdev_monitor *monitor, struct netdev *netdev)
1228 const char *netdev_name = netdev_get_name(netdev);
1230 if (!shash_find(&monitor->polled_netdevs, netdev_name)
1231 && netdev_get_dev(netdev)->netdev_class->poll_add)
1233 struct netdev_notifier *notifier;
1234 error = netdev_get_dev(netdev)->netdev_class->poll_add(netdev,
1235 netdev_monitor_cb, monitor, ¬ifier);
1237 assert(notifier->netdev == netdev);
1238 shash_add(&monitor->polled_netdevs, netdev_name, notifier);
1244 /* Removes 'netdev' from the set of netdevs monitored by 'monitor'. (This has
1245 * no effect if 'netdev' is not in the set of devices monitored by
1248 netdev_monitor_remove(struct netdev_monitor *monitor, struct netdev *netdev)
1250 const char *netdev_name = netdev_get_name(netdev);
1251 struct shash_node *node;
1253 node = shash_find(&monitor->polled_netdevs, netdev_name);
1255 /* Cancel future notifications. */
1256 struct netdev_notifier *notifier = node->data;
1257 netdev_get_dev(netdev)->netdev_class->poll_remove(notifier);
1258 shash_delete(&monitor->polled_netdevs, node);
1260 /* Drop any pending notification. */
1261 node = shash_find(&monitor->changed_netdevs, netdev_name);
1263 shash_delete(&monitor->changed_netdevs, node);
1268 /* Checks for changes to netdevs in the set monitored by 'monitor'. If any of
1269 * the attributes (Ethernet address, carrier status, speed or peer-advertised
1270 * speed, flags, etc.) of a network device monitored by 'monitor' has changed,
1271 * sets '*devnamep' to the name of a device that has changed and returns 0.
1272 * The caller is responsible for freeing '*devnamep' (with free()).
1274 * If no devices have changed, sets '*devnamep' to NULL and returns EAGAIN.
1277 netdev_monitor_poll(struct netdev_monitor *monitor, char **devnamep)
1279 struct shash_node *node = shash_first(&monitor->changed_netdevs);
1284 *devnamep = xstrdup(node->name);
1285 shash_delete(&monitor->changed_netdevs, node);
1290 /* Registers with the poll loop to wake up from the next call to poll_block()
1291 * when netdev_monitor_poll(monitor) would indicate that a device has
1294 netdev_monitor_poll_wait(const struct netdev_monitor *monitor)
1296 if (!shash_is_empty(&monitor->changed_netdevs)) {
1297 poll_immediate_wake();
1299 /* XXX Nothing needed here for netdev_linux, but maybe other netdev
1300 * classes need help. */
1304 /* Restore the network device flags on 'netdev' to those that were active
1305 * before we changed them. Returns 0 if successful, otherwise a positive
1308 * To avoid reentry, the caller must ensure that fatal signals are blocked. */
1310 restore_flags(struct netdev *netdev)
1312 if (netdev->changed_flags) {
1313 enum netdev_flags restore = netdev->save_flags & netdev->changed_flags;
1314 enum netdev_flags old_flags;
1315 return netdev_get_dev(netdev)->netdev_class->update_flags(netdev,
1316 netdev->changed_flags & ~restore,
1317 restore, &old_flags);
1322 /* Close all netdevs on shutdown so they can do any needed cleanup such as
1323 * destroying devices, restoring flags, etc. */
1325 close_all_netdevs(void *aux OVS_UNUSED)
1327 struct netdev *netdev, *next;
1328 LIST_FOR_EACH_SAFE(netdev, next, struct netdev, node, &netdev_list) {
1329 netdev_close(netdev);