• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

systemd / systemd / 17281840010

27 Aug 2025 01:33PM UTC coverage: 72.231% (-0.001%) from 72.232%
17281840010

push

github

yuwata
test: ensure that reload updates DNSSEC and DNSOverTLS on link scopes

302510 of 418810 relevant lines covered (72.23%)

652751.72 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

85.0
/src/network/networkd-link.c
1
/* SPDX-License-Identifier: LGPL-2.1-or-later */
2

3
#include <linux/if.h>
4
#include <linux/if_arp.h>
5
#include <linux/if_link.h>
6
#include <linux/netdevice.h>
7
#include <net/if.h>
8
#include <sys/socket.h>
9
#include <unistd.h>
10

11
#include "sd-bus.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"
18
#include "sd-ndisc.h"
19
#include "sd-netlink.h"
20
#include "sd-radv.h"
21

22
#include "alloc-util.h"
23
#include "arphrd-util.h"
24
#include "bitfield.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"
30
#include "fs-util.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"
66
#include "set.h"
67
#include "socket-util.h"
68
#include "string-table.h"
69
#include "string-util.h"
70
#include "strv.h"
71
#include "tc.h"
72
#include "udev-util.h"
73

74
void link_required_operstate_for_online(Link *link, LinkOperationalStateRange *ret) {
18,520✔
75
        assert(link);
18,520✔
76
        assert(ret);
18,520✔
77

78
        if (link->network && operational_state_range_is_valid(&link->network->required_operstate_for_online))
18,520✔
79
                /* If explicitly specified, use it as is. */
80
                *ret = link->network->required_operstate_for_online;
362✔
81
        else if (link->iftype == ARPHRD_CAN)
18,158✔
82
                /* CAN devices do not support addressing, hence defaults to 'carrier'. */
83
                *ret = (const LinkOperationalStateRange) {
44✔
84
                        .min = LINK_OPERSTATE_CARRIER,
85
                        .max = LINK_OPERSTATE_CARRIER,
86
                };
87
        else if (link->network && link->network->bond)
18,114✔
88
                /* Bonding slaves do not support addressing. */
89
                *ret = (const LinkOperationalStateRange) {
137✔
90
                        .min = LINK_OPERSTATE_ENSLAVED,
91
                        .max = LINK_OPERSTATE_ENSLAVED,
92
                };
93
        else if (STRPTR_IN_SET(link->kind, "batadv", "bond", "bridge", "vrf"))
17,977✔
94
                /* Some of slave interfaces may be offline. */
95
                *ret = (const LinkOperationalStateRange) {
645✔
96
                        .min = LINK_OPERSTATE_DEGRADED_CARRIER,
97
                        .max = LINK_OPERSTATE_ROUTABLE,
98
                };
99
        else
100
                *ret = LINK_OPERSTATE_RANGE_DEFAULT;
17,332✔
101
}
18,520✔
102

103
AddressFamily link_required_family_for_online(Link *link) {
9,695✔
104
        assert(link);
9,695✔
105

106
        if (link->network && link->network->required_family_for_online >= 0)
9,695✔
107
                return link->network->required_family_for_online;
108

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;
112

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;
×
117

118
        return ADDRESS_FAMILY_NO;
119
}
120

121
bool link_ipv6_enabled(Link *link) {
901✔
122
        assert(link);
901✔
123

124
        if (!socket_ipv6_is_supported())
901✔
125
                return false;
126

127
        if (link->iftype == ARPHRD_CAN)
901✔
128
                return false;
129

130
        if (!link->network)
899✔
131
                return false;
132

133
        if (link->network->bond)
899✔
134
                return false;
135

136
        if (link_ipv6ll_enabled(link))
888✔
137
                return true;
138

139
        if (network_has_static_ipv6_configurations(link->network))
112✔
140
                return true;
45✔
141

142
        return false;
143
}
144

145
bool link_has_ipv6_connectivity(Link *link) {
295✔
146
        LinkAddressState ipv6_address_state;
295✔
147

148
        assert(link);
295✔
149

150
        link_get_address_states(link, NULL, &ipv6_address_state, NULL);
295✔
151

152
        switch (ipv6_address_state) {
295✔
153
        case LINK_ADDRESS_STATE_ROUTABLE:
154
                /* If the interface has a routable IPv6 address, then we assume yes. */
155
                return true;
295✔
156

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);
130✔
161

162
        case LINK_ADDRESS_STATE_OFF:
107✔
163
                /* No IPv6 address. */
164
                return false;
107✔
165

166
        default:
×
167
                assert_not_reached();
×
168
        }
169
}
170

171
static bool link_is_ready_to_configure_one(Link *link, bool allow_unmanaged) {
60,482✔
172
        assert(link);
60,482✔
173

174
        if (!IN_SET(link->state, LINK_STATE_CONFIGURING, LINK_STATE_CONFIGURED, LINK_STATE_UNMANAGED))
60,482✔
175
                return false;
176

177
        if (!link->network)
60,456✔
178
                return allow_unmanaged;
179

180
        if (!link->network->configure_without_carrier) {
60,455✔
181
                if (link->set_flags_messages > 0)
60,287✔
182
                        return false;
183

184
                if (!link_has_carrier(link))
15,619✔
185
                        return false;
186
        }
187

188
        if (link->set_link_messages > 0)
12,053✔
189
                return false;
190

191
        if (!link->activated)
11,920✔
192
                return false;
60✔
193

194
        return true;
195
}
196

197
bool link_is_ready_to_configure(Link *link, bool allow_unmanaged) {
60,482✔
198
        return check_ready_for_all_sr_iov_ports(link, allow_unmanaged, link_is_ready_to_configure_one);
60,482✔
199
}
200

201
bool link_is_ready_to_configure_by_name(Manager *manager, const char *name, bool allow_unmanaged) {
2,109✔
202
        assert(manager);
2,109✔
203
        assert(name);
2,109✔
204

205
        Link *link;
2,109✔
206
        if (link_get_by_name(manager, name, &link) < 0)
2,109✔
207
                return false;
2,109✔
208

209
        return link_is_ready_to_configure(link, allow_unmanaged);
2,109✔
210
}
211

212
void link_ntp_settings_clear(Link *link) {
2,762✔
213
        link->ntp = strv_free(link->ntp);
2,762✔
214
}
2,762✔
215

216
void link_dns_settings_clear(Link *link) {
2,777✔
217
        if (link->n_dns != UINT_MAX)
2,777✔
218
                for (unsigned i = 0; i < link->n_dns; i++)
10✔
219
                        in_addr_full_free(link->dns[i]);
6✔
220
        link->dns = mfree(link->dns);
2,777✔
221
        link->n_dns = UINT_MAX;
2,777✔
222

223
        link->search_domains = ordered_set_free(link->search_domains);
2,777✔
224
        link->route_domains = ordered_set_free(link->route_domains);
2,777✔
225

226
        link->dns_default_route = -1;
2,777✔
227
        link->llmnr = _RESOLVE_SUPPORT_INVALID;
2,777✔
228
        link->mdns = _RESOLVE_SUPPORT_INVALID;
2,777✔
229
        link->dnssec_mode = _DNSSEC_MODE_INVALID;
2,777✔
230
        link->dns_over_tls_mode = _DNS_OVER_TLS_MODE_INVALID;
2,777✔
231

232
        link->dnssec_negative_trust_anchors = set_free(link->dnssec_negative_trust_anchors);
2,777✔
233
}
2,777✔
234

235
static void link_free_engines(Link *link) {
4,742✔
236
        if (!link)
4,742✔
237
                return;
238

239
        link->dhcp_server = sd_dhcp_server_unref(link->dhcp_server);
4,742✔
240

241
        link->dhcp_client = sd_dhcp_client_unref(link->dhcp_client);
4,742✔
242
        link->dhcp_lease = sd_dhcp_lease_unref(link->dhcp_lease);
4,742✔
243
        link->dhcp4_6rd_tunnel_name = mfree(link->dhcp4_6rd_tunnel_name);
4,742✔
244

245
        link->lldp_rx = sd_lldp_rx_unref(link->lldp_rx);
4,742✔
246
        link->lldp_tx = sd_lldp_tx_unref(link->lldp_tx);
4,742✔
247

248
        link->ipv4acd_by_address = hashmap_free(link->ipv4acd_by_address);
4,742✔
249

250
        link->ipv4ll = sd_ipv4ll_unref(link->ipv4ll);
4,742✔
251

252
        link->dhcp6_client = sd_dhcp6_client_unref(link->dhcp6_client);
4,742✔
253
        link->dhcp6_lease = sd_dhcp6_lease_unref(link->dhcp6_lease);
4,742✔
254

255
        link->ndisc = sd_ndisc_unref(link->ndisc);
4,742✔
256
        link->ndisc_expire = sd_event_source_disable_unref(link->ndisc_expire);
4,742✔
257
        ndisc_flush(link);
4,742✔
258

259
        link->radv = sd_radv_unref(link->radv);
4,742✔
260
}
261

262
static Link* link_free(Link *link) {
2,761✔
263
        assert(link);
2,761✔
264

265
        (void) link_clear_sysctl_shadows(link);
2,761✔
266

267
        link_ntp_settings_clear(link);
2,761✔
268
        link_dns_settings_clear(link);
2,761✔
269

270
        link->neighbors = set_free(link->neighbors);
2,761✔
271
        link->addresses = set_free(link->addresses);
2,761✔
272
        link->qdiscs = set_free(link->qdiscs);
2,761✔
273
        link->tclasses = set_free(link->tclasses);
2,761✔
274

275
        link->dhcp_pd_prefixes = set_free(link->dhcp_pd_prefixes);
2,761✔
276

277
        link_free_engines(link);
2,761✔
278

279
        set_free(link->sr_iov_virt_port_ifindices);
2,761✔
280
        free(link->ifname);
2,761✔
281
        strv_free(link->alternative_names);
2,761✔
282
        free(link->kind);
2,761✔
283
        free(link->ssid);
2,761✔
284
        free(link->previous_ssid);
2,761✔
285
        free(link->driver);
2,761✔
286

287
        unlink_and_free(link->lease_file);
2,761✔
288
        unlink_and_free(link->state_file);
2,761✔
289

290
        sd_device_unref(link->dev);
2,761✔
291
        netdev_unref(link->netdev);
2,761✔
292

293
        hashmap_free(link->bound_to_links);
2,761✔
294
        hashmap_free(link->bound_by_links);
2,761✔
295

296
        set_free(link->slaves);
2,761✔
297

298
        network_unref(link->network);
2,761✔
299

300
        sd_event_source_disable_unref(link->carrier_lost_timer);
2,761✔
301
        sd_event_source_disable_unref(link->ipv6_mtu_wait_synced_event_source);
2,761✔
302

303
        return mfree(link);
2,761✔
304
}
305

306
DEFINE_TRIVIAL_REF_UNREF_FUNC(Link, link, link_free);
178,832✔
307

308
DEFINE_HASH_OPS_WITH_VALUE_DESTRUCTOR(
1,921✔
309
                link_hash_ops,
310
                void, trivial_hash_func, trivial_compare_func,
311
                Link, link_unref);
312

313
int link_get_by_index(Manager *m, int ifindex, Link **ret) {
69,786✔
314
        Link *link;
69,786✔
315

316
        assert(m);
69,786✔
317

318
        if (ifindex <= 0)
69,786✔
319
                return -EINVAL;
320

321
        link = hashmap_get(m->links_by_index, INT_TO_PTR(ifindex));
69,051✔
322
        if (!link)
69,051✔
323
                return -ENODEV;
324

325
        if (ret)
65,462✔
326
                *ret = link;
65,462✔
327
        return 0;
328
}
329

330
int link_get_by_name(Manager *m, const char *ifname, Link **ret) {
2,486✔
331
        Link *link;
2,486✔
332

333
        assert(m);
2,486✔
334
        assert(ifname);
2,486✔
335

336
        link = hashmap_get(m->links_by_name, ifname);
2,486✔
337
        if (!link)
2,486✔
338
                return -ENODEV;
339

340
        if (ret)
2,421✔
341
                *ret = link;
2,421✔
342
        return 0;
343
}
344

345
int link_get_by_hw_addr(Manager *m, const struct hw_addr_data *hw_addr, Link **ret) {
×
346
        Link *link;
×
347

348
        assert(m);
×
349
        assert(hw_addr);
×
350

351
        link = hashmap_get(m->links_by_hw_addr, hw_addr);
×
352
        if (!link)
×
353
                return -ENODEV;
354

355
        if (ret)
×
356
                *ret = link;
×
357
        return 0;
358
}
359

360
int link_get_master(Link *link, Link **ret) {
24,380✔
361
        assert(link);
24,380✔
362
        assert(link->manager);
24,380✔
363
        assert(ret);
24,380✔
364

365
        if (link->master_ifindex <= 0 || link->master_ifindex == link->ifindex)
24,380✔
366
                return -ENODEV;
367

368
        return link_get_by_index(link->manager, link->master_ifindex, ret);
692✔
369
}
370

371
void link_set_state(Link *link, LinkState state) {
9,189✔
372
        assert(link);
9,189✔
373

374
        if (link->state == state)
9,189✔
375
                return;
1,791✔
376

377
        log_link_debug(link, "State changed: %s -> %s",
7,398✔
378
                       link_state_to_string(link->state),
379
                       link_state_to_string(state));
380

381
        link->state = state;
7,398✔
382

383
        link_send_changed(link, "AdministrativeState");
7,398✔
384
        link_dirty(link);
7,398✔
385
}
386

387
int link_stop_engines(Link *link, bool may_keep_dynamic) {
4,563✔
388
        int r, ret = 0;
4,563✔
389

390
        assert(link);
4,563✔
391
        assert(link->manager);
4,563✔
392
        assert(link->manager->event);
4,563✔
393

394
        bool keep_dynamic =
13,644✔
395
                may_keep_dynamic &&
1,915✔
396
                link->network &&
4,563✔
397
                (link->manager->state == MANAGER_RESTARTING ||
57✔
398
                 FLAGS_SET(link->network->keep_configuration, KEEP_CONFIGURATION_DYNAMIC_ON_STOP));
14✔
399

400
        if (!keep_dynamic) {
4,518✔
401
                r = sd_dhcp_client_stop(link->dhcp_client);
4,518✔
402
                if (r < 0)
4,518✔
403
                        RET_GATHER(ret, log_link_warning_errno(link, r, "Could not stop DHCPv4 client: %m"));
×
404

405
                r = sd_ipv4ll_stop(link->ipv4ll);
4,518✔
406
                if (r < 0)
4,518✔
407
                        RET_GATHER(ret, log_link_warning_errno(link, r, "Could not stop IPv4 link-local: %m"));
×
408

409
                r = sd_dhcp6_client_stop(link->dhcp6_client);
4,518✔
410
                if (r < 0)
4,518✔
411
                        RET_GATHER(ret, log_link_warning_errno(link, r, "Could not stop DHCPv6 client: %m"));
×
412

413
                r = dhcp_pd_remove(link, /* only_marked = */ false);
4,518✔
414
                if (r < 0)
4,518✔
415
                        RET_GATHER(ret, log_link_warning_errno(link, r, "Could not remove DHCPv6 PD addresses and routes: %m"));
×
416

417
                r = ndisc_stop(link);
4,518✔
418
                if (r < 0)
4,518✔
419
                        RET_GATHER(ret, log_link_warning_errno(link, r, "Could not stop IPv6 Router Discovery: %m"));
×
420

421
                ndisc_flush(link);
4,518✔
422
        }
423

424
        r = sd_dhcp_server_stop(link->dhcp_server);
4,563✔
425
        if (r < 0)
4,563✔
426
                RET_GATHER(ret, log_link_warning_errno(link, r, "Could not stop DHCPv4 server: %m"));
×
427

428
        r = sd_lldp_rx_stop(link->lldp_rx);
4,563✔
429
        if (r < 0)
4,563✔
430
                RET_GATHER(ret, log_link_warning_errno(link, r, "Could not stop LLDP Rx: %m"));
×
431

432
        r = sd_lldp_tx_stop(link->lldp_tx);
4,563✔
433
        if (r < 0)
4,563✔
434
                RET_GATHER(ret, log_link_warning_errno(link, r, "Could not stop LLDP Tx: %m"));
×
435

436
        r = ipv4acd_stop(link);
4,563✔
437
        if (r < 0)
4,563✔
438
                RET_GATHER(ret, log_link_warning_errno(link, r, "Could not stop IPv4 ACD client: %m"));
×
439

440
        r = sd_radv_stop(link->radv);
4,563✔
441
        if (r < 0)
4,563✔
442
                RET_GATHER(ret, log_link_warning_errno(link, r, "Could not stop IPv6 Router Advertisement: %m"));
×
443

444
        return ret;
4,563✔
445
}
446

