5ef937ceb9754aef2e60ace7e51dc19123941bdf
[kconfig-hardened-check.git] / kconfig-hardened-check.py
1 #!/usr/bin/python3
2
3 #
4 # This script helps me to check the Linux kernel Kconfig option list
5 # against my hardening preferences for X86_64, ARM64, X86_32, and ARM.
6 # Let the computers do their job!
7 #
8 # Author: Alexander Popov <alex.popov@linux.com>
9 #
10 # Please don't cry if my Python code looks like C.
11 #
12 #
13 # N.B Hardening command line parameters:
14 #    page_poison=1
15 #    slub_debug=FZP
16 #    slab_nomerge
17 #    pti=on
18 #    kernel.kptr_restrict=1
19 #    lockdown=1
20 #
21 #    spectre_v2=on
22 #    pti=on
23 #    spec_store_bypass_disable=on
24 #    l1tf=full,force
25 #
26 #
27 # N.B. Hardening sysctl's:
28 #    net.core.bpf_jit_harden
29
30 import sys
31 from argparse import ArgumentParser
32 from collections import OrderedDict
33 import re
34
35 debug_mode = False  # set it to True to print the unknown options from the config
36
37 supported_archs = [ 'X86_64', 'X86_32', 'ARM64', 'ARM' ]
38
39 checklist = []
40
41
42 class OptCheck:
43     def __init__(self, name, expected, decision, reason):
44         self.name = name
45         self.expected = expected
46         self.decision = decision
47         self.reason = reason
48         self.state = None
49         self.result = None
50
51     def check(self):
52         if self.expected == self.state:
53             self.result = 'OK'
54         elif self.state is None:
55             if self.expected == 'is not set':
56                 self.result = 'OK: not found'
57             else:
58                 self.result = 'FAIL: not found'
59         else:
60             self.result = 'FAIL: "' + self.state + '"'
61
62         if self.result.startswith('OK'):
63             return True, self.result
64         else:
65             return False, self.result
66
67     def __repr__(self):
68         return '{} = {}'.format(self.name, self.state)
69
70
71 class ComplexOptCheck:
72     def __init__(self, *opts):
73         self.opts = opts
74         self.result = None
75
76     @property
77     def name(self):
78         return self.opts[0].name
79
80     @property
81     def expected(self):
82         return self.opts[0].expected
83
84     @property
85     def state(self):
86         return self.opts[0].state
87
88     @property
89     def decision(self):
90         return self.opts[0].decision
91
92     @property
93     def reason(self):
94         return self.opts[0].reason
95
96
97 class OR(ComplexOptCheck):
98     # self.opts[0] is the option which this OR-check is about.
99     # Use case:
100     #     OR(<X_is_hardened>, <X_is_disabled>)
101     #     OR(<X_is_hardened>, <X_is_hardened_old>)
102
103     def check(self):
104         if not self.opts:
105             sys.exit('[!] ERROR: invalid OR check')
106
107         for i, opt in enumerate(self.opts):
108             ret, msg = opt.check()
109             if ret:
110                 if i == 0:
111                     self.result = opt.result
112                 else:
113                     self.result = 'OK: CONFIG_{} "{}"'.format(opt.name, opt.expected)
114                 return True, self.result
115         self.result = self.opts[0].result
116         return False, self.result
117
118
119 class AND(ComplexOptCheck):
120     # self.opts[0] is the option which this AND-check is about.
121     # Use case: AND(<suboption>, <main_option>)
122     # Suboption is not checked if checking of the main_option is failed.
123
124     def check(self):
125         for i, opt in reversed(list(enumerate(self.opts))):
126             ret, msg = opt.check()
127             if i == 0:
128                 self.result = opt.result
129                 return ret, self.result
130             elif not ret:
131                 # The requirement is not met. Skip the check.
132                 return False, ''
133
134         sys.exit('[!] ERROR: invalid AND check')
135
136
137 def detect_arch(fname):
138     with open(fname, 'r') as f:
139         arch_pattern = re.compile("CONFIG_[a-zA-Z0-9_]*=y")
140         arch = None
141         msg = None
142         print('[+] Trying to detect architecture in "{}"...'.format(fname))
143         for line in f.readlines():
144             if arch_pattern.match(line):
145                 option, value = line[7:].split('=', 1)
146                 if option in supported_archs:
147                     if not arch:
148                         arch = option
149                     else:
150                         return None, 'more than one supported architecture is detected'
151         if not arch:
152             return None, 'failed to detect architecture'
153         else:
154             return arch, 'OK'
155
156
157 def construct_checklist(arch):
158     modules_not_set = OptCheck('MODULES',                'is not set', 'kspp', 'cut_attack_surface')
159     devmem_not_set = OptCheck('DEVMEM',                  'is not set', 'kspp', 'cut_attack_surface') # refers to LOCK_DOWN_KERNEL
160
161     checklist.append(OptCheck('BUG',                         'y', 'defconfig', 'self_protection'))
162     checklist.append(OR(OptCheck('STRICT_KERNEL_RWX',        'y', 'defconfig', 'self_protection'), \
163                         OptCheck('DEBUG_RODATA',             'y', 'defconfig', 'self_protection'))) # before v4.11
164     checklist.append(OR(OptCheck('STACKPROTECTOR_STRONG',    'y', 'defconfig', 'self_protection'), \
165                         OptCheck('CC_STACKPROTECTOR_STRONG', 'y', 'defconfig', 'self_protection')))
166     checklist.append(OptCheck('SLUB_DEBUG',                  'y', 'defconfig', 'self_protection'))
167     checklist.append(OR(OptCheck('STRICT_MODULE_RWX',        'y', 'defconfig', 'self_protection'), \
168                         OptCheck('DEBUG_SET_MODULE_RONX',    'y', 'defconfig', 'self_protection'), \
169                         modules_not_set)) # DEBUG_SET_MODULE_RONX was before v4.11
170     if debug_mode or arch == 'X86_64':
171         checklist.append(OptCheck('PAGE_TABLE_ISOLATION',    'y', 'defconfig', 'self_protection'))
172         checklist.append(OptCheck('RANDOMIZE_MEMORY',        'y', 'defconfig', 'self_protection'))
173     if debug_mode or arch == 'X86_64' or arch == 'X86_32':
174         checklist.append(OptCheck('RANDOMIZE_BASE',              'y', 'defconfig', 'self_protection'))
175         checklist.append(OptCheck('RETPOLINE',                   'y', 'defconfig', 'self_protection'))
176         checklist.append(OptCheck('X86_SMAP',                    'y', 'defconfig', 'self_protection'))
177         checklist.append(OptCheck('X86_INTEL_UMIP',              'y', 'defconfig', 'self_protection'))
178         checklist.append(OptCheck('SYN_COOKIES',                 'y', 'defconfig', 'self_protection')) # another reason?
179     if debug_mode or arch == 'ARM64':
180         checklist.append(OptCheck('UNMAP_KERNEL_AT_EL0',         'y', 'defconfig', 'self_protection'))
181     if debug_mode or arch == 'X86_64' or arch == 'ARM64':
182         checklist.append(OptCheck('VMAP_STACK',                  'y', 'defconfig', 'self_protection'))
183     if debug_mode or arch == 'X86_64' or arch == 'ARM64' or arch == 'X86_32':
184         checklist.append(OptCheck('THREAD_INFO_IN_TASK',         'y', 'defconfig', 'self_protection'))
185     if debug_mode or arch == 'ARM':
186         checklist.append(OptCheck('VMSPLIT_3G',                  'y', 'defconfig', 'self_protection'))
187         checklist.append(OptCheck('CPU_SW_DOMAIN_PAN',           'y', 'defconfig', 'self_protection'))
188     if debug_mode or arch == 'ARM64' or arch == 'ARM':
189         checklist.append(OptCheck('REFCOUNT_FULL',               'y', 'defconfig', 'self_protection'))
190
191     checklist.append(OptCheck('BUG_ON_DATA_CORRUPTION',           'y', 'kspp', 'self_protection'))
192     checklist.append(OptCheck('DEBUG_WX',                         'y', 'kspp', 'self_protection'))
193     checklist.append(OptCheck('SCHED_STACK_END_CHECK',            'y', 'kspp', 'self_protection'))
194     checklist.append(OptCheck('SLAB_FREELIST_HARDENED',           'y', 'kspp', 'self_protection'))
195     checklist.append(OptCheck('SLAB_FREELIST_RANDOM',             'y', 'kspp', 'self_protection'))
196     checklist.append(OptCheck('FORTIFY_SOURCE',                   'y', 'kspp', 'self_protection'))
197     checklist.append(OptCheck('GCC_PLUGINS',                      'y', 'kspp', 'self_protection'))
198     checklist.append(OptCheck('GCC_PLUGIN_RANDSTRUCT',            'y', 'kspp', 'self_protection'))
199     checklist.append(OptCheck('GCC_PLUGIN_STRUCTLEAK',            'y', 'kspp', 'self_protection'))
200     checklist.append(OptCheck('GCC_PLUGIN_STRUCTLEAK_BYREF_ALL',  'y', 'kspp', 'self_protection'))
201     checklist.append(OptCheck('GCC_PLUGIN_LATENT_ENTROPY',        'y', 'kspp', 'self_protection'))
202     checklist.append(OptCheck('DEBUG_LIST',                       'y', 'kspp', 'self_protection'))
203     checklist.append(OptCheck('DEBUG_SG',                         'y', 'kspp', 'self_protection'))
204     checklist.append(OptCheck('DEBUG_CREDENTIALS',                'y', 'kspp', 'self_protection'))
205     checklist.append(OptCheck('DEBUG_NOTIFIERS',                  'y', 'kspp', 'self_protection'))
206     page_poisoning_is_set = OptCheck('PAGE_POISONING',            'y', 'kspp', 'self_protection')
207     checklist.append(page_poisoning_is_set)
208     hardened_usercopy_is_set = OptCheck('HARDENED_USERCOPY',      'y', 'kspp', 'self_protection')
209     checklist.append(hardened_usercopy_is_set)
210     checklist.append(AND(OptCheck('HARDENED_USERCOPY_FALLBACK',   'is not set', 'kspp', 'self_protection'), \
211                          hardened_usercopy_is_set))
212     checklist.append(OR(OptCheck('MODULE_SIG',                    'y', 'kspp', 'self_protection'), \
213                         modules_not_set))
214     checklist.append(OR(OptCheck('MODULE_SIG_ALL',                'y', 'kspp', 'self_protection'), \
215                         modules_not_set))
216     checklist.append(OR(OptCheck('MODULE_SIG_SHA512',             'y', 'kspp', 'self_protection'), \
217                         modules_not_set))
218     checklist.append(OR(OptCheck('MODULE_SIG_FORCE',              'y', 'kspp', 'self_protection'), \
219                         modules_not_set)) # refers to LOCK_DOWN_KERNEL
220     if debug_mode or arch == 'X86_64' or arch == 'X86_32':
221         checklist.append(OptCheck('DEFAULT_MMAP_MIN_ADDR',        '65536', 'kspp', 'self_protection'))
222         checklist.append(OptCheck('REFCOUNT_FULL',                'y', 'kspp', 'self_protection'))
223     if debug_mode or arch == 'X86_32':
224         checklist.append(OptCheck('HIGHMEM64G',                   'y', 'kspp', 'self_protection'))
225         checklist.append(OptCheck('X86_PAE',                      'y', 'kspp', 'self_protection'))
226     if debug_mode or arch == 'ARM64':
227         checklist.append(OptCheck('ARM64_SW_TTBR0_PAN',           'y', 'kspp', 'self_protection'))
228         checklist.append(OptCheck('RANDOMIZE_BASE',               'y', 'kspp', 'self_protection'))
229     if debug_mode or arch == 'ARM64' or arch == 'ARM':
230         checklist.append(OptCheck('SYN_COOKIES',                  'y', 'kspp', 'self_protection')) # another reason?
231         checklist.append(OptCheck('DEFAULT_MMAP_MIN_ADDR',        '32768', 'kspp', 'self_protection'))
232
233     if debug_mode or arch == 'X86_64' or arch == 'ARM64' or arch == 'X86_32':
234         checklist.append(OptCheck('GCC_PLUGIN_STACKLEAK',         'y', 'my', 'self_protection'))
235     checklist.append(OptCheck('LOCK_DOWN_KERNEL',                 'y', 'my', 'self_protection')) # remember about LOCK_DOWN_MANDATORY
236     checklist.append(OptCheck('SLUB_DEBUG_ON',                    'y', 'my', 'self_protection'))
237     checklist.append(OptCheck('SECURITY_DMESG_RESTRICT',          'y', 'my', 'self_protection'))
238     checklist.append(OptCheck('STATIC_USERMODEHELPER',            'y', 'my', 'self_protection')) # needs userspace support (systemd)
239     checklist.append(OptCheck('SECURITY_LOADPIN',                 'y', 'my', 'self_protection')) # needs userspace support
240     checklist.append(OptCheck('RESET_ATTACK_MITIGATION',          'y', 'my', 'self_protection')) # needs userspace support (systemd)
241     checklist.append(OptCheck('SLAB_MERGE_DEFAULT',               'is not set', 'my', 'self_protection')) # slab_nomerge
242     checklist.append(AND(OptCheck('PAGE_POISONING_NO_SANITY',     'is not set', 'my', 'self_protection'), \
243                          page_poisoning_is_set))
244     checklist.append(AND(OptCheck('PAGE_POISONING_ZERO',          'is not set', 'my', 'self_protection'), \
245                          page_poisoning_is_set))
246     if debug_mode or arch == 'X86_32':
247         checklist.append(OptCheck('PAGE_TABLE_ISOLATION',         'y', 'my', 'self_protection'))
248
249     if debug_mode or arch == 'X86_64' or arch == 'ARM64' or arch == 'X86_32':
250         checklist.append(OptCheck('SECURITY',                'y', 'defconfig', 'security_policy'))
251     if debug_mode or arch == 'ARM':
252         checklist.append(OptCheck('SECURITY',                'y', 'kspp', 'security_policy'))
253     checklist.append(OptCheck('SECURITY_YAMA',               'y', 'kspp', 'security_policy'))
254     checklist.append(OptCheck('SECURITY_SELINUX_DISABLE',    'is not set', 'kspp', 'security_policy'))
255
256     checklist.append(OptCheck('SECCOMP',              'y', 'defconfig', 'cut_attack_surface'))
257     checklist.append(OptCheck('SECCOMP_FILTER',       'y', 'defconfig', 'cut_attack_surface'))
258     if debug_mode or arch == 'X86_64' or arch == 'ARM64' or arch == 'X86_32':
259         checklist.append(OR(OptCheck('STRICT_DEVMEM',     'y', 'defconfig', 'cut_attack_surface'), \
260                             devmem_not_set)) # refers to LOCK_DOWN_KERNEL
261
262     checklist.append(modules_not_set)
263     checklist.append(devmem_not_set)
264     checklist.append(OR(OptCheck('IO_STRICT_DEVMEM',  'y', 'kspp', 'cut_attack_surface'), \
265                         devmem_not_set)) # refers to LOCK_DOWN_KERNEL
266     if debug_mode or arch == 'ARM':
267         checklist.append(OR(OptCheck('STRICT_DEVMEM', 'y', 'kspp', 'cut_attack_surface'), \
268                             devmem_not_set)) # refers to LOCK_DOWN_KERNEL
269     checklist.append(OptCheck('ACPI_CUSTOM_METHOD',   'is not set', 'kspp', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL
270     checklist.append(OptCheck('COMPAT_BRK',           'is not set', 'kspp', 'cut_attack_surface'))
271     checklist.append(OptCheck('DEVKMEM',              'is not set', 'kspp', 'cut_attack_surface'))
272     checklist.append(OptCheck('COMPAT_VDSO',          'is not set', 'kspp', 'cut_attack_surface'))
273     checklist.append(OptCheck('BINFMT_MISC',          'is not set', 'kspp', 'cut_attack_surface'))
274     checklist.append(OptCheck('INET_DIAG',            'is not set', 'kspp', 'cut_attack_surface'))
275     checklist.append(OptCheck('KEXEC',                'is not set', 'kspp', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL
276     checklist.append(OptCheck('PROC_KCORE',           'is not set', 'kspp', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL
277     checklist.append(OptCheck('LEGACY_PTYS',          'is not set', 'kspp', 'cut_attack_surface'))
278     checklist.append(OptCheck('HIBERNATION',          'is not set', 'kspp', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL
279     if debug_mode or arch == 'X86_64':
280         checklist.append(OptCheck('LEGACY_VSYSCALL_NONE', 'y', 'kspp', 'cut_attack_surface')) # 'vsyscall=none'
281         checklist.append(OptCheck('IA32_EMULATION',       'is not set', 'kspp', 'cut_attack_surface'))
282         checklist.append(OptCheck('X86_X32',              'is not set', 'kspp', 'cut_attack_surface'))
283         checklist.append(OptCheck('MODIFY_LDT_SYSCALL',   'is not set', 'kspp', 'cut_attack_surface'))
284     if debug_mode or arch == 'ARM':
285         checklist.append(OptCheck('OABI_COMPAT',          'is not set', 'kspp', 'cut_attack_surface'))
286
287     checklist.append(OptCheck('X86_PTDUMP',              'is not set', 'grsecurity', 'cut_attack_surface'))
288     checklist.append(OptCheck('ZSMALLOC_STAT',           'is not set', 'grsecurity', 'cut_attack_surface'))
289     checklist.append(OptCheck('PAGE_OWNER',              'is not set', 'grsecurity', 'cut_attack_surface'))
290     checklist.append(OptCheck('DEBUG_KMEMLEAK',          'is not set', 'grsecurity', 'cut_attack_surface'))
291     checklist.append(OptCheck('BINFMT_AOUT',             'is not set', 'grsecurity', 'cut_attack_surface'))
292     checklist.append(OptCheck('KPROBES',                 'is not set', 'grsecurity', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL
293     checklist.append(OptCheck('UPROBES',                 'is not set', 'grsecurity', 'cut_attack_surface'))
294     checklist.append(OptCheck('GENERIC_TRACER',          'is not set', 'grsecurity', 'cut_attack_surface'))
295     checklist.append(OptCheck('PROC_VMCORE',             'is not set', 'grsecurity', 'cut_attack_surface'))
296     checklist.append(OptCheck('PROC_PAGE_MONITOR',       'is not set', 'grsecurity', 'cut_attack_surface'))
297     checklist.append(OptCheck('USELIB',                  'is not set', 'grsecurity', 'cut_attack_surface'))
298     checklist.append(OptCheck('CHECKPOINT_RESTORE',      'is not set', 'grsecurity', 'cut_attack_surface'))
299     checklist.append(OptCheck('USERFAULTFD',             'is not set', 'grsecurity', 'cut_attack_surface'))
300     checklist.append(OptCheck('HWPOISON_INJECT',         'is not set', 'grsecurity', 'cut_attack_surface'))
301     checklist.append(OptCheck('MEM_SOFT_DIRTY',          'is not set', 'grsecurity', 'cut_attack_surface'))
302     checklist.append(OptCheck('DEVPORT',                 'is not set', 'grsecurity', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL
303     checklist.append(OptCheck('DEBUG_FS',                'is not set', 'grsecurity', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL
304     checklist.append(OptCheck('NOTIFIER_ERROR_INJECTION','is not set', 'grsecurity', 'cut_attack_surface'))
305
306     checklist.append(OptCheck('ACPI_TABLE_UPGRADE',   'is not set', 'lockdown', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL
307     checklist.append(OptCheck('ACPI_APEI_EINJ',       'is not set', 'lockdown', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL
308     checklist.append(OptCheck('PROFILING',            'is not set', 'lockdown', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL
309     checklist.append(OptCheck('BPF_SYSCALL',          'is not set', 'lockdown', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL
310     checklist.append(OptCheck('MMIOTRACE_TEST',       'is not set', 'lockdown', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL
311
312     checklist.append(OptCheck('MMIOTRACE',            'is not set', 'my', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL (permissive)
313     checklist.append(OptCheck('KEXEC_FILE',           'is not set', 'my', 'cut_attack_surface')) # refers to LOCK_DOWN_KERNEL (permissive)
314     checklist.append(OptCheck('LIVEPATCH',            'is not set', 'my', 'cut_attack_surface'))
315     checklist.append(OptCheck('USER_NS',              'is not set', 'my', 'cut_attack_surface')) # user.max_user_namespaces=0
316     checklist.append(OptCheck('IP_DCCP',              'is not set', 'my', 'cut_attack_surface'))
317     checklist.append(OptCheck('IP_SCTP',              'is not set', 'my', 'cut_attack_surface'))
318     checklist.append(OptCheck('FTRACE',               'is not set', 'my', 'cut_attack_surface'))
319     checklist.append(OptCheck('BPF_JIT',              'is not set', 'my', 'cut_attack_surface'))
320     if debug_mode or arch == 'X86_32':
321         checklist.append(OptCheck('MODIFY_LDT_SYSCALL', 'is not set', 'my', 'cut_attack_surface'))
322
323     if debug_mode or arch == 'X86_64' or arch == 'ARM64':
324         checklist.append(OptCheck('ARCH_MMAP_RND_BITS',   '32', 'my', 'userspace_protection'))
325     if debug_mode or arch == 'X86_32' or arch == 'ARM':
326         checklist.append(OptCheck('ARCH_MMAP_RND_BITS',   '16', 'my', 'userspace_protection'))
327
328 #   checklist.append(OptCheck('LKDTM',    'm', 'my', 'feature_test'))
329
330
331 def print_checklist(arch):
332     print('[+] Printing kernel hardening preferences for {}...'.format(arch))
333     print('  {:<39}|{:^13}|{:^10}|{:^20}'.format(
334         'option name', 'desired val', 'decision', 'reason'))
335     print('  ' + '=' * 86)
336     for opt in checklist:
337         print('  CONFIG_{:<32}|{:^13}|{:^10}|{:^20}'.format(
338             opt.name, opt.expected, opt.decision, opt.reason))
339     print()
340
341
342 def print_check_results():
343     print('  {:<39}|{:^13}|{:^10}|{:^20}||{:^28}'.format(
344         'option name', 'desired val', 'decision', 'reason', 'check result'))
345     print('  ' + '=' * 115)
346     for opt in checklist:
347         if opt.result:
348             print('  CONFIG_{:<32}|{:^13}|{:^10}|{:^20}||{:^28}'.format(
349                 opt.name, opt.expected, opt.decision, opt.reason, opt.result))
350     print()
351
352
353 def get_option_state(options, name):
354     return options.get(name, None)
355
356
357 def perform_checks(parsed_options):
358     for opt in checklist:
359         if hasattr(opt, 'opts'):
360             for o in opt.opts:
361                 o.state = get_option_state(parsed_options, o.name)
362         else:
363             opt.state = get_option_state(parsed_options, opt.name)
364         opt.check()
365
366
367 def check_config_file(fname):
368     with open(fname, 'r') as f:
369         parsed_options = OrderedDict()
370         opt_is_on = re.compile("CONFIG_[a-zA-Z0-9_]*=[a-zA-Z0-9_\"]*")
371         opt_is_off = re.compile("# CONFIG_[a-zA-Z0-9_]* is not set")
372
373         print('[+] Checking "{}" against hardening preferences...'.format(fname))
374         for line in f.readlines():
375             line = line.strip()
376             option = None
377             value = None
378
379             if opt_is_on.match(line):
380                 option, value = line[7:].split('=', 1)
381             elif opt_is_off.match(line):
382                 option, value = line[9:].split(' ', 1)
383                 if value != 'is not set':
384                     sys.exit('[!] ERROR: bad disabled config option "{}"'.format(line))
385
386             if option in parsed_options:
387                 sys.exit('[!] ERROR: config option "{}" exists multiple times'.format(line))
388
389             if option is not None:
390                 parsed_options[option] = value
391
392         perform_checks(parsed_options)
393
394         if debug_mode:
395             known_options = [opt.name for opt in checklist]
396             for option, value in parsed_options.items():
397                 if option not in known_options:
398                     print("DEBUG: dunno about option {} ({})".format(option, value))
399
400         print_check_results()
401
402
403 if __name__ == '__main__':
404     parser = ArgumentParser(description='Checks the hardening options in the Linux kernel config')
405     parser.add_argument('-p', '--print', choices=supported_archs,
406                         help='print hardening preferences for selected architecture')
407     parser.add_argument('-c', '--config',
408                         help='check the config_file against these preferences')
409     parser.add_argument('--debug', action='store_true',
410                         help='enable internal debug mode')
411     args = parser.parse_args()
412
413     if args.debug:
414         debug_mode = True
415
416     if args.config:
417         arch, msg = detect_arch(args.config)
418         if not arch:
419             sys.exit('[!] ERROR: {}'.format(msg))
420         else:
421             print('[+] Detected architecture: {}'.format(arch))
422
423         construct_checklist(arch)
424         check_config_file(args.config)
425         error_count = len(list(filter(lambda opt: opt.result and opt.result.startswith('FAIL'), checklist)))
426         if debug_mode:
427             sys.exit(0)
428         if error_count == 0:
429             print('[+] config check is PASSED')
430             sys.exit(0)
431         else:
432             sys.exit('[-] config check is NOT PASSED: {} errors'.format(error_count))
433
434     if args.print:
435         arch = args.print
436         construct_checklist(arch)
437         print_checklist(arch)
438         sys.exit(0)
439
440     parser.print_help()