util: rename socket_protocol_{from,to}_name() to ip_protocol_{from,to}_name()

This commit is contained in:
Yu Watanabe 2018-11-29 15:58:43 +01:00
parent 5dd9527883
commit da96ad5ae2
12 changed files with 73 additions and 73 deletions

View File

@ -8,10 +8,10 @@
#include "dbus-socket.h" #include "dbus-socket.h"
#include "dbus-util.h" #include "dbus-util.h"
#include "fd-util.h" #include "fd-util.h"
#include "ip-protocol-list.h"
#include "parse-util.h" #include "parse-util.h"
#include "path-util.h" #include "path-util.h"
#include "socket.h" #include "socket.h"
#include "socket-protocol-list.h"
#include "socket-util.h" #include "socket-util.h"
#include "string-util.h" #include "string-util.h"
#include "unit.h" #include "unit.h"
@ -138,14 +138,14 @@ static inline bool check_size_t_truncation(uint64_t t) {
return (size_t) t == t; return (size_t) t == t;
} }
static inline const char* supported_socket_protocol_to_string(int32_t i) { static inline const char* socket_protocol_to_string(int32_t i) {
if (i == IPPROTO_IP) if (i == IPPROTO_IP)
return ""; return "";
if (!IN_SET(i, IPPROTO_UDPLITE, IPPROTO_SCTP)) if (!IN_SET(i, IPPROTO_UDPLITE, IPPROTO_SCTP))
return NULL; return NULL;
return socket_protocol_to_name(i); return ip_protocol_to_name(i);
} }
static BUS_DEFINE_SET_TRANSIENT(int, "i", int32_t, int, "%" PRIi32); static BUS_DEFINE_SET_TRANSIENT(int, "i", int32_t, int, "%" PRIi32);
@ -155,7 +155,7 @@ static BUS_DEFINE_SET_TRANSIENT_PARSE(bind_ipv6_only, SocketAddressBindIPv6Only,
static BUS_DEFINE_SET_TRANSIENT_STRING_WITH_CHECK(fdname, fdname_is_valid); static BUS_DEFINE_SET_TRANSIENT_STRING_WITH_CHECK(fdname, fdname_is_valid);
static BUS_DEFINE_SET_TRANSIENT_STRING_WITH_CHECK(ifname, ifname_valid); static BUS_DEFINE_SET_TRANSIENT_STRING_WITH_CHECK(ifname, ifname_valid);
static BUS_DEFINE_SET_TRANSIENT_TO_STRING_ALLOC(ip_tos, "i", int32_t, int, "%" PRIi32, ip_tos_to_string_alloc); static BUS_DEFINE_SET_TRANSIENT_TO_STRING_ALLOC(ip_tos, "i", int32_t, int, "%" PRIi32, ip_tos_to_string_alloc);
static BUS_DEFINE_SET_TRANSIENT_TO_STRING(socket_protocol, "i", int32_t, int, "%" PRIi32, supported_socket_protocol_to_string); static BUS_DEFINE_SET_TRANSIENT_TO_STRING(socket_protocol, "i", int32_t, int, "%" PRIi32, socket_protocol_to_string);
static int bus_socket_set_transient_property( static int bus_socket_set_transient_property(
Socket *s, Socket *s,

View File

@ -34,6 +34,7 @@
#include "hexdecoct.h" #include "hexdecoct.h"
#include "io-util.h" #include "io-util.h"
#include "ioprio.h" #include "ioprio.h"
#include "ip-protocol-list.h"
#include "journal-util.h" #include "journal-util.h"
#include "load-fragment.h" #include "load-fragment.h"
#include "log.h" #include "log.h"
@ -48,7 +49,6 @@
#include "securebits.h" #include "securebits.h"
#include "securebits-util.h" #include "securebits-util.h"
#include "signal-util.h" #include "signal-util.h"
#include "socket-protocol-list.h"
#include "stat-util.h" #include "stat-util.h"
#include "string-util.h" #include "string-util.h"
#include "strv.h" #include "strv.h"
@ -57,13 +57,13 @@
#include "user-util.h" #include "user-util.h"
#include "web-util.h" #include "web-util.h"
static int supported_socket_protocol_from_string(const char *s) { static int socket_protocol_from_string(const char *s) {
int r; int r;
if (isempty(s)) if (isempty(s))
return IPPROTO_IP; return IPPROTO_IP;
r = socket_protocol_from_name(s); r = ip_protocol_from_name(s);
if (r < 0) if (r < 0)
return r; return r;
if (!IN_SET(r, IPPROTO_UDPLITE, IPPROTO_SCTP)) if (!IN_SET(r, IPPROTO_UDPLITE, IPPROTO_SCTP))
@ -72,7 +72,7 @@ static int supported_socket_protocol_from_string(const char *s) {
return r; return r;
} }
DEFINE_CONFIG_PARSE(config_parse_socket_protocol, supported_socket_protocol_from_string, "Failed to parse socket protocol"); DEFINE_CONFIG_PARSE(config_parse_socket_protocol, socket_protocol_from_string, "Failed to parse socket protocol");
DEFINE_CONFIG_PARSE(config_parse_exec_secure_bits, secure_bits_from_string, "Failed to parse secure bits"); DEFINE_CONFIG_PARSE(config_parse_exec_secure_bits, secure_bits_from_string, "Failed to parse secure bits");
DEFINE_CONFIG_PARSE_ENUM(config_parse_collect_mode, collect_mode, CollectMode, "Failed to parse garbage collection mode"); DEFINE_CONFIG_PARSE_ENUM(config_parse_collect_mode, collect_mode, CollectMode, "Failed to parse garbage collection mode");
DEFINE_CONFIG_PARSE_ENUM(config_parse_device_policy, cgroup_device_policy, CGroupDevicePolicy, "Failed to parse device policy"); DEFINE_CONFIG_PARSE_ENUM(config_parse_device_policy, cgroup_device_policy, CGroupDevicePolicy, "Failed to parse device policy");

View File

@ -24,6 +24,7 @@
#include "fs-util.h" #include "fs-util.h"
#include "in-addr-util.h" #include "in-addr-util.h"
#include "io-util.h" #include "io-util.h"
#include "ip-protocol-list.h"
#include "label.h" #include "label.h"
#include "log.h" #include "log.h"
#include "missing.h" #include "missing.h"
@ -35,7 +36,6 @@
#include "serialize.h" #include "serialize.h"
#include "signal-util.h" #include "signal-util.h"
#include "smack-util.h" #include "smack-util.h"
#include "socket-protocol-list.h"
#include "socket.h" #include "socket.h"
#include "special.h" #include "special.h"
#include "string-table.h" #include "string-table.h"
@ -814,7 +814,7 @@ static void socket_dump(Unit *u, FILE *f, const char *prefix) {
prefix, format_timespan(time_string, FORMAT_TIMESPAN_MAX, s->trigger_limit.interval, USEC_PER_SEC), prefix, format_timespan(time_string, FORMAT_TIMESPAN_MAX, s->trigger_limit.interval, USEC_PER_SEC),
prefix, s->trigger_limit.burst); prefix, s->trigger_limit.burst);
str = socket_protocol_to_name(s->socket_protocol); str = ip_protocol_to_name(s->socket_protocol);
if (str) if (str)
fprintf(f, "%sSocketProtocol: %s\n", prefix, str); fprintf(f, "%sSocketProtocol: %s\n", prefix, str);

View File

@ -6,11 +6,11 @@
#include "alloc-util.h" #include "alloc-util.h"
#include "conf-parser.h" #include "conf-parser.h"
#include "fileio.h" #include "fileio.h"
#include "ip-protocol-list.h"
#include "networkd-routing-policy-rule.h" #include "networkd-routing-policy-rule.h"
#include "netlink-util.h" #include "netlink-util.h"
#include "networkd-manager.h" #include "networkd-manager.h"
#include "parse-util.h" #include "parse-util.h"
#include "socket-protocol-list.h"
#include "socket-util.h" #include "socket-util.h"
#include "string-util.h" #include "string-util.h"
#include "strv.h" #include "strv.h"
@ -958,7 +958,7 @@ int config_parse_routing_policy_rule_protocol(
if (r < 0) if (r < 0)
return r; return r;
r = socket_protocol_from_name(rvalue); r = ip_protocol_from_name(rvalue);
if (r < 0) { if (r < 0) {
log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse routing policy rule protocol, ignoring: %s", rvalue); log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse routing policy rule protocol, ignoring: %s", rvalue);
return 0; return 0;

View File

@ -15,6 +15,7 @@
#include "hexdecoct.h" #include "hexdecoct.h"
#include "hostname-util.h" #include "hostname-util.h"
#include "in-addr-util.h" #include "in-addr-util.h"
#include "ip-protocol-list.h"
#include "list.h" #include "list.h"
#include "locale-util.h" #include "locale-util.h"
#include "mountpoint-util.h" #include "mountpoint-util.h"
@ -25,7 +26,6 @@
#include "rlimit-util.h" #include "rlimit-util.h"
#include "securebits-util.h" #include "securebits-util.h"
#include "signal-util.h" #include "signal-util.h"
#include "socket-protocol-list.h"
#include "string-util.h" #include "string-util.h"
#include "syslog-util.h" #include "syslog-util.h"
#include "terminal-util.h" #include "terminal-util.h"
@ -103,7 +103,7 @@ DEFINE_BUS_APPEND_PARSE("i", parse_errno);
DEFINE_BUS_APPEND_PARSE("i", sched_policy_from_string); DEFINE_BUS_APPEND_PARSE("i", sched_policy_from_string);
DEFINE_BUS_APPEND_PARSE("i", secure_bits_from_string); DEFINE_BUS_APPEND_PARSE("i", secure_bits_from_string);
DEFINE_BUS_APPEND_PARSE("i", signal_from_string); DEFINE_BUS_APPEND_PARSE("i", signal_from_string);
DEFINE_BUS_APPEND_PARSE("i", socket_protocol_from_name); DEFINE_BUS_APPEND_PARSE("i", ip_protocol_from_name);
DEFINE_BUS_APPEND_PARSE_PTR("i", int32_t, int, ioprio_parse_priority); DEFINE_BUS_APPEND_PARSE_PTR("i", int32_t, int, ioprio_parse_priority);
DEFINE_BUS_APPEND_PARSE_PTR("i", int32_t, int, parse_nice); DEFINE_BUS_APPEND_PARSE_PTR("i", int32_t, int, parse_nice);
DEFINE_BUS_APPEND_PARSE_PTR("i", int32_t, int, safe_atoi); DEFINE_BUS_APPEND_PARSE_PTR("i", int32_t, int, safe_atoi);
@ -1466,7 +1466,7 @@ static int bus_append_socket_property(sd_bus_message *m, const char *field, cons
if (streq(field, "SocketProtocol")) if (streq(field, "SocketProtocol"))
return bus_append_socket_protocol_from_name(m, field, eq); return bus_append_ip_protocol_from_name(m, field, eq);
if (STR_IN_SET(field, if (STR_IN_SET(field,
"ListenStream", "ListenDatagram", "ListenSequentialPacket", "ListenNetlink", "ListenStream", "ListenDatagram", "ListenSequentialPacket", "ListenNetlink",

View File

@ -0,0 +1,36 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#include <errno.h>
#include <netinet/in.h>
#include <string.h>
#include "ip-protocol-list.h"
#include "macro.h"
static const struct ip_protocol_name* lookup_ip_protocol(register const char *str, register GPERF_LEN_TYPE len);
#include "ip-protocol-from-name.h"
#include "ip-protocol-to-name.h"
const char *ip_protocol_to_name(int id) {
if (id < 0)
return NULL;
if (id >= (int) ELEMENTSOF(ip_protocol_names))
return NULL;
return ip_protocol_names[id];
}
int ip_protocol_from_name(const char *name) {
const struct ip_protocol_name *sc;
assert(name);
sc = lookup_ip_protocol(name, strlen(name));
if (!sc)
return -EINVAL;
return sc->id;
}

View File

@ -0,0 +1,5 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
const char *ip_protocol_to_name(int id);
int ip_protocol_from_name(const char *name);

View File

@ -1,5 +1,5 @@
BEGIN{ BEGIN{
print "static const char* const socket_protocol_names[] = { " print "static const char* const ip_protocol_names[] = { "
} }
!/HOPOPTS/ { !/HOPOPTS/ {
printf " [IPPROTO_%s] = \"%s\",\n", $1, tolower($1) printf " [IPPROTO_%s] = \"%s\",\n", $1, tolower($1)

View File

@ -127,8 +127,8 @@ shared_sources = files('''
serialize.h serialize.h
sleep-config.c sleep-config.c
sleep-config.h sleep-config.h
socket-protocol-list.c ip-protocol-list.c
socket-protocol-list.h ip-protocol-list.h
spawn-ask-password-agent.c spawn-ask-password-agent.c
spawn-ask-password-agent.h spawn-ask-password-agent.h
spawn-polkit-agent.c spawn-polkit-agent.c
@ -188,39 +188,39 @@ if conf.get('HAVE_KMOD') == 1
shared_sources += files('module-util.c') shared_sources += files('module-util.c')
endif endif
generate_socket_protocol_list = find_program('generate-socket-protocol-list.sh') generate_ip_protocol_list = find_program('generate-ip-protocol-list.sh')
socket_protocol_list_txt = custom_target( ip_protocol_list_txt = custom_target(
'socket-protocol-list.txt', 'ip-protocol-list.txt',
output : 'socket-protocol-list.txt', output : 'ip-protocol-list.txt',
command : [generate_socket_protocol_list, cpp], command : [generate_ip_protocol_list, cpp],
capture : true) capture : true)
fname = 'socket-protocol-from-name.gperf' fname = 'ip-protocol-from-name.gperf'
gperf_file = custom_target( gperf_file = custom_target(
fname, fname,
input : socket_protocol_list_txt, input : ip_protocol_list_txt,
output : fname, output : fname,
command : [generate_gperfs, 'socket_protocol', 'IPPROTO_', '@INPUT@'], command : [generate_gperfs, 'ip_protocol', 'IPPROTO_', '@INPUT@'],
capture : true) capture : true)
fname = 'socket-protocol-from-name.h' fname = 'ip-protocol-from-name.h'
target1 = custom_target( target1 = custom_target(
fname, fname,
input : gperf_file, input : gperf_file,
output : fname, output : fname,
command : [gperf, command : [gperf,
'-L', 'ANSI-C', '-t', '--ignore-case', '-L', 'ANSI-C', '-t', '--ignore-case',
'-N', 'lookup_socket_protocol', '-N', 'lookup_ip_protocol',
'-H', 'hash_socket_protocol_name', '-H', 'hash_ip_protocol_name',
'-p', '-C', '-p', '-C',
'@INPUT@'], '@INPUT@'],
capture : true) capture : true)
fname = 'socket-protocol-to-name.h' fname = 'ip-protocol-to-name.h'
awkscript = 'socket-protocol-to-name.awk' awkscript = 'ip-protocol-to-name.awk'
target2 = custom_target( target2 = custom_target(
fname, fname,
input : [awkscript, socket_protocol_list_txt], input : [awkscript, ip_protocol_list_txt],
output : fname, output : fname,
command : [awk, '-f', '@INPUT0@', '@INPUT1@'], command : [awk, '-f', '@INPUT0@', '@INPUT1@'],
capture : true) capture : true)

View File

@ -1,36 +0,0 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#include <errno.h>
#include <netinet/in.h>
#include <string.h>
#include "socket-protocol-list.h"
#include "macro.h"
static const struct socket_protocol_name* lookup_socket_protocol(register const char *str, register GPERF_LEN_TYPE len);
#include "socket-protocol-from-name.h"
#include "socket-protocol-to-name.h"
const char *socket_protocol_to_name(int id) {
if (id < 0)
return NULL;
if (id >= (int) ELEMENTSOF(socket_protocol_names))
return NULL;
return socket_protocol_names[id];
}
int socket_protocol_from_name(const char *name) {
const struct socket_protocol_name *sc;
assert(name);
sc = lookup_socket_protocol(name, strlen(name));
if (!sc)
return -EINVAL;
return sc->id;
}

View File

@ -1,5 +0,0 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
const char *socket_protocol_to_name(int id);
int socket_protocol_from_name(const char *name);