447
void link_enter_failed(Link *link) {
1✔
448
        assert(link);
1✔
449

450
        if (IN_SET(link->state, LINK_STATE_FAILED, LINK_STATE_LINGER))
1✔
451
                return;
452

453
        log_link_warning(link, "Failed");
1✔
454

455
        link_set_state(link, LINK_STATE_FAILED);
1✔
456

457
        if (!ratelimit_below(&link->automatic_reconfigure_ratelimit)) {
1✔
458
                log_link_warning(link, "The interface entered the failed state frequently, refusing to reconfigure it automatically.");
×
459
                goto stop;
×
460
        }
461

462
        log_link_info(link, "Trying to reconfigure the interface.");
1✔
463
        if (link_reconfigure(link, LINK_RECONFIGURE_UNCONDITIONALLY) > 0)
1✔
464
                return;
465

466
stop:
×
467
        (void) link_stop_engines(link, /* may_keep_dynamic = */ false);
×
468
}
469

470
void link_check_ready(Link *link) {
26,010✔
471
        Address *a;
26,010✔
472

473
        assert(link);
26,010✔
474

475
        if (link->state == LINK_STATE_CONFIGURED)
26,010✔
476
                return;
25,127✔
477

478
        if (link->state != LINK_STATE_CONFIGURING)
22,058✔
479
                return (void) log_link_debug(link, "%s(): link is in %s state.", __func__, link_state_to_string(link->state));
1,320✔
480

481
        if (!link->network)
20,738✔
482
                return (void) log_link_debug(link, "%s(): link is unmanaged.", __func__);
×
483

484
        if (!link->tc_configured)
20,738✔
485
                return (void) log_link_debug(link, "%s(): traffic controls are not configured.", __func__);
313✔
486

487
        if (link->set_link_messages > 0)
20,425✔
488
                return (void) log_link_debug(link, "%s(): link layer is configuring.", __func__);
2,297✔
489

490
        if (!link->activated)
18,128✔
491
                return (void) log_link_debug(link, "%s(): link is not activated.", __func__);
11,098✔
492

493
        if (link->iftype == ARPHRD_CAN)
7,030✔
494
                /* let's shortcut things for CAN which doesn't need most of checks below. */
495
                goto ready;
6✔
496

497
        if (!link->stacked_netdevs_created)
7,024✔
498
                return (void) log_link_debug(link, "%s(): stacked netdevs are not created.", __func__);
244✔
499

500
        if (!link->static_addresses_configured)
6,780✔
501
                return (void) log_link_debug(link, "%s(): static addresses are not configured.", __func__);
3,367✔
502

503
        if (!link->static_address_labels_configured)
3,413✔
504
                return (void) log_link_debug(link, "%s(): static address labels are not configured.", __func__);
6✔
505

506
        if (!link->static_bridge_fdb_configured)
3,407✔
507
                return (void) log_link_debug(link, "%s(): static bridge MDB entries are not configured.", __func__);
4✔
508

509
        if (!link->static_bridge_mdb_configured)
3,403✔
510
                return (void) log_link_debug(link, "%s(): static bridge MDB entries are not configured.", __func__);
12✔
511

512
        if (!link->static_ipv6_proxy_ndp_configured)
3,391✔
513
                return (void) log_link_debug(link, "%s(): static IPv6 proxy NDP addresses are not configured.", __func__);
3✔
514

515
        if (!link->static_neighbors_configured)
3,388✔
516
                return (void) log_link_debug(link, "%s(): static neighbors are not configured.", __func__);
7✔
517

518
        if (!link->static_nexthops_configured)
3,381✔
519
                return (void) log_link_debug(link, "%s(): static nexthops are not configured.", __func__);
20✔
520

521
        if (!link->static_routes_configured)
3,361✔
522
                return (void) log_link_debug(link, "%s(): static routes are not configured.", __func__);
156✔
523

524
        if (!link->static_routing_policy_rules_configured)
3,205✔
525
                return (void) log_link_debug(link, "%s(): static routing policy rules are not configured.", __func__);
43✔
526

527
        if (!link->sr_iov_configured)
3,162✔
528
                return (void) log_link_debug(link, "%s(): SR-IOV is not configured.", __func__);
×
529

530
        /* IPv6LL is assigned after the link gains its carrier. */
531
        if (!link->network->configure_without_carrier &&
6,312✔
532
            link_ipv6ll_enabled(link) &&
3,150✔
533
            !in6_addr_is_set(&link->ipv6ll_address))
3,030✔
534
                return (void) log_link_debug(link, "%s(): IPv6LL is not configured yet.", __func__);
1,130✔
535

536
        /* All static addresses must be ready. */
537
        bool has_static_address = false;
2,032✔
538
        SET_FOREACH(a, link->addresses) {
6,978✔
539
                if (a->source != NETWORK_CONFIG_SOURCE_STATIC)
5,107✔
540
                        continue;
3,177✔
541
                if (!address_is_ready(a))
1,930✔
542
                        return (void) log_link_debug(link, "%s(): static address %s is not ready.", __func__,
161✔
543
                                                     IN_ADDR_PREFIX_TO_STRING(a->family, &a->in_addr, a->prefixlen));
544
                has_static_address = true;
545
        }
546

547
        /* If at least one static address is requested, do not request that dynamic addressing protocols are finished. */
548
        if (has_static_address)
1,871✔
549
                goto ready;
390✔
550

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) &&
2,835✔
554
            !link_dhcp6_enabled(link) && !link_dhcp_pd_is_enabled(link) &&
802✔
555
            (link->network->configure_without_carrier || !link_ndisc_enabled(link)))
594✔
556
                goto ready;
258✔
557

558
        bool ipv4ll_ready =
2,446✔
559
                link_ipv4ll_enabled(link) && link->ipv4ll_address_configured &&
1,277✔
560
                link_check_addresses_ready(link, NETWORK_CONFIG_SOURCE_IPV4LL);
54✔
561
        bool dhcp4_ready =
1,223✔
562
                link_dhcp4_enabled(link) && link->dhcp4_configured &&
1,314✔
563
                link_check_addresses_ready(link, NETWORK_CONFIG_SOURCE_DHCP4);
91✔
564
        bool dhcp6_ready =
1,223✔
565
                link_dhcp6_enabled(link) && link->dhcp6_configured &&
1,223✔
566
                (!link->network->dhcp6_use_address ||
70✔
567
                 link_check_addresses_ready(link, NETWORK_CONFIG_SOURCE_DHCP6));
34✔
568
        bool dhcp_pd_ready =
2,446✔
569
                link_dhcp_pd_is_enabled(link) && link->dhcp_pd_configured &&
1,223✔
570
                (!link->network->dhcp_pd_assign ||
149✔
571
                 link_check_addresses_ready(link, NETWORK_CONFIG_SOURCE_DHCP_PD));
71✔
572
        bool ndisc_ready =
2,446✔
573
                link_ndisc_enabled(link) && link->ndisc_configured &&
1,223✔
574
                (!link->network->ndisc_use_autonomous_prefix ||
430✔
575
                 link_check_addresses_ready(link, NETWORK_CONFIG_SOURCE_NDISC));
215✔
576

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)) {
1,223✔
579
                if (link_dhcp4_enabled(link) && link->network->dhcp_use_6rd &&
82✔
580
                    sd_dhcp_lease_has_6rd(link->dhcp_lease)) {
26✔
581
                        if (!link->dhcp4_configured)
23✔
582
                                return (void) log_link_debug(link, "%s(): DHCPv4 6rd prefix is assigned, but DHCPv4 protocol is not finished yet.", __func__);
10✔
583
                        if (!dhcp_pd_ready)
13✔
584
                                return (void) log_link_debug(link, "%s(): DHCPv4 is finished, but prefix acquired by DHCPv4-6rd is not assigned yet.", __func__);
11✔
585
                }
586

587
                if (link_dhcp6_enabled(link) && link->network->dhcp6_use_pd_prefix &&
65✔
588
                    sd_dhcp6_lease_has_pd_prefix(link->dhcp6_lease)) {
30✔
589
                        if (!link->dhcp6_configured)
21✔
590
                                return (void) log_link_debug(link, "%s(): DHCPv6 IA_PD prefix is assigned, but DHCPv6 protocol is not finished yet.", __func__);
8✔
591
                        if (!dhcp_pd_ready)
13✔
592
                                return (void) log_link_debug(link, "%s(): DHCPv6 is finished, but prefix acquired by DHCPv6 IA_PD is not assigned yet.", __func__);
10✔
593
                }
594
        }
595

596
        /* At least one dynamic addressing protocol is finished. */
597
        if (!ipv4ll_ready && !dhcp4_ready && !dhcp6_ready && !dhcp_pd_ready && !ndisc_ready)
1,184✔
598
                return (void) log_link_debug(link, "%s(): dynamic addressing protocols are enabled but none of them finished yet.", __func__);
955✔
599

600
        log_link_debug(link, "%s(): IPv4LL:%s DHCPv4:%s DHCPv6:%s DHCP-PD:%s NDisc:%s",
1,186✔
601
                       __func__,
602
                       yes_no(ipv4ll_ready),
603
                       yes_no(dhcp4_ready),
604
                       yes_no(dhcp6_ready),
605
                       yes_no(dhcp_pd_ready),
606
                       yes_no(ndisc_ready));
607

608
ready:
883✔
609
        link_set_state(link, LINK_STATE_CONFIGURED);
883✔
610
}
611

612
static int link_request_static_configs(Link *link) {
1,532✔
613
        int r;
1,532✔
614

615
        assert(link);
1,532✔
616
        assert(link->network);
1,532✔
617
        assert(link->state != _LINK_STATE_INVALID);
1,532✔
618

619
        r = link_request_static_addresses(link);
1,532✔
620
        if (r < 0)
1,532✔
621
                return r;
622

623
        r = link_request_static_address_labels(link);
1,532✔
624
        if (r < 0)
1,532✔
625
                return r;
626

627
        r = link_request_static_bridge_fdb(link);
1,532✔
628
        if (r < 0)
1,532✔
629
                return r;
630

631
        r = link_request_static_bridge_mdb(link);
1,532✔
632
        if (r < 0)
1,532✔
633
                return r;
634

635
        r = link_request_static_ipv6_proxy_ndp_addresses(link);
1,532✔
636
        if (r < 0)
1,532✔
637
                return r;
638

639
        r = link_request_static_neighbors(link);
1,532✔
640
        if (r < 0)
1,532✔
641
                return r;
642

643
        r = link_request_static_nexthops(link, false);
1,532✔
644
        if (r < 0)
1,532✔
645
                return r;
646

647
        r = link_request_static_routes(link, false);
1,532✔
648
        if (r < 0)
1,532✔
649
                return r;
650

651
        r = link_request_static_routing_policy_rules(link);
1,532✔
652
        if (r < 0)
1,532✔
653
                return r;
×
654

655
        return 0;
656
}
657

658
int link_request_stacked_netdevs(Link *link, NetDevLocalAddressType type) {
11,665✔
659
        NetDev *netdev;
11,665✔
660
        int r;
11,665✔
661

662
        assert(link);
11,665✔
663

664
        if (!IN_SET(link->state, LINK_STATE_CONFIGURING, LINK_STATE_CONFIGURED))
11,665✔
665
                return 0;
11,665✔
666

667
        assert(link->network);
2,624✔
668

669
        link->stacked_netdevs_created = false;
2,624✔
670

671
        HASHMAP_FOREACH(netdev, link->network->stacked_netdevs) {
3,135✔
672
                if (!netdev_needs_reconfigure(netdev, type))
511✔
673
                        continue;
296✔
674

675
                r = link_request_stacked_netdev(link, netdev);
215✔
676
                if (r < 0)
215✔
677
                        return r;
×
678
        }
679

680
        if (link->create_stacked_netdev_messages == 0) {
2,624✔
681
                link->stacked_netdevs_created = true;
2,451✔
682
                link_check_ready(link);
2,451✔
683
        }
684

685
        return 0;
686
}
687

688
static int link_acquire_dynamic_ipv6_conf(Link *link) {
783✔
689
        int r;
783✔
690

691
        assert(link);
783✔
692

693
        r = radv_start(link);
783✔
694
        if (r < 0)
783✔
695
                return log_link_warning_errno(link, r, "Failed to start IPv6 Router Advertisement engine: %m");
×
696

697
        r = ndisc_start(link);
783✔
698
        if (r < 0)
783✔
699
                return log_link_warning_errno(link, r, "Failed to start IPv6 Router Discovery: %m");
×
700

701
        r = dhcp6_start(link);
783✔
702
        if (r < 0)
783✔
703
                return log_link_warning_errno(link, r, "Failed to start DHCPv6 client: %m");
×
704

705
        return 0;
706
}
707

708
static int link_acquire_dynamic_ipv4_conf(Link *link) {
937✔
709
        int r;
937✔
710

711
        assert(link);
937✔
712
        assert(link->manager);
937✔
713
        assert(link->manager->event);
937✔
714

715
        if (link->dhcp_client) {
937✔
716
                r = dhcp4_start(link);
×
717
                if (r < 0)
×
718
                        return log_link_warning_errno(link, r, "Failed to start DHCPv4 client: %m");
×
719

720
                log_link_debug(link, "Acquiring DHCPv4 lease.");
×
721

722
        } else if (link->ipv4ll) {
937✔
723
                if (in4_addr_is_set(&link->network->ipv4ll_start_address)) {
72✔
724
                        r = sd_ipv4ll_set_address(link->ipv4ll, &link->network->ipv4ll_start_address);
1✔
725
                        if (r < 0)
1✔
726
                                return log_link_warning_errno(link, r, "Could not set IPv4 link-local start address: %m");
×
727
                }
728

729
                r = ipv4ll_start(link);
72✔
730
                if (r < 0)
72✔
731
                        return log_link_warning_errno(link, r, "Could not acquire IPv4 link-local address: %m");
×
732
                if (r > 0)
72✔
733
                        log_link_debug(link, "Acquiring IPv4 link-local address.");
71✔
734
        }
735

736
        r = link_start_dhcp4_server(link);
937✔
737
        if (r < 0)
937✔
738
                return log_link_warning_errno(link, r, "Could not start DHCP server: %m");
×
739

740
        r = ipv4acd_start(link);
937✔
741
        if (r < 0)
937✔
742
                return log_link_warning_errno(link, r, "Could not start IPv4 ACD client: %m");
×
743

744
        return 0;
745
}
746

