]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/shared/netif-naming-scheme.c
Merge pull request #24286 from yuwata/test-sd-device-monitor
[thirdparty/systemd.git] / src / shared / netif-naming-scheme.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include "alloc-util.h"
4 #include "netif-naming-scheme.h"
5 #include "proc-cmdline.h"
6 #include "string-util.h"
7 #include "string-table.h"
8
9 #ifdef _DEFAULT_NET_NAMING_SCHEME_TEST
10 /* The primary purpose of this check is to verify that _DEFAULT_NET_NAMING_SCHEME_TEST
11 * is a valid identifier. If an invalid name is given during configuration, this will
12 * fail with a name error. */
13 assert_cc(_DEFAULT_NET_NAMING_SCHEME_TEST >= 0);
14 #endif
15
16 static const NamingScheme naming_schemes[] = {
17 { "v238", NAMING_V238 },
18 { "v239", NAMING_V239 },
19 { "v240", NAMING_V240 },
20 { "v241", NAMING_V241 },
21 { "v243", NAMING_V243 },
22 { "v245", NAMING_V245 },
23 { "v247", NAMING_V247 },
24 { "v249", NAMING_V249 },
25 { "v250", NAMING_V250 },
26 { "v251", NAMING_V251 },
27 { "v252", NAMING_V252 },
28 /* … add more schemes here, as the logic to name devices is updated … */
29
30 EXTRA_NET_NAMING_MAP
31 };
32
33 const NamingScheme* naming_scheme_from_name(const char *name) {
34 /* "latest" may either be defined explicitly by the extra map, in which case we will find it in
35 * the table like any other name. After iterating through the table, we check for "latest" again,
36 * which means that if not mapped explicitly, it maps to the last defined entry, whatever that is. */
37
38 for (size_t i = 0; i < ELEMENTSOF(naming_schemes); i++)
39 if (streq(naming_schemes[i].name, name))
40 return naming_schemes + i;
41
42 if (streq(name, "latest"))
43 return naming_schemes + ELEMENTSOF(naming_schemes) - 1;
44
45 return NULL;
46 }
47
48 const NamingScheme* naming_scheme(void) {
49 static const NamingScheme *cache = NULL;
50 _cleanup_free_ char *buffer = NULL;
51 const char *e, *k;
52
53 if (cache)
54 return cache;
55
56 /* Acquire setting from the kernel command line */
57 (void) proc_cmdline_get_key("net.naming-scheme", 0, &buffer);
58
59 /* Also acquire it from an env var */
60 e = getenv("NET_NAMING_SCHEME");
61 if (e) {
62 if (*e == ':') {
63 /* If prefixed with ':' the kernel cmdline takes precedence */
64 k = buffer ?: e + 1;
65 } else
66 k = e; /* Otherwise the env var takes precedence */
67 } else
68 k = buffer;
69
70 if (k) {
71 cache = naming_scheme_from_name(k);
72 if (cache) {
73 log_info("Using interface naming scheme '%s'.", cache->name);
74 return cache;
75 }
76
77 log_warning("Unknown interface naming scheme '%s' requested, ignoring.", k);
78 }
79
80 cache = naming_scheme_from_name(DEFAULT_NET_NAMING_SCHEME);
81 assert(cache);
82 log_info("Using default interface naming scheme '%s'.", cache->name);
83
84 return cache;
85 }
86
87 static const char* const name_policy_table[_NAMEPOLICY_MAX] = {
88 [NAMEPOLICY_KERNEL] = "kernel",
89 [NAMEPOLICY_KEEP] = "keep",
90 [NAMEPOLICY_DATABASE] = "database",
91 [NAMEPOLICY_ONBOARD] = "onboard",
92 [NAMEPOLICY_SLOT] = "slot",
93 [NAMEPOLICY_PATH] = "path",
94 [NAMEPOLICY_MAC] = "mac",
95 };
96
97 DEFINE_STRING_TABLE_LOOKUP(name_policy, NamePolicy);
98
99 static const char* const alternative_names_policy_table[_NAMEPOLICY_MAX] = {
100 [NAMEPOLICY_DATABASE] = "database",
101 [NAMEPOLICY_ONBOARD] = "onboard",
102 [NAMEPOLICY_SLOT] = "slot",
103 [NAMEPOLICY_PATH] = "path",
104 [NAMEPOLICY_MAC] = "mac",
105 };
106
107 DEFINE_STRING_TABLE_LOOKUP(alternative_names_policy, NamePolicy);