blob: 1aa585d5e811cabbb8de67003a698672b5f2798b [file] [log] [blame]
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001
2/* Support for dynamic loading of extension modules */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003
Guido van Rossum79f25d91997-04-29 20:08:16 +00004#include "Python.h"
Guido van Rossum1ae940a1995-01-02 19:04:15 +00005
Guido van Rossum96a8fb71999-12-22 14:09:35 +00006/* ./configure sets HAVE_DYNAMIC_LOADING if dynamic loading of modules is
7 supported on this platform. configure will then compile and link in one
8 of the dynload_*.c files, as appropriate. We will call a function in
9 those modules to get a function pointer to the module's init function.
Guido van Rossum1ae940a1995-01-02 19:04:15 +000010*/
Guido van Rossum6ea90921999-12-20 21:20:42 +000011#ifdef HAVE_DYNAMIC_LOADING
Guido van Rossumff4af061996-01-12 01:17:50 +000012
Guido van Rossum96a8fb71999-12-22 14:09:35 +000013#include "importdl.h"
14
Victor Stinner2d322272011-04-04 23:05:53 +020015#ifdef MS_WINDOWS
Nick Coghland5cacbb2015-05-23 22:24:10 +100016extern dl_funcptr _PyImport_FindSharedFuncptrWindows(const char *prefix,
17 const char *shortname,
18 PyObject *pathname,
19 FILE *fp);
Victor Stinner2d322272011-04-04 23:05:53 +020020#else
Nick Coghland5cacbb2015-05-23 22:24:10 +100021extern dl_funcptr _PyImport_FindSharedFuncptr(const char *prefix,
22 const char *shortname,
23 const char *pathname, FILE *fp);
Victor Stinner2d322272011-04-04 23:05:53 +020024#endif
Guido van Rossum1ae940a1995-01-02 19:04:15 +000025
Nick Coghland5cacbb2015-05-23 22:24:10 +100026static const char *ascii_only_prefix = "PyInit";
27static const char *nonascii_prefix = "PyInitU";
28
29/* Get the variable part of a module's export symbol name.
30 * Returns a bytes instance. For non-ASCII-named modules, the name is
31 * encoded as per PEP 489.
32 * The hook_prefix pointer is set to either ascii_only_prefix or
33 * nonascii_prefix, as appropriate.
34 */
35static PyObject *
36get_encoded_name(PyObject *name, const char **hook_prefix) {
Nick Coghland5cacbb2015-05-23 22:24:10 +100037 PyObject *tmp;
38 PyObject *encoded = NULL;
Benjamin Petersone20056c2015-05-29 17:10:30 -050039 PyObject *modname = NULL;
40 Py_ssize_t name_len, lastdot;
41 _Py_IDENTIFIER(replace);
Nick Coghland5cacbb2015-05-23 22:24:10 +100042
43 /* Get the short name (substring after last dot) */
44 name_len = PyUnicode_GetLength(name);
45 lastdot = PyUnicode_FindChar(name, '.', 0, name_len, -1);
46 if (lastdot < -1) {
47 return NULL;
48 } else if (lastdot >= 0) {
Nick Coghlan55871f02015-05-26 21:48:17 +100049 tmp = PyUnicode_Substring(name, lastdot + 1, name_len);
Nick Coghland5cacbb2015-05-23 22:24:10 +100050 if (tmp == NULL)
51 return NULL;
52 name = tmp;
53 /* "name" now holds a new reference to the substring */
54 } else {
55 Py_INCREF(name);
56 }
57
58 /* Encode to ASCII or Punycode, as needed */
59 encoded = PyUnicode_AsEncodedString(name, "ascii", NULL);
60 if (encoded != NULL) {
61 *hook_prefix = ascii_only_prefix;
62 } else {
63 if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) {
64 PyErr_Clear();
65 encoded = PyUnicode_AsEncodedString(name, "punycode", NULL);
66 if (encoded == NULL) {
67 goto error;
68 }
69 *hook_prefix = nonascii_prefix;
70 } else {
71 goto error;
72 }
73 }
74
Benjamin Petersone20056c2015-05-29 17:10:30 -050075 /* Replace '-' by '_' */
76 modname = _PyObject_CallMethodId(encoded, &PyId_replace, "cc", '-', '_');
77 if (modname == NULL)
78 goto error;
Nick Coghland5cacbb2015-05-23 22:24:10 +100079
80 Py_DECREF(name);
Benjamin Petersone20056c2015-05-29 17:10:30 -050081 Py_DECREF(encoded);
82 return modname;
Nick Coghland5cacbb2015-05-23 22:24:10 +100083error:
84 Py_DECREF(name);
85 Py_XDECREF(encoded);
86 return NULL;
87}
88
Guido van Rossum79f25d91997-04-29 20:08:16 +000089PyObject *
Nick Coghland5cacbb2015-05-23 22:24:10 +100090_PyImport_LoadDynamicModuleWithSpec(PyObject *spec, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +000091{
Victor Stinner2d322272011-04-04 23:05:53 +020092#ifndef MS_WINDOWS
Nick Coghland5cacbb2015-05-23 22:24:10 +100093 PyObject *pathbytes = NULL;
Victor Stinner2d322272011-04-04 23:05:53 +020094#endif
Nick Coghland5cacbb2015-05-23 22:24:10 +100095 PyObject *name_unicode = NULL, *name = NULL, *path = NULL, *m = NULL;
96 const char *name_buf, *hook_prefix;
97 char *oldcontext;
98 dl_funcptr exportfunc;
99 PyModuleDef *def;
100 PyObject *(*p0)(void);
Guido van Rossum6ea90921999-12-20 21:20:42 +0000101
Nick Coghland5cacbb2015-05-23 22:24:10 +1000102 name_unicode = PyObject_GetAttrString(spec, "name");
103 if (name_unicode == NULL) {
104 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000105 }
Victor Stinnerfefd70c2011-03-14 15:54:07 -0400106
Nick Coghland5cacbb2015-05-23 22:24:10 +1000107 name = get_encoded_name(name_unicode, &hook_prefix);
108 if (name == NULL) {
109 goto error;
110 }
111 name_buf = PyBytes_AS_STRING(name);
Victor Stinner65b7eff2011-05-07 12:46:05 +0200112
Nick Coghland5cacbb2015-05-23 22:24:10 +1000113 path = PyObject_GetAttrString(spec, "origin");
114 if (path == NULL)
Victor Stinner65b7eff2011-05-07 12:46:05 +0200115 goto error;
116
Victor Stinner2d322272011-04-04 23:05:53 +0200117#ifdef MS_WINDOWS
Nick Coghland5cacbb2015-05-23 22:24:10 +1000118 exportfunc = _PyImport_FindSharedFuncptrWindows(hook_prefix, name_buf,
119 path, fp);
Victor Stinner2d322272011-04-04 23:05:53 +0200120#else
Victor Stinnerfefd70c2011-03-14 15:54:07 -0400121 pathbytes = PyUnicode_EncodeFSDefault(path);
122 if (pathbytes == NULL)
Victor Stinner65b7eff2011-05-07 12:46:05 +0200123 goto error;
Nick Coghland5cacbb2015-05-23 22:24:10 +1000124 exportfunc = _PyImport_FindSharedFuncptr(hook_prefix, name_buf,
125 PyBytes_AS_STRING(pathbytes),
126 fp);
Victor Stinnerfefd70c2011-03-14 15:54:07 -0400127 Py_DECREF(pathbytes);
Victor Stinner2d322272011-04-04 23:05:53 +0200128#endif
Nick Coghland5cacbb2015-05-23 22:24:10 +1000129
130 if (exportfunc == NULL) {
131 if (!PyErr_Occurred()) {
132 PyObject *msg;
133 msg = PyUnicode_FromFormat(
134 "dynamic module does not define "
135 "module export function (%s_%s)",
136 hook_prefix, name_buf);
137 if (msg == NULL)
138 goto error;
139 PyErr_SetImportError(msg, name_unicode, path);
140 Py_DECREF(msg);
141 }
Victor Stinner65b7eff2011-05-07 12:46:05 +0200142 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000143 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000144
Nick Coghland5cacbb2015-05-23 22:24:10 +1000145 p0 = (PyObject *(*)(void))exportfunc;
146
147 /* Package context is needed for single-phase init */
148 oldcontext = _Py_PackageContext;
149 _Py_PackageContext = PyUnicode_AsUTF8(name_unicode);
150 m = p0();
151 _Py_PackageContext = oldcontext;
152
153 if (m == NULL) {
154 if (!PyErr_Occurred()) {
155 PyErr_Format(
156 PyExc_SystemError,
157 "initialization of %s failed without raising an exception",
158 name_buf);
159 }
160 goto error;
161 } else if (PyErr_Occurred()) {
162 PyErr_Clear();
163 PyErr_Format(
164 PyExc_SystemError,
165 "initialization of %s raised unreported exception",
166 name_buf);
167 m = NULL;
168 goto error;
169 }
170 if (Py_TYPE(m) == NULL) {
171 /* This can happen when a PyModuleDef is returned without calling
172 * PyModuleDef_Init on it
173 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000174 PyErr_Format(PyExc_SystemError,
Nick Coghland5cacbb2015-05-23 22:24:10 +1000175 "init function of %s returned uninitialized object",
176 name_buf);
177 m = NULL; /* prevent segfault in DECREF */
178 goto error;
179 }
180 if (PyObject_TypeCheck(m, &PyModuleDef_Type)) {
181 Py_DECREF(name_unicode);
182 Py_DECREF(name);
183 Py_DECREF(path);
184 return PyModule_FromDefAndSpec((PyModuleDef*)m, spec);
185 }
186
187 /* Fall back to single-phase init mechanism */
188
189 if (hook_prefix == nonascii_prefix) {
190 /* don't allow legacy init for non-ASCII module names */
191 PyErr_Format(
192 PyExc_SystemError,
193 "initialization of * did not return PyModuleDef",
194 name_buf);
Victor Stinner65b7eff2011-05-07 12:46:05 +0200195 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000196 }
Martin v. Löwis1a214512008-06-11 05:26:20 +0000197
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000198 /* Remember pointer to module init function. */
199 def = PyModule_GetDef(m);
Christian Heimes7ce57d62013-07-11 13:02:30 +0200200 if (def == NULL) {
201 PyErr_Format(PyExc_SystemError,
202 "initialization of %s did not return an extension "
Nick Coghland5cacbb2015-05-23 22:24:10 +1000203 "module", name_buf);
Christian Heimes848ee092013-07-11 11:22:21 +0200204 goto error;
Christian Heimes7ce57d62013-07-11 13:02:30 +0200205 }
Nick Coghland5cacbb2015-05-23 22:24:10 +1000206 def->m_base.m_init = p0;
Martin v. Löwis1a214512008-06-11 05:26:20 +0000207
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000208 /* Remember the filename as the __file__ attribute */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000209 if (PyModule_AddObject(m, "__file__", path) < 0)
210 PyErr_Clear(); /* Not important enough to report */
Victor Stinner49d3f252010-10-17 01:24:53 +0000211 else
212 Py_INCREF(path);
Martin v. Löwise81e9b12003-09-04 18:45:59 +0000213
Nick Coghland5cacbb2015-05-23 22:24:10 +1000214 if (_PyImport_FixupExtensionObject(m, name_unicode, path) < 0)
Victor Stinner65b7eff2011-05-07 12:46:05 +0200215 goto error;
Nick Coghland5cacbb2015-05-23 22:24:10 +1000216
217 Py_DECREF(name_unicode);
218 Py_DECREF(name);
219 Py_DECREF(path);
220
Victor Stinnerfefd70c2011-03-14 15:54:07 -0400221 return m;
Victor Stinner65b7eff2011-05-07 12:46:05 +0200222
223error:
Nick Coghland5cacbb2015-05-23 22:24:10 +1000224 Py_DECREF(name_unicode);
225 Py_XDECREF(name);
226 Py_XDECREF(path);
Victor Stinner65b7eff2011-05-07 12:46:05 +0200227 Py_XDECREF(m);
228 return NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000229}
Guido van Rossum96a8fb71999-12-22 14:09:35 +0000230
231#endif /* HAVE_DYNAMIC_LOADING */