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) 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 | #include "tests.h" |
| 37 | |
| 38 | #ifndef BUILD_DIR |
| 39 | #error "Missing BUILD_DIR information" |
| 40 | #endif /* BUILD_DIR */ |
| 41 | |
| 42 | #include <sys/types.h> |
| 43 | #include <dirent.h> |
| 44 | #include <libgen.h> |
| 45 | #include <dlfcn.h> |
| 46 | |
| 47 | /* Main test routine */ |
| 48 | int main(int argc, char *argv[]) |
| 49 | { |
| 50 | DIR *dir; |
| 51 | struct dirent *dp; |
| 52 | char fullname[512]; |
| 53 | int pathlen; |
| 54 | |
| 55 | /* First, initialize the daemon modules */ |
| 56 | INIT_FD(); |
| 57 | CHECK( 0, fd_queues_init() ); |
| 58 | CHECK( 0, fd_msg_init() ); |
| 59 | CHECK( 0, fd_rtdisp_init() ); |
| 60 | |
| 61 | /* Find all extensions which have been compiled along the test */ |
| 62 | TRACE_DEBUG(INFO, "Loading from: '%s'", BUILD_DIR "/extensions"); |
| 63 | CHECK( 0, (dir = opendir (BUILD_DIR "/extensions")) == NULL ? 1 : 0 ); |
| 64 | pathlen = snprintf(fullname, sizeof(fullname), BUILD_DIR "/extensions/"); |
| 65 | |
| 66 | while ((dp = readdir (dir)) != NULL) { |
| 67 | char * dot = strrchr(dp->d_name, '.'); |
| 68 | if (dot && !(strcmp(dot, ".fdx"))) { |
| 69 | /* We found a file with name *.fdx, attempt to load it */ |
| 70 | void *hdl, * ep; |
| 71 | snprintf(fullname + pathlen, sizeof(fullname) - pathlen, "%s", dp->d_name); |
| 72 | |
| 73 | TRACE_DEBUG(INFO, "Extension: '%s'", dp->d_name); |
| 74 | |
| 75 | /* load */ |
| 76 | hdl = dlopen(fullname, RTLD_NOW | RTLD_GLOBAL); |
| 77 | if (!hdl) { |
| 78 | TRACE_DEBUG(INFO, "Unable to load '%s': %s.", fullname, dlerror()); |
| 79 | } |
| 80 | CHECK( 0, hdl == NULL ? 1 : 0 ); |
| 81 | |
| 82 | /* resolve entry */ |
| 83 | ep = dlsym( hdl, "fd_ext_init" ); |
| 84 | if (!ep) { |
| 85 | TRACE_DEBUG(INFO, "No 'fd_ext_init' entry point in '%s': %s.", fullname, dlerror()); |
| 86 | } |
| 87 | CHECK( 0, ep == NULL ? 1 : 0 ); |
| 88 | |
| 89 | /* Done, now unload */ |
| 90 | #ifndef SKIP_DLCLOSE |
| 91 | CHECK( 0, dlclose(hdl) ); |
| 92 | #endif /* SKIP_DLCLOSE */ |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | CHECK( 0, closedir(dir) ); |
| 97 | |
| 98 | PASSTEST(); |
| 99 | } |
| 100 | |