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
d3e04de1
Commit
d3e04de1
authored
Sep 09, 2023
by
Frak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
re-factoring
parent
fb9aeb53
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
11 deletions
+5
-11
engine.py
kconfig_hardened_check/engine.py
+5
-11
No files found.
kconfig_hardened_check/engine.py
View file @
d3e04de1
...
...
@@ -23,9 +23,7 @@ def colorize_result(input):
color
=
RED_COLOR
else
:
assert
(
False
),
f
'unexpected result "{input}"'
colored_result
=
f
'{color}{input}{COLOR_END}'
print
(
f
'| {colored_result}'
,
end
=
''
)
return
f
'{color}{input}{COLOR_END}'
class
OptCheck
:
...
...
@@ -94,7 +92,7 @@ class OptCheck:
def
table_print
(
self
,
_mode
,
with_results
):
print
(
f
'{self.name:<40}|{self.type:^7}|{self.expected:^12}|{self.decision:^10}|{self.reason:^18}'
,
end
=
''
)
if
with_results
:
colorize_result
(
self
.
result
)
print
(
f
'| {colorize_result(self.result)}'
,
end
=
''
)
def
json_dump
(
self
,
with_results
):
dump
=
[
self
.
name
,
self
.
type
,
self
.
expected
,
self
.
decision
,
self
.
reason
]
...
...
@@ -153,7 +151,7 @@ class VersionCheck:
ver_req
=
f
'kernel version >= {self.ver_expected[0]}.{self.ver_expected[1]}'
print
(
f
'{ver_req:<91}'
,
end
=
''
)
if
with_results
:
colorize_result
(
self
.
result
)
print
(
f
'| {colorize_result(self.result)}'
,
end
=
''
)
class
ComplexOptCheck
:
...
...
@@ -183,8 +181,7 @@ class ComplexOptCheck:
if
mode
==
'verbose'
:
print
(
f
' {"<<< " + self.__class__.__name__ + " >>>":87}'
,
end
=
''
)
if
with_results
:
colorize_result
(
self
.
result
)
print
(
f
'| {colorize_result(self.result)}'
,
end
=
''
)
for
o
in
self
.
opts
:
print
()
o
.
table_print
(
mode
,
with_results
)
...
...
@@ -192,10 +189,7 @@ class ComplexOptCheck:
o
=
self
.
opts
[
0
]
o
.
table_print
(
mode
,
False
)
if
with_results
:
colorize_result
(
self
.
result
)
print
(
f
'| {colorize_result(self.result)}'
,
end
=
''
)
def
json_dump
(
self
,
with_results
):
dump
=
self
.
opts
[
0
]
.
json_dump
(
False
)
...
...
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