
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
ctypesgen
Advanced tools
ctypesgen
---------
(c) Ctypesgen developers 2007-2022
https://github.com/ctypesgen/ctypesgen
ctypesgen is a pure-python ctypes wrapper generator. It parses C header files and creates a wrapper for libraries based on what it finds.
Preprocessor macros are handled in a manner consistent with typical C code. Preprocessor macro functions are translated into Python functions that are then made available to the user of the newly-generated Python wrapper library.
It can also output JSON, which can be used with Mork, which generates bindings for Lua, using the alien module (which binds libffi to Lua).
See https://github.com/ctypesgen/ctypesgen/wiki for full documentation.
Run ctypesgen --help for full range of available options.
ctypesgen can be installed by pip install ctypesgen. It requires Python 3.7
to run.
This project automatically generates ctypes wrappers for header files written in C.
For example, if you'd like to generate Neon bindings, you can do so using this recipe (using a standard pip install):
ctypesgen -lneon /usr/local/include/neon/ne_*.h -o neon.py
Some libraries, such as APR, need special flags to compile. You can pass these flags in on the command line.
For example:
FLAGS = `apr-1-config --cppflags --includes`
ctypesgen $FLAGS -llibapr-1.so $HOME/include/apr-1/apr*.h -o apr.py
Sometimes, libraries will depend on each other. You can specify these dependencies using -mmodule, where module is the name of the dependency module.
Here's an example for apr_util:
ctypesgen $FLAGS -llibaprutil-1.so $HOME/include/apr-1/ap[ru]*.h \
-mapr -o apr_util.py
If you want JSON output (e.g. for generating Lua bindings), use
--output-language=json
When outputting JSON, you will probably also want to use
--all-headers --builtin-symbols --no-stddef-types --no-gnu-types
--no-python-types
libffi is a portable Foreign Function Interface library: http://sources.redhat.com/libffi/
Mork, the friendly alien, can be found at: https://github.com/rrthomas/mork
ctypesgen is distributed under the New (2-clause) BSD License: http://www.opensource.org/licenses/bsd-license.php
Copyright (c) 2007-2022, Ctypesgen Developers All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This release has a number of bug fixes in addition to a few new features. Following a complete transition to Python 3, with dropped Python 2 support, major work was made towards code modernization and quality.
--no-embed-preamble create separate files for preamble and
loader instead of embedding in each output file--allow-gnu-c do not undefine __GNUC__restrict and _Noreturn keywordsx.y.z formatMany issues fixed. Parse gcc attributes more
Implements automatic calling convention selection based on gcc attributes for stdcall/cdecl.
-D --define
-U --undefine
--no-undefs
-P --strip-prefix
--debug-levelFix handling of function prototypes
Other minor improvments included.
Py2/Py3 support
Various development branches merged back
In addition to the various developments from the different branches, this tag also represents a code state that:
FAQs
Python wrapper generator for ctypes
We found that ctypesgen demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.