Brian Waters | 13d9601 | 2017-12-08 16:53:31 -0600 | [diff] [blame] | 1 | /********************************************************************************************************* |
| 2 | * Software License Agreement (BSD License) * |
| 3 | * Author: Sebastien Decugis <sdecugis@freediameter.net> * |
| 4 | * * |
| 5 | * Copyright (c) 2013, 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 | /* Sample radius/diameter gateway plugin, for developers to see the structure of a plugin. */ |
| 37 | |
| 38 | #include "rgw_common.h" |
| 39 | |
| 40 | /* The state of this extension */ |
| 41 | struct rgwp_config { |
| 42 | /* In a real extension, we would store the parsed configuration file, and the states of the extension */ |
| 43 | int init; |
| 44 | |
| 45 | /* If needed to store information between sent Diameter request and received answer, the session is probably the best place. |
| 46 | See rgwx_echodrop for an example. */ |
| 47 | }; |
| 48 | |
| 49 | /* The function called at plugin initialization */ |
| 50 | static int sample_conf_parse ( char * conf_file, struct rgwp_config ** state ) |
| 51 | { |
| 52 | TRACE_ENTRY("%p %p", conf_file, state); |
| 53 | CHECK_PARAMS(state); |
| 54 | |
| 55 | CHECK_MALLOC( *state = malloc(sizeof(struct rgwp_config)) ); |
| 56 | |
| 57 | (*state)->init = 1; |
| 58 | |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | /* This function is called when the plugin is unloaded, to cleanup all the states */ |
| 63 | static void sample_conf_free(struct rgwp_config * state) |
| 64 | { |
| 65 | TRACE_ENTRY("%p", state); |
| 66 | CHECK_PARAMS_DO( state, ); |
| 67 | free(state); |
| 68 | return; |
| 69 | } |
| 70 | |
| 71 | /* This function is called on incoming RADIUS messages. It should handle (some) RADIUS data and store into the Diameter message. */ |
| 72 | static int sample_rad_req( struct rgwp_config * cs, struct radius_msg * rad_req, struct radius_msg ** rad_ans, struct msg ** diam_fw, struct rgw_client * cli ) |
| 73 | { |
| 74 | TRACE_ENTRY("%p %p %p %p %p", cs, rad_req, rad_ans, diam_fw, cli); |
| 75 | CHECK_PARAMS(cs); |
| 76 | TRACE_DEBUG(INFO, "RADIUS/Diameter Sample plugin received a new RADIUS message."); |
| 77 | return 0; |
| 78 | } |
| 79 | |
| 80 | /* This function is called when a Diameter answer is coming back. It should remove the AVPs and add the attributes in the RADIUS message. */ |
| 81 | static int sample_diam_ans( struct rgwp_config * cs, struct msg ** diam_ans, struct radius_msg ** rad_fw, struct rgw_client * cli ) |
| 82 | { |
| 83 | TRACE_ENTRY("%p %p %p %p", cs, diam_ans, rad_fw, cli); |
| 84 | CHECK_PARAMS(cs); |
| 85 | TRACE_DEBUG(INFO, "RADIUS/Diameter Sample plugin received a new Diameter answer."); |
| 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | |
| 90 | /* Finally, we declare the structure that will be loaded by main RADIUS/Diameter gateway extension */ |
| 91 | struct rgw_api rgwp_descriptor = { |
| 92 | .rgwp_name = "sample", |
| 93 | .rgwp_conf_parse = sample_conf_parse, |
| 94 | .rgwp_conf_free = sample_conf_free, |
| 95 | .rgwp_rad_req = sample_rad_req, |
| 96 | .rgwp_diam_ans = sample_diam_ans |
| 97 | }; |