]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
charon: Add custom logger to daemon
authorThomas Egerer <thomas.egerer@secunet.com>
Mon, 1 Feb 2016 13:52:49 +0000 (14:52 +0100)
committerTobias Brunner <tobias@strongswan.org>
Tue, 1 Mar 2016 10:48:52 +0000 (11:48 +0100)
This logger can be used to easily register custom logging instances
using __attribute__((constructor)) benefiting from the global reload
mechanism (with reset of log levels).

Note that this is not intended to be used from plugins, which are loaded
after loggers have already been initialized.

Signed-off-by: Thomas Egerer <thomas.egerer@secunet.com>
src/libcharon/Makefile.am
src/libcharon/bus/listeners/custom_logger.h [new file with mode: 0644]
src/libcharon/daemon.c
src/libcharon/daemon.h

index cd81a5eee72142ce906f6b84e6c442f3a5e8e063..66fce811e84167180a81f0973296804b56fc8840 100644 (file)
@@ -8,6 +8,7 @@ attributes/mem_pool.c attributes/mem_pool.h \
 bus/bus.c bus/bus.h \
 bus/listeners/listener.h \
 bus/listeners/logger.h \
+bus/listeners/custom_logger.h \
 bus/listeners/file_logger.c bus/listeners/file_logger.h \
 config/backend_manager.c config/backend_manager.h config/backend.h \
 config/child_cfg.c config/child_cfg.h \
diff --git a/src/libcharon/bus/listeners/custom_logger.h b/src/libcharon/bus/listeners/custom_logger.h
new file mode 100644 (file)
index 0000000..a256ad1
--- /dev/null
@@ -0,0 +1,65 @@
+/*
+ * Copyright (C) 2016 secunet Security Networks AG
+ * Copyright (C) 2016 Thomas Egerer
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+/**
+ * @defgroup custom_logger custom_logger
+ * @{ @ingroup listeners
+ */
+
+#ifndef CUSTOM_LOGGER_H_
+#define CUSTOM_LOGGER_H_
+
+#include <bus/listeners/logger.h>
+
+typedef struct custom_logger_t custom_logger_t;
+
+/**
+ * Custom logger which implements listener_t.
+ */
+struct custom_logger_t {
+
+       /**
+        * Implements the logger_t interface.
+        */
+       logger_t logger;
+
+       /**
+        * Set the loglevel for a debug group.
+        *
+        * @param group         debug group to set
+        * @param level         max level to log (0..4)
+        */
+       void (*set_level) (custom_logger_t *this, debug_t group, level_t level);
+
+       /**
+        * Destroy the custom_logger_t object.
+        */
+       void (*destroy) (custom_logger_t *this);
+};
+
+/**
+ * Prototype for custom logger construction function pointer.
+ */
+typedef custom_logger_t *(*custom_logger_constructor_t)(const char *name);
+
+#endif /** CUSTOM_LOGGER_H_ @}*/
index dce2a71444efba4e95415187f7a4cf781c9e991f..f861460dba38856d84dc7488b4c7d1bcee37e25d 100644 (file)
  * for more details.
  */
 
+/*
+ * Copyright (C) 2016 secunet Security Networks AG
+ * Copyright (C) 2016 Thomas Egerer
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
 #include <stdio.h>
 #include <sys/types.h>
 #include <unistd.h>
@@ -110,6 +133,70 @@ static void dbg_bus(debug_t group, level_t level, char *fmt, ...)
        va_end(args);
 }
 
+/**
+ * Data for registered custom loggers
+ */
+typedef struct {
+       /**
+        * Name of the custom logger (also used for loglevel configuration)
+        */
+       char *name;
+
+       /**
+        * Constructor to be called for custom logger creation
+        */
+       custom_logger_constructor_t constructor;
+
+} custom_logger_entry_t;
+
+#define MAX_CUSTOM_LOGGERS 10
+
+/**
+ * Static array for logger registration using __attribute__((constructor))
+ */
+static custom_logger_entry_t custom_loggers[MAX_CUSTOM_LOGGERS];
+static int custom_logger_count;
+
+/**
+ * Described in header
+ */
+void register_custom_logger(char *name,
+                                                       custom_logger_constructor_t constructor)
+{
+       if (custom_logger_count < MAX_CUSTOM_LOGGERS - 1)
+       {
+               custom_loggers[custom_logger_count].name = name;
+               custom_loggers[custom_logger_count].constructor = constructor;
+               custom_logger_count++;
+       }
+       else
+       {
+               fprintf(stderr, "failed to register custom logger, please increase "
+                               "MAX_CUSTOM_LOGGERS");
+       }
+}
+
+/**
+ * Types of supported loggers
+ */
+typedef enum {
+       /**
+        * Syslog logger instance
+        */
+       SYS_LOGGER,
+
+       /**
+        * File logger instance
+        */
+       FILE_LOGGER,
+
+       /**
+        * Custom logger instance
+        */
+       CUSTOM_LOGGER,
+
+} logger_type_t;
+
 /**
  * Some metadata about configured loggers
  */