747
static int link_acquire_dynamic_conf(Link *link) {
937✔
748
        int r;
937✔
749

750
        assert(link);
937✔
751
        assert(link->network);
937✔
752

753
        r = link_acquire_dynamic_ipv4_conf(link);
937✔
754
        if (r < 0)
937✔
755
                return r;
756

757
        if (in6_addr_is_set(&link->ipv6ll_address)) {
937✔
758
                r = link_acquire_dynamic_ipv6_conf(link);
273✔
759
                if (r < 0)
273✔
760
                        return r;
761
        }
762

763
        if (!link_radv_enabled(link) || !link->network->dhcp_pd_announce) {
937✔
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);
863✔
769
                if (r < 0)
863✔
770
                        return log_link_warning_errno(link, r, "Failed to request DHCP delegated subnet prefix: %m");
×
771
        }
772

773
        if (link->lldp_tx) {
937✔
774
                r = sd_lldp_tx_start(link->lldp_tx);
8✔
775
                if (r < 0)
8✔
776
                        return log_link_warning_errno(link, r, "Failed to start LLDP transmission: %m");
×
777
        }
778

779
        if (link->lldp_rx) {
937✔
780
                r = sd_lldp_rx_start(link->lldp_rx);
819✔
781
                if (r < 0)
819✔
782
                        return log_link_warning_errno(link, r, "Failed to start LLDP client: %m");
×
783
        }
784

785
        return 0;
786
}
787

788
int link_ipv6ll_gained(Link *link) {
623✔
789
        int r;
623✔
790

791
        assert(link);
623✔
792

793
        log_link_info(link, "Gained IPv6LL");
623✔
794

795
        if (!IN_SET(link->state, LINK_STATE_CONFIGURING, LINK_STATE_CONFIGURED))
623✔
796
                return 0;
797

798
        r = link_acquire_dynamic_ipv6_conf(link);
510✔
799
        if (r < 0)
510✔
800
                return r;
801

802
        r = link_request_stacked_netdevs(link, NETDEV_LOCAL_ADDRESS_IPV6LL);
510✔
803
        if (r < 0)
510✔
804
                return r;
805

806
        link_check_ready(link);
510✔
807
        return 0;
510✔
808
}
809

810
int link_handle_bound_to_list(Link *link) {
29✔
811
        bool required_up = false;
29✔
812
        bool link_is_up = false;
29✔
813
        Link *l;
29✔
814

815
        assert(link);
29✔
816

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. */
819

820
        if (hashmap_isempty(link->bound_to_links))
29✔
821
                return 0;
29✔
822

823
        if (link->flags & IFF_UP)
26✔
824
                link_is_up = true;
14✔
825

826
        HASHMAP_FOREACH(l, link->bound_to_links)
36✔
827
                if (link_has_carrier(l)) {
30✔
828
                        required_up = true;
829
                        break;
830
                }
831

832
        if (!required_up && link_is_up)
26✔
833
                return link_request_to_bring_up_or_down(link, /* up = */ false);
3✔
834
        if (required_up && !link_is_up)
23✔
835
                return link_request_to_bring_up_or_down(link, /* up = */ true);
9✔
836

837
        return 0;
838
}
839

840
static int link_handle_bound_by_list(Link *link) {
4,561✔
841
        Link *l;
4,561✔
842
        int r;
4,561✔
843

844
        assert(link);
4,561✔
845

846
        /* Update up or down state of interfaces which depend on this interface's carrier state. */
847

848
        HASHMAP_FOREACH(l, link->bound_by_links) {
4,580✔
849
                r = link_handle_bound_to_list(l);
19✔
850
                if (r < 0)
19✔
851
                        return r;
×
852
        }
853

854
        return 0;
4,561✔
855
}
856

857
static int link_put_carrier(Link *link, Link *carrier, Hashmap **h) {
28✔
858
        int r;
28✔
859

860
        assert(link);
28✔
861
        assert(carrier);
28✔
862

863
        if (link == carrier)
28✔
864
                return 0;
865

866
        if (hashmap_get(*h, INT_TO_PTR(carrier->ifindex)))
28✔
867
                return 0;
868

869
        r = hashmap_ensure_put(h, NULL, INT_TO_PTR(carrier->ifindex), carrier);
24✔
870
        if (r < 0)
24✔
871
                return r;
872

873
        link_dirty(link);
24✔
874

875
        return 0;
24✔
876
}
877

878
static int link_new_bound_by_list(Link *link) {
2,589✔
879
        Manager *m;
2,589✔
880
        Link *carrier;
2,589✔
881
        int r;
2,589✔
882

883
        assert(link);
2,589✔
884
        assert(link->manager);
2,589✔
885

886
        m = link->manager;
2,589✔
887

888
        HASHMAP_FOREACH(carrier, m->links_by_index) {
18,242✔
889
                if (!carrier->network)
15,653✔
890
                        continue;
14,812✔
891

892
                if (strv_isempty(carrier->network->bind_carrier))
841✔
893
                        continue;
829✔
894

895
                if (strv_fnmatch(carrier->network->bind_carrier, link->ifname)) {
12✔
896
                        r = link_put_carrier(link, carrier, &link->bound_by_links);
7✔
897
                        if (r < 0)
7✔
898
                                return r;
×
899
                }
900
        }
901

902
        HASHMAP_FOREACH(carrier, link->bound_by_links) {
2,596✔
903
                r = link_put_carrier(carrier, link, &carrier->bound_to_links);
7✔
904
                if (r < 0)
7✔
905
                        return r;
×
906
        }
907

908
        return 0;
2,589✔
909
}
910

911
static int link_new_bound_to_list(Link *link) {
856✔
912
        Manager *m;
856✔
913
        Link *carrier;
856✔
914
        int r;
856✔
915

916
        assert(link);
856✔
917
        assert(link->manager);
856✔
918

919
        if (!link->network)
856✔
920
                return 0;
856✔
921

922
        if (strv_isempty(link->network->bind_carrier))
856✔
923
                return 0;
924

925
        m = link->manager;
7✔
926

927
        HASHMAP_FOREACH(carrier, m->links_by_index) {
60✔
928
                if (strv_fnmatch(link->network->bind_carrier, carrier->ifname)) {
46✔
929
                        r = link_put_carrier(link, carrier, &link->bound_to_links);
7✔
930
                        if (r < 0)
7✔
931
                                return r;
×
932
                }
933
        }
934

935
        HASHMAP_FOREACH(carrier, link->bound_to_links) {
14✔
936
                r = link_put_carrier(carrier, link, &carrier->bound_by_links);
7✔
937
                if (r < 0)
7✔
938
                        return r;
×
939
        }
940

941
        return 0;
7✔
942
}
943

944
static void link_free_bound_to_list(Link *link) {
3,644✔
945
        bool updated = false;
3,644✔
946
        Link *bound_to;
3,644✔
947

948
        assert(link);
3,644✔
949

950
        while ((bound_to = hashmap_steal_first(link->bound_to_links))) {
3,651✔
951
                updated = true;
7✔
952

953
                if (hashmap_remove(bound_to->bound_by_links, INT_TO_PTR(link->ifindex)))
7✔
954
                        link_dirty(bound_to);
7✔
955
        }
956

957
        if (updated)
3,644✔
958
                link_dirty(link);
6✔
959
}
3,644✔
960

961
static void link_free_bound_by_list(Link *link) {
845✔
962
        bool updated = false;
845✔
963
        Link *bound_by;
845✔
964

965
        assert(link);
845✔
966

967
        while ((bound_by = hashmap_steal_first(link->bound_by_links))) {
848✔
968
                updated = true;
3✔
969

970
                if (hashmap_remove(bound_by->bound_to_links, INT_TO_PTR(link->ifindex))) {
3✔
971
                        link_dirty(bound_by);
3✔
972
                        link_handle_bound_to_list(bound_by);
3✔
973
                }
974
        }
975

976
        if (updated)
845✔
977
                link_dirty(link);
3✔
978
}
845✔
979

980
static int link_append_to_master(Link *link) {
10,492✔
981
        Link *master;
10,492✔
982
        int r;
10,492✔
983

984
        assert(link);
10,492✔
985

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)
10,492✔
989
                return 0;
10,492✔
990

991
        r = set_ensure_put(&master->slaves, &link_hash_ops, link);
480✔
992
        if (r <= 0)
480✔
993
                return r;
994

995
        link_ref(link);
42✔
996
        return 0;
997
}
998

999
static void link_drop_from_master(Link *link) {
896✔
1000
        Link *master;
896✔
1001

1002
        assert(link);
896✔
1003

1004
        if (!link->manager)
896✔
1005
                return;
857✔
1006

1007
        if (link_get_master(link, &master) < 0)
896✔
1008
                return;
1009

1010
        link_unref(set_remove(master->slaves, link));
39✔
1011
}
1012

1013
static int link_drop_requests(Link *link) {
3,644✔
1014
        Request *req;
3,644✔
1015
        int ret = 0;
3,644✔
1016

1017
        assert(link);
3,644✔
1018
        assert(link->manager);
3,644✔
1019

1020
        ORDERED_SET_FOREACH(req, link->manager->request_queue) {
5,621✔
1021
                if (req->link != link)
1,977✔
1022
                        continue;
1,883✔
1023

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)
94✔
1028
                        switch (req->type) {
2✔
1029
                        case REQUEST_TYPE_ADDRESS: {
2✔
1030
                                Address *address = ASSERT_PTR(req->userdata);
2✔
1031

1032
                                if (address_get(link, address, NULL) < 0)
2✔
1033
                                        RET_GATHER(ret, address_remove(address, link));
×
1034
                                break;
1035
                        }
1036
                        case REQUEST_TYPE_NEIGHBOR: {
×
1037
                                Neighbor *neighbor = ASSERT_PTR(req->userdata);
×
1038

1039
                                if (neighbor_get(link, neighbor, NULL) < 0)
×
1040
                                        RET_GATHER(ret, neighbor_remove(neighbor, link));
×
1041
                                break;
1042
                        }
1043
                        case REQUEST_TYPE_NEXTHOP: {
×
1044
                                NextHop *nexthop = ASSERT_PTR(req->userdata);
×
1045

1046
                                if (nexthop_get_by_id(link->manager, nexthop->id, NULL) < 0)
×
1047
                                        RET_GATHER(ret, nexthop_remove(nexthop, link->manager));
×
1048
                                break;
1049
                        }
1050
                        case REQUEST_TYPE_ROUTE: {
×
1051
                                Route *route = ASSERT_PTR(req->userdata);
×
1052

1053
                                if (route_get(link->manager, route, NULL) < 0)
×
1054
                                        RET_GATHER(ret, route_remove(route, link->manager));
×
1055
                                break;
1056
                        }
1057
                        default:
92✔
1058
                                ;
94✔
1059
                        }
1060

1061
                request_detach(req);
94✔
1062
        }
1063

1064
        return ret;
3,644✔
1065
}
1066

1067
static Link *link_drop(Link *link) {
868✔
1068
        if (!link)
868✔
1069
                return NULL;
1070

1071
        assert(link->manager);
845✔
1072

1073
        link_set_state(link, LINK_STATE_LINGER);
845✔
1074

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. */
1077

1078
        (void) link_drop_requests(link);
845✔
1079

1080
        link_free_bound_to_list(link);
845✔
1081
        link_free_bound_by_list(link);
845✔
1082

1083
        link_clear_sr_iov_ifindices(link);
845✔
1084

1085
        link_drop_from_master(link);
845✔
1086

1087
        if (link->state_file)
845✔
1088
                (void) unlink(link->state_file);
845✔
1089

1090
        link_clean(link);
845✔
1091

1092
        STRV_FOREACH(n, link->alternative_names)
884✔
1093
                hashmap_remove(link->manager->links_by_name, *n);
39✔
1094
        hashmap_remove(link->manager->links_by_name, link->ifname);
845✔
1095

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);
845✔
1098

1099
        /* The following must be called at last. */
1100
        assert_se(hashmap_remove(link->manager->links_by_index, INT_TO_PTR(link->ifindex)) == link);
845✔
1101
        return link_unref(link);
845✔
1102
}
1103

1104
static int link_drop_unmanaged_config(Link *link) {
856✔
1105
        int r;
856✔
1106

1107
        assert(link);
856✔
1108
        assert(link->state == LINK_STATE_CONFIGURING);
856✔
1109
        assert(link->manager);
856✔
1110

1111
        r = link_drop_unmanaged_routes(link);
856✔
1112
        RET_GATHER(r, link_drop_unmanaged_nexthops(link));
856✔
1113
        RET_GATHER(r, link_drop_unmanaged_addresses(link));
856✔
1114
        RET_GATHER(r, link_drop_unmanaged_neighbors(link));
856✔
1115
        RET_GATHER(r, link_drop_unmanaged_routing_policy_rules(link));
856✔
1116

1117
        return r;
856✔
1118
}
1119

1120
static int link_drop_static_config(Link *link) {
2,610✔
1121
        int r;
2,610✔
1122

1123
        assert(link);
2,610✔
1124
        assert(link->manager);
2,610✔
1125

1126
        r = link_drop_static_routes(link);
2,610✔
1127
        RET_GATHER(r, link_drop_static_nexthops(link));
2,610✔
1128
        RET_GATHER(r, link_drop_static_addresses(link));
2,610✔
1129
        RET_GATHER(r, link_drop_static_neighbors(link));
2,610✔
1130
        RET_GATHER(r, link_drop_static_routing_policy_rules(link));
2,610✔
1131

1132
        return r;
2,610✔
1133
}
1134

1135
static int link_drop_dynamic_config(Link *link, Network *network) {
818✔
1136
        int r;
818✔
1137

1138
        assert(link);
818✔
1139
        assert(link->network);
818✔
1140

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. */
1143

1144
        r = link_drop_ndisc_config(link, network);
818✔
1145
        RET_GATHER(r, link_drop_radv_config(link, network)); /* Stop before dropping DHCP-PD prefixes. */
818✔
1146
        RET_GATHER(r, link_drop_ipv4ll_config(link, network)); /* Stop before DHCPv4 client. */
818✔
1147
        RET_GATHER(r, link_drop_dhcp4_config(link, network));
818✔
1148
        RET_GATHER(r, link_drop_dhcp6_config(link, network));
818✔
1149
        RET_GATHER(r, link_drop_dhcp_pd_config(link, network));
818✔
1150
        link->dhcp_server = sd_dhcp_server_unref(link->dhcp_server);
818✔
1151
        link->lldp_rx = sd_lldp_rx_unref(link->lldp_rx); /* TODO: keep the received neighbors. */
818✔
1152
        link->lldp_tx = sd_lldp_tx_unref(link->lldp_tx);
818✔
1153

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;
818✔
1158
        link->dhcp4_configured = false;
818✔
1159
        link->dhcp6_configured = false;
818✔
1160
        link->dhcp_pd_configured = false;
818✔
1161
        link->ndisc_configured = false;
818✔
1162

1163
        return r;
818✔
1164
}
1165

