loading default modules depending on configure options
This commit is contained in:
@@ -129,44 +129,57 @@ endif
|
||||
########################
|
||||
|
||||
SUBDIRS = .
|
||||
PLUGINS = ${libstrongswan_plugins}
|
||||
|
||||
if USE_UNIT_TESTS
|
||||
SUBDIRS += plugins/unit_tester
|
||||
PLUGINS += unit-tester
|
||||
endif
|
||||
|
||||
if USE_STROKE
|
||||
SUBDIRS += plugins/stroke
|
||||
PLUGINS += stroke
|
||||
endif
|
||||
|
||||
if USE_SMP
|
||||
SUBDIRS += plugins/smp
|
||||
PLUGINS += smb
|
||||
endif
|
||||
|
||||
if USE_SQL
|
||||
SUBDIRS += plugins/sql
|
||||
PLUGINS += sql
|
||||
endif
|
||||
|
||||
if USE_EAP_IDENTITY
|
||||
SUBDIRS += plugins/eap_identity
|
||||
PLUGINS += eap-identity
|
||||
endif
|
||||
|
||||
if USE_EAP_SIM
|
||||
SUBDIRS += plugins/eap_sim
|
||||
PLUGINS += eap-sim
|
||||
endif
|
||||
|
||||
if USE_EAP_MD5
|
||||
SUBDIRS += plugins/eap_md5
|
||||
PLUGINS += eap-md5
|
||||
endif
|
||||
|
||||
if USE_EAP_AKA
|
||||
SUBDIRS += plugins/eap_aka
|
||||
PLUGINS += eap-aka
|
||||
endif
|
||||
|
||||
if USE_MEDSRV
|
||||
SUBDIRS += plugins/medsrv
|
||||
PLUGINS += medsrv
|
||||
endif
|
||||
|
||||
if USE_MEDCLI
|
||||
SUBDIRS += plugins/medcli
|
||||
PLUGINS += medcli
|
||||
endif
|
||||
|
||||
AM_CFLAGS += -DPLUGINS=\""${PLUGINS}\""
|
||||
|
||||
|
||||
+1
-2
@@ -382,8 +382,7 @@ static bool initialize(private_daemon_t *this, bool syslog, level_t levels[])
|
||||
|
||||
/* load plugins, further infrastructure may need it */
|
||||
lib->plugins->load(lib->plugins, IPSEC_PLUGINDIR,
|
||||
lib->settings->get_str(lib->settings, "charon.load",
|
||||
"aes des gmp hmac md5 random sha1 sha2 pubkey x509 xcbc stroke"));
|
||||
lib->settings->get_str(lib->settings, "charon.load", PLUGINS));
|
||||
|
||||
this->public.ike_sa_manager = ike_sa_manager_create();
|
||||
if (this->public.ike_sa_manager == NULL)
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/charon
|
||||
|
||||
AM_CFLAGS = -rdynamic -DIPSEC_PLUGINDIR=\"${plugindir}\"
|
||||
AM_CFLAGS = -rdynamic \
|
||||
-DIPSEC_PLUGINDIR=\"${plugindir}\" -DPLUGINS=\""${libstrongswan_plugins}\""
|
||||
|
||||
plugin_LTLIBRARIES = libstrongswan-sql.la
|
||||
libstrongswan_sql_la_SOURCES = sql_plugin.h sql_plugin.c \
|
||||
|
||||
@@ -359,8 +359,7 @@ int main(int argc, char *argv[])
|
||||
library_init(STRONGSWAN_CONF);
|
||||
atexit(library_deinit);
|
||||
lib->plugins->load(lib->plugins, IPSEC_PLUGINDIR,
|
||||
lib->settings->get_str(lib->settings, "pool.load",
|
||||
"sqlite mysql"));
|
||||
lib->settings->get_str(lib->settings, "pool.load", PLUGINS));
|
||||
|
||||
uri = lib->settings->get_str(lib->settings, "charon.plugins.sql.database", NULL);
|
||||
if (!uri)
|
||||
|
||||
@@ -100,7 +100,11 @@ static int load(private_plugin_loader_t *this, char *path, char *list)
|
||||
pos = strchr(list, ' ');
|
||||
if (pos)
|
||||
{
|
||||
*pos = '\0';
|
||||
*pos++ = '\0';
|
||||
while (*pos == ' ')
|
||||
{
|
||||
pos++;
|
||||
}
|
||||
}
|
||||
plugin = load_plugin(this, path, list);
|
||||
if (plugin)
|
||||
@@ -112,7 +116,7 @@ static int load(private_plugin_loader_t *this, char *path, char *list)
|
||||
{
|
||||
break;
|
||||
}
|
||||
list = pos + 1;
|
||||
list = pos;
|
||||
}
|
||||
return count;
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@ manager_fcgi_LDADD = $(top_builddir)/src/libfast/libfast.la ${xml_LIBS}
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/libfast ${xml_CFLAGS}
|
||||
AM_CFLAGS = -rdynamic -DIPSECDIR=\"${ipsecdir}\" -DIPSEC_PIDDIR=\"${piddir}\" \
|
||||
-DIPSEC_PLUGINDIR=\"${plugindir}\"
|
||||
-DIPSEC_PLUGINDIR=\"${plugindir}\" -DPLUGINS=\""${libstrongswan_plugins}\""
|
||||
|
||||
# Don't forget to add templates to EXTRA_DIST !!! How to automate?
|
||||
ipsec_templatesdir = ${ipsecdir}/templates
|
||||
|
||||
+1
-2
@@ -38,8 +38,7 @@ int main (int arc, char *argv[])
|
||||
|
||||
library_init(STRONGSWAN_CONF);
|
||||
lib->plugins->load(lib->plugins, IPSEC_PLUGINDIR,
|
||||
lib->settings->get_str(lib->settings, "manager.load",
|
||||
"random sha1 sqlite"));
|
||||
lib->settings->get_str(lib->settings, "manager.load", PLUGINS));
|
||||
|
||||
socket = lib->settings->get_str(lib->settings, "manager.socket", NULL);
|
||||
debug = lib->settings->get_bool(lib->settings, "manager.debug", FALSE);
|
||||
|
||||
@@ -4,6 +4,6 @@ dist_man_MANS = openac.8
|
||||
|
||||
INCLUDES = -I$(top_srcdir)/src/libstrongswan
|
||||
AM_CFLAGS = -DIPSEC_CONFDIR=\"${confdir}\" \
|
||||
-DIPSEC_PLUGINDIR=\"${plugindir}\"
|
||||
-DIPSEC_PLUGINDIR=\"${plugindir}\" -DPLUGINS=\""${libstrongswan_plugins}\""
|
||||
openac_LDADD = $(top_builddir)/src/libstrongswan/libstrongswan.la -lgmp
|
||||
|
||||
|
||||
+1
-2
@@ -268,8 +268,7 @@ int main(int argc, char **argv)
|
||||
/* initialize library */
|
||||
library_init(STRONGSWAN_CONF);
|
||||
lib->plugins->load(lib->plugins, IPSEC_PLUGINDIR,
|
||||
lib->settings->get_str(lib->settings, "openac.load",
|
||||
"gmp hmac md5 random sha1 sha2 pubkey x509"));
|
||||
lib->settings->get_str(lib->settings, "openac.load", PLUGINS));
|
||||
|
||||
/* initialize optionsfrom */
|
||||
options_t *options = options_create();
|
||||
|
||||
+1
-14
@@ -6,7 +6,7 @@ charon {
|
||||
threads = 16
|
||||
|
||||
# plugins to load in charon
|
||||
load = aes des gmp hmac md5 random sha1 sha2 pubkey xcbc stroke
|
||||
# load = aes des gmp hmac md5 random sha1 sha2 pubkey xcbc x509 stroke
|
||||
|
||||
plugins {
|
||||
|
||||
@@ -23,16 +23,3 @@ charon {
|
||||
|
||||
# ...
|
||||
}
|
||||
|
||||
pool {
|
||||
# choose one
|
||||
load = mysql sqlite
|
||||
}
|
||||
|
||||
manager {
|
||||
load = sha1 random sqlite
|
||||
}
|
||||
|
||||
openac {
|
||||
load = gmp hmac md5 random sha1 sha2 pubkey x509
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user