/* * FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application * Copyright (C) 2005-2009, James Martelletti * * Version: MPL 1.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application * * The Initial Developer of the Original Code is * James Martelletti * Portions created by the Initial Developer are Copyright (C) * the Initial Developer. All Rights Reserved. * * Contributor(s): * * James Martelletti * * * mod_syslog.c -- System Logging * */ #include #include #include #define DEFAULT_IDENT "freeswitch" #define DEFAULT_FACILITY "user" #define DEFAULT_LEVEL "warning" #define DEFAULT_FORMAT "[message]" #define MAX_LENGTH 1024 SWITCH_MODULE_LOAD_FUNCTION(mod_syslog_load); SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_syslog_shutdown); SWITCH_MODULE_DEFINITION(mod_syslog, mod_syslog_load, mod_syslog_shutdown, NULL); static switch_status_t load_config(void); static switch_log_level_t log_level; static struct { char *ident; char *format; } globals; SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_ident, globals.ident); SWITCH_DECLARE_GLOBAL_STRING_FUNC(set_global_format, globals.format); static switch_loadable_module_interface_t console_module_interface = { /*.module_name */ modname, /*.endpoint_interface */ NULL, /*.timer_interface */ NULL, /*.dialplan_interface */ NULL, /*.codec_interface */ NULL, /*.application_interface */ NULL, /*.api_interface */ NULL, /*.file_interface */ NULL, /*.speech_interface */ NULL, /*.directory_interface */ NULL }; static switch_status_t mod_syslog_logger(const switch_log_node_t *node, switch_log_level_t level) { int syslog_level; switch (level) { case SWITCH_LOG_DEBUG: syslog_level = LOG_DEBUG; break; case SWITCH_LOG_INFO: syslog_level = LOG_INFO; break; case SWITCH_LOG_NOTICE: syslog_level = LOG_NOTICE; break; case SWITCH_LOG_WARNING: syslog_level = LOG_WARNING; break; case SWITCH_LOG_ERROR: syslog_level = LOG_ERR; break; case SWITCH_LOG_CRIT: syslog_level = LOG_CRIT; break; case SWITCH_LOG_ALERT: syslog_level = LOG_ALERT; break; default: syslog_level = LOG_NOTICE; break; } /* don't log blank lines */ if (!switch_strlen_zero(node->data) && (strspn(node->data, " \t\r\n") < strlen(node->data))) { syslog(syslog_level, "%s", node->data); } return SWITCH_STATUS_SUCCESS; } static switch_status_t load_config(void) { char *cf = "syslog.conf"; switch_xml_t cfg, xml, settings, param; /* default log level */ log_level = SWITCH_LOG_WARNING; if (!(xml = switch_xml_open_cfg(cf, &cfg, NULL))) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Open of %s failed\n", cf); } else { if ((settings = switch_xml_child(cfg, "settings"))) { for (param = switch_xml_child(settings, "param"); param; param = param->next) { char *var = (char *) switch_xml_attr_soft(param, "name"); char *val = (char *) switch_xml_attr_soft(param, "value"); if (!strcmp(var, "ident")) { set_global_ident(val); } else if (!strcmp(var, "format")) { set_global_format(val); } else if (!strcasecmp(var, "loglevel") && !switch_strlen_zero(val)) { log_level = switch_log_str2level(val); if (log_level == SWITCH_LOG_INVALID) { log_level = SWITCH_LOG_WARNING; } } } } switch_xml_free(xml); } if (switch_strlen_zero(globals.ident)) { set_global_ident(DEFAULT_IDENT); } if (switch_strlen_zero(globals.format)) { set_global_format(DEFAULT_FORMAT); } return 0; } SWITCH_MODULE_LOAD_FUNCTION(mod_syslog_load) { switch_status_t status; *module_interface = &console_module_interface; memset(&globals, 0, sizeof(globals)); if ((status = load_config()) != SWITCH_STATUS_SUCCESS) { return status; } openlog(globals.ident, LOG_PID, LOG_USER); setlogmask(LOG_UPTO(LOG_DEBUG)); switch_log_bind_logger(mod_syslog_logger, log_level, SWITCH_FALSE); switch_safe_free(globals.ident); switch_safe_free(globals.format); return SWITCH_STATUS_SUCCESS; } SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_syslog_shutdown) { closelog(); switch_log_unbind_logger(mod_syslog_logger); return SWITCH_STATUS_SUCCESS; } /* For Emacs: * Local Variables: * mode:c * indent-tabs-mode:t * tab-width:4 * c-basic-offset:4 * End: * For VIM: * vim:set softtabstop=4 shiftwidth=4 tabstop=4 expandtab: */