-
Notifications
You must be signed in to change notification settings - Fork 473
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stateful SMT Memory Model #1021
Open
mrphrazer
wants to merge
2
commits into
cea-sec:master
Choose a base branch
from
mrphrazer:stateful_smt_memory
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
from miasm.expression.expression import * | ||
|
||
|
||
def dissect_test(expr, expr_type, result): | ||
if isinstance(expr, expr_type): | ||
result.add(expr) | ||
return False | ||
return True | ||
|
||
|
||
def dissect_visit(expr, expr_type): | ||
result = set() | ||
expr.visit(lambda expr: expr, | ||
lambda expr: dissect_test(expr, expr_type, result)) | ||
return result | ||
|
||
|
||
def gen_smt_mem_read(m, arch_size): | ||
""" | ||
Generates a expression which will | ||
return a value from memory of the form | ||
mem_read(M, addr, size), | ||
where @M is the memory, @addr the | ||
value's address and @size the size | ||
of the value to be read. | ||
The value will be the slice of the | ||
read value of size m.size. | ||
:param m: memory expression | ||
:param mem_name: string, name of memory variable | ||
:return: ExprSlice of size m.size | ||
""" | ||
mem = ExprId("M", arch_size) | ||
addr = zero_padding(m.ptr, arch_size) | ||
size = ExprInt(m.size, arch_size) | ||
op = ExprOp("mem_read", mem, addr, size) | ||
|
||
return ExprSlice(op, 0, m.size) | ||
|
||
|
||
def gen_smt_mem_write(e, arch_size): | ||
""" | ||
Generates an expression of the form | ||
M = mem_write(M, addr, val, size), | ||
where @val is a value of size @size | ||
which will be written in memory @M at | ||
address @addr. | ||
:param e: ExprAssign | ||
:param mem_name: string, name of memory variable | ||
:return: ExprAssign | ||
""" | ||
dst = e.dst | ||
src = e.src | ||
|
||
mem = ExprId("M", arch_size) | ||
addr = zero_padding(dst.ptr, arch_size) | ||
val = zero_padding(src, arch_size) | ||
size = ExprInt(src.size, arch_size) | ||
op = ExprOp("mem_write", mem, addr, val, size) | ||
return ExprAssign(mem, op) | ||
|
||
|
||
def zero_padding(v, arch_size): | ||
""" | ||
Paddes a value to the architecture's bit size with zero | ||
:param v: parameter to be padded | ||
:return: padded parameter | ||
""" | ||
# v is smaller than architecture's bit size | ||
if v.size < arch_size: | ||
i = ExprInt(0, arch_size) | ||
slice = ExprSlice(i, 0, i.size - v.size) | ||
return ExprCompose(v, slice) | ||
|
||
return v | ||
|
||
|
||
def rewrite_memory_read(e, arch_size): | ||
""" | ||
Rewrites all memory read expressions | ||
in an expression to | ||
mem_read(M, address, size) | ||
:param e: expression | ||
:return: rewritten expression | ||
""" | ||
# parse all memory expressions | ||
e_new = e | ||
memory = dissect_visit(e, ExprMem) | ||
# iterate memory expressions | ||
for m in memory: | ||
# create mem_read expression | ||
mem_read = gen_smt_mem_read(m, arch_size) | ||
# replace memory expression with mem_read expression | ||
e_new = e_new.replace_expr({m: mem_read}) | ||
|
||
return e_new | ||
|
||
|
||
def rewrite_memory(e, arch_size): | ||
""" | ||
Rewrites memory expressions in an ExprAff to | ||
|
||
- mem_read(M, address, size) | ||
- M = mem_write(M, address, value, size) | ||
|
||
:param e: ExprAssign | ||
:return: ExprAssign with transformed memory expressions | ||
""" | ||
dst = e.dst.copy() | ||
src = e.src.copy() | ||
|
||
# memory expression on LHS: create mem_write expressions | ||
if isinstance(dst, ExprMem): | ||
# rewrite all memory read expressions | ||
src_new = rewrite_memory_read(src, arch_size) | ||
|
||
# generate mem_write expression | ||
mem_write = ExprAssign(dst, src_new) | ||
|
||
# recreate expression | ||
e_new = gen_smt_mem_write(mem_write, arch_size) | ||
|
||
# no memory expression on LHS: create mem_read expressions | ||
else: | ||
# rewrite all memory read expressions | ||
src_new = rewrite_memory_read(src, arch_size) | ||
|
||
# recreate expression | ||
e_new = ExprAssign(dst, src_new) | ||
|
||
return e_new |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It sounds like
Expr.zeroExtend(arch_size)