1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
|
"""
Logic to find sys.executable and the initial sys.path containing the stdlib
"""
import errno
import os
import stat
import sys
from rpython.rlib import rpath, rdynload
from rpython.rlib.rstring import assert_str0
from rpython.rlib.objectmodel import we_are_translated
from rpython.rtyper.lltypesystem import lltype, rffi
from rpython.translator.tool.cbuild import ExternalCompilationInfo
from pypy.interpreter.gateway import unwrap_spec
from pypy.module.sys.state import get as get_state
from pypy.module.sys.interp_encoding import _getfilesystemencoding
PLATFORM = sys.platform
_MACOSX = sys.platform == 'darwin'
_WIN32 = sys.platform == 'win32'
def _exists_and_is_executable(fn):
# os.access checks using the user's real uid and gid.
# Since pypy should not be run setuid/setgid, this
# should be sufficient.
return os.path.isfile(fn) and os.access(fn, os.X_OK)
def find_executable(executable):
"""
Return the absolute path of the executable, by looking into PATH and
the current directory. If it cannot be found, return ''.
"""
if (we_are_translated() and _WIN32 and
not executable.lower().endswith('.exe')):
executable += '.exe'
if os.sep in executable or (_WIN32 and ':' in executable):
# the path is already more than just an executable name
pass
else:
path = os.environ.get('PATH')
if path:
for dir in path.split(os.pathsep):
fn = os.path.join(dir, executable)
if _exists_and_is_executable(fn):
executable = fn
break
executable = rpath.rabspath(executable)
# 'sys.executable' should not end up being an non-existing file;
# just use '' in this case. (CPython issue #7774)
return executable if _exists_and_is_executable(executable) else ''
def _readlink_maybe(filename):
if not _WIN32:
return os.readlink(filename)
raise NotImplementedError
def resolvedirof(filename):
filename = rpath.rabspath(filename)
dirname = rpath.rabspath(os.path.join(filename, '..'))
if os.path.islink(filename):
try:
link = _readlink_maybe(filename)
except OSError:
pass
else:
return resolvedirof(os.path.join(dirname, link))
return dirname
def find_pyvenv_cfg(dirname):
try:
fd = os.open(os.path.join(dirname, 'pyvenv.cfg'), os.O_RDONLY, 0)
try:
content = os.read(fd, 16384)
finally:
os.close(fd)
except OSError:
return ''
# painfully parse the file for a line 'home = PATH'
for line in content.splitlines():
line += '\x00'
i = 0
while line[i] == ' ':
i += 1
if (line[i] == 'h' and
line[i+1] == 'o' and
line[i+2] == 'm' and
line[i+3] == 'e'):
i += 4
while line[i] == ' ':
i += 1
if line[i] == '=':
line = line[i+1:]
n = line.find('\x00')
assert n >= 0
line = line[:n]
return assert_str0(line.strip())
return ''
def find_stdlib(state, executable):
"""
Find and compute the stdlib path, starting from the directory where
``executable`` is and going one level up until we find it. Return a
tuple (path, prefix), where ``prefix`` is the root directory which
contains the stdlib. If it cannot be found, return (None, None).
On PyPy3, it will also look for 'pyvenv.cfg' either in the same or
in the parent directory of 'executable', and search from the 'home'
entry instead of from the path to 'executable'.
"""
search = 'pypy3-c' if executable == '' else executable
search_pyvenv_cfg = 2
while True:
dirname = resolvedirof(search)
if dirname == search:
return None, None # not found :-(
if search_pyvenv_cfg > 0:
search_pyvenv_cfg -= 1
home = find_pyvenv_cfg(dirname)
if home:
dirname = home
search_pyvenv_cfg = 0
newpath = compute_stdlib_path_maybe(state, dirname)
if newpath is not None:
return newpath, dirname
search = dirname # walk to the parent directory
def _checkdir(path):
st = os.stat(path)
if not stat.S_ISDIR(st[0]):
raise OSError(errno.ENOTDIR, path)
def compute_stdlib_path(state, prefix):
"""
Compute the paths for the stdlib rooted at ``prefix``. ``prefix``
must at least contain a directory called ``lib-python/X.Y`` and
another one called ``lib_pypy``. If they cannot be found, it raises
OSError.
"""
from pypy.module.sys.version import CPYTHON_VERSION
dirname = '%d' % CPYTHON_VERSION[0]
lib_python = os.path.join(prefix, 'lib-python')
python_std_lib = os.path.join(lib_python, dirname)
_checkdir(python_std_lib)
lib_pypy = os.path.join(prefix, 'lib_pypy')
_checkdir(lib_pypy)
importlist = []
if state is not None: # 'None' for testing only
lib_extensions = os.path.join(lib_pypy, '__extensions__')
state.w_lib_extensions = state.space.newfilename(lib_extensions)
importlist.append(lib_extensions)
importlist.append(lib_pypy)
importlist.append(python_std_lib)
lib_tk = os.path.join(python_std_lib, 'lib-tk')
importlist.append(lib_tk)
# List here the extra platform-specific paths.
if not _WIN32:
importlist.append(os.path.join(python_std_lib, 'plat-' + PLATFORM))
if _MACOSX:
platmac = os.path.join(python_std_lib, 'plat-mac')
importlist.append(platmac)
importlist.append(os.path.join(platmac, 'lib-scriptpackages'))
return importlist
def compute_stdlib_path_maybe(state, prefix):
"""Return the stdlib path rooted at ``prefix``, or None if it cannot
be found.
"""
try:
return compute_stdlib_path(state, prefix)
except OSError:
return None
@unwrap_spec(executable='fsencode')
def pypy_find_executable(space, executable):
return space.newfilename(find_executable(executable))
@unwrap_spec(filename='fsencode')
def pypy_resolvedirof(space, filename):
return space.newfilename(resolvedirof(filename))
@unwrap_spec(executable='fsencode')
def pypy_find_stdlib(space, executable):
path, prefix = None, None
if executable != '*':
path, prefix = find_stdlib(get_state(space), executable)
if path is None:
if space.config.translation.shared:
dynamic_location = pypy_init_home()
if dynamic_location:
dyn_path = rffi.charp2str(dynamic_location)
pypy_init_free(dynamic_location)
path, prefix = find_stdlib(get_state(space), dyn_path)
if path is None:
return space.w_None
w_prefix = space.newfilename(prefix)
space.setitem(space.sys.w_dict, space.newtext('prefix'), w_prefix)
space.setitem(space.sys.w_dict, space.newtext('exec_prefix'), w_prefix)
space.setitem(space.sys.w_dict, space.newtext('base_prefix'), w_prefix)
space.setitem(space.sys.w_dict, space.newtext('base_exec_prefix'), w_prefix)
return space.newlist([space.newfilename(p) for p in path])
def pypy_initfsencoding(space):
space.sys.filesystemencoding = _getfilesystemencoding(space)
# ____________________________________________________________
if os.name == 'nt':
_source_code = r"""
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0501
#endif
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
char *_pypy_init_home(void)
{
HMODULE hModule = 0;
DWORD res;
char *p;
GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS |
GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT,
(LPCTSTR)&_pypy_init_home, &hModule);
if (hModule == 0 ) {
fprintf(stderr, "PyPy initialization: GetModuleHandleEx() failed\n");
return NULL;
}
p = malloc(_MAX_PATH);
if (p == NULL)
return NULL;
res = GetModuleFileName(hModule, p, _MAX_PATH);
if (res >= _MAX_PATH || res <= 0) {
free(p);
fprintf(stderr, "PyPy initialization: GetModuleFileName() failed\n");
return NULL;
}
return p;
}
"""
else:
_source_code = r"""
#include <dlfcn.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
char *_pypy_init_home(void)
{
Dl_info info;
dlerror(); /* reset */
if (dladdr(&_pypy_init_home, &info) == 0) {
fprintf(stderr, "PyPy initialization: dladdr() failed: %s\n",
dlerror());
return NULL;
}
char *p = realpath(info.dli_fname, NULL);
if (p == NULL) {
p = strdup(info.dli_fname);
}
return p;
}
"""
_source_code += """
inline
void _pypy_init_free(char *p)
{
free(p);
}
"""
if we_are_translated():
post_include_bits = []
else:
# for tests
post_include_bits=['RPY_EXPORTED char *_pypy_init_home(void);',
'RPY_EXPORTED void _pypy_init_free(char*);',
]
_eci = ExternalCompilationInfo(separate_module_sources=[_source_code],
post_include_bits=post_include_bits)
_eci = _eci.merge(rdynload.eci)
pypy_init_home = rffi.llexternal("_pypy_init_home", [], rffi.CCHARP,
_nowrapper=True, compilation_info=_eci)
pypy_init_free = rffi.llexternal("_pypy_init_free", [rffi.CCHARP], lltype.Void,
_nowrapper=True, compilation_info=_eci)
|