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
b4de795e
Commit
b4de795e
authored
Mar 05, 2023
by
Alexander Popov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compare with None explicitly
These objects should be compared for identity with None using 'is' operator.
parent
6b2ac069
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
__init__.py
kconfig_hardened_check/__init__.py
+5
-5
No files found.
kconfig_hardened_check/__init__.py
View file @
b4de795e
...
...
@@ -30,11 +30,11 @@ def detect_arch(fname, archs):
if
arch_pattern
.
match
(
line
):
option
,
_
=
line
[
7
:]
.
split
(
'='
,
1
)
if
option
in
archs
:
if
not
arch
:
if
arch
is
None
:
arch
=
option
else
:
return
None
,
'more than one supported architecture is detected'
if
not
arch
:
if
arch
is
None
:
return
None
,
'failed to detect architecture'
return
arch
,
'OK'
...
...
@@ -66,7 +66,7 @@ def detect_compiler(fname):
gcc_version
=
line
[
19
:
-
1
]
if
clang_version_pattern
.
match
(
line
):
clang_version
=
line
[
21
:
-
1
]
if
not
gcc_version
or
not
clang_version
:
if
gcc_version
is
None
or
clang_version
is
None
:
return
None
,
'no CONFIG_GCC_VERSION or CONFIG_CLANG_VERSION'
if
gcc_version
==
'0'
and
clang_version
!=
'0'
:
return
'CLANG '
+
clang_version
,
'OK'
...
...
@@ -230,13 +230,13 @@ def main():
print
(
f
'[+] Kernel cmdline file to check: {args.cmdline}'
)
arch
,
msg
=
detect_arch
(
args
.
config
,
supported_archs
)
if
not
arch
:
if
arch
is
None
:
sys
.
exit
(
f
'[!] ERROR: {msg}'
)
if
mode
!=
'json'
:
print
(
f
'[+] Detected architecture: {arch}'
)
kernel_version
,
msg
=
detect_kernel_version
(
args
.
config
)
if
not
kernel_version
:
if
kernel_version
is
None
:
sys
.
exit
(
f
'[!] ERROR: {msg}'
)
if
mode
!=
'json'
:
print
(
f
'[+] Detected kernel version: {kernel_version[0]}.{kernel_version[1]}'
)
...
...
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