1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
# ===================================================================
#
# Copyright (c) 2018, Helder Eijs <helderijs@gmail.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
#
# 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.
# ===================================================================
import os
import sys
import struct
import distutils
from distutils import ccompiler
from distutils.errors import CCompilerError
def test_compilation(program, extra_cc_options=None, extra_libraries=None,
msg=''):
"""Test if a certain C program can be compiled."""
# Create a temporary file with the C program
if not os.path.exists("build"):
os.makedirs("build")
fname = os.path.join("build", "test1.c")
f = open(fname, 'w')
f.write(program)
f.close()
# Name for the temporary executable
oname = os.path.join("build", "test1.out")
debug = bool(os.environ.get('PYCRYPTODOME_DEBUG', None))
# Mute the compiler and the linker
if msg:
print("Testing support for %s" % msg)
if not (debug or os.name == 'nt'):
old_stdout = os.dup(sys.stdout.fileno())
old_stderr = os.dup(sys.stderr.fileno())
dev_null = open(os.devnull, "w")
os.dup2(dev_null.fileno(), sys.stdout.fileno())
os.dup2(dev_null.fileno(), sys.stderr.fileno())
objects = []
try:
compiler = ccompiler.new_compiler()
distutils.sysconfig.customize_compiler(compiler)
if compiler.compiler_type in ['msvc']:
# Force creation of the manifest file (http://bugs.python.org/issue16296)
# as needed by VS2010
extra_linker_options = ["/MANIFEST"]
else:
extra_linker_options = []
# In Unix, force the linker step to use CFLAGS and not CC alone (see GH#180)
if compiler.compiler_type in ['unix']:
compiler.set_executables(linker_exe=compiler.compiler)
objects = compiler.compile([fname], extra_postargs=extra_cc_options)
compiler.link_executable(objects, oname, libraries=extra_libraries,
extra_preargs=extra_linker_options)
result = True
except (CCompilerError, OSError):
result = False
for f in objects + [fname, oname]:
try:
os.remove(f)
except OSError:
pass
# Restore stdout and stderr
if not (debug or os.name == 'nt'):
if old_stdout is not None:
os.dup2(old_stdout, sys.stdout.fileno())
if old_stderr is not None:
os.dup2(old_stderr, sys.stderr.fileno())
if dev_null is not None:
dev_null.close()
if msg:
if result:
x = ""
else:
x = " not"
print("Target does%s support %s" % (x, msg))
return result
def has_stdint_h():
source = """
#include <stdint.h>
int main(void) {
uint32_t u;
u = 0;
return u + 2;
}
"""
return test_compilation(source, msg="stdint.h header")
def compiler_supports_uint128():
source = """
int main(void)
{
__uint128_t x;
return 0;
}
"""
return test_compilation(source, msg="128-bit integer")
def compiler_has_intrin_h():
# Windows
source = """
#include <intrin.h>
int main(void)
{
int a, b[4];
__cpuid(b, a);
return a;
}
"""
return test_compilation(source, msg="intrin.h header")
def compiler_has_cpuid_h():
# UNIX
source = """
#include <cpuid.h>
int main(void)
{
unsigned int eax, ebx, ecx, edx;
__get_cpuid(1, &eax, &ebx, &ecx, &edx);
return eax;
}
"""
return test_compilation(source, msg="cpuid.h header")
def compiler_supports_aesni():
source = """
#include <wmmintrin.h>
#include <string.h>
__m128i f(__m128i x, __m128i y) {
return _mm_aesenc_si128(x, y);
}
int main(void) {
int ret;
__m128i x;
memset(&x, 0, sizeof(x));
x = f(x, x);
memcpy(&ret, &x, sizeof(ret));
return ret;
}
"""
if test_compilation(source):
return {'extra_cc_options': [], 'extra_macros': []}
if test_compilation(source, extra_cc_options=['-maes'], msg='AESNI intrinsics'):
return {'extra_cc_options': ['-maes'], 'extra_macros': []}
return False
def compiler_supports_clmul():
result = {'extra_cc_options': [], 'extra_macros' : ['HAVE_WMMINTRIN_H', 'HAVE_TMMINTRIN_H']}
source = """
#include <wmmintrin.h>
#include <tmmintrin.h>
__m128i f(__m128i x, __m128i y) {
return _mm_clmulepi64_si128(x, y, 0x00);
}
__m128i g(__m128i a) {
__m128i mask;
mask = _mm_set_epi8(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15);
return _mm_shuffle_epi8(a, mask);
}
int main(void) {
return 0;
}
"""
if test_compilation(source):
return result
if test_compilation(source, extra_cc_options=['-mpclmul', '-mssse3'], msg='CLMUL intrinsics'):
result['extra_cc_options'].extend(['-mpclmul', '-mssse3'])
return result
return False
def compiler_has_posix_memalign():
source = """
#include <stdlib.h>
int main(void) {
void *new_mem;
int res;
res = posix_memalign((void**)&new_mem, 16, 101);
return res == 0;
}
"""
return test_compilation(source, msg="posix_memalign")
def compiler_has_memalign():
source = """
#include <malloc.h>
int main(void) {
void *p;
p = memalign(16, 101);
return p != (void*)0;
}
"""
return test_compilation(source, msg="memalign")
def compiler_is_clang():
source = """
#if !defined(__clang__)
#error Not clang
#endif
int main(void)
{
return 0;
}
"""
return test_compilation(source, msg="clang")
def compiler_is_gcc(extra_cc_options=[]):
source = """
#if defined(__clang__) || !defined(__GNUC__)
#error Not GCC
#endif
int main(void)
{
return 0;
}"""
return test_compilation(source,
msg="gcc",
extra_cc_options=extra_cc_options)
def compiler_supports_sse2():
source_template = """
%s
int main(void)
{
__m128i r0;
int mask;
r0 = _mm_set1_epi32(0);
mask = _mm_movemask_epi8(r0);
return mask;
}
"""
source_intrin_h = source_template % "#include <intrin.h>"
source_x86intrin_h = source_template % "#include <x86intrin.h>"
source_xemmintrin_h = source_template % "#include <xmmintrin.h>\n#include <emmintrin.h>"
system_bits = 8 * struct.calcsize("P")
result = None
if test_compilation(source_intrin_h, msg="SSE2(intrin.h)"):
result = {'extra_cc_options': [], 'extra_macros': ['HAVE_INTRIN_H', 'USE_SSE2']}
elif test_compilation(source_x86intrin_h, extra_cc_options=['-msse2'], msg="SSE2(x86intrin.h)"):
result = {'extra_cc_options': ['-msse2'], 'extra_macros': ['HAVE_X86INTRIN_H', 'USE_SSE2']}
elif test_compilation(source_xemmintrin_h, extra_cc_options=['-msse2'], msg="SSE2(emmintrin.h)"):
result = {'extra_cc_options': ['-msse2'], 'extra_macros': ['HAVE_EMMINTRIN_H', 'USE_SSE2']}
else:
result = False
# On 32-bit x86 platforms, gcc assumes the stack to be aligned to 16
# bytes, but the caller may actually only align it to 4 bytes, which
# make functions crash if they use SSE2 intrinsics.
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=40838
if result and system_bits == 32 and compiler_is_gcc(extra_cc_options=['-mstackrealign']):
result['extra_cc_options'].append('-mstackrealign')
return result
def remove_extension(extensions, name):
idxs = [i for i, x in enumerate(extensions) if x.name == name]
if len(idxs) != 1:
raise ValueError("There is no or there are multiple extensions named '%s'" % name)
del extensions[idxs[0]]
def set_compiler_options(package_root, extensions):
"""Environment specific settings for extension modules.
This function modifies how each module gets compiled, to
match the capabilities of the platform.
Also, it removes existing modules when not supported, such as:
- AESNI
- CLMUL
"""
extra_cc_options = []
extra_macros = []
clang = compiler_is_clang()
gcc = compiler_is_gcc()
if has_stdint_h():
extra_macros.append(("HAVE_STDINT_H", None))
# Endianess
extra_macros.append(("PYCRYPTO_" + sys.byteorder.upper() + "_ENDIAN", None))
# System
system_bits = 8 * struct.calcsize("P")
extra_macros.append(("SYS_BITS", str(system_bits)))
# Disable any assembly in libtomcrypt files
extra_macros.append(("LTC_NO_ASM", None))
# Native 128-bit integer
if compiler_supports_uint128():
extra_macros.append(("HAVE_UINT128", None))
# Auto-detecting CPU features
cpuid_h_present = compiler_has_cpuid_h()
if cpuid_h_present:
extra_macros.append(("HAVE_CPUID_H", None))
intrin_h_present = compiler_has_intrin_h()
if intrin_h_present:
extra_macros.append(("HAVE_INTRIN_H", None))
# Platform-specific call for getting a block of aligned memory
if compiler_has_posix_memalign():
extra_macros.append(("HAVE_POSIX_MEMALIGN", None))
elif compiler_has_memalign():
extra_macros.append(("HAVE_MEMALIGN", None))
# SSE2
sse2_result = compiler_supports_sse2()
if sse2_result:
extra_cc_options.extend(sse2_result['extra_cc_options'])
for macro in sse2_result['extra_macros']:
extra_macros.append((macro, None))
# Module-specific options
# AESNI
aesni_result = (cpuid_h_present or intrin_h_present) and compiler_supports_aesni()
aesni_mod_name = package_root + ".Cipher._raw_aesni"
if aesni_result:
print("Compiling support for AESNI instructions")
aes_mods = [x for x in extensions if x.name == aesni_mod_name]
for x in aes_mods:
x.extra_compile_args.extend(aesni_result['extra_cc_options'])
for macro in aesni_result['extra_macros']:
x.define_macros.append((macro, None))
else:
print("Warning: compiler does not support AESNI instructions")
remove_extension(extensions, aesni_mod_name)
# CLMUL
clmul_result = (cpuid_h_present or intrin_h_present) and compiler_supports_clmul()
clmul_mod_name = package_root + ".Hash._ghash_clmul"
if clmul_result:
print("Compiling support for CLMUL instructions")
clmul_mods = [x for x in extensions if x.name == clmul_mod_name]
for x in clmul_mods:
x.extra_compile_args.extend(clmul_result['extra_cc_options'])
for macro in clmul_result['extra_macros']:
x.define_macros.append((macro, None))
else:
print("Warning: compiler does not support CLMUL instructions")
remove_extension(extensions, clmul_mod_name)
for x in extensions:
x.extra_compile_args.extend(extra_cc_options)
x.define_macros.extend(extra_macros)
|