698723
From b99b055ba975c1663beaf94dbfe8f5c5c7398996 Mon Sep 17 00:00:00 2001
698723
From: Yu Watanabe <watanabe.yu+github@gmail.com>
698723
Date: Sun, 15 Dec 2019 23:21:18 +0900
698723
Subject: [PATCH] udev: support AlternativeName= setting in .link file
698723
698723
(cherry picked from commit a5053a158b43c5ddee90f4915b9fc603e0191d6d)
698723
698723
Related: #1850986
698723
---
698723
 man/systemd.link.xml                     |  8 ++++
698723
 src/libsystemd/sd-netlink/netlink-util.c | 40 ++++++++++++++++
698723
 src/libsystemd/sd-netlink/netlink-util.h |  1 +
698723
 src/shared/conf-parser.c                 | 60 ++++++++++++++++++++++++
698723
 src/shared/conf-parser.h                 |  1 +
698723
 src/udev/net/link-config-gperf.gperf     |  1 +
698723
 src/udev/net/link-config.c               |  5 ++
698723
 src/udev/net/link-config.h               |  1 +
698723
 8 files changed, 117 insertions(+)
698723
698723
diff --git a/man/systemd.link.xml b/man/systemd.link.xml
698723
index 32657308d0..0b0d83349d 100644
698723
--- a/man/systemd.link.xml
698723
+++ b/man/systemd.link.xml
698723
@@ -343,6 +343,14 @@
698723
           </para>
698723
         </listitem>
698723
       </varlistentry>
698723
+      <varlistentry>
698723
+        <term><varname>AlternativeName=</varname></term>
698723
+        <listitem>
698723
+          <para>The alternative interface name to use. This option can be specified multiple times.
698723
+          If the empty string is assigned to this option, the list is reset, and all prior assignments
698723
+          have no effect.</para>
698723
+        </listitem>
698723
+      </varlistentry>
698723
       <varlistentry>
698723
         <term><varname>MTUBytes=</varname></term>
698723
         <listitem>
698723
diff --git a/src/libsystemd/sd-netlink/netlink-util.c b/src/libsystemd/sd-netlink/netlink-util.c
698723
index 3928dfbabf..c1c306f121 100644
698723
--- a/src/libsystemd/sd-netlink/netlink-util.c
698723
+++ b/src/libsystemd/sd-netlink/netlink-util.c
698723
@@ -4,6 +4,7 @@
698723
 
698723
 #include "netlink-internal.h"
698723
 #include "netlink-util.h"
698723
+#include "strv.h"
698723
 
