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