blob: 5e841ca782d2bca6a6ae791627d7ae90489d44a8 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002/* Module definition and import implementation */
3
Guido van Rossum79f25d91997-04-29 20:08:16 +00004#include "Python.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00006#include "Python-ast.h"
Guido van Rossumd8faa362007-04-27 19:54:29 +00007#undef Yield /* undefine macro conflicting with winbase.h */
Eric Snow2ebc5ce2017-09-07 23:51:28 -06008#include "internal/pystate.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00009#include "errcode.h"
Guido van Rossumc405b7b1991-06-04 19:39:42 +000010#include "marshal.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000011#include "code.h"
Antoine Pitroubc07a5c2012-07-08 12:01:27 +020012#include "frameobject.h"
Guido van Rossumd8bac6d1992-02-26 15:19:13 +000013#include "osdefs.h"
Guido van Rossum1ae940a1995-01-02 19:04:15 +000014#include "importdl.h"
Guido van Rossumc405b7b1991-06-04 19:39:42 +000015
Guido van Rossum55a83382000-09-20 20:31:38 +000016#ifdef HAVE_FCNTL_H
17#include <fcntl.h>
18#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000019#ifdef __cplusplus
Brett Cannon9a5b25a2010-03-01 02:09:17 +000020extern "C" {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000021#endif
Guido van Rossum55a83382000-09-20 20:31:38 +000022
Barry Warsaw28a691b2010-04-17 00:19:56 +000023#define CACHEDIR "__pycache__"
Guido van Rossum96774c12000-05-01 20:19:08 +000024
Victor Stinner95872862011-03-07 18:20:56 +010025/* See _PyImport_FixupExtensionObject() below */
Guido van Rossum25ce5661997-08-02 03:10:38 +000026static PyObject *extensions = NULL;
Guido van Rossum3f5da241990-12-20 15:06:42 +000027
Guido van Rossum771c6c81997-10-31 18:37:24 +000028/* This table is defined in config.c: */
29extern struct _inittab _PyImport_Inittab[];
30
31struct _inittab *PyImport_Inittab = _PyImport_Inittab;
Guido van Rossum66f1fa81991-04-03 19:03:52 +000032
Victor Stinnerd0296212011-03-14 14:04:10 -040033static PyObject *initstr = NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000034
Brett Cannon4caa61d2014-01-09 19:03:32 -050035/*[clinic input]
36module _imp
37[clinic start generated code]*/
Serhiy Storchaka1009bf12015-04-03 23:53:51 +030038/*[clinic end generated code: output=da39a3ee5e6b4b0d input=9c332475d8686284]*/
Brett Cannonfd4d0502014-05-30 11:21:14 -040039
40#include "clinic/import.c.h"
Brett Cannon4caa61d2014-01-09 19:03:32 -050041
Guido van Rossum1ae940a1995-01-02 19:04:15 +000042/* Initialize things */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000043
44void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000045_PyImport_Init(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000046{
Serhiy Storchaka013bb912014-02-10 18:21:34 +020047 PyInterpreterState *interp = PyThreadState_Get()->interp;
Victor Stinnerd0296212011-03-14 14:04:10 -040048 initstr = PyUnicode_InternFromString("__init__");
49 if (initstr == NULL)
50 Py_FatalError("Can't initialize import variables");
Serhiy Storchaka013bb912014-02-10 18:21:34 +020051 interp->builtins_copy = PyDict_Copy(interp->builtins);
52 if (interp->builtins_copy == NULL)
53 Py_FatalError("Can't backup builtins dict");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000054}
55
Guido van Rossum25ce5661997-08-02 03:10:38 +000056void
Just van Rossum52e14d62002-12-30 22:08:05 +000057_PyImportHooks_Init(void)
58{
Brett Cannonfd074152012-04-14 14:10:13 -040059 PyObject *v, *path_hooks = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000060 int err = 0;
Just van Rossum52e14d62002-12-30 22:08:05 +000061
Brett Cannonfd074152012-04-14 14:10:13 -040062 /* adding sys.path_hooks and sys.path_importer_cache */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000063 v = PyList_New(0);
64 if (v == NULL)
65 goto error;
66 err = PySys_SetObject("meta_path", v);
67 Py_DECREF(v);
68 if (err)
69 goto error;
70 v = PyDict_New();
71 if (v == NULL)
72 goto error;
73 err = PySys_SetObject("path_importer_cache", v);
74 Py_DECREF(v);
75 if (err)
76 goto error;
77 path_hooks = PyList_New(0);
78 if (path_hooks == NULL)
79 goto error;
80 err = PySys_SetObject("path_hooks", path_hooks);
81 if (err) {
Just van Rossum52e14d62002-12-30 22:08:05 +000082 error:
Brett Cannonfd074152012-04-14 14:10:13 -040083 PyErr_Print();
84 Py_FatalError("initializing sys.meta_path, sys.path_hooks, "
Nadeem Vawda8f46d652012-05-05 12:27:30 +020085 "or path_importer_cache failed");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000086 }
Brett Cannonfd074152012-04-14 14:10:13 -040087 Py_DECREF(path_hooks);
88}
89
90void
91_PyImportZip_Init(void)
92{
93 PyObject *path_hooks, *zimpimport;
94 int err = 0;
95
96 path_hooks = PySys_GetObject("path_hooks");
Victor Stinner1e53bba2013-07-16 22:26:05 +020097 if (path_hooks == NULL) {
98 PyErr_SetString(PyExc_RuntimeError, "unable to get sys.path_hooks");
Brett Cannonfd074152012-04-14 14:10:13 -040099 goto error;
Victor Stinner1e53bba2013-07-16 22:26:05 +0200100 }
Brett Cannonfd074152012-04-14 14:10:13 -0400101
102 if (Py_VerboseFlag)
103 PySys_WriteStderr("# installing zipimport hook\n");
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000104
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000105 zimpimport = PyImport_ImportModule("zipimport");
106 if (zimpimport == NULL) {
107 PyErr_Clear(); /* No zip import module -- okay */
108 if (Py_VerboseFlag)
109 PySys_WriteStderr("# can't import zipimport\n");
110 }
111 else {
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200112 _Py_IDENTIFIER(zipimporter);
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +0200113 PyObject *zipimporter = _PyObject_GetAttrId(zimpimport,
114 &PyId_zipimporter);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000115 Py_DECREF(zimpimport);
116 if (zipimporter == NULL) {
117 PyErr_Clear(); /* No zipimporter object -- okay */
118 if (Py_VerboseFlag)
119 PySys_WriteStderr(
120 "# can't import zipimport.zipimporter\n");
121 }
122 else {
Brett Cannon8923a4d2012-04-24 22:03:46 -0400123 /* sys.path_hooks.insert(0, zipimporter) */
124 err = PyList_Insert(path_hooks, 0, zipimporter);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000125 Py_DECREF(zipimporter);
Brett Cannonfd074152012-04-14 14:10:13 -0400126 if (err < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000127 goto error;
Brett Cannonfd074152012-04-14 14:10:13 -0400128 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000129 if (Py_VerboseFlag)
130 PySys_WriteStderr(
131 "# installed zipimport hook\n");
132 }
133 }
Brett Cannonfd074152012-04-14 14:10:13 -0400134
135 return;
136
137 error:
138 PyErr_Print();
Brett Cannonacf85cd2012-04-29 12:50:03 -0400139 Py_FatalError("initializing zipimport failed");
Just van Rossum52e14d62002-12-30 22:08:05 +0000140}
141
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000142/* Locking primitives to prevent parallel imports of the same module
143 in different threads to return with a partially loaded module.
144 These calls are serialized by the global interpreter lock. */
145
Guido van Rossum49b56061998-10-01 20:42:43 +0000146#include "pythread.h"
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000147
Guido van Rossum65d5b571998-12-21 19:32:43 +0000148static PyThread_type_lock import_lock = 0;
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200149static unsigned long import_lock_thread = PYTHREAD_INVALID_THREAD_ID;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000150static int import_lock_level = 0;
151
Benjamin Peterson0df35a92009-10-04 20:32:25 +0000152void
153_PyImport_AcquireLock(void)
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000154{
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200155 unsigned long me = PyThread_get_thread_ident();
156 if (me == PYTHREAD_INVALID_THREAD_ID)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000157 return; /* Too bad */
158 if (import_lock == NULL) {
159 import_lock = PyThread_allocate_lock();
160 if (import_lock == NULL)
161 return; /* Nothing much we can do. */
162 }
163 if (import_lock_thread == me) {
164 import_lock_level++;
165 return;
166 }
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200167 if (import_lock_thread != PYTHREAD_INVALID_THREAD_ID ||
168 !PyThread_acquire_lock(import_lock, 0))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000169 {
170 PyThreadState *tstate = PyEval_SaveThread();
171 PyThread_acquire_lock(import_lock, 1);
172 PyEval_RestoreThread(tstate);
173 }
Antoine Pitrou202b6062012-12-18 22:18:17 +0100174 assert(import_lock_level == 0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000175 import_lock_thread = me;
176 import_lock_level = 1;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000177}
178
Benjamin Peterson0df35a92009-10-04 20:32:25 +0000179int
180_PyImport_ReleaseLock(void)
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000181{
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200182 unsigned long me = PyThread_get_thread_ident();
183 if (me == PYTHREAD_INVALID_THREAD_ID || import_lock == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000184 return 0; /* Too bad */
185 if (import_lock_thread != me)
186 return -1;
187 import_lock_level--;
Antoine Pitrou202b6062012-12-18 22:18:17 +0100188 assert(import_lock_level >= 0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000189 if (import_lock_level == 0) {
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200190 import_lock_thread = PYTHREAD_INVALID_THREAD_ID;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000191 PyThread_release_lock(import_lock);
192 }
193 return 1;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000194}
195
Antoine Pitrouf7ecfac2017-05-28 11:35:14 +0200196/* This function is called from PyOS_AfterFork_Child to ensure that newly
Gregory P. Smith24cec9f2010-03-01 06:18:41 +0000197 created child processes do not share locks with the parent.
198 We now acquire the import lock around fork() calls but on some platforms
199 (Solaris 9 and earlier? see isue7242) that still left us with problems. */
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000200
201void
202_PyImport_ReInitLock(void)
203{
Christian Heimes418fd742015-04-19 21:08:42 +0200204 if (import_lock != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000205 import_lock = PyThread_allocate_lock();
Christian Heimes418fd742015-04-19 21:08:42 +0200206 if (import_lock == NULL) {
207 Py_FatalError("PyImport_ReInitLock failed to create a new lock");
208 }
209 }
Nick Coghlanb2ddf792010-12-02 04:11:46 +0000210 if (import_lock_level > 1) {
211 /* Forked as a side effect of import */
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200212 unsigned long me = PyThread_get_thread_ident();
Brett Cannone4710cf2012-11-15 21:39:36 -0500213 /* The following could fail if the lock is already held, but forking as
214 a side-effect of an import is a) rare, b) nuts, and c) difficult to
215 do thanks to the lock only being held when doing individual module
216 locks per import. */
217 PyThread_acquire_lock(import_lock, NOWAIT_LOCK);
Nick Coghlanb2ddf792010-12-02 04:11:46 +0000218 import_lock_thread = me;
219 import_lock_level--;
220 } else {
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200221 import_lock_thread = PYTHREAD_INVALID_THREAD_ID;
Nick Coghlanb2ddf792010-12-02 04:11:46 +0000222 import_lock_level = 0;
223 }
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000224}
225
Brett Cannon4caa61d2014-01-09 19:03:32 -0500226/*[clinic input]
227_imp.lock_held
228
229Return True if the import lock is currently held, else False.
230
231On platforms without threads, return False.
232[clinic start generated code]*/
233
Brett Cannon4caa61d2014-01-09 19:03:32 -0500234static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +0300235_imp_lock_held_impl(PyObject *module)
236/*[clinic end generated code: output=8b89384b5e1963fc input=9b088f9b217d9bdf]*/
Tim Peters69232342001-08-30 05:16:13 +0000237{
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200238 return PyBool_FromLong(import_lock_thread != PYTHREAD_INVALID_THREAD_ID);
Tim Peters69232342001-08-30 05:16:13 +0000239}
240
Brett Cannon4caa61d2014-01-09 19:03:32 -0500241/*[clinic input]
242_imp.acquire_lock
243
244Acquires the interpreter's import lock for the current thread.
245
246This lock should be used by import hooks to ensure thread-safety when importing
247modules. On platforms without threads, this function does nothing.
248[clinic start generated code]*/
249
Brett Cannon4caa61d2014-01-09 19:03:32 -0500250static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +0300251_imp_acquire_lock_impl(PyObject *module)
252/*[clinic end generated code: output=1aff58cb0ee1b026 input=4a2d4381866d5fdc]*/
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000253{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000254 _PyImport_AcquireLock();
Serhiy Storchaka228b12e2017-01-23 09:47:21 +0200255 Py_RETURN_NONE;
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000256}
257
Brett Cannon4caa61d2014-01-09 19:03:32 -0500258/*[clinic input]
259_imp.release_lock
260
261Release the interpreter's import lock.
262
263On platforms without threads, this function does nothing.
264[clinic start generated code]*/
265
Brett Cannon4caa61d2014-01-09 19:03:32 -0500266static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +0300267_imp_release_lock_impl(PyObject *module)
268/*[clinic end generated code: output=7faab6d0be178b0a input=934fb11516dd778b]*/
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000269{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000270 if (_PyImport_ReleaseLock() < 0) {
271 PyErr_SetString(PyExc_RuntimeError,
272 "not holding the import lock");
273 return NULL;
274 }
Serhiy Storchaka228b12e2017-01-23 09:47:21 +0200275 Py_RETURN_NONE;
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000276}
277
Antoine Pitrou8db076c2011-10-30 19:13:55 +0100278void
279_PyImport_Fini(void)
280{
Serhiy Storchaka505ff752014-02-09 13:33:53 +0200281 Py_CLEAR(extensions);
Antoine Pitrou8db076c2011-10-30 19:13:55 +0100282 if (import_lock != NULL) {
283 PyThread_free_lock(import_lock);
284 import_lock = NULL;
285 }
Antoine Pitrou8db076c2011-10-30 19:13:55 +0100286}
287
Guido van Rossum25ce5661997-08-02 03:10:38 +0000288/* Helper for sys */
289
290PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000291PyImport_GetModuleDict(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000292{
Eric Snow93c92f72017-09-13 23:46:04 -0700293 PyInterpreterState *interp = PyThreadState_GET()->interp;
Eric Snow3f9eee62017-09-15 16:35:20 -0600294 if (interp->modules == NULL) {
Eric Snow93c92f72017-09-13 23:46:04 -0700295 Py_FatalError("PyImport_GetModuleDict: no module dictionary!");
Eric Snow3f9eee62017-09-15 16:35:20 -0600296 }
Eric Snow93c92f72017-09-13 23:46:04 -0700297 return interp->modules;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000298}
299
Eric Snowd393c1b2017-09-14 12:18:12 -0600300/* In some corner cases it is important to be sure that the import
301 machinery has been initialized (or not cleaned up yet). For
302 example, see issue #4236 and PyModule_Create2(). */
303
304int
305_PyImport_IsInitialized(PyInterpreterState *interp)
306{
307 if (interp->modules == NULL)
308 return 0;
309 return 1;
310}
Guido van Rossum3f5da241990-12-20 15:06:42 +0000311
Eric Snow3f9eee62017-09-15 16:35:20 -0600312PyObject *
313_PyImport_GetModuleId(struct _Py_Identifier *nameid)
314{
315 PyObject *name = _PyUnicode_FromId(nameid); /* borrowed */
316 if (name == NULL) {
317 return NULL;
318 }
319 return PyImport_GetModule(name);
320}
321
322int
323_PyImport_SetModule(PyObject *name, PyObject *m)
324{
325 PyObject *modules = PyImport_GetModuleDict();
326 return PyObject_SetItem(modules, name, m);
327}
328
329int
330_PyImport_SetModuleString(const char *name, PyObject *m)
331{
332 PyObject *modules = PyImport_GetModuleDict();
333 return PyMapping_SetItemString(modules, name, m);
334}
335
336PyObject *
337PyImport_GetModule(PyObject *name)
338{
339 PyObject *m;
340 PyObject *modules = PyImport_GetModuleDict();
341 if (modules == NULL) {
342 PyErr_SetString(PyExc_RuntimeError, "unable to get sys.modules");
343 return NULL;
344 }
345 Py_INCREF(modules);
346 if (PyDict_CheckExact(modules)) {
347 m = PyDict_GetItemWithError(modules, name); /* borrowed */
348 Py_XINCREF(m);
349 }
350 else {
351 m = PyObject_GetItem(modules, name);
352 if (PyErr_ExceptionMatches(PyExc_KeyError)) {
353 PyErr_Clear();
354 }
355 }
356 Py_DECREF(modules);
357 return m;
358}
359
360
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000361/* List of names to clear in sys */
Serhiy Storchaka2d06e842015-12-25 19:53:18 +0200362static const char * const sys_deletes[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000363 "path", "argv", "ps1", "ps2",
364 "last_type", "last_value", "last_traceback",
365 "path_hooks", "path_importer_cache", "meta_path",
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200366 "__interactivehook__",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000367 /* misc stuff */
368 "flags", "float_info",
369 NULL
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000370};
371
Serhiy Storchaka2d06e842015-12-25 19:53:18 +0200372static const char * const sys_files[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000373 "stdin", "__stdin__",
374 "stdout", "__stdout__",
375 "stderr", "__stderr__",
376 NULL
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000377};
378
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000379/* Un-initialize things, as good as we can */
Guido van Rossum3f5da241990-12-20 15:06:42 +0000380
Guido van Rossum3f5da241990-12-20 15:06:42 +0000381void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000382PyImport_Cleanup(void)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000383{
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200384 Py_ssize_t pos;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000385 PyObject *key, *value, *dict;
386 PyInterpreterState *interp = PyThreadState_GET()->interp;
Eric Snowd393c1b2017-09-14 12:18:12 -0600387 PyObject *modules = PyImport_GetModuleDict();
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200388 PyObject *weaklist = NULL;
Serhiy Storchaka2d06e842015-12-25 19:53:18 +0200389 const char * const *p;
Guido van Rossum758eec01998-01-19 21:58:26 +0000390
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000391 if (modules == NULL)
392 return; /* Already done */
Guido van Rossum758eec01998-01-19 21:58:26 +0000393
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000394 /* Delete some special variables first. These are common
395 places where user values hide and people complain when their
396 destructors fail. Since the modules containing them are
397 deleted *last* of all, they would come too late in the normal
398 destruction order. Sigh. */
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000399
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200400 /* XXX Perhaps these precautions are obsolete. Who knows? */
401
Serhiy Storchaka013bb912014-02-10 18:21:34 +0200402 if (Py_VerboseFlag)
403 PySys_WriteStderr("# clear builtins._\n");
404 PyDict_SetItemString(interp->builtins, "_", Py_None);
405
406 for (p = sys_deletes; *p != NULL; p++) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000407 if (Py_VerboseFlag)
Serhiy Storchaka013bb912014-02-10 18:21:34 +0200408 PySys_WriteStderr("# clear sys.%s\n", *p);
409 PyDict_SetItemString(interp->sysdict, *p, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000410 }
Serhiy Storchaka013bb912014-02-10 18:21:34 +0200411 for (p = sys_files; *p != NULL; p+=2) {
412 if (Py_VerboseFlag)
413 PySys_WriteStderr("# restore sys.%s\n", *p);
414 value = PyDict_GetItemString(interp->sysdict, *(p+1));
415 if (value == NULL)
416 value = Py_None;
417 PyDict_SetItemString(interp->sysdict, *p, value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000418 }
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000419
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200420 /* We prepare a list which will receive (name, weakref) tuples of
421 modules when they are removed from sys.modules. The name is used
422 for diagnosis messages (in verbose mode), while the weakref helps
423 detect those modules which have been held alive. */
424 weaklist = PyList_New(0);
Antoine Pitrou79ba3882013-08-06 22:50:15 +0200425 if (weaklist == NULL)
426 PyErr_Clear();
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200427
Antoine Pitrou79ba3882013-08-06 22:50:15 +0200428#define STORE_MODULE_WEAKREF(name, mod) \
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200429 if (weaklist != NULL) { \
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200430 PyObject *wr = PyWeakref_NewRef(mod, NULL); \
431 if (name && wr) { \
432 PyObject *tup = PyTuple_Pack(2, name, wr); \
433 PyList_Append(weaklist, tup); \
434 Py_XDECREF(tup); \
435 } \
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200436 Py_XDECREF(wr); \
437 if (PyErr_Occurred()) \
438 PyErr_Clear(); \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000439 }
Eric Snow3f9eee62017-09-15 16:35:20 -0600440#define CLEAR_MODULE(name, mod) \
441 if (PyModule_Check(mod)) { \
442 if (Py_VerboseFlag && PyUnicode_Check(name)) \
443 PySys_FormatStderr("# cleanup[2] removing %U\n", name); \
444 STORE_MODULE_WEAKREF(name, mod); \
445 PyObject_SetItem(modules, name, Py_None); \
446 }
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000447
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200448 /* Remove all modules from sys.modules, hoping that garbage collection
449 can reclaim most of them. */
Eric Snow3f9eee62017-09-15 16:35:20 -0600450 if (PyDict_CheckExact(modules)) {
451 pos = 0;
452 while (PyDict_Next(modules, &pos, &key, &value)) {
453 CLEAR_MODULE(key, value);
454 }
455 }
456 else {
457 PyObject *iterator = PyObject_GetIter(modules);
458 if (iterator == NULL) {
459 PyErr_Clear();
460 }
461 else {
462 while ((key = PyIter_Next(iterator))) {
463 value = PyObject_GetItem(modules, key);
464 if (value == NULL) {
465 PyErr_Clear();
466 continue;
467 }
468 CLEAR_MODULE(key, value);
469 Py_DECREF(value);
470 Py_DECREF(key);
471 }
472 Py_DECREF(iterator);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000473 }
474 }
Guido van Rossum758eec01998-01-19 21:58:26 +0000475
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200476 /* Clear the modules dict. */
Eric Snow3f9eee62017-09-15 16:35:20 -0600477 if (PyDict_CheckExact(modules)) {
478 PyDict_Clear(modules);
479 }
480 else {
481 _Py_IDENTIFIER(clear);
482 if (_PyObject_CallMethodId(modules, &PyId_clear, "") == NULL)
483 PyErr_Clear();
484 }
Serhiy Storchaka013bb912014-02-10 18:21:34 +0200485 /* Restore the original builtins dict, to ensure that any
486 user data gets cleared. */
487 dict = PyDict_Copy(interp->builtins);
488 if (dict == NULL)
489 PyErr_Clear();
490 PyDict_Clear(interp->builtins);
491 if (PyDict_Update(interp->builtins, interp->builtins_copy))
492 PyErr_Clear();
493 Py_XDECREF(dict);
Antoine Pitrou40322e62013-08-11 00:30:09 +0200494 /* Clear module dict copies stored in the interpreter state */
495 _PyState_ClearModules();
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200496 /* Collect references */
497 _PyGC_CollectNoFail();
Antoine Pitrou5f454a02013-05-06 21:15:57 +0200498 /* Dump GC stats before it's too late, since it uses the warnings
499 machinery. */
500 _PyGC_DumpShutdownStats();
501
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200502 /* Now, if there are any modules left alive, clear their globals to
503 minimize potential leaks. All C extension modules actually end
Serhiy Storchaka013bb912014-02-10 18:21:34 +0200504 up here, since they are kept alive in the interpreter state.
505
506 The special treatment of "builtins" here is because even
507 when it's not referenced as a module, its dictionary is
508 referenced by almost every module's __builtins__. Since
509 deleting a module clears its dictionary (even if there are
510 references left to it), we need to delete the "builtins"
511 module last. Likewise, we don't delete sys until the very
512 end because it is implicitly referenced (e.g. by print). */
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200513 if (weaklist != NULL) {
514 Py_ssize_t i, n;
515 n = PyList_GET_SIZE(weaklist);
516 for (i = 0; i < n; i++) {
517 PyObject *tup = PyList_GET_ITEM(weaklist, i);
Antoine Pitrou79ba3882013-08-06 22:50:15 +0200518 PyObject *name = PyTuple_GET_ITEM(tup, 0);
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200519 PyObject *mod = PyWeakref_GET_OBJECT(PyTuple_GET_ITEM(tup, 1));
520 if (mod == Py_None)
521 continue;
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200522 assert(PyModule_Check(mod));
Serhiy Storchaka013bb912014-02-10 18:21:34 +0200523 dict = PyModule_GetDict(mod);
524 if (dict == interp->builtins || dict == interp->sysdict)
525 continue;
526 Py_INCREF(mod);
Antoine Pitrou79ba3882013-08-06 22:50:15 +0200527 if (Py_VerboseFlag && PyUnicode_Check(name))
Serhiy Storchaka013bb912014-02-10 18:21:34 +0200528 PySys_FormatStderr("# cleanup[3] wiping %U\n", name);
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200529 _PyModule_Clear(mod);
530 Py_DECREF(mod);
Antoine Pitrou070cb3c2013-05-08 13:23:25 +0200531 }
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200532 Py_DECREF(weaklist);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000533 }
Guido van Rossum758eec01998-01-19 21:58:26 +0000534
Serhiy Storchaka013bb912014-02-10 18:21:34 +0200535 /* Next, delete sys and builtins (in that order) */
536 if (Py_VerboseFlag)
537 PySys_FormatStderr("# cleanup[3] wiping sys\n");
538 _PyModule_ClearDict(interp->sysdict);
539 if (Py_VerboseFlag)
540 PySys_FormatStderr("# cleanup[3] wiping builtins\n");
541 _PyModule_ClearDict(interp->builtins);
542
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200543 /* Clear and delete the modules directory. Actual modules will
544 still be there only if imported during the execution of some
545 destructor. */
Eric Snow93c92f72017-09-13 23:46:04 -0700546 interp->modules = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000547 Py_DECREF(modules);
Antoine Pitroudcedaf62013-07-31 23:14:08 +0200548
549 /* Once more */
550 _PyGC_CollectNoFail();
551
552#undef STORE_MODULE_WEAKREF
Guido van Rossum8d15b5d1990-10-26 14:58:58 +0000553}
Guido van Rossum7f133ed1991-02-19 12:23:57 +0000554
555
Barry Warsaw28a691b2010-04-17 00:19:56 +0000556/* Helper for pythonrun.c -- return magic number and tag. */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000557
558long
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000559PyImport_GetMagicNumber(void)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000560{
Antoine Pitrou44b4b6a2012-07-10 18:27:54 +0200561 long res;
Brett Cannon77b2abd2012-07-09 16:09:00 -0400562 PyInterpreterState *interp = PyThreadState_Get()->interp;
Eric Snow32439d62015-05-02 19:15:18 -0600563 PyObject *external, *pyc_magic;
564
565 external = PyObject_GetAttrString(interp->importlib, "_bootstrap_external");
566 if (external == NULL)
567 return -1;
568 pyc_magic = PyObject_GetAttrString(external, "_RAW_MAGIC_NUMBER");
569 Py_DECREF(external);
Brett Cannon77b2abd2012-07-09 16:09:00 -0400570 if (pyc_magic == NULL)
571 return -1;
Antoine Pitrou44b4b6a2012-07-10 18:27:54 +0200572 res = PyLong_AsLong(pyc_magic);
Benjamin Peterson66f36592012-07-09 22:21:55 -0700573 Py_DECREF(pyc_magic);
574 return res;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000575}
576
577
Brett Cannon3adc7b72012-07-09 14:22:12 -0400578extern const char * _PySys_ImplCacheTag;
579
Barry Warsaw28a691b2010-04-17 00:19:56 +0000580const char *
581PyImport_GetMagicTag(void)
582{
Brett Cannon3adc7b72012-07-09 14:22:12 -0400583 return _PySys_ImplCacheTag;
Barry Warsaw28a691b2010-04-17 00:19:56 +0000584}
585
Brett Cannon98979b82012-07-02 15:13:11 -0400586
Guido van Rossum25ce5661997-08-02 03:10:38 +0000587/* Magic for extension modules (built-in as well as dynamically
588 loaded). To prevent initializing an extension module more than
Andrew Svetlov6b2cbeb2012-12-14 17:04:59 +0200589 once, we keep a static dictionary 'extensions' keyed by the tuple
590 (module name, module name) (for built-in modules) or by
591 (filename, module name) (for dynamically loaded modules), containing these
592 modules. A copy of the module's dictionary is stored by calling
593 _PyImport_FixupExtensionObject() immediately after the module initialization
594 function succeeds. A copy can be retrieved from there by calling
Victor Stinner95872862011-03-07 18:20:56 +0100595 _PyImport_FindExtensionObject().
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000596
Barry Warsaw7c9627b2010-06-17 18:38:20 +0000597 Modules which do support multiple initialization set their m_size
598 field to a non-negative number (indicating the size of the
599 module-specific state). They are still recorded in the extensions
600 dictionary, to avoid loading shared libraries twice.
Martin v. Löwis1a214512008-06-11 05:26:20 +0000601*/
602
603int
Victor Stinner95872862011-03-07 18:20:56 +0100604_PyImport_FixupExtensionObject(PyObject *mod, PyObject *name,
Eric Snowd393c1b2017-09-14 12:18:12 -0600605 PyObject *filename, PyObject *modules)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000606{
Eric Snowd393c1b2017-09-14 12:18:12 -0600607 PyObject *dict, *key;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000608 struct PyModuleDef *def;
Benjamin Peterson5cb8a312012-12-15 00:05:16 -0500609 int res;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000610 if (extensions == NULL) {
611 extensions = PyDict_New();
612 if (extensions == NULL)
613 return -1;
614 }
615 if (mod == NULL || !PyModule_Check(mod)) {
616 PyErr_BadInternalCall();
617 return -1;
618 }
619 def = PyModule_GetDef(mod);
620 if (!def) {
621 PyErr_BadInternalCall();
622 return -1;
623 }
Eric Snow3f9eee62017-09-15 16:35:20 -0600624 if (PyObject_SetItem(modules, name, mod) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000625 return -1;
626 if (_PyState_AddModule(mod, def) < 0) {
Eric Snow3f9eee62017-09-15 16:35:20 -0600627 PyMapping_DelItem(modules, name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000628 return -1;
629 }
630 if (def->m_size == -1) {
631 if (def->m_base.m_copy) {
632 /* Somebody already imported the module,
633 likely under a different name.
634 XXX this should really not happen. */
Serhiy Storchaka505ff752014-02-09 13:33:53 +0200635 Py_CLEAR(def->m_base.m_copy);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000636 }
637 dict = PyModule_GetDict(mod);
638 if (dict == NULL)
639 return -1;
640 def->m_base.m_copy = PyDict_Copy(dict);
641 if (def->m_base.m_copy == NULL)
642 return -1;
643 }
Benjamin Peterson5cb8a312012-12-15 00:05:16 -0500644 key = PyTuple_Pack(2, filename, name);
645 if (key == NULL)
Andrew Svetlov6b2cbeb2012-12-14 17:04:59 +0200646 return -1;
Benjamin Peterson5cb8a312012-12-15 00:05:16 -0500647 res = PyDict_SetItem(extensions, key, (PyObject *)def);
648 Py_DECREF(key);
649 if (res < 0)
Andrew Svetlov6b2cbeb2012-12-14 17:04:59 +0200650 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000651 return 0;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000652}
653
Victor Stinner49d3f252010-10-17 01:24:53 +0000654int
Eric Snowd393c1b2017-09-14 12:18:12 -0600655_PyImport_FixupBuiltin(PyObject *mod, const char *name, PyObject *modules)
Victor Stinner49d3f252010-10-17 01:24:53 +0000656{
657 int res;
Victor Stinner95872862011-03-07 18:20:56 +0100658 PyObject *nameobj;
Victor Stinner21fcd0c2011-03-07 18:28:15 +0100659 nameobj = PyUnicode_InternFromString(name);
Victor Stinner95872862011-03-07 18:20:56 +0100660 if (nameobj == NULL)
Victor Stinner49d3f252010-10-17 01:24:53 +0000661 return -1;
Eric Snowd393c1b2017-09-14 12:18:12 -0600662 res = _PyImport_FixupExtensionObject(mod, nameobj, nameobj, modules);
Victor Stinner95872862011-03-07 18:20:56 +0100663 Py_DECREF(nameobj);
Victor Stinner49d3f252010-10-17 01:24:53 +0000664 return res;
665}
666
Guido van Rossum25ce5661997-08-02 03:10:38 +0000667PyObject *
Victor Stinner95872862011-03-07 18:20:56 +0100668_PyImport_FindExtensionObject(PyObject *name, PyObject *filename)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000669{
Eric Snowd393c1b2017-09-14 12:18:12 -0600670 PyObject *modules = PyImport_GetModuleDict();
671 return _PyImport_FindExtensionObjectEx(name, filename, modules);
672}
673
674PyObject *
675_PyImport_FindExtensionObjectEx(PyObject *name, PyObject *filename,
676 PyObject *modules)
677{
Benjamin Peterson5cb8a312012-12-15 00:05:16 -0500678 PyObject *mod, *mdict, *key;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000679 PyModuleDef* def;
680 if (extensions == NULL)
681 return NULL;
Benjamin Peterson5cb8a312012-12-15 00:05:16 -0500682 key = PyTuple_Pack(2, filename, name);
683 if (key == NULL)
Andrew Svetlov6b2cbeb2012-12-14 17:04:59 +0200684 return NULL;
Benjamin Peterson5cb8a312012-12-15 00:05:16 -0500685 def = (PyModuleDef *)PyDict_GetItem(extensions, key);
686 Py_DECREF(key);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000687 if (def == NULL)
688 return NULL;
689 if (def->m_size == -1) {
690 /* Module does not support repeated initialization */
691 if (def->m_base.m_copy == NULL)
692 return NULL;
Eric Snowd393c1b2017-09-14 12:18:12 -0600693 mod = _PyImport_AddModuleObject(name, modules);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000694 if (mod == NULL)
695 return NULL;
696 mdict = PyModule_GetDict(mod);
697 if (mdict == NULL)
698 return NULL;
699 if (PyDict_Update(mdict, def->m_base.m_copy))
700 return NULL;
701 }
702 else {
703 if (def->m_base.m_init == NULL)
704 return NULL;
705 mod = def->m_base.m_init();
706 if (mod == NULL)
707 return NULL;
Eric Snow3f9eee62017-09-15 16:35:20 -0600708 if (PyObject_SetItem(modules, name, mod) == -1) {
Christian Heimes09ca7942013-07-20 14:51:53 +0200709 Py_DECREF(mod);
710 return NULL;
711 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000712 Py_DECREF(mod);
713 }
714 if (_PyState_AddModule(mod, def) < 0) {
Eric Snow3f9eee62017-09-15 16:35:20 -0600715 PyMapping_DelItem(modules, name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000716 Py_DECREF(mod);
717 return NULL;
718 }
719 if (Py_VerboseFlag)
Victor Stinner95872862011-03-07 18:20:56 +0100720 PySys_FormatStderr("import %U # previously loaded (%R)\n",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000721 name, filename);
722 return mod;
Brett Cannon9a5b25a2010-03-01 02:09:17 +0000723
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000724}
725
Victor Stinner49d3f252010-10-17 01:24:53 +0000726PyObject *
Eric Snowd393c1b2017-09-14 12:18:12 -0600727_PyImport_FindBuiltin(const char *name, PyObject *modules)
Victor Stinner49d3f252010-10-17 01:24:53 +0000728{
Victor Stinner95872862011-03-07 18:20:56 +0100729 PyObject *res, *nameobj;
Victor Stinner21fcd0c2011-03-07 18:28:15 +0100730 nameobj = PyUnicode_InternFromString(name);
Victor Stinner95872862011-03-07 18:20:56 +0100731 if (nameobj == NULL)
Victor Stinner49d3f252010-10-17 01:24:53 +0000732 return NULL;
Eric Snowd393c1b2017-09-14 12:18:12 -0600733 res = _PyImport_FindExtensionObjectEx(nameobj, nameobj, modules);
Victor Stinner95872862011-03-07 18:20:56 +0100734 Py_DECREF(nameobj);
Victor Stinner49d3f252010-10-17 01:24:53 +0000735 return res;
736}
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000737
738/* Get the module object corresponding to a module name.
739 First check the modules dictionary if there's one there,
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +0000740 if not, create a new one and insert it in the modules dictionary.
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000741 Because the former action is most common, THIS DOES NOT RETURN A
742 'NEW' REFERENCE! */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000743
Guido van Rossum79f25d91997-04-29 20:08:16 +0000744PyObject *
Victor Stinner27ee0892011-03-04 12:57:09 +0000745PyImport_AddModuleObject(PyObject *name)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000746{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000747 PyObject *modules = PyImport_GetModuleDict();
Eric Snowd393c1b2017-09-14 12:18:12 -0600748 return _PyImport_AddModuleObject(name, modules);
749}
750
751PyObject *
752_PyImport_AddModuleObject(PyObject *name, PyObject *modules)
753{
Eric Snow86b7afd2017-09-04 17:54:09 -0600754 PyObject *m;
Eric Snow3f9eee62017-09-15 16:35:20 -0600755 if (PyDict_CheckExact(modules)) {
756 m = PyDict_GetItemWithError(modules, name);
757 }
758 else {
759 m = PyObject_GetItem(modules, name);
760 // For backward-comaptibility we copy the behavior
761 // of PyDict_GetItemWithError().
762 if (PyErr_ExceptionMatches(PyExc_KeyError)) {
763 PyErr_Clear();
764 }
Serhiy Storchaka48a583b2016-02-10 10:31:20 +0200765 }
766 if (PyErr_Occurred()) {
767 return NULL;
768 }
Eric Snow3f9eee62017-09-15 16:35:20 -0600769 if (m != NULL && PyModule_Check(m)) {
770 return m;
771 }
Victor Stinner27ee0892011-03-04 12:57:09 +0000772 m = PyModule_NewObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000773 if (m == NULL)
774 return NULL;
Eric Snow3f9eee62017-09-15 16:35:20 -0600775 if (PyObject_SetItem(modules, name, m) != 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000776 Py_DECREF(m);
777 return NULL;
778 }
779 Py_DECREF(m); /* Yes, it still exists, in modules! */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000780
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000781 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000782}
783
Victor Stinner27ee0892011-03-04 12:57:09 +0000784PyObject *
785PyImport_AddModule(const char *name)
786{
787 PyObject *nameobj, *module;
788 nameobj = PyUnicode_FromString(name);
789 if (nameobj == NULL)
790 return NULL;
791 module = PyImport_AddModuleObject(nameobj);
792 Py_DECREF(nameobj);
793 return module;
794}
795
796
Tim Peters1cd70172004-08-02 03:52:12 +0000797/* Remove name from sys.modules, if it's there. */
798static void
Victor Stinner27ee0892011-03-04 12:57:09 +0000799remove_module(PyObject *name)
Tim Peters1cd70172004-08-02 03:52:12 +0000800{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000801 PyObject *modules = PyImport_GetModuleDict();
Eric Snow3f9eee62017-09-15 16:35:20 -0600802 if (PyMapping_DelItem(modules, name) < 0) {
803 if (!PyMapping_HasKey(modules, name)) {
804 return;
805 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000806 Py_FatalError("import: deleting existing key in"
807 "sys.modules failed");
Eric Snow3f9eee62017-09-15 16:35:20 -0600808 }
Tim Peters1cd70172004-08-02 03:52:12 +0000809}
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000810
Christian Heimes3b06e532008-01-07 20:12:44 +0000811
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000812/* Execute a code object in a module and return the module object
Tim Peters1cd70172004-08-02 03:52:12 +0000813 * WITH INCREMENTED REFERENCE COUNT. If an error occurs, name is
814 * removed from sys.modules, to avoid leaving damaged module objects
815 * in sys.modules. The caller may wish to restore the original
816 * module object (if any) in this case; PyImport_ReloadModule is an
817 * example.
Barry Warsaw28a691b2010-04-17 00:19:56 +0000818 *
819 * Note that PyImport_ExecCodeModuleWithPathnames() is the preferred, richer
820 * interface. The other two exist primarily for backward compatibility.
Tim Peters1cd70172004-08-02 03:52:12 +0000821 */
Guido van Rossum79f25d91997-04-29 20:08:16 +0000822PyObject *
Serhiy Storchakac6792272013-10-19 21:03:34 +0300823PyImport_ExecCodeModule(const char *name, PyObject *co)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000824{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000825 return PyImport_ExecCodeModuleWithPathnames(
826 name, co, (char *)NULL, (char *)NULL);
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000827}
828
829PyObject *
Serhiy Storchakac6792272013-10-19 21:03:34 +0300830PyImport_ExecCodeModuleEx(const char *name, PyObject *co, const char *pathname)
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000831{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000832 return PyImport_ExecCodeModuleWithPathnames(
833 name, co, pathname, (char *)NULL);
Barry Warsaw28a691b2010-04-17 00:19:56 +0000834}
835
836PyObject *
Serhiy Storchakac6792272013-10-19 21:03:34 +0300837PyImport_ExecCodeModuleWithPathnames(const char *name, PyObject *co,
838 const char *pathname,
839 const char *cpathname)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000840{
Victor Stinner27ee0892011-03-04 12:57:09 +0000841 PyObject *m = NULL;
Eric Snow32439d62015-05-02 19:15:18 -0600842 PyObject *nameobj, *pathobj = NULL, *cpathobj = NULL, *external= NULL;
Victor Stinner27ee0892011-03-04 12:57:09 +0000843
844 nameobj = PyUnicode_FromString(name);
845 if (nameobj == NULL)
846 return NULL;
847
Victor Stinner27ee0892011-03-04 12:57:09 +0000848 if (cpathname != NULL) {
849 cpathobj = PyUnicode_DecodeFSDefault(cpathname);
850 if (cpathobj == NULL)
851 goto error;
Brett Cannona6473f92012-07-13 13:57:03 -0400852 }
853 else
Victor Stinner27ee0892011-03-04 12:57:09 +0000854 cpathobj = NULL;
Brett Cannona6473f92012-07-13 13:57:03 -0400855
856 if (pathname != NULL) {
857 pathobj = PyUnicode_DecodeFSDefault(pathname);
858 if (pathobj == NULL)
859 goto error;
860 }
861 else if (cpathobj != NULL) {
862 PyInterpreterState *interp = PyThreadState_GET()->interp;
863 _Py_IDENTIFIER(_get_sourcefile);
864
865 if (interp == NULL) {
866 Py_FatalError("PyImport_ExecCodeModuleWithPathnames: "
867 "no interpreter!");
868 }
869
Eric Snow32439d62015-05-02 19:15:18 -0600870 external= PyObject_GetAttrString(interp->importlib,
871 "_bootstrap_external");
872 if (external != NULL) {
873 pathobj = _PyObject_CallMethodIdObjArgs(external,
874 &PyId__get_sourcefile, cpathobj,
875 NULL);
876 Py_DECREF(external);
877 }
Brett Cannona6473f92012-07-13 13:57:03 -0400878 if (pathobj == NULL)
879 PyErr_Clear();
880 }
881 else
882 pathobj = NULL;
883
Victor Stinner27ee0892011-03-04 12:57:09 +0000884 m = PyImport_ExecCodeModuleObject(nameobj, co, pathobj, cpathobj);
885error:
886 Py_DECREF(nameobj);
887 Py_XDECREF(pathobj);
888 Py_XDECREF(cpathobj);
889 return m;
890}
891
Brett Cannon18fc4e72014-04-04 10:01:46 -0400892static PyObject *
893module_dict_for_exec(PyObject *name)
Victor Stinner27ee0892011-03-04 12:57:09 +0000894{
Brett Cannon18fc4e72014-04-04 10:01:46 -0400895 PyObject *m, *d = NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000896
Victor Stinner27ee0892011-03-04 12:57:09 +0000897 m = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000898 if (m == NULL)
899 return NULL;
900 /* If the module is being reloaded, we get the old module back
901 and re-use its dict to exec the new code. */
902 d = PyModule_GetDict(m);
903 if (PyDict_GetItemString(d, "__builtins__") == NULL) {
904 if (PyDict_SetItemString(d, "__builtins__",
Brett Cannon18fc4e72014-04-04 10:01:46 -0400905 PyEval_GetBuiltins()) != 0) {
906 remove_module(name);
907 return NULL;
908 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000909 }
Brett Cannon18fc4e72014-04-04 10:01:46 -0400910
Eric Snow08197a42014-05-12 17:54:55 -0600911 return d; /* Return a borrowed reference. */
Brett Cannon18fc4e72014-04-04 10:01:46 -0400912}
913
914static PyObject *
915exec_code_in_module(PyObject *name, PyObject *module_dict, PyObject *code_object)
916{
Brett Cannon18fc4e72014-04-04 10:01:46 -0400917 PyObject *v, *m;
918
919 v = PyEval_EvalCode(code_object, module_dict, module_dict);
920 if (v == NULL) {
921 remove_module(name);
922 return NULL;
923 }
924 Py_DECREF(v);
925
Eric Snow3f9eee62017-09-15 16:35:20 -0600926 m = PyImport_GetModule(name);
927 if (m == NULL) {
Brett Cannon18fc4e72014-04-04 10:01:46 -0400928 PyErr_Format(PyExc_ImportError,
929 "Loaded module %R not found in sys.modules",
930 name);
931 return NULL;
932 }
933
Brett Cannon18fc4e72014-04-04 10:01:46 -0400934 return m;
935}
936
937PyObject*
938PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname,
939 PyObject *cpathname)
940{
Eric Snow32439d62015-05-02 19:15:18 -0600941 PyObject *d, *external, *res;
Eric Snow08197a42014-05-12 17:54:55 -0600942 PyInterpreterState *interp = PyThreadState_GET()->interp;
943 _Py_IDENTIFIER(_fix_up_module);
Brett Cannon18fc4e72014-04-04 10:01:46 -0400944
945 d = module_dict_for_exec(name);
946 if (d == NULL) {
947 return NULL;
948 }
949
Eric Snow08197a42014-05-12 17:54:55 -0600950 if (pathname == NULL) {
951 pathname = ((PyCodeObject *)co)->co_filename;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000952 }
Eric Snow32439d62015-05-02 19:15:18 -0600953 external = PyObject_GetAttrString(interp->importlib, "_bootstrap_external");
954 if (external == NULL)
955 return NULL;
956 res = _PyObject_CallMethodIdObjArgs(external,
Eric Snow08197a42014-05-12 17:54:55 -0600957 &PyId__fix_up_module,
958 d, name, pathname, cpathname, NULL);
Eric Snow32439d62015-05-02 19:15:18 -0600959 Py_DECREF(external);
Eric Snow08197a42014-05-12 17:54:55 -0600960 if (res != NULL) {
Eric Snow58cfdd82014-05-29 12:31:39 -0600961 Py_DECREF(res);
Eric Snow08197a42014-05-12 17:54:55 -0600962 res = exec_code_in_module(name, d, co);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000963 }
Eric Snow08197a42014-05-12 17:54:55 -0600964 return res;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000965}
966
967
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000968static void
969update_code_filenames(PyCodeObject *co, PyObject *oldname, PyObject *newname)
970{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000971 PyObject *constants, *tmp;
972 Py_ssize_t i, n;
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000973
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000974 if (PyUnicode_Compare(co->co_filename, oldname))
975 return;
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000976
Serhiy Storchaka576f1322016-01-05 21:27:54 +0200977 Py_INCREF(newname);
Serhiy Storchakaec397562016-04-06 09:50:03 +0300978 Py_XSETREF(co->co_filename, newname);
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000979
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000980 constants = co->co_consts;
981 n = PyTuple_GET_SIZE(constants);
982 for (i = 0; i < n; i++) {
983 tmp = PyTuple_GET_ITEM(constants, i);
984 if (PyCode_Check(tmp))
985 update_code_filenames((PyCodeObject *)tmp,
986 oldname, newname);
987 }
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000988}
989
Victor Stinner2f42ae52011-03-20 00:41:24 +0100990static void
991update_compiled_module(PyCodeObject *co, PyObject *newname)
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000992{
Victor Stinner2f42ae52011-03-20 00:41:24 +0100993 PyObject *oldname;
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000994
Victor Stinner2f42ae52011-03-20 00:41:24 +0100995 if (PyUnicode_Compare(co->co_filename, newname) == 0)
996 return;
Hirokazu Yamamoto4f447fb2009-03-04 01:52:10 +0000997
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000998 oldname = co->co_filename;
999 Py_INCREF(oldname);
1000 update_code_filenames(co, oldname, newname);
1001 Py_DECREF(oldname);
Antoine Pitroud35cbf62009-01-06 19:02:24 +00001002}
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001003
Brett Cannon4caa61d2014-01-09 19:03:32 -05001004/*[clinic input]
1005_imp._fix_co_filename
1006
1007 code: object(type="PyCodeObject *", subclass_of="&PyCode_Type")
1008 Code object to change.
1009
1010 path: unicode
1011 File path to use.
1012 /
1013
1014Changes code.co_filename to specify the passed-in file path.
1015[clinic start generated code]*/
1016
Brett Cannon4caa61d2014-01-09 19:03:32 -05001017static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001018_imp__fix_co_filename_impl(PyObject *module, PyCodeObject *code,
Larry Hastings89964c42015-04-14 18:07:59 -04001019 PyObject *path)
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001020/*[clinic end generated code: output=1d002f100235587d input=895ba50e78b82f05]*/
Brett Cannon442c9b92011-03-23 16:14:42 -07001021
Brett Cannon4caa61d2014-01-09 19:03:32 -05001022{
Brett Cannona6dec2e2014-01-10 07:43:55 -05001023 update_compiled_module(code, path);
Brett Cannon442c9b92011-03-23 16:14:42 -07001024
1025 Py_RETURN_NONE;
1026}
1027
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001028
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001029/* Forward */
Benjamin Peterson6fba3db2013-03-18 23:13:31 -07001030static const struct _frozen * find_frozen(PyObject *);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001031
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001032
1033/* Helper to test for built-in module */
1034
1035static int
Victor Stinner95872862011-03-07 18:20:56 +01001036is_builtin(PyObject *name)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001037{
Serhiy Storchakaf4934ea2016-11-16 10:17:58 +02001038 int i;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001039 for (i = 0; PyImport_Inittab[i].name != NULL; i++) {
Serhiy Storchakaf4934ea2016-11-16 10:17:58 +02001040 if (_PyUnicode_EqualToASCIIString(name, PyImport_Inittab[i].name)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001041 if (PyImport_Inittab[i].initfunc == NULL)
1042 return -1;
1043 else
1044 return 1;
1045 }
1046 }
1047 return 0;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001048}
1049
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001050
Brett Cannonfdcdd9e2016-07-08 11:00:00 -07001051/* Return a finder object for a sys.path/pkg.__path__ item 'p',
Just van Rossum52e14d62002-12-30 22:08:05 +00001052 possibly by fetching it from the path_importer_cache dict. If it
Thomas Wouters89f507f2006-12-13 04:49:30 +00001053 wasn't yet cached, traverse path_hooks until a hook is found
Just van Rossum52e14d62002-12-30 22:08:05 +00001054 that can handle the path item. Return None if no hook could;
Brett Cannonfdcdd9e2016-07-08 11:00:00 -07001055 this tells our caller that the path based finder could not find
1056 a finder for this path item. Cache the result in
1057 path_importer_cache.
Just van Rossum52e14d62002-12-30 22:08:05 +00001058 Returns a borrowed reference. */
1059
1060static PyObject *
1061get_path_importer(PyObject *path_importer_cache, PyObject *path_hooks,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001062 PyObject *p)
Just van Rossum52e14d62002-12-30 22:08:05 +00001063{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001064 PyObject *importer;
1065 Py_ssize_t j, nhooks;
Just van Rossum52e14d62002-12-30 22:08:05 +00001066
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001067 /* These conditions are the caller's responsibility: */
1068 assert(PyList_Check(path_hooks));
1069 assert(PyDict_Check(path_importer_cache));
Just van Rossum52e14d62002-12-30 22:08:05 +00001070
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001071 nhooks = PyList_Size(path_hooks);
1072 if (nhooks < 0)
1073 return NULL; /* Shouldn't happen */
Just van Rossum52e14d62002-12-30 22:08:05 +00001074
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001075 importer = PyDict_GetItem(path_importer_cache, p);
1076 if (importer != NULL)
1077 return importer;
Just van Rossum52e14d62002-12-30 22:08:05 +00001078
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001079 /* set path_importer_cache[p] to None to avoid recursion */
1080 if (PyDict_SetItem(path_importer_cache, p, Py_None) != 0)
1081 return NULL;
Just van Rossum52e14d62002-12-30 22:08:05 +00001082
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001083 for (j = 0; j < nhooks; j++) {
1084 PyObject *hook = PyList_GetItem(path_hooks, j);
1085 if (hook == NULL)
1086 return NULL;
Victor Stinnerde4ae3d2016-12-04 22:59:09 +01001087 importer = PyObject_CallFunctionObjArgs(hook, p, NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001088 if (importer != NULL)
1089 break;
Just van Rossum52e14d62002-12-30 22:08:05 +00001090
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001091 if (!PyErr_ExceptionMatches(PyExc_ImportError)) {
1092 return NULL;
1093 }
1094 PyErr_Clear();
1095 }
1096 if (importer == NULL) {
Brett Cannonaa936422012-04-27 15:30:58 -04001097 return Py_None;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001098 }
1099 if (importer != NULL) {
1100 int err = PyDict_SetItem(path_importer_cache, p, importer);
1101 Py_DECREF(importer);
1102 if (err != 0)
1103 return NULL;
1104 }
1105 return importer;
Just van Rossum52e14d62002-12-30 22:08:05 +00001106}
1107
Christian Heimes9cd17752007-11-18 19:35:23 +00001108PyAPI_FUNC(PyObject *)
1109PyImport_GetImporter(PyObject *path) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001110 PyObject *importer=NULL, *path_importer_cache=NULL, *path_hooks=NULL;
Christian Heimes9cd17752007-11-18 19:35:23 +00001111
Victor Stinner1e53bba2013-07-16 22:26:05 +02001112 path_importer_cache = PySys_GetObject("path_importer_cache");
1113 path_hooks = PySys_GetObject("path_hooks");
1114 if (path_importer_cache != NULL && path_hooks != NULL) {
1115 importer = get_path_importer(path_importer_cache,
1116 path_hooks, path);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001117 }
1118 Py_XINCREF(importer); /* get_path_importer returns a borrowed reference */
1119 return importer;
Christian Heimes9cd17752007-11-18 19:35:23 +00001120}
1121
Nick Coghland5cacbb2015-05-23 22:24:10 +10001122/*[clinic input]
1123_imp.create_builtin
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001124
Nick Coghland5cacbb2015-05-23 22:24:10 +10001125 spec: object
1126 /
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001127
Nick Coghland5cacbb2015-05-23 22:24:10 +10001128Create an extension module.
1129[clinic start generated code]*/
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001130
Nick Coghland5cacbb2015-05-23 22:24:10 +10001131static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001132_imp_create_builtin(PyObject *module, PyObject *spec)
1133/*[clinic end generated code: output=ace7ff22271e6f39 input=37f966f890384e47]*/
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001134{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001135 struct _inittab *p;
Nick Coghland5cacbb2015-05-23 22:24:10 +10001136 PyObject *name;
Serhiy Storchaka85b0f5b2016-11-20 10:16:47 +02001137 const char *namestr;
Victor Stinner5eb4f592013-11-14 22:38:52 +01001138 PyObject *mod;
Guido van Rossum25ce5661997-08-02 03:10:38 +00001139
Nick Coghland5cacbb2015-05-23 22:24:10 +10001140 name = PyObject_GetAttrString(spec, "name");
1141 if (name == NULL) {
1142 return NULL;
1143 }
1144
Victor Stinner5eb4f592013-11-14 22:38:52 +01001145 mod = _PyImport_FindExtensionObject(name, name);
Nick Coghland5cacbb2015-05-23 22:24:10 +10001146 if (mod || PyErr_Occurred()) {
1147 Py_DECREF(name);
Raymond Hettingerf0afe772016-08-31 08:44:11 -07001148 Py_XINCREF(mod);
Nick Coghland5cacbb2015-05-23 22:24:10 +10001149 return mod;
1150 }
1151
1152 namestr = PyUnicode_AsUTF8(name);
1153 if (namestr == NULL) {
1154 Py_DECREF(name);
1155 return NULL;
1156 }
Guido van Rossum25ce5661997-08-02 03:10:38 +00001157
Eric Snowd393c1b2017-09-14 12:18:12 -06001158 PyObject *modules = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001159 for (p = PyImport_Inittab; p->name != NULL; p++) {
Antoine Pitrou6c40eb72012-01-18 20:16:09 +01001160 PyModuleDef *def;
Serhiy Storchakaf4934ea2016-11-16 10:17:58 +02001161 if (_PyUnicode_EqualToASCIIString(name, p->name)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001162 if (p->initfunc == NULL) {
Nick Coghland5cacbb2015-05-23 22:24:10 +10001163 /* Cannot re-init internal module ("sys" or "builtins") */
1164 mod = PyImport_AddModule(namestr);
1165 Py_DECREF(name);
1166 return mod;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001167 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001168 mod = (*p->initfunc)();
Nick Coghland5cacbb2015-05-23 22:24:10 +10001169 if (mod == NULL) {
1170 Py_DECREF(name);
1171 return NULL;
1172 }
1173 if (PyObject_TypeCheck(mod, &PyModuleDef_Type)) {
1174 Py_DECREF(name);
1175 return PyModule_FromDefAndSpec((PyModuleDef*)mod, spec);
1176 } else {
1177 /* Remember pointer to module init function. */
1178 def = PyModule_GetDef(mod);
Christian Heimesa78b6272016-09-09 00:25:03 +02001179 if (def == NULL) {
1180 Py_DECREF(name);
1181 return NULL;
1182 }
Nick Coghland5cacbb2015-05-23 22:24:10 +10001183 def->m_base.m_init = p->initfunc;
Eric Snowd393c1b2017-09-14 12:18:12 -06001184 if (modules == NULL) {
1185 modules = PyImport_GetModuleDict();
1186 }
1187 if (_PyImport_FixupExtensionObject(mod, name, name,
1188 modules) < 0) {
Nick Coghland5cacbb2015-05-23 22:24:10 +10001189 Py_DECREF(name);
1190 return NULL;
1191 }
1192 Py_DECREF(name);
1193 return mod;
1194 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001195 }
1196 }
Nick Coghland5cacbb2015-05-23 22:24:10 +10001197 Py_DECREF(name);
1198 Py_RETURN_NONE;
Guido van Rossum7f133ed1991-02-19 12:23:57 +00001199}
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001200
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001201
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001202/* Frozen modules */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001203
Benjamin Peterson6fba3db2013-03-18 23:13:31 -07001204static const struct _frozen *
Victor Stinner53dc7352011-03-20 01:50:21 +01001205find_frozen(PyObject *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001206{
Benjamin Peterson6fba3db2013-03-18 23:13:31 -07001207 const struct _frozen *p;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001208
Victor Stinner53dc7352011-03-20 01:50:21 +01001209 if (name == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001210 return NULL;
Benjamin Petersond968e272008-11-05 22:48:33 +00001211
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001212 for (p = PyImport_FrozenModules; ; p++) {
1213 if (p->name == NULL)
1214 return NULL;
Serhiy Storchakaf4934ea2016-11-16 10:17:58 +02001215 if (_PyUnicode_EqualToASCIIString(name, p->name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001216 break;
1217 }
1218 return p;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001219}
1220
Guido van Rossum79f25d91997-04-29 20:08:16 +00001221static PyObject *
Victor Stinner53dc7352011-03-20 01:50:21 +01001222get_frozen_object(PyObject *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001223{
Benjamin Peterson6fba3db2013-03-18 23:13:31 -07001224 const struct _frozen *p = find_frozen(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001225 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001226
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001227 if (p == NULL) {
1228 PyErr_Format(PyExc_ImportError,
Victor Stinner53dc7352011-03-20 01:50:21 +01001229 "No such frozen object named %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001230 name);
1231 return NULL;
1232 }
1233 if (p->code == NULL) {
1234 PyErr_Format(PyExc_ImportError,
Victor Stinner53dc7352011-03-20 01:50:21 +01001235 "Excluded frozen object named %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001236 name);
1237 return NULL;
1238 }
1239 size = p->size;
1240 if (size < 0)
1241 size = -size;
Serhiy Storchakac6792272013-10-19 21:03:34 +03001242 return PyMarshal_ReadObjectFromString((const char *)p->code, size);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001243}
1244
Brett Cannon8d110132009-03-15 02:20:16 +00001245static PyObject *
Victor Stinner53dc7352011-03-20 01:50:21 +01001246is_frozen_package(PyObject *name)
Brett Cannon8d110132009-03-15 02:20:16 +00001247{
Benjamin Peterson6fba3db2013-03-18 23:13:31 -07001248 const struct _frozen *p = find_frozen(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001249 int size;
Brett Cannon8d110132009-03-15 02:20:16 +00001250
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001251 if (p == NULL) {
1252 PyErr_Format(PyExc_ImportError,
Victor Stinner53dc7352011-03-20 01:50:21 +01001253 "No such frozen object named %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001254 name);
1255 return NULL;
1256 }
Brett Cannon8d110132009-03-15 02:20:16 +00001257
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001258 size = p->size;
Brett Cannon8d110132009-03-15 02:20:16 +00001259
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001260 if (size < 0)
1261 Py_RETURN_TRUE;
1262 else
1263 Py_RETURN_FALSE;
Brett Cannon8d110132009-03-15 02:20:16 +00001264}
1265
1266
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001267/* Initialize a frozen module.
Brett Cannon3c2ac442009-03-08 20:49:47 +00001268 Return 1 for success, 0 if the module is not found, and -1 with
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001269 an exception set if the initialization failed.
1270 This function is also used from frozenmain.c */
Guido van Rossum0b344901995-02-07 15:35:27 +00001271
1272int
Victor Stinner53dc7352011-03-20 01:50:21 +01001273PyImport_ImportFrozenModuleObject(PyObject *name)
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001274{
Benjamin Peterson6fba3db2013-03-18 23:13:31 -07001275 const struct _frozen *p;
Brett Cannon18fc4e72014-04-04 10:01:46 -04001276 PyObject *co, *m, *d;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001277 int ispackage;
1278 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001279
Victor Stinner53dc7352011-03-20 01:50:21 +01001280 p = find_frozen(name);
1281
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001282 if (p == NULL)
1283 return 0;
1284 if (p->code == NULL) {
1285 PyErr_Format(PyExc_ImportError,
Victor Stinner53dc7352011-03-20 01:50:21 +01001286 "Excluded frozen object named %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001287 name);
1288 return -1;
1289 }
1290 size = p->size;
1291 ispackage = (size < 0);
1292 if (ispackage)
1293 size = -size;
Serhiy Storchakac6792272013-10-19 21:03:34 +03001294 co = PyMarshal_ReadObjectFromString((const char *)p->code, size);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001295 if (co == NULL)
1296 return -1;
1297 if (!PyCode_Check(co)) {
1298 PyErr_Format(PyExc_TypeError,
Victor Stinner53dc7352011-03-20 01:50:21 +01001299 "frozen object %R is not a code object",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001300 name);
1301 goto err_return;
1302 }
1303 if (ispackage) {
Brett Cannon3e0651b2013-05-31 23:18:39 -04001304 /* Set __path__ to the empty list */
Brett Cannon18fc4e72014-04-04 10:01:46 -04001305 PyObject *l;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001306 int err;
Victor Stinner53dc7352011-03-20 01:50:21 +01001307 m = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001308 if (m == NULL)
1309 goto err_return;
1310 d = PyModule_GetDict(m);
Brett Cannon3e0651b2013-05-31 23:18:39 -04001311 l = PyList_New(0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001312 if (l == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001313 goto err_return;
1314 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001315 err = PyDict_SetItemString(d, "__path__", l);
1316 Py_DECREF(l);
1317 if (err != 0)
1318 goto err_return;
1319 }
Brett Cannon18fc4e72014-04-04 10:01:46 -04001320 d = module_dict_for_exec(name);
1321 if (d == NULL) {
Victor Stinner53dc7352011-03-20 01:50:21 +01001322 goto err_return;
Brett Cannon18fc4e72014-04-04 10:01:46 -04001323 }
1324 m = exec_code_in_module(name, d, co);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001325 if (m == NULL)
1326 goto err_return;
1327 Py_DECREF(co);
1328 Py_DECREF(m);
1329 return 1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001330err_return:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001331 Py_DECREF(co);
1332 return -1;
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001333}
Guido van Rossum74e6a111994-08-29 12:54:38 +00001334
Victor Stinner53dc7352011-03-20 01:50:21 +01001335int
Serhiy Storchakac6792272013-10-19 21:03:34 +03001336PyImport_ImportFrozenModule(const char *name)
Victor Stinner53dc7352011-03-20 01:50:21 +01001337{
1338 PyObject *nameobj;
1339 int ret;
1340 nameobj = PyUnicode_InternFromString(name);
1341 if (nameobj == NULL)
1342 return -1;
1343 ret = PyImport_ImportFrozenModuleObject(nameobj);
1344 Py_DECREF(nameobj);
1345 return ret;
1346}
1347
Guido van Rossum74e6a111994-08-29 12:54:38 +00001348
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001349/* Import a module, either built-in, frozen, or external, and return
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001350 its module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum74e6a111994-08-29 12:54:38 +00001351
Guido van Rossum79f25d91997-04-29 20:08:16 +00001352PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001353PyImport_ImportModule(const char *name)
Guido van Rossum74e6a111994-08-29 12:54:38 +00001354{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001355 PyObject *pname;
1356 PyObject *result;
Marc-André Lemburg3c61c352001-02-09 19:40:15 +00001357
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001358 pname = PyUnicode_FromString(name);
1359 if (pname == NULL)
1360 return NULL;
1361 result = PyImport_Import(pname);
1362 Py_DECREF(pname);
1363 return result;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001364}
1365
Christian Heimes072c0f12008-01-03 23:01:04 +00001366/* Import a module without blocking
1367 *
1368 * At first it tries to fetch the module from sys.modules. If the module was
1369 * never loaded before it loads it with PyImport_ImportModule() unless another
1370 * thread holds the import lock. In the latter case the function raises an
1371 * ImportError instead of blocking.
1372 *
1373 * Returns the module object with incremented ref count.
1374 */
1375PyObject *
1376PyImport_ImportModuleNoBlock(const char *name)
1377{
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001378 return PyImport_ImportModule(name);
Christian Heimes072c0f12008-01-03 23:01:04 +00001379}
1380
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001381
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001382/* Remove importlib frames from the traceback,
1383 * except in Verbose mode. */
1384static void
1385remove_importlib_frames(void)
1386{
1387 const char *importlib_filename = "<frozen importlib._bootstrap>";
Eric Snow32439d62015-05-02 19:15:18 -06001388 const char *external_filename = "<frozen importlib._bootstrap_external>";
Nick Coghlan42c07662012-07-31 21:14:18 +10001389 const char *remove_frames = "_call_with_frames_removed";
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001390 int always_trim = 0;
Benjamin Petersonfa873702012-07-09 13:43:53 -07001391 int in_importlib = 0;
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001392 PyObject *exception, *value, *base_tb, *tb;
Benjamin Petersonfa873702012-07-09 13:43:53 -07001393 PyObject **prev_link, **outer_link = NULL;
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001394
1395 /* Synopsis: if it's an ImportError, we trim all importlib chunks
Nick Coghlan42c07662012-07-31 21:14:18 +10001396 from the traceback. We always trim chunks
1397 which end with a call to "_call_with_frames_removed". */
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001398
1399 PyErr_Fetch(&exception, &value, &base_tb);
1400 if (!exception || Py_VerboseFlag)
1401 goto done;
1402 if (PyType_IsSubtype((PyTypeObject *) exception,
1403 (PyTypeObject *) PyExc_ImportError))
1404 always_trim = 1;
1405
1406 prev_link = &base_tb;
1407 tb = base_tb;
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001408 while (tb != NULL) {
1409 PyTracebackObject *traceback = (PyTracebackObject *)tb;
1410 PyObject *next = (PyObject *) traceback->tb_next;
1411 PyFrameObject *frame = traceback->tb_frame;
1412 PyCodeObject *code = frame->f_code;
1413 int now_in_importlib;
1414
1415 assert(PyTraceBack_Check(tb));
Serhiy Storchakaf4934ea2016-11-16 10:17:58 +02001416 now_in_importlib = _PyUnicode_EqualToASCIIString(code->co_filename, importlib_filename) ||
1417 _PyUnicode_EqualToASCIIString(code->co_filename, external_filename);
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001418 if (now_in_importlib && !in_importlib) {
1419 /* This is the link to this chunk of importlib tracebacks */
1420 outer_link = prev_link;
1421 }
1422 in_importlib = now_in_importlib;
1423
1424 if (in_importlib &&
1425 (always_trim ||
Serhiy Storchakaf4934ea2016-11-16 10:17:58 +02001426 _PyUnicode_EqualToASCIIString(code->co_name, remove_frames))) {
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001427 Py_XINCREF(next);
Serhiy Storchakaec397562016-04-06 09:50:03 +03001428 Py_XSETREF(*outer_link, next);
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001429 prev_link = outer_link;
1430 }
1431 else {
1432 prev_link = (PyObject **) &traceback->tb_next;
1433 }
1434 tb = next;
1435 }
1436done:
1437 PyErr_Restore(exception, value, base_tb);
1438}
1439
1440
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001441static PyObject *
1442resolve_name(PyObject *name, PyObject *globals, int level)
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001443{
Eric Snowb523f842013-11-22 09:05:39 -07001444 _Py_IDENTIFIER(__spec__);
Brett Cannonfd074152012-04-14 14:10:13 -04001445 _Py_IDENTIFIER(__package__);
1446 _Py_IDENTIFIER(__path__);
1447 _Py_IDENTIFIER(__name__);
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001448 _Py_IDENTIFIER(parent);
1449 PyObject *abs_name;
1450 PyObject *package = NULL;
1451 PyObject *spec;
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001452 Py_ssize_t last_dot;
1453 PyObject *base;
1454 int level_up;
1455
1456 if (globals == NULL) {
1457 PyErr_SetString(PyExc_KeyError, "'__name__' not in globals");
1458 goto error;
1459 }
1460 if (!PyDict_Check(globals)) {
1461 PyErr_SetString(PyExc_TypeError, "globals must be a dict");
1462 goto error;
1463 }
1464 package = _PyDict_GetItemId(globals, &PyId___package__);
1465 if (package == Py_None) {
1466 package = NULL;
1467 }
1468 spec = _PyDict_GetItemId(globals, &PyId___spec__);
1469
1470 if (package != NULL) {
1471 Py_INCREF(package);
1472 if (!PyUnicode_Check(package)) {
1473 PyErr_SetString(PyExc_TypeError, "package must be a string");
1474 goto error;
1475 }
1476 else if (spec != NULL && spec != Py_None) {
1477 int equal;
1478 PyObject *parent = _PyObject_GetAttrId(spec, &PyId_parent);
1479 if (parent == NULL) {
1480 goto error;
1481 }
1482
1483 equal = PyObject_RichCompareBool(package, parent, Py_EQ);
1484 Py_DECREF(parent);
1485 if (equal < 0) {
1486 goto error;
1487 }
1488 else if (equal == 0) {
1489 if (PyErr_WarnEx(PyExc_ImportWarning,
1490 "__package__ != __spec__.parent", 1) < 0) {
1491 goto error;
1492 }
1493 }
1494 }
1495 }
1496 else if (spec != NULL && spec != Py_None) {
1497 package = _PyObject_GetAttrId(spec, &PyId_parent);
1498 if (package == NULL) {
1499 goto error;
1500 }
1501 else if (!PyUnicode_Check(package)) {
1502 PyErr_SetString(PyExc_TypeError,
1503 "__spec__.parent must be a string");
1504 goto error;
1505 }
1506 }
1507 else {
1508 if (PyErr_WarnEx(PyExc_ImportWarning,
1509 "can't resolve package from __spec__ or __package__, "
1510 "falling back on __name__ and __path__", 1) < 0) {
1511 goto error;
1512 }
1513
1514 package = _PyDict_GetItemId(globals, &PyId___name__);
1515 if (package == NULL) {
1516 PyErr_SetString(PyExc_KeyError, "'__name__' not in globals");
1517 goto error;
1518 }
1519
1520 Py_INCREF(package);
1521 if (!PyUnicode_Check(package)) {
1522 PyErr_SetString(PyExc_TypeError, "__name__ must be a string");
1523 goto error;
1524 }
1525
1526 if (_PyDict_GetItemId(globals, &PyId___path__) == NULL) {
1527 Py_ssize_t dot;
1528
1529 if (PyUnicode_READY(package) < 0) {
1530 goto error;
1531 }
1532
1533 dot = PyUnicode_FindChar(package, '.',
1534 0, PyUnicode_GET_LENGTH(package), -1);
1535 if (dot == -2) {
1536 goto error;
1537 }
1538
1539 if (dot >= 0) {
1540 PyObject *substr = PyUnicode_Substring(package, 0, dot);
1541 if (substr == NULL) {
1542 goto error;
1543 }
1544 Py_SETREF(package, substr);
1545 }
1546 }
1547 }
1548
1549 last_dot = PyUnicode_GET_LENGTH(package);
1550 if (last_dot == 0) {
1551 PyErr_SetString(PyExc_ImportError,
1552 "attempted relative import with no known parent package");
1553 goto error;
1554 }
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001555
1556 for (level_up = 1; level_up < level; level_up += 1) {
1557 last_dot = PyUnicode_FindChar(package, '.', 0, last_dot, -1);
1558 if (last_dot == -2) {
1559 goto error;
1560 }
1561 else if (last_dot == -1) {
1562 PyErr_SetString(PyExc_ValueError,
1563 "attempted relative import beyond top-level "
1564 "package");
1565 goto error;
1566 }
1567 }
1568
1569 base = PyUnicode_Substring(package, 0, last_dot);
1570 Py_DECREF(package);
1571 if (base == NULL || PyUnicode_GET_LENGTH(name) == 0) {
1572 return base;
1573 }
1574
1575 abs_name = PyUnicode_FromFormat("%U.%U", base, name);
1576 Py_DECREF(base);
1577 return abs_name;
1578
1579 error:
1580 Py_XDECREF(package);
1581 return NULL;
1582}
1583
1584PyObject *
1585PyImport_ImportModuleLevelObject(PyObject *name, PyObject *globals,
1586 PyObject *locals, PyObject *fromlist,
1587 int level)
1588{
Brett Cannonfd074152012-04-14 14:10:13 -04001589 _Py_IDENTIFIER(_find_and_load);
1590 _Py_IDENTIFIER(_handle_fromlist);
Brett Cannonfd074152012-04-14 14:10:13 -04001591 PyObject *abs_name = NULL;
Brett Cannonfd074152012-04-14 14:10:13 -04001592 PyObject *final_mod = NULL;
1593 PyObject *mod = NULL;
1594 PyObject *package = NULL;
Brett Cannonfd074152012-04-14 14:10:13 -04001595 PyInterpreterState *interp = PyThreadState_GET()->interp;
Serhiy Storchakafa494fd2015-05-30 17:45:22 +03001596 int has_from;
Brett Cannonfd074152012-04-14 14:10:13 -04001597
Brett Cannonfd074152012-04-14 14:10:13 -04001598 if (name == NULL) {
1599 PyErr_SetString(PyExc_ValueError, "Empty module name");
1600 goto error;
1601 }
1602
1603 /* The below code is importlib.__import__() & _gcd_import(), ported to C
1604 for added performance. */
1605
1606 if (!PyUnicode_Check(name)) {
1607 PyErr_SetString(PyExc_TypeError, "module name must be a string");
1608 goto error;
1609 }
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001610 if (PyUnicode_READY(name) < 0) {
Brett Cannonfd074152012-04-14 14:10:13 -04001611 goto error;
1612 }
1613 if (level < 0) {
1614 PyErr_SetString(PyExc_ValueError, "level must be >= 0");
1615 goto error;
1616 }
Brett Cannon849113a2016-01-22 15:25:50 -08001617
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001618 if (level > 0) {
1619 abs_name = resolve_name(name, globals, level);
1620 if (abs_name == NULL)
Brett Cannon9fa81262016-01-22 16:39:02 -08001621 goto error;
Brett Cannonfd074152012-04-14 14:10:13 -04001622 }
1623 else { /* level == 0 */
1624 if (PyUnicode_GET_LENGTH(name) == 0) {
1625 PyErr_SetString(PyExc_ValueError, "Empty module name");
1626 goto error;
1627 }
Brett Cannonfd074152012-04-14 14:10:13 -04001628 abs_name = name;
1629 Py_INCREF(abs_name);
1630 }
1631
Eric Snow3f9eee62017-09-15 16:35:20 -06001632 mod = PyImport_GetModule(abs_name);
Serhiy Storchakab4baace2017-07-06 08:09:03 +03001633 if (mod != NULL && mod != Py_None) {
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001634 _Py_IDENTIFIER(__spec__);
1635 _Py_IDENTIFIER(_initializing);
1636 _Py_IDENTIFIER(_lock_unlock_module);
Eric Snowb523f842013-11-22 09:05:39 -07001637 PyObject *value = NULL;
1638 PyObject *spec;
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001639 int initializing = 0;
1640
Antoine Pitrou03989852012-08-28 00:24:52 +02001641 /* Optimization: only call _bootstrap._lock_unlock_module() if
Eric Snowb523f842013-11-22 09:05:39 -07001642 __spec__._initializing is true.
1643 NOTE: because of this, initializing must be set *before*
Antoine Pitrou03989852012-08-28 00:24:52 +02001644 stuffing the new module in sys.modules.
1645 */
Eric Snowb523f842013-11-22 09:05:39 -07001646 spec = _PyObject_GetAttrId(mod, &PyId___spec__);
1647 if (spec != NULL) {
1648 value = _PyObject_GetAttrId(spec, &PyId__initializing);
1649 Py_DECREF(spec);
1650 }
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001651 if (value == NULL)
1652 PyErr_Clear();
1653 else {
1654 initializing = PyObject_IsTrue(value);
1655 Py_DECREF(value);
1656 if (initializing == -1)
1657 PyErr_Clear();
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001658 if (initializing > 0) {
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001659 value = _PyObject_CallMethodIdObjArgs(interp->importlib,
1660 &PyId__lock_unlock_module, abs_name,
1661 NULL);
1662 if (value == NULL)
1663 goto error;
1664 Py_DECREF(value);
1665 }
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001666 }
Brett Cannonfd074152012-04-14 14:10:13 -04001667 }
1668 else {
Eric Snow3f9eee62017-09-15 16:35:20 -06001669 Py_XDECREF(mod);
Alexandre Vassalotti865eaa12013-05-02 10:44:04 -07001670 mod = _PyObject_CallMethodIdObjArgs(interp->importlib,
Brett Cannonfd074152012-04-14 14:10:13 -04001671 &PyId__find_and_load, abs_name,
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001672 interp->import_func, NULL);
Brett Cannonfd074152012-04-14 14:10:13 -04001673 if (mod == NULL) {
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001674 goto error;
Brett Cannonfd074152012-04-14 14:10:13 -04001675 }
1676 }
1677
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001678 has_from = 0;
1679 if (fromlist != NULL && fromlist != Py_None) {
1680 has_from = PyObject_IsTrue(fromlist);
1681 if (has_from < 0)
1682 goto error;
1683 }
Serhiy Storchakafa494fd2015-05-30 17:45:22 +03001684 if (!has_from) {
Victor Stinner744c34e2016-05-20 11:36:13 +02001685 Py_ssize_t len = PyUnicode_GET_LENGTH(name);
1686 if (level == 0 || len > 0) {
1687 Py_ssize_t dot;
Brett Cannonfd074152012-04-14 14:10:13 -04001688
Victor Stinner744c34e2016-05-20 11:36:13 +02001689 dot = PyUnicode_FindChar(name, '.', 0, len, 1);
1690 if (dot == -2) {
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001691 goto error;
Brett Cannonfd074152012-04-14 14:10:13 -04001692 }
1693
Victor Stinner744c34e2016-05-20 11:36:13 +02001694 if (dot == -1) {
Antoine Pitrou6efa50a2012-05-07 21:41:59 +02001695 /* No dot in module name, simple exit */
Antoine Pitrou6efa50a2012-05-07 21:41:59 +02001696 final_mod = mod;
1697 Py_INCREF(mod);
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001698 goto error;
Antoine Pitrou6efa50a2012-05-07 21:41:59 +02001699 }
1700
Brett Cannonfd074152012-04-14 14:10:13 -04001701 if (level == 0) {
Victor Stinner744c34e2016-05-20 11:36:13 +02001702 PyObject *front = PyUnicode_Substring(name, 0, dot);
1703 if (front == NULL) {
1704 goto error;
1705 }
1706
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001707 final_mod = PyImport_ImportModuleLevelObject(front, NULL, NULL, NULL, 0);
Antoine Pitroub78174c2012-05-06 17:15:23 +02001708 Py_DECREF(front);
Brett Cannonfd074152012-04-14 14:10:13 -04001709 }
1710 else {
Victor Stinner744c34e2016-05-20 11:36:13 +02001711 Py_ssize_t cut_off = len - dot;
Antoine Pitrou22a1d172012-04-16 22:06:21 +02001712 Py_ssize_t abs_name_len = PyUnicode_GET_LENGTH(abs_name);
Brett Cannon49f8d8b2012-04-14 21:50:00 -04001713 PyObject *to_return = PyUnicode_Substring(abs_name, 0,
Brett Cannonfd074152012-04-14 14:10:13 -04001714 abs_name_len - cut_off);
Antoine Pitrou22a1d172012-04-16 22:06:21 +02001715 if (to_return == NULL) {
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001716 goto error;
Antoine Pitrou22a1d172012-04-16 22:06:21 +02001717 }
Brett Cannonfd074152012-04-14 14:10:13 -04001718
Eric Snow3f9eee62017-09-15 16:35:20 -06001719 final_mod = PyImport_GetModule(to_return);
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001720 Py_DECREF(to_return);
Brett Cannon49f8d8b2012-04-14 21:50:00 -04001721 if (final_mod == NULL) {
1722 PyErr_Format(PyExc_KeyError,
1723 "%R not in sys.modules as expected",
1724 to_return);
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001725 goto error;
Brett Cannon49f8d8b2012-04-14 21:50:00 -04001726 }
Brett Cannonfd074152012-04-14 14:10:13 -04001727 }
1728 }
1729 else {
1730 final_mod = mod;
1731 Py_INCREF(mod);
1732 }
1733 }
1734 else {
Alexandre Vassalotti865eaa12013-05-02 10:44:04 -07001735 final_mod = _PyObject_CallMethodIdObjArgs(interp->importlib,
Brett Cannonfd074152012-04-14 14:10:13 -04001736 &PyId__handle_fromlist, mod,
Serhiy Storchaka133138a2016-08-02 22:51:21 +03001737 fromlist, interp->import_func,
Brett Cannonfd074152012-04-14 14:10:13 -04001738 NULL);
1739 }
Antoine Pitrou6efa50a2012-05-07 21:41:59 +02001740
Brett Cannonfd074152012-04-14 14:10:13 -04001741 error:
1742 Py_XDECREF(abs_name);
Brett Cannonfd074152012-04-14 14:10:13 -04001743 Py_XDECREF(mod);
1744 Py_XDECREF(package);
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001745 if (final_mod == NULL)
1746 remove_importlib_frames();
Brett Cannonfd074152012-04-14 14:10:13 -04001747 return final_mod;
Guido van Rossum75acc9c1998-03-03 22:26:50 +00001748}
1749
Victor Stinnerfe93faf2011-03-14 15:54:52 -04001750PyObject *
Benjamin Peterson04778a82011-05-25 09:29:00 -05001751PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject *locals,
Victor Stinnerfe93faf2011-03-14 15:54:52 -04001752 PyObject *fromlist, int level)
1753{
1754 PyObject *nameobj, *mod;
1755 nameobj = PyUnicode_FromString(name);
1756 if (nameobj == NULL)
1757 return NULL;
1758 mod = PyImport_ImportModuleLevelObject(nameobj, globals, locals,
1759 fromlist, level);
1760 Py_DECREF(nameobj);
1761 return mod;
1762}
1763
1764
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001765/* Re-import a module of any kind and return its module object, WITH
1766 INCREMENTED REFERENCE COUNT */
1767
Guido van Rossum79f25d91997-04-29 20:08:16 +00001768PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001769PyImport_ReloadModule(PyObject *m)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001770{
Eric Snow3f9eee62017-09-15 16:35:20 -06001771 _Py_IDENTIFIER(imp);
Brett Cannon62228db2012-04-29 14:38:11 -04001772 _Py_IDENTIFIER(reload);
1773 PyObject *reloaded_module = NULL;
Eric Snow3f9eee62017-09-15 16:35:20 -06001774 PyObject *imp = _PyImport_GetModuleId(&PyId_imp);
Brett Cannon62228db2012-04-29 14:38:11 -04001775 if (imp == NULL) {
1776 imp = PyImport_ImportModule("imp");
1777 if (imp == NULL) {
1778 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001779 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001780 }
Victor Stinnerad3c03b2011-03-14 09:21:33 -04001781
Victor Stinner55ba38a2016-12-09 16:09:30 +01001782 reloaded_module = _PyObject_CallMethodIdObjArgs(imp, &PyId_reload, m, NULL);
Brett Cannon62228db2012-04-29 14:38:11 -04001783 Py_DECREF(imp);
1784 return reloaded_module;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001785}
1786
1787
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001788/* Higher-level import emulator which emulates the "import" statement
1789 more accurately -- it invokes the __import__() function from the
1790 builtins of the current globals. This means that the import is
1791 done using whatever import hooks are installed in the current
Brett Cannonbc2eff32010-09-19 21:39:02 +00001792 environment.
Guido van Rossum6058eb41998-12-21 19:51:00 +00001793 A dummy list ["__doc__"] is passed as the 4th argument so that
Neal Norwitz80e7f272007-08-26 06:45:23 +00001794 e.g. PyImport_Import(PyUnicode_FromString("win32com.client.gencache"))
Guido van Rossum6058eb41998-12-21 19:51:00 +00001795 will return <module "gencache"> instead of <module "win32com">. */
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001796
1797PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001798PyImport_Import(PyObject *module_name)
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001799{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001800 static PyObject *silly_list = NULL;
1801 static PyObject *builtins_str = NULL;
1802 static PyObject *import_str = NULL;
1803 PyObject *globals = NULL;
1804 PyObject *import = NULL;
1805 PyObject *builtins = NULL;
1806 PyObject *r = NULL;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001807
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001808 /* Initialize constant string objects */
1809 if (silly_list == NULL) {
1810 import_str = PyUnicode_InternFromString("__import__");
1811 if (import_str == NULL)
1812 return NULL;
1813 builtins_str = PyUnicode_InternFromString("__builtins__");
1814 if (builtins_str == NULL)
1815 return NULL;
Brett Cannonbc2eff32010-09-19 21:39:02 +00001816 silly_list = PyList_New(0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001817 if (silly_list == NULL)
1818 return NULL;
1819 }
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001820
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001821 /* Get the builtins from current globals */
1822 globals = PyEval_GetGlobals();
1823 if (globals != NULL) {
1824 Py_INCREF(globals);
1825 builtins = PyObject_GetItem(globals, builtins_str);
1826 if (builtins == NULL)
1827 goto err;
1828 }
1829 else {
1830 /* No globals -- use standard builtins, and fake globals */
1831 builtins = PyImport_ImportModuleLevel("builtins",
1832 NULL, NULL, NULL, 0);
1833 if (builtins == NULL)
1834 return NULL;
1835 globals = Py_BuildValue("{OO}", builtins_str, builtins);
1836 if (globals == NULL)
1837 goto err;
1838 }
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001839
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001840 /* Get the __import__ function from the builtins */
1841 if (PyDict_Check(builtins)) {
1842 import = PyObject_GetItem(builtins, import_str);
1843 if (import == NULL)
1844 PyErr_SetObject(PyExc_KeyError, import_str);
1845 }
1846 else
1847 import = PyObject_GetAttr(builtins, import_str);
1848 if (import == NULL)
1849 goto err;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001850
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001851 /* Call the __import__ function with the proper argument list
Brett Cannonbc2eff32010-09-19 21:39:02 +00001852 Always use absolute import here.
1853 Calling for side-effect of import. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001854 r = PyObject_CallFunction(import, "OOOOi", module_name, globals,
1855 globals, silly_list, 0, NULL);
Brett Cannonbc2eff32010-09-19 21:39:02 +00001856 if (r == NULL)
1857 goto err;
1858 Py_DECREF(r);
1859
Eric Snow3f9eee62017-09-15 16:35:20 -06001860 r = PyImport_GetModule(module_name);
1861 if (r == NULL && !PyErr_Occurred()) {
Serhiy Storchaka145541c2017-06-15 20:54:38 +03001862 PyErr_SetObject(PyExc_KeyError, module_name);
1863 }
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001864
1865 err:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001866 Py_XDECREF(globals);
1867 Py_XDECREF(builtins);
1868 Py_XDECREF(import);
Tim Peters50d8d372001-02-28 05:34:27 +00001869
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001870 return r;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001871}
1872
Brett Cannon4caa61d2014-01-09 19:03:32 -05001873/*[clinic input]
1874_imp.extension_suffixes
1875
1876Returns the list of file suffixes used to identify extension modules.
1877[clinic start generated code]*/
1878
Brett Cannon4caa61d2014-01-09 19:03:32 -05001879static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001880_imp_extension_suffixes_impl(PyObject *module)
1881/*[clinic end generated code: output=0bf346e25a8f0cd3 input=ecdeeecfcb6f839e]*/
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001882{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001883 PyObject *list;
Brett Cannon2657df42012-05-04 15:20:40 -04001884 const char *suffix;
1885 unsigned int index = 0;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001886
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001887 list = PyList_New(0);
1888 if (list == NULL)
1889 return NULL;
Brett Cannon2657df42012-05-04 15:20:40 -04001890#ifdef HAVE_DYNAMIC_LOADING
1891 while ((suffix = _PyImport_DynLoadFiletab[index])) {
1892 PyObject *item = PyUnicode_FromString(suffix);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001893 if (item == NULL) {
1894 Py_DECREF(list);
1895 return NULL;
1896 }
1897 if (PyList_Append(list, item) < 0) {
1898 Py_DECREF(list);
1899 Py_DECREF(item);
1900 return NULL;
1901 }
1902 Py_DECREF(item);
Brett Cannon2657df42012-05-04 15:20:40 -04001903 index += 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001904 }
Brett Cannon2657df42012-05-04 15:20:40 -04001905#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001906 return list;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001907}
1908
Brett Cannon4caa61d2014-01-09 19:03:32 -05001909/*[clinic input]
Brett Cannon4caa61d2014-01-09 19:03:32 -05001910_imp.init_frozen
1911
1912 name: unicode
1913 /
1914
1915Initializes a frozen module.
1916[clinic start generated code]*/
1917
Brett Cannon4caa61d2014-01-09 19:03:32 -05001918static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001919_imp_init_frozen_impl(PyObject *module, PyObject *name)
1920/*[clinic end generated code: output=fc0511ed869fd69c input=13019adfc04f3fb3]*/
Brett Cannon4caa61d2014-01-09 19:03:32 -05001921{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001922 int ret;
1923 PyObject *m;
Brett Cannon4caa61d2014-01-09 19:03:32 -05001924
Victor Stinner53dc7352011-03-20 01:50:21 +01001925 ret = PyImport_ImportFrozenModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001926 if (ret < 0)
1927 return NULL;
1928 if (ret == 0) {
Serhiy Storchaka228b12e2017-01-23 09:47:21 +02001929 Py_RETURN_NONE;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001930 }
Victor Stinner53dc7352011-03-20 01:50:21 +01001931 m = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001932 Py_XINCREF(m);
1933 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001934}
1935
Brett Cannon4caa61d2014-01-09 19:03:32 -05001936/*[clinic input]
1937_imp.get_frozen_object
1938
1939 name: unicode
1940 /
1941
1942Create a code object for a frozen module.
1943[clinic start generated code]*/
1944
Brett Cannon4caa61d2014-01-09 19:03:32 -05001945static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001946_imp_get_frozen_object_impl(PyObject *module, PyObject *name)
1947/*[clinic end generated code: output=2568cc5b7aa0da63 input=ed689bc05358fdbd]*/
Brett Cannon4caa61d2014-01-09 19:03:32 -05001948{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001949 return get_frozen_object(name);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001950}
1951
Brett Cannon4caa61d2014-01-09 19:03:32 -05001952/*[clinic input]
1953_imp.is_frozen_package
1954
1955 name: unicode
1956 /
1957
1958Returns True if the module name is of a frozen package.
1959[clinic start generated code]*/
1960
Brett Cannon4caa61d2014-01-09 19:03:32 -05001961static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001962_imp_is_frozen_package_impl(PyObject *module, PyObject *name)
1963/*[clinic end generated code: output=e70cbdb45784a1c9 input=81b6cdecd080fbb8]*/
Brett Cannon4caa61d2014-01-09 19:03:32 -05001964{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001965 return is_frozen_package(name);
Brett Cannon8d110132009-03-15 02:20:16 +00001966}
1967
Brett Cannon4caa61d2014-01-09 19:03:32 -05001968/*[clinic input]
1969_imp.is_builtin
1970
1971 name: unicode
1972 /
1973
1974Returns True if the module name corresponds to a built-in module.
1975[clinic start generated code]*/
1976
Guido van Rossum79f25d91997-04-29 20:08:16 +00001977static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001978_imp_is_builtin_impl(PyObject *module, PyObject *name)
1979/*[clinic end generated code: output=3bfd1162e2d3be82 input=86befdac021dd1c7]*/
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001980{
Brett Cannon4caa61d2014-01-09 19:03:32 -05001981 return PyLong_FromLong(is_builtin(name));
1982}
1983
1984/*[clinic input]
1985_imp.is_frozen
1986
1987 name: unicode
1988 /
1989
1990Returns True if the module name corresponds to a frozen module.
1991[clinic start generated code]*/
1992
Brett Cannon4caa61d2014-01-09 19:03:32 -05001993static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001994_imp_is_frozen_impl(PyObject *module, PyObject *name)
1995/*[clinic end generated code: output=01f408f5ec0f2577 input=7301dbca1897d66b]*/
Brett Cannon4caa61d2014-01-09 19:03:32 -05001996{
Benjamin Peterson6fba3db2013-03-18 23:13:31 -07001997 const struct _frozen *p;
Brett Cannon4caa61d2014-01-09 19:03:32 -05001998
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001999 p = find_frozen(name);
2000 return PyBool_FromLong((long) (p == NULL ? 0 : p->size));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002001}
2002
Larry Hastings1df0b352015-08-24 19:53:56 -07002003/* Common implementation for _imp.exec_dynamic and _imp.exec_builtin */
2004static int
2005exec_builtin_or_dynamic(PyObject *mod) {
2006 PyModuleDef *def;
2007 void *state;
2008
2009 if (!PyModule_Check(mod)) {
2010 return 0;
2011 }
2012
2013 def = PyModule_GetDef(mod);
2014 if (def == NULL) {
Larry Hastings1df0b352015-08-24 19:53:56 -07002015 return 0;
2016 }
Brett Cannon52794db2016-09-07 17:00:43 -07002017
Larry Hastings1df0b352015-08-24 19:53:56 -07002018 state = PyModule_GetState(mod);
Larry Hastings1df0b352015-08-24 19:53:56 -07002019 if (state) {
2020 /* Already initialized; skip reload */
2021 return 0;
2022 }
Brett Cannon52794db2016-09-07 17:00:43 -07002023
Larry Hastings1df0b352015-08-24 19:53:56 -07002024 return PyModule_ExecDef(mod, def);
2025}
2026
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002027#ifdef HAVE_DYNAMIC_LOADING
2028
Brett Cannon4caa61d2014-01-09 19:03:32 -05002029/*[clinic input]
Nick Coghland5cacbb2015-05-23 22:24:10 +10002030_imp.create_dynamic
Brett Cannon4caa61d2014-01-09 19:03:32 -05002031
Nick Coghland5cacbb2015-05-23 22:24:10 +10002032 spec: object
Brett Cannon4caa61d2014-01-09 19:03:32 -05002033 file: object = NULL
2034 /
2035
Nick Coghland5cacbb2015-05-23 22:24:10 +10002036Create an extension module.
Brett Cannon4caa61d2014-01-09 19:03:32 -05002037[clinic start generated code]*/
2038
Brett Cannon4caa61d2014-01-09 19:03:32 -05002039static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03002040_imp_create_dynamic_impl(PyObject *module, PyObject *spec, PyObject *file)
2041/*[clinic end generated code: output=83249b827a4fde77 input=c31b954f4cf4e09d]*/
Brett Cannon4caa61d2014-01-09 19:03:32 -05002042{
Nick Coghland5cacbb2015-05-23 22:24:10 +10002043 PyObject *mod, *name, *path;
Victor Stinnerfefd70c2011-03-14 15:54:07 -04002044 FILE *fp;
2045
Nick Coghland5cacbb2015-05-23 22:24:10 +10002046 name = PyObject_GetAttrString(spec, "name");
2047 if (name == NULL) {
2048 return NULL;
2049 }
2050
2051 path = PyObject_GetAttrString(spec, "origin");
2052 if (path == NULL) {
2053 Py_DECREF(name);
2054 return NULL;
2055 }
2056
2057 mod = _PyImport_FindExtensionObject(name, path);
2058 if (mod != NULL) {
2059 Py_DECREF(name);
2060 Py_DECREF(path);
2061 Py_INCREF(mod);
2062 return mod;
2063 }
2064
Brett Cannon4caa61d2014-01-09 19:03:32 -05002065 if (file != NULL) {
2066 fp = _Py_fopen_obj(path, "r");
Victor Stinnere9ddbf62011-03-22 10:46:35 +01002067 if (fp == NULL) {
Nick Coghland5cacbb2015-05-23 22:24:10 +10002068 Py_DECREF(name);
Brett Cannon4caa61d2014-01-09 19:03:32 -05002069 Py_DECREF(path);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002070 return NULL;
Victor Stinnere9ddbf62011-03-22 10:46:35 +01002071 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002072 }
Victor Stinnerfefd70c2011-03-14 15:54:07 -04002073 else
2074 fp = NULL;
Nick Coghland5cacbb2015-05-23 22:24:10 +10002075
2076 mod = _PyImport_LoadDynamicModuleWithSpec(spec, fp);
2077
2078 Py_DECREF(name);
Brett Cannon4caa61d2014-01-09 19:03:32 -05002079 Py_DECREF(path);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002080 if (fp)
2081 fclose(fp);
Victor Stinnerfefd70c2011-03-14 15:54:07 -04002082 return mod;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002083}
2084
Nick Coghland5cacbb2015-05-23 22:24:10 +10002085/*[clinic input]
2086_imp.exec_dynamic -> int
2087
2088 mod: object
2089 /
2090
2091Initialize an extension module.
2092[clinic start generated code]*/
2093
2094static int
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03002095_imp_exec_dynamic_impl(PyObject *module, PyObject *mod)
2096/*[clinic end generated code: output=f5720ac7b465877d input=9fdbfcb250280d3a]*/
Nick Coghland5cacbb2015-05-23 22:24:10 +10002097{
Larry Hastings1df0b352015-08-24 19:53:56 -07002098 return exec_builtin_or_dynamic(mod);
Nick Coghland5cacbb2015-05-23 22:24:10 +10002099}
2100
2101
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002102#endif /* HAVE_DYNAMIC_LOADING */
2103
Larry Hastings7726ac92014-01-31 22:03:12 -08002104/*[clinic input]
Larry Hastings1df0b352015-08-24 19:53:56 -07002105_imp.exec_builtin -> int
2106
2107 mod: object
2108 /
2109
2110Initialize a built-in module.
2111[clinic start generated code]*/
2112
2113static int
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03002114_imp_exec_builtin_impl(PyObject *module, PyObject *mod)
2115/*[clinic end generated code: output=0262447b240c038e input=7beed5a2f12a60ca]*/
Larry Hastings1df0b352015-08-24 19:53:56 -07002116{
2117 return exec_builtin_or_dynamic(mod);
2118}
2119
Barry Warsaw28a691b2010-04-17 00:19:56 +00002120
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002121PyDoc_STRVAR(doc_imp,
Brett Cannon6f44d662012-04-15 16:08:47 -04002122"(Extremely) low-level import machinery bits as used by importlib and imp.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00002123
Guido van Rossum79f25d91997-04-29 20:08:16 +00002124static PyMethodDef imp_methods[] = {
Brett Cannon4caa61d2014-01-09 19:03:32 -05002125 _IMP_EXTENSION_SUFFIXES_METHODDEF
2126 _IMP_LOCK_HELD_METHODDEF
2127 _IMP_ACQUIRE_LOCK_METHODDEF
2128 _IMP_RELEASE_LOCK_METHODDEF
2129 _IMP_GET_FROZEN_OBJECT_METHODDEF
2130 _IMP_IS_FROZEN_PACKAGE_METHODDEF
Nick Coghland5cacbb2015-05-23 22:24:10 +10002131 _IMP_CREATE_BUILTIN_METHODDEF
Brett Cannon4caa61d2014-01-09 19:03:32 -05002132 _IMP_INIT_FROZEN_METHODDEF
2133 _IMP_IS_BUILTIN_METHODDEF
2134 _IMP_IS_FROZEN_METHODDEF
Nick Coghland5cacbb2015-05-23 22:24:10 +10002135 _IMP_CREATE_DYNAMIC_METHODDEF
2136 _IMP_EXEC_DYNAMIC_METHODDEF
Larry Hastings1df0b352015-08-24 19:53:56 -07002137 _IMP_EXEC_BUILTIN_METHODDEF
Brett Cannon4caa61d2014-01-09 19:03:32 -05002138 _IMP__FIX_CO_FILENAME_METHODDEF
2139 {NULL, NULL} /* sentinel */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002140};
2141
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002142
Martin v. Löwis1a214512008-06-11 05:26:20 +00002143static struct PyModuleDef impmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002144 PyModuleDef_HEAD_INIT,
Brett Cannon6f44d662012-04-15 16:08:47 -04002145 "_imp",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002146 doc_imp,
2147 0,
2148 imp_methods,
2149 NULL,
2150 NULL,
2151 NULL,
2152 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00002153};
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002154
Jason Tishler6bc06ec2003-09-04 11:59:50 +00002155PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00002156PyInit_imp(void)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002157{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002158 PyObject *m, *d;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002159
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002160 m = PyModule_Create(&impmodule);
2161 if (m == NULL)
2162 goto failure;
2163 d = PyModule_GetDict(m);
2164 if (d == NULL)
2165 goto failure;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002166
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002167 return m;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002168 failure:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002169 Py_XDECREF(m);
2170 return NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002171}
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002172
2173
Guido van Rossumb18618d2000-05-03 23:44:39 +00002174/* API for embedding applications that want to add their own entries
2175 to the table of built-in modules. This should normally be called
2176 *before* Py_Initialize(). When the table resize fails, -1 is
2177 returned and the existing table is unchanged.
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002178
2179 After a similar function by Just van Rossum. */
2180
2181int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00002182PyImport_ExtendInittab(struct _inittab *newtab)
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002183{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002184 static struct _inittab *our_copy = NULL;
2185 struct _inittab *p;
2186 int i, n;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002187
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002188 /* Count the number of entries in both tables */
2189 for (n = 0; newtab[n].name != NULL; n++)
2190 ;
2191 if (n == 0)
2192 return 0; /* Nothing to do */
2193 for (i = 0; PyImport_Inittab[i].name != NULL; i++)
2194 ;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002195
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002196 /* Allocate new memory for the combined table */
2197 p = our_copy;
2198 PyMem_RESIZE(p, struct _inittab, i+n+1);
2199 if (p == NULL)
2200 return -1;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002201
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002202 /* Copy the tables into the new memory */
2203 if (our_copy != PyImport_Inittab)
2204 memcpy(p, PyImport_Inittab, (i+1) * sizeof(struct _inittab));
2205 PyImport_Inittab = our_copy = p;
2206 memcpy(p+i, newtab, (n+1) * sizeof(struct _inittab));
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002207
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002208 return 0;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002209}
2210
2211/* Shorthand to add a single entry given a name and a function */
2212
2213int
Brett Cannona826f322009-04-02 03:41:46 +00002214PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void))
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002215{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002216 struct _inittab newtab[2];
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002217
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002218 memset(newtab, '\0', sizeof newtab);
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002219
Serhiy Storchaka20b39b22014-09-28 11:27:24 +03002220 newtab[0].name = name;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002221 newtab[0].initfunc = initfunc;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002222
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002223 return PyImport_ExtendInittab(newtab);
Guido van Rossum09cae1f1998-05-14 02:32:54 +00002224}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002225
2226#ifdef __cplusplus
2227}
2228#endif