/* * $Id$ * * Copyright (C) 2012 Smile Communications, jason.penton@smilecoms.com * Copyright (C) 2012 Smile Communications, richard.good@smilecoms.com * * The initial version of this code was written by Dragos Vingarzan * (dragos(dot)vingarzan(at)fokus(dot)fraunhofer(dot)de and the * Fruanhofer Institute. It was and still is maintained in a separate * branch of the original SER. We are therefore migrating it to * Kamailio/SR and look forward to maintaining it from here on out. * 2011/2012 Smile Communications, Pty. Ltd. * ported/maintained/improved by * Jason Penton (jason(dot)penton(at)smilecoms.com and * Richard Good (richard(dot)good(at)smilecoms.com) as part of an * effort to add full IMS support to Kamailio/SR using a new and * improved architecture * * NB: Alot of this code was originally part of OpenIMSCore, * FhG Fokus. * Copyright (C) 2004-2006 FhG Fokus * Thanks for great work! This is an effort to * break apart the various CSCF functions into logically separate * components. We hope this will drive wider use. We also feel * that in this way the architecture is more complete and thereby easier * to manage in the Kamailio/SR environment * * This file is part of Kamailio, a free SIP server. * * Kamailio 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 * * Kamailio 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ #include "mod.h" #include "../../sr_module.h" #include "../../globals.h" #include "diameter_peer.h" #include "config.h" #include "cdp_load.h" #include "cdp_rpc.h" #include "../../rpc.h" #include "../../rpc_lookup.h" #include "../../cfg/cfg_struct.h" #include "cdp_stats.h" MODULE_VERSION char* config_file="DiameterPeer.xml"; /**< default DiameterPeer configuration filename */ unsigned int latency_threshold = 500; /**< default threshold for Diameter calls (ms) */ unsigned int *latency_threshold_p = &latency_threshold; unsigned int workerq_latency_threshold = 100; /**< default threshold for putting a task into worker queue (ms) */ unsigned int workerq_length_threshold_percentage = 0; /**< default threshold for worker queue length, percentage of max queue length - by default disabled */ extern dp_config *config; /**< DiameterPeer configuration structure */ #define EXP_FUNC(NAME) \ {#NAME, (cmd_function)NAME, NO_SCRIPT, 0, 0}, /** * Exported functions. This is the API available for use from other SER modules. * If you require more, please add them here. *
* - load_cdp() - find and load the CDiameterPeer function bindings *
* - AAACreateRequest() - create a diameter request #AAAMessage * - AAACreateResponse() - create a diameter response #AAAMessage * - AAAFreeMessage() - free up the memory used in a Diameter message *
* - AAASendMessage() - asynchronously send a message * - AAASendMessageToPeer() - asynchronously send a message to a forced peer * - AAASendRecvMessage() - synchronously send a message and get the response * - AAASendRecvMessageToPeer() - synchronously send a message and get the response to a forced peer *
* - AAACreateSession() - create a diameter #AAASessionId * - AAADropSession() - drop a diameter #AAASessionId *
* - AAACreateTransaction() - create a diameter #AAATransaction * - AAADropTransaction() - drop a diameter #AAATransaction *
* - AAACreateAVP() - create an #AAA_AVP * - AAAAddAVPToMessage() - add an #AAA_AVP to a #AAAMessage * - AAAFindMatchingAVP() - find an #AAA_AVP inside a #AAAMessage * - AAAGetNextAVP() - get the next #AAA_AVP from the #AAAMessage * - AAAFreeAVP() - free the memory taken by the #AAA_AVP * - AAAGroupAVPS() - group a #AAA_AVP_LIST of #AAA_AVP into a grouped #AAA_AVP * - AAAUngroupAVPS() - ungroup a grouped #AAA_AVP into a #AAA_AVP_LIST of #AAA_AVP * - AAAFindMatchingAVPList() - find an #AAA_AVP inside a #AAA_AVP_LIST * - AAAFreeAVPList() - free the memory taken by the all members of #AAA_AVP_LIST *
* - AAAAddRequestHandler() - add a #AAARequestHandler_f callback to request being received
* - AAAAddResponseHandler() - add a #AAAResponseHandler_f callback to responses being received
*/
static cmd_export_t cdp_cmds[] = {
{"load_cdp", (cmd_function)load_cdp, NO_SCRIPT, 0, 0},
EXP_FUNC(AAACreateRequest)
EXP_FUNC(AAACreateResponse)
EXP_FUNC(AAAFreeMessage)
EXP_FUNC(AAACreateAVP)
EXP_FUNC(AAAAddAVPToMessage)
EXP_FUNC(AAAAddAVPToList)
EXP_FUNC(AAAFindMatchingAVP)
EXP_FUNC(AAAFindMatchingAVPList)
EXP_FUNC(AAAGetNextAVP)
EXP_FUNC(AAAFreeAVP)
EXP_FUNC(AAAFreeAVPList)
EXP_FUNC(AAAGroupAVPS)
EXP_FUNC(AAAUngroupAVPS)
EXP_FUNC(AAASendMessage)
EXP_FUNC(AAASendMessageToPeer)
EXP_FUNC(AAASendRecvMessage)
EXP_FUNC(AAASendRecvMessageToPeer)
EXP_FUNC(AAAAddRequestHandler)
EXP_FUNC(AAAAddResponseHandler)
EXP_FUNC(AAACreateTransaction)
EXP_FUNC(AAADropTransaction)
EXP_FUNC(AAACreateSession)
EXP_FUNC(AAAMakeSession)
EXP_FUNC(AAAGetSession)
EXP_FUNC(AAADropSession)
EXP_FUNC(AAASessionsLock)
EXP_FUNC(AAASessionsUnlock)
EXP_FUNC(AAACreateClientAuthSession)
EXP_FUNC(AAACreateServerAuthSession)
EXP_FUNC(AAAGetAuthSession)
EXP_FUNC(AAADropAuthSession)
EXP_FUNC(AAATerminateAuthSession)
EXP_FUNC(AAACreateCCAccSession)
EXP_FUNC(AAAStartChargingCCAccSession)
EXP_FUNC(AAAGetCCAccSession)
EXP_FUNC(AAADropCCAccSession)
EXP_FUNC(AAATerminateCCAccSession)
{ 0, 0, 0, 0, 0 }
};
/**
* Exported parameters.
* - config_file - Configuration filename. See configdtd.h for the structure and ConfigExample.xml.
*/
static param_export_t cdp_params[] = {
{ "config_file", PARAM_STRING, &config_file}, /**< configuration filename */
{ "latency_threshold", PARAM_INT, &latency_threshold}, /**