Brian Waters | 13d9601 | 2017-12-08 16:53:31 -0600 | [diff] [blame] | 1 | /***************************************************************************************************** |
| 2 | * Software License Agreement (BSD License) |
| 3 | * Author : Souheil Ben Ayed <souheil@tera.ics.keio.ac.jp> |
| 4 | * |
| 5 | * Copyright (c) 2009-2010, Souheil Ben Ayed, Teraoka Laboratory of Keio University, and the WIDE Project |
| 6 | * All rights reserved. |
| 7 | * |
| 8 | * Redistribution and use of this software in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions are met: |
| 10 | * |
| 11 | * 1. Redistributions of source code must retain the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer. |
| 13 | * |
| 14 | * 2. Redistributions in binary form must reproduce the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer in the |
| 16 | * documentation and/or other materials provided with the distribution. |
| 17 | * |
| 18 | * 3. All advertising materials mentioning features or use of this software |
| 19 | * must display the following acknowledgement: |
| 20 | * This product includes software developed by Souheil Ben Ayed <souheil@tera.ics.keio.ac.jp>. |
| 21 | * |
| 22 | * 4. Neither the name of Souheil Ben Ayed, Teraoka Laboratory of Keio University or the WIDE Project nor the |
| 23 | * names of its contributors may be used to endorse or promote products |
| 24 | * derived from this software without specific prior written permission. |
| 25 | * |
| 26 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ''AS IS'' AND ANY |
| 27 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 28 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 29 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY |
| 30 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 31 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 32 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 33 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 34 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 35 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 36 | *****************************************************************************************************/ |
| 37 | |
| 38 | #include "diameap_common.h" |
| 39 | |
| 40 | |
| 41 | |
| 42 | /* DiamEAP Configuration */ |
| 43 | static struct diameap_conf conf; |
| 44 | struct diameap_conf * diameap_config = &conf; |
| 45 | |
| 46 | /* The entry point */ |
| 47 | static int diameap_main(char * conffile) |
| 48 | { |
| 49 | TRACE_ENTRY("%p", conffile); |
| 50 | |
| 51 | memset(diameap_config, 0, sizeof(struct diameap_conf)); |
| 52 | |
| 53 | /* Initialize configuration */ |
| 54 | CHECK_FCT(diameap_init(conffile)); |
| 55 | |
| 56 | /* Start Diameter EAP Application (Back-end Authenticator ) */ |
| 57 | CHECK_FCT(diameap_start_server()); |
| 58 | |
| 59 | /* Announce the support of Diameter EAP Application to other peers */ |
| 60 | CHECK_FCT(fd_disp_app_support(dataobj_diameap_app, dataobj_diameap_ven, 1, 0)); |
| 61 | |
| 62 | LOG_D("%sDiameter EAP Application Extension started successfully.",DIAMEAP_EXTENSION); |
| 63 | |
| 64 | return 0; |
| 65 | } |
| 66 | |
| 67 | void fd_ext_fini(void) |
| 68 | { |
| 69 | TRACE_DEBUG(FULL,"%sStopping the server",DIAMEAP_EXTENSION); |
| 70 | CHECK_FCT_DO(diameap_stop_server(), |
| 71 | { TRACE_DEBUG(INFO,"%sStopping the server: Error occurred.",DIAMEAP_EXTENSION);}); |
| 72 | |
| 73 | if (db_conn) |
| 74 | { |
| 75 | TRACE_DEBUG(FULL,"%sDisconnecting from MySQL Server",DIAMEAP_EXTENSION); |
| 76 | diameap_mysql_disconnect(); |
| 77 | } |
| 78 | |
| 79 | TRACE_DEBUG(FULL,"%sUnloading EAP Methods plug-ins: Error occurred.",DIAMEAP_EXTENSION); |
| 80 | CHECK_FCT_DO(diameap_plugin_unload(), |
| 81 | { TRACE_DEBUG(INFO,"%sUnloading EAP Methods plug-ins: Error occurred.",DIAMEAP_EXTENSION);}); |
| 82 | return; |
| 83 | } |
| 84 | |
| 85 | /* Define the entry point */ |
| 86 | EXTENSION_ENTRY("DiamEAP", diameap_main, "dict_eap") |
| 87 | ; |