1166
static int link_configure(Link *link) {
856✔
1167
        int r;
856✔
1168

1169
        assert(link);
856✔
1170
        assert(link->network);
856✔
1171
        assert(link->state == LINK_STATE_INITIALIZED);
856✔
1172

1173
        link_set_state(link, LINK_STATE_CONFIGURING);
856✔
1174

1175
        r = link_drop_unmanaged_config(link);
856✔
1176
        if (r < 0)
856✔
1177
                return r;
1178

1179
        r = link_new_bound_to_list(link);
856✔
1180
        if (r < 0)
856✔
1181
                return r;
1182

1183
        r = link_request_traffic_control(link);
856✔
1184
        if (r < 0)
856✔
1185
                return r;
1186

1187
        r = link_configure_mtu(link);
856✔
1188
        if (r < 0)
856✔
1189
                return r;
1190

1191
        if (link->iftype == ARPHRD_CAN) {
856✔
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);
6✔
1194
                if (r < 0)
6✔
1195
                        return r;
1196

1197
                return link_request_to_activate(link);
6✔
1198
        }
1199

1200
        r = link_request_sr_iov_vfs(link);
850✔
1201
        if (r < 0)
850✔
1202
                return r;
1203

1204
        r = link_set_sysctl(link);
850✔
1205
        if (r < 0)
850✔
1206
                return r;
1207

1208
        r = link_request_to_set_mac(link, /* allow_retry = */ true);
850✔
1209
        if (r < 0)
850✔
1210
                return r;
1211

1212
        r = link_request_to_set_ipoib(link);
850✔
1213
        if (r < 0)
850✔
1214
                return r;
1215

1216
        r = link_request_to_set_flags(link);
850✔
1217
        if (r < 0)
850✔
1218
                return r;
1219

1220
        r = link_request_to_set_group(link);
850✔
1221
        if (r < 0)
850✔
1222
                return r;
1223

1224
        r = link_request_to_set_addrgen_mode(link);
850✔
1225
        if (r < 0)
850✔
1226
                return r;
1227

1228
        r = link_request_to_set_master(link);
850✔
1229
        if (r < 0)
850✔
1230
                return r;
1231

1232
        r = link_request_stacked_netdevs(link, _NETDEV_LOCAL_ADDRESS_TYPE_INVALID);
850✔
1233
        if (r < 0)
850✔
1234
                return r;
1235

1236
        r = link_request_to_set_bond(link);
850✔
1237
        if (r < 0)
850✔
1238
                return r;
1239

1240
        r = link_request_to_set_bridge(link);
850✔
1241
        if (r < 0)
850✔
1242
                return r;
1243

1244
        r = link_request_to_set_bridge_vlan(link);
850✔
1245
        if (r < 0)
850✔
1246
                return r;
1247

1248
        r = link_request_to_activate(link);
850✔
1249
        if (r < 0)
850✔
1250
                return r;
1251

1252
        r = ipv4ll_configure(link);
850✔
1253
        if (r < 0)
850✔
1254
                return r;
1255

1256
        r = link_request_dhcp4_client(link);
850✔
1257
        if (r < 0)
850✔
1258
                return r;
1259

1260
        r = link_request_dhcp6_client(link);
850✔
1261
        if (r < 0)
850✔
1262
                return r;
1263

1264
        r = link_request_ndisc(link);
850✔
1265
        if (r < 0)
850✔
1266
                return r;
1267

1268
        r = link_request_dhcp_server(link);
850✔
1269
        if (r < 0)
850✔
1270
                return r;
1271

1272
        r = link_request_radv(link);
850✔
1273
        if (r < 0)
850✔
1274
                return r;
1275

1276
        r = link_lldp_rx_configure(link);
850✔
1277
        if (r < 0)
850✔
1278
                return r;
1279

1280
        r = link_lldp_tx_configure(link);
850✔
1281
        if (r < 0)
850✔
1282
                return r;
1283

1284
        r = link_request_static_configs(link);
850✔
1285
        if (r < 0)
850✔
1286
                return r;
1287

1288
        if (!link_has_carrier(link))
850✔
1289
                return 0;
1290

1291
        return link_acquire_dynamic_conf(link);
255✔
1292
}
1293

1294
static int link_get_network(Link *link, Network **ret) {
4,746✔
1295
        Network *network;
4,746✔
1296
        int r;
4,746✔
1297

1298
        assert(link);
4,746✔
1299
        assert(link->manager);
4,746✔
1300
        assert(ret);
4,746✔
1301

1302
        ORDERED_HASHMAP_FOREACH(network, link->manager->networks) {
19,640✔
1303
                bool warn = false;
18,569✔
1304

1305
                r = net_match_config(
37,138✔
1306
                                &network->match,
18,569✔
1307
                                link->dev,
1308
                                &link->hw_addr,
18,569✔
1309
                                &link->permanent_hw_addr,
18,569✔
1310
                                link->driver,
18,569✔
1311
                                link->iftype,
18,569✔
1312
                                link->kind,
18,569✔
1313
                                link->ifname,
18,569✔
1314
                                link->alternative_names,
18,569✔
1315
                                link->wlan_iftype,
1316
                                link->ssid,
18,569✔
1317
                                &link->bssid);
18,569✔
1318
                if (r < 0)
18,569✔
1319
                        return r;
3,675✔
1320
                if (r == 0)
18,569✔
1321
                        continue;
14,894✔
1322

1323
                if (network->match.ifname && link->dev) {
3,675✔
1324
                        uint8_t name_assign_type = NET_NAME_UNKNOWN;
3,649✔
1325
                        const char *attr;
3,649✔
1326

1327
                        if (sd_device_get_sysattr_value(link->dev, "name_assign_type", &attr) >= 0)
3,649✔
1328
                                (void) safe_atou8(attr, &name_assign_type);
2,137✔
1329

1330
                        warn = name_assign_type == NET_NAME_ENUM;
3,649✔
1331
                }
1332

1333
                log_link_full(link, warn ? LOG_WARNING : LOG_DEBUG,
7,350✔
1334
                              "Found matching .network file%s: %s",
1335
                              warn ? ", based on potentially unpredictable interface name" : "",
1336
                              network->filename);
1337

1338
                if (network->unmanaged)
3,675✔
1339
                        return -ENOENT;
1340

1341
                *ret = network;
1,827✔
1342
                return 0;
1,827✔
1343
        }
1344

1345
        return log_link_debug_errno(link, SYNTHETIC_ERRNO(ENOENT), "No matching .network found.");
1,071✔
1346
}
1347

1348
static void link_enter_unmanaged(Link *link) {
2,919✔
1349
        assert(link);
2,919✔
1350

1351
        if (link->state == LINK_STATE_UNMANAGED)
2,919✔
1352
                return;
1353

1354
        log_link_full(link, link->state == LINK_STATE_INITIALIZED ? LOG_DEBUG : LOG_INFO,
1,949✔
1355
                      "Unmanaging interface.");
1356

1357
        (void) link_stop_engines(link, /* may_keep_dynamic = */ false);
1,943✔
1358
        (void) link_drop_requests(link);
1,943✔
1359
        (void) link_drop_static_config(link);
1,943✔
1360

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);
1,943✔
1366
        link_free_engines(link);
1,943✔
1367

1368
        link->network = network_unref(link->network);
1,943✔
1369
        link_set_state(link, LINK_STATE_UNMANAGED);
1,943✔
1370
}
1371

1372
static int link_managed_by_us(Link *link) {
7,377✔
1373
        int r;
7,377✔
1374

1375
        assert(link);
7,377✔
1376

1377
        if (!link->dev)
7,377✔
1378
                return true;
7,377✔
1379

1380
        const char *s;
7,260✔
1381
        r = sd_device_get_property_value(link->dev, "ID_NET_MANAGED_BY", &s);
7,260✔
1382
        if (r == -ENOENT)
7,260✔
1383
                return true;
1384
        if (r < 0)
42✔
1385
                return log_link_warning_errno(link, r, "Failed to get ID_NET_MANAGED_BY udev property: %m");
×
1386

1387
        if (streq(s, "io.systemd.Network"))
42✔
1388
                return true;
1389

1390
        if (link->state == LINK_STATE_UNMANAGED)
3✔
1391
                return false; /* Already in unmanaged state */
1392

1393
        log_link_debug(link, "Interface is requested to be managed by '%s', unmanaging the interface.", s);
1✔
1394
        link_set_state(link, LINK_STATE_UNMANAGED);
1✔
1395
        return false;
1396
}
1397

1398
int link_reconfigure_impl(Link *link, LinkReconfigurationFlag flags) {
5,654✔
1399
        Network *network = NULL;
5,654✔
1400
        int r;
5,654✔
1401

1402
        assert(link);
5,654✔
1403
        assert(link->manager);
5,654✔
1404

1405
        link_assign_netdev(link);
5,654✔
1406

1407
        if (link->manager->state != MANAGER_RUNNING)
5,654✔
1408
                return 0;
5,654✔
1409

1410
        if (IN_SET(link->state, LINK_STATE_PENDING, LINK_STATE_LINGER))
5,654✔
1411
                return 0;
1412

1413
        r = link_managed_by_us(link);
4,748✔
1414
        if (r <= 0)
4,748✔
1415
                return r;
1416

1417
        r = link_get_network(link, &network);
4,746✔
1418
        if (r == -ENOENT) {
4,746✔
1419
                link_enter_unmanaged(link);
2,919✔
1420
                return 0;
2,919✔
1421
        }
1422
        if (r < 0)
1,827✔
1423
                return r;
1424

1425
        if (link->network == network && !FLAGS_SET(flags, LINK_RECONFIGURE_UNCONDITIONALLY))
1,827✔
1426
                return 0;
1427

1428
        _cleanup_free_ char *joined = strv_join(network->dropins, ", ");
1,712✔
1429
        if (link->network)
856✔
1430
                log_link_info(link, "Reconfiguring with %s%s%s%s.",
594✔
1431
                              network->filename,
1432
                              isempty(joined) ? "" : " (dropins: ",
1433
                              joined,
1434
                              isempty(joined) ? "" : ")");
1435
        else
1436
                log_link_info(link, "Configuring with %s%s%s%s.",
1,974✔
1437
                              network->filename,
1438
                              isempty(joined) ? "" : " (dropins: ",
1439
                              joined,
1440
                              isempty(joined) ? "" : ")");
1441

1442
        /* Dropping configurations based on the old .network file. */
1443
        r = link_drop_requests(link);
856✔
1444
        if (r < 0)
856✔
1445
                return r;
1446

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);
856✔
1452

1453
        _cleanup_(network_unrefp) Network *old_network = TAKE_PTR(link->network);
856✔
1454

1455
        /* Then, apply new .network file */
1456
        link->network = network_ref(network);
856✔
1457

1458
        if (FLAGS_SET(network->keep_configuration, KEEP_CONFIGURATION_DYNAMIC) ||
856✔
1459
            !FLAGS_SET(flags, LINK_RECONFIGURE_CLEANLY)) {
849✔
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);
818✔
1464
                if (r < 0)
818✔
1465
                        return r;
1466
        } else {
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);
38✔
1470
                if (r < 0)
38✔
1471
                        return r;
1472

1473
                /* Free DHCP client and friends. */
1474
                link_free_engines(link);
38✔
1475
        }
1476

1477
        link_update_operstate(link, true);
856✔
1478
        link_dirty(link);
856✔
1479

1480
        link_set_state(link, LINK_STATE_INITIALIZED);
856✔
1481
        link->activated = false;
856✔
1482

1483
        r = link_configure(link);
856✔
1484
        if (r < 0)
856✔
1485
                return r;
×
1486

1487
        return 1;
1488
}
1489

1490
typedef struct LinkReconfigurationData {
1491
        Manager *manager;
1492
        Link *link;
1493
        LinkReconfigurationFlag flags;
1494
        sd_bus_message *message;
1495
        unsigned *counter;
1496
} LinkReconfigurationData;
1497

1498
static LinkReconfigurationData* link_reconfiguration_data_free(LinkReconfigurationData *data) {
1,361✔
1499
        if (!data)
1,361✔
1500
                return NULL;
1501

1502
        link_unref(data->link);
1,361✔
1503
        sd_bus_message_unref(data->message);
1,361✔
1504

1505
        return mfree(data);
1,361✔
1506
}
1507

1508
DEFINE_TRIVIAL_CLEANUP_FUNC(LinkReconfigurationData*, link_reconfiguration_data_free);
1,364✔
1509

1510
static void link_reconfiguration_data_destroy_callback(LinkReconfigurationData *data) {
1,361✔
1511
        int r;
1,361✔
1512

1513
        assert(data);
1,361✔
1514

1515
        if (data->message) {
1,361✔
1516
                if (data->counter) {
1,256✔
1517
                        assert(*data->counter > 0);
1,218✔
1518
                        (*data->counter)--;
1,218✔
1519
                }
1520

1521
                if (!data->counter || *data->counter <= 0) {
1,256✔
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
1525
                         * state. */
1526
                        (void) manager_clean_all(data->manager);
191✔
1527

1528
                        r = sd_bus_reply_method_return(data->message, NULL);
191✔
1529
                        if (r < 0)
191✔
1530
                                log_warning_errno(r, "Failed to reply for DBus method, ignoring: %m");
×
1531
                }
1532
        }
1533

1534
        link_reconfiguration_data_free(data);
1,361✔
1535
}
1,361✔
1536

1537
static int link_reconfigure_handler(sd_netlink *rtnl, sd_netlink_message *m, LinkReconfigurationData *data) {
1,361✔
1538
        Link *link = ASSERT_PTR(ASSERT_PTR(data)->link);
1,361✔
1539
        int r;
1,361✔
1540

1541
        r = link_getlink_handler_internal(rtnl, m, link, "Failed to update link state");
1,361✔
1542
        if (r <= 0)
1,361✔
1543
                return r;
1544

1545
        r = link_reconfigure_impl(link, data->flags);
1,360✔
1546
        if (r < 0) {
1,360✔
1547
                link_enter_failed(link);
×
1548
                return 0;
×
1549
        }
1550

1551
        return r;
1552
}
1553

1554
int link_reconfigure_full(Link *link, LinkReconfigurationFlag flags, sd_bus_message *message, unsigned *counter) {
1,364✔
1555
        _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *req = NULL;
1,364✔
1556
        _cleanup_(link_reconfiguration_data_freep) LinkReconfigurationData *data = NULL;
1,364✔
1557
        int r;
1,364✔
1558

1559
        assert(link);
1,364✔
1560
        assert(link->manager);
1,364✔
1561
        assert(link->manager->rtnl);
1,364✔
1562

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))
1,364✔
1567
                return 0; /* 0 means no-op. */
1568

1569
        data = new(LinkReconfigurationData, 1);
1,361✔
1570
        if (!data) {
1,361✔
1571
                r = -ENOMEM;
×
1572
                goto failed;
×
1573
        }
1574

1575
        *data = (LinkReconfigurationData) {
2,722✔
1576
                .manager = link->manager,
1,361✔
1577
                .link = link_ref(link),
1,361✔
1578
                .flags = flags,
1579
                .message = sd_bus_message_ref(message), /* message may be NULL, but _ref() works fine. */
1,361✔
1580
                .counter = counter,
1581
        };
1582

1583
        r = sd_rtnl_message_new_link(link->manager->rtnl, &req, RTM_GETLINK, link->ifindex);
1,361✔
1584
        if (r < 0)
1,361✔
1585
                goto failed;
