blob: 6882b570600bddd3e3524789c4700a8d178dd567 [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 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00008#include "errcode.h"
Guido van Rossumc405b7b1991-06-04 19:39:42 +00009#include "marshal.h"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000010#include "code.h"
Antoine Pitroubc07a5c2012-07-08 12:01:27 +020011#include "frameobject.h"
Guido van Rossumd8bac6d1992-02-26 15:19:13 +000012#include "osdefs.h"
Guido van Rossum1ae940a1995-01-02 19:04:15 +000013#include "importdl.h"
Guido van Rossumc405b7b1991-06-04 19:39:42 +000014
Guido van Rossum55a83382000-09-20 20:31:38 +000015#ifdef HAVE_FCNTL_H
16#include <fcntl.h>
17#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000018#ifdef __cplusplus
Brett Cannon9a5b25a2010-03-01 02:09:17 +000019extern "C" {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000020#endif
Guido van Rossum55a83382000-09-20 20:31:38 +000021
Christian Heimesd3eb5a152008-02-24 00:38:49 +000022#ifdef MS_WINDOWS
23/* for stat.st_mode */
24typedef unsigned short mode_t;
Daniel Stutzbachc7937792010-09-09 21:18:04 +000025/* for _mkdir */
26#include <direct.h>
Christian Heimesd3eb5a152008-02-24 00:38:49 +000027#endif
28
Guido van Rossum21d335e1993-10-15 13:01:11 +000029
Barry Warsaw28a691b2010-04-17 00:19:56 +000030#define CACHEDIR "__pycache__"
Guido van Rossum96774c12000-05-01 20:19:08 +000031
Victor Stinner95872862011-03-07 18:20:56 +010032/* See _PyImport_FixupExtensionObject() below */
Guido van Rossum25ce5661997-08-02 03:10:38 +000033static PyObject *extensions = NULL;
Guido van Rossum3f5da241990-12-20 15:06:42 +000034
Victor Stinnerfe7c5b52011-04-05 01:48:03 +020035/* Function from Parser/tokenizer.c */
36extern char * PyTokenizer_FindEncodingFilename(int, PyObject *);
37
Guido van Rossum771c6c81997-10-31 18:37:24 +000038/* This table is defined in config.c: */
39extern struct _inittab _PyImport_Inittab[];
40
41struct _inittab *PyImport_Inittab = _PyImport_Inittab;
Guido van Rossum66f1fa81991-04-03 19:03:52 +000042
Victor Stinnerd0296212011-03-14 14:04:10 -040043static PyObject *initstr = NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +000044
Guido van Rossum1ae940a1995-01-02 19:04:15 +000045/* Initialize things */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000046
47void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000048_PyImport_Init(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000049{
Victor Stinnerd0296212011-03-14 14:04:10 -040050 initstr = PyUnicode_InternFromString("__init__");
51 if (initstr == NULL)
52 Py_FatalError("Can't initialize import variables");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000053}
54
Guido van Rossum25ce5661997-08-02 03:10:38 +000055void
Just van Rossum52e14d62002-12-30 22:08:05 +000056_PyImportHooks_Init(void)
57{
Brett Cannonfd074152012-04-14 14:10:13 -040058 PyObject *v, *path_hooks = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000059 int err = 0;
Just van Rossum52e14d62002-12-30 22:08:05 +000060
Brett Cannonfd074152012-04-14 14:10:13 -040061 /* adding sys.path_hooks and sys.path_importer_cache */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000062 v = PyList_New(0);
63 if (v == NULL)
64 goto error;
65 err = PySys_SetObject("meta_path", v);
66 Py_DECREF(v);
67 if (err)
68 goto error;
69 v = PyDict_New();
70 if (v == NULL)
71 goto error;
72 err = PySys_SetObject("path_importer_cache", v);
73 Py_DECREF(v);
74 if (err)
75 goto error;
76 path_hooks = PyList_New(0);
77 if (path_hooks == NULL)
78 goto error;
79 err = PySys_SetObject("path_hooks", path_hooks);
80 if (err) {
Just van Rossum52e14d62002-12-30 22:08:05 +000081 error:
Brett Cannonfd074152012-04-14 14:10:13 -040082 PyErr_Print();
83 Py_FatalError("initializing sys.meta_path, sys.path_hooks, "
Nadeem Vawda8f46d652012-05-05 12:27:30 +020084 "or path_importer_cache failed");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000085 }
Brett Cannonfd074152012-04-14 14:10:13 -040086 Py_DECREF(path_hooks);
87}
88
89void
90_PyImportZip_Init(void)
91{
92 PyObject *path_hooks, *zimpimport;
93 int err = 0;
94
95 path_hooks = PySys_GetObject("path_hooks");
96 if (path_hooks == NULL)
97 goto error;
98
99 if (Py_VerboseFlag)
100 PySys_WriteStderr("# installing zipimport hook\n");
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000101
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000102 zimpimport = PyImport_ImportModule("zipimport");
103 if (zimpimport == NULL) {
104 PyErr_Clear(); /* No zip import module -- okay */
105 if (Py_VerboseFlag)
106 PySys_WriteStderr("# can't import zipimport\n");
107 }
108 else {
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200109 _Py_IDENTIFIER(zipimporter);
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +0200110 PyObject *zipimporter = _PyObject_GetAttrId(zimpimport,
111 &PyId_zipimporter);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000112 Py_DECREF(zimpimport);
113 if (zipimporter == NULL) {
114 PyErr_Clear(); /* No zipimporter object -- okay */
115 if (Py_VerboseFlag)
116 PySys_WriteStderr(
117 "# can't import zipimport.zipimporter\n");
118 }
119 else {
Brett Cannon8923a4d2012-04-24 22:03:46 -0400120 /* sys.path_hooks.insert(0, zipimporter) */
121 err = PyList_Insert(path_hooks, 0, zipimporter);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000122 Py_DECREF(zipimporter);
Brett Cannonfd074152012-04-14 14:10:13 -0400123 if (err < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000124 goto error;
Brett Cannonfd074152012-04-14 14:10:13 -0400125 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000126 if (Py_VerboseFlag)
127 PySys_WriteStderr(
128 "# installed zipimport hook\n");
129 }
130 }
Brett Cannonfd074152012-04-14 14:10:13 -0400131
132 return;
133
134 error:
135 PyErr_Print();
Brett Cannonacf85cd2012-04-29 12:50:03 -0400136 Py_FatalError("initializing zipimport failed");
Just van Rossum52e14d62002-12-30 22:08:05 +0000137}
138
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000139/* Locking primitives to prevent parallel imports of the same module
140 in different threads to return with a partially loaded module.
141 These calls are serialized by the global interpreter lock. */
142
143#ifdef WITH_THREAD
144
Guido van Rossum49b56061998-10-01 20:42:43 +0000145#include "pythread.h"
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000146
Guido van Rossum65d5b571998-12-21 19:32:43 +0000147static PyThread_type_lock import_lock = 0;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000148static long import_lock_thread = -1;
149static int import_lock_level = 0;
150
Benjamin Peterson0df35a92009-10-04 20:32:25 +0000151void
152_PyImport_AcquireLock(void)
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000153{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000154 long me = PyThread_get_thread_ident();
155 if (me == -1)
156 return; /* Too bad */
157 if (import_lock == NULL) {
158 import_lock = PyThread_allocate_lock();
159 if (import_lock == NULL)
160 return; /* Nothing much we can do. */
161 }
162 if (import_lock_thread == me) {
163 import_lock_level++;
164 return;
165 }
166 if (import_lock_thread != -1 || !PyThread_acquire_lock(import_lock, 0))
167 {
168 PyThreadState *tstate = PyEval_SaveThread();
169 PyThread_acquire_lock(import_lock, 1);
170 PyEval_RestoreThread(tstate);
171 }
172 import_lock_thread = me;
173 import_lock_level = 1;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000174}
175
Benjamin Peterson0df35a92009-10-04 20:32:25 +0000176int
177_PyImport_ReleaseLock(void)
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000178{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000179 long me = PyThread_get_thread_ident();
180 if (me == -1 || import_lock == NULL)
181 return 0; /* Too bad */
182 if (import_lock_thread != me)
183 return -1;
184 import_lock_level--;
185 if (import_lock_level == 0) {
186 import_lock_thread = -1;
187 PyThread_release_lock(import_lock);
188 }
189 return 1;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000190}
191
Gregory P. Smith24cec9f2010-03-01 06:18:41 +0000192/* This function is called from PyOS_AfterFork to ensure that newly
193 created child processes do not share locks with the parent.
194 We now acquire the import lock around fork() calls but on some platforms
195 (Solaris 9 and earlier? see isue7242) that still left us with problems. */
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000196
197void
198_PyImport_ReInitLock(void)
199{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000200 if (import_lock != NULL)
201 import_lock = PyThread_allocate_lock();
Nick Coghlanb2ddf792010-12-02 04:11:46 +0000202 if (import_lock_level > 1) {
203 /* Forked as a side effect of import */
204 long me = PyThread_get_thread_ident();
Brett Cannone4710cf2012-11-15 21:39:36 -0500205 /* The following could fail if the lock is already held, but forking as
206 a side-effect of an import is a) rare, b) nuts, and c) difficult to
207 do thanks to the lock only being held when doing individual module
208 locks per import. */
209 PyThread_acquire_lock(import_lock, NOWAIT_LOCK);
Nick Coghlanb2ddf792010-12-02 04:11:46 +0000210 import_lock_thread = me;
211 import_lock_level--;
212 } else {
213 import_lock_thread = -1;
214 import_lock_level = 0;
215 }
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000216}
217
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000218#endif
219
Tim Peters69232342001-08-30 05:16:13 +0000220static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +0000221imp_lock_held(PyObject *self, PyObject *noargs)
Tim Peters69232342001-08-30 05:16:13 +0000222{
Tim Peters69232342001-08-30 05:16:13 +0000223#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000224 return PyBool_FromLong(import_lock_thread != -1);
Tim Peters69232342001-08-30 05:16:13 +0000225#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000226 return PyBool_FromLong(0);
Tim Peters69232342001-08-30 05:16:13 +0000227#endif
228}
229
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000230static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +0000231imp_acquire_lock(PyObject *self, PyObject *noargs)
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000232{
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000233#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000234 _PyImport_AcquireLock();
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000235#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000236 Py_INCREF(Py_None);
237 return Py_None;
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000238}
239
240static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +0000241imp_release_lock(PyObject *self, PyObject *noargs)
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000242{
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000243#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000244 if (_PyImport_ReleaseLock() < 0) {
245 PyErr_SetString(PyExc_RuntimeError,
246 "not holding the import lock");
247 return NULL;
248 }
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000249#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000250 Py_INCREF(Py_None);
251 return Py_None;
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000252}
253
Antoine Pitrou8db076c2011-10-30 19:13:55 +0100254void
255_PyImport_Fini(void)
256{
257 Py_XDECREF(extensions);
258 extensions = NULL;
Antoine Pitrou8db076c2011-10-30 19:13:55 +0100259#ifdef WITH_THREAD
260 if (import_lock != NULL) {
261 PyThread_free_lock(import_lock);
262 import_lock = NULL;
263 }
264#endif
265}
266
Guido van Rossum25ce5661997-08-02 03:10:38 +0000267/* Helper for sys */
268
269PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000270PyImport_GetModuleDict(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000271{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000272 PyInterpreterState *interp = PyThreadState_GET()->interp;
273 if (interp->modules == NULL)
274 Py_FatalError("PyImport_GetModuleDict: no module dictionary!");
275 return interp->modules;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000276}
277
Guido van Rossum3f5da241990-12-20 15:06:42 +0000278
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000279/* List of names to clear in sys */
280static char* sys_deletes[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000281 "path", "argv", "ps1", "ps2",
282 "last_type", "last_value", "last_traceback",
283 "path_hooks", "path_importer_cache", "meta_path",
284 /* misc stuff */
285 "flags", "float_info",
286 NULL
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000287};
288
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000289static char* sys_files[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000290 "stdin", "__stdin__",
291 "stdout", "__stdout__",
292 "stderr", "__stderr__",
293 NULL
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000294};
295
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000296
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000297/* Un-initialize things, as good as we can */
Guido van Rossum3f5da241990-12-20 15:06:42 +0000298
Guido van Rossum3f5da241990-12-20 15:06:42 +0000299void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000300PyImport_Cleanup(void)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000301{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000302 Py_ssize_t pos, ndone;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000303 PyObject *key, *value, *dict;
304 PyInterpreterState *interp = PyThreadState_GET()->interp;
305 PyObject *modules = interp->modules;
Guido van Rossum758eec01998-01-19 21:58:26 +0000306
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000307 if (modules == NULL)
308 return; /* Already done */
Guido van Rossum758eec01998-01-19 21:58:26 +0000309
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000310 /* Delete some special variables first. These are common
311 places where user values hide and people complain when their
312 destructors fail. Since the modules containing them are
313 deleted *last* of all, they would come too late in the normal
314 destruction order. Sigh. */
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000315
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000316 value = PyDict_GetItemString(modules, "builtins");
317 if (value != NULL && PyModule_Check(value)) {
318 dict = PyModule_GetDict(value);
319 if (Py_VerboseFlag)
320 PySys_WriteStderr("# clear builtins._\n");
321 PyDict_SetItemString(dict, "_", Py_None);
322 }
323 value = PyDict_GetItemString(modules, "sys");
324 if (value != NULL && PyModule_Check(value)) {
325 char **p;
326 PyObject *v;
327 dict = PyModule_GetDict(value);
328 for (p = sys_deletes; *p != NULL; p++) {
329 if (Py_VerboseFlag)
330 PySys_WriteStderr("# clear sys.%s\n", *p);
331 PyDict_SetItemString(dict, *p, Py_None);
332 }
333 for (p = sys_files; *p != NULL; p+=2) {
334 if (Py_VerboseFlag)
335 PySys_WriteStderr("# restore sys.%s\n", *p);
336 v = PyDict_GetItemString(dict, *(p+1));
337 if (v == NULL)
338 v = Py_None;
339 PyDict_SetItemString(dict, *p, v);
340 }
341 }
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000342
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000343 /* First, delete __main__ */
344 value = PyDict_GetItemString(modules, "__main__");
345 if (value != NULL && PyModule_Check(value)) {
346 if (Py_VerboseFlag)
347 PySys_WriteStderr("# cleanup __main__\n");
348 _PyModule_Clear(value);
349 PyDict_SetItemString(modules, "__main__", Py_None);
350 }
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000351
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000352 /* The special treatment of "builtins" here is because even
353 when it's not referenced as a module, its dictionary is
354 referenced by almost every module's __builtins__. Since
355 deleting a module clears its dictionary (even if there are
356 references left to it), we need to delete the "builtins"
357 module last. Likewise, we don't delete sys until the very
358 end because it is implicitly referenced (e.g. by print).
Guido van Rossum758eec01998-01-19 21:58:26 +0000359
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000360 Also note that we 'delete' modules by replacing their entry
361 in the modules dict with None, rather than really deleting
362 them; this avoids a rehash of the modules dictionary and
363 also marks them as "non existent" so they won't be
364 re-imported. */
Guido van Rossum758eec01998-01-19 21:58:26 +0000365
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000366 /* Next, repeatedly delete modules with a reference count of
367 one (skipping builtins and sys) and delete them */
368 do {
369 ndone = 0;
370 pos = 0;
371 while (PyDict_Next(modules, &pos, &key, &value)) {
372 if (value->ob_refcnt != 1)
373 continue;
374 if (PyUnicode_Check(key) && PyModule_Check(value)) {
Victor Stinner9464d612011-03-07 17:08:21 +0100375 if (PyUnicode_CompareWithASCIIString(key, "builtins") == 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000376 continue;
Victor Stinner9464d612011-03-07 17:08:21 +0100377 if (PyUnicode_CompareWithASCIIString(key, "sys") == 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000378 continue;
379 if (Py_VerboseFlag)
Victor Stinner9464d612011-03-07 17:08:21 +0100380 PySys_FormatStderr(
381 "# cleanup[1] %U\n", key);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000382 _PyModule_Clear(value);
383 PyDict_SetItem(modules, key, Py_None);
384 ndone++;
385 }
386 }
387 } while (ndone > 0);
Guido van Rossum758eec01998-01-19 21:58:26 +0000388
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000389 /* Next, delete all modules (still skipping builtins and sys) */
390 pos = 0;
391 while (PyDict_Next(modules, &pos, &key, &value)) {
392 if (PyUnicode_Check(key) && PyModule_Check(value)) {
Victor Stinner9464d612011-03-07 17:08:21 +0100393 if (PyUnicode_CompareWithASCIIString(key, "builtins") == 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000394 continue;
Victor Stinner9464d612011-03-07 17:08:21 +0100395 if (PyUnicode_CompareWithASCIIString(key, "sys") == 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000396 continue;
397 if (Py_VerboseFlag)
Victor Stinner9464d612011-03-07 17:08:21 +0100398 PySys_FormatStderr("# cleanup[2] %U\n", key);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000399 _PyModule_Clear(value);
400 PyDict_SetItem(modules, key, Py_None);
401 }
402 }
Guido van Rossum758eec01998-01-19 21:58:26 +0000403
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000404 /* Next, delete sys and builtins (in that order) */
405 value = PyDict_GetItemString(modules, "sys");
406 if (value != NULL && PyModule_Check(value)) {
407 if (Py_VerboseFlag)
408 PySys_WriteStderr("# cleanup sys\n");
409 _PyModule_Clear(value);
410 PyDict_SetItemString(modules, "sys", Py_None);
411 }
412 value = PyDict_GetItemString(modules, "builtins");
413 if (value != NULL && PyModule_Check(value)) {
414 if (Py_VerboseFlag)
415 PySys_WriteStderr("# cleanup builtins\n");
416 _PyModule_Clear(value);
417 PyDict_SetItemString(modules, "builtins", Py_None);
418 }
Guido van Rossum758eec01998-01-19 21:58:26 +0000419
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000420 /* Finally, clear and delete the modules directory */
421 PyDict_Clear(modules);
422 interp->modules = NULL;
423 Py_DECREF(modules);
Guido van Rossum8d15b5d1990-10-26 14:58:58 +0000424}
Guido van Rossum7f133ed1991-02-19 12:23:57 +0000425
426
Barry Warsaw28a691b2010-04-17 00:19:56 +0000427/* Helper for pythonrun.c -- return magic number and tag. */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000428
429long
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000430PyImport_GetMagicNumber(void)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000431{
Antoine Pitrou44b4b6a2012-07-10 18:27:54 +0200432 long res;
Brett Cannon77b2abd2012-07-09 16:09:00 -0400433 PyInterpreterState *interp = PyThreadState_Get()->interp;
434 PyObject *pyc_magic = PyObject_GetAttrString(interp->importlib,
435 "_RAW_MAGIC_NUMBER");
436 if (pyc_magic == NULL)
437 return -1;
Antoine Pitrou44b4b6a2012-07-10 18:27:54 +0200438 res = PyLong_AsLong(pyc_magic);
Benjamin Peterson66f36592012-07-09 22:21:55 -0700439 Py_DECREF(pyc_magic);
440 return res;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000441}
442
443
Brett Cannon3adc7b72012-07-09 14:22:12 -0400444extern const char * _PySys_ImplCacheTag;
445
Barry Warsaw28a691b2010-04-17 00:19:56 +0000446const char *
447PyImport_GetMagicTag(void)
448{
Brett Cannon3adc7b72012-07-09 14:22:12 -0400449 return _PySys_ImplCacheTag;
Barry Warsaw28a691b2010-04-17 00:19:56 +0000450}
451
Brett Cannon98979b82012-07-02 15:13:11 -0400452
Guido van Rossum25ce5661997-08-02 03:10:38 +0000453/* Magic for extension modules (built-in as well as dynamically
454 loaded). To prevent initializing an extension module more than
455 once, we keep a static dictionary 'extensions' keyed by module name
456 (for built-in modules) or by filename (for dynamically loaded
Barry Warsaw92883382001-08-13 23:05:44 +0000457 modules), containing these modules. A copy of the module's
Victor Stinner95872862011-03-07 18:20:56 +0100458 dictionary is stored by calling _PyImport_FixupExtensionObject()
Guido van Rossum25ce5661997-08-02 03:10:38 +0000459 immediately after the module initialization function succeeds. A
460 copy can be retrieved from there by calling
Victor Stinner95872862011-03-07 18:20:56 +0100461 _PyImport_FindExtensionObject().
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000462
Barry Warsaw7c9627b2010-06-17 18:38:20 +0000463 Modules which do support multiple initialization set their m_size
464 field to a non-negative number (indicating the size of the
465 module-specific state). They are still recorded in the extensions
466 dictionary, to avoid loading shared libraries twice.
Martin v. Löwis1a214512008-06-11 05:26:20 +0000467*/
468
469int
Victor Stinner95872862011-03-07 18:20:56 +0100470_PyImport_FixupExtensionObject(PyObject *mod, PyObject *name,
471 PyObject *filename)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000472{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000473 PyObject *modules, *dict;
474 struct PyModuleDef *def;
475 if (extensions == NULL) {
476 extensions = PyDict_New();
477 if (extensions == NULL)
478 return -1;
479 }
480 if (mod == NULL || !PyModule_Check(mod)) {
481 PyErr_BadInternalCall();
482 return -1;
483 }
484 def = PyModule_GetDef(mod);
485 if (!def) {
486 PyErr_BadInternalCall();
487 return -1;
488 }
489 modules = PyImport_GetModuleDict();
Victor Stinner95872862011-03-07 18:20:56 +0100490 if (PyDict_SetItem(modules, name, mod) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000491 return -1;
492 if (_PyState_AddModule(mod, def) < 0) {
Victor Stinner95872862011-03-07 18:20:56 +0100493 PyDict_DelItem(modules, name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000494 return -1;
495 }
496 if (def->m_size == -1) {
497 if (def->m_base.m_copy) {
498 /* Somebody already imported the module,
499 likely under a different name.
500 XXX this should really not happen. */
501 Py_DECREF(def->m_base.m_copy);
502 def->m_base.m_copy = NULL;
503 }
504 dict = PyModule_GetDict(mod);
505 if (dict == NULL)
506 return -1;
507 def->m_base.m_copy = PyDict_Copy(dict);
508 if (def->m_base.m_copy == NULL)
509 return -1;
510 }
Victor Stinner49d3f252010-10-17 01:24:53 +0000511 PyDict_SetItem(extensions, filename, (PyObject*)def);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000512 return 0;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000513}
514
Victor Stinner49d3f252010-10-17 01:24:53 +0000515int
516_PyImport_FixupBuiltin(PyObject *mod, char *name)
517{
518 int res;
Victor Stinner95872862011-03-07 18:20:56 +0100519 PyObject *nameobj;
Victor Stinner21fcd0c2011-03-07 18:28:15 +0100520 nameobj = PyUnicode_InternFromString(name);
Victor Stinner95872862011-03-07 18:20:56 +0100521 if (nameobj == NULL)
Victor Stinner49d3f252010-10-17 01:24:53 +0000522 return -1;
Victor Stinner95872862011-03-07 18:20:56 +0100523 res = _PyImport_FixupExtensionObject(mod, nameobj, nameobj);
524 Py_DECREF(nameobj);
Victor Stinner49d3f252010-10-17 01:24:53 +0000525 return res;
526}
527
Guido van Rossum25ce5661997-08-02 03:10:38 +0000528PyObject *
Victor Stinner95872862011-03-07 18:20:56 +0100529_PyImport_FindExtensionObject(PyObject *name, PyObject *filename)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000530{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000531 PyObject *mod, *mdict;
532 PyModuleDef* def;
533 if (extensions == NULL)
534 return NULL;
Victor Stinner49d3f252010-10-17 01:24:53 +0000535 def = (PyModuleDef*)PyDict_GetItem(extensions, filename);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000536 if (def == NULL)
537 return NULL;
538 if (def->m_size == -1) {
539 /* Module does not support repeated initialization */
540 if (def->m_base.m_copy == NULL)
541 return NULL;
Victor Stinner95872862011-03-07 18:20:56 +0100542 mod = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000543 if (mod == NULL)
544 return NULL;
545 mdict = PyModule_GetDict(mod);
546 if (mdict == NULL)
547 return NULL;
548 if (PyDict_Update(mdict, def->m_base.m_copy))
549 return NULL;
550 }
551 else {
552 if (def->m_base.m_init == NULL)
553 return NULL;
554 mod = def->m_base.m_init();
555 if (mod == NULL)
556 return NULL;
Victor Stinner95872862011-03-07 18:20:56 +0100557 PyDict_SetItem(PyImport_GetModuleDict(), name, mod);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000558 Py_DECREF(mod);
559 }
560 if (_PyState_AddModule(mod, def) < 0) {
Victor Stinner95872862011-03-07 18:20:56 +0100561 PyDict_DelItem(PyImport_GetModuleDict(), name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000562 Py_DECREF(mod);
563 return NULL;
564 }
565 if (Py_VerboseFlag)
Victor Stinner95872862011-03-07 18:20:56 +0100566 PySys_FormatStderr("import %U # previously loaded (%R)\n",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000567 name, filename);
568 return mod;
Brett Cannon9a5b25a2010-03-01 02:09:17 +0000569
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000570}
571
Victor Stinner49d3f252010-10-17 01:24:53 +0000572PyObject *
Victor Stinner501c09a2011-02-23 00:02:00 +0000573_PyImport_FindBuiltin(const char *name)
Victor Stinner49d3f252010-10-17 01:24:53 +0000574{
Victor Stinner95872862011-03-07 18:20:56 +0100575 PyObject *res, *nameobj;
Victor Stinner21fcd0c2011-03-07 18:28:15 +0100576 nameobj = PyUnicode_InternFromString(name);
Victor Stinner95872862011-03-07 18:20:56 +0100577 if (nameobj == NULL)
Victor Stinner49d3f252010-10-17 01:24:53 +0000578 return NULL;
Victor Stinner95872862011-03-07 18:20:56 +0100579 res = _PyImport_FindExtensionObject(nameobj, nameobj);
580 Py_DECREF(nameobj);
Victor Stinner49d3f252010-10-17 01:24:53 +0000581 return res;
582}
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000583
584/* Get the module object corresponding to a module name.
585 First check the modules dictionary if there's one there,
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +0000586 if not, create a new one and insert it in the modules dictionary.
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000587 Because the former action is most common, THIS DOES NOT RETURN A
588 'NEW' REFERENCE! */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000589
Guido van Rossum79f25d91997-04-29 20:08:16 +0000590PyObject *
Victor Stinner27ee0892011-03-04 12:57:09 +0000591PyImport_AddModuleObject(PyObject *name)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000592{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000593 PyObject *modules = PyImport_GetModuleDict();
594 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000595
Victor Stinner27ee0892011-03-04 12:57:09 +0000596 if ((m = PyDict_GetItem(modules, name)) != NULL &&
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000597 PyModule_Check(m))
598 return m;
Victor Stinner27ee0892011-03-04 12:57:09 +0000599 m = PyModule_NewObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000600 if (m == NULL)
601 return NULL;
Victor Stinner27ee0892011-03-04 12:57:09 +0000602 if (PyDict_SetItem(modules, name, m) != 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000603 Py_DECREF(m);
604 return NULL;
605 }
606 Py_DECREF(m); /* Yes, it still exists, in modules! */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000607
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000608 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000609}
610
Victor Stinner27ee0892011-03-04 12:57:09 +0000611PyObject *
612PyImport_AddModule(const char *name)
613{
614 PyObject *nameobj, *module;
615 nameobj = PyUnicode_FromString(name);
616 if (nameobj == NULL)
617 return NULL;
618 module = PyImport_AddModuleObject(nameobj);
619 Py_DECREF(nameobj);
620 return module;
621}
622
623
Tim Peters1cd70172004-08-02 03:52:12 +0000624/* Remove name from sys.modules, if it's there. */
625static void
Victor Stinner27ee0892011-03-04 12:57:09 +0000626remove_module(PyObject *name)
Tim Peters1cd70172004-08-02 03:52:12 +0000627{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000628 PyObject *modules = PyImport_GetModuleDict();
Victor Stinner27ee0892011-03-04 12:57:09 +0000629 if (PyDict_GetItem(modules, name) == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000630 return;
Victor Stinner27ee0892011-03-04 12:57:09 +0000631 if (PyDict_DelItem(modules, name) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000632 Py_FatalError("import: deleting existing key in"
633 "sys.modules failed");
Tim Peters1cd70172004-08-02 03:52:12 +0000634}
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000635
Christian Heimes3b06e532008-01-07 20:12:44 +0000636
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000637/* Execute a code object in a module and return the module object
Tim Peters1cd70172004-08-02 03:52:12 +0000638 * WITH INCREMENTED REFERENCE COUNT. If an error occurs, name is
639 * removed from sys.modules, to avoid leaving damaged module objects
640 * in sys.modules. The caller may wish to restore the original
641 * module object (if any) in this case; PyImport_ReloadModule is an
642 * example.
Barry Warsaw28a691b2010-04-17 00:19:56 +0000643 *
644 * Note that PyImport_ExecCodeModuleWithPathnames() is the preferred, richer
645 * interface. The other two exist primarily for backward compatibility.
Tim Peters1cd70172004-08-02 03:52:12 +0000646 */
Guido van Rossum79f25d91997-04-29 20:08:16 +0000647PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000648PyImport_ExecCodeModule(char *name, PyObject *co)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000649{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000650 return PyImport_ExecCodeModuleWithPathnames(
651 name, co, (char *)NULL, (char *)NULL);
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000652}
653
654PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000655PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname)
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000656{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000657 return PyImport_ExecCodeModuleWithPathnames(
658 name, co, pathname, (char *)NULL);
Barry Warsaw28a691b2010-04-17 00:19:56 +0000659}
660
661PyObject *
662PyImport_ExecCodeModuleWithPathnames(char *name, PyObject *co, char *pathname,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000663 char *cpathname)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000664{
Victor Stinner27ee0892011-03-04 12:57:09 +0000665 PyObject *m = NULL;
666 PyObject *nameobj, *pathobj = NULL, *cpathobj = NULL;
667
668 nameobj = PyUnicode_FromString(name);
669 if (nameobj == NULL)
670 return NULL;
671
Victor Stinner27ee0892011-03-04 12:57:09 +0000672 if (cpathname != NULL) {
673 cpathobj = PyUnicode_DecodeFSDefault(cpathname);
674 if (cpathobj == NULL)
675 goto error;
Brett Cannona6473f92012-07-13 13:57:03 -0400676 }
677 else
Victor Stinner27ee0892011-03-04 12:57:09 +0000678 cpathobj = NULL;
Brett Cannona6473f92012-07-13 13:57:03 -0400679
680 if (pathname != NULL) {
681 pathobj = PyUnicode_DecodeFSDefault(pathname);
682 if (pathobj == NULL)
683 goto error;
684 }
685 else if (cpathobj != NULL) {
686 PyInterpreterState *interp = PyThreadState_GET()->interp;
687 _Py_IDENTIFIER(_get_sourcefile);
688
689 if (interp == NULL) {
690 Py_FatalError("PyImport_ExecCodeModuleWithPathnames: "
691 "no interpreter!");
692 }
693
694 pathobj = _PyObject_CallMethodObjIdArgs(interp->importlib,
695 &PyId__get_sourcefile, cpathobj,
696 NULL);
697 if (pathobj == NULL)
698 PyErr_Clear();
699 }
700 else
701 pathobj = NULL;
702
Victor Stinner27ee0892011-03-04 12:57:09 +0000703 m = PyImport_ExecCodeModuleObject(nameobj, co, pathobj, cpathobj);
704error:
705 Py_DECREF(nameobj);
706 Py_XDECREF(pathobj);
707 Py_XDECREF(cpathobj);
708 return m;
709}
710
711PyObject*
712PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname,
713 PyObject *cpathname)
714{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000715 PyObject *modules = PyImport_GetModuleDict();
716 PyObject *m, *d, *v;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000717
Victor Stinner27ee0892011-03-04 12:57:09 +0000718 m = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000719 if (m == NULL)
720 return NULL;
721 /* If the module is being reloaded, we get the old module back
722 and re-use its dict to exec the new code. */
723 d = PyModule_GetDict(m);
724 if (PyDict_GetItemString(d, "__builtins__") == NULL) {
725 if (PyDict_SetItemString(d, "__builtins__",
726 PyEval_GetBuiltins()) != 0)
727 goto error;
728 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000729 if (pathname != NULL) {
Brett Cannona6473f92012-07-13 13:57:03 -0400730 v = pathname;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000731 }
Brett Cannona6473f92012-07-13 13:57:03 -0400732 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000733 v = ((PyCodeObject *)co)->co_filename;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000734 }
Brett Cannona6473f92012-07-13 13:57:03 -0400735 Py_INCREF(v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000736 if (PyDict_SetItemString(d, "__file__", v) != 0)
737 PyErr_Clear(); /* Not important enough to report */
738 Py_DECREF(v);
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000739
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000740 /* Remember the pyc path name as the __cached__ attribute. */
Victor Stinner27ee0892011-03-04 12:57:09 +0000741 if (cpathname != NULL)
742 v = cpathname;
743 else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000744 v = Py_None;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000745 if (PyDict_SetItemString(d, "__cached__", v) != 0)
746 PyErr_Clear(); /* Not important enough to report */
Barry Warsaw28a691b2010-04-17 00:19:56 +0000747
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000748 v = PyEval_EvalCode(co, d, d);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000749 if (v == NULL)
750 goto error;
751 Py_DECREF(v);
Guido van Rossumb65e85c1997-07-10 18:00:45 +0000752
Victor Stinner27ee0892011-03-04 12:57:09 +0000753 if ((m = PyDict_GetItem(modules, name)) == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000754 PyErr_Format(PyExc_ImportError,
Victor Stinner27ee0892011-03-04 12:57:09 +0000755 "Loaded module %R not found in sys.modules",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000756 name);
757 return NULL;
758 }
Guido van Rossumb65e85c1997-07-10 18:00:45 +0000759
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000760 Py_INCREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000761
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000762 return m;
Tim Peters1cd70172004-08-02 03:52:12 +0000763
764 error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000765 remove_module(name);
766 return NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000767}
768
769
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000770static void
771update_code_filenames(PyCodeObject *co, PyObject *oldname, PyObject *newname)
772{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000773 PyObject *constants, *tmp;
774 Py_ssize_t i, n;
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000775
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000776 if (PyUnicode_Compare(co->co_filename, oldname))
777 return;
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000778
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000779 tmp = co->co_filename;
780 co->co_filename = newname;
781 Py_INCREF(co->co_filename);
782 Py_DECREF(tmp);
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000783
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000784 constants = co->co_consts;
785 n = PyTuple_GET_SIZE(constants);
786 for (i = 0; i < n; i++) {
787 tmp = PyTuple_GET_ITEM(constants, i);
788 if (PyCode_Check(tmp))
789 update_code_filenames((PyCodeObject *)tmp,
790 oldname, newname);
791 }
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000792}
793
Victor Stinner2f42ae52011-03-20 00:41:24 +0100794static void
795update_compiled_module(PyCodeObject *co, PyObject *newname)
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000796{
Victor Stinner2f42ae52011-03-20 00:41:24 +0100797 PyObject *oldname;
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000798
Victor Stinner2f42ae52011-03-20 00:41:24 +0100799 if (PyUnicode_Compare(co->co_filename, newname) == 0)
800 return;
Hirokazu Yamamoto4f447fb2009-03-04 01:52:10 +0000801
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000802 oldname = co->co_filename;
803 Py_INCREF(oldname);
804 update_code_filenames(co, oldname, newname);
805 Py_DECREF(oldname);
Antoine Pitroud35cbf62009-01-06 19:02:24 +0000806}
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000807
Brett Cannon442c9b92011-03-23 16:14:42 -0700808static PyObject *
809imp_fix_co_filename(PyObject *self, PyObject *args)
810{
811 PyObject *co;
812 PyObject *file_path;
813
814 if (!PyArg_ParseTuple(args, "OO:_fix_co_filename", &co, &file_path))
815 return NULL;
816
817 if (!PyCode_Check(co)) {
818 PyErr_SetString(PyExc_TypeError,
819 "first argument must be a code object");
820 return NULL;
821 }
822
823 if (!PyUnicode_Check(file_path)) {
824 PyErr_SetString(PyExc_TypeError,
825 "second argument must be a string");
826 return NULL;
827 }
828
829 update_compiled_module((PyCodeObject*)co, file_path);
830
831 Py_RETURN_NONE;
832}
833
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000834
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000835/* Forward */
Victor Stinner53dc7352011-03-20 01:50:21 +0100836static struct _frozen * find_frozen(PyObject *);
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000837
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000838
839/* Helper to test for built-in module */
840
841static int
Victor Stinner95872862011-03-07 18:20:56 +0100842is_builtin(PyObject *name)
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000843{
Victor Stinner95872862011-03-07 18:20:56 +0100844 int i, cmp;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000845 for (i = 0; PyImport_Inittab[i].name != NULL; i++) {
Victor Stinner95872862011-03-07 18:20:56 +0100846 cmp = PyUnicode_CompareWithASCIIString(name, PyImport_Inittab[i].name);
847 if (cmp == 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000848 if (PyImport_Inittab[i].initfunc == NULL)
849 return -1;
850 else
851 return 1;
852 }
853 }
854 return 0;
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000855}
856
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000857
Just van Rossum52e14d62002-12-30 22:08:05 +0000858/* Return an importer object for a sys.path/pkg.__path__ item 'p',
859 possibly by fetching it from the path_importer_cache dict. If it
Thomas Wouters89f507f2006-12-13 04:49:30 +0000860 wasn't yet cached, traverse path_hooks until a hook is found
Just van Rossum52e14d62002-12-30 22:08:05 +0000861 that can handle the path item. Return None if no hook could;
862 this tells our caller it should fall back to the builtin
863 import mechanism. Cache the result in path_importer_cache.
864 Returns a borrowed reference. */
865
866static PyObject *
867get_path_importer(PyObject *path_importer_cache, PyObject *path_hooks,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000868 PyObject *p)
Just van Rossum52e14d62002-12-30 22:08:05 +0000869{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000870 PyObject *importer;
871 Py_ssize_t j, nhooks;
Just van Rossum52e14d62002-12-30 22:08:05 +0000872
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000873 /* These conditions are the caller's responsibility: */
874 assert(PyList_Check(path_hooks));
875 assert(PyDict_Check(path_importer_cache));
Just van Rossum52e14d62002-12-30 22:08:05 +0000876
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000877 nhooks = PyList_Size(path_hooks);
878 if (nhooks < 0)
879 return NULL; /* Shouldn't happen */
Just van Rossum52e14d62002-12-30 22:08:05 +0000880
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000881 importer = PyDict_GetItem(path_importer_cache, p);
882 if (importer != NULL)
883 return importer;
Just van Rossum52e14d62002-12-30 22:08:05 +0000884
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000885 /* set path_importer_cache[p] to None to avoid recursion */
886 if (PyDict_SetItem(path_importer_cache, p, Py_None) != 0)
887 return NULL;
Just van Rossum52e14d62002-12-30 22:08:05 +0000888
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000889 for (j = 0; j < nhooks; j++) {
890 PyObject *hook = PyList_GetItem(path_hooks, j);
891 if (hook == NULL)
892 return NULL;
893 importer = PyObject_CallFunctionObjArgs(hook, p, NULL);
894 if (importer != NULL)
895 break;
Just van Rossum52e14d62002-12-30 22:08:05 +0000896
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000897 if (!PyErr_ExceptionMatches(PyExc_ImportError)) {
898 return NULL;
899 }
900 PyErr_Clear();
901 }
902 if (importer == NULL) {
Brett Cannonaa936422012-04-27 15:30:58 -0400903 return Py_None;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000904 }
905 if (importer != NULL) {
906 int err = PyDict_SetItem(path_importer_cache, p, importer);
907 Py_DECREF(importer);
908 if (err != 0)
909 return NULL;
910 }
911 return importer;
Just van Rossum52e14d62002-12-30 22:08:05 +0000912}
913
Christian Heimes9cd17752007-11-18 19:35:23 +0000914PyAPI_FUNC(PyObject *)
915PyImport_GetImporter(PyObject *path) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000916 PyObject *importer=NULL, *path_importer_cache=NULL, *path_hooks=NULL;
Christian Heimes9cd17752007-11-18 19:35:23 +0000917
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000918 if ((path_importer_cache = PySys_GetObject("path_importer_cache"))) {
919 if ((path_hooks = PySys_GetObject("path_hooks"))) {
920 importer = get_path_importer(path_importer_cache,
921 path_hooks, path);
922 }
923 }
924 Py_XINCREF(importer); /* get_path_importer returns a borrowed reference */
925 return importer;
Christian Heimes9cd17752007-11-18 19:35:23 +0000926}
927
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000928
Victor Stinner95872862011-03-07 18:20:56 +0100929static int init_builtin(PyObject *); /* Forward */
Guido van Rossumaee0bad1997-09-05 07:33:22 +0000930
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000931/* Initialize a built-in module.
Thomas Wouters89f507f2006-12-13 04:49:30 +0000932 Return 1 for success, 0 if the module is not found, and -1 with
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000933 an exception set if the initialization failed. */
Guido van Rossum7f133ed1991-02-19 12:23:57 +0000934
Guido van Rossum7f133ed1991-02-19 12:23:57 +0000935static int
Victor Stinner95872862011-03-07 18:20:56 +0100936init_builtin(PyObject *name)
Guido van Rossum7f133ed1991-02-19 12:23:57 +0000937{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000938 struct _inittab *p;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000939
Victor Stinner95872862011-03-07 18:20:56 +0100940 if (_PyImport_FindExtensionObject(name, name) != NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000941 return 1;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000942
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000943 for (p = PyImport_Inittab; p->name != NULL; p++) {
944 PyObject *mod;
Antoine Pitrou6c40eb72012-01-18 20:16:09 +0100945 PyModuleDef *def;
Victor Stinner95872862011-03-07 18:20:56 +0100946 if (PyUnicode_CompareWithASCIIString(name, p->name) == 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000947 if (p->initfunc == NULL) {
948 PyErr_Format(PyExc_ImportError,
Victor Stinner95872862011-03-07 18:20:56 +0100949 "Cannot re-init internal module %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000950 name);
951 return -1;
952 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000953 mod = (*p->initfunc)();
954 if (mod == 0)
955 return -1;
Antoine Pitrou6c40eb72012-01-18 20:16:09 +0100956 /* Remember pointer to module init function. */
957 def = PyModule_GetDef(mod);
958 def->m_base.m_init = p->initfunc;
Victor Stinner95872862011-03-07 18:20:56 +0100959 if (_PyImport_FixupExtensionObject(mod, name, name) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000960 return -1;
961 /* FixupExtension has put the module into sys.modules,
962 so we can release our own reference. */
963 Py_DECREF(mod);
964 return 1;
965 }
966 }
967 return 0;
Guido van Rossum7f133ed1991-02-19 12:23:57 +0000968}
Guido van Rossumf56e3db1993-04-01 20:59:32 +0000969
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000970
Guido van Rossum6ec1efb1995-08-04 04:08:57 +0000971/* Frozen modules */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000972
Guido van Rossumcfd0a221996-06-17 17:06:34 +0000973static struct _frozen *
Victor Stinner53dc7352011-03-20 01:50:21 +0100974find_frozen(PyObject *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +0000975{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000976 struct _frozen *p;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +0000977
Victor Stinner53dc7352011-03-20 01:50:21 +0100978 if (name == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000979 return NULL;
Benjamin Petersond968e272008-11-05 22:48:33 +0000980
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000981 for (p = PyImport_FrozenModules; ; p++) {
982 if (p->name == NULL)
983 return NULL;
Victor Stinner53dc7352011-03-20 01:50:21 +0100984 if (PyUnicode_CompareWithASCIIString(name, p->name) == 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000985 break;
986 }
987 return p;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +0000988}
989
Guido van Rossum79f25d91997-04-29 20:08:16 +0000990static PyObject *
Victor Stinner53dc7352011-03-20 01:50:21 +0100991get_frozen_object(PyObject *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +0000992{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000993 struct _frozen *p = find_frozen(name);
994 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +0000995
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000996 if (p == NULL) {
997 PyErr_Format(PyExc_ImportError,
Victor Stinner53dc7352011-03-20 01:50:21 +0100998 "No such frozen object named %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000999 name);
1000 return NULL;
1001 }
1002 if (p->code == NULL) {
1003 PyErr_Format(PyExc_ImportError,
Victor Stinner53dc7352011-03-20 01:50:21 +01001004 "Excluded frozen object named %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001005 name);
1006 return NULL;
1007 }
1008 size = p->size;
1009 if (size < 0)
1010 size = -size;
1011 return PyMarshal_ReadObjectFromString((char *)p->code, size);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001012}
1013
Brett Cannon8d110132009-03-15 02:20:16 +00001014static PyObject *
Victor Stinner53dc7352011-03-20 01:50:21 +01001015is_frozen_package(PyObject *name)
Brett Cannon8d110132009-03-15 02:20:16 +00001016{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001017 struct _frozen *p = find_frozen(name);
1018 int size;
Brett Cannon8d110132009-03-15 02:20:16 +00001019
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001020 if (p == NULL) {
1021 PyErr_Format(PyExc_ImportError,
Victor Stinner53dc7352011-03-20 01:50:21 +01001022 "No such frozen object named %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001023 name);
1024 return NULL;
1025 }
Brett Cannon8d110132009-03-15 02:20:16 +00001026
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001027 size = p->size;
Brett Cannon8d110132009-03-15 02:20:16 +00001028
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001029 if (size < 0)
1030 Py_RETURN_TRUE;
1031 else
1032 Py_RETURN_FALSE;
Brett Cannon8d110132009-03-15 02:20:16 +00001033}
1034
1035
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001036/* Initialize a frozen module.
Brett Cannon3c2ac442009-03-08 20:49:47 +00001037 Return 1 for success, 0 if the module is not found, and -1 with
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001038 an exception set if the initialization failed.
1039 This function is also used from frozenmain.c */
Guido van Rossum0b344901995-02-07 15:35:27 +00001040
1041int
Victor Stinner53dc7352011-03-20 01:50:21 +01001042PyImport_ImportFrozenModuleObject(PyObject *name)
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001043{
Victor Stinner53dc7352011-03-20 01:50:21 +01001044 struct _frozen *p;
1045 PyObject *co, *m, *path;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001046 int ispackage;
1047 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001048
Victor Stinner53dc7352011-03-20 01:50:21 +01001049 p = find_frozen(name);
1050
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001051 if (p == NULL)
1052 return 0;
1053 if (p->code == NULL) {
1054 PyErr_Format(PyExc_ImportError,
Victor Stinner53dc7352011-03-20 01:50:21 +01001055 "Excluded frozen object named %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001056 name);
1057 return -1;
1058 }
1059 size = p->size;
1060 ispackage = (size < 0);
1061 if (ispackage)
1062 size = -size;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001063 co = PyMarshal_ReadObjectFromString((char *)p->code, size);
1064 if (co == NULL)
1065 return -1;
1066 if (!PyCode_Check(co)) {
1067 PyErr_Format(PyExc_TypeError,
Victor Stinner53dc7352011-03-20 01:50:21 +01001068 "frozen object %R is not a code object",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001069 name);
1070 goto err_return;
1071 }
1072 if (ispackage) {
1073 /* Set __path__ to the package name */
Victor Stinner53dc7352011-03-20 01:50:21 +01001074 PyObject *d, *l;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001075 int err;
Victor Stinner53dc7352011-03-20 01:50:21 +01001076 m = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001077 if (m == NULL)
1078 goto err_return;
1079 d = PyModule_GetDict(m);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001080 l = PyList_New(1);
1081 if (l == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001082 goto err_return;
1083 }
Victor Stinner53dc7352011-03-20 01:50:21 +01001084 Py_INCREF(name);
1085 PyList_SET_ITEM(l, 0, name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001086 err = PyDict_SetItemString(d, "__path__", l);
1087 Py_DECREF(l);
1088 if (err != 0)
1089 goto err_return;
1090 }
Victor Stinner53dc7352011-03-20 01:50:21 +01001091 path = PyUnicode_FromString("<frozen>");
1092 if (path == NULL)
1093 goto err_return;
1094 m = PyImport_ExecCodeModuleObject(name, co, path, NULL);
1095 Py_DECREF(path);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001096 if (m == NULL)
1097 goto err_return;
1098 Py_DECREF(co);
1099 Py_DECREF(m);
1100 return 1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001101err_return:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001102 Py_DECREF(co);
1103 return -1;
Guido van Rossumf56e3db1993-04-01 20:59:32 +00001104}
Guido van Rossum74e6a111994-08-29 12:54:38 +00001105
Victor Stinner53dc7352011-03-20 01:50:21 +01001106int
1107PyImport_ImportFrozenModule(char *name)
1108{
1109 PyObject *nameobj;
1110 int ret;
1111 nameobj = PyUnicode_InternFromString(name);
1112 if (nameobj == NULL)
1113 return -1;
1114 ret = PyImport_ImportFrozenModuleObject(nameobj);
1115 Py_DECREF(nameobj);
1116 return ret;
1117}
1118
Guido van Rossum74e6a111994-08-29 12:54:38 +00001119
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001120/* Import a module, either built-in, frozen, or external, and return
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001121 its module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum74e6a111994-08-29 12:54:38 +00001122
Guido van Rossum79f25d91997-04-29 20:08:16 +00001123PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001124PyImport_ImportModule(const char *name)
Guido van Rossum74e6a111994-08-29 12:54:38 +00001125{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001126 PyObject *pname;
1127 PyObject *result;
Marc-André Lemburg3c61c352001-02-09 19:40:15 +00001128
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001129 pname = PyUnicode_FromString(name);
1130 if (pname == NULL)
1131 return NULL;
1132 result = PyImport_Import(pname);
1133 Py_DECREF(pname);
1134 return result;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001135}
1136
Christian Heimes072c0f12008-01-03 23:01:04 +00001137/* Import a module without blocking
1138 *
1139 * At first it tries to fetch the module from sys.modules. If the module was
1140 * never loaded before it loads it with PyImport_ImportModule() unless another
1141 * thread holds the import lock. In the latter case the function raises an
1142 * ImportError instead of blocking.
1143 *
1144 * Returns the module object with incremented ref count.
1145 */
1146PyObject *
1147PyImport_ImportModuleNoBlock(const char *name)
1148{
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001149 return PyImport_ImportModule(name);
Christian Heimes072c0f12008-01-03 23:01:04 +00001150}
1151
Guido van Rossum17fc85f1997-09-06 18:52:03 +00001152
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001153/* Remove importlib frames from the traceback,
1154 * except in Verbose mode. */
1155static void
1156remove_importlib_frames(void)
1157{
1158 const char *importlib_filename = "<frozen importlib._bootstrap>";
Nick Coghlan42c07662012-07-31 21:14:18 +10001159 const char *remove_frames = "_call_with_frames_removed";
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001160 int always_trim = 0;
Benjamin Petersonfa873702012-07-09 13:43:53 -07001161 int in_importlib = 0;
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001162 PyObject *exception, *value, *base_tb, *tb;
Benjamin Petersonfa873702012-07-09 13:43:53 -07001163 PyObject **prev_link, **outer_link = NULL;
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001164
1165 /* Synopsis: if it's an ImportError, we trim all importlib chunks
Nick Coghlan42c07662012-07-31 21:14:18 +10001166 from the traceback. We always trim chunks
1167 which end with a call to "_call_with_frames_removed". */
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001168
1169 PyErr_Fetch(&exception, &value, &base_tb);
1170 if (!exception || Py_VerboseFlag)
1171 goto done;
1172 if (PyType_IsSubtype((PyTypeObject *) exception,
1173 (PyTypeObject *) PyExc_ImportError))
1174 always_trim = 1;
1175
1176 prev_link = &base_tb;
1177 tb = base_tb;
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001178 while (tb != NULL) {
1179 PyTracebackObject *traceback = (PyTracebackObject *)tb;
1180 PyObject *next = (PyObject *) traceback->tb_next;
1181 PyFrameObject *frame = traceback->tb_frame;
1182 PyCodeObject *code = frame->f_code;
1183 int now_in_importlib;
1184
1185 assert(PyTraceBack_Check(tb));
1186 now_in_importlib = (PyUnicode_CompareWithASCIIString(
1187 code->co_filename,
1188 importlib_filename) == 0);
1189 if (now_in_importlib && !in_importlib) {
1190 /* This is the link to this chunk of importlib tracebacks */
1191 outer_link = prev_link;
1192 }
1193 in_importlib = now_in_importlib;
1194
1195 if (in_importlib &&
1196 (always_trim ||
Nick Coghlan42c07662012-07-31 21:14:18 +10001197 PyUnicode_CompareWithASCIIString(code->co_name,
1198 remove_frames) == 0)) {
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001199 PyObject *tmp = *outer_link;
1200 *outer_link = next;
1201 Py_XINCREF(next);
1202 Py_DECREF(tmp);
1203 prev_link = outer_link;
1204 }
1205 else {
1206 prev_link = (PyObject **) &traceback->tb_next;
1207 }
1208 tb = next;
1209 }
1210done:
1211 PyErr_Restore(exception, value, base_tb);
1212}
1213
1214
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001215PyObject *
Brett Cannonfd074152012-04-14 14:10:13 -04001216PyImport_ImportModuleLevelObject(PyObject *name, PyObject *given_globals,
1217 PyObject *locals, PyObject *given_fromlist,
Victor Stinnerfe93faf2011-03-14 15:54:52 -04001218 int level)
Thomas Woutersf7f438b2006-02-28 16:09:29 +00001219{
Brett Cannonfd074152012-04-14 14:10:13 -04001220 _Py_IDENTIFIER(__import__);
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001221 _Py_IDENTIFIER(__initializing__);
Brett Cannonfd074152012-04-14 14:10:13 -04001222 _Py_IDENTIFIER(__package__);
1223 _Py_IDENTIFIER(__path__);
1224 _Py_IDENTIFIER(__name__);
1225 _Py_IDENTIFIER(_find_and_load);
1226 _Py_IDENTIFIER(_handle_fromlist);
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001227 _Py_IDENTIFIER(_lock_unlock_module);
Brett Cannonfd074152012-04-14 14:10:13 -04001228 _Py_static_string(single_dot, ".");
1229 PyObject *abs_name = NULL;
1230 PyObject *builtins_import = NULL;
1231 PyObject *final_mod = NULL;
1232 PyObject *mod = NULL;
1233 PyObject *package = NULL;
1234 PyObject *globals = NULL;
1235 PyObject *fromlist = NULL;
1236 PyInterpreterState *interp = PyThreadState_GET()->interp;
1237
1238 /* Make sure to use default values so as to not have
1239 PyObject_CallMethodObjArgs() truncate the parameter list because of a
1240 NULL argument. */
1241 if (given_globals == NULL) {
1242 globals = PyDict_New();
1243 if (globals == NULL) {
1244 goto error;
1245 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001246 }
Brett Cannonfd074152012-04-14 14:10:13 -04001247 else {
1248 /* Only have to care what given_globals is if it will be used
Brett Cannonecfefb72012-08-05 19:24:57 -04001249 for something. */
Brett Cannonfd074152012-04-14 14:10:13 -04001250 if (level > 0 && !PyDict_Check(given_globals)) {
1251 PyErr_SetString(PyExc_TypeError, "globals must be a dict");
1252 goto error;
1253 }
1254 globals = given_globals;
1255 Py_INCREF(globals);
1256 }
1257
1258 if (given_fromlist == NULL) {
1259 fromlist = PyList_New(0);
1260 if (fromlist == NULL) {
1261 goto error;
1262 }
1263 }
1264 else {
1265 fromlist = given_fromlist;
1266 Py_INCREF(fromlist);
1267 }
1268 if (name == NULL) {
1269 PyErr_SetString(PyExc_ValueError, "Empty module name");
1270 goto error;
1271 }
1272
1273 /* The below code is importlib.__import__() & _gcd_import(), ported to C
1274 for added performance. */
1275
1276 if (!PyUnicode_Check(name)) {
1277 PyErr_SetString(PyExc_TypeError, "module name must be a string");
1278 goto error;
1279 }
1280 else if (PyUnicode_READY(name) < 0) {
1281 goto error;
1282 }
1283 if (level < 0) {
1284 PyErr_SetString(PyExc_ValueError, "level must be >= 0");
1285 goto error;
1286 }
1287 else if (level > 0) {
1288 package = _PyDict_GetItemId(globals, &PyId___package__);
1289 if (package != NULL && package != Py_None) {
1290 Py_INCREF(package);
1291 if (!PyUnicode_Check(package)) {
1292 PyErr_SetString(PyExc_TypeError, "package must be a string");
1293 goto error;
1294 }
1295 }
1296 else {
Brett Cannon273323c2012-04-17 19:05:11 -04001297 package = _PyDict_GetItemId(globals, &PyId___name__);
Brett Cannonfd074152012-04-14 14:10:13 -04001298 if (package == NULL) {
Brett Cannon273323c2012-04-17 19:05:11 -04001299 PyErr_SetString(PyExc_KeyError, "'__name__' not in globals");
Brett Cannonfd074152012-04-14 14:10:13 -04001300 goto error;
1301 }
1302 else if (!PyUnicode_Check(package)) {
1303 PyErr_SetString(PyExc_TypeError, "__name__ must be a string");
1304 }
1305 Py_INCREF(package);
1306
1307 if (_PyDict_GetItemId(globals, &PyId___path__) == NULL) {
Brett Cannon740fce02012-04-14 14:23:49 -04001308 PyObject *partition = NULL;
Brett Cannonfd074152012-04-14 14:10:13 -04001309 PyObject *borrowed_dot = _PyUnicode_FromId(&single_dot);
1310 if (borrowed_dot == NULL) {
1311 goto error;
1312 }
Brett Cannon740fce02012-04-14 14:23:49 -04001313 partition = PyUnicode_RPartition(package, borrowed_dot);
Brett Cannonfd074152012-04-14 14:10:13 -04001314 Py_DECREF(package);
1315 if (partition == NULL) {
1316 goto error;
1317 }
1318 package = PyTuple_GET_ITEM(partition, 0);
1319 Py_INCREF(package);
1320 Py_DECREF(partition);
1321 }
1322 }
1323
1324 if (PyDict_GetItem(interp->modules, package) == NULL) {
1325 PyErr_Format(PyExc_SystemError,
1326 "Parent module %R not loaded, cannot perform relative "
1327 "import", package);
1328 goto error;
1329 }
1330 }
1331 else { /* level == 0 */
1332 if (PyUnicode_GET_LENGTH(name) == 0) {
1333 PyErr_SetString(PyExc_ValueError, "Empty module name");
1334 goto error;
1335 }
1336 package = Py_None;
1337 Py_INCREF(package);
1338 }
1339
1340 if (level > 0) {
1341 Py_ssize_t last_dot = PyUnicode_GET_LENGTH(package);
1342 PyObject *base = NULL;
1343 int level_up = 1;
1344
1345 for (level_up = 1; level_up < level; level_up += 1) {
1346 last_dot = PyUnicode_FindChar(package, '.', 0, last_dot, -1);
1347 if (last_dot == -2) {
1348 goto error;
1349 }
1350 else if (last_dot == -1) {
1351 PyErr_SetString(PyExc_ValueError,
1352 "attempted relative import beyond top-level "
1353 "package");
1354 goto error;
1355 }
1356 }
1357 base = PyUnicode_Substring(package, 0, last_dot);
1358 if (PyUnicode_GET_LENGTH(name) > 0) {
Antoine Pitrou538ba2a2012-04-16 21:52:45 +02001359 PyObject *borrowed_dot, *seq = NULL;
Brett Cannonfd074152012-04-14 14:10:13 -04001360
1361 borrowed_dot = _PyUnicode_FromId(&single_dot);
Antoine Pitrou538ba2a2012-04-16 21:52:45 +02001362 seq = PyTuple_Pack(2, base, name);
1363 Py_DECREF(base);
Brett Cannonfd074152012-04-14 14:10:13 -04001364 if (borrowed_dot == NULL || seq == NULL) {
1365 goto error;
1366 }
1367
1368 abs_name = PyUnicode_Join(borrowed_dot, seq);
1369 Py_DECREF(seq);
1370 if (abs_name == NULL) {
1371 goto error;
1372 }
1373 }
1374 else {
1375 abs_name = base;
1376 }
1377 }
1378 else {
1379 abs_name = name;
1380 Py_INCREF(abs_name);
1381 }
1382
Brian Curtine6b299f2012-04-14 14:19:33 -05001383#ifdef WITH_THREAD
Brett Cannonfd074152012-04-14 14:10:13 -04001384 _PyImport_AcquireLock();
1385#endif
1386 /* From this point forward, goto error_with_unlock! */
1387 if (PyDict_Check(globals)) {
1388 builtins_import = _PyDict_GetItemId(globals, &PyId___import__);
1389 }
1390 if (builtins_import == NULL) {
1391 builtins_import = _PyDict_GetItemId(interp->builtins, &PyId___import__);
1392 if (builtins_import == NULL) {
1393 Py_FatalError("__import__ missing");
1394 }
1395 }
1396 Py_INCREF(builtins_import);
1397
1398 mod = PyDict_GetItem(interp->modules, abs_name);
1399 if (mod == Py_None) {
Brett Cannon27fc5282012-04-15 14:15:31 -04001400 PyObject *msg = PyUnicode_FromFormat("import of %R halted; "
1401 "None in sys.modules", abs_name);
1402 if (msg != NULL) {
Brian Curtin09b86d12012-04-17 16:57:09 -05001403 PyErr_SetImportError(msg, abs_name, NULL);
1404 Py_DECREF(msg);
Brett Cannon27fc5282012-04-15 14:15:31 -04001405 }
Antoine Pitrou71382cb2012-04-16 18:48:49 +02001406 mod = NULL;
Brett Cannonfd074152012-04-14 14:10:13 -04001407 goto error_with_unlock;
1408 }
1409 else if (mod != NULL) {
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001410 PyObject *value;
1411 int initializing = 0;
1412
Brett Cannonfd074152012-04-14 14:10:13 -04001413 Py_INCREF(mod);
Antoine Pitrou03989852012-08-28 00:24:52 +02001414 /* Optimization: only call _bootstrap._lock_unlock_module() if
1415 __initializing__ is true.
1416 NOTE: because of this, __initializing__ must be set *before*
1417 stuffing the new module in sys.modules.
1418 */
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001419 value = _PyObject_GetAttrId(mod, &PyId___initializing__);
1420 if (value == NULL)
1421 PyErr_Clear();
1422 else {
1423 initializing = PyObject_IsTrue(value);
1424 Py_DECREF(value);
1425 if (initializing == -1)
1426 PyErr_Clear();
1427 }
1428 if (initializing > 0) {
1429 /* _bootstrap._lock_unlock_module() releases the import lock */
1430 value = _PyObject_CallMethodObjIdArgs(interp->importlib,
1431 &PyId__lock_unlock_module, abs_name,
1432 NULL);
1433 if (value == NULL)
1434 goto error;
1435 Py_DECREF(value);
1436 }
1437 else {
1438#ifdef WITH_THREAD
1439 if (_PyImport_ReleaseLock() < 0) {
1440 PyErr_SetString(PyExc_RuntimeError, "not holding the import lock");
1441 goto error;
1442 }
1443#endif
1444 }
Brett Cannonfd074152012-04-14 14:10:13 -04001445 }
1446 else {
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001447 /* _bootstrap._find_and_load() releases the import lock */
Brett Cannonfd074152012-04-14 14:10:13 -04001448 mod = _PyObject_CallMethodObjIdArgs(interp->importlib,
1449 &PyId__find_and_load, abs_name,
1450 builtins_import, NULL);
1451 if (mod == NULL) {
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001452 goto error;
Brett Cannonfd074152012-04-14 14:10:13 -04001453 }
1454 }
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001455 /* From now on we don't hold the import lock anymore. */
Brett Cannonfd074152012-04-14 14:10:13 -04001456
1457 if (PyObject_Not(fromlist)) {
1458 if (level == 0 || PyUnicode_GET_LENGTH(name) > 0) {
1459 PyObject *front = NULL;
Brian Curtine6b299f2012-04-14 14:19:33 -05001460 PyObject *partition = NULL;
Brett Cannonfd074152012-04-14 14:10:13 -04001461 PyObject *borrowed_dot = _PyUnicode_FromId(&single_dot);
1462
1463 if (borrowed_dot == NULL) {
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001464 goto error;
Brett Cannonfd074152012-04-14 14:10:13 -04001465 }
1466
Brian Curtine6b299f2012-04-14 14:19:33 -05001467 partition = PyUnicode_Partition(name, borrowed_dot);
Brett Cannonfd074152012-04-14 14:10:13 -04001468 if (partition == NULL) {
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001469 goto error;
Brett Cannonfd074152012-04-14 14:10:13 -04001470 }
1471
Antoine Pitrou6efa50a2012-05-07 21:41:59 +02001472 if (PyUnicode_GET_LENGTH(PyTuple_GET_ITEM(partition, 1)) == 0) {
1473 /* No dot in module name, simple exit */
1474 Py_DECREF(partition);
1475 final_mod = mod;
1476 Py_INCREF(mod);
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001477 goto error;
Antoine Pitrou6efa50a2012-05-07 21:41:59 +02001478 }
1479
Brett Cannonfd074152012-04-14 14:10:13 -04001480 front = PyTuple_GET_ITEM(partition, 0);
1481 Py_INCREF(front);
1482 Py_DECREF(partition);
1483
1484 if (level == 0) {
Antoine Pitrou6efa50a2012-05-07 21:41:59 +02001485 final_mod = PyObject_CallFunctionObjArgs(builtins_import, front, NULL);
Antoine Pitroub78174c2012-05-06 17:15:23 +02001486 Py_DECREF(front);
Brett Cannonfd074152012-04-14 14:10:13 -04001487 }
1488 else {
Antoine Pitrou22a1d172012-04-16 22:06:21 +02001489 Py_ssize_t cut_off = PyUnicode_GET_LENGTH(name) -
1490 PyUnicode_GET_LENGTH(front);
1491 Py_ssize_t abs_name_len = PyUnicode_GET_LENGTH(abs_name);
Brett Cannon49f8d8b2012-04-14 21:50:00 -04001492 PyObject *to_return = PyUnicode_Substring(abs_name, 0,
Brett Cannonfd074152012-04-14 14:10:13 -04001493 abs_name_len - cut_off);
Antoine Pitrou22a1d172012-04-16 22:06:21 +02001494 Py_DECREF(front);
1495 if (to_return == NULL) {
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001496 goto error;
Antoine Pitrou22a1d172012-04-16 22:06:21 +02001497 }
Brett Cannonfd074152012-04-14 14:10:13 -04001498
1499 final_mod = PyDict_GetItem(interp->modules, to_return);
Brett Cannon49f8d8b2012-04-14 21:50:00 -04001500 if (final_mod == NULL) {
1501 PyErr_Format(PyExc_KeyError,
1502 "%R not in sys.modules as expected",
1503 to_return);
1504 }
1505 else {
1506 Py_INCREF(final_mod);
1507 }
Antoine Pitroub78174c2012-05-06 17:15:23 +02001508 Py_DECREF(to_return);
Brett Cannonfd074152012-04-14 14:10:13 -04001509 }
1510 }
1511 else {
1512 final_mod = mod;
1513 Py_INCREF(mod);
1514 }
1515 }
1516 else {
1517 final_mod = _PyObject_CallMethodObjIdArgs(interp->importlib,
1518 &PyId__handle_fromlist, mod,
1519 fromlist, builtins_import,
1520 NULL);
1521 }
Antoine Pitrouea3eb882012-05-17 18:55:59 +02001522 goto error;
Antoine Pitrou6efa50a2012-05-07 21:41:59 +02001523
Brett Cannonfd074152012-04-14 14:10:13 -04001524 error_with_unlock:
Brian Curtine6b299f2012-04-14 14:19:33 -05001525#ifdef WITH_THREAD
Brett Cannonfd074152012-04-14 14:10:13 -04001526 if (_PyImport_ReleaseLock() < 0) {
1527 PyErr_SetString(PyExc_RuntimeError, "not holding the import lock");
1528 }
1529#endif
1530 error:
1531 Py_XDECREF(abs_name);
1532 Py_XDECREF(builtins_import);
1533 Py_XDECREF(mod);
1534 Py_XDECREF(package);
1535 Py_XDECREF(globals);
1536 Py_XDECREF(fromlist);
Antoine Pitroubc07a5c2012-07-08 12:01:27 +02001537 if (final_mod == NULL)
1538 remove_importlib_frames();
Brett Cannonfd074152012-04-14 14:10:13 -04001539 return final_mod;
Guido van Rossum75acc9c1998-03-03 22:26:50 +00001540}
1541
Victor Stinnerfe93faf2011-03-14 15:54:52 -04001542PyObject *
Benjamin Peterson04778a82011-05-25 09:29:00 -05001543PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject *locals,
Victor Stinnerfe93faf2011-03-14 15:54:52 -04001544 PyObject *fromlist, int level)
1545{
1546 PyObject *nameobj, *mod;
1547 nameobj = PyUnicode_FromString(name);
1548 if (nameobj == NULL)
1549 return NULL;
1550 mod = PyImport_ImportModuleLevelObject(nameobj, globals, locals,
1551 fromlist, level);
1552 Py_DECREF(nameobj);
1553 return mod;
1554}
1555
1556
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001557/* Re-import a module of any kind and return its module object, WITH
1558 INCREMENTED REFERENCE COUNT */
1559
Guido van Rossum79f25d91997-04-29 20:08:16 +00001560PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001561PyImport_ReloadModule(PyObject *m)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001562{
Brett Cannon62228db2012-04-29 14:38:11 -04001563 _Py_IDENTIFIER(reload);
1564 PyObject *reloaded_module = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001565 PyObject *modules = PyImport_GetModuleDict();
Brett Cannon62228db2012-04-29 14:38:11 -04001566 PyObject *imp = PyDict_GetItemString(modules, "imp");
1567 if (imp == NULL) {
1568 imp = PyImport_ImportModule("imp");
1569 if (imp == NULL) {
1570 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001571 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001572 }
Brett Cannon62228db2012-04-29 14:38:11 -04001573 else {
1574 Py_INCREF(imp);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001575 }
Victor Stinnerad3c03b2011-03-14 09:21:33 -04001576
Brett Cannon62228db2012-04-29 14:38:11 -04001577 reloaded_module = _PyObject_CallMethodId(imp, &PyId_reload, "O", m);
1578 Py_DECREF(imp);
1579 return reloaded_module;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001580}
1581
1582
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001583/* Higher-level import emulator which emulates the "import" statement
1584 more accurately -- it invokes the __import__() function from the
1585 builtins of the current globals. This means that the import is
1586 done using whatever import hooks are installed in the current
Brett Cannonbc2eff32010-09-19 21:39:02 +00001587 environment.
Guido van Rossum6058eb41998-12-21 19:51:00 +00001588 A dummy list ["__doc__"] is passed as the 4th argument so that
Neal Norwitz80e7f272007-08-26 06:45:23 +00001589 e.g. PyImport_Import(PyUnicode_FromString("win32com.client.gencache"))
Guido van Rossum6058eb41998-12-21 19:51:00 +00001590 will return <module "gencache"> instead of <module "win32com">. */
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001591
1592PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001593PyImport_Import(PyObject *module_name)
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001594{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001595 static PyObject *silly_list = NULL;
1596 static PyObject *builtins_str = NULL;
1597 static PyObject *import_str = NULL;
1598 PyObject *globals = NULL;
1599 PyObject *import = NULL;
1600 PyObject *builtins = NULL;
Brett Cannonbc2eff32010-09-19 21:39:02 +00001601 PyObject *modules = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001602 PyObject *r = NULL;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001603
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001604 /* Initialize constant string objects */
1605 if (silly_list == NULL) {
1606 import_str = PyUnicode_InternFromString("__import__");
1607 if (import_str == NULL)
1608 return NULL;
1609 builtins_str = PyUnicode_InternFromString("__builtins__");
1610 if (builtins_str == NULL)
1611 return NULL;
Brett Cannonbc2eff32010-09-19 21:39:02 +00001612 silly_list = PyList_New(0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001613 if (silly_list == NULL)
1614 return NULL;
1615 }
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001616
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001617 /* Get the builtins from current globals */
1618 globals = PyEval_GetGlobals();
1619 if (globals != NULL) {
1620 Py_INCREF(globals);
1621 builtins = PyObject_GetItem(globals, builtins_str);
1622 if (builtins == NULL)
1623 goto err;
1624 }
1625 else {
1626 /* No globals -- use standard builtins, and fake globals */
1627 builtins = PyImport_ImportModuleLevel("builtins",
1628 NULL, NULL, NULL, 0);
1629 if (builtins == NULL)
1630 return NULL;
1631 globals = Py_BuildValue("{OO}", builtins_str, builtins);
1632 if (globals == NULL)
1633 goto err;
1634 }
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001635
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001636 /* Get the __import__ function from the builtins */
1637 if (PyDict_Check(builtins)) {
1638 import = PyObject_GetItem(builtins, import_str);
1639 if (import == NULL)
1640 PyErr_SetObject(PyExc_KeyError, import_str);
1641 }
1642 else
1643 import = PyObject_GetAttr(builtins, import_str);
1644 if (import == NULL)
1645 goto err;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001646
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001647 /* Call the __import__ function with the proper argument list
Brett Cannonbc2eff32010-09-19 21:39:02 +00001648 Always use absolute import here.
1649 Calling for side-effect of import. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001650 r = PyObject_CallFunction(import, "OOOOi", module_name, globals,
1651 globals, silly_list, 0, NULL);
Brett Cannonbc2eff32010-09-19 21:39:02 +00001652 if (r == NULL)
1653 goto err;
1654 Py_DECREF(r);
1655
1656 modules = PyImport_GetModuleDict();
1657 r = PyDict_GetItem(modules, module_name);
1658 if (r != NULL)
1659 Py_INCREF(r);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001660
1661 err:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001662 Py_XDECREF(globals);
1663 Py_XDECREF(builtins);
1664 Py_XDECREF(import);
Tim Peters50d8d372001-02-28 05:34:27 +00001665
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001666 return r;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00001667}
1668
Barry Warsaw28a691b2010-04-17 00:19:56 +00001669static PyObject *
Brett Cannon2657df42012-05-04 15:20:40 -04001670imp_extension_suffixes(PyObject *self, PyObject *noargs)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001671{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001672 PyObject *list;
Brett Cannon2657df42012-05-04 15:20:40 -04001673 const char *suffix;
1674 unsigned int index = 0;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001675
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001676 list = PyList_New(0);
1677 if (list == NULL)
1678 return NULL;
Brett Cannon2657df42012-05-04 15:20:40 -04001679#ifdef HAVE_DYNAMIC_LOADING
1680 while ((suffix = _PyImport_DynLoadFiletab[index])) {
1681 PyObject *item = PyUnicode_FromString(suffix);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001682 if (item == NULL) {
1683 Py_DECREF(list);
1684 return NULL;
1685 }
1686 if (PyList_Append(list, item) < 0) {
1687 Py_DECREF(list);
1688 Py_DECREF(item);
1689 return NULL;
1690 }
1691 Py_DECREF(item);
Brett Cannon2657df42012-05-04 15:20:40 -04001692 index += 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001693 }
Brett Cannon2657df42012-05-04 15:20:40 -04001694#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001695 return list;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001696}
1697
Guido van Rossum79f25d91997-04-29 20:08:16 +00001698static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001699imp_init_builtin(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001700{
Victor Stinner95872862011-03-07 18:20:56 +01001701 PyObject *name;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001702 int ret;
1703 PyObject *m;
Victor Stinner95872862011-03-07 18:20:56 +01001704 if (!PyArg_ParseTuple(args, "U:init_builtin", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001705 return NULL;
1706 ret = init_builtin(name);
1707 if (ret < 0)
1708 return NULL;
1709 if (ret == 0) {
1710 Py_INCREF(Py_None);
1711 return Py_None;
1712 }
Victor Stinner95872862011-03-07 18:20:56 +01001713 m = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001714 Py_XINCREF(m);
1715 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001716}
1717
Guido van Rossum79f25d91997-04-29 20:08:16 +00001718static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001719imp_init_frozen(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001720{
Victor Stinner53dc7352011-03-20 01:50:21 +01001721 PyObject *name;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001722 int ret;
1723 PyObject *m;
Victor Stinner53dc7352011-03-20 01:50:21 +01001724 if (!PyArg_ParseTuple(args, "U:init_frozen", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001725 return NULL;
Victor Stinner53dc7352011-03-20 01:50:21 +01001726 ret = PyImport_ImportFrozenModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001727 if (ret < 0)
1728 return NULL;
1729 if (ret == 0) {
1730 Py_INCREF(Py_None);
1731 return Py_None;
1732 }
Victor Stinner53dc7352011-03-20 01:50:21 +01001733 m = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001734 Py_XINCREF(m);
1735 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001736}
1737
Guido van Rossum79f25d91997-04-29 20:08:16 +00001738static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001739imp_get_frozen_object(PyObject *self, PyObject *args)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001740{
Victor Stinner53dc7352011-03-20 01:50:21 +01001741 PyObject *name;
Jack Jansen95ffa231995-10-03 14:38:41 +00001742
Victor Stinner53dc7352011-03-20 01:50:21 +01001743 if (!PyArg_ParseTuple(args, "U:get_frozen_object", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001744 return NULL;
1745 return get_frozen_object(name);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00001746}
1747
Guido van Rossum79f25d91997-04-29 20:08:16 +00001748static PyObject *
Brett Cannon8d110132009-03-15 02:20:16 +00001749imp_is_frozen_package(PyObject *self, PyObject *args)
1750{
Victor Stinner53dc7352011-03-20 01:50:21 +01001751 PyObject *name;
Brett Cannon8d110132009-03-15 02:20:16 +00001752
Victor Stinner53dc7352011-03-20 01:50:21 +01001753 if (!PyArg_ParseTuple(args, "U:is_frozen_package", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001754 return NULL;
1755 return is_frozen_package(name);
Brett Cannon8d110132009-03-15 02:20:16 +00001756}
1757
1758static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001759imp_is_builtin(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001760{
Victor Stinner95872862011-03-07 18:20:56 +01001761 PyObject *name;
1762 if (!PyArg_ParseTuple(args, "U:is_builtin", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001763 return NULL;
1764 return PyLong_FromLong(is_builtin(name));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001765}
1766
Guido van Rossum79f25d91997-04-29 20:08:16 +00001767static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001768imp_is_frozen(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001769{
Victor Stinner53dc7352011-03-20 01:50:21 +01001770 PyObject *name;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001771 struct _frozen *p;
Victor Stinner53dc7352011-03-20 01:50:21 +01001772 if (!PyArg_ParseTuple(args, "U:is_frozen", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001773 return NULL;
1774 p = find_frozen(name);
1775 return PyBool_FromLong((long) (p == NULL ? 0 : p->size));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001776}
1777
Guido van Rossum96a8fb71999-12-22 14:09:35 +00001778#ifdef HAVE_DYNAMIC_LOADING
1779
Guido van Rossum79f25d91997-04-29 20:08:16 +00001780static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001781imp_load_dynamic(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001782{
Victor Stinnerfefd70c2011-03-14 15:54:07 -04001783 PyObject *name, *pathname, *fob = NULL, *mod;
1784 FILE *fp;
1785
1786 if (!PyArg_ParseTuple(args, "UO&|O:load_dynamic",
1787 &name, PyUnicode_FSDecoder, &pathname, &fob))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001788 return NULL;
Victor Stinnerfefd70c2011-03-14 15:54:07 -04001789 if (fob != NULL) {
Antoine Pitrouf3a42de2012-05-04 22:40:25 +02001790 fp = _Py_fopen(pathname, "r");
Victor Stinnere9ddbf62011-03-22 10:46:35 +01001791 if (fp == NULL) {
1792 Py_DECREF(pathname);
Antoine Pitrouf3a42de2012-05-04 22:40:25 +02001793 if (!PyErr_Occurred())
1794 PyErr_SetFromErrno(PyExc_IOError);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001795 return NULL;
Victor Stinnere9ddbf62011-03-22 10:46:35 +01001796 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001797 }
Victor Stinnerfefd70c2011-03-14 15:54:07 -04001798 else
1799 fp = NULL;
1800 mod = _PyImport_LoadDynamicModule(name, pathname, fp);
Victor Stinnere9ddbf62011-03-22 10:46:35 +01001801 Py_DECREF(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001802 if (fp)
1803 fclose(fp);
Victor Stinnerfefd70c2011-03-14 15:54:07 -04001804 return mod;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001805}
1806
Guido van Rossum96a8fb71999-12-22 14:09:35 +00001807#endif /* HAVE_DYNAMIC_LOADING */
1808
Barry Warsaw28a691b2010-04-17 00:19:56 +00001809
Guido van Rossum0207e6d1997-09-09 22:04:42 +00001810/* Doc strings */
1811
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001812PyDoc_STRVAR(doc_imp,
Brett Cannon6f44d662012-04-15 16:08:47 -04001813"(Extremely) low-level import machinery bits as used by importlib and imp.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00001814
Brett Cannon2657df42012-05-04 15:20:40 -04001815PyDoc_STRVAR(doc_extension_suffixes,
1816"extension_suffixes() -> list of strings\n\
1817Returns the list of file suffixes used to identify extension modules.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00001818
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001819PyDoc_STRVAR(doc_lock_held,
Tim Petersa7c65092004-08-01 23:26:05 +00001820"lock_held() -> boolean\n\
1821Return True if the import lock is currently held, else False.\n\
1822On platforms without threads, return False.");
Tim Peters69232342001-08-30 05:16:13 +00001823
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00001824PyDoc_STRVAR(doc_acquire_lock,
1825"acquire_lock() -> None\n\
Neal Norwitz2294c0d2003-02-12 23:02:21 +00001826Acquires the interpreter's import lock for the current thread.\n\
1827This lock should be used by import hooks to ensure thread-safety\n\
1828when importing modules.\n\
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00001829On platforms without threads, this function does nothing.");
1830
1831PyDoc_STRVAR(doc_release_lock,
1832"release_lock() -> None\n\
1833Release the interpreter's import lock.\n\
1834On platforms without threads, this function does nothing.");
1835
Guido van Rossum79f25d91997-04-29 20:08:16 +00001836static PyMethodDef imp_methods[] = {
Brett Cannon2657df42012-05-04 15:20:40 -04001837 {"extension_suffixes", imp_extension_suffixes, METH_NOARGS,
1838 doc_extension_suffixes},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001839 {"lock_held", imp_lock_held, METH_NOARGS, doc_lock_held},
1840 {"acquire_lock", imp_acquire_lock, METH_NOARGS, doc_acquire_lock},
1841 {"release_lock", imp_release_lock, METH_NOARGS, doc_release_lock},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001842 {"get_frozen_object", imp_get_frozen_object, METH_VARARGS},
1843 {"is_frozen_package", imp_is_frozen_package, METH_VARARGS},
1844 {"init_builtin", imp_init_builtin, METH_VARARGS},
1845 {"init_frozen", imp_init_frozen, METH_VARARGS},
1846 {"is_builtin", imp_is_builtin, METH_VARARGS},
1847 {"is_frozen", imp_is_frozen, METH_VARARGS},
Guido van Rossum96a8fb71999-12-22 14:09:35 +00001848#ifdef HAVE_DYNAMIC_LOADING
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001849 {"load_dynamic", imp_load_dynamic, METH_VARARGS},
Guido van Rossum96a8fb71999-12-22 14:09:35 +00001850#endif
Brett Cannon442c9b92011-03-23 16:14:42 -07001851 {"_fix_co_filename", imp_fix_co_filename, METH_VARARGS},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001852 {NULL, NULL} /* sentinel */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001853};
1854
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001855
Martin v. Löwis1a214512008-06-11 05:26:20 +00001856static struct PyModuleDef impmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001857 PyModuleDef_HEAD_INIT,
Brett Cannon6f44d662012-04-15 16:08:47 -04001858 "_imp",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001859 doc_imp,
1860 0,
1861 imp_methods,
1862 NULL,
1863 NULL,
1864 NULL,
1865 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00001866};
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001867
Jason Tishler6bc06ec2003-09-04 11:59:50 +00001868PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00001869PyInit_imp(void)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001870{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001871 PyObject *m, *d;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001872
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001873 m = PyModule_Create(&impmodule);
1874 if (m == NULL)
1875 goto failure;
1876 d = PyModule_GetDict(m);
1877 if (d == NULL)
1878 goto failure;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001879
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001880 return m;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001881 failure:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001882 Py_XDECREF(m);
1883 return NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001884}
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001885
1886
Guido van Rossumb18618d2000-05-03 23:44:39 +00001887/* API for embedding applications that want to add their own entries
1888 to the table of built-in modules. This should normally be called
1889 *before* Py_Initialize(). When the table resize fails, -1 is
1890 returned and the existing table is unchanged.
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001891
1892 After a similar function by Just van Rossum. */
1893
1894int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00001895PyImport_ExtendInittab(struct _inittab *newtab)
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001896{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001897 static struct _inittab *our_copy = NULL;
1898 struct _inittab *p;
1899 int i, n;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001900
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001901 /* Count the number of entries in both tables */
1902 for (n = 0; newtab[n].name != NULL; n++)
1903 ;
1904 if (n == 0)
1905 return 0; /* Nothing to do */
1906 for (i = 0; PyImport_Inittab[i].name != NULL; i++)
1907 ;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001908
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001909 /* Allocate new memory for the combined table */
1910 p = our_copy;
1911 PyMem_RESIZE(p, struct _inittab, i+n+1);
1912 if (p == NULL)
1913 return -1;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001914
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001915 /* Copy the tables into the new memory */
1916 if (our_copy != PyImport_Inittab)
1917 memcpy(p, PyImport_Inittab, (i+1) * sizeof(struct _inittab));
1918 PyImport_Inittab = our_copy = p;
1919 memcpy(p+i, newtab, (n+1) * sizeof(struct _inittab));
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001920
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001921 return 0;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001922}
1923
1924/* Shorthand to add a single entry given a name and a function */
1925
1926int
Brett Cannona826f322009-04-02 03:41:46 +00001927PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void))
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001928{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001929 struct _inittab newtab[2];
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001930
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001931 memset(newtab, '\0', sizeof newtab);
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001932
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001933 newtab[0].name = (char *)name;
1934 newtab[0].initfunc = initfunc;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001935
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001936 return PyImport_ExtendInittab(newtab);
Guido van Rossum09cae1f1998-05-14 02:32:54 +00001937}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001938
1939#ifdef __cplusplus
1940}
1941#endif