Make resolvconf interface prefix configurable.

This commit is contained in:
Tobias Brunner 2012-03-26 15:09:21 +02:00
parent caae5a5c0f
commit ed2cab08d2
2 changed files with 16 additions and 2 deletions

View File

@ -470,6 +470,12 @@ Section to configure the load-tester plugin, see LOAD TESTS
.BR charon.plugins.resolve.file " [/etc/resolv.conf]"
File where to add DNS server entries
.TP
.BR charon.plugins.resolve.resolvconf.iface_prefix " [lo.inet.ipsec.]"
Prefix used for interface names sent to resolvconf(8). The nameserver address
is appended to this prefix to make it unique. The result has to be a valid
interface name according to the rules defined by resolvconf. Also, it should
have a high priority according to the order defined in interface-order(5).
.TP
.BR charon.plugins.sql.database
Database URI for charons SQL plugin
.TP

View File

@ -27,7 +27,7 @@
/* path to resolvconf executable */
#define RESOLVCONF_EXEC "/sbin/resolvconf"
/* prefix used for resolvconf interfaces */
/* default prefix used for resolvconf interfaces (should have high prio) */
#define RESOLVCONF_PREFIX "lo.inet.ipsec."
typedef struct private_resolve_handler_t private_resolve_handler_t;
@ -52,6 +52,11 @@ struct private_resolve_handler_t {
*/
bool use_resolvconf;
/**
* prefix to be used for interface names sent to resolvconf
*/
char *iface_prefix;
/**
* Mutex to access file exclusively
*/
@ -149,7 +154,7 @@ static bool invoke_resolvconf(private_resolve_handler_t *this,
/* we use the nameserver's IP address as part of the interface name to
* make them unique */
if (snprintf(cmd, sizeof(cmd), "%s %s %s%H", RESOLVCONF_EXEC,
install ? "-a" : "-d", RESOLVCONF_PREFIX, addr) >= sizeof(cmd))
install ? "-a" : "-d", this->iface_prefix, addr) >= sizeof(cmd))
{
return FALSE;
}
@ -336,6 +341,9 @@ resolve_handler_t *resolve_handler_create()
if (stat(RESOLVCONF_EXEC, &st) == 0)
{
this->use_resolvconf = TRUE;
this->iface_prefix = lib->settings->get_str(lib->settings,
"%s.plugins.resolve.resolvconf.iface_prefix",
RESOLVCONF_PREFIX, hydra->daemon);
}
return &this->public;