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