X Tutup
The Wayback Machine - https://web.archive.org/web/20241127042157/https://github.com/python/cpython/issues/81241
Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

import ctypes fails with a statically linked interpreter due to dlopen() failure #81241

Open
indygreg mannequin opened this issue May 27, 2019 · 2 comments
Open

import ctypes fails with a statically linked interpreter due to dlopen() failure #81241

indygreg mannequin opened this issue May 27, 2019 · 2 comments
Labels

Comments

@indygreg
Copy link
Mannequin

indygreg mannequin commented May 27, 2019

BPO 37060
Nosy @indygreg

Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

Show more details

GitHub fields:

assignee = None
closed_at = None
created_at = <Date 2019-05-27.00:02:41.529>
labels = ['ctypes', '3.7']
title = 'import ctypes fails with a statically linked interpreter due to dlopen() failure'
updated_at = <Date 2019-05-27.00:02:41.529>
user = 'https://github.com/indygreg'

bugs.python.org fields:

activity = <Date 2019-05-27.00:02:41.529>
actor = 'indygreg'
assignee = 'none'
closed = False
closed_date = None
closer = None
components = ['ctypes']
creation = <Date 2019-05-27.00:02:41.529>
creator = 'indygreg'
dependencies = []
files = []
hgrepos = []
issue_num = 37060
keywords = []
message_count = 1.0
messages = ['343588']
nosy_count = 1.0
nosy_names = ['indygreg']
pr_nums = []
priority = 'normal'
resolution = None
stage = None
status = 'open'
superseder = None
type = None
url = 'https://bugs.python.org/issue37060'
versions = ['Python 3.7']

@indygreg
Copy link
Mannequin Author

indygreg mannequin commented May 27, 2019

ctypes/init.py calls _ctypes.dlopen(None) on Linux as part of code execution during module import. Unfortunately, dlopen() doesn't work if the current executable isn't a dynamic executable.

Using a fully statically linked Python executable:

$ ldd python3.7
        not a dynamic executable
$ python3.7
>>> import _ctypes

>>> _ctypes.dlopen(None)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: Dynamic loading not supported

>>> import ctypes
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/gps/src/python-build-standalone.git/build/python/install/lib/python3.7/ctypes/__init__.py", line 444, in <module>
    pythonapi = PyDLL(None)
  File "/home/gps/src/python-build-standalone.git/build/python/install/lib/python3.7/ctypes/__init__.py", line 356, in __init__
    self._handle = _dlopen(self._name, mode)
OSError: Dynamic loading not supported

I think it is a bug that import ctypes raises OSError at import time in this environment. I can make a compelling argument that this error should either be suppressed or converted to an ImportError.

Producing a fully statically linked Python executable is a bit of work and isn't easily accomplished with the existing build system. My "python-build-standalone" project automates the process. A fully statically linked Python executable is available in the zstd compressed archive at https://github.com/indygreg/python-build-standalone/releases/download/20190505/cpython-3.7.3-linux64-musl-20190526T0219.tar.zst under the python/install/bin/python3.7 path. Simply extract that archive and run that binary to reproduce.

@indygreg indygreg mannequin added 3.7 (EOL) end of life topic-ctypes labels May 27, 2019
@ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
@voltagex
Copy link

@indygreg did you work out a way around this? I note your https://github.com/indygreg/python-build-standalone/blob/main/cpython-unix/patch-ctypes-static-binary.patch, but this does not seem to fix a static build of Python on its own.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant
X Tutup