-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Add more EIP syncs for x86 target memory hooks #2064
base: dev
Are you sure you want to change the base?
Conversation
Could you add tests to illustrate the instructions? |
Sorry I could not provide a concrete test case, as this bug occurs randomly. I could explain in theory. As the eip is already synced in normal memory accesses, this makes sure that the RIP we get in memory hooks is correct. However, the SIMD instructions do not use those functions to access memories. So in some rare cases where eip is not synced, we could only got the wrong eip that lastly synced. As we already sync eip in normal memory accesses, there is no reason not adding those syncs for SIMD memory accesses. |
I understand this happens in a quite large codebase. I mean you can provide a unit case including only 1 SIMD instruction and 1 memory hook and the PC is not synced. You can find lots of samples in tests/unit/test_x86.c |
This ensures our future releases won’t break your uses cases. |
I understand the necessity to add test case. However, by saying "random", I mean the bug is not reproducible. I do meet one SIMD instruction which does not sync EIP during one execution, however, in another execution, it is synced, where somewhere else is not synced. This is because I meet this bug when I use unicorn as fuzzing engine with AFL++, which uses a lot of low-level optimizations such as inter-process TB caches, which makes this bug hard to catch and hard to reproduce in a small testcase. |
Are you using unicornafl? |
Yes |
Unicornafl bundled a quite old Unicorn at this moment, which I will update once next patch release lands. Have you updated the bundled unicorn version? |
I use the latest unicorn at dev branch. |
Inside memory hooks, value of RIP register may be wrongly retrieved, especially for SIMD instructions (since they do not use
gen_op_ld_v
andgen_op_st_v
for memory access).However, this behavior is random and I cannot provide an example for this bug. I came across this bug when unicorn is used as fuzzing executor with AFL++.
BTW, you can see many usages of
tcg_gen_qemu_ld_xx
andtcg_gen_qemu_st_xx
across the wholetranslate.c
. Maybe we should add this EIP sync before each callsite? However, there are too many usages (in some rarely-seen instructions), and I could not tell whether we should add this sync. So this PR will focus on the most common usages.