Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
7b0be2b4
Commit
7b0be2b4
authored
2 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[Eva] Registers new information about AST markers: taint status.
parent
abb37033
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/eva/api/general_requests.ml
+56
-0
56 additions, 0 deletions
src/plugins/eva/api/general_requests.ml
with
56 additions
and
0 deletions
src/plugins/eva/api/general_requests.ml
+
56
−
0
View file @
7b0be2b4
...
@@ -188,6 +188,62 @@ let () =
...
@@ -188,6 +188,62 @@ let () =
~
enable
:
Analysis
.
is_computed
~
enable
:
Analysis
.
is_computed
print_value
print_value
let
print_taint
fmt
marker
=
let
loc
=
Cil_datatype
.
Location
.
unknown
in
let
expr
,
stmt
=
match
marker
with
|
Printer_tag
.
PLval
(
_kf
,
Kstmt
stmt
,
lval
)
->
Cil
.
new_exp
~
loc
(
Lval
lval
)
,
stmt
|
Printer_tag
.
PExp
(
_kf
,
Kstmt
stmt
,
expr
)
->
expr
,
stmt
|
PVDecl
(
_kf
,
Kstmt
stmt
,
vi
)
->
Cil
.
new_exp
~
loc
(
Lval
(
Var
vi
,
NoOffset
))
,
stmt
|
PTermLval
(
_kf
,
Kstmt
stmt
,
_ip
,
tlval
)
->
begin
try
let
result
=
None
in
let
lval
=
!
Db
.
Properties
.
Interp
.
term_lval_to_lval
~
result
tlval
in
Cil
.
new_exp
~
loc
(
Lval
lval
)
,
stmt
with
Db
.
Properties
.
Interp
.
No_conversion
->
raise
Not_found
end
|
_
->
raise
Not_found
in
let
evaluate_taint
request
=
let
deps
=
Results
.
expr_dependencies
expr
request
in
Result
.
get_ok
(
Results
.
is_tainted
deps
.
data
request
)
,
Result
.
get_ok
(
Results
.
is_tainted
deps
.
indirect
request
)
in
let
before
=
evaluate_taint
Results
.(
before
stmt
)
in
let
after
=
evaluate_taint
Results
.(
after
stmt
)
in
let
str_taint
=
function
|
Results
.
Untainted
->
"untainted"
|
Direct
->
"direct taint"
|
Indirect
->
"indirect taint"
in
let
pretty
fmt
=
let
open
Results
in
function
|
taint
,
Untainted
->
Format
.
fprintf
fmt
"%s"
(
str_taint
taint
)
|
t1
,
t2
->
Format
.
fprintf
fmt
"%s to the value, %s %s to values used to compute lvalues addresses"
(
str_taint
t1
)
(
if
t1
=
Untainted
then
"but"
else
"and"
)
(
str_taint
t2
)
in
if
before
=
after
then
Format
.
fprintf
fmt
"%a"
pretty
before
else
Format
.
fprintf
fmt
"Before: %a@
\n
After: %a"
pretty
before
pretty
after
let
()
=
let
enable
()
=
Analysis
.
is_computed
()
&&
Taint_domain
.
Store
.
is_computed
()
in
let
title
=
"Taint status:
\n
\
- Direct taint: data dependency from values provided by the attacker, \
meaning that the attacker may be able to alter this value
\n
\
- Indirect taint: the attacker cannot directly alter this value, but he \
may be able to impact the path by which its value is computed.
\n
\
- Untainted: cannot be modified by the attacker."
in
Server
.
Kernel_ast
.
Information
.
register
~
id
:
"eva.taint"
~
label
:
"Taint"
~
descr
:
"Taint status according to Eva"
~
title
~
enable
print_taint
let
()
=
let
()
=
Analysis
.
register_computation_hook
Analysis
.
register_computation_hook
(
fun
_
->
Server
.
Kernel_ast
.
Information
.
update
()
)
(
fun
_
->
Server
.
Kernel_ast
.
Information
.
update
()
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment