Skip to content

Commit

Permalink
Add top-level config options IPv4Only and IPv6Only.
Browse files Browse the repository at this point in the history
Related to RADSECPROXY-37.

TODO: Add documentation.
  • Loading branch information
Linus Nordberg committed Apr 17, 2012
1 parent 883992d commit 2feba60
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
20 changes: 17 additions & 3 deletions radsecproxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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);

Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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");
Expand Down
2 changes: 2 additions & 0 deletions radsecproxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 2feba60

Please sign in to comment.