blob: 36abbf24abcfec215cef1b5032d5030c19586a0c [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:
7 This describes how sys.path is formed on Windows. It describes the
8 functionality, not the implementation (ie, the order in which these
9 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.
Guido van Rossum88716bb2000-03-30 19:45:39 +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
30 loaded from the registry. This is the main PythonPath key,
31 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_
35 we can assume is a good path), a default path with relative entries is
36 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
45 * When Python is hosted in another exe (different directory, embedded via
46 COM, etc), the Python Home will not be deduced, so the core path from
Mark Hammond19fdbfb2001-09-07 14:08:01 +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
54 ---------------------------------------------------------------- */
55
56
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000057#include "Python.h"
58#include "osdefs.h"
Martin v. Löwis790465f2008-04-05 20:41:37 +000059#include <wchar.h>
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000060
Martin v. Löwis6238d2b2002-06-30 15:26:10 +000061#ifdef MS_WINDOWS
Guido van Rossum8f1b6511997-08-13 19:55:43 +000062#include <windows.h>
63#endif
64
Thomas Wouters0e3f5912006-08-11 14:57:12 +000065#ifdef HAVE_SYS_TYPES_H
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000066#include <sys/types.h>
Thomas Wouters0e3f5912006-08-11 14:57:12 +000067#endif /* HAVE_SYS_TYPES_H */
68
69#ifdef HAVE_SYS_STAT_H
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000070#include <sys/stat.h>
Thomas Wouters0e3f5912006-08-11 14:57:12 +000071#endif /* HAVE_SYS_STAT_H */
72
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000073#include <string.h>
74
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000075/* Search in some common locations for the associated Python libraries.
76 *
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000077 * Py_GetPath() tries to return a sensible Python module search path.
78 *
Guido van Rossum42a97441998-02-19 21:00:45 +000079 * The approach is an adaptation for Windows of the strategy used in
80 * ../Modules/getpath.c; it uses the Windows Registry as one of its
81 * information sources.
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000082 */
83
84#ifndef LANDMARK
Martin v. Löwis790465f2008-04-05 20:41:37 +000085#define LANDMARK L"lib\\os.py"
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000086#endif
87
Martin v. Löwis790465f2008-04-05 20:41:37 +000088static wchar_t prefix[MAXPATHLEN+1];
89static wchar_t progpath[MAXPATHLEN+1];
90static wchar_t dllpath[MAXPATHLEN+1];
91static wchar_t *module_search_path = NULL;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000092
Guido van Rossumeea14491997-08-13 21:30:44 +000093
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000094static int
Martin v. Löwis790465f2008-04-05 20:41:37 +000095is_sep(wchar_t ch) /* determine if "ch" is a separator character */
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +000096{
97#ifdef ALTSEP
98 return ch == SEP || ch == ALTSEP;
99#else
100 return ch == SEP;
101#endif
102}
103
Mark Hammond8bf9e3b2000-10-07 11:10:50 +0000104/* assumes 'dir' null terminated in bounds. Never writes
105 beyond existing terminator.
106*/
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000107static void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000108reduce(wchar_t *dir)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000109{
Martin v. Löwis790465f2008-04-05 20:41:37 +0000110 size_t i = wcslen(dir);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000111 while (i > 0 && !is_sep(dir[i]))
112 --i;
113 dir[i] = '\0';
114}
115
116
117static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000118exists(wchar_t *filename)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000119{
Amaury Forgeot d'Arc3d17a5c2008-06-13 01:09:34 +0000120 return GetFileAttributesW(filename) != 0xFFFFFFFF;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000121}
122
Mark Hammond8bf9e3b2000-10-07 11:10:50 +0000123/* Assumes 'filename' MAXPATHLEN+1 bytes long -
124 may extend 'filename' by one character.
125*/
Guido van Rossum43ff1141998-08-08 23:40:40 +0000126static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000127ismodule(wchar_t *filename) /* Is module -- check for .pyc/.pyo too */
Guido van Rossum43ff1141998-08-08 23:40:40 +0000128{
129 if (exists(filename))
130 return 1;
131
132 /* Check for the compiled version of prefix. */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000133 if (wcslen(filename) < MAXPATHLEN) {
134 wcscat(filename, Py_OptimizeFlag ? L"o" : L"c");
Guido van Rossum43ff1141998-08-08 23:40:40 +0000135 if (exists(filename))
136 return 1;
137 }
138 return 0;
139}
140
Tim Peters8484fbf2004-08-07 19:12:27 +0000141/* Add a path component, by appending stuff to buffer.
142 buffer must have at least MAXPATHLEN + 1 bytes allocated, and contain a
143 NUL-terminated string with no more than MAXPATHLEN characters (not counting
144 the trailing NUL). It's a fatal error if it contains a string longer than
145 that (callers must be careful!). If these requirements are met, it's
146 guaranteed that buffer will still be a NUL-terminated string with no more
147 than MAXPATHLEN characters at exit. If stuff is too long, only as much of
148 stuff as fits will be appended.
149*/
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000150static void
Martin v. Löwis790465f2008-04-05 20:41:37 +0000151join(wchar_t *buffer, wchar_t *stuff)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000152{
Guido van Rossum1c44e282000-06-28 22:20:06 +0000153 size_t n, k;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000154 if (is_sep(stuff[0]))
155 n = 0;
156 else {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000157 n = wcslen(buffer);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000158 if (n > 0 && !is_sep(buffer[n-1]) && n < MAXPATHLEN)
159 buffer[n++] = SEP;
160 }
Tim Peters8484fbf2004-08-07 19:12:27 +0000161 if (n > MAXPATHLEN)
162 Py_FatalError("buffer overflow in getpathp.c's joinpath()");
Martin v. Löwis790465f2008-04-05 20:41:37 +0000163 k = wcslen(stuff);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000164 if (n + k > MAXPATHLEN)
165 k = MAXPATHLEN - n;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000166 wcsncpy(buffer+n, stuff, k);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000167 buffer[n+k] = '\0';
168}
169
Mark Hammond8bf9e3b2000-10-07 11:10:50 +0000170/* gotlandmark only called by search_for_prefix, which ensures
171 'prefix' is null terminated in bounds. join() ensures
172 'landmark' can not overflow prefix if too long.
173*/
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000174static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000175gotlandmark(wchar_t *landmark)
Guido van Rossume02e48b2000-03-29 01:49:47 +0000176{
Martin v. Löwis18e16552006-02-15 17:27:45 +0000177 int ok;
178 Py_ssize_t n;
Guido van Rossume02e48b2000-03-29 01:49:47 +0000179
Martin v. Löwis790465f2008-04-05 20:41:37 +0000180 n = wcslen(prefix);
Guido van Rossume02e48b2000-03-29 01:49:47 +0000181 join(prefix, landmark);
182 ok = ismodule(prefix);
183 prefix[n] = '\0';
184 return ok;
185}
186
Mark Hammond8bf9e3b2000-10-07 11:10:50 +0000187/* assumes argv0_path is MAXPATHLEN+1 bytes long, already \0 term'd.
188 assumption provided by only caller, calculate_path() */
Guido van Rossume02e48b2000-03-29 01:49:47 +0000189static int
Martin v. Löwis790465f2008-04-05 20:41:37 +0000190search_for_prefix(wchar_t *argv0_path, wchar_t *landmark)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000191{
Guido van Rossume02e48b2000-03-29 01:49:47 +0000192 /* Search from argv0_path, until landmark is found */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000193 wcscpy(prefix, argv0_path);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000194 do {
Guido van Rossume02e48b2000-03-29 01:49:47 +0000195 if (gotlandmark(landmark))
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000196 return 1;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000197 reduce(prefix);
198 } while (prefix[0]);
199 return 0;
200}
201
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000202#ifdef MS_WINDOWS
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000203#ifdef Py_ENABLE_SHARED
Guido van Rossum43ff1141998-08-08 23:40:40 +0000204
Guido van Rossum88716bb2000-03-30 19:45:39 +0000205/* a string loaded from the DLL at startup.*/
206extern const char *PyWin_DLLVersionString;
Guido van Rossum271f9771997-09-29 23:39:31 +0000207
Guido van Rossumeea14491997-08-13 21:30:44 +0000208
209/* Load a PYTHONPATH value from the registry.
210 Load from either HKEY_LOCAL_MACHINE or HKEY_CURRENT_USER.
211
Guido van Rossum88716bb2000-03-30 19:45:39 +0000212 Works in both Unicode and 8bit environments. Only uses the
213 Ex family of functions so it also works with Windows CE.
214
Guido van Rossumeea14491997-08-13 21:30:44 +0000215 Returns NULL, or a pointer that should be freed.
Mark Hammond5edc6272001-02-23 11:38:38 +0000216
217 XXX - this code is pretty strange, as it used to also
218 work on Win16, where the buffer sizes werent available
219 in advance. It could be simplied now Win16/Win32s is dead!
Guido van Rossumeea14491997-08-13 21:30:44 +0000220*/
221
Martin v. Löwis790465f2008-04-05 20:41:37 +0000222static wchar_t *
Guido van Rossum88716bb2000-03-30 19:45:39 +0000223getpythonregpath(HKEY keyBase, int skipcore)
Guido van Rossumeea14491997-08-13 21:30:44 +0000224{
225 HKEY newKey = 0;
Guido van Rossumeea14491997-08-13 21:30:44 +0000226 DWORD dataSize = 0;
Guido van Rossum88716bb2000-03-30 19:45:39 +0000227 DWORD numKeys = 0;
Guido van Rossumeea14491997-08-13 21:30:44 +0000228 LONG rc;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000229 wchar_t *retval = NULL;
230 WCHAR *dataBuf = NULL;
231 static const WCHAR keyPrefix[] = L"Software\\Python\\PythonCore\\";
232 static const WCHAR keySuffix[] = L"\\PythonPath";
Guido van Rossum1c44e282000-06-28 22:20:06 +0000233 size_t versionLen;
Guido van Rossum88716bb2000-03-30 19:45:39 +0000234 DWORD index;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000235 WCHAR *keyBuf = NULL;
236 WCHAR *keyBufPtr;
237 WCHAR **ppPaths = NULL;
238
Guido van Rossum88716bb2000-03-30 19:45:39 +0000239 /* Tried to use sysget("winver") but here is too early :-( */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000240 versionLen = strlen(PyWin_DLLVersionString);
Guido van Rossum88716bb2000-03-30 19:45:39 +0000241 /* Space for all the chars, plus one \0 */
242 keyBuf = keyBufPtr = malloc(sizeof(keyPrefix) +
Martin v. Löwis790465f2008-04-05 20:41:37 +0000243 sizeof(WCHAR)*(versionLen-1) +
Guido van Rossum88716bb2000-03-30 19:45:39 +0000244 sizeof(keySuffix));
245 if (keyBuf==NULL) goto done;
Guido van Rossum271f9771997-09-29 23:39:31 +0000246
Martin v. Löwis790465f2008-04-05 20:41:37 +0000247 memcpy(keyBufPtr, keyPrefix, sizeof(keyPrefix)-sizeof(WCHAR));
248 keyBufPtr += sizeof(keyPrefix)/sizeof(WCHAR) - 1;
249 mbstowcs(keyBufPtr, PyWin_DLLVersionString, versionLen);
Guido van Rossum88716bb2000-03-30 19:45:39 +0000250 keyBufPtr += versionLen;
251 /* NULL comes with this one! */
252 memcpy(keyBufPtr, keySuffix, sizeof(keySuffix));
253 /* Open the root Python key */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000254 rc=RegOpenKeyExW(keyBase,
Guido van Rossum88716bb2000-03-30 19:45:39 +0000255 keyBuf, /* subkey */
256 0, /* reserved */
257 KEY_READ,
258 &newKey);
259 if (rc!=ERROR_SUCCESS) goto done;
260 /* Find out how big our core buffer is, and how many subkeys we have */
261 rc = RegQueryInfoKey(newKey, NULL, NULL, NULL, &numKeys, NULL, NULL,
262 NULL, NULL, &dataSize, NULL, NULL);
263 if (rc!=ERROR_SUCCESS) goto done;
264 if (skipcore) dataSize = 0; /* Only count core ones if we want them! */
265 /* Allocate a temp array of char buffers, so we only need to loop
266 reading the registry once
267 */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000268 ppPaths = malloc( sizeof(WCHAR *) * numKeys );
Guido van Rossum88716bb2000-03-30 19:45:39 +0000269 if (ppPaths==NULL) goto done;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000270 memset(ppPaths, 0, sizeof(WCHAR *) * numKeys);
Guido van Rossum88716bb2000-03-30 19:45:39 +0000271 /* Loop over all subkeys, allocating a temp sub-buffer. */
272 for(index=0;index<numKeys;index++) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000273 WCHAR keyBuf[MAX_PATH+1];
Guido van Rossum88716bb2000-03-30 19:45:39 +0000274 HKEY subKey = 0;
275 DWORD reqdSize = MAX_PATH+1;
276 /* Get the sub-key name */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000277 DWORD rc = RegEnumKeyExW(newKey, index, keyBuf, &reqdSize,
278 NULL, NULL, NULL, NULL );
Guido van Rossum88716bb2000-03-30 19:45:39 +0000279 if (rc!=ERROR_SUCCESS) goto done;
280 /* Open the sub-key */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000281 rc=RegOpenKeyExW(newKey,
Guido van Rossum88716bb2000-03-30 19:45:39 +0000282 keyBuf, /* subkey */
283 0, /* reserved */
284 KEY_READ,
285 &subKey);
286 if (rc!=ERROR_SUCCESS) goto done;
287 /* Find the value of the buffer size, malloc, then read it */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000288 RegQueryValueExW(subKey, NULL, 0, NULL, NULL, &reqdSize);
Guido van Rossum88716bb2000-03-30 19:45:39 +0000289 if (reqdSize) {
290 ppPaths[index] = malloc(reqdSize);
291 if (ppPaths[index]) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000292 RegQueryValueExW(subKey, NULL, 0, NULL,
Mark Hammonde61aca72000-09-10 09:14:53 +0000293 (LPBYTE)ppPaths[index],
294 &reqdSize);
Guido van Rossum88716bb2000-03-30 19:45:39 +0000295 dataSize += reqdSize + 1; /* 1 for the ";" */
Guido van Rossumeea14491997-08-13 21:30:44 +0000296 }
297 }
Guido van Rossum88716bb2000-03-30 19:45:39 +0000298 RegCloseKey(subKey);
Guido van Rossumeea14491997-08-13 21:30:44 +0000299 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000300
301 /* return null if no path to return */
302 if (dataSize == 0) goto done;
303
Mark Hammond5edc6272001-02-23 11:38:38 +0000304 /* original datasize from RegQueryInfo doesn't include the \0 */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000305 dataBuf = malloc((dataSize+1) * sizeof(WCHAR));
Guido van Rossum88716bb2000-03-30 19:45:39 +0000306 if (dataBuf) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000307 WCHAR *szCur = dataBuf;
Guido van Rossum88716bb2000-03-30 19:45:39 +0000308 DWORD reqdSize = dataSize;
309 /* Copy our collected strings */
310 for (index=0;index<numKeys;index++) {
Guido van Rossum88716bb2000-03-30 19:45:39 +0000311 if (index > 0) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000312 *(szCur++) = L';';
Guido van Rossum88716bb2000-03-30 19:45:39 +0000313 dataSize--;
314 }
Mark Hammonde61aca72000-09-10 09:14:53 +0000315 if (ppPaths[index]) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000316 Py_ssize_t len = wcslen(ppPaths[index]);
317 wcsncpy(szCur, ppPaths[index], len);
Mark Hammonde61aca72000-09-10 09:14:53 +0000318 szCur += len;
Tim Petersc7f6cf62006-02-16 00:35:06 +0000319 assert(dataSize > (DWORD)len);
320 dataSize -= (DWORD)len;
Mark Hammonde61aca72000-09-10 09:14:53 +0000321 }
Guido van Rossum88716bb2000-03-30 19:45:39 +0000322 }
323 if (skipcore)
324 *szCur = '\0';
325 else {
Mark Hammond5edc6272001-02-23 11:38:38 +0000326 /* If we have no values, we dont need a ';' */
327 if (numKeys) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000328 *(szCur++) = L';';
Mark Hammond5edc6272001-02-23 11:38:38 +0000329 dataSize--;
330 }
Mark Hammonde61aca72000-09-10 09:14:53 +0000331 /* Now append the core path entries -
332 this will include the NULL
333 */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000334 rc = RegQueryValueExW(newKey, NULL, 0, NULL,
335 (LPBYTE)szCur, &dataSize);
Guido van Rossum88716bb2000-03-30 19:45:39 +0000336 }
Martin v. Löwis790465f2008-04-05 20:41:37 +0000337 /* And set the result - caller must free */
Guido van Rossum88716bb2000-03-30 19:45:39 +0000338 retval = dataBuf;
Guido van Rossum88716bb2000-03-30 19:45:39 +0000339 }
340done:
341 /* Loop freeing my temp buffers */
342 if (ppPaths) {
343 for(index=0;index<numKeys;index++)
344 if (ppPaths[index]) free(ppPaths[index]);
345 free(ppPaths);
346 }
Guido van Rossumeea14491997-08-13 21:30:44 +0000347 if (newKey)
348 RegCloseKey(newKey);
Guido van Rossum88716bb2000-03-30 19:45:39 +0000349 if (keyBuf)
350 free(keyBuf);
Guido van Rossumeea14491997-08-13 21:30:44 +0000351 return retval;
352}
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000353#endif /* Py_ENABLE_SHARED */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000354#endif /* MS_WINDOWS */
Guido van Rossumeea14491997-08-13 21:30:44 +0000355
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000356static void
Thomas Wouters78890102000-07-22 19:25:51 +0000357get_progpath(void)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000358{
Martin v. Löwis790465f2008-04-05 20:41:37 +0000359 extern wchar_t *Py_GetProgramName(void);
360 wchar_t *path = _wgetenv(L"PATH");
361 wchar_t *prog = Py_GetProgramName();
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000362
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000363#ifdef MS_WINDOWS
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000364#ifdef Py_ENABLE_SHARED
Just van Rossum52e14d62002-12-30 22:08:05 +0000365 extern HANDLE PyWin_DLLhModule;
Mark Hammond8bf9e3b2000-10-07 11:10:50 +0000366 /* static init of progpath ensures final char remains \0 */
Just van Rossum52e14d62002-12-30 22:08:05 +0000367 if (PyWin_DLLhModule)
Martin v. Löwis790465f2008-04-05 20:41:37 +0000368 if (!GetModuleFileNameW(PyWin_DLLhModule, dllpath, MAXPATHLEN))
Just van Rossum52e14d62002-12-30 22:08:05 +0000369 dllpath[0] = 0;
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000370#else
371 dllpath[0] = 0;
372#endif
Martin v. Löwis790465f2008-04-05 20:41:37 +0000373 if (GetModuleFileNameW(NULL, progpath, MAXPATHLEN))
Guido van Rossumeea14491997-08-13 21:30:44 +0000374 return;
375#endif
376 if (prog == NULL || *prog == '\0')
Martin v. Löwis790465f2008-04-05 20:41:37 +0000377 prog = L"python";
Guido van Rossumeea14491997-08-13 21:30:44 +0000378
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000379 /* If there is no slash in the argv0 path, then we have to
380 * assume python is on the user's $PATH, since there's no
381 * other way to find a directory to start the search from. If
382 * $PATH isn't exported, you lose.
383 */
384#ifdef ALTSEP
Martin v. Löwis790465f2008-04-05 20:41:37 +0000385 if (wcschr(prog, SEP) || wcschr(prog, ALTSEP))
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000386#else
Martin v. Löwis790465f2008-04-05 20:41:37 +0000387 if (wcschr(prog, SEP))
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000388#endif
Martin v. Löwis790465f2008-04-05 20:41:37 +0000389 wcsncpy(progpath, prog, MAXPATHLEN);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000390 else if (path) {
391 while (1) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000392 wchar_t *delim = wcschr(path, DELIM);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000393
394 if (delim) {
Guido van Rossum1c44e282000-06-28 22:20:06 +0000395 size_t len = delim - path;
Mark Hammond8bf9e3b2000-10-07 11:10:50 +0000396 /* ensure we can't overwrite buffer */
397 len = min(MAXPATHLEN,len);
Martin v. Löwis790465f2008-04-05 20:41:37 +0000398 wcsncpy(progpath, path, len);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000399 *(progpath + len) = '\0';
400 }
401 else
Martin v. Löwis790465f2008-04-05 20:41:37 +0000402 wcsncpy(progpath, path, MAXPATHLEN);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000403
Mark Hammond8bf9e3b2000-10-07 11:10:50 +0000404 /* join() is safe for MAXPATHLEN+1 size buffer */
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000405 join(progpath, prog);
406 if (exists(progpath))
407 break;
408
409 if (!delim) {
410 progpath[0] = '\0';
411 break;
412 }
413 path = delim + 1;
414 }
415 }
416 else
417 progpath[0] = '\0';
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000418}
419
420static void
Thomas Wouters78890102000-07-22 19:25:51 +0000421calculate_path(void)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000422{
Martin v. Löwis790465f2008-04-05 20:41:37 +0000423 wchar_t argv0_path[MAXPATHLEN+1];
424 wchar_t *buf;
Guido van Rossum1c44e282000-06-28 22:20:06 +0000425 size_t bufsz;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000426 wchar_t *pythonhome = Py_GetPythonHome();
427 char *_envpath = Py_GETENV("PYTHONPATH");
428 wchar_t wenvpath[MAXPATHLEN+1];
429 wchar_t *envpath = NULL;
Guido van Rossumeea14491997-08-13 21:30:44 +0000430
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000431#ifdef MS_WINDOWS
Guido van Rossum88716bb2000-03-30 19:45:39 +0000432 int skiphome, skipdefault;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000433 wchar_t *machinepath = NULL;
434 wchar_t *userpath = NULL;
435 wchar_t zip_path[MAXPATHLEN+1];
Just van Rossum52e14d62002-12-30 22:08:05 +0000436 size_t len;
Guido van Rossumeea14491997-08-13 21:30:44 +0000437#endif
Martin v. Löwis790465f2008-04-05 20:41:37 +0000438 if (_envpath) {
439 size_t r = mbstowcs(wenvpath, _envpath, MAXPATHLEN+1);
440 envpath = wenvpath;
441 if (r == (size_t)-1 || r >= MAXPATHLEN)
442 envpath = NULL;
443 }
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000444
445 get_progpath();
Mark Hammond8bf9e3b2000-10-07 11:10:50 +0000446 /* progpath guaranteed \0 terminated in MAXPATH+1 bytes. */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000447 wcscpy(argv0_path, progpath);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000448 reduce(argv0_path);
Guido van Rossumeea14491997-08-13 21:30:44 +0000449 if (pythonhome == NULL || *pythonhome == '\0') {
450 if (search_for_prefix(argv0_path, LANDMARK))
451 pythonhome = prefix;
Guido van Rossum43ff1141998-08-08 23:40:40 +0000452 else
453 pythonhome = NULL;
Guido van Rossumeea14491997-08-13 21:30:44 +0000454 }
455 else
Martin v. Löwis790465f2008-04-05 20:41:37 +0000456 wcsncpy(prefix, pythonhome, MAXPATHLEN);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000457
Guido van Rossumeea14491997-08-13 21:30:44 +0000458 if (envpath && *envpath == '\0')
459 envpath = NULL;
460
Guido van Rossume02e48b2000-03-29 01:49:47 +0000461
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000462#ifdef MS_WINDOWS
Just van Rossum52e14d62002-12-30 22:08:05 +0000463 /* Calculate zip archive path */
464 if (dllpath[0]) /* use name of python DLL */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000465 wcsncpy(zip_path, dllpath, MAXPATHLEN);
Just van Rossum52e14d62002-12-30 22:08:05 +0000466 else /* use name of executable program */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000467 wcsncpy(zip_path, progpath, MAXPATHLEN);
Neal Norwitza8aed022002-12-31 12:35:41 +0000468 zip_path[MAXPATHLEN] = '\0';
Martin v. Löwis790465f2008-04-05 20:41:37 +0000469 len = wcslen(zip_path);
Just van Rossum52e14d62002-12-30 22:08:05 +0000470 if (len > 4) {
471 zip_path[len-3] = 'z'; /* change ending to "zip" */
472 zip_path[len-2] = 'i';
473 zip_path[len-1] = 'p';
474 }
475 else {
476 zip_path[0] = 0;
477 }
478
Guido van Rossum88716bb2000-03-30 19:45:39 +0000479 skiphome = pythonhome==NULL ? 0 : 1;
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000480#ifdef Py_ENABLE_SHARED
Guido van Rossum88716bb2000-03-30 19:45:39 +0000481 machinepath = getpythonregpath(HKEY_LOCAL_MACHINE, skiphome);
482 userpath = getpythonregpath(HKEY_CURRENT_USER, skiphome);
Martin v. Löwisbc186a82009-02-02 15:32:22 +0000483#endif
Guido van Rossum88716bb2000-03-30 19:45:39 +0000484 /* We only use the default relative PYTHONPATH if we havent
485 anything better to use! */
486 skipdefault = envpath!=NULL || pythonhome!=NULL || \
487 machinepath!=NULL || userpath!=NULL;
Guido van Rossum43ff1141998-08-08 23:40:40 +0000488#endif
489
490 /* We need to construct a path from the following parts.
Guido van Rossumeea14491997-08-13 21:30:44 +0000491 (1) the PYTHONPATH environment variable, if set;
Just van Rossum52e14d62002-12-30 22:08:05 +0000492 (2) for Win32, the zip archive file path;
493 (3) for Win32, the machinepath and userpath, if set;
494 (4) the PYTHONPATH config macro, with the leading "."
Guido van Rossumeea14491997-08-13 21:30:44 +0000495 of each component replaced with pythonhome, if set;
Just van Rossum52e14d62002-12-30 22:08:05 +0000496 (5) the directory containing the executable (argv0_path).
497 The length calculation calculates #4 first.
Guido van Rossum43ff1141998-08-08 23:40:40 +0000498 Extra rules:
Just van Rossum52e14d62002-12-30 22:08:05 +0000499 - If PYTHONHOME is set (in any way) item (3) is ignored.
500 - If registry values are used, (4) and (5) are ignored.
Guido van Rossumeea14491997-08-13 21:30:44 +0000501 */
502
503 /* Calculate size of return buffer */
504 if (pythonhome != NULL) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000505 wchar_t *p;
Guido van Rossumeea14491997-08-13 21:30:44 +0000506 bufsz = 1;
507 for (p = PYTHONPATH; *p; p++) {
508 if (*p == DELIM)
509 bufsz++; /* number of DELIM plus one */
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000510 }
Martin v. Löwis790465f2008-04-05 20:41:37 +0000511 bufsz *= wcslen(pythonhome);
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000512 }
Guido van Rossumeea14491997-08-13 21:30:44 +0000513 else
514 bufsz = 0;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000515 bufsz += wcslen(PYTHONPATH) + 1;
516 bufsz += wcslen(argv0_path) + 1;
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000517#ifdef MS_WINDOWS
Guido van Rossumeea14491997-08-13 21:30:44 +0000518 if (userpath)
Martin v. Löwis790465f2008-04-05 20:41:37 +0000519 bufsz += wcslen(userpath) + 1;
Guido van Rossum67ab6721998-08-08 19:58:59 +0000520 if (machinepath)
Martin v. Löwis790465f2008-04-05 20:41:37 +0000521 bufsz += wcslen(machinepath) + 1;
522 bufsz += wcslen(zip_path) + 1;
Guido van Rossumeea14491997-08-13 21:30:44 +0000523#endif
Guido van Rossum67ab6721998-08-08 19:58:59 +0000524 if (envpath != NULL)
Martin v. Löwis790465f2008-04-05 20:41:37 +0000525 bufsz += wcslen(envpath) + 1;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000526
Martin v. Löwis790465f2008-04-05 20:41:37 +0000527 module_search_path = buf = malloc(bufsz*sizeof(wchar_t));
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000528 if (buf == NULL) {
529 /* We can't exit, so print a warning and limp along */
Guido van Rossumeea14491997-08-13 21:30:44 +0000530 fprintf(stderr, "Can't malloc dynamic PYTHONPATH.\n");
531 if (envpath) {
Guido van Rossume02e48b2000-03-29 01:49:47 +0000532 fprintf(stderr, "Using environment $PYTHONPATH.\n");
Guido van Rossumeea14491997-08-13 21:30:44 +0000533 module_search_path = envpath;
534 }
535 else {
Guido van Rossume02e48b2000-03-29 01:49:47 +0000536 fprintf(stderr, "Using default static path.\n");
Guido van Rossumeea14491997-08-13 21:30:44 +0000537 module_search_path = PYTHONPATH;
538 }
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000539#ifdef MS_WINDOWS
Guido van Rossum42a97441998-02-19 21:00:45 +0000540 if (machinepath)
541 free(machinepath);
542 if (userpath)
543 free(userpath);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000544#endif /* MS_WINDOWS */
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000545 return;
546 }
Guido van Rossumeea14491997-08-13 21:30:44 +0000547
548 if (envpath) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000549 wcscpy(buf, envpath);
550 buf = wcschr(buf, L'\0');
Guido van Rossumeea14491997-08-13 21:30:44 +0000551 *buf++ = DELIM;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000552 }
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000553#ifdef MS_WINDOWS
Just van Rossum52e14d62002-12-30 22:08:05 +0000554 if (zip_path[0]) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000555 wcscpy(buf, zip_path);
556 buf = wcschr(buf, L'\0');
Just van Rossum52e14d62002-12-30 22:08:05 +0000557 *buf++ = DELIM;
558 }
Guido van Rossum67ab6721998-08-08 19:58:59 +0000559 if (userpath) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000560 wcscpy(buf, userpath);
561 buf = wcschr(buf, L'\0');
Guido van Rossum67ab6721998-08-08 19:58:59 +0000562 *buf++ = DELIM;
563 free(userpath);
564 }
Guido van Rossumeea14491997-08-13 21:30:44 +0000565 if (machinepath) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000566 wcscpy(buf, machinepath);
567 buf = wcschr(buf, L'\0');
Guido van Rossumeea14491997-08-13 21:30:44 +0000568 *buf++ = DELIM;
Guido van Rossum42a97441998-02-19 21:00:45 +0000569 free(machinepath);
Guido van Rossume02e48b2000-03-29 01:49:47 +0000570 }
Guido van Rossum88716bb2000-03-30 19:45:39 +0000571 if (pythonhome == NULL) {
572 if (!skipdefault) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000573 wcscpy(buf, PYTHONPATH);
574 buf = wcschr(buf, L'\0');
Guido van Rossum88716bb2000-03-30 19:45:39 +0000575 }
Guido van Rossumeea14491997-08-13 21:30:44 +0000576 }
Guido van Rossum88716bb2000-03-30 19:45:39 +0000577#else
Guido van Rossumeea14491997-08-13 21:30:44 +0000578 if (pythonhome == NULL) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000579 wcscpy(buf, PYTHONPATH);
580 buf = wcschr(buf, L'\0');
Guido van Rossumeea14491997-08-13 21:30:44 +0000581 }
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000582#endif /* MS_WINDOWS */
Guido van Rossumeea14491997-08-13 21:30:44 +0000583 else {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000584 wchar_t *p = PYTHONPATH;
585 wchar_t *q;
Guido van Rossum1c44e282000-06-28 22:20:06 +0000586 size_t n;
Guido van Rossumeea14491997-08-13 21:30:44 +0000587 for (;;) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000588 q = wcschr(p, DELIM);
Guido van Rossumeea14491997-08-13 21:30:44 +0000589 if (q == NULL)
Martin v. Löwis790465f2008-04-05 20:41:37 +0000590 n = wcslen(p);
Guido van Rossumeea14491997-08-13 21:30:44 +0000591 else
592 n = q-p;
593 if (p[0] == '.' && is_sep(p[1])) {
Martin v. Löwis790465f2008-04-05 20:41:37 +0000594 wcscpy(buf, pythonhome);
595 buf = wcschr(buf, L'\0');
Guido van Rossumeea14491997-08-13 21:30:44 +0000596 p++;
597 n--;
598 }
Martin v. Löwis790465f2008-04-05 20:41:37 +0000599 wcsncpy(buf, p, n);
Guido van Rossumeea14491997-08-13 21:30:44 +0000600 buf += n;
601 if (q == NULL)
602 break;
603 *buf++ = DELIM;
604 p = q+1;
605 }
606 }
607 if (argv0_path) {
608 *buf++ = DELIM;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000609 wcscpy(buf, argv0_path);
610 buf = wcschr(buf, L'\0');
Guido van Rossumeea14491997-08-13 21:30:44 +0000611 }
Martin v. Löwis790465f2008-04-05 20:41:37 +0000612 *buf = L'\0';
Mark Hammond19fdbfb2001-09-07 14:08:01 +0000613 /* Now to pull one last hack/trick. If sys.prefix is
614 empty, then try and find it somewhere on the paths
615 we calculated. We scan backwards, as our general policy
616 is that Python core directories are at the *end* of
617 sys.path. We assume that our "lib" directory is
618 on the path, and that our 'prefix' directory is
619 the parent of that.
620 */
Martin v. Löwis790465f2008-04-05 20:41:37 +0000621 if (*prefix==L'\0') {
622 wchar_t lookBuf[MAXPATHLEN+1];
623 wchar_t *look = buf - 1; /* 'buf' is at the end of the buffer */
Mark Hammond19fdbfb2001-09-07 14:08:01 +0000624 while (1) {
Martin v. Löwis18e16552006-02-15 17:27:45 +0000625 Py_ssize_t nchars;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000626 wchar_t *lookEnd = look;
Mark Hammond19fdbfb2001-09-07 14:08:01 +0000627 /* 'look' will end up one character before the
628 start of the path in question - even if this
629 is one character before the start of the buffer
630 */
Guido van Rossumd8faa362007-04-27 19:54:29 +0000631 while (look >= module_search_path && *look != DELIM)
Mark Hammond19fdbfb2001-09-07 14:08:01 +0000632 look--;
633 nchars = lookEnd-look;
Martin v. Löwis790465f2008-04-05 20:41:37 +0000634 wcsncpy(lookBuf, look+1, nchars);
635 lookBuf[nchars] = L'\0';
Mark Hammond19fdbfb2001-09-07 14:08:01 +0000636 /* Up one level to the parent */
637 reduce(lookBuf);
638 if (search_for_prefix(lookBuf, LANDMARK)) {
639 break;
640 }
641 /* If we are out of paths to search - give up */
642 if (look < module_search_path)
643 break;
644 look--;
645 }
646 }
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000647}
648
649
650/* External interface */
651
Martin v. Löwis790465f2008-04-05 20:41:37 +0000652wchar_t *
Thomas Wouters78890102000-07-22 19:25:51 +0000653Py_GetPath(void)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000654{
655 if (!module_search_path)
656 calculate_path();
657 return module_search_path;
658}
659
Martin v. Löwis790465f2008-04-05 20:41:37 +0000660wchar_t *
Thomas Wouters78890102000-07-22 19:25:51 +0000661Py_GetPrefix(void)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000662{
Guido van Rossumeea14491997-08-13 21:30:44 +0000663 if (!module_search_path)
664 calculate_path();
665 return prefix;
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000666}
667
Martin v. Löwis790465f2008-04-05 20:41:37 +0000668wchar_t *
Thomas Wouters78890102000-07-22 19:25:51 +0000669Py_GetExecPrefix(void)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000670{
Guido van Rossumeea14491997-08-13 21:30:44 +0000671 return Py_GetPrefix();
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000672}
673
Martin v. Löwis790465f2008-04-05 20:41:37 +0000674wchar_t *
Thomas Wouters78890102000-07-22 19:25:51 +0000675Py_GetProgramFullPath(void)
Guido van Rossum1aa7e3a1997-05-19 14:16:21 +0000676{
677 if (!module_search_path)
678 calculate_path();
679 return progpath;
680}