diff options
author | Jeremy Lainé <jeremy.laine@m4x.org> | 2018-03-05 22:47:44 +0100 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-03-05 17:47:44 -0400 |
commit | ef8f066d5a6790a65452e345ae70b8e29af5381e (patch) | |
tree | c754b0ed6ea5471de47b2da5a207dc54f66465b1 | |
parent | aa877e1a6696fd4defbdf97ef114bdb2d4cd8a18 (diff) | |
download | cryptography-ef8f066d5a6790a65452e345ae70b8e29af5381e.tar.gz cryptography-ef8f066d5a6790a65452e345ae70b8e29af5381e.tar.bz2 cryptography-ef8f066d5a6790a65452e345ae70b8e29af5381e.zip |
Check all .so's are noexecstack (#3994) (#4130)
The ouput of execstack -q is one line per file, either:
- starting with a '-' (dash) if the file does not require an executable stack
- start with an 'X' if the file *does* require an executable stack
We check there are no files which require an executable stack.
-rw-r--r-- | .jenkins/Jenkinsfile-cryptography-wheel-builder | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.jenkins/Jenkinsfile-cryptography-wheel-builder b/.jenkins/Jenkinsfile-cryptography-wheel-builder index a8f0980e..0f66bfb0 100644 --- a/.jenkins/Jenkinsfile-cryptography-wheel-builder +++ b/.jenkins/Jenkinsfile-cryptography-wheel-builder @@ -134,6 +134,9 @@ def build(version, label, imageName) { CFLAGS="-I/opt/pyca/cryptography/openssl/include -Wl,--exclude-libs,ALL" \ $linux32 /opt/python/$version/bin/pip wheel cryptography==$BUILD_VERSION -w tmpwheelhouse/ --no-binary cryptography --no-deps $linux32 auditwheel repair tmpwheelhouse/cryptography*.whl -w wheelhouse/ + unzip wheelhouse/*.whl -d execstack.check + chmod -R 777 execstack.check + (execstack execstack.check/cryptography/hazmat/bindings/*.so | grep '^X') && exit 1 $linux32 /opt/python/$version/bin/pip install cryptography==$BUILD_VERSION --no-index -f wheelhouse/ $linux32 /opt/python/$version/bin/python -c "from cryptography.hazmat.backends.openssl.backend import backend;print('Loaded: ' + backend.openssl_version_text());print('Linked Against: ' + backend._ffi.string(backend._lib.OPENSSL_VERSION_TEXT).decode('ascii'))" """ |