blob: 66fe610f6da0ee2196ba8cdd45cd47140e4650d8 [file] [log] [blame]
Brian Waters13d96012017-12-08 16:53:31 -06001/*********************************************************************************************************
2* Software License Agreement (BSD License) *
3* Author: Sebastien Decugis <sdecugis@freediameter.net> *
4* *
5* Copyright (c) 2011, WIDE Project and NICT *
6* All rights reserved. *
7* *
8* Redistribution and use of this software in source and binary forms, with or without modification, are *
9* permitted provided that the following conditions are met: *
10* *
11* * Redistributions of source code must retain the above *
12* copyright notice, this list of conditions and the *
13* following disclaimer. *
14* *
15* * Redistributions in binary form must reproduce the above *
16* copyright notice, this list of conditions and the *
17* following disclaimer in the documentation and/or other *
18* materials provided with the distribution. *
19* *
20* * Neither the name of the WIDE Project or NICT nor the *
21* names of its contributors may be used to endorse or *
22* promote products derived from this software without *
23* specific prior written permission of WIDE Project and *
24* NICT. *
25* *
26* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED *
27* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
28* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR *
29* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT *
30* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS *
31* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR *
32* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF *
33* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
34*********************************************************************************************************/
35
36/*
37 * This extension provides a simple Diameter network emulator mechanism.
38 * It allows the introduction of delays and duplicates of Diameter messages.
39 * See test_netemul.conf.sample file for the format of the configuration file.
40 */
41
42#include "test_netemul.h"
43
44/* The configuration structure */
45struct tne_conf tne_conf;
46
47
48
49/* Proxying callback */
50static int tne_fwd_cb(void * cbdata, struct msg ** msg)
51{
52 struct msg * m;
53
54 TRACE_ENTRY("%p %p", cbdata, msg);
55
56 m = *msg;
57 *msg = NULL;
58
59 TRACE_DEBUG(FULL, "[tne] Processing message %p", m);
60 CHECK_FCT( tne_process_message(m) );
61
62 return 0;
63}
64
65
66static struct fd_rt_fwd_hdl * fwd_hdl = NULL;
67
68/* Register the callbacks to the daemon */
69static int tne_main(char * conffile)
70{
71 TRACE_ENTRY("%p", conffile);
72
73 /* Initialize the configuration */
74 memset(&tne_conf, 0, sizeof(tne_conf));
75 tne_conf.lat_avg = 500;
76 tne_conf.lat_dev = 20;
77 tne_conf.dupl_proba = 1E-2;
78
79 /* Parse the configuration file */
80 CHECK_FCT( tne_conf_handle(conffile) );
81
82 /* Initialize the process module */
83 CHECK_FCT( tne_process_init() );
84
85 /* Now, register the proxying callback */
86 CHECK_FCT( fd_rt_fwd_register ( tne_fwd_cb, NULL, RT_FWD_REQ, &fwd_hdl ) );
87
88 return 0;
89}
90
91/* Cleanup the callbacks */
92void fd_ext_fini(void)
93{
94 TRACE_ENTRY();
95
96 /* Unregister the module */
97 CHECK_FCT_DO( fd_rt_fwd_unregister ( fwd_hdl, NULL ), /* continue */ );
98
99 /* Destroy the process thread */
100 CHECK_FCT_DO( tne_process_fini ( ), /* continue */ );
101
102 return ;
103}
104
105/* Define the entry point function */
106EXTENSION_ENTRY("test_netemul", tne_main);