Skip to main content

Axle Runtime is the runtime part of the Python Wheel enhancement library

Project description

Axle-Runtime - Python Wheel enhancement library

Gitter Build Status Coverage Status

Wheel Axle Runtime Version Wheel Axle Runtime Python Versions

Wheel Axle Runtime Downloads Per Day Wheel Axle Runtime Downloads Per Week Wheel Axle Runtime Downloads Per Month

This is a companion project to Wheel Axle/bdist_axle

Problem

  1. Python wheels do not support symlinks.
  2. PIP installation procedure is not locally extensible and does not allow adding post-install hooks.

Solution

WARNING: THIS IS EXPERIMENTAL BETA SOFTWARE. THERE ARE NO WARRANTIES OF ANY KIND. USE AT YOUR OWN RISK. ADDITIONAL INCLUDED DISCLAIMERS ALSO APPLY.

Wheel Axle Runtime library utilizes a little-known trick used in site.py's .pth files that allows executing arbitrary code while the site packages are being added. Thus, specially-crafted wheels can silently execute installed code on Python interpreter startup, facilitating the "post-install hook" functionality.

Python Invariants

The core functionality relies on the following Python behaviors:

These invariants have not changed for 18 years.

Implementation

Once the distribution-specific .pth is executed by the Python interpreter, the Wheel Axle Runtime behaves as follows:

  1. The library checks whether a file .dist-info/axle.done exists. If it does it is the indication that the post-install hook has executed successfully and nothing more is to be done, terminating all further processing.
  2. A process-wide inter-thread lock is acquired.
  3. An OS-wide inter-process file lock is acquired on a file .dist-info/axle.lck.
  4. Once the locks are acquired the .dist-info/axle.done existence is rechecked (double-checked locking optimization).
  5. Now that in-process and inter-process race conditions are excluded the post-install work can begin.
  6. Registered installers are run in sequence. Installers should be idempotent. The following installers are currently implemented:
    1. LibPython installer checks for the presence of .dist-info/require-libpython.
      1. The installer determines the location of the installation: venv, user or other.
      2. The list of all libpython library files is located from the sys.base_exec_prefix.
      3. If the installation is either venv or user and the link to the libpython library doesn't exist the symlink is created.
    2. Symlinks installer processes .dist-info/symlinks.txt, if any.
      1. Based on the location of the .pth file being executed the current installation schema and its paths are determined. Currently, installation into a virtual environment or user location is supported and tested.
      2. For each symlink the target path is resolved and realpath is used to determine the final target path.
      3. If the symlink path and symlink target path are within one of the permitted schema locations the symlink is created. Otherwise, an exception is raised and the processing is aborted.
      4. After all symlinks are created, the .dist-info/RECORD file is updated to reflect the created symlinks.
    3. Axle installer finalizes the installation. This installer is always executed last.
      1. The .dist-info/RECORD is updated with .dist-info/axle.done file record.
      2. .dist-info/axle.done is created.
      3. <distribution name and version>.pth is then removed. If the file cannot be removed it is left in place. This can happen on Windows, since the .pth file in question is likely opened for exclusive reading on Windows.
  7. Any failure anywhere in the above process will result in an abort, an error message, and a retry the next time the .pth will be activated.

Security

There are several security requirements and implications of having post-install hooks implemented this way.

  1. The installation requires write permissions to the distribution. This will be a problem if the package is installed as root in locations such as /usr or /usr/local, or is otherwise not write-permitted, unless the post-install hook is also ran with the sufficient privileges. This is generally acceptable as the primary use is considered to be installation into virtual envs and user locations. That said, simply running python -c pass or any other python invocation that does activate site.py under the required privileges will finalize post-install procedures.
  2. There is an attempt to ensure that that axle wheels symlinks and targets don't extend beyond the allowed schema locations. Those attempts are superficial and have not been formally verified. For example, it may be possible to escape the path validation/confinement by:
    • hacking symlink creation order
    • hacking symlink directory targets
    • exploiting OS-specific realpath implementation idiosyncrasies (i.e. strict vs not, and what is considered strict)

TODOs

  • Support schema detection for prefix installations.
  • Validate and verify Windows support.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wheel_axle_runtime-0.0.11.tar.gz (17.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wheel_axle_runtime-0.0.11-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file wheel_axle_runtime-0.0.11.tar.gz.

File metadata

  • Download URL: wheel_axle_runtime-0.0.11.tar.gz
  • Upload date:
  • Size: 17.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for wheel_axle_runtime-0.0.11.tar.gz
Algorithm Hash digest
SHA256 ec6f761526e91e7428f5af86f5f1147deb4a6c27a390ce84c54ba215e4b075a6
MD5 972f4276c5e65a97fe301925ce5beba2
BLAKE2b-256 9309bb7ac1f995c9e4900d782cce86bc647809e19a4634b156c16868c1f7d92c

See more details on using hashes here.

File details

Details for the file wheel_axle_runtime-0.0.11-py3-none-any.whl.

File metadata

File hashes

Hashes for wheel_axle_runtime-0.0.11-py3-none-any.whl
Algorithm Hash digest
SHA256 0000632010884734fb53752ed50c638c0af18adf41fae61ec0c28754e005905d
MD5 09b98c29520e3322a65279dd12eb42e0
BLAKE2b-256 b20fead22d7035cd51b41e1304ea9b880e2ae8befd7c15203d20b439374759e9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page