/** * $Id$ * * Copyright (C) 2001-2003 FhG Fokus * * This file is part of ser, a free SIP server. * * ser 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 * * For a license to use the ser software under conditions * other than those described here, or to purchase support for this * software, please contact iptel.org by e-mail at the following addresses: * info@iptel.org * * ser 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 "../../sr_module.h" #include "../../dprint.h" #include "../../error.h" #include "../../mem/mem.h" #include "xl_lib.h" #define NO_SCRIPT -1 MODULE_VERSION char *log_buf = NULL; /** parameters */ int buf_size=4096; /** module functions */ static int mod_init(void); static int child_init(int); static int xlog(struct sip_msg*, char*, char*); static int xdbg(struct sip_msg*, char*, char*); static int xlog_fixup(void** param, int param_no); static int xdbg_fixup(void** param, int param_no); static void destroy(void); static cmd_export_t cmds[]={ {"xlog", xlog, 2, xlog_fixup, REQUEST_ROUTE | FAILURE_ROUTE | ONREPLY_ROUTE | BRANCH_ROUTE}, {"xdbg", xdbg, 1, xdbg_fixup, REQUEST_ROUTE | FAILURE_ROUTE | ONREPLY_ROUTE | BRANCH_ROUTE}, {"xbind", (cmd_function)xl_bind, NO_SCRIPT, 0, 0}, {"xprint", (cmd_function)xl_print_log, NO_SCRIPT, 0, 0}, {"xparse", (cmd_function)xl_parse_format, NO_SCRIPT, 0, 0}, {"shm_xparse", (cmd_function)xl_shm_parse_format, NO_SCRIPT, 0, 0}, {"xparse2", (cmd_function)xl_parse_format2, NO_SCRIPT, 0, 0}, {"shm_xparse2", (cmd_function)xl_shm_parse_format2, NO_SCRIPT, 0, 0}, {"xfree", (cmd_function)xl_elog_free_all, NO_SCRIPT, 0, 0}, {"shm_xfree", (cmd_function)xl_elog_shm_free_all, NO_SCRIPT, 0, 0}, {"xnulstr", (cmd_function)xl_get_nulstr, NO_SCRIPT, 0, 0}, {0,0,0,0,0} }; static param_export_t params[]={ {"buf_size", PARAM_INT, &buf_size}, {0,0,0} }; /** module exports */ struct module_exports exports= { "xlog", cmds, 0, /* RPC methods */ params, mod_init, /* module initialization function */ (response_function) 0, (destroy_function) destroy, 0, child_init /* per-child init function */ }; /** * init module function */ static int mod_init(void) { DBG("XLOG: initializing ...\n"); log_buf = (char*)pkg_malloc((buf_size+1)*sizeof(char)); if(log_buf==NULL) { LOG(L_ERR, "XLOG:mod_init: ERROR: no more memory\n"); return -1; } return xl_mod_init(); } /** * Initialize children */ static int child_init(int rank) { DBG("XLOG: init_child [%d] pid [%d]\n", rank, getpid()); return xl_child_init(rank); } /** */ static int xlog(struct sip_msg* msg, char* lev, char* frm) { int log_len, level; if (get_int_fparam(&level, msg, (fparam_t *)lev)) { LOG(L_ERR, "XLOG:xlog: cannot get log level\n"); return -1; } if (level < L_ALERT) level = L_ALERT; else if (level > L_DBG) level = L_DBG; log_len = buf_size; if(xl_print_log(msg, (xl_elog_t*)frm, log_buf, &log_len)<0) return -1; /* log_buf[log_len] = '\0'; */ LOG_(DEFAULT_FACILITY, level, "