aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2013-06-07 19:01:40 +0200
committerTobias Brunner <tobias@strongswan.org>2013-06-11 11:18:18 +0200
commitc172a92bfb60b1fe7cec1377315097d488d725cd (patch)
tree2f48e3a54bfb6bfbb8d9df2d27e102e3da7715a4
parente3bdf03af4bc4a6ef59e7b891c58ba65dd1f0da0 (diff)
downloadstrongswan-c172a92bfb60b1fe7cec1377315097d488d725cd.tar.bz2
strongswan-c172a92bfb60b1fe7cec1377315097d488d725cd.tar.xz
constraints: Use plugin features with soft dependency on X.509 decoding
-rw-r--r--src/libstrongswan/plugins/constraints/constraints_plugin.c34
1 files changed, 31 insertions, 3 deletions
diff --git a/src/libstrongswan/plugins/constraints/constraints_plugin.c b/src/libstrongswan/plugins/constraints/constraints_plugin.c
index 502c83559..b9b456b23 100644
--- a/src/libstrongswan/plugins/constraints/constraints_plugin.c
+++ b/src/libstrongswan/plugins/constraints/constraints_plugin.c
@@ -42,10 +42,39 @@ METHOD(plugin_t, get_name, char*,
return "constraints";
}
+/**
+ * Register validator
+ */
+static bool plugin_cb(private_constraints_plugin_t *this,
+ plugin_feature_t *feature, bool reg, void *cb_data)
+{
+ if (reg)
+ {
+ lib->credmgr->add_validator(lib->credmgr, &this->validator->validator);
+ }
+ else
+ {
+ lib->credmgr->remove_validator(lib->credmgr,
+ &this->validator->validator);
+ }
+ return TRUE;
+}
+
+METHOD(plugin_t, get_features, int,
+ private_constraints_plugin_t *this, plugin_feature_t *features[])
+{
+ static plugin_feature_t f[] = {
+ PLUGIN_CALLBACK((plugin_feature_callback_t)plugin_cb, NULL),
+ PLUGIN_PROVIDE(CUSTOM, "constraints"),
+ PLUGIN_SDEPEND(CERT_DECODE, CERT_X509),
+ };
+ *features = f;
+ return countof(f);
+}
+
METHOD(plugin_t, destroy, void,
private_constraints_plugin_t *this)
{
- lib->credmgr->remove_validator(lib->credmgr, &this->validator->validator);
this->validator->destroy(this->validator);
free(this);
}
@@ -61,13 +90,12 @@ plugin_t *constraints_plugin_create()
.public = {
.plugin = {
.get_name = _get_name,
- .reload = (void*)return_false,
+ .get_features = _get_features,
.destroy = _destroy,
},
},
.validator = constraints_validator_create(),
);
- lib->credmgr->add_validator(lib->credmgr, &this->validator->validator);
return &this->public.plugin;
}