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 | #ifndef _EXTENSION_H |
| 37 | #define _EXTENSION_H |
| 38 | |
| 39 | #ifdef __cplusplus |
| 40 | extern "C" { |
| 41 | #endif |
| 42 | |
| 43 | /* Include definition of freeDiameter API */ |
| 44 | #include <freeDiameter/freeDiameter-host.h> |
| 45 | #include <freeDiameter/libfdcore.h> |
| 46 | |
| 47 | /* Macro that define the entry point of the extension */ |
| 48 | #define EXTENSION_ENTRY(_name, _function, _depends...) \ |
| 49 | const char *fd_ext_depends[] = { _name , ## _depends , NULL }; \ |
| 50 | static int extension_loaded = 0; \ |
| 51 | int fd_ext_init(int major, int minor, char * conffile) { \ |
| 52 | if ((major != FD_PROJECT_VERSION_MAJOR) \ |
| 53 | || (minor != FD_PROJECT_VERSION_MINOR)) { \ |
| 54 | TRACE_ERROR("This extension (" _name ") was compiled for a different version of freeDiameter."); \ |
| 55 | TRACE_DEBUG(INFO, "daemon %d.%d != ext %d.%d", \ |
| 56 | major, minor, \ |
| 57 | FD_PROJECT_VERSION_MAJOR, FD_PROJECT_VERSION_MINOR); \ |
| 58 | return EINVAL; \ |
| 59 | } \ |
| 60 | if (extension_loaded) { \ |
| 61 | TRACE_ERROR("Extension (" _name ") cannot be loaded twice!"); \ |
| 62 | return ENOTSUP; \ |
| 63 | } \ |
| 64 | LOG_N("Loading (" _name ") extension."); \ |
| 65 | return (_function)(conffile); \ |
| 66 | } |
| 67 | |
| 68 | #define EXTENSION_ENTRY2(_name, _dictfunc, _rulesfunction, _depends...) \ |
| 69 | EXTENSION_ENTRY(_name, _dictfunc, ## _depends ) \ |
| 70 | int fd_ext_init2(int major, int minor, char * conffile) { \ |
| 71 | if ((major != FD_PROJECT_VERSION_MAJOR) \ |
| 72 | || (minor != FD_PROJECT_VERSION_MINOR)) { \ |
| 73 | TRACE_ERROR("This extension (" _name ") was compiled for a different version of freeDiameter."); \ |
| 74 | TRACE_DEBUG(INFO, "daemon %d.%d != ext %d.%d", \ |
| 75 | major, minor, \ |
| 76 | FD_PROJECT_VERSION_MAJOR, FD_PROJECT_VERSION_MINOR); \ |
| 77 | return EINVAL; \ |
| 78 | } \ |
| 79 | if (extension_loaded) { \ |
| 80 | TRACE_ERROR("Extension (" _name ") cannot be loaded twice!"); \ |
| 81 | return ENOTSUP; \ |
| 82 | } \ |
| 83 | extension_loaded++; \ |
| 84 | return (_rulesfunction)(conffile); \ |
| 85 | } \ |
| 86 | int fd_ext_parselocalrules(char *conffile) { \ |
| 87 | return (_rulesfunction)(conffile); \ |
| 88 | } |
| 89 | |
| 90 | #ifdef __cplusplus |
| 91 | } |
| 92 | #endif |
| 93 | |
| 94 | #endif /* _EXTENSION_H */ |
| 95 | |
| 96 | #if 0 |
| 97 | static int dict_entry(char * conffile) |
| 98 | { |
| 99 | int x = (_dictfunc)(conffile); \ |
| 100 | if (x != 0) return x; \ |
| 101 | return (_rulesfunction)(conffile); \ |
| 102 | } |
| 103 | #endif |