2019-03-13 23:15:17 +00:00
|
|
|
# Support code for building a C extension with crypto code
|
2019-03-12 02:15:59 +00:00
|
|
|
|
|
|
|
import os
|
2019-08-25 21:57:05 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
is_win32 = sys.platform.startswith('win32')
|
2019-03-12 02:15:59 +00:00
|
|
|
|
|
|
|
|
2019-03-13 23:15:17 +00:00
|
|
|
def multi_join(paths, *path_segments):
|
|
|
|
"""apply os.path.join on a list of paths"""
|
|
|
|
return [os.path.join(*(path_segments + (path,))) for path in paths]
|
|
|
|
|
|
|
|
|
2019-03-15 20:23:46 +00:00
|
|
|
def crypto_ext_kwargs(pc, system_prefix):
|
2019-03-12 02:15:59 +00:00
|
|
|
if system_prefix:
|
2019-03-13 04:40:25 +00:00
|
|
|
print('Detected OpenSSL [via BORG_OPENSSL_PREFIX]')
|
2019-08-25 21:57:05 +00:00
|
|
|
if is_win32:
|
|
|
|
lib_dir = system_prefix
|
|
|
|
lib_name = 'libcrypto'
|
|
|
|
else:
|
|
|
|
lib_dir = os.path.join(system_prefix, 'lib')
|
|
|
|
lib_name = 'crypto'
|
|
|
|
|
2019-03-13 04:40:25 +00:00
|
|
|
return dict(include_dirs=[os.path.join(system_prefix, 'include')],
|
2019-08-25 21:57:05 +00:00
|
|
|
library_dirs=[lib_dir],
|
|
|
|
libraries=[lib_name])
|
2019-03-13 04:40:25 +00:00
|
|
|
|
2019-03-13 22:59:04 +00:00
|
|
|
if pc and pc.exists('libcrypto'):
|
2019-03-13 04:40:25 +00:00
|
|
|
print('Detected OpenSSL [via pkg-config]')
|
2019-03-13 22:59:04 +00:00
|
|
|
return pc.parse('libcrypto')
|
2019-03-12 02:15:59 +00:00
|
|
|
|
2019-03-13 04:40:25 +00:00
|
|
|
raise Exception('Could not find OpenSSL lib/headers, please set BORG_OPENSSL_PREFIX')
|
2019-03-13 23:15:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
# b2 files, structure as seen in BLAKE2 (reference implementation) project repository:
|
|
|
|
|
|
|
|
# path relative (to this file) to the bundled library source code files
|
|
|
|
b2_bundled_path = 'src/borg/algorithms/blake2'
|
|
|
|
|
|
|
|
b2_sources = [
|
|
|
|
'ref/blake2b-ref.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
b2_includes = [
|
|
|
|
'ref',
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2019-03-15 20:23:46 +00:00
|
|
|
def b2_ext_kwargs(pc, prefer_system, system_prefix):
|
2019-03-13 23:15:17 +00:00
|
|
|
if prefer_system:
|
|
|
|
if system_prefix:
|
|
|
|
print('Detected and preferring libb2 [via BORG_LIBB2_PREFIX]')
|
|
|
|
return dict(include_dirs=[os.path.join(system_prefix, 'include')],
|
|
|
|
library_dirs=[os.path.join(system_prefix, 'lib')],
|
|
|
|
libraries=['b2'])
|
|
|
|
|
|
|
|
if pc and pc.installed('libb2', '>= 0.98.1'):
|
|
|
|
print('Detected and preferring libb2 [via pkg-config]')
|
|
|
|
return pc.parse('libb2')
|
|
|
|
|
|
|
|
print('Using bundled BLAKE2')
|
|
|
|
sources = multi_join(b2_sources, b2_bundled_path)
|
|
|
|
include_dirs = multi_join(b2_includes, b2_bundled_path)
|
|
|
|
define_macros = [('BORG_USE_BUNDLED_B2', 'YES')]
|
|
|
|
return dict(sources=sources, include_dirs=include_dirs, define_macros=define_macros)
|