summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2012-04-13 18:19:25 +0200
committerLinus Nordberg <linus@nordu.net>2012-04-17 09:11:49 +0200
commit2feba60a704aa57d58eb99d5a49e67cba3510f14 (patch)
treefff11ff646724e37fc0ebd9016c7f9a2088428cf
parent883992d876f34a0486e675160a60701dc0a1b66a (diff)
Add top-level config options IPv4Only and IPv6Only.
Related to RADSECPROXY-37. TODO: Add documentation.
-rw-r--r--radsecproxy.c20
-rw-r--r--radsecproxy.h2
2 files changed, 19 insertions, 3 deletions
diff --git a/radsecproxy.c b/radsecproxy.c
index fa72fb2..2868aa7 100644
--- a/radsecproxy.c
+++ b/radsecproxy.c
@@ -2684,13 +2684,19 @@ int mergesrvconf(struct clsrvconf *dst, struct clsrvconf *src) {
return 1;
}
-int config_hostaf(const char *block, int ipv4only, int ipv6only, int *af) {
+/** Set *AF according to IPV4ONLY and IPV6ONLY:
+ - If both are set, the function fails.
+ - If exactly one is set, *AF is set accordingly.
+ - If none is set, *AF is not affected.
+ Return 0 on success and !0 on failure.
+ In the case of an error, *AF is not affected. */
+int config_hostaf(const char *desc, int ipv4only, int ipv6only, int *af) {
+ assert(af != NULL);
if (ipv4only && ipv6only) {
debug(DBG_ERR, "error in block %s, at most one of IPv4Only and "
- "IPv6Only can be enabled", block);
+ "IPv6Only can be enabled", desc);
return -1;
}
- *af = AF_UNSPEC;
if (ipv4only)
*af = AF_INET;
if (ipv6only)
@@ -2769,6 +2775,9 @@ int confclient_cb(struct gconffile **cf, void *arg, char *block, char *opt, char
}
#endif
+ conf->hostaf = AF_UNSPEC;
+ if (config_hostaf("top level", options.ipv4only, options.ipv6only, &conf->hostaf))
+ debugx(1, DBG_ERR, "config error: ^");
if (config_hostaf(block, ipv4only, ipv6only, &conf->hostaf))
debugx(1, DBG_ERR, "error in block %s: ^", block);
@@ -2947,6 +2956,9 @@ int confserver_cb(struct gconffile **cf, void *arg, char *block, char *opt, char
free(conftype);
conftype = NULL;
+ conf->hostaf = AF_UNSPEC;
+ if (config_hostaf("top level", options.ipv4only, options.ipv6only, &conf->hostaf))
+ debugx(1, DBG_ERR, "config error: ^");
if (config_hostaf(block, ipv4only, ipv6only, &conf->hostaf))
goto errexit;
@@ -3151,6 +3163,8 @@ void getmainconfig(const char *configfile) {
"FTicksKey", CONF_STR, &fticks_key_str,
"FTicksSyslogFacility", CONF_STR, &options.ftickssyslogfacility,
#endif
+ "IPv4Only", CONF_BLN, &options.ipv4only,
+ "IPv6Only", CONF_BLN, &options.ipv6only,
NULL
))
debugx(1, DBG_ERR, "configuration error");
diff --git a/radsecproxy.h b/radsecproxy.h
index eb30afd..1e23e42 100644
--- a/radsecproxy.h
+++ b/radsecproxy.h
@@ -65,6 +65,8 @@ struct options {
enum rsp_fticks_reporting_type fticks_reporting;
enum rsp_fticks_mac_type fticks_mac;
uint8_t *fticks_key;
+ uint8_t ipv4only;
+ uint8_t ipv6only;
};
struct commonprotoopts {