layout | toc_group | link_title | permalink | redirect_from |
---|---|---|---|---|
docs |
python |
Embedding Permissions |
/reference-manual/python/Embedding-Permissions/ |
/reference-manual/python/OSInterface/ |
Embedding GraalPy into Java works with the GraalVM Polyglot Sandbox.
The way the operating system interface is exposed to Python scripts is GraalPy-specific. By default all access is routed through Java interfaces, but some packages rely on details of POSIX APIs and require direct native access.
Graal languages (those implemented on the Truffle framework) usually implement system-related functions using the Truffle abstraction layer, which is OS independent and provides extension points for the users when embedding GraalPy or other Graal languages into Java applications. See, for example, the Truffle FileSystem service-provider.
The standard Python library also provides an OS abstraction, but exposes lower level interfaces. For example, the os
module directly exposes some POSIX functions.
On non-POSIX platforms, this interface is emulated to a degree.
GraalPy provides two alternative implementations (each referred to as a "backend") of system-related functionality offered by built-in Python modules such as os
.
The PosixModuleBackend
option determines which backend is used: valid values are native
and java
.
This backend directly calls the POSIX API in mostly the same way as CPython (the reference Python implementation).
This approach is the most compatible with CPython and provides bare access to the underlying OS interface without an intermediate emulation layer.
By default, this implementation bypasses the Truffle abstraction layer, and therefore it is not sandboxed and does not support custom implementations of Truffle FileSystem service-provider, and other Polyglot API providers related to system interfaces.
The native backend is chosen by default when GraalPy is started via the graalpy
or any other Python related launcher.
Known limitations are:
os.fork
is not supported_posixsubprocess.fork_exec
does not support thepreexec_fn
parameter
This backend uses the Truffle abstraction layer and therefore supports custom Polyglot API providers related to system interfaces and sandboxing. Because this abstraction is POSIX agnostic, it does not expose all the necessary functionality. Some functionality is emulated, and some functionality is unsupported.
The Java backend is the default when GraalPy is run via the Context
API, that is, embedded in Java applications.
GraalPy can log information about known incompatibility of functions executed at runtime, which includes the OS interface-related functions.
To turn on this logging, use the command-line option --log.python.compatibility.level=FINE
(or other desired logging level).
Known limitations of the Java backend are:
- Its state is disconnected from the actual OS state, which applies especially to:
- file descriptors: Python-level file descriptors are not usable in native code.
- current working directory: is initialized to the current working
directory at the startup, but is then maintained separately. So, for example,
chdir
in Python does not change the actual current working directory of the process. - umask: has the same limitation as that of the current working directory, but it is always initialized
to
0022
regardless of the actual system value at startup.
- Resolution of file access/modification times depends on the JDK. The best the Java backend can guarantee is seconds resolution.
os.access
and any other functionality based onfaccessat
POSIX function does not support:- effective IDs.
follow_symlinks=False
unless the mode is onlyF_OK
.
Python native extensions run by default as native binaries, with full access to the underlying system. See Embedding limitations
The context permissions needed to run native extensions are:
.allowIO(IOAccess.ALL)
.allowCreateThread(true)
.allowNativeAccess(true)