dhcp: Use plugin features with dependency to RNG implementation

This commit is contained in:
Tobias Brunner
2013-06-11 11:18:17 +02:00
parent 11a27ea28f
commit 12459a4dc8
+45 -17
View File
@@ -1,4 +1,7 @@
/* /*
* Copyright (C) 2013 Tobias Brunner
* Hochschule fuer Technik Rapperswil
*
* Copyright (C) 2010 Martin Willi * Copyright (C) 2010 Martin Willi
* Copyright (C) 2010 revosec AG * Copyright (C) 2010 revosec AG
* *
@@ -17,6 +20,7 @@
#include <hydra.h> #include <hydra.h>
#include <daemon.h> #include <daemon.h>
#include <plugins/plugin_feature.h>
#include "dhcp_socket.h" #include "dhcp_socket.h"
#include "dhcp_provider.h" #include "dhcp_provider.h"
@@ -50,13 +54,49 @@ METHOD(plugin_t, get_name, char*,
return "dhcp"; return "dhcp";
} }
/**
* Register listener
*/
static bool plugin_cb(private_dhcp_plugin_t *this,
plugin_feature_t *feature, bool reg, void *cb_data)
{
if (reg)
{
this->socket = dhcp_socket_create();
if (!this->socket)
{
return FALSE;
}
this->provider = dhcp_provider_create(this->socket);
hydra->attributes->add_provider(hydra->attributes,
&this->provider->provider);
}
else
{
hydra->attributes->remove_provider(hydra->attributes,
&this->provider->provider);
this->provider->destroy(this->provider);
this->socket->destroy(this->socket);
}
return TRUE;
}
METHOD(plugin_t, get_features, int,
private_dhcp_plugin_t *this, plugin_feature_t *features[])
{
static plugin_feature_t f[] = {
PLUGIN_CALLBACK((plugin_feature_callback_t)plugin_cb, NULL),
PLUGIN_PROVIDE(CUSTOM, "dhcp"),
PLUGIN_DEPENDS(RNG, RNG_WEAK),
};
*features = f;
return countof(f);
}
METHOD(plugin_t, destroy, void, METHOD(plugin_t, destroy, void,
private_dhcp_plugin_t *this) private_dhcp_plugin_t *this)
{ {
hydra->attributes->remove_provider(hydra->attributes,
&this->provider->provider);
this->provider->destroy(this->provider);
this->socket->destroy(this->socket);
free(this); free(this);
} }
@@ -71,23 +111,11 @@ plugin_t *dhcp_plugin_create()
.public = { .public = {
.plugin = { .plugin = {
.get_name = _get_name, .get_name = _get_name,
.reload = (void*)return_false, .get_features = _get_features,
.destroy = _destroy, .destroy = _destroy,
}, },
}, },
.socket = dhcp_socket_create(),
); );
if (!this->socket)
{
free(this);
return NULL;
}
this->provider = dhcp_provider_create(this->socket);
hydra->attributes->add_provider(hydra->attributes,
&this->provider->provider);
return &this->public.plugin; return &this->public.plugin;
} }