698723
 int rtnl_set_link_name(sd_netlink **rtnl, int ifindex, const char *name) {
698723
         _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *message = NULL;
698723
@@ -80,6 +81,45 @@ int rtnl_set_link_properties(sd_netlink **rtnl, int ifindex, const char *alias,
698723
         return 0;
698723
 }
698723
 
698723
+int rtnl_set_link_alternative_names(sd_netlink **rtnl, int ifindex, char * const *alternative_names) {
698723
+        _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *message = NULL;
698723
+        int r;
698723
+
698723
+        assert(rtnl);
698723
+        assert(ifindex > 0);
698723
+
698723
+        if (strv_isempty(alternative_names))
698723
+                return 0;
698723
+
698723
+        if (!*rtnl) {
698723
+                r = sd_netlink_open(rtnl);
698723
+                if (r < 0)
698723
+                        return r;
698723
+        }
698723
+
698723
+        r = sd_rtnl_message_new_link(*rtnl, &message, RTM_NEWLINKPROP, ifindex);
698723
+        if (r < 0)
698723
+                return r;
698723
+
698723
+        r = sd_netlink_message_open_container(message, IFLA_PROP_LIST);
698723
+        if (r < 0)
698723
+                return r;
698723
+
698723
+        r = sd_netlink_message_append_strv(message, IFLA_ALT_IFNAME, alternative_names);
698723
+        if (r < 0)
698723
+                return r;
698723
+
698723
+        r = sd_netlink_message_close_container(message);
698723
+        if (r < 0)
698723
+                return r;
698723
+
698723
+        r = sd_netlink_call(*rtnl, message, 0, NULL);
698723
+        if (r < 0)
698723
+                return r;
698723
+
698723
+        return 0;
698723
+}
698723
+
698723
 int rtnl_message_new_synthetic_error(sd_netlink *rtnl, int error, uint32_t serial, sd_netlink_message **ret) {
698723
         struct nlmsgerr *err;
698723
         int r;
698723
diff --git a/src/libsystemd/sd-netlink/netlink-util.h b/src/libsystemd/sd-netlink/netlink-util.h
698723
index 882a616310..92de19c092 100644
698723
--- a/src/libsystemd/sd-netlink/netlink-util.h
698723
+++ b/src/libsystemd/sd-netlink/netlink-util.h
698723
@@ -38,6 +38,7 @@ static inline bool rtnl_message_type_is_routing_policy_rule(uint16_t type) {
698723
 
698723
 int rtnl_set_link_name(sd_netlink **rtnl, int ifindex, const char *name);
698723
 int rtnl_set_link_properties(sd_netlink **rtnl, int ifindex, const char *alias, const struct ether_addr *mac, uint32_t mtu);
698723
+int rtnl_set_link_alternative_names(sd_netlink **rtnl, int ifindex, char * const *alternative_names);
698723
 
698723
 int rtnl_log_parse_error(int r);
698723
 int rtnl_log_create_error(int r);
698723
diff --git a/src/shared/conf-parser.c b/src/shared/conf-parser.c
698723
index 246b7431e4..1f40f00c72 100644
698723
--- a/src/shared/conf-parser.c
698723
+++ b/src/shared/conf-parser.c
698723
@@ -970,6 +970,66 @@ int config_parse_ifname(
698723
         return 0;
698723
 }
698723
 
698723
+int config_parse_ifnames(
698723
+                const char *unit,
698723
+                const char *filename,
698723
+                unsigned line,
698723
+                const char *section,
698723
+                unsigned section_line,
698723
+                const char *lvalue,
698723
+                int ltype,
698723
+                const char *rvalue,
698723
+                void *data,
698723
+                void *userdata) {
698723
+
698723
+        _cleanup_strv_free_ char **names = NULL;
698723
+        char ***s = data;
698723
+        const char *p;
698723
+        int r;
698723
+
698723
+        assert(filename);
698723
+        assert(lvalue);
698723
+        assert(rvalue);
698723
+        assert(data);
698723
+
698723
+        if (isempty(rvalue)) {
698723
+                *s = strv_free(*s);
698723
+                return 0;
698723
+        }
698723
+
698723
+        p = rvalue;
698723
+        for (;;) {
698723
+                _cleanup_free_ char *word = NULL;
698723
+
698723
+                r = extract_first_word(&p, &word, NULL, 0);
698723
+                if (r < 0) {
698723
+                        log_syntax(unit, LOG_ERR, filename, line, r,
698723
+                                   "Failed to extract interface name, ignoring assignment: %s",
698723
+                                   rvalue);
698723
+                        return 0;
698723
+                }
698723
+                if (r == 0)
698723
+                        break;
698723
+
698723
+                if (!ifname_valid_full(word, ltype)) {
698723
+                        log_syntax(unit, LOG_ERR, filename, line, 0,
698723
+                                   "Interface name is not valid or too long, ignoring assignment: %s",
698723
+                                   word);
698723
+                        continue;
698723
+                }
698723
+
698723
+                r = strv_consume(&names, TAKE_PTR(word));
698723
+                if (r < 0)
698723
+                        return log_oom();
698723
+        }
698723
+
698723
+        r = strv_extend_strv(s, names, true);
698723
+        if (r < 0)
698723
+                return log_oom();
698723
+
698723
+        return 0;
698723
+}
698723
+
698723
 int config_parse_ip_port(
698723
                 const char *unit,
698723
                 const char *filename,
698723
diff --git a/src/shared/conf-parser.h b/src/shared/conf-parser.h
698723
index a0a5c89c27..375b2e5a74 100644
698723
--- a/src/shared/conf-parser.h
698723
+++ b/src/shared/conf-parser.h
698723
@@ -137,6 +137,7 @@ CONFIG_PARSER_PROTOTYPE(config_parse_signal);
698723
 CONFIG_PARSER_PROTOTYPE(config_parse_personality);
698723
 CONFIG_PARSER_PROTOTYPE(config_parse_permille);
698723
 CONFIG_PARSER_PROTOTYPE(config_parse_ifname);
698723
+CONFIG_PARSER_PROTOTYPE(config_parse_ifnames);
698723
 CONFIG_PARSER_PROTOTYPE(config_parse_ip_port);
698723
 CONFIG_PARSER_PROTOTYPE(config_parse_join_controllers);
698723
 CONFIG_PARSER_PROTOTYPE(config_parse_mtu);
698723
diff --git a/src/udev/net/link-config-gperf.gperf b/src/udev/net/link-config-gperf.gperf
698723
index b37836d852..913c754145 100644
698723
--- a/src/udev/net/link-config-gperf.gperf
698723
+++ b/src/udev/net/link-config-gperf.gperf
698723
@@ -34,6 +34,7 @@ Link.MACAddressPolicy,           config_parse_mac_policy,    0,
698723
 Link.MACAddress,                 config_parse_hwaddr,        0,                             offsetof(link_config, mac)
698723
 Link.NamePolicy,                 config_parse_name_policy,   0,                             offsetof(link_config, name_policy)
698723
 Link.Name,                       config_parse_ifname,        0,                             offsetof(link_config, name)
698723
+Link.AlternativeName,            config_parse_ifnames,       1,                             offsetof(link_config, alternative_names)
698723
 Link.Alias,                      config_parse_ifalias,       0,                             offsetof(link_config, alias)
698723
 Link.MTUBytes,                   config_parse_mtu,           AF_UNSPEC,                     offsetof(link_config, mtu)
698723
 Link.BitsPerSecond,              config_parse_si_size,       0,                             offsetof(link_config, speed)
698723
diff --git a/src/udev/net/link-config.c b/src/udev/net/link-config.c
698723
index 5113586457..d07a1a1874 100644
698723
--- a/src/udev/net/link-config.c
698723
+++ b/src/udev/net/link-config.c
698723
@@ -67,6 +67,7 @@ static void link_config_free(link_config *link) {
698723
         free(link->mac);
698723
         free(link->name_policy);
698723
         free(link->name);
698723
+        strv_free(link->alternative_names);
698723
         free(link->alias);
698723
 
698723
         free(link);
698723
@@ -468,6 +469,10 @@ int link_config_apply(link_config_ctx *ctx, link_config *config,
698723
         if (r < 0)
698723
                 return log_warning_errno(r, "Could not set Alias=, MACAddress= or MTU= on %s: %m", old_name);
698723
 
698723
+        r = rtnl_set_link_alternative_names(&ctx->rtnl, ifindex, config->alternative_names);
698723
+        if (r < 0)
698723
+                return log_warning_errno(r, "Could not set AlternativeName= on %s: %m", old_name);
698723
+
698723
         *name = new_name;
698723
 
698723
         return 0;
698723
diff --git a/src/udev/net/link-config.h b/src/udev/net/link-config.h
698723
index 4798bb101c..93d5fdce59 100644
698723
--- a/src/udev/net/link-config.h
698723
+++ b/src/udev/net/link-config.h
698723
@@ -50,6 +50,7 @@ struct link_config {
698723
         MACPolicy mac_policy;
698723
         NamePolicy *name_policy;
698723
         char *name;
698723
+        char **alternative_names;
698723
         char *alias;
698723
         uint32_t mtu;
698723
         size_t speed;