forked from cirosantilli/linux-kernel-module-cheat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath_properties.py
843 lines (823 loc) · 38 KB
/
path_properties.py
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
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
#!/usr/bin/env python3
import os
import signal
from shell_helpers import LF
class PathProperties:
default_c_std = 'c11'
default_cxx_std = 'c++17'
# All new properties must be listed here or else you get an error.
default_properties = {
'allowed_archs': None,
'allowed_emulators': None,
# The example uses aarch32 instructions which are not present in ARMv7.
# Therefore, it cannot be run in baremetal ARMv7 CPUs.
# User mode simulation however seems to enable aarch32 so these run fine.
'arm_aarch32': False,
'arm_sve': False,
# Examples that can be built in baremetal.
'baremetal': False,
'c_std': default_c_std,
'cc_flags': [
'-Wall', LF,
'-Werror', LF,
'-Wextra', LF,
'-Wno-unused-function', LF,
'-ggdb3', LF,
# PIE causes the following problems:
# * QEMU GDB step debug does not find breakpoints:
# https://stackoverflow.com/questions/51310756/how-to-gdb-step-debug-a-dynamically-linked-executable-in-qemu-user-mode/51343326#51343326
# * when writing assembly code, we have to constantly think about it:
# https://stackoverflow.com/questions/2463150/what-is-the-fpie-option-for-position-independent-executables-in-gcc-and-ld/51308031#51308031
# As of lkmc 91986fb2955f96e06d1c5ffcc5536ba9f0af1fd9, our Buildroot toolchain
# does not have it enabled by default, but the Ubuntu 18.04 host toolchain does.
'-fno-pie', LF,
'-no-pie', LF,
],
'cc_flags_after': ['-lm', LF],
'cc_pedantic': True,
'cxx_std': default_cxx_std,
# Shuts system down, consumes a lot of memory, etc.
'disrupts_system': False,
# Expected program exit status. When signals are raised, this refers
# to the native exit status. as reported by Bash #?.
'exit_status': 0,
'extra_objs': [],
# Explicitly don't add the baremetal bootloader object which normally gets automatically
# added to baremetal examples.
'extra_objs_disable_baremetal_bootloader': False,
# We should get rid of this if we ever properly implement dependency graphs.
'extra_objs_lkmc_common': False,
'freestanding': False,
'gem5_unimplemented_instruction': False,
# Fully, or partially unimplemented.
'gem5_unimplemented_syscall': False,
# For some reason QEMU fails with SIGSEGV on int syscalls in x86_64.
'qemu_x86_64_int_syscall': False,
'interactive': False,
'minimum_gcc_version': (0, 0, 0),
# The script takes a perceptible amount of time to run. Possibly an infinite loop.
'more_than_1s': False,
# The path should not be built. E.g.:
# - it is symlinked into multiple archs
# - we have not integrated into the build yet, often it is being important from another repo
# and has a Makefile
'no_build': False,
# The path does not generate an executable in itself, e.g.
# it only generates intermediate object files. Therefore it
'no_executable': False,
'qemu_unimplemented_instruction': False,
# The script requires a non-trivial to determine argument to be passed to run properly.
'requires_argument': False,
# Let's not test stuff that relies on the internet by default, user might be offline,
# or Internet might be slow and make tests slow.
'requires_internet': False,
# Requires certain of our custom kernel modules to be inserted to run.
'requires_kernel_modules': False,
# gem5 syscall emulation cannot handle dynamically linked exectuables properly.
# https://stackoverflow.com/questions/50542222/how-to-run-a-dynamically-linked-executable-syscall-emulation-mode-se-py-in-gem5
'requires_dynamic_library': False,
'requires_m5ops': False,
# gem5 fatal: syscall getcpu (#168) unimplemented.
'requires_syscall_getcpu': False,
'requires_syscall_get_nprocs': False,
'requires_semihosting': False,
# The example requires sudo, which usually implies that it can do something
# deeply to the system it runs on, which would preventing further interactive
# or test usage of the system, for example poweroff or messing up the GUI.
'requires_sudo': False,
# The signal received is generated by the OS implicitly rather than explicitly
# done sith signal(), e.g. Illegal instruction or sigsegv.
# Therefore, it won't behave in the same way in baremetal. aarch64 already
# has an exception handler which we could use but arm doesn't and the IP
# goes astray, so let's just skip this for now.
'signal_generated_by_os': False,
'signal_received': None,
# We were lazy to properly classify why we are skipping these tests.
# TODO get it done.
'skip_run_unclassified': False,
# Look for the given file under test_data/ relative to the file under test,
# and pass the given file as the stdin of the program. The .i input extension is
# appended implicitly to the test path.
'test_stdin_data': None,
# Aruments added automatically to run when running tests,
# but not on manual running.
'test_run_args': {},
# Examples that can be built in userland.
'userland': False,
# Known instructions that this test uses, and which may not be implemented
# in a given simulator, in which case we skip.
'uses_instructions': {},
}
unimplemented_instructions = {
'gem5': {
'arm': {
'vcvta',
},
'x86_64': {
'fcomi',
'fcomip',
'fsqrt',
'popcnt',
'rdrand',
'rdtscp',
'vfmadd132pd',
},
},
'qemu': {
'x86_64': {
'popcnt',
'rdtscp',
'rdrand',
'vfmadd132pd',
}
},
}
# TODO wire up.
unimplemented_userland_syscalls = {
'gem5': {
'all': {
'wait',
},
'arm': {
},
'x86_64': {
},
},
'qemu': {
'all': {
},
'arm': {
},
'x86_64': {
},
},
}
# TODO maybe extract automatically from GCC executable?
current_gcc_version = (7, 3, 0)
'''
Encodes properties of userland and baremetal paths.
For directories, it applies to all files under the directory.
Used to determine how to build and test the examples.
'''
def __init__(
self,
properties
):
for key in properties:
if not key in self.default_properties:
raise ValueError('Unknown key: {}'.format(key))
self.properties = properties.copy()
def __getitem__(self, key):
return self.properties[key]
def __repr__(self):
return str(self.properties)
def set_path_components(self, path_components):
self.path_components = path_components
def should_be_built(
self,
env,
link=False,
):
ext = os.path.splitext(self.path_components[-1])[1]
return (
not (
len(self.path_components) > 1 and \
self.path_components[1] == 'libs' and \
not env['package_all'] and \
not self.path_components[2] in env['package']
) and
not self['no_build'] and
(
self['allowed_archs'] is None or
env['arch'] in self['allowed_archs']
) and
not (
(
env['mode'] == 'userland' and
(
not self['userland'] or
not ext in env['build_in_exts']
)
) or
(
env['mode'] == 'baremetal' and (
not self['baremetal'] or
not ext in env['baremetal_build_in_exts']
)
)
) and
not (
link and
self['no_executable']
) and not (
# Our C compiler does not suppport SVE yet.
# https://cirosantilli.com/linux-kernel-module-cheat#update-gcc-gcc-supported-by-buildroot
os.path.splitext(self.path_components[-1])[1] == '.c' and self['arm_sve']
) and not (
# C++ multithreading in static does not seem to work:
# https://cirosantilli.com/linux-kernel-module-cheat#cpp-static-and-pthreads
os.path.splitext(self.path_components[-1])[1] == '.cpp' and (
# TODO the better check here would be for 'static'
# to factor out with test-executable logic, but lazy.
# env['static'] and
env['emulator'] == 'gem5' and
'cpus' in self['test_run_args'] and
self['test_run_args']['cpus'] > 1
)
) and not (
self['minimum_gcc_version'] > self.current_gcc_version
)
)
def should_be_tested(self, env):
basename = self.path_components[-1]
return (
self.should_be_built(
env,
) and
not basename.startswith(env['tmp_prefix']) and
not (
env['mode'] == 'baremetal' and (
self['arm_aarch32'] or
self['signal_generated_by_os']
)
) and
not self['disrupts_system'] and
not self['interactive'] and
not self['more_than_1s'] and
not self['no_executable'] and
not self['requires_argument'] and
not self['requires_internet'] and
not self['requires_kernel_modules'] and
not self['requires_sudo'] and
not self['skip_run_unclassified'] and
not self['qemu_x86_64_int_syscall'] and
not (
env['emulator'] == 'gem5' and
(
self['gem5_unimplemented_syscall'] or
# https://github.com/cirosantilli/linux-kernel-module-cheat/issues/101
self['signal_received'] is not None or
self['requires_dynamic_library'] or
self['requires_semihosting'] or
self['requires_syscall_getcpu'] or
# https://gem5.atlassian.net/browse/GEM5-622
self['requires_syscall_get_nprocs']
)
) and
not (
env['emulator'] == 'qemu' and
(
self['requires_m5ops']
)
) and
not (
env['arch'] in self['uses_instructions'] and
env['emulator'] in self.unimplemented_instructions and
env['arch'] in self.unimplemented_instructions[env['emulator']] and
(
self.unimplemented_instructions[env['emulator']][env['arch']] &
self['uses_instructions'][env['arch']]
)
) and
(
self['allowed_emulators'] is None or
env['emulator'] in self['allowed_emulators']
)
)
def _update_dict(self, other_tmp_properties, key):
if key in self.properties and key in other_tmp_properties:
other_tmp_properties[key] = {
**self.properties[key],
**other_tmp_properties[key]
}
def _update_list(self, other_tmp_properties, key):
if key in self.properties and key in other_tmp_properties:
other_tmp_properties[key] = \
self.properties[key] + \
other_tmp_properties[key]
def update(self, other):
other_tmp_properties = other.properties.copy()
self._update_list(other_tmp_properties, 'cc_flags')
self._update_list(other_tmp_properties, 'cc_flags_after')
self._update_list(other_tmp_properties, 'extra_objs')
self._update_dict(other_tmp_properties, 'test_run_args')
return self.properties.update(other_tmp_properties)
class PrefixTree:
def __init__(self, path_properties_dict=None, children=None):
if path_properties_dict is None:
path_properties_dict = {}
if children is None:
children = {}
self.children = children
self.path_properties = PathProperties(path_properties_dict)
@staticmethod
def make_from_tuples(tuples):
'''
TODO check that all paths exist.
'''
def tree_from_tuples(tuple_):
if not type(tuple_) is tuple:
tuple_ = (tuple_, {})
cur_properties, cur_children = tuple_
return PrefixTree(cur_properties, cur_children)
top_tree = tree_from_tuples(tuples)
todo_trees = [top_tree]
while todo_trees:
cur_tree = todo_trees.pop()
cur_children = cur_tree.children
for child_key in cur_children:
new_tree = tree_from_tuples(cur_children[child_key])
cur_children[child_key] = new_tree
todo_trees.append(new_tree)
return top_tree
def get(path):
'''
Get the merged path properties of a given path.
'''
cur_node = path_properties_tree
path_components = path.split(os.sep)
path_properties = PathProperties(cur_node.path_properties.properties.copy())
for path_component in path_components:
if path_component in cur_node.children:
cur_node = cur_node.children[path_component]
path_properties.update(cur_node.path_properties)
else:
break
path_properties.set_path_components(path_components)
return path_properties
gnu_extension_properties = {
'c_std': 'gnu11',
'cxx_std': 'gnu++17'
}
# https://cirosantilli.com/linux-kernel-module-cheat#freestanding-programs
freestanding_properties = {
'baremetal': False,
'cc_flags': [
'-ffreestanding', LF,
'-nostdlib', LF,
'-static', LF,
],
'extra_objs_lkmc_common': False,
'freestanding': True,
}
# https://cirosantilli.com/linux-kernel-module-cheat#nostartfiles-programs
nostartfiles_properties = {
# The baremetal bootloader sets up the stack to a valid value.
# Therefore, without it, C code may not be called, and so this is very restrictive in general.
# Programs that don't call C code nor use stack can still work.
'baremetal': False,
'cc_flags': [
'-nostartfiles', LF,
],
'extra_objs_disable_baremetal_bootloader': True,
}
# See: https://cirosantilli.com/linux-kernel-module-cheat#path-properties
path_properties_tuples = (
PathProperties.default_properties,
{
'baremetal': (
{
'baremetal': True,
},
{
'arch': (
{},
{
'arm': (
{'allowed_archs': {'arm'}},
{
'multicore.c': {
# It is hard to get visibility into what is going on
# in that one due to the multicore business.
'skip_run_unclassified': True,
'test_run_args': {'cpus': 2}
},
'no_bootloader': (
{'extra_objs_disable_baremetal_bootloader': True},
{
'multicore_asm.S': {'test_run_args': {'cpus': 2}},
'semihost_exit.S': {'requires_semihosting': True},
}
),
'return1.S': {'exit_status': 1},
'semihost_exit.S': {'requires_semihosting': True},
},
),
'aarch64': (
{'allowed_archs': {'aarch64'}},
{
'multicore.c': {'test_run_args': {'cpus': 2}},
'no_bootloader': (
{'extra_objs_disable_baremetal_bootloader': True},
{
'multicore_asm.S': {'test_run_args': {'cpus': 2}},
'semihost_exit.S': {'requires_semihosting': True},
'wfe_loop.S': {'more_than_1s': True},
}
),
'return1.S': {'exit_status': 1},
'semihost_exit.S': {'requires_semihosting': True},
'svc.c': {'cc_pedantic': False},
'timer.c': {'skip_run_unclassified': True},
},
)
}
),
'lib': {'no_executable': True},
'getchar.c': {'interactive': True},
}
),
'kernel_modules': (
{},
{
'float.c': {'allowed_archs': 'x86_64'}
},
),
'lkmc.c': {
'baremetal': True,
'userland': True,
},
'userland': (
{
'userland': True,
},
{
'algorithm': (
{},
{
'set': (
{
'test_stdin_data': '8',
},
{
'std_priority_queue_gem5.cpp': {'allowed_emulators': {'gem5'}},
'std_set_gem5.cpp': {'allowed_emulators': {'gem5'}},
'std_unordered_set_gem5.cpp': {'allowed_emulators': {'gem5'}},
}
),
},
),
'arch': (
{
'baremetal': True,
'extra_objs_lkmc_common': True,
},
{
'arm': (
{
'allowed_archs': {'arm'},
'cc_flags': [
# To prevent:
# > vfp.S: Error: selected processor does not support <FPU instruction> in ARM mode
# https://stackoverflow.com/questions/41131432/cross-compiling-error-selected-processor-does-not-support-fmrx-r3-fpexc-in/52875732#52875732
# We aim to take the most extended mode currently available that works on QEMU.
'-Xassembler', '-mfpu=crypto-neon-fp-armv8.1', LF,
'-Xassembler', '-meabi=5', LF,
# Treat inline assembly as arm instead of thumb
# The opposite of -mthumb.
'-marm', LF,
# Make gcc generate .syntax unified for inline assembly.
# However, it gets ignored if -marm is given, which a GCC bug that was recently fixed:
# https://stackoverflow.com/questions/54078112/how-to-write-syntax-unified-ual-armv7-inline-assembly-in-gcc/54132097#54132097
# So we just write divided inline assembly for now.
'-masm-syntax-unified', LF,
]
},
{
'inline_asm': (
{
},
{
'freestanding': freestanding_properties,
},
),
'freestanding': freestanding_properties,
'lkmc_assert_eq_fail.S': {'signal_received': signal.Signals.SIGABRT},
'lkmc_assert_memcmp_fail.S': {'signal_received': signal.Signals.SIGABRT},
'udf.S': {
'signal_generated_by_os': True,
'signal_received': signal.Signals.SIGILL,
},
'vcvta.S': {
'arm_aarch32': True,
'uses_instructions': {'arm': {'vcvta'}}
},
}
),
'aarch64': (
{
'allowed_archs': {'aarch64'},
},
{
'inline_asm': (
{
},
{
'freestanding': freestanding_properties,
'futex_sev.cpp': {
'baremetal': False,
'more_than_1s': True,
},
'futex_ldxr_stxr.c': {
'baremetal': False,
'more_than_1s': True,
},
'sve_addvl.c': {'arm_sve': True},
'wfe_ldxr_str.cpp': {
'allowed_emulators': {'qemu'},
'test_run_args': {'cpus': 2}
},
'wfe_ldxr_stxr.cpp': {
'allowed_emulators': {'qemu'},
'test_run_args': {'cpus': 2}
},
'wfe_sev.cpp': {
# gem5 bug, WFE not waking up on syscall emulation,
# TODO link to bug report.
'allowed_emulators': {'qemu'},
'test_run_args': {'cpus': 2},
},
},
),
'dump_regs.c': {
# https://gem5.atlassian.net/browse/GEM5-619
'allowed_emulators': {'qemu'},
},
'freestanding': (
freestanding_properties,
{
'linux': (
{},
{
'wfe.S': {'more_than_1s': True},
'wfe_wfe.S': {'more_than_1s': True},
}
),
}
),
'lkmc_assert_eq_fail.S': {'signal_received': signal.Signals.SIGABRT},
'lkmc_assert_memcmp_fail.S': {'signal_received': signal.Signals.SIGABRT},
'nostartfiles': (
nostartfiles_properties,
{
# https://github.com/cirosantilli/linux-kernel-module-cheat/issues/107
'exit.S': {'skip_run_unclassified': True},
'wfe.S': {'more_than_1s': True},
}
),
'udf.S': {
'signal_generated_by_os': True,
'signal_received': signal.Signals.SIGILL,
},
'sve.S': {'arm_sve': True},
'sve_addvl.S': {'arm_sve': True},
}
),
'x86_64': (
{'allowed_archs': {'x86_64'}},
{
'freestanding': (
freestanding_properties,
{
'linux': (
{},
{
'int_system_call.S': {'qemu_x86_64_int_syscall': True},
}
),
}
),
'inline_asm': (
{},
{
'freestanding': freestanding_properties,
'sqrt_x87.c': {'uses_instructions': {'x86_64': {'fsqrt'}}},
}
),
'intrinsics': (
{},
{
'rdtscp.c': {'uses_instructions': {'x86_64': {'rdtscp'}}},
}
),
'nostartfiles': (
nostartfiles_properties,
{
# https://github.com/cirosantilli/linux-kernel-module-cheat/issues/107
'exit.S': {'skip_run_unclassified': True},
}
),
'div_overflow.S': {'signal_received': signal.Signals.SIGFPE},
'div_zero.S': {'signal_received': signal.Signals.SIGFPE},
'fabs.S': {'uses_instructions': {'x86_64': {'fcomip'}}},
'fadd.S': {'uses_instructions': {'x86_64': {'fcomi'}}},
'faddp.S': {'uses_instructions': {'x86_64': {'fcomip'}}},
'fchs.S': {'uses_instructions': {'x86_64': {'fcomip'}}},
'fild.S': {'uses_instructions': {'x86_64': {'fcomip'}}},
'fld1.S': {'uses_instructions': {'x86_64': {'fcomip'}}},
'fldz.S': {'uses_instructions': {'x86_64': {'fcomip'}}},
'fscale.S': {'uses_instructions': {'x86_64': {'fcomip'}}},
'fsqrt.S': {'uses_instructions': {'x86_64': {'fcomip', 'fsqrt'}}},
'fxch.S': {'uses_instructions': {'x86_64': {'fcomip'}}},
'lkmc_assert_eq_fail.S': {'signal_received': signal.Signals.SIGABRT},
'lkmc_assert_memcmp_fail.S': {'signal_received': signal.Signals.SIGABRT},
'popcnt.S': {'uses_instructions': {'x86_64': {'popcnt'}}},
'rdrand.S': {'uses_instructions': {'x86_64': {'rdrand'}}},
'rdtscp.S': {'uses_instructions': {'x86_64': {'rdtscp'}}},
'ring0.c': {'signal_received': signal.Signals.SIGSEGV},
'vfmadd132pd.S': {'uses_instructions': {'x86_64': {'vfmadd132pd'}}},
}
),
'lkmc_assert_fail.S': {
'signal_received': signal.Signals.SIGABRT,
},
}
),
'c': (
{
'baremetal': True,
},
{
'abort.c': {'signal_received': signal.Signals.SIGABRT},
'atomic': (
{
'baremetal': False,
'test_run_args': {'cpus': 3},
},
{
'aarch64_add.c': {'allowed_archs': {'aarch64'}},
'aarch64_ldadd.c': {'allowed_archs': {'aarch64'}},
'aarch64_ldaxr_stlxr.c': {'allowed_archs': {'aarch64'}},
'x86_64_inc.c': {'allowed_archs': {'x86_64'}},
'x86_64_lock_inc.c': {'allowed_archs': {'x86_64'}},
},
),
'atomic.c': {
'baremetal': False,
'test_run_args': {'cpus': 3},
},
'assert_fail.c': {'signal_received': signal.Signals.SIGABRT},
# Not sure which argument to pass.
'cat.c': {'skip_run_unclassified': True},
'exit1.c': {'exit_status': 1},
'exit2.c': {'exit_status': 2},
'false.c': {'exit_status': 1},
'file_write_read.c': {'baremetal': False},
'getchar.c': {'interactive': True},
'malloc_max.c': {'disrupts_system': True},
'm5ops.c': {'allowed_emulators': {'gem5'}},
'return1.c': {'exit_status': 1},
'return2.c': {'exit_status': 2},
# This has complex failure modes, too hard to assert.
'smash_stack.c': {'skip_run_unclassified': True},
# Wrapper not defined by newlib.
'timespec_get.c': {'baremetal': False},
}
),
'cpp': (
{},
{
'atomic': (
{
'test_run_args': {'cpus': 3},
},
{
'aarch64_add.cpp': {'allowed_archs': {'aarch64'}},
'aarch64_ldadd.cpp': {'allowed_archs': {'aarch64'}},
'aarch64_ldaxr_stlxr.cpp': {'allowed_archs': {'aarch64'}},
'x86_64_inc.cpp': {'allowed_archs': {'x86_64'}},
'x86_64_lock_inc.cpp': {'allowed_archs': {'x86_64'}},
},
),
'count.cpp': {'more_than_1s': True},
'thread_hardware_concurrency.cpp': {'requires_syscall_get_nprocs': True},
'initialization_types.cpp': {'cc_flags':
['-Wno-unused-variable', LF, '-Wno-unused-but-set-variable', LF]},
'm5ops.cpp': {'allowed_emulators': {'gem5'}},
'parallel_sort.cpp': {'minimum_gcc_version': (9, 0, 0)},
'sleep_for.cpp': {
'more_than_1s': True,
},
# Need to pass -lstdc++fs but we don't have a mechanism
# to test the GCC version and only pass if >= 7.
'temporary_directory.cpp': {'no_build': True},
'thread_get_id.cpp': {'test_run_args': {'cpus': 2}},
'thread_return_value.cpp': {'test_run_args': {'cpus': 2}},
},
),
'freestanding': (
{**freestanding_properties, **{'baremetal': True}},
{
'gem5_checkpoint.S': {'allowed_emulators': {'gem5'}},
'gem5_exit.S': {'allowed_emulators': {'gem5'}},
}
),
'gcc': (
{**gnu_extension_properties, **{'cc_pedantic': False}},
{
'busy_loop.c': {'baremetal': True},
'openmp.c': {'cc_flags': ['-fopenmp', LF]},
}
),
'gdb_tests': {'baremetal': True},
'kernel_modules': {**gnu_extension_properties, **{'requires_kernel_modules': True}},
'libs': (
{'requires_dynamic_library': True},
{
'cython': {'no_build': True},
'libdrm': {'requires_sudo': True},
'hdf5': (
{},
{
'hello_cpp.cpp': {
'cc_flags_after': ['-lhdf5_cpp', LF],
},
}
),
# Makefile build, generates shared libraries.
'pybind11': {'no_build': True},
'python_embed': {'no_build': True},
}
),
'linux': (
gnu_extension_properties,
{
'ctrl_alt_del.c': {'requires_sudo': True},
'futex.c': {
'more_than_1s': True,
'test_run_args': {'cpus': 2},
},
'getcpu.c': {
'requires_syscall_getcpu': True,
'test_run_args': {'cpus': 2},
},
'init_env_poweroff.c': {'requires_sudo': True},
'mmap_anonymous_touch.c': {
# https://github.com/cirosantilli/linux-kernel-module-cheat/issues/103
'gem5_unimplemented_syscall': True
},
'myinsmod.c': {'requires_sudo': True},
'myrmmod.c': {'requires_sudo': True},
'open_o_tmpfile.c': {
# https://github.com/cirosantilli/linux-kernel-module-cheat/issues/100
'gem5_unimplemented_syscall': True
},
'pagemap_dump.c': {'requires_argument': True},
'poweroff.c': {'requires_sudo': True},
'proc_events.c': {'requires_sudo': True},
'proc_events.c': {'requires_sudo': True},
'sched_getaffinity.c': {'requires_syscall_getcpu': True},
'sched_getaffinity_threads.c': {
'more_than_1s': True,
'requires_syscall_getcpu': True,
},
'sched_getcpu.c': {
'requires_syscall_getcpu': True,
'test_run_args': {'cpus': 2},
},
'sched_getcpu_barrier.c': {
'requires_syscall_getcpu': True,
'test_run_args': {'cpus': 2},
},
'sysconf.c': {'requires_syscall_get_nprocs': True},
'time_boot.c': {'requires_sudo': True},
'virt_to_phys_user.c': {'requires_argument': True},
}
),
'posix': (
{},
{
'count.c': {'more_than_1s': True},
'count_to.c': {'more_than_1s': True},
'kill.c': {
'baremetal': True,
'signal_received': signal.Signals.SIGHUP,
},
'fork.c': {
# wait
'gem5_unimplemented_syscall': True
},
'mmap_file.c': {
# https://github.com/cirosantilli/linux-kernel-module-cheat/issues/102
'gem5_unimplemented_syscall': True
},
'pthread_count.c': {
'more_than_1s': True,
'test_run_args': {'cpus': 2},
},
'pthread_mutex.c': {
'test_run_args': {'cpus': 3},
},
'pthread_self.c': {
'test_run_args': {'cpus': 2},
},
'sleep_forever.c': {'more_than_1s': True},
'wget.c': {'requires_internet': True},
'virt_to_phys_test.c': {'more_than_1s': True},
}
),
}
),
}
)
path_properties_tree = PrefixTree.make_from_tuples(path_properties_tuples)