strongswan/src/libcharon/plugins/eap_aka/eap_aka_plugin.c

101 lines
2.4 KiB
C

/*
* Copyright (C) 2008-2009 Martin Willi
* HSR Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#include "eap_aka_plugin.h"
#include "eap_aka_peer.h"
#include "eap_aka_server.h"
#include <daemon.h>
#include <simaka_manager.h>
typedef struct private_eap_aka_plugin_t private_eap_aka_plugin_t;
/**
* Private data of an eap_sim_plugin_t object.
*/
struct private_eap_aka_plugin_t {
/**
* Public interface.
*/
eap_aka_plugin_t public;
/**
* EAP-AKA backend manager
*/
simaka_manager_t *mgr;
};
METHOD(plugin_t, get_name, char*,
private_eap_aka_plugin_t *this)
{
return "eap-aka";
}
METHOD(plugin_t, get_features, int,
private_eap_aka_plugin_t *this, plugin_feature_t *features[])
{
static plugin_feature_t f[] = {
PLUGIN_PROVIDE(CUSTOM, "aka-manager"),
PLUGIN_CALLBACK(eap_method_register, eap_aka_server_create),
PLUGIN_PROVIDE(EAP_SERVER, EAP_AKA),
PLUGIN_DEPENDS(RNG, RNG_WEAK),
PLUGIN_DEPENDS(HASHER, HASH_SHA1),
PLUGIN_DEPENDS(PRF, PRF_FIPS_SHA1_160),
PLUGIN_DEPENDS(SIGNER, AUTH_HMAC_SHA1_128),
PLUGIN_DEPENDS(CRYPTER, ENCR_AES_CBC, 16),
PLUGIN_CALLBACK(eap_method_register, eap_aka_peer_create),
PLUGIN_PROVIDE(EAP_PEER, EAP_AKA),
PLUGIN_DEPENDS(RNG, RNG_WEAK),
PLUGIN_DEPENDS(HASHER, HASH_SHA1),
PLUGIN_DEPENDS(PRF, PRF_FIPS_SHA1_160),
PLUGIN_DEPENDS(SIGNER, AUTH_HMAC_SHA1_128),
PLUGIN_DEPENDS(CRYPTER, ENCR_AES_CBC, 16),
};
*features = f;
return countof(f);
}
METHOD(plugin_t, destroy, void,
private_eap_aka_plugin_t *this)
{
lib->set(lib, "aka-manager", NULL);
this->mgr->destroy(this->mgr);
free(this);
}
/*
* see header file
*/
plugin_t *eap_aka_plugin_create()
{
private_eap_aka_plugin_t *this;
INIT(this,
.public = {
.plugin = {
.get_name = _get_name,
.get_features = _get_features,
.destroy = _destroy,
},
},
.mgr = simaka_manager_create(),
);
lib->set(lib, "aka-manager", this->mgr);
return &this->public.plugin;
}