Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
kernel-hardening-checker
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
kernel-hardening-checker
Commits
4e0065c8
Commit
4e0065c8
authored
Jan 22, 2023
by
Alexander Popov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add the check for the iommu cmdline option
Refers to #76
parent
3b7e9848
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
__init__.py
kconfig_hardened_check/__init__.py
+2
-3
No files found.
kconfig_hardened_check/__init__.py
View file @
4e0065c8
...
...
@@ -10,9 +10,6 @@
# Please don't cry if my Python code looks like C.
#
#
# N.B Missing hardening command line parameters:
# iommu=force (does it help against DMA attacks?)
#
# Hardware tag-based KASAN with arm64 Memory Tagging Extension (MTE):
# kasan=on
# kasan.stacktrace=off
...
...
@@ -796,6 +793,8 @@ def add_cmdline_checks(l, arch):
# 'self_protection', 'clipos'
l
+=
[
CmdlineCheck
(
'self_protection'
,
'clipos'
,
'page_alloc.shuffle'
,
'1'
)]
if
arch
in
(
'X86_64'
,
'X86_32'
):
l
+=
[
CmdlineCheck
(
'self_protection'
,
'clipos'
,
'iommu'
,
'force'
)]
# 'cut_attack_surface', 'defconfig'
if
arch
in
(
'X86_64'
,
'X86_32'
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment