2
0
Fork 0
lighttpd2/src/angel/angel_plugin.c

377 lines
10 KiB
C
Raw Normal View History

#include <lighttpd/angel_base.h>
#include <lighttpd/angel_config_parser.h>
#include <lighttpd/angel_plugin_core.h>
/* internal structures */
typedef struct server_item server_item;
struct server_item {
liPlugin *p;
guint option_count;
const liPluginItem *p_item;
};
typedef struct server_module server_module;
struct server_module {
guint refcount;
gchar *name;
liServer *srv;
liModule *mod;
GPtrArray *plugins; /* plugin* */
};
static void _server_item_free(gpointer p) {
g_slice_free(server_item, p);
}
static server_item* server_item_new(liPlugin *p, const liPluginItem *p_item) {
server_item *si = g_slice_new(server_item);
const liPluginItemOption *pio;
guint cnt;
for (pio = p_item->options, cnt = 0; pio->name; pio++, cnt++) ;
si->p = p;
si->option_count = cnt;
si->p_item = p_item;
return si;
}
2009-07-09 20:17:24 +00:00
static void li_plugin_free(liServer *srv, liPlugin *p) {
if (p->handle_free) p->handle_free(srv, p);
g_hash_table_destroy(p->angel_callbacks);
g_slice_free(liPlugin, p);
}
static liPlugin* plugin_new(const char *name) {
liPlugin *p = g_slice_new0(liPlugin);
p->name = name;
p->angel_callbacks = g_hash_table_new(g_str_hash, g_str_equal);
return p;
}
static void _server_module_release(gpointer d) {
server_module *sm = d;
guint i;
g_assert(sm->refcount > 0);
if (0 != --sm->refcount) return;
for (i = sm->plugins->len; i-- > 0; ) {
liPlugin *p = g_ptr_array_index(sm->plugins, i);
2009-07-09 20:17:24 +00:00
li_plugin_free(sm->srv, p);
}
g_ptr_array_free(sm->plugins, TRUE);
2009-07-09 20:17:24 +00:00
if (sm->mod) li_module_release(sm->srv->plugins.modules, sm->mod);
g_free(sm->name);
g_slice_free(server_module, sm);
}
static void server_module_acquire(server_module *sm) {
g_assert(sm->refcount > 0);
sm->refcount++;
}
static server_module* server_module_new(liServer *srv, const gchar *name) { /* module is set later */
server_module *sm = g_slice_new0(server_module);
sm->refcount = 1;
sm->srv = srv;
sm->plugins = g_ptr_array_new();
sm->name = g_strdup(name);
return sm;
}
void plugins_init(liServer *srv, const gchar *module_dir) {
liPlugins *ps = &srv->plugins;
2009-07-09 20:17:24 +00:00
ps->modules = li_modules_new(srv, module_dir);
ps->items = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, _server_item_free);
ps->load_items = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, _server_item_free);
ps->module_refs = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, _server_module_release);
ps->load_module_refs = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, _server_module_release);
ps->ht_plugins = g_hash_table_new(g_str_hash, g_str_equal);
ps->load_ht_plugins = g_hash_table_new(g_str_hash, g_str_equal);
ps->plugins = g_ptr_array_new();
ps->load_plugins = g_ptr_array_new();
}
void plugins_clear(liServer *srv) {
liPlugins *ps = &srv->plugins;
plugins_config_clean(srv);
g_hash_table_destroy(ps->items);
g_hash_table_destroy(ps->load_items);
g_hash_table_destroy(ps->module_refs);
g_hash_table_destroy(ps->load_module_refs);
g_hash_table_remove_all(ps->ht_plugins);
g_hash_table_remove_all(ps->load_ht_plugins);
g_ptr_array_free(ps->plugins, TRUE);
g_ptr_array_free(ps->load_plugins, TRUE);
if (ps->config_filename) g_string_free(ps->config_filename, TRUE);
2009-07-09 20:17:24 +00:00
li_modules_free(ps->modules);
}
void plugins_config_clean(liServer *srv) {
liPlugins *ps = &srv->plugins;
guint i;
for (i = ps->load_plugins->len; i-- > 0; ) {
liPlugin *p = g_ptr_array_index(ps->load_plugins, i);
if (p->handle_clean_config) p->handle_clean_config(srv, p);
}
g_hash_table_remove_all(ps->load_items);
g_hash_table_remove_all(ps->load_module_refs);
g_hash_table_remove_all(ps->load_ht_plugins);
g_ptr_array_set_size(ps->load_plugins, 0);
}
gboolean plugins_config_load(liServer *srv, const gchar *filename) {
liPlugins *ps = &srv->plugins;
GError *error = NULL;
guint i;
if (!plugins_load_module(srv, NULL)) {
ERROR(srv, "%s", "failed loading core plugins");
plugins_config_clean(srv);
return FALSE;
}
2009-07-26 13:01:08 +00:00
if (filename && !li_angel_config_parse_file(srv, filename, &error)) {
ERROR(srv, "failed to parse config file: %s", error->message);
g_error_free(error);
plugins_config_clean(srv);
return FALSE;
}
/* check new config */
for (i = ps->load_plugins->len; i-- > 0; ) {
liPlugin *p = g_ptr_array_index(ps->load_plugins, i);
if (p->handle_check_config) {
if (!p->handle_check_config(srv, p)) {
ERROR(srv, "%s", "config check failed");
plugins_config_clean(srv);
return FALSE;
}
}
}
2009-09-04 13:56:52 +00:00
INFO(srv, "%s", "activate");
/* activate new config */
for (i = ps->load_plugins->len; i-- > 0; ) {
liPlugin *p = g_ptr_array_index(ps->load_plugins, i);
2009-09-04 13:56:52 +00:00
INFO(srv, "activate: %s", p->name);
if (p->handle_activate_config) {
p->handle_activate_config(srv, p);
}
}
2009-09-04 13:56:52 +00:00
INFO(srv, "%s", "done");
{ /* swap the arrays */
GPtrArray *tmp = ps->load_plugins; ps->load_plugins = ps->plugins; ps->plugins = tmp;
}
{ /* swap the hash tables */
GHashTable *tmp;
tmp = ps->load_items; ps->load_items = ps->items; ps->items = tmp;
tmp = ps->load_module_refs; ps->load_module_refs = ps->module_refs; ps->module_refs = tmp;
tmp = ps->load_ht_plugins; ps->load_ht_plugins = ps->ht_plugins; ps->ht_plugins = tmp;
}
g_hash_table_remove_all(ps->load_items);
g_hash_table_remove_all(ps->load_module_refs);
g_hash_table_remove_all(ps->load_ht_plugins);
g_ptr_array_set_size(ps->load_plugins, 0);
if (!ps->config_filename) {
ps->config_filename = g_string_new(filename);
} else {
2009-07-26 13:01:08 +00:00
g_string_assign(ps->config_filename, filename ? filename : "");
}
return TRUE;
}
void plugins_handle_item(liServer *srv, GString *itemname, liValue *hash) {
liPlugins *ps = &srv->plugins;
server_item *si;
2009-09-04 13:56:52 +00:00
#if 0
/* debug items */
{
2009-07-09 20:17:24 +00:00
GString *tmp = li_value_to_string(hash);
ERROR(srv, "Item '%s': %s", itemname->str, tmp->str);
g_string_free(tmp, TRUE);
}
#endif
si = g_hash_table_lookup(ps->load_items, itemname->str);
if (!si) {
WARNING(srv, "Unknown item '%s' - perhaps you forgot to load the module? (ignored)", itemname->str);
} else {
liValue **optlist = g_slice_alloc0(sizeof(liValue*) * si->option_count);
GHashTableIter opti;
gpointer k, v;
guint i;
gboolean valid = TRUE;
/* find options and assign them by id */
g_hash_table_iter_init(&opti, hash->data.hash);
while (g_hash_table_iter_next(&opti, &k, &v)) {
const gchar *optkey = ((GString*) k)->str;
for (i = 0; i < si->option_count; i++) {
if (0 == g_strcmp0(si->p_item->options[i].name, optkey)) break;
}
if (i == si->option_count) {
WARNING(srv, "Unknown option '%s' in item '%s' (ignored)", optkey, itemname->str);
} else {
optlist[i] = v;
}
}
/* validate options */
for (i = 0; i < si->option_count; i++) {
const liPluginItemOption *pi = &si->p_item->options[i];
if (0 != (pi->flags & LI_PLUGIN_ITEM_OPTION_MANDATORY)) {
if (!optlist[i]) {
ERROR(srv, "Missing mandatory option '%s' in item '%s'", pi->name, itemname->str);
valid = FALSE;
}
}
if (pi->type != LI_VALUE_NONE && optlist[i] && optlist[i]->type != pi->type) {
/* TODO: convert from string if possible */
ERROR(srv, "Invalid value type of option '%s' in item '%s', got '%s' but expected '%s'",
2009-07-09 20:17:24 +00:00
pi->name, itemname->str, li_value_type_string(optlist[i]->type), li_value_type_string(pi->type));
valid = FALSE;
}
}
if (valid) {
g_assert(si->p_item->handle_parse_item);
si->p_item->handle_parse_item(srv, si->p, optlist);
}
g_slice_free1(sizeof(liValue*) * si->option_count, optlist);
}
}
static gboolean plugins_activate_module(liServer *srv, server_module *sm) {
liPlugins *ps = &srv->plugins;
liPlugin *p;
const liPluginItem *pi;
guint i;
for (i = 0; i < sm->plugins->len; i++) {
p = g_ptr_array_index(sm->plugins, i);
g_ptr_array_add(ps->load_plugins, p);
g_hash_table_insert(ps->load_ht_plugins, (gpointer) p->name, p);
if (!p->items) continue;
for (pi = p->items; pi->name; pi++) {
server_item *si;
if (NULL != (si = g_hash_table_lookup(ps->load_items, pi->name))) {
ERROR(srv, "Plugin item name conflict: cannot load '%s' for plugin '%s' (already provided by plugin '%s')",
pi->name, p->name, si->p->name);
goto item_collission;
} else {
si = server_item_new(p, pi);
g_hash_table_insert(ps->load_items, (gpointer) pi->name, si);
}
}
}
return TRUE;
item_collission:
/* removed added items and plugins */
for ( ; pi-- != p->items; ) {
g_hash_table_remove(ps->load_items, pi->name);
}
g_ptr_array_set_size(ps->load_plugins, ps->load_plugins->len - i+1);
for ( ; i-- > 0; ) {
p = g_ptr_array_index(sm->plugins, i);
g_hash_table_remove(ps->load_ht_plugins, p->name);
if (!p->items) continue;
for (pi = p->items; pi->name; pi++) {
g_hash_table_remove(ps->load_items, pi->name);
}
}
return FALSE;
}
gboolean plugins_load_module(liServer *srv, const gchar *name) {
liPlugins *ps = &srv->plugins;
server_module *sm;
const gchar* modname = name ? name : "core";
sm = g_hash_table_lookup(ps->load_module_refs, modname);
if (sm) return TRUE; /* already loaded */
sm = g_hash_table_lookup(ps->module_refs, modname);
if (sm) { /* loaded in previous config */
server_module_acquire(sm);
g_hash_table_insert(ps->load_module_refs, sm->name, sm);
} else { /* not loaded yet */
liModule *mod;
sm = server_module_new(srv, modname);
g_hash_table_insert(ps->load_module_refs, sm->name, sm);
if (name) {
2009-07-09 20:17:24 +00:00
mod = li_module_load(ps->modules, name);
if (!mod) {
_server_module_release(sm);
return FALSE;
}
sm->mod = mod;
} else {
if (!plugin_core_init(srv)) {
_server_module_release(sm);
return FALSE;
}
}
}
if (!plugins_activate_module(srv, sm)) {
_server_module_release(sm);
return FALSE;
}
return TRUE;
}
2009-07-09 20:17:24 +00:00
liPlugin *li_angel_plugin_register(liServer *srv, liModule *mod, const gchar *name, liPluginInitCB init) {
liPlugins *ps = &srv->plugins;
server_module *sm;
liPlugin *p;
const gchar* modname = mod ? mod->name->str : "core";
sm = g_hash_table_lookup(ps->load_module_refs, modname);
if (!sm) {
ERROR(srv, "Module '%s' not loaded; cannot load plugin '%s'", modname, name);
return NULL;
}
p = plugin_new(name);
if (!init(srv, p)) {
ERROR(srv, "Couldn't load plugin '%s' for module '%s': init failed", name, modname);
2009-07-09 20:17:24 +00:00
li_plugin_free(srv, p);
return NULL;
}
g_ptr_array_add(sm->plugins, p);
return p;
}