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
|
#!/usr/bin/python
"""
CI build script
(C) 2017 Jack Lloyd
Botan is released under the Simplified BSD License (see license.txt)
"""
import os
import platform
import subprocess
import sys
import time
import optparse # pylint: disable=deprecated-module
def get_concurrency():
"""
Get default concurrency level of build
"""
def_concurrency = 2
try:
import multiprocessing
return max(def_concurrency, multiprocessing.cpu_count())
except ImportError:
return def_concurrency
def getenv_or_die(var):
"""
Like it says...
"""
val = os.getenv(var)
if val is None:
raise Exception('Required variable %s not set in environment' % (var))
return val
def determine_flags(target, target_os, target_cc, cc_bin, use_ccache, root_dir):
# pylint: disable=too-many-branches,too-many-statements,too-many-arguments
"""
Return the configure.py flags as well as make/test running prefixes
"""
is_cross_target = target.startswith('cross-')
if target_os not in ['linux', 'osx']:
print('Error unknown OS %s' % (target_os))
return 1
if target_cc not in ['gcc', 'clang']:
print('Error unknown compiler %s' % (target_cc))
return 1
if is_cross_target:
if target_os == 'osx':
target_os = 'ios'
elif target == 'cross-mingw':
target_os = 'mingw'
make_prefix = []
test_prefix = []
test_cmd = [os.path.join(root_dir, 'botan-test')]
flags = ['--prefix=/tmp/botan-install', '--cc=%s' % (target_cc), '--os=%s' % (target_os)]
if target in ['static', 'mini-static', 'fuzzers'] or target_os in ['ios', 'mingw']:
flags += ['--disable-shared']
if target in ['mini-static', 'mini-shared']:
flags += ['--minimized-build', '--enable-modules=dev_random,system_rng,sha2_32,sha2_64,aes']
if target == 'shared':
# Arbitrarily test amalgamation on shared obj builds
flags += ['--amalgamation']
if target in ['bsi', 'nist']:
flags += ['--module-policy=%s' % (target)]
if target == 'docs':
flags += ['--with-doxygen', '--with-sphinx']
if target == 'coverage':
flags += ['--with-coverage-info']
if target == 'valgrind':
flags += ['--with-valgrind']
test_prefix = ['valgrind', '--error-exitcode=9', '-v']
if target in ['fuzzers', 'coverage', 'valgrind']:
flags += ['--with-debug-info']
if target in ['fuzzers', 'coverage']:
flags += ['--build-fuzzers=test']
if target in ['fuzzers', 'sanitizer']:
flags += ['--with-sanitizers']
if target in ['valgrind', 'sanitizer', 'fuzzers']:
flags += ['--disable-modules=locking_allocator']
if target == 'parallel':
if 'cc' == 'gcc':
flags += ['--with-cilkplus']
else:
flags += ['--with-openmp']
if target == 'sonarqube':
make_prefix = [os.path.join(root_dir, 'build-wrapper-linux-x86/build-wrapper-linux-x86-64'),
'--out-dir', 'bw-outputs']
test_cmd = ['sonar-scanner', '-Dsonar.login=%s' % (getenv_or_die('SONAR_TOKEN'))]
if target_os == 'linux' and (target == 'valgrind' or is_cross_target):
# Minimize the build when doing something that is slow
# Note this skips os == 'mingw' since the tests are fast under Wine
flags += ['--module-policy=modern', '--enable-modules=tls']
if is_cross_target:
if target_os == 'ios':
make_prefix = ['xcrun', '--sdk', 'iphoneos']
test_cmd = None
if target == 'cross-arm32':
flags += ['--cpu=armv7', '--cc-abi-flags=-arch armv7 -arch armv7s -stdlib=libc++']
elif target == 'cross-arm64':
flags += ['--cpu=armv8-a', '--cc-abi-flags=-arch arm64 -stdlib=libc++']
else:
raise Exception("Unknown cross target '%s' for iOS" % (target))
elif target == 'cross-win32':
flags += ['--cpu=x86_32', '--cc-abi-flags=-static']
cc_bin = 'i686-w64-mingw32-g++'
test_cmd = os.path.join(root_dir, 'botan-test.exe')
# No runtime prefix required for Wine
else:
if target == 'cross-arm32':
flags += ['--cpu=armv7']
cc_bin = 'arm-linux-gnueabihf-g++'
test_prefix = ['qemu-arm', '-L', '/usr/arm-linux-gnueabihf/']
elif target == 'cross-arm64':
flags += ['--cpu=armv8-a']
cc_bin = 'aarch64-linux-gnu-g++'
test_prefix = ['qemu-aarch64', '-L', '/usr/aarch64-linux-gnu/']
elif target == 'cross-ppc32':
flags += ['--cpu=ppc32']
cc_bin = 'powerpc-linux-gnu-g++'
test_prefix = ['qemu-ppc', '-L', '/usr/powerpc-linux-gnu/']
elif target == 'cross-ppc64':
flags += ['--cpu=ppc64', '--with-endian=little']
cc_bin = 'powerpc64le-linux-gnu-g++'
test_prefix = ['qemu-ppc64le', '-L', '/usr/powerpc64le-linux-gnu/']
else:
raise Exception("Unknown cross target '%s' for Linux" % (target))
else:
# Flags specific to native targets
flags += ['--with-bzip2', '--with-lzma', '--with-sqlite', '--with-zlib']
if target == 'coverage':
flags += ['--with-tpm']
test_cmd += ['--run-long-tests', '--run-online-tests']
softhsm_lib = '/tmp/softhsm/lib/softhsm/libsofthsm2.so'
if os.access(softhsm_lib, os.R_OK):
test_cmd += ['--pkcs11-lib=%s' % (softhsm_lib)]
if target_os == 'osx':
# Test Boost on OS X
flags += ['--with-boost']
elif target_os == 'linux' and target not in ['sanitizer', 'valgrind']:
# Avoid OpenSSL when using dynamic checkers, or on OS X where it sporadically
# is not installed on the CI image
flags += ['--with-openssl']
flags += ['--cc-bin=%s%s' % ('ccache ' if use_ccache else '', cc_bin)]
if test_cmd is None:
run_test_command = None
else:
run_test_command = test_prefix + test_cmd
return flags, run_test_command, make_prefix
def run_cmd(cmd, root_dir):
"""
Execute a command, die if it failed
"""
print("Running '%s':\n" % (' '.join(cmd)))
sys.stdout.flush()
start = time.time()
env={'LD_LIBRARY_PATH': root_dir, 'PATH': os.getenv('PATH')}
proc = subprocess.Popen(cmd, close_fds=True, env=env)
proc.communicate()
time_taken = time.time() - start
if time_taken > 2:
print("Ran for %f seconds" % (time_taken))
if proc.returncode != 0:
print("Command failed with error code %d" % (proc.returncode))
sys.exit(proc.returncode)
def setup_option_parser():
"""
Return an OptionParser instance
"""
parser = optparse.OptionParser()
parser.add_option('--os', default=platform.system().lower(),
help='Set the target os (default %default)')
parser.add_option('--cc', default='gcc',
help='Set the target compiler type (default %default)')
parser.add_option('--cc-bin', default='g++',
help='Set path to compiler (default %default)')
parser.add_option('--root-dir', metavar='D', default='.',
help='Set directory to execute from (default %default)')
parser.add_option('--branch', metavar='B', default=None,
help='Specify branch being built')
parser.add_option('--add-travis-folds', action='store_true', default=False,
help='Add fold markers for Travis UI')
parser.add_option('--dry-run', action='store_true', default=False,
help='Just show commands to be executed')
parser.add_option('--build-jobs', metavar='J', default=get_concurrency(),
help='Set number of jobs to run in parallel (default %default)')
parser.add_option('--with-ccache', dest='use_ccache', action='store_true', default=None,
help='Enable using ccache')
parser.add_option('--without-ccache', dest='use_ccache', action='store_false',
help='Disable using ccache')
return parser
def have_prog(prog):
"""
Check if some named program exists in the path
"""
for path in os.environ['PATH'].split(os.pathsep):
exe_file = os.path.join(path, prog)
if os.path.exists(exe_file) and os.access(exe_file, os.X_OK):
return True
def main(args=None):
# pylint: disable=too-many-branches
"""
Parse options, do the things
"""
if args is None:
args = sys.argv
parser = setup_option_parser()
(options, args) = parser.parse_args(args)
if len(args) != 2:
print('Usage: %s [options] target' % (args[0]))
return 1
if options.use_ccache is None:
options.ccache = have_prog('ccache')
target = args[1]
root_dir = options.root_dir
if os.access(root_dir, os.R_OK) != True:
raise Exception('Bad root dir setting, dir %s not readable', root_dir)
cmds = []
if target == 'lint':
py_scripts = [
'configure.py',
'src/python/botan2.py',
'src/scripts/ci_build.py',
'src/scripts/install.py',
'src/scripts/python_unittests.py',
'src/scripts/python_unittests_unix.py']
for target in py_scripts:
target_path = os.path.join(root_dir, target)
# Some disabled rules specific to Python2
# superfluous-parens: needed for Python3 compatible print statements
# too-many-locals: variable counting differs from pylint3
py2_flags = '--disable=superfluous-parens,too-many-locals'
cmds.append(['python2', '-m', 'pylint', py2_flags, target_path])
cmds.append(['python3', '-m', 'pylint', target_path])
else:
config_flags, run_test_command, make_prefix = determine_flags(
target, options.os, options.cc, options.cc_bin, options.use_ccache, root_dir)
cmds.append([os.path.join(root_dir, 'configure.py')] + config_flags)
if target == 'docs':
cmds.append(['make', '-C', root_dir, 'docs'])
else:
if options.use_ccache:
cmds.append(['ccache', '--show-stats'])
cmds.append(make_prefix + ['make', '-C', root_dir, '-j', str(options.build_jobs)])
if target in ['coverage', 'fuzzers']:
cmds.append(make_prefix + ['make', '-C', root_dir, 'fuzzers', 'fuzzer_corpus_zip'])
if options.use_ccache:
cmds.append(['ccache', '--show-stats'])
if run_test_command != None:
cmds.append(run_test_command)
if target in ['coverage', 'fuzzers']:
cmds.append([os.path.join(root_dir, 'src/scripts/test_fuzzers.py'),
os.path.join(root_dir, 'fuzzer_corpus'),
os.path.join(root_dir, 'build/fuzzer')])
if target in ['static', 'shared']:
cmds.append([os.path.join(root_dir, 'src/scripts/cli_tests.py'),
os.path.join(root_dir, 'botan')])
if target in ['shared', 'coverage']:
cmds.append(['python2', os.path.join(root_dir, 'src/python/botan2.py')])
cmds.append(['python3', os.path.join(root_dir, 'src/python/botan2.py')])
if target != 'docs':
cmds.append(['make', 'install'])
if target in ['coverage']:
cmds.append(['lcov', '--capture', '--directory', options.root_dir, '--output-file', 'coverage.info.raw'])
cmds.append(['lcov', '--remove', 'coverage.info.raw', '/usr/*', '--output-file', 'coverage.info'])
cmds.append(['lcov', '--list', 'coverage.info'])
if have_prog('coverage'):
cmds.append(['coverage', 'run', '--branch', os.path.join(root_dir,'src/python/botan2.py')])
if have_prog('codecov'):
# If codecov exists assume we are on Travis and report to codecov.io
cmds.append(['codecov'])
else:
# Otherwise generate a local HTML report
cmds.append(['genhtml', 'coverage.info', '--output-directory', 'lcov-out'])
for cmd in cmds:
if options.dry_run:
print('$ ' + ' '.join(cmd))
else:
run_cmd(cmd, root_dir)
return 0
if __name__ == '__main__':
sys.exit(main())
|