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