×
1586

1587
        r = netlink_call_async(link->manager->rtnl, NULL, req,
1,361✔
1588
                               link_reconfigure_handler,
1589
                               link_reconfiguration_data_destroy_callback, data);
1590
        if (r < 0)
1,361✔
1591
                goto failed;
×
1592

1593
        TAKE_PTR(data);
1,361✔
1594
        if (counter)
1,361✔
1595
                (*counter)++;
1,218✔
1596

1597
        if (link->state == LINK_STATE_FAILED)
1,361✔
1598
                link_set_state(link, LINK_STATE_INITIALIZED);
1✔
1599

1600
        return 1; /* 1 means the interface will be reconfigured, and bus method will be replied later. */
1601

1602
failed:
1603
        log_link_warning_errno(link, r, "Failed to reconfigure interface: %m");
×
1604
        link_enter_failed(link);
×
1605
        return r;
1606
}
1607

1608
static int link_initialized_and_synced(Link *link) {
2,599✔
1609
        int r;
2,599✔
1610

1611
        assert(link);
2,599✔
1612
        assert(link->manager);
2,599✔
1613

1614
        if (link->state == LINK_STATE_PENDING) {
2,599✔
1615
                log_link_debug(link, "Link state is up-to-date");
2,589✔
1616
                link_set_state(link, LINK_STATE_INITIALIZED);
2,589✔
1617

1618
                r = link_new_bound_by_list(link);
2,589✔
1619
                if (r < 0)
2,589✔
1620
                        return r;
1621

1622
                r = link_handle_bound_by_list(link);
2,589✔
1623
                if (r < 0)
2,589✔
1624
                        return r;
1625
        }
1626

1627
        return link_reconfigure_impl(link, /* flags = */ 0);
2,599✔
1628
}
1629

1630
static int link_initialized_handler(sd_netlink *rtnl, sd_netlink_message *m, Link *link) {
2,525✔
1631
        int r;
2,525✔
1632

1633
        r = link_getlink_handler_internal(rtnl, m, link, "Failed to wait for the interface to be initialized");
2,525✔
1634
        if (r <= 0)
2,525✔
1635
                return r;
1636

1637
        r = link_initialized_and_synced(link);
2,524✔
1638
        if (r < 0)
2,524✔
1639
                link_enter_failed(link);
×
1640

1641
        return 0;
1642
}
1643

1644
static int link_initialized(Link *link, sd_device *device) {
2,629✔
1645
        int r;
2,629✔
1646

1647
        assert(link);
2,629✔
1648
        assert(device);
2,629✔
1649

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);
2,629✔
1653

1654
        r = link_managed_by_us(link);
2,629✔
1655
        if (r <= 0)
2,629✔
1656
                return r;
1657

1658
        if (link->dhcp_client) {
2,628✔
1659
                r = sd_dhcp_client_attach_device(link->dhcp_client, link->dev);
×
1660
                if (r < 0)
×
1661
                        log_link_warning_errno(link, r, "Failed to attach device to DHCPv4 client, ignoring: %m");
×
1662
        }
1663

1664
        if (link->dhcp6_client) {
2,628✔
1665
                r = sd_dhcp6_client_attach_device(link->dhcp6_client, link->dev);
×
1666
                if (r < 0)
×
1667
                        log_link_warning_errno(link, r, "Failed to attach device to DHCPv6 client, ignoring: %m");
×
1668
        }
1669

1670
        r = link_set_sr_iov_ifindices(link);
2,628✔
1671
        if (r < 0)
2,628✔
1672
                log_link_warning_errno(link, r, "Failed to manage SR-IOV PF and VF ports, ignoring: %m");
×
1673

1674
        if (link->state != LINK_STATE_PENDING)
2,628✔
1675
                return link_reconfigure(link, /* flags = */ 0);
103✔
1676

1677
        log_link_debug(link, "udev initialized link");
2,525✔
1678

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 */
1683

1684
        return link_call_getlink(link, link_initialized_handler);
2,525✔
1685
}
1686

1687
int link_check_initialized(Link *link) {
2,760✔
1688
        _cleanup_(sd_device_unrefp) sd_device *device = NULL;
2,760✔
1689
        int r;
2,760✔
1690

1691
        assert(link);
2,760✔
1692

1693
        if (!udev_available())
2,760✔
1694
                return link_initialized_and_synced(link);
75✔
1695

1696
        /* udev should be around */
1697
        r = sd_device_new_from_ifindex(&device, link->ifindex);
2,685✔
1698
        if (r < 0) {
2,685✔
1699
                log_link_debug_errno(link, r, "Could not find device, waiting for device initialization: %m");
3✔
1700
                return 0;
3✔
1701
        }
1702

1703
        r = device_is_processed(device);
2,682✔
1704
        if (r < 0)
2,682✔
1705
                return log_link_warning_errno(link, r, "Could not determine whether the device is processed by udevd: %m");
×
1706
        if (r == 0) {
2,682✔
1707
                /* not yet ready */
1708
                log_link_debug(link, "link pending udev initialization...");
923✔
1709
                return 0;
923✔
1710
        }
1711

1712
        r = device_is_renaming(device);
1,759✔
1713
        if (r < 0)
1,759✔
1714
                return log_link_warning_errno(link, r, "Failed to determine the device is being renamed: %m");
×
1715
        if (r > 0) {
1,759✔
1716
                log_link_debug(link, "Interface is being renamed, pending initialization.");
×
1717
                return 0;
×
1718
        }
1719

1720
        return link_initialized(link, device);
1,759✔
1721
}
1722

1723
int manager_udev_process_link(Manager *m, sd_device *device, sd_device_action_t action) {
1,904✔
1724
        int r, ifindex;
1,904✔
1725
        Link *link;
1,904✔
1726

1727
        assert(m);
1,904✔
1728
        assert(device);
1,904✔
1729

1730
        r = sd_device_get_ifindex(device, &ifindex);
1,904✔
1731
        if (r < 0)
1,904✔
1732
                return log_device_debug_errno(device, r, "Failed to get ifindex: %m");
×
1733

1734
        r = link_get_by_index(m, ifindex, &link);
1,904✔
1735
        if (r < 0) {
1,904✔
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);
610✔
1738
                return 0;
610✔
1739
        }
1740

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) {
1,294✔
1744
                link->dev = sd_device_unref(link->dev);
415✔
1745
                return 0;
415✔
1746
        }
1747

1748
        r = device_is_renaming(device);
879✔
1749
        if (r < 0)
879✔
1750
                return log_device_debug_errno(device, r, "Failed to determine if the device is renaming or not: %m");
×
1751
        if (r > 0) {
879✔
1752
                log_device_debug(device, "Device is renaming, waiting for the interface to be renamed.");
9✔
1753
                /* TODO:
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. */
1756
                return 0;
9✔
1757
        }
1758

1759
        r = link_initialized(link, device);
870✔
1760
        if (r < 0)
870✔
1761
                link_enter_failed(link);
×
1762

1763
        return 0;
1764
}
1765

1766
static int link_carrier_gained(Link *link) {
1,247✔
1767
        LinkReconfigurationFlag flags = 0;
1,247✔
1768
        int r;
1,247✔
1769

1770
        assert(link);
1,247✔
1771

1772
        log_link_info(link, "Gained carrier");
1,247✔
1773

1774
        r = event_source_disable(link->carrier_lost_timer);
1,247✔
1775
        if (r < 0)
1,247✔
1776
                log_link_warning_errno(link, r, "Failed to disable carrier lost timer, ignoring: %m");
×
1777

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);
1,247✔
1782
        if (r < 0)
1,247✔
1783
                return r;
1784

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.
1789
         *
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.
1796
         *
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))
1,247✔
1800
                flags |= LINK_RECONFIGURE_UNCONDITIONALLY | LINK_RECONFIGURE_CLEANLY;
×
1801
        link->previous_ssid = mfree(link->previous_ssid);
1,247✔
1802

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.
1805
         */
1806
        if (IN_SET(link->wlan_iftype, NL80211_IFTYPE_AP, NL80211_IFTYPE_P2P_GO)) {
1,247✔
1807
                r = link_get_wlan_interface(link);
×
1808
                if (r < 0)
×
1809
                        return r;
1810
        }
1811

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);
1,247✔
1816
        if (r != 0)
1,247✔
1817
                return r;
1818

1819
        if (link->iftype == ARPHRD_CAN)
1,247✔
1820
                /* let's shortcut things for CAN which doesn't need most of what's done below. */
1821
                return 0;
1822

1823
        if (IN_SET(link->state, LINK_STATE_CONFIGURING, LINK_STATE_CONFIGURED)) {
1,243✔
1824
                r = link_acquire_dynamic_conf(link);
682✔
1825
                if (r < 0)
682✔
1826
                        return r;
1827

1828
                r = link_request_static_configs(link);
682✔
1829
                if (r < 0)
682✔
1830
                        return r;
×
1831
        }
1832

1833
        return 0;
1834
}
1835

1836
static int link_carrier_lost_impl(Link *link) {
725✔
1837
        int ret = 0;
725✔
1838

1839
        assert(link);
725✔
1840

1841
        link->previous_ssid = mfree(link->previous_ssid);
725✔
1842

1843
        ret = link_handle_bound_by_list(link);
725✔
1844

1845
        if (IN_SET(link->state, LINK_STATE_FAILED, LINK_STATE_LINGER))
725✔
1846
                return ret;
725✔
1847

1848
        if (!link->network)
725✔
1849
                return ret;
1850

1851
        RET_GATHER(ret, link_stop_engines(link, /* may_keep_dynamic = */ false));
667✔
1852
        RET_GATHER(ret, link_drop_static_config(link));
667✔
1853

1854
        return ret;
1855
}
1856

1857
static int link_carrier_lost_handler(sd_event_source *s, uint64_t usec, void *userdata) {
×
1858
        Link *link = ASSERT_PTR(userdata);
×
1859
        int r;
×
1860

1861
        r = link_carrier_lost_impl(link);
×
1862
        if (r < 0) {
×
1863
                log_link_warning_errno(link, r, "Failed to process carrier lost event: %m");
×
1864
                link_enter_failed(link);
×
1865
        }
1866

1867
        return 0;
×
1868
}
1869

1870
static int link_carrier_lost(Link *link) {
741✔
1871
        uint16_t dhcp_mtu;
741✔
1872
        usec_t usec;
741✔
1873

1874
        assert(link);
741✔
1875

1876
        log_link_info(link, "Lost carrier");
741✔
1877

1878
        if (link->iftype == ARPHRD_CAN)
741✔
1879
                /* let's shortcut things for CAN which doesn't need most of what's done below. */
1880
                usec = 0;
1881

1882
        else if (!link->network)
737✔
1883
                usec = 0;
1884

1885
        else if (link->network->ignore_carrier_loss_set)
679✔
1886
                /* If IgnoreCarrierLoss= is explicitly specified, then use the specified value. */
1887
                usec = link->network->ignore_carrier_loss_usec;
12✔
1888

1889
        else if (link->network->bond && link->wlan_iftype > 0)
667✔
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;
1893

1894
        else if (link->network->dhcp_use_mtu &&
667✔
1895
                 link->dhcp_lease &&
4✔
1896
                 sd_dhcp_lease_get_mtu(link->dhcp_lease, &dhcp_mtu) >= 0 &&
2✔
1897
                 dhcp_mtu != link->original_mtu)
1✔
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;
1902

1903
        else
1904
                /* Otherwise, use the implied default value. */
1905
                usec = link->network->ignore_carrier_loss_usec;
666✔
1906

1907
        if (usec == USEC_INFINITY)
678✔
1908
                return 0;
741✔
1909

1910
        if (usec == 0)
726✔
1911
                return link_carrier_lost_impl(link);
725✔
1912

1913
        return event_reset_time_relative(link->manager->event,
1✔
1914
                                         &link->carrier_lost_timer,
1915
                                         CLOCK_BOOTTIME,
1916
                                         usec,
1917
                                         0,
1918
                                         link_carrier_lost_handler,
1919
                                         link,
1920
                                         0,
1921
                                         "link-carrier-loss",
1922
                                         true);
1923
}
1924

1925
static int link_admin_state_up(Link *link) {
1,219✔
1926
        assert(link);
1,219✔
1927

1928
        /* This is called every time an interface admin state changes to up;
1929
         * specifically, when IFF_UP flag changes from unset to set. */
1930

1931
        log_link_info(link, "Link UP");
1,219✔
1932

1933
        if (!link->network)
1,219✔
1934
                return 0;
1935

1936
        if (link->activated && link->network->activation_policy == ACTIVATION_POLICY_ALWAYS_DOWN) {
656✔
1937
                log_link_info(link, "Activation policy is \"always-down\", forcing link down.");
4✔
1938
                return link_request_to_bring_up_or_down(link, /* up = */ false);
4✔
1939
        }
1940

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);
652✔
1944

1945
        return 0;
652✔
1946
}
1947

1948
static int link_admin_state_down(Link *link) {
711✔
1949
        assert(link);
711✔
1950

1951
        log_link_info(link, "Link DOWN");
711✔
1952

1953
        link_forget_nexthops(link);
711✔
1954
        link_forget_routes(link);
711✔
1955

1956
        if (!link->network)
711✔
1957
                return 0;
1958

1959
        if (link->activated && link->network->activation_policy == ACTIVATION_POLICY_ALWAYS_UP) {
655✔
1960
                log_link_info(link, "Activation policy is \"always-up\", forcing link up.");
9✔
1961
                return link_request_to_bring_up_or_down(link, /* up = */ true);
9✔
1962
        }
1963

1964
        return 0;
1965
}
1966

1967
static bool link_is_enslaved(Link *link) {
6,955✔
1968
        if (link->flags & IFF_SLAVE)
6,955✔
1969
                return true;
1970

1971
        if (link->master_ifindex > 0)
6,903✔
1972
                return true;
220✔
1973

1974
        return false;
1975
}
1976

