-
Notifications
You must be signed in to change notification settings - Fork 5
/
meson.build
626 lines (581 loc) · 17 KB
/
meson.build
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
project(
'faest-ref',
['c', 'cpp'],
version: '1.0.1',
meson_version: '>=0.57',
default_options: [
'c_std=c11',
'cpp_std=c++17',
'warning_level=3',
'b_lto=true',
'b_ndebug=if-release',
],
)
cc = meson.get_compiler('c')
cpp = meson.get_compiler('cpp')
conf_data = configuration_data()
# compile flags and defines
flags = []
c_flags = []
cpp_flags = []
defines = []
if cc.get_id() != 'msvc'
c_flags += [
'-Werror=implicit-function-declaration',
'-Werror=vla',
'-Werror=incompatible-pointer-types',
]
flags += ['-Wshadow', '-Wno-psabi']
defines += '-D_GNU_SOURCE'
if get_option('march-native').enabled()
flags += '-march=native'
endif
else
warnings = []
# function inlining
warnings += ['4710', '4711']
# padding of structs
warnings += ['4820', '4324']
# .. in include paths
warnings += '4464'
# undefined macros evaluating to 0 in MSVC headers
warnings += '4668'
# Spectre mitigation
warnings += '5045'
# initialization of aggregate types with non-constant values is valid C99
warnings += '4204'
# nameless structs/unions are part of C11
warnings += '4201'
# conditional expression is constant
warnings += '4127'
# unary minus of unsigned types
warnings += '4146'
# 'inline' used more than once
warnings += '4141'
foreach w : warnings
flags += '/wd' + w
endforeach
defines += '-D_CRT_SECURE_NO_WARNINGS'
endif
c_flags = cc.get_supported_arguments(flags) + cc.get_supported_arguments(c_flags)
cpp_flags = cpp.get_supported_arguments(flags) + cc.get_supported_arguments(cpp_flags)
linker_flags = cc.get_supported_link_arguments(flags)
# check availability of some headers
conf_data.set('HAVE_SYS_RANDOM_H', cc.has_header('sys/random.h'))
# check availability of some functions
conf_data.set(
'HAVE_ALIGNED_ALLOC',
cc.has_header_symbol('stdlib.h', 'aligned_alloc', args: defines),
)
conf_data.set(
'HAVE_POSIX_MEMALIGN',
cc.has_header_symbol('stdlib.h', 'posix_memalign', args: defines),
)
conf_data.set('HAVE_MEMALIGN', cc.has_header_symbol('malloc.h', 'memalign', args: defines))
conf_data.set(
'HAVE_GETRANDOM',
cc.has_header_symbol('sys/random.h', 'getrandom', args: defines),
)
conf_data.set(
'HAVE_ARC4RANDOM_BUF',
cc.has_header_symbol('stdlib.h', 'arc4random_buf', args: defines),
)
conf_data.set(
'HAVE_EXPLICIT_BZERO',
cc.has_header_symbol('string.h', 'explicit_bzero', args: defines),
)
conf_data.set(
'HAVE_CONSTTIME_MEMEQUAL',
cc.has_header_symbol('string.h', 'consttime_memequal', args: defines),
)
conf_data.set(
'HAVE_TIMINGSAFE_BCMP',
cc.has_header_symbol('string.h', 'timingsafe_bcmp', args: defines),
)
conf_data.set(
'HAVE_PTHREAD_SETAFFINITY_NP',
cc.has_header_symbol('pthread.h', 'pthread_setaffinity_np', args: defines),
)
# parameter sets
# After changing the parameter sets, be sure to run crypto_sign_generator.py to create the corresponding meson files.
parameter_sets = []
# parameter set: FAEST-128s
param_128s = configuration_data()
param_128s.set('PARAM', '128S')
param_128s.set('PARAM_L', '128s')
param_128s.set('LAMBDA', 128)
param_128s.set('Nwd', 4)
param_128s.set('Ske', 40)
param_128s.set('R', 10)
param_128s.set('Senc', 160)
param_128s.set('BETA', 1)
param_128s.set('L', 1600)
param_128s.set('Lke', 448)
param_128s.set('Lenc', 1152)
param_128s.set('C', 200)
param_128s.set('TAU', 11)
param_128s.set('K0', 12)
param_128s.set('K1', 11)
param_128s.set('T0', 7)
param_128s.set('T1', 4)
param_128s.set('SIG_SIZE', 5006)
param_128s.set('PK_SIZE', 32)
param_128s.set('SK_SIZE', 32)
parameter_sets += param_128s
# parameter set: FAEST-128f
param_128f = configuration_data()
param_128f.set('PARAM', '128F')
param_128f.set('PARAM_L', '128f')
param_128f.set('LAMBDA', 128)
param_128f.set('Nwd', 4)
param_128f.set('Ske', 40)
param_128f.set('R', 10)
param_128f.set('Senc', 160)
param_128f.set('BETA', 1)
param_128f.set('L', 1600)
param_128f.set('Lke', 448)
param_128f.set('Lenc', 1152)
param_128f.set('C', 200)
param_128f.set('TAU', 16)
param_128f.set('K0', 8)
param_128f.set('K1', 8)
param_128f.set('T0', 0)
param_128f.set('T1', 16)
param_128f.set('SIG_SIZE', 6336)
param_128f.set('PK_SIZE', 32)
param_128f.set('SK_SIZE', 32)
parameter_sets += param_128f
# parameter set: FAEST-EM-128s
param_em_128s = configuration_data()
param_em_128s.set('PARAM', 'EM_128S')
param_em_128s.set('PARAM_L', 'em_128s')
param_em_128s.set('LAMBDA', 128)
param_em_128s.set('Nwd', 4)
param_em_128s.set('Ske', 0)
param_em_128s.set('R', 10)
param_em_128s.set('Senc', 160)
param_em_128s.set('BETA', 1)
param_em_128s.set('L', 1280)
param_em_128s.set('Lke', 0)
param_em_128s.set('Lenc', 1280)
param_em_128s.set('C', 200)
param_em_128s.set('TAU', 11)
param_em_128s.set('K0', 12)
param_em_128s.set('K1', 11)
param_em_128s.set('T0', 7)
param_em_128s.set('T1', 4)
param_em_128s.set('SIG_SIZE', 4566)
param_em_128s.set('PK_SIZE', 32)
param_em_128s.set('SK_SIZE', 32)
parameter_sets += param_em_128s
# parameter set: FAEST-EM-128f
param_em_128f = configuration_data()
param_em_128f.set('PARAM', 'EM_128F')
param_em_128f.set('PARAM_L', 'em_128f')
param_em_128f.set('LAMBDA', 128)
param_em_128f.set('Nwd', 4)
param_em_128f.set('Ske', 0)
param_em_128f.set('R', 10)
param_em_128f.set('Senc', 160)
param_em_128f.set('BETA', 1)
param_em_128f.set('L', 1280)
param_em_128f.set('Lke', 0)
param_em_128f.set('Lenc', 1280)
param_em_128f.set('C', 200)
param_em_128f.set('TAU', 16)
param_em_128f.set('K0', 8)
param_em_128f.set('K1', 8)
param_em_128f.set('T0', 0)
param_em_128f.set('T1', 16)
param_em_128f.set('SIG_SIZE', 5696)
param_em_128f.set('PK_SIZE', 32)
param_em_128f.set('SK_SIZE', 32)
parameter_sets += param_em_128f
# parameter set: FAEST-192s
param_192s = configuration_data()
param_192s.set('PARAM', '192S')
param_192s.set('PARAM_L', '192s')
param_192s.set('LAMBDA', 192)
param_192s.set('Nwd', 6)
param_192s.set('Ske', 32)
param_192s.set('R', 12)
param_192s.set('Senc', 192)
param_192s.set('BETA', 2)
param_192s.set('L', 3264)
param_192s.set('Lke', 448)
param_192s.set('Lenc', 1408)
param_192s.set('C', 416)
param_192s.set('TAU', 16)
param_192s.set('K0', 12)
param_192s.set('K1', 12)
param_192s.set('T0', 0)
param_192s.set('T1', 16)
param_192s.set('SIG_SIZE', 12744)
param_192s.set('PK_SIZE', 64)
param_192s.set('SK_SIZE', 56)
parameter_sets += param_192s
# parameter set: FAEST-192f
param_192f = configuration_data()
param_192f.set('PARAM', '192F')
param_192f.set('PARAM_L', '192f')
param_192f.set('LAMBDA', 192)
param_192f.set('Nwd', 6)
param_192f.set('Ske', 32)
param_192f.set('R', 12)
param_192f.set('Senc', 192)
param_192f.set('BETA', 2)
param_192f.set('L', 3264)
param_192f.set('Lke', 448)
param_192f.set('Lenc', 1408)
param_192f.set('C', 416)
param_192f.set('TAU', 24)
param_192f.set('K0', 8)
param_192f.set('K1', 8)
param_192f.set('T0', 0)
param_192f.set('T1', 24)
param_192f.set('SIG_SIZE', 16792)
param_192f.set('PK_SIZE', 64)
param_192f.set('SK_SIZE', 56)
parameter_sets += param_192f
# parameter set: FAEST-EM-192s
param_em_192s = configuration_data()
param_em_192s.set('PARAM', 'EM_192S')
param_em_192s.set('PARAM_L', 'em_192s')
param_em_192s.set('LAMBDA', 192)
param_em_192s.set('Nwd', 6)
param_em_192s.set('Ske', 0)
param_em_192s.set('R', 12)
param_em_192s.set('Senc', 288)
param_em_192s.set('BETA', 1)
param_em_192s.set('L', 2304)
param_em_192s.set('Lke', 0)
param_em_192s.set('Lenc', 2304)
param_em_192s.set('C', 416)
param_em_192s.set('TAU', 16)
param_em_192s.set('K0', 12)
param_em_192s.set('K1', 12)
param_em_192s.set('T0', 0)
param_em_192s.set('T1', 16)
param_em_192s.set('SIG_SIZE', 10824)
param_em_192s.set('PK_SIZE', 48)
param_em_192s.set('SK_SIZE', 48)
parameter_sets += param_em_192s
# parameter set: FAEST-EM-192f
param_em_192f = configuration_data()
param_em_192f.set('PARAM', 'EM_192F')
param_em_192f.set('PARAM_L', 'em_192f')
param_em_192f.set('LAMBDA', 192)
param_em_192f.set('Nwd', 6)
param_em_192f.set('Ske', 0)
param_em_192f.set('R', 12)
param_em_192f.set('Senc', 288)
param_em_192f.set('BETA', 1)
param_em_192f.set('L', 2304)
param_em_192f.set('Lke', 0)
param_em_192f.set('Lenc', 2304)
param_em_192f.set('C', 416)
param_em_192f.set('TAU', 24)
param_em_192f.set('K0', 8)
param_em_192f.set('K1', 8)
param_em_192f.set('T0', 0)
param_em_192f.set('T1', 24)
param_em_192f.set('SIG_SIZE', 13912)
param_em_192f.set('PK_SIZE', 48)
param_em_192f.set('SK_SIZE', 48)
parameter_sets += param_em_192f
# parameter set: FAEST-256s
param_256s = configuration_data()
param_256s.set('PARAM', '256S')
param_256s.set('PARAM_L', '256s')
param_256s.set('LAMBDA', 256)
param_256s.set('Nwd', 8)
param_256s.set('Ske', 52)
param_256s.set('R', 14)
param_256s.set('Senc', 224)
param_256s.set('BETA', 2)
param_256s.set('L', 4000)
param_256s.set('Lke', 672)
param_256s.set('Lenc', 1664)
param_256s.set('C', 500)
param_256s.set('TAU', 22)
param_256s.set('K0', 12)
param_256s.set('K1', 11)
param_256s.set('T0', 14)
param_256s.set('T1', 8)
param_256s.set('SIG_SIZE', 22100)
param_256s.set('PK_SIZE', 64)
param_256s.set('SK_SIZE', 64)
parameter_sets += param_256s
# parameter set: FAEST-256f
param_256f = configuration_data()
param_256f.set('PARAM', '256F')
param_256f.set('PARAM_L', '256f')
param_256f.set('LAMBDA', 256)
param_256f.set('Nwd', 8)
param_256f.set('Ske', 52)
param_256f.set('R', 14)
param_256f.set('Senc', 224)
param_256f.set('BETA', 2)
param_256f.set('L', 4000)
param_256f.set('Lke', 672)
param_256f.set('Lenc', 1664)
param_256f.set('C', 500)
param_256f.set('TAU', 32)
param_256f.set('K0', 8)
param_256f.set('K1', 8)
param_256f.set('T0', 0)
param_256f.set('T1', 32)
param_256f.set('SIG_SIZE', 28400)
param_256f.set('PK_SIZE', 64)
param_256f.set('SK_SIZE', 64)
parameter_sets += param_256f
# parameter set: FAEST-EM-256s
param_em_256s = configuration_data()
param_em_256s.set('PARAM', 'EM_256S')
param_em_256s.set('PARAM_L', 'em_256s')
param_em_256s.set('LAMBDA', 256)
param_em_256s.set('Nwd', 8)
param_em_256s.set('Ske', 0)
param_em_256s.set('R', 14)
param_em_256s.set('Senc', 448)
param_em_256s.set('BETA', 1)
param_em_256s.set('L', 3584)
param_em_256s.set('Lke', 0)
param_em_256s.set('Lenc', 3584)
param_em_256s.set('C', 500)
param_em_256s.set('TAU', 22)
param_em_256s.set('K0', 12)
param_em_256s.set('K1', 11)
param_em_256s.set('T0', 14)
param_em_256s.set('T1', 8)
param_em_256s.set('SIG_SIZE', 20956)
param_em_256s.set('PK_SIZE', 64)
param_em_256s.set('SK_SIZE', 64)
parameter_sets += param_em_256s
# parameter set: FAEST-EM-256f
param_em_256f = configuration_data()
param_em_256f.set('PARAM', 'EM_256F')
param_em_256f.set('PARAM_L', 'em_256f')
param_em_256f.set('LAMBDA', 256)
param_em_256f.set('Nwd', 8)
param_em_256f.set('Ske', 0)
param_em_256f.set('R', 14)
param_em_256f.set('Senc', 448)
param_em_256f.set('BETA', 1)
param_em_256f.set('L', 3584)
param_em_256f.set('Lke', 0)
param_em_256f.set('Lenc', 3584)
param_em_256f.set('C', 500)
param_em_256f.set('TAU', 32)
param_em_256f.set('K0', 8)
param_em_256f.set('K1', 8)
param_em_256f.set('T0', 0)
param_em_256f.set('T1', 32)
param_em_256f.set('SIG_SIZE', 26736)
param_em_256f.set('PK_SIZE', 64)
param_em_256f.set('SK_SIZE', 64)
parameter_sets += param_em_256f
# also make data from all parameter sets available "globally"
parameter_data = configuration_data()
foreach parameter_set : parameter_sets
parameter_set_prefix = 'FAEST_@0@'.format(parameter_set.get('PARAM'))
foreach key : parameter_set.keys()
parameter_data.set('@0@_@1@'.format(parameter_set_prefix, key), parameter_set.get(key))
endforeach
endforeach
# dependencies
openssl = dependency('openssl', required: get_option('openssl'))
boost_program_options = dependency('boost', required: get_option('benchmarks'), modules: ['program_options'])
threads = dependency('threads')
valgrind = dependency('valgrind', required: get_option('valgrind'))
valgrind_exec = find_program('valgrind', required: valgrind.found())
build_dependencies = []
if openssl.found()
build_dependencies += [openssl]
defines += '-DHAVE_OPENSSL'
endif
valgrind_defines = []
if valgrind.found() and valgrind_exec.found()
valgrind_defines += '-DWITH_VALGRIND'
endif
pymod = import('python')
python = pymod.find_installation('python3', required: true)
if host_machine.system() == 'windows'
# require new enough Windows for bcrypt to be available
defines += '-D_WIN32_WINNT=0x0601'
build_dependencies += cc.find_library('bcrypt')
endif
# catch2 for benchmarks
if get_option('benchmarks').enabled() and get_option('catch2').enabled()
libcatch2 = static_library(
'catch2',
files(
join_paths(
meson.project_source_root(),
'catch2',
'extras',
'catch_amalgamated.cpp',
),
),
)
catch2 = declare_dependency(
link_with: libcatch2,
include_directories: include_directories(join_paths('catch2', 'extras')),
)
endif
# generate config.h
config_header = configure_file(output: 'config.h', output_format: 'c', configuration: conf_data)
defines += '-DHAVE_CONFIG_H'
# generate parameters.h
config_header = configure_file(output: 'parameters.h', output_format: 'c', configuration: parameter_data)
include_directories = [include_directories('.')]
# source files
faest_sources = files(
'aes.c',
'compat.c',
'faest.c',
'faest_aes.c',
'fields.c',
'instances.c',
'owf.c',
'random_oracle.c',
'universal_hashing.c',
'vc.c',
'vole.c',
)
# header files to install
headers = files('faest_defines.h')
# SHA3 implementation
sha3 = get_option('SHA3')
if sha3 == 'auto'
if cc.sizeof('void*') == 4
sha3 = 'plain32'
else
sha3 = 'opt64'
endif
endif
include_directories += [include_directories('sha3'), include_directories('sha3/' + sha3)]
if sha3 == 's390-cpacf'
defines += '-DWITH_SHAKE_S390_CPACF'
else
defines += '-DWITH_KECCAK_X4'
faest_sources += files(
'sha3/KeccakHash.c',
'sha3/KeccakHashtimes4.c',
'sha3/KeccakSponge.c',
'sha3/KeccakSpongetimes4.c',
)
if sha3 == 'avx2'
faest_sources += files(
'sha3/avx2/KeccakP-1600-AVX2.s',
'sha3/avx2/KeccakP-1600-times4-SIMD256.c',
)
elif sha3 == 'opt64'
faest_sources += files(
'sha3/opt64/KeccakP-1600-opt64.c',
'sha3/opt64/KeccakP-1600-times4-on1.c',
)
elif sha3 == 'plain32'
faest_sources += files(
'sha3/plain32/KeccakP-1600-inplace32BI.c',
'sha3/plain32/KeccakP-1600-times4-on1.c',
)
elif sha3 == 'armv8a-neon'
faest_sources += files(
'sha3/armv8a-neon/KeccakP-1600-armv8a-neon.s',
'sha3/opt64/KeccakP-1600-times4-on1.c',
)
endif
# 32 bit ARM is in general unhappy with unaligned access, hence disable it in this case
if host_machine.cpu_family() == 'arm'
defines += '-DDISABLE_MISALIGNED_ACCESS=1'
endif
endif
# generate files for parameter sets
foreach parameter_set : parameter_sets
headers += configure_file(
input: 'faest_param.h.in',
output: 'faest_@[email protected]'.format(parameter_set.get('PARAM_L')),
configuration: parameter_set,
)
faest_sources += configure_file(
input: 'faest_param.c.in',
output: 'faest_@[email protected]'.format(parameter_set.get('PARAM_L')),
configuration: parameter_set,
)
endforeach
# static faest library
libfaest_no_random_static = static_library(
'faest_no_random',
faest_sources,
dependencies: build_dependencies + [valgrind],
include_directories: include_directories,
c_args: defines
+ c_flags
+ ['-DFAEST_STATIC', '-DFAEST_EXPORT=', '-DFAEST_TESTS']
+ valgrind_defines,
)
libfaest_no_random_static_dependency = declare_dependency(
link_with: libfaest_no_random_static,
include_directories: include_directories,
compile_args: ['-DFAEST_EXPORT='],
)
libfaest_static = static_library(
'faest',
files('randomness.c'),
dependencies: build_dependencies + [libfaest_no_random_static_dependency, valgrind],
include_directories: include_directories,
c_args: defines
+ c_flags
+ ['-DFAEST_STATIC', '-DFAEST_EXPORT=', '-DFAEST_TESTS']
+ valgrind_defines,
)
libfaest_static_dependency = declare_dependency(
link_with: libfaest_static,
include_directories: include_directories,
compile_args: ['-DFAEST_EXPORT='],
)
# shared library
visibility_define = []
if host_machine.system() == 'windows'
visibility_define += '-DFAEST_EXPORT=__declspec(dllexport)'
elif cc.has_function_attribute('visibility:default')
visibility_define += '-DFAEST_EXPORT=__attribute__((visibility("default")))'
endif
libfaest = shared_library(
'faest',
faest_sources + files('randomness.c'),
dependencies: build_dependencies,
include_directories: include_directories,
c_args: defines + c_flags + visibility_define,
link_args: linker_flags,
install: true,
version: '0.0.1',
gnu_symbol_visibility: 'hidden',
)
libfaest_dependency = declare_dependency(link_with: libfaest, include_directories: include_directories)
# install headers
install_headers(headers)
# install pkg config file
pkg = import('pkgconfig')
pkg.generate(name: 'faest', description: 'FAEST signature scheme', libraries: [libfaest])
# SUPERCOP / NIST files
all_names = []
foreach parameter_set : parameter_sets
all_names += 'faest_@0@'.format(parameter_set.get('PARAM_L'))
subdir('faest_@0@'.format(parameter_set.get('PARAM_L')))
endforeach
run_target(
'prepare_nist',
command: [
python,
[
join_paths(meson.project_source_root(), 'tools', 'prepare_nist.py'),
meson.project_source_root(),
meson.project_build_root(),
join_paths(meson.project_build_root(), 'submission'),
]
+ all_names,
],
)
subdir('tests')