Sat, 19 Jan 2013 20:51:16 +0100
some fixes
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 2013 Olaf Wintermann. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include <dlfcn.h> #include "init.h" #include "../ucx/string.h" #include "../daemon/func.h" int init_test(pblock *pb, Session *sn, Request *rq) { printf("init-test\n"); return REQ_PROCEED; } int load_modules(pblock *pb, Session *sn, Request *rq) { printf("load_modules\n"); char *shlib = pblock_findval("shlib", pb); char *funcs = pblock_findval("funcs", pb); if(shlib == NULL || funcs == NULL) { fprintf(stderr, "load-modules: missing parameter\n"); } /* load lib */ void *lib = dlopen(shlib, RTLD_GLOBAL | RTLD_NOW); if(lib == NULL) { fprintf(stderr, "Cannot load library %s\n", shlib); return REQ_ABORTED; } /* load function symbols */ int b = 0; for(int i=0;;i++) { if(funcs[i] == ',' || funcs[i] == 0) { if(funcs[i] == 0) { b = 1; } funcs[i] = 0; /* we have a function name */ void *sym = dlsym(lib, funcs); if(sym == NULL) { fprintf(stderr, "Cannot load symbol %s\n", funcs); return REQ_ABORTED; } struct FuncStruct fc; fc.func = (FuncPtr)sym; fc.name = sstrdup(sstr(funcs)).ptr; add_function(&fc); if(b) { break; } funcs += i + 1; i = 0; } } return REQ_PROCEED; }