1977
void link_update_operstate(Link *link, bool also_update_master) {
13,237✔
1978
        LinkOperationalState operstate;
13,237✔
1979
        LinkCarrierState carrier_state;
13,237✔
1980
        LinkAddressState ipv4_address_state, ipv6_address_state, address_state;
13,237✔
1981
        LinkOnlineState online_state;
13,237✔
1982
        _cleanup_strv_free_ char **p = NULL;
13,237✔
1983
        bool changed = false;
13,237✔
1984

1985
        assert(link);
13,237✔
1986

1987
        if (link->kernel_operstate == IF_OPER_DORMANT)
13,237✔
1988
                carrier_state = LINK_CARRIER_STATE_DORMANT;
1989
        else if (link_has_carrier(link)) {
13,237✔
1990
                if (link_is_enslaved(link))
6,955✔
1991
                        carrier_state = LINK_CARRIER_STATE_ENSLAVED;
1992
                else
1993
                        carrier_state = LINK_CARRIER_STATE_CARRIER;
1994
        } else if (link->flags & IFF_UP)
6,282✔
1995
                carrier_state = LINK_CARRIER_STATE_NO_CARRIER;
1996
        else
1997
                carrier_state = LINK_CARRIER_STATE_OFF;
1998

1999
        if (carrier_state >= LINK_CARRIER_STATE_CARRIER) {
2000
                Link *slave;
6,955✔
2001

2002
                SET_FOREACH(slave, link->slaves) {
7,210✔
2003
                        link_update_operstate(slave, false);
255✔
2004

2005
                        if (slave->carrier_state < LINK_CARRIER_STATE_CARRIER)
255✔
2006
                                carrier_state = LINK_CARRIER_STATE_DEGRADED_CARRIER;
77✔
2007
                }
2008
        }
2009

2010
        link_get_address_states(link, &ipv4_address_state, &ipv6_address_state, &address_state);
13,237✔
2011

2012
        /* Mapping of address and carrier state vs operational state
2013
         *                                                     carrier 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
2019
         */
2020

2021
        if (carrier_state == LINK_CARRIER_STATE_DEGRADED_CARRIER && address_state == LINK_ADDRESS_STATE_ROUTABLE)
13,237✔
2022
                operstate = LINK_OPERSTATE_ROUTABLE;
2023
        else if (carrier_state == LINK_CARRIER_STATE_DEGRADED_CARRIER && address_state == LINK_ADDRESS_STATE_DEGRADED)
35✔
2024
                operstate = LINK_OPERSTATE_DEGRADED;
2025
        else if (carrier_state < LINK_CARRIER_STATE_CARRIER || address_state == LINK_ADDRESS_STATE_OFF)
13,199✔
2026
                operstate = (LinkOperationalState) carrier_state;
2027
        else if (address_state == LINK_ADDRESS_STATE_ROUTABLE)
4,478✔
2028
                operstate = LINK_OPERSTATE_ROUTABLE;
2029
        else if (carrier_state == LINK_CARRIER_STATE_CARRIER)
1,328✔
2030
                operstate = LINK_OPERSTATE_DEGRADED;
2031
        else
2032
                operstate = LINK_OPERSTATE_ENSLAVED;
17✔
2033

2034
        LinkOperationalStateRange req;
13,237✔
2035
        link_required_operstate_for_online(link, &req);
13,237✔
2036

2037
        /* Only determine online state for managed links with RequiredForOnline=yes */
2038
        if (!link->network || !link->network->required_for_online)
13,237✔
2039
                online_state = _LINK_ONLINE_STATE_INVALID;
2040

2041
        else if (!operational_state_is_in_range(operstate, &req))
8,753✔
2042
                online_state = LINK_ONLINE_STATE_OFFLINE;
2043

2044
        else {
2045
                AddressFamily required_family = link_required_family_for_online(link);
4,412✔
2046
                bool needs_ipv4 = required_family & ADDRESS_FAMILY_IPV4;
4,412✔
2047
                bool needs_ipv6 = required_family & ADDRESS_FAMILY_IPV6;
4,412✔
2048

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;
4,412✔
2053

2054
                if (req.min >= LINK_OPERSTATE_DEGRADED) {
4,412✔
2055
                        if (needs_ipv4 && ipv4_address_state < LINK_ADDRESS_STATE_DEGRADED)
4,216✔
2056
                                online_state = LINK_ONLINE_STATE_OFFLINE;
×
2057
                        if (needs_ipv6 && ipv6_address_state < LINK_ADDRESS_STATE_DEGRADED)
4,216✔
2058
                                online_state = LINK_ONLINE_STATE_OFFLINE;
×
2059
                }
2060

2061
                if (req.min >= LINK_OPERSTATE_ROUTABLE) {
4,412✔
2062
                        if (needs_ipv4 && ipv4_address_state < LINK_ADDRESS_STATE_ROUTABLE)
4✔
2063
                                online_state = LINK_ONLINE_STATE_OFFLINE;
×
2064
                        if (needs_ipv6 && ipv6_address_state < LINK_ADDRESS_STATE_ROUTABLE)
4✔
2065
                                online_state = LINK_ONLINE_STATE_OFFLINE;
3✔
2066
                }
2067
        }
2068

2069
        if (link->carrier_state != carrier_state) {
13,237✔
2070
                link->carrier_state = carrier_state;
4,599✔
2071
                changed = true;
4,599✔
2072
                if (strv_extend(&p, "CarrierState") < 0)
4,599✔
2073
                        log_oom();
×
2074
        }
2075

2076
        if (link->address_state != address_state) {
13,237✔
2077
                link->address_state = address_state;
1,941✔
2078
                changed = true;
1,941✔
2079
                if (strv_extend(&p, "AddressState") < 0)
1,941✔
2080
                        log_oom();
×
2081
        }
2082

2083
        if (link->ipv4_address_state != ipv4_address_state) {
13,237✔
2084
                link->ipv4_address_state = ipv4_address_state;
934✔
2085
                changed = true;
934✔
2086
                if (strv_extend(&p, "IPv4AddressState") < 0)
934✔
2087
                        log_oom();
×
2088
        }
2089

2090
        if (link->ipv6_address_state != ipv6_address_state) {
13,237✔
2091
                link->ipv6_address_state = ipv6_address_state;
1,668✔
2092
                changed = true;
1,668✔
2093
                if (strv_extend(&p, "IPv6AddressState") < 0)
1,668✔
2094
                        log_oom();
×
2095
        }
2096

2097
        if (link->operstate != operstate) {
13,237✔
2098
                link->operstate = operstate;
5,572✔
2099
                changed = true;
5,572✔
2100
                if (strv_extend(&p, "OperationalState") < 0)
5,572✔
2101
                        log_oom();
×
2102
        }
2103

2104
        if (link->online_state != online_state) {
13,237✔
2105
                link->online_state = online_state;
1,849✔
2106
                changed = true;
1,849✔
2107
                if (strv_extend(&p, "OnlineState") < 0)
1,849✔
2108
                        log_oom();
×
2109
        }
2110

2111
        if (p)
13,237✔
2112
                link_send_changed_strv(link, p);
7,823✔
2113
        if (changed)
13,237✔
2114
                link_dirty(link);
7,823✔
2115

2116
        if (also_update_master) {
13,237✔
2117
                Link *master;
12,982✔
2118

2119
                if (link_get_master(link, &master) >= 0)
12,982✔
2120
                        link_update_operstate(master, true);
161✔
2121
        }
2122
}
13,237✔
2123

2124
bool link_has_carrier(Link *link) {
39,748✔
2125
        assert(link);
39,748✔
2126
        return netif_has_carrier(link->kernel_operstate, link->flags);
39,748✔
2127
}
2128

2129
bool link_multicast_enabled(Link *link) {
9,648✔
2130
        assert(link);
9,648✔
2131

2132
        /* If Multicast= is specified, use the value. */
2133
        if (link->network && link->network->multicast >= 0)
9,648✔
2134
                return link->network->multicast;
×
2135

2136
        /* Otherwise, return the current state. */
2137
        return FLAGS_SET(link->flags, IFF_MULTICAST);
9,648✔
2138
}
2139

2140
#define FLAG_STRING(string, flag, old, new)                      \
2141
        (((old ^ new) & flag)                                    \
2142
         ? ((old & flag) ? (" -" string) : (" +" string))        \
2143
         : "")
2144

2145
static int link_update_flags(Link *link, sd_netlink_message *message) {
10,492✔
2146
        bool link_was_admin_up, had_carrier;
10,492✔
2147
        uint8_t operstate;
10,492✔
2148
        unsigned flags;
10,492✔
2149
        int r;
10,492✔
2150

2151
        assert(link);
10,492✔
2152
        assert(message);
10,492✔
2153

2154
        r = sd_rtnl_message_link_get_flags(message, &flags);
10,492✔
2155
        if (r < 0)
10,492✔
2156
                return log_link_debug_errno(link, r, "rtnl: failed to read link flags: %m");
×
2157

2158
        r = sd_netlink_message_read_u8(message, IFLA_OPERSTATE, &operstate);
10,492✔
2159
        if (r == -ENODATA)
10,492✔
2160
                /* If we got a message without operstate, assume the state was unchanged. */
2161
                operstate = link->kernel_operstate;
×
2162
        else if (r < 0)
10,492✔
2163
                return log_link_debug_errno(link, r, "rtnl: failed to read operational state: %m");
×
2164

2165
        if (link->flags == flags && link->kernel_operstate == operstate)
10,492✔
2166
                return 0;
2167

2168
        if (link->flags != flags) {
4,586✔
2169
                unsigned unknown_flags, unknown_flags_added, unknown_flags_removed;
4,586✔
2170

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",
12,597✔
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));
2191

2192
                unknown_flags = ~(IFF_LOOPBACK | IFF_MASTER | IFF_SLAVE | IFF_UP |
4,586✔
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);
4,586✔
2199
                unknown_flags_removed = ((link->flags ^ flags) & link->flags & unknown_flags);
4,586✔
2200

2201
                if (unknown_flags_added)
4,586✔
2202
                        log_link_debug(link, "Unknown link flags gained, ignoring: %#.5x", unknown_flags_added);
×
2203

2204
                if (unknown_flags_removed)
4,586✔
2205
                        log_link_debug(link, "Unknown link flags lost, ignoring: %#.5x", unknown_flags_removed);
×
2206
        }
2207

2208
        link_was_admin_up = link->flags & IFF_UP;
4,586✔
2209
        had_carrier = link_has_carrier(link);
4,586✔
2210

2211
        link->flags = flags;
4,586✔
2212
        link->kernel_operstate = operstate;
4,586✔
2213

2214
        link_update_operstate(link, true);
4,586✔
2215

2216
        r = 0;
4,586✔
2217

2218
        if (!link_was_admin_up && (link->flags & IFF_UP))
4,586✔
2219
                r = link_admin_state_up(link);
1,219✔
2220
        else if (link_was_admin_up && !(link->flags & IFF_UP))
1,104✔
2221
                r = link_admin_state_down(link);
711✔
2222
        if (r < 0)
1,930✔
2223
                return r;
2224

2225
        if (!had_carrier && link_has_carrier(link))
4,586✔
2226
                r = link_carrier_gained(link);
1,247✔
2227
        else if (had_carrier && !link_has_carrier(link))
764✔
2228
                link_carrier_lost(link);
741✔
2229
        if (r < 0)
4,586✔
2230
                return r;
×
2231

2232
        return 0;
2233
}
2234

2235
static int link_update_master(Link *link, sd_netlink_message *message) {
10,492✔
2236
        int master_ifindex, r;
10,492✔
2237

2238
        assert(link);
10,492✔
2239
        assert(message);
10,492✔
2240

2241
        r = sd_netlink_message_read_u32(message, IFLA_MASTER, (uint32_t*) &master_ifindex);
10,492✔
2242
        if (r == -ENODATA)
10,492✔
2243
                master_ifindex = 0; /* no master interface */
10,002✔
2244
        else if (r < 0)
490✔
2245
                return log_link_debug_errno(link, r, "rtnl: failed to read master ifindex: %m");
×
2246

2247
        if (master_ifindex == link->ifindex)
10,492✔
2248
                master_ifindex = 0;
7✔
2249

2250
        if (master_ifindex != link->master_ifindex) {
10,492✔
2251
                if (link->master_ifindex == 0)
51✔
2252
                        log_link_debug(link, "Attached to master interface: %i", master_ifindex);
42✔
2253
                else if (master_ifindex == 0)
9✔
2254
                        log_link_debug(link, "Detached from master interface: %i", link->master_ifindex);
9✔
2255
                else
2256
                        log_link_debug(link, "Master interface changed: %i %s %i", link->master_ifindex,
×
2257
                                       glyph(GLYPH_ARROW_RIGHT), master_ifindex);
2258

2259
                link_drop_from_master(link);
51✔
2260
                link->master_ifindex = master_ifindex;
51✔
2261

2262
                /* Updating master ifindex may cause operational state change, e.g. carrier <-> enslaved */
2263
                link_dirty(link);
51✔
2264
        }
2265

2266
        r = link_append_to_master(link);
10,492✔
2267
        if (r < 0)
10,492✔
2268
                return log_link_debug_errno(link, r, "Failed to append link to master: %m");
×
2269

2270
        return 0;
2271
}
2272

2273
static int link_update_driver(Link *link, sd_netlink_message *message) {
10,492✔
2274
        int r;
10,492✔
2275

2276
        assert(link);
10,492✔
2277
        assert(link->manager);
10,492✔
2278
        assert(message);
10,492✔
2279

2280
        /* Driver is already read. Assuming the driver is never changed. */
2281
        if (link->ethtool_driver_read)
10,492✔
2282
                return 0;
2283

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)
5,631✔
2288
                return 0;
2289

2290
        link->ethtool_driver_read = true;
2,590✔
2291

2292
        r = ethtool_get_driver(&link->manager->ethtool_fd, link->ifname, &link->driver);
2,590✔
2293
        if (r < 0) {
2,590✔
2294
                log_link_debug_errno(link, r, "Failed to get driver, continuing without: %m");
489✔
2295
                return 0;
489✔
2296
        }
2297

2298
        log_link_debug(link, "Found driver: %s", strna(link->driver));
2,101✔
2299

2300
        if (streq_ptr(link->driver, "dsa")) {
2,101✔
2301
                uint32_t dsa_master_ifindex = 0;
×
2302

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");
×
2306

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;
×
2311
                }
2312

2313
                link->dsa_master_ifindex = (int) dsa_master_ifindex;
×
2314
        }
2315

2316
        return 1; /* needs reconfigure */
2317
}
2318

2319
static int link_update_permanent_hardware_address_from_ethtool(Link *link, sd_netlink_message *message) {
5,263✔
2320
        int r;
5,263✔
2321

2322
        assert(link);
5,263✔
2323
        assert(link->manager);
5,263✔
2324
        assert(message);
5,263✔
2325

2326
        if (link->ethtool_permanent_hw_addr_read)
5,263✔
2327
                return 0;
2328

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)
5,263✔
2333
                return 0;
2334

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);
2,450✔
2337
        if (r == -ENODATA)
2,450✔
2338
                return 0;
2339
        if (r < 0)
2,307✔
2340
                return log_link_debug_errno(link, r, "Failed to read IFLA_ADDRESS attribute: %m");
×
2341

2342
        link->ethtool_permanent_hw_addr_read = true;
2,307✔
2343

2344
        r = ethtool_get_permanent_hw_addr(&link->manager->ethtool_fd, link->ifname, &link->permanent_hw_addr);
2,307✔
2345
        if (r < 0)
2,307✔
2346
                log_link_debug_errno(link, r, "Permanent hardware address not found, continuing without: %m");
×
2347

2348
        return 0;
2349
}
2350

2351
static int link_update_permanent_hardware_address(Link *link, sd_netlink_message *message) {
10,492✔
2352
        int r;
10,492✔
2353

2354
        assert(link);
10,492✔
2355
        assert(link->manager);
10,492✔
2356
        assert(message);
10,492✔
2357

2358
        if (link->permanent_hw_addr.length > 0)
10,492✔
2359
                return 0;
2360

2361
        r = netlink_message_read_hw_addr(message, IFLA_PERM_ADDRESS, &link->permanent_hw_addr);
5,485✔
2362
        if (r < 0) {
5,485✔
2363
                if (r != -ENODATA)
5,263✔
2364
                        return log_link_debug_errno(link, r, "Failed to read IFLA_PERM_ADDRESS attribute: %m");
×
2365

2366
                /* Fallback to ethtool for kernels older than v5.6 (f74877a5457d34d604dba6dbbb13c4c05bac8b93). */
2367
                r = link_update_permanent_hardware_address_from_ethtool(link, message);
5,263✔
2368
                if (r < 0)
5,263✔
2369
                        return r;
2370
        }
2371

2372
        if (link->permanent_hw_addr.length > 0)
5,485✔
2373
                log_link_debug(link, "Saved permanent hardware address: %s", HW_ADDR_TO_STR(&link->permanent_hw_addr));
2,529✔
2374

2375
        return 1; /* needs reconfigure */
2376
}
2377

