# HG changeset patch # User Thomas Klausner # Date 1557650181 -7200 # Node ID 25f86f4cdde87cecef65a3583f8e873a197675a0 # Parent 51a0521cd065b7a083af8da95fe58b047fdfb62c test_cc: new extension that auto-replies to Credit-Control-Requests Does not fill in any relevant data, just returns a success. diff -r 51a0521cd065 -r 25f86f4cdde8 extensions/test_cc/CMakeLists.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/extensions/test_cc/CMakeLists.txt Sun May 12 10:36:21 2019 +0200 @@ -0,0 +1,13 @@ +# The test_cc extension +PROJECT("Credit Control dummy server" C) + +FD_ADD_EXTENSION(test_cc test_cc.c) + + +#### +## INSTALL section ## + +INSTALL(TARGETS test_cc + LIBRARY DESTINATION ${INSTALL_EXTENSIONS_SUFFIX} + COMPONENT freeDiameter-debug-tools) + diff -r 51a0521cd065 -r 25f86f4cdde8 extensions/test_cc/test_cc.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/extensions/test_cc/test_cc.c Sun May 12 10:36:21 2019 +0200 @@ -0,0 +1,100 @@ +/********************************************************************************************************** + * Software License Agreement(BSD License) * + * Author: Thomas Klausner * + * * + * Copyright(c) 2019, Thomas Klausner * + * All rights reserved. * + * * + * Written under contract by Effortel Technologies SA, http://effortel.com/ * + * * + * Redistribution and use of this software in source and binary forms, with or without modification, are * + * permitted provided that the following conditions are met: * + * * + * * Redistributions of source code must retain the above * + * copyright notice, this list of conditions and the * + * following disclaimer. * + * * + * * Redistributions in binary form must reproduce the above * + * copyright notice, this list of conditions and the * + * following disclaimer in the documentation and/or other * + * materials provided with the distribution. * + * * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED * + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A * + * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR * + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES(INCLUDING, BUT NOT * + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR * + * TORT(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * + **********************************************************************************************************/ + +/* This extension simply receives CCR and sends CCA after displaying the content, but does not store any data */ + +#include + +struct disp_hdl *ccr_handler_hdl; + +static int ccr_handler(struct msg ** msg, struct avp * avp, struct session * sess, void * data, enum disp_action * act) +{ + struct msg_hdr *hdr = NULL; + + TRACE_ENTRY("%p %p %p %p", msg, avp, sess, act); + + if(msg == NULL) + return EINVAL; + + CHECK_FCT(fd_msg_hdr(*msg, &hdr)); + if(hdr->msg_flags & CMD_FLAG_REQUEST) { + /* Request received, answer it */ + struct msg *answer; + os0_t s; + size_t sl; + + /* Create the answer message */ + CHECK_FCT(fd_msg_new_answer_from_req(fd_g_config->cnf_dict, msg, 0)); + answer = *msg; + /* TODO copy/fill in AVPs in the answer */ + /* TODO make result configurable (depending on an AVP?) */ + CHECK_FCT(fd_msg_rescode_set(answer, "DIAMETER_SUCCESS", NULL, NULL, 1)); + + fd_log_notice("--------------Received the following Credit Control Request:--------------"); + + CHECK_FCT(fd_sess_getsid(sess, &s, &sl)); + fd_log_notice("Session: %.*s",(int)sl, s); + + fd_log_notice("----------------------------------------------------------------------"); + + /* Send the answer */ + CHECK_FCT(fd_msg_send(msg, NULL, NULL)); + + } else { + /* We received an answer message, just discard it */ + CHECK_FCT(fd_msg_free(*msg)); + *msg = NULL; + } + + return 0; +} + +/* entry hook: register callback */ +static int cc_entry(char * conffile) +{ + struct disp_when data; + + TRACE_ENTRY("%p", conffile); + + memset(&data, 0, sizeof(data)); + + /* Advertise the support for the Diameter Credit Control application in the peer */ + CHECK_FCT( fd_dict_search( fd_g_config->cnf_dict, DICT_APPLICATION, APPLICATION_BY_NAME, "Diameter Credit Control Application", &data.app, ENOENT) ); + CHECK_FCT( fd_disp_app_support ( data.app, NULL, 1, 0 ) ); + + /* register handler for CCR */ + CHECK_FCT( fd_dict_search( fd_g_config->cnf_dict, DICT_COMMAND, CMD_BY_NAME, "Credit-Control-Request", &data.command, ENOENT) ); + CHECK_FCT( fd_disp_register( ccr_handler, DISP_HOW_CC, &data, NULL, &ccr_handler_hdl ) ); + + return 0; +} + +EXTENSION_ENTRY("test_cc", cc_entry);