blob: 9773687f62f926aa07fff9bb9a82fa21e7d115a8 [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"
Guido van Rossumd8bac6d1992-02-26 15:19:13 +000011#include "osdefs.h"
Guido van Rossum1ae940a1995-01-02 19:04:15 +000012#include "importdl.h"
Guido van Rossumc405b7b1991-06-04 19:39:42 +000013
Guido van Rossum55a83382000-09-20 20:31:38 +000014#ifdef HAVE_FCNTL_H
15#include <fcntl.h>
16#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000017#ifdef __cplusplus
Brett Cannon9a5b25a2010-03-01 02:09:17 +000018extern "C" {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000019#endif
Guido van Rossum55a83382000-09-20 20:31:38 +000020
Christian Heimesd3eb5a152008-02-24 00:38:49 +000021#ifdef MS_WINDOWS
22/* for stat.st_mode */
23typedef unsigned short mode_t;
Daniel Stutzbachc7937792010-09-09 21:18:04 +000024/* for _mkdir */
25#include <direct.h>
Christian Heimesd3eb5a152008-02-24 00:38:49 +000026#endif
27
Guido van Rossum21d335e1993-10-15 13:01:11 +000028
Jeremy Hyltond4ceb312004-04-01 02:45:22 +000029/* Magic word to reject .pyc files generated by other Python versions.
30 It should change for each incompatible change to the bytecode.
31
32 The value of CR and LF is incorporated so if you ever read or write
Guido van Rossum7faeab31995-07-07 22:50:36 +000033 a .pyc file in text mode the magic number will be wrong; also, the
Tim Peters36515e22001-11-18 04:06:29 +000034 Apple MPW compiler swaps their values, botching string constants.
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +000035
Guido van Rossum45aecf42006-03-15 04:58:47 +000036 The magic numbers must be spaced apart at least 2 values, as the
Martin v. Löwisef82d2f2004-06-27 16:51:46 +000037 -U interpeter flag will cause MAGIC+1 being used. They have been
38 odd numbers for some time now.
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +000039
Jeremy Hyltond4ceb312004-04-01 02:45:22 +000040 There were a variety of old schemes for setting the magic number.
41 The current working scheme is to increment the previous value by
42 10.
Guido van Rossumf6894922002-08-31 15:16:14 +000043
Barry Warsaw28a691b2010-04-17 00:19:56 +000044 Starting with the adoption of PEP 3147 in Python 3.2, every bump in magic
45 number also includes a new "magic tag", i.e. a human readable string used
46 to represent the magic number in __pycache__ directories. When you change
47 the magic number, you must also set a new unique magic tag. Generally this
48 can be named after the Python major version of the magic number bump, but
49 it can really be anything, as long as it's different than anything else
50 that's come before. The tags are included in the following table, starting
51 with Python 3.2a0.
52
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +000053 Known values:
54 Python 1.5: 20121
55 Python 1.5.1: 20121
56 Python 1.5.2: 20121
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000057 Python 1.6: 50428
Marc-André Lemburgbd3be8f2002-02-07 11:33:49 +000058 Python 2.0: 50823
59 Python 2.0.1: 50823
60 Python 2.1: 60202
61 Python 2.1.1: 60202
62 Python 2.1.2: 60202
63 Python 2.2: 60717
Neal Norwitz7fdcb412002-06-14 01:07:39 +000064 Python 2.3a0: 62011
Michael W. Hudsondd32a912002-08-15 14:59:02 +000065 Python 2.3a0: 62021
Guido van Rossumf6894922002-08-31 15:16:14 +000066 Python 2.3a0: 62011 (!)
Martin v. Löwisef82d2f2004-06-27 16:51:46 +000067 Python 2.4a0: 62041
Raymond Hettingerfd2d1f72004-08-23 23:37:48 +000068 Python 2.4a3: 62051
Raymond Hettinger2c31a052004-09-22 18:44:21 +000069 Python 2.4b1: 62061
Michael W. Hudsondf888462005-06-03 14:41:55 +000070 Python 2.5a0: 62071
Michael W. Hudsonaee2e282005-10-21 11:32:20 +000071 Python 2.5a0: 62081 (ast-branch)
Guido van Rossumc2e20742006-02-27 22:32:47 +000072 Python 2.5a0: 62091 (with)
Guido van Rossumf6694362006-03-10 02:28:35 +000073 Python 2.5a0: 62092 (changed WITH_CLEANUP opcode)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000074 Python 2.5b3: 62101 (fix wrong code: for x, in ...)
75 Python 2.5b3: 62111 (fix wrong code: x += yield)
76 Python 2.5c1: 62121 (fix wrong lnotab with for loops and
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000077 storing constants that should have been removed)
Thomas Wouters89f507f2006-12-13 04:49:30 +000078 Python 2.5c2: 62131 (fix wrong code: for x, in ... in listcomp/genexp)
Christian Heimes99170a52007-12-19 02:07:34 +000079 Python 2.6a0: 62151 (peephole optimizations and STORE_MAP opcode)
Christian Heimesdd15f6c2008-03-16 00:07:10 +000080 Python 2.6a1: 62161 (WITH_CLEANUP optimization)
Guido van Rossum45aecf42006-03-15 04:58:47 +000081 Python 3000: 3000
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000082 3010 (removed UNARY_CONVERT)
83 3020 (added BUILD_SET)
84 3030 (added keyword-only parameters)
85 3040 (added signature annotations)
86 3050 (print becomes a function)
87 3060 (PEP 3115 metaclass syntax)
88 3061 (string literals become unicode)
89 3071 (PEP 3109 raise changes)
90 3081 (PEP 3137 make __file__ and __name__ unicode)
91 3091 (kill str8 interning)
92 3101 (merge from 2.6a0, see 62151)
93 3103 (__file__ points to source file)
Benjamin Peterson0f6cae02009-12-10 02:09:08 +000094 Python 3.0a4: 3111 (WITH_CLEANUP optimization).
95 Python 3.0a5: 3131 (lexical exception stacking, including POP_EXCEPT)
96 Python 3.1a0: 3141 (optimize list, set and dict comprehensions:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000097 change LIST_APPEND and SET_ADD, add MAP_ADD)
Benjamin Peterson0f6cae02009-12-10 02:09:08 +000098 Python 3.1a0: 3151 (optimize conditional branches:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000099 introduce POP_JUMP_IF_FALSE and POP_JUMP_IF_TRUE)
Benjamin Peterson876b2f22009-06-28 03:18:59 +0000100 Python 3.2a0: 3160 (add SETUP_WITH)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000101 tag: cpython-32
Antoine Pitrou74a69fa2010-09-04 18:43:52 +0000102 Python 3.2a1: 3170 (add DUP_TOP_TWO, remove DUP_TOPX and ROT_FOUR)
103 tag: cpython-32
Benjamin Peterson6246d6d2010-09-10 21:51:44 +0000104 Python 3.2a2 3180 (add DELETE_DEREF)
Benjamin Petersone7c15fa2011-06-19 19:54:45 -0500105 Python 3.3a0 3190 __class__ super closure changed
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100106 Python 3.3a0 3200 (__qualname__ added)
Tim Peters36515e22001-11-18 04:06:29 +0000107*/
Guido van Rossum3ddee711991-12-16 13:06:34 +0000108
Nick Coghlancd419ab2010-09-11 00:39:25 +0000109/* MAGIC must change whenever the bytecode emitted by the compiler may no
110 longer be understood by older implementations of the eval loop (usually
111 due to the addition of new opcodes)
Martin v. Löwisfadcd312011-10-23 18:08:20 +0200112 TAG must change for each major Python release. The magic number will take
113 care of any bytecode changes that occur during development.
Barry Warsaw28a691b2010-04-17 00:19:56 +0000114*/
Benjamin Peterson48deae12011-06-03 17:50:16 -0500115#define QUOTE(arg) #arg
116#define STRIFY(name) QUOTE(name)
117#define MAJOR STRIFY(PY_MAJOR_VERSION)
118#define MINOR STRIFY(PY_MINOR_VERSION)
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100119#define MAGIC (3200 | ((long)'\r'<<16) | ((long)'\n'<<24))
Benjamin Peterson48deae12011-06-03 17:50:16 -0500120#define TAG "cpython-" MAJOR MINOR;
Barry Warsaw28a691b2010-04-17 00:19:56 +0000121#define CACHEDIR "__pycache__"
122/* Current magic word and string tag as globals. */
Guido van Rossum96774c12000-05-01 20:19:08 +0000123static long pyc_magic = MAGIC;
Barry Warsaw28a691b2010-04-17 00:19:56 +0000124static const char *pyc_tag = TAG;
Benjamin Peterson48deae12011-06-03 17:50:16 -0500125#undef QUOTE
126#undef STRIFY
127#undef MAJOR
128#undef MINOR
Guido van Rossum96774c12000-05-01 20:19:08 +0000129
Victor Stinner95872862011-03-07 18:20:56 +0100130/* See _PyImport_FixupExtensionObject() below */
Guido van Rossum25ce5661997-08-02 03:10:38 +0000131static PyObject *extensions = NULL;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000132
Victor Stinnerfe7c5b52011-04-05 01:48:03 +0200133/* Function from Parser/tokenizer.c */
134extern char * PyTokenizer_FindEncodingFilename(int, PyObject *);
135
Guido van Rossum771c6c81997-10-31 18:37:24 +0000136/* This table is defined in config.c: */
137extern struct _inittab _PyImport_Inittab[];
138
139struct _inittab *PyImport_Inittab = _PyImport_Inittab;
Guido van Rossum66f1fa81991-04-03 19:03:52 +0000140
Guido van Rossumed1170e1999-12-20 21:23:41 +0000141/* these tables define the module suffixes that Python recognizes */
142struct filedescr * _PyImport_Filetab = NULL;
Guido van Rossum48a680c2001-03-02 06:34:14 +0000143
Guido van Rossumed1170e1999-12-20 21:23:41 +0000144static const struct filedescr _PyImport_StandardFiletab[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000145 {".py", "U", PY_SOURCE},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000146#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000147 {".pyw", "U", PY_SOURCE},
Tim Peters36515e22001-11-18 04:06:29 +0000148#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000149 {".pyc", "rb", PY_COMPILED},
150 {0, 0}
Guido van Rossumed1170e1999-12-20 21:23:41 +0000151};
152
Victor Stinnerd0296212011-03-14 14:04:10 -0400153static PyObject *initstr = NULL;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200154_Py_IDENTIFIER(__path__);
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000155
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000156/* Initialize things */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000157
158void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000159_PyImport_Init(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000160{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000161 const struct filedescr *scan;
162 struct filedescr *filetab;
163 int countD = 0;
164 int countS = 0;
Guido van Rossumed1170e1999-12-20 21:23:41 +0000165
Victor Stinnerd0296212011-03-14 14:04:10 -0400166 initstr = PyUnicode_InternFromString("__init__");
167 if (initstr == NULL)
168 Py_FatalError("Can't initialize import variables");
169
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000170 /* prepare _PyImport_Filetab: copy entries from
171 _PyImport_DynLoadFiletab and _PyImport_StandardFiletab.
172 */
Guido van Rossum04110fb2007-08-24 16:32:05 +0000173#ifdef HAVE_DYNAMIC_LOADING
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000174 for (scan = _PyImport_DynLoadFiletab; scan->suffix != NULL; ++scan)
175 ++countD;
Guido van Rossum04110fb2007-08-24 16:32:05 +0000176#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000177 for (scan = _PyImport_StandardFiletab; scan->suffix != NULL; ++scan)
178 ++countS;
179 filetab = PyMem_NEW(struct filedescr, countD + countS + 1);
180 if (filetab == NULL)
181 Py_FatalError("Can't initialize import file table.");
Guido van Rossum04110fb2007-08-24 16:32:05 +0000182#ifdef HAVE_DYNAMIC_LOADING
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000183 memcpy(filetab, _PyImport_DynLoadFiletab,
184 countD * sizeof(struct filedescr));
Guido van Rossum04110fb2007-08-24 16:32:05 +0000185#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000186 memcpy(filetab + countD, _PyImport_StandardFiletab,
187 countS * sizeof(struct filedescr));
188 filetab[countD + countS].suffix = NULL;
Guido van Rossumed1170e1999-12-20 21:23:41 +0000189
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000190 _PyImport_Filetab = filetab;
Guido van Rossumed1170e1999-12-20 21:23:41 +0000191
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000192 if (Py_OptimizeFlag) {
193 /* Replace ".pyc" with ".pyo" in _PyImport_Filetab */
194 for (; filetab->suffix != NULL; filetab++) {
195 if (strcmp(filetab->suffix, ".pyc") == 0)
196 filetab->suffix = ".pyo";
197 }
198 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000199}
200
Guido van Rossum25ce5661997-08-02 03:10:38 +0000201void
Just van Rossum52e14d62002-12-30 22:08:05 +0000202_PyImportHooks_Init(void)
203{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000204 PyObject *v, *path_hooks = NULL, *zimpimport;
205 int err = 0;
Just van Rossum52e14d62002-12-30 22:08:05 +0000206
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000207 /* adding sys.path_hooks and sys.path_importer_cache, setting up
208 zipimport */
209 if (PyType_Ready(&PyNullImporter_Type) < 0)
210 goto error;
Just van Rossum52e14d62002-12-30 22:08:05 +0000211
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000212 if (Py_VerboseFlag)
213 PySys_WriteStderr("# installing zipimport hook\n");
Just van Rossum52e14d62002-12-30 22:08:05 +0000214
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000215 v = PyList_New(0);
216 if (v == NULL)
217 goto error;
218 err = PySys_SetObject("meta_path", v);
219 Py_DECREF(v);
220 if (err)
221 goto error;
222 v = PyDict_New();
223 if (v == NULL)
224 goto error;
225 err = PySys_SetObject("path_importer_cache", v);
226 Py_DECREF(v);
227 if (err)
228 goto error;
229 path_hooks = PyList_New(0);
230 if (path_hooks == NULL)
231 goto error;
232 err = PySys_SetObject("path_hooks", path_hooks);
233 if (err) {
Just van Rossum52e14d62002-12-30 22:08:05 +0000234 error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000235 PyErr_Print();
236 Py_FatalError("initializing sys.meta_path, sys.path_hooks, "
237 "path_importer_cache, or NullImporter failed"
238 );
239 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000240
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000241 zimpimport = PyImport_ImportModule("zipimport");
242 if (zimpimport == NULL) {
243 PyErr_Clear(); /* No zip import module -- okay */
244 if (Py_VerboseFlag)
245 PySys_WriteStderr("# can't import zipimport\n");
246 }
247 else {
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200248 _Py_IDENTIFIER(zipimporter);
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +0200249 PyObject *zipimporter = _PyObject_GetAttrId(zimpimport,
250 &PyId_zipimporter);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000251 Py_DECREF(zimpimport);
252 if (zipimporter == NULL) {
253 PyErr_Clear(); /* No zipimporter object -- okay */
254 if (Py_VerboseFlag)
255 PySys_WriteStderr(
256 "# can't import zipimport.zipimporter\n");
257 }
258 else {
259 /* sys.path_hooks.append(zipimporter) */
260 err = PyList_Append(path_hooks, zipimporter);
261 Py_DECREF(zipimporter);
262 if (err)
263 goto error;
264 if (Py_VerboseFlag)
265 PySys_WriteStderr(
266 "# installed zipimport hook\n");
267 }
268 }
269 Py_DECREF(path_hooks);
Just van Rossum52e14d62002-12-30 22:08:05 +0000270}
271
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000272/* Locking primitives to prevent parallel imports of the same module
273 in different threads to return with a partially loaded module.
274 These calls are serialized by the global interpreter lock. */
275
276#ifdef WITH_THREAD
277
Guido van Rossum49b56061998-10-01 20:42:43 +0000278#include "pythread.h"
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000279
Guido van Rossum65d5b571998-12-21 19:32:43 +0000280static PyThread_type_lock import_lock = 0;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000281static long import_lock_thread = -1;
282static int import_lock_level = 0;
283
Benjamin Peterson0df35a92009-10-04 20:32:25 +0000284void
285_PyImport_AcquireLock(void)
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000286{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000287 long me = PyThread_get_thread_ident();
288 if (me == -1)
289 return; /* Too bad */
290 if (import_lock == NULL) {
291 import_lock = PyThread_allocate_lock();
292 if (import_lock == NULL)
293 return; /* Nothing much we can do. */
294 }
295 if (import_lock_thread == me) {
296 import_lock_level++;
297 return;
298 }
299 if (import_lock_thread != -1 || !PyThread_acquire_lock(import_lock, 0))
300 {
301 PyThreadState *tstate = PyEval_SaveThread();
302 PyThread_acquire_lock(import_lock, 1);
303 PyEval_RestoreThread(tstate);
304 }
305 import_lock_thread = me;
306 import_lock_level = 1;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000307}
308
Benjamin Peterson0df35a92009-10-04 20:32:25 +0000309int
310_PyImport_ReleaseLock(void)
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000311{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000312 long me = PyThread_get_thread_ident();
313 if (me == -1 || import_lock == NULL)
314 return 0; /* Too bad */
315 if (import_lock_thread != me)
316 return -1;
317 import_lock_level--;
318 if (import_lock_level == 0) {
319 import_lock_thread = -1;
320 PyThread_release_lock(import_lock);
321 }
322 return 1;
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000323}
324
Gregory P. Smith24cec9f2010-03-01 06:18:41 +0000325/* This function is called from PyOS_AfterFork to ensure that newly
326 created child processes do not share locks with the parent.
327 We now acquire the import lock around fork() calls but on some platforms
328 (Solaris 9 and earlier? see isue7242) that still left us with problems. */
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000329
330void
331_PyImport_ReInitLock(void)
332{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000333 if (import_lock != NULL)
334 import_lock = PyThread_allocate_lock();
Nick Coghlanb2ddf792010-12-02 04:11:46 +0000335 if (import_lock_level > 1) {
336 /* Forked as a side effect of import */
337 long me = PyThread_get_thread_ident();
338 PyThread_acquire_lock(import_lock, 0);
Victor Stinner942003c2011-03-07 16:57:48 +0100339 /* XXX: can the previous line fail? */
Nick Coghlanb2ddf792010-12-02 04:11:46 +0000340 import_lock_thread = me;
341 import_lock_level--;
342 } else {
343 import_lock_thread = -1;
344 import_lock_level = 0;
345 }
Guido van Rossum8ee3e5a2005-09-14 18:09:42 +0000346}
347
Guido van Rossum75acc9c1998-03-03 22:26:50 +0000348#endif
349
Tim Peters69232342001-08-30 05:16:13 +0000350static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +0000351imp_lock_held(PyObject *self, PyObject *noargs)
Tim Peters69232342001-08-30 05:16:13 +0000352{
Tim Peters69232342001-08-30 05:16:13 +0000353#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000354 return PyBool_FromLong(import_lock_thread != -1);
Tim Peters69232342001-08-30 05:16:13 +0000355#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000356 return PyBool_FromLong(0);
Tim Peters69232342001-08-30 05:16:13 +0000357#endif
358}
359
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000360static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +0000361imp_acquire_lock(PyObject *self, PyObject *noargs)
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000362{
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000363#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000364 _PyImport_AcquireLock();
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000365#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000366 Py_INCREF(Py_None);
367 return Py_None;
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000368}
369
370static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +0000371imp_release_lock(PyObject *self, PyObject *noargs)
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000372{
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000373#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000374 if (_PyImport_ReleaseLock() < 0) {
375 PyErr_SetString(PyExc_RuntimeError,
376 "not holding the import lock");
377 return NULL;
378 }
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000379#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000380 Py_INCREF(Py_None);
381 return Py_None;
Guido van Rossumc4f4ca92003-02-12 21:46:11 +0000382}
383
Antoine Pitrou8db076c2011-10-30 19:13:55 +0100384void
385_PyImport_Fini(void)
386{
387 Py_XDECREF(extensions);
388 extensions = NULL;
389 PyMem_DEL(_PyImport_Filetab);
390 _PyImport_Filetab = NULL;
391#ifdef WITH_THREAD
392 if (import_lock != NULL) {
393 PyThread_free_lock(import_lock);
394 import_lock = NULL;
395 }
396#endif
397}
398
Guido van Rossumd8faa362007-04-27 19:54:29 +0000399static void
400imp_modules_reloading_clear(void)
401{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000402 PyInterpreterState *interp = PyThreadState_Get()->interp;
403 if (interp->modules_reloading != NULL)
404 PyDict_Clear(interp->modules_reloading);
Guido van Rossumd8faa362007-04-27 19:54:29 +0000405}
406
Guido van Rossum25ce5661997-08-02 03:10:38 +0000407/* Helper for sys */
408
409PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000410PyImport_GetModuleDict(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000411{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000412 PyInterpreterState *interp = PyThreadState_GET()->interp;
413 if (interp->modules == NULL)
414 Py_FatalError("PyImport_GetModuleDict: no module dictionary!");
415 return interp->modules;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000416}
417
Guido van Rossum3f5da241990-12-20 15:06:42 +0000418
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000419/* List of names to clear in sys */
420static char* sys_deletes[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000421 "path", "argv", "ps1", "ps2",
422 "last_type", "last_value", "last_traceback",
423 "path_hooks", "path_importer_cache", "meta_path",
424 /* misc stuff */
425 "flags", "float_info",
426 NULL
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000427};
428
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000429static char* sys_files[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000430 "stdin", "__stdin__",
431 "stdout", "__stdout__",
432 "stderr", "__stderr__",
433 NULL
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000434};
435
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000436
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000437/* Un-initialize things, as good as we can */
Guido van Rossum3f5da241990-12-20 15:06:42 +0000438
Guido van Rossum3f5da241990-12-20 15:06:42 +0000439void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000440PyImport_Cleanup(void)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000441{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000442 Py_ssize_t pos, ndone;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000443 PyObject *key, *value, *dict;
444 PyInterpreterState *interp = PyThreadState_GET()->interp;
445 PyObject *modules = interp->modules;
Guido van Rossum758eec01998-01-19 21:58:26 +0000446
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000447 if (modules == NULL)
448 return; /* Already done */
Guido van Rossum758eec01998-01-19 21:58:26 +0000449
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000450 /* Delete some special variables first. These are common
451 places where user values hide and people complain when their
452 destructors fail. Since the modules containing them are
453 deleted *last* of all, they would come too late in the normal
454 destruction order. Sigh. */
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000455
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000456 value = PyDict_GetItemString(modules, "builtins");
457 if (value != NULL && PyModule_Check(value)) {
458 dict = PyModule_GetDict(value);
459 if (Py_VerboseFlag)
460 PySys_WriteStderr("# clear builtins._\n");
461 PyDict_SetItemString(dict, "_", Py_None);
462 }
463 value = PyDict_GetItemString(modules, "sys");
464 if (value != NULL && PyModule_Check(value)) {
465 char **p;
466 PyObject *v;
467 dict = PyModule_GetDict(value);
468 for (p = sys_deletes; *p != NULL; p++) {
469 if (Py_VerboseFlag)
470 PySys_WriteStderr("# clear sys.%s\n", *p);
471 PyDict_SetItemString(dict, *p, Py_None);
472 }
473 for (p = sys_files; *p != NULL; p+=2) {
474 if (Py_VerboseFlag)
475 PySys_WriteStderr("# restore sys.%s\n", *p);
476 v = PyDict_GetItemString(dict, *(p+1));
477 if (v == NULL)
478 v = Py_None;
479 PyDict_SetItemString(dict, *p, v);
480 }
481 }
Guido van Rossum05f9dce1998-02-19 20:58:44 +0000482
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000483 /* First, delete __main__ */
484 value = PyDict_GetItemString(modules, "__main__");
485 if (value != NULL && PyModule_Check(value)) {
486 if (Py_VerboseFlag)
487 PySys_WriteStderr("# cleanup __main__\n");
488 _PyModule_Clear(value);
489 PyDict_SetItemString(modules, "__main__", Py_None);
490 }
Guido van Rossuma0fec2b1998-02-06 17:16:02 +0000491
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000492 /* The special treatment of "builtins" here is because even
493 when it's not referenced as a module, its dictionary is
494 referenced by almost every module's __builtins__. Since
495 deleting a module clears its dictionary (even if there are
496 references left to it), we need to delete the "builtins"
497 module last. Likewise, we don't delete sys until the very
498 end because it is implicitly referenced (e.g. by print).
Guido van Rossum758eec01998-01-19 21:58:26 +0000499
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000500 Also note that we 'delete' modules by replacing their entry
501 in the modules dict with None, rather than really deleting
502 them; this avoids a rehash of the modules dictionary and
503 also marks them as "non existent" so they won't be
504 re-imported. */
Guido van Rossum758eec01998-01-19 21:58:26 +0000505
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000506 /* Next, repeatedly delete modules with a reference count of
507 one (skipping builtins and sys) and delete them */
508 do {
509 ndone = 0;
510 pos = 0;
511 while (PyDict_Next(modules, &pos, &key, &value)) {
512 if (value->ob_refcnt != 1)
513 continue;
514 if (PyUnicode_Check(key) && PyModule_Check(value)) {
Victor Stinner9464d612011-03-07 17:08:21 +0100515 if (PyUnicode_CompareWithASCIIString(key, "builtins") == 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000516 continue;
Victor Stinner9464d612011-03-07 17:08:21 +0100517 if (PyUnicode_CompareWithASCIIString(key, "sys") == 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000518 continue;
519 if (Py_VerboseFlag)
Victor Stinner9464d612011-03-07 17:08:21 +0100520 PySys_FormatStderr(
521 "# cleanup[1] %U\n", key);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000522 _PyModule_Clear(value);
523 PyDict_SetItem(modules, key, Py_None);
524 ndone++;
525 }
526 }
527 } while (ndone > 0);
Guido van Rossum758eec01998-01-19 21:58:26 +0000528
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000529 /* Next, delete all modules (still skipping builtins and sys) */
530 pos = 0;
531 while (PyDict_Next(modules, &pos, &key, &value)) {
532 if (PyUnicode_Check(key) && PyModule_Check(value)) {
Victor Stinner9464d612011-03-07 17:08:21 +0100533 if (PyUnicode_CompareWithASCIIString(key, "builtins") == 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000534 continue;
Victor Stinner9464d612011-03-07 17:08:21 +0100535 if (PyUnicode_CompareWithASCIIString(key, "sys") == 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000536 continue;
537 if (Py_VerboseFlag)
Victor Stinner9464d612011-03-07 17:08:21 +0100538 PySys_FormatStderr("# cleanup[2] %U\n", key);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000539 _PyModule_Clear(value);
540 PyDict_SetItem(modules, key, Py_None);
541 }
542 }
Guido van Rossum758eec01998-01-19 21:58:26 +0000543
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000544 /* Next, delete sys and builtins (in that order) */
545 value = PyDict_GetItemString(modules, "sys");
546 if (value != NULL && PyModule_Check(value)) {
547 if (Py_VerboseFlag)
548 PySys_WriteStderr("# cleanup sys\n");
549 _PyModule_Clear(value);
550 PyDict_SetItemString(modules, "sys", Py_None);
551 }
552 value = PyDict_GetItemString(modules, "builtins");
553 if (value != NULL && PyModule_Check(value)) {
554 if (Py_VerboseFlag)
555 PySys_WriteStderr("# cleanup builtins\n");
556 _PyModule_Clear(value);
557 PyDict_SetItemString(modules, "builtins", Py_None);
558 }
Guido van Rossum758eec01998-01-19 21:58:26 +0000559
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000560 /* Finally, clear and delete the modules directory */
561 PyDict_Clear(modules);
562 interp->modules = NULL;
563 Py_DECREF(modules);
564 Py_CLEAR(interp->modules_reloading);
Guido van Rossum8d15b5d1990-10-26 14:58:58 +0000565}
Guido van Rossum7f133ed1991-02-19 12:23:57 +0000566
567
Barry Warsaw28a691b2010-04-17 00:19:56 +0000568/* Helper for pythonrun.c -- return magic number and tag. */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000569
570long
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000571PyImport_GetMagicNumber(void)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000572{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000573 return pyc_magic;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000574}
575
576
Barry Warsaw28a691b2010-04-17 00:19:56 +0000577const char *
578PyImport_GetMagicTag(void)
579{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000580 return pyc_tag;
Barry Warsaw28a691b2010-04-17 00:19:56 +0000581}
582
Guido van Rossum25ce5661997-08-02 03:10:38 +0000583/* Magic for extension modules (built-in as well as dynamically
584 loaded). To prevent initializing an extension module more than
585 once, we keep a static dictionary 'extensions' keyed by module name
586 (for built-in modules) or by filename (for dynamically loaded
Barry Warsaw92883382001-08-13 23:05:44 +0000587 modules), containing these modules. A copy of the module's
Victor Stinner95872862011-03-07 18:20:56 +0100588 dictionary is stored by calling _PyImport_FixupExtensionObject()
Guido van Rossum25ce5661997-08-02 03:10:38 +0000589 immediately after the module initialization function succeeds. A
590 copy can be retrieved from there by calling
Victor Stinner95872862011-03-07 18:20:56 +0100591 _PyImport_FindExtensionObject().
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000592
Barry Warsaw7c9627b2010-06-17 18:38:20 +0000593 Modules which do support multiple initialization set their m_size
594 field to a non-negative number (indicating the size of the
595 module-specific state). They are still recorded in the extensions
596 dictionary, to avoid loading shared libraries twice.
Martin v. Löwis1a214512008-06-11 05:26:20 +0000597*/
598
599int
Victor Stinner95872862011-03-07 18:20:56 +0100600_PyImport_FixupExtensionObject(PyObject *mod, PyObject *name,
601 PyObject *filename)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000602{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000603 PyObject *modules, *dict;
604 struct PyModuleDef *def;
605 if (extensions == NULL) {
606 extensions = PyDict_New();
607 if (extensions == NULL)
608 return -1;
609 }
610 if (mod == NULL || !PyModule_Check(mod)) {
611 PyErr_BadInternalCall();
612 return -1;
613 }
614 def = PyModule_GetDef(mod);
615 if (!def) {
616 PyErr_BadInternalCall();
617 return -1;
618 }
619 modules = PyImport_GetModuleDict();
Victor Stinner95872862011-03-07 18:20:56 +0100620 if (PyDict_SetItem(modules, name, mod) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000621 return -1;
622 if (_PyState_AddModule(mod, def) < 0) {
Victor Stinner95872862011-03-07 18:20:56 +0100623 PyDict_DelItem(modules, name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000624 return -1;
625 }
626 if (def->m_size == -1) {
627 if (def->m_base.m_copy) {
628 /* Somebody already imported the module,
629 likely under a different name.
630 XXX this should really not happen. */
631 Py_DECREF(def->m_base.m_copy);
632 def->m_base.m_copy = NULL;
633 }
634 dict = PyModule_GetDict(mod);
635 if (dict == NULL)
636 return -1;
637 def->m_base.m_copy = PyDict_Copy(dict);
638 if (def->m_base.m_copy == NULL)
639 return -1;
640 }
Victor Stinner49d3f252010-10-17 01:24:53 +0000641 PyDict_SetItem(extensions, filename, (PyObject*)def);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000642 return 0;
Guido van Rossum25ce5661997-08-02 03:10:38 +0000643}
644
Victor Stinner49d3f252010-10-17 01:24:53 +0000645int
646_PyImport_FixupBuiltin(PyObject *mod, char *name)
647{
648 int res;
Victor Stinner95872862011-03-07 18:20:56 +0100649 PyObject *nameobj;
Victor Stinner21fcd0c2011-03-07 18:28:15 +0100650 nameobj = PyUnicode_InternFromString(name);
Victor Stinner95872862011-03-07 18:20:56 +0100651 if (nameobj == NULL)
Victor Stinner49d3f252010-10-17 01:24:53 +0000652 return -1;
Victor Stinner95872862011-03-07 18:20:56 +0100653 res = _PyImport_FixupExtensionObject(mod, nameobj, nameobj);
654 Py_DECREF(nameobj);
Victor Stinner49d3f252010-10-17 01:24:53 +0000655 return res;
656}
657
Guido van Rossum25ce5661997-08-02 03:10:38 +0000658PyObject *
Victor Stinner95872862011-03-07 18:20:56 +0100659_PyImport_FindExtensionObject(PyObject *name, PyObject *filename)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000660{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000661 PyObject *mod, *mdict;
662 PyModuleDef* def;
663 if (extensions == NULL)
664 return NULL;
Victor Stinner49d3f252010-10-17 01:24:53 +0000665 def = (PyModuleDef*)PyDict_GetItem(extensions, filename);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000666 if (def == NULL)
667 return NULL;
668 if (def->m_size == -1) {
669 /* Module does not support repeated initialization */
670 if (def->m_base.m_copy == NULL)
671 return NULL;
Victor Stinner95872862011-03-07 18:20:56 +0100672 mod = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000673 if (mod == NULL)
674 return NULL;
675 mdict = PyModule_GetDict(mod);
676 if (mdict == NULL)
677 return NULL;
678 if (PyDict_Update(mdict, def->m_base.m_copy))
679 return NULL;
680 }
681 else {
682 if (def->m_base.m_init == NULL)
683 return NULL;
684 mod = def->m_base.m_init();
685 if (mod == NULL)
686 return NULL;
Victor Stinner95872862011-03-07 18:20:56 +0100687 PyDict_SetItem(PyImport_GetModuleDict(), name, mod);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000688 Py_DECREF(mod);
689 }
690 if (_PyState_AddModule(mod, def) < 0) {
Victor Stinner95872862011-03-07 18:20:56 +0100691 PyDict_DelItem(PyImport_GetModuleDict(), name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000692 Py_DECREF(mod);
693 return NULL;
694 }
695 if (Py_VerboseFlag)
Victor Stinner95872862011-03-07 18:20:56 +0100696 PySys_FormatStderr("import %U # previously loaded (%R)\n",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000697 name, filename);
698 return mod;
Brett Cannon9a5b25a2010-03-01 02:09:17 +0000699
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000700}
701
Victor Stinner49d3f252010-10-17 01:24:53 +0000702PyObject *
Victor Stinner501c09a2011-02-23 00:02:00 +0000703_PyImport_FindBuiltin(const char *name)
Victor Stinner49d3f252010-10-17 01:24:53 +0000704{
Victor Stinner95872862011-03-07 18:20:56 +0100705 PyObject *res, *nameobj;
Victor Stinner21fcd0c2011-03-07 18:28:15 +0100706 nameobj = PyUnicode_InternFromString(name);
Victor Stinner95872862011-03-07 18:20:56 +0100707 if (nameobj == NULL)
Victor Stinner49d3f252010-10-17 01:24:53 +0000708 return NULL;
Victor Stinner95872862011-03-07 18:20:56 +0100709 res = _PyImport_FindExtensionObject(nameobj, nameobj);
710 Py_DECREF(nameobj);
Victor Stinner49d3f252010-10-17 01:24:53 +0000711 return res;
712}
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000713
714/* Get the module object corresponding to a module name.
715 First check the modules dictionary if there's one there,
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +0000716 if not, create a new one and insert it in the modules dictionary.
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000717 Because the former action is most common, THIS DOES NOT RETURN A
718 'NEW' REFERENCE! */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000719
Guido van Rossum79f25d91997-04-29 20:08:16 +0000720PyObject *
Victor Stinner27ee0892011-03-04 12:57:09 +0000721PyImport_AddModuleObject(PyObject *name)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000722{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000723 PyObject *modules = PyImport_GetModuleDict();
724 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000725
Victor Stinner27ee0892011-03-04 12:57:09 +0000726 if ((m = PyDict_GetItem(modules, name)) != NULL &&
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000727 PyModule_Check(m))
728 return m;
Victor Stinner27ee0892011-03-04 12:57:09 +0000729 m = PyModule_NewObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000730 if (m == NULL)
731 return NULL;
Victor Stinner27ee0892011-03-04 12:57:09 +0000732 if (PyDict_SetItem(modules, name, m) != 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000733 Py_DECREF(m);
734 return NULL;
735 }
736 Py_DECREF(m); /* Yes, it still exists, in modules! */
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000737
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000738 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000739}
740
Victor Stinner27ee0892011-03-04 12:57:09 +0000741PyObject *
742PyImport_AddModule(const char *name)
743{
744 PyObject *nameobj, *module;
745 nameobj = PyUnicode_FromString(name);
746 if (nameobj == NULL)
747 return NULL;
748 module = PyImport_AddModuleObject(nameobj);
749 Py_DECREF(nameobj);
750 return module;
751}
752
753
Tim Peters1cd70172004-08-02 03:52:12 +0000754/* Remove name from sys.modules, if it's there. */
755static void
Victor Stinner27ee0892011-03-04 12:57:09 +0000756remove_module(PyObject *name)
Tim Peters1cd70172004-08-02 03:52:12 +0000757{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000758 PyObject *modules = PyImport_GetModuleDict();
Victor Stinner27ee0892011-03-04 12:57:09 +0000759 if (PyDict_GetItem(modules, name) == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000760 return;
Victor Stinner27ee0892011-03-04 12:57:09 +0000761 if (PyDict_DelItem(modules, name) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000762 Py_FatalError("import: deleting existing key in"
763 "sys.modules failed");
Tim Peters1cd70172004-08-02 03:52:12 +0000764}
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000765
Victor Stinnerc9abda02011-03-14 13:33:46 -0400766static PyObject * get_sourcefile(PyObject *filename);
767static PyObject *make_source_pathname(PyObject *pathname);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200768static PyObject* make_compiled_pathname(PyObject *pathname, int debug);
Christian Heimes3b06e532008-01-07 20:12:44 +0000769
Guido van Rossum7f9fa971995-01-20 16:53:12 +0000770/* Execute a code object in a module and return the module object
Tim Peters1cd70172004-08-02 03:52:12 +0000771 * WITH INCREMENTED REFERENCE COUNT. If an error occurs, name is
772 * removed from sys.modules, to avoid leaving damaged module objects
773 * in sys.modules. The caller may wish to restore the original
774 * module object (if any) in this case; PyImport_ReloadModule is an
775 * example.
Barry Warsaw28a691b2010-04-17 00:19:56 +0000776 *
777 * Note that PyImport_ExecCodeModuleWithPathnames() is the preferred, richer
778 * interface. The other two exist primarily for backward compatibility.
Tim Peters1cd70172004-08-02 03:52:12 +0000779 */
Guido van Rossum79f25d91997-04-29 20:08:16 +0000780PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000781PyImport_ExecCodeModule(char *name, PyObject *co)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000782{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000783 return PyImport_ExecCodeModuleWithPathnames(
784 name, co, (char *)NULL, (char *)NULL);
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000785}
786
787PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000788PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname)
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000789{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000790 return PyImport_ExecCodeModuleWithPathnames(
791 name, co, pathname, (char *)NULL);
Barry Warsaw28a691b2010-04-17 00:19:56 +0000792}
793
794PyObject *
795PyImport_ExecCodeModuleWithPathnames(char *name, PyObject *co, char *pathname,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000796 char *cpathname)
Barry Warsaw28a691b2010-04-17 00:19:56 +0000797{
Victor Stinner27ee0892011-03-04 12:57:09 +0000798 PyObject *m = NULL;
799 PyObject *nameobj, *pathobj = NULL, *cpathobj = NULL;
800
801 nameobj = PyUnicode_FromString(name);
802 if (nameobj == NULL)
803 return NULL;
804
805 if (pathname != NULL) {
806 pathobj = PyUnicode_DecodeFSDefault(pathname);
807 if (pathobj == NULL)
808 goto error;
809 } else
810 pathobj = NULL;
811 if (cpathname != NULL) {
812 cpathobj = PyUnicode_DecodeFSDefault(cpathname);
813 if (cpathobj == NULL)
814 goto error;
815 } else
816 cpathobj = NULL;
817 m = PyImport_ExecCodeModuleObject(nameobj, co, pathobj, cpathobj);
818error:
819 Py_DECREF(nameobj);
820 Py_XDECREF(pathobj);
821 Py_XDECREF(cpathobj);
822 return m;
823}
824
825PyObject*
826PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname,
827 PyObject *cpathname)
828{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000829 PyObject *modules = PyImport_GetModuleDict();
830 PyObject *m, *d, *v;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000831
Victor Stinner27ee0892011-03-04 12:57:09 +0000832 m = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000833 if (m == NULL)
834 return NULL;
835 /* If the module is being reloaded, we get the old module back
836 and re-use its dict to exec the new code. */
837 d = PyModule_GetDict(m);
838 if (PyDict_GetItemString(d, "__builtins__") == NULL) {
839 if (PyDict_SetItemString(d, "__builtins__",
840 PyEval_GetBuiltins()) != 0)
841 goto error;
842 }
843 /* Remember the filename as the __file__ attribute */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000844 if (pathname != NULL) {
Victor Stinnerc9abda02011-03-14 13:33:46 -0400845 v = get_sourcefile(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000846 if (v == NULL)
847 PyErr_Clear();
848 }
Victor Stinner27ee0892011-03-04 12:57:09 +0000849 else
850 v = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000851 if (v == NULL) {
852 v = ((PyCodeObject *)co)->co_filename;
853 Py_INCREF(v);
854 }
855 if (PyDict_SetItemString(d, "__file__", v) != 0)
856 PyErr_Clear(); /* Not important enough to report */
857 Py_DECREF(v);
Guido van Rossume32bf6e1998-02-11 05:53:02 +0000858
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000859 /* Remember the pyc path name as the __cached__ attribute. */
Victor Stinner27ee0892011-03-04 12:57:09 +0000860 if (cpathname != NULL)
861 v = cpathname;
862 else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000863 v = Py_None;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000864 if (PyDict_SetItemString(d, "__cached__", v) != 0)
865 PyErr_Clear(); /* Not important enough to report */
Barry Warsaw28a691b2010-04-17 00:19:56 +0000866
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000867 v = PyEval_EvalCode(co, d, d);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000868 if (v == NULL)
869 goto error;
870 Py_DECREF(v);
Guido van Rossumb65e85c1997-07-10 18:00:45 +0000871
Victor Stinner27ee0892011-03-04 12:57:09 +0000872 if ((m = PyDict_GetItem(modules, name)) == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000873 PyErr_Format(PyExc_ImportError,
Victor Stinner27ee0892011-03-04 12:57:09 +0000874 "Loaded module %R not found in sys.modules",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000875 name);
876 return NULL;
877 }
Guido van Rossumb65e85c1997-07-10 18:00:45 +0000878
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000879 Py_INCREF(m);
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000880
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000881 return m;
Tim Peters1cd70172004-08-02 03:52:12 +0000882
883 error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000884 remove_module(name);
885 return NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000886}
887
888
Barry Warsaw28a691b2010-04-17 00:19:56 +0000889/* Like strrchr(string, '/') but searches for the rightmost of either SEP
890 or ALTSEP, if the latter is defined.
891*/
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200892static Py_UCS4*
893rightmost_sep(Py_UCS4 *s)
Victor Stinnerc9abda02011-03-14 13:33:46 -0400894{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200895 Py_UCS4 *found, c;
Victor Stinnerc9abda02011-03-14 13:33:46 -0400896 for (found = NULL; (c = *s); s++) {
897 if (c == SEP
898#ifdef ALTSEP
899 || c == ALTSEP
900#endif
901 )
902 {
903 found = s;
904 }
905 }
906 return found;
907}
908
Martin v. Löwis2db72862011-10-23 17:29:08 +0200909/* Like rightmost_sep, but operate on unicode objects. */
910static Py_ssize_t
Martin v. Löwis8a0ef782011-10-23 18:05:06 +0200911rightmost_sep_obj(PyObject* o, Py_ssize_t start, Py_ssize_t end)
Martin v. Löwis2db72862011-10-23 17:29:08 +0200912{
913 Py_ssize_t found, i;
914 Py_UCS4 c;
Martin v. Löwis8a0ef782011-10-23 18:05:06 +0200915 for (found = -1, i = start; i < end; i++) {
Martin v. Löwis2db72862011-10-23 17:29:08 +0200916 c = PyUnicode_READ_CHAR(o, i);
917 if (c == SEP
918#ifdef ALTSEP
919 || c == ALTSEP
920#endif
921 )
922 {
923 found = i;
924 }
925 }
926 return found;
927}
Victor Stinnerc9abda02011-03-14 13:33:46 -0400928
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000929/* Given a pathname for a Python source file, fill a buffer with the
930 pathname for the corresponding compiled file. Return the pathname
931 for the compiled file, or NULL if there's no space in the buffer.
Victor Stinner2f42ae52011-03-20 00:41:24 +0100932 Doesn't set an exception.
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000933
Martin v. Löwis30260a72011-10-23 17:35:46 +0200934 foo.py -> __pycache__/foo.<tag>.pyc
935
936 pathstr is assumed to be "ready".
937*/
Victor Stinner2f42ae52011-03-20 00:41:24 +0100938
939static PyObject*
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200940make_compiled_pathname(PyObject *pathstr, int debug)
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000941{
Martin v. Löwis2db72862011-10-23 17:29:08 +0200942 PyObject *result;
943 Py_ssize_t fname, ext, len, i, pos, taglen;
Martin v. Löwisfadcd312011-10-23 18:08:20 +0200944 Py_ssize_t pycache_len = sizeof(CACHEDIR) - 1;
Martin v. Löwis2db72862011-10-23 17:29:08 +0200945 int kind;
946 void *data;
Antoine Pitroub528fcf2011-10-25 00:21:02 +0200947 Py_UCS4 lastsep;
Barry Warsaw28a691b2010-04-17 00:19:56 +0000948
Martin v. Löwis2db72862011-10-23 17:29:08 +0200949 /* Compute the output string size. */
950 len = PyUnicode_GET_LENGTH(pathstr);
951 /* If there is no separator, this returns -1, so
Antoine Pitroub528fcf2011-10-25 00:21:02 +0200952 fname will be 0. */
Martin v. Löwis8a0ef782011-10-23 18:05:06 +0200953 fname = rightmost_sep_obj(pathstr, 0, len) + 1;
Antoine Pitroub528fcf2011-10-25 00:21:02 +0200954 /* Windows: re-use the last separator character (/ or \\) when
955 appending the __pycache__ path. */
956 if (fname > 0)
957 lastsep = PyUnicode_READ_CHAR(pathstr, fname -1);
958 else
959 lastsep = SEP;
Martin v. Löwis2db72862011-10-23 17:29:08 +0200960 ext = fname - 1;
961 for(i = fname; i < len; i++)
962 if (PyUnicode_READ_CHAR(pathstr, i) == '.')
963 ext = i + 1;
964 if (ext < fname)
965 /* No dot in filename; use entire filename */
966 ext = len;
967
968 /* result = pathstr[:fname] + "__pycache__" + SEP +
969 pathstr[fname:ext] + tag + ".py[co]" */
970 taglen = strlen(pyc_tag);
Martin v. Löwis2cc0cc52011-10-23 18:41:56 +0200971 result = PyUnicode_New(ext + pycache_len + 1 + taglen + 4,
Martin v. Löwis2db72862011-10-23 17:29:08 +0200972 PyUnicode_MAX_CHAR_VALUE(pathstr));
973 if (!result)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200974 return NULL;
Martin v. Löwis2db72862011-10-23 17:29:08 +0200975 kind = PyUnicode_KIND(result);
976 data = PyUnicode_DATA(result);
977 PyUnicode_CopyCharacters(result, 0, pathstr, 0, fname);
978 pos = fname;
Martin v. Löwis2cc0cc52011-10-23 18:41:56 +0200979 for (i = 0; i < pycache_len; i++)
Martin v. Löwisfadcd312011-10-23 18:08:20 +0200980 PyUnicode_WRITE(kind, data, pos++, CACHEDIR[i]);
Antoine Pitroub528fcf2011-10-25 00:21:02 +0200981 PyUnicode_WRITE(kind, data, pos++, lastsep);
Martin v. Löwis2db72862011-10-23 17:29:08 +0200982 PyUnicode_CopyCharacters(result, pos, pathstr,
983 fname, ext - fname);
984 pos += ext - fname;
985 for (i = 0; pyc_tag[i]; i++)
986 PyUnicode_WRITE(kind, data, pos++, pyc_tag[i]);
987 PyUnicode_WRITE(kind, data, pos++, '.');
988 PyUnicode_WRITE(kind, data, pos++, 'p');
989 PyUnicode_WRITE(kind, data, pos++, 'y');
990 PyUnicode_WRITE(kind, data, pos++, debug ? 'c' : 'o');
991 return result;
Guido van Rossum1ae940a1995-01-02 19:04:15 +0000992}
993
994
Barry Warsaw28a691b2010-04-17 00:19:56 +0000995/* Given a pathname to a Python byte compiled file, return the path to the
996 source file, if the path matches the PEP 3147 format. This does not check
997 for any file existence, however, if the pyc file name does not match PEP
998 3147 style, NULL is returned. buf must be at least as big as pathname;
Victor Stinnerc9abda02011-03-14 13:33:46 -0400999 the resulting path will always be shorter.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001000
Victor Stinnerc9abda02011-03-14 13:33:46 -04001001 (...)/__pycache__/foo.<tag>.pyc -> (...)/foo.py */
1002
1003static PyObject*
Martin v. Löwis8a0ef782011-10-23 18:05:06 +02001004make_source_pathname(PyObject *path)
Barry Warsaw28a691b2010-04-17 00:19:56 +00001005{
Martin v. Löwis8a0ef782011-10-23 18:05:06 +02001006 Py_ssize_t left, right, dot0, dot1, len;
1007 Py_ssize_t i, j;
1008 PyObject *result;
1009 int kind;
1010 void *data;
Victor Stinnerc9abda02011-03-14 13:33:46 -04001011
Martin v. Löwis8a0ef782011-10-23 18:05:06 +02001012 len = PyUnicode_GET_LENGTH(path);
1013 if (len > MAXPATHLEN)
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001014 return NULL;
Barry Warsaw28a691b2010-04-17 00:19:56 +00001015
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001016 /* Look back two slashes from the end. In between these two slashes
1017 must be the string __pycache__ or this is not a PEP 3147 style
1018 path. It's possible for there to be only one slash.
1019 */
Martin v. Löwis8a0ef782011-10-23 18:05:06 +02001020 right = rightmost_sep_obj(path, 0, len);
1021 if (right == -1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001022 return NULL;
Martin v. Löwis8a0ef782011-10-23 18:05:06 +02001023 left = rightmost_sep_obj(path, 0, right);
1024 if (left == -1)
1025 left = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001026 else
1027 left++;
Martin v. Löwis8a0ef782011-10-23 18:05:06 +02001028 if (right-left != sizeof(CACHEDIR)-1)
1029 return NULL;
1030 for (i = 0; i < sizeof(CACHEDIR)-1; i++)
1031 if (PyUnicode_READ_CHAR(path, left+i) != CACHEDIR[i])
1032 return NULL;
Barry Warsaw28a691b2010-04-17 00:19:56 +00001033
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001034 /* Now verify that the path component to the right of the last slash
1035 has two dots in it.
1036 */
Martin v. Löwis8a0ef782011-10-23 18:05:06 +02001037 dot0 = PyUnicode_FindChar(path, '.', right+1, len, 1);
1038 if (dot0 < 0)
1039 return NULL;
1040 dot1 = PyUnicode_FindChar(path, '.', dot0+1, len, 1);
1041 if (dot1 < 0)
1042 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001043 /* Too many dots? */
Martin v. Löwis8a0ef782011-10-23 18:05:06 +02001044 if (PyUnicode_FindChar(path, '.', dot1+1, len, 1) != -1)
1045 return NULL;
Barry Warsaw28a691b2010-04-17 00:19:56 +00001046
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001047 /* This is a PEP 3147 path. Start by copying everything from the
1048 start of pathname up to and including the leftmost slash. Then
1049 copy the file's basename, removing the magic tag and adding a .py
1050 suffix.
1051 */
Martin v. Löwis8a0ef782011-10-23 18:05:06 +02001052 result = PyUnicode_New(left + (dot0-right) + 2,
1053 PyUnicode_MAX_CHAR_VALUE(path));
1054 if (!result)
1055 return NULL;
1056 kind = PyUnicode_KIND(result);
1057 data = PyUnicode_DATA(result);
1058 PyUnicode_CopyCharacters(result, 0, path, 0, (i = left));
1059 PyUnicode_CopyCharacters(result, left, path, right+1,
1060 (j = dot0-right));
1061 PyUnicode_WRITE(kind, data, i+j, 'p');
1062 PyUnicode_WRITE(kind, data, i+j+1, 'y');
1063 return result;
Barry Warsaw28a691b2010-04-17 00:19:56 +00001064}
1065
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001066/* Given a pathname for a Python source file, its time of last
1067 modification, and a pathname for a compiled file, check whether the
1068 compiled file represents the same version of the source. If so,
1069 return a FILE pointer for the compiled file, positioned just after
1070 the header; if not, return NULL.
1071 Doesn't set an exception. */
1072
1073static FILE *
Victor Stinner2f42ae52011-03-20 00:41:24 +01001074check_compiled_module(PyObject *pathname, time_t mtime, PyObject *cpathname)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001075{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001076 FILE *fp;
1077 long magic;
1078 long pyc_mtime;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001079
Victor Stinner2f42ae52011-03-20 00:41:24 +01001080 fp = _Py_fopen(cpathname, "rb");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001081 if (fp == NULL)
1082 return NULL;
1083 magic = PyMarshal_ReadLongFromFile(fp);
1084 if (magic != pyc_magic) {
1085 if (Py_VerboseFlag)
Victor Stinner2f42ae52011-03-20 00:41:24 +01001086 PySys_FormatStderr("# %R has bad magic\n", cpathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001087 fclose(fp);
1088 return NULL;
1089 }
1090 pyc_mtime = PyMarshal_ReadLongFromFile(fp);
1091 if (pyc_mtime != mtime) {
1092 if (Py_VerboseFlag)
Victor Stinner2f42ae52011-03-20 00:41:24 +01001093 PySys_FormatStderr("# %R has bad mtime\n", cpathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001094 fclose(fp);
1095 return NULL;
1096 }
1097 if (Py_VerboseFlag)
Victor Stinner2f42ae52011-03-20 00:41:24 +01001098 PySys_FormatStderr("# %R matches %R\n", cpathname, pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001099 return fp;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001100}
1101
1102
1103/* Read a code object from a file and check it for validity */
1104
Guido van Rossum79f25d91997-04-29 20:08:16 +00001105static PyCodeObject *
Victor Stinner2f42ae52011-03-20 00:41:24 +01001106read_compiled_module(PyObject *cpathname, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001107{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001108 PyObject *co;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001109
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001110 co = PyMarshal_ReadLastObjectFromFile(fp);
1111 if (co == NULL)
1112 return NULL;
1113 if (!PyCode_Check(co)) {
1114 PyErr_Format(PyExc_ImportError,
Victor Stinner2f42ae52011-03-20 00:41:24 +01001115 "Non-code object in %R", cpathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001116 Py_DECREF(co);
1117 return NULL;
1118 }
1119 return (PyCodeObject *)co;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001120}
1121
1122
1123/* Load a module from a compiled file, execute it, and return its
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001124 module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001125
Guido van Rossum79f25d91997-04-29 20:08:16 +00001126static PyObject *
Victor Stinner2f42ae52011-03-20 00:41:24 +01001127load_compiled_module(PyObject *name, PyObject *cpathname, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001128{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001129 long magic;
1130 PyCodeObject *co;
1131 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001132
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001133 magic = PyMarshal_ReadLongFromFile(fp);
1134 if (magic != pyc_magic) {
1135 PyErr_Format(PyExc_ImportError,
Victor Stinner2f42ae52011-03-20 00:41:24 +01001136 "Bad magic number in %R", cpathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001137 return NULL;
1138 }
1139 (void) PyMarshal_ReadLongFromFile(fp);
1140 co = read_compiled_module(cpathname, fp);
1141 if (co == NULL)
1142 return NULL;
1143 if (Py_VerboseFlag)
Victor Stinner2f42ae52011-03-20 00:41:24 +01001144 PySys_FormatStderr("import %U # precompiled from %R\n",
1145 name, cpathname);
1146 m = PyImport_ExecCodeModuleObject(name, (PyObject *)co,
1147 cpathname, cpathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001148 Py_DECREF(co);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001149
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001150 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001151}
1152
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001153/* Parse a source file and return the corresponding code object */
1154
Guido van Rossum79f25d91997-04-29 20:08:16 +00001155static PyCodeObject *
Victor Stinner2f42ae52011-03-20 00:41:24 +01001156parse_source_module(PyObject *pathname, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001157{
Victor Stinner2f42ae52011-03-20 00:41:24 +01001158 PyCodeObject *co;
1159 PyObject *pathbytes;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001160 mod_ty mod;
1161 PyCompilerFlags flags;
Victor Stinner2f42ae52011-03-20 00:41:24 +01001162 PyArena *arena;
1163
1164 pathbytes = PyUnicode_EncodeFSDefault(pathname);
1165 if (pathbytes == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001166 return NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001167
Victor Stinner2f42ae52011-03-20 00:41:24 +01001168 arena = PyArena_New();
1169 if (arena == NULL) {
1170 Py_DECREF(pathbytes);
1171 return NULL;
1172 }
1173
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001174 flags.cf_flags = 0;
Victor Stinner2f42ae52011-03-20 00:41:24 +01001175 mod = PyParser_ASTFromFile(fp, PyBytes_AS_STRING(pathbytes), NULL,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001176 Py_file_input, 0, 0, &flags,
1177 NULL, arena);
Victor Stinner2f42ae52011-03-20 00:41:24 +01001178 if (mod != NULL)
1179 co = PyAST_Compile(mod, PyBytes_AS_STRING(pathbytes), NULL, arena);
1180 else
1181 co = NULL;
1182 Py_DECREF(pathbytes);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001183 PyArena_Free(arena);
1184 return co;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001185}
1186
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001187/* Write a compiled module to a file, placing the time of last
1188 modification of its source into the header.
1189 Errors are ignored, if a write error occurs an attempt is made to
1190 remove the file. */
1191
1192static void
Victor Stinner2f42ae52011-03-20 00:41:24 +01001193write_compiled_module(PyCodeObject *co, PyObject *cpathname,
1194 struct stat *srcstat)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001195{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001196 Py_UCS4 *cpathname_ucs4;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001197 FILE *fp;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001198 time_t mtime = srcstat->st_mtime;
Antoine Pitrou8ad982c2011-11-15 22:27:32 +01001199 PyObject *cpathname_tmp;
Alexandre Vassalotti9d58e3e2009-07-17 10:55:50 +00001200#ifdef MS_WINDOWS /* since Windows uses different permissions */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001201 mode_t mode = srcstat->st_mode & ~S_IEXEC;
Victor Stinner1f795172011-11-17 00:45:54 +01001202 wchar_t *wdirname, *wpathname, *wpathname_tmp;
Alexandre Vassalotti9d58e3e2009-07-17 10:55:50 +00001203#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001204 mode_t dirmode = (srcstat->st_mode |
1205 S_IXUSR | S_IXGRP | S_IXOTH |
1206 S_IWUSR | S_IWGRP | S_IWOTH);
Victor Stinner2f42ae52011-03-20 00:41:24 +01001207 PyObject *dirbytes;
Antoine Pitrou707033a2011-10-17 19:28:44 +02001208 PyObject *cpathbytes, *cpathbytes_tmp;
Victor Stinner783c82c2011-04-20 03:27:51 +02001209#endif
Charles-François Natali0c929d92011-11-10 19:12:29 +01001210 int fd;
Victor Stinner783c82c2011-04-20 03:27:51 +02001211 PyObject *dirname;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001212 Py_UCS4 *dirsep;
Victor Stinner2f42ae52011-03-20 00:41:24 +01001213 int res, ok;
Barry Warsaw28a691b2010-04-17 00:19:56 +00001214
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001215 /* Ensure that the __pycache__ directory exists. */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001216 cpathname_ucs4 = PyUnicode_AsUCS4Copy(cpathname);
1217 if (!cpathname_ucs4)
1218 return;
1219 dirsep = rightmost_sep(cpathname_ucs4);
Victor Stinner2f42ae52011-03-20 00:41:24 +01001220 if (dirsep == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001221 if (Py_VerboseFlag)
Victor Stinner2f42ae52011-03-20 00:41:24 +01001222 PySys_FormatStderr("# no %s path found %R\n", CACHEDIR, cpathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001223 return;
1224 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001225 dirname = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND,
1226 cpathname_ucs4,
1227 dirsep - cpathname_ucs4);
1228 PyMem_Free(cpathname_ucs4);
Victor Stinner2f42ae52011-03-20 00:41:24 +01001229 if (dirname == NULL) {
1230 PyErr_Clear();
1231 return;
1232 }
Daniel Stutzbachc7937792010-09-09 21:18:04 +00001233
1234#ifdef MS_WINDOWS
Victor Stinner1f795172011-11-17 00:45:54 +01001235 wdirname = PyUnicode_AsUnicode(dirname);
1236 if (wdirname == NULL) {
1237 PyErr_Clear();
1238 return;
1239 }
1240 res = CreateDirectoryW(wdirname, NULL);
Victor Stinner2f42ae52011-03-20 00:41:24 +01001241 ok = (res != 0);
1242 if (!ok && GetLastError() == ERROR_ALREADY_EXISTS)
1243 ok = 1;
Daniel Stutzbachc7937792010-09-09 21:18:04 +00001244#else
Victor Stinner2f42ae52011-03-20 00:41:24 +01001245 dirbytes = PyUnicode_EncodeFSDefault(dirname);
1246 if (dirbytes == NULL) {
1247 PyErr_Clear();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001248 return;
1249 }
Victor Stinner2f42ae52011-03-20 00:41:24 +01001250 res = mkdir(PyBytes_AS_STRING(dirbytes), dirmode);
1251 Py_DECREF(dirbytes);
1252 if (0 <= res)
1253 ok = 1;
1254 else
1255 ok = (errno == EEXIST);
1256#endif
1257 if (!ok) {
1258 if (Py_VerboseFlag)
1259 PySys_FormatStderr("# cannot create cache dir %R\n", dirname);
1260 Py_DECREF(dirname);
1261 return;
1262 }
1263 Py_DECREF(dirname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001264
Antoine Pitrou28e401e2011-11-15 19:15:19 +01001265 /* We first write to a tmp file and then take advantage
Antoine Pitrou8ad982c2011-11-15 22:27:32 +01001266 of atomic renaming (which *should* be true even under Windows).
1267 As in importlib, we use id(something) to generate a pseudo-random
1268 filename. mkstemp() can't be used since it doesn't allow specifying
1269 the file access permissions.
1270 */
1271 cpathname_tmp = PyUnicode_FromFormat("%U.%zd",
1272 cpathname, (Py_ssize_t) co);
Antoine Pitrou28e401e2011-11-15 19:15:19 +01001273 if (cpathname_tmp == NULL) {
1274 PyErr_Clear();
1275 return;
1276 }
Antoine Pitrou8ad982c2011-11-15 22:27:32 +01001277#ifdef MS_WINDOWS
Victor Stinner1f795172011-11-17 00:45:54 +01001278 wpathname = PyUnicode_AsUnicode(cpathname);
1279 if (wpathname == NULL) {
1280 PyErr_Clear();
1281 return;
1282 }
1283 wpathname_tmp = PyUnicode_AsUnicode(cpathname_tmp);
1284 if (wpathname_tmp == NULL) {
1285 PyErr_Clear();
1286 return;
1287 }
1288
1289 (void)DeleteFileW(wpathname_tmp);
1290 fd = _wopen(wpathname_tmp,
Antoine Pitrou28e401e2011-11-15 19:15:19 +01001291 O_EXCL | O_CREAT | O_WRONLY | O_BINARY,
1292 mode);
Victor Stinner783c82c2011-04-20 03:27:51 +02001293 if (0 <= fd)
1294 fp = fdopen(fd, "wb");
1295 else
1296 fp = NULL;
1297#else
Antoine Pitrou8ad982c2011-11-15 22:27:32 +01001298 cpathbytes_tmp = PyUnicode_EncodeFSDefault(cpathname_tmp);
1299 Py_DECREF(cpathname_tmp);
1300 if (cpathbytes_tmp == NULL) {
1301 PyErr_Clear();
1302 return;
1303 }
Victor Stinner2f42ae52011-03-20 00:41:24 +01001304 cpathbytes = PyUnicode_EncodeFSDefault(cpathname);
1305 if (cpathbytes == NULL) {
1306 PyErr_Clear();
1307 return;
1308 }
Charles-François Natali0c929d92011-11-10 19:12:29 +01001309 fd = open(PyBytes_AS_STRING(cpathbytes_tmp),
1310 O_CREAT | O_EXCL | O_WRONLY, 0666);
Charles-François Natalie695eec2011-10-31 20:47:31 +01001311 if (0 <= fd)
1312 fp = fdopen(fd, "wb");
1313 else
1314 fp = NULL;
Victor Stinner783c82c2011-04-20 03:27:51 +02001315#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001316 if (fp == NULL) {
1317 if (Py_VerboseFlag)
Victor Stinner2f42ae52011-03-20 00:41:24 +01001318 PySys_FormatStderr(
1319 "# can't create %R\n", cpathname);
Antoine Pitrou28e401e2011-11-15 19:15:19 +01001320#ifdef MS_WINDOWS
1321 Py_DECREF(cpathname_tmp);
1322#else
Victor Stinner2f42ae52011-03-20 00:41:24 +01001323 Py_DECREF(cpathbytes);
Antoine Pitrou707033a2011-10-17 19:28:44 +02001324 Py_DECREF(cpathbytes_tmp);
Victor Stinner783c82c2011-04-20 03:27:51 +02001325#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001326 return;
1327 }
1328 PyMarshal_WriteLongToFile(pyc_magic, fp, Py_MARSHAL_VERSION);
1329 /* First write a 0 for mtime */
1330 PyMarshal_WriteLongToFile(0L, fp, Py_MARSHAL_VERSION);
1331 PyMarshal_WriteObjectToFile((PyObject *)co, fp, Py_MARSHAL_VERSION);
Antoine Pitrou707033a2011-10-17 19:28:44 +02001332 fflush(fp);
1333 /* Now write the true mtime */
1334 fseek(fp, 4L, 0);
1335 assert(mtime < LONG_MAX);
1336 PyMarshal_WriteLongToFile((long)mtime, fp, Py_MARSHAL_VERSION);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001337 if (fflush(fp) != 0 || ferror(fp)) {
1338 if (Py_VerboseFlag)
Victor Stinner2f42ae52011-03-20 00:41:24 +01001339 PySys_FormatStderr("# can't write %R\n", cpathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001340 /* Don't keep partial file */
1341 fclose(fp);
Victor Stinner2f42ae52011-03-20 00:41:24 +01001342#ifdef MS_WINDOWS
Victor Stinner1f795172011-11-17 00:45:54 +01001343 (void)DeleteFileW(wpathname_tmp);
Antoine Pitrou28e401e2011-11-15 19:15:19 +01001344 Py_DECREF(cpathname_tmp);
Victor Stinner2f42ae52011-03-20 00:41:24 +01001345#else
Antoine Pitrou707033a2011-10-17 19:28:44 +02001346 (void) unlink(PyBytes_AS_STRING(cpathbytes_tmp));
Victor Stinner2f42ae52011-03-20 00:41:24 +01001347 Py_DECREF(cpathbytes);
Antoine Pitrou707033a2011-10-17 19:28:44 +02001348 Py_DECREF(cpathbytes_tmp);
Victor Stinner783c82c2011-04-20 03:27:51 +02001349#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001350 return;
1351 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001352 fclose(fp);
Antoine Pitrou28e401e2011-11-15 19:15:19 +01001353 /* Do a (hopefully) atomic rename */
1354#ifdef MS_WINDOWS
Victor Stinner1f795172011-11-17 00:45:54 +01001355 if (!MoveFileExW(wpathname_tmp, wpathname, MOVEFILE_REPLACE_EXISTING)) {
Antoine Pitrou28e401e2011-11-15 19:15:19 +01001356 if (Py_VerboseFlag)
1357 PySys_FormatStderr("# can't write %R\n", cpathname);
1358 /* Don't keep tmp file */
Victor Stinner1f795172011-11-17 00:45:54 +01001359 (void) DeleteFileW(wpathname_tmp);
Antoine Pitrou28e401e2011-11-15 19:15:19 +01001360 Py_DECREF(cpathname_tmp);
1361 return;
1362 }
1363 Py_DECREF(cpathname_tmp);
1364#else
Antoine Pitrou707033a2011-10-17 19:28:44 +02001365 if (rename(PyBytes_AS_STRING(cpathbytes_tmp),
1366 PyBytes_AS_STRING(cpathbytes))) {
1367 if (Py_VerboseFlag)
1368 PySys_FormatStderr("# can't write %R\n", cpathname);
1369 /* Don't keep tmp file */
1370 unlink(PyBytes_AS_STRING(cpathbytes_tmp));
1371 Py_DECREF(cpathbytes);
1372 Py_DECREF(cpathbytes_tmp);
1373 return;
1374 }
1375 Py_DECREF(cpathbytes);
1376 Py_DECREF(cpathbytes_tmp);
1377#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001378 if (Py_VerboseFlag)
Victor Stinner2f42ae52011-03-20 00:41:24 +01001379 PySys_FormatStderr("# wrote %R\n", cpathname);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001380}
1381
Antoine Pitroud35cbf62009-01-06 19:02:24 +00001382static void
1383update_code_filenames(PyCodeObject *co, PyObject *oldname, PyObject *newname)
1384{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001385 PyObject *constants, *tmp;
1386 Py_ssize_t i, n;
Antoine Pitroud35cbf62009-01-06 19:02:24 +00001387
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001388 if (PyUnicode_Compare(co->co_filename, oldname))
1389 return;
Antoine Pitroud35cbf62009-01-06 19:02:24 +00001390
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001391 tmp = co->co_filename;
1392 co->co_filename = newname;
1393 Py_INCREF(co->co_filename);
1394 Py_DECREF(tmp);
Antoine Pitroud35cbf62009-01-06 19:02:24 +00001395
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001396 constants = co->co_consts;
1397 n = PyTuple_GET_SIZE(constants);
1398 for (i = 0; i < n; i++) {
1399 tmp = PyTuple_GET_ITEM(constants, i);
1400 if (PyCode_Check(tmp))
1401 update_code_filenames((PyCodeObject *)tmp,
1402 oldname, newname);
1403 }
Antoine Pitroud35cbf62009-01-06 19:02:24 +00001404}
1405
Victor Stinner2f42ae52011-03-20 00:41:24 +01001406static void
1407update_compiled_module(PyCodeObject *co, PyObject *newname)
Antoine Pitroud35cbf62009-01-06 19:02:24 +00001408{
Victor Stinner2f42ae52011-03-20 00:41:24 +01001409 PyObject *oldname;
Antoine Pitroud35cbf62009-01-06 19:02:24 +00001410
Victor Stinner2f42ae52011-03-20 00:41:24 +01001411 if (PyUnicode_Compare(co->co_filename, newname) == 0)
1412 return;
Hirokazu Yamamoto4f447fb2009-03-04 01:52:10 +00001413
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001414 oldname = co->co_filename;
1415 Py_INCREF(oldname);
1416 update_code_filenames(co, oldname, newname);
1417 Py_DECREF(oldname);
Antoine Pitroud35cbf62009-01-06 19:02:24 +00001418}
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001419
Brett Cannon442c9b92011-03-23 16:14:42 -07001420static PyObject *
1421imp_fix_co_filename(PyObject *self, PyObject *args)
1422{
1423 PyObject *co;
1424 PyObject *file_path;
1425
1426 if (!PyArg_ParseTuple(args, "OO:_fix_co_filename", &co, &file_path))
1427 return NULL;
1428
1429 if (!PyCode_Check(co)) {
1430 PyErr_SetString(PyExc_TypeError,
1431 "first argument must be a code object");
1432 return NULL;
1433 }
1434
1435 if (!PyUnicode_Check(file_path)) {
1436 PyErr_SetString(PyExc_TypeError,
1437 "second argument must be a string");
1438 return NULL;
1439 }
1440
1441 update_compiled_module((PyCodeObject*)co, file_path);
1442
1443 Py_RETURN_NONE;
1444}
1445
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001446/* Load a source module from a given file and return its module
Guido van Rossum7f9fa971995-01-20 16:53:12 +00001447 object WITH INCREMENTED REFERENCE COUNT. If there's a matching
1448 byte-compiled file, use that instead. */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001449
Guido van Rossum79f25d91997-04-29 20:08:16 +00001450static PyObject *
Victor Stinner2f42ae52011-03-20 00:41:24 +01001451load_source_module(PyObject *name, PyObject *pathname, FILE *fp)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001452{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001453 struct stat st;
1454 FILE *fpc;
Victor Stinner2f42ae52011-03-20 00:41:24 +01001455 PyObject *cpathname = NULL, *cpathbytes = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001456 PyCodeObject *co;
Victor Stinner2f42ae52011-03-20 00:41:24 +01001457 PyObject *m = NULL;
Brett Cannon9a5b25a2010-03-01 02:09:17 +00001458
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001459 if (fstat(fileno(fp), &st) != 0) {
1460 PyErr_Format(PyExc_RuntimeError,
Victor Stinner2f42ae52011-03-20 00:41:24 +01001461 "unable to get file status from %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001462 pathname);
Victor Stinner2f42ae52011-03-20 00:41:24 +01001463 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001464 }
Fred Drake4c82b232000-06-30 16:18:57 +00001465#if SIZEOF_TIME_T > 4
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001466 /* Python's .pyc timestamp handling presumes that the timestamp fits
1467 in 4 bytes. This will be fine until sometime in the year 2038,
1468 when a 4-byte signed time_t will overflow.
1469 */
1470 if (st.st_mtime >> 32) {
1471 PyErr_SetString(PyExc_OverflowError,
1472 "modification time overflows a 4 byte field");
Victor Stinner2f42ae52011-03-20 00:41:24 +01001473 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001474 }
Fred Drake4c82b232000-06-30 16:18:57 +00001475#endif
Martin v. Löwis30260a72011-10-23 17:35:46 +02001476 if (PyUnicode_READY(pathname) < 0)
1477 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001478 cpathname = make_compiled_pathname(pathname, !Py_OptimizeFlag);
Victor Stinner2f42ae52011-03-20 00:41:24 +01001479
1480 if (cpathname != NULL)
1481 fpc = check_compiled_module(pathname, st.st_mtime, cpathname);
1482 else
1483 fpc = NULL;
1484
1485 if (fpc) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001486 co = read_compiled_module(cpathname, fpc);
1487 fclose(fpc);
1488 if (co == NULL)
Victor Stinner2f42ae52011-03-20 00:41:24 +01001489 goto error;
1490 update_compiled_module(co, pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001491 if (Py_VerboseFlag)
Victor Stinner2f42ae52011-03-20 00:41:24 +01001492 PySys_FormatStderr("import %U # precompiled from %R\n",
1493 name, cpathname);
1494 m = PyImport_ExecCodeModuleObject(name, (PyObject *)co,
1495 cpathname, cpathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001496 }
1497 else {
1498 co = parse_source_module(pathname, fp);
1499 if (co == NULL)
Victor Stinner2f42ae52011-03-20 00:41:24 +01001500 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001501 if (Py_VerboseFlag)
Victor Stinner2f42ae52011-03-20 00:41:24 +01001502 PySys_FormatStderr("import %U # from %R\n",
Victor Stinner98dbba52011-03-14 15:15:47 -04001503 name, pathname);
Victor Stinner2f42ae52011-03-20 00:41:24 +01001504 if (cpathname != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001505 PyObject *ro = PySys_GetObject("dont_write_bytecode");
1506 if (ro == NULL || !PyObject_IsTrue(ro))
1507 write_compiled_module(co, cpathname, &st);
1508 }
Victor Stinner2f42ae52011-03-20 00:41:24 +01001509 m = PyImport_ExecCodeModuleObject(name, (PyObject *)co,
1510 pathname, cpathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001511 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001512 Py_DECREF(co);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001513
Victor Stinner2f42ae52011-03-20 00:41:24 +01001514error:
1515 Py_XDECREF(cpathbytes);
1516 Py_XDECREF(cpathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001517 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001518}
1519
Christian Heimes3b06e532008-01-07 20:12:44 +00001520/* Get source file -> unicode or None
1521 * Returns the path to the py file if available, else the given path
1522 */
1523static PyObject *
Victor Stinnerc9abda02011-03-14 13:33:46 -04001524get_sourcefile(PyObject *filename)
Christian Heimes3b06e532008-01-07 20:12:44 +00001525{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001526 Py_ssize_t len;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001527 Py_UCS4 *fileuni;
Victor Stinnerc9abda02011-03-14 13:33:46 -04001528 PyObject *py;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001529 struct stat statbuf;
Christian Heimes3b06e532008-01-07 20:12:44 +00001530
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001531 len = PyUnicode_GET_LENGTH(filename);
Victor Stinnerc9abda02011-03-14 13:33:46 -04001532 if (len == 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001533 Py_RETURN_NONE;
Christian Heimes3b06e532008-01-07 20:12:44 +00001534
Victor Stinnerc9abda02011-03-14 13:33:46 -04001535 /* don't match *.pyc or *.pyo? */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001536 fileuni = PyUnicode_AsUCS4Copy(filename);
1537 if (!fileuni)
1538 return NULL;
Victor Stinnerc9abda02011-03-14 13:33:46 -04001539 if (len < 5
1540 || fileuni[len-4] != '.'
1541 || (fileuni[len-3] != 'p' && fileuni[len-3] != 'P')
1542 || (fileuni[len-2] != 'y' && fileuni[len-2] != 'Y'))
1543 goto unchanged;
Christian Heimes3b06e532008-01-07 20:12:44 +00001544
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001545 /* Start by trying to turn PEP 3147 path into source path. If that
1546 * fails, just chop off the trailing character, i.e. legacy pyc path
1547 * to py.
1548 */
Victor Stinnerc9abda02011-03-14 13:33:46 -04001549 py = make_source_pathname(filename);
1550 if (py == NULL) {
1551 PyErr_Clear();
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001552 py = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, fileuni, len - 1);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001553 }
Victor Stinnerc9abda02011-03-14 13:33:46 -04001554 if (py == NULL)
1555 goto error;
Barry Warsaw28a691b2010-04-17 00:19:56 +00001556
Martin v. Löwis0b1d3482011-10-01 16:35:40 +02001557 if (_Py_stat(py, &statbuf) == 0 && S_ISREG(statbuf.st_mode)) {
1558 PyMem_Free(fileuni);
Victor Stinnerc9abda02011-03-14 13:33:46 -04001559 return py;
Martin v. Löwis0b1d3482011-10-01 16:35:40 +02001560 }
Victor Stinnerc9abda02011-03-14 13:33:46 -04001561 Py_DECREF(py);
1562 goto unchanged;
1563
1564error:
1565 PyErr_Clear();
1566unchanged:
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001567 PyMem_Free(fileuni);
Victor Stinnerc9abda02011-03-14 13:33:46 -04001568 Py_INCREF(filename);
1569 return filename;
Christian Heimes3b06e532008-01-07 20:12:44 +00001570}
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001571
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001572/* Forward */
Victor Stinner41c5fec2011-03-13 21:46:30 -04001573static PyObject *load_module(PyObject *, FILE *, PyObject *, int, PyObject *);
Victor Stinnerad3c03b2011-03-14 09:21:33 -04001574static struct filedescr *find_module(PyObject *, PyObject *, PyObject *,
Victor Stinner2fd76e42011-03-14 15:19:39 -04001575 PyObject **, FILE **, PyObject **);
Victor Stinner53dc7352011-03-20 01:50:21 +01001576static struct _frozen * find_frozen(PyObject *);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001577
1578/* Load a package and return its module object WITH INCREMENTED
1579 REFERENCE COUNT */
1580
1581static PyObject *
Victor Stinnerc9abda02011-03-14 13:33:46 -04001582load_package(PyObject *name, PyObject *pathname)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001583{
Victor Stinner41c5fec2011-03-13 21:46:30 -04001584 PyObject *m, *d, *bufobj;
Victor Stinnerc9abda02011-03-14 13:33:46 -04001585 PyObject *file = NULL, *path_list = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001586 int err;
Victor Stinnerc9abda02011-03-14 13:33:46 -04001587 FILE *fp = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001588 struct filedescr *fdp;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001589
Victor Stinnerc9abda02011-03-14 13:33:46 -04001590 m = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001591 if (m == NULL)
1592 return NULL;
1593 if (Py_VerboseFlag)
Victor Stinner98dbba52011-03-14 15:15:47 -04001594 PySys_FormatStderr("import %U # directory %R\n",
1595 name, pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001596 file = get_sourcefile(pathname);
1597 if (file == NULL)
Victor Stinnerc9abda02011-03-14 13:33:46 -04001598 return NULL;
1599 path_list = Py_BuildValue("[O]", file);
1600 if (path_list == NULL) {
1601 Py_DECREF(file);
1602 return NULL;
1603 }
1604 d = PyModule_GetDict(m);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001605 err = PyDict_SetItemString(d, "__file__", file);
Victor Stinnerc9abda02011-03-14 13:33:46 -04001606 Py_DECREF(file);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001607 if (err == 0)
Victor Stinnerc9abda02011-03-14 13:33:46 -04001608 err = PyDict_SetItemString(d, "__path__", path_list);
1609 if (err != 0) {
1610 Py_DECREF(path_list);
1611 return NULL;
1612 }
Victor Stinner533d7832011-03-14 13:22:54 -04001613 fdp = find_module(name, initstr, path_list,
Victor Stinner2fd76e42011-03-14 15:19:39 -04001614 &bufobj, &fp, NULL);
Victor Stinnerc9abda02011-03-14 13:33:46 -04001615 Py_DECREF(path_list);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001616 if (fdp == NULL) {
1617 if (PyErr_ExceptionMatches(PyExc_ImportError)) {
1618 PyErr_Clear();
1619 Py_INCREF(m);
Victor Stinnerc9abda02011-03-14 13:33:46 -04001620 return m;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001621 }
1622 else
Victor Stinnerc9abda02011-03-14 13:33:46 -04001623 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001624 }
Victor Stinner2fd76e42011-03-14 15:19:39 -04001625 m = load_module(name, fp, bufobj, fdp->type, NULL);
1626 Py_XDECREF(bufobj);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001627 if (fp != NULL)
1628 fclose(fp);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001629 return m;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001630}
1631
1632
1633/* Helper to test for built-in module */
1634
1635static int
Victor Stinner95872862011-03-07 18:20:56 +01001636is_builtin(PyObject *name)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001637{
Victor Stinner95872862011-03-07 18:20:56 +01001638 int i, cmp;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001639 for (i = 0; PyImport_Inittab[i].name != NULL; i++) {
Victor Stinner95872862011-03-07 18:20:56 +01001640 cmp = PyUnicode_CompareWithASCIIString(name, PyImport_Inittab[i].name);
1641 if (cmp == 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001642 if (PyImport_Inittab[i].initfunc == NULL)
1643 return -1;
1644 else
1645 return 1;
1646 }
1647 }
1648 return 0;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001649}
1650
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001651
Just van Rossum52e14d62002-12-30 22:08:05 +00001652/* Return an importer object for a sys.path/pkg.__path__ item 'p',
1653 possibly by fetching it from the path_importer_cache dict. If it
Thomas Wouters89f507f2006-12-13 04:49:30 +00001654 wasn't yet cached, traverse path_hooks until a hook is found
Just van Rossum52e14d62002-12-30 22:08:05 +00001655 that can handle the path item. Return None if no hook could;
1656 this tells our caller it should fall back to the builtin
1657 import mechanism. Cache the result in path_importer_cache.
1658 Returns a borrowed reference. */
1659
1660static PyObject *
1661get_path_importer(PyObject *path_importer_cache, PyObject *path_hooks,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001662 PyObject *p)
Just van Rossum52e14d62002-12-30 22:08:05 +00001663{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001664 PyObject *importer;
1665 Py_ssize_t j, nhooks;
Just van Rossum52e14d62002-12-30 22:08:05 +00001666
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001667 /* These conditions are the caller's responsibility: */
1668 assert(PyList_Check(path_hooks));
1669 assert(PyDict_Check(path_importer_cache));
Just van Rossum52e14d62002-12-30 22:08:05 +00001670
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001671 nhooks = PyList_Size(path_hooks);
1672 if (nhooks < 0)
1673 return NULL; /* Shouldn't happen */
Just van Rossum52e14d62002-12-30 22:08:05 +00001674
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001675 importer = PyDict_GetItem(path_importer_cache, p);
1676 if (importer != NULL)
1677 return importer;
Just van Rossum52e14d62002-12-30 22:08:05 +00001678
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001679 /* set path_importer_cache[p] to None to avoid recursion */
1680 if (PyDict_SetItem(path_importer_cache, p, Py_None) != 0)
1681 return NULL;
Just van Rossum52e14d62002-12-30 22:08:05 +00001682
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001683 for (j = 0; j < nhooks; j++) {
1684 PyObject *hook = PyList_GetItem(path_hooks, j);
1685 if (hook == NULL)
1686 return NULL;
1687 importer = PyObject_CallFunctionObjArgs(hook, p, NULL);
1688 if (importer != NULL)
1689 break;
Just van Rossum52e14d62002-12-30 22:08:05 +00001690
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001691 if (!PyErr_ExceptionMatches(PyExc_ImportError)) {
1692 return NULL;
1693 }
1694 PyErr_Clear();
1695 }
1696 if (importer == NULL) {
1697 importer = PyObject_CallFunctionObjArgs(
1698 (PyObject *)&PyNullImporter_Type, p, NULL
1699 );
1700 if (importer == NULL) {
1701 if (PyErr_ExceptionMatches(PyExc_ImportError)) {
1702 PyErr_Clear();
1703 return Py_None;
1704 }
1705 }
1706 }
1707 if (importer != NULL) {
1708 int err = PyDict_SetItem(path_importer_cache, p, importer);
1709 Py_DECREF(importer);
1710 if (err != 0)
1711 return NULL;
1712 }
1713 return importer;
Just van Rossum52e14d62002-12-30 22:08:05 +00001714}
1715
Christian Heimes9cd17752007-11-18 19:35:23 +00001716PyAPI_FUNC(PyObject *)
1717PyImport_GetImporter(PyObject *path) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001718 PyObject *importer=NULL, *path_importer_cache=NULL, *path_hooks=NULL;
Christian Heimes9cd17752007-11-18 19:35:23 +00001719
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001720 if ((path_importer_cache = PySys_GetObject("path_importer_cache"))) {
1721 if ((path_hooks = PySys_GetObject("path_hooks"))) {
1722 importer = get_path_importer(path_importer_cache,
1723 path_hooks, path);
1724 }
1725 }
1726 Py_XINCREF(importer); /* get_path_importer returns a borrowed reference */
1727 return importer;
Christian Heimes9cd17752007-11-18 19:35:23 +00001728}
1729
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001730/* Search the path (default sys.path) for a module. Return the
1731 corresponding filedescr struct, and (via return arguments) the
1732 pathname and an open file. Return NULL if the module is not found. */
1733
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001734#ifdef MS_COREDLL
Victor Stinner4d6c1c42011-03-08 23:49:04 +01001735extern FILE *_PyWin_FindRegisteredModule(PyObject *, struct filedescr **,
1736 PyObject **p_path);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00001737#endif
1738
Victor Stinner547a2a62011-03-20 03:07:28 +01001739/* Forward */
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001740static int case_ok(PyObject *, Py_ssize_t, PyObject *);
Victor Stinner547a2a62011-03-20 03:07:28 +01001741static int find_init_module(PyObject *);
Just van Rossum52e14d62002-12-30 22:08:05 +00001742static struct filedescr importhookdescr = {"", "", IMP_HOOK};
Guido van Rossum197346f1997-10-31 18:38:52 +00001743
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001744/* Get the path of a module: get its importer and call importer.find_module()
1745 hook, or check if the module if a package (if path/__init__.py exists).
1746
1747 -1: error: a Python error occurred
1748 0: ignore: an error occurred because of invalid data, but the error is not
1749 important enough to be reported.
1750 1: get path: module not found, but *buf contains its path
1751 2: found: *p_fd is the file descriptor (IMP_HOOK or PKG_DIRECTORY)
1752 and *buf is the path */
1753
1754static int
Victor Stinnerad3c03b2011-03-14 09:21:33 -04001755find_module_path(PyObject *fullname, PyObject *name, PyObject *path,
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001756 PyObject *path_hooks, PyObject *path_importer_cache,
Victor Stinner2fd76e42011-03-14 15:19:39 -04001757 PyObject **p_path, PyObject **p_loader, struct filedescr **p_fd)
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001758{
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001759 PyObject *path_unicode, *filename = NULL;
1760 Py_ssize_t len, pos;
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001761 struct stat statbuf;
1762 static struct filedescr fd_package = {"", "", PKG_DIRECTORY};
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001763 int result, addsep;
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001764
1765 if (PyUnicode_Check(path)) {
Victor Stinner2fd76e42011-03-14 15:19:39 -04001766 Py_INCREF(path);
1767 path_unicode = path;
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001768 }
1769 else if (PyBytes_Check(path)) {
Victor Stinner2fd76e42011-03-14 15:19:39 -04001770 path_unicode = PyUnicode_DecodeFSDefaultAndSize(
1771 PyBytes_AS_STRING(path), PyBytes_GET_SIZE(path));
1772 if (path_unicode == NULL)
1773 return -1;
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001774 }
1775 else
1776 return 0;
1777
Victor Stinner46084ba2011-10-06 02:39:42 +02001778 if (PyUnicode_READY(path_unicode))
1779 return -1;
1780
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001781 len = PyUnicode_GET_LENGTH(path_unicode);
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001782 if (PyUnicode_FindChar(path_unicode, 0, 0, len, 1) != -1) {
1783 result = 0;
1784 goto out; /* path contains '\0' */
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001785 }
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001786
1787 /* sys.path_hooks import hook */
1788 if (p_loader != NULL) {
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02001789 _Py_IDENTIFIER(find_module);
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001790 PyObject *importer;
1791
1792 importer = get_path_importer(path_importer_cache,
1793 path_hooks, path);
1794 if (importer == NULL) {
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001795 result = -1;
1796 goto out;
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001797 }
1798 /* Note: importer is a borrowed reference */
1799 if (importer != Py_None) {
1800 PyObject *loader;
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02001801 loader = _PyObject_CallMethodId(importer,
1802 &PyId_find_module, "O", fullname);
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001803 if (loader == NULL) {
1804 result = -1; /* error */
1805 goto out;
1806 }
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001807 if (loader != Py_None) {
1808 /* a loader was found */
1809 *p_loader = loader;
1810 *p_fd = &importhookdescr;
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001811 result = 2;
1812 goto out;
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001813 }
1814 Py_DECREF(loader);
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001815 result = 0;
1816 goto out;
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001817 }
1818 }
1819 /* no hook was found, use builtin import */
1820
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001821 addsep = 0;
1822 if (len > 0 && PyUnicode_READ_CHAR(path_unicode, len-1) != SEP
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001823#ifdef ALTSEP
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001824 && PyUnicode_READ_CHAR(path_unicode, len-1) != ALTSEP
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001825#endif
1826 )
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001827 addsep = 1;
1828 filename = PyUnicode_New(len + PyUnicode_GET_LENGTH(name) + addsep,
1829 Py_MAX(PyUnicode_MAX_CHAR_VALUE(path_unicode),
1830 PyUnicode_MAX_CHAR_VALUE(name)));
1831 if (filename == NULL) {
1832 result = -1;
1833 goto out;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001834 }
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001835 PyUnicode_CopyCharacters(filename, 0, path_unicode, 0, len);
1836 pos = len;
1837 if (addsep)
Victor Stinner1f795172011-11-17 00:45:54 +01001838 PyUnicode_WRITE(PyUnicode_KIND(filename),
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001839 PyUnicode_DATA(filename),
1840 pos++, SEP);
Victor Stinner1f795172011-11-17 00:45:54 +01001841 PyUnicode_CopyCharacters(filename, pos, name, 0,
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001842 PyUnicode_GET_LENGTH(name));
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001843
1844 /* Check for package import (buf holds a directory name,
1845 and there's an __init__ module in that directory */
1846#ifdef HAVE_STAT
Victor Stinner2fd76e42011-03-14 15:19:39 -04001847 if (_Py_stat(filename, &statbuf) == 0 && /* it exists */
Victor Stinnerd0296212011-03-14 14:04:10 -04001848 S_ISDIR(statbuf.st_mode)) /* it's a directory */
1849 {
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001850 int match;
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001851
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001852 match = case_ok(filename, 0, name);
1853 if (match < 0) {
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001854 result = -1;
1855 goto out;
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001856 }
1857 if (match) { /* case matches */
1858 if (find_init_module(filename)) { /* and has __init__.py */
Victor Stinner2fd76e42011-03-14 15:19:39 -04001859 *p_path = filename;
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001860 filename = NULL;
Victor Stinnerd0296212011-03-14 14:04:10 -04001861 *p_fd = &fd_package;
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001862 result = 2;
1863 goto out;
Victor Stinnerd0296212011-03-14 14:04:10 -04001864 }
1865 else {
1866 int err;
Victor Stinnerd0296212011-03-14 14:04:10 -04001867 err = PyErr_WarnFormat(PyExc_ImportWarning, 1,
Victor Stinner547a2a62011-03-20 03:07:28 +01001868 "Not importing directory %R: missing __init__.py",
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001869 filename);
Victor Stinner547a2a62011-03-20 03:07:28 +01001870 if (err) {
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001871 result = -1;
1872 goto out;
Victor Stinner547a2a62011-03-20 03:07:28 +01001873 }
Victor Stinnerd0296212011-03-14 14:04:10 -04001874 }
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001875 }
1876 }
1877#endif
Victor Stinner2fd76e42011-03-14 15:19:39 -04001878 *p_path = filename;
Martin v. Löwis9af29d32011-10-23 18:45:16 +02001879 filename = NULL;
1880 result = 1;
1881 out:
1882 Py_DECREF(path_unicode);
1883 Py_XDECREF(filename);
1884 return result;
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001885}
1886
1887/* Find a module in search_path_list. For each path, try
Victor Stinnerad3c03b2011-03-14 09:21:33 -04001888 find_module_path() or try each _PyImport_Filetab suffix.
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001889
1890 If the module is found, return a file descriptor, write the path in
1891 *p_filename, write the pointer to the file object into *p_fp, and (if
1892 p_loader is not NULL) the loader into *p_loader.
1893
1894 Otherwise, raise an exception and return NULL. */
1895
Victor Stinner37580282011-03-20 01:34:43 +01001896static struct filedescr*
Victor Stinnerad3c03b2011-03-14 09:21:33 -04001897find_module_path_list(PyObject *fullname, PyObject *name,
Victor Stinner37580282011-03-20 01:34:43 +01001898 PyObject *search_path_list, PyObject *path_hooks,
1899 PyObject *path_importer_cache,
Victor Stinner2fd76e42011-03-14 15:19:39 -04001900 PyObject **p_path, FILE **p_fp, PyObject **p_loader)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001901{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001902 Py_ssize_t i, npath;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001903 struct filedescr *fdp = NULL;
1904 char *filemode;
1905 FILE *fp = NULL;
Victor Stinner2fd76e42011-03-14 15:19:39 -04001906 PyObject *prefix, *filename;
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001907 int match;
Victor Stinner53dc7352011-03-20 01:50:21 +01001908
Victor Stinner37580282011-03-20 01:34:43 +01001909 npath = PyList_Size(search_path_list);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001910 for (i = 0; i < npath; i++) {
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001911 PyObject *path;
1912 int ok;
1913
1914 path = PyList_GetItem(search_path_list, i);
1915 if (path == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001916 return NULL;
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001917
Victor Stinner2fd76e42011-03-14 15:19:39 -04001918 prefix = NULL;
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001919 ok = find_module_path(fullname, name, path,
1920 path_hooks, path_importer_cache,
Victor Stinner2fd76e42011-03-14 15:19:39 -04001921 &prefix, p_loader, &fdp);
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001922 if (ok < 0)
1923 return NULL;
1924 if (ok == 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001925 continue;
Victor Stinner2fd76e42011-03-14 15:19:39 -04001926 if (ok == 2) {
1927 *p_path = prefix;
Victor Stinnerd68c2cf2011-03-12 16:02:28 -05001928 return fdp;
Victor Stinner2fd76e42011-03-14 15:19:39 -04001929 }
Amaury Forgeot d'Arcf1ca0b12008-06-11 17:40:47 +00001930
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001931 for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) {
Victor Stinnera1fe1f82011-09-23 18:59:08 +02001932 struct stat statbuf;
1933
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001934 filemode = fdp->mode;
1935 if (filemode[0] == 'U')
1936 filemode = "r" PY_STDIOTEXTMODE;
Victor Stinnerd0296212011-03-14 14:04:10 -04001937
Victor Stinner2fd76e42011-03-14 15:19:39 -04001938 filename = PyUnicode_FromFormat("%U%s", prefix, fdp->suffix);
1939 if (filename == NULL) {
1940 Py_DECREF(prefix);
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001941 return NULL;
Victor Stinner2fd76e42011-03-14 15:19:39 -04001942 }
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001943
1944 if (Py_VerboseFlag > 1)
1945 PySys_FormatStderr("# trying %R\n", filename);
1946
Charles-François Natali7c0b0cc2011-12-07 19:16:01 +01001947 if (_Py_stat(filename, &statbuf) != 0 || S_ISDIR(statbuf.st_mode))
Victor Stinnera1fe1f82011-09-23 18:59:08 +02001948 {
1949 Py_DECREF(filename);
1950 continue;
1951 }
1952
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001953 fp = _Py_fopen(filename, filemode);
1954 if (fp == NULL) {
1955 Py_DECREF(filename);
Victor Stinner925ef392011-06-20 15:01:10 +02001956 if (PyErr_Occurred()) {
1957 Py_DECREF(prefix);
1958 return NULL;
1959 }
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001960 continue;
1961 }
1962 match = case_ok(filename, -(Py_ssize_t)strlen(fdp->suffix), name);
1963 if (match < 0) {
Victor Stinner2fd76e42011-03-14 15:19:39 -04001964 Py_DECREF(prefix);
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001965 Py_DECREF(filename);
1966 return NULL;
1967 }
1968 if (match) {
Victor Stinner2fd76e42011-03-14 15:19:39 -04001969 Py_DECREF(prefix);
1970 *p_path = filename;
Victor Stinnerd0296212011-03-14 14:04:10 -04001971 *p_fp = fp;
1972 return fdp;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001973 }
Victor Stinnerc9a271c2011-03-14 14:34:13 -04001974 Py_DECREF(filename);
Victor Stinnerd0296212011-03-14 14:04:10 -04001975
1976 fclose(fp);
1977 fp = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001978 }
Victor Stinner2fd76e42011-03-14 15:19:39 -04001979 Py_DECREF(prefix);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001980 }
Victor Stinnerd0296212011-03-14 14:04:10 -04001981 PyErr_Format(PyExc_ImportError,
Victor Stinner98dbba52011-03-14 15:15:47 -04001982 "No module named %R", name);
Victor Stinnerd0296212011-03-14 14:04:10 -04001983 return NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00001984}
1985
Victor Stinner37580282011-03-20 01:34:43 +01001986/* Find a module:
1987
1988 - try find_module() of each sys.meta_path hook
1989 - try find_frozen()
1990 - try is_builtin()
1991 - try _PyWin_FindRegisteredModule() (Windows only)
1992 - otherwise, call find_module_path_list() with search_path_list (if not
1993 NULL) or sys.path
1994
Victor Stinner2fd76e42011-03-14 15:19:39 -04001995 fullname can be NULL, but only if p_loader is NULL.
1996
Victor Stinner37580282011-03-20 01:34:43 +01001997 Return:
1998
1999 - &fd_builtin (C_BUILTIN) if it is a builtin
2000 - &fd_frozen (PY_FROZEN) if it is frozen
Victor Stinner2fd76e42011-03-14 15:19:39 -04002001 - &fd_package (PKG_DIRECTORY) and write the filename into *p_path
Victor Stinner37580282011-03-20 01:34:43 +01002002 if it is a package
2003 - &importhookdescr (IMP_HOOK) and write the loader into *p_loader if a
2004 importer loader was found
2005 - a file descriptor (PY_SOURCE, PY_COMPILED, C_EXTENSION, PY_RESOURCE or
2006 PY_CODERESOURCE: see _PyImport_Filetab), write the filename into
Victor Stinner2fd76e42011-03-14 15:19:39 -04002007 *p_path and the pointer to the open file into *p_fp
Victor Stinner37580282011-03-20 01:34:43 +01002008 - NULL on error
2009
Victor Stinner2fd76e42011-03-14 15:19:39 -04002010 By default, *p_path, *p_fp and *p_loader (if set) are set to NULL.
2011 Eg. *p_path is set to NULL for a builtin package.
2012*/
Victor Stinner37580282011-03-20 01:34:43 +01002013
2014static struct filedescr *
Victor Stinnerad3c03b2011-03-14 09:21:33 -04002015find_module(PyObject *fullname, PyObject *name, PyObject *search_path_list,
Victor Stinner2fd76e42011-03-14 15:19:39 -04002016 PyObject **p_path, FILE **p_fp, PyObject **p_loader)
Victor Stinner37580282011-03-20 01:34:43 +01002017{
2018 Py_ssize_t i, npath;
2019 static struct filedescr fd_frozen = {"", "", PY_FROZEN};
2020 static struct filedescr fd_builtin = {"", "", C_BUILTIN};
2021 PyObject *path_hooks, *path_importer_cache;
Victor Stinner37580282011-03-20 01:34:43 +01002022
Victor Stinner2fd76e42011-03-14 15:19:39 -04002023 *p_path = NULL;
Victor Stinner37580282011-03-20 01:34:43 +01002024 *p_fp = NULL;
2025 if (p_loader != NULL)
2026 *p_loader = NULL;
2027
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002028 if (PyUnicode_GET_LENGTH(name) > MAXPATHLEN) {
2029 PyErr_SetString(PyExc_OverflowError,
2030 "module name is too long");
2031 return NULL;
2032 }
2033
Victor Stinner37580282011-03-20 01:34:43 +01002034 /* sys.meta_path import hook */
2035 if (p_loader != NULL) {
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02002036 _Py_IDENTIFIER(find_module);
Victor Stinner37580282011-03-20 01:34:43 +01002037 PyObject *meta_path;
2038
2039 meta_path = PySys_GetObject("meta_path");
2040 if (meta_path == NULL || !PyList_Check(meta_path)) {
Victor Stinner16191322011-09-15 19:28:05 +02002041 PyErr_SetString(PyExc_RuntimeError,
Victor Stinner37580282011-03-20 01:34:43 +01002042 "sys.meta_path must be a list of "
2043 "import hooks");
2044 return NULL;
2045 }
2046 Py_INCREF(meta_path); /* zap guard */
2047 npath = PyList_Size(meta_path);
2048 for (i = 0; i < npath; i++) {
2049 PyObject *loader;
2050 PyObject *hook = PyList_GetItem(meta_path, i);
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02002051 loader = _PyObject_CallMethodId(hook, &PyId_find_module,
Victor Stinnerad3c03b2011-03-14 09:21:33 -04002052 "OO", fullname,
Victor Stinner37580282011-03-20 01:34:43 +01002053 search_path_list != NULL ?
2054 search_path_list : Py_None);
2055 if (loader == NULL) {
2056 Py_DECREF(meta_path);
2057 return NULL; /* true error */
2058 }
2059 if (loader != Py_None) {
2060 /* a loader was found */
2061 *p_loader = loader;
2062 Py_DECREF(meta_path);
2063 return &importhookdescr;
2064 }
2065 Py_DECREF(loader);
2066 }
2067 Py_DECREF(meta_path);
2068 }
2069
Victor Stinnerdf75a022011-03-14 13:40:04 -04002070 if (find_frozen(fullname) != NULL)
Victor Stinnerad3c03b2011-03-14 09:21:33 -04002071 return &fd_frozen;
Victor Stinner37580282011-03-20 01:34:43 +01002072
2073 if (search_path_list == NULL) {
2074#ifdef MS_COREDLL
2075 FILE *fp;
2076 struct filedescr *fdp;
Victor Stinner37580282011-03-20 01:34:43 +01002077#endif
Victor Stinnerdf75a022011-03-14 13:40:04 -04002078 if (is_builtin(name))
Victor Stinner37580282011-03-20 01:34:43 +01002079 return &fd_builtin;
Victor Stinner37580282011-03-20 01:34:43 +01002080#ifdef MS_COREDLL
Victor Stinner2fd76e42011-03-14 15:19:39 -04002081 fp = _PyWin_FindRegisteredModule(name, &fdp, p_path);
Victor Stinner37580282011-03-20 01:34:43 +01002082 if (fp != NULL) {
Victor Stinner37580282011-03-20 01:34:43 +01002083 *p_fp = fp;
2084 return fdp;
2085 }
2086 else if (PyErr_Occurred())
2087 return NULL;
2088#endif
Victor Stinner37580282011-03-20 01:34:43 +01002089 search_path_list = PySys_GetObject("path");
2090 }
2091
2092 if (search_path_list == NULL || !PyList_Check(search_path_list)) {
Victor Stinner16191322011-09-15 19:28:05 +02002093 PyErr_SetString(PyExc_RuntimeError,
Victor Stinner37580282011-03-20 01:34:43 +01002094 "sys.path must be a list of directory names");
2095 return NULL;
2096 }
2097
2098 path_hooks = PySys_GetObject("path_hooks");
2099 if (path_hooks == NULL || !PyList_Check(path_hooks)) {
Victor Stinner16191322011-09-15 19:28:05 +02002100 PyErr_SetString(PyExc_RuntimeError,
Victor Stinner37580282011-03-20 01:34:43 +01002101 "sys.path_hooks must be a list of "
2102 "import hooks");
2103 return NULL;
2104 }
2105 path_importer_cache = PySys_GetObject("path_importer_cache");
2106 if (path_importer_cache == NULL ||
2107 !PyDict_Check(path_importer_cache)) {
Victor Stinner16191322011-09-15 19:28:05 +02002108 PyErr_SetString(PyExc_RuntimeError,
Victor Stinner37580282011-03-20 01:34:43 +01002109 "sys.path_importer_cache must be a dict");
2110 return NULL;
2111 }
2112
2113 return find_module_path_list(fullname, name,
2114 search_path_list, path_hooks,
2115 path_importer_cache,
Victor Stinner2fd76e42011-03-14 15:19:39 -04002116 p_path, p_fp, p_loader);
Victor Stinner37580282011-03-20 01:34:43 +01002117}
2118
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002119/* case_bytes(char* buf, Py_ssize_t len, Py_ssize_t namelen, char* name)
Tim Petersd1e87a82001-03-01 18:12:00 +00002120 * The arguments here are tricky, best shown by example:
2121 * /a/b/c/d/e/f/g/h/i/j/k/some_long_module_name.py\0
2122 * ^ ^ ^ ^
2123 * |--------------------- buf ---------------------|
2124 * |------------------- len ------------------|
2125 * |------ name -------|
2126 * |----- namelen -----|
2127 * buf is the full path, but len only counts up to (& exclusive of) the
2128 * extension. name is the module name, also exclusive of extension.
2129 *
2130 * We've already done a successful stat() or fopen() on buf, so know that
2131 * there's some match, possibly case-insensitive.
2132 *
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002133 * case_bytes() is to return 1 if there's a case-sensitive match for
2134 * name, else 0. case_bytes() is also to return 1 if envar PYTHONCASEOK
Tim Peters50d8d372001-02-28 05:34:27 +00002135 * exists.
Tim Petersd1e87a82001-03-01 18:12:00 +00002136 *
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002137 * case_bytes() is used to implement case-sensitive import semantics even
Tim Peters50d8d372001-02-28 05:34:27 +00002138 * on platforms with case-insensitive filesystems. It's trivial to implement
2139 * for case-sensitive filesystems. It's pretty much a cross-platform
2140 * nightmare for systems with case-insensitive filesystems.
2141 */
Guido van Rossum0980bd91998-02-13 17:18:36 +00002142
Tim Peters50d8d372001-02-28 05:34:27 +00002143/* First we may need a pile of platform-specific header files; the sequence
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002144 * of #if's here should match the sequence in the body of case_bytes().
Tim Peters50d8d372001-02-28 05:34:27 +00002145 */
Jason Tishler7961aa62005-05-20 00:56:54 +00002146#if defined(MS_WINDOWS)
Guido van Rossum0980bd91998-02-13 17:18:36 +00002147#include <windows.h>
Guido van Rossum4c3f57c2001-01-10 20:40:46 +00002148
Tim Peters50d8d372001-02-28 05:34:27 +00002149#elif defined(DJGPP)
2150#include <dir.h>
2151
Jason Tishler7961aa62005-05-20 00:56:54 +00002152#elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H)
Tim Peters430f5d42001-03-01 01:30:56 +00002153#include <sys/types.h>
2154#include <dirent.h>
2155
Andrew MacIntyred9400542002-02-26 11:41:34 +00002156#elif defined(PYOS_OS2)
2157#define INCL_DOS
2158#define INCL_DOSERRORS
2159#define INCL_NOPMAPI
2160#include <os2.h>
Tim Peters50d8d372001-02-28 05:34:27 +00002161#endif
2162
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002163#if defined(DJGPP) \
2164 || ((defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) \
2165 && defined(HAVE_DIRENT_H)) \
2166 || defined(PYOS_OS2)
2167# define USE_CASE_OK_BYTES
2168#endif
2169
2170
2171#ifdef USE_CASE_OK_BYTES
Guido van Rossum0980bd91998-02-13 17:18:36 +00002172static int
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002173case_bytes(char *buf, Py_ssize_t len, Py_ssize_t namelen, const char *name)
Guido van Rossum0980bd91998-02-13 17:18:36 +00002174{
Tim Peters50d8d372001-02-28 05:34:27 +00002175/* Pick a platform-specific implementation; the sequence of #if's here should
2176 * match the sequence just above.
2177 */
2178
Tim Peters50d8d372001-02-28 05:34:27 +00002179/* DJGPP */
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002180#if defined(DJGPP)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002181 struct ffblk ffblk;
2182 int done;
Tim Peters50d8d372001-02-28 05:34:27 +00002183
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002184 if (Py_GETENV("PYTHONCASEOK") != NULL)
2185 return 1;
Tim Peters50d8d372001-02-28 05:34:27 +00002186
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002187 done = findfirst(buf, &ffblk, FA_ARCH|FA_RDONLY|FA_HIDDEN|FA_DIREC);
2188 if (done) {
2189 PyErr_Format(PyExc_NameError,
2190 "Can't find file for module %.100s\n(filename %.300s)",
2191 name, buf);
Victor Stinner9c61e242011-03-22 01:22:27 +01002192 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002193 }
2194 return strncmp(ffblk.ff_name, name, namelen) == 0;
Guido van Rossum0980bd91998-02-13 17:18:36 +00002195
Jason Tishler7961aa62005-05-20 00:56:54 +00002196/* new-fangled macintosh (macosx) or Cygwin */
2197#elif (defined(__MACH__) && defined(__APPLE__) || defined(__CYGWIN__)) && defined(HAVE_DIRENT_H)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002198 DIR *dirp;
2199 struct dirent *dp;
2200 char dirname[MAXPATHLEN + 1];
2201 const int dirlen = len - namelen - 1; /* don't want trailing SEP */
Tim Peters430f5d42001-03-01 01:30:56 +00002202
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002203 if (Py_GETENV("PYTHONCASEOK") != NULL)
2204 return 1;
Tim Petersdbe6ebb2001-03-01 08:47:29 +00002205
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002206 /* Copy the dir component into dirname; substitute "." if empty */
2207 if (dirlen <= 0) {
2208 dirname[0] = '.';
2209 dirname[1] = '\0';
2210 }
2211 else {
2212 assert(dirlen <= MAXPATHLEN);
2213 memcpy(dirname, buf, dirlen);
2214 dirname[dirlen] = '\0';
2215 }
2216 /* Open the directory and search the entries for an exact match. */
2217 dirp = opendir(dirname);
2218 if (dirp) {
2219 char *nameWithExt = buf + len - namelen;
2220 while ((dp = readdir(dirp)) != NULL) {
2221 const int thislen =
Tim Peters430f5d42001-03-01 01:30:56 +00002222#ifdef _DIRENT_HAVE_D_NAMELEN
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002223 dp->d_namlen;
Tim Peters430f5d42001-03-01 01:30:56 +00002224#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002225 strlen(dp->d_name);
Tim Peters430f5d42001-03-01 01:30:56 +00002226#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002227 if (thislen >= namelen &&
2228 strcmp(dp->d_name, nameWithExt) == 0) {
2229 (void)closedir(dirp);
2230 return 1; /* Found */
2231 }
2232 }
2233 (void)closedir(dirp);
2234 }
2235 return 0 ; /* Not found */
Tim Peters430f5d42001-03-01 01:30:56 +00002236
Andrew MacIntyred9400542002-02-26 11:41:34 +00002237/* OS/2 */
2238#elif defined(PYOS_OS2)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002239 HDIR hdir = 1;
2240 ULONG srchcnt = 1;
2241 FILEFINDBUF3 ffbuf;
2242 APIRET rc;
Andrew MacIntyred9400542002-02-26 11:41:34 +00002243
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002244 if (Py_GETENV("PYTHONCASEOK") != NULL)
2245 return 1;
Andrew MacIntyred9400542002-02-26 11:41:34 +00002246
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002247 rc = DosFindFirst(buf,
2248 &hdir,
2249 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
2250 &ffbuf, sizeof(ffbuf),
2251 &srchcnt,
2252 FIL_STANDARD);
2253 if (rc != NO_ERROR)
2254 return 0;
2255 return strncmp(ffbuf.achName, name, namelen) == 0;
Andrew MacIntyred9400542002-02-26 11:41:34 +00002256
Tim Peters50d8d372001-02-28 05:34:27 +00002257/* assuming it's a case-sensitive filesystem, so there's nothing to do! */
2258#else
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002259# error "USE_CASE_OK_BYTES is not correctly defined"
2260#endif
2261}
2262#endif
2263
2264/*
2265 * Check if a filename case matchs the name case. We've already done a
2266 * successful stat() or fopen() on buf, so know that there's some match,
2267 * possibly case-insensitive.
2268 *
2269 * case_ok() is to return 1 if there's a case-sensitive match for name, 0 if it
2270 * the filename doesn't match, or -1 on error. case_ok() is also to return 1
2271 * if envar PYTHONCASEOK exists.
2272 *
2273 * case_ok() is used to implement case-sensitive import semantics even
2274 * on platforms with case-insensitive filesystems. It's trivial to implement
2275 * for case-sensitive filesystems. It's pretty much a cross-platform
2276 * nightmare for systems with case-insensitive filesystems.
2277 */
2278
2279static int
2280case_ok(PyObject *filename, Py_ssize_t prefix_delta, PyObject *name)
2281{
2282#ifdef MS_WINDOWS
2283 WIN32_FIND_DATAW data;
2284 HANDLE h;
2285 int cmp;
Victor Stinner1f795172011-11-17 00:45:54 +01002286 wchar_t *wfilename, *wname;
Victor Stinner8c981892011-10-11 22:27:13 +02002287 Py_ssize_t wname_len;
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002288
2289 if (Py_GETENV("PYTHONCASEOK") != NULL)
2290 return 1;
2291
Victor Stinner1f795172011-11-17 00:45:54 +01002292 wfilename = PyUnicode_AsUnicode(filename);
2293 if (wfilename == NULL)
2294 return -1;
2295
2296 h = FindFirstFileW(wfilename, &data);
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002297 if (h == INVALID_HANDLE_VALUE) {
2298 PyErr_Format(PyExc_NameError,
2299 "Can't find file for module %R\n(filename %R)",
2300 name, filename);
Victor Stinner1f795172011-11-17 00:45:54 +01002301 return -1;
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002302 }
2303 FindClose(h);
Victor Stinnerbeac78b2011-10-11 21:55:01 +02002304
2305 wname = PyUnicode_AsUnicodeAndSize(name, &wname_len);
2306 if (wname == NULL)
2307 return -1;
2308
2309 cmp = wcsncmp(data.cFileName, wname, wname_len);
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002310 return cmp == 0;
2311#elif defined(USE_CASE_OK_BYTES)
2312 int match;
2313 PyObject *filebytes, *namebytes;
2314 filebytes = PyUnicode_EncodeFSDefault(filename);
2315 if (filebytes == NULL)
2316 return -1;
2317 namebytes = PyUnicode_EncodeFSDefault(name);
2318 if (namebytes == NULL) {
2319 Py_DECREF(filebytes);
2320 return -1;
2321 }
2322 match = case_bytes(
2323 PyBytes_AS_STRING(filebytes),
2324 PyBytes_GET_SIZE(filebytes) + prefix_delta,
Victor Stinner1304f2d2011-03-20 04:28:55 +01002325 PyBytes_GET_SIZE(namebytes),
2326 PyBytes_AS_STRING(namebytes));
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002327 Py_DECREF(filebytes);
2328 Py_DECREF(namebytes);
2329 return match;
2330#else
2331 /* assuming it's a case-sensitive filesystem, so there's nothing to do! */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002332 return 1;
Guido van Rossum0980bd91998-02-13 17:18:36 +00002333
Guido van Rossum4d1b3b91998-02-13 23:27:59 +00002334#endif
Tim Peters50d8d372001-02-28 05:34:27 +00002335}
Guido van Rossum4d1b3b91998-02-13 23:27:59 +00002336
Guido van Rossum197346f1997-10-31 18:38:52 +00002337#ifdef HAVE_STAT
Victor Stinner4f4402c2010-08-14 14:50:26 +00002338
Victor Stinner547a2a62011-03-20 03:07:28 +01002339/* Helper to look for __init__.py or __init__.py[co] in potential package.
2340 Return 1 if __init__ was found, 0 if not, or -1 on error. */
Guido van Rossum197346f1997-10-31 18:38:52 +00002341static int
Victor Stinner547a2a62011-03-20 03:07:28 +01002342find_init_module(PyObject *directory)
Guido van Rossum197346f1997-10-31 18:38:52 +00002343{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002344 struct stat statbuf;
Victor Stinner547a2a62011-03-20 03:07:28 +01002345 PyObject *filename;
2346 int match;
Guido van Rossum197346f1997-10-31 18:38:52 +00002347
Victor Stinner547a2a62011-03-20 03:07:28 +01002348 filename = PyUnicode_FromFormat("%U%c__init__.py", directory, SEP);
2349 if (filename == NULL)
2350 return -1;
2351 if (_Py_stat(filename, &statbuf) == 0) {
Victor Stinnercc9564e2011-03-20 04:58:29 +01002352 /* 3=len(".py") */
2353 match = case_ok(filename, -3, initstr);
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002354 if (match < 0) {
2355 Py_DECREF(filename);
2356 return -1;
2357 }
2358 if (match) {
Victor Stinner547a2a62011-03-20 03:07:28 +01002359 Py_DECREF(filename);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002360 return 1;
2361 }
2362 }
Victor Stinner547a2a62011-03-20 03:07:28 +01002363 Py_DECREF(filename);
2364
2365 filename = PyUnicode_FromFormat("%U%c__init__.py%c",
2366 directory, SEP, Py_OptimizeFlag ? 'o' : 'c');
2367 if (filename == NULL)
2368 return -1;
2369 if (_Py_stat(filename, &statbuf) == 0) {
Victor Stinnercc9564e2011-03-20 04:58:29 +01002370 /* 4=len(".pyc") */
2371 match = case_ok(filename, -4, initstr);
Victor Stinnerc9a271c2011-03-14 14:34:13 -04002372 if (match < 0) {
2373 Py_DECREF(filename);
2374 return -1;
2375 }
2376 if (match) {
Victor Stinner547a2a62011-03-20 03:07:28 +01002377 Py_DECREF(filename);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002378 return 1;
2379 }
2380 }
Victor Stinner547a2a62011-03-20 03:07:28 +01002381 Py_DECREF(filename);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002382 return 0;
Guido van Rossum197346f1997-10-31 18:38:52 +00002383}
Guido van Rossum48a680c2001-03-02 06:34:14 +00002384
Guido van Rossum197346f1997-10-31 18:38:52 +00002385#endif /* HAVE_STAT */
2386
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002387
Victor Stinner95872862011-03-07 18:20:56 +01002388static int init_builtin(PyObject *); /* Forward */
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002389
Victor Stinner44c6c152010-08-09 00:59:10 +00002390static PyObject*
Victor Stinner95872862011-03-07 18:20:56 +01002391load_builtin(PyObject *name, int type)
Victor Stinner44c6c152010-08-09 00:59:10 +00002392{
2393 PyObject *m, *modules;
2394 int err;
2395
Victor Stinner44c6c152010-08-09 00:59:10 +00002396 if (type == C_BUILTIN)
2397 err = init_builtin(name);
2398 else
Victor Stinner95872862011-03-07 18:20:56 +01002399 err = PyImport_ImportFrozenModuleObject(name);
Victor Stinner44c6c152010-08-09 00:59:10 +00002400 if (err < 0)
2401 return NULL;
2402 if (err == 0) {
2403 PyErr_Format(PyExc_ImportError,
Victor Stinner95872862011-03-07 18:20:56 +01002404 "Purported %s module %R not found",
2405 type == C_BUILTIN ? "builtin" : "frozen",
Victor Stinner44c6c152010-08-09 00:59:10 +00002406 name);
2407 return NULL;
2408 }
2409
2410 modules = PyImport_GetModuleDict();
Victor Stinner95872862011-03-07 18:20:56 +01002411 m = PyDict_GetItem(modules, name);
Victor Stinner44c6c152010-08-09 00:59:10 +00002412 if (m == NULL) {
2413 PyErr_Format(
2414 PyExc_ImportError,
Victor Stinner95872862011-03-07 18:20:56 +01002415 "%s module %R not properly initialized",
2416 type == C_BUILTIN ? "builtin" : "frozen",
Victor Stinner44c6c152010-08-09 00:59:10 +00002417 name);
2418 return NULL;
2419 }
2420 Py_INCREF(m);
2421 return m;
2422}
2423
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002424/* Load an external module using the default search path and return
Guido van Rossum7f9fa971995-01-20 16:53:12 +00002425 its module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002426
Guido van Rossum79f25d91997-04-29 20:08:16 +00002427static PyObject *
Victor Stinner41c5fec2011-03-13 21:46:30 -04002428load_module(PyObject *name, FILE *fp, PyObject *pathname, int type, PyObject *loader)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002429{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002430 PyObject *m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002431
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002432 /* First check that there's an open file (if we need one) */
2433 switch (type) {
2434 case PY_SOURCE:
2435 case PY_COMPILED:
2436 if (fp == NULL) {
2437 PyErr_Format(PyExc_ValueError,
Victor Stinner41c5fec2011-03-13 21:46:30 -04002438 "file object required for import (type code %d)",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002439 type);
2440 return NULL;
2441 }
2442 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002443
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002444 switch (type) {
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002445
Victor Stinner41c5fec2011-03-13 21:46:30 -04002446 case PY_SOURCE:
2447 m = load_source_module(name, pathname, fp);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002448 break;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002449
Victor Stinner41c5fec2011-03-13 21:46:30 -04002450 case PY_COMPILED:
2451 m = load_compiled_module(name, pathname, fp);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002452 break;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002453
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002454#ifdef HAVE_DYNAMIC_LOADING
Victor Stinner41c5fec2011-03-13 21:46:30 -04002455 case C_EXTENSION:
2456 m = _PyImport_LoadDynamicModule(name, pathname, fp);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002457 break;
Guido van Rossum96a8fb71999-12-22 14:09:35 +00002458#endif
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002459
Victor Stinner41c5fec2011-03-13 21:46:30 -04002460 case PKG_DIRECTORY:
2461 m = load_package(name, pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002462 break;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002463
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002464 case C_BUILTIN:
Victor Stinner41c5fec2011-03-13 21:46:30 -04002465 case PY_FROZEN:
2466 m = load_builtin(name, type);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002467 break;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002468
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002469 case IMP_HOOK: {
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02002470 _Py_IDENTIFIER(load_module);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002471 if (loader == NULL) {
2472 PyErr_SetString(PyExc_ImportError,
2473 "import hook without loader");
2474 return NULL;
2475 }
Martin v. Löwisafe55bb2011-10-09 10:38:36 +02002476 m = _PyObject_CallMethodId(loader, &PyId_load_module, "O", name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002477 break;
2478 }
Just van Rossum52e14d62002-12-30 22:08:05 +00002479
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002480 default:
2481 PyErr_Format(PyExc_ImportError,
Victor Stinner98dbba52011-03-14 15:15:47 -04002482 "Don't know how to import %R (type code %d)",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002483 name, type);
2484 m = NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002485
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002486 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002487
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002488 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002489}
2490
2491
2492/* Initialize a built-in module.
Thomas Wouters89f507f2006-12-13 04:49:30 +00002493 Return 1 for success, 0 if the module is not found, and -1 with
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002494 an exception set if the initialization failed. */
Guido van Rossum7f133ed1991-02-19 12:23:57 +00002495
Guido van Rossum7f133ed1991-02-19 12:23:57 +00002496static int
Victor Stinner95872862011-03-07 18:20:56 +01002497init_builtin(PyObject *name)
Guido van Rossum7f133ed1991-02-19 12:23:57 +00002498{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002499 struct _inittab *p;
Guido van Rossum25ce5661997-08-02 03:10:38 +00002500
Victor Stinner95872862011-03-07 18:20:56 +01002501 if (_PyImport_FindExtensionObject(name, name) != NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002502 return 1;
Guido van Rossum25ce5661997-08-02 03:10:38 +00002503
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002504 for (p = PyImport_Inittab; p->name != NULL; p++) {
2505 PyObject *mod;
Victor Stinner95872862011-03-07 18:20:56 +01002506 if (PyUnicode_CompareWithASCIIString(name, p->name) == 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002507 if (p->initfunc == NULL) {
2508 PyErr_Format(PyExc_ImportError,
Victor Stinner95872862011-03-07 18:20:56 +01002509 "Cannot re-init internal module %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002510 name);
2511 return -1;
2512 }
2513 if (Py_VerboseFlag)
Victor Stinner95872862011-03-07 18:20:56 +01002514 PySys_FormatStderr("import %U # builtin\n", name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002515 mod = (*p->initfunc)();
2516 if (mod == 0)
2517 return -1;
Victor Stinner95872862011-03-07 18:20:56 +01002518 if (_PyImport_FixupExtensionObject(mod, name, name) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002519 return -1;
2520 /* FixupExtension has put the module into sys.modules,
2521 so we can release our own reference. */
2522 Py_DECREF(mod);
2523 return 1;
2524 }
2525 }
2526 return 0;
Guido van Rossum7f133ed1991-02-19 12:23:57 +00002527}
Guido van Rossumf56e3db1993-04-01 20:59:32 +00002528
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002529
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002530/* Frozen modules */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002531
Guido van Rossumcfd0a221996-06-17 17:06:34 +00002532static struct _frozen *
Victor Stinner53dc7352011-03-20 01:50:21 +01002533find_frozen(PyObject *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002534{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002535 struct _frozen *p;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002536
Victor Stinner53dc7352011-03-20 01:50:21 +01002537 if (name == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002538 return NULL;
Benjamin Petersond968e272008-11-05 22:48:33 +00002539
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002540 for (p = PyImport_FrozenModules; ; p++) {
2541 if (p->name == NULL)
2542 return NULL;
Victor Stinner53dc7352011-03-20 01:50:21 +01002543 if (PyUnicode_CompareWithASCIIString(name, p->name) == 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002544 break;
2545 }
2546 return p;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002547}
2548
Guido van Rossum79f25d91997-04-29 20:08:16 +00002549static PyObject *
Victor Stinner53dc7352011-03-20 01:50:21 +01002550get_frozen_object(PyObject *name)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002551{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002552 struct _frozen *p = find_frozen(name);
2553 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002554
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002555 if (p == NULL) {
2556 PyErr_Format(PyExc_ImportError,
Victor Stinner53dc7352011-03-20 01:50:21 +01002557 "No such frozen object named %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002558 name);
2559 return NULL;
2560 }
2561 if (p->code == NULL) {
2562 PyErr_Format(PyExc_ImportError,
Victor Stinner53dc7352011-03-20 01:50:21 +01002563 "Excluded frozen object named %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002564 name);
2565 return NULL;
2566 }
2567 size = p->size;
2568 if (size < 0)
2569 size = -size;
2570 return PyMarshal_ReadObjectFromString((char *)p->code, size);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002571}
2572
Brett Cannon8d110132009-03-15 02:20:16 +00002573static PyObject *
Victor Stinner53dc7352011-03-20 01:50:21 +01002574is_frozen_package(PyObject *name)
Brett Cannon8d110132009-03-15 02:20:16 +00002575{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002576 struct _frozen *p = find_frozen(name);
2577 int size;
Brett Cannon8d110132009-03-15 02:20:16 +00002578
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002579 if (p == NULL) {
2580 PyErr_Format(PyExc_ImportError,
Victor Stinner53dc7352011-03-20 01:50:21 +01002581 "No such frozen object named %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002582 name);
2583 return NULL;
2584 }
Brett Cannon8d110132009-03-15 02:20:16 +00002585
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002586 size = p->size;
Brett Cannon8d110132009-03-15 02:20:16 +00002587
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002588 if (size < 0)
2589 Py_RETURN_TRUE;
2590 else
2591 Py_RETURN_FALSE;
Brett Cannon8d110132009-03-15 02:20:16 +00002592}
2593
2594
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002595/* Initialize a frozen module.
Brett Cannon3c2ac442009-03-08 20:49:47 +00002596 Return 1 for success, 0 if the module is not found, and -1 with
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002597 an exception set if the initialization failed.
2598 This function is also used from frozenmain.c */
Guido van Rossum0b344901995-02-07 15:35:27 +00002599
2600int
Victor Stinner53dc7352011-03-20 01:50:21 +01002601PyImport_ImportFrozenModuleObject(PyObject *name)
Guido van Rossumf56e3db1993-04-01 20:59:32 +00002602{
Victor Stinner53dc7352011-03-20 01:50:21 +01002603 struct _frozen *p;
2604 PyObject *co, *m, *path;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002605 int ispackage;
2606 int size;
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00002607
Victor Stinner53dc7352011-03-20 01:50:21 +01002608 p = find_frozen(name);
2609
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002610 if (p == NULL)
2611 return 0;
2612 if (p->code == NULL) {
2613 PyErr_Format(PyExc_ImportError,
Victor Stinner53dc7352011-03-20 01:50:21 +01002614 "Excluded frozen object named %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002615 name);
2616 return -1;
2617 }
2618 size = p->size;
2619 ispackage = (size < 0);
2620 if (ispackage)
2621 size = -size;
2622 if (Py_VerboseFlag)
Victor Stinner53dc7352011-03-20 01:50:21 +01002623 PySys_FormatStderr("import %U # frozen%s\n",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002624 name, ispackage ? " package" : "");
2625 co = PyMarshal_ReadObjectFromString((char *)p->code, size);
2626 if (co == NULL)
2627 return -1;
2628 if (!PyCode_Check(co)) {
2629 PyErr_Format(PyExc_TypeError,
Victor Stinner53dc7352011-03-20 01:50:21 +01002630 "frozen object %R is not a code object",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002631 name);
2632 goto err_return;
2633 }
2634 if (ispackage) {
2635 /* Set __path__ to the package name */
Victor Stinner53dc7352011-03-20 01:50:21 +01002636 PyObject *d, *l;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002637 int err;
Victor Stinner53dc7352011-03-20 01:50:21 +01002638 m = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002639 if (m == NULL)
2640 goto err_return;
2641 d = PyModule_GetDict(m);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002642 l = PyList_New(1);
2643 if (l == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002644 goto err_return;
2645 }
Victor Stinner53dc7352011-03-20 01:50:21 +01002646 Py_INCREF(name);
2647 PyList_SET_ITEM(l, 0, name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002648 err = PyDict_SetItemString(d, "__path__", l);
2649 Py_DECREF(l);
2650 if (err != 0)
2651 goto err_return;
2652 }
Victor Stinner53dc7352011-03-20 01:50:21 +01002653 path = PyUnicode_FromString("<frozen>");
2654 if (path == NULL)
2655 goto err_return;
2656 m = PyImport_ExecCodeModuleObject(name, co, path, NULL);
2657 Py_DECREF(path);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002658 if (m == NULL)
2659 goto err_return;
2660 Py_DECREF(co);
2661 Py_DECREF(m);
2662 return 1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002663err_return:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002664 Py_DECREF(co);
2665 return -1;
Guido van Rossumf56e3db1993-04-01 20:59:32 +00002666}
Guido van Rossum74e6a111994-08-29 12:54:38 +00002667
Victor Stinner53dc7352011-03-20 01:50:21 +01002668int
2669PyImport_ImportFrozenModule(char *name)
2670{
2671 PyObject *nameobj;
2672 int ret;
2673 nameobj = PyUnicode_InternFromString(name);
2674 if (nameobj == NULL)
2675 return -1;
2676 ret = PyImport_ImportFrozenModuleObject(nameobj);
2677 Py_DECREF(nameobj);
2678 return ret;
2679}
2680
Guido van Rossum74e6a111994-08-29 12:54:38 +00002681
Guido van Rossum1ae940a1995-01-02 19:04:15 +00002682/* Import a module, either built-in, frozen, or external, and return
Guido van Rossum7f9fa971995-01-20 16:53:12 +00002683 its module object WITH INCREMENTED REFERENCE COUNT */
Guido van Rossum74e6a111994-08-29 12:54:38 +00002684
Guido van Rossum79f25d91997-04-29 20:08:16 +00002685PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00002686PyImport_ImportModule(const char *name)
Guido van Rossum74e6a111994-08-29 12:54:38 +00002687{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002688 PyObject *pname;
2689 PyObject *result;
Marc-André Lemburg3c61c352001-02-09 19:40:15 +00002690
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002691 pname = PyUnicode_FromString(name);
2692 if (pname == NULL)
2693 return NULL;
2694 result = PyImport_Import(pname);
2695 Py_DECREF(pname);
2696 return result;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002697}
2698
Christian Heimes072c0f12008-01-03 23:01:04 +00002699/* Import a module without blocking
2700 *
2701 * At first it tries to fetch the module from sys.modules. If the module was
2702 * never loaded before it loads it with PyImport_ImportModule() unless another
2703 * thread holds the import lock. In the latter case the function raises an
2704 * ImportError instead of blocking.
2705 *
2706 * Returns the module object with incremented ref count.
2707 */
2708PyObject *
2709PyImport_ImportModuleNoBlock(const char *name)
2710{
Victor Stinner2e5f11a2011-03-13 21:57:27 -04002711 PyObject *nameobj, *modules, *result;
Victor Stinner0af03062011-09-02 00:11:43 +02002712#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002713 long me;
Victor Stinner0af03062011-09-02 00:11:43 +02002714#endif
Christian Heimes072c0f12008-01-03 23:01:04 +00002715
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002716 /* Try to get the module from sys.modules[name] */
2717 modules = PyImport_GetModuleDict();
2718 if (modules == NULL)
2719 return NULL;
Christian Heimes072c0f12008-01-03 23:01:04 +00002720
Victor Stinner2e5f11a2011-03-13 21:57:27 -04002721 nameobj = PyUnicode_FromString(name);
2722 if (nameobj == NULL)
2723 return NULL;
2724 result = PyDict_GetItem(modules, nameobj);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002725 if (result != NULL) {
Victor Stinner2e5f11a2011-03-13 21:57:27 -04002726 Py_DECREF(nameobj);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002727 Py_INCREF(result);
2728 return result;
2729 }
Victor Stinner2e5f11a2011-03-13 21:57:27 -04002730 PyErr_Clear();
Benjamin Peterson3e4f0552008-09-02 00:31:15 +00002731#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002732 /* check the import lock
2733 * me might be -1 but I ignore the error here, the lock function
2734 * takes care of the problem */
2735 me = PyThread_get_thread_ident();
2736 if (import_lock_thread == -1 || import_lock_thread == me) {
2737 /* no thread or me is holding the lock */
Victor Stinner2e5f11a2011-03-13 21:57:27 -04002738 result = PyImport_Import(nameobj);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002739 }
2740 else {
2741 PyErr_Format(PyExc_ImportError,
Victor Stinnerc24c8102011-03-13 22:38:06 -04002742 "Failed to import %R because the import lock"
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002743 "is held by another thread.",
Victor Stinner2e5f11a2011-03-13 21:57:27 -04002744 nameobj);
2745 result = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002746 }
Benjamin Peterson3e4f0552008-09-02 00:31:15 +00002747#else
Victor Stinner2e5f11a2011-03-13 21:57:27 -04002748 result = PyImport_Import(nameobj);
Benjamin Peterson3e4f0552008-09-02 00:31:15 +00002749#endif
Victor Stinner2e5f11a2011-03-13 21:57:27 -04002750 Py_DECREF(nameobj);
2751 return result;
Christian Heimes072c0f12008-01-03 23:01:04 +00002752}
2753
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002754/* Forward declarations for helper routines */
Victor Stinner974389d2011-03-15 09:33:57 +01002755static PyObject *get_parent(PyObject *globals,
2756 PyObject **p_name,
2757 int level);
Tim Petersdbd9ba62000-07-09 03:09:57 +00002758static PyObject *load_next(PyObject *mod, PyObject *altmod,
Victor Stinner974389d2011-03-15 09:33:57 +01002759 PyObject *inputname, PyObject **p_outputname,
Martin v. Löwisf45dee92011-10-30 23:50:02 +01002760 PyObject **p_prefix);
Victor Stinner974389d2011-03-15 09:33:57 +01002761static int mark_miss(PyObject *name);
Tim Petersdbd9ba62000-07-09 03:09:57 +00002762static int ensure_fromlist(PyObject *mod, PyObject *fromlist,
Victor Stinner974389d2011-03-15 09:33:57 +01002763 PyObject *buf, int recursive);
2764static PyObject * import_submodule(PyObject *mod, PyObject *name,
2765 PyObject *fullname);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002766
2767/* The Magnum Opus of dotted-name import :-) */
2768
Guido van Rossum75acc9c1998-03-03 22:26:50 +00002769static PyObject *
Victor Stinner974389d2011-03-15 09:33:57 +01002770import_module_level(PyObject *name, PyObject *globals, PyObject *locals,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002771 PyObject *fromlist, int level)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00002772{
Martin v. Löwisf45dee92011-10-30 23:50:02 +01002773 PyObject *parent, *next, *inputname, *outputname;
2774 PyObject *head = NULL;
2775 PyObject *tail = NULL;
2776 PyObject *prefix = NULL;
2777 PyObject *result = NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002778 Py_ssize_t sep, altsep;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002779
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002780 if (PyUnicode_READY(name))
2781 return NULL;
Victor Stinner974389d2011-03-15 09:33:57 +01002782
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002783 sep = PyUnicode_FindChar(name, SEP, 0, PyUnicode_GET_LENGTH(name), 1);
2784 if (sep == -2)
2785 return NULL;
Victor Stinner974389d2011-03-15 09:33:57 +01002786#ifdef ALTSEP
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002787 altsep = PyUnicode_FindChar(name, ALTSEP, 0, PyUnicode_GET_LENGTH(name), 1);
2788 if (altsep == -2)
2789 return NULL;
2790#else
2791 altsep = -1;
Christian Heimes454f37b2008-01-10 00:10:02 +00002792#endif
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002793 if (sep != -1 || altsep != -1)
2794 {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002795 PyErr_SetString(PyExc_ImportError,
2796 "Import by filename is not supported.");
2797 return NULL;
2798 }
Christian Heimes454f37b2008-01-10 00:10:02 +00002799
Martin v. Löwisf45dee92011-10-30 23:50:02 +01002800 parent = get_parent(globals, &prefix, level);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002801 if (parent == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002802 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002803 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002804
Martin v. Löwisf45dee92011-10-30 23:50:02 +01002805 if (PyUnicode_READY(prefix))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002806 return NULL;
Victor Stinner974389d2011-03-15 09:33:57 +01002807
2808 head = load_next(parent, level < 0 ? Py_None : parent, name, &outputname,
Martin v. Löwisf45dee92011-10-30 23:50:02 +01002809 &prefix);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002810 if (head == NULL)
Martin v. Löwisf45dee92011-10-30 23:50:02 +01002811 goto out;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002812
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002813 tail = head;
2814 Py_INCREF(tail);
Victor Stinner974389d2011-03-15 09:33:57 +01002815
2816 if (outputname != NULL) {
2817 while (1) {
2818 inputname = outputname;
2819 next = load_next(tail, tail, inputname, &outputname,
Martin v. Löwisf45dee92011-10-30 23:50:02 +01002820 &prefix);
2821 Py_CLEAR(tail);
2822 Py_CLEAR(inputname);
2823 if (next == NULL)
2824 goto out;
Victor Stinner974389d2011-03-15 09:33:57 +01002825 tail = next;
2826
2827 if (outputname == NULL) {
2828 break;
2829 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002830 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002831 }
2832 if (tail == Py_None) {
2833 /* If tail is Py_None, both get_parent and load_next found
2834 an empty module name: someone called __import__("") or
2835 doctored faulty bytecode */
Victor Stinner974389d2011-03-15 09:33:57 +01002836 PyErr_SetString(PyExc_ValueError, "Empty module name");
Martin v. Löwisf45dee92011-10-30 23:50:02 +01002837 goto out;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002838 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002839
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002840 if (fromlist != NULL) {
2841 if (fromlist == Py_None || !PyObject_IsTrue(fromlist))
2842 fromlist = NULL;
2843 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002844
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002845 if (fromlist == NULL) {
Martin v. Löwisf45dee92011-10-30 23:50:02 +01002846 result = head;
2847 Py_INCREF(result);
2848 goto out;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002849 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002850
Martin v. Löwisf45dee92011-10-30 23:50:02 +01002851 if (!ensure_fromlist(tail, fromlist, prefix, 0))
2852 goto out;
Victor Stinner1f795172011-11-17 00:45:54 +01002853
Martin v. Löwisf45dee92011-10-30 23:50:02 +01002854 result = tail;
2855 Py_INCREF(result);
2856 out:
2857 Py_XDECREF(head);
2858 Py_XDECREF(tail);
2859 Py_XDECREF(prefix);
2860 return result;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002861}
2862
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002863PyObject *
Victor Stinnerfe93faf2011-03-14 15:54:52 -04002864PyImport_ImportModuleLevelObject(PyObject *name, PyObject *globals,
2865 PyObject *locals, PyObject *fromlist,
2866 int level)
Thomas Woutersf7f438b2006-02-28 16:09:29 +00002867{
Victor Stinnerfe93faf2011-03-14 15:54:52 -04002868 PyObject *mod;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002869 _PyImport_AcquireLock();
Victor Stinnerfe93faf2011-03-14 15:54:52 -04002870 mod = import_module_level(name, globals, locals, fromlist, level);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002871 if (_PyImport_ReleaseLock() < 0) {
Victor Stinnerfe93faf2011-03-14 15:54:52 -04002872 Py_XDECREF(mod);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002873 PyErr_SetString(PyExc_RuntimeError,
2874 "not holding the import lock");
2875 return NULL;
2876 }
Victor Stinnerfe93faf2011-03-14 15:54:52 -04002877 return mod;
Guido van Rossum75acc9c1998-03-03 22:26:50 +00002878}
2879
Victor Stinnerfe93faf2011-03-14 15:54:52 -04002880PyObject *
Benjamin Peterson04778a82011-05-25 09:29:00 -05002881PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject *locals,
Victor Stinnerfe93faf2011-03-14 15:54:52 -04002882 PyObject *fromlist, int level)
2883{
2884 PyObject *nameobj, *mod;
2885 nameobj = PyUnicode_FromString(name);
2886 if (nameobj == NULL)
2887 return NULL;
2888 mod = PyImport_ImportModuleLevelObject(nameobj, globals, locals,
2889 fromlist, level);
2890 Py_DECREF(nameobj);
2891 return mod;
2892}
2893
2894
Fred Drake87590902004-05-28 20:21:36 +00002895/* Return the package that an import is being performed in. If globals comes
2896 from the module foo.bar.bat (not itself a package), this returns the
2897 sys.modules entry for foo.bar. If globals is from a package's __init__.py,
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00002898 the package's entry in sys.modules is returned, as a borrowed reference.
Fred Drake87590902004-05-28 20:21:36 +00002899
Victor Stinner974389d2011-03-15 09:33:57 +01002900 The name of the returned package is returned in *p_name.
Fred Drake87590902004-05-28 20:21:36 +00002901
2902 If globals doesn't come from a package or a module in a package, or a
2903 corresponding entry is not found in sys.modules, Py_None is returned.
2904*/
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002905static PyObject *
Victor Stinner9599de52011-03-13 22:38:38 -04002906get_parent(PyObject *globals, PyObject **p_name, int level)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002907{
Victor Stinner974389d2011-03-15 09:33:57 +01002908 PyObject *nameobj;
2909
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002910 static PyObject *namestr = NULL;
2911 static PyObject *pathstr = NULL;
2912 static PyObject *pkgstr = NULL;
2913 PyObject *pkgname, *modname, *modpath, *modules, *parent;
2914 int orig_level = level;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002915
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002916 if (globals == NULL || !PyDict_Check(globals) || !level)
Victor Stinner974389d2011-03-15 09:33:57 +01002917 goto return_none;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002918
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002919 if (namestr == NULL) {
2920 namestr = PyUnicode_InternFromString("__name__");
2921 if (namestr == NULL)
2922 return NULL;
2923 }
2924 if (pathstr == NULL) {
2925 pathstr = PyUnicode_InternFromString("__path__");
2926 if (pathstr == NULL)
2927 return NULL;
2928 }
2929 if (pkgstr == NULL) {
2930 pkgstr = PyUnicode_InternFromString("__package__");
2931 if (pkgstr == NULL)
2932 return NULL;
2933 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002934
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002935 pkgname = PyDict_GetItem(globals, pkgstr);
Guido van Rossum17fc85f1997-09-06 18:52:03 +00002936
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002937 if ((pkgname != NULL) && (pkgname != Py_None)) {
2938 /* __package__ is set, so use it */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002939 if (!PyUnicode_Check(pkgname)) {
2940 PyErr_SetString(PyExc_ValueError,
2941 "__package__ set to non-string");
2942 return NULL;
2943 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002944 if (PyUnicode_GET_LENGTH(pkgname) == 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002945 if (level > 0) {
2946 PyErr_SetString(PyExc_ValueError,
2947 "Attempted relative import in non-package");
2948 return NULL;
2949 }
Victor Stinner974389d2011-03-15 09:33:57 +01002950 goto return_none;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002951 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002952 Py_INCREF(pkgname);
2953 nameobj = pkgname;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002954 } else {
2955 /* __package__ not set, so figure it out and set it */
2956 modname = PyDict_GetItem(globals, namestr);
2957 if (modname == NULL || !PyUnicode_Check(modname))
Victor Stinner974389d2011-03-15 09:33:57 +01002958 goto return_none;
Brett Cannon9a5b25a2010-03-01 02:09:17 +00002959
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002960 modpath = PyDict_GetItem(globals, pathstr);
2961 if (modpath != NULL) {
2962 /* __path__ is set, so modname is already the package name */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002963 int error;
Alexandre Vassalottia85998a2008-05-03 18:24:43 +00002964
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002965 error = PyDict_SetItem(globals, pkgstr, modname);
2966 if (error) {
2967 PyErr_SetString(PyExc_ValueError,
2968 "Could not set __package__");
2969 return NULL;
2970 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002971 Py_INCREF(modname);
2972 nameobj = modname;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002973 } else {
2974 /* Normal module, so work out the package name if any */
Victor Stinner974389d2011-03-15 09:33:57 +01002975 Py_ssize_t len;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002976 len = PyUnicode_FindChar(modname, '.',
2977 0, PyUnicode_GET_LENGTH(modname), -1);
2978 if (len == -2)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002979 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002980 if (len < 0) {
2981 if (level > 0) {
2982 PyErr_SetString(PyExc_ValueError,
2983 "Attempted relative import in non-package");
2984 return NULL;
2985 }
2986 if (PyDict_SetItem(globals, pkgstr, Py_None)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002987 PyErr_SetString(PyExc_ValueError,
2988 "Could not set __package__");
2989 return NULL;
2990 }
Victor Stinner974389d2011-03-15 09:33:57 +01002991 goto return_none;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002992 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002993 pkgname = PyUnicode_Substring(modname, 0, len);
2994 if (pkgname == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002995 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02002996 if (PyDict_SetItem(globals, pkgstr, pkgname)) {
2997 Py_DECREF(pkgname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002998 PyErr_SetString(PyExc_ValueError,
2999 "Could not set __package__");
3000 return NULL;
3001 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003002 nameobj = pkgname;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003003 }
3004 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003005 if (level > 1) {
3006 Py_ssize_t dot, end = PyUnicode_GET_LENGTH(nameobj);
3007 PyObject *newname;
3008 while (--level > 0) {
3009 dot = PyUnicode_FindChar(nameobj, '.', 0, end, -1);
3010 if (dot == -2) {
3011 Py_DECREF(nameobj);
3012 return NULL;
3013 }
3014 if (dot < 0) {
3015 Py_DECREF(nameobj);
3016 PyErr_SetString(PyExc_ValueError,
3017 "Attempted relative import beyond "
3018 "toplevel package");
3019 return NULL;
3020 }
3021 end = dot;
3022 }
3023 newname = PyUnicode_Substring(nameobj, 0, end);
3024 Py_DECREF(nameobj);
3025 if (newname == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003026 return NULL;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003027 nameobj = newname;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003028 }
Victor Stinner974389d2011-03-15 09:33:57 +01003029
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003030 modules = PyImport_GetModuleDict();
Victor Stinner974389d2011-03-15 09:33:57 +01003031 parent = PyDict_GetItem(modules, nameobj);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003032 if (parent == NULL) {
Victor Stinner974389d2011-03-15 09:33:57 +01003033 int err;
3034
3035 if (orig_level >= 1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003036 PyErr_Format(PyExc_SystemError,
Victor Stinner974389d2011-03-15 09:33:57 +01003037 "Parent module %R not loaded, "
3038 "cannot perform relative import", nameobj);
3039 Py_DECREF(nameobj);
3040 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003041 }
Victor Stinner974389d2011-03-15 09:33:57 +01003042
3043 err = PyErr_WarnFormat(
3044 PyExc_RuntimeWarning, 1,
3045 "Parent module %R not found while handling absolute import",
3046 nameobj);
3047 Py_DECREF(nameobj);
3048 if (err)
3049 return NULL;
3050
3051 goto return_none;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003052 }
Victor Stinner974389d2011-03-15 09:33:57 +01003053 *p_name = nameobj;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003054 return parent;
3055 /* We expect, but can't guarantee, if parent != None, that:
Victor Stinner974389d2011-03-15 09:33:57 +01003056 - parent.__name__ == name
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003057 - parent.__dict__ is globals
3058 If this is violated... Who cares? */
Victor Stinner974389d2011-03-15 09:33:57 +01003059
3060return_none:
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003061 nameobj = PyUnicode_New(0, 0);
Victor Stinner974389d2011-03-15 09:33:57 +01003062 if (nameobj == NULL)
3063 return NULL;
3064 *p_name = nameobj;
3065 return Py_None;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003066}
3067
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003068/* altmod is either None or same as mod */
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003069static PyObject *
Victor Stinner974389d2011-03-15 09:33:57 +01003070load_next(PyObject *mod, PyObject *altmod,
3071 PyObject *inputname, PyObject **p_outputname,
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003072 PyObject **p_prefix)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003073{
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003074 Py_ssize_t dot;
Victor Stinner974389d2011-03-15 09:33:57 +01003075 Py_ssize_t len;
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003076 PyObject *fullname, *name = NULL, *result;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003077
Victor Stinner974389d2011-03-15 09:33:57 +01003078 *p_outputname = NULL;
3079
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003080 len = PyUnicode_GET_LENGTH(inputname);
3081 if (len == 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003082 /* completely empty module name should only happen in
3083 'from . import' (or '__import__("")')*/
3084 Py_INCREF(mod);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003085 return mod;
3086 }
Thomas Woutersf7f438b2006-02-28 16:09:29 +00003087
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003088
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003089 dot = PyUnicode_FindChar(inputname, '.', 0, len, 1);
3090 if (dot >= 0) {
3091 len = dot;
Victor Stinner974389d2011-03-15 09:33:57 +01003092 if (len == 0) {
3093 PyErr_SetString(PyExc_ValueError,
3094 "Empty module name");
Martin v. Löwis0b1d3482011-10-01 16:35:40 +02003095 goto error;
Victor Stinner974389d2011-03-15 09:33:57 +01003096 }
3097 }
Victor Stinner974389d2011-03-15 09:33:57 +01003098
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003099 /* name = inputname[:len] */
3100 name = PyUnicode_Substring(inputname, 0, len);
3101 if (name == NULL)
Martin v. Löwis0b1d3482011-10-01 16:35:40 +02003102 goto error;
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003103
3104 if (PyUnicode_GET_LENGTH(*p_prefix)) {
3105 /* fullname = prefix + "." + name */
3106 fullname = PyUnicode_FromFormat("%U.%U", *p_prefix, name);
3107 if (fullname == NULL)
3108 goto error;
3109 }
3110 else {
3111 fullname = name;
3112 Py_INCREF(fullname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003113 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003114
Victor Stinner974389d2011-03-15 09:33:57 +01003115 result = import_submodule(mod, name, fullname);
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003116 Py_DECREF(*p_prefix);
3117 /* Transfer reference. */
3118 *p_prefix = fullname;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003119 if (result == Py_None && altmod != mod) {
3120 Py_DECREF(result);
3121 /* Here, altmod must be None and mod must not be None */
Victor Stinner974389d2011-03-15 09:33:57 +01003122 result = import_submodule(altmod, name, name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003123 if (result != NULL && result != Py_None) {
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003124 if (mark_miss(*p_prefix) != 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003125 Py_DECREF(result);
Martin v. Löwis0b1d3482011-10-01 16:35:40 +02003126 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003127 }
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003128 Py_DECREF(*p_prefix);
3129 *p_prefix = name;
3130 Py_INCREF(*p_prefix);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003131 }
3132 }
3133 if (result == NULL)
Martin v. Löwis0b1d3482011-10-01 16:35:40 +02003134 goto error;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003135
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003136 if (result == Py_None) {
3137 Py_DECREF(result);
3138 PyErr_Format(PyExc_ImportError,
Victor Stinner974389d2011-03-15 09:33:57 +01003139 "No module named %R", inputname);
Martin v. Löwis0b1d3482011-10-01 16:35:40 +02003140 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003141 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003142
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003143 if (dot >= 0) {
3144 *p_outputname = PyUnicode_Substring(inputname, dot+1,
3145 PyUnicode_GET_LENGTH(inputname));
Victor Stinner974389d2011-03-15 09:33:57 +01003146 if (*p_outputname == NULL) {
3147 Py_DECREF(result);
Martin v. Löwis0b1d3482011-10-01 16:35:40 +02003148 goto error;
Victor Stinner974389d2011-03-15 09:33:57 +01003149 }
3150 }
3151
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003152 Py_DECREF(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003153 return result;
Martin v. Löwis0b1d3482011-10-01 16:35:40 +02003154
3155error:
Martin v. Löwisf45dee92011-10-30 23:50:02 +01003156 Py_XDECREF(name);
Martin v. Löwis0b1d3482011-10-01 16:35:40 +02003157 return NULL;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003158}
3159
3160static int
Victor Stinner974389d2011-03-15 09:33:57 +01003161mark_miss(PyObject *name)
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00003162{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003163 PyObject *modules = PyImport_GetModuleDict();
Victor Stinner974389d2011-03-15 09:33:57 +01003164 return PyDict_SetItem(modules, name, Py_None);
Guido van Rossumf5f5fdb1997-09-06 20:29:52 +00003165}
3166
3167static int
Victor Stinner974389d2011-03-15 09:33:57 +01003168ensure_fromlist(PyObject *mod, PyObject *fromlist, PyObject *name,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003169 int recursive)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003170{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003171 int i;
Victor Stinner974389d2011-03-15 09:33:57 +01003172 PyObject *fullname;
3173 Py_ssize_t fromlist_len;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003174
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +02003175 if (!_PyObject_HasAttrId(mod, &PyId___path__))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003176 return 1;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003177
Victor Stinner974389d2011-03-15 09:33:57 +01003178 fromlist_len = PySequence_Size(fromlist);
3179
3180 for (i = 0; i < fromlist_len; i++) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003181 PyObject *item = PySequence_GetItem(fromlist, i);
3182 int hasit;
Victor Stinner974389d2011-03-15 09:33:57 +01003183 if (item == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003184 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003185 if (!PyUnicode_Check(item)) {
3186 PyErr_SetString(PyExc_TypeError,
3187 "Item in ``from list'' not a string");
3188 Py_DECREF(item);
3189 return 0;
3190 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003191 if (PyUnicode_READ_CHAR(item, 0) == '*') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003192 PyObject *all;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02003193 _Py_IDENTIFIER(__all__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003194 Py_DECREF(item);
3195 /* See if the package defines __all__ */
3196 if (recursive)
3197 continue; /* Avoid endless recursion */
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +02003198 all = _PyObject_GetAttrId(mod, &PyId___all__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003199 if (all == NULL)
3200 PyErr_Clear();
3201 else {
Victor Stinner974389d2011-03-15 09:33:57 +01003202 int ret = ensure_fromlist(mod, all, name, 1);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003203 Py_DECREF(all);
3204 if (!ret)
3205 return 0;
3206 }
3207 continue;
3208 }
3209 hasit = PyObject_HasAttr(mod, item);
3210 if (!hasit) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003211 PyObject *submod;
Victor Stinner974389d2011-03-15 09:33:57 +01003212 fullname = PyUnicode_FromFormat("%U.%U", name, item);
3213 if (fullname != NULL) {
3214 submod = import_submodule(mod, item, fullname);
3215 Py_DECREF(fullname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003216 }
Victor Stinner974389d2011-03-15 09:33:57 +01003217 else
3218 submod = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003219 Py_XDECREF(submod);
3220 if (submod == NULL) {
3221 Py_DECREF(item);
3222 return 0;
3223 }
3224 }
3225 Py_DECREF(item);
3226 }
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003227
Victor Stinner974389d2011-03-15 09:33:57 +01003228 return 1;
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003229}
3230
Neil Schemenauer00b09662003-06-16 21:03:07 +00003231static int
Victor Stinner974389d2011-03-15 09:33:57 +01003232add_submodule(PyObject *mod, PyObject *submod, PyObject *fullname,
3233 PyObject *subname, PyObject *modules)
Neil Schemenauer00b09662003-06-16 21:03:07 +00003234{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003235 if (mod == Py_None)
3236 return 1;
3237 /* Irrespective of the success of this load, make a
3238 reference to it in the parent package module. A copy gets
3239 saved in the modules dictionary under the full name, so get a
3240 reference from there, if need be. (The exception is when the
3241 load failed with a SyntaxError -- then there's no trace in
3242 sys.modules. In that case, of course, do nothing extra.) */
3243 if (submod == NULL) {
Victor Stinner974389d2011-03-15 09:33:57 +01003244 submod = PyDict_GetItem(modules, fullname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003245 if (submod == NULL)
3246 return 1;
3247 }
3248 if (PyModule_Check(mod)) {
3249 /* We can't use setattr here since it can give a
3250 * spurious warning if the submodule name shadows a
3251 * builtin name */
3252 PyObject *dict = PyModule_GetDict(mod);
3253 if (!dict)
3254 return 0;
Victor Stinner974389d2011-03-15 09:33:57 +01003255 if (PyDict_SetItem(dict, subname, submod) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003256 return 0;
3257 }
3258 else {
Victor Stinner974389d2011-03-15 09:33:57 +01003259 if (PyObject_SetAttr(mod, subname, submod) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003260 return 0;
3261 }
3262 return 1;
Neil Schemenauer00b09662003-06-16 21:03:07 +00003263}
3264
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003265static PyObject *
Victor Stinner974389d2011-03-15 09:33:57 +01003266import_submodule(PyObject *mod, PyObject *subname, PyObject *fullname)
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003267{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003268 PyObject *modules = PyImport_GetModuleDict();
Victor Stinner533d7832011-03-14 13:22:54 -04003269 PyObject *m = NULL, *bufobj, *path_list, *loader;
Victor Stinner9599de52011-03-13 22:38:38 -04003270 struct filedescr *fdp;
3271 FILE *fp;
Guido van Rossum74e6a111994-08-29 12:54:38 +00003272
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003273 /* Require:
3274 if mod == None: subname == fullname
3275 else: mod.__name__ + "." + subname == fullname
3276 */
Guido van Rossum17fc85f1997-09-06 18:52:03 +00003277
Victor Stinner974389d2011-03-15 09:33:57 +01003278 if ((m = PyDict_GetItem(modules, fullname)) != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003279 Py_INCREF(m);
Victor Stinner9599de52011-03-13 22:38:38 -04003280 return m;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003281 }
Victor Stinner9599de52011-03-13 22:38:38 -04003282
3283 if (mod == Py_None)
Victor Stinner533d7832011-03-14 13:22:54 -04003284 path_list = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003285 else {
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +02003286 path_list = _PyObject_GetAttrId(mod, &PyId___path__);
Victor Stinner533d7832011-03-14 13:22:54 -04003287 if (path_list == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003288 PyErr_Clear();
3289 Py_INCREF(Py_None);
3290 return Py_None;
3291 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003292 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003293
Victor Stinner533d7832011-03-14 13:22:54 -04003294 fdp = find_module(fullname, subname, path_list,
Victor Stinner2fd76e42011-03-14 15:19:39 -04003295 &bufobj, &fp, &loader);
Victor Stinner533d7832011-03-14 13:22:54 -04003296 Py_XDECREF(path_list);
Victor Stinner9599de52011-03-13 22:38:38 -04003297 if (fdp == NULL) {
3298 if (!PyErr_ExceptionMatches(PyExc_ImportError))
3299 return NULL;
3300 PyErr_Clear();
3301 Py_INCREF(Py_None);
3302 return Py_None;
3303 }
Victor Stinner2fd76e42011-03-14 15:19:39 -04003304 m = load_module(fullname, fp, bufobj, fdp->type, loader);
3305 Py_XDECREF(bufobj);
Victor Stinner9599de52011-03-13 22:38:38 -04003306 Py_XDECREF(loader);
3307 if (fp)
3308 fclose(fp);
3309 if (m == NULL)
3310 return NULL;
3311 if (!add_submodule(mod, m, fullname, subname, modules)) {
3312 Py_XDECREF(m);
3313 return NULL;
3314 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003315 return m;
Guido van Rossum74e6a111994-08-29 12:54:38 +00003316}
3317
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003318
3319/* Re-import a module of any kind and return its module object, WITH
3320 INCREMENTED REFERENCE COUNT */
3321
Guido van Rossum79f25d91997-04-29 20:08:16 +00003322PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003323PyImport_ReloadModule(PyObject *m)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003324{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003325 PyInterpreterState *interp = PyThreadState_Get()->interp;
3326 PyObject *modules_reloading = interp->modules_reloading;
3327 PyObject *modules = PyImport_GetModuleDict();
Victor Stinner533d7832011-03-14 13:22:54 -04003328 PyObject *path_list = NULL, *loader = NULL, *existing_m = NULL;
Martin v. Löwis796ea532011-10-30 09:07:07 +01003329 PyObject *name, *bufobj, *subname;
3330 Py_ssize_t subname_start;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003331 struct filedescr *fdp;
Victor Stinnerad3c03b2011-03-14 09:21:33 -04003332 FILE *fp = NULL;
3333 PyObject *newm = NULL;
Brett Cannon9a5b25a2010-03-01 02:09:17 +00003334
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003335 if (modules_reloading == NULL) {
3336 Py_FatalError("PyImport_ReloadModule: "
3337 "no modules_reloading dictionary!");
3338 return NULL;
3339 }
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003340
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003341 if (m == NULL || !PyModule_Check(m)) {
3342 PyErr_SetString(PyExc_TypeError,
3343 "reload() argument must be module");
3344 return NULL;
3345 }
Martin v. Löwis796ea532011-10-30 09:07:07 +01003346 name = PyModule_GetNameObject(m);
3347 if (name == NULL || PyUnicode_READY(name) == -1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003348 return NULL;
Martin v. Löwis796ea532011-10-30 09:07:07 +01003349 if (m != PyDict_GetItem(modules, name)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003350 PyErr_Format(PyExc_ImportError,
Victor Stinner98dbba52011-03-14 15:15:47 -04003351 "reload(): module %R not in sys.modules",
Martin v. Löwis796ea532011-10-30 09:07:07 +01003352 name);
3353 Py_DECREF(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003354 return NULL;
3355 }
Martin v. Löwis796ea532011-10-30 09:07:07 +01003356 existing_m = PyDict_GetItem(modules_reloading, name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003357 if (existing_m != NULL) {
3358 /* Due to a recursive reload, this module is already
3359 being reloaded. */
Martin v. Löwis796ea532011-10-30 09:07:07 +01003360 Py_DECREF(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003361 Py_INCREF(existing_m);
3362 return existing_m;
3363 }
Martin v. Löwis796ea532011-10-30 09:07:07 +01003364 if (PyDict_SetItem(modules_reloading, name, m) < 0) {
3365 Py_DECREF(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003366 return NULL;
Victor Stinnerad3c03b2011-03-14 09:21:33 -04003367 }
Guido van Rossumd8faa362007-04-27 19:54:29 +00003368
Martin v. Löwis796ea532011-10-30 09:07:07 +01003369 subname_start = PyUnicode_FindChar(name, '.', 0,
3370 PyUnicode_GET_LENGTH(name), -1);
3371 if (subname_start == -1) {
3372 Py_INCREF(name);
3373 subname = name;
Victor Stinnerad3c03b2011-03-14 09:21:33 -04003374 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003375 else {
3376 PyObject *parentname, *parent;
Victor Stinnerad3c03b2011-03-14 09:21:33 -04003377 Py_ssize_t len;
Martin v. Löwis796ea532011-10-30 09:07:07 +01003378 parentname = PyUnicode_Substring(name, 0, subname_start);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003379 if (parentname == NULL) {
Victor Stinnerad3c03b2011-03-14 09:21:33 -04003380 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003381 }
3382 parent = PyDict_GetItem(modules, parentname);
3383 if (parent == NULL) {
3384 PyErr_Format(PyExc_ImportError,
Victor Stinner98dbba52011-03-14 15:15:47 -04003385 "reload(): parent %R not in sys.modules",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003386 parentname);
3387 Py_DECREF(parentname);
Victor Stinnerad3c03b2011-03-14 09:21:33 -04003388 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003389 }
3390 Py_DECREF(parentname);
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +02003391 path_list = _PyObject_GetAttrId(parent, &PyId___path__);
Victor Stinner533d7832011-03-14 13:22:54 -04003392 if (path_list == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003393 PyErr_Clear();
Martin v. Löwis796ea532011-10-30 09:07:07 +01003394 subname_start++;
3395 len = PyUnicode_GET_LENGTH(name) - (subname_start + 1);
3396 subname = PyUnicode_Substring(name, subname_start, len);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003397 }
Martin v. Löwis796ea532011-10-30 09:07:07 +01003398 if (subname == NULL)
Victor Stinnerad3c03b2011-03-14 09:21:33 -04003399 goto error;
Martin v. Löwis796ea532011-10-30 09:07:07 +01003400 fdp = find_module(name, subname, path_list,
Victor Stinner2fd76e42011-03-14 15:19:39 -04003401 &bufobj, &fp, &loader);
Martin v. Löwis796ea532011-10-30 09:07:07 +01003402 Py_DECREF(subname);
Victor Stinner533d7832011-03-14 13:22:54 -04003403 Py_XDECREF(path_list);
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00003404
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003405 if (fdp == NULL) {
3406 Py_XDECREF(loader);
Victor Stinnerad3c03b2011-03-14 09:21:33 -04003407 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003408 }
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00003409
Martin v. Löwis796ea532011-10-30 09:07:07 +01003410 newm = load_module(name, fp, bufobj, fdp->type, loader);
Victor Stinner2fd76e42011-03-14 15:19:39 -04003411 Py_XDECREF(bufobj);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003412 Py_XDECREF(loader);
Phillip J. Eby7ec642a2004-09-23 04:37:36 +00003413
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003414 if (fp)
3415 fclose(fp);
3416 if (newm == NULL) {
3417 /* load_module probably removed name from modules because of
3418 * the error. Put back the original module object. We're
3419 * going to return NULL in this case regardless of whether
3420 * replacing name succeeds, so the return value is ignored.
3421 */
Martin v. Löwis796ea532011-10-30 09:07:07 +01003422 PyDict_SetItem(modules, name, m);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003423 }
Victor Stinnerad3c03b2011-03-14 09:21:33 -04003424
3425error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003426 imp_modules_reloading_clear();
Martin v. Löwis796ea532011-10-30 09:07:07 +01003427 Py_DECREF(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003428 return newm;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003429}
3430
3431
Guido van Rossumd47a0a81997-08-14 20:11:26 +00003432/* Higher-level import emulator which emulates the "import" statement
3433 more accurately -- it invokes the __import__() function from the
3434 builtins of the current globals. This means that the import is
3435 done using whatever import hooks are installed in the current
Brett Cannonbc2eff32010-09-19 21:39:02 +00003436 environment.
Guido van Rossum6058eb41998-12-21 19:51:00 +00003437 A dummy list ["__doc__"] is passed as the 4th argument so that
Neal Norwitz80e7f272007-08-26 06:45:23 +00003438 e.g. PyImport_Import(PyUnicode_FromString("win32com.client.gencache"))
Guido van Rossum6058eb41998-12-21 19:51:00 +00003439 will return <module "gencache"> instead of <module "win32com">. */
Guido van Rossumd47a0a81997-08-14 20:11:26 +00003440
3441PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003442PyImport_Import(PyObject *module_name)
Guido van Rossumd47a0a81997-08-14 20:11:26 +00003443{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003444 static PyObject *silly_list = NULL;
3445 static PyObject *builtins_str = NULL;
3446 static PyObject *import_str = NULL;
3447 PyObject *globals = NULL;
3448 PyObject *import = NULL;
3449 PyObject *builtins = NULL;
Brett Cannonbc2eff32010-09-19 21:39:02 +00003450 PyObject *modules = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003451 PyObject *r = NULL;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00003452
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003453 /* Initialize constant string objects */
3454 if (silly_list == NULL) {
3455 import_str = PyUnicode_InternFromString("__import__");
3456 if (import_str == NULL)
3457 return NULL;
3458 builtins_str = PyUnicode_InternFromString("__builtins__");
3459 if (builtins_str == NULL)
3460 return NULL;
Brett Cannonbc2eff32010-09-19 21:39:02 +00003461 silly_list = PyList_New(0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003462 if (silly_list == NULL)
3463 return NULL;
3464 }
Guido van Rossumd47a0a81997-08-14 20:11:26 +00003465
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003466 /* Get the builtins from current globals */
3467 globals = PyEval_GetGlobals();
3468 if (globals != NULL) {
3469 Py_INCREF(globals);
3470 builtins = PyObject_GetItem(globals, builtins_str);
3471 if (builtins == NULL)
3472 goto err;
3473 }
3474 else {
3475 /* No globals -- use standard builtins, and fake globals */
3476 builtins = PyImport_ImportModuleLevel("builtins",
3477 NULL, NULL, NULL, 0);
3478 if (builtins == NULL)
3479 return NULL;
3480 globals = Py_BuildValue("{OO}", builtins_str, builtins);
3481 if (globals == NULL)
3482 goto err;
3483 }
Guido van Rossumd47a0a81997-08-14 20:11:26 +00003484
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003485 /* Get the __import__ function from the builtins */
3486 if (PyDict_Check(builtins)) {
3487 import = PyObject_GetItem(builtins, import_str);
3488 if (import == NULL)
3489 PyErr_SetObject(PyExc_KeyError, import_str);
3490 }
3491 else
3492 import = PyObject_GetAttr(builtins, import_str);
3493 if (import == NULL)
3494 goto err;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00003495
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003496 /* Call the __import__ function with the proper argument list
Brett Cannonbc2eff32010-09-19 21:39:02 +00003497 Always use absolute import here.
3498 Calling for side-effect of import. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003499 r = PyObject_CallFunction(import, "OOOOi", module_name, globals,
3500 globals, silly_list, 0, NULL);
Brett Cannonbc2eff32010-09-19 21:39:02 +00003501 if (r == NULL)
3502 goto err;
3503 Py_DECREF(r);
3504
3505 modules = PyImport_GetModuleDict();
3506 r = PyDict_GetItem(modules, module_name);
3507 if (r != NULL)
3508 Py_INCREF(r);
Guido van Rossumd47a0a81997-08-14 20:11:26 +00003509
3510 err:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003511 Py_XDECREF(globals);
3512 Py_XDECREF(builtins);
3513 Py_XDECREF(import);
Tim Peters50d8d372001-02-28 05:34:27 +00003514
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003515 return r;
Guido van Rossumd47a0a81997-08-14 20:11:26 +00003516}
3517
3518
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003519/* Module 'imp' provides Python access to the primitives used for
3520 importing modules.
3521*/
3522
Guido van Rossum79f25d91997-04-29 20:08:16 +00003523static PyObject *
Barry Warsaw28a691b2010-04-17 00:19:56 +00003524imp_make_magic(long magic)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003525{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003526 char buf[4];
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003527
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003528 buf[0] = (char) ((magic >> 0) & 0xff);
3529 buf[1] = (char) ((magic >> 8) & 0xff);
3530 buf[2] = (char) ((magic >> 16) & 0xff);
3531 buf[3] = (char) ((magic >> 24) & 0xff);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003532
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003533 return PyBytes_FromStringAndSize(buf, 4);
Victor Stinner3e2b7172010-11-09 09:32:19 +00003534}
Barry Warsaw28a691b2010-04-17 00:19:56 +00003535
3536static PyObject *
3537imp_get_magic(PyObject *self, PyObject *noargs)
3538{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003539 return imp_make_magic(pyc_magic);
Barry Warsaw28a691b2010-04-17 00:19:56 +00003540}
3541
3542static PyObject *
3543imp_get_tag(PyObject *self, PyObject *noargs)
3544{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003545 return PyUnicode_FromString(pyc_tag);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003546}
3547
Guido van Rossum79f25d91997-04-29 20:08:16 +00003548static PyObject *
Neal Norwitz08ea61a2003-02-17 18:18:00 +00003549imp_get_suffixes(PyObject *self, PyObject *noargs)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003550{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003551 PyObject *list;
3552 struct filedescr *fdp;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003553
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003554 list = PyList_New(0);
3555 if (list == NULL)
3556 return NULL;
3557 for (fdp = _PyImport_Filetab; fdp->suffix != NULL; fdp++) {
3558 PyObject *item = Py_BuildValue("ssi",
3559 fdp->suffix, fdp->mode, fdp->type);
3560 if (item == NULL) {
3561 Py_DECREF(list);
3562 return NULL;
3563 }
3564 if (PyList_Append(list, item) < 0) {
3565 Py_DECREF(list);
3566 Py_DECREF(item);
3567 return NULL;
3568 }
3569 Py_DECREF(item);
3570 }
3571 return list;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003572}
3573
Guido van Rossum79f25d91997-04-29 20:08:16 +00003574static PyObject *
Victor Stinner533d7832011-03-14 13:22:54 -04003575call_find_module(PyObject *name, PyObject *path_list)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003576{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003577 extern int fclose(FILE *);
3578 PyObject *fob, *ret;
3579 PyObject *pathobj;
3580 struct filedescr *fdp;
Victor Stinner7d8b77c2011-03-12 08:45:02 -05003581 FILE *fp;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003582 int fd = -1;
3583 char *found_encoding = NULL;
3584 char *encoding = NULL;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00003585
Victor Stinner533d7832011-03-14 13:22:54 -04003586 if (path_list == Py_None)
3587 path_list = NULL;
3588 fdp = find_module(NULL, name, path_list,
Victor Stinner2fd76e42011-03-14 15:19:39 -04003589 &pathobj, &fp, NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003590 if (fdp == NULL)
3591 return NULL;
3592 if (fp != NULL) {
3593 fd = fileno(fp);
3594 if (fd != -1)
3595 fd = dup(fd);
3596 fclose(fp);
Victor Stinnerd417d012011-06-20 15:16:55 +02003597 if (fd == -1) {
3598 PyErr_SetFromErrno(PyExc_OSError);
3599 return NULL;
3600 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003601 fp = NULL;
3602 }
3603 if (fd != -1) {
3604 if (strchr(fdp->mode, 'b') == NULL) {
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02003605 /* PyTokenizer_FindEncodingFilename() returns PyMem_MALLOC'ed
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003606 memory. */
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02003607 found_encoding = PyTokenizer_FindEncodingFilename(fd, pathobj);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003608 lseek(fd, 0, 0); /* Reset position */
Victor Stinner2fd76e42011-03-14 15:19:39 -04003609 if (found_encoding == NULL && PyErr_Occurred()) {
3610 Py_XDECREF(pathobj);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003611 return NULL;
Victor Stinner2fd76e42011-03-14 15:19:39 -04003612 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003613 encoding = (found_encoding != NULL) ? found_encoding :
3614 (char*)PyUnicode_GetDefaultEncoding();
3615 }
Victor Stinner2fd76e42011-03-14 15:19:39 -04003616 fob = PyFile_FromFd(fd, NULL, fdp->mode, -1,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003617 (char*)encoding, NULL, NULL, 1);
3618 if (fob == NULL) {
Victor Stinner2fd76e42011-03-14 15:19:39 -04003619 Py_XDECREF(pathobj);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003620 close(fd);
3621 PyMem_FREE(found_encoding);
3622 return NULL;
3623 }
3624 }
3625 else {
3626 fob = Py_None;
3627 Py_INCREF(fob);
3628 }
Victor Stinner2fd76e42011-03-14 15:19:39 -04003629 if (pathobj == NULL) {
3630 Py_INCREF(Py_None);
3631 pathobj = Py_None;
3632 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003633 ret = Py_BuildValue("NN(ssi)",
3634 fob, pathobj, fdp->suffix, fdp->mode, fdp->type);
3635 PyMem_FREE(found_encoding);
Brett Cannon3bb42d92007-10-20 03:43:15 +00003636
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003637 return ret;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003638}
3639
Guido van Rossum79f25d91997-04-29 20:08:16 +00003640static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003641imp_find_module(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00003642{
Victor Stinnerad3c03b2011-03-14 09:21:33 -04003643 PyObject *name, *path_list = NULL;
3644 if (!PyArg_ParseTuple(args, "U|O:find_module",
3645 &name, &path_list))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003646 return NULL;
Victor Stinnerad3c03b2011-03-14 09:21:33 -04003647 return call_find_module(name, path_list);
Guido van Rossumaee0bad1997-09-05 07:33:22 +00003648}
3649
3650static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003651imp_init_builtin(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003652{
Victor Stinner95872862011-03-07 18:20:56 +01003653 PyObject *name;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003654 int ret;
3655 PyObject *m;
Victor Stinner95872862011-03-07 18:20:56 +01003656 if (!PyArg_ParseTuple(args, "U:init_builtin", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003657 return NULL;
3658 ret = init_builtin(name);
3659 if (ret < 0)
3660 return NULL;
3661 if (ret == 0) {
3662 Py_INCREF(Py_None);
3663 return Py_None;
3664 }
Victor Stinner95872862011-03-07 18:20:56 +01003665 m = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003666 Py_XINCREF(m);
3667 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003668}
3669
Guido van Rossum79f25d91997-04-29 20:08:16 +00003670static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003671imp_init_frozen(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003672{
Victor Stinner53dc7352011-03-20 01:50:21 +01003673 PyObject *name;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003674 int ret;
3675 PyObject *m;
Victor Stinner53dc7352011-03-20 01:50:21 +01003676 if (!PyArg_ParseTuple(args, "U:init_frozen", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003677 return NULL;
Victor Stinner53dc7352011-03-20 01:50:21 +01003678 ret = PyImport_ImportFrozenModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003679 if (ret < 0)
3680 return NULL;
3681 if (ret == 0) {
3682 Py_INCREF(Py_None);
3683 return Py_None;
3684 }
Victor Stinner53dc7352011-03-20 01:50:21 +01003685 m = PyImport_AddModuleObject(name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003686 Py_XINCREF(m);
3687 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003688}
3689
Guido van Rossum79f25d91997-04-29 20:08:16 +00003690static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003691imp_get_frozen_object(PyObject *self, PyObject *args)
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00003692{
Victor Stinner53dc7352011-03-20 01:50:21 +01003693 PyObject *name;
Jack Jansen95ffa231995-10-03 14:38:41 +00003694
Victor Stinner53dc7352011-03-20 01:50:21 +01003695 if (!PyArg_ParseTuple(args, "U:get_frozen_object", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003696 return NULL;
3697 return get_frozen_object(name);
Guido van Rossum6ec1efb1995-08-04 04:08:57 +00003698}
3699
Guido van Rossum79f25d91997-04-29 20:08:16 +00003700static PyObject *
Brett Cannon8d110132009-03-15 02:20:16 +00003701imp_is_frozen_package(PyObject *self, PyObject *args)
3702{
Victor Stinner53dc7352011-03-20 01:50:21 +01003703 PyObject *name;
Brett Cannon8d110132009-03-15 02:20:16 +00003704
Victor Stinner53dc7352011-03-20 01:50:21 +01003705 if (!PyArg_ParseTuple(args, "U:is_frozen_package", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003706 return NULL;
3707 return is_frozen_package(name);
Brett Cannon8d110132009-03-15 02:20:16 +00003708}
3709
3710static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003711imp_is_builtin(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003712{
Victor Stinner95872862011-03-07 18:20:56 +01003713 PyObject *name;
3714 if (!PyArg_ParseTuple(args, "U:is_builtin", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003715 return NULL;
3716 return PyLong_FromLong(is_builtin(name));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003717}
3718
Guido van Rossum79f25d91997-04-29 20:08:16 +00003719static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003720imp_is_frozen(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003721{
Victor Stinner53dc7352011-03-20 01:50:21 +01003722 PyObject *name;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003723 struct _frozen *p;
Victor Stinner53dc7352011-03-20 01:50:21 +01003724 if (!PyArg_ParseTuple(args, "U:is_frozen", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003725 return NULL;
3726 p = find_frozen(name);
3727 return PyBool_FromLong((long) (p == NULL ? 0 : p->size));
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003728}
3729
3730static FILE *
Victor Stinner2f42ae52011-03-20 00:41:24 +01003731get_file(PyObject *pathname, PyObject *fob, char *mode)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003732{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003733 FILE *fp;
3734 if (mode[0] == 'U')
3735 mode = "r" PY_STDIOTEXTMODE;
3736 if (fob == NULL) {
Victor Stinner2f42ae52011-03-20 00:41:24 +01003737 fp = _Py_fopen(pathname, mode);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003738 }
3739 else {
3740 int fd = PyObject_AsFileDescriptor(fob);
3741 if (fd == -1)
3742 return NULL;
3743 if (!_PyVerify_fd(fd))
3744 goto error;
3745 /* the FILE struct gets a new fd, so that it can be closed
3746 * independently of the file descriptor given
3747 */
3748 fd = dup(fd);
3749 if (fd == -1)
3750 goto error;
3751 fp = fdopen(fd, mode);
3752 }
3753 if (fp)
3754 return fp;
Kristján Valur Jónssone1b04452009-03-31 17:43:39 +00003755error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003756 PyErr_SetFromErrno(PyExc_IOError);
3757 return NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003758}
3759
Guido van Rossum79f25d91997-04-29 20:08:16 +00003760static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003761imp_load_compiled(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003762{
Victor Stinner2f42ae52011-03-20 00:41:24 +01003763 PyObject *name, *pathname;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003764 PyObject *fob = NULL;
3765 PyObject *m;
3766 FILE *fp;
Victor Stinner2f42ae52011-03-20 00:41:24 +01003767 if (!PyArg_ParseTuple(args, "UO&|O:load_compiled",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003768 &name,
Victor Stinner2f42ae52011-03-20 00:41:24 +01003769 PyUnicode_FSDecoder, &pathname,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003770 &fob))
3771 return NULL;
Victor Stinner2f42ae52011-03-20 00:41:24 +01003772 fp = get_file(pathname, fob, "rb");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003773 if (fp == NULL) {
Victor Stinnerebc00522010-12-03 17:06:43 +00003774 Py_DECREF(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003775 return NULL;
3776 }
Victor Stinner2f42ae52011-03-20 00:41:24 +01003777 m = load_compiled_module(name, pathname, fp);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003778 fclose(fp);
Victor Stinnerebc00522010-12-03 17:06:43 +00003779 Py_DECREF(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003780 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003781}
3782
Guido van Rossum96a8fb71999-12-22 14:09:35 +00003783#ifdef HAVE_DYNAMIC_LOADING
3784
Guido van Rossum79f25d91997-04-29 20:08:16 +00003785static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003786imp_load_dynamic(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003787{
Victor Stinnerfefd70c2011-03-14 15:54:07 -04003788 PyObject *name, *pathname, *fob = NULL, *mod;
3789 FILE *fp;
3790
3791 if (!PyArg_ParseTuple(args, "UO&|O:load_dynamic",
3792 &name, PyUnicode_FSDecoder, &pathname, &fob))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003793 return NULL;
Victor Stinnerfefd70c2011-03-14 15:54:07 -04003794 if (fob != NULL) {
3795 fp = get_file(NULL, fob, "r");
Victor Stinnere9ddbf62011-03-22 10:46:35 +01003796 if (fp == NULL) {
3797 Py_DECREF(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003798 return NULL;
Victor Stinnere9ddbf62011-03-22 10:46:35 +01003799 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003800 }
Victor Stinnerfefd70c2011-03-14 15:54:07 -04003801 else
3802 fp = NULL;
3803 mod = _PyImport_LoadDynamicModule(name, pathname, fp);
Victor Stinnere9ddbf62011-03-22 10:46:35 +01003804 Py_DECREF(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003805 if (fp)
3806 fclose(fp);
Victor Stinnerfefd70c2011-03-14 15:54:07 -04003807 return mod;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003808}
3809
Guido van Rossum96a8fb71999-12-22 14:09:35 +00003810#endif /* HAVE_DYNAMIC_LOADING */
3811
Guido van Rossum79f25d91997-04-29 20:08:16 +00003812static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003813imp_load_source(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003814{
Victor Stinner2f42ae52011-03-20 00:41:24 +01003815 PyObject *name, *pathname;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003816 PyObject *fob = NULL;
3817 PyObject *m;
3818 FILE *fp;
Victor Stinner2f42ae52011-03-20 00:41:24 +01003819 if (!PyArg_ParseTuple(args, "UO&|O:load_source",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003820 &name,
Victor Stinner2f42ae52011-03-20 00:41:24 +01003821 PyUnicode_FSDecoder, &pathname,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003822 &fob))
3823 return NULL;
Victor Stinner2f42ae52011-03-20 00:41:24 +01003824 fp = get_file(pathname, fob, "r");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003825 if (fp == NULL) {
Victor Stinnerebc00522010-12-03 17:06:43 +00003826 Py_DECREF(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003827 return NULL;
3828 }
Victor Stinner2f42ae52011-03-20 00:41:24 +01003829 m = load_source_module(name, pathname, fp);
Victor Stinnerebc00522010-12-03 17:06:43 +00003830 Py_DECREF(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003831 fclose(fp);
3832 return m;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003833}
3834
Guido van Rossum79f25d91997-04-29 20:08:16 +00003835static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003836imp_load_module(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00003837{
Victor Stinner6ae1e7f2011-03-20 22:37:17 +01003838 PyObject *name, *fob, *pathname, *pathname_obj, *ret;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003839 char *suffix; /* Unused */
3840 char *mode;
3841 int type;
3842 FILE *fp;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00003843
Victor Stinner6ae1e7f2011-03-20 22:37:17 +01003844 if (!PyArg_ParseTuple(args, "UOO(ssi):load_module",
3845 &name, &fob, &pathname_obj, &suffix, &mode, &type))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003846 return NULL;
Victor Stinner6ae1e7f2011-03-20 22:37:17 +01003847 if (pathname_obj != Py_None) {
3848 if (!PyUnicode_FSDecoder(pathname_obj, &pathname))
3849 return NULL;
3850 }
3851 else
3852 pathname = NULL;
3853
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003854 if (*mode) {
3855 /* Mode must start with 'r' or 'U' and must not contain '+'.
3856 Implicit in this test is the assumption that the mode
3857 may contain other modifiers like 'b' or 't'. */
Guido van Rossum5e2c5fa2002-05-30 17:33:07 +00003858
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003859 if (!(*mode == 'r' || *mode == 'U') || strchr(mode, '+')) {
3860 PyErr_Format(PyExc_ValueError,
3861 "invalid file open mode %.200s", mode);
Victor Stinner6ae1e7f2011-03-20 22:37:17 +01003862 Py_XDECREF(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003863 return NULL;
3864 }
3865 }
3866 if (fob == Py_None)
3867 fp = NULL;
3868 else {
3869 fp = get_file(NULL, fob, mode);
3870 if (fp == NULL) {
Victor Stinner6ae1e7f2011-03-20 22:37:17 +01003871 Py_XDECREF(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003872 return NULL;
3873 }
3874 }
Victor Stinner41c5fec2011-03-13 21:46:30 -04003875 ret = load_module(name, fp, pathname, type, NULL);
Victor Stinner6ae1e7f2011-03-20 22:37:17 +01003876 Py_XDECREF(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003877 if (fp)
3878 fclose(fp);
3879 return ret;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00003880}
3881
3882static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003883imp_load_package(PyObject *self, PyObject *args)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00003884{
Victor Stinnerc9abda02011-03-14 13:33:46 -04003885 PyObject *name, *pathname;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003886 PyObject * ret;
Victor Stinnerc9abda02011-03-14 13:33:46 -04003887 if (!PyArg_ParseTuple(args, "UO&:load_package",
3888 &name, PyUnicode_FSDecoder, &pathname))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003889 return NULL;
Victor Stinnerc9abda02011-03-14 13:33:46 -04003890 ret = load_package(name, pathname);
Victor Stinnerebc00522010-12-03 17:06:43 +00003891 Py_DECREF(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003892 return ret;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00003893}
3894
3895static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003896imp_new_module(PyObject *self, PyObject *args)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003897{
Victor Stinnerfe19d212011-03-14 14:53:28 -04003898 PyObject *name;
3899 if (!PyArg_ParseTuple(args, "U:new_module", &name))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003900 return NULL;
Victor Stinnerfe19d212011-03-14 14:53:28 -04003901 return PyModule_NewObject(name);
Guido van Rossum1ae940a1995-01-02 19:04:15 +00003902}
3903
Christian Heimes13a7a212008-01-07 17:13:09 +00003904static PyObject *
3905imp_reload(PyObject *self, PyObject *v)
3906{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003907 return PyImport_ReloadModule(v);
Christian Heimes13a7a212008-01-07 17:13:09 +00003908}
3909
3910PyDoc_STRVAR(doc_reload,
3911"reload(module) -> module\n\
3912\n\
3913Reload the module. The module must have been successfully imported before.");
3914
Barry Warsaw28a691b2010-04-17 00:19:56 +00003915static PyObject *
3916imp_cache_from_source(PyObject *self, PyObject *args, PyObject *kws)
3917{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003918 static char *kwlist[] = {"path", "debug_override", NULL};
Barry Warsaw28a691b2010-04-17 00:19:56 +00003919
Victor Stinner2f42ae52011-03-20 00:41:24 +01003920 PyObject *pathname, *cpathname;
Benjamin Peterson294a9fc2010-10-16 03:12:39 +00003921 PyObject *debug_override = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003922 int debug = !Py_OptimizeFlag;
Barry Warsaw28a691b2010-04-17 00:19:56 +00003923
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003924 if (!PyArg_ParseTupleAndKeywords(
Victor Stinner3ea23dd2010-10-15 20:34:32 +00003925 args, kws, "O&|O", kwlist,
Victor Stinner2f42ae52011-03-20 00:41:24 +01003926 PyUnicode_FSDecoder, &pathname, &debug_override))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003927 return NULL;
Barry Warsaw28a691b2010-04-17 00:19:56 +00003928
Benjamin Peterson294a9fc2010-10-16 03:12:39 +00003929 if (debug_override != NULL &&
3930 (debug = PyObject_IsTrue(debug_override)) < 0) {
Victor Stinner2f42ae52011-03-20 00:41:24 +01003931 Py_DECREF(pathname);
Benjamin Peterson294a9fc2010-10-16 03:12:39 +00003932 return NULL;
3933 }
Barry Warsaw28a691b2010-04-17 00:19:56 +00003934
Martin v. Löwis30260a72011-10-23 17:35:46 +02003935 if (PyUnicode_READY(pathname) < 0)
3936 return NULL;
3937
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003938 cpathname = make_compiled_pathname(pathname, debug);
Victor Stinner2f42ae52011-03-20 00:41:24 +01003939 Py_DECREF(pathname);
Barry Warsaw28a691b2010-04-17 00:19:56 +00003940
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003941 if (cpathname == NULL) {
3942 PyErr_Format(PyExc_SystemError, "path buffer too short");
3943 return NULL;
3944 }
Victor Stinner2f42ae52011-03-20 00:41:24 +01003945 return cpathname;
Barry Warsaw28a691b2010-04-17 00:19:56 +00003946}
3947
3948PyDoc_STRVAR(doc_cache_from_source,
Éric Araujo5df11082011-11-03 03:38:44 +01003949"cache_from_source(path, [debug_override]) -> path\n\
3950Given the path to a .py file, return the path to its .pyc/.pyo file.\n\
Barry Warsaw28a691b2010-04-17 00:19:56 +00003951\n\
3952The .py file does not need to exist; this simply returns the path to the\n\
3953.pyc/.pyo file calculated as if the .py file were imported. The extension\n\
3954will be .pyc unless __debug__ is not defined, then it will be .pyo.\n\
3955\n\
3956If debug_override is not None, then it must be a boolean and is taken as\n\
3957the value of __debug__ instead.");
3958
3959static PyObject *
3960imp_source_from_cache(PyObject *self, PyObject *args, PyObject *kws)
3961{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003962 static char *kwlist[] = {"path", NULL};
Victor Stinnerc9abda02011-03-14 13:33:46 -04003963 PyObject *pathname, *source;
Barry Warsaw28a691b2010-04-17 00:19:56 +00003964
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003965 if (!PyArg_ParseTupleAndKeywords(
Victor Stinnerebc00522010-12-03 17:06:43 +00003966 args, kws, "O&", kwlist,
Victor Stinnerc9abda02011-03-14 13:33:46 -04003967 PyUnicode_FSDecoder, &pathname))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003968 return NULL;
Barry Warsaw28a691b2010-04-17 00:19:56 +00003969
Victor Stinnerc9abda02011-03-14 13:33:46 -04003970 source = make_source_pathname(pathname);
3971 if (source == NULL) {
3972 PyErr_Format(PyExc_ValueError, "Not a PEP 3147 pyc path: %R",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003973 pathname);
Victor Stinnerc9abda02011-03-14 13:33:46 -04003974 Py_DECREF(pathname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003975 return NULL;
3976 }
Victor Stinnerc9abda02011-03-14 13:33:46 -04003977 Py_DECREF(pathname);
3978 return source;
Barry Warsaw28a691b2010-04-17 00:19:56 +00003979}
3980
3981PyDoc_STRVAR(doc_source_from_cache,
Éric Araujo5df11082011-11-03 03:38:44 +01003982"source_from_cache(path) -> path\n\
3983Given the path to a .pyc./.pyo file, return the path to its .py file.\n\
Barry Warsaw28a691b2010-04-17 00:19:56 +00003984\n\
3985The .pyc/.pyo file does not need to exist; this simply returns the path to\n\
3986the .py file calculated to correspond to the .pyc/.pyo file. If path\n\
3987does not conform to PEP 3147 format, ValueError will be raised.");
3988
Guido van Rossum0207e6d1997-09-09 22:04:42 +00003989/* Doc strings */
3990
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003991PyDoc_STRVAR(doc_imp,
3992"This module provides the components needed to build your own\n\
3993__import__ function. Undocumented functions are obsolete.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00003994
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003995PyDoc_STRVAR(doc_find_module,
3996"find_module(name, [path]) -> (file, filename, (suffix, mode, type))\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00003997Search for a module. If path is omitted or None, search for a\n\
3998built-in, frozen or special module and continue search in sys.path.\n\
3999The module name cannot contain '.'; to search for a submodule of a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004000package, pass the submodule name and the package's __path__.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00004001
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004002PyDoc_STRVAR(doc_load_module,
4003"load_module(name, file, filename, (suffix, mode, type)) -> module\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00004004Load a module, given information returned by find_module().\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004005The module name must include the full package name, if any.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00004006
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004007PyDoc_STRVAR(doc_get_magic,
4008"get_magic() -> string\n\
4009Return the magic number for .pyc or .pyo files.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00004010
Barry Warsaw28a691b2010-04-17 00:19:56 +00004011PyDoc_STRVAR(doc_get_tag,
4012"get_tag() -> string\n\
4013Return the magic tag for .pyc or .pyo files.");
4014
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004015PyDoc_STRVAR(doc_get_suffixes,
4016"get_suffixes() -> [(suffix, mode, type), ...]\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00004017Return a list of (suffix, mode, type) tuples describing the files\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004018that find_module() looks for.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00004019
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004020PyDoc_STRVAR(doc_new_module,
4021"new_module(name) -> module\n\
Guido van Rossum0207e6d1997-09-09 22:04:42 +00004022Create a new module. Do not enter it in sys.modules.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004023The module name must include the full package name, if any.");
Guido van Rossum0207e6d1997-09-09 22:04:42 +00004024
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004025PyDoc_STRVAR(doc_lock_held,
Tim Petersa7c65092004-08-01 23:26:05 +00004026"lock_held() -> boolean\n\
4027Return True if the import lock is currently held, else False.\n\
4028On platforms without threads, return False.");
Tim Peters69232342001-08-30 05:16:13 +00004029
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00004030PyDoc_STRVAR(doc_acquire_lock,
4031"acquire_lock() -> None\n\
Neal Norwitz2294c0d2003-02-12 23:02:21 +00004032Acquires the interpreter's import lock for the current thread.\n\
4033This lock should be used by import hooks to ensure thread-safety\n\
4034when importing modules.\n\
Guido van Rossumc4f4ca92003-02-12 21:46:11 +00004035On platforms without threads, this function does nothing.");
4036
4037PyDoc_STRVAR(doc_release_lock,
4038"release_lock() -> None\n\
4039Release the interpreter's import lock.\n\
4040On platforms without threads, this function does nothing.");
4041
Guido van Rossum79f25d91997-04-29 20:08:16 +00004042static PyMethodDef imp_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004043 {"find_module", imp_find_module, METH_VARARGS, doc_find_module},
4044 {"get_magic", imp_get_magic, METH_NOARGS, doc_get_magic},
4045 {"get_tag", imp_get_tag, METH_NOARGS, doc_get_tag},
4046 {"get_suffixes", imp_get_suffixes, METH_NOARGS, doc_get_suffixes},
4047 {"load_module", imp_load_module, METH_VARARGS, doc_load_module},
4048 {"new_module", imp_new_module, METH_VARARGS, doc_new_module},
4049 {"lock_held", imp_lock_held, METH_NOARGS, doc_lock_held},
4050 {"acquire_lock", imp_acquire_lock, METH_NOARGS, doc_acquire_lock},
4051 {"release_lock", imp_release_lock, METH_NOARGS, doc_release_lock},
4052 {"reload", imp_reload, METH_O, doc_reload},
4053 {"cache_from_source", (PyCFunction)imp_cache_from_source,
4054 METH_VARARGS | METH_KEYWORDS, doc_cache_from_source},
4055 {"source_from_cache", (PyCFunction)imp_source_from_cache,
4056 METH_VARARGS | METH_KEYWORDS, doc_source_from_cache},
4057 /* The rest are obsolete */
4058 {"get_frozen_object", imp_get_frozen_object, METH_VARARGS},
4059 {"is_frozen_package", imp_is_frozen_package, METH_VARARGS},
4060 {"init_builtin", imp_init_builtin, METH_VARARGS},
4061 {"init_frozen", imp_init_frozen, METH_VARARGS},
4062 {"is_builtin", imp_is_builtin, METH_VARARGS},
4063 {"is_frozen", imp_is_frozen, METH_VARARGS},
4064 {"load_compiled", imp_load_compiled, METH_VARARGS},
Guido van Rossum96a8fb71999-12-22 14:09:35 +00004065#ifdef HAVE_DYNAMIC_LOADING
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004066 {"load_dynamic", imp_load_dynamic, METH_VARARGS},
Guido van Rossum96a8fb71999-12-22 14:09:35 +00004067#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004068 {"load_package", imp_load_package, METH_VARARGS},
4069 {"load_source", imp_load_source, METH_VARARGS},
Brett Cannon442c9b92011-03-23 16:14:42 -07004070 {"_fix_co_filename", imp_fix_co_filename, METH_VARARGS},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004071 {NULL, NULL} /* sentinel */
Guido van Rossum1ae940a1995-01-02 19:04:15 +00004072};
4073
Guido van Rossum1a8791e1998-08-04 22:46:29 +00004074static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004075setint(PyObject *d, char *name, int value)
Guido van Rossumaee0bad1997-09-05 07:33:22 +00004076{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004077 PyObject *v;
4078 int err;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00004079
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004080 v = PyLong_FromLong((long)value);
4081 err = PyDict_SetItemString(d, name, v);
4082 Py_XDECREF(v);
4083 return err;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00004084}
4085
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004086typedef struct {
4087 PyObject_HEAD
4088} NullImporter;
4089
4090static int
4091NullImporter_init(NullImporter *self, PyObject *args, PyObject *kwds)
4092{
Victor Stinner1a4d12d2010-08-13 13:07:29 +00004093#ifndef MS_WINDOWS
4094 PyObject *path;
4095 struct stat statbuf;
4096 int rv;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004097
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004098 if (!_PyArg_NoKeywords("NullImporter()", kwds))
4099 return -1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004100
Victor Stinner1a4d12d2010-08-13 13:07:29 +00004101 if (!PyArg_ParseTuple(args, "O&:NullImporter",
4102 PyUnicode_FSConverter, &path))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004103 return -1;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004104
Victor Stinner1a4d12d2010-08-13 13:07:29 +00004105 if (PyBytes_GET_SIZE(path) == 0) {
4106 Py_DECREF(path);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004107 PyErr_SetString(PyExc_ImportError, "empty pathname");
4108 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004109 }
Victor Stinner1a4d12d2010-08-13 13:07:29 +00004110
4111 rv = stat(PyBytes_AS_STRING(path), &statbuf);
4112 Py_DECREF(path);
4113 if (rv == 0) {
4114 /* it exists */
4115 if (S_ISDIR(statbuf.st_mode)) {
4116 /* it's a directory */
4117 PyErr_SetString(PyExc_ImportError, "existing directory");
4118 return -1;
4119 }
4120 }
4121#else /* MS_WINDOWS */
4122 PyObject *pathobj;
4123 DWORD rv;
Victor Stinner255dfdb2010-09-29 10:28:51 +00004124 wchar_t *path;
Victor Stinner1a4d12d2010-08-13 13:07:29 +00004125
4126 if (!_PyArg_NoKeywords("NullImporter()", kwds))
4127 return -1;
4128
4129 if (!PyArg_ParseTuple(args, "U:NullImporter",
4130 &pathobj))
4131 return -1;
4132
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004133 if (PyUnicode_GET_LENGTH(pathobj) == 0) {
Victor Stinner1a4d12d2010-08-13 13:07:29 +00004134 PyErr_SetString(PyExc_ImportError, "empty pathname");
4135 return -1;
4136 }
4137
Victor Stinnerbeb4135b2010-10-07 01:02:42 +00004138 path = PyUnicode_AsWideCharString(pathobj, NULL);
Victor Stinner255dfdb2010-09-29 10:28:51 +00004139 if (path == NULL)
Victor Stinner1a4d12d2010-08-13 13:07:29 +00004140 return -1;
4141 /* see issue1293 and issue3677:
4142 * stat() on Windows doesn't recognise paths like
4143 * "e:\\shared\\" and "\\\\whiterab-c2znlh\\shared" as dirs.
4144 */
4145 rv = GetFileAttributesW(path);
Victor Stinner255dfdb2010-09-29 10:28:51 +00004146 PyMem_Free(path);
Victor Stinner1a4d12d2010-08-13 13:07:29 +00004147 if (rv != INVALID_FILE_ATTRIBUTES) {
4148 /* it exists */
4149 if (rv & FILE_ATTRIBUTE_DIRECTORY) {
4150 /* it's a directory */
4151 PyErr_SetString(PyExc_ImportError, "existing directory");
4152 return -1;
4153 }
4154 }
4155#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004156 return 0;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004157}
4158
4159static PyObject *
4160NullImporter_find_module(NullImporter *self, PyObject *args)
4161{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004162 Py_RETURN_NONE;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004163}
4164
4165static PyMethodDef NullImporter_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004166 {"find_module", (PyCFunction)NullImporter_find_module, METH_VARARGS,
4167 "Always return None"
4168 },
4169 {NULL} /* Sentinel */
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004170};
4171
4172
Christian Heimes9cd17752007-11-18 19:35:23 +00004173PyTypeObject PyNullImporter_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004174 PyVarObject_HEAD_INIT(NULL, 0)
4175 "imp.NullImporter", /*tp_name*/
4176 sizeof(NullImporter), /*tp_basicsize*/
4177 0, /*tp_itemsize*/
4178 0, /*tp_dealloc*/
4179 0, /*tp_print*/
4180 0, /*tp_getattr*/
4181 0, /*tp_setattr*/
4182 0, /*tp_reserved*/
4183 0, /*tp_repr*/
4184 0, /*tp_as_number*/
4185 0, /*tp_as_sequence*/
4186 0, /*tp_as_mapping*/
4187 0, /*tp_hash */
4188 0, /*tp_call*/
4189 0, /*tp_str*/
4190 0, /*tp_getattro*/
4191 0, /*tp_setattro*/
4192 0, /*tp_as_buffer*/
4193 Py_TPFLAGS_DEFAULT, /*tp_flags*/
4194 "Null importer object", /* tp_doc */
4195 0, /* tp_traverse */
4196 0, /* tp_clear */
4197 0, /* tp_richcompare */
4198 0, /* tp_weaklistoffset */
4199 0, /* tp_iter */
4200 0, /* tp_iternext */
4201 NullImporter_methods, /* tp_methods */
4202 0, /* tp_members */
4203 0, /* tp_getset */
4204 0, /* tp_base */
4205 0, /* tp_dict */
4206 0, /* tp_descr_get */
4207 0, /* tp_descr_set */
4208 0, /* tp_dictoffset */
4209 (initproc)NullImporter_init, /* tp_init */
4210 0, /* tp_alloc */
4211 PyType_GenericNew /* tp_new */
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004212};
4213
Martin v. Löwis1a214512008-06-11 05:26:20 +00004214static struct PyModuleDef impmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004215 PyModuleDef_HEAD_INIT,
4216 "imp",
4217 doc_imp,
4218 0,
4219 imp_methods,
4220 NULL,
4221 NULL,
4222 NULL,
4223 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00004224};
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004225
Jason Tishler6bc06ec2003-09-04 11:59:50 +00004226PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00004227PyInit_imp(void)
Guido van Rossum1ae940a1995-01-02 19:04:15 +00004228{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004229 PyObject *m, *d;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00004230
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004231 if (PyType_Ready(&PyNullImporter_Type) < 0)
4232 return NULL;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004233
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004234 m = PyModule_Create(&impmodule);
4235 if (m == NULL)
4236 goto failure;
4237 d = PyModule_GetDict(m);
4238 if (d == NULL)
4239 goto failure;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00004240
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004241 if (setint(d, "SEARCH_ERROR", SEARCH_ERROR) < 0) goto failure;
4242 if (setint(d, "PY_SOURCE", PY_SOURCE) < 0) goto failure;
4243 if (setint(d, "PY_COMPILED", PY_COMPILED) < 0) goto failure;
4244 if (setint(d, "C_EXTENSION", C_EXTENSION) < 0) goto failure;
4245 if (setint(d, "PY_RESOURCE", PY_RESOURCE) < 0) goto failure;
4246 if (setint(d, "PKG_DIRECTORY", PKG_DIRECTORY) < 0) goto failure;
4247 if (setint(d, "C_BUILTIN", C_BUILTIN) < 0) goto failure;
4248 if (setint(d, "PY_FROZEN", PY_FROZEN) < 0) goto failure;
4249 if (setint(d, "PY_CODERESOURCE", PY_CODERESOURCE) < 0) goto failure;
4250 if (setint(d, "IMP_HOOK", IMP_HOOK) < 0) goto failure;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00004251
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004252 Py_INCREF(&PyNullImporter_Type);
4253 PyModule_AddObject(m, "NullImporter", (PyObject *)&PyNullImporter_Type);
4254 return m;
Guido van Rossumaee0bad1997-09-05 07:33:22 +00004255 failure:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004256 Py_XDECREF(m);
4257 return NULL;
Guido van Rossum1ae940a1995-01-02 19:04:15 +00004258}
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004259
4260
Guido van Rossumb18618d2000-05-03 23:44:39 +00004261/* API for embedding applications that want to add their own entries
4262 to the table of built-in modules. This should normally be called
4263 *before* Py_Initialize(). When the table resize fails, -1 is
4264 returned and the existing table is unchanged.
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004265
4266 After a similar function by Just van Rossum. */
4267
4268int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004269PyImport_ExtendInittab(struct _inittab *newtab)
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004270{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004271 static struct _inittab *our_copy = NULL;
4272 struct _inittab *p;
4273 int i, n;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004274
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004275 /* Count the number of entries in both tables */
4276 for (n = 0; newtab[n].name != NULL; n++)
4277 ;
4278 if (n == 0)
4279 return 0; /* Nothing to do */
4280 for (i = 0; PyImport_Inittab[i].name != NULL; i++)
4281 ;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004282
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004283 /* Allocate new memory for the combined table */
4284 p = our_copy;
4285 PyMem_RESIZE(p, struct _inittab, i+n+1);
4286 if (p == NULL)
4287 return -1;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004288
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004289 /* Copy the tables into the new memory */
4290 if (our_copy != PyImport_Inittab)
4291 memcpy(p, PyImport_Inittab, (i+1) * sizeof(struct _inittab));
4292 PyImport_Inittab = our_copy = p;
4293 memcpy(p+i, newtab, (n+1) * sizeof(struct _inittab));
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004294
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004295 return 0;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004296}
4297
4298/* Shorthand to add a single entry given a name and a function */
4299
4300int
Brett Cannona826f322009-04-02 03:41:46 +00004301PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void))
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004302{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004303 struct _inittab newtab[2];
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004304
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004305 memset(newtab, '\0', sizeof newtab);
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004306
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004307 newtab[0].name = (char *)name;
4308 newtab[0].initfunc = initfunc;
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004309
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004310 return PyImport_ExtendInittab(newtab);
Guido van Rossum09cae1f1998-05-14 02:32:54 +00004311}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004312
4313#ifdef __cplusplus
4314}
4315#endif