/*************************************************************************** * Copyright (C) 06/2006 by Olaf Rempel * * razzor@kopf-tisch.de * * * * 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. * * * * 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. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #include #include #include #include #include #include #include #include #include "list.h" #include "plugins.h" #include "configfile.h" #include "logging.h" #include "network.h" #include "rrdtool.h" #define BUFSIZE 512 static LIST_HEAD(plugin_list); static int plugin_flags; static int plugin_init_cb(const char *filename, void *privdata) { struct sammler_plugin *plugin = NULL; static const char *plugin_dir; char *buffer; void *tmp; int len; if (plugin_dir == NULL) plugin_dir = config_get_string("global", "plugin_dir", "."); buffer = malloc(PATH_MAX); if (buffer == NULL) { log_print(LOG_ERROR, "plugin_load: out of memory"); return -1; } len = snprintf(buffer, PATH_MAX, "%s/%s", plugin_dir, filename); if (len < 0 || len >= PATH_MAX) { log_print(LOG_ERROR, "plugin_load: file name too long: %s/%s", plugin_dir, filename); free(buffer); return -1; } dlerror(); tmp = dlopen(buffer, RTLD_NOW); if (tmp == NULL) { log_print(LOG_ERROR, "plugin_load: dlopen: %s", dlerror()); free(buffer); return -1; } free(buffer); plugin = dlsym(tmp, "plugin"); if (plugin == NULL) { log_print(LOG_ERROR, "plugin_load: failed to load '%s'", filename); dlclose(tmp); return -1; } log_print(LOG_INFO, "Plugin '%s' loaded", plugin->name); plugin->lastprobe = 0; if (plugin->init != NULL && (plugin->init() != 0)) { log_print(LOG_ERROR, "Plugin '%s': init failed", plugin->name); return -1; } list_add_tail(&plugin->list, &plugin_list); return 0; } void plugin_init(int flags) { config_get_strings("global", "plugin", plugin_init_cb, NULL); plugin_flags = flags; } void plugins_probe(void) { struct sammler_plugin *plugin; unsigned long now; now = time(NULL); list_for_each_entry(plugin, &plugin_list, list) { if (plugin->lastprobe + plugin->interval <= now) { plugin->probe(); plugin->lastprobe = now; } } if (plugin_flags & PLUGIN_NET) net_submit_flush(); } struct sammler_plugin * plugin_lookup(const char *name) { struct sammler_plugin *plugin; list_for_each_entry(plugin, &plugin_list, list) { if (!strcmp(plugin->name, name)) return plugin; } return NULL; } int probe_submit(struct sammler_plugin *plugin, const char *filename, int ds_id, const char *fmt, ... ) { static const char *hostname = NULL; va_list az; char *buffer; int len; if (hostname == NULL) hostname = config_get_string("global", "hostname", "localhost"); buffer = malloc(BUFSIZE); if (buffer == NULL) { log_print(LOG_ERROR, "probe_submit: out of memory"); return -1; } va_start(az, fmt); len = vsnprintf(buffer, BUFSIZE, fmt, az); va_end(az); if (len < 0 || len >= BUFSIZE) { log_print(LOG_ERROR, "probe_submit: %s arguments too long", plugin->name); free(buffer); return -1; } if (plugin_flags & PLUGIN_RRD) rrd_submit(hostname, plugin->name, filename, ds_id, buffer); if (plugin_flags & PLUGIN_NET) net_submit(hostname, plugin->name, filename, ds_id, buffer); free(buffer); return 0; }