2378
static int link_update_hardware_address(Link *link, sd_netlink_message *message) {
10,492✔
2379
        struct hw_addr_data addr;
10,492✔
2380
        int r;
10,492✔
2381

2382
        assert(link);
10,492✔
2383
        assert(message);
10,492✔
2384

2385
        r = netlink_message_read_hw_addr(message, IFLA_BROADCAST, &link->bcast_addr);
10,492✔
2386
        if (r < 0 && r != -ENODATA)
10,492✔
2387
                return log_link_debug_errno(link, r, "rtnl: failed to read broadcast address: %m");
×
2388

2389
        r = netlink_message_read_hw_addr(message, IFLA_ADDRESS, &addr);
10,492✔
2390
        if (r == -ENODATA)
10,492✔
2391
                return 0;
2392
        if (r < 0)
10,288✔
2393
                return log_link_debug_errno(link, r, "rtnl: failed to read hardware address: %m");
×
2394

2395
        if (hw_addr_equal(&link->hw_addr, &addr))
10,288✔
2396
                return 0;
2397

2398
        if (link->hw_addr.length == 0)
2,891✔
2399
                log_link_debug(link, "Saved hardware address: %s", HW_ADDR_TO_STR(&addr));
2,700✔
2400
        else {
2401
                log_link_debug(link, "Hardware address is changed: %s %s %s",
191✔
2402
                               HW_ADDR_TO_STR(&link->hw_addr),
2403
                               glyph(GLYPH_ARROW_RIGHT),
2404
                               HW_ADDR_TO_STR(&addr));
2405

2406
                hashmap_remove_value(link->manager->links_by_hw_addr, &link->hw_addr, link);
191✔
2407
        }
2408

2409
        link->hw_addr = addr;
2,891✔
2410

2411
        if (!hw_addr_is_null(&link->hw_addr)) {
2,891✔
2412
                r = hashmap_ensure_put(&link->manager->links_by_hw_addr, &hw_addr_hash_ops, &link->hw_addr, link);
1,037✔
2413
                if (r == -EEXIST && streq_ptr(link->kind, "bond"))
1,037✔
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);
4✔
2416
                if (r < 0)
1,037✔
2417
                        log_link_debug_errno(link, r, "Failed to manage link by its new hardware address, ignoring: %m");
50✔
2418
        }
2419

2420
        r = ipv4acd_update_mac(link);
2,891✔
2421
        if (r < 0)
2,891✔
2422
                return log_link_debug_errno(link, r, "Could not update MAC address in IPv4 ACD client: %m");
×
2423

2424
        r = ipv4ll_update_mac(link);
2,891✔
2425
        if (r < 0)
2,891✔
2426
                return log_link_debug_errno(link, r, "Could not update MAC address in IPv4LL client: %m");
×
2427

2428
        r = dhcp4_update_mac(link);
2,891✔
2429
        if (r < 0)
2,891✔
2430
                return log_link_debug_errno(link, r, "Could not update MAC address in DHCP client: %m");
×
2431

2432
        r = dhcp6_update_mac(link);
2,891✔
2433
        if (r < 0)
2,891✔
2434
                return log_link_debug_errno(link, r, "Could not update MAC address in DHCPv6 client: %m");
×
2435

2436
        r = radv_update_mac(link);
2,891✔
2437
        if (r < 0)
2,891✔
2438
                return log_link_debug_errno(link, r, "Could not update MAC address for Router Advertisement: %m");
×
2439

2440
        if (link->ndisc && link->hw_addr.length == ETH_ALEN) {
2,891✔
2441
                r = sd_ndisc_set_mac(link->ndisc, &link->hw_addr.ether);
×
2442
                if (r < 0)
×
2443
                        return log_link_debug_errno(link, r, "Could not update MAC for NDisc: %m");
×
2444
        }
2445

2446
        if (link->lldp_rx) {
2,891✔
2447
                r = sd_lldp_rx_set_filter_address(link->lldp_rx, &link->hw_addr.ether);
23✔
2448
                if (r < 0)
23✔
2449
                        return log_link_debug_errno(link, r, "Could not update MAC address for LLDP Rx: %m");
×
2450
        }
2451

2452
        if (link->lldp_tx) {
2,891✔
2453
                r = sd_lldp_tx_set_hwaddr(link->lldp_tx, &link->hw_addr.ether);
×
2454
                if (r < 0)
×
2455
                        return log_link_debug_errno(link, r, "Could not update MAC address for LLDP Tx: %m");
×
2456
        }
2457

2458
        return 1; /* needs reconfigure */
2459
}
2460

2461
static int link_update_mtu(Link *link, sd_netlink_message *message) {
10,492✔
2462
        uint32_t mtu, min_mtu = 0, max_mtu = UINT32_MAX;
10,492✔
2463
        int r;
10,492✔
2464

2465
        assert(link);
10,492✔
2466
        assert(message);
10,492✔
2467

2468
        r = sd_netlink_message_read_u32(message, IFLA_MTU, &mtu);
10,492✔
2469
        if (r == -ENODATA)
10,492✔
2470
                return 0;
10,492✔
2471
        if (r < 0)
10,492✔
2472
                return log_link_debug_errno(link, r, "rtnl: failed to read MTU in RTM_NEWLINK message: %m");
×
2473
        if (mtu == 0)
10,492✔
2474
                return 0;
2475

2476
        r = sd_netlink_message_read_u32(message, IFLA_MIN_MTU, &min_mtu);
10,471✔
2477
        if (r < 0 && r != -ENODATA)
10,471✔
2478
                return log_link_debug_errno(link, r, "rtnl: failed to read minimum MTU in RTM_NEWLINK message: %m");
×
2479

2480
        r = sd_netlink_message_read_u32(message, IFLA_MAX_MTU, &max_mtu);
10,471✔
2481
        if (r < 0 && r != -ENODATA)
10,471✔
2482
                return log_link_debug_errno(link, r, "rtnl: failed to read maximum MTU in RTM_NEWLINK message: %m");
×
2483

2484
        if (max_mtu == 0)
10,471✔
2485
                max_mtu = UINT32_MAX;
6,737✔
2486

2487
        link->min_mtu = min_mtu;
10,471✔
2488
        link->max_mtu = max_mtu;
10,471✔
2489

2490
        if (link->original_mtu == 0) {
10,471✔
2491
                link->original_mtu = mtu;
2,761✔
2492
                log_link_debug(link, "Saved original MTU %" PRIu32" (min: %"PRIu32", max: %"PRIu32")",
2,761✔
2493
                               link->original_mtu, link->min_mtu, link->max_mtu);
2494
        }
2495

2496
        if (link->mtu == mtu)
10,471✔
2497
                return 0;
2498

2499
        if (link->mtu != 0)
2,849✔
2500
                log_link_debug(link, "MTU is changed: %"PRIu32" %s %"PRIu32" (min: %"PRIu32", max: %"PRIu32")",
88✔
2501
                               link->mtu, glyph(GLYPH_ARROW_RIGHT), mtu,
2502
                               link->min_mtu, link->max_mtu);
2503

2504
        link->mtu = mtu;
2,849✔
2505

2506
        if (IN_SET(link->state, LINK_STATE_CONFIGURING, LINK_STATE_CONFIGURED))
2,849✔
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);
46✔
2509

2510
        if (link->dhcp_client) {
2,849✔
2511
                r = sd_dhcp_client_set_mtu(link->dhcp_client, link->mtu);
4✔
2512
                if (r < 0)
4✔
2513
                        return log_link_debug_errno(link, r, "Could not update MTU in DHCP client: %m");
×
2514
        }
2515

2516
        if (link->radv) {
2,849✔
2517
                r = sd_radv_set_mtu(link->radv, link->mtu);
×
2518
                if (r < 0)
×
2519
                        return log_link_debug_errno(link, r, "Could not set MTU for Router Advertisement: %m");
×
2520
        }
2521

2522
        return 0;
2523
}
2524

2525
static int link_update_alternative_names(Link *link, sd_netlink_message *message) {
10,492✔
2526
        _cleanup_strv_free_ char **altnames = NULL;
10,492✔
2527
        int r;
10,492✔
2528

2529
        assert(link);
10,492✔
2530
        assert(message);
10,492✔
2531

2532
        r = sd_netlink_message_read_strv(message, IFLA_PROP_LIST, IFLA_ALT_IFNAME, &altnames);
10,492✔
2533
        if (r == -ENODATA)
10,492✔
2534
                /* The message does not have IFLA_PROP_LIST container attribute. It does not mean the
2535
                 * interface has no alternative name. */
2536
                return 0;
2537
        if (r < 0)
161✔
2538
                return log_link_debug_errno(link, r, "rtnl: failed to read alternative names: %m");
×
2539

2540
        if (strv_equal(altnames, link->alternative_names))
161✔
2541
                return 0;
2542

2543
        STRV_FOREACH(n, link->alternative_names)
53✔
2544
                hashmap_remove(link->manager->links_by_name, *n);
11✔
2545

2546
        strv_free_and_replace(link->alternative_names, altnames);
42✔
2547

2548
        STRV_FOREACH(n, link->alternative_names) {
92✔
2549
                r = hashmap_ensure_put(&link->manager->links_by_name, &string_hash_ops, *n, link);
50✔
2550
                if (r < 0)
50✔
2551
                        return log_link_debug_errno(link, r, "Failed to manage link by its new alternative names: %m");
×
2552
        }
2553

2554
        return 1; /* needs reconfigure */
2555
}
2556

2557
static int link_update_name(Link *link, sd_netlink_message *message) {
10,493✔
2558
        char ifname_from_index[IF_NAMESIZE];
10,493✔
2559
        const char *ifname;
10,493✔
2560
        int r;
10,493✔
2561

2562
        assert(link);
10,493✔
2563
        assert(message);
10,493✔
2564

2565
        r = sd_netlink_message_read_string(message, IFLA_IFNAME, &ifname);
10,493✔
2566
        if (r == -ENODATA)
10,493✔
2567
                /* Hmm?? But ok. */
2568
                return 0;
10,493✔
2569
        if (r < 0)
10,493✔
2570
                return log_link_debug_errno(link, r, "Failed to read interface name in RTM_NEWLINK message: %m");
×
2571

2572
        if (streq(ifname, link->ifname))
10,493✔
2573
                return 0;
2574

2575
        r = format_ifname(link->ifindex, ifname_from_index);
39✔
2576
        if (r < 0)
39✔
2577
                return log_link_debug_errno(link, r, "Could not get interface name for index %i.", link->ifindex);
1✔
2578

2579
        if (!streq(ifname, ifname_from_index)) {
38✔
2580
                log_link_debug(link, "New interface name '%s' received from the kernel does not correspond "
1✔
2581
                               "with the name currently configured on the actual interface '%s'. Ignoring.",
2582
                               ifname, ifname_from_index);
2583
                return 0;
1✔
2584
        }
2585

2586
        log_link_info(link, "Interface name change detected, renamed to %s.", ifname);
37✔
2587

2588
        hashmap_remove(link->manager->links_by_name, link->ifname);
37✔
2589

2590
        r = free_and_strdup(&link->ifname, ifname);
37✔
2591
        if (r < 0)
37✔
2592
                return log_oom_debug();
×
2593

2594
        r = hashmap_ensure_put(&link->manager->links_by_name, &string_hash_ops, link->ifname, link);
37✔
2595
        if (r < 0)
37✔
2596
                return log_link_debug_errno(link, r, "Failed to manage link by its new name: %m");
×
2597

2598
        if (link->dhcp_client) {
37✔
2599
                r = sd_dhcp_client_set_ifname(link->dhcp_client, link->ifname);
×
2600
                if (r < 0)
×
2601
                        return log_link_debug_errno(link, r, "Failed to update interface name in DHCP client: %m");
×
2602
        }
2603

2604
        if (link->dhcp6_client) {
37✔
2605
                r = sd_dhcp6_client_set_ifname(link->dhcp6_client, link->ifname);
×
2606
                if (r < 0)
×
2607
                        return log_link_debug_errno(link, r, "Failed to update interface name in DHCPv6 client: %m");
×
2608
        }
2609

2610
        if (link->ndisc) {
37✔
2611
                r = sd_ndisc_set_ifname(link->ndisc, link->ifname);
×
2612
                if (r < 0)
×
2613
                        return log_link_debug_errno(link, r, "Failed to update interface name in NDisc: %m");
×
2614
        }
2615

2616
        if (link->dhcp_server) {
37✔
2617
                r = sd_dhcp_server_set_ifname(link->dhcp_server, link->ifname);
×
2618
                if (r < 0)
×
2619
                        return log_link_debug_errno(link, r, "Failed to update interface name in DHCP server: %m");
×
2620
        }
2621

2622
        if (link->radv) {
37✔
2623
                r = sd_radv_set_ifname(link->radv, link->ifname);
×
2624
                if (r < 0)
×
2625
                        return log_link_debug_errno(link, r, "Failed to update interface name in Router Advertisement: %m");
×
2626
        }
2627

2628
        if (link->lldp_rx) {
37✔
2629
                r = sd_lldp_rx_set_ifname(link->lldp_rx, link->ifname);
2✔
2630
                if (r < 0)
2✔
2631
                        return log_link_debug_errno(link, r, "Failed to update interface name in LLDP Rx: %m");
×
2632
        }
2633

2634
        if (link->lldp_tx) {
37✔
2635
                r = sd_lldp_tx_set_ifname(link->lldp_tx, link->ifname);
×
2636
                if (r < 0)
×
2637
                        return log_link_debug_errno(link, r, "Failed to update interface name in LLDP Tx: %m");
×
2638
        }
2639

2640
        if (link->ipv4ll) {
37✔
2641
                r = sd_ipv4ll_set_ifname(link->ipv4ll, link->ifname);
×
2642
                if (r < 0)
×
2643
                        return log_link_debug_errno(link, r, "Failed to update interface name in IPv4LL client: %m");
×
2644
        }
2645

2646
        r = ipv4acd_set_ifname(link);
37✔
2647
        if (r < 0)
37✔
2648
                return log_link_debug_errno(link, r, "Failed to update interface name in IPv4ACD client: %m");
×
2649

2650
        return 1; /* needs reconfigure */
2651
}
2652

