-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
ctypes: unions as arguments #60779
Comments
ctypes pretends to support passing arguments to C functions that are unions (not pointers to unions), but that's a lie. In fact, the underlying libffi does not support it. The attached example misbehaves on Linux x86-64. |
A minimal fix would be to update the documentation. A more comprehensive fix would be to tweak ctypes to reject unions and bit-fields when running on non-x86 (does this work for ARM and other non-Intel archs?) An even more comprehensive fix would be to make this work, but that would require forking libffi and should presumably be first implemented upstream. |
See also http://bugs.python.org/issue16576. |
New changeset 0acd9408b6f1 by Eli Bendersky in branch '3.2': New changeset bfc159f8e4b4 by Eli Bendersky in branch '3.3': New changeset 502624235c7b by Eli Bendersky in branch 'default': |
New changeset eece32440a52 by Eli Bendersky in branch '2.7': |
I've opened a libffi issue in an attempt to get this fixed upstream: |
Link to issue has changed to: |
This change introduced a reference leak on Windows. Example on 3.7: https://buildbot.python.org/all/#/builders/132/builds/645 test_ctypes leaked [174, 174, 174] references, sum=522 |
Same issue on x86 Gentoo Refleaks 3.7: test_ctypes leaked [174, 174, 174] references, sum=522 |
Opened #17064 to fix this. Essentially it's a tiny little oversight in the back-porting. In the 3.7 branch, we perform an attribute lookup for λ win32\python_d.exe -m test -R 3:3 test_ctypes == Tests result: SUCCESS == 1 test OK. Total duration: 14.8 sec |
Will close after https://buildbot.python.org/all/#/builders?tags=%2Brefleak&tags=%2B3.7 go back to green. |
3.7 refleaks buildbots pass again (ignoring a few warnings). |
It seems that notwithstanding the issues identified in the original bug report, calls by value of structs containing unions are being used out there in the wild. Examples: The comtypes library (Windows): The ctypesgen library, which is used by other projects across platforms: Linux examples: So, it would seem that the simplest course of action is to disable the checks for now. The checks will be commented out and this issue and the related issue bpo-16576 will be reopened. |
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:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: