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