blob: 6f0f2527b62e4983e3271da87199228d6be29f1a [file] [log] [blame]
Guido van Rossum22a1d361999-12-20 21:18:49 +00001
2/* Support for dynamic loading of extension modules */
3
4#include "dl.h"
5#include <errno.h>
6
7#include "Python.h"
8#include "importdl.h"
9
Guido van Rossum96a8fb71999-12-22 14:09:35 +000010#if defined(__hp9000s300)
Martin v. Löwis1a214512008-06-11 05:26:20 +000011#define FUNCNAME_PATTERN "_PyInit_%.200s"
Guido van Rossum96a8fb71999-12-22 14:09:35 +000012#else
Martin v. Löwis1a214512008-06-11 05:26:20 +000013#define FUNCNAME_PATTERN "PyInit_%.200s"
Guido van Rossum96a8fb71999-12-22 14:09:35 +000014#endif
Guido van Rossum22a1d361999-12-20 21:18:49 +000015
16const struct filedescr _PyImport_DynLoadFiletab[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000017 {SHLIB_EXT, "rb", C_EXTENSION},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000018 {0, 0}
Guido van Rossum22a1d361999-12-20 21:18:49 +000019};
20
Victor Stinner42040fb2011-02-22 23:16:19 +000021dl_funcptr _PyImport_GetDynLoadFunc(const char *shortname,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000022 const char *pathname, FILE *fp)
Guido van Rossum22a1d361999-12-20 21:18:49 +000023{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000024 dl_funcptr p;
25 shl_t lib;
26 int flags;
27 char funcname[258];
Guido van Rossum22a1d361999-12-20 21:18:49 +000028
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000029 flags = BIND_FIRST | BIND_DEFERRED;
30 if (Py_VerboseFlag) {
31 flags = BIND_FIRST | BIND_IMMEDIATE |
32 BIND_NONFATAL | BIND_VERBOSE;
33 printf("shl_load %s\n",pathname);
34 }
35 lib = shl_load(pathname, flags, 0);
36 /* XXX Chuck Blake once wrote that 0 should be BIND_NOSTART? */
37 if (lib == NULL) {
38 char buf[256];
Brett Cannon3dfc22c2012-04-20 15:31:11 -040039 PyObject *pathname_ob = NULL;
40 PyObject *buf_ob = NULL;
41 PyObject *shortname_ob = NULL;
42
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000043 if (Py_VerboseFlag)
44 perror(pathname);
45 PyOS_snprintf(buf, sizeof(buf), "Failed to load %.200s",
46 pathname);
Brett Cannon3dfc22c2012-04-20 15:31:11 -040047 buf_ob = PyUnicode_FromString(buf);
48 shortname_ob = PyUnicode_FromString(shortname);
49 pathname_ob = PyUnicode_FromString(pathname);
50 PyErr_SetImportError(buf_ob, shortname_ob, pathname_ob);
51 Py_DECREF(buf_ob);
52 Py_DECREF(shortname_ob);
53 Py_DECREF(pathname_ob);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000054 return NULL;
55 }
56 PyOS_snprintf(funcname, sizeof(funcname), FUNCNAME_PATTERN, shortname);
57 if (Py_VerboseFlag)
58 printf("shl_findsym %s\n", funcname);
59 if (shl_findsym(&lib, funcname, TYPE_UNDEFINED, (void *) &p) == -1) {
60 shl_unload(lib);
61 p = NULL;
62 }
63 if (p == NULL && Py_VerboseFlag)
64 perror(funcname);
Guido van Rossum22a1d361999-12-20 21:18:49 +000065
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000066 return p;
Guido van Rossum22a1d361999-12-20 21:18:49 +000067}