-
Notifications
You must be signed in to change notification settings - Fork 5
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
Taint design options #4
Comments
Expanding a bit on tainting PC; if we have something like Is there some correctness implication here? |
- on indirect jumps, we set up the taint for pc appropriately - for bl* instructions, we set the taint for lr appropriately Issue #4
Some canonical taint propagation policies from the literature:
It's not feasible to implement Control Propagation using only dynamic analysis, so we punt on this. |
Should have an options struct that controls taint propagation dials, as well as IR-level design issues. For example:
blx r0
. The taint prop would be simulated bymov pc, r0
eor r0, r0, r1
, wherer0
is tainted.The text was updated successfully, but these errors were encountered: