Add features support tp eap-simaka-reauth plugin
This commit is contained in:
@@ -8,6 +8,7 @@ if MONOLITHIC
|
|||||||
noinst_LTLIBRARIES = libstrongswan-eap-simaka-reauth.la
|
noinst_LTLIBRARIES = libstrongswan-eap-simaka-reauth.la
|
||||||
else
|
else
|
||||||
plugin_LTLIBRARIES = libstrongswan-eap-simaka-reauth.la
|
plugin_LTLIBRARIES = libstrongswan-eap-simaka-reauth.la
|
||||||
|
libstrongswan_eap_simaka_reauth_la_LIBADD = $(top_builddir)/src/libsimaka/libsimaka.la
|
||||||
endif
|
endif
|
||||||
|
|
||||||
libstrongswan_eap_simaka_reauth_la_SOURCES = \
|
libstrongswan_eap_simaka_reauth_la_SOURCES = \
|
||||||
|
|||||||
@@ -48,25 +48,60 @@ METHOD(plugin_t, get_name, char*,
|
|||||||
return "eap-simaka-reauth";
|
return "eap-simaka-reauth";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Callback providing our card to register
|
||||||
|
*/
|
||||||
|
static simaka_card_t* get_card(private_eap_simaka_reauth_t *this)
|
||||||
|
{
|
||||||
|
if (!this->card)
|
||||||
|
{
|
||||||
|
this->card = eap_simaka_reauth_card_create();
|
||||||
|
}
|
||||||
|
return &this->card->card;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Callback providing our provider to register
|
||||||
|
*/
|
||||||
|
static simaka_provider_t* get_provider(private_eap_simaka_reauth_t *this)
|
||||||
|
{
|
||||||
|
if (!this->provider)
|
||||||
|
{
|
||||||
|
this->provider = eap_simaka_reauth_provider_create();
|
||||||
|
if (!this->provider)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return &this->provider->provider;
|
||||||
|
}
|
||||||
|
|
||||||
|
METHOD(plugin_t, get_features, int,
|
||||||
|
private_eap_simaka_reauth_t *this, plugin_feature_t *features[])
|
||||||
|
{
|
||||||
|
static plugin_feature_t f[] = {
|
||||||
|
PLUGIN_CALLBACK(simaka_manager_register, get_card),
|
||||||
|
PLUGIN_PROVIDE(CUSTOM, "aka-card"),
|
||||||
|
PLUGIN_DEPENDS(CUSTOM, "aka-manager"),
|
||||||
|
PLUGIN_PROVIDE(CUSTOM, "sim-card"),
|
||||||
|
PLUGIN_DEPENDS(CUSTOM, "sim-manager"),
|
||||||
|
PLUGIN_CALLBACK(simaka_manager_register, get_provider),
|
||||||
|
PLUGIN_PROVIDE(CUSTOM, "aka-provider"),
|
||||||
|
PLUGIN_DEPENDS(CUSTOM, "aka-manager"),
|
||||||
|
PLUGIN_DEPENDS(RNG, RNG_WEAK),
|
||||||
|
PLUGIN_PROVIDE(CUSTOM, "sim-provider"),
|
||||||
|
PLUGIN_DEPENDS(CUSTOM, "sim-manager"),
|
||||||
|
PLUGIN_DEPENDS(RNG, RNG_WEAK),
|
||||||
|
};
|
||||||
|
*features = f;
|
||||||
|
return countof(f);
|
||||||
|
}
|
||||||
|
|
||||||
METHOD(plugin_t, destroy, void,
|
METHOD(plugin_t, destroy, void,
|
||||||
private_eap_simaka_reauth_t *this)
|
private_eap_simaka_reauth_t *this)
|
||||||
{
|
{
|
||||||
simaka_manager_t *mgr;
|
DESTROY_IF(this->card);
|
||||||
|
DESTROY_IF(this->provider);
|
||||||
mgr = lib->get(lib, "sim-manager");
|
|
||||||
if (mgr)
|
|
||||||
{
|
|
||||||
mgr->remove_card(mgr, &this->card->card);
|
|
||||||
mgr->remove_provider(mgr, &this->provider->provider);
|
|
||||||
}
|
|
||||||
mgr = lib->get(lib, "aka-manager");
|
|
||||||
if (mgr)
|
|
||||||
{
|
|
||||||
mgr->remove_card(mgr, &this->card->card);
|
|
||||||
mgr->remove_provider(mgr, &this->provider->provider);
|
|
||||||
}
|
|
||||||
this->card->destroy(this->card);
|
|
||||||
this->provider->destroy(this->provider);
|
|
||||||
free(this);
|
free(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -76,38 +111,17 @@ METHOD(plugin_t, destroy, void,
|
|||||||
plugin_t *eap_simaka_reauth_plugin_create()
|
plugin_t *eap_simaka_reauth_plugin_create()
|
||||||
{
|
{
|
||||||
private_eap_simaka_reauth_t *this;
|
private_eap_simaka_reauth_t *this;
|
||||||
simaka_manager_t *mgr;
|
|
||||||
|
|
||||||
INIT(this,
|
INIT(this,
|
||||||
.public = {
|
.public = {
|
||||||
.plugin = {
|
.plugin = {
|
||||||
.get_name = _get_name,
|
.get_name = _get_name,
|
||||||
.reload = (void*)return_false,
|
.get_features = _get_features,
|
||||||
.destroy = _destroy,
|
.destroy = _destroy,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
.provider = eap_simaka_reauth_provider_create(),
|
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!this->provider)
|
|
||||||
{
|
|
||||||
free(this);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
this->card = eap_simaka_reauth_card_create();
|
|
||||||
|
|
||||||
mgr = lib->get(lib, "sim-manager");
|
|
||||||
if (mgr)
|
|
||||||
{
|
|
||||||
mgr->add_card(mgr, &this->card->card);
|
|
||||||
mgr->add_provider(mgr, &this->provider->provider);
|
|
||||||
}
|
|
||||||
mgr = lib->get(lib, "aka-manager");
|
|
||||||
if (mgr)
|
|
||||||
{
|
|
||||||
mgr->add_card(mgr, &this->card->card);
|
|
||||||
mgr->add_provider(mgr, &this->provider->provider);
|
|
||||||
}
|
|
||||||
return &this->public.plugin;
|
return &this->public.plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user