2653
static int link_update(Link *link, sd_netlink_message *message) {
10,493✔
2654
        bool needs_reconfigure = false;
10,493✔
2655
        int r;
10,493✔
2656

2657
        assert(link);
10,493✔
2658
        assert(message);
10,493✔
2659

2660
        r = link_update_name(link, message);
10,493✔
2661
        if (r < 0)
10,493✔
2662
                return r;
2663
        needs_reconfigure = needs_reconfigure || r > 0;
10,492✔
2664

2665
        r = link_update_alternative_names(link, message);
10,492✔
2666
        if (r < 0)
10,492✔
2667
                return r;
2668
        needs_reconfigure = needs_reconfigure || r > 0;
10,492✔
2669

2670
        r = link_update_mtu(link, message);
10,492✔
2671
        if (r < 0)
10,492✔
2672
                return r;
2673

2674
        r = link_update_driver(link, message);
10,492✔
2675
        if (r < 0)
10,492✔
2676
                return r;
2677
        needs_reconfigure = needs_reconfigure || r > 0;
10,492✔
2678

2679
        r = link_update_permanent_hardware_address(link, message);
10,492✔
2680
        if (r < 0)
10,492✔
2681
                return r;
2682
        needs_reconfigure = needs_reconfigure || r > 0;
10,492✔
2683

2684
        r = link_update_hardware_address(link, message);
10,492✔
2685
        if (r < 0)
10,492✔
2686
                return r;
2687
        needs_reconfigure = needs_reconfigure || r > 0;
10,492✔
2688

2689
        r = link_update_master(link, message);
10,492✔
2690
        if (r < 0)
10,492✔
2691
                return r;
2692

2693
        r = link_update_ipv6ll_addrgen_mode(link, message);
10,492✔
2694
        if (r < 0)
10,492✔
2695
                return r;
2696

2697
        r = link_update_flags(link, message);
10,492✔
2698
        if (r < 0)
10,492✔
2699
                return r;
2700

2701
        r = link_update_bridge_vlan(link, message);
10,492✔
2702
        if (r < 0)
10,492✔
2703
                return r;
2704

2705
        return needs_reconfigure;
10,492✔
2706
}
2707

2708
static Link *link_drop_or_unref(Link *link) {
×
2709
        if (!link)
×
2710
                return NULL;
2711
        if (!link->manager)
×
2712
                return link_unref(link);
×
2713
        return link_drop(link);
×
2714
}
2715

2716
DEFINE_TRIVIAL_CLEANUP_FUNC(Link*, link_drop_or_unref);
2,761✔
2717

2718
static int link_new(Manager *manager, sd_netlink_message *message, Link **ret) {
2,761✔
2719
        _cleanup_free_ char *ifname = NULL, *kind = NULL, *state_file = NULL, *lease_file = NULL;
2,761✔
2720
        _cleanup_(link_drop_or_unrefp) Link *link = NULL;
2,761✔
2721
        unsigned short iftype;
2,761✔
2722
        int r, ifindex;
2,761✔
2723

2724
        assert(manager);
2,761✔
2725
        assert(message);
2,761✔
2726
        assert(ret);
2,761✔
2727

2728
        r = sd_rtnl_message_link_get_ifindex(message, &ifindex);
2,761✔
2729
        if (r < 0)
2,761✔
2730
                return log_debug_errno(r, "rtnl: failed to read ifindex from link message: %m");
×
2731
        else if (ifindex <= 0)
2,761✔
2732
                return log_debug_errno(SYNTHETIC_ERRNO(EINVAL), "rtnl: received link message without valid ifindex.");
×
2733

2734
        r = sd_rtnl_message_link_get_type(message, &iftype);
2,761✔
2735
        if (r < 0)
2,761✔
2736
                return log_debug_errno(r, "rtnl: failed to read interface type from link message: %m");
×
2737

2738
        r = sd_netlink_message_read_string_strdup(message, IFLA_IFNAME, &ifname);
2,761✔
2739
        if (r < 0)
2,761✔
2740
                return log_debug_errno(r, "rtnl: failed to read interface name from link message: %m");
×
2741

2742
        /* check for link kind */
2743
        r = sd_netlink_message_enter_container(message, IFLA_LINKINFO);
2,761✔
2744
        if (r >= 0) {
2,761✔
2745
                r = sd_netlink_message_read_string_strdup(message, IFLA_INFO_KIND, &kind);
2,232✔
2746
                if (r < 0 && r != -ENODATA)
2,232✔
2747
                        return log_debug_errno(r, "rtnl: failed to read interface kind from link message: %m");
×
2748
                r = sd_netlink_message_exit_container(message);
2,232✔
2749
                if (r < 0)
2,232✔
2750
                        return log_debug_errno(r, "rtnl: failed to exit IFLA_LINKINFO container: %m");
×
2751
        }
2752

2753
        if (!manager->test_mode) {
2,761✔
2754
                /* Do not update state files when running in test mode. */
2755
                if (asprintf(&state_file, "/run/systemd/netif/links/%d", ifindex) < 0)
2,760✔
2756
                        return log_oom_debug();
×
2757

2758
                if (asprintf(&lease_file, "/run/systemd/netif/leases/%d", ifindex) < 0)
2,760✔
2759
                        return log_oom_debug();
×
2760
        }
2761

2762
        link = new(Link, 1);
2,761✔
2763
        if (!link)
2,761✔
2764
                return -ENOMEM;
2765

2766
        *link = (Link) {
2,761✔
2767
                .n_ref = 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 },
2771
                .ifindex = ifindex,
2772
                .iftype = iftype,
2773
                .ifname = TAKE_PTR(ifname),
2,761✔
2774
                .kind = TAKE_PTR(kind),
2,761✔
2775

2776
                .bridge_vlan_pvid = UINT16_MAX,
2777

2778
                .ipv6ll_address_gen_mode = _IPV6_LINK_LOCAL_ADDRESS_GEN_MODE_INVALID,
2779

2780
                .state_file = TAKE_PTR(state_file),
2,761✔
2781
                .lease_file = TAKE_PTR(lease_file),
2,761✔
2782

2783
                .n_dns = UINT_MAX,
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,
2789
        };
2790

2791
        r = hashmap_ensure_put(&manager->links_by_index, &link_hash_ops, INT_TO_PTR(link->ifindex), link);
2,761✔
2792
        if (r < 0)
2,761✔
2793
                return log_link_debug_errno(link, r, "Failed to store link into manager: %m");
×
2794

2795
        link->manager = manager;
2,761✔
2796

2797
        r = hashmap_ensure_put(&manager->links_by_name, &string_hash_ops, link->ifname, link);
2,761✔
2798
        if (r < 0)
2,761✔
2799
                return log_link_debug_errno(link, r, "Failed to manage link by its interface name: %m");
×
2800

2801
        log_link_debug(link, "Saved new link: ifindex=%i, iftype=%s(%u), kind=%s",
3,290✔
2802
                       link->ifindex, strna(arphrd_to_name(link->iftype)), link->iftype, strna(link->kind));
2803

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.
2806
         */
2807
        if (set_remove(manager->new_wlan_ifindices, INT_TO_PTR(link->ifindex))) {
2,761✔
2808
                r = link_get_wlan_interface(link);
×
2809
                if (r < 0)
×
2810
                        log_link_warning_errno(link, r, "Failed to get wireless interface, ignoring: %m");
×
2811
        }
2812

2813
        *ret = TAKE_PTR(link);
2,761✔
2814
        return 0;
2,761✔
2815
}
2816

2817
int manager_rtnl_process_link(sd_netlink *rtnl, sd_netlink_message *message, Manager *manager) {
6,457✔
2818
        Link *link = NULL;
6,457✔
2819
        NetDev *netdev = NULL;
6,457✔
2820
        uint16_t type;
6,457✔
2821
        const char *name;
6,457✔
2822
        int r, ifindex;
6,457✔
2823

2824
        assert(rtnl);
6,457✔
2825
        assert(message);
6,457✔
2826
        assert(manager);
6,457✔
2827

2828
        if (sd_netlink_message_is_error(message)) {
6,457✔
2829
                r = sd_netlink_message_get_errno(message);
×
2830
                if (r < 0)
×
2831
                        log_message_warning_errno(message, r, "rtnl: Could not receive link message, ignoring");
×
2832

2833
                return 0;
×
2834
        }
2835

2836
        r = sd_netlink_message_get_type(message, &type);
6,457✔
2837
        if (r < 0) {
6,457✔
2838
                log_warning_errno(r, "rtnl: Could not get message type, ignoring: %m");
×
2839
                return 0;
×
2840
        } else if (!IN_SET(type, RTM_NEWLINK, RTM_DELLINK)) {
6,457✔
2841
                log_warning("rtnl: Received unexpected message type %u when processing link, ignoring.", type);
×
2842
                return 0;
×
2843
        }
2844

2845
        r = sd_rtnl_message_link_get_ifindex(message, &ifindex);
6,457✔
2846
        if (r < 0) {
6,457✔
2847
                log_warning_errno(r, "rtnl: Could not get ifindex from link message, ignoring: %m");
×
2848
                return 0;
×
2849
        } else if (ifindex <= 0) {
6,457✔
2850
                log_warning("rtnl: received link message with invalid ifindex %d, ignoring.", ifindex);
×
2851
                return 0;
×
2852
        }
2853

2854
        r = sd_netlink_message_read_string(message, IFLA_IFNAME, &name);
6,457✔
2855
        if (r < 0) {
6,457✔
2856
                log_warning_errno(r, "rtnl: Received link message without ifname, ignoring: %m");
×
2857
                return 0;
×
2858
        }
2859

2860
        (void) link_get_by_index(manager, ifindex, &link);
6,457✔
2861
        (void) netdev_get(manager, name, &netdev);
6,457✔
2862

2863
        switch (type) {
6,457✔
2864
        case RTM_NEWLINK:
5,589✔
2865
                if (netdev) {
5,589✔
2866
                        /* netdev exists, so make sure the ifindex matches */
2867
                        r = netdev_set_ifindex(netdev, message);
2,845✔
2868
                        if (r < 0) {
2,845✔
2869
                                log_netdev_warning_errno(netdev, r, "Could not process new link message for netdev, ignoring: %m");
×
2870
                                netdev_enter_failed(netdev);
×
2871
                                return 0;
×
2872
                        }
2873
                }
2874

2875
                if (!link) {
5,589✔
2876
                        /* link is new, so add it */
2877
                        r = link_new(manager, message, &link);
2,761✔
2878
                        if (r < 0) {
2,761✔
2879
                                log_warning_errno(r, "Could not process new link message: %m");
×
2880
                                return 0;
×
2881
                        }
2882

2883
                        r = link_update(link, message);
2,761✔
2884
                        if (r < 0) {
2,761✔
2885
                                log_link_warning_errno(link, r, "Could not process link message: %m");
×
2886
                                link_enter_failed(link);
×
2887
                                return 0;
×
2888
                        }
2889

2890
                        if (link->manager->test_mode) {
2,761✔
2891
                                log_link_debug(link, "Running in test mode, refusing to enter initialized state.");
1✔
2892
                                link_set_state(link, LINK_STATE_UNMANAGED);
1✔
2893
                                return 0;
1✔
2894
                        }
2895

2896
                        /* Do not enter initialized state if we are enumerating. */
2897
                        if (manager->enumerating)
2,760✔
2898
                                return 0;
2899

2900
                        r = link_check_initialized(link);
912✔
2901
                        if (r < 0) {
912✔
2902
                                log_link_warning_errno(link, r, "Failed to check link is initialized: %m");
×
2903
                                link_enter_failed(link);
×
2904
                                return 0;
×
2905
                        }
2906
                } else {
2907
                        r = link_update(link, message);
2,828✔
2908
                        if (r < 0) {
2,828✔
2909
                                log_link_warning_errno(link, r, "Could not process link message: %m");
1✔
2910
                                link_enter_failed(link);
1✔
2911
                                return 0;
1✔
2912
                        }
2913
                        if (r == 0)
2,827✔
2914
                                return 0;
2915

2916
                        if (link->manager->test_mode) {
449✔
2917
                                log_link_debug(link, "Running in test mode, refusing to configure interface.");
×
2918
                                link_set_state(link, LINK_STATE_UNMANAGED);
×
2919
                                return 0;
×
2920
                        }
2921

2922
                        /* Do not configure interface if we are enumerating. */
2923
                        if (manager->enumerating)
449✔
2924
                                return 0;
2925

2926
                        r = link_reconfigure_impl(link, /* flags = */ 0);
448✔
2927
                        if (r < 0) {
448✔
2928
                                log_link_warning_errno(link, r, "Failed to reconfigure interface: %m");
×
2929
                                link_enter_failed(link);
×
2930
                                return 0;
×
2931
                        }
2932
                }
2933
                break;
2934

2935
        case RTM_DELLINK:
868✔
2936
                link_drop(link);
868✔
2937
                netdev_drop(netdev);
868✔
2938
                break;
2939

2940
        default:
×
2941
                assert_not_reached();
×
2942
        }
2943

2944
        return 1;
2945
}
2946

2947
int link_getlink_handler_internal(sd_netlink *rtnl, sd_netlink_message *m, Link *link, const char *error_msg) {
4,906✔
2948
        uint16_t message_type;
4,906✔
2949
        int r;
4,906✔
2950

2951
        assert(m);
4,906✔
2952
        assert(link);
4,906✔
2953
        assert(error_msg);
4,906✔
2954

2955
        if (IN_SET(link->state, LINK_STATE_FAILED, LINK_STATE_LINGER))
4,906✔
2956
                return 0;
4,906✔
2957

2958
        r = sd_netlink_message_get_errno(m);
4,904✔
2959
        if (r < 0) {
4,904✔
2960
                log_link_message_warning_errno(link, m, r, "%s", error_msg);
×
2961
                link_enter_failed(link);
×
2962
                return 0;
×
2963
        }
2964

2965
        r = sd_netlink_message_get_type(m, &message_type);
4,904✔
2966
        if (r < 0) {
4,904✔
2967
                log_link_debug_errno(link, r, "rtnl: failed to read link message type, ignoring: %m");
×
2968
                return 0;
×
2969
        }
2970
        if (message_type != RTM_NEWLINK) {
4,904✔
2971
                log_link_debug(link, "rtnl: received invalid link message type, ignoring.");
×
2972
                return 0;
×
2973
        }
2974

2975
        r = link_update(link, m);
4,904✔
2976
        if (r < 0) {
4,904✔
2977
                link_enter_failed(link);
×
2978
                return 0;
×
2979
        }
2980

2981
        return 1;
2982
}
2983

2984
int link_call_getlink(Link *link, link_netlink_message_handler_t callback) {
3,545✔
2985
        _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *req = NULL;
3,545✔
2986
        int r;
3,545✔
2987

2988
        assert(link);
3,545✔
2989
        assert(link->manager);
3,545✔
2990
        assert(link->manager->rtnl);
3,545✔
2991
        assert(callback);
3,545✔
2992

2993
        r = sd_rtnl_message_new_link(link->manager->rtnl, &req, RTM_GETLINK, link->ifindex);
3,545✔
2994
        if (r < 0)
3,545✔
2995
                return r;
2996

2997
        r = netlink_call_async(link->manager->rtnl, NULL, req, callback,
3,545✔
2998
                               link_netlink_destroy_callback, link);
2999
        if (r < 0)
3,545✔
3000
                return r;
3001

3002
        link_ref(link);
3,545✔
3003
        return 0;
3004
}
3005

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",
3014
};
3015

3016
DEFINE_STRING_TABLE_LOOKUP(link_state, LinkState);
32,397✔
3017

3018
int link_flags_to_string_alloc(uint32_t flags, char **ret) {
580✔
3019
        _cleanup_free_ char *str = NULL;
580✔
3020
        static const char* map[] = {
580✔
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. */
3040
        };
3041

3042
        assert(ret);
580✔
3043

3044
        for (size_t i = 0; i < ELEMENTSOF(map); i++)
11,600✔
3045
                if (BIT_SET(flags, i) && map[i])
11,020✔
3046
                        if (!strextend_with_separator(&str, ",", map[i]))
1,632✔
3047
                                return -ENOMEM;
3048

3049
        *ret = TAKE_PTR(str);
580✔
3050
        return 0;
580✔
3051
}
3052

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",
3061
};
3062

3063
DEFINE_STRING_TABLE_LOOKUP_TO_STRING(kernel_operstate, int);
580✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc