sysctl-util: add sysctl_read_ip_property()
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 18 Feb 2019 05:41:43 +0000 (14:41 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 21 Feb 2019 01:38:10 +0000 (10:38 +0900)
src/shared/sysctl-util.c
src/shared/sysctl-util.h

index 82f557e..9be4055 100644 (file)
@@ -85,3 +85,25 @@ int sysctl_read(const char *property, char **content) {
         p = strjoina("/proc/sys/", property);
         return read_full_file(p, content, NULL);
 }
+
+int sysctl_read_ip_property(int af, const char *ifname, const char *property, char **ret) {
+        _cleanup_free_ char *value = NULL;
+        const char *p;
+        int r;
+
+        assert(IN_SET(af, AF_INET, AF_INET6));
+        assert(property);
+
+        p = strjoina("/proc/sys/net/ipv", af == AF_INET ? "4" : "6",
+                     ifname ? "/conf/" : "", strempty(ifname),
+                     property[0] == '/' ? "" : "/", property);
+
+        r = read_one_line_file(p, &value);
+        if (r < 0)
+                return r;
+
+        if (ret)
+                *ret = TAKE_PTR(value);
+
+        return r;
+}
index 940118c..d50c6e4 100644 (file)
@@ -12,6 +12,7 @@ char *sysctl_normalize(char *s);
 int sysctl_read(const char *property, char **value);
 int sysctl_write(const char *property, const char *value);
 
+int sysctl_read_ip_property(int af, const char *ifname, const char *property, char **ret);
 int sysctl_write_ip_property(int af, const char *ifname, const char *property, const char *value);
 static inline int sysctl_write_ip_property_boolean(int af, const char *ifname, const char *property, bool value) {
         return sysctl_write_ip_property(af, ifname, property, one_zero(value));