]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/networkd-dhcp4.c
networkd: fix crash if fails to get network file (#8714)
[thirdparty/systemd.git] / src / network / networkd-dhcp4.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
3c9b8860
TG
2/***
3 This file is part of systemd.
4
5 Copyright 2013-2014 Tom Gundersen <teg@jklm.no>
3c9b8860
TG
6***/
7
8#include <netinet/ether.h>
9#include <linux/if.h>
10
b5efdb8a
LP
11#include "alloc-util.h"
12#include "dhcp-lease-internal.h"
958b66ea 13#include "hostname-util.h"
64b21ece 14#include "parse-util.h"
fc1ba79d 15#include "netdev/vrf.h"
3c9b8860 16#include "network-internal.h"
23f53b99
TG
17#include "networkd-link.h"
18#include "networkd-manager.h"
19#include "networkd-network.h"
64b21ece
MV
20#include "string-util.h"
21#include "sysctl-util.h"
3c9b8860 22
1c4baffc 23static int dhcp4_route_handler(sd_netlink *rtnl, sd_netlink_message *m,
3c9b8860
TG
24 void *userdata) {
25 _cleanup_link_unref_ Link *link = userdata;
26 int r;
27
28 assert(link);
6cf4a01c 29 assert(link->dhcp4_messages > 0);
3c9b8860 30
313cefa1 31 link->dhcp4_messages--;
3c9b8860 32
1c4baffc 33 r = sd_netlink_message_get_errno(m);
3c9b8860 34 if (r < 0 && r != -EEXIST) {
f6b8196f 35 log_link_error_errno(link, r, "Could not set DHCPv4 route: %m");
3c9b8860
TG
36 link_enter_failed(link);
37 }
38
6cf4a01c 39 if (link->dhcp4_messages == 0) {
3c9b8860 40 link->dhcp4_configured = true;
8012cd39 41 link_check_ready(link);
3c9b8860
TG
42 }
43
44 return 1;
45}
46
d6eac9bd
DW
47static int route_scope_from_address(const Route *route, const struct in_addr *self_addr) {
48 assert(route);
49 assert(self_addr);
50
51 if (in_addr_is_localhost(AF_INET, &route->dst) ||
52 (self_addr->s_addr && route->dst.in.s_addr == self_addr->s_addr))
53 return RT_SCOPE_HOST;
54 else if (in4_addr_is_null(&route->gw.in))
55 return RT_SCOPE_LINK;
56 else
57 return RT_SCOPE_UNIVERSE;
58}
59
3c9b8860 60static int link_set_dhcp_routes(Link *link) {
f8693fc7 61 _cleanup_free_ sd_dhcp_route **static_routes = NULL;
8cdc46e7
SS
62 bool classless_route = false, static_route = false;
63 struct in_addr gateway, address;
3c9b8860 64 int r, n, i;
fc1ba79d 65 uint32_t table;
3c9b8860
TG
66
67 assert(link);
0c9b15a3
AJ
68
69 if (!link->dhcp_lease) /* link went down while we configured the IP addresses? */
70 return 0;
71
72 if (!link->network) /* link went down while we configured the IP addresses? */
73 return 0;
964b26fe
SS
74
75 if (!link->network->dhcp_use_routes)
76 return 0;
3c9b8860 77
fc1ba79d
AR
78 /* When the interface is part of an VRF use the VRFs routing table, unless
79 * there is a another table specified. */
80 table = link->network->dhcp_route_table;
81 if (!link->network->dhcp_route_table_set && link->network->vrf != NULL)
82 table = VRF(link->network->vrf)->table;
83
b23aec0d
DW
84 r = sd_dhcp_lease_get_address(link->dhcp_lease, &address);
85 if (r < 0)
86 return log_link_warning_errno(link, r, "DHCP error: could not get address: %m");
87
5f04a209 88 n = sd_dhcp_lease_get_routes(link->dhcp_lease, &static_routes);
5f04a209 89 if (n < 0)
8dc787d1 90 log_link_debug_errno(link, n, "DHCP error: could not get routes: %m");
5f04a209 91
8cdc46e7
SS
92 for (i = 0; i < n; i++) {
93 if (static_routes[i]->option == SD_DHCP_OPTION_CLASSLESS_STATIC_ROUTE)
94 classless_route = true;
95
96 if (static_routes[i]->option == SD_DHCP_OPTION_STATIC_ROUTE)
97 static_route = true;
98 }
99
5f04a209
SS
100 for (i = 0; i < n; i++) {
101 _cleanup_route_free_ Route *route = NULL;
102
8cdc46e7
SS
103 /* if the DHCP server returns both a Classless Static Routes option and a Static Routes option,
104 the DHCP client MUST ignore the Static Routes option. */
105 if (classless_route && static_routes[i]->option == SD_DHCP_OPTION_STATIC_ROUTE)
106 continue;
107
5f04a209
SS
108 r = route_new(&route);
109 if (r < 0)
110 return log_link_error_errno(link, r, "Could not allocate route: %m");
111
112 route->family = AF_INET;
113 route->protocol = RTPROT_DHCP;
114 assert_se(sd_dhcp_route_get_gateway(static_routes[i], &route->gw.in) >= 0);
115 assert_se(sd_dhcp_route_get_destination(static_routes[i], &route->dst.in) >= 0);
116 assert_se(sd_dhcp_route_get_destination_prefix_length(static_routes[i], &route->dst_prefixlen) >= 0);
117 route->priority = link->network->dhcp_route_metric;
118 route->table = table;
119 route->scope = route_scope_from_address(route, &address);
120
121 r = route_configure(route, link, dhcp4_route_handler);
122 if (r < 0)
123 return log_link_warning_errno(link, r, "Could not set host route: %m");
124
125 link->dhcp4_messages++;
126 }
127
3c9b8860 128 r = sd_dhcp_lease_get_router(link->dhcp_lease, &gateway);
444b0170
SS
129 if (r == -ENODATA)
130 log_link_info_errno(link, r, "DHCP: No routes received from DHCP server: %m");
131 else if (r < 0)
132 log_link_warning_errno(link, r, "DHCP error: could not get gateway: %m");
f6b8196f 133
5f04a209
SS
134 /* According to RFC 3442: If the DHCP server returns both a Classless Static Routes option and
135 a Router option, the DHCP client MUST ignore the Router option. */
8cdc46e7
SS
136 if (classless_route && static_route)
137 log_link_warning(link, "Classless static routes received from DHCP server: ignoring static-route option and router option");
138
139 if (r >= 0 && !classless_route) {
3c9b8860
TG
140 _cleanup_route_free_ Route *route = NULL;
141 _cleanup_route_free_ Route *route_gw = NULL;
142
ed9e361a 143 r = route_new(&route);
f6b8196f
LP
144 if (r < 0)
145 return log_link_error_errno(link, r, "Could not allocate route: %m");
3c9b8860 146
ed9e361a
TG
147 route->protocol = RTPROT_DHCP;
148
149 r = route_new(&route_gw);
f6b8196f
LP
150 if (r < 0)
151 return log_link_error_errno(link, r, "Could not allocate route: %m");
3c9b8860
TG
152
153 /* The dhcp netmask may mask out the gateway. Add an explicit
154 * route for the gw host so that we can route no matter the
155 * netmask or existing kernel route tables. */
156 route_gw->family = AF_INET;
2ce40956 157 route_gw->dst.in = gateway;
3c9b8860 158 route_gw->dst_prefixlen = 32;
2ce40956 159 route_gw->prefsrc.in = address;
3c9b8860 160 route_gw->scope = RT_SCOPE_LINK;
ed9e361a 161 route_gw->protocol = RTPROT_DHCP;
86655331 162 route_gw->priority = link->network->dhcp_route_metric;
fc1ba79d 163 route_gw->table = table;
3c9b8860 164
483d099e 165 r = route_configure(route_gw, link, dhcp4_route_handler);
f6b8196f
LP
166 if (r < 0)
167 return log_link_warning_errno(link, r, "Could not set host route: %m");
3c9b8860 168
313cefa1 169 link->dhcp4_messages++;
3c9b8860
TG
170
171 route->family = AF_INET;
2ce40956
TG
172 route->gw.in = gateway;
173 route->prefsrc.in = address;
86655331 174 route->priority = link->network->dhcp_route_metric;
fc1ba79d 175 route->table = table;
3c9b8860 176
483d099e 177 r = route_configure(route, link, dhcp4_route_handler);
3c9b8860 178 if (r < 0) {
f6b8196f 179 log_link_warning_errno(link, r, "Could not set routes: %m");
3c9b8860
TG
180 link_enter_failed(link);
181 return r;
182 }
183
313cefa1 184 link->dhcp4_messages++;
3c9b8860
TG
185 }
186
3c9b8860
TG
187 return 0;
188}
189
190static int dhcp_lease_lost(Link *link) {
191 _cleanup_address_free_ Address *address = NULL;
192 struct in_addr addr;
193 struct in_addr netmask;
194 struct in_addr gateway;
f414a269 195 unsigned prefixlen = 0;
3c9b8860
TG
196 int r;
197
198 assert(link);
199 assert(link->dhcp_lease);
200
79008bdd 201 log_link_warning(link, "DHCP lease lost");
3c9b8860 202
27cb34f5 203 if (link->network->dhcp_use_routes) {
f8693fc7 204 _cleanup_free_ sd_dhcp_route **routes = NULL;
3c9b8860
TG
205 int n, i;
206
207 n = sd_dhcp_lease_get_routes(link->dhcp_lease, &routes);
208 if (n >= 0) {
209 for (i = 0; i < n; i++) {
210 _cleanup_route_free_ Route *route = NULL;
211
ed9e361a 212 r = route_new(&route);
3c9b8860
TG
213 if (r >= 0) {
214 route->family = AF_INET;
f8693fc7
BG
215 assert_se(sd_dhcp_route_get_gateway(routes[i], &route->gw.in) >= 0);
216 assert_se(sd_dhcp_route_get_destination(routes[i], &route->dst.in) >= 0);
217 assert_se(sd_dhcp_route_get_destination_prefix_length(routes[i], &route->dst_prefixlen) >= 0);
3c9b8860 218
91b5f997 219 route_remove(route, link,
483d099e 220 link_route_remove_handler);
3c9b8860
TG
221 }
222 }
223 }
224 }
225
f0213e37 226 r = address_new(&address);
3c9b8860
TG
227 if (r >= 0) {
228 r = sd_dhcp_lease_get_router(link->dhcp_lease, &gateway);
229 if (r >= 0) {
230 _cleanup_route_free_ Route *route_gw = NULL;
231 _cleanup_route_free_ Route *route = NULL;
232
ed9e361a 233 r = route_new(&route_gw);
3c9b8860
TG
234 if (r >= 0) {
235 route_gw->family = AF_INET;
2ce40956 236 route_gw->dst.in = gateway;
3c9b8860
TG
237 route_gw->dst_prefixlen = 32;
238 route_gw->scope = RT_SCOPE_LINK;
239
91b5f997 240 route_remove(route_gw, link,
483d099e 241 link_route_remove_handler);
3c9b8860
TG
242 }
243
ed9e361a 244 r = route_new(&route);
3c9b8860
TG
245 if (r >= 0) {
246 route->family = AF_INET;
2ce40956 247 route->gw.in = gateway;
3c9b8860 248
91b5f997 249 route_remove(route, link,
483d099e 250 link_route_remove_handler);
3c9b8860
TG
251 }
252 }
253
f414a269
TG
254 r = sd_dhcp_lease_get_address(link->dhcp_lease, &addr);
255 if (r >= 0) {
256 r = sd_dhcp_lease_get_netmask(link->dhcp_lease, &netmask);
257 if (r >= 0)
5a941f5f 258 prefixlen = in4_addr_netmask_to_prefixlen(&netmask);
3c9b8860 259
f414a269
TG
260 address->family = AF_INET;
261 address->in_addr.in = addr;
262 address->prefixlen = prefixlen;
3c9b8860 263
483d099e 264 address_remove(address, link, link_address_remove_handler);
f414a269 265 }
3c9b8860
TG
266 }
267
27cb34f5 268 if (link->network->dhcp_use_mtu) {
3c9b8860
TG
269 uint16_t mtu;
270
271 r = sd_dhcp_lease_get_mtu(link->dhcp_lease, &mtu);
272 if (r >= 0 && link->original_mtu != mtu) {
273 r = link_set_mtu(link, link->original_mtu);
274 if (r < 0) {
79008bdd 275 log_link_warning(link,
3c9b8860
TG
276 "DHCP error: could not reset MTU");
277 link_enter_failed(link);
278 return r;
279 }
280 }
281 }
282
27cb34f5 283 if (link->network->dhcp_use_hostname) {
3c9b8860
TG
284 const char *hostname = NULL;
285
27cb34f5
LP
286 if (link->network->dhcp_hostname)
287 hostname = link->network->dhcp_hostname;
dce391e7
LP
288 else
289 (void) sd_dhcp_lease_get_hostname(link->dhcp_lease, &hostname);
a7d0ef44 290
dce391e7
LP
291 if (hostname) {
292 /* If a hostname was set due to the lease, then unset it now. */
59eb33e0 293 r = manager_set_hostname(link->manager, NULL);
3c9b8860 294 if (r < 0)
dce391e7 295 log_link_warning_errno(link, r, "Failed to reset transient hostname: %m");
3c9b8860
TG
296 }
297 }
298
299 link->dhcp_lease = sd_dhcp_lease_unref(link->dhcp_lease);
6a3e5f6a 300 link_dirty(link);
3c9b8860
TG
301 link->dhcp4_configured = false;
302
303 return 0;
304}
305
1c4baffc 306static int dhcp4_address_handler(sd_netlink *rtnl, sd_netlink_message *m,
3c9b8860
TG
307 void *userdata) {
308 _cleanup_link_unref_ Link *link = userdata;
309 int r;
310
311 assert(link);
312
1c4baffc 313 r = sd_netlink_message_get_errno(m);
3c9b8860 314 if (r < 0 && r != -EEXIST) {
f6b8196f 315 log_link_error_errno(link, r, "Could not set DHCPv4 address: %m");
3c9b8860 316 link_enter_failed(link);
45af44d4 317 } else if (r >= 0)
200a0868 318 manager_rtnl_process_address(rtnl, m, link->manager);
3c9b8860
TG
319
320 link_set_dhcp_routes(link);
321
322 return 1;
323}
324
325static int dhcp4_update_address(Link *link,
326 struct in_addr *address,
327 struct in_addr *netmask,
328 uint32_t lifetime) {
329 _cleanup_address_free_ Address *addr = NULL;
330 unsigned prefixlen;
331 int r;
332
333 assert(address);
334 assert(netmask);
335 assert(lifetime);
336
5a941f5f 337 prefixlen = in4_addr_netmask_to_prefixlen(netmask);
3c9b8860 338
f0213e37 339 r = address_new(&addr);
3c9b8860
TG
340 if (r < 0)
341 return r;
342
343 addr->family = AF_INET;
344 addr->in_addr.in.s_addr = address->s_addr;
345 addr->cinfo.ifa_prefered = lifetime;
346 addr->cinfo.ifa_valid = lifetime;
347 addr->prefixlen = prefixlen;
348 addr->broadcast.s_addr = address->s_addr | ~netmask->s_addr;
349
66669078
TG
350 /* allow reusing an existing address and simply update its lifetime
351 * in case it already exists */
483d099e 352 r = address_configure(addr, link, dhcp4_address_handler, true);
3c9b8860
TG
353 if (r < 0)
354 return r;
355
356 return 0;
357}
358
359static int dhcp_lease_renew(sd_dhcp_client *client, Link *link) {
360 sd_dhcp_lease *lease;
361 struct in_addr address;
362 struct in_addr netmask;
363 uint32_t lifetime = CACHE_INFO_INFINITY_LIFE_TIME;
364 int r;
365
366 assert(link);
367 assert(client);
368 assert(link->network);
369
370 r = sd_dhcp_client_get_lease(client, &lease);
f6b8196f
LP
371 if (r < 0)
372 return log_link_warning_errno(link, r, "DHCP error: no lease: %m");
3c9b8860
TG
373
374 sd_dhcp_lease_unref(link->dhcp_lease);
375 link->dhcp4_configured = false;
e6b18ffa 376 link->dhcp_lease = sd_dhcp_lease_ref(lease);
6a3e5f6a 377 link_dirty(link);
3c9b8860
TG
378
379 r = sd_dhcp_lease_get_address(lease, &address);
f6b8196f
LP
380 if (r < 0)
381 return log_link_warning_errno(link, r, "DHCP error: no address: %m");
3c9b8860
TG
382
383 r = sd_dhcp_lease_get_netmask(lease, &netmask);
f6b8196f
LP
384 if (r < 0)
385 return log_link_warning_errno(link, r, "DHCP error: no netmask: %m");
3c9b8860
TG
386
387 if (!link->network->dhcp_critical) {
f6b8196f
LP
388 r = sd_dhcp_lease_get_lifetime(link->dhcp_lease, &lifetime);
389 if (r < 0)
390 return log_link_warning_errno(link, r, "DHCP error: no lifetime: %m");
3c9b8860
TG
391 }
392
393 r = dhcp4_update_address(link, &address, &netmask, lifetime);
394 if (r < 0) {
f6b8196f 395 log_link_warning_errno(link, r, "Could not update IP address: %m");
3c9b8860
TG
396 link_enter_failed(link);
397 return r;
398 }
399
400 return 0;
401}
402
403static int dhcp_lease_acquired(sd_dhcp_client *client, Link *link) {
404 sd_dhcp_lease *lease;
405 struct in_addr address;
406 struct in_addr netmask;
407 struct in_addr gateway;
408 unsigned prefixlen;
409 uint32_t lifetime = CACHE_INFO_INFINITY_LIFE_TIME;
410 int r;
411
412 assert(client);
413 assert(link);
414
415 r = sd_dhcp_client_get_lease(client, &lease);
f2341e0a 416 if (r < 0)
f6b8196f 417 return log_link_error_errno(link, r, "DHCP error: No lease: %m");
3c9b8860
TG
418
419 r = sd_dhcp_lease_get_address(lease, &address);
f2341e0a 420 if (r < 0)
f6b8196f 421 return log_link_error_errno(link, r, "DHCP error: No address: %m");
3c9b8860
TG
422
423 r = sd_dhcp_lease_get_netmask(lease, &netmask);
f2341e0a 424 if (r < 0)
f6b8196f 425 return log_link_error_errno(link, r, "DHCP error: No netmask: %m");
3c9b8860 426
5a941f5f 427 prefixlen = in4_addr_netmask_to_prefixlen(&netmask);
3c9b8860
TG
428
429 r = sd_dhcp_lease_get_router(lease, &gateway);
397d15fd 430 if (r < 0 && r != -ENODATA)
f6b8196f 431 return log_link_error_errno(link, r, "DHCP error: Could not get gateway: %m");
3c9b8860
TG
432
433 if (r >= 0)
f2341e0a
LP
434 log_struct(LOG_INFO,
435 LOG_LINK_INTERFACE(link),
436 LOG_LINK_MESSAGE(link, "DHCPv4 address %u.%u.%u.%u/%u via %u.%u.%u.%u",
437 ADDRESS_FMT_VAL(address),
438 prefixlen,
439 ADDRESS_FMT_VAL(gateway)),
440 "ADDRESS=%u.%u.%u.%u", ADDRESS_FMT_VAL(address),
441 "PREFIXLEN=%u", prefixlen,
442 "GATEWAY=%u.%u.%u.%u", ADDRESS_FMT_VAL(gateway),
443 NULL);
3c9b8860 444 else
f2341e0a
LP
445 log_struct(LOG_INFO,
446 LOG_LINK_INTERFACE(link),
447 LOG_LINK_MESSAGE(link, "DHCPv4 address %u.%u.%u.%u/%u",
448 ADDRESS_FMT_VAL(address),
449 prefixlen),
450 "ADDRESS=%u.%u.%u.%u", ADDRESS_FMT_VAL(address),
451 "PREFIXLEN=%u", prefixlen,
452 NULL);
3c9b8860 453
e6b18ffa 454 link->dhcp_lease = sd_dhcp_lease_ref(lease);
6a3e5f6a 455 link_dirty(link);
3c9b8860 456
27cb34f5 457 if (link->network->dhcp_use_mtu) {
3c9b8860
TG
458 uint16_t mtu;
459
460 r = sd_dhcp_lease_get_mtu(lease, &mtu);
461 if (r >= 0) {
462 r = link_set_mtu(link, mtu);
463 if (r < 0)
f2341e0a 464 log_link_error_errno(link, r, "Failed to set MTU to %" PRIu16 ": %m", mtu);
3c9b8860
TG
465 }
466 }
467
27cb34f5 468 if (link->network->dhcp_use_hostname) {
2de2abad
LB
469 const char *dhcpname = NULL;
470 _cleanup_free_ char *hostname = NULL;
3c9b8860 471
27cb34f5 472 if (link->network->dhcp_hostname)
2de2abad 473 dhcpname = link->network->dhcp_hostname;
dce391e7 474 else
2de2abad
LB
475 (void) sd_dhcp_lease_get_hostname(lease, &dhcpname);
476
477 if (dhcpname) {
478 r = shorten_overlong(dhcpname, &hostname);
479 if (r < 0)
480 log_link_warning_errno(link, r, "Unable to shorten overlong DHCP hostname '%s', ignoring: %m", dhcpname);
481 if (r == 1)
482 log_link_notice(link, "Overlong DCHP hostname received, shortened from '%s' to '%s'", dhcpname, hostname);
483 }
a7d0ef44 484
dce391e7 485 if (hostname) {
59eb33e0 486 r = manager_set_hostname(link->manager, hostname);
3c9b8860 487 if (r < 0)
f2341e0a 488 log_link_error_errno(link, r, "Failed to set transient hostname to '%s': %m", hostname);
3c9b8860
TG
489 }
490 }
491
27cb34f5 492 if (link->network->dhcp_use_timezone) {
21b80ad1
LP
493 const char *tz = NULL;
494
495 (void) sd_dhcp_lease_get_timezone(link->dhcp_lease, &tz);
496
497 if (tz) {
59eb33e0 498 r = manager_set_timezone(link->manager, tz);
21b80ad1
LP
499 if (r < 0)
500 log_link_error_errno(link, r, "Failed to set timezone to '%s': %m", tz);
501 }
502 }
503
3c9b8860 504 if (!link->network->dhcp_critical) {
f2341e0a 505 r = sd_dhcp_lease_get_lifetime(link->dhcp_lease, &lifetime);
3c9b8860 506 if (r < 0) {
f2341e0a 507 log_link_warning_errno(link, r, "DHCP error: no lifetime: %m");
3c9b8860
TG
508 return r;
509 }
510 }
511
512 r = dhcp4_update_address(link, &address, &netmask, lifetime);
513 if (r < 0) {
f2341e0a 514 log_link_warning_errno(link, r, "Could not update IP address: %m");
3c9b8860
TG
515 link_enter_failed(link);
516 return r;
517 }
518
519 return 0;
520}
521static void dhcp4_handler(sd_dhcp_client *client, int event, void *userdata) {
522 Link *link = userdata;
523 int r = 0;
524
525 assert(link);
526 assert(link->network);
527 assert(link->manager);
528
529 if (IN_SET(link->state, LINK_STATE_FAILED, LINK_STATE_LINGER))
530 return;
531
532 switch (event) {
03748142
DH
533 case SD_DHCP_CLIENT_EVENT_EXPIRED:
534 case SD_DHCP_CLIENT_EVENT_STOP:
535 case SD_DHCP_CLIENT_EVENT_IP_CHANGE:
3c9b8860 536 if (link->network->dhcp_critical) {
f6b8196f 537 log_link_error(link, "DHCPv4 connection considered system critical, ignoring request to reconfigure it.");
3c9b8860
TG
538 return;
539 }
540
541 if (link->dhcp_lease) {
542 r = dhcp_lease_lost(link);
543 if (r < 0) {
544 link_enter_failed(link);
545 return;
546 }
547 }
548
03748142 549 if (event == SD_DHCP_CLIENT_EVENT_IP_CHANGE) {
3c9b8860
TG
550 r = dhcp_lease_acquired(client, link);
551 if (r < 0) {
552 link_enter_failed(link);
553 return;
554 }
555 }
556
557 break;
03748142 558 case SD_DHCP_CLIENT_EVENT_RENEW:
3c9b8860
TG
559 r = dhcp_lease_renew(client, link);
560 if (r < 0) {
561 link_enter_failed(link);
562 return;
563 }
564 break;
03748142 565 case SD_DHCP_CLIENT_EVENT_IP_ACQUIRE:
3c9b8860
TG
566 r = dhcp_lease_acquired(client, link);
567 if (r < 0) {
568 link_enter_failed(link);
569 return;
570 }
571 break;
572 default:
573 if (event < 0)
f6b8196f 574 log_link_warning_errno(link, event, "DHCP error: Client failed: %m");
3c9b8860 575 else
f6b8196f 576 log_link_warning(link, "DHCP unknown event: %i", event);
3c9b8860
TG
577 break;
578 }
579
580 return;
581}
582
7192bb81
LP
583static int dhcp4_set_hostname(Link *link) {
584 _cleanup_free_ char *hostname = NULL;
585 const char *hn;
586 int r;
587
588 assert(link);
589
590 if (!link->network->dhcp_send_hostname)
591 hn = NULL;
592 else if (link->network->dhcp_hostname)
593 hn = link->network->dhcp_hostname;
594 else {
595 r = gethostname_strict(&hostname);
596 if (r < 0 && r != -ENXIO) /* ENXIO: no hostname set or hostname is "localhost" */
597 return r;
598
599 hn = hostname;
600 }
601
602 return sd_dhcp_client_set_hostname(link->dhcp_client, hn);
603}
604
64b21ece 605static bool promote_secondaries_enabled(const char *ifname) {
3f550c31
HV
606 _cleanup_free_ char *promote_secondaries_sysctl = NULL;
607 char *promote_secondaries_path;
64b21ece
MV
608 int r;
609
610 promote_secondaries_path = strjoina("net/ipv4/conf/", ifname, "/promote_secondaries");
611 r = sysctl_read(promote_secondaries_path, &promote_secondaries_sysctl);
612 if (r < 0) {
613 log_debug_errno(r, "Cannot read sysctl %s", promote_secondaries_path);
614 return false;
615 }
616
617 truncate_nl(promote_secondaries_sysctl);
618 r = parse_boolean(promote_secondaries_sysctl);
619 if (r < 0)
620 log_warning_errno(r, "Cannot parse sysctl %s with content %s as boolean", promote_secondaries_path, promote_secondaries_sysctl);
621 return r > 0;
622}
623
624/* dhcp4_set_promote_secondaries will ensure this interface has
625 * the "promote_secondaries" option in the kernel set. If this sysctl
626 * is not set DHCP will work only as long as the IP address does not
627 * changes between leases. The kernel will remove all secondary IP
628 * addresses of an interface otherwise. The way systemd-network works
629 * is that the new IP of a lease is added as a secondary IP and when
630 * the primary one expires it relies on the kernel to promote the
631 * secondary IP. See also https://github.com/systemd/systemd/issues/7163
632 */
633int dhcp4_set_promote_secondaries(Link *link) {
634 int r;
635
636 assert(link);
637 assert(link->network);
638 assert(link->network->dhcp & ADDRESS_FAMILY_IPV4);
639
640 /* check if the kernel has promote_secondaries enabled for our
641 * interface. If it is not globally enabled or enabled for the
642 * specific interface we must either enable it.
643 */
8e1a7253 644 if (!(promote_secondaries_enabled("all") || promote_secondaries_enabled(link->ifname))) {
64b21ece
MV
645 char *promote_secondaries_path = NULL;
646
647 log_link_debug(link, "promote_secondaries is unset, setting it");
648 promote_secondaries_path = strjoina("net/ipv4/conf/", link->ifname, "/promote_secondaries");
649 r = sysctl_write(promote_secondaries_path, "1");
650 if (r < 0)
651 log_link_warning_errno(link, r, "cannot set sysctl %s to 1", promote_secondaries_path);
652 return r > 0;
653 }
654
655 return 0;
656}
657
3c9b8860
TG
658int dhcp4_configure(Link *link) {
659 int r;
660
661 assert(link);
662 assert(link->network);
e0ee46f2 663 assert(link->network->dhcp & ADDRESS_FAMILY_IPV4);
3c9b8860 664
0bc70f1d 665 if (!link->dhcp_client) {
db3d2358 666 r = sd_dhcp_client_new(&link->dhcp_client, link->network->dhcp_anonymize);
0bc70f1d
TG
667 if (r < 0)
668 return r;
669 }
3c9b8860
TG
670
671 r = sd_dhcp_client_attach_event(link->dhcp_client, NULL, 0);
672 if (r < 0)
673 return r;
674
76253e73
DW
675 r = sd_dhcp_client_set_mac(link->dhcp_client,
676 (const uint8_t *) &link->mac,
677 sizeof (link->mac), ARPHRD_ETHER);
3c9b8860
TG
678 if (r < 0)
679 return r;
680
2f8e7633 681 r = sd_dhcp_client_set_ifindex(link->dhcp_client, link->ifindex);
3c9b8860
TG
682 if (r < 0)
683 return r;
684
685 r = sd_dhcp_client_set_callback(link->dhcp_client, dhcp4_handler, link);
686 if (r < 0)
687 return r;
688
689 r = sd_dhcp_client_set_request_broadcast(link->dhcp_client,
690 link->network->dhcp_broadcast);
691 if (r < 0)
692 return r;
693
694 if (link->mtu) {
695 r = sd_dhcp_client_set_mtu(link->dhcp_client, link->mtu);
696 if (r < 0)
697 return r;
698 }
699
27cb34f5 700 if (link->network->dhcp_use_mtu) {
39745a5a 701 r = sd_dhcp_client_set_request_option(link->dhcp_client,
22805d92 702 SD_DHCP_OPTION_INTERFACE_MTU);
39745a5a
LP
703 if (r < 0)
704 return r;
3c9b8860
TG
705 }
706
5e77a146 707 /* NOTE: even if this variable is called "use", it also "sends" PRL
708 * options, maybe there should be a different configuration variable
709 * to send or not route options?. */
28522b0d 710 /* NOTE: when using Anonymize=yes, routes PRL options are sent
711 * by default, so they don't need to be added here. */
5e77a146 712 if (link->network->dhcp_use_routes && !link->network->dhcp_anonymize) {
3c9b8860 713 r = sd_dhcp_client_set_request_option(link->dhcp_client,
22805d92 714 SD_DHCP_OPTION_STATIC_ROUTE);
3c9b8860
TG
715 if (r < 0)
716 return r;
717 r = sd_dhcp_client_set_request_option(link->dhcp_client,
22805d92 718 SD_DHCP_OPTION_CLASSLESS_STATIC_ROUTE);
7d6884b6
TA
719 if (r < 0)
720 return r;
3c9b8860
TG
721 }
722
ead36ce6 723 if (link->network->dhcp_use_ntp) {
724 r = sd_dhcp_client_set_request_option(link->dhcp_client, SD_DHCP_OPTION_NTP_SERVER);
725 if (r < 0)
726 return r;
727 }
4b7b5abb 728
89573b37 729 if (link->network->dhcp_use_timezone) {
730 r = sd_dhcp_client_set_request_option(link->dhcp_client, SD_DHCP_OPTION_NEW_TZDB_TIMEZONE);
731 if (r < 0)
732 return r;
733 }
8eb9058d 734
7192bb81
LP
735 r = dhcp4_set_hostname(link);
736 if (r < 0)
737 return r;
3c9b8860
TG
738
739 if (link->network->dhcp_vendor_class_identifier) {
740 r = sd_dhcp_client_set_vendor_class_identifier(link->dhcp_client,
741 link->network->dhcp_vendor_class_identifier);
742 if (r < 0)
743 return r;
744 }
745
9faed222
SS
746 if (link->network->dhcp_client_port) {
747 r = sd_dhcp_client_set_client_port(link->dhcp_client, link->network->dhcp_client_port);
748 if (r < 0)
749 return r;
750 }
751
3e43b2cd 752 switch (link->network->dhcp_client_identifier) {
8341a5c3 753 case DHCP_CLIENT_ID_DUID: {
413708d1 754 /* If configured, apply user specified DUID and/or IAID */
8341a5c3
ZJS
755 const DUID *duid = link_duid(link);
756
757 r = sd_dhcp_client_set_iaid_duid(link->dhcp_client,
758 link->network->iaid,
759 duid->type,
760 duid->raw_data_len > 0 ? duid->raw_data : NULL,
761 duid->raw_data_len);
413708d1
VK
762 if (r < 0)
763 return r;
3e43b2cd 764 break;
8341a5c3 765 }
dace710c
YW
766 case DHCP_CLIENT_ID_DUID_ONLY: {
767 /* If configured, apply user specified DUID */
768 const DUID *duid = link_duid(link);
769
770 r = sd_dhcp_client_set_duid(link->dhcp_client,
771 duid->type,
772 duid->raw_data_len > 0 ? duid->raw_data : NULL,
773 duid->raw_data_len);
774 if (r < 0)
775 return r;
776 break;
777 }
3e43b2cd
JJ
778 case DHCP_CLIENT_ID_MAC:
779 r = sd_dhcp_client_set_client_id(link->dhcp_client,
780 ARPHRD_ETHER,
781 (const uint8_t *) &link->mac,
8341a5c3 782 sizeof(link->mac));
3e43b2cd
JJ
783 if (r < 0)
784 return r;
785 break;
786 default:
787 assert_not_reached("Unknown client identifier type.");
788 }
789
3c9b8860
TG
790 return 0;
791}