blob: cd3a4b25044144af6a89f6908e753d14445d35eb [file] [log] [blame]
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +00001
2/* Return the initial module search path. */
Guido van Rossumc4995721998-08-08 20:05:31 +00003/* Used by DOS, OS/2, Windows 3.1, Windows 95/98, Windows NT. */
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +00004
Guido van Rossum88716bb2000-03-30 19:45:39 +00005/* ----------------------------------------------------------------
6 PATH RULES FOR WINDOWS:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00007 This describes how sys.path is formed on Windows. It describes the
8 functionality, not the implementation (ie, the order in which these
Guido van Rossum88716bb2000-03-30 19:45:39 +00009 are actually fetched is different)
10
11 * Python always adds an empty entry at the start, which corresponds
12 to the current directory.
13
Georg Brandl7eb4b7d2005-07-22 21:49:32 +000014 * If the PYTHONPATH env. var. exists, its entries are added next.
Guido van Rossum88716bb2000-03-30 19:45:39 +000015
16 * We look in the registry for "application paths" - that is, sub-keys
17 under the main PythonPath registry key. These are added next (the
18 order of sub-key processing is undefined).
19 HKEY_CURRENT_USER is searched and added first.
20 HKEY_LOCAL_MACHINE is searched and added next.
21 (Note that all known installers only use HKLM, so HKCU is typically
22 empty)
23
24 * We attempt to locate the "Python Home" - if the PYTHONHOME env var
25 is set, we believe it. Otherwise, we use the path of our host .EXE's
Jeremy Hylton847a9962000-05-26 21:49:07 +000026 to try and locate our "landmark" (lib\\os.py) and deduce our home.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000027 - If we DO have a Python Home: The relevant sub-directories (Lib,
Georg Brandl6e47a332008-05-17 19:15:58 +000028 plat-win, etc) are based on the Python Home
Guido van Rossum88716bb2000-03-30 19:45:39 +000029 - If we DO NOT have a Python Home, the core Python Path is
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000030 loaded from the registry. This is the main PythonPath key,
Guido van Rossum88716bb2000-03-30 19:45:39 +000031 and both HKLM and HKCU are combined to form the path)
32
33 * Iff - we can not locate the Python Home, have not had a PYTHONPATH
34 specified, and can't locate any Registry entries (ie, we have _nothing_
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000035 we can assume is a good path), a default path with relative entries is
Guido van Rossum88716bb2000-03-30 19:45:39 +000036 used (eg. .\Lib;.\plat-win, etc)
37
38
39 The end result of all this is:
40 * When running python.exe, or any other .exe in the main Python directory
41 (either an installed version, or directly from the PCbuild directory),
42 the core path is deduced, and the core paths in the registry are
43 ignored. Other "application paths" in the registry are always read.
44
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000045 * When Python is hosted in another exe (different directory, embedded via
Guido van Rossum88716bb2000-03-30 19:45:39 +000046 COM, etc), the Python Home will not be deduced, so the core path from
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000047 the registry is used. Other "application paths" in the registry are
Guido van Rossum88716bb2000-03-30 19:45:39 +000048 always read.
49
50 * If Python can't find its home and there is no registry (eg, frozen
51 exe, some very strange installation setup) you get a path with
52 some default, but relative, paths.
53
Kristján Valur Jónsson3b69db22010-09-27 05:32:54 +000054 * An embedding application can use Py_SetPath() to override all of
55 these authomatic path computations.
56
Guido van Rossum88716bb2000-03-30 19:45:39 +000057 ---------------------------------------------------------------- */
58
59
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000060#include "Python.h"
61#include "osdefs.h"
Martin v. Löwis790465f2008-04-05 20:41:37 +000062#include <wchar.h>
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000063
Martin v. Löwis6238d2b2002-06-30 15:26:10 +000064#ifdef MS_WINDOWS
Guido van Rossum8f1b6511997-08-13 19:55:43 +000065#include <windows.h>
66#endif
67
Thomas Wouters0e3f5912006-08-11 14:57:12 +000068#ifdef HAVE_SYS_TYPES_H
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000069#include <sys/types.h>
Thomas Wouters0e3f5912006-08-11 14:57:12 +000070#endif /* HAVE_SYS_TYPES_H */
71
72#ifdef HAVE_SYS_STAT_H
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000073#include <sys/stat.h>
Thomas Wouters0e3f5912006-08-11 14:57:12 +000074#endif /* HAVE_SYS_STAT_H */
75
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000076#include <string.h>
77
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000078/* Search in some common locations for the associated Python libraries.
79 *
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000080 * Py_GetPath() tries to return a sensible Python module search path.
81 *
Guido van Rossum42a97441998-02-19 21:00:45 +000082 * The approach is an adaptation for Windows of the strategy used in
83 * ../Modules/getpath.c; it uses the Windows Registry as one of its
84 * information sources.
Kristján Valur Jónsson3b69db22010-09-27 05:32:54 +000085 *
86 * Py_SetPath() can be used to override this mechanism. Call Py_SetPath
87 * with a semicolon separated path prior to calling Py_Initialize.
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000088 */
89
90#ifndef LANDMARK
Martin v. Löwis790465f2008-04-05 20:41:37 +000091#define LANDMARK L"lib\\os.py"
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000092#endif
93
Martin v. Löwis790465f2008-04-05 20:41:37 +000094static wchar_t prefix[MAXPATHLEN+1];
95static wchar_t progpath[MAXPATHLEN+1];
96static wchar_t dllpath[MAXPATHLEN+1];
97static wchar_t *module_search_path = NULL;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000098
Guido van Rossumeea14491997-08-13 21:30:44 +000099
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000100static int
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000101is_sep(wchar_t ch) /* determine if "ch" is a separator character */
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000102{
103#ifdef ALTSEP
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000104 return ch == SEP || ch == ALTSEP;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000105#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000106 return ch == SEP;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000107#endif
108}
109
Mark Hammond8bf9e3b2000-10-07 11:10:50 +0000110/* assumes 'dir' null terminated in bounds. Never writes
111 beyond existing terminator.
112*/
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000113static void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000114reduce(wchar_t *dir)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000115{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000116 size_t i = wcslen(dir);
117 while (i > 0 && !is_sep(dir[i]))
118 --i;
119 dir[i] = '\0';
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000120}
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000121
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000122
123static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000124exists(wchar_t *filename)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000125{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000126 return GetFileAttributesW(filename) != 0xFFFFFFFF;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000127}
128
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000129/* Assumes 'filename' MAXPATHLEN+1 bytes long -
Mark Hammond8bf9e3b2000-10-07 11:10:50 +0000130 may extend 'filename' by one character.
131*/
Guido van Rossum43ff1141998-08-08 23:40:40 +0000132static int
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000133ismodule(wchar_t *filename) /* Is module -- check for .pyc/.pyo too */
Guido van Rossum43ff1141998-08-08 23:40:40 +0000134{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000135 if (exists(filename))
136 return 1;
Guido van Rossum43ff1141998-08-08 23:40:40 +0000137
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000138 /* Check for the compiled version of prefix. */
139 if (wcslen(filename) < MAXPATHLEN) {
140 wcscat(filename, Py_OptimizeFlag ? L"o" : L"c");
141 if (exists(filename))
142 return 1;
143 }
144 return 0;
Guido van Rossum43ff1141998-08-08 23:40:40 +0000145}
146
Tim Peters8484fbf2004-08-07 19:12:27 +0000147/* Add a path component, by appending stuff to buffer.
148 buffer must have at least MAXPATHLEN + 1 bytes allocated, and contain a
149 NUL-terminated string with no more than MAXPATHLEN characters (not counting
150 the trailing NUL). It's a fatal error if it contains a string longer than
151 that (callers must be careful!). If these requirements are met, it's
152 guaranteed that buffer will still be a NUL-terminated string with no more
153 than MAXPATHLEN characters at exit. If stuff is too long, only as much of
154 stuff as fits will be appended.
155*/
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000156static void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000157join(wchar_t *buffer, wchar_t *stuff)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000158{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000159 size_t n, k;
160 if (is_sep(stuff[0]))
161 n = 0;
162 else {
163 n = wcslen(buffer);
164 if (n > 0 && !is_sep(buffer[n-1]) && n < MAXPATHLEN)
165 buffer[n++] = SEP;
166 }
167 if (n > MAXPATHLEN)
168 Py_FatalError("buffer overflow in getpathp.c's joinpath()");
169 k = wcslen(stuff);
170 if (n + k > MAXPATHLEN)
171 k = MAXPATHLEN - n;
172 wcsncpy(buffer+n, stuff, k);
173 buffer[n+k] = '\0';
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000174}
175
Mark Hammond8bf9e3b2000-10-07 11:10:50 +0000176/* gotlandmark only called by search_for_prefix, which ensures
177 'prefix' is null terminated in bounds. join() ensures
178 'landmark' can not overflow prefix if too long.
179*/
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000180static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000181gotlandmark(wchar_t *landmark)
Guido van Rossume02e48b2000-03-29 01:49:47 +0000182{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000183 int ok;
184 Py_ssize_t n;
Guido van Rossume02e48b2000-03-29 01:49:47 +0000185
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000186 n = wcslen(prefix);
187 join(prefix, landmark);
188 ok = ismodule(prefix);
189 prefix[n] = '\0';
190 return ok;
Guido van Rossume02e48b2000-03-29 01:49:47 +0000191}
192
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000193/* assumes argv0_path is MAXPATHLEN+1 bytes long, already \0 term'd.
Mark Hammond8bf9e3b2000-10-07 11:10:50 +0000194 assumption provided by only caller, calculate_path() */
Guido van Rossume02e48b2000-03-29 01:49:47 +0000195static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000196search_for_prefix(wchar_t *argv0_path, wchar_t *landmark)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000197{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000198 /* Search from argv0_path, until landmark is found */
199 wcscpy(prefix, argv0_path);
200 do {
201 if (gotlandmark(landmark))
202 return 1;
203 reduce(prefix);
204 } while (prefix[0]);
205 return 0;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000206}
207
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000208#ifdef MS_WINDOWS
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000209#ifdef Py_ENABLE_SHARED
Guido van Rossum43ff1141998-08-08 23:40:40 +0000210
Guido van Rossum88716bb2000-03-30 19:45:39 +0000211/* a string loaded from the DLL at startup.*/
212extern const char *PyWin_DLLVersionString;
Guido van Rossum271f9771997-09-29 23:39:31 +0000213
Guido van Rossumeea14491997-08-13 21:30:44 +0000214
215/* Load a PYTHONPATH value from the registry.
216 Load from either HKEY_LOCAL_MACHINE or HKEY_CURRENT_USER.
217
Guido van Rossum88716bb2000-03-30 19:45:39 +0000218 Works in both Unicode and 8bit environments. Only uses the
219 Ex family of functions so it also works with Windows CE.
220
Guido van Rossumeea14491997-08-13 21:30:44 +0000221 Returns NULL, or a pointer that should be freed.
Mark Hammond5edc6272001-02-23 11:38:38 +0000222
223 XXX - this code is pretty strange, as it used to also
224 work on Win16, where the buffer sizes werent available
225 in advance. It could be simplied now Win16/Win32s is dead!
Guido van Rossumeea14491997-08-13 21:30:44 +0000226*/
227
Martin v. Löwis790465f2008-04-05 20:41:37 +0000228static wchar_t *
Guido van Rossum88716bb2000-03-30 19:45:39 +0000229getpythonregpath(HKEY keyBase, int skipcore)
Guido van Rossumeea14491997-08-13 21:30:44 +0000230{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000231 HKEY newKey = 0;
232 DWORD dataSize = 0;
233 DWORD numKeys = 0;
234 LONG rc;
235 wchar_t *retval = NULL;
236 WCHAR *dataBuf = NULL;
237 static const WCHAR keyPrefix[] = L"Software\\Python\\PythonCore\\";
238 static const WCHAR keySuffix[] = L"\\PythonPath";
239 size_t versionLen;
240 DWORD index;
241 WCHAR *keyBuf = NULL;
242 WCHAR *keyBufPtr;
243 WCHAR **ppPaths = NULL;
Guido van Rossum271f9771997-09-29 23:39:31 +0000244
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000245 /* Tried to use sysget("winver") but here is too early :-( */
246 versionLen = strlen(PyWin_DLLVersionString);
247 /* Space for all the chars, plus one \0 */
248 keyBuf = keyBufPtr = malloc(sizeof(keyPrefix) +
249 sizeof(WCHAR)*(versionLen-1) +
250 sizeof(keySuffix));
251 if (keyBuf==NULL) goto done;
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000252
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000253 memcpy(keyBufPtr, keyPrefix, sizeof(keyPrefix)-sizeof(WCHAR));
254 keyBufPtr += sizeof(keyPrefix)/sizeof(WCHAR) - 1;
255 mbstowcs(keyBufPtr, PyWin_DLLVersionString, versionLen);
256 keyBufPtr += versionLen;
257 /* NULL comes with this one! */
258 memcpy(keyBufPtr, keySuffix, sizeof(keySuffix));
259 /* Open the root Python key */
260 rc=RegOpenKeyExW(keyBase,
261 keyBuf, /* subkey */
262 0, /* reserved */
263 KEY_READ,
264 &newKey);
265 if (rc!=ERROR_SUCCESS) goto done;
266 /* Find out how big our core buffer is, and how many subkeys we have */
267 rc = RegQueryInfoKey(newKey, NULL, NULL, NULL, &numKeys, NULL, NULL,
268 NULL, NULL, &dataSize, NULL, NULL);
269 if (rc!=ERROR_SUCCESS) goto done;
270 if (skipcore) dataSize = 0; /* Only count core ones if we want them! */
271 /* Allocate a temp array of char buffers, so we only need to loop
272 reading the registry once
273 */
274 ppPaths = malloc( sizeof(WCHAR *) * numKeys );
275 if (ppPaths==NULL) goto done;
276 memset(ppPaths, 0, sizeof(WCHAR *) * numKeys);
277 /* Loop over all subkeys, allocating a temp sub-buffer. */
278 for(index=0;index<numKeys;index++) {
279 WCHAR keyBuf[MAX_PATH+1];
280 HKEY subKey = 0;
281 DWORD reqdSize = MAX_PATH+1;
282 /* Get the sub-key name */
283 DWORD rc = RegEnumKeyExW(newKey, index, keyBuf, &reqdSize,
284 NULL, NULL, NULL, NULL );
285 if (rc!=ERROR_SUCCESS) goto done;
286 /* Open the sub-key */
287 rc=RegOpenKeyExW(newKey,
288 keyBuf, /* subkey */
289 0, /* reserved */
290 KEY_READ,
291 &subKey);
292 if (rc!=ERROR_SUCCESS) goto done;
293 /* Find the value of the buffer size, malloc, then read it */
294 RegQueryValueExW(subKey, NULL, 0, NULL, NULL, &reqdSize);
295 if (reqdSize) {
296 ppPaths[index] = malloc(reqdSize);
297 if (ppPaths[index]) {
298 RegQueryValueExW(subKey, NULL, 0, NULL,
299 (LPBYTE)ppPaths[index],
300 &reqdSize);
301 dataSize += reqdSize + 1; /* 1 for the ";" */
302 }
303 }
304 RegCloseKey(subKey);
305 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000306
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000307 /* return null if no path to return */
308 if (dataSize == 0) goto done;
309
310 /* original datasize from RegQueryInfo doesn't include the \0 */
311 dataBuf = malloc((dataSize+1) * sizeof(WCHAR));
312 if (dataBuf) {
313 WCHAR *szCur = dataBuf;
314 DWORD reqdSize = dataSize;
315 /* Copy our collected strings */
316 for (index=0;index<numKeys;index++) {
317 if (index > 0) {
318 *(szCur++) = L';';
319 dataSize--;
320 }
321 if (ppPaths[index]) {
322 Py_ssize_t len = wcslen(ppPaths[index]);
323 wcsncpy(szCur, ppPaths[index], len);
324 szCur += len;
325 assert(dataSize > (DWORD)len);
326 dataSize -= (DWORD)len;
327 }
328 }
329 if (skipcore)
330 *szCur = '\0';
331 else {
332 /* If we have no values, we dont need a ';' */
333 if (numKeys) {
334 *(szCur++) = L';';
335 dataSize--;
336 }
337 /* Now append the core path entries -
338 this will include the NULL
339 */
340 rc = RegQueryValueExW(newKey, NULL, 0, NULL,
341 (LPBYTE)szCur, &dataSize);
342 }
343 /* And set the result - caller must free */
344 retval = dataBuf;
345 }
Guido van Rossum88716bb2000-03-30 19:45:39 +0000346done:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000347 /* Loop freeing my temp buffers */
348 if (ppPaths) {
349 for(index=0;index<numKeys;index++)
350 if (ppPaths[index]) free(ppPaths[index]);
351 free(ppPaths);
352 }
353 if (newKey)
354 RegCloseKey(newKey);
355 if (keyBuf)
356 free(keyBuf);
357 return retval;
Guido van Rossumeea14491997-08-13 21:30:44 +0000358}
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000359#endif /* Py_ENABLE_SHARED */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000360#endif /* MS_WINDOWS */
Guido van Rossumeea14491997-08-13 21:30:44 +0000361
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000362static void
Thomas Wouters78890102000-07-22 19:25:51 +0000363get_progpath(void)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000364{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000365 extern wchar_t *Py_GetProgramName(void);
366 wchar_t *path = _wgetenv(L"PATH");
367 wchar_t *prog = Py_GetProgramName();
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000368
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000369#ifdef MS_WINDOWS
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000370#ifdef Py_ENABLE_SHARED
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000371 extern HANDLE PyWin_DLLhModule;
372 /* static init of progpath ensures final char remains \0 */
373 if (PyWin_DLLhModule)
374 if (!GetModuleFileNameW(PyWin_DLLhModule, dllpath, MAXPATHLEN))
375 dllpath[0] = 0;
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000376#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000377 dllpath[0] = 0;
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000378#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000379 if (GetModuleFileNameW(NULL, progpath, MAXPATHLEN))
380 return;
Guido van Rossumeea14491997-08-13 21:30:44 +0000381#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000382 if (prog == NULL || *prog == '\0')
383 prog = L"python";
Guido van Rossumeea14491997-08-13 21:30:44 +0000384
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000385 /* If there is no slash in the argv0 path, then we have to
386 * assume python is on the user's $PATH, since there's no
387 * other way to find a directory to start the search from. If
388 * $PATH isn't exported, you lose.
389 */
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000390#ifdef ALTSEP
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000391 if (wcschr(prog, SEP) || wcschr(prog, ALTSEP))
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000392#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000393 if (wcschr(prog, SEP))
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000394#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000395 wcsncpy(progpath, prog, MAXPATHLEN);
396 else if (path) {
397 while (1) {
398 wchar_t *delim = wcschr(path, DELIM);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000399
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000400 if (delim) {
401 size_t len = delim - path;
402 /* ensure we can't overwrite buffer */
403 len = min(MAXPATHLEN,len);
404 wcsncpy(progpath, path, len);
405 *(progpath + len) = '\0';
406 }
407 else
408 wcsncpy(progpath, path, MAXPATHLEN);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000409
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000410 /* join() is safe for MAXPATHLEN+1 size buffer */
411 join(progpath, prog);
412 if (exists(progpath))
413 break;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000414
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000415 if (!delim) {
416 progpath[0] = '\0';
417 break;
418 }
419 path = delim + 1;
420 }
421 }
422 else
423 progpath[0] = '\0';
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000424}
425
426static void
Thomas Wouters78890102000-07-22 19:25:51 +0000427calculate_path(void)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000428{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000429 wchar_t argv0_path[MAXPATHLEN+1];
430 wchar_t *buf;
431 size_t bufsz;
432 wchar_t *pythonhome = Py_GetPythonHome();
433 wchar_t *envpath = NULL;
Guido van Rossumeea14491997-08-13 21:30:44 +0000434
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000435#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000436 int skiphome, skipdefault;
437 wchar_t *machinepath = NULL;
438 wchar_t *userpath = NULL;
439 wchar_t zip_path[MAXPATHLEN+1];
440 size_t len;
Amaury Forgeot d'Arc66f8c432009-06-09 21:30:01 +0000441
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000442 if (!Py_IgnoreEnvironmentFlag) {
443 envpath = _wgetenv(L"PYTHONPATH");
444 }
Amaury Forgeot d'Arc66f8c432009-06-09 21:30:01 +0000445#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000446 char *_envpath = Py_GETENV("PYTHONPATH");
447 wchar_t wenvpath[MAXPATHLEN+1];
448 if (_envpath) {
449 size_t r = mbstowcs(wenvpath, _envpath, MAXPATHLEN+1);
450 envpath = wenvpath;
451 if (r == (size_t)-1 || r >= MAXPATHLEN)
452 envpath = NULL;
453 }
Amaury Forgeot d'Arc66f8c432009-06-09 21:30:01 +0000454#endif
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000455
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000456 get_progpath();
457 /* progpath guaranteed \0 terminated in MAXPATH+1 bytes. */
458 wcscpy(argv0_path, progpath);
459 reduce(argv0_path);
460 if (pythonhome == NULL || *pythonhome == '\0') {
461 if (search_for_prefix(argv0_path, LANDMARK))
462 pythonhome = prefix;
463 else
464 pythonhome = NULL;
465 }
466 else
467 wcsncpy(prefix, pythonhome, MAXPATHLEN);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000468
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000469 if (envpath && *envpath == '\0')
470 envpath = NULL;
Guido van Rossumeea14491997-08-13 21:30:44 +0000471
Guido van Rossume02e48b2000-03-29 01:49:47 +0000472
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000473#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000474 /* Calculate zip archive path */
475 if (dllpath[0]) /* use name of python DLL */
476 wcsncpy(zip_path, dllpath, MAXPATHLEN);
477 else /* use name of executable program */
478 wcsncpy(zip_path, progpath, MAXPATHLEN);
479 zip_path[MAXPATHLEN] = '\0';
480 len = wcslen(zip_path);
481 if (len > 4) {
482 zip_path[len-3] = 'z'; /* change ending to "zip" */
483 zip_path[len-2] = 'i';
484 zip_path[len-1] = 'p';
485 }
486 else {
487 zip_path[0] = 0;
488 }
489
490 skiphome = pythonhome==NULL ? 0 : 1;
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000491#ifdef Py_ENABLE_SHARED
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000492 machinepath = getpythonregpath(HKEY_LOCAL_MACHINE, skiphome);
493 userpath = getpythonregpath(HKEY_CURRENT_USER, skiphome);
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000494#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000495 /* We only use the default relative PYTHONPATH if we havent
496 anything better to use! */
497 skipdefault = envpath!=NULL || pythonhome!=NULL || \
498 machinepath!=NULL || userpath!=NULL;
Guido van Rossum43ff1141998-08-08 23:40:40 +0000499#endif
500
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000501 /* We need to construct a path from the following parts.
502 (1) the PYTHONPATH environment variable, if set;
503 (2) for Win32, the zip archive file path;
504 (3) for Win32, the machinepath and userpath, if set;
505 (4) the PYTHONPATH config macro, with the leading "."
506 of each component replaced with pythonhome, if set;
507 (5) the directory containing the executable (argv0_path).
508 The length calculation calculates #4 first.
509 Extra rules:
510 - If PYTHONHOME is set (in any way) item (3) is ignored.
511 - If registry values are used, (4) and (5) are ignored.
512 */
Guido van Rossumeea14491997-08-13 21:30:44 +0000513
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000514 /* Calculate size of return buffer */
515 if (pythonhome != NULL) {
516 wchar_t *p;
517 bufsz = 1;
518 for (p = PYTHONPATH; *p; p++) {
519 if (*p == DELIM)
520 bufsz++; /* number of DELIM plus one */
521 }
522 bufsz *= wcslen(pythonhome);
523 }
524 else
525 bufsz = 0;
526 bufsz += wcslen(PYTHONPATH) + 1;
527 bufsz += wcslen(argv0_path) + 1;
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000528#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000529 if (userpath)
530 bufsz += wcslen(userpath) + 1;
531 if (machinepath)
532 bufsz += wcslen(machinepath) + 1;
533 bufsz += wcslen(zip_path) + 1;
Guido van Rossumeea14491997-08-13 21:30:44 +0000534#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000535 if (envpath != NULL)
536 bufsz += wcslen(envpath) + 1;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000537
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000538 module_search_path = buf = malloc(bufsz*sizeof(wchar_t));
539 if (buf == NULL) {
540 /* We can't exit, so print a warning and limp along */
541 fprintf(stderr, "Can't malloc dynamic PYTHONPATH.\n");
542 if (envpath) {
543 fprintf(stderr, "Using environment $PYTHONPATH.\n");
544 module_search_path = envpath;
545 }
546 else {
547 fprintf(stderr, "Using default static path.\n");
548 module_search_path = PYTHONPATH;
549 }
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000550#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000551 if (machinepath)
552 free(machinepath);
553 if (userpath)
554 free(userpath);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000555#endif /* MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000556 return;
557 }
Guido van Rossumeea14491997-08-13 21:30:44 +0000558
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000559 if (envpath) {
560 wcscpy(buf, envpath);
561 buf = wcschr(buf, L'\0');
562 *buf++ = DELIM;
563 }
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000564#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000565 if (zip_path[0]) {
566 wcscpy(buf, zip_path);
567 buf = wcschr(buf, L'\0');
568 *buf++ = DELIM;
569 }
570 if (userpath) {
571 wcscpy(buf, userpath);
572 buf = wcschr(buf, L'\0');
573 *buf++ = DELIM;
574 free(userpath);
575 }
576 if (machinepath) {
577 wcscpy(buf, machinepath);
578 buf = wcschr(buf, L'\0');
579 *buf++ = DELIM;
580 free(machinepath);
581 }
582 if (pythonhome == NULL) {
583 if (!skipdefault) {
584 wcscpy(buf, PYTHONPATH);
585 buf = wcschr(buf, L'\0');
586 }
587 }
Guido van Rossum88716bb2000-03-30 19:45:39 +0000588#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000589 if (pythonhome == NULL) {
590 wcscpy(buf, PYTHONPATH);
591 buf = wcschr(buf, L'\0');
592 }
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000593#endif /* MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000594 else {
595 wchar_t *p = PYTHONPATH;
596 wchar_t *q;
597 size_t n;
598 for (;;) {
599 q = wcschr(p, DELIM);
600 if (q == NULL)
601 n = wcslen(p);
602 else
603 n = q-p;
604 if (p[0] == '.' && is_sep(p[1])) {
605 wcscpy(buf, pythonhome);
606 buf = wcschr(buf, L'\0');
607 p++;
608 n--;
609 }
610 wcsncpy(buf, p, n);
611 buf += n;
612 if (q == NULL)
613 break;
614 *buf++ = DELIM;
615 p = q+1;
616 }
617 }
618 if (argv0_path) {
619 *buf++ = DELIM;
620 wcscpy(buf, argv0_path);
621 buf = wcschr(buf, L'\0');
622 }
623 *buf = L'\0';
624 /* Now to pull one last hack/trick. If sys.prefix is
625 empty, then try and find it somewhere on the paths
626 we calculated. We scan backwards, as our general policy
627 is that Python core directories are at the *end* of
628 sys.path. We assume that our "lib" directory is
629 on the path, and that our 'prefix' directory is
630 the parent of that.
631 */
632 if (*prefix==L'\0') {
633 wchar_t lookBuf[MAXPATHLEN+1];
634 wchar_t *look = buf - 1; /* 'buf' is at the end of the buffer */
635 while (1) {
636 Py_ssize_t nchars;
637 wchar_t *lookEnd = look;
638 /* 'look' will end up one character before the
639 start of the path in question - even if this
640 is one character before the start of the buffer
641 */
642 while (look >= module_search_path && *look != DELIM)
643 look--;
644 nchars = lookEnd-look;
645 wcsncpy(lookBuf, look+1, nchars);
646 lookBuf[nchars] = L'\0';
647 /* Up one level to the parent */
648 reduce(lookBuf);
649 if (search_for_prefix(lookBuf, LANDMARK)) {
650 break;
651 }
652 /* If we are out of paths to search - give up */
653 if (look < module_search_path)
654 break;
655 look--;
656 }
657 }
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000658}
659
660
661/* External interface */
662
Kristján Valur Jónsson3b69db22010-09-27 05:32:54 +0000663void
664Py_SetPath(const wchar_t *path)
665{
666 if (module_search_path != NULL) {
667 free(module_search_path);
668 module_search_path = NULL;
669 }
670 if (path != NULL) {
671 extern wchar_t *Py_GetProgramName(void);
672 wchar_t *prog = Py_GetProgramName();
673 wcsncpy(progpath, prog, MAXPATHLEN);
674 prefix[0] = L'\0';
675 module_search_path = malloc((wcslen(path) + 1) * sizeof(wchar_t));
676 if (module_search_path != NULL)
677 wcscpy(module_search_path, path);
678 }
679}
680
Martin v. Löwis790465f2008-04-05 20:41:37 +0000681wchar_t *
Thomas Wouters78890102000-07-22 19:25:51 +0000682Py_GetPath(void)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000683{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000684 if (!module_search_path)
685 calculate_path();
686 return module_search_path;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000687}
688
Martin v. Löwis790465f2008-04-05 20:41:37 +0000689wchar_t *
Thomas Wouters78890102000-07-22 19:25:51 +0000690Py_GetPrefix(void)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000691{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000692 if (!module_search_path)
693 calculate_path();
694 return prefix;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000695}
696
Martin v. Löwis790465f2008-04-05 20:41:37 +0000697wchar_t *
Thomas Wouters78890102000-07-22 19:25:51 +0000698Py_GetExecPrefix(void)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000699{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000700 return Py_GetPrefix();
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000701}
702
Martin v. Löwis790465f2008-04-05 20:41:37 +0000703wchar_t *
Thomas Wouters78890102000-07-22 19:25:51 +0000704Py_GetProgramFullPath(void)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000705{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000706 if (!module_search_path)
707 calculate_path();
708 return progpath;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000709}
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000710
711/* Load python3.dll before loading any extension module that might refer
712 to it. That way, we can be sure that always the python3.dll corresponding
713 to this python DLL is loaded, not a python3.dll that might be on the path
714 by chance.
715 Return whether the DLL was found.
716*/
717static int python3_checked = 0;
718static HANDLE hPython3;
719int
720_Py_CheckPython3()
721{
722 wchar_t py3path[MAXPATHLEN+1];
723 wchar_t *s;
724 if (python3_checked)
725 return hPython3 != NULL;
726 python3_checked = 1;
727
728 /* If there is a python3.dll next to the python3y.dll,
729 assume this is a build tree; use that DLL */
730 wcscpy(py3path, dllpath);
731 s = wcsrchr(py3path, L'\\');
732 if (!s)
733 s = py3path;
734 wcscpy(s, L"\\python3.dll");
735 hPython3 = LoadLibraryExW(py3path, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
736 if (hPython3 != NULL)
737 return 1;
738
739 /* Check sys.prefix\DLLs\python3.dll */
740 wcscpy(py3path, Py_GetPrefix());
741 wcscat(py3path, L"\\DLLs\\python3.dll");
742 hPython3 = LoadLibraryExW(py3path, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
743 return hPython3 != NULL;
744}