]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/networkd-address.c
Merge pull request #31000 from flatcar-hub/krnowak/mutable-overlays
[thirdparty/systemd.git] / src / network / networkd-address.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
f579559b
TG
2
3#include <net/if.h>
b8162cd2 4#include <net/if_arp.h>
f579559b 5
b5efdb8a 6#include "alloc-util.h"
12c2884c 7#include "firewall-util.h"
3ae6b3bf 8#include "logarithm.h"
0a970718 9#include "memory-util.h"
fc2f9534 10#include "netlink-util.h"
bfbf150e 11#include "networkd-address-pool.h"
6bedfcbb 12#include "networkd-address.h"
3b6a3bde 13#include "networkd-dhcp-server.h"
76a86ffd 14#include "networkd-ipv4acd.h"
23f53b99 15#include "networkd-manager.h"
4b3590c3 16#include "networkd-netlabel.h"
093e3533 17#include "networkd-network.h"
76c5a0f2 18#include "networkd-queue.h"
d8c472f2 19#include "networkd-route-util.h"
3b6a3bde 20#include "networkd-route.h"
6bedfcbb 21#include "parse-util.h"
07630cea 22#include "string-util.h"
51517f9e 23#include "strv.h"
0fd97a25 24#include "strxcpyx.h"
f579559b 25
1b566071 26#define ADDRESSES_PER_LINK_MAX 2048U
8c34b963
LP
27#define STATIC_ADDRESSES_PER_NETWORK_MAX 1024U
28
b1179a5d
YW
29#define KNOWN_FLAGS \
30 (IFA_F_SECONDARY | \
31 IFA_F_NODAD | \
32 IFA_F_OPTIMISTIC | \
33 IFA_F_DADFAILED | \
34 IFA_F_HOMEADDRESS | \
35 IFA_F_DEPRECATED | \
36 IFA_F_TENTATIVE | \
37 IFA_F_PERMANENT | \
38 IFA_F_MANAGETEMPADDR | \
39 IFA_F_NOPREFIXROUTE | \
40 IFA_F_MCAUTOJOIN | \
41 IFA_F_STABLE_PRIVACY)
42
43/* From net/ipv4/devinet.c */
44#define IPV6ONLY_FLAGS \
45 (IFA_F_NODAD | \
46 IFA_F_OPTIMISTIC | \
47 IFA_F_DADFAILED | \
48 IFA_F_HOMEADDRESS | \
49 IFA_F_TENTATIVE | \
50 IFA_F_MANAGETEMPADDR | \
51 IFA_F_STABLE_PRIVACY)
52
53/* We do not control the following flags. */
54#define UNMANAGED_FLAGS \
55 (IFA_F_SECONDARY | \
56 IFA_F_DADFAILED | \
57 IFA_F_DEPRECATED | \
58 IFA_F_TENTATIVE | \
59 IFA_F_PERMANENT | \
60 IFA_F_STABLE_PRIVACY)
61
42ceb474 62int address_flags_to_string_alloc(uint32_t flags, int family, char **ret) {
a2362484 63 _cleanup_free_ char *str = NULL;
7396e014
ZJS
64 static const char* map[] = {
65 [LOG2U(IFA_F_SECONDARY)] = "secondary", /* This is also called "temporary" for ipv6. */
66 [LOG2U(IFA_F_NODAD)] = "nodad",
67 [LOG2U(IFA_F_OPTIMISTIC)] = "optimistic",
68 [LOG2U(IFA_F_DADFAILED)] = "dadfailed",
69 [LOG2U(IFA_F_HOMEADDRESS)] = "home-address",
70 [LOG2U(IFA_F_DEPRECATED)] = "deprecated",
71 [LOG2U(IFA_F_TENTATIVE)] = "tentative",
72 [LOG2U(IFA_F_PERMANENT)] = "permanent",
73 [LOG2U(IFA_F_MANAGETEMPADDR)] = "manage-temporary-address",
74 [LOG2U(IFA_F_NOPREFIXROUTE)] = "no-prefixroute",
75 [LOG2U(IFA_F_MCAUTOJOIN)] = "auto-join",
76 [LOG2U(IFA_F_STABLE_PRIVACY)] = "stable-privacy",
a2362484
YW
77 };
78
79 assert(IN_SET(family, AF_INET, AF_INET6));
80 assert(ret);
81
0828a386 82 for (size_t i = 0; i < ELEMENTSOF(map); i++)
7396e014
ZJS
83 if (FLAGS_SET(flags, 1 << i) && map[i])
84 if (!strextend_with_separator(
85 &str, ",",
86 family == AF_INET6 && (1 << i) == IFA_F_SECONDARY ? "temporary" : map[i]))
87 return -ENOMEM;
a2362484
YW
88
89 *ret = TAKE_PTR(str);
90 return 0;
91}
92
60415c13
YW
93static LinkAddressState address_state_from_scope(uint8_t scope) {
94 if (scope < RT_SCOPE_SITE)
95 /* universally accessible addresses found */
96 return LINK_ADDRESS_STATE_ROUTABLE;
97
98 if (scope < RT_SCOPE_HOST)
99 /* only link or site local addresses found */
100 return LINK_ADDRESS_STATE_DEGRADED;
101
102 /* no useful addresses found */
103 return LINK_ADDRESS_STATE_OFF;
104}
105
106void link_get_address_states(
107 Link *link,
108 LinkAddressState *ret_ipv4,
109 LinkAddressState *ret_ipv6,
110 LinkAddressState *ret_all) {
111
112 uint8_t ipv4_scope = RT_SCOPE_NOWHERE, ipv6_scope = RT_SCOPE_NOWHERE;
113 Address *address;
114
115 assert(link);
116
117 SET_FOREACH(address, link->addresses) {
118 if (!address_is_ready(address))
119 continue;
120
121 if (address->family == AF_INET)
122 ipv4_scope = MIN(ipv4_scope, address->scope);
123
124 if (address->family == AF_INET6)
125 ipv6_scope = MIN(ipv6_scope, address->scope);
126 }
127
128 if (ret_ipv4)
129 *ret_ipv4 = address_state_from_scope(ipv4_scope);
130 if (ret_ipv6)
131 *ret_ipv6 = address_state_from_scope(ipv6_scope);
132 if (ret_all)
133 *ret_all = address_state_from_scope(MIN(ipv4_scope, ipv6_scope));
134}
135
ebd96906
YW
136static void address_hash_func(const Address *a, struct siphash *state);
137static int address_compare_func(const Address *a1, const Address *a2);
138static void address_detach(Address *address);
139
140DEFINE_PRIVATE_HASH_OPS_WITH_KEY_DESTRUCTOR(
141 address_hash_ops_detach,
142 Address,
143 address_hash_func,
144 address_compare_func,
145 address_detach);
146
147DEFINE_HASH_OPS(
148 address_hash_ops,
149 Address,
150 address_hash_func,
151 address_compare_func);
152
153DEFINE_HASH_OPS_WITH_VALUE_DESTRUCTOR(
154 address_section_hash_ops,
155 ConfigSection,
156 config_section_hash_func,
157 config_section_compare_func,
158 Address,
159 address_detach);
160
f0213e37 161int address_new(Address **ret) {
ebd96906 162 _cleanup_(address_unrefp) Address *address = NULL;
f0213e37 163
17f9c355 164 address = new(Address, 1);
f0213e37
TG
165 if (!address)
166 return -ENOMEM;
aba496a5 167
17f9c355 168 *address = (Address) {
ebd96906 169 .n_ref = 1,
17f9c355
YW
170 .family = AF_UNSPEC,
171 .scope = RT_SCOPE_UNIVERSE,
16bc8635
YW
172 .lifetime_valid_usec = USEC_INFINITY,
173 .lifetime_preferred_usec = USEC_INFINITY,
832583ad 174 .set_broadcast = -1,
17f9c355 175 };
f0213e37 176
1cc6c93a 177 *ret = TAKE_PTR(address);
f0213e37
TG
178
179 return 0;
aba496a5
UTL
180}
181
5459e11d 182int address_new_static(Network *network, const char *filename, unsigned section_line, Address **ret) {
307fe3cd 183 _cleanup_(config_section_freep) ConfigSection *n = NULL;
ebd96906 184 _cleanup_(address_unrefp) Address *address = NULL;
f0213e37 185 int r;
f579559b 186
8c34b963
LP
187 assert(network);
188 assert(ret);
9cd9fc8f
YW
189 assert(filename);
190 assert(section_line > 0);
f4859fc7 191
307fe3cd 192 r = config_section_new(filename, section_line, &n);
9cd9fc8f
YW
193 if (r < 0)
194 return r;
6ae115c1 195
9cd9fc8f
YW
196 address = ordered_hashmap_get(network->addresses_by_section, n);
197 if (address) {
198 *ret = TAKE_PTR(address);
199 return 0;
6ae115c1
TG
200 }
201
9cd9fc8f 202 if (ordered_hashmap_size(network->addresses_by_section) >= STATIC_ADDRESSES_PER_NETWORK_MAX)
8c34b963
LP
203 return -E2BIG;
204
f0213e37
TG
205 r = address_new(&address);
206 if (r < 0)
207 return r;
801bd9e8 208
0f7f2769 209 address->network = network;
9cd9fc8f 210 address->section = TAKE_PTR(n);
3b6a3bde 211 address->source = NETWORK_CONFIG_SOURCE_STATIC;
2859932b
YW
212 /* This will be adjusted in address_section_verify(). */
213 address->duplicate_address_detection = _ADDRESS_FAMILY_INVALID;
0f7f2769 214
ebd96906 215 r = ordered_hashmap_ensure_put(&network->addresses_by_section, &address_section_hash_ops, address->section, address);
9cd9fc8f
YW
216 if (r < 0)
217 return r;
6ae115c1 218
1cc6c93a 219 *ret = TAKE_PTR(address);
f579559b
TG
220 return 0;
221}
222
ebd96906
YW
223static Address* address_detach_impl(Address *address) {
224 assert(address);
225 assert(!address->link || !address->network);
f579559b 226
f048a16b 227 if (address->network) {
9cd9fc8f
YW
228 assert(address->section);
229 ordered_hashmap_remove(address->network->addresses_by_section, address->section);
8ae3a4f5
YW
230
231 if (address->network->dhcp_server_address == address)
232 address->network->dhcp_server_address = NULL;
ebd96906
YW
233
234 address->network = NULL;
235 return address;
f048a16b 236 }
6ae115c1 237
ebd96906 238 if (address->link) {
cf1d700d 239 set_remove(address->link->addresses, address);
f150100a 240
ebd96906
YW
241 address->link = NULL;
242 return address;
243 }
244
245 return NULL;
246}
247
248static void address_detach(Address *address) {
249 assert(address);
250
251 address_unref(address_detach_impl(address));
252}
253
254static Address* address_free(Address *address) {
255 if (!address)
256 return NULL;
257
258 address_detach_impl(address);
259
307fe3cd 260 config_section_free(address->section);
de4224aa 261 free(address->label);
4b3590c3 262 free(address->netlabel);
fc289dd0 263 nft_set_context_clear(&address->nft_set_context);
7818f858 264 return mfree(address);
f579559b
TG
265}
266
ebd96906
YW
267DEFINE_TRIVIAL_REF_UNREF_FUNC(Address, address, address_free);
268
dc32de39
YW
269static bool address_lifetime_is_valid(const Address *a) {
270 assert(a);
271
272 return
273 a->lifetime_valid_usec == USEC_INFINITY ||
274 a->lifetime_valid_usec > now(CLOCK_BOOTTIME);
275}
276
3b6a3bde
YW
277bool address_is_ready(const Address *a) {
278 assert(a);
5385e5f9 279 assert(a->link);
3b6a3bde 280
5385e5f9 281 if (!ipv4acd_bound(a->link, a))
3b6a3bde
YW
282 return false;
283
e402e99e 284 if (FLAGS_SET(a->flags, IFA_F_TENTATIVE))
3b6a3bde
YW
285 return false;
286
e402e99e 287 if (FLAGS_SET(a->state, NETWORK_CONFIG_STATE_REMOVING))
3b6a3bde
YW
288 return false;
289
290 if (!FLAGS_SET(a->state, NETWORK_CONFIG_STATE_CONFIGURED))
291 return false;
292
dc32de39 293 return address_lifetime_is_valid(a);
3b6a3bde
YW
294}
295
5f950e56
YW
296bool link_check_addresses_ready(Link *link, NetworkConfigSource source) {
297 Address *a;
298 bool has = false;
299
300 assert(link);
301
302 /* Check if all addresses on the interface are ready. If there is no address, this will return false. */
303
304 SET_FOREACH(a, link->addresses) {
305 if (source >= 0 && a->source != source)
306 continue;
307 if (address_is_marked(a))
308 continue;
309 if (!address_exists(a))
310 continue;
311 if (!address_is_ready(a))
312 return false;
313 has = true;
314 }
315
316 return has;
317}
318
2ccada8d 319void link_mark_addresses(Link *link, NetworkConfigSource source) {
3b6a3bde
YW
320 Address *a;
321
322 assert(link);
323
324 SET_FOREACH(a, link->addresses) {
325 if (a->source != source)
326 continue;
327
3b6a3bde
YW
328 address_mark(a);
329 }
330}
331
0ae8ff50 332static int address_get_broadcast(const Address *a, Link *link, struct in_addr *ret) {
1a1f4a80
YW
333 struct in_addr b_addr = {};
334
2a236f9f 335 assert(a);
e680486d 336 assert(link);
2a236f9f 337
1a1f4a80
YW
338 /* Returns 0 when broadcast address is null, 1 when non-null broadcast address, -EAGAIN when the main
339 * address is null. */
340
341 /* broadcast is only for IPv4. */
473680be 342 if (a->family != AF_INET)
1a1f4a80 343 goto finalize;
473680be 344
1a1f4a80 345 /* broadcast address cannot be used when peer address is specified. */
473680be 346 if (in4_addr_is_set(&a->in_addr_peer.in))
1a1f4a80 347 goto finalize;
473680be 348
2a236f9f
YW
349 /* A /31 or /32 IPv4 address does not have a broadcast address.
350 * See https://tools.ietf.org/html/rfc3021 */
473680be 351 if (a->prefixlen > 30)
1a1f4a80 352 goto finalize;
473680be 353
1a1f4a80
YW
354 /* If explicitly configured, use the address as is. */
355 if (in4_addr_is_set(&a->broadcast)) {
356 b_addr = a->broadcast;
357 goto finalize;
358 }
473680be 359
1a1f4a80
YW
360 /* If explicitly disabled, then return null address. */
361 if (a->set_broadcast == 0)
362 goto finalize;
473680be 363
1a1f4a80
YW
364 /* For wireguard interfaces, broadcast is disabled by default. */
365 if (a->set_broadcast < 0 && streq_ptr(link->kind, "wireguard"))
366 goto finalize;
2a236f9f 367
1a1f4a80
YW
368 /* If the main address is null, e.g. Address=0.0.0.0/24, the broadcast address will be automatically
369 * determined after an address is acquired. */
370 if (!in4_addr_is_set(&a->in_addr.in))
371 return -EAGAIN;
372
373 /* Otherwise, generate a broadcast address from the main address and prefix length. */
374 b_addr.s_addr = a->in_addr.in.s_addr | htobe32(UINT32_C(0xffffffff) >> a->prefixlen);
832583ad 375
1a1f4a80
YW
376finalize:
377 if (ret)
378 *ret = b_addr;
832583ad 379
1a1f4a80 380 return in4_addr_is_set(&b_addr);
832583ad
YW
381}
382
0ae8ff50
YW
383static void address_set_broadcast(Address *a, Link *link) {
384 assert(a);
385 assert_se(address_get_broadcast(a, link, &a->broadcast) >= 0);
386}
387
b9e4ec50 388static void address_set_cinfo(Manager *m, const Address *a, struct ifa_cacheinfo *cinfo) {
16bc8635
YW
389 usec_t now_usec;
390
def4741b 391 assert(m);
16bc8635
YW
392 assert(a);
393 assert(cinfo);
394
def4741b 395 assert_se(sd_event_now(m->event, CLOCK_BOOTTIME, &now_usec) >= 0);
16bc8635
YW
396
397 *cinfo = (struct ifa_cacheinfo) {
5235d739
YW
398 .ifa_valid = usec_to_sec(a->lifetime_valid_usec, now_usec),
399 .ifa_prefered = usec_to_sec(a->lifetime_preferred_usec, now_usec),
16bc8635 400 };
16bc8635
YW
401}
402
def4741b 403static void address_set_lifetime(Manager *m, Address *a, const struct ifa_cacheinfo *cinfo) {
16bc8635
YW
404 usec_t now_usec;
405
def4741b 406 assert(m);
16bc8635
YW
407 assert(a);
408 assert(cinfo);
409
def4741b 410 assert_se(sd_event_now(m->event, CLOCK_BOOTTIME, &now_usec) >= 0);
16bc8635 411
5235d739
YW
412 a->lifetime_valid_usec = sec_to_usec(cinfo->ifa_valid, now_usec);
413 a->lifetime_preferred_usec = sec_to_usec(cinfo->ifa_prefered, now_usec);
16bc8635
YW
414}
415
d0009d92
YW
416static bool address_is_static_null(const Address *address) {
417 assert(address);
418
419 if (!address->network)
420 return false;
421
422 if (!address->requested_as_null)
423 return false;
424
425 assert(!in_addr_is_set(address->family, &address->in_addr));
426 return true;
427}
428
381e3cc6
YW
429static int address_ipv4_prefix(const Address *a, struct in_addr *ret) {
430 struct in_addr p;
431 int r;
432
1d30fc5c 433 assert(a);
381e3cc6
YW
434 assert(a->family == AF_INET);
435 assert(ret);
1d30fc5c 436
381e3cc6
YW
437 p = in4_addr_is_set(&a->in_addr_peer.in) ? a->in_addr_peer.in : a->in_addr.in;
438 r = in4_addr_mask(&p, a->prefixlen);
439 if (r < 0)
440 return r;
1d30fc5c 441
381e3cc6
YW
442 *ret = p;
443 return 0;
1d30fc5c
YW
444}
445
4da252c5 446static void address_hash_func(const Address *a, struct siphash *state) {
3ac8e543
TG
447 assert(a);
448
c01a5c05 449 siphash24_compress_typesafe(a->family, state);
3ac8e543 450
1d30fc5c 451 switch (a->family) {
381e3cc6
YW
452 case AF_INET: {
453 struct in_addr prefix;
454
c01a5c05 455 siphash24_compress_typesafe(a->prefixlen, state);
3ac8e543 456
381e3cc6 457 assert_se(address_ipv4_prefix(a, &prefix) >= 0);
c01a5c05 458 siphash24_compress_typesafe(prefix, state);
3ac8e543 459
c01a5c05 460 siphash24_compress_typesafe(a->in_addr.in, state);
52af8e5e 461 break;
381e3cc6 462 }
1d30fc5c 463 case AF_INET6:
c01a5c05 464 siphash24_compress_typesafe(a->in_addr.in6, state);
6174dc7d
YW
465
466 if (in6_addr_is_null(&a->in_addr.in6))
c01a5c05 467 siphash24_compress_typesafe(a->prefixlen, state);
1d30fc5c 468 break;
52af8e5e 469
1d30fc5c
YW
470 default:
471 /* treat any other address family as AF_UNSPEC */
472 break;
473 }
3ac8e543
TG
474}
475
4da252c5 476static int address_compare_func(const Address *a1, const Address *a2) {
a0edd02e 477 int r;
3ac8e543 478
a0edd02e
FB
479 r = CMP(a1->family, a2->family);
480 if (r != 0)
481 return r;
3ac8e543 482
1d30fc5c 483 switch (a1->family) {
381e3cc6
YW
484 case AF_INET: {
485 struct in_addr p1, p2;
486
1d30fc5c
YW
487 /* See kernel's find_matching_ifa() in net/ipv4/devinet.c */
488 r = CMP(a1->prefixlen, a2->prefixlen);
24be9181
ZJS
489 if (r != 0)
490 return r;
3ac8e543 491
381e3cc6
YW
492 assert_se(address_ipv4_prefix(a1, &p1) >= 0);
493 assert_se(address_ipv4_prefix(a2, &p2) >= 0);
494 r = memcmp(&p1, &p2, sizeof(p1));
1d30fc5c
YW
495 if (r != 0)
496 return r;
2a236f9f 497
52af8e5e 498 return memcmp(&a1->in_addr.in, &a2->in_addr.in, sizeof(a1->in_addr.in));
381e3cc6 499 }
1d30fc5c
YW
500 case AF_INET6:
501 /* See kernel's ipv6_get_ifaddr() in net/ipv6/addrconf.c */
6174dc7d
YW
502 r = memcmp(&a1->in_addr.in6, &a2->in_addr.in6, sizeof(a1->in_addr.in6));
503 if (r != 0)
504 return r;
505
506 /* To distinguish IPv6 null addresses with different prefixlen, e.g. ::48 vs ::64, let's
507 * compare the prefix length. */
508 if (in6_addr_is_null(&a1->in_addr.in6))
509 r = CMP(a1->prefixlen, a2->prefixlen);
510
511 return r;
52af8e5e 512
1d30fc5c
YW
513 default:
514 /* treat any other address family as AF_UNSPEC */
515 return 0;
516 }
3ac8e543
TG
517}
518
77de62f9 519bool address_can_update(const Address *existing, const Address *requesting) {
a45e1c35
YW
520 assert(existing);
521 assert(requesting);
b5aefc90
YW
522
523 /*
524 * property | IPv4 | IPv6
525 * -----------------------------------------
526 * family | ✗ | ✗
527 * prefixlen | ✗ | ✗
528 * address | ✗ | ✗
529 * scope | ✗ | -
530 * label | ✗ | -
531 * broadcast | ✗ | -
532 * peer | ✗ | ✓
533 * flags | ✗ | ✓
534 * lifetime | ✓ | ✓
535 * route metric | ✓ | ✓
536 * protocol | ✓ | ✓
537 *
538 * ✗ : cannot be changed
539 * ✓ : can be changed
540 * - : unused
541 *
542 * IPv4 : See inet_rtm_newaddr() in net/ipv4/devinet.c.
543 * IPv6 : See inet6_addr_modify() in net/ipv6/addrconf.c.
544 */
545
a45e1c35 546 if (existing->family != requesting->family)
b5aefc90
YW
547 return false;
548
a45e1c35 549 if (existing->prefixlen != requesting->prefixlen)
b5aefc90
YW
550 return false;
551
552 /* When a null address is requested, the address to be assigned/updated will be determined later. */
a45e1c35
YW
553 if (!address_is_static_null(requesting) &&
554 in_addr_equal(existing->family, &existing->in_addr, &requesting->in_addr) <= 0)
b5aefc90
YW
555 return false;
556
a45e1c35 557 switch (existing->family) {
b5aefc90
YW
558 case AF_INET: {
559 struct in_addr bcast;
560
a45e1c35 561 if (existing->scope != requesting->scope)
b5aefc90 562 return false;
a45e1c35 563 if (((existing->flags ^ requesting->flags) & KNOWN_FLAGS & ~IPV6ONLY_FLAGS & ~UNMANAGED_FLAGS) != 0)
b5aefc90 564 return false;
a45e1c35 565 if (!streq_ptr(existing->label, requesting->label))
b5aefc90 566 return false;
a45e1c35 567 if (!in4_addr_equal(&existing->in_addr_peer.in, &requesting->in_addr_peer.in))
b5aefc90 568 return false;
a45e1c35 569 if (existing->link && address_get_broadcast(requesting, existing->link, &bcast) >= 0) {
b5aefc90 570 /* If the broadcast address can be determined now, check if they match. */
a45e1c35 571 if (!in4_addr_equal(&existing->broadcast, &bcast))
b5aefc90
YW
572 return false;
573 } else {
574 /* When a null address is requested, then the broadcast address will be
575 * automatically calculated from the acquired address, e.g.
576 * 192.168.0.10/24 -> 192.168.0.255
577 * So, here let's only check if the broadcast is the last address in the range, e.g.
578 * 0.0.0.0/24 -> 0.0.0.255 */
a45e1c35 579 if (!FLAGS_SET(existing->broadcast.s_addr, htobe32(UINT32_C(0xffffffff) >> existing->prefixlen)))
b5aefc90
YW
580 return false;
581 }
582 break;
583 }
584 case AF_INET6:
585 break;
586
587 default:
588 assert_not_reached();
589 }
590
591 return true;
592}
593
99b46669 594int address_dup(const Address *src, Address **ret) {
ebd96906 595 _cleanup_(address_unrefp) Address *dest = NULL;
cde1f0e8
YW
596 int r;
597
cde1f0e8 598 assert(src);
99b46669
YW
599 assert(ret);
600
601 dest = newdup(Address, src, 1);
602 if (!dest)
603 return -ENOMEM;
604
ebd96906
YW
605 /* clear the reference counter and all pointers */
606 dest->n_ref = 1;
99b46669
YW
607 dest->network = NULL;
608 dest->section = NULL;
609 dest->link = NULL;
610 dest->label = NULL;
4b3590c3 611 dest->netlabel = NULL;
fc289dd0
TM
612 dest->nft_set_context.sets = NULL;
613 dest->nft_set_context.n_sets = 0;
cde1f0e8 614
2a236f9f 615 if (src->family == AF_INET) {
6504d41c 616 r = strdup_or_null(src->label, &dest->label);
2a236f9f
YW
617 if (r < 0)
618 return r;
619 }
cde1f0e8 620
6504d41c 621 r = strdup_or_null(src->netlabel, &dest->netlabel);
4b3590c3
TM
622 if (r < 0)
623 return r;
624
fc289dd0
TM
625 r = nft_set_context_dup(&src->nft_set_context, &dest->nft_set_context);
626 if (r < 0)
627 return r;
628
99b46669 629 *ret = TAKE_PTR(dest);
cde1f0e8
YW
630 return 0;
631}
632
494b6b43
YW
633static int address_set_masquerade(Address *address, bool add) {
634 union in_addr_union masked;
91b5f997
TG
635 int r;
636
637 assert(address);
494b6b43 638 assert(address->link);
91b5f997 639
494b6b43
YW
640 if (!address->link->network)
641 return 0;
91b5f997 642
48ed2766
FW
643 if (address->family == AF_INET &&
644 !FLAGS_SET(address->link->network->ip_masquerade, ADDRESS_FAMILY_IPV4))
494b6b43 645 return 0;
91b5f997 646
48ed2766
FW
647 if (address->family == AF_INET6 &&
648 !FLAGS_SET(address->link->network->ip_masquerade, ADDRESS_FAMILY_IPV6))
494b6b43 649 return 0;
91b5f997 650
494b6b43
YW
651 if (address->scope >= RT_SCOPE_LINK)
652 return 0;
653
da0e2bae 654 if (address->ip_masquerade_done == add)
494b6b43
YW
655 return 0;
656
657 masked = address->in_addr;
658 r = in_addr_mask(address->family, &masked, address->prefixlen);
659 if (r < 0)
660 return r;
661
48ed2766 662 r = fw_add_masquerade(&address->link->manager->fw_ctx, add, address->family, &masked, address->prefixlen);
494b6b43
YW
663 if (r < 0)
664 return r;
665
da0e2bae 666 address->ip_masquerade_done = add;
91b5f997
TG
667
668 return 0;
669}
670
fc289dd0
TM
671static void address_modify_nft_set_context(Address *address, bool add, NFTSetContext *nft_set_context) {
672 int r;
673
674 assert(address);
675 assert(address->link);
676 assert(address->link->manager);
677 assert(nft_set_context);
678
679 if (!address->link->manager->fw_ctx) {
58c6e75f 680 r = fw_ctx_new_full(&address->link->manager->fw_ctx, /* init_tables= */ false);
fc289dd0
TM
681 if (r < 0)
682 return;
683 }
684
685 FOREACH_ARRAY(nft_set, nft_set_context->sets, nft_set_context->n_sets) {
686 uint32_t ifindex;
687
688 assert(nft_set);
689
690 switch (nft_set->source) {
691 case NFT_SET_SOURCE_ADDRESS:
692 r = nft_set_element_modify_ip(address->link->manager->fw_ctx, add, nft_set->nfproto, address->family, nft_set->table, nft_set->set,
693 &address->in_addr);
694 break;
695 case NFT_SET_SOURCE_PREFIX:
696 r = nft_set_element_modify_iprange(address->link->manager->fw_ctx, add, nft_set->nfproto, address->family, nft_set->table, nft_set->set,
697 &address->in_addr, address->prefixlen);
698 break;
699 case NFT_SET_SOURCE_IFINDEX:
700 ifindex = address->link->ifindex;
701 r = nft_set_element_modify_any(address->link->manager->fw_ctx, add, nft_set->nfproto, nft_set->table, nft_set->set,
702 &ifindex, sizeof(ifindex));
703 break;
704 default:
705 assert_not_reached();
706 }
707
708 if (r < 0)
13b8fb98 709 log_warning_errno(r, "Failed to %s NFT set: family %s, table %s, set %s, IP address %s, ignoring: %m",
4d9a30f1 710 add ? "add" : "delete",
fc289dd0
TM
711 nfproto_to_string(nft_set->nfproto), nft_set->table, nft_set->set,
712 IN_ADDR_PREFIX_TO_STRING(address->family, &address->in_addr, address->prefixlen));
713 else
714 log_debug("%s NFT set: family %s, table %s, set %s, IP address %s",
715 add ? "Added" : "Deleted",
716 nfproto_to_string(nft_set->nfproto), nft_set->table, nft_set->set,
717 IN_ADDR_PREFIX_TO_STRING(address->family, &address->in_addr, address->prefixlen));
718 }
719}
720
721static void address_modify_nft_set(Address *address, bool add) {
722 assert(address);
723 assert(address->link);
724
725 if (!IN_SET(address->family, AF_INET, AF_INET6))
726 return;
727
728 if (!address->link->network)
729 return;
730
731 switch (address->source) {
732 case NETWORK_CONFIG_SOURCE_DHCP4:
733 return address_modify_nft_set_context(address, add, &address->link->network->dhcp_nft_set_context);
734 case NETWORK_CONFIG_SOURCE_DHCP6:
735 return address_modify_nft_set_context(address, add, &address->link->network->dhcp6_nft_set_context);
736 case NETWORK_CONFIG_SOURCE_DHCP_PD:
737 return address_modify_nft_set_context(address, add, &address->link->network->dhcp_pd_nft_set_context);
738 case NETWORK_CONFIG_SOURCE_NDISC:
739 return address_modify_nft_set_context(address, add, &address->link->network->ndisc_nft_set_context);
740 case NETWORK_CONFIG_SOURCE_STATIC:
741 return address_modify_nft_set_context(address, add, &address->nft_set_context);
742 default:
743 return;
744 }
745}
746
ebd96906 747static int address_attach(Link *link, Address *address) {
cf1d700d
TG
748 int r;
749
750 assert(link);
3b6a3bde 751 assert(address);
ebd96906 752 assert(!address->link);
cf1d700d 753
ebd96906 754 r = set_ensure_put(&link->addresses, &address_hash_ops_detach, address);
cf1d700d
TG
755 if (r < 0)
756 return r;
75a302b5
YW
757 if (r == 0)
758 return -EEXIST;
cf1d700d
TG
759
760 address->link = link;
ebd96906 761 address_ref(address);
7b3a7581 762 return 0;
adda1ed9
TG
763}
764
f9831557 765static int address_update(Address *address) {
4bbe559b 766 Link *link = ASSERT_PTR(ASSERT_PTR(address)->link);
e7ab854c 767 int r;
36c32f61 768
7657ec3e
YW
769 if (address_is_ready(address) &&
770 address->family == AF_INET6 &&
771 in6_addr_is_link_local(&address->in_addr.in6) &&
772 in6_addr_is_null(&link->ipv6ll_address)) {
773
774 link->ipv6ll_address = address->in_addr.in6;
775
776 r = link_ipv6ll_gained(link);
777 if (r < 0)
778 return r;
779 }
780
2c40a889 781 if (IN_SET(link->state, LINK_STATE_FAILED, LINK_STATE_LINGER))
ea121d8f
YW
782 return 0;
783
4bbe559b 784 r = address_set_masquerade(address, /* add = */ true);
7a8685ff
YW
785 if (r < 0)
786 return log_link_warning_errno(link, r, "Could not enable IP masquerading: %m");
787
4b3590c3
TM
788 address_add_netlabel(address);
789
fc289dd0
TM
790 address_modify_nft_set(address, /* add = */ true);
791
981fab5d
YW
792 if (address_is_ready(address) && address->callback) {
793 r = address->callback(address);
794 if (r < 0)
795 return r;
a3a019e1 796 }
36c32f61 797
4bbe559b 798 link_update_operstate(link, /* also_update_master = */ true);
981fab5d 799 link_check_ready(link);
36c32f61
TG
800 return 0;
801}
802
67a58eb3 803static int address_drop(Address *address) {
4bbe559b 804 Link *link = ASSERT_PTR(ASSERT_PTR(address)->link);
7750b796 805 int r;
8012cd39 806
4bbe559b 807 r = address_set_masquerade(address, /* add = */ false);
7750b796
YW
808 if (r < 0)
809 log_link_warning_errno(link, r, "Failed to disable IP masquerading, ignoring: %m");
810
fc289dd0
TM
811 address_modify_nft_set(address, /* add = */ false);
812
4b3590c3
TM
813 address_del_netlabel(address);
814
f089d3eb
YW
815 /* FIXME: if the IPv6LL address is dropped, stop DHCPv6, NDISC, RADV. */
816 if (address->family == AF_INET6 &&
817 in6_addr_equal(&address->in_addr.in6, &link->ipv6ll_address))
818 link->ipv6ll_address = (const struct in6_addr) {};
819
820 ipv4acd_detach(link, address);
821
ebd96906 822 address_detach(address);
91b5f997 823
aaad20e0
YW
824 link_update_operstate(link, /* also_update_master = */ true);
825 link_check_ready(link);
91b5f997
TG
826 return 0;
827}
828
a2532c9d
YW
829static bool address_match_null(const Address *a, const Address *null_address) {
830 assert(a);
831 assert(null_address);
832
833 if (!a->requested_as_null)
834 return false;
835
836 /* Currently, null address is supported only by static addresses. Note that static
837 * address may be set as foreign during reconfiguring the interface. */
838 if (!IN_SET(a->source, NETWORK_CONFIG_SOURCE_FOREIGN, NETWORK_CONFIG_SOURCE_STATIC))
839 return false;
840
841 if (a->family != null_address->family)
842 return false;
843
844 if (a->prefixlen != null_address->prefixlen)
845 return false;
846
847 return true;
848}
849
0a0c2672
YW
850static int address_get_request(Link *link, const Address *address, Request **ret) {
851 Request *req;
852
853 assert(link);
854 assert(link->manager);
855 assert(address);
856
857 req = ordered_set_get(
858 link->manager->request_queue,
859 &(Request) {
860 .link = link,
861 .type = REQUEST_TYPE_ADDRESS,
862 .userdata = (void*) address,
4da252c5
YW
863 .hash_func = (hash_func_t) address_hash_func,
864 .compare_func = (compare_func_t) address_compare_func,
0a0c2672
YW
865 });
866 if (req) {
867 if (ret)
868 *ret = req;
869 return 0;
870 }
871
872 if (address_is_static_null(address))
873 ORDERED_SET_FOREACH(req, link->manager->request_queue) {
874 if (req->link != link)
875 continue;
876 if (req->type != REQUEST_TYPE_ADDRESS)
877 continue;
878
879 if (!address_match_null(req->userdata, address))
880 continue;
881
882 if (ret)
883 *ret = req;
884
885 return 0;
886 }
887
888 return -ENOENT;
889}
890
fe841414 891int address_get(Link *link, const Address *in, Address **ret) {
d0009d92 892 Address *a;
91b5f997 893
5a8bcb67 894 assert(link);
fe841414 895 assert(in);
5a8bcb67 896
d0009d92
YW
897 a = set_get(link->addresses, in);
898 if (a) {
899 if (ret)
900 *ret = a;
901 return 0;
902 }
903
904 /* Find matching address that originally requested as null address. */
905 if (address_is_static_null(in))
906 SET_FOREACH(a, link->addresses) {
a2532c9d 907 if (!address_match_null(a, in))
d0009d92
YW
908 continue;
909
910 if (ret)
911 *ret = a;
912 return 0;
913 }
914
915 return -ENOENT;
5a8bcb67
LP
916}
917
b33dd04e
YW
918int address_get_harder(Link *link, const Address *in, Address **ret) {
919 Request *req;
920 int r;
921
922 assert(link);
923 assert(in);
924
925 if (address_get(link, in, ret) >= 0)
926 return 0;
927
928 r = address_get_request(link, in, &req);
929 if (r < 0)
930 return r;
931
932 if (ret)
933 *ret = ASSERT_PTR(req->userdata);
934
935 return 0;
936}
937
5d003031 938int link_get_address(Link *link, int family, const union in_addr_union *address, unsigned char prefixlen, Address **ret) {
390247d2 939 Address *a;
c5a0aeb3 940 int r;
5eec0a08 941
c5a0aeb3 942 assert(link);
5d003031 943 assert(IN_SET(family, AF_INET, AF_INET6));
c5a0aeb3 944 assert(address);
5eec0a08 945
5d003031
YW
946 /* This find an Address object on the link which matches the given address and prefix length
947 * and does not have peer address. When the prefixlen is zero, then an Address object with an
948 * arbitrary prefixlen will be returned. */
998545a7 949
42f8b6a8 950 if (family == AF_INET6 || prefixlen != 0) {
ebd96906 951 _cleanup_(address_unrefp) Address *tmp = NULL;
998545a7 952
42f8b6a8 953 /* In this case, we can use address_get(). */
998545a7 954
390247d2 955 r = address_new(&tmp);
998545a7
YW
956 if (r < 0)
957 return r;
958
390247d2
YW
959 tmp->family = family;
960 tmp->in_addr = *address;
961 tmp->prefixlen = prefixlen;
3b6a3bde 962
42f8b6a8
YW
963 r = address_get(link, tmp, &a);
964 if (r < 0)
965 return r;
3b6a3bde 966
42f8b6a8
YW
967 if (family == AF_INET6) {
968 /* IPv6 addresses are managed without peer address and prefix length. Hence, we need
969 * to check them explicitly. */
970 if (in_addr_is_set(family, &a->in_addr_peer))
971 return -ENOENT;
972 if (prefixlen != 0 && a->prefixlen != prefixlen)
973 return -ENOENT;
3b6a3bde
YW
974 }
975
42f8b6a8
YW
976 if (ret)
977 *ret = a;
390247d2 978
42f8b6a8 979 return 0;
390247d2
YW
980 }
981
982 SET_FOREACH(a, link->addresses) {
983 if (a->family != family)
984 continue;
985
986 if (!in_addr_equal(family, &a->in_addr, address))
987 continue;
988
989 if (in_addr_is_set(family, &a->in_addr_peer))
990 continue;
991
992 if (ret)
993 *ret = a;
994
995 return 0;
3b6a3bde 996 }
390247d2
YW
997
998 return -ENOENT;
998545a7
YW
999}
1000
77e9be1e 1001int manager_get_address(Manager *manager, int family, const union in_addr_union *address, unsigned char prefixlen, Address **ret) {
591bd5f3 1002 Link *link;
591bd5f3
YW
1003
1004 assert(manager);
1005 assert(IN_SET(family, AF_INET, AF_INET6));
1006 assert(address);
1007
77e9be1e
YW
1008 HASHMAP_FOREACH(link, manager->links_by_index) {
1009 if (!IN_SET(link->state, LINK_STATE_CONFIGURING, LINK_STATE_CONFIGURED))
1010 continue;
1011
1012 if (link_get_address(link, family, address, prefixlen, ret) >= 0)
1013 return 0;
1014 }
1015
1016 return -ENOENT;
1017}
1018
1a4b0459 1019bool manager_has_address(Manager *manager, int family, const union in_addr_union *address) {
77e9be1e
YW
1020 Address *a;
1021
1022 assert(manager);
1023 assert(IN_SET(family, AF_INET, AF_INET6));
1024 assert(address);
1025
1026 if (manager_get_address(manager, family, address, 0, &a) < 0)
1027 return false;
591bd5f3 1028
1a4b0459 1029 return address_is_ready(a);
591bd5f3
YW
1030}
1031
16bc8635 1032const char* format_lifetime(char *buf, size_t l, usec_t lifetime_usec) {
0fd97a25 1033 assert(buf);
a35f3128 1034 assert(l > 4);
0fd97a25 1035
16bc8635 1036 if (lifetime_usec == USEC_INFINITY)
a35f3128 1037 return "forever";
0fd97a25 1038
a35f3128
ZJS
1039 sprintf(buf, "for ");
1040 /* format_timespan() never fails */
ba4e0427 1041 assert_se(format_timespan(buf + 4, l - 4, usec_sub_unsigned(lifetime_usec, now(CLOCK_BOOTTIME)), USEC_PER_SEC));
a35f3128 1042 return buf;
0fd97a25
YW
1043}
1044
24f50382 1045static void log_address_debug(const Address *address, const char *str, const Link *link) {
84dbb3fd 1046 _cleanup_free_ char *state = NULL, *flags_str = NULL, *scope_str = NULL;
7653a9dc 1047
24f50382
YW
1048 assert(address);
1049 assert(str);
1050 assert(link);
1051
7653a9dc
YW
1052 if (!DEBUG_LOGGING)
1053 return;
1054
3b6a3bde 1055 (void) network_config_state_to_string_alloc(address->state, &state);
84dbb3fd
ZJS
1056
1057 const char *peer = in_addr_is_set(address->family, &address->in_addr_peer) ?
1058 IN_ADDR_TO_STRING(address->family, &address->in_addr_peer) : NULL;
7653a9dc 1059
14044a41
YW
1060 const char *broadcast = (address->family == AF_INET && in4_addr_is_set(&address->broadcast)) ?
1061 IN4_ADDR_TO_STRING(&address->broadcast) : NULL;
1062
a2362484 1063 (void) address_flags_to_string_alloc(address->flags, address->family, &flags_str);
78ef25a5 1064 (void) route_scope_to_string_alloc(address->scope, &scope_str);
a2362484 1065
14044a41 1066 log_link_debug(link, "%s %s address (%s): %s%s%s/%u%s%s (valid %s, preferred %s), flags: %s, scope: %s%s%s",
3b6a3bde 1067 str, strna(network_config_source_to_string(address->source)), strna(state),
84dbb3fd
ZJS
1068 IN_ADDR_TO_STRING(address->family, &address->in_addr),
1069 peer ? " peer " : "", strempty(peer), address->prefixlen,
14044a41 1070 broadcast ? " broadcast " : "", strempty(broadcast),
16bc8635
YW
1071 FORMAT_LIFETIME(address->lifetime_valid_usec),
1072 FORMAT_LIFETIME(address->lifetime_preferred_usec),
14044a41
YW
1073 strna(flags_str), strna(scope_str),
1074 address->family == AF_INET ? ", label: " : "",
1075 address->family == AF_INET ? strna(address->label) : "");
24f50382
YW
1076}
1077
a79a8d16 1078static int address_set_netlink_message(const Address *address, sd_netlink_message *m, Link *link) {
d5e3b3eb 1079 uint32_t flags;
a8481354
YW
1080 int r;
1081
1082 assert(address);
a79a8d16 1083 assert(m);
a8481354
YW
1084 assert(link);
1085
a79a8d16 1086 r = sd_rtnl_message_addr_set_prefixlen(m, address->prefixlen);
a8481354 1087 if (r < 0)
a79a8d16 1088 return r;
a8481354
YW
1089
1090 /* On remove, only IFA_F_MANAGETEMPADDR flag for IPv6 addresses are used. But anyway, set all
d5e3b3eb
YW
1091 * flags except tentative flag here unconditionally. Without setting the flag, the template
1092 * addresses generated by kernel will not be removed automatically when the main address is
1093 * removed. */
1094 flags = address->flags & ~IFA_F_TENTATIVE;
a79a8d16 1095 r = sd_rtnl_message_addr_set_flags(m, flags & 0xff);
a8481354 1096 if (r < 0)
a79a8d16 1097 return r;
a8481354 1098
d5e3b3eb 1099 if ((flags & ~0xff) != 0) {
a79a8d16 1100 r = sd_netlink_message_append_u32(m, IFA_FLAGS, flags);
a8481354 1101 if (r < 0)
a79a8d16 1102 return r;
a8481354
YW
1103 }
1104
a79a8d16 1105 r = netlink_message_append_in_addr_union(m, IFA_LOCAL, address->family, &address->in_addr);
a8481354 1106 if (r < 0)
a79a8d16 1107 return r;
a8481354
YW
1108
1109 return 0;
1110}
1111
56a995fe 1112static int address_remove_handler(sd_netlink *rtnl, sd_netlink_message *m, RemoveRequest *rreq) {
5a07fa9d
YW
1113 int r;
1114
5a07fa9d 1115 assert(m);
56a995fe 1116 assert(rreq);
76c5a0f2 1117
56a995fe
YW
1118 Link *link = ASSERT_PTR(rreq->link);
1119 Address *address = ASSERT_PTR(rreq->userdata);
1120
1121 if (link->state == LINK_STATE_LINGER)
5a07fa9d
YW
1122 return 0;
1123
1124 r = sd_netlink_message_get_errno(m);
56a995fe
YW
1125 if (r < 0) {
1126 log_link_message_full_errno(link, m,
1127 (r == -EADDRNOTAVAIL || !address->link) ? LOG_DEBUG : LOG_WARNING,
1128 r, "Could not drop address");
1129
1130 if (address->link) {
1131 /* If the address cannot be removed, then assume the address is already removed. */
1132 log_address_debug(address, "Forgetting", link);
1133
1134 Request *req;
1135 if (address_get_request(link, address, &req) >= 0)
1136 address_enter_removed(req->userdata);
1137
1138 (void) address_drop(address);
1139 }
1140 }
5a07fa9d
YW
1141
1142 return 1;
1143}
1144
7f74b00a 1145int address_remove(Address *address, Link *link) {
a79a8d16 1146 _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *m = NULL;
407fe036
TG
1147 int r;
1148
1149 assert(address);
4c701096 1150 assert(IN_SET(address->family, AF_INET, AF_INET6));
7f74b00a
YW
1151 assert(link);
1152 assert(link->ifindex > 0);
1153 assert(link->manager);
1154 assert(link->manager->rtnl);
407fe036 1155
fe0acbf7
YW
1156 /* If the address is remembered, use the remembered object. */
1157 (void) address_get(link, address, &address);
1158
24f50382 1159 log_address_debug(address, "Removing", link);
30226d27 1160
a79a8d16 1161 r = sd_rtnl_message_new_addr(link->manager->rtnl, &m, RTM_DELADDR,
151b9b96 1162 link->ifindex, address->family);
eb56eb9b 1163 if (r < 0)
a79a8d16 1164 return log_link_warning_errno(link, r, "Could not allocate RTM_DELADDR message: %m");
407fe036 1165
a79a8d16 1166 r = address_set_netlink_message(address, m, link);
eb56eb9b 1167 if (r < 0)
a79a8d16 1168 return log_link_warning_errno(link, r, "Could not set netlink attributes: %m");
407fe036 1169
56a995fe 1170 r = link_remove_request_add(link, address, address, link->manager->rtnl, m, address_remove_handler);
eb56eb9b 1171 if (r < 0)
56a995fe 1172 return log_link_warning_errno(link, r, "Could not queue rtnetlink message: %m");
563c69c6 1173
3b6a3bde 1174 address_enter_removing(address);
613d65d8
YW
1175
1176 /* The operational state is determined by address state and carrier state. Hence, if we remove
1177 * an address, the operational state may be changed. */
1178 link_update_operstate(link, true);
407fe036
TG
1179 return 0;
1180}
1181
f22b586a 1182int address_remove_and_cancel(Address *address, Link *link) {
7036d472 1183 _cleanup_(request_unrefp) Request *req = NULL;
f22b586a 1184 bool waiting = false;
d4b76314 1185
f22b586a
YW
1186 assert(address);
1187 assert(link);
1188 assert(link->manager);
d4b76314 1189
f22b586a
YW
1190 /* If the address is remembered by the link, then use the remembered object. */
1191 (void) address_get(link, address, &address);
d4b76314 1192
f22b586a
YW
1193 /* Cancel the request for the address. If the request is already called but we have not received the
1194 * notification about the request, then explicitly remove the address. */
1195 if (address_get_request(link, address, &req) >= 0) {
7036d472 1196 request_ref(req); /* avoid the request freed by request_detach() */
f22b586a 1197 waiting = req->waiting_reply;
b9b5096e 1198 request_detach(req);
f22b586a
YW
1199 address_cancel_requesting(address);
1200 }
1201
1202 /* If we know the address will come or already exists, remove it. */
1203 if (waiting || (address->link && address_exists(address)))
1204 return address_remove(address, link);
1205
1206 return 0;
d4b76314
YW
1207}
1208
3def8850 1209bool link_address_is_dynamic(const Link *link, const Address *address) {
f8f2f880
YW
1210 Route *route;
1211
1212 assert(link);
8d01e44c 1213 assert(link->manager);
f8f2f880
YW
1214 assert(address);
1215
16bc8635 1216 if (address->lifetime_preferred_usec != USEC_INFINITY)
f8f2f880
YW
1217 return true;
1218
1219 /* Even when the address is leased from a DHCP server, networkd assign the address
1220 * without lifetime when KeepConfiguration=dhcp. So, let's check that we have
1221 * corresponding routes with RTPROT_DHCP. */
8d01e44c 1222 SET_FOREACH(route, link->manager->routes) {
3b6a3bde
YW
1223 if (route->source != NETWORK_CONFIG_SOURCE_FOREIGN)
1224 continue;
1225
f974f17a
YW
1226 /* The route is not assigned yet, or already removed. Ignoring. */
1227 if (!route_exists(route))
1228 continue;
1229
f8f2f880
YW
1230 if (route->protocol != RTPROT_DHCP)
1231 continue;
1232
8d01e44c
YW
1233 if (route->nexthop.ifindex != link->ifindex)
1234 continue;
1235
f8f2f880
YW
1236 if (address->family != route->family)
1237 continue;
1238
1239 if (in_addr_equal(address->family, &address->in_addr, &route->prefsrc))
1240 return true;
1241 }
1242
1243 return false;
1244}
1245
b9bf3f22 1246int link_drop_ipv6ll_addresses(Link *link) {
51f5dfd8 1247 _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *req = NULL, *reply = NULL;
51f5dfd8
YW
1248 int r;
1249
1250 assert(link);
1251 assert(link->manager);
1252 assert(link->manager->rtnl);
1253
b9bf3f22
YW
1254 /* IPv6LL address may be in the tentative state, and in that case networkd has not received it.
1255 * So, we need to dump all IPv6 addresses. */
1256
bd7e0a3f 1257 if (link_may_have_ipv6ll(link, /* check_multicast = */ false))
b9bf3f22
YW
1258 return 0;
1259
c31298be 1260 r = sd_rtnl_message_new_addr(link->manager->rtnl, &req, RTM_GETADDR, link->ifindex, AF_INET6);
51f5dfd8
YW
1261 if (r < 0)
1262 return r;
1263
24c0f385 1264 r = sd_netlink_message_set_request_dump(req, true);
f318f643
YW
1265 if (r < 0)
1266 return r;
1267
51f5dfd8
YW
1268 r = sd_netlink_call(link->manager->rtnl, req, 0, &reply);
1269 if (r < 0)
1270 return r;
1271
cda7fc8d 1272 for (sd_netlink_message *addr = reply; addr; addr = sd_netlink_message_next(addr)) {
ebd96906 1273 _cleanup_(address_unrefp) Address *a = NULL;
b9bf3f22
YW
1274 unsigned char flags, prefixlen;
1275 struct in6_addr address;
51f5dfd8
YW
1276 int ifindex;
1277
c31298be
YW
1278 /* NETLINK_GET_STRICT_CHK socket option is supported since kernel 4.20. To support
1279 * older kernels, we need to check ifindex here. */
51f5dfd8
YW
1280 r = sd_rtnl_message_addr_get_ifindex(addr, &ifindex);
1281 if (r < 0) {
b9bf3f22 1282 log_link_debug_errno(link, r, "rtnl: received address message without valid ifindex, ignoring: %m");
51f5dfd8
YW
1283 continue;
1284 } else if (link->ifindex != ifindex)
1285 continue;
1286
1287 r = sd_rtnl_message_addr_get_flags(addr, &flags);
1288 if (r < 0) {
b9bf3f22
YW
1289 log_link_debug_errno(link, r, "rtnl: received address message without valid flags, ignoring: %m");
1290 continue;
1291 }
1292
1293 r = sd_rtnl_message_addr_get_prefixlen(addr, &prefixlen);
1294 if (r < 0) {
1295 log_link_debug_errno(link, r, "rtnl: received address message without prefixlen, ignoring: %m");
51f5dfd8 1296 continue;
b9bf3f22
YW
1297 }
1298
1299 if (sd_netlink_message_read_in6_addr(addr, IFA_LOCAL, NULL) >= 0)
1300 /* address with peer, ignoring. */
51f5dfd8
YW
1301 continue;
1302
b9bf3f22
YW
1303 r = sd_netlink_message_read_in6_addr(addr, IFA_ADDRESS, &address);
1304 if (r < 0) {
1305 log_link_debug_errno(link, r, "rtnl: received address message without valid address, ignoring: %m");
1306 continue;
1307 }
1308
1309 if (!in6_addr_is_link_local(&address))
1310 continue;
1311
1312 r = address_new(&a);
1313 if (r < 0)
1314 return -ENOMEM;
1315
1316 a->family = AF_INET6;
1317 a->in_addr.in6 = address;
1318 a->prefixlen = prefixlen;
1319 a->flags = flags;
1320
f1b73dbb 1321 r = address_remove(a, link);
b9bf3f22
YW
1322 if (r < 0)
1323 return r;
51f5dfd8
YW
1324 }
1325
1326 return 0;
1327}
1328
f8f2f880
YW
1329int link_drop_foreign_addresses(Link *link) {
1330 Address *address;
1339b950 1331 int r = 0;
f8f2f880
YW
1332
1333 assert(link);
3b6a3bde 1334 assert(link->network);
f8f2f880 1335
3b6a3bde
YW
1336 /* First, mark all addresses. */
1337 SET_FOREACH(address, link->addresses) {
b9bf3f22 1338 /* We consider IPv6LL addresses to be managed by the kernel, or dropped in link_drop_ipv6ll_addresses() */
ecedc48b 1339 if (address->family == AF_INET6 && in6_addr_is_link_local(&address->in_addr.in6))
f8f2f880
YW
1340 continue;
1341
b69bfa43
YW
1342 /* Do not remove localhost address (127.0.0.1 and ::1) */
1343 if (link->flags & IFF_LOOPBACK && in_addr_is_localhost_one(address->family, &address->in_addr) > 0)
1344 continue;
1345
3b6a3bde
YW
1346 /* Ignore addresses we configured. */
1347 if (address->source != NETWORK_CONFIG_SOURCE_FOREIGN)
1348 continue;
1349
1350 /* Ignore addresses not assigned yet or already removing. */
1351 if (!address_exists(address))
1352 continue;
1353
a71c5c44
YW
1354 /* link_address_is_dynamic() is slightly heavy. Let's call the function only when KeepConfiguration= is set. */
1355 if (IN_SET(link->network->keep_configuration, KEEP_CONFIGURATION_DHCP, KEEP_CONFIGURATION_STATIC) &&
1356 link_address_is_dynamic(link, address) == (link->network->keep_configuration == KEEP_CONFIGURATION_DHCP))
f8f2f880
YW
1357 continue;
1358
3b6a3bde
YW
1359 address_mark(address);
1360 }
1361
1362 /* Then, unmark requested addresses. */
1363 ORDERED_HASHMAP_FOREACH(address, link->network->addresses_by_section) {
1364 Address *existing;
1365
d0009d92
YW
1366 if (address_get(link, address, &existing) < 0)
1367 continue;
1368
b5aefc90 1369 if (!address_can_update(existing, address))
d0009d92
YW
1370 continue;
1371
1372 /* Found matching static configuration. Keep the existing address. */
1373 address_unmark(existing);
3b6a3bde
YW
1374 }
1375
1376 /* Finally, remove all marked addresses. */
1377 SET_FOREACH(address, link->addresses) {
1378 if (!address_is_marked(address))
1379 continue;
1380
7f74b00a 1381 RET_GATHER(r, address_remove(address, link));
f8f2f880
YW
1382 }
1383
1384 return r;
1385}
1386
e09b7588 1387int link_drop_static_addresses(Link *link) {
3b6a3bde 1388 Address *address;
1339b950 1389 int r = 0;
d7fbb9f5
YW
1390
1391 assert(link);
1392
1393 SET_FOREACH(address, link->addresses) {
e09b7588
YW
1394 /* Remove only static addresses here. Dynamic addresses will be removed e.g. on lease
1395 * expiration or stopping the DHCP client. */
1396 if (address->source != NETWORK_CONFIG_SOURCE_STATIC)
3b6a3bde
YW
1397 continue;
1398
a0e99a37
YW
1399 /* Ignore addresses not assigned yet or already removing. */
1400 if (!address_exists(address))
d7fbb9f5
YW
1401 continue;
1402
7f74b00a 1403 RET_GATHER(r, address_remove(address, link));
d7fbb9f5
YW
1404 }
1405
1406 return r;
1407}
1408
b4564f4e
YW
1409void link_foreignize_addresses(Link *link) {
1410 Address *address;
1411
1412 assert(link);
1413
1414 SET_FOREACH(address, link->addresses)
1415 address->source = NETWORK_CONFIG_SOURCE_FOREIGN;
1416}
1417
693ec5ca 1418static int address_acquire(Link *link, const Address *original, Address **ret) {
ebd96906 1419 _cleanup_(address_unrefp) Address *na = NULL;
3b6a3bde 1420 union in_addr_union in_addr;
11bf3cce
LP
1421 int r;
1422
1423 assert(link);
1424 assert(original);
1425 assert(ret);
1426
1427 /* Something useful was configured? just use it */
9684a8de
YW
1428 if (in_addr_is_set(original->family, &original->in_addr))
1429 return address_dup(original, ret);
11bf3cce
LP
1430
1431 /* The address is configured to be 0.0.0.0 or [::] by the user?
1432 * Then let's acquire something more useful from the pool. */
ed76f585 1433 r = address_pool_acquire(link->manager, original->family, original->prefixlen, &in_addr);
6a7a4e4d 1434 if (r < 0)
7750b796
YW
1435 return r;
1436 if (r == 0)
11bf3cce 1437 return -EBUSY;
11bf3cce 1438
473680be
YW
1439 /* Pick first address in range for ourselves. */
1440 if (original->family == AF_INET)
11bf3cce 1441 in_addr.in.s_addr = in_addr.in.s_addr | htobe32(1);
473680be 1442 else if (original->family == AF_INET6)
11bf3cce
LP
1443 in_addr.in6.s6_addr[15] |= 1;
1444
99b46669 1445 r = address_dup(original, &na);
cde1f0e8
YW
1446 if (r < 0)
1447 return r;
11bf3cce 1448
11bf3cce
LP
1449 na->in_addr = in_addr;
1450
1cc6c93a 1451 *ret = TAKE_PTR(na);
9684a8de 1452 return 0;
11bf3cce
LP
1453}
1454
5a07fa9d
YW
1455int address_configure_handler_internal(sd_netlink *rtnl, sd_netlink_message *m, Link *link, const char *error_msg) {
1456 int r;
1457
1458 assert(rtnl);
1459 assert(m);
1460 assert(link);
1461 assert(error_msg);
1462
5a07fa9d
YW
1463 r = sd_netlink_message_get_errno(m);
1464 if (r < 0 && r != -EEXIST) {
1465 log_link_message_warning_errno(link, m, r, error_msg);
1466 link_enter_failed(link);
1467 return 0;
3a1dfdb4 1468 }
5a07fa9d
YW
1469
1470 return 1;
1471}
1472
b9e4ec50 1473static int address_configure(const Address *address, const struct ifa_cacheinfo *c, Link *link, Request *req) {
a79a8d16 1474 _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *m = NULL;
7b3a7581 1475 int r;
f579559b 1476
c166a070 1477 assert(address);
4c701096 1478 assert(IN_SET(address->family, AF_INET, AF_INET6));
b9e4ec50 1479 assert(c);
c166a070
TG
1480 assert(link);
1481 assert(link->ifindex > 0);
f882c247 1482 assert(link->manager);
c166a070 1483 assert(link->manager->rtnl);
54ff39f7 1484 assert(req);
f882c247 1485
c0c04a4b 1486 log_address_debug(address, "Configuring", link);
1b566071 1487
a79a8d16 1488 r = sd_rtnl_message_new_addr_update(link->manager->rtnl, &m, link->ifindex, address->family);
eb56eb9b 1489 if (r < 0)
a79a8d16 1490 return r;
f579559b 1491
a79a8d16 1492 r = address_set_netlink_message(address, m, link);
eb56eb9b 1493 if (r < 0)
a8481354 1494 return r;
851c9f82 1495
a79a8d16 1496 r = sd_rtnl_message_addr_set_scope(m, address->scope);
eb56eb9b 1497 if (r < 0)
a79a8d16 1498 return r;
5a723174 1499
f35aecc4 1500 if (address->family == AF_INET6 || in_addr_is_set(address->family, &address->in_addr_peer)) {
a79a8d16 1501 r = netlink_message_append_in_addr_union(m, IFA_ADDRESS, address->family, &address->in_addr_peer);
eb56eb9b 1502 if (r < 0)
a79a8d16 1503 return r;
e680486d 1504 } else if (in4_addr_is_set(&address->broadcast)) {
a79a8d16 1505 r = sd_netlink_message_append_in_addr(m, IFA_BROADCAST, &address->broadcast);
66e0bb33 1506 if (r < 0)
a79a8d16 1507 return r;
f579559b
TG
1508 }
1509
2a236f9f 1510 if (address->family == AF_INET && address->label) {
a79a8d16 1511 r = sd_netlink_message_append_string(m, IFA_LABEL, address->label);
eb56eb9b 1512 if (r < 0)
a79a8d16 1513 return r;
f579559b
TG
1514 }
1515
b9e4ec50 1516 r = sd_netlink_message_append_cache_info(m, IFA_CACHEINFO, c);
eb56eb9b 1517 if (r < 0)
a79a8d16 1518 return r;
68ceb9df 1519
a79a8d16 1520 r = sd_netlink_message_append_u32(m, IFA_RT_PRIORITY, address->route_metric);
c4ff0629 1521 if (r < 0)
a79a8d16 1522 return r;
c4ff0629 1523
80d62d4f 1524 return request_call_netlink_async(link->manager->rtnl, m, req);
f579559b
TG
1525}
1526
8bed7c55
YW
1527static bool address_is_ready_to_configure(Link *link, const Address *address) {
1528 assert(link);
1529 assert(address);
1530
1531 if (!link_is_ready_to_configure(link, false))
1532 return false;
1533
5385e5f9 1534 if (!ipv4acd_bound(link, address))
8bed7c55
YW
1535 return false;
1536
1537 /* Refuse adding more than the limit */
1538 if (set_size(link->addresses) >= ADDRESSES_PER_LINK_MAX)
1539 return false;
1540
1541 return true;
1542}
1543
09d09207 1544static int address_process_request(Request *req, Link *link, Address *address) {
60f4cfe4 1545 Address *existing;
b9e4ec50 1546 struct ifa_cacheinfo c;
8bed7c55
YW
1547 int r;
1548
1549 assert(req);
ff51134c
YW
1550 assert(link);
1551 assert(address);
8bed7c55
YW
1552
1553 if (!address_is_ready_to_configure(link, address))
1554 return 0;
1555
b9e4ec50
YW
1556 address_set_cinfo(link->manager, address, &c);
1557 if (c.ifa_valid == 0) {
1558 log_link_debug(link, "Refuse to configure %s address %s, as its valid lifetime is zero.",
1559 network_config_source_to_string(address->source),
1560 IN_ADDR_PREFIX_TO_STRING(address->family, &address->in_addr, address->prefixlen));
0a0c2672 1561
b9e4ec50 1562 address_cancel_requesting(address);
0a0c2672 1563 if (address_get(link, address, &existing) >= 0)
d6b64f7a 1564 address_cancel_requesting(existing);
b9e4ec50
YW
1565 return 1;
1566 }
1567
1568 r = address_configure(address, &c, link, req);
8bed7c55
YW
1569 if (r < 0)
1570 return log_link_warning_errno(link, r, "Failed to configure address: %m");
1571
1572 address_enter_configuring(address);
0a0c2672
YW
1573 if (address_get(link, address, &existing) >= 0)
1574 address_enter_configuring(existing);
1575
8bed7c55
YW
1576 return 1;
1577}
1578
76c5a0f2
YW
1579int link_request_address(
1580 Link *link,
f60e6558 1581 const Address *address,
76c5a0f2 1582 unsigned *message_counter,
80d62d4f 1583 address_netlink_handler_t netlink_handler,
76c5a0f2
YW
1584 Request **ret) {
1585
ebd96906 1586 _cleanup_(address_unrefp) Address *tmp = NULL;
0a0c2672 1587 Address *existing = NULL;
c0c04a4b
YW
1588 int r;
1589
76c5a0f2
YW
1590 assert(link);
1591 assert(address);
3b6a3bde 1592 assert(address->source != NETWORK_CONFIG_SOURCE_FOREIGN);
76c5a0f2 1593
0a0c2672
YW
1594 if (address->lifetime_valid_usec == 0)
1595 /* The requested address is outdated. Let's ignore the request. */
1596 return 0;
af2aea8b 1597
0a0c2672
YW
1598 if (address_get(link, address, &existing) < 0) {
1599 if (address_get_request(link, address, NULL) >= 0)
1600 return 0; /* already requested, skipping. */
303dfa73 1601
9684a8de
YW
1602 r = address_acquire(link, address, &tmp);
1603 if (r < 0)
1604 return log_link_warning_errno(link, r, "Failed to acquire an address from pool: %m");
af2aea8b 1605
3b6a3bde 1606 } else {
0a0c2672 1607 r = address_dup(address, &tmp);
42f8b6a8 1608 if (r < 0)
0a0c2672 1609 return log_oom();
9684a8de 1610
0a0c2672
YW
1611 /* Copy already assigned address when it is requested as a null address. */
1612 if (address_is_static_null(address))
1613 tmp->in_addr = existing->in_addr;
9684a8de 1614
0a0c2672
YW
1615 /* Copy state for logging below. */
1616 tmp->state = existing->state;
c0c04a4b
YW
1617 }
1618
0a0c2672
YW
1619 address_set_broadcast(tmp, link);
1620
1621 r = ipv4acd_configure(link, tmp);
3b6a3bde
YW
1622 if (r < 0)
1623 return r;
1624
0a0c2672 1625 log_address_debug(tmp, "Requesting", link);
09d09207 1626 r = link_queue_request_safe(link, REQUEST_TYPE_ADDRESS,
0a0c2672 1627 tmp,
ebd96906 1628 address_unref,
4da252c5
YW
1629 address_hash_func,
1630 address_compare_func,
09d09207
YW
1631 address_process_request,
1632 message_counter, netlink_handler, ret);
c0c04a4b
YW
1633 if (r < 0)
1634 return log_link_warning_errno(link, r, "Failed to request address: %m");
3b6a3bde
YW
1635 if (r == 0)
1636 return 0;
1637
0a0c2672
YW
1638 address_enter_requesting(tmp);
1639 if (existing)
1640 address_enter_requesting(existing);
3b6a3bde 1641
0a0c2672 1642 TAKE_PTR(tmp);
3b6a3bde 1643 return 1;
76c5a0f2
YW
1644}
1645
80d62d4f 1646static int static_address_handler(sd_netlink *rtnl, sd_netlink_message *m, Request *req, Link *link, Address *address) {
e1e4cd1e
YW
1647 int r;
1648
1649 assert(link);
e1e4cd1e
YW
1650
1651 r = address_configure_handler_internal(rtnl, m, link, "Failed to set static address");
1652 if (r <= 0)
1653 return r;
1654
1655 if (link->static_address_messages == 0) {
1656 log_link_debug(link, "Addresses set");
1657 link->static_addresses_configured = true;
1658 link_check_ready(link);
1659 }
1660
1661 return 1;
1662}
1663
f60e6558 1664int link_request_static_address(Link *link, const Address *address) {
8c29f484
YW
1665 assert(link);
1666 assert(address);
3b6a3bde 1667 assert(address->source == NETWORK_CONFIG_SOURCE_STATIC);
8c29f484 1668
f60e6558 1669 return link_request_address(link, address, &link->static_address_messages,
3b6a3bde 1670 static_address_handler, NULL);
8c29f484
YW
1671}
1672
76c5a0f2
YW
1673int link_request_static_addresses(Link *link) {
1674 Address *a;
682c65b0
YW
1675 int r;
1676
1677 assert(link);
1678 assert(link->network);
1679
76c5a0f2 1680 link->static_addresses_configured = false;
682c65b0 1681
76c5a0f2 1682 ORDERED_HASHMAP_FOREACH(a, link->network->addresses_by_section) {
f60e6558 1683 r = link_request_static_address(link, a);
682c65b0
YW
1684 if (r < 0)
1685 return r;
1686 }
1687
3b6a3bde
YW
1688 r = link_request_radv_addresses(link);
1689 if (r < 0)
1690 return r;
0017ba31 1691
76c5a0f2
YW
1692 if (link->static_address_messages == 0) {
1693 link->static_addresses_configured = true;
1694 link_check_ready(link);
682c65b0
YW
1695 } else {
1696 log_link_debug(link, "Setting addresses");
1697 link_set_state(link, LINK_STATE_CONFIGURING);
1698 }
1699
1700 return 0;
1701}
1702
e1fc2c43 1703int manager_rtnl_process_address(sd_netlink *rtnl, sd_netlink_message *message, Manager *m) {
ebd96906 1704 _cleanup_(address_unrefp) Address *tmp = NULL;
16bc8635 1705 struct ifa_cacheinfo cinfo;
a3a25d01 1706 Link *link;
e1fc2c43 1707 uint16_t type;
e1fc2c43 1708 Address *address = NULL;
0a0c2672 1709 Request *req = NULL;
fc35a9f8 1710 bool is_new = false, update_dhcp4;
fe841414 1711 int ifindex, r;
e1fc2c43
YW
1712
1713 assert(rtnl);
1714 assert(message);
1715 assert(m);
1716
1717 if (sd_netlink_message_is_error(message)) {
1718 r = sd_netlink_message_get_errno(message);
1719 if (r < 0)
1720 log_message_warning_errno(message, r, "rtnl: failed to receive address message, ignoring");
1721
1722 return 0;
1723 }
1724
1725 r = sd_netlink_message_get_type(message, &type);
1726 if (r < 0) {
1727 log_warning_errno(r, "rtnl: could not get message type, ignoring: %m");
1728 return 0;
1729 } else if (!IN_SET(type, RTM_NEWADDR, RTM_DELADDR)) {
1730 log_warning("rtnl: received unexpected message type %u when processing address, ignoring.", type);
1731 return 0;
1732 }
1733
1734 r = sd_rtnl_message_addr_get_ifindex(message, &ifindex);
1735 if (r < 0) {
1736 log_warning_errno(r, "rtnl: could not get ifindex from message, ignoring: %m");
1737 return 0;
1738 } else if (ifindex <= 0) {
1739 log_warning("rtnl: received address message with invalid ifindex %d, ignoring.", ifindex);
1740 return 0;
1741 }
1742
6eab614d 1743 r = link_get_by_index(m, ifindex, &link);
a3a25d01 1744 if (r < 0) {
e1fc2c43
YW
1745 /* when enumerating we might be out of sync, but we will get the address again, so just
1746 * ignore it */
1747 if (!m->enumerating)
1748 log_warning("rtnl: received address for link '%d' we don't know about, ignoring.", ifindex);
1749 return 0;
1750 }
1751
fe841414
YW
1752 r = address_new(&tmp);
1753 if (r < 0)
1754 return log_oom();
1755
3c283289
YW
1756 /* First, read minimal information to make address_get() work below. */
1757
fe841414 1758 r = sd_rtnl_message_addr_get_family(message, &tmp->family);
e1fc2c43
YW
1759 if (r < 0) {
1760 log_link_warning(link, "rtnl: received address message without family, ignoring.");
1761 return 0;
fe841414
YW
1762 } else if (!IN_SET(tmp->family, AF_INET, AF_INET6)) {
1763 log_link_debug(link, "rtnl: received address message with invalid family '%i', ignoring.", tmp->family);
e1fc2c43
YW
1764 return 0;
1765 }
1766
fe841414 1767 r = sd_rtnl_message_addr_get_prefixlen(message, &tmp->prefixlen);
e1fc2c43 1768 if (r < 0) {
9a0ad16b 1769 log_link_warning_errno(link, r, "rtnl: received address message without prefixlen, ignoring: %m");
e1fc2c43
YW
1770 return 0;
1771 }
1772
fe841414 1773 switch (tmp->family) {
e1fc2c43 1774 case AF_INET:
fe841414 1775 r = sd_netlink_message_read_in_addr(message, IFA_LOCAL, &tmp->in_addr.in);
e1fc2c43
YW
1776 if (r < 0) {
1777 log_link_warning_errno(link, r, "rtnl: received address message without valid address, ignoring: %m");
1778 return 0;
1779 }
1780
fe841414
YW
1781 r = sd_netlink_message_read_in_addr(message, IFA_ADDRESS, &tmp->in_addr_peer.in);
1782 if (r < 0 && r != -ENODATA) {
1783 log_link_warning_errno(link, r, "rtnl: could not get peer address from address message, ignoring: %m");
1784 return 0;
1785 } else if (r >= 0) {
1786 if (in4_addr_equal(&tmp->in_addr.in, &tmp->in_addr_peer.in))
1787 tmp->in_addr_peer = IN_ADDR_NULL;
fe841414
YW
1788 }
1789
e1fc2c43
YW
1790 break;
1791
1792 case AF_INET6:
fe841414
YW
1793 r = sd_netlink_message_read_in6_addr(message, IFA_LOCAL, &tmp->in_addr.in6);
1794 if (r >= 0) {
1795 /* Have peer address. */
1796 r = sd_netlink_message_read_in6_addr(message, IFA_ADDRESS, &tmp->in_addr_peer.in6);
1797 if (r < 0) {
1798 log_link_warning_errno(link, r, "rtnl: could not get peer address from address message, ignoring: %m");
1799 return 0;
1800 }
fe841414
YW
1801 } else if (r == -ENODATA) {
1802 /* Does not have peer address. */
1803 r = sd_netlink_message_read_in6_addr(message, IFA_ADDRESS, &tmp->in_addr.in6);
1804 if (r < 0) {
1805 log_link_warning_errno(link, r, "rtnl: received address message without valid address, ignoring: %m");
1806 return 0;
1807 }
1808 } else {
1809 log_link_warning_errno(link, r, "rtnl: could not get local address from address message, ignoring: %m");
e1fc2c43
YW
1810 return 0;
1811 }
1812
1813 break;
1814
1815 default:
04499a70 1816 assert_not_reached();
e1fc2c43
YW
1817 }
1818
fc35a9f8
YW
1819 update_dhcp4 = tmp->family == AF_INET6;
1820
0a0c2672 1821 /* Then, find the managed Address and Request objects corresponding to the received address. */
fe841414 1822 (void) address_get(link, tmp, &address);
0a0c2672 1823 (void) address_get_request(link, tmp, &req);
e1fc2c43 1824
3c283289 1825 if (type == RTM_DELADDR) {
3b6a3bde 1826 if (address) {
3c283289 1827 address_enter_removed(address);
0a0c2672 1828 log_address_debug(address, "Forgetting removed", link);
3c283289
YW
1829 (void) address_drop(address);
1830 } else
1831 log_address_debug(tmp, "Kernel removed unknown", link);
3b6a3bde 1832
0a0c2672
YW
1833 if (req)
1834 address_enter_removed(req->userdata);
1835
fc35a9f8 1836 goto finalize;
3c283289 1837 }
3b6a3bde 1838
3c283289
YW
1839 if (!address) {
1840 /* If we did not know the address, then save it. */
ebd96906 1841 r = address_attach(link, tmp);
3c283289 1842 if (r < 0) {
e924dc59 1843 log_link_warning_errno(link, r, "Failed to save received address %s, ignoring: %m",
3c283289
YW
1844 IN_ADDR_PREFIX_TO_STRING(tmp->family, &tmp->in_addr, tmp->prefixlen));
1845 return 0;
e1fc2c43 1846 }
ebd96906 1847 address = tmp;
e1fc2c43 1848
3c283289 1849 is_new = true;
e1fc2c43 1850
3c283289
YW
1851 } else {
1852 /* Otherwise, update the managed Address object with the netlink notification. */
1853 address->prefixlen = tmp->prefixlen;
1854 address->in_addr_peer = tmp->in_addr_peer;
1855 }
e1fc2c43 1856
0a0c2672
YW
1857 /* Also update information that cannot be obtained through netlink notification. */
1858 if (req && req->waiting_reply) {
1859 Address *a = ASSERT_PTR(req->userdata);
1860
1861 address->source = a->source;
1862 address->provider = a->provider;
1863 (void) free_and_strdup_warn(&address->netlabel, a->netlabel);
fc289dd0
TM
1864 nft_set_context_clear(&address->nft_set_context);
1865 (void) nft_set_context_dup(&a->nft_set_context, &address->nft_set_context);
0a0c2672
YW
1866 address->requested_as_null = a->requested_as_null;
1867 address->callback = a->callback;
1868 }
1869
3c283289
YW
1870 /* Then, update miscellaneous info. */
1871 r = sd_rtnl_message_addr_get_scope(message, &address->scope);
1872 if (r < 0)
1873 log_link_debug_errno(link, r, "rtnl: received address message without scope, ignoring: %m");
e1fc2c43 1874
3c283289
YW
1875 if (address->family == AF_INET) {
1876 _cleanup_free_ char *label = NULL;
e1fc2c43 1877
3c283289
YW
1878 r = sd_netlink_message_read_string_strdup(message, IFA_LABEL, &label);
1879 if (r >= 0) {
1880 if (!streq_ptr(label, link->ifname))
1881 free_and_replace(address->label, label);
1882 } else if (r != -ENODATA)
1883 log_link_debug_errno(link, r, "rtnl: could not get label from address message, ignoring: %m");
1884
1885 r = sd_netlink_message_read_in_addr(message, IFA_BROADCAST, &address->broadcast);
1886 if (r < 0 && r != -ENODATA)
1887 log_link_debug_errno(link, r, "rtnl: could not get broadcast from address message, ignoring: %m");
e1fc2c43
YW
1888 }
1889
3c283289
YW
1890 r = sd_netlink_message_read_u32(message, IFA_FLAGS, &address->flags);
1891 if (r == -ENODATA) {
1892 unsigned char flags;
1893
1894 /* For old kernels. */
1895 r = sd_rtnl_message_addr_get_flags(message, &flags);
1896 if (r >= 0)
1897 address->flags = flags;
1898 } else if (r < 0)
1899 log_link_debug_errno(link, r, "rtnl: failed to read IFA_FLAGS attribute, ignoring: %m");
1900
1901 r = sd_netlink_message_read_cache_info(message, IFA_CACHEINFO, &cinfo);
1902 if (r >= 0)
1903 address_set_lifetime(m, address, &cinfo);
1904 else if (r != -ENODATA)
1905 log_link_debug_errno(link, r, "rtnl: failed to read IFA_CACHEINFO attribute, ignoring: %m");
1906
7e18f9b4
YW
1907 r = sd_netlink_message_read_u32(message, IFA_RT_PRIORITY, &address->route_metric);
1908 if (r < 0 && r != -ENODATA)
1909 log_link_debug_errno(link, r, "rtnl: failed to read IFA_RT_PRIORITY attribute, ignoring: %m");
1910
3c283289 1911 address_enter_configured(address);
0a0c2672
YW
1912 if (req)
1913 address_enter_configured(req->userdata);
1914
3c283289
YW
1915 log_address_debug(address, is_new ? "Received new": "Received updated", link);
1916
1917 /* address_update() logs internally, so we don't need to here. */
1918 r = address_update(address);
1919 if (r < 0)
1920 link_enter_failed(link);
1921
fc35a9f8
YW
1922finalize:
1923 if (update_dhcp4) {
1924 r = dhcp4_update_ipv6_connectivity(link);
1925 if (r < 0) {
1926 log_link_warning_errno(link, r, "Failed to notify IPv6 connectivity to DHCPv4 client: %m");
1927 link_enter_failed(link);
1928 }
1929 }
1930
e1fc2c43
YW
1931 return 1;
1932}
1933
44e7b949
LP
1934int config_parse_broadcast(
1935 const char *unit,
eb0ea358
TG
1936 const char *filename,
1937 unsigned line,
1938 const char *section,
1939 unsigned section_line,
1940 const char *lvalue,
1941 int ltype,
1942 const char *rvalue,
1943 void *data,
1944 void *userdata) {
44e7b949 1945
eb0ea358 1946 Network *network = userdata;
ebd96906 1947 _cleanup_(address_unref_or_set_invalidp) Address *n = NULL;
94af46fc 1948 union in_addr_union u;
eb0ea358
TG
1949 int r;
1950
1951 assert(filename);
1952 assert(section);
1953 assert(lvalue);
1954 assert(rvalue);
1955 assert(data);
1956
f4859fc7 1957 r = address_new_static(network, filename, section_line, &n);
d96edb2c
YW
1958 if (r == -ENOMEM)
1959 return log_oom();
1960 if (r < 0) {
1961 log_syntax(unit, LOG_WARNING, filename, line, r,
1962 "Failed to allocate new address, ignoring assignment: %m");
1963 return 0;
1964 }
eb0ea358 1965
832583ad
YW
1966 if (isempty(rvalue)) {
1967 /* The broadcast address will be calculated based on Address=, and set if the link is
1968 * not a wireguard interface. Here, we do not check or set n->family. */
1969 n->broadcast = (struct in_addr) {};
1970 n->set_broadcast = -1;
1971 TAKE_PTR(n);
1972 return 0;
1973 }
1974
1975 r = parse_boolean(rvalue);
1976 if (r >= 0) {
1977 /* The broadcast address will be calculated based on Address=. Here, we do not check or
1978 * set n->family. */
1979 n->broadcast = (struct in_addr) {};
1980 n->set_broadcast = r;
1981 TAKE_PTR(n);
1982 return 0;
1983 }
1984
482e2ac1 1985 if (n->family == AF_INET6) {
d96edb2c 1986 log_syntax(unit, LOG_WARNING, filename, line, 0,
2850cd40 1987 "Broadcast is not valid for IPv6 addresses, ignoring assignment: %s", rvalue);
482e2ac1
TG
1988 return 0;
1989 }
1990
94af46fc 1991 r = in_addr_from_string(AF_INET, rvalue, &u);
eb0ea358 1992 if (r < 0) {
d96edb2c 1993 log_syntax(unit, LOG_WARNING, filename, line, r,
2850cd40 1994 "Broadcast is invalid, ignoring assignment: %s", rvalue);
eb0ea358
TG
1995 return 0;
1996 }
832583ad
YW
1997 if (in4_addr_is_null(&u.in)) {
1998 log_syntax(unit, LOG_WARNING, filename, line, 0,
1999 "Broadcast cannot be ANY address, ignoring assignment: %s", rvalue);
2000 return 0;
2001 }
eb0ea358 2002
94af46fc 2003 n->broadcast = u.in;
832583ad 2004 n->set_broadcast = true;
44e7b949 2005 n->family = AF_INET;
dea161d9 2006 TAKE_PTR(n);
eb0ea358
TG
2007
2008 return 0;
2009}
2010
f5ee7d74
YW
2011int config_parse_address(
2012 const char *unit,
f579559b
TG
2013 const char *filename,
2014 unsigned line,
2015 const char *section,
71a61510 2016 unsigned section_line,
f579559b
TG
2017 const char *lvalue,
2018 int ltype,
2019 const char *rvalue,
2020 void *data,
2021 void *userdata) {
44e7b949 2022
6ae115c1 2023 Network *network = userdata;
ebd96906 2024 _cleanup_(address_unref_or_set_invalidp) Address *n = NULL;
44e7b949 2025 union in_addr_union buffer;
b7cb4452 2026 unsigned char prefixlen;
44e7b949 2027 int r, f;
f579559b
TG
2028
2029 assert(filename);
6ae115c1 2030 assert(section);
f579559b
TG
2031 assert(lvalue);
2032 assert(rvalue);
2033 assert(data);
2034
a61738b3
YW
2035 if (streq(section, "Network")) {
2036 if (isempty(rvalue)) {
2037 /* If an empty string specified in [Network] section, clear previously assigned addresses. */
ebd96906 2038 network->addresses_by_section = ordered_hashmap_free(network->addresses_by_section);
a61738b3
YW
2039 return 0;
2040 }
2041
9cd9fc8f
YW
2042 /* we are not in an Address section, so use line number instead. */
2043 r = address_new_static(network, filename, line, &n);
a61738b3 2044 } else
f4859fc7 2045 r = address_new_static(network, filename, section_line, &n);
d96edb2c
YW
2046 if (r == -ENOMEM)
2047 return log_oom();
2048 if (r < 0) {
2049 log_syntax(unit, LOG_WARNING, filename, line, r,
2050 "Failed to allocate new address, ignoring assignment: %m");
2051 return 0;
2052 }
f579559b
TG
2053
2054 /* Address=address/prefixlen */
0f707207
YW
2055 r = in_addr_prefix_from_string_auto_internal(rvalue, PREFIXLEN_REFUSE, &f, &buffer, &prefixlen);
2056 if (r == -ENOANO) {
e5e07431
YW
2057 r = in_addr_prefix_from_string_auto(rvalue, &f, &buffer, &prefixlen);
2058 if (r >= 0)
2059 log_syntax(unit, LOG_WARNING, filename, line, r,
c5874748 2060 "Address '%s' is specified without prefix length. Assuming the prefix length is %u. "
e5e07431 2061 "Please specify the prefix length explicitly.", rvalue, prefixlen);
0f707207 2062 }
f579559b 2063 if (r < 0) {
d96edb2c 2064 log_syntax(unit, LOG_WARNING, filename, line, r, "Invalid address '%s', ignoring assignment: %m", rvalue);
f579559b
TG
2065 return 0;
2066 }
2067
44e7b949 2068 if (n->family != AF_UNSPEC && f != n->family) {
d96edb2c 2069 log_syntax(unit, LOG_WARNING, filename, line, 0, "Address is incompatible, ignoring assignment: %s", rvalue);
44e7b949
LP
2070 return 0;
2071 }
2072
c9207ff3
YW
2073 if (in_addr_is_null(f, &buffer)) {
2074 /* Will use address from address pool. Note that for ipv6 case, prefix of the address
2075 * pool is 8, but 40 bit is used by the global ID and 16 bit by the subnet ID. So,
2076 * let's limit the prefix length to 64 or larger. See RFC4193. */
2077 if ((f == AF_INET && prefixlen < 8) ||
2078 (f == AF_INET6 && prefixlen < 64)) {
d96edb2c 2079 log_syntax(unit, LOG_WARNING, filename, line, 0,
c9207ff3
YW
2080 "Null address with invalid prefixlen='%u', ignoring assignment: %s",
2081 prefixlen, rvalue);
2082 return 0;
2083 }
2084 }
2085
44e7b949 2086 n->family = f;
b7cb4452 2087 n->prefixlen = prefixlen;
44e7b949 2088
d0009d92 2089 if (streq(lvalue, "Address")) {
44e7b949 2090 n->in_addr = buffer;
d0009d92
YW
2091 n->requested_as_null = !in_addr_is_set(n->family, &n->in_addr);
2092 } else
44e7b949
LP
2093 n->in_addr_peer = buffer;
2094
dea161d9 2095 TAKE_PTR(n);
f579559b
TG
2096 return 0;
2097}
6ae115c1 2098
d31645ad
LP
2099int config_parse_label(
2100 const char *unit,
6ae115c1
TG
2101 const char *filename,
2102 unsigned line,
2103 const char *section,
2104 unsigned section_line,
2105 const char *lvalue,
2106 int ltype,
2107 const char *rvalue,
2108 void *data,
2109 void *userdata) {
d31645ad 2110
ebd96906 2111 _cleanup_(address_unref_or_set_invalidp) Address *n = NULL;
d31645ad 2112 Network *network = userdata;
6ae115c1
TG
2113 int r;
2114
2115 assert(filename);
2116 assert(section);
2117 assert(lvalue);
2118 assert(rvalue);
2119 assert(data);
2120
f4859fc7 2121 r = address_new_static(network, filename, section_line, &n);
d96edb2c
YW
2122 if (r == -ENOMEM)
2123 return log_oom();
2124 if (r < 0) {
2125 log_syntax(unit, LOG_WARNING, filename, line, r,
2126 "Failed to allocate new address, ignoring assignment: %m");
2127 return 0;
2128 }
6ae115c1 2129
b8e898a6
YW
2130 if (isempty(rvalue)) {
2131 n->label = mfree(n->label);
2132 TAKE_PTR(n);
2133 return 0;
2134 }
2135
a87d19fe 2136 if (!address_label_valid(rvalue)) {
d96edb2c 2137 log_syntax(unit, LOG_WARNING, filename, line, 0,
2850cd40 2138 "Interface label is too long or invalid, ignoring assignment: %s", rvalue);
6ae115c1
TG
2139 return 0;
2140 }
2141
d31645ad
LP
2142 r = free_and_strdup(&n->label, rvalue);
2143 if (r < 0)
2144 return log_oom();
6ae115c1 2145
dea161d9 2146 TAKE_PTR(n);
6ae115c1
TG
2147 return 0;
2148}
ce6c77eb 2149
f5ee7d74
YW
2150int config_parse_lifetime(
2151 const char *unit,
2152 const char *filename,
2153 unsigned line,
2154 const char *section,
2155 unsigned section_line,
2156 const char *lvalue,
2157 int ltype,
2158 const char *rvalue,
2159 void *data,
2160 void *userdata) {
2161
b5834a0b 2162 Network *network = userdata;
ebd96906 2163 _cleanup_(address_unref_or_set_invalidp) Address *n = NULL;
16bc8635 2164 usec_t k;
b5834a0b
SS
2165 int r;
2166
2167 assert(filename);
2168 assert(section);
2169 assert(lvalue);
2170 assert(rvalue);
2171 assert(data);
2172
f4859fc7 2173 r = address_new_static(network, filename, section_line, &n);
d96edb2c
YW
2174 if (r == -ENOMEM)
2175 return log_oom();
2176 if (r < 0) {
2177 log_syntax(unit, LOG_WARNING, filename, line, r,
2178 "Failed to allocate new address, ignoring assignment: %m");
2179 return 0;
2180 }
b5834a0b 2181
10b20e5a
ZJS
2182 /* We accept only "forever", "infinity", empty, or "0". */
2183 if (STR_IN_SET(rvalue, "forever", "infinity", ""))
16bc8635 2184 k = USEC_INFINITY;
33680b0a
YW
2185 else if (streq(rvalue, "0"))
2186 k = 0;
2187 else {
d96edb2c 2188 log_syntax(unit, LOG_WARNING, filename, line, 0,
33680b0a 2189 "Invalid PreferredLifetime= value, ignoring: %s", rvalue);
b5834a0b
SS
2190 return 0;
2191 }
2192
16bc8635 2193 n->lifetime_preferred_usec = k;
d2735796 2194 TAKE_PTR(n);
b5834a0b
SS
2195
2196 return 0;
2197}
2198
f5ee7d74
YW
2199int config_parse_address_flags(
2200 const char *unit,
2201 const char *filename,
2202 unsigned line,
2203 const char *section,
2204 unsigned section_line,
2205 const char *lvalue,
2206 int ltype,
2207 const char *rvalue,
2208 void *data,
2209 void *userdata) {
2210
e63be084 2211 Network *network = userdata;
ebd96906 2212 _cleanup_(address_unref_or_set_invalidp) Address *n = NULL;
e63be084
SS
2213 int r;
2214
2215 assert(filename);
2216 assert(section);
2217 assert(lvalue);
2218 assert(rvalue);
2219 assert(data);
2220
f4859fc7 2221 r = address_new_static(network, filename, section_line, &n);
d96edb2c
YW
2222 if (r == -ENOMEM)
2223 return log_oom();
2224 if (r < 0) {
2225 log_syntax(unit, LOG_WARNING, filename, line, r,
2226 "Failed to allocate new address, ignoring assignment: %m");
2227 return 0;
2228 }
e63be084
SS
2229
2230 r = parse_boolean(rvalue);
2231 if (r < 0) {
d96edb2c 2232 log_syntax(unit, LOG_WARNING, filename, line, r,
051e77ca 2233 "Failed to parse %s=, ignoring: %s", lvalue, rvalue);
e63be084
SS
2234 return 0;
2235 }
2236
eaff204f
YW
2237 if (streq(lvalue, "AddPrefixRoute"))
2238 r = !r;
2239
2240 SET_FLAG(n->flags, ltype, r);
e63be084 2241
dea161d9 2242 TAKE_PTR(n);
e63be084
SS
2243 return 0;
2244}
2245
f5ee7d74
YW
2246int config_parse_address_scope(
2247 const char *unit,
2248 const char *filename,
2249 unsigned line,
2250 const char *section,
2251 unsigned section_line,
2252 const char *lvalue,
2253 int ltype,
2254 const char *rvalue,
2255 void *data,
2256 void *userdata) {
2257
2959fb07 2258 Network *network = userdata;
ebd96906 2259 _cleanup_(address_unref_or_set_invalidp) Address *n = NULL;
2959fb07
SS
2260 int r;
2261
2262 assert(filename);
2263 assert(section);
2264 assert(lvalue);
2265 assert(rvalue);
2266 assert(data);
2267
2268 r = address_new_static(network, filename, section_line, &n);
d96edb2c
YW
2269 if (r == -ENOMEM)
2270 return log_oom();
2271 if (r < 0) {
2272 log_syntax(unit, LOG_WARNING, filename, line, r,
2273 "Failed to allocate new address, ignoring assignment: %m");
2274 return 0;
2275 }
2959fb07 2276
d8c472f2
YW
2277 r = route_scope_from_string(rvalue);
2278 if (r < 0) {
2279 log_syntax(unit, LOG_WARNING, filename, line, r,
2280 "Could not parse address scope \"%s\", ignoring assignment: %m", rvalue);
2281 return 0;
2959fb07
SS
2282 }
2283
d8c472f2 2284 n->scope = r;
07336a06 2285 n->scope_set = true;
dea161d9 2286 TAKE_PTR(n);
2959fb07
SS
2287 return 0;
2288}
2289
c4ff0629
YW
2290int config_parse_address_route_metric(
2291 const char *unit,
2292 const char *filename,
2293 unsigned line,
2294 const char *section,
2295 unsigned section_line,
2296 const char *lvalue,
2297 int ltype,
2298 const char *rvalue,
2299 void *data,
2300 void *userdata) {
2301
2302 Network *network = userdata;
ebd96906 2303 _cleanup_(address_unref_or_set_invalidp) Address *n = NULL;
c4ff0629
YW
2304 int r;
2305
2306 assert(filename);
2307 assert(section);
2308 assert(lvalue);
2309 assert(rvalue);
2310 assert(data);
2311
2312 r = address_new_static(network, filename, section_line, &n);
2313 if (r == -ENOMEM)
2314 return log_oom();
2315 if (r < 0) {
2316 log_syntax(unit, LOG_WARNING, filename, line, r,
2317 "Failed to allocate new address, ignoring assignment: %m");
2318 return 0;
2319 }
2320
2321 r = safe_atou32(rvalue, &n->route_metric);
2322 if (r < 0) {
2323 log_syntax(unit, LOG_WARNING, filename, line, r,
2324 "Could not parse %s=, ignoring assignment: %s", lvalue, rvalue);
2325 return 0;
2326 }
2327
2328 TAKE_PTR(n);
2329 return 0;
2330}
2331
051e77ca
SS
2332int config_parse_duplicate_address_detection(
2333 const char *unit,
2334 const char *filename,
2335 unsigned line,
2336 const char *section,
2337 unsigned section_line,
2338 const char *lvalue,
2339 int ltype,
2340 const char *rvalue,
2341 void *data,
2342 void *userdata) {
f5ee7d74 2343
051e77ca 2344 Network *network = userdata;
ebd96906 2345 _cleanup_(address_unref_or_set_invalidp) Address *n = NULL;
051e77ca
SS
2346 int r;
2347
2348 assert(filename);
2349 assert(section);
2350 assert(lvalue);
2351 assert(rvalue);
2352 assert(data);
2353
2354 r = address_new_static(network, filename, section_line, &n);
d96edb2c
YW
2355 if (r == -ENOMEM)
2356 return log_oom();
2357 if (r < 0) {
2358 log_syntax(unit, LOG_WARNING, filename, line, r,
2359 "Failed to allocate new address, ignoring assignment: %m");
2360 return 0;
2361 }
051e77ca
SS
2362
2363 r = parse_boolean(rvalue);
2364 if (r >= 0) {
2365 log_syntax(unit, LOG_WARNING, filename, line, 0,
2366 "For historical reasons, %s=%s means %s=%s. "
2367 "Please use 'both', 'ipv4', 'ipv6' or 'none' instead.",
2368 lvalue, rvalue, lvalue, r ? "none" : "both");
2369 n->duplicate_address_detection = r ? ADDRESS_FAMILY_NO : ADDRESS_FAMILY_YES;
2370 n = NULL;
2371 return 0;
2372 }
2373
7211c853 2374 AddressFamily a = duplicate_address_detection_address_family_from_string(rvalue);
051e77ca 2375 if (a < 0) {
7211c853 2376 log_syntax(unit, LOG_WARNING, filename, line, a,
051e77ca
SS
2377 "Failed to parse %s=, ignoring: %s", lvalue, rvalue);
2378 return 0;
2379 }
051e77ca 2380 n->duplicate_address_detection = a;
7211c853 2381
dea161d9 2382 TAKE_PTR(n);
051e77ca
SS
2383 return 0;
2384}
2385
4b3590c3
TM
2386int config_parse_address_netlabel(
2387 const char *unit,
2388 const char *filename,
2389 unsigned line,
2390 const char *section,
2391 unsigned section_line,
2392 const char *lvalue,
2393 int ltype,
2394 const char *rvalue,
2395 void *data,
2396 void *userdata) {
2397
2398 Network *network = userdata;
ebd96906 2399 _cleanup_(address_unref_or_set_invalidp) Address *n = NULL;
4b3590c3
TM
2400 int r;
2401
2402 assert(filename);
2403 assert(section);
2404 assert(lvalue);
2405 assert(rvalue);
2406 assert(data);
2407 assert(network);
2408
2409 r = address_new_static(network, filename, section_line, &n);
2410 if (r == -ENOMEM)
2411 return log_oom();
2412 if (r < 0) {
2413 log_syntax(unit, LOG_WARNING, filename, line, r,
2414 "Failed to allocate new address, ignoring assignment: %m");
2415 return 0;
2416 }
2417
2418 r = config_parse_string(unit, filename, line, section, section_line,
2419 lvalue, CONFIG_PARSE_STRING_SAFE, rvalue, &n->netlabel, network);
2420 if (r < 0)
2421 return r;
2422
2423 TAKE_PTR(n);
2424 return 0;
2425}
2426
9a45125a
YW
2427static void address_section_adjust_broadcast(Address *address) {
2428 assert(address);
2429 assert(address->section);
2430
2431 if (!in4_addr_is_set(&address->broadcast))
2432 return;
2433
2434 if (address->family == AF_INET6)
2435 log_warning("%s: broadcast address is set for an IPv6 address. "
2436 "Ignoring Broadcast= setting in the [Address] section from line %u.",
2437 address->section->filename, address->section->line);
2438 else if (address->prefixlen > 30)
2439 log_warning("%s: broadcast address is set for an IPv4 address with prefix length larger than 30. "
2440 "Ignoring Broadcast= setting in the [Address] section from line %u.",
2441 address->section->filename, address->section->line);
2442 else if (in4_addr_is_set(&address->in_addr_peer.in))
2443 log_warning("%s: broadcast address is set for an IPv4 address with peer address. "
2444 "Ignoring Broadcast= setting in the [Address] section from line %u.",
2445 address->section->filename, address->section->line);
0acc6470
YW
2446 else if (!in4_addr_is_set(&address->in_addr.in))
2447 log_warning("%s: broadcast address is set for an IPv4 address with null address. "
2448 "Ignoring Broadcast= setting in the [Address] section from line %u.",
2449 address->section->filename, address->section->line);
9a45125a
YW
2450 else
2451 /* Otherwise, keep the specified broadcast address. */
2452 return;
2453
2454 address->broadcast.s_addr = 0;
2455}
2456
5459e11d 2457int address_section_verify(Address *address) {
fcbf4cb7
YW
2458 if (section_is_invalid(address->section))
2459 return -EINVAL;
2460
2461 if (address->family == AF_UNSPEC) {
2462 assert(address->section);
2463
2464 return log_warning_errno(SYNTHETIC_ERRNO(EINVAL),
d9e2afc0 2465 "%s: Address section without Address= field was configured. "
fcbf4cb7
YW
2466 "Ignoring [Address] section from line %u.",
2467 address->section->filename, address->section->line);
2468 }
2469
d9e2afc0
YW
2470 if (address->family == AF_INET6 && !socket_ipv6_is_supported())
2471 return log_warning_errno(SYNTHETIC_ERRNO(EINVAL),
2472 "%s: an IPv6 address was configured, but the kernel does not support IPv6. "
2473 "Ignoring [Address] section from line %u.",
2474 address->section->filename, address->section->line);
2475
2859932b
YW
2476 assert(IN_SET(address->family, AF_INET, AF_INET6));
2477
9a45125a 2478 address_section_adjust_broadcast(address);
fe841414
YW
2479
2480 if (address->family == AF_INET6 && address->label) {
2481 log_warning("%s: address label is set for IPv6 address in the [Address] section from line %u. "
2482 "Ignoring Label= setting.",
2483 address->section->filename, address->section->line);
2484
2485 address->label = mfree(address->label);
2486 }
2487
20228b6d
YW
2488 if (!address->scope_set) {
2489 if (in_addr_is_localhost(address->family, &address->in_addr) > 0)
2490 address->scope = RT_SCOPE_HOST;
2491 else if (in_addr_is_link_local(address->family, &address->in_addr) > 0)
2492 address->scope = RT_SCOPE_LINK;
2493 }
07336a06 2494
2859932b
YW
2495 if (address->duplicate_address_detection < 0) {
2496 if (address->family == AF_INET6)
2497 address->duplicate_address_detection = ADDRESS_FAMILY_IPV6;
2498 else if (in4_addr_is_link_local(&address->in_addr.in))
2499 address->duplicate_address_detection = ADDRESS_FAMILY_IPV4;
2500 else
2501 address->duplicate_address_detection = ADDRESS_FAMILY_NO;
2502 } else if (address->duplicate_address_detection == ADDRESS_FAMILY_IPV6 && address->family == AF_INET)
2503 log_warning("%s: DuplicateAddressDetection=ipv6 is specified for IPv4 address, ignoring.",
2504 address->section->filename);
2505 else if (address->duplicate_address_detection == ADDRESS_FAMILY_IPV4 && address->family == AF_INET6)
2506 log_warning("%s: DuplicateAddressDetection=ipv4 is specified for IPv6 address, ignoring.",
2507 address->section->filename);
2508
bd5146c6
YW
2509 if (address->family == AF_INET6 &&
2510 !FLAGS_SET(address->duplicate_address_detection, ADDRESS_FAMILY_IPV6))
eaff204f
YW
2511 address->flags |= IFA_F_NODAD;
2512
b1179a5d
YW
2513 uint32_t filtered_flags = address->family == AF_INET ?
2514 address->flags & KNOWN_FLAGS & ~UNMANAGED_FLAGS & ~IPV6ONLY_FLAGS :
2515 address->flags & KNOWN_FLAGS & ~UNMANAGED_FLAGS;
2516 if (address->flags != filtered_flags) {
2517 _cleanup_free_ char *str = NULL;
2518
b7d43592 2519 (void) address_flags_to_string_alloc(address->flags ^ filtered_flags, address->family, &str);
b1179a5d
YW
2520 return log_warning_errno(SYNTHETIC_ERRNO(EINVAL),
2521 "%s: unexpected address flags \"%s\" were configured. "
2522 "Ignoring [Address] section from line %u.",
2523 address->section->filename, strna(str), address->section->line);
2524 }
2525
fcbf4cb7
YW
2526 return 0;
2527}
32400c2f 2528
50783f91
YW
2529int network_drop_invalid_addresses(Network *network) {
2530 _cleanup_set_free_ Set *addresses = NULL;
9cd9fc8f 2531 Address *address;
50783f91 2532 int r;
32400c2f
YW
2533
2534 assert(network);
2535
50783f91
YW
2536 ORDERED_HASHMAP_FOREACH(address, network->addresses_by_section) {
2537 Address *dup;
2538
2539 if (address_section_verify(address) < 0) {
2540 /* Drop invalid [Address] sections or Address= settings in [Network].
ebd96906
YW
2541 * Note that address_detach() will drop the address from addresses_by_section. */
2542 address_detach(address);
50783f91
YW
2543 continue;
2544 }
2545
2546 /* Always use the setting specified later. So, remove the previously assigned setting. */
2547 dup = set_remove(addresses, address);
2548 if (dup) {
50783f91
YW
2549 log_warning("%s: Duplicated address %s is specified at line %u and %u, "
2550 "dropping the address setting specified at line %u.",
c71384a9
ZJS
2551 dup->section->filename,
2552 IN_ADDR_PREFIX_TO_STRING(address->family, &address->in_addr, address->prefixlen),
2553 address->section->line,
50783f91 2554 dup->section->line, dup->section->line);
ebd96906
YW
2555
2556 /* address_detach() will drop the address from addresses_by_section. */
2557 address_detach(dup);
50783f91
YW
2558 }
2559
ebd96906
YW
2560 /* Use address_hash_ops, instead of address_hash_ops_detach. Otherwise, the Address objects
2561 * will be detached. */
4da252c5 2562 r = set_ensure_put(&addresses, &address_hash_ops, address);
50783f91
YW
2563 if (r < 0)
2564 return log_oom();
2565 assert(r > 0);
2566 }
2567
5459e11d
YW
2568 r = network_adjust_dhcp_server(network, &addresses);
2569 if (r < 0)
2570 return r;
26f88471 2571
50783f91 2572 return 0;
32400c2f 2573}
fc289dd0
TM
2574
2575int config_parse_address_ip_nft_set(
2576 const char *unit,
2577 const char *filename,
2578 unsigned line,
2579 const char *section,
2580 unsigned section_line,
2581 const char *lvalue,
2582 int ltype,
2583 const char *rvalue,
2584 void *data,
2585 void *userdata) {
2586
2587 Network *network = userdata;
ebd96906 2588 _cleanup_(address_unref_or_set_invalidp) Address *n = NULL;
fc289dd0
TM
2589 int r;
2590
2591 assert(filename);
2592 assert(lvalue);
2593 assert(rvalue);
2594 assert(network);
2595
2596 r = address_new_static(network, filename, section_line, &n);
2597 if (r == -ENOMEM)
2598 return log_oom();
2599 if (r < 0) {
2600 log_syntax(unit, LOG_WARNING, filename, line, r,
2601 "Failed to allocate a new address, ignoring assignment: %m");
2602 return 0;
2603 }
2604
2605 r = config_parse_nft_set(unit, filename, line, section, section_line, lvalue, ltype, rvalue, &n->nft_set_context, network);
2606 if (r < 0)
2607 return r;
2608
2609 TAKE_PTR(n);
2610 return 0;
2611}