Guido van Rossum | 22a1d36 | 1999-12-20 21:18:49 +0000 | [diff] [blame] | 1 | /*********************************************************** |
| 2 | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, |
| 3 | The Netherlands. |
| 4 | |
| 5 | All Rights Reserved |
| 6 | |
| 7 | Permission to use, copy, modify, and distribute this software and its |
| 8 | documentation for any purpose and without fee is hereby granted, |
| 9 | provided that the above copyright notice appear in all copies and that |
| 10 | both that copyright notice and this permission notice appear in |
| 11 | supporting documentation, and that the names of Stichting Mathematisch |
| 12 | Centrum or CWI or Corporation for National Research Initiatives or |
| 13 | CNRI not be used in advertising or publicity pertaining to |
| 14 | distribution of the software without specific, written prior |
| 15 | permission. |
| 16 | |
| 17 | While CWI is the initial source for this software, a modified version |
| 18 | is made available by the Corporation for National Research Initiatives |
| 19 | (CNRI) at the Internet address ftp://ftp.python.org. |
| 20 | |
| 21 | STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH |
| 22 | REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF |
| 23 | MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH |
| 24 | CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL |
| 25 | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 26 | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| 27 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 28 | PERFORMANCE OF THIS SOFTWARE. |
| 29 | |
| 30 | ******************************************************************/ |
| 31 | |
| 32 | /* Support for dynamic loading of extension modules */ |
| 33 | |
| 34 | #include "Python.h" |
| 35 | #include "importdl.h" |
| 36 | |
| 37 | #include <sys/types.h> |
| 38 | #include <sys/stat.h> |
| 39 | #if defined(__NetBSD__) && (NetBSD < 199712) |
| 40 | #include <nlist.h> |
| 41 | #include <link.h> |
| 42 | #define dlerror() "error in dynamic linking" |
| 43 | #else |
| 44 | #ifdef HAVE_DLFCN_H |
| 45 | #include <dlfcn.h> |
| 46 | #endif |
| 47 | #endif |
| 48 | |
| 49 | #ifndef RTLD_LAZY |
| 50 | #define RTLD_LAZY 1 |
| 51 | #endif |
| 52 | |
| 53 | |
| 54 | const struct filedescr _PyImport_DynLoadFiletab[] = { |
| 55 | {".so", "rb", C_EXTENSION}, |
| 56 | {"module.so", "rb", C_EXTENSION}, |
| 57 | {0, 0} |
| 58 | }; |
| 59 | |
| 60 | static struct { |
| 61 | dev_t dev; |
| 62 | ino_t ino; |
| 63 | void *handle; |
| 64 | } handles[128]; |
| 65 | static int nhandles = 0; |
| 66 | |
| 67 | |
| 68 | dl_funcptr _PyImport_GetDynLoadFunc(const char *name, const char *funcname, |
| 69 | const char *pathname, FILE *fp) |
| 70 | { |
| 71 | dl_funcptr p; |
| 72 | void *handle; |
| 73 | |
| 74 | if (fp != NULL) { |
| 75 | int i; |
| 76 | struct stat statb; |
| 77 | fstat(fileno(fp), &statb); |
| 78 | for (i = 0; i < nhandles; i++) { |
| 79 | if (statb.st_dev == handles[i].dev && |
| 80 | statb.st_ino == handles[i].ino) { |
| 81 | p = (dl_funcptr) dlsym(handles[i].handle, |
| 82 | funcname); |
| 83 | return p; |
| 84 | } |
| 85 | } |
| 86 | if (nhandles < 128) { |
| 87 | handles[nhandles].dev = statb.st_dev; |
| 88 | handles[nhandles].ino = statb.st_ino; |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | #ifdef RTLD_NOW |
| 93 | /* RTLD_NOW: resolve externals now |
| 94 | (i.e. core dump now if some are missing) */ |
| 95 | handle = dlopen(pathname, RTLD_NOW); |
| 96 | #else |
| 97 | if (Py_VerboseFlag) |
| 98 | printf("dlopen(\"%s\", %d);\n", pathname, |
| 99 | RTLD_LAZY); |
| 100 | handle = dlopen(pathname, RTLD_LAZY); |
| 101 | #endif /* RTLD_NOW */ |
| 102 | if (handle == NULL) { |
| 103 | PyErr_SetString(PyExc_ImportError, dlerror()); |
| 104 | return NULL; |
| 105 | } |
| 106 | if (fp != NULL && nhandles < 128) |
| 107 | handles[nhandles++].handle = handle; |
| 108 | p = (dl_funcptr) dlsym(handle, funcname); |
| 109 | return p; |
| 110 | } |