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