698723
From 8db22aec9bfd140855b64f2879b7ca6d1cba69c6 Mon Sep 17 00:00:00 2001
698723
From: Yu Watanabe <watanabe.yu+github@gmail.com>
698723
Date: Tue, 17 Dec 2019 18:28:36 +0900
698723
Subject: [PATCH] sd-netlink: introduce rtnl_resolve_link_alternative_names()
698723
698723
(cherry picked from commit b04c5e51da7a61d41d564e73a1e92bd8b29b0223)
698723
698723
Related: #1850986
698723
---
698723
 src/libsystemd/sd-netlink/netlink-types.c |  1 +
698723
 src/libsystemd/sd-netlink/netlink-util.c  | 29 +++++++++++++++++++++++
698723
 src/libsystemd/sd-netlink/netlink-util.h  |  1 +
698723
 3 files changed, 31 insertions(+)
698723
698723
diff --git a/src/libsystemd/sd-netlink/netlink-types.c b/src/libsystemd/sd-netlink/netlink-types.c
698723
index 47d9c7f1c4..e118a0aa30 100644
698723
--- a/src/libsystemd/sd-netlink/netlink-types.c
698723
+++ b/src/libsystemd/sd-netlink/netlink-types.c
698723
@@ -511,6 +511,7 @@ static const NLType rtnl_link_types[] = {
698723
         [IFLA_PHYS_PORT_ID]     = { .type = NETLINK_TYPE_BINARY, .len = MAX_PHYS_PORT_ID_LEN },
698723
 */
698723
         [IFLA_PROP_LIST]        = { .type = NETLINK_TYPE_NESTED, .type_system = &rtnl_prop_list_type_system },
698723
+        [IFLA_ALT_IFNAME]       = { .type = NETLINK_TYPE_STRING, .size = ALTIFNAMSIZ - 1 },
698723
 };
698723
 
698723
 static const NLTypeSystem rtnl_link_type_system = {
698723
diff --git a/src/libsystemd/sd-netlink/netlink-util.c b/src/libsystemd/sd-netlink/netlink-util.c
698723
index c1c306f121..62fc71a3d8 100644
698723
--- a/src/libsystemd/sd-netlink/netlink-util.c
698723
+++ b/src/libsystemd/sd-netlink/netlink-util.c
698723
@@ -120,6 +120,35 @@ int rtnl_set_link_alternative_names(sd_netlink **rtnl, int ifindex, char * const
698723
         return 0;
698723
 }
698723
 
698723
+int rtnl_resolve_link_alternative_name(sd_netlink **rtnl, const char *name, int *ret) {
698723
+        _cleanup_(sd_netlink_message_unrefp) sd_netlink_message *message = NULL, *reply = NULL;
698723
+        int r;
698723
+
698723
+        assert(rtnl);
698723
+        assert(name);
698723
+        assert(ret);
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_GETLINK, 0);
698723
+        if (r < 0)
698723
+                return r;
698723
+
698723
+        r = sd_netlink_message_append_string(message, IFLA_ALT_IFNAME, name);
698723
+        if (r < 0)
698723
+                return r;
698723
+
698723
+        r = sd_netlink_call(*rtnl, message, 0, &reply);
698723
+        if (r < 0)
698723
+                return r;
698723
+
698723
+        return sd_rtnl_message_link_get_ifindex(reply, ret);
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 92de19c092..ea98439fad 100644
698723
--- a/src/libsystemd/sd-netlink/netlink-util.h
698723
+++ b/src/libsystemd/sd-netlink/netlink-util.h
698723
@@ -39,6 +39,7 @@ static inline bool rtnl_message_type_is_routing_policy_rule(uint16_t type) {
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
+int rtnl_resolve_link_alternative_name(sd_netlink **rtnl, const char *name, int *ret);
698723
 
698723
 int rtnl_log_parse_error(int r);
698723
 int rtnl_log_create_error(int r);