1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
4 #include <linux/if_arp.h>
5 #include <linux/if_link.h>
6 #include <linux/netdevice.h>
8 #include <sys/socket.h>
12 #include "sd-dhcp-client.h"
13 #include "sd-dhcp-server.h"
14 #include "sd-dhcp6-client.h"
15 #include "sd-dhcp6-lease.h"
16 #include "sd-ipv4ll.h"
17 #include "sd-lldp-rx.h"
19 #include "sd-netlink.h"
22 #include "alloc-util.h"
23 #include "arphrd-util.h"
25 #include "device-util.h"
26 #include "errno-util.h"
27 #include "ethtool-util.h"
28 #include "event-util.h"
29 #include "format-ifname.h"
31 #include "glyph-util.h"
32 #include "logarithm.h"
33 #include "netif-util.h"
34 #include "netlink-util.h"
35 #include "networkd-address.h"
36 #include "networkd-address-label.h"
37 #include "networkd-bridge-fdb.h"
38 #include "networkd-bridge-mdb.h"
39 #include "networkd-bridge-vlan.h"
40 #include "networkd-dhcp-prefix-delegation.h"
41 #include "networkd-dhcp-server.h"
42 #include "networkd-dhcp4.h"
43 #include "networkd-dhcp6.h"
44 #include "networkd-ipv4acd.h"
45 #include "networkd-ipv4ll.h"
46 #include "networkd-ipv6-proxy-ndp.h"
47 #include "networkd-link.h"
48 #include "networkd-link-bus.h"
49 #include "networkd-lldp-tx.h"
50 #include "networkd-manager.h"
51 #include "networkd-ndisc.h"
52 #include "networkd-neighbor.h"
53 #include "networkd-nexthop.h"
54 #include "networkd-queue.h"
55 #include "networkd-radv.h"
56 #include "networkd-route.h"
57 #include "networkd-route-util.h"
58 #include "networkd-routing-policy-rule.h"
59 #include "networkd-setlink.h"
60 #include "networkd-sriov.h"
61 #include "networkd-state-file.h"
62 #include "networkd-sysctl.h"
63 #include "networkd-wifi.h"
64 #include "ordered-set.h"
65 #include "parse-util.h"
67 #include "socket-util.h"
68 #include "string-table.h"
69 #include "string-util.h"
72 #include "udev-util.h"
74 void link_required_operstate_for_online(Link
*link
, LinkOperationalStateRange
*ret
) {
78 if (link
->network
&& operational_state_range_is_valid(&link
->network
->required_operstate_for_online
))
79 /* If explicitly specified, use it as is. */
80 *ret
= link
->network
->required_operstate_for_online
;
81 else if (link
->iftype
== ARPHRD_CAN
)
82 /* CAN devices do not support addressing, hence defaults to 'carrier'. */
83 *ret
= (const LinkOperationalStateRange
) {
84 .min
= LINK_OPERSTATE_CARRIER
,
85 .max
= LINK_OPERSTATE_CARRIER
,
87 else if (link
->network
&& link
->network
->bond
)
88 /* Bonding slaves do not support addressing. */
89 *ret
= (const LinkOperationalStateRange
) {
90 .min
= LINK_OPERSTATE_ENSLAVED
,
91 .max
= LINK_OPERSTATE_ENSLAVED
,
93 else if (STRPTR_IN_SET(link
->kind
, "batadv", "bond", "bridge", "vrf"))
94 /* Some of slave interfaces may be offline. */
95 *ret
= (const LinkOperationalStateRange
) {
96 .min
= LINK_OPERSTATE_DEGRADED_CARRIER
,
97 .max
= LINK_OPERSTATE_ROUTABLE
,
100 *ret
= LINK_OPERSTATE_RANGE_DEFAULT
;
103 AddressFamily
link_required_family_for_online(Link
*link
) {
106 if (link
->network
&& link
->network
->required_family_for_online
>= 0)
107 return link
->network
->required_family_for_online
;
109 if (link
->network
&& operational_state_range_is_valid(&link
->network
->required_operstate_for_online
))
110 /* If RequiredForOnline= is explicitly specified, defaults to no. */
111 return ADDRESS_FAMILY_NO
;
113 if (STRPTR_IN_SET(link
->kind
, "batadv", "bond", "bridge", "vrf"))
114 /* As the minimum required operstate for master interfaces is 'degraded-carrier',
115 * we should request an address assigned to the link for backward compatibility. */
116 return ADDRESS_FAMILY_YES
;
118 return ADDRESS_FAMILY_NO
;
121 bool link_ipv6_enabled(Link
*link
) {
124 if (!socket_ipv6_is_supported())
127 if (link
->iftype
== ARPHRD_CAN
)
133 if (link
->network
->bond
)
136 if (link_ipv6ll_enabled(link
))
139 if (network_has_static_ipv6_configurations(link
->network
))
145 bool link_has_ipv6_connectivity(Link
*link
) {
146 LinkAddressState ipv6_address_state
;
150 link_get_address_states(link
, NULL
, &ipv6_address_state
, NULL
);
152 switch (ipv6_address_state
) {
153 case LINK_ADDRESS_STATE_ROUTABLE
:
154 /* If the interface has a routable IPv6 address, then we assume yes. */
157 case LINK_ADDRESS_STATE_DEGRADED
:
158 /* If the interface has only degraded IPv6 address (mostly, link-local address), then let's check
159 * there is an IPv6 default gateway. */
160 return link_has_default_gateway(link
, AF_INET6
);
162 case LINK_ADDRESS_STATE_OFF
:
163 /* No IPv6 address. */
167 assert_not_reached();
171 static bool link_is_ready_to_configure_one(Link
*link
, bool allow_unmanaged
) {
174 if (!IN_SET(link
->state
, LINK_STATE_CONFIGURING
, LINK_STATE_CONFIGURED
, LINK_STATE_UNMANAGED
))
178 return allow_unmanaged
;
180 if (!link
->network
->configure_without_carrier
) {
181 if (link
->set_flags_messages
> 0)
184 if (!link_has_carrier(link
))
188 if (link
->set_link_messages
> 0)
191 if (!link
->activated
)
197 bool link_is_ready_to_configure(Link
*link
, bool allow_unmanaged
) {
198 return check_ready_for_all_sr_iov_ports(link
, allow_unmanaged
, link_is_ready_to_configure_one
);
201 bool link_is_ready_to_configure_by_name(Manager
*manager
, const char *name
, bool allow_unmanaged
) {
206 if (link_get_by_name(manager
, name
, &link
) < 0)
209 return link_is_ready_to_configure(link
, allow_unmanaged
);
212 void link_ntp_settings_clear(Link
*link
) {
213 link
->ntp
= strv_free(link
->ntp
);
216 void link_dns_settings_clear(Link
*link
) {
217 if (link
->n_dns
!= UINT_MAX
)
218 for (unsigned i
= 0; i
< link
->n_dns
; i
++)
219 in_addr_full_free(link
->dns
[i
]);
220 link
->dns
= mfree(link
->dns
);
221 link
->n_dns
= UINT_MAX
;
223 link
->search_domains
= ordered_set_free(link
->search_domains
);
224 link
->route_domains
= ordered_set_free(link
->route_domains
);
226 link
->dns_default_route
= -1;
227 link
->llmnr
= _RESOLVE_SUPPORT_INVALID
;
228 link
->mdns
= _RESOLVE_SUPPORT_INVALID
;
229 link
->dnssec_mode
= _DNSSEC_MODE_INVALID
;
230 link
->dns_over_tls_mode
= _DNS_OVER_TLS_MODE_INVALID
;
232 link
->dnssec_negative_trust_anchors
= set_free(link
->dnssec_negative_trust_anchors
);
235 static void link_free_engines(Link
*link
) {
239 link
->dhcp_server
= sd_dhcp_server_unref(link
->dhcp_server
);
241 link
->dhcp_client
= sd_dhcp_client_unref(link
->dhcp_client
);
242 link
->dhcp_lease
= sd_dhcp_lease_unref(link
->dhcp_lease
);
243 link
->dhcp4_6rd_tunnel_name
= mfree(link
->dhcp4_6rd_tunnel_name
);
245 link
->lldp_rx
= sd_lldp_rx_unref(link
->lldp_rx
);
246 link
->lldp_tx
= sd_lldp_tx_unref(link
->lldp_tx
);
248 link
->ipv4acd_by_address
= hashmap_free(link
->ipv4acd_by_address
);
250 link
->ipv4ll
= sd_ipv4ll_unref(link
->ipv4ll
);
252 link
->dhcp6_client
= sd_dhcp6_client_unref(link
->dhcp6_client
);
253 link
->dhcp6_lease
= sd_dhcp6_lease_unref(link
->dhcp6_lease
);
255 link
->ndisc
= sd_ndisc_unref(link
->ndisc
);
256 link
->ndisc_expire
= sd_event_source_disable_unref(link
->ndisc_expire
);
259 link
->radv
= sd_radv_unref(link
->radv
);
262 static Link
* link_free(Link
*link
) {
265 (void) link_clear_sysctl_shadows(link
);
267 link_ntp_settings_clear(link
);
268 link_dns_settings_clear(link
);
270 link
->neighbors
= set_free(link
->neighbors
);
271 link
->addresses
= set_free(link
->addresses
);
272 link
->qdiscs
= set_free(link
->qdiscs
);
273 link
->tclasses
= set_free(link
->tclasses
);
275 link
->dhcp_pd_prefixes
= set_free(link
->dhcp_pd_prefixes
);
277 link_free_engines(link
);
279 set_free(link
->sr_iov_virt_port_ifindices
);
281 strv_free(link
->alternative_names
);
284 free(link
->previous_ssid
);
287 unlink_and_free(link
->lease_file
);
288 unlink_and_free(link
->state_file
);
290 sd_device_unref(link
->dev
);
291 netdev_unref(link
->netdev
);
293 hashmap_free(link
->bound_to_links
);
294 hashmap_free(link
->bound_by_links
);
296 set_free(link
->slaves
);
298 network_unref(link
->network
);
300 sd_event_source_disable_unref(link
->carrier_lost_timer
);
301 sd_event_source_disable_unref(link
->ipv6_mtu_wait_synced_event_source
);
306 DEFINE_TRIVIAL_REF_UNREF_FUNC(Link
, link
, link_free
);
308 DEFINE_HASH_OPS_WITH_VALUE_DESTRUCTOR(
310 void, trivial_hash_func
, trivial_compare_func
,
313 int link_get_by_index(Manager
*m
, int ifindex
, Link
**ret
) {
321 link
= hashmap_get(m
->links_by_index
, INT_TO_PTR(ifindex
));
330 int link_get_by_name(Manager
*m
, const char *ifname
, Link
**ret
) {
336 link
= hashmap_get(m
->links_by_name
, ifname
);
345 int link_get_by_hw_addr(Manager
*m
, const struct hw_addr_data
*hw_addr
, Link
**ret
) {
351 link
= hashmap_get(m
->links_by_hw_addr
, hw_addr
);
360 int link_get_master(Link
*link
, Link
**ret
) {
362 assert(link
->manager
);
365 if (link
->master_ifindex
<= 0 || link
->master_ifindex
== link
->ifindex
)
368 return link_get_by_index(link
->manager
, link
->master_ifindex
, ret
);
371 void link_set_state(Link
*link
, LinkState state
) {
374 if (link
->state
== state
)
377 log_link_debug(link
, "State changed: %s -> %s",
378 link_state_to_string(link
->state
),
379 link_state_to_string(state
));
383 link_send_changed(link
, "AdministrativeState");
387 int link_stop_engines(Link
*link
, bool may_keep_dynamic
) {
391 assert(link
->manager
);
392 assert(link
->manager
->event
);
397 (link
->manager
->state
== MANAGER_RESTARTING
||
398 FLAGS_SET(link
->network
->keep_configuration
, KEEP_CONFIGURATION_DYNAMIC_ON_STOP
));
401 r
= sd_dhcp_client_stop(link
->dhcp_client
);
403 RET_GATHER(ret
, log_link_warning_errno(link
, r
, "Could not stop DHCPv4 client: %m"));
405 r
= sd_ipv4ll_stop(link
->ipv4ll
);
407 RET_GATHER(ret
, log_link_warning_errno(link
, r
, "Could not stop IPv4 link-local: %m"));
409 r
= sd_dhcp6_client_stop(link
->dhcp6_client
);
411 RET_GATHER(ret
, log_link_warning_errno(link
, r
, "Could not stop DHCPv6 client: %m"));
413 r
= dhcp_pd_remove(link
, /* only_marked = */ false);
415 RET_GATHER(ret
, log_link_warning_errno(link
, r
, "Could not remove DHCPv6 PD addresses and routes: %m"));
417 r
= ndisc_stop(link
);
419 RET_GATHER(ret
, log_link_warning_errno(link
, r
, "Could not stop IPv6 Router Discovery: %m"));
424 r
= sd_dhcp_server_stop(link
->dhcp_server
);
426 RET_GATHER(ret
, log_link_warning_errno(link
, r
, "Could not stop DHCPv4 server: %m"));
428 r
= sd_lldp_rx_stop(link
->lldp_rx
);
430 RET_GATHER(ret
, log_link_warning_errno(link
, r
, "Could not stop LLDP Rx: %m"));
432 r
= sd_lldp_tx_stop(link
->lldp_tx
);
434 RET_GATHER(ret
, log_link_warning_errno(link
, r
, "Could not stop LLDP Tx: %m"));
436 r
= ipv4acd_stop(link
);
438 RET_GATHER(ret
, log_link_warning_errno(link
, r
, "Could not stop IPv4 ACD client: %m"));
440 r
= sd_radv_stop(link
->radv
);
442 RET_GATHER(ret
, log_link_warning_errno(link
, r
, "Could not stop IPv6 Router Advertisement: %m"));
447 void link_enter_failed(Link
*link
) {
450 if (IN_SET(link
->state
, LINK_STATE_FAILED
, LINK_STATE_LINGER
))
453 log_link_warning(link
, "Failed");
455 link_set_state(link
, LINK_STATE_FAILED
);
457 if (!ratelimit_below(&link
->automatic_reconfigure_ratelimit
)) {
458 log_link_warning(link
, "The interface entered the failed state frequently, refusing to reconfigure it automatically.");
462 log_link_info(link
, "Trying to reconfigure the interface.");
463 if (link_reconfigure(link
, LINK_RECONFIGURE_UNCONDITIONALLY
) > 0)
467 (void) link_stop_engines(link
, /* may_keep_dynamic = */ false);
470 void link_check_ready(Link
*link
) {
475 if (link
->state
== LINK_STATE_CONFIGURED
)
478 if (link
->state
!= LINK_STATE_CONFIGURING
)
479 return (void) log_link_debug(link
, "%s(): link is in %s state.", __func__
, link_state_to_string(link
->state
));
482 return (void) log_link_debug(link
, "%s(): link is unmanaged.", __func__
);
484 if (!link
->tc_configured
)
485 return (void) log_link_debug(link
, "%s(): traffic controls are not configured.", __func__
);
487 if (link
->set_link_messages
> 0)
488 return (void) log_link_debug(link
, "%s(): link layer is configuring.", __func__
);
490 if (!link
->activated
)
491 return (void) log_link_debug(link
, "%s(): link is not activated.", __func__
);
493 if (link
->iftype
== ARPHRD_CAN
)
494 /* let's shortcut things for CAN which doesn't need most of checks below. */
497 if (!link
->stacked_netdevs_created
)
498 return (void) log_link_debug(link
, "%s(): stacked netdevs are not created.", __func__
);
500 if (!link
->static_addresses_configured
)
501 return (void) log_link_debug(link
, "%s(): static addresses are not configured.", __func__
);
503 if (!link
->static_address_labels_configured
)
504 return (void) log_link_debug(link
, "%s(): static address labels are not configured.", __func__
);
506 if (!link
->static_bridge_fdb_configured
)
507 return (void) log_link_debug(link
, "%s(): static bridge MDB entries are not configured.", __func__
);
509 if (!link
->static_bridge_mdb_configured
)
510 return (void) log_link_debug(link
, "%s(): static bridge MDB entries are not configured.", __func__
);
512 if (!link
->static_ipv6_proxy_ndp_configured
)
513 return (void) log_link_debug(link
, "%s(): static IPv6 proxy NDP addresses are not configured.", __func__
);
515 if (!link
->static_neighbors_configured
)
516 return (void) log_link_debug(link
, "%s(): static neighbors are not configured.", __func__
);
518 if (!link
->static_nexthops_configured
)
519 return (void) log_link_debug(link
, "%s(): static nexthops are not configured.", __func__
);
521 if (!link
->static_routes_configured
)
522 return (void) log_link_debug(link
, "%s(): static routes are not configured.", __func__
);
524 if (!link
->static_routing_policy_rules_configured
)
525 return (void) log_link_debug(link
, "%s(): static routing policy rules are not configured.", __func__
);
527 if (!link
->sr_iov_configured
)
528 return (void) log_link_debug(link
, "%s(): SR-IOV is not configured.", __func__
);
530 /* IPv6LL is assigned after the link gains its carrier. */
531 if (!link
->network
->configure_without_carrier
&&
532 link_ipv6ll_enabled(link
) &&
533 !in6_addr_is_set(&link
->ipv6ll_address
))
534 return (void) log_link_debug(link
, "%s(): IPv6LL is not configured yet.", __func__
);
536 /* All static addresses must be ready. */
537 bool has_static_address
= false;
538 SET_FOREACH(a
, link
->addresses
) {
539 if (a
->source
!= NETWORK_CONFIG_SOURCE_STATIC
)
541 if (!address_is_ready(a
))
542 return (void) log_link_debug(link
, "%s(): static address %s is not ready.", __func__
,
543 IN_ADDR_PREFIX_TO_STRING(a
->family
, &a
->in_addr
, a
->prefixlen
));
544 has_static_address
= true;
547 /* If at least one static address is requested, do not request that dynamic addressing protocols are finished. */
548 if (has_static_address
)
551 /* If no dynamic addressing protocol enabled, assume the interface is ready.
552 * Note, ignore NDisc when ConfigureWithoutCarrier= is enabled, as IPv6AcceptRA= is enabled by default. */
553 if (!link_ipv4ll_enabled(link
) && !link_dhcp4_enabled(link
) &&
554 !link_dhcp6_enabled(link
) && !link_dhcp_pd_is_enabled(link
) &&
555 (link
->network
->configure_without_carrier
|| !link_ndisc_enabled(link
)))
559 link_ipv4ll_enabled(link
) && link
->ipv4ll_address_configured
&&
560 link_check_addresses_ready(link
, NETWORK_CONFIG_SOURCE_IPV4LL
);
562 link_dhcp4_enabled(link
) && link
->dhcp4_configured
&&
563 link_check_addresses_ready(link
, NETWORK_CONFIG_SOURCE_DHCP4
);
565 link_dhcp6_enabled(link
) && link
->dhcp6_configured
&&
566 (!link
->network
->dhcp6_use_address
||
567 link_check_addresses_ready(link
, NETWORK_CONFIG_SOURCE_DHCP6
));
569 link_dhcp_pd_is_enabled(link
) && link
->dhcp_pd_configured
&&
570 (!link
->network
->dhcp_pd_assign
||
571 link_check_addresses_ready(link
, NETWORK_CONFIG_SOURCE_DHCP_PD
));
573 link_ndisc_enabled(link
) && link
->ndisc_configured
&&
574 (!link
->network
->ndisc_use_autonomous_prefix
||
575 link_check_addresses_ready(link
, NETWORK_CONFIG_SOURCE_NDISC
));
577 /* If the uplink for PD is self, then request the corresponding DHCP protocol is also ready. */
578 if (dhcp_pd_is_uplink(link
, link
, /* accept_auto = */ false)) {
579 if (link_dhcp4_enabled(link
) && link
->network
->dhcp_use_6rd
&&
580 sd_dhcp_lease_has_6rd(link
->dhcp_lease
)) {
581 if (!link
->dhcp4_configured
)
582 return (void) log_link_debug(link
, "%s(): DHCPv4 6rd prefix is assigned, but DHCPv4 protocol is not finished yet.", __func__
);
584 return (void) log_link_debug(link
, "%s(): DHCPv4 is finished, but prefix acquired by DHCPv4-6rd is not assigned yet.", __func__
);
587 if (link_dhcp6_enabled(link
) && link
->network
->dhcp6_use_pd_prefix
&&
588 sd_dhcp6_lease_has_pd_prefix(link
->dhcp6_lease
)) {
589 if (!link
->dhcp6_configured
)
590 return (void) log_link_debug(link
, "%s(): DHCPv6 IA_PD prefix is assigned, but DHCPv6 protocol is not finished yet.", __func__
);
592 return (void) log_link_debug(link
, "%s(): DHCPv6 is finished, but prefix acquired by DHCPv6 IA_PD is not assigned yet.", __func__
);
596 /* At least one dynamic addressing protocol is finished. */
597 if (!ipv4ll_ready
&& !dhcp4_ready
&& !dhcp6_ready
&& !dhcp_pd_ready
&& !ndisc_ready
)
598 return (void) log_link_debug(link
, "%s(): dynamic addressing protocols are enabled but none of them finished yet.", __func__
);
600 log_link_debug(link
, "%s(): IPv4LL:%s DHCPv4:%s DHCPv6:%s DHCP-PD:%s NDisc:%s",
602 yes_no(ipv4ll_ready
),
605 yes_no(dhcp_pd_ready
),
606 yes_no(ndisc_ready
));
609 link_set_state(link
, LINK_STATE_CONFIGURED
);
612 static int link_request_static_configs(Link
*link
) {
616 assert(link
->network
);
617 assert(link
->state
!= _LINK_STATE_INVALID
);
619 r
= link_request_static_addresses(link
);
623 r
= link_request_static_address_labels(link
);
627 r
= link_request_static_bridge_fdb(link
);
631 r
= link_request_static_bridge_mdb(link
);
635 r
= link_request_static_ipv6_proxy_ndp_addresses(link
);
639 r
= link_request_static_neighbors(link
);
643 r
= link_request_static_nexthops(link
, false);
647 r
= link_request_static_routes(link
, false);
651 r
= link_request_static_routing_policy_rules(link
);
658 int link_request_stacked_netdevs(Link
*link
, NetDevLocalAddressType type
) {
664 if (!IN_SET(link
->state
, LINK_STATE_CONFIGURING
, LINK_STATE_CONFIGURED
))
667 assert(link
->network
);
669 link
->stacked_netdevs_created
= false;
671 HASHMAP_FOREACH(netdev
, link
->network
->stacked_netdevs
) {
672 if (!netdev_needs_reconfigure(netdev
, type
))
675 r
= link_request_stacked_netdev(link
, netdev
);
680 if (link
->create_stacked_netdev_messages
== 0) {
681 link
->stacked_netdevs_created
= true;
682 link_check_ready(link
);
688 static int link_acquire_dynamic_ipv6_conf(Link
*link
) {
693 r
= radv_start(link
);
695 return log_link_warning_errno(link
, r
, "Failed to start IPv6 Router Advertisement engine: %m");
697 r
= ndisc_start(link
);
699 return log_link_warning_errno(link
, r
, "Failed to start IPv6 Router Discovery: %m");
701 r
= dhcp6_start(link
);
703 return log_link_warning_errno(link
, r
, "Failed to start DHCPv6 client: %m");
708 static int link_acquire_dynamic_ipv4_conf(Link
*link
) {
712 assert(link
->manager
);
713 assert(link
->manager
->event
);
715 if (link
->dhcp_client
) {
716 r
= dhcp4_start(link
);
718 return log_link_warning_errno(link
, r
, "Failed to start DHCPv4 client: %m");
720 log_link_debug(link
, "Acquiring DHCPv4 lease.");
722 } else if (link
->ipv4ll
) {
723 if (in4_addr_is_set(&link
->network
->ipv4ll_start_address
)) {
724 r
= sd_ipv4ll_set_address(link
->ipv4ll
, &link
->network
->ipv4ll_start_address
);
726 return log_link_warning_errno(link
, r
, "Could not set IPv4 link-local start address: %m");
729 r
= ipv4ll_start(link
);
731 return log_link_warning_errno(link
, r
, "Could not acquire IPv4 link-local address: %m");
733 log_link_debug(link
, "Acquiring IPv4 link-local address.");
736 r
= link_start_dhcp4_server(link
);
738 return log_link_warning_errno(link
, r
, "Could not start DHCP server: %m");
740 r
= ipv4acd_start(link
);
742 return log_link_warning_errno(link
, r
, "Could not start IPv4 ACD client: %m");
747 static int link_acquire_dynamic_conf(Link
*link
) {
751 assert(link
->network
);
753 r
= link_acquire_dynamic_ipv4_conf(link
);
757 if (in6_addr_is_set(&link
->ipv6ll_address
)) {
758 r
= link_acquire_dynamic_ipv6_conf(link
);
763 if (!link_radv_enabled(link
) || !link
->network
->dhcp_pd_announce
) {
764 /* DHCPv6PD downstream does not require IPv6LL address. But may require RADV to be
765 * configured, and RADV may not be configured yet here. Only acquire subnet prefix when
766 * RADV is disabled, or the announcement of the prefix is disabled. Otherwise, the
767 * below will be called in radv_start(). */
768 r
= dhcp_request_prefix_delegation(link
);
770 return log_link_warning_errno(link
, r
, "Failed to request DHCP delegated subnet prefix: %m");
774 r
= sd_lldp_tx_start(link
->lldp_tx
);
776 return log_link_warning_errno(link
, r
, "Failed to start LLDP transmission: %m");
780 r
= sd_lldp_rx_start(link
->lldp_rx
);
782 return log_link_warning_errno(link
, r
, "Failed to start LLDP client: %m");
788 int link_ipv6ll_gained(Link
*link
) {
793 log_link_info(link
, "Gained IPv6LL");
795 if (!IN_SET(link
->state
, LINK_STATE_CONFIGURING
, LINK_STATE_CONFIGURED
))
798 r
= link_acquire_dynamic_ipv6_conf(link
);
802 r
= link_request_stacked_netdevs(link
, NETDEV_LOCAL_ADDRESS_IPV6LL
);
806 link_check_ready(link
);
810 int link_handle_bound_to_list(Link
*link
) {
811 bool required_up
= false;
812 bool link_is_up
= false;
817 /* If at least one interface in bound_to_links has carrier, then make this interface up.
818 * If all interfaces in bound_to_links do not, then make this interface down. */
820 if (hashmap_isempty(link
->bound_to_links
))
823 if (link
->flags
& IFF_UP
)
826 HASHMAP_FOREACH(l
, link
->bound_to_links
)
827 if (link_has_carrier(l
)) {
832 if (!required_up
&& link_is_up
)
833 return link_request_to_bring_up_or_down(link
, /* up = */ false);
834 if (required_up
&& !link_is_up
)
835 return link_request_to_bring_up_or_down(link
, /* up = */ true);
840 static int link_handle_bound_by_list(Link
*link
) {
846 /* Update up or down state of interfaces which depend on this interface's carrier state. */
848 HASHMAP_FOREACH(l
, link
->bound_by_links
) {
849 r
= link_handle_bound_to_list(l
);
857 static int link_put_carrier(Link
*link
, Link
*carrier
, Hashmap
**h
) {
866 if (hashmap_get(*h
, INT_TO_PTR(carrier
->ifindex
)))
869 r
= hashmap_ensure_put(h
, NULL
, INT_TO_PTR(carrier
->ifindex
), carrier
);
878 static int link_new_bound_by_list(Link
*link
) {
884 assert(link
->manager
);
888 HASHMAP_FOREACH(carrier
, m
->links_by_index
) {
889 if (!carrier
->network
)
892 if (strv_isempty(carrier
->network
->bind_carrier
))
895 if (strv_fnmatch(carrier
->network
->bind_carrier
, link
->ifname
)) {
896 r
= link_put_carrier(link
, carrier
, &link
->bound_by_links
);
902 HASHMAP_FOREACH(carrier
, link
->bound_by_links
) {
903 r
= link_put_carrier(carrier
, link
, &carrier
->bound_to_links
);
911 static int link_new_bound_to_list(Link
*link
) {
917 assert(link
->manager
);
922 if (strv_isempty(link
->network
->bind_carrier
))
927 HASHMAP_FOREACH(carrier
, m
->links_by_index
) {
928 if (strv_fnmatch(link
->network
->bind_carrier
, carrier
->ifname
)) {
929 r
= link_put_carrier(link
, carrier
, &link
->bound_to_links
);
935 HASHMAP_FOREACH(carrier
, link
->bound_to_links
) {
936 r
= link_put_carrier(carrier
, link
, &carrier
->bound_by_links
);
944 static void link_free_bound_to_list(Link
*link
) {
945 bool updated
= false;
950 while ((bound_to
= hashmap_steal_first(link
->bound_to_links
))) {
953 if (hashmap_remove(bound_to
->bound_by_links
, INT_TO_PTR(link
->ifindex
)))
954 link_dirty(bound_to
);
961 static void link_free_bound_by_list(Link
*link
) {
962 bool updated
= false;
967 while ((bound_by
= hashmap_steal_first(link
->bound_by_links
))) {
970 if (hashmap_remove(bound_by
->bound_to_links
, INT_TO_PTR(link
->ifindex
))) {
971 link_dirty(bound_by
);
972 link_handle_bound_to_list(bound_by
);
980 static int link_append_to_master(Link
*link
) {
986 /* - The link may have no master.
987 * - RTM_NEWLINK message about master interface may not be received yet. */
988 if (link_get_master(link
, &master
) < 0)
991 r
= set_ensure_put(&master
->slaves
, &link_hash_ops
, link
);
999 static void link_drop_from_master(Link
*link
) {
1007 if (link_get_master(link
, &master
) < 0)
1010 link_unref(set_remove(master
->slaves
, link
));
1013 static int link_drop_requests(Link
*link
) {
1018 assert(link
->manager
);
1020 ORDERED_SET_FOREACH(req
, link
->manager
->request_queue
) {
1021 if (req
->link
!= link
)
1024 /* If the request is already called, but its reply is not received, then we need to
1025 * drop the configuration (e.g. address) here. Note, if the configuration is known,
1026 * it will be handled later by link_drop_unmanaged_addresses() or so. */
1027 if (req
->waiting_reply
&& link
->state
!= LINK_STATE_LINGER
)
1028 switch (req
->type
) {
1029 case REQUEST_TYPE_ADDRESS
: {
1030 Address
*address
= ASSERT_PTR(req
->userdata
);
1032 if (address_get(link
, address
, NULL
) < 0)
1033 RET_GATHER(ret
, address_remove(address
, link
));
1036 case REQUEST_TYPE_NEIGHBOR
: {
1037 Neighbor
*neighbor
= ASSERT_PTR(req
->userdata
);
1039 if (neighbor_get(link
, neighbor
, NULL
) < 0)
1040 RET_GATHER(ret
, neighbor_remove(neighbor
, link
));
1043 case REQUEST_TYPE_NEXTHOP
: {
1044 NextHop
*nexthop
= ASSERT_PTR(req
->userdata
);
1046 if (nexthop_get_by_id(link
->manager
, nexthop
->id
, NULL
) < 0)
1047 RET_GATHER(ret
, nexthop_remove(nexthop
, link
->manager
));
1050 case REQUEST_TYPE_ROUTE
: {
1051 Route
*route
= ASSERT_PTR(req
->userdata
);
1053 if (route_get(link
->manager
, route
, NULL
) < 0)
1054 RET_GATHER(ret
, route_remove(route
, link
->manager
));
1061 request_detach(req
);
1067 static Link
*link_drop(Link
*link
) {
1071 assert(link
->manager
);
1073 link_set_state(link
, LINK_STATE_LINGER
);
1075 /* Drop all references from other links and manager. Note that async netlink calls may have
1076 * references to the link, and they will be dropped when we receive replies. */
1078 (void) link_drop_requests(link
);
1080 link_free_bound_to_list(link
);
1081 link_free_bound_by_list(link
);
1083 link_clear_sr_iov_ifindices(link
);
1085 link_drop_from_master(link
);
1087 if (link
->state_file
)
1088 (void) unlink(link
->state_file
);
1092 STRV_FOREACH(n
, link
->alternative_names
)
1093 hashmap_remove(link
->manager
->links_by_name
, *n
);
1094 hashmap_remove(link
->manager
->links_by_name
, link
->ifname
);
1096 /* bonding master and its slaves have the same hardware address. */
1097 hashmap_remove_value(link
->manager
->links_by_hw_addr
, &link
->hw_addr
, link
);
1099 /* The following must be called at last. */
1100 assert_se(hashmap_remove(link
->manager
->links_by_index
, INT_TO_PTR(link
->ifindex
)) == link
);
1101 return link_unref(link
);
1104 static int link_drop_unmanaged_config(Link
*link
) {
1108 assert(link
->state
== LINK_STATE_CONFIGURING
);
1109 assert(link
->manager
);
1111 r
= link_drop_unmanaged_routes(link
);
1112 RET_GATHER(r
, link_drop_unmanaged_nexthops(link
));
1113 RET_GATHER(r
, link_drop_unmanaged_addresses(link
));
1114 RET_GATHER(r
, link_drop_unmanaged_neighbors(link
));
1115 RET_GATHER(r
, link_drop_unmanaged_routing_policy_rules(link
));
1120 static int link_drop_static_config(Link
*link
) {
1124 assert(link
->manager
);
1126 r
= link_drop_static_routes(link
);
1127 RET_GATHER(r
, link_drop_static_nexthops(link
));
1128 RET_GATHER(r
, link_drop_static_addresses(link
));
1129 RET_GATHER(r
, link_drop_static_neighbors(link
));
1130 RET_GATHER(r
, link_drop_static_routing_policy_rules(link
));
1135 static int link_drop_dynamic_config(Link
*link
, Network
*network
) {
1139 assert(link
->network
);
1141 /* Drop unnecessary dynamic configurations gracefully, e.g. drop DHCP lease in the case that
1142 * previously DHCP=yes and now DHCP=no, but keep DHCP lease when DHCP setting is unchanged. */
1144 r
= link_drop_ndisc_config(link
, network
);
1145 RET_GATHER(r
, link_drop_radv_config(link
, network
)); /* Stop before dropping DHCP-PD prefixes. */
1146 RET_GATHER(r
, link_drop_ipv4ll_config(link
, network
)); /* Stop before DHCPv4 client. */
1147 RET_GATHER(r
, link_drop_dhcp4_config(link
, network
));
1148 RET_GATHER(r
, link_drop_dhcp6_config(link
, network
));
1149 RET_GATHER(r
, link_drop_dhcp_pd_config(link
, network
));
1150 link
->dhcp_server
= sd_dhcp_server_unref(link
->dhcp_server
);
1151 link
->lldp_rx
= sd_lldp_rx_unref(link
->lldp_rx
); /* TODO: keep the received neighbors. */
1152 link
->lldp_tx
= sd_lldp_tx_unref(link
->lldp_tx
);
1154 /* Even if we do not release DHCP lease or so, reset 'configured' flags. Otherwise, e.g. if
1155 * previously UseDNS= was disabled but is now enabled, link will enter configured state before
1156 * expected DNS servers being acquired. */
1157 link
->ipv4ll_address_configured
= false;
1158 link
->dhcp4_configured
= false;
1159 link
->dhcp6_configured
= false;
1160 link
->dhcp_pd_configured
= false;
1161 link
->ndisc_configured
= false;
1166 static int link_configure(Link
*link
) {
1170 assert(link
->network
);
1171 assert(link
->state
== LINK_STATE_INITIALIZED
);
1173 link_set_state(link
, LINK_STATE_CONFIGURING
);
1175 r
= link_drop_unmanaged_config(link
);
1179 r
= link_new_bound_to_list(link
);
1183 r
= link_request_traffic_control(link
);
1187 r
= link_configure_mtu(link
);
1191 if (link
->iftype
== ARPHRD_CAN
) {
1192 /* let's shortcut things for CAN which doesn't need most of what's done below. */
1193 r
= link_request_to_set_can(link
);
1197 return link_request_to_activate(link
);
1200 r
= link_request_sr_iov_vfs(link
);
1204 r
= link_set_sysctl(link
);
1208 r
= link_request_to_set_mac(link
, /* allow_retry = */ true);
1212 r
= link_request_to_set_ipoib(link
);
1216 r
= link_request_to_set_flags(link
);
1220 r
= link_request_to_set_group(link
);
1224 r
= link_request_to_set_addrgen_mode(link
);
1228 r
= link_request_to_set_master(link
);
1232 r
= link_request_stacked_netdevs(link
, _NETDEV_LOCAL_ADDRESS_TYPE_INVALID
);
1236 r
= link_request_to_set_bond(link
);
1240 r
= link_request_to_set_bridge(link
);
1244 r
= link_request_to_set_bridge_vlan(link
);
1248 r
= link_request_to_activate(link
);
1252 r
= ipv4ll_configure(link
);
1256 r
= link_request_dhcp4_client(link
);
1260 r
= link_request_dhcp6_client(link
);
1264 r
= link_request_ndisc(link
);
1268 r
= link_request_dhcp_server(link
);
1272 r
= link_request_radv(link
);
1276 r
= link_lldp_rx_configure(link
);
1280 r
= link_lldp_tx_configure(link
);
1284 r
= link_request_static_configs(link
);
1288 if (!link_has_carrier(link
))
1291 return link_acquire_dynamic_conf(link
);
1294 static int link_get_network(Link
*link
, Network
**ret
) {
1299 assert(link
->manager
);
1302 ORDERED_HASHMAP_FOREACH(network
, link
->manager
->networks
) {
1305 r
= net_match_config(
1309 &link
->permanent_hw_addr
,
1314 link
->alternative_names
,
1323 if (network
->match
.ifname
&& link
->dev
) {
1324 uint8_t name_assign_type
= NET_NAME_UNKNOWN
;
1327 if (sd_device_get_sysattr_value(link
->dev
, "name_assign_type", &attr
) >= 0)
1328 (void) safe_atou8(attr
, &name_assign_type
);
1330 warn
= name_assign_type
== NET_NAME_ENUM
;
1333 log_link_full(link
, warn
? LOG_WARNING
: LOG_DEBUG
,
1334 "Found matching .network file%s: %s",
1335 warn
? ", based on potentially unpredictable interface name" : "",
1338 if (network
->unmanaged
)
1345 return log_link_debug_errno(link
, SYNTHETIC_ERRNO(ENOENT
), "No matching .network found.");
1348 static void link_enter_unmanaged(Link
*link
) {
1351 if (link
->state
== LINK_STATE_UNMANAGED
)
1354 log_link_full(link
, link
->state
== LINK_STATE_INITIALIZED
? LOG_DEBUG
: LOG_INFO
,
1355 "Unmanaging interface.");
1357 (void) link_stop_engines(link
, /* may_keep_dynamic = */ false);
1358 (void) link_drop_requests(link
);
1359 (void) link_drop_static_config(link
);
1361 /* The bound_to map depends on .network file, hence it needs to be freed. But, do not free the
1362 * bound_by map. Otherwise, if a link enters unmanaged state below, then its carrier state will
1363 * not propagated to other interfaces anymore. Moreover, it is not necessary to recreate the
1364 * map here, as it depends on .network files assigned to other links. */
1365 link_free_bound_to_list(link
);
1366 link_free_engines(link
);
1368 link
->network
= network_unref(link
->network
);
1369 link_set_state(link
, LINK_STATE_UNMANAGED
);
1372 static int link_managed_by_us(Link
*link
) {
1381 r
= sd_device_get_property_value(link
->dev
, "ID_NET_MANAGED_BY", &s
);
1385 return log_link_warning_errno(link
, r
, "Failed to get ID_NET_MANAGED_BY udev property: %m");
1387 if (streq(s
, "io.systemd.Network"))
1390 if (link
->state
== LINK_STATE_UNMANAGED
)
1391 return false; /* Already in unmanaged state */
1393 log_link_debug(link
, "Interface is requested to be managed by '%s', unmanaging the interface.", s
);
1394 link_set_state(link
, LINK_STATE_UNMANAGED
);
1398 int link_reconfigure_impl(Link
*link
, LinkReconfigurationFlag flags
) {
1399 Network
*network
= NULL
;
1403 assert(link
->manager
);
1405 link_assign_netdev(link
);
1407 if (link
->manager
->state
!= MANAGER_RUNNING
)
1410 if (IN_SET(link
->state
, LINK_STATE_PENDING
, LINK_STATE_LINGER
))
1413 r
= link_managed_by_us(link
);
1417 r
= link_get_network(link
, &network
);
1419 link_enter_unmanaged(link
);
1425 if (link
->network
== network
&& !FLAGS_SET(flags
, LINK_RECONFIGURE_UNCONDITIONALLY
))
1428 _cleanup_free_
char *joined
= strv_join(network
->dropins
, ", ");
1430 log_link_info(link
, "Reconfiguring with %s%s%s%s.",
1432 isempty(joined
) ? "" : " (dropins: ",
1434 isempty(joined
) ? "" : ")");
1436 log_link_info(link
, "Configuring with %s%s%s%s.",
1438 isempty(joined
) ? "" : " (dropins: ",
1440 isempty(joined
) ? "" : ")");
1442 /* Dropping configurations based on the old .network file. */
1443 r
= link_drop_requests(link
);
1447 /* The bound_to map depends on .network file, hence it needs to be freed. But, do not free the
1448 * bound_by map. Otherwise, if a link enters unmanaged state below, then its carrier state will
1449 * not propagated to other interfaces anymore. Moreover, it is not necessary to recreate the
1450 * map here, as it depends on .network files assigned to other links. */
1451 link_free_bound_to_list(link
);
1453 _cleanup_(network_unrefp
) Network
*old_network
= TAKE_PTR(link
->network
);
1455 /* Then, apply new .network file */
1456 link
->network
= network_ref(network
);
1458 if (FLAGS_SET(network
->keep_configuration
, KEEP_CONFIGURATION_DYNAMIC
) ||
1459 !FLAGS_SET(flags
, LINK_RECONFIGURE_CLEANLY
)) {
1460 /* To make 'networkctl reconfigure INTERFACE' work safely for an interface whose new .network
1461 * file has KeepConfiguration=dynamic or yes, even if a clean reconfiguration is requested,
1462 * drop only unnecessary or possibly being changed dynamic configurations here. */
1463 r
= link_drop_dynamic_config(link
, old_network
);
1467 /* Otherwise, stop DHCP client and friends unconditionally, and drop all dynamic
1468 * configurations like DHCP address and routes. */
1469 r
= link_stop_engines(link
, /* may_keep_dynamic = */ false);
1473 /* Free DHCP client and friends. */
1474 link_free_engines(link
);
1477 link_update_operstate(link
, true);
1480 link_set_state(link
, LINK_STATE_INITIALIZED
);
1481 link
->activated
= false;
1483 r
= link_configure(link
);
1490 typedef struct LinkReconfigurationData
{
1493 LinkReconfigurationFlag flags
;
1494 sd_bus_message
*message
;
1496 } LinkReconfigurationData
;
1498 static LinkReconfigurationData
* link_reconfiguration_data_free(LinkReconfigurationData
*data
) {
1502 link_unref(data
->link
);
1503 sd_bus_message_unref(data
->message
);
1508 DEFINE_TRIVIAL_CLEANUP_FUNC(LinkReconfigurationData
*, link_reconfiguration_data_free
);
1510 static void link_reconfiguration_data_destroy_callback(LinkReconfigurationData
*data
) {
1515 if (data
->message
) {
1516 if (data
->counter
) {
1517 assert(*data
->counter
> 0);
1521 if (!data
->counter
|| *data
->counter
<= 0) {
1522 /* Update the state files before replying the bus method. Otherwise,
1523 * systemd-networkd-wait-online following networkctl reload/reconfigure may read an
1524 * outdated state file and wrongly handle an interface is already in the configured
1526 (void) manager_clean_all(data
->manager
);
1528 r
= sd_bus_reply_method_return(data
->message
, NULL
);
1530 log_warning_errno(r
, "Failed to reply for DBus method, ignoring: %m");
1534 link_reconfiguration_data_free(data
);
1537 static int link_reconfigure_handler(sd_netlink
*rtnl
, sd_netlink_message
*m
, LinkReconfigurationData
*data
) {
1538 Link
*link
= ASSERT_PTR(ASSERT_PTR(data
)->link
);
1541 r
= link_getlink_handler_internal(rtnl
, m
, link
, "Failed to update link state");
1545 r
= link_reconfigure_impl(link
, data
->flags
);
1547 link_enter_failed(link
);
1554 int link_reconfigure_full(Link
*link
, LinkReconfigurationFlag flags
, sd_bus_message
*message
, unsigned *counter
) {
1555 _cleanup_(sd_netlink_message_unrefp
) sd_netlink_message
*req
= NULL
;
1556 _cleanup_(link_reconfiguration_data_freep
) LinkReconfigurationData
*data
= NULL
;
1560 assert(link
->manager
);
1561 assert(link
->manager
->rtnl
);
1563 /* When the link is in the pending or initialized state, link_reconfigure_impl() will be called later
1564 * by link_initialized() or link_initialized_and_synced(). To prevent the function from being called
1565 * multiple times simultaneously, let's refuse to reconfigure the interface here in such cases. */
1566 if (IN_SET(link
->state
, LINK_STATE_PENDING
, LINK_STATE_INITIALIZED
, LINK_STATE_LINGER
))
1567 return 0; /* 0 means no-op. */
1569 data
= new(LinkReconfigurationData
, 1);
1575 *data
= (LinkReconfigurationData
) {
1576 .manager
= link
->manager
,
1577 .link
= link_ref(link
),
1579 .message
= sd_bus_message_ref(message
), /* message may be NULL, but _ref() works fine. */
1583 r
= sd_rtnl_message_new_link(link
->manager
->rtnl
, &req
, RTM_GETLINK
, link
->ifindex
);
1587 r
= netlink_call_async(link
->manager
->rtnl
, NULL
, req
,
1588 link_reconfigure_handler
,
1589 link_reconfiguration_data_destroy_callback
, data
);
1597 if (link
->state
== LINK_STATE_FAILED
)
1598 link_set_state(link
, LINK_STATE_INITIALIZED
);
1600 return 1; /* 1 means the interface will be reconfigured, and bus method will be replied later. */
1603 log_link_warning_errno(link
, r
, "Failed to reconfigure interface: %m");
1604 link_enter_failed(link
);
1608 static int link_initialized_and_synced(Link
*link
) {
1612 assert(link
->manager
);
1614 if (link
->state
== LINK_STATE_PENDING
) {
1615 log_link_debug(link
, "Link state is up-to-date");
1616 link_set_state(link
, LINK_STATE_INITIALIZED
);
1618 r
= link_new_bound_by_list(link
);
1622 r
= link_handle_bound_by_list(link
);
1627 return link_reconfigure_impl(link
, /* flags = */ 0);
1630 static int link_initialized_handler(sd_netlink
*rtnl
, sd_netlink_message
*m
, Link
*link
) {
1633 r
= link_getlink_handler_internal(rtnl
, m
, link
, "Failed to wait for the interface to be initialized");
1637 r
= link_initialized_and_synced(link
);
1639 link_enter_failed(link
);
1644 static int link_initialized(Link
*link
, sd_device
*device
) {
1650 /* Always replace with the new sd_device object. As the sysname (and possibly other properties
1651 * or sysattrs) may be outdated. */
1652 device_unref_and_replace(link
->dev
, device
);
1654 r
= link_managed_by_us(link
);
1658 if (link
->dhcp_client
) {
1659 r
= sd_dhcp_client_attach_device(link
->dhcp_client
, link
->dev
);
1661 log_link_warning_errno(link
, r
, "Failed to attach device to DHCPv4 client, ignoring: %m");
1664 if (link
->dhcp6_client
) {
1665 r
= sd_dhcp6_client_attach_device(link
->dhcp6_client
, link
->dev
);
1667 log_link_warning_errno(link
, r
, "Failed to attach device to DHCPv6 client, ignoring: %m");
1670 r
= link_set_sr_iov_ifindices(link
);
1672 log_link_warning_errno(link
, r
, "Failed to manage SR-IOV PF and VF ports, ignoring: %m");
1674 if (link
->state
!= LINK_STATE_PENDING
)
1675 return link_reconfigure(link
, /* flags = */ 0);
1677 log_link_debug(link
, "udev initialized link");
1679 /* udev has initialized the link, but we don't know if we have yet
1680 * processed the NEWLINK messages with the latest state. Do a GETLINK,
1681 * when it returns we know that the pending NEWLINKs have already been
1682 * processed and that we are up-to-date */
1684 return link_call_getlink(link
, link_initialized_handler
);
1687 int link_check_initialized(Link
*link
) {
1688 _cleanup_(sd_device_unrefp
) sd_device
*device
= NULL
;
1693 if (!udev_available())
1694 return link_initialized_and_synced(link
);
1696 /* udev should be around */
1697 r
= sd_device_new_from_ifindex(&device
, link
->ifindex
);
1699 log_link_debug_errno(link
, r
, "Could not find device, waiting for device initialization: %m");
1703 r
= device_is_processed(device
);
1705 return log_link_warning_errno(link
, r
, "Could not determine whether the device is processed by udevd: %m");
1708 log_link_debug(link
, "link pending udev initialization...");
1712 r
= device_is_renaming(device
);
1714 return log_link_warning_errno(link
, r
, "Failed to determine the device is being renamed: %m");
1716 log_link_debug(link
, "Interface is being renamed, pending initialization.");
1720 return link_initialized(link
, device
);
1723 int manager_udev_process_link(Manager
*m
, sd_device
*device
, sd_device_action_t action
) {
1730 r
= sd_device_get_ifindex(device
, &ifindex
);
1732 return log_device_debug_errno(device
, r
, "Failed to get ifindex: %m");
1734 r
= link_get_by_index(m
, ifindex
, &link
);
1736 /* This error is not critical, as the corresponding rtnl message may be received later. */
1737 log_device_debug_errno(device
, r
, "Failed to get link from ifindex %i, ignoring: %m", ifindex
);
1741 /* Let's unref the sd-device object assigned to the corresponding Link object, but keep the Link
1742 * object here. It will be removed only when rtnetlink says so. */
1743 if (action
== SD_DEVICE_REMOVE
) {
1744 link
->dev
= sd_device_unref(link
->dev
);
1748 r
= device_is_renaming(device
);
1750 return log_device_debug_errno(device
, r
, "Failed to determine if the device is renaming or not: %m");
1752 log_device_debug(device
, "Device is renaming, waiting for the interface to be renamed.");
1754 * What happens when a device is initialized, then soon renamed after that? When we detect
1755 * such, maybe we should cancel or postpone all queued requests for the interface. */
1759 r
= link_initialized(link
, device
);
1761 link_enter_failed(link
);
1766 static int link_carrier_gained(Link
*link
) {
1767 LinkReconfigurationFlag flags
= 0;
1772 log_link_info(link
, "Gained carrier");
1774 r
= event_source_disable(link
->carrier_lost_timer
);
1776 log_link_warning_errno(link
, r
, "Failed to disable carrier lost timer, ignoring: %m");
1778 /* Process BindCarrier= setting specified by other interfaces. This is independent of the .network
1779 * file assigned to this interface, but depends on .network files assigned to other interfaces.
1780 * Hence, this can and should be called earlier. */
1781 r
= link_handle_bound_by_list(link
);
1785 /* If a wireless interface was connected to an access point, and the SSID is changed (that is,
1786 * both previous_ssid and ssid are non-NULL), then the connected wireless network could be
1787 * changed. So, always reconfigure the link. Which means e.g. the DHCP client will be
1788 * restarted, and the correct network information will be gained.
1790 * However, do not reconfigure the wireless interface forcibly if it was not connected to any
1791 * access points previously (previous_ssid is NULL in this case). As, a .network file may be
1792 * already assigned to the interface (in that case, the .network file does not have the SSID=
1793 * setting in the [Match] section), and the interface is already being configured. Of course,
1794 * there may exist another .network file with higher priority and a matching SSID= setting. But
1795 * in that case, link_reconfigure_impl() can handle that without any flags.
1797 * For non-wireless interfaces, we have no way to detect the connected network change. So,
1798 * we do not set any flags here. Note, both ssid and previous_ssid are NULL in that case. */
1799 if (link
->previous_ssid
&& !streq_ptr(link
->previous_ssid
, link
->ssid
))
1800 flags
|= LINK_RECONFIGURE_UNCONDITIONALLY
| LINK_RECONFIGURE_CLEANLY
;
1801 link
->previous_ssid
= mfree(link
->previous_ssid
);
1803 /* AP and P2P-GO interfaces may have a new SSID - update the link properties in case a new .network
1804 * profile wants to match on it with SSID= in its [Match] section.
1806 if (IN_SET(link
->wlan_iftype
, NL80211_IFTYPE_AP
, NL80211_IFTYPE_P2P_GO
)) {
1807 r
= link_get_wlan_interface(link
);
1812 /* At this stage, both wlan and link information should be up-to-date. Hence, it is not necessary to
1813 * call RTM_GETLINK, NL80211_CMD_GET_INTERFACE, or NL80211_CMD_GET_STATION commands, and simply call
1814 * link_reconfigure_impl(). Note, link_reconfigure_impl() returns 1 when the link is reconfigured. */
1815 r
= link_reconfigure_impl(link
, flags
);
1819 if (link
->iftype
== ARPHRD_CAN
)
1820 /* let's shortcut things for CAN which doesn't need most of what's done below. */
1823 if (IN_SET(link
->state
, LINK_STATE_CONFIGURING
, LINK_STATE_CONFIGURED
)) {
1824 r
= link_acquire_dynamic_conf(link
);
1828 r
= link_request_static_configs(link
);
1836 static int link_carrier_lost_impl(Link
*link
) {
1841 link
->previous_ssid
= mfree(link
->previous_ssid
);
1843 ret
= link_handle_bound_by_list(link
);
1845 if (IN_SET(link
->state
, LINK_STATE_FAILED
, LINK_STATE_LINGER
))
1851 RET_GATHER(ret
, link_stop_engines(link
, /* may_keep_dynamic = */ false));
1852 RET_GATHER(ret
, link_drop_static_config(link
));
1857 static int link_carrier_lost_handler(sd_event_source
*s
, uint64_t usec
, void *userdata
) {
1858 Link
*link
= ASSERT_PTR(userdata
);
1861 r
= link_carrier_lost_impl(link
);
1863 log_link_warning_errno(link
, r
, "Failed to process carrier lost event: %m");
1864 link_enter_failed(link
);
1870 static int link_carrier_lost(Link
*link
) {
1876 log_link_info(link
, "Lost carrier");
1878 if (link
->iftype
== ARPHRD_CAN
)
1879 /* let's shortcut things for CAN which doesn't need most of what's done below. */
1882 else if (!link
->network
)
1885 else if (link
->network
->ignore_carrier_loss_set
)
1886 /* If IgnoreCarrierLoss= is explicitly specified, then use the specified value. */
1887 usec
= link
->network
->ignore_carrier_loss_usec
;
1889 else if (link
->network
->bond
&& link
->wlan_iftype
> 0)
1890 /* Enslaving wlan interface to a bond disconnects from the connected AP, and causes its
1891 * carrier to be lost. See #19832. */
1892 usec
= 3 * USEC_PER_SEC
;
1894 else if (link
->network
->dhcp_use_mtu
&&
1896 sd_dhcp_lease_get_mtu(link
->dhcp_lease
, &dhcp_mtu
) >= 0 &&
1897 dhcp_mtu
!= link
->original_mtu
)
1898 /* Some drivers reset interfaces when changing MTU. Resetting interfaces by the static
1899 * MTU should not cause any issues, as MTU is changed only once. However, setting MTU
1900 * through DHCP lease causes an infinite loop of resetting the interface. See #18738. */
1901 usec
= 5 * USEC_PER_SEC
;
1904 /* Otherwise, use the implied default value. */
1905 usec
= link
->network
->ignore_carrier_loss_usec
;
1907 if (usec
== USEC_INFINITY
)
1911 return link_carrier_lost_impl(link
);
1913 return event_reset_time_relative(link
->manager
->event
,
1914 &link
->carrier_lost_timer
,
1918 link_carrier_lost_handler
,
1921 "link-carrier-loss",
1925 static int link_admin_state_up(Link
*link
) {
1928 /* This is called every time an interface admin state changes to up;
1929 * specifically, when IFF_UP flag changes from unset to set. */
1931 log_link_info(link
, "Link UP");
1936 if (link
->activated
&& link
->network
->activation_policy
== ACTIVATION_POLICY_ALWAYS_DOWN
) {
1937 log_link_info(link
, "Activation policy is \"always-down\", forcing link down.");
1938 return link_request_to_bring_up_or_down(link
, /* up = */ false);
1941 /* We set the ipv6 mtu after the device mtu, but the kernel resets
1942 * ipv6 mtu on NETDEV_UP, so we need to reset it. */
1943 (void) link_set_ipv6_mtu(link
, LOG_INFO
);
1948 static int link_admin_state_down(Link
*link
) {
1951 log_link_info(link
, "Link DOWN");
1953 link_forget_nexthops(link
);
1954 link_forget_routes(link
);
1959 if (link
->activated
&& link
->network
->activation_policy
== ACTIVATION_POLICY_ALWAYS_UP
) {
1960 log_link_info(link
, "Activation policy is \"always-up\", forcing link up.");
1961 return link_request_to_bring_up_or_down(link
, /* up = */ true);
1967 static bool link_is_enslaved(Link
*link
) {
1968 if (link
->flags
& IFF_SLAVE
)
1971 if (link
->master_ifindex
> 0)
1977 void link_update_operstate(Link
*link
, bool also_update_master
) {
1978 LinkOperationalState operstate
;
1979 LinkCarrierState carrier_state
;
1980 LinkAddressState ipv4_address_state
, ipv6_address_state
, address_state
;
1981 LinkOnlineState online_state
;
1982 _cleanup_strv_free_
char **p
= NULL
;
1983 bool changed
= false;
1987 if (link
->kernel_operstate
== IF_OPER_DORMANT
)
1988 carrier_state
= LINK_CARRIER_STATE_DORMANT
;
1989 else if (link_has_carrier(link
)) {
1990 if (link_is_enslaved(link
))
1991 carrier_state
= LINK_CARRIER_STATE_ENSLAVED
;
1993 carrier_state
= LINK_CARRIER_STATE_CARRIER
;
1994 } else if (link
->flags
& IFF_UP
)
1995 carrier_state
= LINK_CARRIER_STATE_NO_CARRIER
;
1997 carrier_state
= LINK_CARRIER_STATE_OFF
;
1999 if (carrier_state
>= LINK_CARRIER_STATE_CARRIER
) {
2002 SET_FOREACH(slave
, link
->slaves
) {
2003 link_update_operstate(slave
, false);
2005 if (slave
->carrier_state
< LINK_CARRIER_STATE_CARRIER
)
2006 carrier_state
= LINK_CARRIER_STATE_DEGRADED_CARRIER
;
2010 link_get_address_states(link
, &ipv4_address_state
, &ipv6_address_state
, &address_state
);
2012 /* Mapping of address and carrier state vs operational state
2014 * | off | no-carrier | dormant | degraded-carrier | carrier | enslaved
2015 * ------------------------------------------------------------------------------
2016 * off | off | no-carrier | dormant | degraded-carrier | carrier | enslaved
2017 * address_state degraded | off | no-carrier | dormant | degraded | degraded | enslaved
2018 * routable | off | no-carrier | dormant | routable | routable | routable
2021 if (carrier_state
== LINK_CARRIER_STATE_DEGRADED_CARRIER
&& address_state
== LINK_ADDRESS_STATE_ROUTABLE
)
2022 operstate
= LINK_OPERSTATE_ROUTABLE
;
2023 else if (carrier_state
== LINK_CARRIER_STATE_DEGRADED_CARRIER
&& address_state
== LINK_ADDRESS_STATE_DEGRADED
)
2024 operstate
= LINK_OPERSTATE_DEGRADED
;
2025 else if (carrier_state
< LINK_CARRIER_STATE_CARRIER
|| address_state
== LINK_ADDRESS_STATE_OFF
)
2026 operstate
= (LinkOperationalState
) carrier_state
;
2027 else if (address_state
== LINK_ADDRESS_STATE_ROUTABLE
)
2028 operstate
= LINK_OPERSTATE_ROUTABLE
;
2029 else if (carrier_state
== LINK_CARRIER_STATE_CARRIER
)
2030 operstate
= LINK_OPERSTATE_DEGRADED
;
2032 operstate
= LINK_OPERSTATE_ENSLAVED
;
2034 LinkOperationalStateRange req
;
2035 link_required_operstate_for_online(link
, &req
);
2037 /* Only determine online state for managed links with RequiredForOnline=yes */
2038 if (!link
->network
|| !link
->network
->required_for_online
)
2039 online_state
= _LINK_ONLINE_STATE_INVALID
;
2041 else if (!operational_state_is_in_range(operstate
, &req
))
2042 online_state
= LINK_ONLINE_STATE_OFFLINE
;
2045 AddressFamily required_family
= link_required_family_for_online(link
);
2046 bool needs_ipv4
= required_family
& ADDRESS_FAMILY_IPV4
;
2047 bool needs_ipv6
= required_family
& ADDRESS_FAMILY_IPV6
;
2049 /* The operational state is within the range required for online.
2050 * If a particular address family is also required, we might revert
2051 * to offline in the blocks below. */
2052 online_state
= LINK_ONLINE_STATE_ONLINE
;
2054 if (req
.min
>= LINK_OPERSTATE_DEGRADED
) {
2055 if (needs_ipv4
&& ipv4_address_state
< LINK_ADDRESS_STATE_DEGRADED
)
2056 online_state
= LINK_ONLINE_STATE_OFFLINE
;
2057 if (needs_ipv6
&& ipv6_address_state
< LINK_ADDRESS_STATE_DEGRADED
)
2058 online_state
= LINK_ONLINE_STATE_OFFLINE
;
2061 if (req
.min
>= LINK_OPERSTATE_ROUTABLE
) {
2062 if (needs_ipv4
&& ipv4_address_state
< LINK_ADDRESS_STATE_ROUTABLE
)
2063 online_state
= LINK_ONLINE_STATE_OFFLINE
;
2064 if (needs_ipv6
&& ipv6_address_state
< LINK_ADDRESS_STATE_ROUTABLE
)
2065 online_state
= LINK_ONLINE_STATE_OFFLINE
;
2069 if (link
->carrier_state
!= carrier_state
) {
2070 link
->carrier_state
= carrier_state
;
2072 if (strv_extend(&p
, "CarrierState") < 0)
2076 if (link
->address_state
!= address_state
) {
2077 link
->address_state
= address_state
;
2079 if (strv_extend(&p
, "AddressState") < 0)
2083 if (link
->ipv4_address_state
!= ipv4_address_state
) {
2084 link
->ipv4_address_state
= ipv4_address_state
;
2086 if (strv_extend(&p
, "IPv4AddressState") < 0)
2090 if (link
->ipv6_address_state
!= ipv6_address_state
) {
2091 link
->ipv6_address_state
= ipv6_address_state
;
2093 if (strv_extend(&p
, "IPv6AddressState") < 0)
2097 if (link
->operstate
!= operstate
) {
2098 link
->operstate
= operstate
;
2100 if (strv_extend(&p
, "OperationalState") < 0)
2104 if (link
->online_state
!= online_state
) {
2105 link
->online_state
= online_state
;
2107 if (strv_extend(&p
, "OnlineState") < 0)
2112 link_send_changed_strv(link
, p
);
2116 if (also_update_master
) {
2119 if (link_get_master(link
, &master
) >= 0)
2120 link_update_operstate(master
, true);
2124 bool link_has_carrier(Link
*link
) {
2126 return netif_has_carrier(link
->kernel_operstate
, link
->flags
);
2129 bool link_multicast_enabled(Link
*link
) {
2132 /* If Multicast= is specified, use the value. */
2133 if (link
->network
&& link
->network
->multicast
>= 0)
2134 return link
->network
->multicast
;
2136 /* Otherwise, return the current state. */
2137 return FLAGS_SET(link
->flags
, IFF_MULTICAST
);
2140 #define FLAG_STRING(string, flag, old, new) \
2141 (((old ^ new) & flag) \
2142 ? ((old & flag) ? (" -" string) : (" +" string)) \
2145 static int link_update_flags(Link
*link
, sd_netlink_message
*message
) {
2146 bool link_was_admin_up
, had_carrier
;
2154 r
= sd_rtnl_message_link_get_flags(message
, &flags
);
2156 return log_link_debug_errno(link
, r
, "rtnl: failed to read link flags: %m");
2158 r
= sd_netlink_message_read_u8(message
, IFLA_OPERSTATE
, &operstate
);
2160 /* If we got a message without operstate, assume the state was unchanged. */
2161 operstate
= link
->kernel_operstate
;
2163 return log_link_debug_errno(link
, r
, "rtnl: failed to read operational state: %m");
2165 if (link
->flags
== flags
&& link
->kernel_operstate
== operstate
)
2168 if (link
->flags
!= flags
) {
2169 unsigned unknown_flags
, unknown_flags_added
, unknown_flags_removed
;
2171 log_link_debug(link
, "Flags change:%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
2172 FLAG_STRING("LOOPBACK", IFF_LOOPBACK
, link
->flags
, flags
),
2173 FLAG_STRING("MASTER", IFF_MASTER
, link
->flags
, flags
),
2174 FLAG_STRING("SLAVE", IFF_SLAVE
, link
->flags
, flags
),
2175 FLAG_STRING("UP", IFF_UP
, link
->flags
, flags
),
2176 FLAG_STRING("DORMANT", IFF_DORMANT
, link
->flags
, flags
),
2177 FLAG_STRING("LOWER_UP", IFF_LOWER_UP
, link
->flags
, flags
),
2178 FLAG_STRING("RUNNING", IFF_RUNNING
, link
->flags
, flags
),
2179 FLAG_STRING("MULTICAST", IFF_MULTICAST
, link
->flags
, flags
),
2180 FLAG_STRING("BROADCAST", IFF_BROADCAST
, link
->flags
, flags
),
2181 FLAG_STRING("POINTOPOINT", IFF_POINTOPOINT
, link
->flags
, flags
),
2182 FLAG_STRING("PROMISC", IFF_PROMISC
, link
->flags
, flags
),
2183 FLAG_STRING("ALLMULTI", IFF_ALLMULTI
, link
->flags
, flags
),
2184 FLAG_STRING("PORTSEL", IFF_PORTSEL
, link
->flags
, flags
),
2185 FLAG_STRING("AUTOMEDIA", IFF_AUTOMEDIA
, link
->flags
, flags
),
2186 FLAG_STRING("DYNAMIC", IFF_DYNAMIC
, link
->flags
, flags
),
2187 FLAG_STRING("NOARP", IFF_NOARP
, link
->flags
, flags
),
2188 FLAG_STRING("NOTRAILERS", IFF_NOTRAILERS
, link
->flags
, flags
),
2189 FLAG_STRING("DEBUG", IFF_DEBUG
, link
->flags
, flags
),
2190 FLAG_STRING("ECHO", IFF_ECHO
, link
->flags
, flags
));
2192 unknown_flags
= ~(IFF_LOOPBACK
| IFF_MASTER
| IFF_SLAVE
| IFF_UP
|
2193 IFF_DORMANT
| IFF_LOWER_UP
| IFF_RUNNING
|
2194 IFF_MULTICAST
| IFF_BROADCAST
| IFF_POINTOPOINT
|
2195 IFF_PROMISC
| IFF_ALLMULTI
| IFF_PORTSEL
|
2196 IFF_AUTOMEDIA
| IFF_DYNAMIC
| IFF_NOARP
|
2197 IFF_NOTRAILERS
| IFF_DEBUG
| IFF_ECHO
);
2198 unknown_flags_added
= ((link
->flags
^ flags
) & flags
& unknown_flags
);
2199 unknown_flags_removed
= ((link
->flags
^ flags
) & link
->flags
& unknown_flags
);
2201 if (unknown_flags_added
)
2202 log_link_debug(link
, "Unknown link flags gained, ignoring: %#.5x", unknown_flags_added
);
2204 if (unknown_flags_removed
)
2205 log_link_debug(link
, "Unknown link flags lost, ignoring: %#.5x", unknown_flags_removed
);
2208 link_was_admin_up
= link
->flags
& IFF_UP
;
2209 had_carrier
= link_has_carrier(link
);
2211 link
->flags
= flags
;
2212 link
->kernel_operstate
= operstate
;
2214 link_update_operstate(link
, true);
2218 if (!link_was_admin_up
&& (link
->flags
& IFF_UP
))
2219 r
= link_admin_state_up(link
);
2220 else if (link_was_admin_up
&& !(link
->flags
& IFF_UP
))
2221 r
= link_admin_state_down(link
);
2225 if (!had_carrier
&& link_has_carrier(link
))
2226 r
= link_carrier_gained(link
);
2227 else if (had_carrier
&& !link_has_carrier(link
))
2228 link_carrier_lost(link
);
2235 static int link_update_master(Link
*link
, sd_netlink_message
*message
) {
2236 int master_ifindex
, r
;
2241 r
= sd_netlink_message_read_u32(message
, IFLA_MASTER
, (uint32_t*) &master_ifindex
);
2243 master_ifindex
= 0; /* no master interface */
2245 return log_link_debug_errno(link
, r
, "rtnl: failed to read master ifindex: %m");
2247 if (master_ifindex
== link
->ifindex
)
2250 if (master_ifindex
!= link
->master_ifindex
) {
2251 if (link
->master_ifindex
== 0)
2252 log_link_debug(link
, "Attached to master interface: %i", master_ifindex
);
2253 else if (master_ifindex
== 0)
2254 log_link_debug(link
, "Detached from master interface: %i", link
->master_ifindex
);
2256 log_link_debug(link
, "Master interface changed: %i %s %i", link
->master_ifindex
,
2257 glyph(GLYPH_ARROW_RIGHT
), master_ifindex
);
2259 link_drop_from_master(link
);
2260 link
->master_ifindex
= master_ifindex
;
2262 /* Updating master ifindex may cause operational state change, e.g. carrier <-> enslaved */
2266 r
= link_append_to_master(link
);
2268 return log_link_debug_errno(link
, r
, "Failed to append link to master: %m");
2273 static int link_update_driver(Link
*link
, sd_netlink_message
*message
) {
2277 assert(link
->manager
);
2280 /* Driver is already read. Assuming the driver is never changed. */
2281 if (link
->ethtool_driver_read
)
2284 /* When udevd is running, read the driver after the interface is initialized by udevd.
2285 * Otherwise, ethtool may not work correctly. See issue #22538.
2286 * When udevd is not running, read the value when the interface is detected. */
2287 if (udev_available() && !link
->dev
)
2290 link
->ethtool_driver_read
= true;
2292 r
= ethtool_get_driver(&link
->manager
->ethtool_fd
, link
->ifname
, &link
->driver
);
2294 log_link_debug_errno(link
, r
, "Failed to get driver, continuing without: %m");
2298 log_link_debug(link
, "Found driver: %s", strna(link
->driver
));
2300 if (streq_ptr(link
->driver
, "dsa")) {
2301 uint32_t dsa_master_ifindex
= 0;
2303 r
= sd_netlink_message_read_u32(message
, IFLA_LINK
, &dsa_master_ifindex
);
2304 if (r
< 0 && r
!= -ENODATA
)
2305 return log_link_debug_errno(link
, r
, "rtnl: failed to read ifindex of the DSA master interface: %m");
2307 if (dsa_master_ifindex
> INT_MAX
) {
2308 log_link_debug(link
, "rtnl: received too large DSA master ifindex (%"PRIu32
" > INT_MAX), ignoring.",
2309 dsa_master_ifindex
);
2310 dsa_master_ifindex
= 0;
2313 link
->dsa_master_ifindex
= (int) dsa_master_ifindex
;
2316 return 1; /* needs reconfigure */
2319 static int link_update_permanent_hardware_address_from_ethtool(Link
*link
, sd_netlink_message
*message
) {
2323 assert(link
->manager
);
2326 if (link
->ethtool_permanent_hw_addr_read
)
2329 /* When udevd is running, read the permanent hardware address after the interface is
2330 * initialized by udevd. Otherwise, ethtool may not work correctly. See issue #22538.
2331 * When udevd is not running, read the value when the interface is detected. */
2332 if (udev_available() && !link
->dev
)
2335 /* If the interface does not have a hardware address, then it will not have a permanent address either. */
2336 r
= netlink_message_read_hw_addr(message
, IFLA_ADDRESS
, NULL
);
2340 return log_link_debug_errno(link
, r
, "Failed to read IFLA_ADDRESS attribute: %m");
2342 link
->ethtool_permanent_hw_addr_read
= true;
2344 r
= ethtool_get_permanent_hw_addr(&link
->manager
->ethtool_fd
, link
->ifname
, &link
->permanent_hw_addr
);
2346 log_link_debug_errno(link
, r
, "Permanent hardware address not found, continuing without: %m");
2351 static int link_update_permanent_hardware_address(Link
*link
, sd_netlink_message
*message
) {
2355 assert(link
->manager
);
2358 if (link
->permanent_hw_addr
.length
> 0)
2361 r
= netlink_message_read_hw_addr(message
, IFLA_PERM_ADDRESS
, &link
->permanent_hw_addr
);
2364 return log_link_debug_errno(link
, r
, "Failed to read IFLA_PERM_ADDRESS attribute: %m");
2366 /* Fallback to ethtool for kernels older than v5.6 (f74877a5457d34d604dba6dbbb13c4c05bac8b93). */
2367 r
= link_update_permanent_hardware_address_from_ethtool(link
, message
);
2372 if (link
->permanent_hw_addr
.length
> 0)
2373 log_link_debug(link
, "Saved permanent hardware address: %s", HW_ADDR_TO_STR(&link
->permanent_hw_addr
));
2375 return 1; /* needs reconfigure */
2378 static int link_update_hardware_address(Link
*link
, sd_netlink_message
*message
) {
2379 struct hw_addr_data addr
;
2385 r
= netlink_message_read_hw_addr(message
, IFLA_BROADCAST
, &link
->bcast_addr
);
2386 if (r
< 0 && r
!= -ENODATA
)
2387 return log_link_debug_errno(link
, r
, "rtnl: failed to read broadcast address: %m");
2389 r
= netlink_message_read_hw_addr(message
, IFLA_ADDRESS
, &addr
);
2393 return log_link_debug_errno(link
, r
, "rtnl: failed to read hardware address: %m");
2395 if (hw_addr_equal(&link
->hw_addr
, &addr
))
2398 if (link
->hw_addr
.length
== 0)
2399 log_link_debug(link
, "Saved hardware address: %s", HW_ADDR_TO_STR(&addr
));
2401 log_link_debug(link
, "Hardware address is changed: %s %s %s",
2402 HW_ADDR_TO_STR(&link
->hw_addr
),
2403 glyph(GLYPH_ARROW_RIGHT
),
2404 HW_ADDR_TO_STR(&addr
));
2406 hashmap_remove_value(link
->manager
->links_by_hw_addr
, &link
->hw_addr
, link
);
2409 link
->hw_addr
= addr
;
2411 if (!hw_addr_is_null(&link
->hw_addr
)) {
2412 r
= hashmap_ensure_put(&link
->manager
->links_by_hw_addr
, &hw_addr_hash_ops
, &link
->hw_addr
, link
);
2413 if (r
== -EEXIST
&& streq_ptr(link
->kind
, "bond"))
2414 /* bonding master and its slaves have the same hardware address. */
2415 r
= hashmap_replace(link
->manager
->links_by_hw_addr
, &link
->hw_addr
, link
);
2417 log_link_debug_errno(link
, r
, "Failed to manage link by its new hardware address, ignoring: %m");
2420 r
= ipv4acd_update_mac(link
);
2422 return log_link_debug_errno(link
, r
, "Could not update MAC address in IPv4 ACD client: %m");
2424 r
= ipv4ll_update_mac(link
);
2426 return log_link_debug_errno(link
, r
, "Could not update MAC address in IPv4LL client: %m");
2428 r
= dhcp4_update_mac(link
);
2430 return log_link_debug_errno(link
, r
, "Could not update MAC address in DHCP client: %m");
2432 r
= dhcp6_update_mac(link
);
2434 return log_link_debug_errno(link
, r
, "Could not update MAC address in DHCPv6 client: %m");
2436 r
= radv_update_mac(link
);
2438 return log_link_debug_errno(link
, r
, "Could not update MAC address for Router Advertisement: %m");
2440 if (link
->ndisc
&& link
->hw_addr
.length
== ETH_ALEN
) {
2441 r
= sd_ndisc_set_mac(link
->ndisc
, &link
->hw_addr
.ether
);
2443 return log_link_debug_errno(link
, r
, "Could not update MAC for NDisc: %m");
2446 if (link
->lldp_rx
) {
2447 r
= sd_lldp_rx_set_filter_address(link
->lldp_rx
, &link
->hw_addr
.ether
);
2449 return log_link_debug_errno(link
, r
, "Could not update MAC address for LLDP Rx: %m");
2452 if (link
->lldp_tx
) {
2453 r
= sd_lldp_tx_set_hwaddr(link
->lldp_tx
, &link
->hw_addr
.ether
);
2455 return log_link_debug_errno(link
, r
, "Could not update MAC address for LLDP Tx: %m");
2458 return 1; /* needs reconfigure */
2461 static int link_update_mtu(Link
*link
, sd_netlink_message
*message
) {
2462 uint32_t mtu
, min_mtu
= 0, max_mtu
= UINT32_MAX
;
2468 r
= sd_netlink_message_read_u32(message
, IFLA_MTU
, &mtu
);
2472 return log_link_debug_errno(link
, r
, "rtnl: failed to read MTU in RTM_NEWLINK message: %m");
2476 r
= sd_netlink_message_read_u32(message
, IFLA_MIN_MTU
, &min_mtu
);
2477 if (r
< 0 && r
!= -ENODATA
)
2478 return log_link_debug_errno(link
, r
, "rtnl: failed to read minimum MTU in RTM_NEWLINK message: %m");
2480 r
= sd_netlink_message_read_u32(message
, IFLA_MAX_MTU
, &max_mtu
);
2481 if (r
< 0 && r
!= -ENODATA
)
2482 return log_link_debug_errno(link
, r
, "rtnl: failed to read maximum MTU in RTM_NEWLINK message: %m");
2485 max_mtu
= UINT32_MAX
;
2487 link
->min_mtu
= min_mtu
;
2488 link
->max_mtu
= max_mtu
;
2490 if (link
->original_mtu
== 0) {
2491 link
->original_mtu
= mtu
;
2492 log_link_debug(link
, "Saved original MTU %" PRIu32
" (min: %"PRIu32
", max: %"PRIu32
")",
2493 link
->original_mtu
, link
->min_mtu
, link
->max_mtu
);
2496 if (link
->mtu
== mtu
)
2500 log_link_debug(link
, "MTU is changed: %"PRIu32
" %s %"PRIu32
" (min: %"PRIu32
", max: %"PRIu32
")",
2501 link
->mtu
, glyph(GLYPH_ARROW_RIGHT
), mtu
,
2502 link
->min_mtu
, link
->max_mtu
);
2506 if (IN_SET(link
->state
, LINK_STATE_CONFIGURING
, LINK_STATE_CONFIGURED
))
2507 /* The kernel resets IPv6 MTU after changing device MTU. So, we need to re-set IPv6 MTU again. */
2508 (void) link_set_ipv6_mtu_async(link
);
2510 if (link
->dhcp_client
) {
2511 r
= sd_dhcp_client_set_mtu(link
->dhcp_client
, link
->mtu
);
2513 return log_link_debug_errno(link
, r
, "Could not update MTU in DHCP client: %m");
2517 r
= sd_radv_set_mtu(link
->radv
, link
->mtu
);
2519 return log_link_debug_errno(link
, r
, "Could not set MTU for Router Advertisement: %m");
2525 static int link_update_alternative_names(Link
*link
, sd_netlink_message
*message
) {
2526 _cleanup_strv_free_
char **altnames
= NULL
;
2532 r
= sd_netlink_message_read_strv(message
, IFLA_PROP_LIST
, IFLA_ALT_IFNAME
, &altnames
);
2534 /* The message does not have IFLA_PROP_LIST container attribute. It does not mean the
2535 * interface has no alternative name. */
2538 return log_link_debug_errno(link
, r
, "rtnl: failed to read alternative names: %m");
2540 if (strv_equal(altnames
, link
->alternative_names
))
2543 STRV_FOREACH(n
, link
->alternative_names
)
2544 hashmap_remove(link
->manager
->links_by_name
, *n
);
2546 strv_free_and_replace(link
->alternative_names
, altnames
);
2548 STRV_FOREACH(n
, link
->alternative_names
) {
2549 r
= hashmap_ensure_put(&link
->manager
->links_by_name
, &string_hash_ops
, *n
, link
);
2551 return log_link_debug_errno(link
, r
, "Failed to manage link by its new alternative names: %m");
2554 return 1; /* needs reconfigure */
2557 static int link_update_name(Link
*link
, sd_netlink_message
*message
) {
2558 char ifname_from_index
[IF_NAMESIZE
];
2565 r
= sd_netlink_message_read_string(message
, IFLA_IFNAME
, &ifname
);
2570 return log_link_debug_errno(link
, r
, "Failed to read interface name in RTM_NEWLINK message: %m");
2572 if (streq(ifname
, link
->ifname
))
2575 r
= format_ifname(link
->ifindex
, ifname_from_index
);
2577 return log_link_debug_errno(link
, r
, "Could not get interface name for index %i.", link
->ifindex
);
2579 if (!streq(ifname
, ifname_from_index
)) {
2580 log_link_debug(link
, "New interface name '%s' received from the kernel does not correspond "
2581 "with the name currently configured on the actual interface '%s'. Ignoring.",
2582 ifname
, ifname_from_index
);
2586 log_link_info(link
, "Interface name change detected, renamed to %s.", ifname
);
2588 hashmap_remove(link
->manager
->links_by_name
, link
->ifname
);
2590 r
= free_and_strdup(&link
->ifname
, ifname
);
2592 return log_oom_debug();
2594 r
= hashmap_ensure_put(&link
->manager
->links_by_name
, &string_hash_ops
, link
->ifname
, link
);
2596 return log_link_debug_errno(link
, r
, "Failed to manage link by its new name: %m");
2598 if (link
->dhcp_client
) {
2599 r
= sd_dhcp_client_set_ifname(link
->dhcp_client
, link
->ifname
);
2601 return log_link_debug_errno(link
, r
, "Failed to update interface name in DHCP client: %m");
2604 if (link
->dhcp6_client
) {
2605 r
= sd_dhcp6_client_set_ifname(link
->dhcp6_client
, link
->ifname
);
2607 return log_link_debug_errno(link
, r
, "Failed to update interface name in DHCPv6 client: %m");
2611 r
= sd_ndisc_set_ifname(link
->ndisc
, link
->ifname
);
2613 return log_link_debug_errno(link
, r
, "Failed to update interface name in NDisc: %m");
2616 if (link
->dhcp_server
) {
2617 r
= sd_dhcp_server_set_ifname(link
->dhcp_server
, link
->ifname
);
2619 return log_link_debug_errno(link
, r
, "Failed to update interface name in DHCP server: %m");
2623 r
= sd_radv_set_ifname(link
->radv
, link
->ifname
);
2625 return log_link_debug_errno(link
, r
, "Failed to update interface name in Router Advertisement: %m");
2628 if (link
->lldp_rx
) {
2629 r
= sd_lldp_rx_set_ifname(link
->lldp_rx
, link
->ifname
);
2631 return log_link_debug_errno(link
, r
, "Failed to update interface name in LLDP Rx: %m");
2634 if (link
->lldp_tx
) {
2635 r
= sd_lldp_tx_set_ifname(link
->lldp_tx
, link
->ifname
);
2637 return log_link_debug_errno(link
, r
, "Failed to update interface name in LLDP Tx: %m");
2641 r
= sd_ipv4ll_set_ifname(link
->ipv4ll
, link
->ifname
);
2643 return log_link_debug_errno(link
, r
, "Failed to update interface name in IPv4LL client: %m");
2646 r
= ipv4acd_set_ifname(link
);
2648 return log_link_debug_errno(link
, r
, "Failed to update interface name in IPv4ACD client: %m");
2650 return 1; /* needs reconfigure */
2653 static int link_update(Link
*link
, sd_netlink_message
*message
) {
2654 bool needs_reconfigure
= false;
2660 r
= link_update_name(link
, message
);
2663 needs_reconfigure
= needs_reconfigure
|| r
> 0;
2665 r
= link_update_alternative_names(link
, message
);
2668 needs_reconfigure
= needs_reconfigure
|| r
> 0;
2670 r
= link_update_mtu(link
, message
);
2674 r
= link_update_driver(link
, message
);
2677 needs_reconfigure
= needs_reconfigure
|| r
> 0;
2679 r
= link_update_permanent_hardware_address(link
, message
);
2682 needs_reconfigure
= needs_reconfigure
|| r
> 0;
2684 r
= link_update_hardware_address(link
, message
);
2687 needs_reconfigure
= needs_reconfigure
|| r
> 0;
2689 r
= link_update_master(link
, message
);
2693 r
= link_update_ipv6ll_addrgen_mode(link
, message
);
2697 r
= link_update_flags(link
, message
);
2701 r
= link_update_bridge_vlan(link
, message
);
2705 return needs_reconfigure
;
2708 static Link
*link_drop_or_unref(Link
*link
) {
2712 return link_unref(link
);
2713 return link_drop(link
);
2716 DEFINE_TRIVIAL_CLEANUP_FUNC(Link
*, link_drop_or_unref
);
2718 static int link_new(Manager
*manager
, sd_netlink_message
*message
, Link
**ret
) {
2719 _cleanup_free_
char *ifname
= NULL
, *kind
= NULL
, *state_file
= NULL
, *lease_file
= NULL
;
2720 _cleanup_(link_drop_or_unrefp
) Link
*link
= NULL
;
2721 unsigned short iftype
;
2728 r
= sd_rtnl_message_link_get_ifindex(message
, &ifindex
);
2730 return log_debug_errno(r
, "rtnl: failed to read ifindex from link message: %m");
2731 else if (ifindex
<= 0)
2732 return log_debug_errno(SYNTHETIC_ERRNO(EINVAL
), "rtnl: received link message without valid ifindex.");
2734 r
= sd_rtnl_message_link_get_type(message
, &iftype
);
2736 return log_debug_errno(r
, "rtnl: failed to read interface type from link message: %m");
2738 r
= sd_netlink_message_read_string_strdup(message
, IFLA_IFNAME
, &ifname
);
2740 return log_debug_errno(r
, "rtnl: failed to read interface name from link message: %m");
2742 /* check for link kind */
2743 r
= sd_netlink_message_enter_container(message
, IFLA_LINKINFO
);
2745 r
= sd_netlink_message_read_string_strdup(message
, IFLA_INFO_KIND
, &kind
);
2746 if (r
< 0 && r
!= -ENODATA
)
2747 return log_debug_errno(r
, "rtnl: failed to read interface kind from link message: %m");
2748 r
= sd_netlink_message_exit_container(message
);
2750 return log_debug_errno(r
, "rtnl: failed to exit IFLA_LINKINFO container: %m");
2753 if (!manager
->test_mode
) {
2754 /* Do not update state files when running in test mode. */
2755 if (asprintf(&state_file
, "/run/systemd/netif/links/%d", ifindex
) < 0)
2756 return log_oom_debug();
2758 if (asprintf(&lease_file
, "/run/systemd/netif/leases/%d", ifindex
) < 0)
2759 return log_oom_debug();
2762 link
= new(Link
, 1);
2768 .state
= LINK_STATE_PENDING
,
2769 .online_state
= _LINK_ONLINE_STATE_INVALID
,
2770 .automatic_reconfigure_ratelimit
= (const RateLimit
) { .interval
= 10 * USEC_PER_SEC
, .burst
= 5 },
2773 .ifname
= TAKE_PTR(ifname
),
2774 .kind
= TAKE_PTR(kind
),
2776 .bridge_vlan_pvid
= UINT16_MAX
,
2778 .ipv6ll_address_gen_mode
= _IPV6_LINK_LOCAL_ADDRESS_GEN_MODE_INVALID
,
2780 .state_file
= TAKE_PTR(state_file
),
2781 .lease_file
= TAKE_PTR(lease_file
),
2784 .dns_default_route
= -1,
2785 .llmnr
= _RESOLVE_SUPPORT_INVALID
,
2786 .mdns
= _RESOLVE_SUPPORT_INVALID
,
2787 .dnssec_mode
= _DNSSEC_MODE_INVALID
,
2788 .dns_over_tls_mode
= _DNS_OVER_TLS_MODE_INVALID
,
2791 r
= hashmap_ensure_put(&manager
->links_by_index
, &link_hash_ops
, INT_TO_PTR(link
->ifindex
), link
);
2793 return log_link_debug_errno(link
, r
, "Failed to store link into manager: %m");
2795 link
->manager
= manager
;
2797 r
= hashmap_ensure_put(&manager
->links_by_name
, &string_hash_ops
, link
->ifname
, link
);
2799 return log_link_debug_errno(link
, r
, "Failed to manage link by its interface name: %m");
2801 log_link_debug(link
, "Saved new link: ifindex=%i, iftype=%s(%u), kind=%s",
2802 link
->ifindex
, strna(arphrd_to_name(link
->iftype
)), link
->iftype
, strna(link
->kind
));
2804 /* If contained in this set, the link is wireless and the corresponding NL80211_CMD_NEW_INTERFACE
2805 * message arrived too early. Request the wireless link information again.
2807 if (set_remove(manager
->new_wlan_ifindices
, INT_TO_PTR(link
->ifindex
))) {
2808 r
= link_get_wlan_interface(link
);
2810 log_link_warning_errno(link
, r
, "Failed to get wireless interface, ignoring: %m");
2813 *ret
= TAKE_PTR(link
);
2817 int manager_rtnl_process_link(sd_netlink
*rtnl
, sd_netlink_message
*message
, Manager
*manager
) {
2819 NetDev
*netdev
= NULL
;
2828 if (sd_netlink_message_is_error(message
)) {
2829 r
= sd_netlink_message_get_errno(message
);
2831 log_message_warning_errno(message
, r
, "rtnl: Could not receive link message, ignoring");
2836 r
= sd_netlink_message_get_type(message
, &type
);
2838 log_warning_errno(r
, "rtnl: Could not get message type, ignoring: %m");
2840 } else if (!IN_SET(type
, RTM_NEWLINK
, RTM_DELLINK
)) {
2841 log_warning("rtnl: Received unexpected message type %u when processing link, ignoring.", type
);
2845 r
= sd_rtnl_message_link_get_ifindex(message
, &ifindex
);
2847 log_warning_errno(r
, "rtnl: Could not get ifindex from link message, ignoring: %m");
2849 } else if (ifindex
<= 0) {
2850 log_warning("rtnl: received link message with invalid ifindex %d, ignoring.", ifindex
);
2854 r
= sd_netlink_message_read_string(message
, IFLA_IFNAME
, &name
);
2856 log_warning_errno(r
, "rtnl: Received link message without ifname, ignoring: %m");
2860 (void) link_get_by_index(manager
, ifindex
, &link
);
2861 (void) netdev_get(manager
, name
, &netdev
);
2866 /* netdev exists, so make sure the ifindex matches */
2867 r
= netdev_set_ifindex(netdev
, message
);
2869 log_netdev_warning_errno(netdev
, r
, "Could not process new link message for netdev, ignoring: %m");
2870 netdev_enter_failed(netdev
);
2876 /* link is new, so add it */
2877 r
= link_new(manager
, message
, &link
);
2879 log_warning_errno(r
, "Could not process new link message: %m");
2883 r
= link_update(link
, message
);
2885 log_link_warning_errno(link
, r
, "Could not process link message: %m");
2886 link_enter_failed(link
);
2890 if (link
->manager
->test_mode
) {
2891 log_link_debug(link
, "Running in test mode, refusing to enter initialized state.");
2892 link_set_state(link
, LINK_STATE_UNMANAGED
);
2896 /* Do not enter initialized state if we are enumerating. */
2897 if (manager
->enumerating
)
2900 r
= link_check_initialized(link
);
2902 log_link_warning_errno(link
, r
, "Failed to check link is initialized: %m");
2903 link_enter_failed(link
);
2907 r
= link_update(link
, message
);
2909 log_link_warning_errno(link
, r
, "Could not process link message: %m");
2910 link_enter_failed(link
);
2916 if (link
->manager
->test_mode
) {
2917 log_link_debug(link
, "Running in test mode, refusing to configure interface.");
2918 link_set_state(link
, LINK_STATE_UNMANAGED
);
2922 /* Do not configure interface if we are enumerating. */
2923 if (manager
->enumerating
)
2926 r
= link_reconfigure_impl(link
, /* flags = */ 0);
2928 log_link_warning_errno(link
, r
, "Failed to reconfigure interface: %m");
2929 link_enter_failed(link
);
2937 netdev_drop(netdev
);
2941 assert_not_reached();
2947 int link_getlink_handler_internal(sd_netlink
*rtnl
, sd_netlink_message
*m
, Link
*link
, const char *error_msg
) {
2948 uint16_t message_type
;
2955 if (IN_SET(link
->state
, LINK_STATE_FAILED
, LINK_STATE_LINGER
))
2958 r
= sd_netlink_message_get_errno(m
);
2960 log_link_message_warning_errno(link
, m
, r
, "%s", error_msg
);
2961 link_enter_failed(link
);
2965 r
= sd_netlink_message_get_type(m
, &message_type
);
2967 log_link_debug_errno(link
, r
, "rtnl: failed to read link message type, ignoring: %m");
2970 if (message_type
!= RTM_NEWLINK
) {
2971 log_link_debug(link
, "rtnl: received invalid link message type, ignoring.");
2975 r
= link_update(link
, m
);
2977 link_enter_failed(link
);
2984 int link_call_getlink(Link
*link
, link_netlink_message_handler_t callback
) {
2985 _cleanup_(sd_netlink_message_unrefp
) sd_netlink_message
*req
= NULL
;
2989 assert(link
->manager
);
2990 assert(link
->manager
->rtnl
);
2993 r
= sd_rtnl_message_new_link(link
->manager
->rtnl
, &req
, RTM_GETLINK
, link
->ifindex
);
2997 r
= netlink_call_async(link
->manager
->rtnl
, NULL
, req
, callback
,
2998 link_netlink_destroy_callback
, link
);
3006 static const char* const link_state_table
[_LINK_STATE_MAX
] = {
3007 [LINK_STATE_PENDING
] = "pending",
3008 [LINK_STATE_INITIALIZED
] = "initialized",
3009 [LINK_STATE_CONFIGURING
] = "configuring",
3010 [LINK_STATE_CONFIGURED
] = "configured",
3011 [LINK_STATE_UNMANAGED
] = "unmanaged",
3012 [LINK_STATE_FAILED
] = "failed",
3013 [LINK_STATE_LINGER
] = "linger",
3016 DEFINE_STRING_TABLE_LOOKUP(link_state
, LinkState
);
3018 int link_flags_to_string_alloc(uint32_t flags
, char **ret
) {
3019 _cleanup_free_
char *str
= NULL
;
3020 static const char* map
[] = {
3021 [LOG2U(IFF_UP
)] = "up", /* interface is up. */
3022 [LOG2U(IFF_BROADCAST
)] = "broadcast", /* broadcast address valid. */
3023 [LOG2U(IFF_DEBUG
)] = "debug", /* turn on debugging. */
3024 [LOG2U(IFF_LOOPBACK
)] = "loopback", /* interface is a loopback net. */
3025 [LOG2U(IFF_POINTOPOINT
)] = "point-to-point", /* interface has p-p link. */
3026 [LOG2U(IFF_NOTRAILERS
)] = "no-trailers", /* avoid use of trailers. */
3027 [LOG2U(IFF_RUNNING
)] = "running", /* interface RFC2863 OPER_UP. */
3028 [LOG2U(IFF_NOARP
)] = "no-arp", /* no ARP protocol. */
3029 [LOG2U(IFF_PROMISC
)] = "promiscuous", /* receive all packets. */
3030 [LOG2U(IFF_ALLMULTI
)] = "all-multicast", /* receive all multicast packets. */
3031 [LOG2U(IFF_MASTER
)] = "master", /* master of a load balancer. */
3032 [LOG2U(IFF_SLAVE
)] = "slave", /* slave of a load balancer. */
3033 [LOG2U(IFF_MULTICAST
)] = "multicast", /* supports multicast. */
3034 [LOG2U(IFF_PORTSEL
)] = "portsel", /* can set media type. */
3035 [LOG2U(IFF_AUTOMEDIA
)] = "auto-media", /* auto media select active. */
3036 [LOG2U(IFF_DYNAMIC
)] = "dynamic", /* dialup device with changing addresses. */
3037 [LOG2U(IFF_LOWER_UP
)] = "lower-up", /* driver signals L1 up. */
3038 [LOG2U(IFF_DORMANT
)] = "dormant", /* driver signals dormant. */
3039 [LOG2U(IFF_ECHO
)] = "echo", /* echo sent packets. */
3044 for (size_t i
= 0; i
< ELEMENTSOF(map
); i
++)
3045 if (BIT_SET(flags
, i
) && map
[i
])
3046 if (!strextend_with_separator(&str
, ",", map
[i
]))
3049 *ret
= TAKE_PTR(str
);
3053 static const char * const kernel_operstate_table
[] = {
3054 [IF_OPER_UNKNOWN
] = "unknown",
3055 [IF_OPER_NOTPRESENT
] = "not-present",
3056 [IF_OPER_DOWN
] = "down",
3057 [IF_OPER_LOWERLAYERDOWN
] = "lower-layer-down",
3058 [IF_OPER_TESTING
] = "testing",
3059 [IF_OPER_DORMANT
] = "dormant",
3060 [IF_OPER_UP
] = "up",
3063 DEFINE_STRING_TABLE_LOOKUP_TO_STRING(kernel_operstate
, int);