@@ -120,9 +207,9 @@ typedef struct {
        char *target;
 
        /**
-        * TRUE if this is a file logger
+        * Type of logger
         */
-       bool file;
+       logger_type_t type;
 
        /**
         * The actual logger
@@ -130,6 +217,7 @@ typedef struct {
        union {
                sys_logger_t *sys;
                file_logger_t *file;
+               custom_logger_t *custom;
        } logger;
 
 } logger_entry_t;
@@ -139,13 +227,17 @@ typedef struct {
  */
 static void logger_entry_destroy(logger_entry_t *this)
 {
-       if (this->file)
-       {
-               DESTROY_IF(this->logger.file);
-       }
-       else
+       switch (this->type)
        {
-               DESTROY_IF(this->logger.sys);
+               case FILE_LOGGER:
+                       DESTROY_IF(this->logger.file);
+                       break;
+               case SYS_LOGGER:
+                       DESTROY_IF(this->logger.sys);
+                       break;
+               case CUSTOM_LOGGER:
+                       DESTROY_IF(this->logger.custom);
+                       break;
        }
        free(this->target);
        free(this);
@@ -156,13 +248,18 @@ static void logger_entry_destroy(logger_entry_t *this)
  */
 static void logger_entry_unregister_destroy(logger_entry_t *this)
 {
-       if (this->file)
+       switch (this->type)
        {
-               charon->bus->remove_logger(charon->bus, &this->logger.file->logger);
-       }
-       else
-       {
-               charon->bus->remove_logger(charon->bus, &this->logger.sys->logger);
+               case FILE_LOGGER:
+                       charon->bus->remove_logger(charon->bus, &this->logger.file->logger);
+                       break;
+               case SYS_LOGGER:
+                       charon->bus->remove_logger(charon->bus, &this->logger.sys->logger);
+                       break;
+               case CUSTOM_LOGGER:
+                       charon->bus->remove_logger(charon->bus,
+                                                                          &this->logger.custom->logger);
+                       break;
        }
        logger_entry_destroy(this);
 }
@@ -170,9 +267,10 @@ static void logger_entry_unregister_destroy(logger_entry_t *this)
 /**
  * Match a logger entry by target and whether it is a file or syslog logger
  */
-static bool logger_entry_match(logger_entry_t *this, char *target, bool *file)
+static bool logger_entry_match(logger_entry_t *this, char *target,
+                                                          logger_type_t *type)
 {
-       return this->file == *file && streq(this->target, target);
+       return this->type == *type && streq(this->target, target);
 }
 
 /**
@@ -228,28 +326,45 @@ static int get_syslog_facility(char *facility)
  * Returns an existing or newly created logger entry (if found, it is removed
  * from the given linked list of existing loggers)
  */
-static logger_entry_t *get_logger_entry(char *target, bool is_file_logger,
-                                                                               linked_list_t *existing)
+static logger_entry_t *get_logger_entry(char *target, logger_type_t type,
+                                                                               linked_list_t *existing,
+                                                                               custom_logger_constructor_t constructor)
 {
        logger_entry_t *entry;
 
        if (existing->find_first(existing, (void*)logger_entry_match,
-                                                       (void**)&entry, target, &is_file_logger) != SUCCESS)
+                                                       (void**)&entry, target, &type) != SUCCESS)
        {
                INIT(entry,
                        .target = strdup(target),
-                       .file = is_file_logger,
+                       .type = type,
                );
-               if (is_file_logger)
+               switch (type)
                {
-                       entry->logger.file = file_logger_create(target);
-               }
+                       case FILE_LOGGER:
+                               entry->logger.file = file_logger_create(target);
+                               break;
+                       case SYS_LOGGER:
 #ifdef HAVE_SYSLOG
-               else
-               {
-                       entry->logger.sys = sys_logger_create(get_syslog_facility(target));
-               }
+                               entry->logger.sys = sys_logger_create(
+                                                                                               get_syslog_facility(target));
+                               break;
+#else
+                               free(entry);
+                               return NULL;
 #endif /* HAVE_SYSLOG */
+                       case CUSTOM_LOGGER:
+                               if (constructor)
+                               {
+                                       entry->logger.custom = constructor(target);
+                               }
+                               if (!entry->logger.custom)
+                               {
+                                       free(entry);
+                                       return NULL;
+                               }
+                               break;
+               }
        }
        else
        {
@@ -266,9 +381,12 @@ static sys_logger_t *add_sys_logger(private_daemon_t *this, char *facility,
 {
        logger_entry_t *entry;
 
-       entry = get_logger_entry(facility, FALSE, current_loggers);
-       this->loggers->insert_last(this->loggers, entry);
-       return entry->logger.sys;
+       entry = get_logger_entry(facility, SYS_LOGGER, current_loggers, NULL);
+       if (entry)
+       {
+               this->loggers->insert_last(this->loggers, entry);
+       }
+       return entry ? entry->logger.sys : NULL;
 }
 
 /**
@@ -279,9 +397,30 @@ static file_logger_t *add_file_logger(private_daemon_t *this, char *filename,
 {
        logger_entry_t *entry;
 
-       entry = get_logger_entry(filename, TRUE, current_loggers);
-       this->loggers->insert_last(this->loggers, entry);
-       return entry->logger.file;
+       entry = get_logger_entry(filename, FILE_LOGGER, current_loggers, NULL);
+       if (entry)
+       {
+               this->loggers->insert_last(this->loggers, entry);
+       }
+       return entry ? entry->logger.file : NULL;
+}
+
+ /**
+ * Create or reuse a custom logger
+ */
+static custom_logger_t *add_custom_logger(private_daemon_t *this,
+                                                                                 custom_logger_entry_t *custom,
+                                                                                 linked_list_t *current_loggers)
+{
+       logger_entry_t *entry;
+
+       entry = get_logger_entry(custom->name, CUSTOM_LOGGER, current_loggers,
+                                                        custom->constructor);
+       if (entry)
+       {
+               this->loggers->insert_last(this->loggers, entry);
+       }
+       return entry ? entry->logger.custom : NULL;
 }
 
 /**
@@ -300,6 +439,11 @@ static void load_sys_logger(private_daemon_t *this, char *facility,
        }
 
        sys_logger = add_sys_logger(this, facility, current_loggers);
+       if (!sys_logger)
+       {
+               return;
+       }
+
        sys_logger->set_options(sys_logger,
                                lib->settings->get_bool(lib->settings, "%s.syslog.%s.ike_name",
                                                                                FALSE, lib->ns, facility));
@@ -339,6 +483,11 @@ static void load_file_logger(private_daemon_t *this, char *filename,
                                                "%s.filelog.%s.append", TRUE, lib->ns, filename);
 
        file_logger = add_file_logger(this, filename, current_loggers);
+       if (!file_logger)
+       {
+               return;
+       }
+
        file_logger->set_options(file_logger, time_format, add_ms, ike_name);
        file_logger->open(file_logger, flush_line, append);
 
@@ -353,12 +502,41 @@ static void load_file_logger(private_daemon_t *this, char *filename,
        charon->bus->add_logger(charon->bus, &file_logger->logger);
 }
 
+/**
+ * Load the given custom logger configured in strongswan.conf
+ */
+static void load_custom_logger(private_daemon_t *this,
+                                                          custom_logger_entry_t *entry,
+                                                          linked_list_t *current_loggers)
+{
+       custom_logger_t *custom_logger;
+       debug_t group;
+       level_t def;
+
+       custom_logger = add_custom_logger(this, entry, current_loggers);
+       if (!custom_logger)
+       {
+               return;
+       }
+
+       def = lib->settings->get_int(lib->settings, "%s.customlog.%s.default", 1,
+                                                                lib->ns, entry->name);
+       for (group = 0; group < DBG_MAX; group++)
+       {
+               custom_logger->set_level(custom_logger, group,
+                               lib->settings->get_int(lib->settings, "%s.customlog.%s.%N", def,
+                                                       lib->ns, entry->name, debug_lower_names, group));
+       }
+       charon->bus->add_logger(charon->bus, &custom_logger->logger);
+}
+
 METHOD(daemon_t, load_loggers, void,
        private_daemon_t *this, level_t levels[DBG_MAX], bool to_stderr)
 {
        enumerator_t *enumerator;
        linked_list_t *current_loggers;
        char *target;
+       int i;
 
        this->mutex->lock(this->mutex);
        handle_syslog_identifier(this);
@@ -380,6 +558,11 @@ METHOD(daemon_t, load_loggers, void,
        }
        enumerator->destroy(enumerator);
 
+       for (i = 0; i < custom_logger_count; ++i)
+       {
+               load_custom_logger(this, &custom_loggers[i], current_loggers);
+       }
+
        if (!this->loggers->get_count(this->loggers) && levels)
        {       /* setup legacy style default loggers configured via command-line */
                file_logger_t *file_logger;
@@ -431,15 +614,24 @@ METHOD(daemon_t, set_level, void,
        enumerator = this->loggers->create_enumerator(this->loggers);
        while (enumerator->enumerate(enumerator, &entry))
        {
-               if (entry->file)
-               {
-                       entry->logger.file->set_level(entry->logger.file, group, level);
-                       charon->bus->add_logger(charon->bus, &entry->logger.file->logger);
-               }
-               else
+               switch (entry->type)
                {
-                       entry->logger.sys->set_level(entry->logger.sys, group, level);
-                       charon->bus->add_logger(charon->bus, &entry->logger.sys->logger);
+                       case FILE_LOGGER:
+                               entry->logger.file->set_level(entry->logger.file, group, level);
+                               charon->bus->add_logger(charon->bus,
+                                                                               &entry->logger.file->logger);
+                               break;
+                       case SYS_LOGGER:
+                               entry->logger.sys->set_level(entry->logger.sys, group, level);
+                               charon->bus->add_logger(charon->bus,
+                                                                               &entry->logger.sys->logger);
+                               break;
+                       case CUSTOM_LOGGER:
+                               entry->logger.custom->set_level(entry->logger.custom, group,
+                                                                                               level);
+                               charon->bus->add_logger(charon->bus,
+                                                                               &entry->logger.sys->logger);
+                               break;
                }
        }
        enumerator->destroy(enumerator);
index d16bf1ddbcceba2798db05fd1a55026c806566e4..0b66ea39a755df9b1a5cd47a09ad22ca592a2c79 100644 (file)
  * for more details.
  */
 
+/*
+ * Copyright (C) 2016 secunet Security Networks AG
+ * Copyright (C) 2016 Thomas Egerer
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
 /**
  * @defgroup libcharon libcharon
  *
@@ -161,6 +184,7 @@ typedef struct daemon_t daemon_t;
 #include <network/socket_manager.h>
 #include <control/controller.h>
 #include <bus/bus.h>
+#include <bus/listeners/custom_logger.h>
 #include <sa/ike_sa_manager.h>
 #include <sa/child_sa_manager.h>
 #include <sa/trap_manager.h>
@@ -311,8 +335,8 @@ struct daemon_t {
                                                 bool to_stderr);
 
        /**
-        * Set the log level for the given log group for all configured file- and
-        * syslog-loggers.
+        * Set the log level for the given log group for all configured file-,
+        * syslog and custom-loggers.
         *
         * @param group         log group
         * @param level         log level
@@ -345,4 +369,15 @@ bool libcharon_init();
  */
 void libcharon_deinit();
 
+/**
+ * Register a custom logger constructor.
+ *
+ * To be called from __attribute__((constructor)) functions.
+ *
+ * @param name                         name of the logger (also used for loglevel config)
+ * @param constructor          constructor to create custom logger
+ */
+void register_custom_logger(char *name,
+                                                       custom_logger_constructor_t constructor);
+
 #endif /** DAEMON_H_ @}*/