]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/udev/net/link-config.c
Merge pull request #20486 from DaanDeMeyer/sd-bus-eproto
[thirdparty/systemd.git] / src / udev / net / link-config.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
af6f0d42 2
01234e1f 3#include <linux/netdevice.h>
43b3a5ef 4#include <netinet/ether.h>
a0b191b7 5#include <unistd.h>
43b3a5ef 6
e5eadf53 7#include "sd-device.h"
07630cea 8#include "sd-netlink.h"
af6f0d42 9
b5efdb8a 10#include "alloc-util.h"
07630cea
LP
11#include "conf-files.h"
12#include "conf-parser.h"
dc0d4078 13#include "def.h"
e0e789c1 14#include "device-private.h"
b220632c 15#include "device-util.h"
a5010333 16#include "ethtool-util.h"
3ffd4af2 17#include "fd-util.h"
07630cea 18#include "link-config.h"
af6f0d42 19#include "log.h"
0a970718 20#include "memory-util.h"
7e19cc54 21#include "net-condition.h"
b355d0c9 22#include "netif-naming-scheme.h"
1c4baffc 23#include "netlink-util.h"
dc7f6c9b 24#include "network-util.h"
6bedfcbb 25#include "parse-util.h"
b0c82192 26#include "path-lookup.h"
07630cea 27#include "path-util.h"
4e731273 28#include "proc-cmdline.h"
3df3e884 29#include "random-util.h"
8fcde012 30#include "stat-util.h"
8b43440b 31#include "string-table.h"
07630cea
LP
32#include "string-util.h"
33#include "strv.h"
fc27088a 34#include "utf8.h"
af6f0d42 35
afca7ac1 36struct LinkConfigContext {
ce01c07f 37 LIST_HEAD(LinkConfig, links);
a5010333 38 int ethtool_fd;
f6194225 39 bool enable_name_policy;
1c4baffc 40 sd_netlink *rtnl;
dc0d4078 41 usec_t network_dirs_ts_usec;
af6f0d42
TG
42};
43
ce01c07f 44static LinkConfig* link_config_free(LinkConfig *link) {
9a4b012e 45 if (!link)
75db809a 46 return NULL;
5b9d4dc0 47
9a4b012e
TG
48 free(link->filename);
49
5722fb89 50 net_match_clear(&link->match);
c4f58dea 51 condition_free_list(link->conditions);
9a4b012e
TG
52
53 free(link->description);
54 free(link->mac);
55 free(link->name_policy);
56 free(link->name);
a5053a15 57 strv_free(link->alternative_names);
ef1d2c07 58 free(link->alternative_names_policy);
9a4b012e
TG
59 free(link->alias);
60
75db809a 61 return mfree(link);
af6f0d42
TG
62}
63
ce01c07f 64DEFINE_TRIVIAL_CLEANUP_FUNC(LinkConfig*, link_config_free);
9a4b012e 65
afca7ac1 66static void link_configs_free(LinkConfigContext *ctx) {
ce01c07f 67 LinkConfig *link, *link_next;
af6f0d42
TG
68
69 if (!ctx)
70 return;
71
9a4b012e
TG
72 LIST_FOREACH_SAFE(links, link, link_next, ctx->links)
73 link_config_free(link);
af6f0d42
TG
74}
75
afca7ac1 76LinkConfigContext *link_config_ctx_free(LinkConfigContext *ctx) {
af6f0d42 77 if (!ctx)
75db809a 78 return NULL;
af6f0d42 79
03e334a1 80 safe_close(ctx->ethtool_fd);
1c4baffc 81 sd_netlink_unref(ctx->rtnl);
af6f0d42 82 link_configs_free(ctx);
75db809a 83 return mfree(ctx);
af6f0d42
TG
84}
85
afca7ac1
YW
86int link_config_ctx_new(LinkConfigContext **ret) {
87 _cleanup_(link_config_ctx_freep) LinkConfigContext *ctx = NULL;
9a4b012e
TG
88
89 if (!ret)
90 return -EINVAL;
91
afca7ac1 92 ctx = new(LinkConfigContext, 1);
9a4b012e
TG
93 if (!ctx)
94 return -ENOMEM;
95
afca7ac1
YW
96 *ctx = (LinkConfigContext) {
97 .ethtool_fd = -1,
98 .enable_name_policy = true,
99 };
9a4b012e 100
1cc6c93a 101 *ret = TAKE_PTR(ctx);
9a4b012e
TG
102
103 return 0;
104}
105
afca7ac1 106int link_load_one(LinkConfigContext *ctx, const char *filename) {
ce01c07f 107 _cleanup_(link_config_freep) LinkConfig *link = NULL;
6cdab9f1 108 _cleanup_free_ char *name = NULL;
e406e8a2 109 const char *dropin_dirname;
79a60834 110 size_t i;
af6f0d42
TG
111 int r;
112
187dc6e5
TA
113 assert(ctx);
114 assert(filename);
115
e8e2788d
YW
116 r = null_or_empty_path(filename);
117 if (r == -ENOENT)
118 return 0;
119 if (r < 0)
120 return r;
121 if (r > 0) {
ed88bcfb
ZJS
122 log_debug("Skipping empty file: %s", filename);
123 return 0;
124 }
125
6cdab9f1
YW
126 name = strdup(filename);
127 if (!name)
128 return -ENOMEM;
129
ce01c07f 130 link = new(LinkConfig, 1);
ecb08ec6 131 if (!link)
e8a42907 132 return -ENOMEM;
af6f0d42 133
ce01c07f 134 *link = (LinkConfig) {
6cdab9f1 135 .filename = TAKE_PTR(name),
54ed9f88 136 .mac_address_policy = _MAC_ADDRESS_POLICY_INVALID,
c50404ae 137 .wol = UINT32_MAX, /* UINT32_MAX means do not change WOL setting. */
6cdab9f1
YW
138 .duplex = _DUP_INVALID,
139 .port = _NET_DEV_PORT_INVALID,
140 .autonegotiation = -1,
a34811e4
YW
141 .rx_flow_control = -1,
142 .tx_flow_control = -1,
143 .autoneg_flow_control = -1,
ef4a91a7 144 .txqueuelen = UINT32_MAX,
6cdab9f1 145 };
5fde13d7 146
79a60834 147 for (i = 0; i < ELEMENTSOF(link->features); i++)
cc2ff878 148 link->features[i] = -1;
50725d10 149
e406e8a2
YW
150 dropin_dirname = strjoina(basename(filename), ".d");
151 r = config_parse_many(
152 STRV_MAKE_CONST(filename),
153 (const char* const*) CONF_PATHS_STRV("systemd/network"),
154 dropin_dirname,
155 "Match\0Link\0",
156 config_item_perf_lookup, link_config_gperf_lookup,
157 CONFIG_PARSE_WARN, link, NULL);
36f822c4 158 if (r < 0)
ecb08ec6 159 return r;
af6f0d42 160
5722fb89 161 if (net_match_is_empty(&link->match) && !link->conditions) {
dade7349
ZJS
162 log_warning("%s: No valid settings found in the [Match] section, ignoring file. "
163 "To match all interfaces, add OriginalName=* in the [Match] section.",
84ea567e 164 filename);
dade7349
ZJS
165 return 0;
166 }
84ea567e 167
a0b191b7 168 if (!condition_test_list(link->conditions, environ, NULL, NULL, NULL)) {
176d9c0e
YW
169 log_debug("%s: Conditions do not match the system environment, skipping.", filename);
170 return 0;
171 }
172
a7a12bf4
YW
173 if (IN_SET(link->mac_address_policy, MAC_ADDRESS_POLICY_PERSISTENT, MAC_ADDRESS_POLICY_RANDOM) && link->mac) {
174 log_warning("%s: MACAddress= in [Link] section will be ignored when MACAddressPolicy= "
175 "is set to \"persistent\" or \"random\".",
176 filename);
177 link->mac = mfree(link->mac);
178 }
179
6cdab9f1 180 log_debug("Parsed configuration file %s", filename);
af6f0d42 181
4b4a6c9b 182 LIST_PREPEND(links, ctx->links, TAKE_PTR(link));
af6f0d42 183 return 0;
af6f0d42
TG
184}
185
f6194225 186static bool enable_name_policy(void) {
1d84ad94 187 bool b;
f6194225 188
1d84ad94 189 return proc_cmdline_get_bool("net.ifnames", &b) <= 0 || b;
f6194225
TG
190}
191
015b097c 192static int link_unsigned_attribute(sd_device *device, const char *attr, unsigned *type) {
0b189e8f
ZJS
193 const char *s;
194 int r;
195
015b097c 196 r = sd_device_get_sysattr_value(device, attr, &s);
0b189e8f 197 if (r < 0)
015b097c 198 return log_device_debug_errno(device, r, "Failed to query %s: %m", attr);
0b189e8f
ZJS
199
200 r = safe_atou(s, type);
201 if (r < 0)
015b097c 202 return log_device_warning_errno(device, r, "Failed to parse %s \"%s\": %m", attr, s);
0b189e8f 203
015b097c 204 log_device_debug(device, "Device has %s=%u", attr, *type);
0b189e8f
ZJS
205 return 0;
206}
207
afca7ac1 208int link_config_load(LinkConfigContext *ctx) {
b9c54c46 209 _cleanup_strv_free_ char **files = NULL;
edf029b7 210 char **f;
a39f92d3 211 int r;
af6f0d42
TG
212
213 link_configs_free(ctx);
214
f6194225
TG
215 if (!enable_name_policy()) {
216 ctx->enable_name_policy = false;
3f85ef0f 217 log_info("Network interface NamePolicy= disabled on kernel command line, ignoring.");
f6194225
TG
218 }
219
97f2d76d 220 /* update timestamp */
dc0d4078 221 paths_check_timestamp(NETWORK_DIRS, &ctx->network_dirs_ts_usec, true);
af6f0d42 222
dc0d4078 223 r = conf_files_list_strv(&files, ".link", NULL, 0, NETWORK_DIRS);
f647962d
MS
224 if (r < 0)
225 return log_error_errno(r, "failed to enumerate link files: %m");
af6f0d42
TG
226
227 STRV_FOREACH_BACKWARDS(f, files) {
a378400b 228 r = link_load_one(ctx, *f);
af6f0d42 229 if (r < 0)
e8a42907 230 log_error_errno(r, "Failed to load %s, ignoring: %m", *f);
af6f0d42
TG
231 }
232
233 return 0;
234}
235
afca7ac1 236bool link_config_should_reload(LinkConfigContext *ctx) {
dc0d4078 237 return paths_check_timestamp(NETWORK_DIRS, &ctx->network_dirs_ts_usec, false);
af6f0d42
TG
238}
239
ce01c07f 240int link_config_get(LinkConfigContext *ctx, sd_device *device, LinkConfig **ret) {
f5767302 241 unsigned name_assign_type = NET_NAME_UNKNOWN;
4bb7cc82 242 struct ether_addr permanent_mac = {};
f25e642b 243 unsigned short iftype;
ce01c07f 244 LinkConfig *link;
4bb7cc82 245 const char *name;
70f32a26 246 unsigned flags;
ef62949a 247 int ifindex, r;
af6f0d42 248
3b64e4d4
TG
249 assert(ctx);
250 assert(device);
251 assert(ret);
252
4bb7cc82
YW
253 r = sd_device_get_sysname(device, &name);
254 if (r < 0)
255 return r;
256
ef62949a
YW
257 r = sd_device_get_ifindex(device, &ifindex);
258 if (r < 0)
259 return r;
260
70f32a26 261 r = rtnl_get_link_info(&ctx->rtnl, ifindex, &iftype, &flags);
ef62949a
YW
262 if (r < 0)
263 return r;
264
70f32a26
YW
265 /* Do not configure loopback interfaces by .link files. */
266 if (flags & IFF_LOOPBACK)
267 return -ENOENT;
268
4bb7cc82
YW
269 r = ethtool_get_permanent_macaddr(&ctx->ethtool_fd, name, &permanent_mac);
270 if (r < 0)
271 log_device_debug_errno(device, r, "Failed to get permanent MAC address, ignoring: %m");
272
f5767302
YW
273 (void) link_unsigned_attribute(device, "name_assign_type", &name_assign_type);
274
af6f0d42 275 LIST_FOREACH(links, link, ctx->links) {
1a3caa49
YW
276 r = net_match_config(&link->match, device, NULL, &permanent_mac, NULL, iftype, NULL, NULL, 0, NULL, NULL);
277 if (r < 0)
278 return r;
279 if (r == 0)
280 continue;
281
282 if (link->match.ifname && !strv_contains(link->match.ifname, "*") && name_assign_type == NET_NAME_ENUM)
283 log_device_warning(device, "Config file %s is applied to device based on potentially unpredictable interface name.",
284 link->filename);
285 else
286 log_device_debug(device, "Config file %s is applied", link->filename);
287
288 *ret = link;
289 return 0;
af6f0d42
TG
290 }
291
292 return -ENOENT;
293}
294
ce01c07f 295static int link_config_apply_ethtool_settings(int *ethtool_fd, const LinkConfig *config, sd_device *device) {
2e17fed5
YW
296 const char *name;
297 int r;
298
299 assert(ethtool_fd);
300 assert(config);
301 assert(device);
302
303 r = sd_device_get_sysname(device, &name);
304 if (r < 0)
305 return log_device_error_errno(device, r, "Failed to get sysname: %m");
306
307 r = ethtool_set_glinksettings(ethtool_fd, name,
308 config->autonegotiation, config->advertise,
309 config->speed, config->duplex, config->port);
310 if (r < 0) {
a7994dd3
YW
311 if (config->autonegotiation >= 0)
312 log_device_warning_errno(device, r, "Could not %s auto negotiation, ignoring: %m",
313 enable_disable(config->autonegotiation));
2e17fed5
YW
314
315 if (!eqzero(config->advertise))
a7994dd3
YW
316 log_device_warning_errno(device, r, "Could not set advertise mode, ignoring: %m");
317
318 if (config->speed > 0)
319 log_device_warning_errno(device, r, "Could not set speed to %"PRIu64"Mbps, ignoring: %m",
320 DIV_ROUND_UP(config->speed, 1000000));
321
322 if (config->duplex >= 0)
323 log_device_warning_errno(device, r, "Could not set duplex to %s, ignoring: %m",
324 duplex_to_string(config->duplex));
325
326 if (config->port >= 0)
327 log_device_warning_errno(device, r, "Could not set port to '%s', ignoring: %m",
328 port_to_string(config->port));
2e17fed5
YW
329 }
330
331 r = ethtool_set_wol(ethtool_fd, name, config->wol);
c50404ae
YW
332 if (r < 0) {
333 _cleanup_free_ char *str = NULL;
334
335 (void) wol_options_to_string_alloc(config->wol, &str);
a7994dd3 336 log_device_warning_errno(device, r, "Could not set WakeOnLan to %s, ignoring: %m",
c50404ae
YW
337 strna(str));
338 }
2e17fed5
YW
339
340 r = ethtool_set_features(ethtool_fd, name, config->features);
341 if (r < 0)
342 log_device_warning_errno(device, r, "Could not set offload features, ignoring: %m");
343
80662eec
YW
344 r = ethtool_set_channels(ethtool_fd, name, &config->channels);
345 if (r < 0)
346 log_device_warning_errno(device, r, "Could not set channels, ignoring: %m");
2e17fed5 347
80662eec
YW
348 r = ethtool_set_nic_buffer_size(ethtool_fd, name, &config->ring);
349 if (r < 0)
350 log_device_warning_errno(device, r, "Could not set ring buffer, ignoring: %m");
2e17fed5 351
80662eec
YW
352 r = ethtool_set_flow_control(ethtool_fd, name, config->rx_flow_control, config->tx_flow_control, config->autoneg_flow_control);
353 if (r < 0)
354 log_device_warning_errno(device, r, "Could not set flow control, ignoring: %m");
2e17fed5
YW
355
356 return 0;
357}
358
54ed9f88 359static int get_mac(sd_device *device, MACAddressPolicy policy, struct ether_addr *mac) {
015b097c 360 unsigned addr_type;
54ed9f88 361 bool want_random = policy == MAC_ADDRESS_POLICY_RANDOM;
f1ac7002 362 int r;
16b9b87a 363
54ed9f88 364 assert(IN_SET(policy, MAC_ADDRESS_POLICY_RANDOM, MAC_ADDRESS_POLICY_PERSISTENT));
3c9b8860 365
015b097c 366 r = link_unsigned_attribute(device, "addr_assign_type", &addr_type);
f1ac7002 367 if (r < 0)
015b097c
ZJS
368 return r;
369 switch (addr_type) {
370 case NET_ADDR_SET:
9d9fed9e
ZJS
371 log_device_debug(device, "MAC on the device already set by userspace");
372 return 0;
015b097c 373 case NET_ADDR_STOLEN:
9d9fed9e
ZJS
374 log_device_debug(device, "MAC on the device already set based on another device");
375 return 0;
015b097c
ZJS
376 case NET_ADDR_RANDOM:
377 case NET_ADDR_PERM:
378 break;
379 default:
09c69eca
YW
380 log_device_warning(device, "Unknown addr_assign_type %u, ignoring", addr_type);
381 return 0;
015b097c 382 }
04b67d49 383
9d9fed9e
ZJS
384 if (want_random == (addr_type == NET_ADDR_RANDOM)) {
385 log_device_debug(device, "MAC on the device already matches policy *%s*",
386 mac_address_policy_to_string(policy));
387 return 0;
388 }
16b9b87a 389
015b097c
ZJS
390 if (want_random) {
391 log_device_debug(device, "Using random bytes to generate MAC");
550c8784
LP
392
393 /* We require genuine randomness here, since we want to make sure we won't collide with other
394 * systems booting up at the very same time. We do allow RDRAND however, since this is not
395 * cryptographic key material. */
a745117d
LP
396 r = genuine_random_bytes(mac->ether_addr_octet, ETH_ALEN, RANDOM_ALLOW_RDRAND);
397 if (r < 0)
398 return log_device_error_errno(device, r, "Failed to acquire random data to generate MAC: %m");
015b097c 399 } else {
dbe81cbd 400 uint64_t result;
9bf3b535 401
96848152
ZJS
402 r = net_get_unique_predictable_data(device,
403 naming_scheme_has(NAMING_STABLE_VIRTUAL_MACS),
404 &result);
16b9b87a 405 if (r < 0)
015b097c 406 return log_device_warning_errno(device, r, "Could not generate persistent MAC: %m");
16b9b87a 407
96848152 408 log_device_debug(device, "Using generated persistent MAC address");
9bf3b535 409 assert_cc(ETH_ALEN <= sizeof(result));
dbe81cbd 410 memcpy(mac->ether_addr_octet, &result, ETH_ALEN);
16b9b87a
TG
411 }
412
413 /* see eth_random_addr in the kernel */
3c9b8860
TG
414 mac->ether_addr_octet[0] &= 0xfe; /* clear multicast bit */
415 mac->ether_addr_octet[0] |= 0x02; /* set local assignment bit (IEEE802) */
015b097c 416 return 1;
16b9b87a
TG
417}
418
ce01c07f 419static int link_config_apply_rtnl_settings(sd_netlink **rtnl, const LinkConfig *config, sd_device *device) {
2e17fed5
YW
420 struct ether_addr generated_mac, *mac = NULL;
421 int ifindex, r;
af6f0d42 422
2e17fed5 423 assert(rtnl);
3e137a1b
TG
424 assert(config);
425 assert(device);
3e137a1b 426
2e17fed5 427 r = sd_device_get_ifindex(device, &ifindex);
e5eadf53 428 if (r < 0)
2e17fed5 429 return log_device_error_errno(device, r, "Could not find ifindex: %m");
af6f0d42 430
2e17fed5
YW
431 if (IN_SET(config->mac_address_policy, MAC_ADDRESS_POLICY_PERSISTENT, MAC_ADDRESS_POLICY_RANDOM)) {
432 if (get_mac(device, config->mac_address_policy, &generated_mac) > 0)
433 mac = &generated_mac;
434 } else
435 mac = config->mac;
af6f0d42 436
face9fcc
YW
437 r = rtnl_set_link_properties(rtnl, ifindex, config->alias, mac,
438 config->txqueues, config->rxqueues, config->txqueuelen,
439 config->mtu, config->gso_max_size, config->gso_max_segments);
50725d10 440 if (r < 0)
face9fcc
YW
441 log_device_warning_errno(device, r,
442 "Could not set Alias=, MACAddress=, "
443 "TransmitQueues=, ReceiveQueues=, TransmitQueueLength=, MTU=, "
444 "GenericSegmentOffloadMaxBytes= or GenericSegmentOffloadMaxSegments=, "
445 "ignoring: %m");
50725d10 446
2e17fed5
YW
447 return 0;
448}
224ded67 449
ce01c07f 450static int link_config_generate_new_name(const LinkConfigContext *ctx, const LinkConfig *config, sd_device *device, const char **ret_name) {
2e17fed5 451 unsigned name_type = NET_NAME_UNKNOWN;
2e17fed5 452 int r;
a34811e4 453
2e17fed5
YW
454 assert(ctx);
455 assert(config);
456 assert(device);
457 assert(ret_name);
43b3a5ef 458
015b097c 459 (void) link_unsigned_attribute(device, "name_assign_type", &name_type);
0b189e8f 460
73d2bb08
ZJS
461 if (IN_SET(name_type, NET_NAME_USER, NET_NAME_RENAMED)
462 && !naming_scheme_has(NAMING_ALLOW_RERENAMES)) {
463 log_device_debug(device, "Device already has a name given by userspace, not renaming.");
464 goto no_rename;
465 }
466
0b189e8f 467 if (ctx->enable_name_policy && config->name_policy)
78f8849f 468 for (NamePolicy *p = config->name_policy; *p != _NAMEPOLICY_INVALID; p++) {
5cdb3f70
YW
469 const char *new_name = NULL;
470 NamePolicy policy = *p;
0b189e8f
ZJS
471
472 switch (policy) {
473 case NAMEPOLICY_KERNEL:
474 if (name_type != NET_NAME_PREDICTABLE)
475 continue;
476
477 /* The kernel claims to have given a predictable name, keep it. */
478 log_device_debug(device, "Policy *%s*: keeping predictable kernel name",
479 name_policy_to_string(policy));
480 goto no_rename;
3907446f
ZJS
481 case NAMEPOLICY_KEEP:
482 if (!IN_SET(name_type, NET_NAME_USER, NET_NAME_RENAMED))
483 continue;
484
485 log_device_debug(device, "Policy *%s*: keeping existing userspace name",
486 name_policy_to_string(policy));
487 goto no_rename;
0b189e8f
ZJS
488 case NAMEPOLICY_DATABASE:
489 (void) sd_device_get_property_value(device, "ID_NET_NAME_FROM_DATABASE", &new_name);
490 break;
491 case NAMEPOLICY_ONBOARD:
492 (void) sd_device_get_property_value(device, "ID_NET_NAME_ONBOARD", &new_name);
493 break;
494 case NAMEPOLICY_SLOT:
495 (void) sd_device_get_property_value(device, "ID_NET_NAME_SLOT", &new_name);
496 break;
497 case NAMEPOLICY_PATH:
498 (void) sd_device_get_property_value(device, "ID_NET_NAME_PATH", &new_name);
499 break;
500 case NAMEPOLICY_MAC:
501 (void) sd_device_get_property_value(device, "ID_NET_NAME_MAC", &new_name);
502 break;
503 default:
04499a70 504 assert_not_reached();
5fde13d7 505 }
5cdb3f70
YW
506 if (ifname_valid(new_name)) {
507 log_device_debug(device, "Policy *%s* yields \"%s\".", name_policy_to_string(policy), new_name);
508 *ret_name = new_name;
509 return 0;
510 }
daeb71a3 511 }
daeb71a3 512
2e17fed5
YW
513 if (config->name) {
514 log_device_debug(device, "Policies didn't yield a name, using specified Name=%s.", config->name);
515 *ret_name = config->name;
516 return 0;
517 }
16b9b87a 518
2e17fed5
YW
519 log_device_debug(device, "Policies didn't yield a name and Name= is not given, not renaming.");
520no_rename:
521 r = sd_device_get_sysname(device, ret_name);
f647962d 522 if (r < 0)
2e17fed5
YW
523 return log_device_error_errno(device, r, "Failed to get sysname: %m");
524
525 return 0;
526}
527
ce01c07f 528static int link_config_apply_alternative_names(sd_netlink **rtnl, const LinkConfig *config, sd_device *device, const char *new_name) {
2e17fed5
YW
529 _cleanup_strv_free_ char **altnames = NULL, **current_altnames = NULL;
530 const char *current_name;
531 int ifindex, r;
532
533 assert(rtnl);
534 assert(config);
535 assert(device);
536
537 r = sd_device_get_sysname(device, &current_name);
538 if (r < 0)
539 return log_device_error_errno(device, r, "Failed to get sysname: %m");
540
541 r = sd_device_get_ifindex(device, &ifindex);
542 if (r < 0)
543 return log_device_error_errno(device, r, "Could not find ifindex: %m");
43b3a5ef 544
ef1d2c07
YW
545 if (config->alternative_names) {
546 altnames = strv_copy(config->alternative_names);
547 if (!altnames)
548 return log_oom();
549 }
550
551 if (config->alternative_names_policy)
552 for (NamePolicy *p = config->alternative_names_policy; *p != _NAMEPOLICY_INVALID; p++) {
61fd7d67 553 const char *n = NULL;
ef1d2c07
YW
554
555 switch (*p) {
556 case NAMEPOLICY_DATABASE:
557 (void) sd_device_get_property_value(device, "ID_NET_NAME_FROM_DATABASE", &n);
558 break;
559 case NAMEPOLICY_ONBOARD:
560 (void) sd_device_get_property_value(device, "ID_NET_NAME_ONBOARD", &n);
561 break;
562 case NAMEPOLICY_SLOT:
563 (void) sd_device_get_property_value(device, "ID_NET_NAME_SLOT", &n);
564 break;
565 case NAMEPOLICY_PATH:
566 (void) sd_device_get_property_value(device, "ID_NET_NAME_PATH", &n);
567 break;
568 case NAMEPOLICY_MAC:
569 (void) sd_device_get_property_value(device, "ID_NET_NAME_MAC", &n);
570 break;
571 default:
04499a70 572 assert_not_reached();
ef1d2c07
YW
573 }
574 if (!isempty(n)) {
575 r = strv_extend(&altnames, n);
576 if (r < 0)
577 return log_oom();
578 }
579 }
580
581 if (new_name)
582 strv_remove(altnames, new_name);
2e17fed5 583 strv_remove(altnames, current_name);
97fdae33 584
2e17fed5 585 r = rtnl_get_link_alternative_names(rtnl, ifindex, &current_altnames);
97fdae33 586 if (r < 0)
2e17fed5 587 log_device_debug_errno(device, r, "Failed to get alternative names, ignoring: %m");
97fdae33
YW
588
589 char **p;
590 STRV_FOREACH(p, current_altnames)
591 strv_remove(altnames, *p);
592
ef1d2c07 593 strv_uniq(altnames);
4d016e96 594 strv_sort(altnames);
2e17fed5
YW
595 r = rtnl_set_link_alternative_names(rtnl, ifindex, altnames);
596 if (r < 0)
597 log_device_full_errno(device, r == -EOPNOTSUPP ? LOG_DEBUG : LOG_WARNING, r,
598 "Could not set AlternativeName= or apply AlternativeNamesPolicy=, ignoring: %m");
599
600 return 0;
601}
a5053a15 602
ce01c07f 603int link_config_apply(LinkConfigContext *ctx, const LinkConfig *config, sd_device *device, const char **ret_name) {
2e17fed5 604 const char *new_name;
a1130022 605 sd_device_action_t a;
2e17fed5
YW
606 int r;
607
608 assert(ctx);
609 assert(config);
610 assert(device);
611 assert(ret_name);
612
a1130022 613 r = sd_device_get_action(device, &a);
e0e789c1
YW
614 if (r < 0)
615 return log_device_error_errno(device, r, "Failed to get ACTION= property: %m");
616
a1130022 617 if (!IN_SET(a, SD_DEVICE_ADD, SD_DEVICE_BIND, SD_DEVICE_MOVE)) {
e0e789c1
YW
618 log_device_debug(device, "Skipping to apply .link settings on '%s' uevent.", device_action_to_string(a));
619
620 r = sd_device_get_sysname(device, ret_name);
621 if (r < 0)
622 return log_device_error_errno(device, r, "Failed to get sysname: %m");
623
624 return 0;
625 }
626
2e17fed5
YW
627 r = link_config_apply_ethtool_settings(&ctx->ethtool_fd, config, device);
628 if (r < 0)
629 return r;
630
631 r = link_config_apply_rtnl_settings(&ctx->rtnl, config, device);
632 if (r < 0)
633 return r;
634
a1130022 635 if (a == SD_DEVICE_MOVE) {
e0e789c1
YW
636 log_device_debug(device, "Skipping to apply Name= and NamePolicy= on '%s' uevent.", device_action_to_string(a));
637
638 r = sd_device_get_sysname(device, &new_name);
639 if (r < 0)
640 return log_device_error_errno(device, r, "Failed to get sysname: %m");
641 } else {
642 r = link_config_generate_new_name(ctx, config, device, &new_name);
643 if (r < 0)
644 return r;
645 }
2e17fed5
YW
646
647 r = link_config_apply_alternative_names(&ctx->rtnl, config, device, new_name);
648 if (r < 0)
649 return r;
d95b83b8 650
2e17fed5 651 *ret_name = new_name;
af6f0d42
TG
652 return 0;
653}
be32eb9b 654
afca7ac1 655int link_get_driver(LinkConfigContext *ctx, sd_device *device, char **ret) {
847a8a5f 656 const char *name;
a7f7d1bd 657 char *driver = NULL;
847a8a5f
TG
658 int r;
659
e5eadf53
YW
660 r = sd_device_get_sysname(device, &name);
661 if (r < 0)
662 return r;
847a8a5f 663
aedca892 664 r = ethtool_get_driver(&ctx->ethtool_fd, name, &driver);
847a8a5f
TG
665 if (r < 0)
666 return r;
667
668 *ret = driver;
669 return 0;
670}
671
fc27088a
YW
672int config_parse_ifalias(
673 const char *unit,
674 const char *filename,
675 unsigned line,
676 const char *section,
677 unsigned section_line,
678 const char *lvalue,
679 int ltype,
680 const char *rvalue,
681 void *data,
682 void *userdata) {
683
684 char **s = data;
685
686 assert(filename);
687 assert(lvalue);
688 assert(rvalue);
689 assert(data);
690
691 if (!isempty(rvalue)) {
692 *s = mfree(*s);
693 return 0;
694 }
695
696 if (!ascii_is_valid(rvalue)) {
697 log_syntax(unit, LOG_WARNING, filename, line, 0,
698 "Interface alias is not ASCII clean, ignoring assignment: %s", rvalue);
699 return 0;
700 }
701
702 if (strlen(rvalue) >= IFALIASZ) {
703 log_syntax(unit, LOG_WARNING, filename, line, 0,
704 "Interface alias is too long, ignoring assignment: %s", rvalue);
705 return 0;
706 }
707
b3f9c17a 708 return free_and_strdup_warn(s, rvalue);
fc27088a
YW
709}
710
face9fcc
YW
711int config_parse_rx_tx_queues(
712 const char *unit,
713 const char *filename,
714 unsigned line,
715 const char *section,
716 unsigned section_line,
717 const char *lvalue,
718 int ltype,
719 const char *rvalue,
720 void *data,
721 void *userdata) {
722
723 uint32_t k, *v = data;
724 int r;
725
726 if (isempty(rvalue)) {
727 *v = 0;
728 return 0;
729 }
730
731 r = safe_atou32(rvalue, &k);
732 if (r < 0) {
733 log_syntax(unit, LOG_WARNING, filename, line, r, "Failed to parse %s=, ignoring assignment: %s.", lvalue, rvalue);
734 return 0;
735 }
736 if (k == 0 || k > 4096) {
737 log_syntax(unit, LOG_WARNING, filename, line, 0, "Invalid %s=, ignoring assignment: %s.", lvalue, rvalue);
738 return 0;
739 }
740
741 *v = k;
742 return 0;
743}
744
ef4a91a7
745int config_parse_txqueuelen(
746 const char *unit,
747 const char *filename,
748 unsigned line,
749 const char *section,
750 unsigned section_line,
751 const char *lvalue,
752 int ltype,
753 const char *rvalue,
754 void *data,
755 void *userdata) {
756
757 uint32_t k, *v = data;
758 int r;
759
760 if (isempty(rvalue)) {
761 *v = UINT32_MAX;
762 return 0;
763 }
764
765 r = safe_atou32(rvalue, &k);
766 if (r < 0) {
767 log_syntax(unit, LOG_WARNING, filename, line, r, "Failed to parse %s=, ignoring assignment: %s.", lvalue, rvalue);
768 return 0;
769 }
770 if (k == UINT32_MAX) {
771 log_syntax(unit, LOG_WARNING, filename, line, 0, "Invalid %s=, ignoring assignment: %s.", lvalue, rvalue);
772 return 0;
773 }
774
775 *v = k;
776 return 0;
777}
778
54ed9f88
ZJS
779static const char* const mac_address_policy_table[_MAC_ADDRESS_POLICY_MAX] = {
780 [MAC_ADDRESS_POLICY_PERSISTENT] = "persistent",
781 [MAC_ADDRESS_POLICY_RANDOM] = "random",
782 [MAC_ADDRESS_POLICY_NONE] = "none",
be32eb9b
TG
783};
784
54ed9f88 785DEFINE_STRING_TABLE_LOOKUP(mac_address_policy, MACAddressPolicy);
d03cb6b8
YW
786DEFINE_CONFIG_PARSE_ENUM_WITH_DEFAULT(
787 config_parse_mac_address_policy,
788 mac_address_policy,
789 MACAddressPolicy,
790 MAC_ADDRESS_POLICY_NONE,
791 "Failed to parse MAC address policy");
be32eb9b 792
2c5859af 793static const char* const name_policy_table[_NAMEPOLICY_MAX] = {
04b67d49 794 [NAMEPOLICY_KERNEL] = "kernel",
3907446f 795 [NAMEPOLICY_KEEP] = "keep",
e51660ae 796 [NAMEPOLICY_DATABASE] = "database",
be32eb9b
TG
797 [NAMEPOLICY_ONBOARD] = "onboard",
798 [NAMEPOLICY_SLOT] = "slot",
799 [NAMEPOLICY_PATH] = "path",
3907446f 800 [NAMEPOLICY_MAC] = "mac",
be32eb9b
TG
801};
802
803DEFINE_STRING_TABLE_LOOKUP(name_policy, NamePolicy);
464cf22f
TG
804DEFINE_CONFIG_PARSE_ENUMV(config_parse_name_policy, name_policy, NamePolicy,
805 _NAMEPOLICY_INVALID,
806 "Failed to parse interface name policy");
ef1d2c07
YW
807
808static const char* const alternative_names_policy_table[_NAMEPOLICY_MAX] = {
809 [NAMEPOLICY_DATABASE] = "database",
810 [NAMEPOLICY_ONBOARD] = "onboard",
811 [NAMEPOLICY_SLOT] = "slot",
812 [NAMEPOLICY_PATH] = "path",
813 [NAMEPOLICY_MAC] = "mac",
814};
815
816DEFINE_STRING_TABLE_LOOKUP(alternative_names_policy, NamePolicy);
817DEFINE_CONFIG_PARSE_ENUMV(config_parse_alternative_names_policy, alternative_names_policy, NamePolicy,
818 _NAMEPOLICY_INVALID,
819 "Failed to parse alternative names policy");