mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
43 lines
2.1 KiB
C
43 lines
2.1 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "macro.h"
|
|
#include "stdio-util.h"
|
|
#include "string-util.h"
|
|
|
|
char* sysctl_normalize(char *s);
|
|
int sysctl_read(const char *property, char **value);
|
|
int sysctl_write_full(const char *property, const char *value, Hashmap **shadow);
|
|
int sysctl_writef(const char *property, const char *format, ...) _printf_(2, 3);
|
|
static inline int sysctl_write(const char *property, const char *value) {
|
|
return sysctl_write_full(property, value, NULL);
|
|
}
|
|
|
|
int sysctl_read_ip_property(int af, const char *ifname, const char *property, char **ret);
|
|
int sysctl_read_ip_property_int(int af, const char *ifname, const char *property, int *ret);
|
|
int sysctl_read_ip_property_uint32(int af, const char *ifname, const char *property, uint32_t *ret);
|
|
int sysctl_write_ip_property(int af, const char *ifname, const char *property, const char *value, Hashmap **shadow);
|
|
static inline int sysctl_write_ip_property_boolean(int af, const char *ifname, const char *property, bool value, Hashmap **shadow) {
|
|
return sysctl_write_ip_property(af, ifname, property, one_zero(value), shadow);
|
|
}
|
|
|
|
int sysctl_write_ip_neighbor_property(int af, const char *ifname, const char *property, const char *value, Hashmap **shadow);
|
|
static inline int sysctl_write_ip_neighbor_property_uint32(int af, const char *ifname, const char *property, uint32_t value, Hashmap **shadow) {
|
|
char buf[DECIMAL_STR_MAX(uint32_t)];
|
|
xsprintf(buf, "%u", value);
|
|
return sysctl_write_ip_neighbor_property(af, ifname, property, buf, shadow);
|
|
}
|
|
|
|
#define DEFINE_SYSCTL_WRITE_IP_PROPERTY(name, type, format) \
|
|
static inline int sysctl_write_ip_property_##name(int af, const char *ifname, const char *property, type value, Hashmap **shadow) { \
|
|
char buf[DECIMAL_STR_MAX(type)]; \
|
|
xsprintf(buf, format, value); \
|
|
return sysctl_write_ip_property(af, ifname, property, buf, shadow); \
|
|
}
|
|
|
|
DEFINE_SYSCTL_WRITE_IP_PROPERTY(int, int, "%i");
|
|
DEFINE_SYSCTL_WRITE_IP_PROPERTY(uint32, uint32_t, "%" PRIu32);
|