blob: d3c5a6ee34aae332735dfb502b033525a94df5b1 [file] [log] [blame]
Guido van Rossum22a1d361999-12-20 21:18:49 +00001/***********************************************************
2Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
4
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI or Corporation for National Research Initiatives or
13CNRI not be used in advertising or publicity pertaining to
14distribution of the software without specific, written prior
15permission.
16
17While CWI is the initial source for this software, a modified version
18is made available by the Corporation for National Research Initiatives
19(CNRI) at the Internet address ftp://ftp.python.org.
20
21STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
22REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
23MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
24CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
25DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
26PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
27TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
28PERFORMANCE 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
54const struct filedescr _PyImport_DynLoadFiletab[] = {
55 {".so", "rb", C_EXTENSION},
56 {"module.so", "rb", C_EXTENSION},
57 {0, 0}
58};
59
60static struct {
61 dev_t dev;
62 ino_t ino;
63 void *handle;
64} handles[128];
65static int nhandles = 0;
66
67
68dl_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}