Reverse Engineering For Beginners-En
Reverse Engineering For Beginners-En
Dennis Yurichev
<[email protected]>
cbnd
-, Dennis Yurichev.
This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivs . Unported
License. To view a copy of this license, visit
http://creativecommons.org/licenses/by-nc-nd/3.0/.
Text version (May , ).
There is probably a newer version of this text, and also Russian language version also accessible at
http://yurichev.com/RE-book.html. E-book reader version is also available on the page.
You may also subscribe to my twitter, to get information about updates of this text, etc: @yurichev
, or
to subscribe to mailing list
https://twitter.com/yurichev
http://yurichev.com/mailing_lists.html
Please donate!
I worked more than year on this book, here are more than pages, and its free.
Same level books has price tag from $ to $.
More about it: ..
i
Sn0k1 C0n1ln1S Sn0k1 C0n1ln1S
5bcrt ccntents
l Ccde patterns 1
ll lmpcrtant fundamentals 812
lll findin impcrtantjinterestin stu in tbe ccde 81$
lv o5-specific 888
v 1ccls 889
vl Hcre examples 89$
vll otber tbins 498
vlll 8ccksjblcs wcrtb readin $11
lk xercises $1$
Aerwcrd $88
Appendix $70
Acrcnyms used 804
ii
C0n1ln1S C0n1ln1S
Ccntents
. Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xv
l Ccde patterns 1
1 5bcrt intrcducticn tc tbe CU 8
2 Rellc, wcrld! 4
. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVCx . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCCx . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC: AT&T syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. x- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVCx- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCCx- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ARM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Non-optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Non-optimizing Keil: thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Xcode (LLVM) + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Xcode (LLVM) + thumb- mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
8 functicn prclcue and epilcue 18
. Recursion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
4 5tack 14
. Why does the stack grow backward? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. What is the stack used for? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Save the return address where a function must return control afer execution . . . . . . . . . . . . . .
.. Passing function arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Local variable storage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x: alloca() function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. (Windows) SEH . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Bufer overflow protection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Typical stack layout . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
$ printf() witb several aruments 20
. x: arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC and OllyDbg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC and GDB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. x: arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC + GDB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ARM: arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Non-optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ARM: arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Keil: ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
iii
C0n1ln1S
.. Optimizing Keil: thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Xcode (LLVM): ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Xcode (LLVM): thumb- mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. By the way . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
8 scanf() 8$
. About pointers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + OllyDbg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ARM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Global variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC: x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC: x + OllyDbg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC: x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC: x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM: Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. scanf() result checking . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC: x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC: x: IDA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC: x + OllyDbg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC: x + Hiew . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC: x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC: x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM: Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
7 Accessin passed aruments $4
. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + OllyDbg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC: uint_t instead int . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ARM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Non-optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
8 one mcre wcrd abcut results returnin. 81
9 cinters 84
. Global variables example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Local variables example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Conclusion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
10 Ccnditicnal jumps 70
. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x + MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x + MSVC + OllyDbg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x + MSVC + Hiew . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Non-optimizing GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ARM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
iv
C0n1ln1S
11 switcb()jcasejdefault 80
. Few number of cases . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM: Optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM: Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. A lot of cases . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM: Optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM: Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
12 Lccps 89
. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. OllyDbg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. tracer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ARM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Non-optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Xcode (LLVM) + thumb- mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. One more thing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
18 strlen() 97
. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Non-optimizing MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Non-optimizing GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing MSVC + OllyDbg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ARM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Non-optimizing Xcode (LLVM) + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Xcode (LLVM) + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
14 bivisicn by 9 10$
. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ARM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Xcode (LLVM) + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Xcode (LLVM) + thumb- mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Non-optimizing Xcode (LLVM) and Keil . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. How it works . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Getting divisor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Variant # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Variant # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
1$ wcrkin witb fU 110
. Simple example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM: Optimizing Xcode (LLVM) + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM: Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Passing floating point number via arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Non-optimizing Xcode (LLVM) + thumb- mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Non-optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Comparison example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Now lets compile it with MSVC with optimization option /Ox . . . . . . . . . . . . . . . . . . . . .
.. GCC .. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC .. with -O3 optimization turned on . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Xcode (LLVM) + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Xcode (LLVM) + thumb- mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Non-optimizing Xcode (LLVM) + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
v
C0n1ln1S
18 Arrays 124
. Simple example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Non-optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Bufer overflow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Bufer overflow protection methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Optimizing Xcode (LLVM) + thumb- mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. One more word about arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Multidimensional arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Non-optimizing Xcode (LLVM) + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Xcode (LLVM) + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
17 8it fields 189
. Specific bit checking . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Specific bit setting/clearing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Keil + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Xcode (LLVM) + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Shifs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Xcode (LLVM) + ARM mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Xcode (LLVM) + thumb- mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. CRC calculation example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
18 5tructures 1$2
. SYSTEMTIME example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Lets allocate space for structure using malloc() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. struct tm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Linux . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Xcode (LLVM) + thumb- mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Fields packing in structure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Keil + thumb mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM + Optimizing Xcode (LLVM) + thumb- mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Nested structures . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Bit fields in structure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. CPUID example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Working with the float type as with a structure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
19 Unicns 172
. Pseudo-random number generator example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
20 cinters tc functicns 17$
. MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + OllyDbg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + tracer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + tracer (code coverage) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC + GDB (with source code) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC + GDB (no source code) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
21 84-bit values in 82-bit envircnment 18$
. Arguments passing, addition, subtraction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Multiplication, division . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Shifing right . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Converting of -bit value into -bit one . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
vi
C0n1ln1S
22 5lHb 191
. Vectorization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Intel C++ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. SIMD strlen() implementation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
28 84 bits 201
. x- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ARM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Float point numbers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
24 wcrkin witb flcat pcint numbers usin 5lHb in x84 209
. Simple example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Passing floating point number via arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Comparison example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
2$ 1emperature ccnvertin 218
. Integer values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC x /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC x /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Float point values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
28 C99 restrict 218
27 lnline functicns 221
28 lnccrrectly disassembled ccde 224
. Disassembling started incorrectly (x) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. How random noise looks disassembled? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Information entropy of average code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM (Thumb) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. ARM (ARM mode) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MIPS (little endian) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
29 C++ 248
. Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Simple example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Class inheritance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Encapsulation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Multiple inheritance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Virtual methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ostream . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. STL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. std::string . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. std::list . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. std::vector . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. std::map and std::set . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
80 obfuscaticn 297
. Text strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Executable code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Inserting garbage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Replacing instructions to bloated equivalents . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Always executed/never executed code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Making a lot of mess . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Using indirect pointers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Virtual machine / pseudo-code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Other thing to mention . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
vii
C0n1ln1S
81 windcws 18-bit 800
. Example# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Example # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Example # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Example # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Example # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Example # . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Global variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
ll lmpcrtant fundamentals 812
82 5ined number representaticns 818
. Integer overflow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
88 ndianness 814
. Big-endian . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Little-endian . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Bi-endian . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Converting data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
lll findin impcrtantjinterestin stu in tbe ccde 81$
84 ldentificaticn cf executable files 817
. Microsof Visual C++ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Name mangling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Name mangling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Cygwin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MinGW . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Intel FORTRAN . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Watcom, OpenWatcom . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Name mangling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Borland . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Delphi . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Other known DLLs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
8$ Ccmmunicaticn witb tbe cuter wcrld (win82) 820
. Ofen used functions in Windows API . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. tracer: Intercepting all functions in specific module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
88 5trins 822
. Text strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Unicode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Error/debug messages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
87 Calls tc assert() 828
88 Ccnstants 827
. Magic numbers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. DHCP . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Constant searching . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
89 findin tbe ribt instructicns 829
40 5uspicicus ccde patterns 881
. XOR instructions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Hand-written assembly code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
41 Usin maic numbers wbile tracin 888
42 otber tbins 884
viii
C0n1ln1S
48 old-scbccl tecbniques, nevertbeless, interestin tc kncw 88$
. Memory snapshots comparing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Windows registry . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
lv o5-specific 888
44 Aruments passin metbcds (callin ccnventicns) 887
. cdecl . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. stdcall . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Variable arguments number functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. fastcall . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC regparm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Watcom/OpenWatcom . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. thiscall . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. x- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Windows x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Linux x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Returning values of floct and Jooble type . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Modifying arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
4$ 1bread Lccal 5tcrae 844
48 5ystemcalls (syscall-s) 84$
. Linux . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Windows . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
47 Linux 847
. Position-independent code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Windows . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. lu_lkll0/u hack in Linux . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
48 windcws N1 8$8
. CRT (win) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Win PE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Base address . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Subsystem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. OS version . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Sections . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Relocations (relocs) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Exports and imports . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Resources . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. .NET . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. TLS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Tools . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Further reading . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Windows SEH . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Lets forget about MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Now lets get back to MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Windows x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Read more about SEH . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Windows NT: Critical section . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
v 1ccls 889
49 bisassembler 890
. IDA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
ix
C0n1ln1S
$0 bebuer 891
. tracer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. OllyDbg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. GDB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
$1 5ystemcalls tracin 892
.. strace / dtruss . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
$2 beccmpilers 898
$8 otber tccls 894
vl Hcre examples 89$
$4 Rand deccmpilin + usin 28 5H1 sclver fcr defeatin amateur cryptcrapby 898
. Hand decompiling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Now lets use Z SMT solver . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
$$ bcnles 40$
. Example #: MacOS Classic and PowerPC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Example #: SCO OpenServer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Decrypting error messages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Example #: MS-DOS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
$8 qR9: Rubiks cube inspired amateur cryptc-alcritbm 429
$7 5A 4$9
. About SAP client network trafic compression . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. SAP . password checking functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
$8 oracle Rb8H5 474
. V$VERSION table in the Oracle RDBMS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. X$KSMLRU table in Oracle RDBMS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. V$TIMER table in Oracle RDBMS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
$9 Randwritten assembly ccde 488
. EICAR test file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
80 bemcs 490
. PRINT CHR$(.+RND()); : GOTO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Trixters byte version . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. My attempt to reduce Trixters version: bytes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Take a random memory garbage as a source of randomness . . . . . . . . . . . . . . . . . . . . . . . . .
.. Conclusion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
vll otber tbins 498
81 npad 494
82 xecutable files patcbin 498
. Text strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. x code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
88 Ccmpiler intrinsic 497
84 Ccmpilers ancmalies 498
8$ openH 499
. MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
88 ltanium $0$
x
C0n1ln1S
87 8088 memcry mcdel $08
88 8asic blccks recrderin $09
. Profile-guided optimization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
vlll 8ccksjblcs wcrtb readin $11
89 8ccks $12
. Windows . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. C/C++ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. x / x- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. ARM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
70 8lcs $18
. Windows . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
71 otber $14
lk xercises $1$
72 Level 1 $17
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC x + /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (thumb) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
78 Level 2 $19
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC .. + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (thumb) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC .. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (thumb) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC .. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (thumb) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC .. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (thumb) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (thumb) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (thumb) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
xi
C0n1ln1S
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + /O1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (thumb) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + /O1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (thumb) + -O3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC x + /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (thumb) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC + /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (thumb) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM mode) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC .. for Raspberry Pi (ARM mode) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC x /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC .. -O x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. GCC .. -O x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM mode): Cortex-RF CPU as target . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. MSVC x /Ox . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (ARM) -O . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
.. Keil (thumb) -O . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
74 Level 8 $$7
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
7$ crackme j keyenme $88
Aerwcrd $88
78 questicns? $88
Appendix $70
A Ccmmcn terminclcy $70
xii
C0n1ln1S
8 x88 $71
B. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B. General purpose registers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. RAX/EAX/AX/AL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. RBX/EBX/BX/BL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. RCX/ECX/CX/CL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. RDX/EDX/DX/DL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. RSI/ESI/SI/SIL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. RDI/EDI/DI/DIL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. R/RD/RW/RL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. R/RD/RW/RL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. R/RD/RW/RL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. R/RD/RW/RL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. R/RD/RW/RL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. R/RD/RW/RL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. R/RD/RW/RL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. R/RD/RW/RL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. RSP/ESP/SP/SPL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. RBP/EBP/BP/BPL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. RIP/EIP/IP . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. CS/DS/ES/SS/FS/GS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. Flags register . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B. FPU-registers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. Control Word . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. Status Word . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. Tag Word . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B. SIMD-registers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. MMX-registers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. SSE and AVX-registers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B. Debugging registers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. DR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. DR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B. Instructions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. Prefixes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. Most frequently used instructions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. Less frequently used instructions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. FPU instructions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. SIMD instructions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
B.. Instructions having printable ASCII opcode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
C ARH $90
C. Terminology . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
C. General purpose registers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
C. Current Program Status Register (CPSR) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
C. VFP (floating point) and NEON registers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
b 5cme 6CC library functicns $92
5cme H5vC library functicns $98
f Cbeatsbeets $94
F. IDA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
F. OllyDbg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
F. MSVC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
F. GCC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
F. GDB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
xiii
C0n1ln1S
6 xercise scluticns $97
G. Level . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G. Level . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G. Level . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
G.. Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Acrcnyms used 804
8iblicrapby 808
6lcssary 810
lndex 812
xiv
0.. lkll/Cl C0n1ln1S
0.1 reface
Here are some of my notes about reverse engineering in English language for those beginners who would like to learn to
understand x (which accounts for almost all executable sofware in the world) and ARM code created by C/C++ compilers.
There are several popular meanings of the termreverse engineering: ) reverse engineering of sofware: researching of
compiled programs; ) D model scanning and reworking in order to make a copy of it; ) recreating DBMS
structure. These
notes are related to the first meaning.
1cpics discussed
x, ARM.
1cpics tcucbed
Oracle RDBMS (), Itanium (), copy-protection dongles (), LD_PRELOAD (.), stack overflow, ELF
) (.), profile-guided
optimization (.), C++ STL (.), OpenMP (), SEH ().
Hini-fAq
-s are very complex. If youdonot plantowrite highly optimizedcode or if youdonot work oncompilers
code generator then you may still learn internals in bare outlines.
. At the same time, in order to understand and
analyze compiled code it is enough to know only ISA
Operating System
http://www.reddit.com/r/ReverseEngineering/
xv
0.. lkll/Cl C0n1ln1S
Abcut tbe autbcr
Dennis Yurichev is an experienced reverse engineer and programmer. His CV is avail-
able on his website
.
1banks
Andrey hermt Baranovich, Slava Avid Kazakov, Stanislav Beaver Bobrytskyy, Alexander Lysenko, Alexander Lstar
Chernenkiy, Andrew Zubinski, Vladimir Botov, Mark Logxen Cooper, Shell Rocket, Yuan Jochen Kang, Arnaud Patard (rtp
on #debian-arm IRC), and all the folks on github.com who have contributed notes and corrections.
A lot of L
A
T
E
X packages were used: I would thank their authors as well.
raise fcr Reverse Engineering for Beginners
Its very well done .. and for free .. amazing.
.
If you want me to continue writing on all these topics you may consider donating.
I worked more than year on this book
, there are more than pages. There are 300 T
E
X-files, 90 C/C++ source
codes, 350 various listings.
Price of other books on the same subject varies between $ and $ on amazon.com.
Ways to donate are available on the page: http://yurichev.com/donate.html
Every donors name will be includedin the book! Donors also have a right to ask me to rearrange items in my writing plan.
Why not try to publish? Because its technical literature which, as I believe, cannot be finished or frozen in paper state.
Such technical references akin to Wikipedia or MSDN
library. They can evolve and growindefinitely. Someone can sit down
and write everything from the begin to the end, publish it and forget about it. As it turns out, its not me. I have everyday
thoughts like that was written badly and can be rewritten better, that was a bad example, I know a better one, that is
also a thing I can explain better and shorter, etc. As you may see in commit history of this books source code, I make a lot of
small changes almost every day: https://github.com/dennis714/RE-for-beginners/commits/master.
http://yurichev.com/Dennis_Yurichev.pdf
https://twitter.com/daniel_bilar/status/436578617221742593
https://twitter.com/petefinnigan/status/400551705797869568
https://github.com/dennis714/RE-for-beginners
https://github.com/dennis714/RE-for-beginners/blob/master/PLANS
https://github.com/dennis714/RE-for-beginners/blob/master/ChangeLog
http://blog.yurichev.com/ https://twitter.com/yurichev
xvii
art l
Ccde patterns
When I first learned C and then C++, I wrote small pieces of code, compiled them, and saw what was produced in the
assembly language. This was easy for me. I didit many times andthe relationbetweenthe C/C++ code andwhat the compiler
produced was imprinted in my mind so deep that I can quickly understand what was in the original C code when I look at
produced x code. Perhaps this technique may be helpful for someone else so I will try to describe some examples here.
There are a lot of examples for both x/x and ARM. Those who already familiar with one of architectures, may freely
skim over pages.
2
Cn/l1lk . Sn0k1 ln1k0uuC1l0n 10 1nl Clu
Cbapter 1
5bcrt intrcducticn tc tbe CU
The CPU is the unit which executes all of the programs.
Short glossary:
lnstructicn : a primitive command to the CPU. Simplest examples: moving data between registers, working with memory,
arithmetic primitives. As a rule, each CPU has its own instruction set architecture (ISA).
Hacbine ccde : code for the CPU. Each instruction is usually encoded by several bytes.
Assembly lanuae : mnemonic code and some extensions like macros which are intended to make a programmers life
easier.
CU reister : Each CPU has a fixed set of general purpose registers (GPR
and you have only -bit variables. A lot of things can be done using only these!
What is the diference between machine code and a PL? It is much easier for humans to use a high-level PL like C/C++,
Java, Python, etc., but it is easier for a CPU to use a much lower level of abstraction. Perhaps, it would be possible to invent
a CPUwhich can execute high-level PL code, but it would be much more complex. On the contrary, it is very inconvenient for
humans to use assembly language due to its low-levelness. Besides, it is very hard to do it without making a huge amount of
annoying mistakes. The program which converts high-level PL code into assembly is called a com|ler.
Programming language
3
Cn/l1lk 2. nlll0, w0klu!
Cbapter 2
Rellc, wcrld!
Lets start with the famous example from the book The C programming Language []:
#include <stdio.h>
int main()
{
printf("hello, world");
return 0;
};
2.1 x88
2.1.1 H5vCx88
Lets compile it in MSVC :
cl 1.cpp /Fa1.asm
(/Fa option means generate assembly listing file)
Listing .: MSVC
CONST SEGMENT
$SG3830 DB hello, world, 00H
CONST ENDS
PUBLIC _main
EXTRN _printf:PROC
; Function compile flags: /Odtp
_TEXT SEGMENT
_main PROC
push ebp
mov ebp, esp
push OFFSET $SG3830
call _printf
add esp, 4
xor eax, eax
pop ebp
ret 0
_main ENDP
_TEXT ENDS
MSVC produces assembly listings in Intel-syntax. The diference between Intel-syntax and AT&T-syntax will be discussed
hereafer.
The compiler generated 1.obj file will be linked into 1.exe.
In our case, the file contain two segments: CONST (for data constants) and _TEXT (for code).
The string hello, world in C/C++ has type const char*, however it does not have its own name.
The compiler needs to deal with the string somehow so it defines the internal name $SG3830 for it.
So the example may be rewritten as:
4
2.. \86 Cn/l1lk 2. nlll0, w0klu!
#include <stdio.h>
const char *$SG3830="hello, world";
int main()
{
printf($SG3830);
return 0;
};
Lets back tothe assembly listing. As we cansee, the stringis terminatedby azerobyte whichis standardfor C/C++strings.
More about C strings: ..
In the code segment, _TEXT, there is only one function so far: main().
The function main() starts with prologue code and ends with epilogue code (like almost any function)
.
Afer the function prologue we see the call to the printf() function: CALL _printf.
Before the call the string address (or a pointer to it) containing our greeting is placed on the stack with the help of the
PUSH instruction.
When the printf() function returns flow control to the main() function, string address (or pointer to it) is still in stack.
Since we do not need it anymore the stack pointer (the ESP register) needs to be corrected.
ADD ESP, 4 means add to the value in the ESP register.
Why ? Since it is -bit code we need exactly bytes for address passing through the stack. It is bytes in x-code.
ADD ESP, 4 is efectively equivalent to POP register but without using any register
.
Some compilers (like Intel C++ Compiler) in the same situation may emit POP ECX instead of ADD (e.g. such a pattern can
be observed in the Oracle RDBMS code as it is compiled by Intel C++ compiler). This instruction has almost the same efect
but the ECX register contents will be rewritten.
The Intel C++ compiler probably uses POP ECX since this instructions opcode is shorter then ADD ESP, x ( byte against
).
Read more about the stack in section ().
Afer the call to printf(), in the original C/C++ code was return 0 return 0 as the result of the main() function.
In the generated code this is implemented by instruction XOR EAX, EAX
XOR is infact, just eXclusive OR
Read more about it in section about function prolog and epilog ().
http://en.wikipedia.org/wiki/Exclusive_or
Interactive Disassembler
5
2.. \86 Cn/l1lk 2. nlll0, w0klu!
mov eax, 0
leave
retn
main endp
The result is almost the same. The address of the hello, world string (stored in the data segment) is saved in the EAX
register first and then it is stored on the stack. Also in the function prologue we see AND ESP, 0FFFFFFF0h this instruction
aligns the value in the ESP register on a -byte boundary. This results in all values in the stack being aligned. (The CPU
performs better if the values it is dealing with are located in memory at addresses aligned on a - or -byte boundary)
.
SUB ESP, 10h allocates bytes on the stack. Although, as we can see hereafer, only are necessary here.
This is because the size of the allocated stack is also aligned on a -byte boundary.
The string address (or a pointer to the string) is then written directly onto the stack space without using the PUSH instruc-
tion. vcr_0 is a local variable and is also an argument for printf(). Read about it below.
Then the printf() function is called.
Unlike MSVC, when GCC is compiling without optimization turned on, it emits MOV EAX, 0 instead of a shorter opcode.
The last instruction, LEAVE is the equivalent of the MOV ESP, EBP and POP EBP instruction pair in other words, this
instruction sets the stack pointer (ESP) back and restores the EBP register to its initial state.
This is necessary since we modified these register values (ESP and EBP) at the beginning of the function (executing MOV
EBP, ESP / AND ESP, ...).
2.1.8 6CC: A1&1 syntax
Lets see how this can be represented in the AT&T syntax of assembly language. This syntax is much more popular in the
UNIX-world.
Listing .: lets compile in GCC ..
gcc -S 1_1.c
We get this:
Listing .: GCC ..
.file "1_1.c"
.section .rodata
.LC0:
.string "hello, world"
.text
.globl main
.type main, @function
main:
.LFB0:
.cfi_startproc
pushl %ebp
.cfi_def_cfa_offset 8
.cfi_offset 5, -8
movl %esp, %ebp
.cfi_def_cfa_register 5
andl $-16, %esp
subl $16, %esp
movl $.LC0, (%esp)
call printf
movl $0, %eax
leave
.cfi_restore 5
.cfi_def_cfa 4, 4
ret
.cfi_endproc
.LFE0:
.size main, .-main
.ident "GCC: (Ubuntu/Linaro 4.7.3-1ubuntu1) 4.7.3"
.section .note.GNU-stack,"",@progbits
By the way, in some C standard functions (e.g., memcpy(), strcpy()) arguments are listed in the same way as in Intel-syntax: pointer to destination
memory block at the beginning and then pointer to source memory block.
7
2.2. \86-64 Cn/l1lk 2. nlll0, w0klu!
As of x-, all registers were extended to -bit and now have a R- prefix. In order to use the stack less ofen (in other
words, to access external memory less ofen), there exists a popular way to pass function arguments via registers (fastcall:
.). I.e., one part of function arguments are passed in registers, other partvia stack. In Win, function arguments are
passed in RCX, RDX, R8, R9 registers. That is what we see here: a pointer to the string for printf() is nowpassed not in stack,
but in the RCX register.
Pointers are -bit now, so they are passed in the -bit part of registers (which have the R- prefix). But for backward
compatibility, it is still possible to access -bit parts, using the E- prefix.
This is howRAX/EAX/AX/AL looks like in -bit x-compatible CPUs:
th
(byte number)
th th th rd nd st th
RAX
x
EAX
AX
AH AL
The main() function returns an |nt-typed value, which is, in the C PL, for better backward compatibility and portability,
still -bit, so that is why the EAX register is cleared at the function end (i.e., -bit part of register) instead of RAX.
2.2.2 6CCx88-84
Lets also try GCC in -bit Linux:
Listing .: GCC .. x
.string "hello, world"
main:
sub rsp, 8
mov edi, OFFSET FLAT:.LC0 ; "hello, world"
xor eax, eax ; number of vector registers passed
call printf
xor eax, eax
add rsp, 8
ret
A method to pass function arguments in registers is also used in Linux, *BSD and Mac OS X []. The first arguments are
passed in the RDI, RSI, RDX, RCX, R8, R9 registers, and othersvia stack.
So the pointer to the string is passed in EDI (-bit part of register). But why not use the -bit part, RDI?
It is important to keep in mind that all MOV instructions in -bit mode writing something into the lower -bit register
part, also clear the higher -bits []. I.e., the MOV EAX, 011223344h will write a value correctly into RAX, since the higher
bits will be cleared.
If we open the compiled object file (.o), we will also see all instructions opcodes
:
Listing .: GCC .. x
.text:00000000004004D0 main proc near
.text:00000000004004D0 48 83 EC 08 sub rsp, 8
.text:00000000004004D4 BF E8 05 40 00 mov edi, offset format ; "hello, world"
.text:00000000004004D9 31 C0 xor eax, eax
.text:00000000004004DB E8 D8 FE FF FF call _printf
.text:00000000004004E0 31 C0 xor eax, eax
.text:00000000004004E2 48 83 C4 08 add rsp, 8
.text:00000000004004E6 C3 retn
.text:00000000004004E6 main endp
As we can see, the instruction writing into EDI at 0x4004D4 occupies bytes. The same instruction writing a -bit value
into RDI will occupy bytes. Apparently, GCC is trying to save some space. Besides, it can be sure that the data segment
containing the string will not be allocated at the addresses higher than GiB.
We also see EAX register clearance before printf() function call. This is done because a number of used vector registers
is passed in EAX by standard: with variable arguments passes information about the number of vector registers used [].
in iPod/i-
Phone/iPad, Windows and Window RT tables
, but
it is more important for us to see the instructions as is so lets see the compiled result in IDA.
Listing .: Non-optimizing Keil + ARM mode + IDA
.text:00000000 main
.text:00000000 10 40 2D E9 STMFD SP!, {R4,LR}
.text:00000004 1E 0E 8F E2 ADR R0, aHelloWorld ; "hello, world"
.text:00000008 15 19 00 EB BL __2printf
.text:0000000C 00 00 A0 E3 MOV R0, #0
.text:00000010 10 80 BD E8 LDMFD SP!, {R4,PC}
.text:000001EC 68 65 6C 6C+aHelloWorld DCB "hello, world",0 ; DATA XREF: main+4
Here are a couple of ARM-related facts that we should knowin order to proceed. An ARMprocessor has at least two major
modes: ARM mode and thumb mode. In the first (ARM) mode, all instructions are enabled and each is bits ( bytes) in
size. In the second (thumb) mode each instruction is bits ( bytes) in size
. Thumb mode may look attractive because
programs that use it may ) be compact and ) execute faster on microcontrollers having a -bit memory datapath. Nothing
comes for free. Inthumbmode, there is areducedinstructionset, only registers are accessible andone needs several thumb
instructions for doing some operations when you only need one in ARM mode.
Starting fromARMv the thumb- instruction set is also available. This is an extended thumb mode that supports a much
larger instruction set. There is a common misconception that thumb- is a mix of ARMand thumb. This is not correct. Rather,
thumb- was extended to fully support processor features so it could compete with ARM mode. A program for the ARM pro-
cessor may be a mix of procedures compiled for both modes. The majority of iPod/iPhone/iPad applications are compiled
for the thumb- instruction set because Xcode does this by default.
In the example we can easily see each instruction has a size of bytes. Indeed, we compiled our code for ARMmode, not
for thumb.
The very first instruction, STMFD SP!, {R4,LR}
) into the stack. Indeed, in the output listing from the crmcc compiler, for the sake of simplification, actually
shows the PUSH {r4,lr} instruction. But it is not quite correct. The PUSH instruction is only available in thumb mode. So,
to make things less messy, that is why I suggested working in IDA.
This instruction first decrements SP
so it will point to the place in the stack that is free for newentries, then it writes the
values of the R4 and LR registers at the address in changed SP.
This instruction (like the PUSH instruction in thumb mode) is able to save several register values at once and this may be
useful. By the way, there is no such thing in x. It can also be noted that the STMFD instruction is a generalization of the PUSH
instruction (extending its features), since it can work with any register, not just with SP, and this can be very useful.
The ADR R0, aHelloWorld instruction adds the value in the PC
System on Chip
http://en.wikipedia.org/wiki/List_of_Windows_8_and_RT_tablet_devices
By the way, fixed-length instructions are handy in a way that one can calculate the next (or previous) instructions address without efort. This feature
will be discussed in switch() (..) section.
Link Register
instruction calls the printf() function. Heres how this instruction works:
write the address following the BL instruction (0xC) into the LR;
then pass control flow into printf() by writing its address into the PC register.
When printf() finishes its work it must have information about where it must return control. Thats why each function
passes control to the address stored in the LR register.
That is thediferencebetweenpure RISC
-processors likeARMandCISC
.
By the way, an absolute -bit address or ofset cannot be encoded in the -bit BL instruction because it only has space
for bits. It is also worth noting all ARM-mode instructions have a size of bytes ( bits). Hence they can only be located
on -byte boundary addresses. This means the the last bits of the instruction address (which are always zero bits) may be
omitted. In summary, we have bits for ofset encoding. This is enough to represent ofset 32M.
Next, the MOV R0, #0
instruction just writes 0 into the R0 register. Thats because our C-function returns 0 and the
return value is to be placed in the R0 register.
The last instruction LDMFD SP!, R4,PC
MOVe
It should also be noted the puts() does not require a \n new line symbol at the end of a string, so we do not see it here.
http://www.ciselant.de/projects/gcc_printf/gcc_printf.html
11
2.3. /kM Cn/l1lk 2. nlll0, w0klu!
are swapped (for thumb and thumb- modes). For instructions in ARMmode, the order is the fourth byte, then the third, then
the second and finally the first (due to diferent endianness). So as we can see, the MOVW, MOVT.W and BLX instructions begin
with 0xFx.
One of the thumb- instructions is MOVW R0, #0x13D8 it writes a -bit value into the lower part of the R0 register.
Also, MOVT.W R0, #0 works just like MOVT from the previous example but it works in thumb-.
Among other diferences, here the BLX instruction is used instead of BL. The diference is that, besides saving the RA
in the LR register and passing control to the puts() function, the processor is also switching from thumb mode to ARM (or
back). This instruction is placed here since the instruction to which control is passed looks like (it is encoded in ARM mode):
__symbolstub1:00003FEC _puts ; CODE XREF: _hello_world+E
__symbolstub1:00003FEC 44 F0 9F E5 LDR PC, =__imp__puts
So, the observant reader may ask: why not call puts() right at the point in the code where it is needed?
Because it is not very space-eficient.
Almost any program uses external dynamic libraries (like DLL in Windows, .so in *NIX or .dylib in Mac OS X). Ofen-used
library functions are stored in dynamic libraries, including the standard C-function puts().
In an executable binary file (Windows PE .exe, ELF or Mach-O) an import section is present. This is a list of symbols (func-
tions or global variables) being imported from external modules along with the names of these modules.
The OS loader loads all modules it needs and, while enumerating import symbols in the primary module, determines the
correct addresses of each symbol.
Inour case, __|m__ots is a-bit variablewheretheOSloader will writethecorrect address of thefunctioninanexternal
library. Thenthe LDR instructionjust takes the -bit value fromthis variable andwrites it intothe PCregister, passing control
to it.
So, in order to reduce the time that an OS loader needs for doing this procedure, it is good idea for it to write the address
of each symbol only once to a specially-allocated place just for it.
Besides, as we have already figured out, it is impossible to load a -bit value into a register while using only one instruc-
tion without a memory access. So, it is optimal to allocate a separate function working in ARM mode with only one goal to
pass control to the dynamic library and then to jump to this short one-instruction function (the so-called thunk function)
from thumb-code.
By the way, inthe previous example (compiledfor ARMmode) control passedby the BLinstructiongoes tothe same thunk
function. However the processor mode is not switched (hence the absence of an X in the instruction mnemonic).
Return Address
12
Cn/l1lk 3. lunC1l0n lk0l0oul /nu llll0oul
Cbapter 8
functicn prclcue and epilcue
A function prologue is a sequence of instructions at the start of a function. It ofen looks something like the following code
fragment:
push ebp
mov ebp, esp
sub esp, X
What these instruction do: saves the value in the EBP register, sets the value of the EBP register to the value of the ESP
and then allocates space on the stack for local variables.
The value in the EBP is fixed over a period of function execution and it is to be used for local variables and arguments
access. One can use ESP, but it is changing over time and it is not convenient.
The function epilogue frees allocated space in the stack, returns the value in the EBP register back to initial state and
returns the control flow to callee:
mov esp, ebp
pop ebp
ret 0
Function prologues and epilogues are usually detected in disassemblers for function delimitation from each other.
8.1 Recursicn
Epilogues and prologues can make recursion performance worse.
For example, once upon a time I wrote a function to seek the correct node in a binary tree. As a recursive function it would
look stylish but since additional time is to be spend at each function call for the prologue/epilogue, it was working a couple
of times slower than an iterative (recursion-free) implementation.
By the way, that is the reason compilers use tail call.
13
Cn/l1lk 4. S1/CA
Cbapter 4
5tack
A stack is one of the most fundamental data structures in computer science
.
Technically, it is just a block of memory in process memory along with the ESP or RSP register in x or x, or the SP
register in ARM, as a pointer within the block.
The most frequently usedstack access instructions are PUSH andPOP (inbothx andARMthumb-mode). PUSH subtracts
4in-bit mode(or 8in-bit mode) fromESP/RSP/SPandthenwrites thecontents of its soleoperandtothememoryaddress
pointed to by ESP/RSP/SP.
POP is the reverse operation: get the data frommemory pointed to by SP, put it in the operand (ofen a register) and then
add 4 (or 8) to the stack pointer.
Afer stack allocation the stack pointer points to the end of stack. PUSH decreases the stack pointer and POP increases it.
The end of the stack is actually at the beginning of the memory allocated for the stack block. It seems strange, but thats the
way it is.
Nevertheless ARM not only has instructions supporting descending stacks but also ascending stacks.
For example the STMFD
/LDMFD
, STMED
/LDMED
/LMDFA
, STMEA
/LDMEA
http://en.wikipedia.org/wiki/Call_stack
:
?f@@YAXXZ PROC ; f
; File c:\tmp6\ss.cpp
; Line 2
$LL3@f:
; Line 3
jmp SHORT $LL3@f
?f@@YAXXZ ENDP ; f
GCC .. generates similar code in both cases, although without issuing any warning about the problem.
irony here
15
4.2. wn/1 lS 1nl S1/CA uSlu l0k? Cn/l1lk 4. S1/CA
ARH
ARM programs also use the stack for saving return addresses, but diferently. As mentioned in Hello, world! (.), the RA
is saved to the LR (link register). However, if one needs to call another function and use the LR register one more time its
value should be saved. Usually it is saved in the function prologue. Ofen, we see instructions like PUSH R4-R7,LR along
with this instruction in epilogue POP R4-R7,PC thus register values to be used in the function are saved in the stack,
including LR.
Nevertheless, if a function never calls any other function, in ARM terminology it is called a lecf fonct|on
. As a conse-
quence, leaf functions do not use the LR register. If this function is small and uses a small number of registers, it may not
use the stack at all. Thus, it is possible to call leaf functions without using the stack. This can be faster than on x because
external RAM is not used for the stack
. It can be useful for such situations when memory for the stack is not yet allocated
or not available.
4.2.2 assin functicn aruments
The most popular way to pass parameters in x is called cdecl:
push arg3
push arg2
push arg1
call f
add esp, 4*3
Callee functions get their arguments via the stack pointer.
Consequently, this is howvalues will be locatedinthe stack before executionof the very first instructionof the f() function:
ESP return address
ESP+ argument#, marked in IDA as arg_0
ESP+ argument#, marked in IDA as arg_4
ESP+xC argument#, marked in IDA as arg_8
. . . . . .
See also the section about other calling conventions (). It is worth noting that nothing obliges programmers to pass
arguments through the stack. It is not a requirement. One could implement any other method without using the stack at all.
For example, it is possible to allocate a space for arguments in the heap, fill it and pass it to a function via a pointer to this
block in the EAX register. This will work.
. However, it is a convenient custom in x and ARM to use the stack for this.
By the way, the callee function does not have any information about how many arguments were passed. Functions with a
variable number of arguments (like printf()) determine the number by specifiers (which begin with a %sign) in the format
string. If we write something like
printf("%d %d %d", 1234);
printf() will dump , and then also two random numbers, which were laying near it in the stack, by chance.
Thats why it is not very important how we declare the main() function: as main(), main(int argc, char *argv[]) or
main(int argc, char *argv[], char *envp[]).
In fact, CRT-code is calling main() roughly as:
push envp
push argv
push argc
call main
...
If you declare main() as main() without arguments, they are, nevertheless, still present in the stack, but not used. If you
declare main() as main(int argc, char *argv[]), you will use two arguments, and third will remain invisible for your
function. Even more than that, it is possible to declare main(int argc), and it will work.
http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.faqs/ka13785.html
Some time ago, on PDP- and VAX, the CALL instruction (calling other functions) was expensive; up to %of execution time might be spent on it, so it
was common sense that big number of small function is anti-pattern [, Chapter , Part II].
For example, in the The Art of Computer Programming book by Donald Knuth, in section .. dedicated to subroutines [, section ..], we can read
about one way to supply arguments to a subroutine is simply to list them afer the JMP instruction passing control to subroutine. Knuth writes this method
was particularly convenient on System/.
16
4.2. wn/1 lS 1nl S1/CA uSlu l0k? Cn/l1lk 4. S1/CA
4.2.8 Lccal variable stcrae
A function could allocate space in the stack for its local variables just by shifing the stack pointer towards the stack bottom.
It is also not a requirement. You could store local variables wherever you like, but traditionally this is how its done.
4.2.4 x88: allcca() functicn
It is worth noting the alloca() function.
.
This function works like malloc() but allocates memory just on the stack.
The allocated memory chunk does not need to be freed via a free() function call since the function epilogue () will
return ESP back to its initial state and the allocated memory will be just annulled.
It is worth noting howalloca() is implemented.
In simple terms, this function just shifs ESP downwards toward the stack bottom by the number of bytes you need and
sets ESP as a pointer to the clloccteJ block. Lets try:
#ifdef __GNUC__
#include <alloca.h> // GCC
#else
#include <malloc.h> // MSVC
#endif
#include <stdio.h>
void f()
{
char *buf=(char*)alloca (600);
#ifdef __GNUC__
snprintf (buf, 600, "hi! %d, %d, %d\n", 1, 2, 3); // GCC
#else
_snprintf (buf, 600, "hi! %d, %d, %d\n", 1, 2, 3); // MSVC
#endif
puts (buf);
};
(_snprintf() function works just like printf(), but instead of dumping the result into stdout (e.g., to terminal or con-
sole), it writes to the buf bufer. puts() copies buf contents to stdout. Of course, these two function calls might be replaced
by one printf() call, but I would like to illustrate small bufer usage.)
H5vC
Lets compile (MSVC ):
Listing .: MSVC
...
mov eax, 600 ; 00000258H
call __alloca_probe_16
mov esi, esp
push 3
push 2
push 1
push OFFSET $SG2672
push 600 ; 00000258H
push esi
call __snprintf
push esi
call _puts
add esp, 28 ; 0000001cH
In MSVC, the function implementation can be found in alloca16.asm and chkstk.asm in C:\Program Files (x86)\Microsoft Visual Studio
10.0\VC\crt\src\intel
17
4.2. wn/1 lS 1nl S1/CA uSlu l0k? Cn/l1lk 4. S1/CA
...
The sole alloca() argument is passed via EAX (instead of pushing into stack)
. Afer the alloca() call, ESP points to
the block of bytes and we can use it as memory for the buf array.
6CC + lntel syntax
GCC .. can do the same without calling external functions:
Listing .: GCC ..
.LC0:
.string "hi! %d, %d, %d\n"
f:
push ebp
mov ebp, esp
push ebx
sub esp, 660
lea ebx, [esp+39]
and ebx, -16 ; align pointer by 16-bit border
mov DWORD PTR [esp], ebx ; s
mov DWORD PTR [esp+20], 3
mov DWORD PTR [esp+16], 2
mov DWORD PTR [esp+12], 1
mov DWORD PTR [esp+8], OFFSET FLAT:.LC0 ; "hi! %d, %d, %d\n"
mov DWORD PTR [esp+4], 600 ; maxlen
call _snprintf
mov DWORD PTR [esp], ebx ; s
call puts
mov ebx, DWORD PTR [ebp-4]
leave
ret
6CC + A1&1 syntax
Lets see the same code, but in AT&T syntax:
Listing .: GCC ..
.LC0:
.string "hi! %d, %d, %d\n"
f:
pushl %ebp
movl %esp, %ebp
pushl %ebx
subl $660, %esp
leal 39(%esp), %ebx
andl $-16, %ebx
movl %ebx, (%esp)
movl $3, 20(%esp)
movl $2, 16(%esp)
movl $1, 12(%esp)
movl $.LC0, 8(%esp)
movl $600, 4(%esp)
call _snprintf
movl %ebx, (%esp)
call puts
movl -4(%ebp), %ebx
leave
region.
18
4.3. 1\llC/l S1/CA l/\0u1 Cn/l1lk 4. S1/CA
ret
The code is the same as in the previous listing.
N.B. E.g. movl $3, 20(%esp) is analogous to mov DWORD PTR [esp+20], 3 in Intel-syntax when addressing mem-
ory in form re|ster+ofset, it is written in AT&T syntax as offset(%register).
4.2.$ (windcws) 5R
SEH
in Linux.
-g mean produce debug information into executable file.
$ gcc 1.c -g -o 1
$ gdb 1
GNU gdb (GDB) 7.6.1-ubuntu
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "i686-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /home/dennis/polygon/1...done.
Listing .: lets set breakpoint on printf()
(gdb) b printf
Breakpoint 1 at 0x80482f0
Run. There are no printf() function source code here, so GDB cant show its source, but may do so.
(gdb) run
Starting program: /home/dennis/polygon/1
Breakpoint 1, __printf (format=0x80484f0 "a=%d; b=%d; c=%d") at printf.c:29
29 printf.c: No such file or directory.
Print stack elements. Lef column is an address in stack.
(gdb) x/10w $esp
0xbffff11c: 0x0804844a 0x080484f0 0x00000001 0x00000002
0xbffff12c: 0x00000003 0x08048460 0x00000000 0x00000000
0xbffff13c: 0xb7e29905 0x00000001
The very first element is RA (0x0804844a). We can be sure in it by disassembling the memory at this address:
(gdb) x/5i 0x0804844a
0x804844a <main+45>: mov $0x0,%eax
0x804844f <main+50>: leave
0x8048450 <main+51>: ret
0x8048451: xchg %ax,%ax
0x8048453: xchg %ax,%ax
Two XCHG instructions, apparently, is some random garbage, which we can ignore so far.
The second element (0x080484f0) is an address of format string:
(gdb) x/s 0x080484f0
0x80484f0: "a=%d; b=%d; c=%d"
Other elements (, , ) are printf() arguments. Other elements may be just garbage present in stack, but also may
be values from other functions, their local variables, etc. We can ignore it yet.
Execute finish. This mean, execute till function end. Here it means: execute till the finish of printf().
(gdb) finish
Run till exit from #0 __printf (format=0x80484f0 "a=%d; b=%d; c=%d") at printf.c:29
main () at 1.c:6
6 return 0;
Value returned is $2 = 13
GNU debugger
25
5.. \86. 3 /kouMln1S Cn/l1lk 5. PRINTF() wl1n Slvlk/l /kouMln1S
GDB shows what printf() returned in EAX (). This is number of characters printed, just like in the example with Olly-
Dbg.
We alsosee return; andthe informationthat this expressionis inthe 1.cfile at the line . Indeed, the 1.cfile is located
in the current directory, and GDB finds the string there. How GDB knows, which C-code line is being executed now? This is
related to the fact that compiler, while generating debugging information, also saves a table of relations between source
code line numbers and instruction addresses. GDB is source-level debugger, afer all.
Lets examine registers. in EAX:
(gdb) info registers
eax 0xd 13
ecx 0x0 0
edx 0x0 0
ebx 0xb7fc0000 -1208221696
esp 0xbffff120 0xbffff120
ebp 0xbffff138 0xbffff138
esi 0x0 0
edi 0x0 0
eip 0x804844a 0x804844a <main+45>
...
Lets disassemble current instructions. Arrow points to the instruction being executed next.
(gdb) disas
Dump of assembler code for function main:
0x0804841d <+0>: push %ebp
0x0804841e <+1>: mov %esp,%ebp
0x08048420 <+3>: and $0xfffffff0,%esp
0x08048423 <+6>: sub $0x10,%esp
0x08048426 <+9>: movl $0x3,0xc(%esp)
0x0804842e <+17>: movl $0x2,0x8(%esp)
0x08048436 <+25>: movl $0x1,0x4(%esp)
0x0804843e <+33>: movl $0x80484f0,(%esp)
0x08048445 <+40>: call 0x80482f0 <printf@plt>
=> 0x0804844a <+45>: mov $0x0,%eax
0x0804844f <+50>: leave
0x08048450 <+51>: ret
End of assembler dump.
GDB shows disassembly in AT&T syntax by default. Its possible to switch to Intel syntax:
(gdb) set disassembly-flavor intel
(gdb) disas
Dump of assembler code for function main:
0x0804841d <+0>: push ebp
0x0804841e <+1>: mov ebp,esp
0x08048420 <+3>: and esp,0xfffffff0
0x08048423 <+6>: sub esp,0x10
0x08048426 <+9>: mov DWORD PTR [esp+0xc],0x3
0x0804842e <+17>: mov DWORD PTR [esp+0x8],0x2
0x08048436 <+25>: mov DWORD PTR [esp+0x4],0x1
0x0804843e <+33>: mov DWORD PTR [esp],0x80484f0
0x08048445 <+40>: call 0x80482f0 <printf@plt>
=> 0x0804844a <+45>: mov eax,0x0
0x0804844f <+50>: leave
0x08048450 <+51>: ret
End of assembler dump.
Execute next instruction. GDB shows ending bracket, meaning, this is ending block of function.
(gdb) step
7 };
Lets see registers afer MOV EAX, 0 instruction execution. EAX here is zero indeed.
26
5.2. \64. 8 /kouMln1S Cn/l1lk 5. PRINTF() wl1n Slvlk/l /kouMln1S
(gdb) info registers
eax 0x0 0
ecx 0x0 0
edx 0x0 0
ebx 0xb7fc0000 -1208221696
esp 0xbffff120 0xbffff120
ebp 0xbffff138 0xbffff138
esi 0x0 0
edi 0x0 0
eip 0x804844f 0x804844f <main+50>
...
$.2 x84: 8 aruments
To see how other arguments will be passed via the stack, lets change our example again by increasing the number of argu-
ments to be passed to (printf() format string + |nt variables):
#include <stdio.h>
int main()
{
printf("a=%d; b=%d; c=%d; d=%d; e=%d; f=%d; g=%d; h=%d\n", 1, 2, 3, 4, 5, 6, 7, 8);
return 0;
};
$.2.1 H5vC
As we sawbefore, the first arguments are passed in the RCX, RDX, R8, R9 registers in Win, while all the restvia the stack.
That is what we see here. However, the MOV instruction, instead of PUSH, is used for preparing the stack, so the values are
written to the stack in a straightforward manner.
Listing .: MSVC x
$SG2923 DB a=%d; b=%d; c=%d; d=%d; e=%d; f=%d; g=%d; h=%d, 0aH, 00H
main PROC
sub rsp, 88
mov DWORD PTR [rsp+64], 8
mov DWORD PTR [rsp+56], 7
mov DWORD PTR [rsp+48], 6
mov DWORD PTR [rsp+40], 5
mov DWORD PTR [rsp+32], 4
mov r9d, 3
mov r8d, 2
mov edx, 1
lea rcx, OFFSET FLAT:$SG2923
call printf
; return 0
xor eax, eax
add rsp, 88
ret 0
main ENDP
_TEXT ENDS
END
27
5.2. \64. 8 /kouMln1S Cn/l1lk 5. PRINTF() wl1n Slvlk/l /kouMln1S
$.2.2 6CC
In *NIX OS-es, its the same story for x-, except that the first arguments are passed in the RDI, RSI, RDX, RCX, R8, R9
registers. All the restvia the stack. GCC generates the code writing string pointer into EDI instead if RDIwe sawthis thing
before: ...
We also saw before the EAX register being cleared before a printf() call: ...
Listing .: GCC .. -O x
.LC0:
.string "a=%d; b=%d; c=%d; d=%d; e=%d; f=%d; g=%d; h=%d\n"
main:
sub rsp, 40
mov r9d, 5
mov r8d, 4
mov ecx, 3
mov edx, 2
mov esi, 1
mov edi, OFFSET FLAT:.LC0
xor eax, eax ; number of vector registers passed
mov DWORD PTR [rsp+16], 8
mov DWORD PTR [rsp+8], 7
mov DWORD PTR [rsp], 6
call printf
; return 0
xor eax, eax
add rsp, 40
ret
$.2.8 6CC + 6b8
Lets try this example in GDB.
$ gcc -g 2.c -o 2
$ gdb 2
GNU gdb (GDB) 7.6.1-ubuntu
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /home/dennis/polygon/2...done.
Listing .: lets set breakpoint to printf(), and run
(gdb) b printf
Breakpoint 1 at 0x400410
(gdb) run
Starting program: /home/dennis/polygon/2
Breakpoint 1, __printf (format=0x400628 "a=%d; b=%d; c=%d; d=%d; e=%d; f=%d; g=%d; h=%d\n") at
printf.c:29
29 printf.c: No such file or directory.
28
5.2. \64. 8 /kouMln1S Cn/l1lk 5. PRINTF() wl1n Slvlk/l /kouMln1S
Registers RSI/RDX/RCX/R8/R9 has the values which are should be there. RIP has an address of the very first instruction of
the printf() function.
(gdb) info registers
rax 0x0 0
rbx 0x0 0
rcx 0x3 3
rdx 0x2 2
rsi 0x1 1
rdi 0x400628 4195880
rbp 0x7fffffffdf60 0x7fffffffdf60
rsp 0x7fffffffdf38 0x7fffffffdf38
r8 0x4 4
r9 0x5 5
r10 0x7fffffffdce0 140737488346336
r11 0x7ffff7a65f60 140737348263776
r12 0x400440 4195392
r13 0x7fffffffe040 140737488347200
r14 0x0 0
r15 0x0 0
rip 0x7ffff7a65f60 0x7ffff7a65f60 <__printf>
...
Listing .: lets inspect format string
(gdb) x/s $rdi
0x400628: "a=%d; b=%d; c=%d; d=%d; e=%d; f=%d; g=%d; h=%d\n"
Lets dump stack with x/g command this timeg means |cnt worJs, i.e., -bit words.
(gdb) x/10g $rsp
0x7fffffffdf38: 0x0000000000400576 0x0000000000000006
0x7fffffffdf48: 0x0000000000000007 0x00007fff00000008
0x7fffffffdf58: 0x0000000000000000 0x0000000000000000
0x7fffffffdf68: 0x00007ffff7a33de5 0x0000000000000000
0x7fffffffdf78: 0x00007fffffffe048 0x0000000100000000
The very first stack element, just like in previous case, is RA. values are also passed in stack: , , . We also see that
is passed with high -bits not cleared: 0x00007fff00000008. Thats OK, because, values has |nt type, which is -bit type.
So, high register or stack element part may contain random garbage.
If to take a look, where control flow will return afer printf() execution, GDB will show the whole main() function:
(gdb) set disassembly-flavor intel
(gdb) disas 0x0000000000400576
Dump of assembler code for function main:
0x000000000040052d <+0>: push rbp
0x000000000040052e <+1>: mov rbp,rsp
0x0000000000400531 <+4>: sub rsp,0x20
0x0000000000400535 <+8>: mov DWORD PTR [rsp+0x10],0x8
0x000000000040053d <+16>: mov DWORD PTR [rsp+0x8],0x7
0x0000000000400545 <+24>: mov DWORD PTR [rsp],0x6
0x000000000040054c <+31>: mov r9d,0x5
0x0000000000400552 <+37>: mov r8d,0x4
0x0000000000400558 <+43>: mov ecx,0x3
0x000000000040055d <+48>: mov edx,0x2
0x0000000000400562 <+53>: mov esi,0x1
0x0000000000400567 <+58>: mov edi,0x400628
0x000000000040056c <+63>: mov eax,0x0
0x0000000000400571 <+68>: call 0x400410 <printf@plt>
0x0000000000400576 <+73>: mov eax,0x0
0x000000000040057b <+78>: leave
0x000000000040057c <+79>: ret
End of assembler dump.
29
5.3. /kM. 3 /kouMln1S Cn/l1lk 5. PRINTF() wl1n Slvlk/l /kouMln1S
Lets finish printf() execution, execute the instruction zeroing EAX, take a notice that EAX register has exactly zero. RIP
now points to the LEAVE instruction, i.e., penultimate in main() function.
(gdb) finish
Run till exit from #0 __printf (format=0x400628 "a=%d; b=%d; c=%d; d=%d; e=%d; f=%d; g=%d; h=%
d\n") at printf.c:29
a=1; b=2; c=3; d=4; e=5; f=6; g=7; h=8
main () at 2.c:6
6 return 0;
Value returned is $1 = 39
(gdb) next
7 };
(gdb) info registers
rax 0x0 0
rbx 0x0 0
rcx 0x26 38
rdx 0x7ffff7dd59f0 140737351866864
rsi 0x7fffffd9 2147483609
rdi 0x0 0
rbp 0x7fffffffdf60 0x7fffffffdf60
rsp 0x7fffffffdf40 0x7fffffffdf40
r8 0x7ffff7dd26a0 140737351853728
r9 0x7ffff7a60134 140737348239668
r10 0x7fffffffd5b0 140737488344496
r11 0x7ffff7a95900 140737348458752
r12 0x400440 4195392
r13 0x7fffffffe040 140737488347200
r14 0x0 0
r15 0x0 0
rip 0x40057b 0x40057b <main+78>
...
$.8 ARH: 8 aruments
Traditionally, ARMs scheme for passing arguments (calling convention) is as follows: the first arguments are passed in the
R0-R3 registers; the remaining arguments, via the stack. This resembles the arguments passing scheme in fastcall (.) or
win (..).
$.8.1 Ncn-cptimizin Keil + ARHmcde
Listing .: Non-optimizing Keil + ARM mode
.text:00000014 printf_main1
.text:00000014 10 40 2D E9 STMFD SP!, {R4,LR}
.text:00000018 03 30 A0 E3 MOV R3, #3
.text:0000001C 02 20 A0 E3 MOV R2, #2
.text:00000020 01 10 A0 E3 MOV R1, #1
.text:00000024 1D 0E 8F E2 ADR R0, aADBDCD ; "a=%d; b=%d; c=%d\n"
.text:00000028 0D 19 00 EB BL __2printf
.text:0000002C 10 80 BD E8 LDMFD SP!, {R4,PC}
So, the first arguments are passed via the R0-R3 registers in this order: a pointer to the printf() format string in R0,
then 1 in R1, 2 in R2 and 3 in R3.
There is nothing unusual so far.
$.8.2 optimizin Keil + ARHmcde
Listing .: Optimizing Keil + ARM mode
.text:00000014 EXPORT printf_main1
30
5.4. /kM. 8 /kouMln1S Cn/l1lk 5. PRINTF() wl1n Slvlk/l /kouMln1S
.text:00000014 printf_main1
.text:00000014 03 30 A0 E3 MOV R3, #3
.text:00000018 02 20 A0 E3 MOV R2, #2
.text:0000001C 01 10 A0 E3 MOV R1, #1
.text:00000020 1E 0E 8F E2 ADR R0, aADBDCD ; "a=%d; b=%d; c=%d\n"
.text:00000024 CB 18 00 EA B __2printf
This is optimized (-O3) version for ARMmode and here we see B as the last instruction instead of the familiar BL. Another
diference between this optimized version and the previous one (compiled without optimization) is also in the fact that there
is no function prologue and epilogue (instructions that save R0 and LR registers values). The B instruction just jumps to
another address, without any manipulationof the LRregister, that is, it is analogous toJMPinx. Why does it work? Because
this code is, in fact, efectively equivalent to the previous. There are two main reasons: ) neither the stack nor SP, the stack
pointer, is modified; ) the call to printf() is the last instruction, so there is nothing going on afer it. Afer finishing, the
printf() function will just return control to the address stored in LR. But the address of the point from where our function
was called is now in LR! Consequently, control from printf() will be returned to that point. As a consequence, we do not
needtosave LRsince we donot needtomodify LR. We donot needtomodify LRsince there are noother functioncalls except
printf(). Furthermore, afer this call we do not to do anything! Thats why this optimization is possible.
Another similar example was described in switch()/case/default section, here (..).
$.8.8 optimizin Keil + tbumb mcde
Listing .: Optimizing Keil + thumb mode
.text:0000000C printf_main1
.text:0000000C 10 B5 PUSH {R4,LR}
.text:0000000E 03 23 MOVS R3, #3
.text:00000010 02 22 MOVS R2, #2
.text:00000012 01 21 MOVS R1, #1
.text:00000014 A4 A0 ADR R0, aADBDCD ; "a=%d; b=%d; c=%d\n"
.text:00000016 06 F0 EB F8 BL __2printf
.text:0000001A 10 BD POP {R4,PC}
There is no significant diference from the non-optimized code for ARM mode.
$.4 ARH: 8 aruments
Lets use again the example with arguments from the previous section: ..
void printf_main2()
{
printf("a=%d; b=%d; c=%d; d=%d; e=%d; f=%d; g=%d; h=%d\n",
1, 2, 3, 4, 5, 6, 7, 8);
};
$.4.1 optimizin Keil: ARHmcde
.text:00000028 printf_main2
.text:00000028
.text:00000028 var_18 = -0x18
.text:00000028 var_14 = -0x14
.text:00000028 var_4 = -4
.text:00000028
.text:00000028 04 E0 2D E5 STR LR, [SP,#var_4]!
.text:0000002C 14 D0 4D E2 SUB SP, SP, #0x14
.text:00000030 08 30 A0 E3 MOV R3, #8
.text:00000034 07 20 A0 E3 MOV R2, #7
.text:00000038 06 10 A0 E3 MOV R1, #6
.text:0000003C 05 00 A0 E3 MOV R0, #5
.text:00000040 04 C0 8D E2 ADD R12, SP, #0x18+var_14
.text:00000044 0F 00 8C E8 STMIA R12, {R0-R3}
31
5.4. /kM. 8 /kouMln1S Cn/l1lk 5. PRINTF() wl1n Slvlk/l /kouMln1S
.text:00000048 04 00 A0 E3 MOV R0, #4
.text:0000004C 00 00 8D E5 STR R0, [SP,#0x18+var_18]
.text:00000050 03 30 A0 E3 MOV R3, #3
.text:00000054 02 20 A0 E3 MOV R2, #2
.text:00000058 01 10 A0 E3 MOV R1, #1
.text:0000005C 6E 0F 8F E2 ADR R0, aADBDCDDDEDFDGD ; "a=%d; b=%d; c=%d; d=%d; e=%d; f=%d; g
=%"...
.text:00000060 BC 18 00 EB BL __2printf
.text:00000064 14 D0 8D E2 ADD SP, SP, #0x14
.text:00000068 04 F0 9D E4 LDR PC, [SP+4+var_4],#4
This code can be divided into several parts:
Function prologue:
The very first STR LR, [SP,#var_4]! instruction saves LR on the stack, because we will use this register for the
printf() call.
The second SUB SP, SP, #0x14 instruction decreases SP, the stack pointer, in order to allocate 0x14 (20) bytes
on the stack. Indeed, we need to pass -bit values via the stack to the printf() function, and each one occupies
bytes, that is 5 4 = 20 exactly. The other -bit values will be passed in registers.
Passing , , and via stack:
Then, the values , , and are written to the R0, R1, R2 and R3 registers respectively. Then, the ADD R12, SP,
#0x18+var_14 instruction writes an address of the point in the stack, where these variables will be written, into the
R12 register. vcr_4 is an assembly macro, equal to 0x14, such macros are created by IDA to succinctly denote code
accessing the stack. vcr_? macros created by IDA reflecting local variables in the stack. So, SP + 4 will be written into
the R12 register. The next STMIA R12, R0-R3 instruction writes R0-R3 registers contents at the point in memory to
which R12 pointing. STMIA instruction meaning Store Molt|le lncrement /her. lncrement /her means that R12 will be
increased by 4 afer each register value is written.
Passing 4 via stack: 4 is storedinR0andthen, this value, withthe helpof STR R0, [SP,#0x18+var_18] instruction,
is saved on the stack. vcr_8 is 0x18, ofset will be 0, so, the value from the R0 register (4) will be written to the point
where SP is pointing to.
Passing , and via registers:
Values of the first numbers (a, b, c) (, , respectively) are passed in the R1, R2 and R3 registers right before the
printf() call, and the other values are passed via the stack:
printf() call:
Function epilogue:
The ADD SP, SP, #0x14 instruction returns the SP pointer back to its former point, thus cleaning the stack. Of
course, what was written on the stack will stay there, but it all will be rewritten during the execution of subsequent
functions.
The LDR PC, [SP+4+var_4],#4 instruction loads the saved LR value fromthe stack into the PC register, thus caus-
ing the function to exit.
$.4.2 optimizin Keil: tbumb mcde
.text:0000001C printf_main2
.text:0000001C
.text:0000001C var_18 = -0x18
.text:0000001C var_14 = -0x14
.text:0000001C var_8 = -8
.text:0000001C
.text:0000001C 00 B5 PUSH {LR}
.text:0000001E 08 23 MOVS R3, #8
.text:00000020 85 B0 SUB SP, SP, #0x14
.text:00000022 04 93 STR R3, [SP,#0x18+var_8]
.text:00000024 07 22 MOVS R2, #7
.text:00000026 06 21 MOVS R1, #6
.text:00000028 05 20 MOVS R0, #5
32
5.4. /kM. 8 /kouMln1S Cn/l1lk 5. PRINTF() wl1n Slvlk/l /kouMln1S
.text:0000002A 01 AB ADD R3, SP, #0x18+var_14
.text:0000002C 07 C3 STMIA R3!, {R0-R2}
.text:0000002E 04 20 MOVS R0, #4
.text:00000030 00 90 STR R0, [SP,#0x18+var_18]
.text:00000032 03 23 MOVS R3, #3
.text:00000034 02 22 MOVS R2, #2
.text:00000036 01 21 MOVS R1, #1
.text:00000038 A0 A0 ADR R0, aADBDCDDDEDFDGD ; "a=%d; b=%d; c=%d; d=%d; e=%d; f=%d;
g=%"...
.text:0000003A 06 F0 D9 F8 BL __2printf
.text:0000003E
.text:0000003E loc_3E ; CODE XREF: example13_f+16
.text:0000003E 05 B0 ADD SP, SP, #0x14
.text:00000040 00 BD POP {PC}
Almost same as in previous example, however, this is thumb code and values are packed into stack diferently: 8 for the
first time, then 5, 6, 7 for the second and 4 for the third.
$.4.8 optimizin kccde (LLvH): ARHmcde
__text:0000290C _printf_main2
__text:0000290C
__text:0000290C var_1C = -0x1C
__text:0000290C var_C = -0xC
__text:0000290C
__text:0000290C 80 40 2D E9 STMFD SP!, {R7,LR}
__text:00002910 0D 70 A0 E1 MOV R7, SP
__text:00002914 14 D0 4D E2 SUB SP, SP, #0x14
__text:00002918 70 05 01 E3 MOV R0, #0x1570
__text:0000291C 07 C0 A0 E3 MOV R12, #7
__text:00002920 00 00 40 E3 MOVT R0, #0
__text:00002924 04 20 A0 E3 MOV R2, #4
__text:00002928 00 00 8F E0 ADD R0, PC, R0
__text:0000292C 06 30 A0 E3 MOV R3, #6
__text:00002930 05 10 A0 E3 MOV R1, #5
__text:00002934 00 20 8D E5 STR R2, [SP,#0x1C+var_1C]
__text:00002938 0A 10 8D E9 STMFA SP, {R1,R3,R12}
__text:0000293C 08 90 A0 E3 MOV R9, #8
__text:00002940 01 10 A0 E3 MOV R1, #1
__text:00002944 02 20 A0 E3 MOV R2, #2
__text:00002948 03 30 A0 E3 MOV R3, #3
__text:0000294C 10 90 8D E5 STR R9, [SP,#0x1C+var_C]
__text:00002950 A4 05 00 EB BL _printf
__text:00002954 07 D0 A0 E1 MOV SP, R7
__text:00002958 80 80 BD E8 LDMFD SP!, {R7,PC}
Almost the same what we already figured out, with the exception of STMFA (Store Multiple Full Ascending) instruction, it
is synonym to STMIB (Store Multiple Increment Before) instruction. This instruction increasing value in the SP register and
only then writing next register value into memory, but not vice versa.
Another thing we easily spot is the instructions are ostensibly located randomly. For instance, value in the R0 register is
prepared in three places, at addresses 0x2918, 0x2920 and 0x2928, when it would be possible to do it in one single point.
However, optimizing compiler has its own reasons about how to place instructions better. Usually, processor attempts to
simultaneously execute instructions locatedside-by-side. For example, instructions like MOVT R0, #0andADD R0, PC,
R0 cannot be executed simultaneously since they both modifying the R0 register. On the other hand, MOVT R0, #0 and
MOV R2, #4 instructions can be executed simultaneously since efects of their execution are not conflicting with each
other. Presumably, compiler tries to generate code in such a way, where it is possible, of course.
$.4.4 optimizin kccde (LLvH): tbumb-2 mcde
__text:00002BA0 _printf_main2
33
5.5. B\ 1nl w/\ Cn/l1lk 5. PRINTF() wl1n Slvlk/l /kouMln1S
__text:00002BA0
__text:00002BA0 var_1C = -0x1C
__text:00002BA0 var_18 = -0x18
__text:00002BA0 var_C = -0xC
__text:00002BA0
__text:00002BA0 80 B5 PUSH {R7,LR}
__text:00002BA2 6F 46 MOV R7, SP
__text:00002BA4 85 B0 SUB SP, SP, #0x14
__text:00002BA6 41 F2 D8 20 MOVW R0, #0x12D8
__text:00002BAA 4F F0 07 0C MOV.W R12, #7
__text:00002BAE C0 F2 00 00 MOVT.W R0, #0
__text:00002BB2 04 22 MOVS R2, #4
__text:00002BB4 78 44 ADD R0, PC ; char *
__text:00002BB6 06 23 MOVS R3, #6
__text:00002BB8 05 21 MOVS R1, #5
__text:00002BBA 0D F1 04 0E ADD.W LR, SP, #0x1C+var_18
__text:00002BBE 00 92 STR R2, [SP,#0x1C+var_1C]
__text:00002BC0 4F F0 08 09 MOV.W R9, #8
__text:00002BC4 8E E8 0A 10 STMIA.W LR, {R1,R3,R12}
__text:00002BC8 01 21 MOVS R1, #1
__text:00002BCA 02 22 MOVS R2, #2
__text:00002BCC 03 23 MOVS R3, #3
__text:00002BCE CD F8 10 90 STR.W R9, [SP,#0x1C+var_C]
__text:00002BD2 01 F0 0A EA BLX _printf
__text:00002BD6 05 B0 ADD SP, SP, #0x14
__text:00002BD8 80 BD POP {R7,PC}
Almost the same as in previous example, with the exception the thumb-instructions are used here instead.
$.$ 8y tbe way
By the way, this diference betweenpassing arguments inx, x, fastcall andARMis agoodillustrationthe CPUis not aware
of how arguments is passed to functions. It is also possible to create hypothetical compiler which is able to pass arguments
via a special structure not using stack at all.
34
Cn/l1lk 6. SC/nl(;
Cbapter 8
scanf()
Now lets use scanf().
#include <stdio.h>
int main()
{
int x;
printf ("Enter X:\n");
scanf ("%d", &x);
printf ("You entered %d...\n", x);
return 0;
};
OK, I agree, it is not clever to use scanf() today. But I wanted to illustrate passing pointer to |nt.
8.1 Abcut pcinters
It is one of the most fundamental things in computer science. Ofen, large array, structure or object, it is too costly to pass
to other function, while passing its address is much easier. More than that: if calling function must modify something in the
large array or structure, to return it as a whole is absurdly as well. So the simplest thing to do is to pass an address of array
or structure to function, and let it change what must be changed.
In C/C++ it is just an address of some point in memory.
In x, address is represented as -bit number (i.e., occupying bytes), while in x it is -bit number (occupying
bytes). By the way, that is the reason of some peoples indignation related to switching to x- all pointers on x-
architecture will require twice as more space.
With some efort, it is possible to work only with untyped pointers; e.g. standard C function memcpy(), copying a block
fromone place in memory to another, takes pointers of void* type on input, since it is impossible to predict block type you
would like to copy. And it is not even important to know, only block size is important.
Alsopointers are widely usedwhenfunctionneeds toreturnmore thanone value (we will back tothis infuture ()). sccnf(;
is just that case. In addition to the functions need to show how many values were read successfully, it also should return all
these values.
In C/C++ pointer type is needed only for type checking on compiling stage. Internally, in compiled code, there is no infor-
mation about pointers types.
8.2 x88
8.2.1 H5vC
What we got afer compiling in MSVC :
CONST SEGMENT
$SG3831 DB Enter X:, 0aH, 00H
$SG3832 DB %d, 00H
35
6.2. \86 Cn/l1lk 6. SC/nl(;
$SG3833 DB You entered %d..., 0aH, 00H
CONST ENDS
PUBLIC _main
EXTRN _scanf:PROC
EXTRN _printf:PROC
; Function compile flags: /Odtp
_TEXT SEGMENT
_x$ = -4 ; size = 4
_main PROC
push ebp
mov ebp, esp
push ecx
push OFFSET $SG3831 ; Enter X:
call _printf
add esp, 4
lea eax, DWORD PTR _x$[ebp]
push eax
push OFFSET $SG3832 ; %d
call _scanf
add esp, 8
mov ecx, DWORD PTR _x$[ebp]
push ecx
push OFFSET $SG3833 ; You entered %d...
call _printf
add esp, 8
; return 0
xor eax, eax
mov esp, ebp
pop ebp
ret 0
_main ENDP
_TEXT ENDS
Variable x is local.
C/C++ standard tell us it must be visible only in this function and not from any other point. Traditionally, local variables
are placed in the stack. Probably, there could be other ways, but in x it is so.
Next instruction afer function prologue, PUSH ECX, has not a goal to save ECX state (notice absence of corresponding
POP ECX at the function end).
In fact, this instruction just allocates bytes on the stack for x variable storage.
x will be accessed with the assistance of the _x$ macro (it equals to -) and the EBP register pointing to current frame.
Over a span of function execution, EBP is pointing to current stack frame and it is possible to have an access to local
variables and function arguments via EBP+offset.
It is also possible to use ESP, but it is ofen changing and not very convenient. So it can be said, the value of the EBP is
frozen stcte of the value of the ESP at the moment of function execution start.
A very typical stack frame layout in -bit environment is:
. . . . . .
EBP- local variable #, marked in IDA as var_8
EBP- local variable #, marked in IDA as var_4
EBP saved value of EBP
EBP+ return address
EBP+ argument#, marked in IDA as arg_0
EBP+xC argument#, marked in IDA as arg_4
EBP+x argument#, marked in IDA as arg_8
. . . . . .
Function scanf() in our example has two arguments.
First is pointer to the string containing %d and second address of variable x.
First of all, address of the x variable is placed into the EAX register by lea eax, DWORD PTR _x$[ebp] instruction
LEA meaning locJ efect|ve cJJress but over a time it changed its primary application (B..).
36
6.2. \86 Cn/l1lk 6. SC/nl(;
It can be said, LEA here just stores sum of the value in the EBP register and _x$ macro to the EAX register.
It is the same as lea eax, [ebp-4].
So, 4 subtracting fromvalue in the EBP register and result is placed to the EAX register. And then value in the EAX register
is pushing into stack and scanf() is called.
Afer that, printf() is called. First argument is pointer to string: You entered %d...\n.
Secondargument is preparedas: mov ecx, [ebp-4], this instruction places to the ECX not address of the x variable, but
its contents.
Afer, value in the ECX is placed on the stack and the last printf() called.
8.2.2 H5vC + ollybb
Lets try this example in OllyDbg. Lets load, press F (step over) until we get into our executable file instead of ntdll.dll.
Scroll up until main() appears. Lets click on the first instruction (PUSH EBP), press F, then F (Run) and breakpoint triggers
on the main() begin.
Lets trace to the place where the address of x variable is prepared: fig. ..
It is possible toright-click onEAXinregisters windowandthenFollowinstack. This address will appear instack window.
Look, this is a variable in the local stack. I draweda redarrowthere. Andthere are some garbage (0x77D478). Nowaddress of
the stack element, with the help of PUSH, will be written to the same stack, nearly. Lets trace by F until scanf() execution
finished. During the moment of scanf() execution, we enter, for example, , in the console window:
Figure .: Console output
scanf() executed here: fig. .. scanf() returns 1 in EAX, which means, it have read one value successfully. The element
of stack of our attention now contain 0x7B ().
Further, this value is copied from the stack to the ECX register and passed into printf(): fig. ..
Figure .: OllyDbg: address of the local variable is computed
37
6.2. \86 Cn/l1lk 6. SC/nl(;
Figure .: OllyDbg: scanf() executed
Figure .: OllyDbg: preparing the value for passing into printf()
8.2.8 6CC
Lets try to compile this code in GCC .. under Linux:
main proc near
var_20 = dword ptr -20h
var_1C = dword ptr -1Ch
var_4 = dword ptr -4
push ebp
mov ebp, esp
and esp, 0FFFFFFF0h
sub esp, 20h
mov [esp+20h+var_20], offset aEnterX ; "Enter X:"
call _puts
mov eax, offset aD ; "%d"
lea edx, [esp+20h+var_4]
mov [esp+20h+var_1C], edx
mov [esp+20h+var_20], eax
38
6.3. \64 Cn/l1lk 6. SC/nl(;
call ___isoc99_scanf
mov edx, [esp+20h+var_4]
mov eax, offset aYouEnteredD___ ; "You entered %d...\n"
mov [esp+20h+var_1C], edx
mov [esp+20h+var_20], eax
call _printf
mov eax, 0
leave
retn
main endp
GCC replaced first the printf() call to the puts(), it was already described (..) why it was done.
As before arguments are placed on the stack by MOV instruction.
8.8 x84
All the same, but registers are used instead of stack for arguments passing.
8.8.1 H5vC
Listing .: MSVC x
_DATA SEGMENT
$SG1289 DB Enter X:, 0aH, 00H
$SG1291 DB %d, 00H
$SG1292 DB You entered %d..., 0aH, 00H
_DATA ENDS
_TEXT SEGMENT
x$ = 32
main PROC
$LN3:
sub rsp, 56
lea rcx, OFFSET FLAT:$SG1289 ; Enter X:
call printf
lea rdx, QWORD PTR x$[rsp]
lea rcx, OFFSET FLAT:$SG1291 ; %d
call scanf
mov edx, DWORD PTR x$[rsp]
lea rcx, OFFSET FLAT:$SG1292 ; You entered %d...
call printf
; return 0
xor eax, eax
add rsp, 56
ret 0
main ENDP
_TEXT ENDS
8.8.2 6CC
Listing .: GCC .. -O x
.LC0:
.string "Enter X:"
.LC1:
.string "%d"
.LC2:
.string "You entered %d...\n"
39
6.4. /kM Cn/l1lk 6. SC/nl(;
main:
sub rsp, 24
mov edi, OFFSET FLAT:.LC0 ; "Enter X:"
call puts
lea rsi, [rsp+12]
mov edi, OFFSET FLAT:.LC1 ; "%d"
xor eax, eax
call __isoc99_scanf
mov esi, DWORD PTR [rsp+12]
mov edi, OFFSET FLAT:.LC2 ; "You entered %d...\n"
xor eax, eax
call printf
; return 0
xor eax, eax
add rsp, 24
ret
8.4 ARH
8.4.1 optimizin Keil + tbumb mcde
.text:00000042 scanf_main
.text:00000042
.text:00000042 var_8 = -8
.text:00000042
.text:00000042 08 B5 PUSH {R3,LR}
.text:00000044 A9 A0 ADR R0, aEnterX ; "Enter X:\n"
.text:00000046 06 F0 D3 F8 BL __2printf
.text:0000004A 69 46 MOV R1, SP
.text:0000004C AA A0 ADR R0, aD ; "%d"
.text:0000004E 06 F0 CD F8 BL __0scanf
.text:00000052 00 99 LDR R1, [SP,#8+var_8]
.text:00000054 A9 A0 ADR R0, aYouEnteredD___ ; "You entered %d...\n"
.text:00000056 06 F0 CB F8 BL __2printf
.text:0000005A 00 20 MOVS R0, #0
.text:0000005C 08 BD POP {R3,PC}
A pointer to a |nt-typed variable must be passed to a scanf() so it can return value via it. |nt is -bit value, so we need
bytes for storing it somewhere in memory, and it fits exactly in -bit register. A place for the local variable x is allocated in
the stack and IDA named it vcr_8, however, it is not necessary to allocate it since SP stack pointer is already pointing to the
space may be used instantly. So, SP stack pointer value is copied to the R1 register and, together with format-string, passed
into scanf(). Later, with the help of the LDR instruction, this value is moved from stack into the R1 register in order to be
passed into printf().
Examples compiled for ARM-mode and also examples compiled with Xcode LLVMare not difer significantly fromwhat we
saw here, so they are omitted.
8.$ 6lcbal variables
What if x variable from previous example will not be local but global variable? Then it will be accessible from any point, not
only from function body. Global variables are considered as anti-pattern, but for the sake of experiment we could do this.
#include <stdio.h>
int x;
int main()
{
40
6.5. ol0B/l v/kl/BllS Cn/l1lk 6. SC/nl(;
printf ("Enter X:\n");
scanf ("%d", &x);
printf ("You entered %d...\n", x);
return 0;
};
8.$.1 H5vC: x88
_DATA SEGMENT
COMM _x:DWORD
$SG2456 DB Enter X:, 0aH, 00H
$SG2457 DB %d, 00H
$SG2458 DB You entered %d..., 0aH, 00H
_DATA ENDS
PUBLIC _main
EXTRN _scanf:PROC
EXTRN _printf:PROC
; Function compile flags: /Odtp
_TEXT SEGMENT
_main PROC
push ebp
mov ebp, esp
push OFFSET $SG2456
call _printf
add esp, 4
push OFFSET _x
push OFFSET $SG2457
call _scanf
add esp, 8
mov eax, DWORD PTR _x
push eax
push OFFSET $SG2458
call _printf
add esp, 8
xor eax, eax
pop ebp
ret 0
_main ENDP
_TEXT ENDS
Nowx variable is defined in the _DATA segment. Memory in local stack is not allocated anymore. All accesses to it are not
via stack but directly to process memory. Not initialized global variables takes no place in the executable file (indeed, why
we should allocate a place in the executable file for initially zeroed variables?), but when someone will access this place in
memory, OS will allocate a block of zeroes there
.
Now lets assign value to variable explicitly:
int x=10; // default value
We got:
_DATA SEGMENT
_x DD 0aH
...
Here we see value 0xA of DWORD type (DD meaning DWORD = bit).
Random-access memory
44
6.6. SC/nl(; klSul1 CnlCAlno Cn/l1lk 6. SC/nl(;
Furthermore, data segment with constants in RAMmust be initialized before, since afer RAMturning on, obviously, it contain
random information.
Onwards, we see, in code segment, a pointer to the x (off_2C) variable, and all operations with variable occurred via
this pointer. This is because x variable can be located somewhere far from this code fragment, so its address must be saved
somewhere in close proximity to the code. LDR instruction in thumb mode can address only variable in range of bytes
from the point it is located. Same instruction in ARM-mode variables in range 4095 bytes, this, address of the x variable
must be located somewhere in close proximity, because, there is no guarantee the linker will able to place this variable near
the code, it could be even in external memory chip!
One more thing: if variable will be declared as const, Keil compiler shall allocate it in the .constdata segment. Perhaps,
thereafer, linker will able to place this segment in ROM too, along with code segment.
8.8 scanf() result cbeckin
As I noticed before, it is slightly old-fashioned to use scanf() today. But if we have to, we need at least check if scanf()
finished correctly without error.
#include <stdio.h>
int main()
{
int x;
printf ("Enter X:\n");
if (scanf ("%d", &x)==1)
printf ("You entered %d...\n", x);
else
printf ("What you entered? Huh?\n");
return 0;
};
By standard, scanf()
-s): fig. ..
Then F (update). Now the executable saved to disk. It will behave as we wanted.
Two NOP-s are probably not quite sthetically as it could be. Other way to patch this instruction is to write just to the
second opcode byte (jump ofset), so that JNZ will always jump to the next instruction.
No OPeration
50
6.6. SC/nl(; klSul1 CnlCAlno Cn/l1lk 6. SC/nl(;
We can do the opposite: replace first byte to EB while not touching the second byte (jump ofset). Well got here always
triggered unconditional jump. The error message will be printed always, no matter what number was entered.
Figure .: Hiew: main() function
51
6.6. SC/nl(; klSul1 CnlCAlno Cn/l1lk 6. SC/nl(;
Figure .: Hiew: replacing JNZ by two NOP-s
8.8.$ 6CC: x88
Code generated by GCC .. in Linux is almost the same, except diferences we already considered.
8.8.8 H5vC: x84
Since we work here with |nt-typed variables, which are still -bit in x-, we see how-bit part of registers (prefixed with
E-) are used here as well. While working with pointers, however, -bit register parts are used, prefied with R-.
Listing .: MSVC x
_DATA SEGMENT
$SG2924 DB Enter X:, 0aH, 00H
$SG2926 DB %d, 00H
$SG2927 DB You entered %d..., 0aH, 00H
$SG2929 DB What you entered? Huh?, 0aH, 00H
_DATA ENDS
_TEXT SEGMENT
x$ = 32
main PROC
$LN5:
sub rsp, 56
lea rcx, OFFSET FLAT:$SG2924 ; Enter X:
call printf
lea rdx, QWORD PTR x$[rsp]
lea rcx, OFFSET FLAT:$SG2926 ; %d
call scanf
52
6.6. SC/nl(; klSul1 CnlCAlno Cn/l1lk 6. SC/nl(;
cmp eax, 1
jne SHORT $LN2@main
mov edx, DWORD PTR x$[rsp]
lea rcx, OFFSET FLAT:$SG2927 ; You entered %d...
call printf
jmp SHORT $LN1@main
$LN2@main:
lea rcx, OFFSET FLAT:$SG2929 ; What you entered? Huh?
call printf
$LN1@main:
; return 0
xor eax, eax
add rsp, 56
ret 0
main ENDP
_TEXT ENDS
END
8.8.7 ARH: optimizin Keil + tbumb mcde
Listing .: Optimizing Keil + thumb mode
var_8 = -8
PUSH {R3,LR}
ADR R0, aEnterX ; "Enter X:\n"
BL __2printf
MOV R1, SP
ADR R0, aD ; "%d"
BL __0scanf
CMP R0, #1
BEQ loc_1E
ADR R0, aWhatYouEntered ; "What you entered? Huh?\n"
BL __2printf
loc_1A ; CODE XREF: main+26
MOVS R0, #0
POP {R3,PC}
loc_1E ; CODE XREF: main+12
LDR R1, [SP,#8+var_8]
ADR R0, aYouEnteredD___ ; "You entered %d...\n"
BL __2printf
B loc_1A
New instructions here are CMP and BEQ
.
CMP is akin to the x instruction bearing the same name, it subtracts one argument from another and saves flags.
BEQis jumping to another address if operands while comparing were equal to each other, or, if result of last computation
was 0, or if Z flag is 1. Same thing as JZ in x.
Everythingelseis simple: executionflowis forkingintotwobranches, thenthebranches areconvergingat thepoint where
0 is written into the R0, as a value returned from the function, and then function finishing.
result of multiplication
55
7.2. \64 Cn/l1lk 7. /CClSSlno l/SSlu /kouMln1S
arg_4 = dword ptr 0Ch
arg_8 = dword ptr 10h
push ebp
mov ebp, esp
mov eax, [ebp+arg_0] ; 1st argument
imul eax, [ebp+arg_4] ; 2nd argument
add eax, [ebp+arg_8] ; 3rd argument
pop ebp
retn
f endp
public main
main proc near
var_10 = dword ptr -10h
var_C = dword ptr -0Ch
var_8 = dword ptr -8
push ebp
mov ebp, esp
and esp, 0FFFFFFF0h
sub esp, 10h
mov [esp+10h+var_8], 3 ; 3rd argument
mov [esp+10h+var_C], 2 ; 2nd argument
mov [esp+10h+var_10], 1 ; 1st argument
call f
mov edx, offset aD ; "%d\n"
mov [esp+10h+var_C], eax
mov [esp+10h+var_10], edx
call _printf
mov eax, 0
leave
retn
main endp
Almost the same result.
The stack pointer is not returning back afer both function exeuction, because penultimate LEAVE (B..) instruction will
do this, at the end.
7.2 x84
The story is a bit diferent in x-, function arguments ( or ) are passed in registers, and a callee reading themfromthere
instead of stack accessing.
7.2.1 H5vC
Optimizing MSVC:
Listing .: MSVC /Ox x
$SG2997 DB %d, 0aH, 00H
main PROC
sub rsp, 40
mov edx, 2
lea r8d, QWORD PTR [rdx+1] ; R8D=3
lea ecx, QWORD PTR [rdx-1] ; ECX=1
call f
lea rcx, OFFSET FLAT:$SG2997 ; %d
mov edx, eax
56
7.2. \64 Cn/l1lk 7. /CClSSlno l/SSlu /kouMln1S
call printf
xor eax, eax
add rsp, 40
ret 0
main ENDP
f PROC
; ECX - 1st argument
; EDX - 2nd argument
; R8D - 3rd argument
imul ecx, edx
lea eax, DWORD PTR [r8+rcx]
ret 0
f ENDP
As we can see, very compact f() function takes arguments right fromthe registers. LEA instruction is used here for addi-
tion, apparently, compiler considered this instruction here faster then ADD. LEA is also used in main() for the first and third
arguments preparing, apparently, compiler thinks that it will work faster than usual value loading to the register using MOV
instruction.
Lets try to take a look on output of non-optimizing MSVC:
Listing .: MSVC x
f proc near
; shadow space:
arg_0 = dword ptr 8
arg_8 = dword ptr 10h
arg_10 = dword ptr 18h
; ECX - 1st argument
; EDX - 2nd argument
; R8D - 3rd argument
mov [rsp+arg_10], r8d
mov [rsp+arg_8], edx
mov [rsp+arg_0], ecx
mov eax, [rsp+arg_0]
imul eax, [rsp+arg_8]
add eax, [rsp+arg_10]
retn
f endp
main proc near
sub rsp, 28h
mov r8d, 3 ; 3rd argument
mov edx, 2 ; 2nd argument
mov ecx, 1 ; 1st argument
call f
mov edx, eax
lea rcx, $SG2931 ; "%d\n"
call printf
; return 0
xor eax, eax
add rsp, 28h
retn
main endp
Somewhat puzzling: all arguments fromregisters are saved to the stack for some reason. This is called shadowspace
: every Win may (but not required to) save all register values there. This is done by two reasons: ) it is too lavish to
http://msdn.microsoft.com/en-us/library/zthk2dkh(v=vs.80).aspx
57
7.2. \64 Cn/l1lk 7. /CClSSlno l/SSlu /kouMln1S
allocate the whole register (or even registers) for the input argument, so it will be accessed via stack; ) debugger is always
aware where to find function arguments at a break
.
It is duty of caller to allocate shadow space in stack.
7.2.2 6CC
Optimizing GCC does more or less understanable code:
Listing .: GCC .. -O x
f:
; EDI - 1st argument
; ESI - 2nd argument
; EDX - 3rd argument
imul esi, edi
lea eax, [rdx+rsi]
ret
main:
sub rsp, 8
mov edx, 3
mov esi, 2
mov edi, 1
call f
mov edi, OFFSET FLAT:.LC0 ; "%d\n"
mov esi, eax
xor eax, eax ; number of vector registers passed
call printf
xor eax, eax
add rsp, 8
ret
Non-optimizing GCC:
Listing .: GCC .. x
f:
; EDI - 1st argument
; ESI - 2nd argument
; EDX - 3rd argument
push rbp
mov rbp, rsp
mov DWORD PTR [rbp-4], edi
mov DWORD PTR [rbp-8], esi
mov DWORD PTR [rbp-12], edx
mov eax, DWORD PTR [rbp-4]
imul eax, DWORD PTR [rbp-8]
add eax, DWORD PTR [rbp-12]
leave
ret
main:
push rbp
mov rbp, rsp
mov edx, 3
mov esi, 2
mov edi, 1
call f
mov edx, eax
mov eax, OFFSET FLAT:.LC0 ; "%d\n"
mov esi, edx
mov rdi, rax
mov eax, 0 ; number of vector registers passed
http://msdn.microsoft.com/en-us/library/ew5tede7(v=VS.90).aspx
58
7.3. /kM Cn/l1lk 7. /CClSSlno l/SSlu /kouMln1S
call printf
mov eax, 0
leave
ret
There are no shadow space requirement in System V *NIX [], but callee may need to save arguments somewhere,
because, again, it may be regsiters shortage.
7.2.8 6CC: uint84_t instead int
Our example worked with -bit |nt, that is why -bit register parts were used (prefixed by E-).
It can be altered slightly in order to use -bit values:
#include <stdio.h>
#include <stdint.h>
uint64_t f (uint64_t a, uint64_t b, uint64_t c)
{
return a*b+c;
};
int main()
{
printf ("%lld\n", f(0x1122334455667788,
0x1111111122222222,
0x3333333344444444));
return 0;
};
Listing .: GCC .. -O x
f proc near
imul rsi, rdi
lea rax, [rdx+rsi]
retn
f endp
main proc near
sub rsp, 8
mov rdx, 3333333344444444h ; 3rd argument
mov rsi, 1111111122222222h ; 2nd argument
mov rdi, 1122334455667788h ; 1st argument
call f
mov edi, offset format ; "%lld\n"
mov rsi, rax
xor eax, eax ; number of vector registers passed
call _printf
xor eax, eax
add rsp, 8
retn
main endp
The code is very same, but registers (prefixed by R-) are oseJ cs c wlole.
7.8 ARH
7.8.1 Ncn-cptimizin Keil + ARHmcde
.text:000000A4 00 30 A0 E1 MOV R3, R0
.text:000000A8 93 21 20 E0 MLA R0, R3, R1, R2
.text:000000AC 1E FF 2F E1 BX LR
59
7.3. /kM Cn/l1lk 7. /CClSSlno l/SSlu /kouMln1S
...
.text:000000B0 main
.text:000000B0 10 40 2D E9 STMFD SP!, {R4,LR}
.text:000000B4 03 20 A0 E3 MOV R2, #3
.text:000000B8 02 10 A0 E3 MOV R1, #2
.text:000000BC 01 00 A0 E3 MOV R0, #1
.text:000000C0 F7 FF FF EB BL f
.text:000000C4 00 40 A0 E1 MOV R4, R0
.text:000000C8 04 10 A0 E1 MOV R1, R4
.text:000000CC 5A 0F 8F E2 ADR R0, aD_0 ; "%d\n"
.text:000000D0 E3 18 00 EB BL __2printf
.text:000000D4 00 00 A0 E3 MOV R0, #0
.text:000000D8 10 80 BD E8 LDMFD SP!, {R4,PC}
In main() function, two other functions are simply called, and three values are passed to the first one (f).
As I mentioned before, in ARM, first values are usually passed in first registers (R0-R3).
ffunction, as it seems, use first registers (R0-R2) as arguments.
MLA (Molt|ly /ccomolcte) instruction multiplicates two first operands (R3 and R1), adds third operand (R2) to product
and places result into zeroth operand (R0), via which, by standard, values are returned from functions.
Multiplicationandadditionat once
in SIMD.
The very first MOV R3, R0, instruction, apparently, redundant (single MLA instruction could be used here instead), com-
piler was not optimized it, since this is non-optimizing compilation.
BX instruction returns control to the address storedin the LRregister and, if it is necessary, switches processor mode from
thumb to ARM or vice versa. This can be necessary since, as we can see, f function is not aware, from which code it may be
called, from ARM or thumb. This, if it will be called from thumb code, BX will not only return control to the calling function,
but also will switch processor mode to thumb mode. Or not switch, if the function was called from ARM code.
7.8.2 optimizin Keil + ARHmcde
.text:00000098 f
.text:00000098 91 20 20 E0 MLA R0, R1, R0, R2
.text:0000009C 1E FF 2F E1 BX LR
And here is f function compiled by Keil compiler in full optimization mode (-O3). MOV instruction was optimized (or re-
duced) and nowMLA uses all input registers and also places result right into R0, exactly where calling function will read it and
use.
7.8.8 optimizin Keil + tbumb mcde
.text:0000005E 48 43 MULS R0, R1
.text:00000060 80 18 ADDS R0, R0, R2
.text:00000062 70 47 BX LR
MLA instruction is not available in thumb mode, so, compiler generates the code doing these two operations separately.
First MULS instruction multiply R0 by R1 leaving result in the R1 register. Second (ADDS) instruction adds result and R2 leaving
result in the R0 register.
https://en.wikipedia.org/wiki/FMA_instruction_set
60
Cn/l1lk 8. 0nl M0kl w0ku /B0u1 klSul1S kl1uknlno.
Cbapter 8
one mcre wcrd abcut results returnin.
As of x, function execution result is usually returned
in the EAX register. If it is byte type or character (clcr) then in the
lowest register EAX part AL. If function returns floct number, the FPU register ST(0) is to be used instead. In ARM, result is
usually returned in the R0 register.
By the way, what if returning value of the main() function will be declared not as |nt but as vo|J?
so-called startup-code is calling main() roughly as:
push envp
push argv
push argc
call main
push eax
call exit
In other words:
exit(main(argc,argv,envp));
If you declare main() as vo|J and nothing will be returned explicitly (by retorn statement), then something random, that
was stored in the EAX register at the moment of the main() finish, will come into the sole exit() function argument. Most
likely, there will be a random value, leaved from your function execution. So, exit code of program will be pseudorandom.
I can illustrate this fact. Please notice, the main() function has vo|J type:
#include <stdio.h>
void main()
{
printf ("Hello, world!\n");
};
Lets compile it in Linux.
GCC .. replaced printf() to puts() (we saw this before: ..), but thats OK, since puts() returns number of char-
acters printed, just like printf(). Please notice that EAX is not zeroed before main() finish. This means, EAX value at the
main() finish will contain what puts() leaved there.
Listing .: GCC ..
.LC0:
.string "Hello, world!"
main:
push ebp
mov ebp, esp
and esp, -16
sub esp, 16
mov DWORD PTR [esp], OFFSET FLAT:.LC0
call puts
) are cleared before execution begin. They are residing in data segment, we can be sure it is so, by
pressing Alt-M and seeing memory map: fig. ..
Lets trace (F) until executionof f1()fig. .. Twovalues are seeninthe stack 456 (0x1C8) and123 (0x7B), andtwoglobal
variables addresses as well.
Lets trace until the end of f1(). At the windowat lef we see howcalculation results are appeared in the gloval variables
fig. ..
Now values of global variables are loaded into registers for passing into printf(): fig. ..
Figure .: OllyDbg: global variables addresses are passing into f1()
, but will be triggered only in the case when one value was
greater or equal to another while comparison (orecter or lqocl).
The sense of LDMGEFD SP!, {R4-R6,PC} instruction is that is like function epilogue, but it will be triggered only if
a >= b, only then function execution will be finished. But if it is not true, i.e., a < b, then control flow come to next LDMFD
SP!, {R4-R6,LR} instruction, this is one more function epilogue, this instruction restores R4-R6 registers state, but also
LR instead of PC, thus, it does not returns from function. Last two instructions calls printf() with the string a<b\n as
sole argument. Unconditional jump to the printf() function instead of function return, is what we already examined in
printf() with several arguments section, here (..).
f_unsigned is likewise, but ADRHI, BLHI, and LDMCSFD instructions are used there, these predicates (nl - uns|neJ
l|ler, CS - Ccrry Set (recter tlcn or eqocl;) are analogical to those examined before, but serving for unsigned values.
There is not much new in the main() function for us:
Listing .: main()
.text:00000128 EXPORT main
.text:00000128 main
.text:00000128 10 40 2D E9 STMFD SP!, {R4,LR}
.text:0000012C 02 10 A0 E3 MOV R1, #2
.text:00000130 01 00 A0 E3 MOV R0, #1
.text:00000134 DF FF FF EB BL f_signed
.text:00000138 02 10 A0 E3 MOV R1, #2
.text:0000013C 01 00 A0 E3 MOV R0, #1
.text:00000140 EA FF FF EB BL f_unsigned
.text:00000144 00 00 A0 E3 MOV R0, #0
.text:00000148 10 80 BD E8 LDMFD SP!, {R4,PC}
.text:00000148 ; End of function main
Thats how to get rid of conditional jumps in ARM mode.
Why it is so good? Since ARM is RISC-processor with pipeline for instructions executing. In short, pipelined processor is
not very good on jumps at all, so that is why branch predictor units are critical here. It is very good if the programhas as few
jumps as possible, conditional and unconditional, so that is why, predicated instructions can help in reducing conditional
jumps count.
There is no such feature in x, if not to count CMOVcc instruction, it is the same as MOV, but triggered only when specific
flags are set, usually set while value comparison by CMP.
10.2.2 optimizin Keil + tbumb mcde
Listing .: Optimizing Keil + thumb mode
.text:00000072 f_signed ; CODE XREF: main+6
.text:00000072 70 B5 PUSH {R4-R6,LR}
http://en.wikipedia.org/wiki/Setjmp.h
82
.2. / l01 0l C/SlS Cn/l1lk . Swl1Cn(;/C/Sl/ull/ul1
.text:000000DC 05 D0 BEQ one_case
.text:000000DE 02 28 CMP R0, #2
.text:000000E0 05 D0 BEQ two_case
.text:000000E2 91 A0 ADR R0, aSomethingUnkno ; "something unknown\n"
.text:000000E4 04 E0 B default_case
.text:000000E6 zero_case ; CODE XREF: f1+4
.text:000000E6 95 A0 ADR R0, aZero ; "zero\n"
.text:000000E8 02 E0 B default_case
.text:000000EA one_case ; CODE XREF: f1+8
.text:000000EA 96 A0 ADR R0, aOne ; "one\n"
.text:000000EC 00 E0 B default_case
.text:000000EE two_case ; CODE XREF: f1+C
.text:000000EE 97 A0 ADR R0, aTwo ; "two\n"
.text:000000F0 default_case ; CODE XREF: f1+10
.text:000000F0 ; f1+14
.text:000000F0 06 F0 7E F8 BL __2printf
.text:000000F4 10 BD POP {R4,PC}
.text:000000F4 ; End of function f1
As I already mentioned, there is no feature of connect|n predicates to majority of instructions in thumb mode, so the
thumb-code here is somewhat similar to the easily understandable x CISC-code
11.2 A lct cf cases
If switch() statement contain a lot of cases, it is not very convenient for compiler to emit too large code with a lot JE/JNE
instructions.
void f (int a)
{
switch (a)
{
case 0: printf ("zero\n"); break;
case 1: printf ("one\n"); break;
case 2: printf ("two\n"); break;
case 3: printf ("three\n"); break;
case 4: printf ("four\n"); break;
default: printf ("something unknown\n"); break;
};
};
11.2.1 x88
We got (MSVC ):
Listing .: MSVC
tv64 = -4 ; size = 4
_a$ = 8 ; size = 4
_f PROC
push ebp
mov ebp, esp
push ecx
mov eax, DWORD PTR _a$[ebp]
mov DWORD PTR tv64[ebp], eax
cmp DWORD PTR tv64[ebp], 4
ja SHORT $LN1@f
mov ecx, DWORD PTR tv64[ebp]
jmp DWORD PTR $LN11@f[ecx*4]
83
.2. / l01 0l C/SlS Cn/l1lk . Swl1Cn(;/C/Sl/ull/ul1
$LN6@f:
push OFFSET $SG739 ; zero, 0aH, 00H
call _printf
add esp, 4
jmp SHORT $LN9@f
$LN5@f:
push OFFSET $SG741 ; one, 0aH, 00H
call _printf
add esp, 4
jmp SHORT $LN9@f
$LN4@f:
push OFFSET $SG743 ; two, 0aH, 00H
call _printf
add esp, 4
jmp SHORT $LN9@f
$LN3@f:
push OFFSET $SG745 ; three, 0aH, 00H
call _printf
add esp, 4
jmp SHORT $LN9@f
$LN2@f:
push OFFSET $SG747 ; four, 0aH, 00H
call _printf
add esp, 4
jmp SHORT $LN9@f
$LN1@f:
push OFFSET $SG749 ; something unknown, 0aH, 00H
call _printf
add esp, 4
$LN9@f:
mov esp, ebp
pop ebp
ret 0
npad 2
$LN11@f:
DD $LN6@f ; 0
DD $LN5@f ; 1
DD $LN4@f ; 2
DD $LN3@f ; 3
DD $LN2@f ; 4
_f ENDP
OK, what we see here is: there is a set of the printf() calls with various arguments. All they has not only addresses
in process memory, but also internal symbolic labels assigned by compiler. Besides, all these labels are also places into
$LN11@f internal table.
At the function beginning, if a is greater than , control flow is passed to label $LN1@f, where printf() with argument
something unknown is called.
And if a value is less or equals to , lets multiply it by and add $LN1@f table address. That is howaddress inside of table
is constructed, pointing exactly to the element we need. For example, lets say a is equal to . 24 = 8 (all table elements are
addresses within -bit process that is why all elements contain bytes). Address of the $LN11@f table + it will be table
element where $LN4@f label is stored. JMP fetches $LN4@f address from the table and jump to it.
This table called sometimes jomtcble.
Then corresponding printf() is called with argument two. Literally, jmp DWORD PTR $LN11@f[ecx*4] instruction
means jom to uw0ku, wl|cl |s storeJ ct cJJress $LN11@f + ecx * 4.
npad () is assembly language macro, aligning next label so that it will be stored at address aligned on a byte (or
byte) border. This is very suitable for processor since it is able tofetch-bit values frommemory throughmemory bus, cache
memory, etc, in much efective way if it is aligned.
Lets see what GCC .. generates:
Listing .: GCC ..
public f
84
.2. / l01 0l C/SlS Cn/l1lk . Swl1Cn(;/C/Sl/ull/ul1
f proc near ; CODE XREF: main+10
var_18 = dword ptr -18h
arg_0 = dword ptr 8
push ebp
mov ebp, esp
sub esp, 18h
cmp [ebp+arg_0], 4
ja short loc_8048444
mov eax, [ebp+arg_0]
shl eax, 2
mov eax, ds:off_804855C[eax]
jmp eax
loc_80483FE: ; DATA XREF: .rodata:off_804855C
mov [esp+18h+var_18], offset aZero ; "zero"
call _puts
jmp short locret_8048450
loc_804840C: ; DATA XREF: .rodata:08048560
mov [esp+18h+var_18], offset aOne ; "one"
call _puts
jmp short locret_8048450
loc_804841A: ; DATA XREF: .rodata:08048564
mov [esp+18h+var_18], offset aTwo ; "two"
call _puts
jmp short locret_8048450
loc_8048428: ; DATA XREF: .rodata:08048568
mov [esp+18h+var_18], offset aThree ; "three"
call _puts
jmp short locret_8048450
loc_8048436: ; DATA XREF: .rodata:0804856C
mov [esp+18h+var_18], offset aFour ; "four"
call _puts
jmp short locret_8048450
loc_8048444: ; CODE XREF: f+A
mov [esp+18h+var_18], offset aSomethingUnkno ; "something unknown"
call _puts
locret_8048450: ; CODE XREF: f+26
; f+34...
leave
retn
f endp
off_804855C dd offset loc_80483FE ; DATA XREF: f+12
dd offset loc_804840C
dd offset loc_804841A
dd offset loc_8048428
dd offset loc_8048436
It is almost the same, except little nuance: argument arg_0 is multipliedby withby shifing it tolefby bits (it is almost
the same as multiplication by ) (..). Then label address is taken fromoff_804855C array, address calculated and stored
into EAX, then JMP EAX do actual jump.
85
.2. / l01 0l C/SlS Cn/l1lk . Swl1Cn(;/C/Sl/ull/ul1
11.2.2 ARH: optimizin Keil + ARHmcde
00000174 f2
00000174 05 00 50 E3 CMP R0, #5 ; switch 5 cases
00000178 00 F1 8F 30 ADDCC PC, PC, R0,LSL#2 ; switch jump
0000017C 0E 00 00 EA B default_case ; jumptable 00000178 default case
00000180
00000180 loc_180 ; CODE XREF: f2+4
00000180 03 00 00 EA B zero_case ; jumptable 00000178 case 0
00000184
00000184 loc_184 ; CODE XREF: f2+4
00000184 04 00 00 EA B one_case ; jumptable 00000178 case 1
00000188
00000188 loc_188 ; CODE XREF: f2+4
00000188 05 00 00 EA B two_case ; jumptable 00000178 case 2
0000018C
0000018C loc_18C ; CODE XREF: f2+4
0000018C 06 00 00 EA B three_case ; jumptable 00000178 case 3
00000190
00000190 loc_190 ; CODE XREF: f2+4
00000190 07 00 00 EA B four_case ; jumptable 00000178 case 4
00000194
00000194 zero_case ; CODE XREF: f2+4
00000194 ; f2:loc_180
00000194 EC 00 8F E2 ADR R0, aZero ; jumptable 00000178 case 0
00000198 06 00 00 EA B loc_1B8
0000019C
0000019C one_case ; CODE XREF: f2+4
0000019C ; f2:loc_184
0000019C EC 00 8F E2 ADR R0, aOne ; jumptable 00000178 case 1
000001A0 04 00 00 EA B loc_1B8
000001A4
000001A4 two_case ; CODE XREF: f2+4
000001A4 ; f2:loc_188
000001A4 01 0C 8F E2 ADR R0, aTwo ; jumptable 00000178 case 2
000001A8 02 00 00 EA B loc_1B8
000001AC
000001AC three_case ; CODE XREF: f2+4
000001AC ; f2:loc_18C
000001AC 01 0C 8F E2 ADR R0, aThree ; jumptable 00000178 case 3
000001B0 00 00 00 EA B loc_1B8
000001B4
000001B4 four_case ; CODE XREF: f2+4
000001B4 ; f2:loc_190
000001B4 01 0C 8F E2 ADR R0, aFour ; jumptable 00000178 case 4
000001B8
000001B8 loc_1B8 ; CODE XREF: f2+24
000001B8 ; f2+2C
000001B8 66 18 00 EA B __2printf
000001BC
86
.2. / l01 0l C/SlS Cn/l1lk . Swl1Cn(;/C/Sl/ull/ul1
000001BC default_case ; CODE XREF: f2+4
000001BC ; f2+8
000001BC D4 00 8F E2 ADR R0, aSomethingUnkno ; jumptable 00000178 default case
000001C0 FC FF FF EA B loc_1B8
000001C0 ; End of function f2
This code makes use of the ARM feature in which all instructions in the ARM mode has size of bytes.
Lets keep in mind the maximumvalue for a is 4 and any greater value must cause sometl|n onknownn string printing.
The very first CMP R0, #5 instruction compares a input value with 5.
Thenext ADDCC PC, PC, R0,LSL#2
ADDaddition
87
.2. / l01 0l C/SlS Cn/l1lk . Swl1Cn(;/C/Sl/ull/ul1
00000116
00000116 four_case ; CODE XREF: f2+4
00000116 91 A0 ADR R0, aFour ; jumptable 000000FA case 4
00000118
00000118 loc_118 ; CODE XREF: f2+12
00000118 ; f2+16
00000118 06 F0 6A F8 BL __2printf
0000011C 10 BD POP {R4,PC}
0000011E
0000011E default_case ; CODE XREF: f2+4
0000011E 82 A0 ADR R0, aSomethingUnkno ; jumptable 000000FA default case
00000120 FA E7 B loc_118
000061D0 EXPORT __ARM_common_switch8_thumb
000061D0 __ARM_common_switch8_thumb ; CODE XREF: example6_f2+4
000061D0 78 47 BX PC
000061D2 00 00 ALIGN 4
000061D2 ; End of function __ARM_common_switch8_thumb
000061D2
000061D4 __32__ARM_common_switch8_thumb ; CODE XREF:
__ARM_common_switch8_thumb
000061D4 01 C0 5E E5 LDRB R12, [LR,#-1]
000061D8 0C 00 53 E1 CMP R3, R12
000061DC 0C 30 DE 27 LDRCSB R3, [LR,R12]
000061E0 03 30 DE 37 LDRCCB R3, [LR,R3]
000061E4 83 C0 8E E0 ADD R12, LR, R3,LSL#1
000061E8 1C FF 2F E1 BX R12
000061E8 ; End of function __32__ARM_common_switch8_thumb
One cannot be sure all instructions in thumb and thumb- modes will have same size. It is even can be said that in these
modes instructions has variable length, just like in x.
So there is a special table added, containing information about how much cases are there, not including default-case,
and ofset, for each, each encoding a label, to which control must be passed in corresponding case.
A special function here present in order to deal with the table and pass control, named
__/kM_common_sw|tcl8_tlomb. It is beginning with BX PC instruction, which function is to switch processor to ARM-
mode. Then you may see the function for table processing. It is too complex for describing it here now, so I will omit elabo-
rations.
But it is interesting to note the function uses LR register as a pointer to the table. Indeed, afer this function calling, LR
will contain address afer
BL __ARM_common_switch8_thumb instruction, and the table is beginning right there.
It is also worth noting the code is generated as a separate function in order to reuse it, in similar places, in similar cases,
for sw|tcl(; processing, so compiler will not generate same code at each point.
IDA successfully perceived it as a service function and table, automatically, and added commentaries to labels like
jumptable 000000FA case 0.
88
Cn/l1lk 2. l00lS
Cbapter 12
Lccps
12.1 x88
There is a special LOOP instruction in x instruction set, it is checking value in the ECX register and if it is not 0, do ECX decre-
ment and pass control flow to the label mentioned in the LOOP operand. Probably, this instruction is not very convenient,
so, I did not ever see any modern compiler emit it automatically. So, if you see the instruction somewhere in code, it is most
likely this is manually written piece of assembly code.
By the way, as home exercise, you could try to explain, why this instruction is not very convenient.
In C/C++ loops are constructed using for(), while(), do/while() statements.
Lets start with for().
This statement defines loop initialization (set loop counter to initial value), loop condition (is counter is bigger than a
limit?), what is done at each iteration (increment/decrement) and of course loop body.
for (initialization; condition; at each iteration)
{
loop_body;
}
So, generated code will be consisted of four parts too.
Lets start with simple example:
#include <stdio.h>
void f(int i)
{
printf ("f(%d)\n", i);
};
int main()
{
int i;
for (i=2; i<10; i++)
f(i);
return 0;
};
Result (MSVC ):
Listing .: MSVC
_i$ = -4
_main PROC
push ebp
mov ebp, esp
push ecx
mov DWORD PTR _i$[ebp], 2 ; loop initialization
jmp SHORT $LN3@main
89
2.. \86 Cn/l1lk 2. l00lS
$LN2@main:
mov eax, DWORD PTR _i$[ebp] ; here is what we do after each iteration:
add eax, 1 ; add 1 to i value
mov DWORD PTR _i$[ebp], eax
$LN3@main:
cmp DWORD PTR _i$[ebp], 10 ; this condition is checked *before* each iteration
jge SHORT $LN1@main ; if i is biggest or equals to 10, lets finish loop
mov ecx, DWORD PTR _i$[ebp] ; loop body: call f(i)
push ecx
call _f
add esp, 4
jmp SHORT $LN2@main ; jump to loop begin
$LN1@main: ; loop end
xor eax, eax
mov esp, ebp
pop ebp
ret 0
_main ENDP
Nothing very special, as we see.
GCC .. emits almost the same code, with one subtle diference:
Listing .: GCC ..
main proc near ; DATA XREF: _start+17
var_20 = dword ptr -20h
var_4 = dword ptr -4
push ebp
mov ebp, esp
and esp, 0FFFFFFF0h
sub esp, 20h
mov [esp+20h+var_4], 2 ; i initializing
jmp short loc_8048476
loc_8048465:
mov eax, [esp+20h+var_4]
mov [esp+20h+var_20], eax
call f
add [esp+20h+var_4], 1 ; i increment
loc_8048476:
cmp [esp+20h+var_4], 9
jle short loc_8048465 ; if i<=9, continue loop
mov eax, 0
leave
retn
main endp
Now lets see what we will get if optimization is turned on (/Ox):
Listing .: Optimizing MSVC
_main PROC
push esi
mov esi, 2
$LL3@main:
push esi
call _f
inc esi
add esp, 4
cmp esi, 10 ; 0000000aH
jl SHORT $LL3@main
90
2.. \86 Cn/l1lk 2. l00lS
xor eax, eax
pop esi
ret 0
_main ENDP
What is going on here is: space for the | variable is not allocated in local stack anymore, but even individual register: the
ESI. This is possible in such small functions where not so many local variables are present.
One very important property is the f() function must not change the value in the ESI. Our compiler is sure here. And if
compiler decidedtouse the ESI register inf() too, its value wouldbe savedthenat the f() functions prologue andrestored
at the f() functions epilogue. Almost like in our listing: please note PUSH ESI/POP ESI at the function begin and end.
Lets try GCC .. with maximal optimization turned on (-O3 option):
Listing .: Optimizing GCC ..
main proc near
var_10 = dword ptr -10h
push ebp
mov ebp, esp
and esp, 0FFFFFFF0h
sub esp, 10h
mov [esp+10h+var_10], 2
call f
mov [esp+10h+var_10], 3
call f
mov [esp+10h+var_10], 4
call f
mov [esp+10h+var_10], 5
call f
mov [esp+10h+var_10], 6
call f
mov [esp+10h+var_10], 7
call f
mov [esp+10h+var_10], 8
call f
mov [esp+10h+var_10], 9
call f
xor eax, eax
leave
retn
main endp
Huh, GCC just unwind our loop.
Loopunwindinghas advantageinthesecases whenthereis not somuchiterations andwecouldeconomysomeexecution
speed by removing all loop supporting instructions. On the other side, resulting code is obviously larger.
OK, lets increase maximal value of the | variable to 100 and try again. GCC resulting:
Listing .: GCC
public main
main proc near
var_20 = dword ptr -20h
push ebp
mov ebp, esp
and esp, 0FFFFFFF0h
push ebx
mov ebx, 2 ; i=2
sub esp, 1Ch
nop ; aligning label loc_80484D0 (loop body begin) by 16-byte border
loc_80484D0:
91
2.. \86 Cn/l1lk 2. l00lS
mov [esp+20h+var_20], ebx ; pass i as first argument to f()
add ebx, 1 ; i++
call f
cmp ebx, 64h ; i==100?
jnz short loc_80484D0 ; if not, continue
add esp, 1Ch
xor eax, eax ; return 0
pop ebx
mov esp, ebp
pop ebp
retn
main endp
It is quite similar to what MSVC with optimization (/Ox) produce. With the exception the EBX register will be fixed
to the i variable. GCC is sure this register will not be modified inside of the f() function, and if it will, it will be saved at the
function prologue and restored at epilogue, just like here in the main() function.
12.1.1 ollybb
Lets compile our example in MSVC with /Ox and /Ob0 options and load it into OllyDbg.
It seems, OllyDbg is able to detect simple loops and show them in square brackets, for convenience: fig. ..
By tracing (F (step over)) we see howESI incrementing. Here, for instance, ESI =i=: fig. ..
9 is a last loop value. Thats why JL will not trigger afer increment, and function finishing: fig. ..
Figure .: OllyDbg: main() begin
Figure .: OllyDbg: loop body just executed with i=
92
2.. \86 Cn/l1lk 2. l00lS
Figure .: OllyDbg: ESI =, loop end
12.1.2 tracer
As we might see, it is not very convenient to trace in debugger manually. Thats one of the reasons I write tracer for myself.
I open compiled example in IDA, I find the address of the instruction PUSH ESI (passing sole argument into f()) and this
is 0x401026 for me and I run tracer:
tracer.exe -l:loops_2.exe bpx=loops_2.exe!0x00401026
BPX just sets breakpoint at address and then will print registers state.
In the tracer.log I see afer running:
PID=12884|New process loops_2.exe
(0) loops_2.exe!0x401026
EAX=0x00a328c8 EBX=0x00000000 ECX=0x6f0f4714 EDX=0x00000000
ESI=0x00000002 EDI=0x00333378 EBP=0x0024fbfc ESP=0x0024fbb8
EIP=0x00331026
FLAGS=PF ZF IF
(0) loops_2.exe!0x401026
EAX=0x00000005 EBX=0x00000000 ECX=0x6f0a5617 EDX=0x000ee188
ESI=0x00000003 EDI=0x00333378 EBP=0x0024fbfc ESP=0x0024fbb8
EIP=0x00331026
FLAGS=CF PF AF SF IF
(0) loops_2.exe!0x401026
EAX=0x00000005 EBX=0x00000000 ECX=0x6f0a5617 EDX=0x000ee188
ESI=0x00000004 EDI=0x00333378 EBP=0x0024fbfc ESP=0x0024fbb8
EIP=0x00331026
FLAGS=CF PF AF SF IF
(0) loops_2.exe!0x401026
EAX=0x00000005 EBX=0x00000000 ECX=0x6f0a5617 EDX=0x000ee188
ESI=0x00000005 EDI=0x00333378 EBP=0x0024fbfc ESP=0x0024fbb8
EIP=0x00331026
FLAGS=CF AF SF IF
(0) loops_2.exe!0x401026
EAX=0x00000005 EBX=0x00000000 ECX=0x6f0a5617 EDX=0x000ee188
ESI=0x00000006 EDI=0x00333378 EBP=0x0024fbfc ESP=0x0024fbb8
EIP=0x00331026
FLAGS=CF PF AF SF IF
(0) loops_2.exe!0x401026
EAX=0x00000005 EBX=0x00000000 ECX=0x6f0a5617 EDX=0x000ee188
ESI=0x00000007 EDI=0x00333378 EBP=0x0024fbfc ESP=0x0024fbb8
EIP=0x00331026
FLAGS=CF AF SF IF
(0) loops_2.exe!0x401026
EAX=0x00000005 EBX=0x00000000 ECX=0x6f0a5617 EDX=0x000ee188
ESI=0x00000008 EDI=0x00333378 EBP=0x0024fbfc ESP=0x0024fbb8
EIP=0x00331026
FLAGS=CF AF SF IF
93
2.. \86 Cn/l1lk 2. l00lS
(0) loops_2.exe!0x401026
EAX=0x00000005 EBX=0x00000000 ECX=0x6f0a5617 EDX=0x000ee188
ESI=0x00000009 EDI=0x00333378 EBP=0x0024fbfc ESP=0x0024fbb8
EIP=0x00331026
FLAGS=CF PF AF SF IF
PID=12884|Process loops_2.exe exited. ExitCode=0 (0x0)
We see how value of ESI register is changed from to .
Even more than that, tracer can collect register values on all addresses within function. This is called trcce there. Each
instruction is being traced, all interesting register values are noticed and collected. .idc-script for IDA is then generated. So,
in the IDA Ive learned that main() function address is 0x00401020 and I run:
tracer.exe -l:loops_2.exe bpf=loops_2.exe!0x00401020,trace:cc
BPF mean set breakpoint on function.
As a result, I have got loops_2.exe.idc and loops_2.exe_clear.idc scripts. Im loading loops_2.exe.idc into IDA
and I see: fig. .
We see that ESI can be from to at the begin of loop body, but from to xA () afer increment. We can also see that
main() is finishing with in EAX.
tracer also generates loops_2.exe.txt, containing information about how many times each instruction was executed
and register values:
Listing .: loops_.exe.txt
0x401020 (.text+0x20), e= 1 [PUSH ESI] ESI=1
0x401021 (.text+0x21), e= 1 [MOV ESI, 2]
0x401026 (.text+0x26), e= 8 [PUSH ESI] ESI=2..9
0x401027 (.text+0x27), e= 8 [CALL 8D1000h] tracing nested maximum level (1) reached,
skipping this CALL 8D1000h=0x8d1000
0x40102c (.text+0x2c), e= 8 [INC ESI] ESI=2..9
0x40102d (.text+0x2d), e= 8 [ADD ESP, 4] ESP=0x38fcbc
0x401030 (.text+0x30), e= 8 [CMP ESI, 0Ah] ESI=3..0xa
0x401033 (.text+0x33), e= 8 [JL 8D1026h] SF=false,true OF=false
0x401035 (.text+0x35), e= 1 [XOR EAX, EAX]
0x401037 (.text+0x37), e= 1 [POP ESI]
0x401038 (.text+0x38), e= 1 [RETN] EAX=0
grep can be used here.
Figure .: IDA with .idc-script loaded
94
2.2. /kM Cn/l1lk 2. l00lS
12.2 ARH
12.2.1 Ncn-cptimizin Keil + ARHmcde
main
STMFD SP!, {R4,LR}
MOV R4, #2
B loc_368
loc_35C ; CODE XREF: main+1C
MOV R0, R4
BL f
ADD R4, R4, #1
loc_368 ; CODE XREF: main+8
CMP R4, #0xA
BLT loc_35C
MOV R0, #0
LDMFD SP!, {R4,PC}
Iteration counter i is to be stored in the R4 register.
MOV R4, #2 instruction just initializing |.
MOV R0, R4andBL finstructions are compose loopbody, the first instructionpreparingargument for f()function
and the second is calling it.
ADD R4, R4, #1 instruction is just adding 1 to the | variable during each iteration.
CMP R4, #0xA comparing i with 0xA (10). Next instruction BLT (Brcncl less 1lcn) will jump if | is less than 10.
Otherwise, 0 will be written into R0 (since our function returns 0) and function execution ended.
12.2.2 optimizin Keil + tbumb mcde
_main
PUSH {R4,LR}
MOVS R4, #2
loc_132 ; CODE XREF: _main+E
MOVS R0, R4
BL example7_f
ADDS R4, R4, #1
CMP R4, #0xA
BLT loc_132
MOVS R0, #0
POP {R4,PC}
Practically, the same.
12.2.8 optimizin kccde (LLvH) + tbumb-2 mcde
_main
PUSH {R4,R7,LR}
MOVW R4, #0x1124 ; "%d\n"
MOVS R1, #2
MOVT.W R4, #0
ADD R7, SP, #4
ADD R4, PC
MOV R0, R4
BLX _printf
MOV R0, R4
MOVS R1, #3
BLX _printf
MOV R0, R4
MOVS R1, #4
95
2.3. 0nl M0kl 1nlno Cn/l1lk 2. l00lS
BLX _printf
MOV R0, R4
MOVS R1, #5
BLX _printf
MOV R0, R4
MOVS R1, #6
BLX _printf
MOV R0, R4
MOVS R1, #7
BLX _printf
MOV R0, R4
MOVS R1, #8
BLX _printf
MOV R0, R4
MOVS R1, #9
BLX _printf
MOVS R0, #0
POP {R4,R7,PC}
In fact, this was in my f() function:
void f(int i)
{
// do something here
printf ("%d\n", i);
};
So, LLVM not just onrolleJ the loop, but also represented my very simple function f() as |nl|neJ, and inserted its body
times instead of loop. This is possible when function is so primitive (like mine) and when it is called not many times (like
here).
12.8 one mcre tbin
On the code generated we can see: afer |initialization, loop body will not be executed, but | condition checked first, and only
afer loop body is to be executed. And that is correct. Because, if loop condition is not met at the beginning, loop body must
not be executed. For example, this is possible in the following case:
for (i=0; i<total_entries_to_process; i++)
loop_body;
If totcl_entr|es_to_rocess equals to 0, loop body must not be executed whatsoever. So that is why condition checked
before loop body execution.
However, optimizing compiler may swap condition check and loop body, if it sure that the situation described here is not
possible (like in case of our very simple example and Keil, Xcode (LLVM), MSVC in optimization mode).
96
Cn/l1lk 3. S1klln(;
Cbapter 18
strlen()
Nowlets talk about loops one more time. Ofen, strlen() function
in loop body, these instructions continue operation until 0 will be met in string.
MVNS
(inverting all bits, NOT in x analogue) instructions and ADD computes eos str 1. In fact, these two instructions
computes R0 = str + eos, which is efectively equivalent to what was in source code, and why it is so, I already described
here (..).
Apparently, LLVM, just like GCC, concludes this code will be shorter, or faster.
18.2.8 optimizin Keil + ARHmcde
Listing .: Optimizing Keil + ARM mode
_strlen
MOV R1, R0
loc_2C8 ; CODE XREF: _strlen+14
LDRB R2, [R1],#1
CMP R2, #0
SUBEQ R0, R1, R0
SUBEQ R0, R0, #1
BNE loc_2C8
BX LR
MoVe Not
103
3.2. /kM Cn/l1lk 3. S1klln(;
Almost thesamewhat wesawbefore, withtheexceptionthestreos1expressionmaybecomputednot at thefunctions
end, but right in loop body. -EQsufix, as we may recall, means the instruction will be executed only if operands in executed
before CMP were equal to each other. Thus, if 0 will be in the R0 register, both SUBEQ instructions are to be executed and result
is leaving in the R0 register.
104
Cn/l1lk 4. ulvlSl0n B\ 9
Cbapter 14
bivisicn by 9
Very simple function:
int f(int a)
{
return a/9;
};
14.1 x88
. . . is compiled in a very predictable way:
Listing .: MSVC
_a$ = 8 ; size = 4
_f PROC
push ebp
mov ebp, esp
mov eax, DWORD PTR _a$[ebp]
cdq ; sign extend EAX to EDX:EAX
mov ecx, 9
idiv ecx
pop ebp
ret 0
_f ENDP
IDIV divides -bit number stored in the EDX:EAX register pair by value in the ECX register. As a result, EAX will contain
quotient
, and EDX remainder. Result is returning from the f() function in the EAX register, so, the value is not moved
anymore afer division operation, it is in right place already. Since IDIV requires value in the EDX:EAX register pair, CDQ
instruction (before IDIV) extending value in the EAX to -bit value taking value sign into account, just as MOVSX (..) does.
If we turn optimization on (/Ox), we got:
Listing .: Optimizing MSVC
_a$ = 8 ; size = 4
_f PROC
mov ecx, DWORD PTR _a$[esp-4]
mov eax, 954437177 ; 38e38e39H
imul ecx
sar edx, 1
mov eax, edx
shr eax, 31 ; 0000001fH
add eax, edx
ret 0
_f ENDP
result of division
105
4.2. /kM Cn/l1lk 4. ulvlSl0n B\ 9
This is division by multiplication. Multiplication operation works much faster. And it is possible to use the trick
to
produce a code which is efectively equivalent and faster.
This is also called strength reduction in compiler optimization.
GCC .. even without optimization turned on, generates almost the same code as MSVC with optimization turned on:
Listing .: Non-optimizing GCC ..
public f
f proc near
arg_0 = dword ptr 8
push ebp
mov ebp, esp
mov ecx, [ebp+arg_0]
mov edx, 954437177 ; 38E38E39h
mov eax, ecx
imul edx
sar edx, 1
mov eax, ecx
sar eax, 1Fh
mov ecx, edx
sub ecx, eax
mov eax, ecx
pop ebp
retn
f endp
14.2 ARH
ARM processor, just like in any other pure RISC-processors, lacks division instruction It lacks also a single instruction for
multiplication by -bit constant. By taking advantage of the one clever trick (or lcck), it is possible to do division using only
three instructions: addition, subtraction and bit shifs ().
Here is an example of -bit number division by from [, . Division by a Constant]. Quotient and remainder on
output.
; takes argument in a1
; returns quotient in a1, remainder in a2
; cycles could be saved if only divide or remainder is required
SUB a2, a1, #10 ; keep (x-10) for later
SUB a1, a1, a1, lsr #2
ADD a1, a1, a1, lsr #4
ADD a1, a1, a1, lsr #8
ADD a1, a1, a1, lsr #16
MOV a1, a1, lsr #3
ADD a3, a1, a1, asl #2
SUBS a2, a2, a3, asl #1 ; calc (x-10) - (x/10)*10
ADDPL a1, a1, #1 ; fix-up quotient
ADDMI a2, a2, #10 ; fix-up remainder
MOV pc, lr
14.2.1 optimizin kccde (LLvH) + ARHmcde
__text:00002C58 39 1E 08 E3 E3 18 43 E3 MOV R1, 0x38E38E39
__text:00002C60 10 F1 50 E7 SMMUL R0, R0, R1
__text:00002C64 C0 10 A0 E1 MOV R1, R0,ASR#1
__text:00002C68 A0 0F 81 E0 ADD R0, R1, R0,LSR#31
__text:00002C6C 1E FF 2F E1 BX LR
may be supplied by option, is the second operand must be shifed, if yes, by what value and how. ASR meaning /r|tlmet|c
Sl|h k|lt, LSRlo|ccn Sl|h k|lt.
14.2.2 optimizin kccde (LLvH) + tbumb-2 mcde
MOV R1, 0x38E38E39
SMMUL.W R0, R0, R1
ASRS R1, R0, #1
ADD.W R0, R1, R0,LSR#31
BX LR
There are separate instructions for shifing in thumb mode, and one of them is used hereASRS (arithmetic shif right).
14.2.8 Ncn-cptimizin kccde (LLvH) and Keil
Non-optimizing LLVM does not generate code we saw before in this section, but inserts a call to library function ___J|vs|3
instead.
What about Keil: it inserts call to library function __cecb|_|J|vmoJ in all cases.
14.8 Rcwit wcrks
Thats how division can be replaced by multiplication and division by 2
n
numbers:
result =
input
divisor
=
input
2
n
divisor
2
n
=
input M
2
n
Where M is mc|c-coeficient.
Thats howM can be computed:
M =
2
n
divisor
So these code snippets are usually have this form:
result =
input M
2
n
n can be arbitrary number, it may be (then high part of multiplication result is taked from EDX or RDX register), or
(then high part of multiplication result is shifed right additionally).
n is choosen in order to minimize error.
When doing signed division, sign of multiplication result also added to the output result.
Take a look at the diference:
int f3_32_signed(int a)
{
return a/3;
};
unsigned int f3_32_unsigned(unsigned int a)
{
is a device within main CPU specially designed to deal with floating point numbers.
It was called coprocessor in past. It stay aside of the main CPU and looks like programmable calculator in some way and.
It is worth to study stack machines
.
It is interesting to know that in past (before CPU) coprocessor was a separate chip and it was not always settled
on motherboard. It was possible to buy it separately and install
.
Starting at DX CPU, FPU is always present in it.
FWAIT instruction may remind us that factit switches CPU to waiting state, so it can wait until FPU finishes its work. An-
other rudiment is the fact that FPU-instruction opcodes are started with so called escape-opcodes (D8..DF), i.e., opcodes
passed into FPU.
FPU has a stack capable to hold -bit registers, each register can hold a number in IEEE
format.
C/C++ language ofer at least two floating number types, floct (s|nle-rec|s|on
, bits)
and Jooble (Jooble-rec|s|on
,
bits).
GCC also supports lon Jooble type (extenJeJ rec|s|on
Floating-point unit
http://en.wikipedia.org/wiki/Stack_machine
http://en.wikipedia.org/wiki/Forth_(programming_language)
For example, John Carmack used fixed-point arithmetic values in his Doom video game, stored in -bit GPR registers ( bit for intergral part and
another bit for fractional part), so the Doom could work on -bit computer without FPU, i.e., and SX
http://en.wikipedia.org/wiki/IEEE_754-2008
http://en.wikipedia.org/wiki/Single-precision_floating-point_format
single precision float numbers format is also addressed in the work|n w|tl tle floct tye cs w|tl c stroctore (..) section
http://en.wikipedia.org/wiki/Double-precision_floating-point_format
http://en.wikipedia.org/wiki/Extended_precision
110
5.. SlMlll l\/Mlll Cn/l1lk 5. w0kAlno wl1n llu
};
1$.1.1 x88
Compile it in MSVC :
Listing .: MSVC
CONST SEGMENT
__real@4010666666666666 DQ 04010666666666666r ; 4.1
CONST ENDS
CONST SEGMENT
__real@40091eb851eb851f DQ 040091eb851eb851fr ; 3.14
CONST ENDS
_TEXT SEGMENT
_a$ = 8 ; size = 8
_b$ = 16 ; size = 8
_f PROC
push ebp
mov ebp, esp
fld QWORD PTR _a$[ebp]
; current stack state: ST(0) = _a
fdiv QWORD PTR __real@40091eb851eb851f
; current stack state: ST(0) = result of _a divided by 3.13
fld QWORD PTR _b$[ebp]
; current stack state: ST(0) = _b; ST(1) = result of _a divided by 3.13
fmul QWORD PTR __real@4010666666666666
; current stack state: ST(0) = result of _b * 4.1; ST(1) = result of _a divided by 3.13
faddp ST(1), ST(0)
; current stack state: ST(0) = result of addition
pop ebp
ret 0
_f ENDP
FLD takes bytes fromstack and load the number into the ST(0) register, automatically converting it into internal -bit
format extenJeJ rec|s|on).
FDIV divides value in the ST(0) register by number storing at address __real@40091eb851eb851f 3.14 value is coded
there. Assembler syntax missing floating point numbers, so, what we see here is hexadecimal representation of 3.4 number
in -bit IEEE encoded.
Afer FDIV execution, ST(0) will hold quotient
.
By the way, there is also FDIVP instruction, which divides ST(1) by ST(0), popping both these values from stack and
then pushing result. If you know Forth language
.
Next FLD instruction pushing b value into stack.
Afer that, quotient is placed to the ST(1) register, and the ST(0) will hold b value.
Next FMUL instruction do multiplication: b from the ST(0) register by value at __real@4010666666666666 (. number
is there) and leaves result in the ST(0) register.
Very last FADDP instruction adds two values at top of stack, storing result to the ST(1) register and then popping value
at ST(1), hereby leaving result at top of stack in the ST(0).
result of division
http://en.wikipedia.org/wiki/Forth_(programming_language)
http://en.wikipedia.org/wiki/Stack_machine
111
5.. SlMlll l\/Mlll Cn/l1lk 5. w0kAlno wl1n llu
The functionmust returnresult inthe ST(0)register, so, afer FADDPthere are noany other instructions except of function
epilogue.
GCC .. (with -O3 option) emits the same code, however, slightly diferent:
Listing .: Optimizing GCC ..
public f
f proc near
arg_0 = qword ptr 8
arg_8 = qword ptr 10h
push ebp
fld ds:dbl_8048608 ; 3.14
; stack state now: ST(0) = 3.13
mov ebp, esp
fdivr [ebp+arg_0]
; stack state now: ST(0) = result of division
fld ds:dbl_8048610 ; 4.1
; stack state now: ST(0) = 4.1, ST(1) = result of division
fmul [ebp+arg_8]
; stack state now: ST(0) = result of multiplication, ST(1) = result of division
pop ebp
faddp st(1), st
; stack state now: ST(0) = result of addition
retn
f endp
The diference is that, first of all, 3.14 is pushed to stack (into ST(0)), and then value in arg_0 is divided by value in the
ST(0) register.
FDIVR meaning keverse u|v|Je to divide with divisor and dividend swapped with each other. There is no likewise in-
struction for multiplication since multiplication is commutative operation, so we have just FMUL without its -R counterpart.
FADDP adding two values but also popping one value from stack. Afer that operation, ST(0) holds the sum.
This fragment of disassembled code was produced using IDA which named the ST(0) register as ST for short.
1$.1.2 ARH: optimizin kccde (LLvH) + ARHmcde
Until ARM has floating standardized point support, several processor manufacturers may add their own instructions exten-
sions. Then, VFP (vector lloct|n lo|nt) was standardized.
One important diference fromx, there you working with FPU-stack, but here, in ARM, there are no any stack, you work
just with registers.
f
VLDR D16, =3.14
VMOV D17, R0, R1 ; load a
VMOV D18, R2, R3 ; load b
VDIV.F64 D16, D17, D16 ; a/3.14
VLDR D17, =4.1
VMUL.F64 D17, D18, D17 ; b*4.1
VADD.F64 D16, D17, D16 ; +
VMOV R0, R1, D16
BX LR
112
5.. SlMlll l\/Mlll Cn/l1lk 5. w0kAlno wl1n llu
dbl_2C98 DCFD 3.14 ; DATA XREF: f
dbl_2CA0 DCFD 4.1 ; DATA XREF: f+10
So, we see here new registers used, with D prefix. These are -bit registers, there are of them, and these can be used
both for floating-point numbers (double) but also for SIMD (it is called NEON here in ARM).
There are also -bit S-registers, they are intended to be used for single precision floating pointer numbers (float).
It is easy to remember: D-registers are intended for double precision numbers, while S-registers for single precision
numbers.
Both (3.14 and 4.1) constants are stored in memory in IEEE form.
VLDR and VMOV instructions, as it can be easily deduced, are analogous to the LDR and MOV instructions, but they works
with D-registers. It should be noted that these instructions, just like D-registers, are intended not only for floating point
numbers, but can be also used for SIMD (NEON) operations and this will also be revealed soon.
Arguments are passed to function in common way, via R-registers, however, each number having double precision has
size -bits, so, for passing each, two R-registers are needed.
VMOV D17, R0, R1 at the very beginning, composing two-bit values fromR0 andR1 intoone -bit value andsaves
it to D17.
VMOV R0, R1, D16 is inverse operation, what was in D16 leaving in two R0 and R1 registers, since double-precision
number, needing bits for storage, is returning in the R0 and R1 registers pair.
VDIV, VMUL and VADD, are instruction for floating point numbers processing, computing, quotient
, product
and sum
,
respectively.
The code for thumb- is same.
1$.1.8 ARH: optimizin Keil + tbumb mcde
f
PUSH {R3-R7,LR}
MOVS R7, R2
MOVS R4, R3
MOVS R5, R0
MOVS R6, R1
LDR R2, =0x66666666
LDR R3, =0x40106666
MOVS R0, R7
MOVS R1, R4
BL __aeabi_dmul
MOVS R7, R0
MOVS R4, R1
LDR R2, =0x51EB851F
LDR R3, =0x40091EB8
MOVS R0, R5
MOVS R1, R6
BL __aeabi_ddiv
MOVS R2, R7
MOVS R3, R4
BL __aeabi_dadd
POP {R3-R7,PC}
dword_364 DCD 0x66666666 ; DATA XREF: f+A
dword_368 DCD 0x40106666 ; DATA XREF: f+C
dword_36C DCD 0x51EB851F ; DATA XREF: f+1A
dword_370 DCD 0x40091EB8 ; DATA XREF: f+1C
Keil generates for processors not supporting FPUor NEON. So, double-precision floating numbers are passed via generic
R-registers, andinsteadof FPU-instructions, servicelibraryfunctions arecalled(like__aeabi_dmul, __aeabi_ddiv, __aeabi_dadd
) whichemulates multiplication, divisionandadditionfloating-point numbers. Of course, that is slower thanFPU-coprocessor,
but it is better than nothing.
By the way, similar FPU-emulating libraries were very popular in x world when coprocessors were rare and expensive,
and were installed only on expensive computers.
result of division
result of multiplication
result of addition
113
5.2. l/SSlno ll0/1lno l0ln1 nuMBlk vl/ /kouMln1S Cn/l1lk 5. w0kAlno wl1n llu
FPU-coprocessor emulatingcalledsohfloct or crmel inARMworld, whileusingcoprocessors FPU-instructions calledlcrJ
floct or crmlf.
For example, Linux kernel for Raspberry Pi is compiled in two variants. In soh floct case, arguments will be passed via
R-registers, and in lcrJ floct case via D-registers.
And that is what do not let you use e.g. armhf-libraries from armel-code or vice versa, so that is why all code in Linux
distribution must be compiled according to the chosen calling convention.
1$.2 assin flcatin pcint number via aruments
#include <math.h>
#include <stdio.h>
int main ()
{
printf ("32.01 ^ 1.54 = %lf\n", pow (32.01,1.54));
return 0;
}
1$.2.1 x88
Lets see what we got in (MSVC ):
Listing .: MSVC
CONST SEGMENT
__real@40400147ae147ae1 DQ 040400147ae147ae1r ; 32.01
__real@3ff8a3d70a3d70a4 DQ 03ff8a3d70a3d70a4r ; 1.54
CONST ENDS
_main PROC
push ebp
mov ebp, esp
sub esp, 8 ; allocate place for the first variable
fld QWORD PTR __real@3ff8a3d70a3d70a4
fstp QWORD PTR [esp]
sub esp, 8 ; allocate place for the second variable
fld QWORD PTR __real@40400147ae147ae1
fstp QWORD PTR [esp]
call _pow
add esp, 8 ; "return back" place of one variable.
; in local stack here 8 bytes still reserved for us.
; result now in ST(0)
fstp QWORD PTR [esp] ; move result from ST(0) to local stack for printf()
push OFFSET $SG2651
call _printf
add esp, 12
xor eax, eax
pop ebp
ret 0
_main ENDP
FLD and FSTP are moving variables from/to data segment to FPU stack. pow()
is storing or to the AL, but Jcc do actual jump or not. SETNBE store only if CF=0 and ZF=0. If
it is not true, 0 will be stored into AL.
Both CF is and ZF is simultaneously only in one case: if a>b.
Then one will be stored to the AL and the following JZ will not be triggered and function will return _a. In all other cases,
_b will be returned.
But it is still not over.
1$.8.4 6CC 4.4.1 witb -O3 cptimizaticn turned cn
Listing .: Optimizing GCC ..
public d_max
d_max proc near
arg_0 = qword ptr 8
arg_8 = qword ptr 10h
push ebp
mov ebp, esp
fld [ebp+arg_0] ; _a
fld [ebp+arg_8] ; _b
; stack state now: ST(0) = _b, ST(1) = _a
fxch st(1)
; stack state now: ST(0) = _a, ST(1) = _b
fucom st(1) ; compare _a and _b
http://en.wikipedia.org/wiki/NaN
cc is conJ|t|on coJe
119
5.3. C0Ml/klS0n l\/Mlll Cn/l1lk 5. w0kAlno wl1n llu
fnstsw ax
sahf
ja short loc_8048448
; store ST(0) to ST(0) (idle operation), pop value at top of stack, leave _b at top
fstp st
jmp short loc_804844A
loc_8048448:
; store _a to ST(0), pop value at top of stack, leave _a at top
fstp st(1)
loc_804844A:
pop ebp
retn
d_max endp
It is almost the same except one: JA usage instead of SAHF. Actually, conditional jump instructions checking larger,
lesser or equal for unsigned number comparison (JA, JAE, JBE, JBE, JE/JZ, JNA, JNAE, JNB, JNBE, JNE/JNZ) are checking
only CF and ZF flags. And C3/C2/C0 bits afer comparison are moving into these flags exactly in the same fashion so condi-
tional jumps will work here. JA will work if both CF are ZF zero.
Thereby, conditional jumps instructions listed here can be used afer FNSTSW/SAHF instructions pair.
It seems, FPU C3/C2/C0 status bits was placed there intentionally so to map them to base CPU flags without additional
permutations.
1$.8.$ ARH+ optimizin kccde (LLvH) + ARHmcde
Listing .: Optimizing Xcode (LLVM) + ARM mode
VMOV D16, R2, R3 ; b
VMOV D17, R0, R1 ; a
VCMPE.F64 D17, D16
VMRS APSR_nzcv, FPSCR
VMOVGT.F64 D16, D17 ; copy b to D16
VMOV R0, R1, D16
BX LR
A very simple case. Input values are placed into the D17 and D16 registers and then compared with the help of VCMPE
instruction. Just like in x coprocessor, ARMcoprocessor has its own status and flags register, (FPSCR), since there is a need
to store coprocessor-specific flags.
Andjust like inx, there are noconditional jumpinstructioninARM, checking bits incoprocessor status register, sothere
is VMRS instruction, copying bits (N, Z, C, V) from the coprocessor status word into bits of enercl status (APSR register).
VMOVGT is analogue of MOVGT, instruction, to be executed if one operand is greater than other while comparing (o1
orecter 1lcn).
If it will be executed, b value will be written into D16, stored at the moment in D17.
And if it will not be triggered, then a value will stay in the D16 register.
Penultimate instruction VMOV will prepare value in the D16 register for returning via R0 and R1 registers pair.
1$.8.8 ARH+ optimizin kccde (LLvH) + tbumb-2 mcde
Listing .: Optimizing Xcode (LLVM) + thumb- mode
VMOV D16, R2, R3 ; b
VMOV D17, R0, R1 ; a
VCMPE.F64 D17, D16
VMRS APSR_nzcv, FPSCR
IT GT
VMOVGT.F64 D16, D17
VMOV R0, R1, D16
BX LR
120
5.3. C0Ml/klS0n l\/Mlll Cn/l1lk 5. w0kAlno wl1n llu
Almost the same as in previous example, howevermslightly diferent. As a matter of fact, many instructions in ARMmode
can be supplied by condition predicate, and the instruction is to be executed if condition is true.
But there is no such thing in thumb mode. There is no place in -bit instructions for spare bits where condition can be
encoded.
However, thumb- was extended to make possible to specify predicates to old thumb instructions.
Here, is the IDA-generated listing, we see VMOVGT instruction, the same as in previous example.
But in fact, usual VMOV is encoded there, but IDA added -GT sufix to it, since there is IT GT instruction placed right
before.
IT instruction defines so-called |f-tlen block. Afer the instruction, it is possible to place up to instructions, to which
predicate sufix will be added. In our example, IT GT meaning, the next instruction will be executed, if o1 (orecter 1lcn)
condition is true.
Now more complex code fragment, by the way, from Angry Birds (for iOS):
Listing .: Angry Birds Classic
ITE NE
VMOVNE R2, R3, D16
VMOVEQ R2, R3, D17
ITEmeaning|f-tlen-elseandit encodesufixes for twonext instructions. First instructionwill executeif conditionencoded
in ITE (nl, not eqocl) will be true at the moment, and the second if the condition will not be true. (Inverse condition of NE
is EQ (eqocl)).
Slightly harder, and this fragment from Angry Birds as well:
Listing .: Angry Birds Classic
ITTTT EQ
MOVEQ R0, R4
ADDEQ SP, SP, #0x20
POPEQ.W {R8,R10}
POPEQ {R4-R7,PC}
T symbols in instruction mnemonic means the next instructions will be executed if condition is true. Thats why IDA
added -EQ sufix to each instructions.
And if there will be e.g. ITEEE EQ (|f-tlen-else-else-else), then sufixes will be set as follows:
-EQ
-NE
-NE
-NE
Another fragment from Angry Birds:
Listing .: Angry Birds Classic
CMP.W R0, #0xFFFFFFFF
ITTE LE
SUBLE.W R10, R0, #1
NEGLE R0, R0
MOVGT R10, R0
ITTE (|f-tlen-tlen-else) means the st and nd instructions will be executed, if LE (less or lqocl) condition is true, and
rdif inverse condition (GTorecter 1lcn) is true.
Compilers usually are not generating all possible combinations. For example, it mentioned Angry Birds game (clcss|c
version for iOS) only these cases of IT instruction are used: IT, ITE, ITT, ITTE, ITTT, ITTTT. How I learnt this? In IDA it is
possible to produce listing files, so I did it, but I also set in options to show bytes of each opcodes . Then, knowing the high
part of -bit opcode IT is 0xBF, I did this with grep:
cat AngryBirdsClassic.lst | grep " BF" | grep "IT" > results.lst
By the way, if to program in ARM assembly language manually for thumb- mode, with adding conditional sufixes, as-
sembler will add IT instructions automatically, with respectable flags, where it is necessary.
121
5.3. C0Ml/klS0n l\/Mlll Cn/l1lk 5. w0kAlno wl1n llu
1$.8.7 ARH+ Ncn-cptimizin kccde (LLvH) + ARHmcde
Listing .: Non-optimizing Xcode (LLVM) + ARM mode
b = -0x20
a = -0x18
val_to_return = -0x10
saved_R7 = -4
STR R7, [SP,#saved_R7]!
MOV R7, SP
SUB SP, SP, #0x1C
BIC SP, SP, #7
VMOV D16, R2, R3
VMOV D17, R0, R1
VSTR D17, [SP,#0x20+a]
VSTR D16, [SP,#0x20+b]
VLDR D16, [SP,#0x20+a]
VLDR D17, [SP,#0x20+b]
VCMPE.F64 D16, D17
VMRS APSR_nzcv, FPSCR
BLE loc_2E08
VLDR D16, [SP,#0x20+a]
VSTR D16, [SP,#0x20+val_to_return]
B loc_2E10
loc_2E08
VLDR D16, [SP,#0x20+b]
VSTR D16, [SP,#0x20+val_to_return]
loc_2E10
VLDR D16, [SP,#0x20+val_to_return]
VMOV R0, R1, D16
MOV SP, R7
LDR R7, [SP+0x20+b],#4
BX LR
Almost the same we already saw, but too much redundant code because of a and b variables storage in local stack, as
well as returning value.
1$.8.8 ARH+ optimizin Keil + tbumb mcde
Listing .: Optimizing Keil + thumb mode
PUSH {R3-R7,LR}
MOVS R4, R2
MOVS R5, R3
MOVS R6, R0
MOVS R7, R1
BL __aeabi_cdrcmple
BCS loc_1C0
MOVS R0, R6
MOVS R1, R7
POP {R3-R7,PC}
loc_1C0
MOVS R0, R4
MOVS R1, R5
POP {R3-R7,PC}
Keil not generates special instruction for float numbers comparing since it cannot rely it will be supported on the target
CPU, and it cannot be done by straightforward bitwise comparing. So there is called external library function for comparing:
122
5.4. \64 Cn/l1lk 5. w0kAlno wl1n llu
__aeabi_cdrcmple. N.B. Comparison result is to be leaved in flags, so the following BCS (Ccrry set - orecter tlcn or eqocl)
instruction may work without any additional code.
1$.4 x84
Read more here about how float point numbers are processed in x-.
123
Cn/l1lk 6. /kk/\S
Cbapter 18
Arrays
Array is just a set of variables in memory, always lying next to each other, always has same type
.
18.1 5imple example
#include <stdio.h>
int main()
{
int a[20];
int i;
for (i=0; i<20; i++)
a[i]=i*2;
for (i=0; i<20; i++)
printf ("a[%d]=%d\n", i, a[i]);
return 0;
};
18.1.1 x88
Lets compile:
Listing .: MSVC
_TEXT SEGMENT
_i$ = -84 ; size = 4
_a$ = -80 ; size = 80
_main PROC
push ebp
mov ebp, esp
sub esp, 84 ; 00000054H
mov DWORD PTR _i$[ebp], 0
jmp SHORT $LN6@main
$LN5@main:
mov eax, DWORD PTR _i$[ebp]
add eax, 1
mov DWORD PTR _i$[ebp], eax
$LN6@main:
cmp DWORD PTR _i$[ebp], 20 ; 00000014H
jge SHORT $LN4@main
mov ecx, DWORD PTR _i$[ebp]
AKA
homogeneous container
124
6.. SlMlll l\/Mlll Cn/l1lk 6. /kk/\S
shl ecx, 1
mov edx, DWORD PTR _i$[ebp]
mov DWORD PTR _a$[ebp+edx*4], ecx
jmp SHORT $LN5@main
$LN4@main:
mov DWORD PTR _i$[ebp], 0
jmp SHORT $LN3@main
$LN2@main:
mov eax, DWORD PTR _i$[ebp]
add eax, 1
mov DWORD PTR _i$[ebp], eax
$LN3@main:
cmp DWORD PTR _i$[ebp], 20 ; 00000014H
jge SHORT $LN1@main
mov ecx, DWORD PTR _i$[ebp]
mov edx, DWORD PTR _a$[ebp+ecx*4]
push edx
mov eax, DWORD PTR _i$[ebp]
push eax
push OFFSET $SG2463
call _printf
add esp, 12 ; 0000000cH
jmp SHORT $LN2@main
$LN1@main:
xor eax, eax
mov esp, ebp
pop ebp
ret 0
_main ENDP
Nothing very special, just two loops: first is filling loop and second is printing loop. shl ecx, 1 instruction is used for
value multiplication by in the ECX, more about below ...
80 bytes are allocated on the stack for array, that is 20 elements of 4 bytes.
Here is what GCC .. does:
Listing .: GCC ..
public main
main proc near ; DATA XREF: _start+17
var_70 = dword ptr -70h
var_6C = dword ptr -6Ch
var_68 = dword ptr -68h
i_2 = dword ptr -54h
i = dword ptr -4
push ebp
mov ebp, esp
and esp, 0FFFFFFF0h
sub esp, 70h
mov [esp+70h+i], 0 ; i=0
jmp short loc_804840A
loc_80483F7:
mov eax, [esp+70h+i]
mov edx, [esp+70h+i]
add edx, edx ; edx=i*2
mov [esp+eax*4+70h+i_2], edx
add [esp+70h+i], 1 ; i++
loc_804840A:
cmp [esp+70h+i], 13h
125
6.. SlMlll l\/Mlll Cn/l1lk 6. /kk/\S
jle short loc_80483F7
mov [esp+70h+i], 0
jmp short loc_8048441
loc_804841B:
mov eax, [esp+70h+i]
mov edx, [esp+eax*4+70h+i_2]
mov eax, offset aADD ; "a[%d]=%d\n"
mov [esp+70h+var_68], edx
mov edx, [esp+70h+i]
mov [esp+70h+var_6C], edx
mov [esp+70h+var_70], eax
call _printf
add [esp+70h+i], 1
loc_8048441:
cmp [esp+70h+i], 13h
jle short loc_804841B
mov eax, 0
leave
retn
main endp
By the way, c variable has |nt* type (the pointer to |nt) you can try to pass a pointer to array to another function, but it
much correctly to say the pointer to the first array element is passed (addresses of another elements places are calculated
in obvious way). If to index this pointer as cj|Jxj, |Jx just to be added to the pointer and the element placed there (to which
calculated pointer is pointing) returned.
An interesting example: string of characters like str|n is array of characters and it has const clcr* type.Index can be
applied to this pointer. And that is why it is possible to write like string[i] this is correct C/C++ expression!
18.1.2 ARH+ Ncn-cptimizin Keil + ARHmcde
EXPORT _main
_main
STMFD SP!, {R4,LR}
SUB SP, SP, #0x50 ; allocate place for 20 int variables
; first loop
MOV R4, #0 ; i
B loc_4A0
loc_494
MOV R0, R4,LSL#1 ; R0=R4*2
STR R0, [SP,R4,LSL#2] ; store R0 to SP+R4<<2 (same as SP+R4*4)
ADD R4, R4, #1 ; i=i+1
loc_4A0
CMP R4, #20 ; i<20?
BLT loc_494 ; yes, run loop body again
; second loop
MOV R4, #0 ; i
B loc_4C4
loc_4B0
LDR R2, [SP,R4,LSL#2] ; (second printf argument) R2=*(SP+R4<<4) (same as *(SP+
R4*4))
MOV R1, R4 ; (first printf argument) R1=i
ADR R0, aADD ; "a[%d]=%d\n"
BL __2printf
ADD R4, R4, #1 ; i=i+1
126
6.. SlMlll l\/Mlll Cn/l1lk 6. /kk/\S
loc_4C4
CMP R4, #20 ; i<20?
BLT loc_4B0 ; yes, run loop body again
MOV R0, #0 ; value to return
ADD SP, SP, #0x50 ; deallocate place, allocated for 20 int variables
LDMFD SP!, {R4,PC}
|nt type requires bits for storage, or bytes, so for storage of |nt variables, 80 (0x50) bytes are needed, so that is why
SUB SP, SP, #0x50 instruction in function epilogue allocates exactly this amount of space in local stack.
In both first and second loops, i loop iterator will be placed in the R4 register.
A number to be written into array, is calculating as i 2 which is efectively equivalent to shifing lef by one bit, so MOV
R0, R4,LSL#1 instruction do this.
STR R0, [SP,R4,LSL#2] writes R0 contents into array. Here is howa pointer to array element is to be calculated: SP
pointing to array begin, R4 is i. So shif i lef by bits, that is efectively equivalent to multiplication by 4 (since each array
element has size of bytes) and add it to address of array begin.
The second loop has inverse LDR R2, [SP,R4,LSL#2], instruction, it loads fromarray value we need, and the pointer
to it is calculated likewise.
18.1.8 ARH+ optimizin Keil + tbumb mcde
_main
PUSH {R4,R5,LR}
; allocate place for 20 int variables + one more variable
SUB SP, SP, #0x54
; first loop
MOVS R0, #0 ; i
MOV R5, SP ; pointer to first array element
loc_1CE
LSLS R1, R0, #1 ; R1=i<<1 (same as i*2)
LSLS R2, R0, #2 ; R2=i<<2 (same as i*4)
ADDS R0, R0, #1 ; i=i+1
CMP R0, #20 ; i<20?
STR R1, [R5,R2] ; store R1 to *(R5+R2) (same R5+i*4)
BLT loc_1CE ; yes, i<20, run loop body again
; second loop
MOVS R4, #0 ; i=0
loc_1DC
LSLS R0, R4, #2 ; R0=i<<2 (same as i*4)
LDR R2, [R5,R0] ; load from *(R5+R0) (same as R5+i*4)
MOVS R1, R4
ADR R0, aADD ; "a[%d]=%d\n"
BL __2printf
ADDS R4, R4, #1 ; i=i+1
CMP R4, #20 ; i<20?
BLT loc_1DC ; yes, i<20, run loop body again
MOVS R0, #0 ; value to return
; deallocate place, allocated for 20 int variables + one more variable
ADD SP, SP, #0x54
POP {R4,R5,PC}
Thumb code is very similar. Thumb mode has special instructions for bit shifing (like LSLS), which calculates value to be
written into array and address of each element in array as well.
Compiler allocates slightly more space in local stack, however, last bytes are not used.
127
6.2. Bulllk 0vlkll0w Cn/l1lk 6. /kk/\S
18.2 8uer cverflcw
So, array indexing is just crrcyj|nJexj. If you study generated code closely, youll probably note missing index bounds check-
ing, which could check index, |f |t |s less tlcn 20. What if index will be greater than ? Thats the one C/C++ feature it is ofen
blamed for.
Here is a code successfully compiling and working:
#include <stdio.h>
int main()
{
int a[20];
int i;
for (i=0; i<20; i++)
a[i]=i*2;
printf ("a[100]=%d\n", a[100]);
return 0;
};
Compilation results (MSVC ):
_TEXT SEGMENT
_i$ = -84 ; size = 4
_a$ = -80 ; size = 80
_main PROC
push ebp
mov ebp, esp
sub esp, 84 ; 00000054H
mov DWORD PTR _i$[ebp], 0
jmp SHORT $LN3@main
$LN2@main:
mov eax, DWORD PTR _i$[ebp]
add eax, 1
mov DWORD PTR _i$[ebp], eax
$LN3@main:
cmp DWORD PTR _i$[ebp], 20 ; 00000014H
jge SHORT $LN1@main
mov ecx, DWORD PTR _i$[ebp]
shl ecx, 1
mov edx, DWORD PTR _i$[ebp]
mov DWORD PTR _a$[ebp+edx*4], ecx
jmp SHORT $LN2@main
$LN1@main:
mov eax, DWORD PTR _a$[ebp+400]
push eax
push OFFSET $SG2460
call _printf
add esp, 8
xor eax, eax
mov esp, ebp
pop ebp
ret 0
_main ENDP
Im running it, and I got:
a[100]=760826203
It is just sometl|n, occasionally lying in the stack near to array, bytes from its first element.
128
6.2. Bulllk 0vlkll0w Cn/l1lk 6. /kk/\S
Indeed, how it could be done diferently? Compiler may generate some additional code for checking index value to be
always in arrays bound (like in higher-level programming languages
.
Replace |nt array by string (clcr array), create a long string deliberately, and pass it to the program, to the function which
is not checking string length and copies it to short bufer, and youll able to point to a program an address to which it must
jump. Not that simple in reality, but that is how it was emerged
Lets try the same code in GCC ... We got:
public main
main proc near
a = dword ptr -54h
i = dword ptr -4
push ebp
mov ebp, esp
sub esp, 60h
mov [ebp+i], 0
jmp short loc_80483D1
loc_80483C3:
mov eax, [ebp+i]
mov edx, [ebp+i]
mov [ebp+eax*4+a], edx
add [ebp+i], 1
loc_80483D1:
cmp [ebp+i], 1Dh
jle short loc_80483C3
mov eax, 0
leave
retn
main endp
Running this in Linux will produce: Segmentation fault.
If we run this in GDB debugger, we getting this:
(gdb) r
Starting program: /home/dennis/RE/1
Program received signal SIGSEGV, Segmentation fault.
0x00000016 in ?? ()
http://en.wikipedia.org/wiki/Stack_buffer_overflow
:
/RTCs Stack Frame runtime checking
/GZ Enable stack checks (/RTCs)
Oneof themethods is towriterandomvalueamonglocal variables tostackat functionprologueandtocheckit infunction
epilogue before function exiting. And if value is not the same, do not execute last instruction RET, but halt (or hang). Process
will hang, but that is much better then remote attack to your host.
This randomvalue is called canary sometimes, it is related to miners canary
http://en.wikipedia.org/wiki/Domestic_Canary#Miner.27s_canary
131
6.3. Bulllk 0vlkll0w lk01lC1l0n Ml1n0uS Cn/l1lk 6. /kk/\S
Listing .: GCC ..
.LC0:
.string "hi! %d, %d, %d\n"
f:
push ebp
mov ebp, esp
push ebx
sub esp, 676
lea ebx, [esp+39]
and ebx, -16
mov DWORD PTR [esp+20], 3
mov DWORD PTR [esp+16], 2
mov DWORD PTR [esp+12], 1
mov DWORD PTR [esp+8], OFFSET FLAT:.LC0 ; "hi! %d, %d, %d\n"
mov DWORD PTR [esp+4], 600
mov DWORD PTR [esp], ebx
mov eax, DWORD PTR gs:20 ; canary
mov DWORD PTR [ebp-12], eax
xor eax, eax
call _snprintf
mov DWORD PTR [esp], ebx
call puts
mov eax, DWORD PTR [ebp-12]
xor eax, DWORD PTR gs:20 ; canary
jne .L5
mov ebx, DWORD PTR [ebp-4]
leave
ret
.L5:
call __stack_chk_fail
Random value is located in gs:20. It is to be written on the stack and then, at the function end, value in the stack is
compared with correct canary in gs:20. If values are not equal to each other, __stack_chk_fail function will be called
and we will see something like that in console (Ubuntu . x):
*** buffer overflow detected ***: ./2_1 terminated
======= Backtrace: =========
/lib/i386-linux-gnu/libc.so.6(__fortify_fail+0x63)[0xb7699bc3]
/lib/i386-linux-gnu/libc.so.6(+0x10593a)[0xb769893a]
/lib/i386-linux-gnu/libc.so.6(+0x105008)[0xb7698008]
/lib/i386-linux-gnu/libc.so.6(_IO_default_xsputn+0x8c)[0xb7606e5c]
/lib/i386-linux-gnu/libc.so.6(_IO_vfprintf+0x165)[0xb75d7a45]
/lib/i386-linux-gnu/libc.so.6(__vsprintf_chk+0xc9)[0xb76980d9]
/lib/i386-linux-gnu/libc.so.6(__sprintf_chk+0x2f)[0xb7697fef]
./2_1[0x8048404]
/lib/i386-linux-gnu/libc.so.6(__libc_start_main+0xf5)[0xb75ac935]
======= Memory map: ========
08048000-08049000 r-xp 00000000 08:01 2097586 /home/dennis/2_1
08049000-0804a000 r--p 00000000 08:01 2097586 /home/dennis/2_1
0804a000-0804b000 rw-p 00001000 08:01 2097586 /home/dennis/2_1
094d1000-094f2000 rw-p 00000000 00:00 0 [heap]
b7560000-b757b000 r-xp 00000000 08:01 1048602 /lib/i386-linux-gnu/libgcc_s.so.1
b757b000-b757c000 r--p 0001a000 08:01 1048602 /lib/i386-linux-gnu/libgcc_s.so.1
b757c000-b757d000 rw-p 0001b000 08:01 1048602 /lib/i386-linux-gnu/libgcc_s.so.1
b7592000-b7593000 rw-p 00000000 00:00 0
b7593000-b7740000 r-xp 00000000 08:01 1050781 /lib/i386-linux-gnu/libc-2.17.so
b7740000-b7742000 r--p 001ad000 08:01 1050781 /lib/i386-linux-gnu/libc-2.17.so
b7742000-b7743000 rw-p 001af000 08:01 1050781 /lib/i386-linux-gnu/libc-2.17.so
b7743000-b7746000 rw-p 00000000 00:00 0
b775a000-b775d000 rw-p 00000000 00:00 0
b775d000-b775e000 r-xp 00000000 00:00 0 [vdso]
b775e000-b777e000 r-xp 00000000 08:01 1050794 /lib/i386-linux-gnu/ld-2.17.so
132
6.3. Bulllk 0vlkll0w lk01lC1l0n Ml1n0uS Cn/l1lk 6. /kk/\S
b777e000-b777f000 r--p 0001f000 08:01 1050794 /lib/i386-linux-gnu/ld-2.17.so
b777f000-b7780000 rw-p 00020000 08:01 1050794 /lib/i386-linux-gnu/ld-2.17.so
bff35000-bff56000 rw-p 00000000 00:00 0 [stack]
Aborted (core dumped)
gsis so-called segment register, these registers were used widely in MS-DOS and DOS-extenders times. Today, its func-
tion is diferent. If to say briefly, the gs register in Linux is always pointing to the TLS () various information specific to
thread is stored there (by the way, in win environment, the fs register plays the same role, it pointing to TIB
).
More information can be found in Linux source codes (at least in . version), in crcl/x86/|ncloJe/csm/stcckrotector.l
file this variable is described in comments.
18.8.1 optimizin kccde (LLvH) + tbumb-2 mcde
Lets back to our simple array example (.), again, now we can see how LLVM will check canary correctness:
_main
var_64 = -0x64
var_60 = -0x60
var_5C = -0x5C
var_58 = -0x58
var_54 = -0x54
var_50 = -0x50
var_4C = -0x4C
var_48 = -0x48
var_44 = -0x44
var_40 = -0x40
var_3C = -0x3C
var_38 = -0x38
var_34 = -0x34
var_30 = -0x30
var_2C = -0x2C
var_28 = -0x28
var_24 = -0x24
var_20 = -0x20
var_1C = -0x1C
var_18 = -0x18
canary = -0x14
var_10 = -0x10
PUSH {R4-R7,LR}
ADD R7, SP, #0xC
STR.W R8, [SP,#0xC+var_10]!
SUB SP, SP, #0x54
MOVW R0, #aObjc_methtype ; "objc_methtype"
MOVS R2, #0
MOVT.W R0, #0
MOVS R5, #0
ADD R0, PC
LDR.W R8, [R0]
LDR.W R0, [R8]
STR R0, [SP,#0x64+canary]
MOVS R0, #2
STR R2, [SP,#0x64+var_64]
STR R0, [SP,#0x64+var_60]
MOVS R0, #4
STR R0, [SP,#0x64+var_5C]
MOVS R0, #6
STR R0, [SP,#0x64+var_58]
https://en.wikipedia.org/wiki/Win32_Thread_Information_Block
133
6.3. Bulllk 0vlkll0w lk01lC1l0n Ml1n0uS Cn/l1lk 6. /kk/\S
MOVS R0, #8
STR R0, [SP,#0x64+var_54]
MOVS R0, #0xA
STR R0, [SP,#0x64+var_50]
MOVS R0, #0xC
STR R0, [SP,#0x64+var_4C]
MOVS R0, #0xE
STR R0, [SP,#0x64+var_48]
MOVS R0, #0x10
STR R0, [SP,#0x64+var_44]
MOVS R0, #0x12
STR R0, [SP,#0x64+var_40]
MOVS R0, #0x14
STR R0, [SP,#0x64+var_3C]
MOVS R0, #0x16
STR R0, [SP,#0x64+var_38]
MOVS R0, #0x18
STR R0, [SP,#0x64+var_34]
MOVS R0, #0x1A
STR R0, [SP,#0x64+var_30]
MOVS R0, #0x1C
STR R0, [SP,#0x64+var_2C]
MOVS R0, #0x1E
STR R0, [SP,#0x64+var_28]
MOVS R0, #0x20
STR R0, [SP,#0x64+var_24]
MOVS R0, #0x22
STR R0, [SP,#0x64+var_20]
MOVS R0, #0x24
STR R0, [SP,#0x64+var_1C]
MOVS R0, #0x26
STR R0, [SP,#0x64+var_18]
MOV R4, 0xFDA ; "a[%d]=%d\n"
MOV R0, SP
ADDS R6, R0, #4
ADD R4, PC
B loc_2F1C
; second loop begin
loc_2F14
ADDS R0, R5, #1
LDR.W R2, [R6,R5,LSL#2]
MOV R5, R0
loc_2F1C
MOV R0, R4
MOV R1, R5
BLX _printf
CMP R5, #0x13
BNE loc_2F14
LDR.W R0, [R8]
LDR R1, [SP,#0x64+canary]
CMP R0, R1
ITTTT EQ ; canary still correct?
MOVEQ R0, #0
ADDEQ SP, SP, #0x54
LDREQ.W R8, [SP+0x64+var_64],#4
POPEQ {R4-R7,PC}
BLX ___stack_chk_fail
134
6.4. 0nl M0kl w0ku /B0u1 /kk/\S Cn/l1lk 6. /kk/\S
First of all, as we see, LLVM made loop unrolled and all values are written into array one-by-one, already calculated
since LLVM concluded it will be faster. By the way, ARM mode instructions may help to do this even faster, and finding this
way could be your homework.
At the function end wee see canaries comparison that laying in local stack and correct one, to which the R8 register
pointing. If they are equal to each other, -instruction block is triggered by ITTTT EQ, it is writing 0 into R0, function
epilogue and exit. If canaries are not equal, block will not be triggered, and jump to ___stack_chk_fail function will be
occurred, which, as I suppose, will halt execution.
18.4 one mcre wcrd abcut arrays
Now we understand, why it is impossible to write something like that in C/C++ code
:
void f(int size)
{
int a[size];
...
};
Thats just because compiler must know exact array size to allocate space for it in local stack layout or in data segment
(in case of global variable) on compiling stage.
If you need array of arbitrary size, allocate it by malloc(), then access allocated memory block as array of variables of
type you need. Or use C standard feature [, ../], but it will be looks like alloca() (..) internally.
18.$ Hultidimensicnal arrays
Internally, multidimensional array is essentially the same thing as linear array.
Since computer memory in linear, it is one-dimensional array. But this one-dimensional array can be easily represented
as multidimensional for convenience.
For example, that is howa[3][4] array elements will be placed in one-dimensional array of cells:
[][]
[][]
[][]
[][]
[][]
[][]
[][]
[][]
[][]
[][]
[][]
[][]
That is how two-dimensional array with one-dimensional (memory) array index numbers can be represented:
So, in order to address elements we need, first multiply first index by (matrix width) and then add second index. Thats
called row-mcjor orJer, and this method of arrays and matrices representation is used in at least in C/C++, Python. row-mcjor
orJer termin plain English language means: first, write elements of first row, then second row. . . and finally elements of last
row.
Another methodof representation calledcolomn-mcjor orJer (array indices used in reverse order) andit is usedat least in
FORTRAN, MATLAB, R. colomn-mcjor orJer term in plain English language means: first, write elements of first column, then
second column . . . and finally elements of last column.
Same thing about multidimensional arrays.
Lets see:
However, it is possible in C standard [, ../]: GCC is actually do this by allocating array dynammically on the stack (like alloca() (..))
135
6.5. Mul1lulMlnSl0n/l /kk/\S Cn/l1lk 6. /kk/\S
Listing .: simple example
#include <stdio.h>
int a[10][20][30];
void insert(int x, int y, int z, int value)
{
a[x][y][z]=value;
};
18.$.1 x88
We got (MSVC ):
Listing .: MSVC
_DATA SEGMENT
COMM _a:DWORD:01770H
_DATA ENDS
PUBLIC _insert
_TEXT SEGMENT
_x$ = 8 ; size = 4
_y$ = 12 ; size = 4
_z$ = 16 ; size = 4
_value$ = 20 ; size = 4
_insert PROC
push ebp
mov ebp, esp
mov eax, DWORD PTR _x$[ebp]
imul eax, 2400 ; eax=600*4*x
mov ecx, DWORD PTR _y$[ebp]
imul ecx, 120 ; ecx=30*4*y
lea edx, DWORD PTR _a[eax+ecx] ; edx=a + 600*4*x + 30*4*y
mov eax, DWORD PTR _z$[ebp]
mov ecx, DWORD PTR _value$[ebp]
mov DWORD PTR [edx+eax*4], ecx ; *(edx+z*4)=value
pop ebp
ret 0
_insert ENDP
_TEXT ENDS
Nothing special. For index calculation, three input arguments are multiplying by formula address = 600 4 x+30 4 y+4z
to represent array as multidimensional. Do not forget the |nt type is -bit ( bytes), so all coeficients must be multiplied by
.
Listing .: GCC ..
public insert
insert proc near
x = dword ptr 8
y = dword ptr 0Ch
z = dword ptr 10h
value = dword ptr 14h
push ebp
mov ebp, esp
push ebx
mov ebx, [ebp+x]
mov eax, [ebp+y]
mov ecx, [ebp+z]
lea edx, [eax+eax] ; edx=y*2
136
6.5. Mul1lulMlnSl0n/l /kk/\S Cn/l1lk 6. /kk/\S
mov eax, edx ; eax=y*2
shl eax, 4 ; eax=(y*2)<<4 = y*2*16 = y*32
sub eax, edx ; eax=y*32 - y*2=y*30
imul edx, ebx, 600 ; edx=x*600
add eax, edx ; eax=eax+edx=y*30 + x*600
lea edx, [eax+ecx] ; edx=y*30 + x*600 + z
mov eax, [ebp+value]
mov dword ptr ds:a[edx*4], eax ; *(a+edx*4)=value
pop ebx
pop ebp
retn
insert endp
GCC compiler does it diferently. For one of operations calculating (30y), GCC produced a code without multiplication
instruction. This is how it done: (y + y) 4 (y + y) = (2y) 4 2y = 2 16 y 2y = 32y 2y = 30y. Thus, for 30y
calculation, only one addition operation used, one bitwise shif operation and one subtraction operation. That works faster.
18.$.2 ARH+ Ncn-cptimizin kccde (LLvH) + tbumb mcde
Listing .: Non-optimizing Xcode (LLVM) + thumb mode
_insert
value = -0x10
z = -0xC
y = -8
x = -4
; allocate place in local stack for 4 values of int type
SUB SP, SP, #0x10
MOV R9, 0xFC2 ; a
ADD R9, PC
LDR.W R9, [R9]
STR R0, [SP,#0x10+x]
STR R1, [SP,#0x10+y]
STR R2, [SP,#0x10+z]
STR R3, [SP,#0x10+value]
LDR R0, [SP,#0x10+value]
LDR R1, [SP,#0x10+z]
LDR R2, [SP,#0x10+y]
LDR R3, [SP,#0x10+x]
MOV R12, 2400
MUL.W R3, R3, R12
ADD R3, R9
MOV R9, 120
MUL.W R2, R2, R9
ADD R2, R3
LSLS R1, R1, #2 ; R1=R1<<2
ADD R1, R2
STR R0, [R1] ; R1 - address of array element
; deallocate place in local stack, allocated for 4 values of int type
ADD SP, SP, #0x10
BX LR
Non-optimizing LLVM saves all variables in local stack, however, it is redundant. Address of array element is calculated
by formula we already figured out.
18.$.8 ARH+ optimizin kccde (LLvH) + tbumb mcde
Listing .: Optimizing Xcode (LLVM) + thumb mode
137
6.5. Mul1lulMlnSl0n/l /kk/\S Cn/l1lk 6. /kk/\S
_insert
MOVW R9, #0x10FC
MOV.W R12, #2400
MOVT.W R9, #0
RSB.W R1, R1, R1,LSL#4 ; R1 - y. R1=y<<4 - y = y*16 - y = y*15
ADD R9, PC ; R9 = pointer to a array
LDR.W R9, [R9]
MLA.W R0, R0, R12, R9 ; R0 - x, R12 - 2400, R9 - pointer to a. R0=x*2400 + ptr to a
ADD.W R0, R0, R1,LSL#3 ; R0 = R0+R1<<3 = R0+R1*8 = x*2400 + ptr to a + y*15*8 =
; ptr to a + y*30*4 + x*600*4
STR.W R3, [R0,R2,LSL#2] ; R2 - z, R3 - value. address=R0+z*4 =
; ptr to a + y*30*4 + x*600*4 + z*4
BX LR
Here is used tricks for replacing multiplication by shif, addition and subtraction we already considered.
Here we also see new instruction for us: RSB (keverse Sobtrcct). It works just as SUB, but swapping operands with each
other. Why? SUB, RSB, are those instructions, to the second operand of which shif coeficient may be applied: (LSL#4). But
this coeficient maybeappliedonlytosecondoperand. Thats finefor commutativeoperations likeadditionor multiplication,
operands may be swapped there without result afecting. But subtraction is non-commutative operation, so, for these cases,
RSB exist.
LDR.W R9, [R9] works like LEA (B..) in x, but here it does nothing, it is redundant. Apparently, compiler not
optimized it.
138
Cn/l1lk 7. Bl1 lllluS
Cbapter 17
8it fields
A lot of functions defining input flags in arguments using bit fields. Of course, it could be substituted by bool-typed variables
set, but it is not frugally.
17.1 5pecific bit cbeckin
17.1.1 x88
Win API example:
HANDLE fh;
fh=CreateFile ("file", GENERIC_WRITE | GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_ALWAYS
, FILE_ATTRIBUTE_NORMAL, NULL);
We got (MSVC ):
Listing .: MSVC
push 0
push 128 ; 00000080H
push 4
push 0
push 1
push -1073741824 ; c0000000H
push OFFSET $SG78813
call DWORD PTR __imp__CreateFileA@28
mov DWORD PTR _fh$[ebp], eax
Lets take a look into WinNT.h:
Listing .: WinNT.h
#define GENERIC_READ (0x80000000L)
#define GENERIC_WRITE (0x40000000L)
#define GENERIC_EXECUTE (0x20000000L)
#define GENERIC_ALL (0x10000000L)
Everythingis clear, GENERIC_READ | GENERIC_WRITE = 0x80000000 | 0x40000000 = 0xC0000000, andthat is value
is used as the second argument for CreateFile()
function.
HowCreateFile() will check flags?
Lets takealookintoKERNEL.DLLinWindows XPSPxandwell findthis fragment of codeinthefunctionCreateFileW:
Listing .: KERNEL.DLL (Windows XP SP x)
.text:7C83D429 test byte ptr [ebp+dwDesiredAccess+3], 40h
.text:7C83D42D mov [ebp+var_8], 1
.text:7C83D434 jz short loc_7C83D417
.text:7C83D436 jmp loc_7C810817
, and it is possible to set a number of arguments which might be passed via registers.
http://ohse.de/uwe/articles/gcc-attributes.html#func-regparm
140
7.. SllClllC Bl1 CnlCAlno Cn/l1lk 7. Bl1 lllluS
Linux . kernel compiled with -mregparm=3 option
.
What it means to us, the first arguments will be passed via EAX, EDX and ECX registers, the rest ones via stack. Of course,
if arguments number is less than , only part of registers are to be used.
So, lets download Linux Kernel .., compile it in Ubuntu: make vmlinux, open it in IDA, find the do_filp_open()
function. At the beginning, we will see (comments are mine):
Listing .: do_filp_open() (linux kernel ..)
do_filp_open proc near
...
push ebp
mov ebp, esp
push edi
push esi
push ebx
mov ebx, ecx
add ebx, 1
sub esp, 98h
mov esi, [ebp+arg_4] ; acc_mode (5th arg)
test bl, 3
mov [ebp+var_80], eax ; dfd (1th arg)
mov [ebp+var_7C], edx ; pathname (2th arg)
mov [ebp+var_78], ecx ; open_flag (3th arg)
jnz short loc_C01EF684
mov ebx, ecx ; ebx <- open_flag
GCC saves first arguments values in local stack. Otherwise, if compiler would not touch these registers, it would be too
tight environment for compilers register allocator.
Lets find this fragment of code:
Listing .: do_filp_open() (linux kernel ..)
loc_C01EF6B4: ; CODE XREF: do_filp_open+4F
test bl, 40h ; O_CREAT
jnz loc_C01EF810
mov edi, ebx
shr edi, 11h
xor edi, 1
and edi, 1
test ebx, 10000h
jz short loc_C01EF6D3
or edi, 2
0x40is what O_CREATmacroequals to. open_flagcheckedfor 0x40bit presence, andif this bit is 1, next JNZinstruction
is triggered.
17.1.2 ARH
O_CREAT bit is checked diferently in Linux kernel ...
Listing .: linux kernel ..
struct file *do_filp_open(int dfd, struct filename *pathname,
const struct open_flags *op)
{
...
filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
...
}
static struct file *path_openat(int dfd, struct filename *pathname,
struct nameidata *nd, const struct open_flags *op, int flags)
http://kernelnewbies.org/Linux_2_6_20#head-042c62f290834eb1fe0a1942bbf5bb9a4accbc8f
.
These modificators are defines, how to shif second operand and by how many bits.
Thus TST R1, R2,LSL R3 instruction works here as R1 (R2 R3).
17.8.8 ARH+ optimizin kccde (LLvH) + tbumb-2 mcde
Almost the same, but here are two LSL.W/TST instructions are used instead of single TST, because, in thumb mode, it is not
possible to define LSL modifier right in TST.
MOV R1, R0
MOVS R0, #0
MOV.W R9, #1
MOVS R3, #0
loc_2F7A
LSL.W R2, R9, R3
TST R2, R1
ADD.W R3, R3, #1
IT NE
ADDNE R0, #1
CMP R3, #32
BNE loc_2F7A
BX LR
17.4 CRC82 calculaticn example
This is very popular table-based CRC hash calculation technique
, but it is also can be said, pointer to the wYear field is passed, and that is the same!
GetSystemTime() writes current year to the WORDpointer pointing to, then shifs bytes ahead, then writes current month,
etc, etc.
The fact the structure fields are just variables locatedside-by-side, I candemonstrate by the following technique. Keeping
in ming SYSTEMTIME structure description, I can rewrite this simple example like this:
#include <windows.h>
#include <stdio.h>
void main()
{
WORD array[8];
GetSystemTime (array);
printf ("%04d-%02d-%02d %02d:%02d:%02d\n",
array[0] /* wYear */, array[1] /* wMonth */, array[3] /* wDay */,
array[4] /* wHour */, array[5] /* wMinute */, array[6] /* wSecond */);
return;
};
Compiler will grumble for a little:
systemtime2.c(7) : warning C4133: function : incompatible types - from WORD [8] to
LPSYSTEMTIME
But nevertheless, it will produce this code:
Listing .: MSVC
$SG78573 DB %04d-%02d-%02d %02d:%02d:%02d, 0aH, 00H
_array$ = -16 ; size = 16
_main PROC
.
Lets take a simple example:
#include <stdio.h>
struct s
{
char a;
int b;
char c;
int d;
};
void f(struct s s)
{
printf ("a=%d; b=%d; c=%d; d=%d\n", s.a, s.b, s.c, s.d);
};
As we see, we have two clcr fields (each is exactly one byte) and two more |nt (each - bytes).
18.4.1 x88
Thats all compiling into:
and GCC
.
Lets back to the SYSTEMTIME structure consisting in -bit fields. How our compiler know to pack them on -byte align-
ment boundary?
WinNT.h file has this:
Listing .: WinNT.h
#include "pshpack1.h"
Structure-Packing Pragmas
162
8.4. lllluS l/CAlno ln S1kuC1ukl Cn/l1lk 8. S1kuC1uklS
And this:
Listing .: WinNT.h
#include "pshpack4.h" // 4 byte packing is the default
The file PshPack.h looks like:
Listing .: PshPack.h
#if ! (defined(lint) || defined(RC_INVOKED))
#if ( _MSC_VER >= 800 && !defined(_M_I86)) || defined(_PUSHPOP_SUPPORTED)
#pragma warning(disable:4103)
#if !(defined( MIDL_PASS )) || defined( __midl )
#pragma pack(push,1)
#else
#pragma pack(1)
#endif
#else
#pragma pack(1)
#endif
#endif /* ! (defined(lint) || defined(RC_INVOKED)) */
Thats how compiler will pack structures defined afer #pragma pack.
18.4.2 ARH+ optimizin Keil + tbumb mcde
Listing .: Optimizing Keil + thumb mode
.text:0000003E exit ; CODE XREF: f+16
.text:0000003E 05 B0 ADD SP, SP, #0x14
.text:00000040 00 BD POP {PC}
.text:00000280 f
.text:00000280
.text:00000280 var_18 = -0x18
.text:00000280 a = -0x14
.text:00000280 b = -0x10
.text:00000280 c = -0xC
.text:00000280 d = -8
.text:00000280
.text:00000280 0F B5 PUSH {R0-R3,LR}
.text:00000282 81 B0 SUB SP, SP, #4
.text:00000284 04 98 LDR R0, [SP,#16] ; d
.text:00000286 02 9A LDR R2, [SP,#8] ; b
.text:00000288 00 90 STR R0, [SP]
.text:0000028A 68 46 MOV R0, SP
.text:0000028C 03 7B LDRB R3, [R0,#12] ; c
.text:0000028E 01 79 LDRB R1, [R0,#4] ; a
.text:00000290 59 A0 ADR R0, aADBDCDDD ; "a=%d; b=%d; c=%d; d=%d\n"
.text:00000292 05 F0 AD FF BL __2printf
.text:00000296 D2 E6 B exit
As we may recall, here a structure passed instead of pointer to structure, and since first function arguments in ARM are
passed via registers, so then structure fields are passed via R0-R3.
LDRB loads one byte from memory and extending it to -bit, taking into account its sign. This is akin to MOVSX (..)
instruction in x. Here it is used for loading fields a and c from structure.
One more thing we spot easily, insteadof functionepilogue, here is jumpto another functions epilogue! Indeed, that was
quite diferent function, not related in any way to our function, however, it has exactly the same epilogue (probably because,
it hold local variables too (5 4 = 0x14)). Also it is located nearly (take a look on addresses). Indeed, there is no diference,
which epilogue to execute, if it works just as we need. Apparently, Keil decides to reuse a part of another function by a reason
of economy. Epilogue takes bytes while jump only .
163
8.5. nlS1lu S1kuC1uklS Cn/l1lk 8. S1kuC1uklS
18.4.8 ARH+ optimizin kccde (LLvH) + tbumb-2 mcde
Listing .: Optimizing Xcode (LLVM) + thumb- mode
var_C = -0xC
PUSH {R7,LR}
MOV R7, SP
SUB SP, SP, #4
MOV R9, R1 ; b
MOV R1, R0 ; a
MOVW R0, #0xF10 ; "a=%d; b=%d; c=%d; d=%d\n"
SXTB R1, R1 ; prepare a
MOVT.W R0, #0
STR R3, [SP,#0xC+var_C] ; place d to stack for printf()
ADD R0, PC ; format-string
SXTB R3, R2 ; prepare c
MOV R2, R9 ; b
BLX _printf
ADD SP, SP, #4
POP {R7,PC}
SXTB (S|neJ lxtenJ Byte) is analogous to MOVSX (..) in x as well, but works not with memory, but with register. All
the rest just the same.
18.$ Nested structures
Now what about situations when one structure defines another structure inside?
#include <stdio.h>
struct inner_struct
{
int a;
int b;
};
struct outer_struct
{
char a;
int b;
struct inner_struct c;
char d;
int e;
};
void f(struct outer_struct s)
{
printf ("a=%d; b=%d; c.a=%d; c.b=%d; d=%d; e=%d\n",
s.a, s.b, s.c.a, s.c.b, s.d, s.e);
};
. . . in this case, both inner_struct fields will be placed between a,b and d,e fields of outer_struct.
Lets compile (MSVC ):
Listing .: MSVC
_s$ = 8 ; size = 24
_f PROC
push ebp
mov ebp, esp
mov eax, DWORD PTR _s$[ebp+20] ; e
push eax
164
8.6. Bl1 lllluS ln S1kuC1ukl Cn/l1lk 8. S1kuC1uklS
movsx ecx, BYTE PTR _s$[ebp+16] ; d
push ecx
mov edx, DWORD PTR _s$[ebp+12] ; c.b
push edx
mov eax, DWORD PTR _s$[ebp+8] ; c.a
push eax
mov ecx, DWORD PTR _s$[ebp+4] ; b
push ecx
movsx edx, BYTE PTR _s$[ebp] ;a
push edx
push OFFSET $SG2466
call _printf
add esp, 28
pop ebp
ret 0
_f ENDP
One curious point here is that by looking onto this assembly code, we do not even see that another structure was used
inside of it! Thus, we would say, nested structures are finally unfolds into l|necr or one-J|mens|oncl structure.
Of course, if to replace struct inner_struct c; declaration to struct inner_struct *c; (thus making a pointer
here) situation will be quite diferent.
18.8 8it fields in structure
18.8.1 CUlb example
C/C++ language allow to define exact number of bits for each structure fields. It is very useful if one needs to save memory
space. For example, one bit is enough for variable of bool type. But of course, it is not rational if speed is important.
Lets consider CPUID
instruction example. This instruction returning information about current CPU and its features.
If the EAX is set to before instruction execution, CPUID will return this information packed into the EAX register:
: Stepping
: Model
: Family
: Processor Type
: Extended Model
: Extended Family
MSVC has CPUID macro, but GCC .. has not. So lets make this function by yourself for GCC with the help of its
built-in assembler
.
#include <stdio.h>
#ifdef __GNUC__
static inline void cpuid(int code, int *a, int *b, int *c, int *d) {
asm volatile("cpuid":"=a"(*a),"=b"(*b),"=c"(*c),"=d"(*d):"a"(code));
}
#endif
#ifdef _MSC_VER
#include <intrin.h>
#endif
struct CPUID_1_EAX
{
unsigned int stepping:4;
unsigned int model:4;
unsigned int family_id:4;
unsigned int processor_type:2;
http://en.wikipedia.org/wiki/CPUID
, atexit()
;
thread starting: CreateThread() (win), pthread_create() (POSIX);
a lot of win functions, e.g. EnumChildWindows()
.
So, qsort() function is a C/C++ standard library quicksort implementation. The functions is able to sort anything, any
types of data, if you have a function for two elements comparison and qsort() is able to call it.
The comparison function can be defined as:
int (*compare)(const void *, const void *)
Lets use slightly modified example I found here:
/* ex3 Sorting ints with qsort */
#include <stdio.h>
#include <stdlib.h>
if (*a==*b)
return 0;
else
if (*a < *b)
return -1;
else
return 1;
}
http://en.wikipedia.org/wiki/Callback_(computer_science)
http://en.wikipedia.org/wiki/Qsort_(C_standard_library)
http://www.opengroup.org/onlinepubs/009695399/functions/atexit.html
http://en.wikipedia.org/wiki/Signal.h
http://msdn.microsoft.com/en-us/library/ms633494(VS.85).aspx
175
20.. MSvC Cn/l1lk 20. l0ln1lkS 10 lunC1l0nS
/* Sort the array */
qsort(numbers,10,sizeof(int),comp) ;
for (i=0;i<9;i++)
printf("Number = %d\n",numbers[ i ]) ;
return 0;
}
20.1 H5vC
Lets compile it in MSVC (I omitted some parts for the sake of brevity) with /Ox option:
Listing .: Optimizing MSVC : /Ox /GS- /MD
__a$ = 8 ; size = 4
__b$ = 12 ; size = 4
_comp PROC
mov eax, DWORD PTR __a$[esp-4]
mov ecx, DWORD PTR __b$[esp-4]
mov eax, DWORD PTR [eax]
mov ecx, DWORD PTR [ecx]
cmp eax, ecx
jne SHORT $LN4@comp
xor eax, eax
ret 0
$LN4@comp:
xor edx, edx
cmp eax, ecx
setge dl
lea eax, DWORD PTR [edx+edx-1]
ret 0
_comp ENDP
_numbers$ = -40 ; size = 40
_argc$ = 8 ; size = 4
_argv$ = 12 ; size = 4
_main PROC
sub esp, 40 ; 00000028H
push esi
push OFFSET _comp
push 4
lea eax, DWORD PTR _numbers$[esp+52]
push 10 ; 0000000aH
push eax
mov DWORD PTR _numbers$[esp+60], 1892 ; 00000764H
mov DWORD PTR _numbers$[esp+64], 45 ; 0000002dH
mov DWORD PTR _numbers$[esp+68], 200 ; 000000c8H
mov DWORD PTR _numbers$[esp+72], -98 ; ffffff9eH
mov DWORD PTR _numbers$[esp+76], 4087 ; 00000ff7H
mov DWORD PTR _numbers$[esp+80], 5
mov DWORD PTR _numbers$[esp+84], -12345 ; ffffcfc7H
mov DWORD PTR _numbers$[esp+88], 1087 ; 0000043fH
mov DWORD PTR _numbers$[esp+92], 88 ; 00000058H
mov DWORD PTR _numbers$[esp+96], -100000 ; fffe7960H
call _qsort
add esp, 16 ; 00000010H
...
Nothing surprising so far. As a fourth argument, an address of label _comp is passed, that is just a place where function
comp() located.
176
20.. MSvC Cn/l1lk 20. l0ln1lkS 10 lunC1l0nS
Howqsort() calling it?
Lets take a look into this function located in MSVCR.DLL (a MSVC DLL module with C standard library functions):
Listing .: MSVCR.DLL
.text:7816CBF0 ; void __cdecl qsort(void *, unsigned int, unsigned int, int (__cdecl *)(const
void *, const void *))
.text:7816CBF0 public _qsort
.text:7816CBF0 _qsort proc near
.text:7816CBF0
.text:7816CBF0 lo = dword ptr -104h
.text:7816CBF0 hi = dword ptr -100h
.text:7816CBF0 var_FC = dword ptr -0FCh
.text:7816CBF0 stkptr = dword ptr -0F8h
.text:7816CBF0 lostk = dword ptr -0F4h
.text:7816CBF0 histk = dword ptr -7Ch
.text:7816CBF0 base = dword ptr 4
.text:7816CBF0 num = dword ptr 8
.text:7816CBF0 width = dword ptr 0Ch
.text:7816CBF0 comp = dword ptr 10h
.text:7816CBF0
.text:7816CBF0 sub esp, 100h
....
.text:7816CCE0 loc_7816CCE0: ; CODE XREF: _qsort+B1
.text:7816CCE0 shr eax, 1
.text:7816CCE2 imul eax, ebp
.text:7816CCE5 add eax, ebx
.text:7816CCE7 mov edi, eax
.text:7816CCE9 push edi
.text:7816CCEA push ebx
.text:7816CCEB call [esp+118h+comp]
.text:7816CCF2 add esp, 8
.text:7816CCF5 test eax, eax
.text:7816CCF7 jle short loc_7816CD04
compis fourth function argument. Here the control is just passed to the address in the comp argument. Before it, two
arguments prepared for comp(). Its result is checked afer its execution.
Thats why it is dangerous to use pointers to functions. First of all, if you call qsort() with incorrect pointer to function,
qsort() may pass control to incorrect point, a process may crash and this bug will be hard to find.
Secondreasonis the callback functiontypes must comply strictly, calling wrong functionwithwrong arguments of wrong
types may lead to serious problems, however, process crashing is not a big problem big problem is to determine a reason
of crashing because compiler may be silent about potential trouble while compiling.
20.1.1 H5vC + ollybb
Lets load our example into OllyDbg and set breakpoint on comp() function.
Howvalues are comparedwe cansee at the very first comp()call: fig. .. OllyDbg shows comparedvalues inthe window
under code window, for convenience. We can also see that the SP pointing to RA where the place in qsort() function is
(actually located in MSVCR100.DLL).
By tracing (F) until RETN instruction, and pressing F one more time, we returning into qsort() function: fig. .. That
was a call to comparison function.
Here is also screenshot of the moment of the second call of comp()now values to be compared are diferent: fig. ..
177
20.. MSvC Cn/l1lk 20. l0ln1lkS 10 lunC1l0nS
Figure .: OllyDbg: first call of comp()
Figure .: OllyDbg: the code in qsort() right afer comp() call
Figure .: OllyDbg: second call of comp()
20.1.2 H5vC + tracer
Lets also see, which pairs are compared. These numbers are being sorted: , , , -, , , -, , ,
-.
I found the address of the first CMP instruction in comp(), it is 0x0040100C and Im setting breakpoint on it:
tracer.exe -l:17_1.exe bpx=17_1.exe!0x0040100C
Im getting information about registers at breakpoint:
PID=4336|New process 17_1.exe
(0) 17_1.exe!0x40100c
EAX=0x00000764 EBX=0x0051f7c8 ECX=0x00000005 EDX=0x00000000
ESI=0x0051f7d8 EDI=0x0051f7b4 EBP=0x0051f794 ESP=0x0051f67c
178
20.. MSvC Cn/l1lk 20. l0ln1lkS 10 lunC1l0nS
EIP=0x0028100c
FLAGS=IF
(0) 17_1.exe!0x40100c
EAX=0x00000005 EBX=0x0051f7c8 ECX=0xfffe7960 EDX=0x00000000
ESI=0x0051f7d8 EDI=0x0051f7b4 EBP=0x0051f794 ESP=0x0051f67c
EIP=0x0028100c
FLAGS=PF ZF IF
(0) 17_1.exe!0x40100c
EAX=0x00000764 EBX=0x0051f7c8 ECX=0x00000005 EDX=0x00000000
ESI=0x0051f7d8 EDI=0x0051f7b4 EBP=0x0051f794 ESP=0x0051f67c
EIP=0x0028100c
FLAGS=CF PF ZF IF
...
I filtered out EAX and ECX and got:
EAX=0x00000764 ECX=0x00000005
EAX=0x00000005 ECX=0xfffe7960
EAX=0x00000764 ECX=0x00000005
EAX=0x0000002d ECX=0x00000005
EAX=0x00000058 ECX=0x00000005
EAX=0x0000043f ECX=0x00000005
EAX=0xffffcfc7 ECX=0x00000005
EAX=0x000000c8 ECX=0x00000005
EAX=0xffffff9e ECX=0x00000005
EAX=0x00000ff7 ECX=0x00000005
EAX=0x00000ff7 ECX=0x00000005
EAX=0xffffff9e ECX=0x00000005
EAX=0xffffff9e ECX=0x00000005
EAX=0xffffcfc7 ECX=0xfffe7960
EAX=0x00000005 ECX=0xffffcfc7
EAX=0xffffff9e ECX=0x00000005
EAX=0xffffcfc7 ECX=0xfffe7960
EAX=0xffffff9e ECX=0xffffcfc7
EAX=0xffffcfc7 ECX=0xfffe7960
EAX=0x000000c8 ECX=0x00000ff7
EAX=0x0000002d ECX=0x00000ff7
EAX=0x0000043f ECX=0x00000ff7
EAX=0x00000058 ECX=0x00000ff7
EAX=0x00000764 ECX=0x00000ff7
EAX=0x000000c8 ECX=0x00000764
EAX=0x0000002d ECX=0x00000764
EAX=0x0000043f ECX=0x00000764
EAX=0x00000058 ECX=0x00000764
EAX=0x000000c8 ECX=0x00000058
EAX=0x0000002d ECX=0x000000c8
EAX=0x0000043f ECX=0x000000c8
EAX=0x000000c8 ECX=0x00000058
EAX=0x0000002d ECX=0x000000c8
EAX=0x0000002d ECX=0x00000058
Thats pairs. Therefore, quick sort algorithm needs comparison operations for sorting these numbers.
20.1.8 H5vC + tracer (ccde ccverae)
We can also use tracers feature to collect all possible registers values and show them in IDA.
Lets trace all instructions in comp() function:
tracer.exe -l:17_1.exe bpf=17_1.exe!0x00401000,trace:cc
We getting .idc-script for loading into IDA and load it: fig. ..
IDA gave the function name (PtFuncCompare) it seems, because IDA sees that pointer to this function is passed into
qsort().
179
20.2. oCC Cn/l1lk 20. l0ln1lkS 10 lunC1l0nS
We see that a and b pointers are points to various places in array, but step between points is indeed, -bit values are
stored in the array.
We see that the instructions at 0x401010 and 0x401012 was never executed (so they leaved as white): indeed, comp()
was never returned , because there no equal elements.
Figure .: tracer and IDA. N.B.: some values are cutted at right
20.2 6CC
Not a big diference:
Listing .: GCC
lea eax, [esp+40h+var_28]
mov [esp+40h+var_40], eax
mov [esp+40h+var_28], 764h
mov [esp+40h+var_24], 2Dh
mov [esp+40h+var_20], 0C8h
mov [esp+40h+var_1C], 0FFFFFF9Eh
mov [esp+40h+var_18], 0FF7h
mov [esp+40h+var_14], 5
mov [esp+40h+var_10], 0FFFFCFC7h
mov [esp+40h+var_C], 43Fh
mov [esp+40h+var_8], 58h
mov [esp+40h+var_4], 0FFFE7960h
mov [esp+40h+var_34], offset comp
mov [esp+40h+var_38], 4
mov [esp+40h+var_3C], 0Ah
call _qsort
comp() function:
public comp
comp proc near
arg_0 = dword ptr 8
arg_4 = dword ptr 0Ch
push ebp
180
20.2. oCC Cn/l1lk 20. l0ln1lkS 10 lunC1l0nS
mov ebp, esp
mov eax, [ebp+arg_4]
mov ecx, [ebp+arg_0]
mov edx, [eax]
xor eax, eax
cmp [ecx], edx
jnz short loc_8048458
pop ebp
retn
loc_8048458:
setnl al
movzx eax, al
lea eax, [eax+eax-1]
pop ebp
retn
comp endp
qsort() implementation is located in the libc.so.6 and it is in fact just a wrapper
for qsort_r().
It will call then quicksort(), where our defined function will be called via passed pointer:
Listing .: (file libc.so., glibc version..)
.text:0002DDF6 mov edx, [ebp+arg_10]
.text:0002DDF9 mov [esp+4], esi
.text:0002DDFD mov [esp], edi
.text:0002DE00 mov [esp+8], edx
.text:0002DE04 call [ebp+arg_C]
...
20.2.1 6CC + 6b8 (witb scurce ccde)
Obviously, we have a C-source code of our example (), so we can set breakpoint (b) on line number (ththe line where
first comparison is occurred). We also need to compile example with debugging information included (-g), so the table with
addresses and corresponding line numbers is present. We can also print values by variable name (p): debugging information
also has information about which register and/or local stack element contain which variable.
We can also see stack (bt) and find out that there are some intermediate function msort_with_tmp() used in Glibc.
Listing .: GDB session
dennis@ubuntuvm:~/polygon$ gcc 17_1.c -g
dennis@ubuntuvm:~/polygon$ gdb ./a.out
GNU gdb (GDB) 7.6.1-ubuntu
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "i686-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /home/dennis/polygon/a.out...done.
(gdb) b 17_1.c:11
Breakpoint 1 at 0x804845f: file 17_1.c, line 11.
(gdb) run
Starting program: /home/dennis/polygon/./a.out
Breakpoint 1, comp (_a=0xbffff0f8, _b=_b@entry=0xbffff0fc) at 17_1.c:11
11 if (*a==*b)
(gdb) p *a
$1 = 1892
By the way, -bit values are passed as pairs in -bit environment just as the same
185
2.2. Mul1llllC/1l0n, ulvlSl0n Cn/l1lk 2. 64-Bl1 v/lulS ln 32-Bl1 lnvlk0nMln1
push eax
push OFFSET $SG1436 ; %I64d, 0aH, 00H
call _printf
add esp, 28
ret 0
_f1_test ENDP
_f2 PROC
mov eax, DWORD PTR _a$[esp-4]
sub eax, DWORD PTR _b$[esp-4]
mov edx, DWORD PTR _a$[esp]
sbb edx, DWORD PTR _b$[esp]
ret 0
_f2 ENDP
We may see in the f1_test() function as each -bit value is passed by two -bit values, high part first, then low part.
Addition and subtraction occurring by pairs as well.
While addition, low -bit part are added first. If carry was occurred while addition, CF flag is set. The next ADC instruc-
tion adds high parts of values, but also adding if CF=.
Subtraction is also occurred by pairs. The very first SUB may also turn CF flag on, which will be checked in the subsequent
SBB instruction: if carry flag is on, then will also be subtracted from the result.
In a -bit environment, -bit values are returned from a functions in EDX:EAX registers pair. It is easily can be seen how
f1() function is then passed to printf().
Listing .: GCC .. -O -fno-inline
_f1:
mov eax, DWORD PTR [esp+12]
mov edx, DWORD PTR [esp+16]
add eax, DWORD PTR [esp+4]
adc edx, DWORD PTR [esp+8]
ret
_f1_test:
sub esp, 28
mov DWORD PTR [esp+8], 1972608889 ; 75939f79H
mov DWORD PTR [esp+12], 5461 ; 00001555H
mov DWORD PTR [esp], 1942892530 ; 73ce2ff2H
mov DWORD PTR [esp+4], 2874 ; 00000b3aH
call _f1
mov DWORD PTR [esp+4], eax
mov DWORD PTR [esp+8], edx
mov DWORD PTR [esp], OFFSET FLAT:LC0 ; "%lld\12\0"
call _printf
add esp, 28
ret
_f2:
mov eax, DWORD PTR [esp+4]
mov edx, DWORD PTR [esp+8]
sub eax, DWORD PTR [esp+12]
sbb edx, DWORD PTR [esp+16]
ret
GCC code is the same.
21.2 Hultiplicaticn, divisicn
186
2.2. Mul1llllC/1l0n, ulvlSl0n Cn/l1lk 2. 64-Bl1 v/lulS ln 32-Bl1 lnvlk0nMln1
#include <stdint.h>
uint64_t f3 (uint64_t a, uint64_t b)
{
return a*b;
};
uint64_t f4 (uint64_t a, uint64_t b)
{
return a/b;
};
uint64_t f5 (uint64_t a, uint64_t b)
{
return a % b;
};
Listing .: MSVC /Ox /Ob
_a$ = 8 ; size = 8
_b$ = 16 ; size = 8
_f3 PROC
push DWORD PTR _b$[esp]
push DWORD PTR _b$[esp]
push DWORD PTR _a$[esp+8]
push DWORD PTR _a$[esp+8]
call __allmul ; long long multiplication
ret 0
_f3 ENDP
_a$ = 8 ; size = 8
_b$ = 16 ; size = 8
_f4 PROC
push DWORD PTR _b$[esp]
push DWORD PTR _b$[esp]
push DWORD PTR _a$[esp+8]
push DWORD PTR _a$[esp+8]
call __aulldiv ; unsigned long long division
ret 0
_f4 ENDP
_a$ = 8 ; size = 8
_b$ = 16 ; size = 8
_f5 PROC
push DWORD PTR _b$[esp]
push DWORD PTR _b$[esp]
push DWORD PTR _a$[esp+8]
push DWORD PTR _a$[esp+8]
call __aullrem ; unsigned long long remainder
ret 0
_f5 ENDP
Multiplication and division is more complex operation, so usually, the compiler embedds calls to the library functions
doing that.
These functions meaning are here: E.
Listing .: GCC .. -O -fno-inline
_f3:
push ebx
mov edx, DWORD PTR [esp+8]
187
2.3. Snll1lno klon1 Cn/l1lk 2. 64-Bl1 v/lulS ln 32-Bl1 lnvlk0nMln1
mov eax, DWORD PTR [esp+16]
mov ebx, DWORD PTR [esp+12]
mov ecx, DWORD PTR [esp+20]
imul ebx, eax
imul ecx, edx
mul edx
add ecx, ebx
add edx, ecx
pop ebx
ret
_f4:
sub esp, 28
mov eax, DWORD PTR [esp+40]
mov edx, DWORD PTR [esp+44]
mov DWORD PTR [esp+8], eax
mov eax, DWORD PTR [esp+32]
mov DWORD PTR [esp+12], edx
mov edx, DWORD PTR [esp+36]
mov DWORD PTR [esp], eax
mov DWORD PTR [esp+4], edx
call ___udivdi3 ; unsigned division
add esp, 28
ret
_f5:
sub esp, 28
mov eax, DWORD PTR [esp+40]
mov edx, DWORD PTR [esp+44]
mov DWORD PTR [esp+8], eax
mov eax, DWORD PTR [esp+32]
mov DWORD PTR [esp+12], edx
mov edx, DWORD PTR [esp+36]
mov DWORD PTR [esp], eax
mov DWORD PTR [esp+4], edx
call ___umoddi3 ; unsigned modulo
add esp, 28
ret
GCC doing almost the same, but multiplication code is inlined right in the function, thinking it could be more eficient.
GCC has diferent library function names: D.
21.8 5biin ribt
#include <stdint.h>
uint64_t f6 (uint64_t a)
{
return a>>7;
};
Listing .: MSVC /Ox /Ob
_a$ = 8 ; size = 8
_f6 PROC
mov eax, DWORD PTR _a$[esp-4]
mov edx, DWORD PTR _a$[esp]
shrd eax, edx, 7
shr edx, 7
ret 0
188
2.4. C0nvlk1lno 0l 32-Bl1 v/lul ln10 64-Bl1 0nl Cn/l1lk 2. 64-Bl1 v/lulS ln 32-Bl1 lnvlk0nMln1
_f6 ENDP
Listing .: GCC .. -O -fno-inline
_f6:
mov edx, DWORD PTR [esp+8]
mov eax, DWORD PTR [esp+4]
shrd eax, edx, 7
shr edx, 7
ret
Shifing also occurring in two passes: first lower part is shifing, then higher part. But the lower part is shifing with the
help of SHRD instruction, it shifing EDX value by bits, but pulling newbits fromEAX, i.e., fromthe higher part. Higher part is
shifing using more popular SHR instruction: indeed, freed bits in the higher part should be just filled with zeroes.
21.4 Ccnvertin cf 82-bit value intc 84-bit cne
#include <stdint.h>
int64_t f7 (int64_t a, int64_t b, int32_t c)
{
return a*b+c;
};
int64_t f7_main ()
{
return f7(12345678901234, 23456789012345, 12345);
};
Listing .: MSVC /Ox /Ob
_a$ = 8 ; size = 8
_b$ = 16 ; size = 8
_c$ = 24 ; size = 4
_f7 PROC
push esi
push DWORD PTR _b$[esp+4]
push DWORD PTR _b$[esp+4]
push DWORD PTR _a$[esp+12]
push DWORD PTR _a$[esp+12]
call __allmul ; long long multiplication
mov ecx, eax
mov eax, DWORD PTR _c$[esp]
mov esi, edx
cdq ; input: 32-bit value in EAX; output: 64-bit value in EDX:EAX
add eax, ecx
adc edx, esi
pop esi
ret 0
_f7 ENDP
_f7_main PROC
push 12345 ; 00003039H
push 5461 ; 00001555H
push 1972608889 ; 75939f79H
push 2874 ; 00000b3aH
push 1942892530 ; 73ce2ff2H
call _f7
add esp, 20 ; 00000014H
ret 0
_f7_main ENDP
189
2.4. C0nvlk1lno 0l 32-Bl1 v/lul ln10 64-Bl1 0nl Cn/l1lk 2. 64-Bl1 v/lulS ln 32-Bl1 lnvlk0nMln1
Here we also run into necessity to extend -bit signed value from c into -bit signed. Unsigned values are converted
straightforwardly: all bits in higher part should be set to . But it is not appropriate for signed data types: sign should be
copied into higher part of resulting number. An instruction CDQ doing that here, it takes input value in EAX, extending value
to -bit and leaving it in the EDX:EAX registers pair. In other words, CDQ instruction getting number sign in EAX (by getting
just most significant bit in EAX), and depending of it, setting all -bits in EDX to or . Its operation is somewhat similar to
the MOVSX (..) instruction.
Listing .: GCC .. -O -fno-inline
_f7:
push edi
push esi
push ebx
mov esi, DWORD PTR [esp+16]
mov edi, DWORD PTR [esp+24]
mov ebx, DWORD PTR [esp+20]
mov ecx, DWORD PTR [esp+28]
mov eax, esi
mul edi
imul ebx, edi
imul ecx, esi
mov esi, edx
add ecx, ebx
mov ebx, eax
mov eax, DWORD PTR [esp+32]
add esi, ecx
cdq ; input: 32-bit value in EAX; output: 64-bit value in EDX:EAX
add eax, ebx
adc edx, esi
pop ebx
pop esi
pop edi
ret
_f7_main:
sub esp, 28
mov DWORD PTR [esp+16], 12345 ; 00003039H
mov DWORD PTR [esp+8], 1972608889 ; 75939f79H
mov DWORD PTR [esp+12], 5461 ; 00001555H
mov DWORD PTR [esp], 1942892530 ; 73ce2ff2H
mov DWORD PTR [esp+4], 2874 ; 00000b3aH
call _f7
add esp, 28
ret
GCC generates just the same code as MSVC, but inlines multiplication code right in the function.
See also: -bit values in -bit environment: ..
190
Cn/l1lk 22. SlMu
Cbapter 22
5lHb
SIMD
is an idea of processing group of blocks and keys simultaneously. Lets say, variable of type ons|neJ |nt
on x may hold up to bits, so, it is possible to store there intermediate results for blocks-keys pairs simultaneously,
using + variables of ons|neJ |nt type.
I wrote an utility to brute-force Oracle RDBMS passwords/hashes (ones based on DES), slightly modified bitslice DES al-
gorithm for SSE and AVX now it is possible to encrypt or block-keys pairs simultaneously.
http://conus.info/utils/ops_SIMD/
22.1 vectcrizaticn
Vectorization
, for example, is when you have a loop taking couple of arrays at input and produces one array. Loop body
takes values from input arrays, do something and put result into output array. It is important that there is only one single
operation applied to each element. Vectorization is to process several elements simultaneously.
Vectorization is not very fresh technology: author of this textbook saw it at least on Cray Y-MP supercomputer line from
when played with its lite version Cray Y-MP EL
.
For example:
for (i = 0; i < 1024; i++)
{
C[i] = A[i]*B[i];
}
This fragment of code takes elements from A and B, multiplies them and save result into C.
http://www.darkside.com.au/bitslice/
Wikipedia: vectorization
.
I wrote tiny function:
int f (int sz, int *ar1, int *ar2, int *ar3)
{
for (int i=0; i<sz; i++)
ar3[i]=ar1[i]+ar2[i];
return 0;
};
22.1.1 lntel C++
Lets compile it with Intel C++ .. win:
icl intel.cpp /QaxSSE2 /Faintel.asm /Ox
We got (in IDA):
; int __cdecl f(int, int *, int *, int *)
public ?f@@YAHHPAH00@Z
?f@@YAHHPAH00@Z proc near
var_10 = dword ptr -10h
sz = dword ptr 4
ar1 = dword ptr 8
ar2 = dword ptr 0Ch
ar3 = dword ptr 10h
push edi
push esi
push ebx
push esi
mov edx, [esp+10h+sz]
test edx, edx
jle loc_15B
mov eax, [esp+10h+ar3]
cmp edx, 6
jle loc_143
cmp eax, [esp+10h+ar2]
jbe short loc_36
mov esi, [esp+10h+ar2]
sub esi, eax
lea ecx, ds:0[edx*4]
neg esi
cmp ecx, esi
jbe short loc_55
loc_36: ; CODE XREF: f(int,int *,int *,int *)+21
cmp eax, [esp+10h+ar2]
jnb loc_143
mov esi, [esp+10h+ar2]
sub esi, eax
lea ecx, ds:0[edx*4]
cmp esi, ecx
jb loc_143
More about Intel C++ automatic vectorization: Excerpt: Efective Automatic Vectorization
192
22.. vlC10klZ/1l0n Cn/l1lk 22. SlMu
loc_55: ; CODE XREF: f(int,int *,int *,int *)+34
cmp eax, [esp+10h+ar1]
jbe short loc_67
mov esi, [esp+10h+ar1]
sub esi, eax
neg esi
cmp ecx, esi
jbe short loc_7F
loc_67: ; CODE XREF: f(int,int *,int *,int *)+59
cmp eax, [esp+10h+ar1]
jnb loc_143
mov esi, [esp+10h+ar1]
sub esi, eax
cmp esi, ecx
jb loc_143
loc_7F: ; CODE XREF: f(int,int *,int *,int *)+65
mov edi, eax ; edi = ar1
and edi, 0Fh ; is ar1 16-byte aligned?
jz short loc_9A ; yes
test edi, 3
jnz loc_162
neg edi
add edi, 10h
shr edi, 2
loc_9A: ; CODE XREF: f(int,int *,int *,int *)+84
lea ecx, [edi+4]
cmp edx, ecx
jl loc_162
mov ecx, edx
sub ecx, edi
and ecx, 3
neg ecx
add ecx, edx
test edi, edi
jbe short loc_D6
mov ebx, [esp+10h+ar2]
mov [esp+10h+var_10], ecx
mov ecx, [esp+10h+ar1]
xor esi, esi
loc_C1: ; CODE XREF: f(int,int *,int *,int *)+CD
mov edx, [ecx+esi*4]
add edx, [ebx+esi*4]
mov [eax+esi*4], edx
inc esi
cmp esi, edi
jb short loc_C1
mov ecx, [esp+10h+var_10]
mov edx, [esp+10h+sz]
loc_D6: ; CODE XREF: f(int,int *,int *,int *)+B2
mov esi, [esp+10h+ar2]
lea esi, [esi+edi*4] ; is ar2+i*4 16-byte aligned?
test esi, 0Fh
jz short loc_109 ; yes!
mov ebx, [esp+10h+ar1]
mov esi, [esp+10h+ar2]
193
22.. vlC10klZ/1l0n Cn/l1lk 22. SlMu
loc_ED: ; CODE XREF: f(int,int *,int *,int *)+105
movdqu xmm1, xmmword ptr [ebx+edi*4]
movdqu xmm0, xmmword ptr [esi+edi*4] ; ar2+i*4 is not 16-byte aligned, so load it to
xmm0
paddd xmm1, xmm0
movdqa xmmword ptr [eax+edi*4], xmm1
add edi, 4
cmp edi, ecx
jb short loc_ED
jmp short loc_127
loc_109: ; CODE XREF: f(int,int *,int *,int *)+E3
mov ebx, [esp+10h+ar1]
mov esi, [esp+10h+ar2]
loc_111: ; CODE XREF: f(int,int *,int *,int *)+125
movdqu xmm0, xmmword ptr [ebx+edi*4]
paddd xmm0, xmmword ptr [esi+edi*4]
movdqa xmmword ptr [eax+edi*4], xmm0
add edi, 4
cmp edi, ecx
jb short loc_111
loc_127: ; CODE XREF: f(int,int *,int *,int *)+107
; f(int,int *,int *,int *)+164
cmp ecx, edx
jnb short loc_15B
mov esi, [esp+10h+ar1]
mov edi, [esp+10h+ar2]
loc_133: ; CODE XREF: f(int,int *,int *,int *)+13F
mov ebx, [esi+ecx*4]
add ebx, [edi+ecx*4]
mov [eax+ecx*4], ebx
inc ecx
cmp ecx, edx
jb short loc_133
jmp short loc_15B
loc_143: ; CODE XREF: f(int,int *,int *,int *)+17
; f(int,int *,int *,int *)+3A ...
mov esi, [esp+10h+ar1]
mov edi, [esp+10h+ar2]
xor ecx, ecx
loc_14D: ; CODE XREF: f(int,int *,int *,int *)+159
mov ebx, [esi+ecx*4]
add ebx, [edi+ecx*4]
mov [eax+ecx*4], ebx
inc ecx
cmp ecx, edx
jb short loc_14D
loc_15B: ; CODE XREF: f(int,int *,int *,int *)+A
; f(int,int *,int *,int *)+129 ...
xor eax, eax
pop ecx
pop ebx
pop esi
pop edi
194
22.. vlC10klZ/1l0n Cn/l1lk 22. SlMu
retn
loc_162: ; CODE XREF: f(int,int *,int *,int *)+8C
; f(int,int *,int *,int *)+9F
xor ecx, ecx
jmp short loc_127
?f@@YAHHPAH00@Z endp
SSE-related instructions are:
MOVDQU (Move uncl|neJ uooble QocJworJ)it just load bytes from memory into a XMM-register.
PADDD (/JJ lcckeJ lnteers)adding pairs of -bit numbers and leaving result in first operand. By the way, no
exception raised in case of overflow and no flags will be set, just low -bit of result will be stored. If one of PADDD
operands is address of value in memory, then address must be aligned on a -byte boundary. If it is not aligned,
exception will be occurred
.
MOVDQA (Move /l|neJ uooble QocJworJ)the same as MOVDQU, but requires address of value in memory to be aligned
ona -bit border. If it is not aligned, exceptionwill be raised. MOVDQA works faster thanMOVDQU, but requires aforesaid.
So, these SSE-instructions will be executed only in case if there are more pairs to work on plus pointer ar3 is aligned
on a -byte boundary.
More than that, if ar2 is aligned on a -byte boundary as well, this fragment of code will be executed:
movdqu xmm0, xmmword ptr [ebx+edi*4] ; ar1+i*4
paddd xmm0, xmmword ptr [esi+edi*4] ; ar2+i*4
movdqa xmmword ptr [eax+edi*4], xmm0 ; ar3+i*4
Otherwise, valuefromar2will beloadedintoXMM0usingMOVDQU, it does not requirealignedpointer, but mayworkslower:
movdqu xmm1, xmmword ptr [ebx+edi*4] ; ar1+i*4
movdqu xmm0, xmmword ptr [esi+edi*4] ; ar2+i*4 is not 16-byte aligned, so load it to xmm0
paddd xmm1, xmm0
movdqa xmmword ptr [eax+edi*4], xmm1 ; ar3+i*4
In all other cases, non-SSE code will be executed.
22.1.2 6CC
GCC may also vectorize in a simple cases
.
So, a function loading bytes at once, may step over a border of allocated memory block. Lets consider, OS allocated
(x) bytes at the address xc. Thus, the block is the bytes starting fromaddress xc to xcff
inclusive.
Afer the block, that is, starting fromaddress xc there is nothing at all, e.g., OS not allocated any memory there.
Attempt to access a memory starting from the address will raise exception.
Andlets consider, the programholding a string containing characters almost at the endof block, andthat is not a crime.
xcf h
xcf e
xcfa l
xcfb l
xcfc o
xcfd \x
xcfe random noise
xcff random noise
So, incommonconditions theprogramcallingstrlen()passingit apointer tostringhellolyinginmemory at address
xcf. strlen() will read one byte at a time until xcfd, where zero-byte, and so here it will stop working.
Nowif we implement our own strlen() reading byte at once, starting at any address, will it be aligned or not, MOVDQU
may attempt to load bytes at once at address xcf up to xc, and then exception will be raised. Thats the
situation to be avoided, of course.
So then well work only with the addresses aligned on a byte boundary, what in combination with a knowledge of OS
page size is usually aligned on a -byte boundary too, give us some warranty our function will not read from unallocated
memory.
Lets back to our function.
_mm_setzero_si128()is a macro generating pxor xmm0, xmm0 instruction just clears the XMM0 register
_mm_load_si128()is a macro for MOVDQA, it just loading bytes from the address in the XMM1 register.
_mm_cmpeq_epi8()is a macro for PCMPEQB, is an instruction comparing two XMM-registers bytewise.
http://en.wikipedia.org/wiki/Page_(computer_memory)
199
22.2. SlMu STRLEN() lMlllMln1/1l0n Cn/l1lk 22. SlMu
And if some byte was equals to other, there will be 0xff at this point in the result or if otherwise.
For example.
XMM1: 11223344556677880000000000000000
XMM0: 11ab3444007877881111111111111111
Afer pcmpeqb xmm1, xmm0 execution, the XMM1 register shall contain:
XMM1: ff0000ff0000ffff0000000000000000
In our case, this instruction comparing each -byte block with the block of zero-bytes, was set in the XMM0 register by
pxor xmm0, xmm0.
The next macro is _mm_movemask_epi8() that is PMOVMSKB instruction.
It is very useful if to use it with PCMPEQB.
pmovmskb eax, xmm1
This instruction will set first EAX bit into if most significant bit of the first byte in the XMM1 is 1. In other words, if first byte
of the XMM1 register is 0xff, first EAX bit will be set to too.
If secondbyte inthe XMM1 register is 0xff, thensecondEAX bit will be set to too. Inother words, the instructionis answer
to the question wl|cl bytes |n tle XMM1 cre 0xff? And will prepare bits in the EAX register. Other bits in the EAX register
are to be cleared.
By the way, do not forget about this feature of our algorithm:
There might be bytes on input like hello\x00garbage\x00ab
It is a hello string, terminating zero, and also a random noise in memory.
If we load these bytes into XMM1 and compare themwith zeroed XMM0, we will get something like (I use here order from
MSB
to LSB
):
XMM1: 0000ff00000000000000ff0000000000
This means, the instruction found two zero bytes, and that is not surprising.
PMOVMSKB in our case will prepare EAX like (in binary representation): 00000000000000b.
Obviously, our function must consider only first zero bit and ignore the rest ones.
The next instructionBSF(B|t SccnlorwcrJ). This instructionfindfirst bit set to andstores its positionintofirst operand.
EAX=0010000000100000b
Afer bsf eax, eax instruction execution, EAX will contain , this means, found at th bit position (starting fromzero).
MSVC has a macro for this instruction: _BitScanForward.
Nowit is simple. If zerobyte found, its positionaddedtowhat we already countedandnowwe have ready toreturnresult.
Almost all.
By the way, it is also should be noted, MSVC compiler emitted two loop bodies side by side, for optimization.
By the way, SSE . (appeared in Intel Core i) ofers more instructions where these string manipulations might be even
easier: http://www.strchr.com/strcmp_and_strlen_using_sse_4.2
, SSE, etc) were already present, which can work with float point numbers as well. Number format remaining the same
(IEEE ).
So, x- compilers are usually use SIMD-instructions. It can be said, its a good news, because its easier to work with
them.
We will reuse here examples from the FPU section .
24.1 5imple example
double f (double a, double b)
{
return a/3.14 + b*4.1;
};
Listing .: MSVC x /Ox
__real@4010666666666666 DQ 04010666666666666r ; 4.1
__real@40091eb851eb851f DQ 040091eb851eb851fr ; 3.14
a$ = 8
b$ = 16
f PROC
divsd xmm0, QWORD PTR __real@40091eb851eb851f
mulsd xmm1, QWORD PTR __real@4010666666666666
addsd xmm0, xmm1
ret 0
f ENDP
Input floating point values are passed in XMM0-XMM3 registers, all the restvia stack
.
a is passed in XMM0, bvia XMM1. XMM-registers are -bit (as we know from the section about SIMD), but Jooble
values bit ones, so only lower register half is used.
DIVSD is SSE-instruction, meaning Divide Scalar Double-Precision Floating-Point Values, it just divides one value of
Jooble type by another, stored in the lower halves of operands.
Constants are encoded by compiler in IEEE format.
MULSD and ADDSD works just as the same, but doing multiplication and addition.
The result of Jooble type the function leaves in XMM0 register.
That is how non-optimizing MSVC works:
Listing .: MSVC x
High-Performance Computing
220
Cn/l1lk 27. lnllnl lunC1l0nS
Cbapter 27
lnline functicns
Inlined code is when compiler, instead of placing call instruction to small or tiny function, just placing its body right in-place.
Listing .: Simple example
#include <stdio.h>
int celsius_to_fahrenheit (int celsius)
{
return celsius * 9 / 5 + 32;
};
int main(int argc, char *argv[])
{
int celsius=atol(argv[1]);
printf ("%d\n", celsius_to_fahrenheit (celsius));
};
... is compiled in very predictable way, however, if to turn on GCC optimization (-O), well see:
Listing .: GCC .. -O
_main:
push ebp
mov ebp, esp
and esp, -16
sub esp, 16
call ___main
mov eax, DWORD PTR [ebp+12]
mov eax, DWORD PTR [eax+4]
mov DWORD PTR [esp], eax
call _atol
mov edx, 1717986919
mov DWORD PTR [esp], OFFSET FLAT:LC2 ; "%d\12\0"
lea ecx, [eax+eax*8]
mov eax, ecx
imul edx
sar ecx, 31
sar edx
sub edx, ecx
add edx, 32
mov DWORD PTR [esp+4], edx
call _printf
leave
ret
(Here division is done by multiplication().)
Yes, our small function was just placed before printf() call. Why? It may be faster than executing this functions code
plus calling/returning overhead.
221
Cn/l1lk 27. lnllnl lunC1l0nS
In past, such function must be marked with inline keyword in functions declaration, however, in modern times, these
functions are chosen automatically by compiler.
Another very common automatic optimization is inlining of string functions like strcy(;, strcm(;, etc.
Listing .: Another simple example
bool is_bool (char *s)
{
if (strcmp (s, "true")==0)
return true;
if (strcmp (s, "false")==0)
return false;
assert(0);
};
Listing .: GCC .. -O
_is_bool:
push edi
mov ecx, 5
push esi
mov edi, OFFSET FLAT:LC0 ; "true\0"
sub esp, 20
mov esi, DWORD PTR [esp+32]
repz cmpsb
je L3
mov esi, DWORD PTR [esp+32]
mov ecx, 6
mov edi, OFFSET FLAT:LC1 ; "false\0"
repz cmpsb
seta cl
setb dl
xor eax, eax
cmp cl, dl
jne L8
add esp, 20
pop esi
pop edi
ret
Here is an example of very frequently seen piece of strcmp() code generated by MSVC:
Listing .: MSVC
mov dl, [eax]
cmp dl, [ecx]
jnz short loc_10027FA0
test dl, dl
jz short loc_10027F9C
mov dl, [eax+1]
cmp dl, [ecx+1]
jnz short loc_10027FA0
add eax, 2
add ecx, 2
test dl, dl
jnz short loc_10027F80
loc_10027F9C: ; CODE XREF: f1+448
xor eax, eax
jmp short loc_10027FA5
loc_10027FA0: ; CODE XREF: f1+444
; f1+450
222
Cn/l1lk 27. lnllnl lunC1l0nS
sbb eax, eax
sbb eax, 0FFFFFFFFh
I wrote small IDA script for searching and folding such very frequently seen pieces of inline code:
https://github.com/yurichev/IDA_scripts.
223
Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
Cbapter 28
lnccrrectly disassembled ccde
Practicing reverse engineers ofen dealing with incorrectly disassembled code.
28.1 bisassemblin started inccrrectly (x88)
Unlike ARM and MIPS (where any instruction has length of or bytes), x instructions has variable size, so, any disassem-
bler, starting at the middle of x instruction, may produce incorrect results.
As an example:
add [ebp-31F7Bh], cl
dec dword ptr [ecx-3277Bh]
dec dword ptr [ebp-2CF7Bh]
inc dword ptr [ebx-7A76F33Ch]
fdiv st(4), st
db 0FFh
dec dword ptr [ecx-21F7Bh]
dec dword ptr [ecx-22373h]
dec dword ptr [ecx-2276Bh]
dec dword ptr [ecx-22B63h]
dec dword ptr [ecx-22F4Bh]
dec dword ptr [ecx-23343h]
jmp dword ptr [esi-74h]
xchg eax, ebp
clc
std
db 0FFh
db 0FFh
mov word ptr [ebp-214h], cs
mov word ptr [ebp-238h], ds
mov word ptr [ebp-23Ch], es
mov word ptr [ebp-240h], fs
mov word ptr [ebp-244h], gs
pushf
pop dword ptr [ebp-210h]
mov eax, [ebp+4]
mov [ebp-218h], eax
lea eax, [ebp+4]
mov [ebp-20Ch], eax
mov dword ptr [ebp-2D0h], 10001h
mov eax, [eax-4]
mov [ebp-21Ch], eax
mov eax, [ebp+0Ch]
mov [ebp-320h], eax
mov eax, [ebp+10h]
mov [ebp-31Ch], eax
mov eax, [ebp+4]
mov [ebp-314h], eax
224
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
call ds:IsDebuggerPresent
mov edi, eax
lea eax, [ebp-328h]
push eax
call sub_407663
pop ecx
test eax, eax
jnz short loc_402D7B
There are incorrectly disassembled instructions at the beginning, but eventually, disassembler finds right track.
28.2 Rcwrandcmncise lccks disassembled?
Common properties which can be easily spotted are:
Unusually big instruction dispersion. Most frequent x instructions are PUSH, MOV, CALL, but here we will see in-
structions fromany instruction group: FPU instructions, IN/OUT instructions, rare and systeminstructions, everything
messed up in one single place.
Big and random values, ofsets and immediates.
Jumps having incorrect ofsets ofen jumping into the middle of another instructions.
Listing .: random noise (x)
mov bl, 0Ch
mov ecx, 0D38558Dh
mov eax, ds:2C869A86h
db 67h
mov dl, 0CCh
insb
movsb
push eax
xor [edx-53h], ah
fcom qword ptr [edi-45A0EF72h]
pop esp
pop ss
in eax, dx
dec ebx
push esp
lds esp, [esi-41h]
retf
rcl dword ptr [eax], cl
mov cl, 9Ch
mov ch, 0DFh
push cs
insb
mov esi, 0D9C65E4Dh
imul ebp, [ecx], 66h
pushf
sal dword ptr [ebp-64h], cl
sub eax, 0AC433D64h
out 8Ch, eax
pop ss
sbb [eax], ebx
aas
xchg cl, [ebx+ebx*4+14B31Eh]
jecxz short near ptr loc_58+1
xor al, 0C6h
inc edx
db 36h
pusha
225
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
stosb
test [ebx], ebx
sub al, 0D3h ; L
pop eax
stosb
loc_58: ; CODE XREF: seg000:0000004A
test [esi], eax
inc ebp
das
db 64h
pop ecx
das
hlt
pop edx
out 0B0h, al
lodsb
push ebx
cdq
out dx, al
sub al, 0Ah
sti
outsd
add dword ptr [edx], 96FCBE4Bh
and eax, 0E537EE4Fh
inc esp
stosd
cdq
push ecx
in al, 0CBh
mov ds:0D114C45Ch, al
mov esi, 659D1985h
enter 6FE8h, 0D9h
enter 6FE6h, 0D9h
xchg eax, esi
sub eax, 0A599866Eh
retn
pop eax
dec eax
adc al, 21h ; !
lahf
inc edi
sub eax, 9062EE5Bh
bound eax, [ebx]
loc_A2: ; CODE XREF: seg000:00000120
wait
iret
jnb short loc_D7
cmpsd
iret
jnb short loc_D7
sub ebx, [ecx]
in al, 0Ch
add esp, esp
mov bl, 8Fh
xchg eax, ecx
226
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
int 67h
pop ds
pop ebx
db 36h
xor esi, [ebp-4Ah]
mov ebx, 0EB4F980Ch
repne add bl, dh
imul ebx, [ebp+5616E7A5h], 67A4D1EEh
xchg eax, ebp
scasb
push esp
wait
mov dl, 11h
mov ah, 29h ; )
fist dword ptr [edx]
loc_D7: ; CODE XREF: seg000:000000A4
; seg000:000000A8 ...
dec dword ptr [ebp-5D0E0BA4h]
call near ptr 622FEE3Eh
sbb ax, 5A2Fh
jmp dword ptr cs:[ebx]
xor ch, [edx-5]
inc esp
push edi
xor esp, [ebx-6779D3B8h]
pop eax
int 3 ; Trap to Debugger
rcl byte ptr [ebx-3Eh], cl
xor [edi], bl
sbb al, [edx+ecx*4]
xor ah, [ecx-1DA4E05Dh]
push edi
xor ah, cl
popa
cmp dword ptr [edx-62h], 46h ; F
dec eax
in al, 69h
dec ebx
iret
or al, 6
jns short near ptr loc_D7+3
shl byte ptr [esi], 42h
repne adc [ebx+2Ch], eax
icebp
cmpsd
leave
push esi
jmp short loc_A2
and eax, 0F2E41FE9h
push esi
loop loc_14F
add ah, fs:[edx]
loc_12D: ; CODE XREF: seg000:00000169
mov dh, 0F7h
add [ebx+7B61D47Eh], esp
mov edi, 79F19525h
227
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
rcl byte ptr [eax+22015F55h], cl
cli
sub al, 0D2h ; T
dec eax
mov ds:0A81406F5h, eax
sbb eax, 0A7AA179Ah
in eax, dx
loc_14F: ; CODE XREF: seg000:00000128
and [ebx-4CDFAC74h], ah
pop ecx
push esi
mov bl, 2Dh ; -
in eax, 2Ch
stosd
inc edi
push esp
locret_15E: ; CODE XREF: seg000:loc_1A0
retn 0C432h
and al, 86h
cwde
and al, 8Fh
cmp ebp, [ebp+7]
jz short loc_12D
sub bh, ch
or dword ptr [edi-7Bh], 8A16C0F7h
db 65h
insd
mov al, ds:0A3A5173Dh
dec ecx
push ds
xor al, cl
jg short loc_195
push 6Eh ; n
out 0DDh, al
inc edi
sub eax, 6899BBF1h
leave
rcr dword ptr [ecx-69h], cl
sbb ch, [edi+5EDDCB54h]
loc_195: ; CODE XREF: seg000:0000017F
push es
repne sub ah, [eax-105FF22Dh]
cmc
and ch, al
loc_1A0: ; CODE XREF: seg000:00000217
jnp short near ptr locret_15E+1
or ch, [eax-66h]
add [edi+edx-35h], esi
out dx, al
db 2Eh
call far ptr 1AAh:6832F5DDh
jz short near ptr loc_1DA+1
sbb esp, [edi+2CB02CEFh]
xchg eax, edi
xor [ebx-766342ABh], edx
228
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
loc_1C1: ; CODE XREF: seg000:00000212
cmp eax, 1BE9080h
add [ecx], edi
aad 0
imul esp, [edx-70h], 0A8990126h
or dword ptr [edx+10C33693h], 4Bh
popf
loc_1DA: ; CODE XREF: seg000:000001B2
mov ecx, cs
aaa
mov al, 39h ; 9
adc byte ptr [eax-77F7F1C5h], 0C7h
add [ecx], bl
retn 0DD42h
db 3Eh
mov fs:[edi], edi
and [ebx-24h], esp
db 64h
xchg eax, ebp
push cs
adc eax, [edi+36h]
mov bh, 0C7h
sub eax, 0A710CBE7h
xchg eax, ecx
or eax, 51836E42h
xchg eax, ebx
inc ecx
jb short near ptr loc_21E+3
db 64h
xchg eax, esp
and dh, [eax-31h]
mov ch, 13h
add ebx, edx
jnb short loc_1C1
db 65h
adc al, 0C5h
js short loc_1A0
sbb eax, 887F5BEEh
loc_21E: ; CODE XREF: seg000:00000207
mov eax, 888E1FD6h
mov bl, 90h
cmp [eax], ecx
rep int 61h ; reserved for user interrupt
and edx, [esi-7EB5C9EAh]
fisttp qword ptr [eax+esi*4+38F9BA6h]
jmp short loc_27C
fadd st, st(2)
db 3Eh
mov edx, 54C03172h
retn
db 64h
pop ds
xchg eax, esi
rcr ebx, cl
cmp [di+2Eh], ebx
repne xor [di-19h], dh
229
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
insd
adc dl, [eax-0C4579F7h]
push ss
xor [ecx+edx*4+65h], ecx
mov cl, [ecx+ebx-32E8AC51h]
or [ebx], ebp
cmpsb
lodsb
iret
Listing .: random noise (x-)
lea esi, [rax+rdx*4+43558D29h]
loc_AF3: ; CODE XREF: seg000:0000000000000B46
rcl byte ptr [rsi+rax*8+29BB423Ah], 1
lea ecx, cs:0FFFFFFFFB2A6780Fh
mov al, 96h
mov ah, 0CEh
push rsp
lods byte ptr [esi]
db 2Fh ; /
pop rsp
db 64h
retf 0E993h
cmp ah, [rax+4Ah]
movzx rsi, dword ptr [rbp-25h]
push 4Ah
movzx rdi, dword ptr [rdi+rdx*8]
db 9Ah
rcr byte ptr [rax+1Dh], cl
lodsd
xor [rbp+6CF20173h], edx
xor [rbp+66F8B593h], edx
push rbx
sbb ch, [rbx-0Fh]
stosd
int 87h
db 46h, 4Ch
out 33h, rax
xchg eax, ebp
test ecx, ebp
movsd
leave
push rsp
db 16h
xchg eax, esi
pop rdi
loc_B3D: ; CODE XREF: seg000:0000000000000B5F
mov ds:93CA685DF98A90F9h, eax
jnz short near ptr loc_AF3+6
out dx, eax
cwde
230
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
mov bh, 5Dh ; ]
movsb
pop rbp
db 60h ;
movsxd rbp, dword ptr [rbp-17h]
pop rbx
out 7Dh, al
add eax, 0D79BE769h
db 1Fh
retf 0CAB9h
jl short near ptr loc_B3D+4
sal dword ptr [rbx+rbp+4Dh], 0D3h
mov cl, 41h ; A
imul eax, [rbp-5B77E717h], 1DDE6E5h
imul ecx, ebx, 66359BCCh
xlat
db 60h ;
cmp bl, [rax]
and ebp, [rcx-57h]
stc
sub [rcx+1A533AB4h], al
jmp short loc_C05
db 4Bh ; K
int 3 ; Trap to Debugger
xchg ebx, [rsp+rdx-5Bh]
db 0D6h
mov esp, 0C5BA61F7h
out 0A3h, al ; Interrupt Controller #2, 8259A
add al, 0A6h
pop rbx
cmp bh, fs:[rsi]
and ch, cl
cmp al, 0F3h
db 0Eh
xchg dh, [rbp+rax*4-4CE9621Ah]
stosd
xor [rdi], ebx
stosb
xchg eax, ecx
push rsi
insd
fidiv word ptr [rcx]
xchg eax, ecx
mov dh, 0C0h ; L
xchg eax, esp
push rsi
mov dh, [rdx+rbp+6918F1F3h]
xchg eax, ebp
231
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
out 9Dh, al
loc_BC0: ; CODE XREF: seg000:0000000000000C26
or [rcx-0Dh], ch
int 67h ; - LIM EMS
push rdx
sub al, 43h ; C
test ecx, ebp
test [rdi+71F372A4h], cl
db 7
imul ebx, [rsi-0Dh], 2BB30231h
xor ebx, [rbp-718B6E64h]
jns short near ptr loc_C56+1
ficomp dword ptr [rcx-1Ah]
and eax, 69BEECC7h
mov esi, 37DA40F6h
imul r13, [rbp+rdi*8+529F33CDh], 0FFFFFFFFF35CDD30h
or [rbx], edx
imul esi, [rbx-34h], 0CDA42B87h
db 36h ; 6
db 1Fh
loc_C05: ; CODE XREF: seg000:0000000000000B86
add dh, [rcx]
mov edi, 0DD3E659h
ror byte ptr [rdx-33h], cl
xlat
db 48h
sub rsi, [rcx]
db 1Fh
db 6
xor [rdi+13F5F362h], bh
cmpsb
sub esi, [rdx]
pop rbp
sbb al, 62h ; b
mov dl, 33h ; 3
db 4Dh ; M
db 17h
jns short loc_BC0
push 0FFFFFFFFFFFFFF86h
loc_C2A: ; CODE XREF: seg000:0000000000000C8F
sub [rdi-2Ah], eax
db 0FEh
cmpsb
wait
rcr byte ptr [rax+5Fh], cl
cmp bl, al
pushfq
xchg ch, cl
232
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
db 4Eh ; N
db 37h ; 7
mov ds:0E43F3CCD3D9AB295h, eax
cmp ebp, ecx
jl short loc_C87
retn 8574h
out 3, al ; DMA controller, 8237A-5.
; channel 1 base address and word count
loc_C4C: ; CODE XREF: seg000:0000000000000C7F
cmp al, 0A6h
wait
push 0FFFFFFFFFFFFFFBEh
db 82h
ficom dword ptr [rbx+r10*8]
loc_C56: ; CODE XREF: seg000:0000000000000BDE
jnz short loc_C76
xchg eax, edx
db 26h
wait
iret
push rcx
db 48h ; H
db 9Bh
db 64h ; d
db 3Eh ; >
db 2Fh ; /
mov al, ds:8A7490CA2E9AA728h
stc
db 60h ;
test [rbx+rcx], ebp
int 3 ; Trap to Debugger
xlat
loc_C72: ; CODE XREF: seg000:0000000000000CC6
mov bh, 98h
db 2Eh ; .
db 0DFh
loc_C76: ; CODE XREF: seg000:loc_C56
jl short loc_C91
sub ecx, 13A7CCF2h
movsb
jns short near ptr loc_C4C+1
cmpsd
sub ah, ah
cdq
233
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
db 6Bh ; k
db 5Ah ; Z
loc_C87: ; CODE XREF: seg000:0000000000000C45
or ecx, [rbx+6Eh]
rep in eax, 0Eh ; DMA controller, 8237A-5.
; Clear mask registers.
; Any OUT enables all 4 channels.
cmpsb
jnb short loc_C2A
loc_C91: ; CODE XREF: seg000:loc_C76
scasd
add dl, [rcx+5FEF30E6h]
enter 0FFFFFFFFFFFFC733h, 7Ch
insd
mov ecx, gs
in al, dx
out 2Dh, al
mov ds:6599E434E6D96814h, al
cmpsb
push 0FFFFFFFFFFFFFFD6h
popfq
xor ecx, ebp
db 48h
insb
test al, cl
xor [rbp-7Bh], cl
and al, 9Bh
db 9Ah
push rsp
xor al, 8Fh
cmp eax, 924E81B9h
clc
mov bh, 0DEh
jbe short near ptr loc_C72+1
db 1Eh
retn 8FCAh
db 0C4h ; -
loc_CCD: ; CODE XREF: seg000:0000000000000D22
adc eax, 7CABFBF8h
db 38h ; 8
mov ebp, 9C3E66FCh
push rbp
dec byte ptr [rcx]
sahf
fidivr word ptr [rdi+2Ch]
db 1Fh
db 3Eh
234
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
xchg eax, esi
loc_CE2: ; CODE XREF: seg000:0000000000000D5E
mov ebx, 0C7AFE30Bh
clc
in eax, dx
sbb bh, bl
xchg eax, ebp
db 3Fh ; ?
cmp edx, 3EC3E4D7h
push 51h
db 3Eh
pushfq
jl short loc_D17
test [rax-4CFF0D49h], ebx
db 2Fh ; /
rdtsc
jns short near ptr loc_D40+4
mov ebp, 0B2BB03D8h
in eax, dx
db 1Eh
fsubr dword ptr [rbx-0Bh]
jns short loc_D70
scasd
mov ch, 0C1h ; +
add edi, [rbx-53h]
db 0E7h
loc_D17: ; CODE XREF: seg000:0000000000000CF7
jp short near ptr unk_D79
scasd
cmc
sbb ebx, [rsi]
fsubr dword ptr [rbx+3Dh]
retn
db 3
jnp short near ptr loc_CCD+4
db 36h
adc r14b, r13b
db 1Fh
retf
test [rdi+rdi*2], ebx
cdq
or ebx, edi
test eax, 310B94BCh
ffreep st(7)
cwde
sbb esi, [rdx+53h]
235
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
push 5372CBAAh
loc_D40: ; CODE XREF: seg000:0000000000000D02
push 53728BAAh
push 0FFFFFFFFF85CF2FCh
db 0Eh
retn 9B9Bh
movzx r9, dword ptr [rdx]
adc [rcx+43h], ebp
in al, 31h
db 37h ; 7
jl short loc_DC5
icebp
sub esi, [rdi]
clc
pop rdi
jb short near ptr loc_CE2+1
or al, 8Fh
mov ecx, 770EFF81h
sub al, ch
sub al, 73h ; s
cmpsd
adc bl, al
out 87h, eax ; DMA page register 74LS612:
; Channel 0 (address bits 16-23)
loc_D70: ; CODE XREF: seg000:0000000000000D0E
adc edi, ebx
db 49h
outsb
enter 33E5h, 97h
xchg eax, ebx
unk_D79 db 0FEh ; CODE XREF: seg000:loc_D17
db 0BEh
db 0E1h
db 82h
loc_D7D: ; CODE XREF: seg000:0000000000000DB3
cwde
db 7
db 5Ch ; \
db 10h
db 73h ; s
db 0A9h
db 2Bh ; +
db 9Fh
loc_D85: ; CODE XREF: seg000:0000000000000DD1
dec dh
jnz short near ptr loc_DD3+3
mov ds:7C1758CB282EF9BFh, al
sal ch, 91h
236
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
rol dword ptr [rbx+7Fh], cl
fbstp tbyte ptr [rcx+2]
repne mov al, ds:4BFAB3C3ECF2BE13h
pushfq
imul edx, [rbx+rsi*8+3B484EE9h], 8EDC09C6h
cmp [rax], al
jg short loc_D7D
xor [rcx-638C1102h], edx
test eax, 14E3AD7h
insd
db 38h ; 8
db 80h
db 0C3h
loc_DC5: ; CODE XREF: seg000:0000000000000D57
; seg000:0000000000000DD8
cmp ah, [rsi+rdi*2+527C01D3h]
sbb eax, 5FC631F0h
jnb short loc_D85
loc_DD3: ; CODE XREF: seg000:0000000000000D87
call near ptr 0FFFFFFFFC03919C7h
loope near ptr loc_DC5+3
sbb al, 0C8h
std
Listing .: random noise (ARM in ARM mode)
BLNE 0xFE16A9D8
BGE 0x1634D0C
SVCCS 0x450685
STRNVT R5, [PC],#-0x964
LDCGE p6, c14, [R0],#0x168
STCCSL p9, c9, [LR],#0x14C
CMNHIP PC, R10,LSL#22
FLDMIADNV LR!, {D4}
MCR p5, 2, R2,c15,c6, 4
BLGE 0x1139558
BLGT 0xFF9146E4
STRNEB R5, [R4],#0xCA2
STMNEIB R5, {R0,R4,R6,R7,R9-SP,PC}
STMIA R8, {R0,R2-R4,R7,R8,R10,SP,LR}^
STRB SP, [R8],PC,ROR#18
LDCCS p9, c13, [R6,#0x1BC]
LDRGE R8, [R9,#0x66E]
STRNEB R5, [R8],#-0x8C3
STCCSL p15, c9, [R7,#-0x84]
RSBLS LR, R2, R11,ASR LR
SVCGT 0x9B0362
SVCGT 0xA73173
STMNEDB R11!, {R0,R1,R4-R6,R8,R10,R11,SP}
STR R0, [R3],#-0xCE4
LDCGT p15, c8, [R1,#0x2CC]
LDRCCB R1, [R11],-R7,ROR#30
BLLT 0xFED9D58C
BL 0x13E60F4
LDMVSIB R3!, {R1,R4-R7}^
USATNE R10, #7, SP,LSL#11
LDRGEB LR, [R1],#0xE56
237
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
STRPLT R9, [LR],#0x567
LDRLT R11, [R1],#-0x29B
SVCNV 0x12DB29
MVNNVS R5, SP,LSL#25
LDCL p8, c14, [R12,#-0x288]
STCNEL p2, c6, [R6,#-0xBC]!
SVCNV 0x2E5A2F
BLX 0x1A8C97E
TEQGE R3, #0x1100000
STMLSIA R6, {R3,R6,R10,R11,SP}
BICPLS R12, R2, #0x5800
BNE 0x7CC408
TEQGE R2, R4,LSL#20
SUBS R1, R11, #0x28C
BICVS R3, R12, R7,ASR R0
LDRMI R7, [LR],R3,LSL#21
BLMI 0x1A79234
STMVCDB R6, {R0-R3,R6,R7,R10,R11}
EORMI R12, R6, #0xC5
MCRRCS p1, 0xF, R1,R3,c2
Listing .: random noise (ARM in Thumb mode)
LSRS R3, R6, #0x12
LDRH R1, [R7,#0x2C]
SUBS R0, #0x55 ; U
ADR R1, loc_3C
LDR R2, [SP,#0x218]
CMP R4, #0x86
SXTB R7, R4
LDR R4, [R1,#0x4C]
STR R4, [R4,R2]
STR R0, [R6,#0x20]
BGT 0xFFFFFF72
LDRH R7, [R2,#0x34]
LDRSH R0, [R2,R4]
LDRB R2, [R7,R2]
DCB 0x17
DCB 0xED
STRB R3, [R1,R1]
STR R5, [R0,#0x6C]
LDMIA R3, {R0-R5,R7}
ASRS R3, R2, #3
LDR R4, [SP,#0x2C4]
SVC 0xB5
LDR R6, [R1,#0x40]
LDR R5, =0xB2C5CA32
STMIA R6, {R1-R4,R6}
LDR R1, [R3,#0x3C]
STR R1, [R5,#0x60]
BCC 0xFFFFFF70
LDR R4, [SP,#0x1D4]
STR R5, [R5,#0x40]
ORRS R5, R7
loc_3C ; DATA XREF: ROM:00000006
B 0xFFFFFF98
ASRS R4, R1, #0x1E
238
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
ADDS R1, R3, R0
STRH R7, [R7,#0x30]
LDR R3, [SP,#0x230]
CBZ R6, loc_90
MOVS R4, R2
LSRS R3, R4, #0x17
STMIA R6!, {R2,R4,R5}
ADDS R6, #0x42 ; B
ADD R2, SP, #0x180
SUBS R5, R0, R6
BCC loc_B0
ADD R2, SP, #0x160
LSLS R5, R0, #0x1A
CMP R7, #0x45
LDR R4, [R4,R5]
DCB 0x2F ; /
DCB 0xF4
B 0xFFFFFD18
ADD R4, SP, #0x2C0
LDR R1, [SP,#0x14C]
CMP R4, #0xEE
DCB 0xA
DCB 0xFB
STRH R7, [R5,#0xA]
LDR R3, loc_78
DCB 0xBE ; -
DCB 0xFC
MOVS R5, #0x96
DCB 0x4F ; O
DCB 0xEE
B 0xFFFFFAE6
ADD R3, SP, #0x110
loc_78 ; DATA XREF: ROM:0000006C
STR R1, [R3,R6]
LDMIA R3!, {R2,R5-R7}
LDRB R2, [R4,R2]
ASRS R4, R0, #0x13
BKPT 0xD1
ADDS R5, R0, R6
STR R5, [R3,#0x58]
Listing .: random noise(MIPS little endian)
lw $t9, 0xCB3($t5)
sb $t5, 0x3855($t0)
sltiu $a2, $a0, -0x657A
ldr $t4, -0x4D99($a2)
daddi $s0, $s1, 0x50A4
lw $s7, -0x2353($s4)
bgtzl $a1, 0x17C5C
239
28.2. n0w k/nu0Mn0lSl l00AS ulS/SSlMBllu? Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
.byte 0x17
.byte 0xED
.byte 0x4B # K
.byte 0x54 # T
lwc2 $31, 0x66C5($sp)
lwu $s1, 0x10D3($a1)
ldr $t6, -0x204B($zero)
lwc1 $f30, 0x4DBE($s2)
daddiu $t1, $s1, 0x6BD9
lwu $s5, -0x2C64($v1)
cop0 0x13D642D
bne $gp, $t4, 0xFFFF9EF0
lh $ra, 0x1819($s1)
sdl $fp, -0x6474($t8)
jal 0x78C0050
ori $v0, $s2, 0xC634
blez $gp, 0xFFFEA9D4
swl $t8, -0x2CD4($s2)
sltiu $a1, $k0, 0x685
sdc1 $f15, 0x5964($at)
sw $s0, -0x19A6($a1)
sltiu $t6, $a3, -0x66AD
lb $t7, -0x4F6($t3)
sd $fp, 0x4B02($a1)
.byte 0x96
.byte 0x25 # %
.byte 0x4F # O
.byte 0xEE
swl $a0, -0x1AC9($k0)
lwc2 $4, 0x5199($ra)
bne $a2, $a0, 0x17308
.byte 0xD1
.byte 0xBE
.byte 0x85
.byte 0x19
swc2 $8, 0x659D($a2)
swc1 $f8, -0x2691($s6)
sltiu $s6, $t4, -0x2691
sh $t9, -0x7992($t4)
bne $v0, $t0, 0x163A4
sltiu $a3, $t2, -0x60DF
lbu $v0, -0x11A5($v1)
pref 0x1B, 0x362($gp)
pref 7, 0x3173($sp)
blez $t1, 0xB678
swc1 $f3, flt_CE4($zero)
pref 0x11, -0x704D($t4)
ori $k1, $s2, 0x1F67
swr $s6, 0x7533($sp)
swc2 $15, -0x67F4($k0)
ldl $s3, 0xF2($t7)
bne $s7, $a3, 0xFFFE973C
sh $s1, -0x11AA($a2)
bnel $a1, $t6, 0xFFFE566C
sdr $s1, -0x4D65($zero)
240
28.3. lnl0kM/1l0n ln1k0l\ 0l /vlk/ol C0ul Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
sd $s2, -0x24D7($t8)
scd $s4, 0x5C8D($t7)
.byte 0xA2
.byte 0xE8
.byte 0x5C # \
.byte 0xED
bgtz $t3, 0x189A0
sd $t6, 0x5A2F($t9)
sdc2 $10, 0x3223($k1)
sb $s3, 0x5744($t9)
lwr $a2, 0x2C48($a0)
beql $fp, $s2, 0xFFFF3258
It is also important to keep in mind that cleverly constructed unpacking and decrypting code (including self-modifying)
may looks like noise as well, nevertheless, it executes correctly.
28.8 lnfcrmaticn entrcpy cf averae ccde
ent utility results
.
(Entropy of ideally compressed (or encrypted) file is bits per byte; of zero file of arbitrary size if bits per byte.)
Here we can see that a code for CPUwith -byte instructions (ARMin ARMmode and MIPS) is least efective in this sense.
28.8.1 x88
.text section of ntoskrnl.exe file from Windows :
Entropy = 6.662739 bits per byte.
Optimum compression would reduce the size
of this 593920 byte file by 16 percent.
...
.text section of ntoskrnl.exe from Windows x:
Entropy = 6.549586 bits per byte.
Optimum compression would reduce the size
of this 1685504 byte file by 18 percent.
...
28.8.2 ARH(1bumb)
AngryBirds Classic:
Entropy = 7.058766 bits per byte.
Optimum compression would reduce the size
of this 3336888 byte file by 11 percent.
...
28.8.8 ARH(ARHmcde)
Linux Kernel ..:
Entropy = 6.036160 bits per byte.
Optimum compression would reduce the size
http://www.fourmilab.ch/random/
241
28.3. lnl0kM/1l0n ln1k0l\ 0l /vlk/ol C0ul Cn/l1lk 28. lnC0kklC1l\ ulS/SSlMBllu C0ul
of this 6946037 byte file by 24 percent.
...
28.8.4 Hl5 (little endian)
.text section of user32.dll from Windows NT :
Entropy = 6.098227 bits per byte.
Optimum compression would reduce the size
of this 433152 byte file by 23 percent.
....
242
Cn/l1lk 29. C++
Cbapter 29
C++
29.1 Classes
29.1.1 5imple example
Internally, C++ classes representation is almost the same as structures representation.
Lets try an example with two variables, two constructors and one method:
#include <stdio.h>
class c
{
private:
int v1;
int v2;
public:
c() // default ctor
{
v1=667;
v2=999;
};
c(int a, int b) // ctor
{
v1=a;
v2=b;
};
void dump()
{
printf ("%d; %d\n", v1, v2);
};
};
int main()
{
class c c1;
class c c2(5,6);
c1.dump();
c2.dump();
return 0;
};
243
29.. Cl/SSlS Cn/l1lk 29. C++
H5vCx88
Here is howmain() function looks like translated into assembly language:
Listing .: MSVC
_c2$ = -16 ; size = 8
_c1$ = -8 ; size = 8
_main PROC
push ebp
mov ebp, esp
sub esp, 16
lea ecx, DWORD PTR _c1$[ebp]
call ??0c@@QAE@XZ ; c::c
push 6
push 5
lea ecx, DWORD PTR _c2$[ebp]
call ??0c@@QAE@HH@Z ; c::c
lea ecx, DWORD PTR _c1$[ebp]
call ?dump@c@@QAEXXZ ; c::dump
lea ecx, DWORD PTR _c2$[ebp]
call ?dump@c@@QAEXXZ ; c::dump
xor eax, eax
mov esp, ebp
pop ebp
ret 0
_main ENDP
So whats going on. For each object (instance of class c) bytes allocated, that is exactly size of variables storage.
For c a default argumentless constructor ??0c@@QAE@XZ is called. For c2 another constructor ??0c@@QAE@HH@Z is called
and two numbers are passed as arguments.
A pointer to object (tl|s in C++ terminology) is passed in the ECX register. This is called thiscall (..) a pointer to object
passing method.
MSVC doing it using the ECX register. Needless to say, it is not a standardized method, other compilers could do it difer-
ently, e.g., via first function argument (like GCC).
Why these functions has so odd names? Thats name mangling.
C++ class may contain several methods sharing the same name but having diferent arguments that is polymorphism.
And of course, diferent classes may own methods sharing the same name.
ncme mcnl|n enable us to encode class name + method name + all method argument types in one ASCII-string, which
is to be used as internal function name. Thats all because neither linker, nor DLL OS loader (mangled names may be among
DLL exports as well) knows nothing about C++ or OOP
.
dump() function called two times afer.
Now lets see constructors code:
Listing .: MSVC
_this$ = -4 ; size = 4
??0c@@QAE@XZ PROC ; c::c, COMDAT
; _this$ = ecx
push ebp
mov ebp, esp
push ecx
mov DWORD PTR _this$[ebp], ecx
mov eax, DWORD PTR _this$[ebp]
mov DWORD PTR [eax], 667
mov ecx, DWORD PTR _this$[ebp]
mov DWORD PTR [ecx+4], 999
mov eax, DWORD PTR _this$[ebp]
mov esp, ebp
pop ebp
ret 0
??0c@@QAE@XZ ENDP ; c::c
Object-Oriented Programming
244
29.. Cl/SSlS Cn/l1lk 29. C++
_this$ = -4 ; size = 4
_a$ = 8 ; size = 4
_b$ = 12 ; size = 4
??0c@@QAE@HH@Z PROC ; c::c, COMDAT
; _this$ = ecx
push ebp
mov ebp, esp
push ecx
mov DWORD PTR _this$[ebp], ecx
mov eax, DWORD PTR _this$[ebp]
mov ecx, DWORD PTR _a$[ebp]
mov DWORD PTR [eax], ecx
mov edx, DWORD PTR _this$[ebp]
mov eax, DWORD PTR _b$[ebp]
mov DWORD PTR [edx+4], eax
mov eax, DWORD PTR _this$[ebp]
mov esp, ebp
pop ebp
ret 8
??0c@@QAE@HH@Z ENDP ; c::c
Constructors are just functions, they use pointer to structure in the ECX, moving the pointer into own local variable, how-
ever, it is not necessary.
From the C++ standard [, .] we know that constructors should not return any values. In fact, internally, constructors
are returns pointer to the newly created object, i.e., tl|s.
Nowdump() method:
Listing .: MSVC
_this$ = -4 ; size = 4
?dump@c@@QAEXXZ PROC ; c::dump, COMDAT
; _this$ = ecx
push ebp
mov ebp, esp
push ecx
mov DWORD PTR _this$[ebp], ecx
mov eax, DWORD PTR _this$[ebp]
mov ecx, DWORD PTR [eax+4]
push ecx
mov edx, DWORD PTR _this$[ebp]
mov eax, DWORD PTR [edx]
push eax
push OFFSET ??_C@_07NJBDCIEC@?$CFd?$DL?5?$CFd?6?$AA@
call _printf
add esp, 12
mov esp, ebp
pop ebp
ret 0
?dump@c@@QAEXXZ ENDP ; c::dump
Simpleenough: dump()takingpointer tothestructurecontainingtwo|nts intheECX, takes twovalues fromit andpassing
it into printf().
The code is much shorter if compiled with optimization (/Ox):
Listing .: MSVC
??0c@@QAE@XZ PROC ; c::c, COMDAT
; _this$ = ecx
mov eax, ecx
mov DWORD PTR [eax], 667
mov DWORD PTR [eax+4], 999
ret 0
??0c@@QAE@XZ ENDP ; c::c
245
29.. Cl/SSlS Cn/l1lk 29. C++
_a$ = 8 ; size = 4
_b$ = 12 ; size = 4
??0c@@QAE@HH@Z PROC ; c::c, COMDAT
; _this$ = ecx
mov edx, DWORD PTR _b$[esp-4]
mov eax, ecx
mov ecx, DWORD PTR _a$[esp-4]
mov DWORD PTR [eax], ecx
mov DWORD PTR [eax+4], edx
ret 8
??0c@@QAE@HH@Z ENDP ; c::c
?dump@c@@QAEXXZ PROC ; c::dump, COMDAT
; _this$ = ecx
mov eax, DWORD PTR [ecx+4]
mov ecx, DWORD PTR [ecx]
push eax
push ecx
push OFFSET ??_C@_07NJBDCIEC@?$CFd?$DL?5?$CFd?6?$AA@
call _printf
add esp, 12
ret 0
?dump@c@@QAEXXZ ENDP ; c::dump
Thats all. One more thing to say is the stack pointer was not corrected with add esp, X afer constructor called. Withal,
constructor has ret 8 instead of the RET at the end.
This is all because here used thiscall (..) calling convention, the method of passing values through the stack, which is,
together with stdcall (.) method, ofers to correct stack to callee rather then to caller. ret x instruction adding X to the
value in the ESP, then passes control to the caller function.
See also section about calling conventions ().
It is also should be noted the compiler deciding when to call constructor and destructor but that is we already know
from C++ language basics.
H5vCx88-84
As we already know, first function arguments in x- are passed in RCX, RDX, R8, R9 registers, all the restvia stack.
Nevertheless, tl|s pointer to the object is passed in RCX, first method argumentin EDX, etc. We can see this in the c(int a,
int b) method internals:
Listing .: MSVC x /Ox
; void dump()
?dump@c@@QEAAXXZ PROC ; c::dump
mov r8d, DWORD PTR [rcx+4]
mov edx, DWORD PTR [rcx]
lea rcx, OFFSET FLAT:??_C@_07NJBDCIEC@?$CFd?$DL?5?$CFd?6?$AA@ ; %d; %d
jmp printf
?dump@c@@QEAAXXZ ENDP ; c::dump
; c(int a, int b)
??0c@@QEAA@HH@Z PROC ; c::c
mov DWORD PTR [rcx], edx ; 1st argument: a
mov DWORD PTR [rcx+4], r8d ; 2nd argument: b
mov rax, rcx
ret 0
??0c@@QEAA@HH@Z ENDP ; c::c
; default ctor
246
29.. Cl/SSlS Cn/l1lk 29. C++
??0c@@QEAA@XZ PROC ; c::c
mov DWORD PTR [rcx], 667
mov DWORD PTR [rcx+4], 999
mov rax, rcx
ret 0
??0c@@QEAA@XZ ENDP ; c::c
|nt data type is still -bit in x
, so that is why -bit registers parts are used here.
We also see JMP printf instead of RET in the dump() method, that lcck we already saw earlier: ...
6CCx88
It is almost the same situation in GCC .., with a few exceptions.
Listing .: GCC ..
public main
main proc near
var_20 = dword ptr -20h
var_1C = dword ptr -1Ch
var_18 = dword ptr -18h
var_10 = dword ptr -10h
var_8 = dword ptr -8
push ebp
mov ebp, esp
and esp, 0FFFFFFF0h
sub esp, 20h
lea eax, [esp+20h+var_8]
mov [esp+20h+var_20], eax
call _ZN1cC1Ev
mov [esp+20h+var_18], 6
mov [esp+20h+var_1C], 5
lea eax, [esp+20h+var_10]
mov [esp+20h+var_20], eax
call _ZN1cC1Eii
lea eax, [esp+20h+var_8]
mov [esp+20h+var_20], eax
call _ZN1c4dumpEv
lea eax, [esp+20h+var_10]
mov [esp+20h+var_20], eax
call _ZN1c4dumpEv
mov eax, 0
leave
retn
main endp
Here we see another ncme mcnl|n style, specific to GNU
It is also can be noted the pointer to object is passed as first
function argument transparently from programmer, of course.
First constructor:
public _ZN1cC1Ev ; weak
_ZN1cC1Ev proc near ; CODE XREF: main+10
arg_0 = dword ptr 8
push ebp
mov ebp, esp
mov eax, [ebp+arg_0]
mov dword ptr [eax], 667
One more document about diferent compilers name mangling types: [] standards.
247
29.. Cl/SSlS Cn/l1lk 29. C++
mov eax, [ebp+arg_0]
mov dword ptr [eax+4], 999
pop ebp
retn
_ZN1cC1Ev endp
What it does is just writes two numbers using pointer passed in first (and single) argument.
Second constructor:
public _ZN1cC1Eii
_ZN1cC1Eii proc near
arg_0 = dword ptr 8
arg_4 = dword ptr 0Ch
arg_8 = dword ptr 10h
push ebp
mov ebp, esp
mov eax, [ebp+arg_0]
mov edx, [ebp+arg_4]
mov [eax], edx
mov eax, [ebp+arg_0]
mov edx, [ebp+arg_8]
mov [eax+4], edx
pop ebp
retn
_ZN1cC1Eii endp
This is a function, analog of which could be looks like:
void ZN1cC1Eii (int *obj, int a, int b)
{
*obj=a;
*(obj+1)=b;
};
. . . and that is completely predictable.
Nowdump() function:
public _ZN1c4dumpEv
_ZN1c4dumpEv proc near
var_18 = dword ptr -18h
var_14 = dword ptr -14h
var_10 = dword ptr -10h
arg_0 = dword ptr 8
push ebp
mov ebp, esp
sub esp, 18h
mov eax, [ebp+arg_0]
mov edx, [eax+4]
mov eax, [ebp+arg_0]
mov eax, [eax]
mov [esp+18h+var_10], edx
mov [esp+18h+var_14], eax
mov [esp+18h+var_18], offset aDD ; "%d; %d\n"
call _printf
leave
retn
_ZN1c4dumpEv endp
This function in its |nterncl reresentct|on has sole argument, used as pointer to the object (tl|s).
248
29.. Cl/SSlS Cn/l1lk 29. C++
Thus, if to base our judgment on these simple examples, the diference between MSVC and GCC is style of function names
encoding (ncme mcnl|n) and passing pointer to object (via the ECX register or via the first argument).
6CCx88-84
The first arguments, as we already know, are passed in the RDI, RSI, RDX, RCX, R8, R9 [] registers, and the pointer to tl|s
via first one (RDI) and that is what we see here. |nt data type is also -bit here. JMP instead of RET lcck is also used here.
Listing .: GCC .. x
; default ctor
_ZN1cC2Ev:
mov DWORD PTR [rdi], 667
mov DWORD PTR [rdi+4], 999
ret
; c(int a, int b)
_ZN1cC2Eii:
mov DWORD PTR [rdi], esi
mov DWORD PTR [rdi+4], edx
ret
; dump()
_ZN1c4dumpEv:
mov edx, DWORD PTR [rdi+4]
mov esi, DWORD PTR [rdi]
xor eax, eax
mov edi, OFFSET FLAT:.LC0 ; "%d; %d\n"
jmp printf
29.1.2 Class inberitance
It can be said about inherited classes that it is simple structure we already considered, but extending in inherited classes.
Lets take simple example:
#include <stdio.h>
class object
{
public:
int color;
object() { };
object (int color) { this->color=color; };
void print_color() { printf ("color=%d\n", color); };
};
class box : public object
{
private:
int width, height, depth;
public:
box(int color, int width, int height, int depth)
{
this->color=color;
this->width=width;
this->height=height;
this->depth=depth;
};
void dump()
249
29.. Cl/SSlS Cn/l1lk 29. C++
{
printf ("this is box. color=%d, width=%d, height=%d, depth=%d\n", color, width,
height, depth);
};
};
class sphere : public object
{
private:
int radius;
public:
sphere(int color, int radius)
{
this->color=color;
this->radius=radius;
};
void dump()
{
printf ("this is sphere. color=%d, radius=%d\n", color, radius);
};
};
int main()
{
box b(1, 10, 20, 30);
sphere s(2, 40);
b.print_color();
s.print_color();
b.dump();
s.dump();
return 0;
};
Lets investigate generated code of the dump() functions/methods and also object::print_color(), lets see memory
layout for structures-objects (as of -bit code).
So, dump() methods for several classes, generated by MSVC with /Ox and /Ob0 options
Listing .: Optimizing MSVC /Ob
??_C@_09GCEDOLPA@color?$DN?$CFd?6?$AA@ DB color=%d, 0aH, 00H ; string
?print_color@object@@QAEXXZ PROC ; object::print_color, COMDAT
; _this$ = ecx
mov eax, DWORD PTR [ecx]
push eax
; color=%d, 0aH, 00H
push OFFSET ??_C@_09GCEDOLPA@color?$DN?$CFd?6?$AA@
call _printf
add esp, 8
ret 0
?print_color@object@@QAEXXZ ENDP ; object::print_color
Listing .: Optimizing MSVC /Ob
?dump@box@@QAEXXZ PROC ; box::dump, COMDAT
; _this$ = ecx
mov eax, DWORD PTR [ecx+12]
mov edx, DWORD PTR [ecx+8]
/Ob0 options means inline expansion disabling since function inlining right into the code where the function is called will make our experiment harder
250
29.. Cl/SSlS Cn/l1lk 29. C++
push eax
mov eax, DWORD PTR [ecx+4]
mov ecx, DWORD PTR [ecx]
push edx
push eax
push ecx
; this is box. color=%d, width=%d, height=%d, depth=%d, 0aH, 00H ; string
push OFFSET ??_C@_0DG@NCNGAADL@this?5is?5box?4?5color?$DN?$CFd?0?5width?$DN?$CFd?0@
call _printf
add esp, 20
ret 0
?dump@box@@QAEXXZ ENDP ; box::dump
Listing .: Optimizing MSVC /Ob
?dump@sphere@@QAEXXZ PROC ; sphere::dump, COMDAT
; _this$ = ecx
mov eax, DWORD PTR [ecx+4]
mov ecx, DWORD PTR [ecx]
push eax
push ecx
; this is sphere. color=%d, radius=%d, 0aH, 00H
push OFFSET ??_C@_0CF@EFEDJLDC@this?5is?5sphere?4?5color?$DN?$CFd?0?5radius@
call _printf
add esp, 12
ret 0
?dump@sphere@@QAEXXZ ENDP ; sphere::dump
So, here is memory layout:
(base class object)
ofset description
+x int color
(inherited classes)
box:
ofset description
+x int color
+x int width
+x int height
+xC int depth
slere:
ofset description
+x int color
+x int radius
Lets see main() function body:
Listing .: Optimizing MSVC /Ob
PUBLIC _main
_TEXT SEGMENT
_s$ = -24 ; size = 8
_b$ = -16 ; size = 16
_main PROC
sub esp, 24
push 30
push 20
push 10
251
29.. Cl/SSlS Cn/l1lk 29. C++
push 1
lea ecx, DWORD PTR _b$[esp+40]
call ??0box@@QAE@HHHH@Z ; box::box
push 40
push 2
lea ecx, DWORD PTR _s$[esp+32]
call ??0sphere@@QAE@HH@Z ; sphere::sphere
lea ecx, DWORD PTR _b$[esp+24]
call ?print_color@object@@QAEXXZ ; object::print_color
lea ecx, DWORD PTR _s$[esp+24]
call ?print_color@object@@QAEXXZ ; object::print_color
lea ecx, DWORD PTR _b$[esp+24]
call ?dump@box@@QAEXXZ ; box::dump
lea ecx, DWORD PTR _s$[esp+24]
call ?dump@sphere@@QAEXXZ ; sphere::dump
xor eax, eax
add esp, 24
ret 0
_main ENDP
Inherited classes must always add their fields afer base classes fields, so to make possible for base class methods to
work with their fields.
When object::print_color() method is called, a pointers to both box object and slere object are passed as this, it
can work with these objects easily since color field in these objects is always at the pinned address (at +0x0 ofset).
It canbe said, object::print_color()methodis agnostic inrelationtoinput object type as long as fields will be |nneJ
at the same addresses, and this condition is always true.
And if you create inherited class of the e.g. box class, compiler will add newfields afer Jetl field, leaving box class fields
at the pinned addresses.
Thus, box::dump()methodwill workfineaccessingcolor/w|Jtl/le|lt/Jetls fields always pinnedonknownaddresses.
GCC-generated code is almost likewise, with the sole exception of this pointer passing (as it was described above, it
passing as first argument instead of the ECX registers.
29.1.8 ncapsulaticn
Encapsulation is data hiding in the r|vcte sections of class, e.g. to allowaccess to themonly fromthis class methods, but no
more than.
However, are there any marks in code about the fact that some field is private and some other not?
No, there are no such marks.
Lets try simple example:
#include <stdio.h>
class box
{
private:
int color, width, height, depth;
public:
box(int color, int width, int height, int depth)
{
this->color=color;
this->width=width;
this->height=height;
this->depth=depth;
};
void dump()
{
printf ("this is box. color=%d, width=%d, height=%d, depth=%d\n", color, width,
height, depth);
};
};
Lets compile it again in MSVC with /Ox and /Ob0 options and lets see box::dump() method code:
252
29.. Cl/SSlS Cn/l1lk 29. C++
?dump@box@@QAEXXZ PROC ; box::dump, COMDAT
; _this$ = ecx
mov eax, DWORD PTR [ecx+12]
mov edx, DWORD PTR [ecx+8]
push eax
mov eax, DWORD PTR [ecx+4]
mov ecx, DWORD PTR [ecx]
push edx
push eax
push ecx
; this is box. color=%d, width=%d, height=%d, depth=%d, 0aH, 00H
push OFFSET ??_C@_0DG@NCNGAADL@this?5is?5box?4?5color?$DN?$CFd?0?5width?$DN?$CFd?0@
call _printf
add esp, 20
ret 0
?dump@box@@QAEXXZ ENDP ; box::dump
Here is a memory layout of the class:
ofset description
+x int color
+x int width
+x int height
+xC int depth
All fields are private and not allowed to access from any other functions, but, knowing this layout, can we create a code
modifying these fields?
So I added hack_oop_encapsulation() function, which, if has the body as follows, will not compile:
void hack_oop_encapsulation(class box * o)
{
o->width=1; // that code cant be compiled:
// "error C2248: box::width : cannot access private member declared in class
box"
};
Nevertheless, if to cast box type to o|nter to |nt crrcy, and if to modify array of the |nt-s we got, then we have success.
void hack_oop_encapsulation(class box * o)
{
unsigned int *ptr_to_object=reinterpret_cast<unsigned int*>(o);
ptr_to_object[1]=123;
};
This functions code is very simple it can be said, the function taking pointer to array of the |nt-s on input and writing
23 to the second |nt:
?hack_oop_encapsulation@@YAXPAVbox@@@Z PROC ; hack_oop_encapsulation
mov eax, DWORD PTR _o$[esp-4]
mov DWORD PTR [eax+4], 123
ret 0
?hack_oop_encapsulation@@YAXPAVbox@@@Z ENDP ; hack_oop_encapsulation
Lets check, how it works:
int main()
{
box b(1, 10, 20, 30);
b.dump();
hack_oop_encapsulation(&b);
253
29.. Cl/SSlS Cn/l1lk 29. C++
b.dump();
return 0;
};
Lets run:
this is box. color=1, width=10, height=20, depth=30
this is box. color=1, width=123, height=20, depth=30
We see, encapsulation is just class fields protection only on compiling stage. C++ compiler will not allow to generate a
code modifying protected fields straightforwardly, nevertheless, it is possible with the help of J|rty lccks.
29.1.4 Hultiple inberitance
Multiple inheritance is a class creation which inherits fields and methods from two or more classes.
Lets write simple example again:
#include <stdio.h>
class box
{
public:
int width, height, depth;
box() { };
box(int width, int height, int depth)
{
this->width=width;
this->height=height;
this->depth=depth;
};
void dump()
{
printf ("this is box. width=%d, height=%d, depth=%d\n", width, height, depth);
};
int get_volume()
{
return width * height * depth;
};
};
class solid_object
{
public:
int density;
solid_object() { };
solid_object(int density)
{
this->density=density;
};
int get_density()
{
return density;
};
void dump()
{
printf ("this is solid_object. density=%d\n", density);
};
};
class solid_box: box, solid_object
{
254
29.. Cl/SSlS Cn/l1lk 29. C++
public:
solid_box (int width, int height, int depth, int density)
{
this->width=width;
this->height=height;
this->depth=depth;
this->density=density;
};
void dump()
{
printf ("this is solid_box. width=%d, height=%d, depth=%d, density=%d\n", width,
height, depth, density);
};
int get_weight() { return get_volume() * get_density(); };
};
int main()
{
box b(10, 20, 30);
solid_object so(100);
solid_box sb(10, 20, 30, 3);
b.dump();
so.dump();
sb.dump();
printf ("%d\n", sb.get_weight());
return 0;
};
Lets compileit inMSVCwith/Oxand/Ob0options andlets seebox::dump(), solid_object::dump()andsolid_box::dump()
methods code:
Listing .: Optimizing MSVC /Ob
?dump@box@@QAEXXZ PROC ; box::dump, COMDAT
; _this$ = ecx
mov eax, DWORD PTR [ecx+8]
mov edx, DWORD PTR [ecx+4]
push eax
mov eax, DWORD PTR [ecx]
push edx
push eax
; this is box. width=%d, height=%d, depth=%d, 0aH, 00H
push OFFSET ??_C@_0CM@DIKPHDFI@this?5is?5box?4?5width?$DN?$CFd?0?5height?$DN?$CFd@
call _printf
add esp, 16
ret 0
?dump@box@@QAEXXZ ENDP ; box::dump
Listing .: Optimizing MSVC /Ob
?dump@solid_object@@QAEXXZ PROC ; solid_object::dump, COMDAT
; _this$ = ecx
mov eax, DWORD PTR [ecx]
push eax
; this is solid_object. density=%d, 0aH
push OFFSET ??_C@_0CC@KICFJINL@this?5is?5solid_object?4?5density?$DN?$CFd@
call _printf
add esp, 8
ret 0
?dump@solid_object@@QAEXXZ ENDP ; solid_object::dump
255
29.. Cl/SSlS Cn/l1lk 29. C++
Listing .: Optimizing MSVC /Ob
?dump@solid_box@@QAEXXZ PROC ; solid_box::dump, COMDAT
; _this$ = ecx
mov eax, DWORD PTR [ecx+12]
mov edx, DWORD PTR [ecx+8]
push eax
mov eax, DWORD PTR [ecx+4]
mov ecx, DWORD PTR [ecx]
push edx
push eax
push ecx
; this is solid_box. width=%d, height=%d, depth=%d, density=%d, 0aH
push OFFSET ??_C@_0DO@HNCNIHNN@this?5is?5solid_box?4?5width?$DN?$CFd?0?5hei@
call _printf
add esp, 20
ret 0
?dump@solid_box@@QAEXXZ ENDP ; solid_box::dump
So, the memory layout for all three classes is:
box class:
ofset description
+x width
+x height
+x depth
sol|J_object class:
ofset description
+x density
It can be said, sol|J_box class memory layout will be on|teJ:
sol|J_box class:
ofset description
+x width
+x height
+x depth
+xC density
The code of the box::get_volume() and solid_object::get_density() methods is trivial:
Listing .: Optimizing MSVC /Ob
?get_volume@box@@QAEHXZ PROC ; box::get_volume, COMDAT
; _this$ = ecx
mov eax, DWORD PTR [ecx+8]
imul eax, DWORD PTR [ecx+4]
imul eax, DWORD PTR [ecx]
ret 0
?get_volume@box@@QAEHXZ ENDP ; box::get_volume
Listing .: Optimizing MSVC /Ob
?get_density@solid_object@@QAEHXZ PROC ; solid_object::get_density, COMDAT
; _this$ = ecx
mov eax, DWORD PTR [ecx]
ret 0
?get_density@solid_object@@QAEHXZ ENDP ; solid_object::get_density
But the code of the solid_box::get_weight() method is much more interesting:
256
29.. Cl/SSlS Cn/l1lk 29. C++
Listing .: Optimizing MSVC /Ob
?get_weight@solid_box@@QAEHXZ PROC ; solid_box::get_weight, COMDAT
; _this$ = ecx
push esi
mov esi, ecx
push edi
lea ecx, DWORD PTR [esi+12]
call ?get_density@solid_object@@QAEHXZ ; solid_object::get_density
mov ecx, esi
mov edi, eax
call ?get_volume@box@@QAEHXZ ; box::get_volume
imul eax, edi
pop edi
pop esi
ret 0
?get_weight@solid_box@@QAEHXZ ENDP ; solid_box::get_weight
get_weight() just calling two methods, but for get_volume() it just passing pointer to this, andfor get_density() it
passingpointer tothisshifedby12(or 0xC) bytes, andthere, inthesolid_boxclass memorylayout, fields of thesolid_object
class are beginning.
Thus, solid_object::get_density()methodwill believeit is dealingwithusual solid_objectclass, andbox::get_volume()
method will work with its three fields, believing this is usual object of the box class.
Thus, we can say, an object of a class, inheriting from several other classes, representing in memory on|teJ class, con-
taining all inherited fields. And each inherited method called with a pointer to corresponding structures part passed.
29.1.$ virtual metbcds
Yet another simple example:
#include <stdio.h>
class object
{
public:
int color;
object() { };
object (int color) { this->color=color; };
virtual void dump()
{
printf ("color=%d\n", color);
};
};
class box : public object
{
private:
int width, height, depth;
public:
box(int color, int width, int height, int depth)
{
this->color=color;
this->width=width;
this->height=height;
this->depth=depth;
};
void dump()
{
printf ("this is box. color=%d, width=%d, height=%d, depth=%d\n", color, width,
height, depth);
};
};
257
29.. Cl/SSlS Cn/l1lk 29. C++
class sphere : public object
{
private:
int radius;
public:
sphere(int color, int radius)
{
this->color=color;
this->radius=radius;
};
void dump()
{
printf ("this is sphere. color=%d, radius=%d\n", color, radius);
};
};
int main()
{
box b(1, 10, 20, 30);
sphere s(2, 40);
object *o1=&b;
object *o2=&s;
o1->dump();
o2->dump();
return 0;
};
Class object has virtual method dump(), being replaced in the box and slere class-inheritors.
If in an environment, where it is not known what type has object, as in the main() function in example, a virtual method
dump() is called, somewhere, the information about its type must be stored, so to call relevant virtual method.
Lets compile it in MSVC with /Ox and /Ob0 options and lets see main() function code:
_s$ = -32 ; size = 12
_b$ = -20 ; size = 20
_main PROC
sub esp, 32
push 30
push 20
push 10
push 1
lea ecx, DWORD PTR _b$[esp+48]
call ??0box@@QAE@HHHH@Z ; box::box
push 40
push 2
lea ecx, DWORD PTR _s$[esp+40]
call ??0sphere@@QAE@HH@Z ; sphere::sphere
mov eax, DWORD PTR _b$[esp+32]
mov edx, DWORD PTR [eax]
lea ecx, DWORD PTR _b$[esp+32]
call edx
mov eax, DWORD PTR _s$[esp+32]
mov edx, DWORD PTR [eax]
lea ecx, DWORD PTR _s$[esp+32]
call edx
xor eax, eax
add esp, 32
ret 0
_main ENDP
258
29.. Cl/SSlS Cn/l1lk 29. C++
Pointer to the dump() function is taken somewhere from object. Where the address of new method would be written
there? Only somewhere in constructors: there is no other place since nothing more is called in the main() function.
Lets see box class constructors code:
??_R0?AVbox@@@8 DD FLAT:??_7type_info@@6B@ ; box RTTI Type Descriptor
DD 00H
DB .?AVbox@@, 00H
??_R1A@?0A@EA@box@@8 DD FLAT:??_R0?AVbox@@@8 ; box::RTTI Base Class Descriptor at (0,-1,0,64)
DD 01H
DD 00H
DD 0ffffffffH
DD 00H
DD 040H
DD FLAT:??_R3box@@8
??_R2box@@8 DD FLAT:??_R1A@?0A@EA@box@@8 ; box::RTTI Base Class Array
DD FLAT:??_R1A@?0A@EA@object@@8
??_R3box@@8 DD 00H ; box::RTTI Class Hierarchy Descriptor
DD 00H
DD 02H
DD FLAT:??_R2box@@8
??_R4box@@6B@ DD 00H ; box::RTTI Complete Object Locator
DD 00H
DD 00H
DD FLAT:??_R0?AVbox@@@8
DD FLAT:??_R3box@@8
??_7box@@6B@ DD FLAT:??_R4box@@6B@ ; box::vftable
DD FLAT:?dump@box@@UAEXXZ
_color$ = 8 ; size = 4
_width$ = 12 ; size = 4
_height$ = 16 ; size = 4
_depth$ = 20 ; size = 4
??0box@@QAE@HHHH@Z PROC ; box::box, COMDAT
; _this$ = ecx
push esi
mov esi, ecx
call ??0object@@QAE@XZ ; object::object
mov eax, DWORD PTR _color$[esp]
mov ecx, DWORD PTR _width$[esp]
mov edx, DWORD PTR _height$[esp]
mov DWORD PTR [esi+4], eax
mov eax, DWORD PTR _depth$[esp]
mov DWORD PTR [esi+16], eax
mov DWORD PTR [esi], OFFSET ??_7box@@6B@
mov DWORD PTR [esi+8], ecx
mov DWORD PTR [esi+12], edx
mov eax, esi
pop esi
ret 16
??0box@@QAE@HHHH@Z ENDP ; box::box
Here we see slightly diferent memory layout: the first field is a pointer to some table box::vftable (name was set by
MSVC compiler).
Inthis tableweseealinktothetablenamedbox::RTTI Complete Object Locatorandalsoalinktothebox::dump()
method. So this is named virtual methods table and RTTI
All keys lesser than node key value is stored on the lef side. All keys greater than node key value is stored on the right
side.
286
29.4. S1l Cn/l1lk 29. C++
Hence, finding algorithmis straightforward: if the value you looking for is lesser than current nodes key value: move lef,
if it is greater: move right, stop if the value required is equals to the nodes key value. That is why searching algorithm may
search for numbers, text strings, etc, using only key comparison function.
All keys has unique values.
Having that, one need log
2
n steps in order to find a key in the balanced binary tree of n keys. It is 10 steps for 1000
keys, or 13 steps for 10000 keys. Not bad, but tree should always be balanced for this: i.e., keys should be distributed
evenly on all tiers. Insertion and removal operations do some maintenance to keep tree in balanced state.
There are several popular balancingalgorithms available, includingAVL tree andred-black tree. The latter extends anode
by a color value for simplifying balancing process, hence, each node may be red or black.
Both GCC and MSVC std::map and std::set template implementations use red-black trees.
std::set contain only keys. std::map is extended version of set: it also has a value at each node.
H5vC
#include <map>
#include <set>
#include <string>
#include <iostream>
// structure is not packed!
struct tree_node
{
struct tree_node *Left;
struct tree_node *Parent;
struct tree_node *Right;
char Color; // 0 - Red, 1 - Black
char Isnil;
//std::pair Myval;
unsigned int first; // called Myval in std::set
const char *second; // not present in std::set
};
struct tree_struct
{
struct tree_node *Myhead;
size_t Mysize;
};
void dump_tree_node (struct tree_node *n, bool is_set, bool traverse)
{
printf ("ptr=0x%p Left=0x%p Parent=0x%p Right=0x%p Color=%d Isnil=%d\n",
n, n->Left, n->Parent, n->Right, n->Color, n->Isnil);
if (n->Isnil==0)
{
if (is_set)
printf ("first=%d\n", n->first);
else
printf ("first=%d second=[%s]\n", n->first, n->second);
}
if (traverse)
{
if (n->Isnil==1)
dump_tree_node (n->Parent, is_set, true);
else
{
if (n->Left->Isnil==0)
dump_tree_node (n->Left, is_set, true);
if (n->Right->Isnil==0)
dump_tree_node (n->Right, is_set, true);
};
287
29.4. S1l Cn/l1lk 29. C++
};
};
const char* ALOT_OF_TABS="\t\t\t\t\t\t\t\t\t\t\t";
void dump_as_tree (int tabs, struct tree_node *n, bool is_set)
{
if (is_set)
printf ("%d\n", n->first);
else
printf ("%d [%s]\n", n->first, n->second);
if (n->Left->Isnil==0)
{
printf ("%.*sL-------", tabs, ALOT_OF_TABS);
dump_as_tree (tabs+1, n->Left, is_set);
};
if (n->Right->Isnil==0)
{
printf ("%.*sR-------", tabs, ALOT_OF_TABS);
dump_as_tree (tabs+1, n->Right, is_set);
};
};
void dump_map_and_set(struct tree_struct *m, bool is_set)
{
printf ("ptr=0x%p, Myhead=0x%p, Mysize=%d\n", m, m->Myhead, m->Mysize);
dump_tree_node (m->Myhead, is_set, true);
printf ("As a tree:\n");
printf ("root----");
dump_as_tree (1, m->Myhead->Parent, is_set);
};
int main()
{
// map
std::map<int, const char*> m;
m[10]="ten";
m[20]="twenty";
m[3]="three";
m[101]="one hundred one";
m[100]="one hundred";
m[12]="twelve";
m[107]="one hundred seven";
m[0]="zero";
m[1]="one";
m[6]="six";
m[99]="ninety-nine";
m[5]="five";
m[11]="eleven";
m[1001]="one thousand one";
m[1010]="one thousand ten";
m[2]="two";
m[9]="nine";
printf ("dumping m as map:\n");
dump_map_and_set ((struct tree_struct *)(void*)&m, false);
std::map<int, const char*>::iterator it1=m.begin();
printf ("m.begin():\n");
dump_tree_node ((struct tree_node *)*(void**)&it1, false, false);
288
29.4. S1l Cn/l1lk 29. C++
it1=m.end();
printf ("m.end():\n");
dump_tree_node ((struct tree_node *)*(void**)&it1, false, false);
// set
std::set<int> s;
s.insert(123);
s.insert(456);
s.insert(11);
s.insert(12);
s.insert(100);
s.insert(1001);
printf ("dumping s as set:\n");
dump_map_and_set ((struct tree_struct *)(void*)&s, true);
std::set<int>::iterator it2=s.begin();
printf ("s.begin():\n");
dump_tree_node ((struct tree_node *)*(void**)&it2, true, false);
it2=s.end();
printf ("s.end():\n");
dump_tree_node ((struct tree_node *)*(void**)&it2, true, false);
};
Listing .: MSVC
dumping m as map:
ptr=0x0020FE04, Myhead=0x005BB3A0, Mysize=17
ptr=0x005BB3A0 Left=0x005BB4A0 Parent=0x005BB3C0 Right=0x005BB580 Color=1 Isnil=1
ptr=0x005BB3C0 Left=0x005BB4C0 Parent=0x005BB3A0 Right=0x005BB440 Color=1 Isnil=0
first=10 second=[ten]
ptr=0x005BB4C0 Left=0x005BB4A0 Parent=0x005BB3C0 Right=0x005BB520 Color=1 Isnil=0
first=1 second=[one]
ptr=0x005BB4A0 Left=0x005BB3A0 Parent=0x005BB4C0 Right=0x005BB3A0 Color=1 Isnil=0
first=0 second=[zero]
ptr=0x005BB520 Left=0x005BB400 Parent=0x005BB4C0 Right=0x005BB4E0 Color=0 Isnil=0
first=5 second=[five]
ptr=0x005BB400 Left=0x005BB5A0 Parent=0x005BB520 Right=0x005BB3A0 Color=1 Isnil=0
first=3 second=[three]
ptr=0x005BB5A0 Left=0x005BB3A0 Parent=0x005BB400 Right=0x005BB3A0 Color=0 Isnil=0
first=2 second=[two]
ptr=0x005BB4E0 Left=0x005BB3A0 Parent=0x005BB520 Right=0x005BB5C0 Color=1 Isnil=0
first=6 second=[six]
ptr=0x005BB5C0 Left=0x005BB3A0 Parent=0x005BB4E0 Right=0x005BB3A0 Color=0 Isnil=0
first=9 second=[nine]
ptr=0x005BB440 Left=0x005BB3E0 Parent=0x005BB3C0 Right=0x005BB480 Color=1 Isnil=0
first=100 second=[one hundred]
ptr=0x005BB3E0 Left=0x005BB460 Parent=0x005BB440 Right=0x005BB500 Color=0 Isnil=0
first=20 second=[twenty]
ptr=0x005BB460 Left=0x005BB540 Parent=0x005BB3E0 Right=0x005BB3A0 Color=1 Isnil=0
first=12 second=[twelve]
ptr=0x005BB540 Left=0x005BB3A0 Parent=0x005BB460 Right=0x005BB3A0 Color=0 Isnil=0
first=11 second=[eleven]
ptr=0x005BB500 Left=0x005BB3A0 Parent=0x005BB3E0 Right=0x005BB3A0 Color=1 Isnil=0
first=99 second=[ninety-nine]
ptr=0x005BB480 Left=0x005BB420 Parent=0x005BB440 Right=0x005BB560 Color=0 Isnil=0
first=107 second=[one hundred seven]
ptr=0x005BB420 Left=0x005BB3A0 Parent=0x005BB480 Right=0x005BB3A0 Color=1 Isnil=0
first=101 second=[one hundred one]
ptr=0x005BB560 Left=0x005BB3A0 Parent=0x005BB480 Right=0x005BB580 Color=1 Isnil=0
first=1001 second=[one thousand one]
ptr=0x005BB580 Left=0x005BB3A0 Parent=0x005BB560 Right=0x005BB3A0 Color=0 Isnil=0
289
29.4. S1l Cn/l1lk 29. C++
first=1010 second=[one thousand ten]
As a tree:
root----10 [ten]
L-------1 [one]
L-------0 [zero]
R-------5 [five]
L-------3 [three]
L-------2 [two]
R-------6 [six]
R-------9 [nine]
R-------100 [one hundred]
L-------20 [twenty]
L-------12 [twelve]
L-------11 [eleven]
R-------99 [ninety-nine]
R-------107 [one hundred seven]
L-------101 [one hundred one]
R-------1001 [one thousand one]
R-------1010 [one thousand ten]
m.begin():
ptr=0x005BB4A0 Left=0x005BB3A0 Parent=0x005BB4C0 Right=0x005BB3A0 Color=1 Isnil=0
first=0 second=[zero]
m.end():
ptr=0x005BB3A0 Left=0x005BB4A0 Parent=0x005BB3C0 Right=0x005BB580 Color=1 Isnil=1
dumping s as set:
ptr=0x0020FDFC, Myhead=0x005BB5E0, Mysize=6
ptr=0x005BB5E0 Left=0x005BB640 Parent=0x005BB600 Right=0x005BB6A0 Color=1 Isnil=1
ptr=0x005BB600 Left=0x005BB660 Parent=0x005BB5E0 Right=0x005BB620 Color=1 Isnil=0
first=123
ptr=0x005BB660 Left=0x005BB640 Parent=0x005BB600 Right=0x005BB680 Color=1 Isnil=0
first=12
ptr=0x005BB640 Left=0x005BB5E0 Parent=0x005BB660 Right=0x005BB5E0 Color=0 Isnil=0
first=11
ptr=0x005BB680 Left=0x005BB5E0 Parent=0x005BB660 Right=0x005BB5E0 Color=0 Isnil=0
first=100
ptr=0x005BB620 Left=0x005BB5E0 Parent=0x005BB600 Right=0x005BB6A0 Color=1 Isnil=0
first=456
ptr=0x005BB6A0 Left=0x005BB5E0 Parent=0x005BB620 Right=0x005BB5E0 Color=0 Isnil=0
first=1001
As a tree:
root----123
L-------12
L-------11
R-------100
R-------456
R-------1001
s.begin():
ptr=0x005BB640 Left=0x005BB5E0 Parent=0x005BB660 Right=0x005BB5E0 Color=0 Isnil=0
first=11
s.end():
ptr=0x005BB5E0 Left=0x005BB640 Parent=0x005BB600 Right=0x005BB6A0 Color=1 Isnil=1
Structure is not packed, so both clcr type values occupy bytes each.
As for std::map, first and second can be viewed as a single value of std::pair type. std::set has only one value at
this point in the structure instead.
Current size of tree is always present, as in case of std::list MSVC implementation (..).
As in case of std::list, iterators are just pointers to the nodes. .begin() iterator pointing to the minimal key. That
pointer is not stored somewhere (as in lists), minimal key of tree is to be found each time. operator and operator++
moves pointer to the current node to predecessor and successor respectively, i.e., nodes which has previous and next key.
The algorithms for all these operations are described in [].
290
29.4. S1l Cn/l1lk 29. C++
.end() iterator pointing to the root node, it has 1 in Isnil, meaning, the node has no key and/or value. So it can be
viewed as a landing zone in HDD
.
6CC
#include <stdio.h>
#include <map>
#include <set>
#include <string>
#include <iostream>
struct map_pair
{
int key;
const char *value;
};
struct tree_node
{
int M_color; // 0 - Red, 1 - Black
struct tree_node *M_parent;
struct tree_node *M_left;
struct tree_node *M_right;
};
struct tree_struct
{
int M_key_compare;
struct tree_node M_header;
size_t M_node_count;
};
void dump_tree_node (struct tree_node *n, bool is_set, bool traverse, bool dump_keys_and_values
)
{
printf ("ptr=0x%p M_left=0x%p M_parent=0x%p M_right=0x%p M_color=%d\n",
n, n->M_left, n->M_parent, n->M_right, n->M_color);
void *point_after_struct=((char*)n)+sizeof(struct tree_node);
if (dump_keys_and_values)
{
if (is_set)
printf ("key=%d\n", *(int*)point_after_struct);
else
{
struct map_pair *p=(struct map_pair *)point_after_struct;
printf ("key=%d value=[%s]\n", p->key, p->value);
};
};
if (traverse==false)
return;
if (n->M_left)
dump_tree_node (n->M_left, is_set, traverse, dump_keys_and_values);
if (n->M_right)
dump_tree_node (n->M_right, is_set, traverse, dump_keys_and_values);
};
http://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS-4.1/stl__tree_8h-source.html
294
29.4. S1l Cn/l1lk 29. C++
Rebalancin demc (6CC)
Here is also a demo showing us how tree is rebalanced afer insertions.
Listing .: GCC
#include <stdio.h>
#include <map>
#include <set>
#include <string>
#include <iostream>
struct map_pair
{
int key;
const char *value;
};
struct tree_node
{
int M_color; // 0 - Red, 1 - Black
struct tree_node *M_parent;
struct tree_node *M_left;
struct tree_node *M_right;
};
struct tree_struct
{
int M_key_compare;
struct tree_node M_header;
size_t M_node_count;
};
const char* ALOT_OF_TABS="\t\t\t\t\t\t\t\t\t\t\t";
void dump_as_tree (int tabs, struct tree_node *n)
{
void *point_after_struct=((char*)n)+sizeof(struct tree_node);
printf ("%d\n", *(int*)point_after_struct);
if (n->M_left)
{
printf ("%.*sL-------", tabs, ALOT_OF_TABS);
dump_as_tree (tabs+1, n->M_left);
};
if (n->M_right)
{
printf ("%.*sR-------", tabs, ALOT_OF_TABS);
dump_as_tree (tabs+1, n->M_right);
};
};
void dump_map_and_set(struct tree_struct *m)
{
printf ("root----");
dump_as_tree (1, m->M_header.M_parent);
};
int main()
{
std::set<int> s;
s.insert(123);
295
29.4. S1l Cn/l1lk 29. C++
s.insert(456);
printf ("123, 456 are inserted\n");
dump_map_and_set ((struct tree_struct *)(void*)&s);
s.insert(11);
s.insert(12);
printf ("\n");
printf ("11, 12 are inserted\n");
dump_map_and_set ((struct tree_struct *)(void*)&s);
s.insert(100);
s.insert(1001);
printf ("\n");
printf ("100, 1001 are inserted\n");
dump_map_and_set ((struct tree_struct *)(void*)&s);
s.insert(667);
s.insert(1);
s.insert(4);
s.insert(7);
printf ("\n");
printf ("667, 1, 4, 7 are inserted\n");
dump_map_and_set ((struct tree_struct *)(void*)&s);
printf ("\n");
};
Listing .: GCC ..
123, 456 are inserted
root----123
R-------456
11, 12 are inserted
root----123
L-------11
R-------12
R-------456
100, 1001 are inserted
root----123
L-------12
L-------11
R-------100
R-------456
R-------1001
667, 1, 4, 7 are inserted
root----12
L-------4
L-------1
R-------11
L-------7
R-------123
L-------100
R-------667
L-------456
R-------1001
296
Cn/l1lk 30. 0BluSC/1l0n
Cbapter 80
obfuscaticn
Obfuscation is an attempt to hide the code (or its meaning) from reverse engineer.
80.1 1ext strins
As I revealed in () text strings may be utterly helpful. Programmers who aware of this, may try to hide them resulting
unableness to find the string in IDA or any hex editor.
Here is the simpliest method.
That is how the string may be constructed:
mov byte ptr [ebx], h
mov byte ptr [ebx+1], e
mov byte ptr [ebx+2], l
mov byte ptr [ebx+3], l
mov byte ptr [ebx+4], o
mov byte ptr [ebx+5],
mov byte ptr [ebx+6], w
mov byte ptr [ebx+7], o
mov byte ptr [ebx+8], r
mov byte ptr [ebx+9], l
mov byte ptr [ebx+10], d
The string is also can be compared with another like:
mov ebx, offset username
cmp byte ptr [ebx], j
jnz fail
cmp byte ptr [ebx+1], o
jnz fail
cmp byte ptr [ebx+2], h
jnz fail
cmp byte ptr [ebx+3], n
jnz fail
jz it_is_john
In both cases, it is impossible to find these strings straightforwardly in hex editor.
By the way, it is a chance to work with the strings when it is impossible to allocate it in data segment, for example, in PIC
or in shellcode.
Another method I once saw is to use sprintf() for constructing:
sprintf(buf, "%s%c%s%c%s", "hel",l,"o w",o,"rld");
The code looks weird, but as a simpliest anti-reversing measure it may be helpul.
Text strings may also be present in encrypted form, then all string usage will precede string decrypting routine.
297
30.2. l\lCu1/Bll C0ul Cn/l1lk 30. 0BluSC/1l0n
80.2 xecutable ccde
80.2.1 lnsertin arbae
Executable code obfuscation mean inserting randomgarbage code between real one, which executes but not doing anything
useful.
Simple example is:
add eax, ebx
mul ecx
Listing .: obfuscated code
xor esi, 011223344h ; garbage
add esi, eax ; garbage
add eax, ebx
mov edx, eax ; garbage
shl edx, 4 ; garbage
mul ecx
xor esi, ecx ; garbage
Here garbage code uses registers which are not used in the real code (ESI and EDX). However, intermediate results pro-
duced by the real code may be used by garbage instructions for extra messwhy not?
80.2.2 Replacin instructicns tc blcated equivalents
MOV op1, op2 can be replaced by PUSH op2 / POP op1 pair.
JMP label can be replaced by PUSH label / RET pair. IDA will not show references to the label.
CALL label can be replaced by PUSH label_after_CALL_instruction / PUSH label / RET triplet.
PUSH op may also be replaced by SUB ESP, 4 (or 8) / MOV [ESP], op pair.
80.2.8 Always executedjnever executed ccde
If the developer is sure that ESI at the point is always :
mov esi, 1
... ; some code not touching ESI
dec esi
... ; some code not touching ESI
cmp esi, 0
jz real_code
; fake luggage
real_code:
Reverse engineer need some time to get into it.
This is also called ocqoe reJ|ccte.
Another example (and again, developer is sure that ESIis always zero):
add eax, ebx ; real code
mul ecx ; real code
add eax, esi ; opaque predicate.
80.2.4 Hakin a lct cf mess
instruction 1
instruction 2
instruction 3
Can be replaced to:
298
30.3. vlk1u/l M/Cnlnl / lSluu0-C0ul Cn/l1lk 30. 0BluSC/1l0n
begin: jmp ins1_label
ins2_label: instruction 2
jmp ins3_label
ins3_label: instruction 3
jmp exit:
ins1_label: instruction 1
jmp ins2_label
exit:
80.2.$ Usin indirect pcinters
dummy_data1 db 100h dup (0)
message1 db hello world,0
dummy_data2 db 200h dup (0)
message2 db another message,0
func proc
...
mov eax, offset dummy_data1 ; PE or ELF reloc here
add eax, 100h
push eax
call dump_string
...
mov eax, offset dummy_data2 ; PE or ELF reloc here
add eax, 200h
push eax
call dump_string
...
func endp
IDA will show references only to dummy_data1 and dummy_data2, but not to the text strings.
Global variables and even functions may be accessed like that.
80.8 virtual macbine j pseudc-ccde
Programmer may construct his/her own PL or ISA and interpreter for it. (Like pre-. Visual Basic, .NET, Java machine). Re-
verse engineerwill have to spend some time to understand meaning and details of all ISA instructions. Probably, he/she will
also need to write a disassembler/decompiler of some sort.
80.4 otber tbin tc menticn
My own (yet weak) attempt to patch Tiny C compiler to produce obfuscated code: http://blog.yurichev.com/node/58.
Using MOV instruction for really complicated things: [].
299
Cn/l1lk 3. wlnu0wS 6-Bl1
Cbapter 81
windcws 18-bit
-bit Windows programare rare nowadays, but in the sense of retrocomputing, or dongle hacking (), I sometimes digging
into these.
-bit Windows versions were up to .. //ME also support -bit code, as well as -bit versions of Windows NT line.
-bit versions of Windows NT line are not support -bit executable code at all.
The code is resembling MS-DOS one.
Executable files has not MZ-type, nor PE-type, they are NE-type (so-called new executable).
All examples considered here were compiled by OpenWatcom . compiler, using these switches:
wcl.exe -i=C:/WATCOM/h/win/ -s -os -bt=windows -bcl=windows example.c
81.1 xample#1
#include <windows.h>
int PASCAL WinMain( HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow )
{
MessageBeep(MB_ICONEXCLAMATION);
return 0;
};
WinMain proc near
push bp
mov bp, sp
mov ax, 30h ; 0 ; MB_ICONEXCLAMATION constant
push ax
call MESSAGEBEEP
xor ax, ax ; return 0
pop bp
retn 0Ah
WinMain endp
Seems to be easy, so far.
81.2 xample #2
#include <windows.h>
int PASCAL WinMain( HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow )
300
3.3. l\/Mlll #3 Cn/l1lk 3. wlnu0wS 6-Bl1
{
MessageBox (NULL, "hello, world", "caption", MB_YESNOCANCEL);
return 0;
};
WinMain proc near
push bp
mov bp, sp
xor ax, ax ; NULL
push ax
push ds
mov ax, offset aHelloWorld ; 0x18. "hello, world"
push ax
push ds
mov ax, offset aCaption ; 0x10. "caption"
push ax
mov ax, 3 ; MB_YESNOCANCEL
push ax
call MESSAGEBOX
xor ax, ax ; return 0
pop bp
retn 0Ah
WinMain endp
dseg02:0010 aCaption db caption,0
dseg02:0018 aHelloWorld db hello, world,0
Couple important things here: PASCAL calling convention dictates passing the last argument first (MB_YESNOCANCEL),
and the first argumentlast (NULL). This convention also tells callee to restore stack pointer: hence RETN instruction has 0Ah
argument, meaning pointer should be shifed above by 10 bytes upon function exit.
Pointers are passed by pairs: a segment of data is first passed, then the pointer inside of segment. Here is only one
segment in this example, so DS is always pointing to data segment of executable.
81.8 xample #8
#include <windows.h>
int PASCAL WinMain( HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow )
{
int result=MessageBox (NULL, "hello, world", "caption", MB_YESNOCANCEL);
if (result==IDCANCEL)
MessageBox (NULL, "you pressed cancel", "caption", MB_OK);
else if (result==IDYES)
MessageBox (NULL, "you pressed yes", "caption", MB_OK);
else if (result==IDNO)
MessageBox (NULL, "you pressed no", "caption", MB_OK);
return 0;
};
WinMain proc near
push bp
mov bp, sp
xor ax, ax ; NULL
push ax
301
3.4. l\/Mlll #4 Cn/l1lk 3. wlnu0wS 6-Bl1
push ds
mov ax, offset aHelloWorld ; "hello, world"
push ax
push ds
mov ax, offset aCaption ; "caption"
push ax
mov ax, 3 ; MB_YESNOCANCEL
push ax
call MESSAGEBOX
cmp ax, 2 ; IDCANCEL
jnz short loc_2F
xor ax, ax
push ax
push ds
mov ax, offset aYouPressedCanc ; "you pressed cancel"
jmp short loc_49
loc_2F:
cmp ax, 6 ; IDYES
jnz short loc_3D
xor ax, ax
push ax
push ds
mov ax, offset aYouPressedYes ; "you pressed yes"
jmp short loc_49
loc_3D:
cmp ax, 7 ; IDNO
jnz short loc_57
xor ax, ax
push ax
push ds
mov ax, offset aYouPressedNo ; "you pressed no"
loc_49:
push ax
push ds
mov ax, offset aCaption ; "caption"
push ax
xor ax, ax
push ax
call MESSAGEBOX
loc_57:
xor ax, ax
pop bp
retn 0Ah
WinMain endp
Somewhat extended example from the previous section.
81.4 xample #4
#include <windows.h>
int PASCAL func1 (int a, int b, int c)
{
return a*b+c;
};
long PASCAL func2 (long a, long b, long c)
{
return a*b+c;
};
302
3.4. l\/Mlll #4 Cn/l1lk 3. wlnu0wS 6-Bl1
long PASCAL func3 (long a, long b, long c, int d)
{
return a*b+c-d;
};
int PASCAL WinMain( HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow )
{
func1 (123, 456, 789);
func2 (600000, 700000, 800000);
func3 (600000, 700000, 800000, 123);
return 0;
};
func1 proc near
c = word ptr 4
b = word ptr 6
a = word ptr 8
push bp
mov bp, sp
mov ax, [bp+a]
imul [bp+b]
add ax, [bp+c]
pop bp
retn 6
func1 endp
func2 proc near
arg_0 = word ptr 4
arg_2 = word ptr 6
arg_4 = word ptr 8
arg_6 = word ptr 0Ah
arg_8 = word ptr 0Ch
arg_A = word ptr 0Eh
push bp
mov bp, sp
mov ax, [bp+arg_8]
mov dx, [bp+arg_A]
mov bx, [bp+arg_4]
mov cx, [bp+arg_6]
call sub_B2 ; long 32-bit multiplication
add ax, [bp+arg_0]
adc dx, [bp+arg_2]
pop bp
retn 12
func2 endp
func3 proc near
arg_0 = word ptr 4
arg_2 = word ptr 6
arg_4 = word ptr 8
arg_6 = word ptr 0Ah
arg_8 = word ptr 0Ch
303
3.4. l\/Mlll #4 Cn/l1lk 3. wlnu0wS 6-Bl1
arg_A = word ptr 0Eh
arg_C = word ptr 10h
push bp
mov bp, sp
mov ax, [bp+arg_A]
mov dx, [bp+arg_C]
mov bx, [bp+arg_6]
mov cx, [bp+arg_8]
call sub_B2 ; long 32-bit multiplication
mov cx, [bp+arg_2]
add cx, ax
mov bx, [bp+arg_4]
adc bx, dx ; BX=high part, CX=low part
mov ax, [bp+arg_0]
cwd ; AX=low part d, DX=high part d
sub cx, ax
mov ax, cx
sbb bx, dx
mov dx, bx
pop bp
retn 14
func3 endp
WinMain proc near
push bp
mov bp, sp
mov ax, 123
push ax
mov ax, 456
push ax
mov ax, 789
push ax
call func1
mov ax, 9 ; high part of 600000
push ax
mov ax, 27C0h ; low part of 600000
push ax
mov ax, 0Ah ; high part of 700000
push ax
mov ax, 0AE60h ; low part of 700000
push ax
mov ax, 0Ch ; high part of 800000
push ax
mov ax, 3500h ; low part of 800000
push ax
call func2
mov ax, 9 ; high part of 600000
push ax
mov ax, 27C0h ; low part of 600000
push ax
mov ax, 0Ah ; high part of 700000
push ax
mov ax, 0AE60h ; low part of 700000
push ax
mov ax, 0Ch ; high part of 800000
push ax
mov ax, 3500h ; low part of 800000
push ax
mov ax, 7Bh ; 123
push ax
304
3.5. l\/Mlll #5 Cn/l1lk 3. wlnu0wS 6-Bl1
call func3
xor ax, ax ; return 0
pop bp
retn 0Ah
WinMain endp
-bit values (long data type mean -bit, while |nt is fixed on -bit data type) in -bit code (both MS-DOS and Win)
are passed by pairs. It is just like -bit values are used in -bit environment ().
sub_B2 here is a library function written by compiler developers, doing long multiplication, i.e., multiplies two -bit
values. Other compiler functions doing the same are listed here: E, D.
ADD/ADCinstructionpair is usedfor additionof compoundvalues: ADDmay set/clear CFcarry flag, ADCwill use it. SUB/SBB
instruction pair is used for subtraction: SUB may set/clear CF flag, SBB will use it.
-bit values are returned from functions in DX:AX register pair.
Constant also passed by pairs in WinMain() here.
|nt-typed constant is first converted respecting its sign into -bit value using CWD instruction.
81.$ xample #$
#include <windows.h>
int PASCAL string_compare (char *s1, char *s2)
{
while (1)
{
if (*s1!=*s2)
return 0;
if (*s1==0 || *s2==0)
return 1; // end of string
s1++;
s2++;
};
};
int PASCAL string_compare_far (char far *s1, char far *s2)
{
while (1)
{
if (*s1!=*s2)
return 0;
if (*s1==0 || *s2==0)
return 1; // end of string
s1++;
s2++;
};
};
void PASCAL remove_digits (char *s)
{
while (*s)
{
if (*s>=0 && *s<=9)
*s=-;
s++;
};
};
char str[]="hello 1234 world";
305
3.5. l\/Mlll #5 Cn/l1lk 3. wlnu0wS 6-Bl1
int PASCAL WinMain( HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow )
{
string_compare ("asd", "def");
string_compare_far ("asd", "def");
remove_digits (str);
MessageBox (NULL, str, "caption", MB_YESNOCANCEL);
return 0;
};
string_compare proc near
arg_0 = word ptr 4
arg_2 = word ptr 6
push bp
mov bp, sp
push si
mov si, [bp+arg_0]
mov bx, [bp+arg_2]
loc_12: ; CODE XREF: string_compare+21j
mov al, [bx]
cmp al, [si]
jz short loc_1C
xor ax, ax
jmp short loc_2B
loc_1C: ; CODE XREF: string_compare+Ej
test al, al
jz short loc_22
jnz short loc_27
loc_22: ; CODE XREF: string_compare+16j
mov ax, 1
jmp short loc_2B
loc_27: ; CODE XREF: string_compare+18j
inc bx
inc si
jmp short loc_12
loc_2B: ; CODE XREF: string_compare+12j
; string_compare+1Dj
pop si
pop bp
retn 4
string_compare endp
string_compare_far proc near ; CODE XREF: WinMain+18p
arg_0 = word ptr 4
arg_2 = word ptr 6
arg_4 = word ptr 8
arg_6 = word ptr 0Ah
306
3.5. l\/Mlll #5 Cn/l1lk 3. wlnu0wS 6-Bl1
push bp
mov bp, sp
push si
mov si, [bp+arg_0]
mov bx, [bp+arg_4]
loc_3A: ; CODE XREF: string_compare_far+35j
mov es, [bp+arg_6]
mov al, es:[bx]
mov es, [bp+arg_2]
cmp al, es:[si]
jz short loc_4C
xor ax, ax
jmp short loc_67
loc_4C: ; CODE XREF: string_compare_far+16j
mov es, [bp+arg_6]
cmp byte ptr es:[bx], 0
jz short loc_5E
mov es, [bp+arg_2]
cmp byte ptr es:[si], 0
jnz short loc_63
loc_5E: ; CODE XREF: string_compare_far+23j
mov ax, 1
jmp short loc_67
loc_63: ; CODE XREF: string_compare_far+2Cj
inc bx
inc si
jmp short loc_3A
loc_67: ; CODE XREF: string_compare_far+1Aj
; string_compare_far+31j
pop si
pop bp
retn 8
string_compare_far endp
remove_digits proc near ; CODE XREF: WinMain+1Fp
arg_0 = word ptr 4
push bp
mov bp, sp
mov bx, [bp+arg_0]
loc_72: ; CODE XREF: remove_digits+18j
mov al, [bx]
test al, al
jz short loc_86
cmp al, 30h ; 0
jb short loc_83
cmp al, 39h ; 9
ja short loc_83
mov byte ptr [bx], 2Dh ; -
loc_83: ; CODE XREF: remove_digits+Ej
307
3.5. l\/Mlll #5 Cn/l1lk 3. wlnu0wS 6-Bl1
; remove_digits+12j
inc bx
jmp short loc_72
loc_86: ; CODE XREF: remove_digits+Aj
pop bp
retn 2
remove_digits endp
WinMain proc near ; CODE XREF: start+EDp
push bp
mov bp, sp
mov ax, offset aAsd ; "asd"
push ax
mov ax, offset aDef ; "def"
push ax
call string_compare
push ds
mov ax, offset aAsd ; "asd"
push ax
push ds
mov ax, offset aDef ; "def"
push ax
call string_compare_far
mov ax, offset aHello1234World ; "hello 1234 world"
push ax
call remove_digits
xor ax, ax
push ax
push ds
mov ax, offset aHello1234World ; "hello 1234 world"
push ax
push ds
mov ax, offset aCaption ; "caption"
push ax
mov ax, 3 ; MB_YESNOCANCEL
push ax
call MESSAGEBOX
xor ax, ax
pop bp
retn 0Ah
WinMain endp
Here we see adiference betweenso-callednear pointers andfar pointers: another weirdartefact of segmentedmem-
ory of -bit .
Read more about it: .
near pointers are those which points within current data segment. Hence, string_compare() function takes only two
-bit pointers, and accesses data as it is located in the segment DS pointing to (mov al, [bx] instruction actually works
like mov al, ds:[bx]DS is implicitly used here).
far pointers are those which may point to data in another segment memory. Hence string_compare_far() takes
-bit pair as a pointer, loads high part of it to ES segment register and accessing data through it (mov al, es:[bx]). far
pointers are also used in my MessageBox() win example: .. Indeed, Windows kernel is not aware which data segment
to use when accessing text strings, so it need more complete information.
The reason for this distinction is that compact program may use just one kb data segment, so it doesnt need to pass
high part of the address, which is always the same. Bigger program may use several kb data segments, so it needs to
specify each time, in which segment data is located.
The same story for code segments. Compact program may have all executable code within one kb-segment, then all
functions will be called in it using CALL NEAR instruction, and code flow will be returned using RETN. But if there are several
code segments, then the address of the function will be specified by pair, it will be called using CALL FAR instruction, and
the code flow will be returned using RETF.
308
3.6. l\/Mlll #6 Cn/l1lk 3. wlnu0wS 6-Bl1
This is what to be set in compiler by specifying memory model.
Compilers targeting MS-DOS and Win has specific libraries for each memory model: they were difer by pointer types
for code and data.
81.8 xample #8
#include <windows.h>
#include <time.h>
#include <stdio.h>
char strbuf[256];
int PASCAL WinMain( HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow )
{
struct tm *t;
time_t unix_time;
unix_time=time(NULL);
t=localtime (&unix_time);
sprintf (strbuf, "%04d-%02d-%02d %02d:%02d:%02d", t->tm_year+1900, t->tm_mon, t->
tm_mday,
t->tm_hour, t->tm_min, t->tm_sec);
MessageBox (NULL, strbuf, "caption", MB_OK);
return 0;
};
WinMain proc near
var_4 = word ptr -4
var_2 = word ptr -2
push bp
mov bp, sp
push ax
push ax
xor ax, ax
call time_
mov [bp+var_4], ax ; low part of UNIX time
mov [bp+var_2], dx ; high part of UNIX time
lea ax, [bp+var_4] ; take a pointer of high part
call localtime_
mov bx, ax ; t
push word ptr [bx] ; second
push word ptr [bx+2] ; minute
push word ptr [bx+4] ; hour
push word ptr [bx+6] ; day
push word ptr [bx+8] ; month
mov ax, [bx+0Ah] ; year
add ax, 1900
push ax
mov ax, offset a04d02d02d02d02 ; "%04d-%02d-%02d %02d:%02d:%02d"
push ax
309
3.6. l\/Mlll #6 Cn/l1lk 3. wlnu0wS 6-Bl1
mov ax, offset strbuf
push ax
call sprintf_
add sp, 10h
xor ax, ax ; NULL
push ax
push ds
mov ax, offset strbuf
push ax
push ds
mov ax, offset aCaption ; "caption"
push ax
xor ax, ax ; MB_OK
push ax
call MESSAGEBOX
xor ax, ax
mov sp, bp
pop bp
retn 0Ah
WinMain endp
UNIX time is -bit value, so it is returned in DX:AX register pair and stored into two local -bit variables. Then a pointer
to the pair is passed to localtime() function. The localtime() function has struct tm allocated somewhere in guts of
the C library, so only pointer to it is returned. By the way, this is also means that the function cannot be called again until its
results are used.
For the time() and localtime() functions, a Watcom calling convention is used here: first four arguments are passed
in AX, DX, BX and CX, registers, all the rest arguments are via stack. Functions used this convention are also marked by under-
score at the end of name.
sprintf() does not use PASCAL calling convention, nor Watcom one, so the arguments are passed in usual cJecl way
(.).
81.8.1 6lcbal variables
This is the same example, but now these variables are global:
#include <windows.h>
#include <time.h>
#include <stdio.h>
char strbuf[256];
struct tm *t;
time_t unix_time;
int PASCAL WinMain( HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow )
{
unix_time=time(NULL);
t=localtime (&unix_time);
sprintf (strbuf, "%04d-%02d-%02d %02d:%02d:%02d", t->tm_year+1900, t->tm_mon, t->
tm_mday,
t->tm_hour, t->tm_min, t->tm_sec);
MessageBox (NULL, strbuf, "caption", MB_OK);
return 0;
};
310
3.6. l\/Mlll #6 Cn/l1lk 3. wlnu0wS 6-Bl1
unix_time_low dw 0
unix_time_high dw 0
t dw 0
WinMain proc near
push bp
mov bp, sp
xor ax, ax
call time_
mov unix_time_low, ax
mov unix_time_high, dx
mov ax, offset unix_time_low
call localtime_
mov bx, ax
mov t, ax ; will not be used in future...
push word ptr [bx] ; seconds
push word ptr [bx+2] ; minutes
push word ptr [bx+4] ; hour
push word ptr [bx+6] ; day
push word ptr [bx+8] ; month
mov ax, [bx+0Ah] ; year
add ax, 1900
push ax
mov ax, offset a04d02d02d02d02 ; "%04d-%02d-%02d %02d:%02d:%02d"
push ax
mov ax, offset strbuf
push ax
call sprintf_
add sp, 10h
xor ax, ax ; NULL
push ax
push ds
mov ax, offset strbuf
push ax
push ds
mov ax, offset aCaption ; "caption"
push ax
xor ax, ax ; MB_OK
push ax
call MESSAGEBOX
xor ax, ax ; return 0
pop bp
retn 0Ah
WinMain endp
t will not be used, but compiler emitted the code which stores the value. Because it is not sure, maybe that value will be
eventually used somewhere.
311
art ll
lmpcrtant fundamentals
http://en.wikipedia.org/wiki/Signed_number_representations
313
Cn/l1lk 33. lnul/nnlSS
Cbapter 88
ndianness
Endianness is a way of representing values in memory.
88.1 8i-endian
A 0x12345678 value will be represented in memory as:
address in memory byte value
+ x
+ x
+ x
+ x
Big-endian CPUs include Motorola k, IBM POWER.
88.2 Little-endian
A 0x12345678 value will be represented in memory as:
address in memory byte value
+ x
+ x
+ x
+ x
Little-endian CPUs include Intel x.
88.8 8i-endian
CPUs which may switch between endianness are ARM, PowerPC, SPARC, MIPS, IA
, etc.
88.4 Ccnvertin data
TCP/IP network data packets use big-endian conventions, so that is why a program working on little-endian architecture
should convert values using htonl() and htons() functions.
In TCP/IP, big-endian is also called network byte order, while little-endianhost byte order.
The BSWAP instruction can also be used for conversion.
,
libpng
), and which one is related to what we are trying to find in the code.
It is just absurdly to rewrite all code to C/C++ to find what we looking for.
One of the primary reverse engineers task is to find quickly in the code what is needed.
IDA disassembler allow us search among text strings, byte sequences, constants. It is even possible to export the code
into .lst or .asm text file and then use grep, awk, etc.
When you try to understand what a code is doing, this easily could be some open-source library like libpng. So when you
see some constants or text strings looks familiar, it is always worth to oole it. And if you find the opensource project where
it is used, then it will be enough just to compare the functions. It may solve some part of problem.
For example, if programuse a XML files, the first step may be determining, which XML-library is used for processing, since
standard (or well-known) library is usually used instead of self-made one.
For example, once upon a time I tried to understand howSAP . network packets compression/decompression is work-
ing. It is a huge sofware, but a detailed .PDB with debugging information is present, and that is cozily. I finally came to idea
that one of the functions doing decompressing of network packet called CsDecomprLZC(). Immediately I tried to google its
name and I quickly found the function named as the same is used in MaxDB (it is open-source SAP project)
.
http://www.google.com/search?q=CsDecomprLZC
Astoundingly, MaxDB and SAP . sofware shared likewise code for network packets compression/decompression.
http://www.boost.org/
http://www.libpng.org/pub/png/libpng.html
may help.
But then you will need to look inside anyway.
First what to look on is which functions from OS API
http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
http://www.wireshark.org/
http://msdn.microsoft.com/en-us/library/windows/desktop/ms724862(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/ms724865(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/ms724868(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/ms724897(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/ms724911(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/ms724353(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/ms645505(VS.85).aspx
http://msdn.microsoft.com/en-us/library/ms645507(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/ms645521(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/ms645489(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/ms647990(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/ms741688(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/ms742203(v=vs.85).aspx
320
35.2. 1k/Clk. ln1lkCll1lno /ll lunC1l0nS ln SllClllC M0uull Cn/l1lk 35. C0MMunlC/1l0n wl1n 1nl 0u1lk w0klu (wln32;
File access (kernel.dll): CreateFile
, ReadFile
, ReadFileEx
, WriteFile
, WriteFileEx
.
High-level access to the Internet (wininet.dll): WinHttpOpen
.
Check digital signature of a executable file (wintrust.dll): WinVerifyTrust
.
Standard MSVC library (in case of dynamic linking) (msvcr*.dll): assert, itoa, ltoa, open, printf, read, strcmp, atol, atoi,
fopen, fread, fwrite, memcmp, rand, strlen, strstr, strchr.
8$.2 tracer: lnterceptin all functicns in specific mcdule
There is INT-breakpoints in tracer, triggering only once, however, they can be set to all functions in specific DLL.
--one-time-INT3-bp:somedll.dll!.*
Or, lets set INT-breakpoints to all functions with xml prefix in name:
--one-time-INT3-bp:somedll.dll!xml.*
On the other side of coin, such breakpoints are triggered only once.
Tracer will show calling of a function, if it happens, but only once. Another drawback it is impossible to see functions
arguments.
Nevertheless, this feature is very useful when you know the program uses a DLL, but do not know which functions in it.
And there are a lot of functions.
For example, lets see, what uptime cygwin-utility uses:
tracer -l:uptime.exe --one-time-INT3-bp:cygwin1.dll!.*
Thus we may see all cygwin.dll library functions which were called at least once, and where from:
One-time INT3 breakpoint: cygwin1.dll!__main (called from uptime.exe!OEP+0x6d (0x40106d))
One-time INT3 breakpoint: cygwin1.dll!_geteuid32 (called from uptime.exe!OEP+0xba3 (0x401ba3))
One-time INT3 breakpoint: cygwin1.dll!_getuid32 (called from uptime.exe!OEP+0xbaa (0x401baa))
One-time INT3 breakpoint: cygwin1.dll!_getegid32 (called from uptime.exe!OEP+0xcb7 (0x401cb7))
One-time INT3 breakpoint: cygwin1.dll!_getgid32 (called from uptime.exe!OEP+0xcbe (0x401cbe))
One-time INT3 breakpoint: cygwin1.dll!sysconf (called from uptime.exe!OEP+0x735 (0x401735))
One-time INT3 breakpoint: cygwin1.dll!setlocale (called from uptime.exe!OEP+0x7b2 (0x4017b2))
One-time INT3 breakpoint: cygwin1.dll!_open64 (called from uptime.exe!OEP+0x994 (0x401994))
One-time INT3 breakpoint: cygwin1.dll!_lseek64 (called from uptime.exe!OEP+0x7ea (0x4017ea))
One-time INT3 breakpoint: cygwin1.dll!read (called from uptime.exe!OEP+0x809 (0x401809))
One-time INT3 breakpoint: cygwin1.dll!sscanf (called from uptime.exe!OEP+0x839 (0x401839))
One-time INT3 breakpoint: cygwin1.dll!uname (called from uptime.exe!OEP+0x139 (0x401139))
One-time INT3 breakpoint: cygwin1.dll!time (called from uptime.exe!OEP+0x22e (0x40122e))
One-time INT3 breakpoint: cygwin1.dll!localtime (called from uptime.exe!OEP+0x236 (0x401236))
One-time INT3 breakpoint: cygwin1.dll!sprintf (called from uptime.exe!OEP+0x25a (0x40125a))
One-time INT3 breakpoint: cygwin1.dll!setutent (called from uptime.exe!OEP+0x3b1 (0x4013b1))
One-time INT3 breakpoint: cygwin1.dll!getutent (called from uptime.exe!OEP+0x3c5 (0x4013c5))
One-time INT3 breakpoint: cygwin1.dll!endutent (called from uptime.exe!OEP+0x3e6 (0x4013e6))
One-time INT3 breakpoint: cygwin1.dll!puts (called from uptime.exe!OEP+0x4c3 (0x4014c3))
http://msdn.microsoft.com/en-us/library/windows/desktop/aa363858(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/aa365467(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/aa365468(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/aa365747(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/aa365748(v=vs.85).aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/aa384098(v=vs.85).aspx
http://msdn.microsoft.com/library/windows/desktop/aa388208.aspx
321
Cn/l1lk 36. S1klnoS
Cbapter 88
5trins
88.1 1ext strins
Usual C-strings are zero-terminated (ASCIIZ-strings).
The reason why C string format is as it is (zero-terminating) is apparently hisorical. In [] we can read:
A minor diference was that the unit of I/O was the word, not the byte, because the PDP- was a word-
addressed machine. In practice this meant merely that all programs dealing with character streams ignored
null characters, because null was used to pad a file to an even number of characters.
In Hiew or FAR Manager these strings looks like as it is:
int main()
{
printf ("Hello, world!\n");
};
Figure .: Hiew
The string is preceeded by -bit or -bit string length value.
For example:
Listing .: Delphi
CODE:00518AC8 dd 19h
CODE:00518ACC aLoading___Plea db Loading... , please wait.,0
...
CODE:00518AFC dd 10h
CODE:00518B00 aPreparingRun__ db Preparing run...,0
322
36.. 1l\1 S1klnoS Cn/l1lk 36. S1klnoS
88.1.1 Uniccde
Ofen, what is called by Unicode is a methods of strings encoding when each character occupies bytes or bits. This is
common terminological mistake. Unicode is a standard assigning a number to each character of many writing systems of the
world, but not describing encoding method.
Most popular encoding methods are: UTF- (ofen used in Internet and *NIX systems) and UTF-LE (used in Windows).
U1f-8
UTF- is one of the most successful methods of character encoding. All Latin symbols are encoded just like in an ASCII-
encoding, and symbols beyond ASCII-table are encoded by several bytes. 0 is encoded as it was before, so all standard C
string functions works with UTF--strings just like any other string.
Lets see how symbols in various languages are encoded in UTF- and how it looks like in FAR in codepage
:
Figure .: FAR: UTF-
As it seems, English language string looks like as it is in ASCII-encoding. Hungarian language uses Latin symbols plus
symbols with diacritic marks. These symbols are encoded by several bytes, I underscored them by red. The same story with
Icelandic and Polish languages. I also used Euro currency symbol at the begin, which is encoded by bytes. All the rest
writing systems here have no connection with Latin. At least about Russian, Arabic, Hebrewand Hindi we could see recurring
bytes, and that is not surprise: all symbols fromthe writing systemis usually located in the same Unicode table, so their code
begins with the same numbers.
At the very beginning, before Howmuch? string we see bytes, which is BOM
.
Error messages may help us as well. In Oracle RDBMS, errors are reporting using group of functions. More about it
.
It is possible to find very quickly, which functions reporting about errors and in which conditions. By the way, it is ofen
a reason why copy-protection systems has inarticulate cryptic error messages or just error numbers. No one happy when
sofware cracker quickly understand why copy-protection is triggered just by error message.
One example of encrypted error messages is here: ..
https://en.wikipedia.org/wiki/Cyrillic_(Unicode_block)
http://blog.yurichev.com/node/32
http://blog.yurichev.com/node/43
325
Cn/l1lk 37. C/llS 10 /SSlk1(;
Cbapter 87
Calls tc assert()
Sometimes assert()macropresenceis useful too: commonly this macroleaves sourcefilename, linenumber andcondition
in code.
Most useful information is contained in assert-condition, we can deduce variable names, or structure field names from
it. Another useful piece of information is file names we can try to deduce what type of code is here. Also by file names it is
possible to recognize a well-known open-source libraries.
Listing .: Example of informative assert() calls
.text:107D4B29 mov dx, [ecx+42h]
.text:107D4B2D cmp edx, 1
.text:107D4B30 jz short loc_107D4B4A
.text:107D4B32 push 1ECh
.text:107D4B37 push offset aWrite_c ; "write.c"
.text:107D4B3C push offset aTdTd_planarcon ; "td->td_planarconfig == PLANARCONFIG_CON"...
.text:107D4B41 call ds:_assert
...
.text:107D52CA mov edx, [ebp-4]
.text:107D52CD and edx, 3
.text:107D52D0 test edx, edx
.text:107D52D2 jz short loc_107D52E9
.text:107D52D4 push 58h
.text:107D52D6 push offset aDumpmode_c ; "dumpmode.c"
.text:107D52DB push offset aN30 ; "(n & 3) == 0"
.text:107D52E0 call ds:_assert
...
.text:107D6759 mov cx, [eax+6]
.text:107D675D cmp ecx, 0Ch
.text:107D6760 jle short loc_107D677A
.text:107D6762 push 2D8h
.text:107D6767 push offset aLzw_c ; "lzw.c"
.text:107D676C push offset aSpLzw_nbitsBit ; "sp->lzw_nbits <= BITS_MAX"
.text:107D6771 call ds:_assert
It is advisable to google both conditions and file names, that may lead us to open-source library. For example, if to
google sp->lzw_nbits <=BITS_MAX, this predictablygiveus someopen-sourcecode, somethingrelatedtoLZW-compression.
326
Cn/l1lk 38. C0nS1/n1S
Cbapter 88
Ccnstants
Humans, including programmers, ofen use round numbers like , , , as well as in the code.
Practicing reverse engineer, usually know them well in hexadecimal representation: =xA, =x, =xE,
=x.
Some algorithms, especially cryptographical, use distinct constants, which is easy to find in code using IDA.
For example, MD
is used.
For example, all Win and MS-DOS executables are started with two characters MZ
.
At the MIDI-file beginning MThd signature must be present. If we have a program which uses MIDI-files for something,
very likely, it must check MIDI-files for validity by checking at least first bytes.
This could be done like:
(bof pointing to the beginning of loaded file into memory)
cmp [buf], 0x6468544D ; "MThd"
jnz _error_not_a_MIDI_file
. . . or by calling function for comparing memory blocks memcmp() or any other equivalent code up to a CMPSB (B..)
instruction.
When you find such point you already may say where MIDI-file loading is starting, also, we could see a location of MIDI-file
contents bufer and what is used from the bufer, and how.
http://en.wikipedia.org/wiki/MD5
http://en.wikipedia.org/wiki/Magic_number_(programming)
http://en.wikipedia.org/wiki/DOS_MZ_executable
327
38.2. C0nS1/n1 Sl/kCnlno Cn/l1lk 38. C0nS1/n1S
88.1.1 bRC
This applies to network protocols as well. For example, DHCP protocol network packets contains so-called mc|c cook|e:
0x63538263. Any code generating DHCP protocol packets somewhere and somehowmust embed this constant into packet.
If we find it in the code we may find where it happen and not only this. Sometl|n received DHCP packet must check mc|c
cook|e, comparing it with the constant.
For example, lets take dhcpcore.dll file from Windows x and search for the constant. And we found it, two times: it
seems, theconstant is usedintwofunctions eloquentlynamedas DhcpExtractOptionsForValidation()andDhcpExtractFullOptions():
Listing .: dhcpcore.dll (Windows x)
.rdata:000007FF6483CBE8 dword_7FF6483CBE8 dd 63538263h ; DATA XREF:
DhcpExtractOptionsForValidation+79
.rdata:000007FF6483CBEC dword_7FF6483CBEC dd 63538263h ; DATA XREF:
DhcpExtractFullOptions+97
And the places where these constants accessed:
Listing .: dhcpcore.dll (Windows x)
.text:000007FF6480875F mov eax, [rsi]
.text:000007FF64808761 cmp eax, cs:dword_7FF6483CBE8
.text:000007FF64808767 jnz loc_7FF64817179
And:
Listing .: dhcpcore.dll (Windows x)
.text:000007FF648082C7 mov eax, [r12]
.text:000007FF648082CB cmp eax, cs:dword_7FF6483CBEC
.text:000007FF648082D1 jnz loc_7FF648173AF
88.2 Ccnstant searcbin
It is easy in IDA: Alt-B or Alt-I. And for searching for constant in big pile of files, or for searching it in non-executable files, I
wrote small utility b|ncry re
https://github.com/yurichev/bgrep
328
Cn/l1lk 39. llnulno 1nl klon1 lnS1kuC1l0nS
Cbapter 89
findin tbe ribt instructicns
If the program is utilizing FPU instructions and there are very few of them in a code, one can try to check each one manually
by debugger.
For example, we may be interesting, how Microsof Excel calculating formulae entered by user. For example, division op-
eration.
If to load excel.exe (from Ofice ) version ... into IDA, then make a full listing and to find each FDIV in-
structions (except ones which use constants as a second operand obviously, it is not suits us):
cat EXCEL.lst | grep fdiv | grep -v dbl_ > EXCEL.fdiv
. . . then we realizing they are just .
We can enter string like =(1/3) in Excel and check each instruction.
Checking each instruction in debugger or tracer (one may check instruction at a time), it seems, we are lucky here and
sought-for instruction is just th:
.text:3011E919 DC 33 fdiv qword ptr [ebx]
PID=13944|TID=28744|(0) 0x2f64e919 (Excel.exe!BASE+0x11e919)
EAX=0x02088006 EBX=0x02088018 ECX=0x00000001 EDX=0x00000001
ESI=0x02088000 EDI=0x00544804 EBP=0x0274FA3C ESP=0x0274F9F8
EIP=0x2F64E919
FLAGS=PF IF
FPU ControlWord=IC RC=NEAR PC=64bits PM UM OM ZM DM IM
FPU StatusWord=
FPU ST(0): 1.000000
ST(0) holding first argument () and second one is in [EBX].
Next instruction afer FDIV writes result into memory:
.text:3011E91B DD 1E fstp qword ptr [esi]
If to set breakpoint on it, we may see result:
PID=32852|TID=36488|(0) 0x2f40e91b (Excel.exe!BASE+0x11e91b)
EAX=0x00598006 EBX=0x00598018 ECX=0x00000001 EDX=0x00000001
ESI=0x00598000 EDI=0x00294804 EBP=0x026CF93C ESP=0x026CF8F8
EIP=0x2F40E91B
FLAGS=PF IF
FPU ControlWord=IC RC=NEAR PC=64bits PM UM OM ZM DM IM
FPU StatusWord=C1 P
FPU ST(0): 0.333333
329
Cn/l1lk 39. llnulno 1nl klon1 lnS1kuC1l0nS
Also as a practical joke, we can modify it on-fly:
tracer -l:excel.exe bpx=excel.exe!BASE+0x11E91B,set(st0,666)
PID=36540|TID=24056|(0) 0x2f40e91b (Excel.exe!BASE+0x11e91b)
EAX=0x00680006 EBX=0x00680018 ECX=0x00000001 EDX=0x00000001
ESI=0x00680000 EDI=0x00395404 EBP=0x0290FD9C ESP=0x0290FD58
EIP=0x2F40E91B
FLAGS=PF IF
FPU ControlWord=IC RC=NEAR PC=64bits PM UM OM ZM DM IM
FPU StatusWord=C1 P
FPU ST(0): 0.333333
Set ST0 register to 666.000000
Excel showing 666 in the cell what finally convincing us we find the right point.
Figure .: Practical joke worked
If to try the same Excel version, but x, we will find only FDIV instructions there, and the one we looking for third.
tracer.exe -l:excel.exe bpx=excel.exe!BASE+0x1B7FCC,set(st0,666)
It seems, a lot of division operations of floct and Jooble types, compiler replaced by SSE-instructions like DIVSD (DIVSD
present here in total).
330
Cn/l1lk 40. SuSllCl0uS C0ul l/11lknS
Cbapter 40
5uspicicus ccde patterns
40.1 koR instructicns
instructions like XOR op, op (for example, XOR EAX, EAX) are usually used for setting register value to zero, but if operands
are diferent, exclos|ve or operation is executed. This operation is rare in common programming, but used ofen in cryptog-
raphy, including amateur. Especially suspicious case if the second operand is big number. This may points to encrypting/de-
crypting, checksum computing, etc.
Oneexceptiontothis observationworthtonoteis canary (.) generationandcheckingis ofendoneusingXORinstruction.
This AWK script can be used for processing IDA listing (.lst) files:
gawk -e $2=="xor" { tmp=substr($3, 0, length($3)-1); if (tmp!=$4) if($4!="esp") if ($4!="ebp")
{ print $1, $2, tmp, ",", $4 } } filename.lst
It is also worth to note that such script may also capture incorrectly disassembled code ().
40.2 Rand-written assembly ccde
Modern compilers do not emit LOOP and RCL instructions. On the other hand, these instructions are well-known to coders
who like to code in straight assembly language. If you spot these, it can be said, with a high probability, this fragment of code
is hand-written. Such instructions are marked as (M) in the instructions list in appendix: B..
Also function prologue/epilogue is not commonly present in hand-written assembly copy.
Commonly there is no fixed system in passing arguments into functions in the hand-written code.
Example from Windows kernel (ntoskrnl.exe file):
MultiplyTest proc near ; CODE XREF: Get386Stepping
xor cx, cx
loc_620555: ; CODE XREF: MultiplyTest+E
push cx
call Multiply
pop cx
jb short locret_620563
loop loc_620555
clc
locret_620563: ; CODE XREF: MultiplyTest+C
retn
MultiplyTest endp
Multiply proc near ; CODE XREF: MultiplyTest+5
mov ecx, 81h
mov eax, 417A000h
mul ecx
cmp edx, 2
331
40.2. n/nu-wkl11ln /SSlMBl\ C0ul Cn/l1lk 40. SuSllCl0uS C0ul l/11lknS
stc
jnz short locret_62057F
cmp eax, 0FE7A000h
stc
jnz short locret_62057F
clc
locret_62057F: ; CODE XREF: Multiply+10
; Multiply+18
retn
Multiply endp
Indeed, if welookintoWRK
(high score files are ofen in binary form). There will be a point where couple of bytes will be diferent and it
will be easy tosee whichones are holding score number. However, game developers are aware of suchtricks andmay protect
against it.
48.1.1 windcws reistry
It is also possible to compare Windows registry before and afer a program installation. It is very popular method of finding,
which registry elements a program will use.
is some sense. With the -mregparm option it is possible to set, how many arguments will be passed
via registers. at maximum. Thus, EAX, EDX and ECX registers are to be used.
Of course, if number of arguments is less then , not all registers are to be used.
Caller restores stack pointer to its initial state.
For the example, see (..).
44.8.2 watccmjopenwatccm
It is calledregister callingconvention here. First arguments arepassedviaEAX, EDX, EBXandECXregisters. All therestvia
stack. Functions have underscore added to the function name in order to distinguish them from those having other calling
convention.
44.4 tbiscall
In C++, it is a tl|s pointer to object passing into function-method.
In MSVC, tl|s is usually passed in the ECX register.
In GCC, tl|s pointer is passed as a first function-method argument. Thus it will be seen: internally, all function-methods
has extra argument.
For the example, see (..).
44.$ x88-84
44.$.1 windcws x84
The method of arguments passing in Win is somewhat resembling to fastcall. First arguments are passed via RCX, RDX,
R8, R9, other via stack. Caller also must prepare a space for bytes or -bit values, so then callee can save there first
arguments. Short functions may use argument values just from registers, but larger may save its values for further use.
Caller also must return stack pointer into initial state.
This calling convention is also used in Windows x- system DLLs (instead of stJccll in win).
Example:
http://www.ohse.de/uwe/articles/gcc-attributes.html#func-regparm
339
44.5. \86-64 Cn/l1lk 44. /kouMln1S l/SSlno Ml1n0uS (C/lllno C0nvln1l0nS;
#include <stdio.h>
void f1(int a, int b, int c, int d, int e, int f, int g)
{
printf ("%d %d %d %d %d %d %d\n", a, b, c, d, e, f, g);
};
int main()
{
f1(1,2,3,4,5,6,7);
};
Listing .: MSVC /b
$SG2937 DB %d %d %d %d %d %d %d, 0aH, 00H
main PROC
sub rsp, 72 ; 00000048H
mov DWORD PTR [rsp+48], 7
mov DWORD PTR [rsp+40], 6
mov DWORD PTR [rsp+32], 5
mov r9d, 4
mov r8d, 3
mov edx, 2
mov ecx, 1
call f1
xor eax, eax
add rsp, 72 ; 00000048H
ret 0
main ENDP
a$ = 80
b$ = 88
c$ = 96
d$ = 104
e$ = 112
f$ = 120
g$ = 128
f1 PROC
$LN3:
mov DWORD PTR [rsp+32], r9d
mov DWORD PTR [rsp+24], r8d
mov DWORD PTR [rsp+16], edx
mov DWORD PTR [rsp+8], ecx
sub rsp, 72 ; 00000048H
mov eax, DWORD PTR g$[rsp]
mov DWORD PTR [rsp+56], eax
mov eax, DWORD PTR f$[rsp]
mov DWORD PTR [rsp+48], eax
mov eax, DWORD PTR e$[rsp]
mov DWORD PTR [rsp+40], eax
mov eax, DWORD PTR d$[rsp]
mov DWORD PTR [rsp+32], eax
mov r9d, DWORD PTR c$[rsp]
mov r8d, DWORD PTR b$[rsp]
mov edx, DWORD PTR a$[rsp]
lea rcx, OFFSET FLAT:$SG2937
call printf
340
44.5. \86-64 Cn/l1lk 44. /kouMln1S l/SSlno Ml1n0uS (C/lllno C0nvln1l0nS;
add rsp, 72 ; 00000048H
ret 0
f1 ENDP
Hereweclearlyseehowarguments arepassed: viaregisters andtherest viastack. Thecodeof f() functions prologue
saves the arguments in scratch spacea space in the stack intended exactly for the purpose. It is done because compiler
may not be sure if it will be enough to use other registers without these , which will otherwise be occupied by arguments
until function execution end. The scratch space allocation in the stack is on the callers shoulders.
Listing .: MSVC /Ox /b
$SG2777 DB %d %d %d %d %d %d %d, 0aH, 00H
a$ = 80
b$ = 88
c$ = 96
d$ = 104
e$ = 112
f$ = 120
g$ = 128
f1 PROC
$LN3:
sub rsp, 72 ; 00000048H
mov eax, DWORD PTR g$[rsp]
mov DWORD PTR [rsp+56], eax
mov eax, DWORD PTR f$[rsp]
mov DWORD PTR [rsp+48], eax
mov eax, DWORD PTR e$[rsp]
mov DWORD PTR [rsp+40], eax
mov DWORD PTR [rsp+32], r9d
mov r9d, r8d
mov r8d, edx
mov edx, ecx
lea rcx, OFFSET FLAT:$SG2777
call printf
add rsp, 72 ; 00000048H
ret 0
f1 ENDP
main PROC
sub rsp, 72 ; 00000048H
mov edx, 2
mov DWORD PTR [rsp+48], 7
mov DWORD PTR [rsp+40], 6
lea r9d, QWORD PTR [rdx+2]
lea r8d, QWORD PTR [rdx+1]
lea ecx, QWORD PTR [rdx-1]
mov DWORD PTR [rsp+32], 5
call f1
xor eax, eax
add rsp, 72 ; 00000048H
ret 0
main ENDP
If to compile the example with optimization switch, it is almost the same, but scratch space is not used, because no
need to.
Also take a look on how MSVC optimizes primitive value loads into registers by using LEA (B..). Im not sure if it
worth so, but maybe.
341
44.6. kl1uknlno v/lulS 0l ll0/1 /nu u0uBll 1\ll Cn/l1lk 44. /kouMln1S l/SSlno Ml1n0uS (C/lllno C0nvln1l0nS;
this passin
tl|s pointer is passed in RCX, first method argument in RDX, etc. See also for an example: ...
44.$.2 Linux x84
The way arguments passed in Linux for x- is almost the same as in Windows, but registers are used instead of (RDI,
RSI, RDX, RCX, R8, R9) and there are no scratch space, but callee may save register values in the stack, if it needs to.
Listing .: GCC .. -O
.LC0:
.string "%d %d %d %d %d %d %d\n"
f1:
sub rsp, 40
mov eax, DWORD PTR [rsp+48]
mov DWORD PTR [rsp+8], r9d
mov r9d, ecx
mov DWORD PTR [rsp], r8d
mov ecx, esi
mov r8d, edx
mov esi, OFFSET FLAT:.LC0
mov edx, edi
mov edi, 1
mov DWORD PTR [rsp+16], eax
xor eax, eax
call __printf_chk
add rsp, 40
ret
main:
sub rsp, 24
mov r9d, 6
mov r8d, 5
mov DWORD PTR [rsp], 7
mov ecx, 4
mov edx, 3
mov esi, 2
mov edi, 1
call f1
add rsp, 24
ret
N.B.: here values are written into -bit parts of registers (e.g., EAX) but not to the whole -bit register (RAX). This is
because each write to low -bit part of register automatically clears high bits. Supposedly, it was done for x- code
porting simplification.
44.8 Returnin values cf float and double type
In all conventions except of Win, values of type floct or Jooble are returning via the FPU register ST(0).
In Win, values of floct and Jooble types are returned in the XMM0 register instead of the ST(0).
44.7 Hcdifyin aruments
Sometimes, C/C++ programmers (not limited to these PL, though), may ask, what will happen if to modify arguments? The
answer is simple: arguments are storedinthe stack, that is where modificationwill occurr. Calling functions are not use them
afer callee exit (I have not seen any opposite case in my practice).
#include <stdio.h>
void f(int a, int b)
{
342
44.7. M0ull\lno /kouMln1S Cn/l1lk 44. /kouMln1S l/SSlno Ml1n0uS (C/lllno C0nvln1l0nS;
a=a+b;
printf ("%d\n", a);
};
Listing .: MSVC
_a$ = 8 ; size = 4
_b$ = 12 ; size = 4
_f PROC
push ebp
mov ebp, esp
mov eax, DWORD PTR _a$[ebp]
add eax, DWORD PTR _b$[ebp]
mov DWORD PTR _a$[ebp], eax
mov ecx, DWORD PTR _a$[ebp]
push ecx
push OFFSET $SG2938 ; %d, 0aH
call _printf
add esp, 8
pop ebp
ret 0
_f ENDP
Soyes, one may modify arguments easily. Of course, if it is not references inC++(.), andif younot modify dataapointer
pointing to (then the efect will be propagated outside of current function).
343
Cn/l1lk 45. 1nkl/u l0C/l S10k/ol
Cbapter 4$
1bread Lccal 5tcrae
It is a data area, specific to each thread. Every thread can store there what it needs. One famous example is Cstandard global
variable errno. Multiple threads may simultaneously call a functions which returns error code in the errno, so global variable
will not work correctly here, for multi-thread programs, errno must be stored in the TLS.
In the C++ standard, a new tlrecJ_loccl modifier was added, showing that each thread will have its own version of the
variable, it can be initialized, and it is located in the TLS
:
Listing .: C++
#include <iostream>
#include <thread>
thread_local int tmp=3;
int main()
{
std::cout << tmp << std::endl;
};
If to say about PE-files, in the resulting executable file, the tm variable will be stored in the section devoted to TLS.
.
x-processor protection allows to separate everything into levels of protection (rings), but both in Linux and in Win-
dows only two are used: ring (kernel space) and ring (user space).
System calls (syscall-s) is a point where these two areas are connected. It can be said, this is the most principal API
providing to application sofware.
As in Windows NT, syscalls table reside in SSDT
.
Usage of syscalls is very popular among shellcode and computer viruses authors, because it is hard to determine the
addresses of needed functions in the system libraries, while it is easier to use syscalls, however, much more code should be
written due to lower level of abstraction of the API. It is also worth noting that the numbers of syscalls e.g. in Windows, may
be diferent from version to version.
48.1 Linux
In Linux, syscall is usually called via int 0x80. Call number is passed in the EAX register, and any other parameters in the
other registers.
Listing .: Simple example of two syscalls usage
section .text
global _start
_start:
mov edx,len ; buf len
mov ecx,msg ; buf
mov ebx,1 ; file descriptor. stdout is 1
mov eax,4 ; syscall number. sys_write is 4
int 0x80
mov eax,1 ; syscall number. sys_exit is 4
int 0x80
section .data
msg db Hello, world!,0xa
len equ $ - msg
Compilation:
Lets try to write our own dynamic library with the open(), read(), close() functions working as we need.
At first, our open() will compare name of file tobe openedwithwhat we needandif it is so, it will write downthe descriptor
of the file opened. At second, read(), if it will be called for this file descriptor, will substitute output, and in other cases, will
call original read() from libc.so.. And also close(), will note, if the file we are currently follow is to be closed.
We will use the dlopen() and dlsym() functions to determine original addresses of functions in libc.so..
We need them because we must pass control to real functions.
On the other hand, if we could intercept e.g. strcmp(), and follow each string comparisons in program, then strcmp()
could be implemented easily on ones own, while not using original function
.
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stdbool.h>
#include <unistd.h>
#include <dlfcn.h>
#include <string.h>
void *libc_handle = NULL;
int (*open_ptr)(const char *, int) = NULL;
int (*close_ptr)(int) = NULL;
ssize_t (*read_ptr)(int, void*, size_t) = NULL;
bool inited = false;
_Noreturn void die (const char * fmt, ...)
{
va_list va;
va_start (va, fmt);
vprintf (fmt, va);
exit(0);
};
static void find_original_functions ()
{
if (inited)
return;
libc_handle = dlopen ("libc.so.6", RTLD_LAZY);
if (libc_handle==NULL)
die ("cant open libc.so.6\n");
open_ptr = dlsym (libc_handle, "open");
if (open_ptr==NULL)
die ("cant find open()\n");
close_ptr = dlsym (libc_handle, "close");
https://en.wikipedia.org/wiki/Uptime
pointing to another code. This is a code doing some maintenance and preparations before passing control flow to
our code. It is called startup-code or CRT-code (C RunTime).
main() fucntion takes an array of arguments passed in the command line, and also environment variables. But in fact, a
generic string is passed to the program, CRT-code will find spaces in it and cut by parts. CRT-code is also prepares environ-
ment variables array envp. As of GUI
win applications, WinMain is used instead of main(), having their own arguments:
int CALLBACK WinMain(
_In_ HINSTANCE hInstance,
_In_ HINSTANCE hPrevInstance,
_In_ LPSTR lpCmdLine,
_In_ int nCmdShow
);
CRT-code prepares them as well.
Also, the number returned by main() function is an exit code. It may be passed in CRT to the ExitProcess() function,
taking exit code as argument.
Usually, each compiler has its own CRT-code.
Here is a typical CRT-code for MSVC .
___tmainCRTStartup proc near
var_24 = dword ptr -24h
var_20 = dword ptr -20h
var_1C = dword ptr -1Ch
ms_exc = CPPEH_RECORD ptr -18h
push 14h
push offset stru_4092D0
call __SEH_prolog4
mov eax, 5A4Dh
cmp ds:400000h, ax
jnz short loc_401096
mov eax, ds:40003Ch
cmp dword ptr [eax+400000h], 4550h
jnz short loc_401096
mov ecx, 10Bh
cmp [eax+400018h], cx
jnz short loc_401096
cmp dword ptr [eax+400074h], 0Eh
, just as any other PE-file, has entry point (OEP) (the function DllMain() is located at it) but usually this function
does nothing.
.sys is usually device driver.
As of drivers, Windows require the checksum is present in PE-file and must be correct
.
Starting at Windows Vista, driver PE-files must be also signed by digital signature. It will fail to load without signature.
Any PE-file begins with tiny DOS-program, printing a message like This programcannot be run in DOS mode. if to run
this program in DOS or Windows ., this message will be printed.
48.2.1 1erminclcy
Module is a separate file, .exe or.dll.
Process a program loaded into memory and running. Commonly consisting of one .exe-file and bunch of .dll-files.
Process memory the memory a process works with. Each process has its own. There can usually be loaded modules,
memory of the stack, heap(s), etc.
VA
Portable Executable: .
Dynamic-link library
Virtual Address
356
48.2. wln32 ll Cn/l1lk 48. wlnu0wS n1
Base addressis the address within a process memory at which a module will be loaded.
RVA
is a VA-address minus base address. Many addresses in PE-file tables uses exactly RVA-addresses.
IAT
.
48.2.2 8ase address
The fact is that several module authors may prepare DLL-files for others and there is no possibility to reach agreement, which
addresses will be assigned to whose modules.
So that is why if two necessary for process loading DLLs has the same base addresses, one of which will be loaded at this
base address, and another at the other spare space in process memory, and each virtual addresses in the second DLL will
be corrected.
Ofen, linker in MSVCgenerates an .exe-files with the base address 0x400000, and with the code section started at 0x401000.
This mean RVA of code section begin is 0x1000. DLLs are ofen generated by this linked with the base address 0x10000000
.
There is also another reason to load modules at various base addresses, rather at random ones.
It is ASLR
.
The fact is that a shellcode trying to be executed on a compromised system must call a system functions.
In older OS (in Windows NT line: before Windows Vista), system DLL (like kernel.dll, user.dll) were always loaded at
the known addresses, and also if to recall that its versions were rarely changed, an addresses of functions were fixed and
shellcode can call it directly.
In order to avoid this, ASLR method loads your program and all modules it needs at random base addresses, each time
diferent.
ASLR support is denoted in PE-file by setting the flag
IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE [].
48.2.8 5ubsystem
There is also sobsystem field, usually it is native (.sys-driver), console (console application) or GUI (non-console).
48.2.4 o5 versicn
A PE-file also has minimal Windows version needed in order to load it. The table of version numbers stored in PE-file and
corresponding Windows codenames is here
.
For example, MSVC compiles .exe-files running onWindows NT(version.), but MSVCis not (files generated
has version ., at least Windows is needed to run them).
MSVC by default generates .exe-files of version ., targeting at least Windows Vista, however, by by changing com-
pilers options
, it is possible to force it to compile for Windows XP.
48.2.$ 5ecticns
Division by sections, as it seems, are present in all executable file formats.
It is done in order to separate code from data, and data from constant data.
There will be flag lM/ol_SCn_Cn1_C0ul or lM/ol_SCn_MlM_l\lCu1l on code sectionthis is executable code.
On data sectionlM/ol_SCn_Cn1_lnl1l/llZlu_u/1/, lM/ol_SCn_MlM_kl/u and lM/ol_SCn_MlM_wkl1l flags.
[]
[]
https://en.wikipedia.org/wiki/Address_space_layout_randomization
https://en.wikipedia.org/wiki/Windows_NT#Releases
http://blogs.msdn.com/b/vcblog/archive/2012/10/08/10357555.aspx
357
48.2. wln32 ll Cn/l1lk 48. wlnu0wS n1
On an empty section with uninitialized datalM/ol_SCn_Cn1_unlnl1l/llZlu_u/1/, lM/ol_SCn_MlM_kl/u and lM-
/ol_SCn_MlM_wkl1l.
On a constant data section, in other words, protected from writing, there are may be flags
lM/ol_SCn_Cn1_lnl1l/llZlu_u/1/ and lM/ol_SCn_MlM_kl/u without lM/ol_SCn_MlM_wkl1l. A process will crash
if it would try to write to this section.
Each section in PE-file may have a name, however, it is not very important. Ofen (but not always) code section have the
name .text, data section .data, constant data section .rdata (recJcble Jctc;. Other popular section names are:
.idataimports section. IDA may create pseudo-section named like this: ...
.edataexports section
.pdatasection containing all information about exceptions in Windows NT for MIPS, IA and x: ..
.relocrelocs section
.bssuninitialized data (BSS)
.tlsthread local storage (TLS)
.rsrcresources
.CRTmay present in binary files compiled by very old MSVC versions
PE-file packers/encryptors are ofen garble section names or replacing names to their own.
MSVC allows to declare data in arbitrarily named section
.
Some compilers and linkers can add a section with debugging symbols and other debugging information (e.g. MinGW).
However it is not so in modern versions of MSVC (a separate PDB-files are used there for this purpose).
That is how section described in the file:
typedef struct _IMAGE_SECTION_HEADER {
BYTE Name[IMAGE_SIZEOF_SHORT_NAME];
union {
DWORD PhysicalAddress;
DWORD VirtualSize;
} Misc;
DWORD VirtualAddress;
DWORD SizeOfRawData;
DWORD PointerToRawData;
DWORD PointerToRelocations;
DWORD PointerToLinenumbers;
WORD NumberOfRelocations;
WORD NumberOfLinenumbers;
DWORD Characteristics;
} IMAGE_SECTION_HEADER, *PIMAGE_SECTION_HEADER;
A word about terminology: lo|nter1okcwuctc it called Ofset and v|rtocl/JJress is called RVA in Hiew.
48.2.8 Relccaticns (relccs)
AKA FIXUP-s (at least in Hiew).
This is also present in almost all executable file formats
.
Obviously, modules can be loaded on various base addresses, but how to deal with e.g. global variables? They must be
accessed by an address. One solution is position-independent code(.). But it is not always suitable.
That is why relocations table is present. The addresses of points needs to be corrected in case of loading on another base
address are just enumerated in the table.
For example, there is a global variable at the address 0x410000 and this is how it is accessed:
A1 00 00 41 00 mov eax,[000410000]
http://msdn.microsoft.com/en-us/library/windows/desktop/cc307397.aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/ms680341(v=vs.85).aspx
library usually loads mfc*.dll by ordinals, and in such programs there are no MFC
function names in INT.
While loading such program in IDA, it will asks for a path to mfs*.dll files, in order to determine function names. If not to
tell IDA path to this DLL, they will look like mfc80_23 instead of function names.
lmpcrts secticn
Ofen a separate section is allocated for imports table and everything related to it (with name like .idata), however, it is not
a strict rule.
Imports is also confusing subject because of terminological mess. Lets try to collect all information in one place.
utility for adding import toanexisting .exe-file. Some time earlier, inthe previous
versions of the utility, at the place of the function you want to substitute by call to another DLL, the following code my utility
writed:
MOV EAX, [yourdll.dll!function]
JMP EAX
FirstThunk points to the first instruction. In other words, while loading yourdll.dll, loader writes address of the fonct|on
function right in the code.
It also worth noting a code section is usually write-protected, so my utility adds lM/ol_SCn_MlM_wkl1l flag for code
section. Otherwise, the program will crash while loading with the error code (access denied).
One might ask: what if I supply a program with the DLL files set which are not supposed to change, is it possible to speed up
loading process?
Yes, it is possible to write addresses of the functions to be imported into FirstThunk arrays in advance. The 1|mestcm
field is present in the lM/ol_lMl0k1_ulSCkll10k structure. If a value is present there, then loader compare this value with
date-time of the DLL file. If the values are equal to each other, then the loader is not do anything, and loading process will
be faster. This is what called old-style binding
. There is the BIND.EXE utility in Windows SDK for this. For speeding up of
loading of your program, Matt Pietrek in [], ofers to do binding shortly afer your program installation on the computer of
the end user.
PE-files packers/encryptors may also compress/encrypt imports table. In this case, Windows loader, of course, will not load
all necessary DLLs. Therefore, packer/encryptor do this on its own, with the help of locJl|brcry(; and oetlroc/JJress(; func-
tions.
In the standard DLLs from Windows installation, ofen, IAT is located right in the beginning of PE-file. Supposedly, it is done
for optimization. While loading, .exe file is not loaded into memory as a whole (recall huge install programs which are started
suspiciously fast), it is mapped, and loaded into memory by parts as they are accessed. Probably, Microsof developers
decided it will be faster.
48.2.8 Rescurces
Resources in a PE-file is just a set of icons, pictures, text strings, dialog descriptions. Perhaps, they were separated from the
main code, so all these things could be multilingual, and it would be simpler to pick text or picture for the language that is
currently set in OS.
As a side efect, they can be edited easily and saved back to the executable file, even, if one does not have special knowl-
edge, e.g. using ResHack editor(..).
48.2.9 .N1
.NET programs are compiled not into machine code but into special bytecode. Strictly speaking, there is bytecode instead of
usual x-code in the .exe-file, however, entry point (OEP) is pointing to the tiny fragment of x-code:
jmp mscoree.dll!_CorExeMain
.NET-loader is located in mscoree.dll, it will process the PE-file. It was so in pre-Windows XP OS. Starting from XP, OS-
loader able to detect the .NET-file and run it without execution of that JMP instruction
.
http://yurichev.com/PE_add_imports.html
http://msdn.microsoft.com/en-us/library/xh0859k0(v=vs.110).aspx
361
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
48.2.10 1L5
This section holds initialized data for TLS() (if needed). When new thread starting, its TLS-data is initialized by the data
from this section.
Aside from that, PE-file specification also provides initialization of TLS-section, so-called, TLS callbacks. If they are present,
they will be called before control passing to the main entry point (OEP). This is used widely in the PE-file packers/encryptors.
48.2.11 1ccls
objdump (from cygwin) for dumping all PE-file structures.
Hiew() as editor.
pefile Python-library for PE-file processing
.
ResHack AKA Resource Hacker resources editor
.
PE_add_import
simple tool for searching for a function in PE executables which use some text string.
48.2.12 furtber readin
Daniel Pistelli The .NET File Format
48.8 windcws 5R
48.8.1 Lets fcret abcut H5vC
In Windows, SEH is intended for exceptions handling, nevertheless, it is language-agnostic, it is not connected to the C++ or
OOP in any way. Here we will take a look on SEH in isolated (from C++ and MSVC extensions) form.
Each running process has a chain of SEH-handlers, TIBhas address of the last handler. When exception occurred(division
by zero, incorrect address access, user exception triggered by calling to RaiseException() function), OS will find the last
handler in TIB, and will call it with passing all information about CPUstate (register values, etc) at the moment of exception.
Exception handler will consider exception, was it made for it? If so, it will handle exception. If no, it will signal to OS that it
cannot handle it and OS will call next handler in chain, until a handler which is able to handle the exception will be found.
At the very end of the chain, there a standard handler, showing well-known dialog box, informing a process crash, some
technical information about CPU state at the crash, and ofering to collect all information and send it to developers in Mi-
crosof.
https://code.google.com/p/pefile/
http://www.angusj.com/resourcehacker/
http://yurichev.com/PE_add_imports.html
http://yurichev.com/PE_patcher.html
http://yurichev.com/PE_search_str_refs.html
http://www.codeproject.com/Articles/12585/The-NET-File-Format
362
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
Figure .: Windows XP
Figure .: Windows XP
363
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
Figure .: Windows
Figure .: Windows .
This handler was also called Dr. Watson earlier
.
By the way, some developers made their own handler, sending information about program crash to themselves. It is
registered with the help of SetUnhandledExceptionFilter() and will be called if OS do not have any other way to handle
exception. Other example is Oracle RDBMS it saves huge dumps containing all possible information about CPUand memory
state.
Lets write our own primitive exception handler
:
#include <windows.h>
#include <stdio.h>
DWORD new_value=1234;
EXCEPTION_DISPOSITION __cdecl except_handler(
struct _EXCEPTION_RECORD *ExceptionRecord,
void * EstablisherFrame,
struct _CONTEXT *ContextRecord,
void * DispatcherContext )
https://en.wikipedia.org/wiki/Dr._Watson_(debugger)
http://msdn.microsoft.com/en-us/library/windows/desktop/ms680552(v=vs.85).aspx
366
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
as defined in WinBase.h as defined in ntstatus.h numerical value
EXCEPTION_ACCESS_VIOLATION STATUS_ACCESS_VIOLATION xC
EXCEPTION_DATATYPE_MISALIGNMENT STATUS_DATATYPE_MISALIGNMENT x
EXCEPTION_BREAKPOINT STATUS_BREAKPOINT x
EXCEPTION_SINGLE_STEP STATUS_SINGLE_STEP x
EXCEPTION_ARRAY_BOUNDS_EXCEEDED STATUS_ARRAY_BOUNDS_EXCEEDED xCC
EXCEPTION_FLT_DENORMAL_OPERAND STATUS_FLOAT_DENORMAL_OPERAND xCD
EXCEPTION_FLT_DIVIDE_BY_ZERO STATUS_FLOAT_DIVIDE_BY_ZERO xCE
EXCEPTION_FLT_INEXACT_RESULT STATUS_FLOAT_INEXACT_RESULT xCF
EXCEPTION_FLT_INVALID_OPERATION STATUS_FLOAT_INVALID_OPERATION xC
EXCEPTION_FLT_OVERFLOW STATUS_FLOAT_OVERFLOW xC
EXCEPTION_FLT_STACK_CHECK STATUS_FLOAT_STACK_CHECK xC
EXCEPTION_FLT_UNDERFLOW STATUS_FLOAT_UNDERFLOW xC
EXCEPTION_INT_DIVIDE_BY_ZERO STATUS_INTEGER_DIVIDE_BY_ZERO xC
EXCEPTION_INT_OVERFLOW STATUS_INTEGER_OVERFLOW xC
EXCEPTION_PRIV_INSTRUCTION STATUS_PRIVILEGED_INSTRUCTION xC
EXCEPTION_IN_PAGE_ERROR STATUS_IN_PAGE_ERROR xC
EXCEPTION_ILLEGAL_INSTRUCTION STATUS_ILLEGAL_INSTRUCTION xCD
EXCEPTION_NONCONTINUABLE_EXCEPTION STATUS_NONCONTINUABLE_EXCEPTION xC
EXCEPTION_STACK_OVERFLOW STATUS_STACK_OVERFLOW xCFD
EXCEPTION_INVALID_DISPOSITION STATUS_INVALID_DISPOSITION xC
EXCEPTION_GUARD_PAGE STATUS_GUARD_PAGE_VIOLATION x
EXCEPTION_INVALID_HANDLE STATUS_INVALID_HANDLE xC
EXCEPTION_POSSIBLE_DEADLOCK STATUS_POSSIBLE_DEADLOCK xC
CONTROL_C_EXIT STATUS_CONTROL_C_EXIT xCA
That is how code is defined:
S U Facility code
Error code
S is a basic status code: error; warning; informational; success. Uwhether the code is user code.
That is why I chose xExE (b) mean this is ) user exception; ) error. But to be honest, this example works
finely without these high bits.
Then we try to read a value from memory at the th address. Of course, there are nothing at this address in win, so
exceptionis raised. However, the very first handler will be calledyours, it will be notifiedfirst, checkingthe code onequality
to the EXCEPTION_ACCESS_VIOLATION constant.
The code reading from memory at th address is looks like:
Listing .: MSVC
...
xor eax, eax
mov eax, DWORD PTR [eax] ; exception will occur here
push eax
push OFFSET msg
call _printf
add esp, 8
...
Will it be possible tofix error onfly andtocontinue programexecution? Yes, our exceptionhandler canfix EAX value and
nowlet OS will execute this instruction once again. So that is what we do. printf() will print , because, afer execution
of our handler, EAX will not be , it will contain address of global variable new_value. Execution will be resumed.
That is what is going on: memory manager in CPU signaling about error, the CPU suspends the thread, it finds exception
handler in the Windows kernel, latter, in turn, is starting to call all handlers in SEH chain, one by one.
I use MSVC now, but of course, there are no any guarantee that EAX will be used for pointer.
This address replacement trick is looks showingly, and I ofer it here for SEH internals illustration. Nevertheless, I cannot
recall where it is used for on-fly error fixing in practice.
Why SEH-related records are stored right in the stack instead of some other place? Supposedly because then OS will not
need to care about freeing this information, these records will be disposed when function finishing its execution. But Imnot
%-sure and can be wrong. This is somewhat like alloca(): (..).
367
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
48.8.2 Ncwlets et back tc H5vC
Supposedly, Microsof programmers need exceptions in C, but not in C++, so they added a non-standard C extension to
MSVC
http://msdn.microsoft.com/en-us/library/swezty51.aspx
368
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
Listing .: WRK-v./base/ntos/cache/copysup.c
LONG
CcCopyReadExceptionFilter(
IN PEXCEPTION_POINTERS ExceptionPointer,
IN PNTSTATUS ExceptionCode
)
/*++
Routine Description:
This routine serves as a exception filter and has the special job of
extracting the "real" I/O error when Mm raises STATUS_IN_PAGE_ERROR
beneath us.
Arguments:
ExceptionPointer - A pointer to the exception record that contains
the real Io Status.
ExceptionCode - A pointer to an NTSTATUS that is to receive the real
status.
Return Value:
EXCEPTION_EXECUTE_HANDLER
--*/
{
*ExceptionCode = ExceptionPointer->ExceptionRecord->ExceptionCode;
if ( (*ExceptionCode == STATUS_IN_PAGE_ERROR) &&
(ExceptionPointer->ExceptionRecord->NumberParameters >= 3) ) {
*ExceptionCode = (NTSTATUS) ExceptionPointer->ExceptionRecord->ExceptionInformation[2];
}
ASSERT( !NT_SUCCESS(*ExceptionCode) );
return EXCEPTION_EXECUTE_HANDLER;
}
Internally, SEHis an extension of OS-supported exceptions. But the handler function is _except_handler3 (for SEH) or
_except_handler4 (for SEH). The code of this handler is MSVC-related, it is located in its libraries, or in msvcr*.dll. It is very
important to know that SEH is MSVC thing. Other compilers may ofer something completely diferent.
5R8
SEH has _except_handler3 as handler functions, and extends _EXCEPTION_REGISTRATION table, adding a pointer to the
scoe tcble and rev|oos try level variable. SEH extends scoe tcble by values for bufer overflow protection.
Scoe tcble is a table consisting of pointers to the filter and handler codes, for each level of try/excet nestedness.
369
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
FS: +: __except_list
+: . . .
+: . . .
TIB
. . .
Prev=xFFFFFFFF
Handle
. . .
Prev
Handle
. . .
Prev
Handle
scope table
previous try level
EBP
handler function
handler function
_except_handler
. . .
Stack
xFFFFFFFF (-)
filter function
handler/finally function
filter function
handler/finally function
filter function
handler/finally function
. . . more entries. . .
information about first
try/except block
information about sec-
ond try/except block
information about
third try/except block
scope table
Again, it is very important to understand that OS take care only of rev/lcnJle fields, and nothing more. It is job of
_except_handler3 function to read other fields, read scoe tcble, and decide, which handler to execute and when.
The source code of _except_handler3 function is closed. However, Sanos OS, which have win compatibility layer, has
the same functions redeveloped, which are somewhat equivalent to those in Windows
. Another reimplementations are
present in Wine
and ReactOS
.
If the f|lter pointer is zero, lcnJler pointer is the pointer to a f|nclly code.
During execution, rev|oos try level value in the stack is changing, so the _except_handler3 will know about current state
of nestedness, in order to know which scoe tcble entry to use.
5R8: cne tryjexcept blcck example
#include <stdio.h>
#include <windows.h>
#include <excpt.h>
int main()
{
int* p = NULL;
https://code.google.com/p/sanos/source/browse/src/win32/msvcrt/except.c
https://github.com/mirrors/wine/blob/master/dlls/msvcrt/except_i386.c
http://doxygen.reactos.org/d4/df2/lib_2sdk_2crt_2except_2except_8c_source.html
370
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
__try
{
printf("hello #1!\n");
*p = 13; // causes an access violation exception;
printf("hello #2!\n");
}
__except(GetExceptionCode()==EXCEPTION_ACCESS_VIOLATION ?
EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH)
{
printf("access violation, cant recover\n");
}
}
Listing .: MSVC
$SG74605 DB hello #1!, 0aH, 00H
$SG74606 DB hello #2!, 0aH, 00H
$SG74608 DB access violation, cant recover, 0aH, 00H
_DATA ENDS
; scope table
CONST SEGMENT
$T74622 DD 0ffffffffH ; previous try level
DD FLAT:$L74617 ; filter
DD FLAT:$L74618 ; handler
CONST ENDS
_TEXT SEGMENT
$T74621 = -32 ; size = 4
_p$ = -28 ; size = 4
__$SEHRec$ = -24 ; size = 24
_main PROC NEAR
push ebp
mov ebp, esp
push -1 ; previous try level
push OFFSET FLAT:$T74622 ; scope table
push OFFSET FLAT:__except_handler3 ; handler
mov eax, DWORD PTR fs:__except_list
push eax ; prev
mov DWORD PTR fs:__except_list, esp
add esp, -16
push ebx ; saved 3 registers
push esi ; saved 3 registers
push edi ; saved 3 registers
mov DWORD PTR __$SEHRec$[ebp], esp
mov DWORD PTR _p$[ebp], 0
mov DWORD PTR __$SEHRec$[ebp+20], 0 ; previous try level
push OFFSET FLAT:$SG74605 ; hello #1!
call _printf
add esp, 4
mov eax, DWORD PTR _p$[ebp]
mov DWORD PTR [eax], 13
push OFFSET FLAT:$SG74606 ; hello #2!
call _printf
add esp, 4
mov DWORD PTR __$SEHRec$[ebp+20], -1 ; previous try level
jmp SHORT $L74616
; filter code
371
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
$L74617:
$L74627:
mov ecx, DWORD PTR __$SEHRec$[ebp+4]
mov edx, DWORD PTR [ecx]
mov eax, DWORD PTR [edx]
mov DWORD PTR $T74621[ebp], eax
mov eax, DWORD PTR $T74621[ebp]
sub eax, -1073741819; c0000005H
neg eax
sbb eax, eax
inc eax
$L74619:
$L74626:
ret 0
; handler code
$L74618:
mov esp, DWORD PTR __$SEHRec$[ebp]
push OFFSET FLAT:$SG74608 ; access violation, cant recover
call _printf
add esp, 4
mov DWORD PTR __$SEHRec$[ebp+20], -1 ; setting previous try level back to -1
$L74616:
xor eax, eax
mov ecx, DWORD PTR __$SEHRec$[ebp+8]
mov DWORD PTR fs:__except_list, ecx
pop edi
pop esi
pop ebx
mov esp, ebp
pop ebp
ret 0
_main ENDP
_TEXT ENDS
END
Here we see howSEHframe is being constructedinthe stack. Scoe tcble is locatedinthe CONST segmentindeed, these
fields will not be changed. An interesting thing is howrev|oos try level variable is changed. Initial value is 0xFFFFFFFF (1).
The moment when body of try statement is opened is marked as an instruction writing 0 to the variable. The moment when
body of try statement is closed, 1 is returned back to it. We also see addresses of filter and handler code. Thus we can
easily see the structure of try/excet constructs in the function.
Since the SEH setup code in the function prologue may be shared between many of functions, sometimes compiler inserts a
call to SEH_prolog() function in the prologue, which do that. SEH cleanup code may be in the SEH_epilog() function.
Lets try to run this example in tracer:
tracer.exe -l:2.exe --dump-seh
Listing .: tracer.exe output
EXCEPTION_ACCESS_VIOLATION at 2.exe!main+0x44 (0x401054) ExceptionInformation[0]=1
EAX=0x00000000 EBX=0x7efde000 ECX=0x0040cbc8 EDX=0x0008e3c8
ESI=0x00001db1 EDI=0x00000000 EBP=0x0018feac ESP=0x0018fe80
EIP=0x00401054
FLAGS=AF IF RF
* SEH frame at 0x18fe9c prev=0x18ff78 handler=0x401204 (2.exe!_except_handler3)
SEH3 frame. previous trylevel=0
scopetable entry[0]. previous try level=-1, filter=0x401070 (2.exe!main+0x60) handler=0x401088
(2.exe!main+0x78)
* SEH frame at 0x18ff78 prev=0x18ffc4 handler=0x401204 (2.exe!_except_handler3)
372
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
SEH3 frame. previous trylevel=0
scopetable entry[0]. previous try level=-1, filter=0x401531 (2.exe!mainCRTStartup+0x18d)
handler=0x401545 (2.exe!mainCRTStartup+0x1a1)
* SEH frame at 0x18ffc4 prev=0x18ffe4 handler=0x771f71f5 (ntdll.dll!__except_handler4)
SEH4 frame. previous trylevel=0
SEH4 header: GSCookieOffset=0xfffffffe GSCookieXOROffset=0x0
EHCookieOffset=0xffffffcc EHCookieXOROffset=0x0
scopetable entry[0]. previous try level=-2, filter=0x771f74d0 (ntdll.dll!
___safe_se_handler_table+0x20) handler=0x771f90eb (ntdll.dll!_TppTerminateProcess@4+0x43)
* SEH frame at 0x18ffe4 prev=0xffffffff handler=0x77247428 (ntdll.dll!_FinalExceptionHandler@16
)
We that SEH chain consisting of handlers.
First twoarelocatedinout example. Two? But wemadeonlyone? Yes, another oneis settingupinCRTfunction_mainCRTStartup(),
and as it seems, it handles at least FPU exceptions. Its source code can found in MSVS installation: crt/src/winxfltr.c.
Third is SEH frame in ntdll.dll, and the fourth handler is not MSVC-related located in ntdll.dll, and it has self-describing
function name.
As you can see, there are types of handlers in one chain: one is not related to MSVC at all (the last one) and two MSVC-
related: SEH and SEH.
5R8: twc tryjexcept blccks example
#include <stdio.h>
#include <windows.h>
#include <excpt.h>
int filter_user_exceptions (unsigned int code, struct _EXCEPTION_POINTERS *ep)
{
printf("in filter. code=0x%08X\n", code);
if (code == 0x112233)
{
printf("yes, that is our exception\n");
return EXCEPTION_EXECUTE_HANDLER;
}
else
{
printf("not our exception\n");
return EXCEPTION_CONTINUE_SEARCH;
};
}
int main()
{
int* p = NULL;
__try
{
__try
{
printf ("hello!\n");
RaiseException (0x112233, 0, 0, NULL);
printf ("0x112233 raised. now lets crash\n");
*p = 13; // causes an access violation exception;
}
__except(GetExceptionCode()==EXCEPTION_ACCESS_VIOLATION ?
EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH)
{
printf("access violation, cant recover\n");
}
}
373
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
__except(filter_user_exceptions(GetExceptionCode(), GetExceptionInformation()))
{
// the filter_user_exceptions() function answering to the question
// "is this exception belongs to this block?"
// if yes, do the follow:
printf("user exception caught\n");
}
}
Now there are two try blocks. So the scoe tcble now have two entries, each entry for each block. lrev|oos try level is
changing as execution flow entering or exiting try block.
Listing .: MSVC
$SG74606 DB in filter. code=0x%08X, 0aH, 00H
$SG74608 DB yes, that is our exception, 0aH, 00H
$SG74610 DB not our exception, 0aH, 00H
$SG74617 DB hello!, 0aH, 00H
$SG74619 DB 0x112233 raised. now lets crash, 0aH, 00H
$SG74621 DB access violation, cant recover, 0aH, 00H
$SG74623 DB user exception caught, 0aH, 00H
_code$ = 8 ; size = 4
_ep$ = 12 ; size = 4
_filter_user_exceptions PROC NEAR
push ebp
mov ebp, esp
mov eax, DWORD PTR _code$[ebp]
push eax
push OFFSET FLAT:$SG74606 ; in filter. code=0x%08X
call _printf
add esp, 8
cmp DWORD PTR _code$[ebp], 1122867; 00112233H
jne SHORT $L74607
push OFFSET FLAT:$SG74608 ; yes, that is our exception
call _printf
add esp, 4
mov eax, 1
jmp SHORT $L74605
$L74607:
push OFFSET FLAT:$SG74610 ; not our exception
call _printf
add esp, 4
xor eax, eax
$L74605:
pop ebp
ret 0
_filter_user_exceptions ENDP
; scope table
CONST SEGMENT
$T74644 DD 0ffffffffH ; previous try level for outer block
DD FLAT:$L74634 ; outer block filter
DD FLAT:$L74635 ; outer block handler
DD 00H ; previous try level for inner block
DD FLAT:$L74638 ; inner block filter
DD FLAT:$L74639 ; inner block handler
CONST ENDS
$T74643 = -36 ; size = 4
$T74642 = -32 ; size = 4
374
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
_p$ = -28 ; size = 4
__$SEHRec$ = -24 ; size = 24
_main PROC NEAR
push ebp
mov ebp, esp
push -1 ; previous try level
push OFFSET FLAT:$T74644
push OFFSET FLAT:__except_handler3
mov eax, DWORD PTR fs:__except_list
push eax
mov DWORD PTR fs:__except_list, esp
add esp, -20
push ebx
push esi
push edi
mov DWORD PTR __$SEHRec$[ebp], esp
mov DWORD PTR _p$[ebp], 0
mov DWORD PTR __$SEHRec$[ebp+20], 0 ; outer try block entered. set previous try level to
0
mov DWORD PTR __$SEHRec$[ebp+20], 1 ; inner try block entered. set previous try level to
1
push OFFSET FLAT:$SG74617 ; hello!
call _printf
add esp, 4
push 0
push 0
push 0
push 1122867 ; 00112233H
call DWORD PTR __imp__RaiseException@16
push OFFSET FLAT:$SG74619 ; 0x112233 raised. now lets crash
call _printf
add esp, 4
mov eax, DWORD PTR _p$[ebp]
mov DWORD PTR [eax], 13
mov DWORD PTR __$SEHRec$[ebp+20], 0 ; inner try block exited. set previous try level
back to 0
jmp SHORT $L74615
; inner block filter
$L74638:
$L74650:
mov ecx, DWORD PTR __$SEHRec$[ebp+4]
mov edx, DWORD PTR [ecx]
mov eax, DWORD PTR [edx]
mov DWORD PTR $T74643[ebp], eax
mov eax, DWORD PTR $T74643[ebp]
sub eax, -1073741819; c0000005H
neg eax
sbb eax, eax
inc eax
$L74640:
$L74648:
ret 0
; inner block handler
$L74639:
mov esp, DWORD PTR __$SEHRec$[ebp]
push OFFSET FLAT:$SG74621 ; access violation, cant recover
call _printf
375
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
add esp, 4
mov DWORD PTR __$SEHRec$[ebp+20], 0 ; inner try block exited. set previous try level
back to 0
$L74615:
mov DWORD PTR __$SEHRec$[ebp+20], -1 ; outer try block exited, set previous try level
back to -1
jmp SHORT $L74633
; outer block filter
$L74634:
$L74651:
mov ecx, DWORD PTR __$SEHRec$[ebp+4]
mov edx, DWORD PTR [ecx]
mov eax, DWORD PTR [edx]
mov DWORD PTR $T74642[ebp], eax
mov ecx, DWORD PTR __$SEHRec$[ebp+4]
push ecx
mov edx, DWORD PTR $T74642[ebp]
push edx
call _filter_user_exceptions
add esp, 8
$L74636:
$L74649:
ret 0
; outer block handler
$L74635:
mov esp, DWORD PTR __$SEHRec$[ebp]
push OFFSET FLAT:$SG74623 ; user exception caught
call _printf
add esp, 4
mov DWORD PTR __$SEHRec$[ebp+20], -1 ; both try blocks exited. set previous try level
back to -1
$L74633:
xor eax, eax
mov ecx, DWORD PTR __$SEHRec$[ebp+8]
mov DWORD PTR fs:__except_list, ecx
pop edi
pop esi
pop ebx
mov esp, ebp
pop ebp
ret 0
_main ENDP
If toset abreakpoint onprintf()functionwhichis calledfromthehandler, wemayalsoseehowyet another SEHhandler
is added. Perhaps, yet another machinery inside of SEH handling process. Here we also see our scoe tcble consisting of
entries.
tracer.exe -l:3.exe bpx=3.exe!printf --dump-seh
Listing .: tracer.exe output
(0) 3.exe!printf
EAX=0x0000001b EBX=0x00000000 ECX=0x0040cc58 EDX=0x0008e3c8
ESI=0x00000000 EDI=0x00000000 EBP=0x0018f840 ESP=0x0018f838
EIP=0x004011b6
FLAGS=PF ZF IF
* SEH frame at 0x18f88c prev=0x18fe9c handler=0x771db4ad (ntdll.dll!ExecuteHandler2@20+0x3a)
376
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
* SEH frame at 0x18fe9c prev=0x18ff78 handler=0x4012e0 (3.exe!_except_handler3)
SEH3 frame. previous trylevel=1
scopetable entry[0]. previous try level=-1, filter=0x401120 (3.exe!main+0xb0) handler=0x40113b
(3.exe!main+0xcb)
scopetable entry[1]. previous try level=0, filter=0x4010e8 (3.exe!main+0x78) handler=0x401100
(3.exe!main+0x90)
* SEH frame at 0x18ff78 prev=0x18ffc4 handler=0x4012e0 (3.exe!_except_handler3)
SEH3 frame. previous trylevel=0
scopetable entry[0]. previous try level=-1, filter=0x40160d (3.exe!mainCRTStartup+0x18d)
handler=0x401621 (3.exe!mainCRTStartup+0x1a1)
* SEH frame at 0x18ffc4 prev=0x18ffe4 handler=0x771f71f5 (ntdll.dll!__except_handler4)
SEH4 frame. previous trylevel=0
SEH4 header: GSCookieOffset=0xfffffffe GSCookieXOROffset=0x0
EHCookieOffset=0xffffffcc EHCookieXOROffset=0x0
scopetable entry[0]. previous try level=-2, filter=0x771f74d0 (ntdll.dll!
___safe_se_handler_table+0x20) handler=0x771f90eb (ntdll.dll!_TppTerminateProcess@4+0x43)
* SEH frame at 0x18ffe4 prev=0xffffffff handler=0x77247428 (ntdll.dll!_FinalExceptionHandler@16
)
5R4
During bufer overflow (.) attack, address of the scoe tcble can be rewritten, so starting at MSVC , SEH was up-
graded to SEH in order to have bufer overflow protection. The pointer to scoe tcble is now xored with security cookie.
Scoe tcble extended to have a header, consisting of two pointers to secor|ty cook|es. Each element have an ofset inside of
stack of another value: this is address of stack frame (EBP) xored with security_cookie as well, placed in the stack. This
value will be read during exception handling and checked, if it is correct. Secor|ty cook|e in the stack is randomeach time, so
remote attacker, hopefully, will not be able to predict it.
Initial rev|oos try level is 2 in SEH instead of 1.
377
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
FS: +: __except_list
+: . . .
+: . . .
TIB
. . .
Prev=xFFFFFFFF
Handle
. . .
Prev
Handle
. . .
Prev
Handle
scope
tablesecurity_cookie
previous try level
EBP
. . .
EBPsecurity_cookie
. . .
handler function
handler function
_except_handler
. . .
Stack
GS Cookie Ofset
GS Cookie XOR Ofset
EH Cookie Ofset
EH Cookie XOR Ofset
xFFFFFFFF (-)
filter function
handler/finally function
filter function
handler/finally function
filter function
handler/finally function
. . . more entries. . .
information about first
try/except block
information about sec-
ond try/except block
information about
third try/except block
scope table
Here is both examples compiled in MSVC with SEH:
Listing .: MSVC : one try block example
$SG85485 DB hello #1!, 0aH, 00H
$SG85486 DB hello #2!, 0aH, 00H
$SG85488 DB access violation, cant recover, 0aH, 00H
; scope table
xdata$x SEGMENT
__sehtable$_main DD 0fffffffeH ; GS Cookie Offset
DD 00H ; GS Cookie XOR Offset
DD 0ffffffccH ; EH Cookie Offset
DD 00H ; EH Cookie XOR Offset
DD 0fffffffeH ; previous try level
DD FLAT:$LN12@main ; filter
378
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
DD FLAT:$LN8@main ; handler
xdata$x ENDS
$T2 = -36 ; size = 4
_p$ = -32 ; size = 4
tv68 = -28 ; size = 4
__$SEHRec$ = -24 ; size = 24
_main PROC
push ebp
mov ebp, esp
push -2
push OFFSET __sehtable$_main
push OFFSET __except_handler4
mov eax, DWORD PTR fs:0
push eax
add esp, -20
push ebx
push esi
push edi
mov eax, DWORD PTR ___security_cookie
xor DWORD PTR __$SEHRec$[ebp+16], eax ; xored pointer to scope table
xor eax, ebp
push eax ; ebp ^ security_cookie
lea eax, DWORD PTR __$SEHRec$[ebp+8] ; pointer to VC_EXCEPTION_REGISTRATION_RECORD
mov DWORD PTR fs:0, eax
mov DWORD PTR __$SEHRec$[ebp], esp
mov DWORD PTR _p$[ebp], 0
mov DWORD PTR __$SEHRec$[ebp+20], 0 ; previous try level
push OFFSET $SG85485 ; hello #1!
call _printf
add esp, 4
mov eax, DWORD PTR _p$[ebp]
mov DWORD PTR [eax], 13
push OFFSET $SG85486 ; hello #2!
call _printf
add esp, 4
mov DWORD PTR __$SEHRec$[ebp+20], -2 ; previous try level
jmp SHORT $LN6@main
; filter
$LN7@main:
$LN12@main:
mov ecx, DWORD PTR __$SEHRec$[ebp+4]
mov edx, DWORD PTR [ecx]
mov eax, DWORD PTR [edx]
mov DWORD PTR $T2[ebp], eax
cmp DWORD PTR $T2[ebp], -1073741819 ; c0000005H
jne SHORT $LN4@main
mov DWORD PTR tv68[ebp], 1
jmp SHORT $LN5@main
$LN4@main:
mov DWORD PTR tv68[ebp], 0
$LN5@main:
mov eax, DWORD PTR tv68[ebp]
$LN9@main:
$LN11@main:
ret 0
; handler
379
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
$LN8@main:
mov esp, DWORD PTR __$SEHRec$[ebp]
push OFFSET $SG85488 ; access violation, cant recover
call _printf
add esp, 4
mov DWORD PTR __$SEHRec$[ebp+20], -2 ; previous try level
$LN6@main:
xor eax, eax
mov ecx, DWORD PTR __$SEHRec$[ebp+8]
mov DWORD PTR fs:0, ecx
pop ecx
pop edi
pop esi
pop ebx
mov esp, ebp
pop ebp
ret 0
_main ENDP
Listing .: MSVC : two try blocks example
$SG85486 DB in filter. code=0x%08X, 0aH, 00H
$SG85488 DB yes, that is our exception, 0aH, 00H
$SG85490 DB not our exception, 0aH, 00H
$SG85497 DB hello!, 0aH, 00H
$SG85499 DB 0x112233 raised. now lets crash, 0aH, 00H
$SG85501 DB access violation, cant recover, 0aH, 00H
$SG85503 DB user exception caught, 0aH, 00H
xdata$x SEGMENT
__sehtable$_main DD 0fffffffeH ; GS Cookie Offset
DD 00H ; GS Cookie XOR Offset
DD 0ffffffc8H ; EH Cookie Offset
DD 00H ; EH Cookie Offset
DD 0fffffffeH ; previous try level for outer block
DD FLAT:$LN19@main ; outer block filter
DD FLAT:$LN9@main ; outer block handler
DD 00H ; previous try level for inner block
DD FLAT:$LN18@main ; inner block filter
DD FLAT:$LN13@main ; inner block handler
xdata$x ENDS
$T2 = -40 ; size = 4
$T3 = -36 ; size = 4
_p$ = -32 ; size = 4
tv72 = -28 ; size = 4
__$SEHRec$ = -24 ; size = 24
_main PROC
push ebp
mov ebp, esp
push -2 ; initial previous try level
push OFFSET __sehtable$_main
push OFFSET __except_handler4
mov eax, DWORD PTR fs:0
push eax ; prev
add esp, -24
push ebx
push esi
push edi
mov eax, DWORD PTR ___security_cookie
xor DWORD PTR __$SEHRec$[ebp+16], eax ; xored pointer to scope table
380
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
xor eax, ebp ; ebp ^ security_cookie
push eax
lea eax, DWORD PTR __$SEHRec$[ebp+8] ; pointer to
VC_EXCEPTION_REGISTRATION_RECORD
mov DWORD PTR fs:0, eax
mov DWORD PTR __$SEHRec$[ebp], esp
mov DWORD PTR _p$[ebp], 0
mov DWORD PTR __$SEHRec$[ebp+20], 0 ; entering outer try block, setting previous try
level=0
mov DWORD PTR __$SEHRec$[ebp+20], 1 ; entering inner try block, setting previous try
level=1
push OFFSET $SG85497 ; hello!
call _printf
add esp, 4
push 0
push 0
push 0
push 1122867 ; 00112233H
call DWORD PTR __imp__RaiseException@16
push OFFSET $SG85499 ; 0x112233 raised. now lets crash
call _printf
add esp, 4
mov eax, DWORD PTR _p$[ebp]
mov DWORD PTR [eax], 13
mov DWORD PTR __$SEHRec$[ebp+20], 0 ; exiting inner try block, set previous try level
back to 0
jmp SHORT $LN2@main
; inner block filter
$LN12@main:
$LN18@main:
mov ecx, DWORD PTR __$SEHRec$[ebp+4]
mov edx, DWORD PTR [ecx]
mov eax, DWORD PTR [edx]
mov DWORD PTR $T3[ebp], eax
cmp DWORD PTR $T3[ebp], -1073741819 ; c0000005H
jne SHORT $LN5@main
mov DWORD PTR tv72[ebp], 1
jmp SHORT $LN6@main
$LN5@main:
mov DWORD PTR tv72[ebp], 0
$LN6@main:
mov eax, DWORD PTR tv72[ebp]
$LN14@main:
$LN16@main:
ret 0
; inner block handler
$LN13@main:
mov esp, DWORD PTR __$SEHRec$[ebp]
push OFFSET $SG85501 ; access violation, cant recover
call _printf
add esp, 4
mov DWORD PTR __$SEHRec$[ebp+20], 0 ; exiting inner try block, setting previous try
level back to 0
$LN2@main:
mov DWORD PTR __$SEHRec$[ebp+20], -2 ; exiting both blocks, setting previous try level
back to -2
jmp SHORT $LN7@main
381
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
; outer block filter
$LN8@main:
$LN19@main:
mov ecx, DWORD PTR __$SEHRec$[ebp+4]
mov edx, DWORD PTR [ecx]
mov eax, DWORD PTR [edx]
mov DWORD PTR $T2[ebp], eax
mov ecx, DWORD PTR __$SEHRec$[ebp+4]
push ecx
mov edx, DWORD PTR $T2[ebp]
push edx
call _filter_user_exceptions
add esp, 8
$LN10@main:
$LN17@main:
ret 0
; outer block handler
$LN9@main:
mov esp, DWORD PTR __$SEHRec$[ebp]
push OFFSET $SG85503 ; user exception caught
call _printf
add esp, 4
mov DWORD PTR __$SEHRec$[ebp+20], -2 ; exiting both blocks, setting previous try level
back to -2
$LN7@main:
xor eax, eax
mov ecx, DWORD PTR __$SEHRec$[ebp+8]
mov DWORD PTR fs:0, ecx
pop ecx
pop edi
pop esi
pop ebx
mov esp, ebp
pop ebp
ret 0
_main ENDP
_code$ = 8 ; size = 4
_ep$ = 12 ; size = 4
_filter_user_exceptions PROC
push ebp
mov ebp, esp
mov eax, DWORD PTR _code$[ebp]
push eax
push OFFSET $SG85486 ; in filter. code=0x%08X
call _printf
add esp, 8
cmp DWORD PTR _code$[ebp], 1122867 ; 00112233H
jne SHORT $LN2@filter_use
push OFFSET $SG85488 ; yes, that is our exception
call _printf
add esp, 4
mov eax, 1
jmp SHORT $LN3@filter_use
jmp SHORT $LN3@filter_use
$LN2@filter_use:
push OFFSET $SG85490 ; not our exception
382
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
call _printf
add esp, 4
xor eax, eax
$LN3@filter_use:
pop ebp
ret 0
_filter_user_exceptions ENDP
Here is a meaning of cook|es: Cookie Offset is a diference betweenaddress of savedEBPvalue instack andthe EBP
security_cookie valueinthestack. Cookie XOR Offsetis additional diferencebetweenEBPsecurity_cookie valueand
what is stored in the stack. If this equation is not true, a process will be stopped due to stack corruption:
security_cookie (CookieXOROffset + addressofsavedEBP) == stack[addressofsavedEBP + CookieOffset]
If Cookie Offset is 2, it is not present.
Cook|es checkingis alsoimplementedinmy tracer, seehttps://github.com/dennis714/tracer/blob/master/SEH.
c for details.
It is still possible to fall back to SEH in the compilers afer (and including) MSVC by setting /GS- option, however,
CRT code will use SEH anyway.
48.8.8 windcws x84
As you might think, it is not very fast thing to set up SEH frame at each function prologue. Another performance problem
is to change rev|oos try level value many times while function execution. So things are changed completely in x: now all
pointers to try blocks, filter and handler functions are stored in another PE-segment .pdata, that is where OS exception
handler takes all the information.
These are two examples from the previous section compiled for x:
Listing .: MSVC
$SG86276 DB hello #1!, 0aH, 00H
$SG86277 DB hello #2!, 0aH, 00H
$SG86279 DB access violation, cant recover, 0aH, 00H
pdata SEGMENT
$pdata$main DD imagerel $LN9
DD imagerel $LN9+61
DD imagerel $unwind$main
pdata ENDS
pdata SEGMENT
$pdata$main$filt$0 DD imagerel main$filt$0
DD imagerel main$filt$0+32
DD imagerel $unwind$main$filt$0
pdata ENDS
xdata SEGMENT
$unwind$main DD 020609H
DD 030023206H
DD imagerel __C_specific_handler
DD 01H
DD imagerel $LN9+8
DD imagerel $LN9+40
DD imagerel main$filt$0
DD imagerel $LN9+40
$unwind$main$filt$0 DD 020601H
DD 050023206H
xdata ENDS
_TEXT SEGMENT
main PROC
$LN9:
push rbx
sub rsp, 32
383
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
xor ebx, ebx
lea rcx, OFFSET FLAT:$SG86276 ; hello #1!
call printf
mov DWORD PTR [rbx], 13
lea rcx, OFFSET FLAT:$SG86277 ; hello #2!
call printf
jmp SHORT $LN8@main
$LN6@main:
lea rcx, OFFSET FLAT:$SG86279 ; access violation, cant recover
call printf
npad 1
$LN8@main:
xor eax, eax
add rsp, 32
pop rbx
ret 0
main ENDP
_TEXT ENDS
text$x SEGMENT
main$filt$0 PROC
push rbp
sub rsp, 32
mov rbp, rdx
$LN5@main$filt$:
mov rax, QWORD PTR [rcx]
xor ecx, ecx
cmp DWORD PTR [rax], -1073741819; c0000005H
sete cl
mov eax, ecx
$LN7@main$filt$:
add rsp, 32
pop rbp
ret 0
int 3
main$filt$0 ENDP
text$x ENDS
Listing .: MSVC
$SG86277 DB in filter. code=0x%08X, 0aH, 00H
$SG86279 DB yes, that is our exception, 0aH, 00H
$SG86281 DB not our exception, 0aH, 00H
$SG86288 DB hello!, 0aH, 00H
$SG86290 DB 0x112233 raised. now lets crash, 0aH, 00H
$SG86292 DB access violation, cant recover, 0aH, 00H
$SG86294 DB user exception caught, 0aH, 00H
pdata SEGMENT
$pdata$filter_user_exceptions DD imagerel $LN6
DD imagerel $LN6+73
DD imagerel $unwind$filter_user_exceptions
$pdata$main DD imagerel $LN14
DD imagerel $LN14+95
DD imagerel $unwind$main
pdata ENDS
pdata SEGMENT
$pdata$main$filt$0 DD imagerel main$filt$0
DD imagerel main$filt$0+32
DD imagerel $unwind$main$filt$0
$pdata$main$filt$1 DD imagerel main$filt$1
384
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
DD imagerel main$filt$1+30
DD imagerel $unwind$main$filt$1
pdata ENDS
xdata SEGMENT
$unwind$filter_user_exceptions DD 020601H
DD 030023206H
$unwind$main DD 020609H
DD 030023206H
DD imagerel __C_specific_handler
DD 02H
DD imagerel $LN14+8
DD imagerel $LN14+59
DD imagerel main$filt$0
DD imagerel $LN14+59
DD imagerel $LN14+8
DD imagerel $LN14+74
DD imagerel main$filt$1
DD imagerel $LN14+74
$unwind$main$filt$0 DD 020601H
DD 050023206H
$unwind$main$filt$1 DD 020601H
DD 050023206H
xdata ENDS
_TEXT SEGMENT
main PROC
$LN14:
push rbx
sub rsp, 32
xor ebx, ebx
lea rcx, OFFSET FLAT:$SG86288 ; hello!
call printf
xor r9d, r9d
xor r8d, r8d
xor edx, edx
mov ecx, 1122867 ; 00112233H
call QWORD PTR __imp_RaiseException
lea rcx, OFFSET FLAT:$SG86290 ; 0x112233 raised. now lets crash
call printf
mov DWORD PTR [rbx], 13
jmp SHORT $LN13@main
$LN11@main:
lea rcx, OFFSET FLAT:$SG86292 ; access violation, cant recover
call printf
npad 1
$LN13@main:
jmp SHORT $LN9@main
$LN7@main:
lea rcx, OFFSET FLAT:$SG86294 ; user exception caught
call printf
npad 1
$LN9@main:
xor eax, eax
add rsp, 32
pop rbx
ret 0
main ENDP
text$x SEGMENT
main$filt$0 PROC
385
48.3. wlnu0wS Sln Cn/l1lk 48. wlnu0wS n1
push rbp
sub rsp, 32
mov rbp, rdx
$LN10@main$filt$:
mov rax, QWORD PTR [rcx]
xor ecx, ecx
cmp DWORD PTR [rax], -1073741819; c0000005H
sete cl
mov eax, ecx
$LN12@main$filt$:
add rsp, 32
pop rbp
ret 0
int 3
main$filt$0 ENDP
main$filt$1 PROC
push rbp
sub rsp, 32
mov rbp, rdx
$LN6@main$filt$:
mov rax, QWORD PTR [rcx]
mov rdx, rcx
mov ecx, DWORD PTR [rax]
call filter_user_exceptions
npad 1
$LN8@main$filt$:
add rsp, 32
pop rbp
ret 0
int 3
main$filt$1 ENDP
text$x ENDS
_TEXT SEGMENT
code$ = 48
ep$ = 56
filter_user_exceptions PROC
$LN6:
push rbx
sub rsp, 32
mov ebx, ecx
mov edx, ecx
lea rcx, OFFSET FLAT:$SG86277 ; in filter. code=0x%08X
call printf
cmp ebx, 1122867; 00112233H
jne SHORT $LN2@filter_use
lea rcx, OFFSET FLAT:$SG86279 ; yes, that is our exception
call printf
mov eax, 1
add rsp, 32
pop rbx
ret 0
$LN2@filter_use:
lea rcx, OFFSET FLAT:$SG86281 ; not our exception
call printf
xor eax, eax
add rsp, 32
pop rbx
ret 0
filter_user_exceptions ENDP
386
48.4. wlnu0wS n1. Ckl1lC/l SlC1l0n Cn/l1lk 48. wlnu0wS n1
_TEXT ENDS
Read [] for more detailed information about this.
Aside fromexception information, .pdata is a section containing addresses of almost all function starts and ends, hence
it may be useful for a tools targetting automated analysis.
48.8.4 Read mcre abcut 5R
[], [].
48.4 windcws N1: Critical secticn
Critical sections in any OS are very important in multithreaded environment, mostly used for issuing a guarantee that only
one thread will access some data, while blocking other threads and interrupts.
That is howCRITICAL_SECTION structure is declared in Windows NT line OS:
Listing .: (Windows Research Kernel v.) public/sdk/inc/nturtl.h
typedef struct _RTL_CRITICAL_SECTION {
PRTL_CRITICAL_SECTION_DEBUG DebugInfo;
//
// The following three fields control entering and exiting the critical
// section for the resource
//
LONG LockCount;
LONG RecursionCount;
HANDLE OwningThread; // from the threads ClientId->UniqueThread
HANDLE LockSemaphore;
ULONG_PTR SpinCount; // force size on 64-bit systems when packed
} RTL_CRITICAL_SECTION, *PRTL_CRITICAL_SECTION;
Thats is how EnterCriticalSection() function works:
Listing .: Windows /ntdll.dll/x (begin)
_RtlEnterCriticalSection@4
var_C = dword ptr -0Ch
var_8 = dword ptr -8
var_4 = dword ptr -4
arg_0 = dword ptr 8
mov edi, edi
push ebp
mov ebp, esp
sub esp, 0Ch
push esi
push edi
mov edi, [ebp+arg_0]
lea esi, [edi+4] ; LockCount
mov eax, esi
lock btr dword ptr [eax], 0
jnb wait ; jump if CF=0
loc_7DE922DD:
mov eax, large fs:18h
mov ecx, [eax+24h]
mov [edi+0Ch], ecx
mov dword ptr [edi+8], 1
pop edi
387
48.4. wlnu0wS n1. Ckl1lC/l SlC1l0n Cn/l1lk 48. wlnu0wS n1
xor eax, eax
pop esi
mov esp, ebp
pop ebp
retn 4
... skipped
The most important instruction in this code fragment is BTR (prefixed with LOCK): the zeroth bit is stored in CF flag and
cleared in memory. This is atomic operation, blocking all other CPUs to access this piece of memory (take a notice of LOCK
prefix before BTR instruction). If the bit at LockCount was , fine, reset it and return from the function: we are in critical sec-
tion. If not critical section is already occupied by other thread, then wait.
Wait is done there using WaitForSingleObject().
And here is how LeaveCriticalSection() function works:
Listing .: Windows /ntdll.dll/x (begin)
_RtlLeaveCriticalSection@4 proc near
arg_0 = dword ptr 8
mov edi, edi
push ebp
mov ebp, esp
push esi
mov esi, [ebp+arg_0]
add dword ptr [esi+8], 0FFFFFFFFh ; RecursionCount
jnz short loc_7DE922B2
push ebx
push edi
lea edi, [esi+4] ; LockCount
mov dword ptr [esi+0Ch], 0
mov ebx, 1
mov eax, edi
lock xadd [eax], ebx
inc ebx
cmp ebx, 0FFFFFFFFh
jnz loc_7DEA8EB7
loc_7DE922B0:
pop edi
pop ebx
loc_7DE922B2:
xor eax, eax
pop esi
pop ebp
retn 4
... skipped
XADD is exchange and add. In this case, it summing LockCount value and and stores result in EBX register, and at the
same time goes to LockCount. This operation is atomic since it is prefixed by LOCK as well, meaning that all other CPUs or
CPU cores in system are blocked from accessing this point of memory.
LOCK prefix is very important: two threads, each of which working on separate CPUs or CPUcores may try to enter critical
section and to modify the value in memory simultaneously, this will result in unpredictable behaviour.
388
art v
1ccls
http://www.hex-rays.com/idapro/idadownfreeware.htm
390
Cn/l1lk 50. ulBuoolk
Cbapter $0
bebuer
$0.1 tracer
I use trccer
instead of debugger.
I stopped to use debugger eventually, since all I need from it is to spot a functions arguments while execution, or regis-
ters state at some point. To load debugger each time is too much, so I wrote a small utility trccer. It has console-interface,
working from command-line, enable us to intercept function execution, set breakpoints at arbitrary places, spot registers
state, modify it, etc.
However, as for learning purposes, it is highly advisable to trace code in debugger manually, watch how registers state
changing (e.g. classic SofICE, OllyDbg, WinDbg highlighting changed registers), flags, data, change them manually, watch
reaction, etc.
$0.2 ollybb
Very popular user-mode win debugger:
http://www.ollydbg.de/.
Short hot-keys cheatsheet:
$0.8 6b8
Not very popular debugger among reverse engineers, but very comfortable nevertheless. Some commands: F..
http://yurichev.com/tracer-en.html
391
Cn/l1lk 5. S\S1lMC/llS 1k/Clno
Cbapter $1
5ystemcalls tracin
$1.0.1 strace j dtruss
Will show which system calls (syscalls()) are called by process right now. For example:
# strace df -h
...
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/i386-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220\232\1\0004\0\0\0"..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1770984, ...}) = 0
mmap2(NULL, 1780508, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb75b3000
Mac OS X has dtruss for the same aim.
The Cygwin also has strace, but if I understood correctly, it works only for .exe-files compiled for cygwin environment
itself.
392
Cn/l1lk 52. ulC0MllllkS
Cbapter $2
beccmpilers
There are only one known, publically available, high-quality decompiler to C code: Hex-Rays:
https://www.hex-rays.com/products/decompiler/
393
Cn/l1lk 53. 01nlk 100lS
Cbapter $8
otber tccls
Microsof Visual Studio Express
: Stripped-down free Visual Studio version, convenient for simple experiments. Some
useful options: F..
Hiew
http://www.microsoft.com/express/Downloads/
http://www.hiew.ru/
394
art vl
Hcre examples
Cn/l1lk 54. n/nu ulC0Mllllno + uSlno Z3 SM1 S0lvlk l0k ulll/1lno /M/1luk Ck\l10ok/ln\
Cbapter $4
Rand deccmpilin + usin 28 5H1 sclver fcr
defeatin amateur cryptcrapby
Amateur cryptography is usually (unintentionally) very weak and can be breaked easilyfor cryptographers, of course.
But lets pretend we are not among these crypto-professionals.
I once found this one-way hash function, converting -bit value to another one and we need to try to reverse its flow
back.
But what is hash-function? Simplest example is CRC, an algorithm providing stronger checksum for in-
tegrity checking purposes. it is impossible to restore original text fromthe hash value, it just has much less infor-
mation: there can be long text, but CRC result is always limited to bits. But CRC is not cryptographically
secure: it is known howto alter a text in that way so the resulting CRC hash value will be one we need. Crypto-
graphical hash functions are protected fromthis. They are widely used to hash user passwords in order to store
them in the database, like MD, SHA, etc. Indeed: an internet forum database may not contain user passwords
(stolen database will compromise all users passwords) but only hashes (a cracker will not be able to reveal pass-
words). Besides, an internet forum engine is not aware of your password, it should only check if its hash is the
same as in the database, then it will give you access in this case. One of the simplest passwords cracking meth-
ods is just to brute-force all passwords in order to wait when resulting value will be the same as we need. Other
methods are much more complex.
$4.1 Rand deccmpilin
Here its assembly language listing in IDA:
sub_401510 proc near
; ECX = input
mov rdx, 5D7E0D1F2E0F1F84h
mov rax, rcx ; input
imul rax, rdx
mov rdx, 388D76AEE8CB1500h
mov ecx, eax
and ecx, 0Fh
ror rax, cl
xor rax, rdx
mov rdx, 0D2E9EE7E83C4285Bh
mov ecx, eax
and ecx, 0Fh
rol rax, cl
lea r8, [rax+rdx]
mov rdx, 8888888888888889h
mov rax, r8
mul rdx
shr rdx, 5
mov rax, rdx
lea rcx, [r8+rdx*4]
shl rax, 6
396
54.. n/nu ulC0MllllnoCn/l1lk 54. n/nu ulC0Mllllno + uSlno Z3 SM1 S0lvlk l0k ulll/1lno /M/1luk Ck\l10ok/ln\
sub rcx, rax
mov rax, r8
rol rax, cl
; EAX = output
retn
sub_401510 endp
The example was compiled by GCC, so the first argument is passed in ECX.
If Hex-Rays is not in list of our posessions, or we distrust to it, we may try to reverse this code manually. One method is
to represent CPU registers as local C variables and replace each instruction by one-line equivalent expression, like:
uint64_t f(uint64_t input)
{
uint64_t rax, rbx, rcx, rdx, r8;
ecx=input;
rdx=0x5D7E0D1F2E0F1F84;
rax=rcx;
rax*=rdx;
rdx=0x388D76AEE8CB1500;
rax=_lrotr(rax, rax&0xF); // rotate right
rax^=rdx;
rdx=0xD2E9EE7E83C4285B;
rax=_lrotl(rax, rax&0xF); // rotate left
r8=rax+rdx;
rdx=0x8888888888888889;
rax=r8;
rax*=rdx;
rdx=rdx>>5;
rax=rdx;
rcx=r8+rdx*4;
rax=rax<<6;
rcx=rcx-rax;
rax=r8
rax=_lrotl (rax, rcx&0xFF); // rotate left
return rax;
};
If to be careful enough, this code can be compiled and will even work in the same way as original one.
Then, we will rewrite it gradually, keeping in mind all registers usage. Attention and focusing is very important hereany
tiny typo may ruin all your work!
Here is a first step:
uint64_t f(uint64_t input)
{
uint64_t rax, rbx, rcx, rdx, r8;
ecx=input;
rdx=0x5D7E0D1F2E0F1F84;
rax=rcx;
rax*=rdx;
rdx=0x388D76AEE8CB1500;
rax=_lrotr(rax, rax&0xF); // rotate right
rax^=rdx;
rdx=0xD2E9EE7E83C4285B;
rax=_lrotl(rax, rax&0xF); // rotate left
r8=rax+rdx;
rdx=0x8888888888888889;
rax=r8;
rax*=rdx;
397
54.. n/nu ulC0MllllnoCn/l1lk 54. n/nu ulC0Mllllno + uSlno Z3 SM1 S0lvlk l0k ulll/1lno /M/1luk Ck\l10ok/ln\
// RDX here is a high part of multiplication result
rdx=rdx>>5;
// RDX here is division result!
rax=rdx;
rcx=r8+rdx*4;
rax=rax<<6;
rcx=rcx-rax;
rax=r8
rax=_lrotl (rax, rcx&0xFF); // rotate left
return rax;
};
Next step:
uint64_t f(uint64_t input)
{
uint64_t rax, rbx, rcx, rdx, r8;
ecx=input;
rdx=0x5D7E0D1F2E0F1F84;
rax=rcx;
rax*=rdx;
rdx=0x388D76AEE8CB1500;
rax=_lrotr(rax, rax&0xF); // rotate right
rax^=rdx;
rdx=0xD2E9EE7E83C4285B;
rax=_lrotl(rax, rax&0xF); // rotate left
r8=rax+rdx;
rdx=0x8888888888888889;
rax=r8;
rax*=rdx;
// RDX here is a high part of multiplication result
rdx=rdx>>5;
// RDX here is division result!
rax=rdx;
rcx=(r8+rdx*4)-(rax<<6);
rax=r8
rax=_lrotl (rax, rcx&0xFF); // rotate left
return rax;
};
We may spot division using multiplication (). Indeed, lets calculate divider in Wolfram Mathematica:
Listing .: Wolfram Mathematica
In[1]:=N[2^(64 + 5)/16^^8888888888888889]
Out[1]:=60.
We get this:
uint64_t f(uint64_t input)
{
uint64_t rax, rbx, rcx, rdx, r8;
ecx=input;
rdx=0x5D7E0D1F2E0F1F84;
rax=rcx;
rax*=rdx;
rdx=0x388D76AEE8CB1500;
398
54.. n/nu ulC0MllllnoCn/l1lk 54. n/nu ulC0Mllllno + uSlno Z3 SM1 S0lvlk l0k ulll/1lno /M/1luk Ck\l10ok/ln\
rax=_lrotr(rax, rax&0xF); // rotate right
rax^=rdx;
rdx=0xD2E9EE7E83C4285B;
rax=_lrotl(rax, rax&0xF); // rotate left
r8=rax+rdx;
rax=rdx=r8/60;
rcx=(r8+rax*4)-(rax*64);
rax=r8
rax=_lrotl (rax, rcx&0xFF); // rotate left
return rax;
};
Another step:
uint64_t f(uint64_t input)
{
uint64_t rax, rbx, rcx, rdx, r8;
rax=input;
rax*=0x5D7E0D1F2E0F1F84;
rax=_lrotr(rax, rax&0xF); // rotate right
rax^=0x388D76AEE8CB1500;
rax=_lrotl(rax, rax&0xF); // rotate left
r8=rax+0xD2E9EE7E83C4285B;
rcx=r8-(r8/60)*60;
rax=r8
rax=_lrotl (rax, rcx&0xFF); // rotate left
return rax;
};
By simple reducing, we finally see that its not quotient calculated, but division remainder:
uint64_t f(uint64_t input)
{
uint64_t rax, rbx, rcx, rdx, r8;
rax=input;
rax*=0x5D7E0D1F2E0F1F84;
rax=_lrotr(rax, rax&0xF); // rotate right
rax^=0x388D76AEE8CB1500;
rax=_lrotl(rax, rax&0xF); // rotate left
r8=rax+0xD2E9EE7E83C4285B;
return _lrotl (r8, r8 % 60); // rotate left
};
We end up on something fancy formatted source-code:
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include <intrin.h>
#define C1 0x5D7E0D1F2E0F1F84
#define C2 0x388D76AEE8CB1500
#define C3 0xD2E9EE7E83C4285B
uint64_t hash(uint64_t v)
{
399
54.2. n0w ll1S uSl Z3 SM1 S0lvlk Cn/l1lk 54. n/nu ulC0Mllllno + uSlno Z3 SM1 S0lvlk l0k ulll/1lno /M/1luk Ck\l10ok/ln\
v*=C1;
v=_lrotr(v, v&0xF); // rotate right
v^=C2;
v=_lrotl(v, v&0xF); // rotate left
v+=C3;
v=_lrotl(v, v % 60); // rotate left
return v;
};
int main()
{
printf ("%llu\n", hash(...));
};
Since we are not cryptoanalysts we cant find an easy way to generate input value for some specific output value. Rotate
instruction coeficients are look frighteningits a warranty that the function is not bijective, it has collisions, or, speaking
more simply, many inputs may be possible for one output.
Brute-force is not solution because values are -bit ones, thats beyond reality.
$4.2 Ncwlets use 28 5H1 sclver
Still, without any special cryptographical knowledge, we may try to break this algorithm using excellent SMT solver from
Microsof Research named Z
. It is in fact theorem prover, but we will use it as SMT solver. In terms of simplicity, we may
think about it as a system capable of solving huge equation systems.
Here is a Python source code:
from z3 import *
C1=0x5D7E0D1F2E0F1F84
C2=0x388D76AEE8CB1500
C3=0xD2E9EE7E83C4285B
inp, i1, i2, i3, i4, i5, i6, outp = BitVecs(inp i1 i2 i3 i4 i5 i6 outp, 64)
s = Solver()
s.add(i1==inp*C1)
s.add(i2==RotateRight (i1, i1 & 0xF))
s.add(i3==i2 ^ C2)
s.add(i4==RotateLeft(i3, i3 & 0xF))
s.add(i5==i4 + C3)
s.add(outp==RotateLeft (i5, URem(i5, 60)))
s.add(outp==10816636949158156260)
print s.check()
m=s.model()
print m
print (" inp=0x%X" % m[inp].as_long())
print ("outp=0x%X" % m[outp].as_long())
This will be our first solver.
We see variable difinitions on line . These are just -bit variables. i1..i6 are intermediate variables, representing
values in registers between instruction executions.
Then we add so called constraints on lines ... The very last constraint at is most important: we will try to find input
value for which our algorithm will produce 10816636949158156260.
Essentially, SMT-solver searches for (any) values that satisfy all constraints.
RotateRight, RotateLef, URemare functions from Z Python API, they are not related to Python PL.
Then we run it:
...>python.exe 1.py
http://z3.codeplex.com/
400
54.2. n0w ll1S uSl Z3 SM1 S0lvlk Cn/l1lk 54. n/nu ulC0Mllllno + uSlno Z3 SM1 S0lvlk l0k ulll/1lno /M/1luk Ck\l10ok/ln\
sat
[i1 = 3959740824832824396,
i3 = 8957124831728646493,
i5 = 10816636949158156260,
inp = 1364123924608584563,
outp = 10816636949158156260,
i4 = 14065440378185297801,
i2 = 4954926323707358301]
inp=0x12EE577B63E80B73
outp=0x961C69FF0AEFD7E4
sat meansatisfiable, i.e., solver was able tofoundat least one solution. The solutionis printedinside square brackets.
Two last lines are input/output pair in hexadecimal form. Yes, indeed, if we run our function with 0x12EE577B63E80B73 on
input, the algorithm will produce the value we were looking for.
But, as we are noticedbefore, the functionwe work withis not bijective, sothere are may be other correct input values. Z
SMT solver is not capable of producing more than one result, but lets hack our example slightly, by adding line , meaining,
look for any other results than this:
from z3 import *
C1=0x5D7E0D1F2E0F1F84
C2=0x388D76AEE8CB1500
C3=0xD2E9EE7E83C4285B
inp, i1, i2, i3, i4, i5, i6, outp = BitVecs(inp i1 i2 i3 i4 i5 i6 outp, 64)
s = Solver()
s.add(i1==inp*C1)
s.add(i2==RotateRight (i1, i1 & 0xF))
s.add(i3==i2 ^ C2)
s.add(i4==RotateLeft(i3, i3 & 0xF))
s.add(i5==i4 + C3)
s.add(outp==RotateLeft (i5, URem(i5, 60)))
s.add(outp==10816636949158156260)
s.add(inp!=0x12EE577B63E80B73)
print s.check()
m=s.model()
print m
print (" inp=0x%X" % m[inp].as_long())
print ("outp=0x%X" % m[outp].as_long())
Indeed, it found other correct result:
...>python.exe 2.py
sat
[i1 = 3959740824832824396,
i3 = 8957124831728646493,
i5 = 10816636949158156260,
inp = 10587495961463360371,
outp = 10816636949158156260,
i4 = 14065440378185297801,
i2 = 4954926323707358301]
inp=0x92EE577B63E80B73
outp=0x961C69FF0AEFD7E4
This can be automated. Each found result may be added as constraint and the next result will be searched for. Here is
slightly sophisticated example:
from z3 import *
401
54.2. n0w ll1S uSl Z3 SM1 S0lvlk Cn/l1lk 54. n/nu ulC0Mllllno + uSlno Z3 SM1 S0lvlk l0k ulll/1lno /M/1luk Ck\l10ok/ln\
C1=0x5D7E0D1F2E0F1F84
C2=0x388D76AEE8CB1500
C3=0xD2E9EE7E83C4285B
inp, i1, i2, i3, i4, i5, i6, outp = BitVecs(inp i1 i2 i3 i4 i5 i6 outp, 64)
s = Solver()
s.add(i1==inp*C1)
s.add(i2==RotateRight (i1, i1 & 0xF))
s.add(i3==i2 ^ C2)
s.add(i4==RotateLeft(i3, i3 & 0xF))
s.add(i5==i4 + C3)
s.add(outp==RotateLeft (i5, URem(i5, 60)))
s.add(outp==10816636949158156260)
C1=0x5D7E0D1F2E0F1F84
C2=0x388D76AEE8CB1500
C3=0xD2E9EE7E83C4285B
inp, i1, i2, i3, i4, i5, i6, outp = BitVecs(inp i1 i2 i3 i4 i5 i6 outp, 64)
s = Solver()
s.add(i1==inp*C1)
s.add(i2==RotateRight (i1, i1 & 0xF))
s.add(i3==i2 ^ C2)
s.add(i4==RotateLeft(i3, i3 & 0xF))
s.add(i5==i4 + C3)
s.add(outp==RotateLeft (i5, URem(i5, 60)))
print s.check()
m=s.model()
print m
print (" inp=0x%X" % m[inp].as_long())
print ("outp=0x%X" % m[outp].as_long())
It is indeed so:
sat
[i1 = 14869545517796235860,
i3 = 8388171335828825253,
i5 = 6918262285561543945,
inp = 1370377541658871093,
outp = 14543180351754208565,
i4 = 10167065714588685486,
i2 = 5541032613289652645]
inp=0x13048F1D12C00535
outp=0xC9D3C17A12C00535
Lets be more sadistic and add another constaint: last -bit should be 0x1234:
from z3 import *
C1=0x5D7E0D1F2E0F1F84
C2=0x388D76AEE8CB1500
C3=0xD2E9EE7E83C4285B
inp, i1, i2, i3, i4, i5, i6, outp = BitVecs(inp i1 i2 i3 i4 i5 i6 outp, 64)
s = Solver()
s.add(i1==inp*C1)
s.add(i2==RotateRight (i1, i1 & 0xF))
s.add(i3==i2 ^ C2)
s.add(i4==RotateLeft(i3, i3 & 0xF))
s.add(i5==i4 + C3)
s.add(outp==RotateLeft (i5, URem(i5, 60)))
print s.check()
403
54.2. n0w ll1S uSl Z3 SM1 S0lvlk Cn/l1lk 54. n/nu ulC0Mllllno + uSlno Z3 SM1 S0lvlk l0k ulll/1lno /M/1luk Ck\l10ok/ln\
m=s.model()
print m
print (" inp=0x%X" % m[inp].as_long())
print ("outp=0x%X" % m[outp].as_long())
Oh yes, this possible as well:
sat
[i1 = 2834222860503985872,
i3 = 2294680776671411152,
i5 = 17492621421353821227,
inp = 461881484695179828,
outp = 419247225543463476,
i4 = 2294680776671411152,
i2 = 2834222860503985872]
inp=0x668EEC35F961234
outp=0x5D177215F961234
Z works very fast and it means that algorithm is weak, it is not cryptographical at all (like the most of amateur cryptog-
raphy).
Will it be possible to tackle real cryptography by these methods? Real algorithms like AES, RSA, etc, can also be repre-
sented as huge system of equations, but these are that huge that are impossible to work with on computers, now or in near
future. Of course, cryptographers are aware of this.
Another article I wrote about Z is [].
404
Cn/l1lk 55. u0nollS
Cbapter $$
bcnles
Occasionally I do sofware copy-protection dongle replacements, or dongle emulators and here are couple examples of my
work
.
About one of not described cases you may also read here: [].
$$.1 xample #1: Haco5 Classic and cwerC
Ive got a program for MacOS Classic
, for PowerPC. The company who developed the sofware product was disappeared
long time ago, so the (legal) customer was afraid of physical dongle damage.
While running without dongle connected, a message box with a text "Invalid Security Device" appeared. Luckily, this text
string can be found easily in the executable binary file.
I was not very familiar both with Mac OS Classic and PowerPC, but I tried anyway.
IDA opens the executable file smoothly, reported its type as "PEF (Mac OS or Be OS executable)" (indeed, it is a standard
Mac OS Classic file format).
By searching for the text string with error message, Ive got into this code fragment:
...
seg000:000C87FC 38 60 00 01 li %r3, 1
seg000:000C8800 48 03 93 41 bl check1
seg000:000C8804 60 00 00 00 nop
seg000:000C8808 54 60 06 3F clrlwi. %r0, %r3, 24
seg000:000C880C 40 82 00 40 bne OK
seg000:000C8810 80 62 9F D8 lwz %r3, TC_aInvalidSecurityDevice
...
Yes, this is PowerPC code. The CPU is very typical -bit RISC of s era. Each instruction occupies bytes (just as in
MIPS and ARM) and its names are somewhat resembling MIPS instruction names.
check1() is a function name I gave it to lately. BL is Brcncl l|nk instruction, e.g., intended for subroutines calling. The
crucial point is BNE instruction jumping if dongle protection check is passed or not jumping if error is occurred: then the
address of the text string being loaded into r register for the subsequent passage into message box routine.
From the [] Ive got to know the r register is used for values returning (and r, in case of -bit values).
Another yet unknown instruction is CLRLWI. From[] Ive got to knowthat this instruction do both clearing and loading.
In our case, it clears high bits fromthe value in r and put it to r, so it is analogical to MOVZX in x (..), but it also sets
the flags, so the BNE can check them afer.
Lets take a look into check1() function:
seg000:00101B40 check1: # CODE XREF: seg000:00063E7Cp
seg000:00101B40 # sub_64070+160p ...
seg000:00101B40
seg000:00101B40 .set arg_8, 8
seg000:00101B40
seg000:00101B40 7C 08 02 A6 mflr %r0
seg000:00101B44 90 01 00 08 stw %r0, arg_8(%sp)
pre-UNIX MacOS
405
55.. l\/Mlll #. M/C0S Cl/SSlC /nu l0wlklC Cn/l1lk 55. u0nollS
seg000:00101B48 94 21 FF C0 stwu %sp, -0x40(%sp)
seg000:00101B4C 48 01 6B 39 bl check2
seg000:00101B50 60 00 00 00 nop
seg000:00101B54 80 01 00 48 lwz %r0, 0x40+arg_8(%sp)
seg000:00101B58 38 21 00 40 addi %sp, %sp, 0x40
seg000:00101B5C 7C 08 03 A6 mtlr %r0
seg000:00101B60 4E 80 00 20 blr
seg000:00101B60 # End of function check1
As I can see in IDA, that function is called from many places in program, but only r register value is checked right afer
each call. All this function does is calling other function, so it is thunk function: there is function prologue and epilogue, but
r register is not touched, so checkl() returns what check2() returns.
BLR
is seems return fromfunction, but since IDA does functions layout, we probably do not need to be interesting in this.
It seems, since it is a typical RISC, subroutines are called using link register, just like in ARM.
check2() function is more complex:
seg000:00118684 check2: # CODE XREF: check1+Cp
seg000:00118684
seg000:00118684 .set var_18, -0x18
seg000:00118684 .set var_C, -0xC
seg000:00118684 .set var_8, -8
seg000:00118684 .set var_4, -4
seg000:00118684 .set arg_8, 8
seg000:00118684
seg000:00118684 93 E1 FF FC stw %r31, var_4(%sp)
seg000:00118688 7C 08 02 A6 mflr %r0
seg000:0011868C 83 E2 95 A8 lwz %r31, off_1485E8 # dword_24B704
seg000:00118690 .using dword_24B704, %r31
seg000:00118690 93 C1 FF F8 stw %r30, var_8(%sp)
seg000:00118694 93 A1 FF F4 stw %r29, var_C(%sp)
seg000:00118698 7C 7D 1B 78 mr %r29, %r3
seg000:0011869C 90 01 00 08 stw %r0, arg_8(%sp)
seg000:001186A0 54 60 06 3E clrlwi %r0, %r3, 24
seg000:001186A4 28 00 00 01 cmplwi %r0, 1
seg000:001186A8 94 21 FF B0 stwu %sp, -0x50(%sp)
seg000:001186AC 40 82 00 0C bne loc_1186B8
seg000:001186B0 38 60 00 01 li %r3, 1
seg000:001186B4 48 00 00 6C b exit
seg000:001186B8
seg000:001186B8 loc_1186B8: # CODE XREF: check2+28j
seg000:001186B8 48 00 03 D5 bl sub_118A8C
seg000:001186BC 60 00 00 00 nop
seg000:001186C0 3B C0 00 00 li %r30, 0
seg000:001186C4
seg000:001186C4 skip: # CODE XREF: check2+94j
seg000:001186C4 57 C0 06 3F clrlwi. %r0, %r30, 24
seg000:001186C8 41 82 00 18 beq loc_1186E0
seg000:001186CC 38 61 00 38 addi %r3, %sp, 0x50+var_18
seg000:001186D0 80 9F 00 00 lwz %r4, dword_24B704
seg000:001186D4 48 00 C0 55 bl .RBEFINDNEXT
seg000:001186D8 60 00 00 00 nop
seg000:001186DC 48 00 00 1C b loc_1186F8
seg000:001186E0
seg000:001186E0 loc_1186E0: # CODE XREF: check2+44j
seg000:001186E0 80 BF 00 00 lwz %r5, dword_24B704
seg000:001186E4 38 81 00 38 addi %r4, %sp, 0x50+var_18
seg000:001186E8 38 60 08 C2 li %r3, 0x1234
seg000:001186EC 48 00 BF 99 bl .RBEFINDFIRST
seg000:001186F0 60 00 00 00 nop
seg000:001186F4 3B C0 00 01 li %r30, 1
If to consider Centronics only. Following IEEE standard allows to transfer information from the printer.
425
55.3. l\/Mlll #3. MS-u0S Cn/l1lk 55. u0nollS
It seems, the dongle returninformationvia busy flag at seg030:00B9: eachbit is storedinthe DI register, later returned
at the function end.
What all these bytes sent to output port mean? I dont know. Probably commands to the dongle. But generally speaking,
it is not necessary to know: it is easy to solve our task without that knowledge.
Here is a dongle checking routine:
00000000 struct_0 struc ; (sizeof=0x1B)
00000000 field_0 db 25 dup(?) ; string(C)
00000019 _A dw ?
0000001B struct_0 ends
dseg:3CBC 61 63 72 75+_Q struct_0 <hello, 01122h>
dseg:3CBC 6E 00 00 00+ ; DATA XREF: check_dongle+2Eo
... skipped ...
dseg:3E00 63 6F 66 66+ struct_0 <coffee, 7EB7h>
dseg:3E1B 64 6F 67 00+ struct_0 <dog, 0FFADh>
dseg:3E36 63 61 74 00+ struct_0 <cat, 0FF5Fh>
dseg:3E51 70 61 70 65+ struct_0 <paper, 0FFDFh>
dseg:3E6C 63 6F 6B 65+ struct_0 <coke, 0F568h>
dseg:3E87 63 6C 6F 63+ struct_0 <clock, 55EAh>
dseg:3EA2 64 69 72 00+ struct_0 <dir, 0FFAEh>
dseg:3EBD 63 6F 70 79+ struct_0 <copy, 0F557h>
seg030:0145 check_dongle proc far ; CODE XREF: sub_3771D+3EP
seg030:0145
seg030:0145 var_6 = dword ptr -6
seg030:0145 var_2 = word ptr -2
seg030:0145
seg030:0145 C8 06 00 00 enter 6, 0
seg030:0149 56 push si
seg030:014A 66 6A 00 push large 0 ; newtime
seg030:014D 6A 00 push 0 ; cmd
seg030:014F 9A C1 18 00+ call _biostime
seg030:0154 52 push dx
seg030:0155 50 push ax
seg030:0156 66 58 pop eax
seg030:0158 83 C4 06 add sp, 6
seg030:015B 66 89 46 FA mov [bp+var_6], eax
seg030:015F 66 3B 06 D8+ cmp eax, _expiration
seg030:0164 7E 44 jle short loc_35B0A
seg030:0166 6A 14 push 14h
seg030:0168 90 nop
seg030:0169 0E push cs
seg030:016A E8 52 00 call near ptr get_rand
seg030:016D 59 pop cx
seg030:016E 8B F0 mov si, ax
seg030:0170 6B C0 1B imul ax, 1Bh
seg030:0173 05 BC 3C add ax, offset _Q
seg030:0176 1E push ds
seg030:0177 50 push ax
seg030:0178 0E push cs
seg030:0179 E8 C5 FE call near ptr sent_pro
seg030:017C 83 C4 04 add sp, 4
seg030:017F 89 46 FE mov [bp+var_2], ax
seg030:0182 8B C6 mov ax, si
seg030:0184 6B C0 12 imul ax, 18
seg030:0187 66 0F BF C0 movsx eax, ax
seg030:018B 66 8B 56 FA mov edx, [bp+var_6]
426
55.3. l\/Mlll #3. MS-u0S Cn/l1lk 55. u0nollS
seg030:018F 66 03 D0 add edx, eax
seg030:0192 66 89 16 D8+ mov _expiration, edx
seg030:0197 8B DE mov bx, si
seg030:0199 6B DB 1B imul bx, 27
seg030:019C 8B 87 D5 3C mov ax, _Q._A[bx]
seg030:01A0 3B 46 FE cmp ax, [bp+var_2]
seg030:01A3 74 05 jz short loc_35B0A
seg030:01A5 B8 01 00 mov ax, 1
seg030:01A8 EB 02 jmp short loc_35B0C
seg030:01AA
seg030:01AA loc_35B0A: ; CODE XREF: check_dongle+1Fj
seg030:01AA ; check_dongle+5Ej
seg030:01AA 33 C0 xor ax, ax
seg030:01AC
seg030:01AC loc_35B0C: ; CODE XREF: check_dongle+63j
seg030:01AC 5E pop si
seg030:01AD C9 leave
seg030:01AE CB retf
seg030:01AE check_dongle endp
Since the routine may be called too frequently, e.g., before each important sofware feature executing, and the dongle
accessing process is generally slow(because of slowprinter port and also slowMCU
Microcontroller unit
427
55.3. l\/Mlll #3. MS-u0S Cn/l1lk 55. u0nollS
seg033:08A3 1E push ds
seg033:08A4 68 60 E9 push offset byte_6C7E0 ; dest
seg033:08A7 9A CD 64 00+ call _strcat
Dongle bypassing is easy, just force the check_dongle() function to always return .
For example, by inserting this code at its beginning:
mov ax,0
retf
Observant reader might recall that strcpy() C function usually requires two pointers in arguments, but we saw how
values are passed:
seg033:088F 1E push ds
seg033:0890 68 22 44 push offset aTrupcRequiresA ; "This Software
Requires a Software Lock\n"
seg033:0893 1E push ds
seg033:0894 68 60 E9 push offset byte_6C7E0 ; dest
seg033:0897 9A 79 65 00+ call _strcpy
seg033:089C 83 C4 08 add sp, 8
Read more about it here: .
So as you may see, strcpy() and any other function taking pointer(s) in arguments, works with -bit pairs.
Lets back to our example. DS is currently set to data segment located in the executable, that is where the text string is
stored.
In the sent_pro() function, each byte of string is loaded at seg030:00EF: the LES instruction loads ES:BX pair simulta-
neously from the passed argument. The MOV at seg030:00F5 loads the byte from the memory to which ES:BX pair points.
At seg030:00F2only -bit wordis incremented, not segment value. This means, the stringpassedtothe functioncannot
be located on two data segments boundaries.
428
Cn/l1lk 56. Qk9. kuBlAS CuBl lnSllklu /M/1luk Ck\l10-/lo0kl1nM
Cbapter $8
qR9: Rubiks cube inspired amateur
cryptc-alcritbm
Sometimes amateur cryptosystems appear to be pretty bizarre.
I was asked to reverse engineer an amateur cryptoalgorithmof some data crypting utility, source code of which was lost
.
Here is also IDA exported listing from original crypting utility:
.text:00541000 set_bit proc near ; CODE XREF: rotate1+42
.text:00541000 ; rotate2+42 ...
.text:00541000
.text:00541000 arg_0 = dword ptr 4
.text:00541000 arg_4 = dword ptr 8
.text:00541000 arg_8 = dword ptr 0Ch
.text:00541000 arg_C = byte ptr 10h
.text:00541000
.text:00541000 mov al, [esp+arg_C]
.text:00541004 mov ecx, [esp+arg_8]
.text:00541008 push esi
.text:00541009 mov esi, [esp+4+arg_0]
.text:0054100D test al, al
.text:0054100F mov eax, [esp+4+arg_4]
.text:00541013 mov dl, 1
.text:00541015 jz short loc_54102B
.text:00541017 shl dl, cl
.text:00541019 mov cl, cube64[eax+esi*8]
.text:00541020 or cl, dl
.text:00541022 mov cube64[eax+esi*8], cl
.text:00541029 pop esi
.text:0054102A retn
.text:0054102B
.text:0054102B loc_54102B: ; CODE XREF: set_bit+15
.text:0054102B shl dl, cl
.text:0054102D mov cl, cube64[eax+esi*8]
.text:00541034 not dl
.text:00541036 and cl, dl
.text:00541038 mov cube64[eax+esi*8], cl
.text:0054103F pop esi
.text:00541040 retn
.text:00541040 set_bit endp
.text:00541040
.text:00541041 align 10h
.text:00541050
.text:00541050 ; =============== S U B R O U T I N E =======================================
.text:00541050
.text:00541050
.text:00541050 get_bit proc near ; CODE XREF: rotate1+16
.
.text:00541379 mov ecx, esi
.text:0054137B mov ebx, eax ; allocated buffer pointer -> to EBX
.text:0054137D mov edx, ecx
.text:0054137F xor eax, eax
.text:00541381 mov edi, ebx
.text:00541383 push ebp ; File
.text:00541384 shr ecx, 2
.text:00541387 rep stosd
.text:00541389 mov ecx, edx
.text:0054138B push 1 ; Count
.text:0054138D and ecx, 3
.text:00541390 rep stosb ; memset (buffer, 0, aligned_size)
Read file via standard C function fread().
.text:00541392 mov eax, [esp+38h+Str]
.text:00541396 push eax ; ElementSize
.text:00541397 push ebx ; DstBuf
.text:00541398 call _fread ; read file
.text:0054139D push ebp ; File
.text:0054139E call _fclose
Call crypt(). This function takes bufer, bufer size (aligned) and password string.
.text:005413A3 mov ecx, [esp+44h+password]
.text:005413A7 push ecx ; password
.text:005413A8 push esi ; aligned size
.text:005413A9 push ebx ; buffer
.text:005413AA call crypt ; do crypt
Create output file. By the way, developer forgot to check if it is was created correctly! File opening result is being checked
though.
.text:005413AF mov edx, [esp+50h+Filename]
.text:005413B3 add esp, 40h
.text:005413B6 push offset aWb ; "wb"
.text:005413BB push edx ; Filename
.text:005413BC call _fopen
.text:005413C1 mov edi, eax
Newly created file handle is in the EDI register now. Write signature QR.
.text:005413C3 push edi ; File
.text:005413C4 push 1 ; Count
.text:005413C6 push 3 ; Size
.text:005413C8 push offset aQr9 ; "QR9"
.text:005413CD call _fwrite ; write file signature
standardCfunctionandrotate_all()
is called with argument .
This means, in case of decryption, each corresponding rotate// call will be performed thrice.
This is almost as in Rubikc cube! If you want to get back, do the same in reverse order and direction! If you need to undo
efect of rotating one place in clockwise direction, rotate it thrice in counter-clockwise direction.
rotate1() is apparently for rotating front plane. rotate2() is apparently for rotating top plane. rotate3() is
apparently for rotating lef plane.
Lets get back to the core of rotate_all() function:
q=c-a;
if (q>24)
q-=24;
int quotient=q/3; // in range 0..7
int remainder=q % 3;
switch (remainder)
{
case 0: for (int i=0; i<v; i++) rotate1 (quotient); break; // front
case 1: for (int i=0; i<v; i++) rotate2 (quotient); break; // top
case 2: for (int i=0; i<v; i++) rotate3 (quotient); break; // left
};
Nowit is much simpler to understand: each password character defines side (one of three) and plane (one of ). * = ,
that is why two last characters of Latin alphabet are remapped to fit an alphabet of exactly elements.
The algorithm is clearly weak: in case of short passwords, one can see, that in crypted file there are an original bytes of
the original file in binary files editor.
Here is reconstructed whole source code:
#include <windows.h>
#include <stdio.h>
#include <assert.h>
#define IS_SET(flag, bit) ((flag) & (bit))
http://en.wikipedia.org/wiki/Rubiks_Cube
http://msdn.microsoft.com/en-us/library/9hby7w40(VS.80).aspx
454
Cn/l1lk 56. Qk9. kuBlAS CuBl lnSllklu /M/1luk Ck\l10-/lo0kl1nM
#define SET_BIT(var, bit) ((var) |= (bit))
#define REMOVE_BIT(var, bit) ((var) &= ~(bit))
static BYTE cube[8][8];
void set_bit (int x, int y, int z, bool bit)
{
if (bit)
SET_BIT (cube[x][y], 1<<z);
else
REMOVE_BIT (cube[x][y], 1<<z);
};
bool get_bit (int x, int y, int z)
{
if ((cube[x][y]>>z)&1==1)
return true;
return false;
};
void rotate_f (int row)
{
bool tmp[8][8];
int x, y;
for (x=0; x<8; x++)
for (y=0; y<8; y++)
tmp[x][y]=get_bit (x, y, row);
for (x=0; x<8; x++)
for (y=0; y<8; y++)
set_bit (y, 7-x, row, tmp[x][y]);
};
void rotate_t (int row)
{
bool tmp[8][8];
int y, z;
for (y=0; y<8; y++)
for (z=0; z<8; z++)
tmp[y][z]=get_bit (row, y, z);
for (y=0; y<8; y++)
for (z=0; z<8; z++)
set_bit (row, z, 7-y, tmp[y][z]);
};
void rotate_l (int row)
{
bool tmp[8][8];
int x, z;
for (x=0; x<8; x++)
for (z=0; z<8; z++)
tmp[x][z]=get_bit (x, row, z);
for (x=0; x<8; x++)
for (z=0; z<8; z++)
set_bit (7-z, row, x, tmp[x][z]);
};
455
Cn/l1lk 56. Qk9. kuBlAS CuBl lnSllklu /M/1luk Ck\l10-/lo0kl1nM
void rotate_all (char *pwd, int v)
{
char *p=pwd;
while (*p)
{
char c=*p;
int q;
c=tolower (c);
if (c>=a && c<=z)
{
q=c-a;
if (q>24)
q-=24;
int quotient=q/3;
int remainder=q % 3;
switch (remainder)
{
case 0: for (int i=0; i<v; i++) rotate1 (quotient); break;
case 1: for (int i=0; i<v; i++) rotate2 (quotient); break;
case 2: for (int i=0; i<v; i++) rotate3 (quotient); break;
};
};
p++;
};
};
void crypt (BYTE *buf, int sz, char *pw)
{
int i=0;
do
{
memcpy (cube, buf+i, 8*8);
rotate_all (pw, 1);
memcpy (buf+i, cube, 8*8);
i+=64;
}
while (i<sz);
};
void decrypt (BYTE *buf, int sz, char *pw)
{
char *p=strdup (pw);
strrev (p);
int i=0;
do
{
memcpy (cube, buf+i, 8*8);
rotate_all (p, 3);
memcpy (buf+i, cube, 8*8);
i+=64;
}
while (i<sz);
456
Cn/l1lk 56. Qk9. kuBlAS CuBl lnSllklu /M/1luk Ck\l10-/lo0kl1nM
free (p);
};
void crypt_file(char *fin, char* fout, char *pw)
{
FILE *f;
int flen, flen_aligned;
BYTE *buf;
f=fopen(fin, "rb");
if (f==NULL)
{
printf ("Cannot open input file!\n");
return;
};
fseek (f, 0, SEEK_END);
flen=ftell (f);
fseek (f, 0, SEEK_SET);
flen_aligned=(flen&0xFFFFFFC0)+0x40;
buf=(BYTE*)malloc (flen_aligned);
memset (buf, 0, flen_aligned);
fread (buf, flen, 1, f);
fclose (f);
crypt (buf, flen_aligned, pw);
f=fopen(fout, "wb");
fwrite ("QR9", 3, 1, f);
fwrite (&flen, 4, 1, f);
fwrite (buf, flen_aligned, 1, f);
fclose (f);
free (buf);
};
void decrypt_file(char *fin, char* fout, char *pw)
{
FILE *f;
int real_flen, flen;
BYTE *buf;
f=fopen(fin, "rb");
if (f==NULL)
{
printf ("Cannot open input file!\n");
return;
};
fseek (f, 0, SEEK_END);
flen=ftell (f);
457
Cn/l1lk 56. Qk9. kuBlAS CuBl lnSllklu /M/1luk Ck\l10-/lo0kl1nM
fseek (f, 0, SEEK_SET);
buf=(BYTE*)malloc (flen);
fread (buf, flen, 1, f);
fclose (f);
if (memcmp (buf, "QR9", 3)!=0)
{
printf ("File is not crypted!\n");
return;
};
memcpy (&real_flen, buf+3, 4);
decrypt (buf+(3+4), flen-(3+4), pw);
f=fopen(fout, "wb");
fwrite (buf+(3+4), real_flen, 1, f);
fclose (f);
free (buf);
};
// run: input output 0/1 password
// 0 for encrypt, 1 for decrypt
int main(int argc, char *argv[])
{
if (argc!=5)
{
printf ("Incorrect parameters!\n");
return 1;
};
if (strcmp (argv[3], "0")==0)
crypt_file (argv[1], argv[2], argv[4]);
else
if (strcmp (argv[3], "1")==0)
decrypt_file (argv[1], argv[2], argv[4]);
else
printf ("Wrong param %s\n", argv[3]);
return 0;
};
458
Cn/l1lk 57. S/l
Cbapter $7
5A
$7.1 Abcut 5A client netwcrk traic ccmpressicn
(Tracing connection between TDW_NOCOMPRESS SAPGUI
and here
).
It is also known that by setting environment variable 1uw_n0C0MlklSS to , it is possible to turn network packets com-
pression of.
But you will see a nagging pop-up window cannot be closed:
Figure .: Screenshot
Lets see, if we can remove the window somehow.
But before this, lets see what we already know. First: we know the environment variable 1uw_n0C0MlklSS is checked
somewhere inside of SAPGUI client. Second: string like data compression switched of must be present somewhere too.
With the help of FAR file manager I found that both of these strings are stored in the SAPguilib.dll file.
So lets open SAPguilib.dll in IDA and search for 1uw_n0C0MlklSS string. Yes, it is present and there is only one refer-
ence to it.
Weseethefollowingfragment of code(all fileofsets arevalidfor SAPGUI win, SAPguilib.dll fileversion,,,):
.text:6440D51B lea eax, [ebp+2108h+var_211C]
http://blog.yurichev.com/node/44
http://blog.yurichev.com/node/47
459
57.. /B0u1 S/l Cllln1 nl1w0kA 1k/lllC C0MlklSSl0n Cn/l1lk 57. S/l
.text:6440D51E push eax ; int
.text:6440D51F push offset aTdw_nocompress ; "TDW_NOCOMPRESS"
.text:6440D524 mov byte ptr [edi+15h], 0
.text:6440D528 call chk_env
.text:6440D52D pop ecx
.text:6440D52E pop ecx
.text:6440D52F push offset byte_64443AF8
.text:6440D534 lea ecx, [ebp+2108h+var_211C]
; demangled name: int ATL::CStringT::Compare(char const *)const
.text:6440D537 call ds:mfc90_1603
.text:6440D53D test eax, eax
.text:6440D53F jz short loc_6440D55A
.text:6440D541 lea ecx, [ebp+2108h+var_211C]
; demangled name: const char* ATL::CSimpleStringT::operator PCXSTR
.text:6440D544 call ds:mfc90_910
.text:6440D54A push eax ; Str
.text:6440D54B call ds:atoi
.text:6440D551 test eax, eax
.text:6440D553 setnz al
.text:6440D556 pop ecx
.text:6440D557 mov [edi+15h], al
String returned by chk_env() via second argument is then handled by MFC string functions and then atoi()
is called.
Afer that, numerical value is stored to edi+15h.
Also take a look onto chk_env() function (I gave a name to it):
.text:64413F20 ; int __cdecl chk_env(char *VarName, int)
.text:64413F20 chk_env proc near
.text:64413F20
.text:64413F20 DstSize = dword ptr -0Ch
.text:64413F20 var_8 = dword ptr -8
.text:64413F20 DstBuf = dword ptr -4
.text:64413F20 VarName = dword ptr 8
.text:64413F20 arg_4 = dword ptr 0Ch
.text:64413F20
.text:64413F20 push ebp
.text:64413F21 mov ebp, esp
.text:64413F23 sub esp, 0Ch
.text:64413F26 mov [ebp+DstSize], 0
.text:64413F2D mov [ebp+DstBuf], 0
.text:64413F34 push offset unk_6444C88C
.text:64413F39 mov ecx, [ebp+arg_4]
; (demangled name) ATL::CStringT::operator=(char const *)
.text:64413F3C call ds:mfc90_820
.text:64413F42 mov eax, [ebp+VarName]
.text:64413F45 push eax ; VarName
.text:64413F46 mov ecx, [ebp+DstSize]
.text:64413F49 push ecx ; DstSize
.text:64413F4A mov edx, [ebp+DstBuf]
.text:64413F4D push edx ; DstBuf
.text:64413F4E lea eax, [ebp+DstSize]
.text:64413F51 push eax ; ReturnSize
.text:64413F52 call ds:getenv_s
.text:64413F58 add esp, 10h
.text:64413F5B mov [ebp+var_8], eax
.text:64413F5E cmp [ebp+var_8], 0
.text:64413F62 jz short loc_64413F68
.
There is also a MFC string manipulations.
Lots of other environment variables are checked as well. Here is a list of all variables being checked and what SAPGUI
could write to trace log when logging is turned on:
http://msdn.microsoft.com/en-us/library/tb2sfw2z(VS.80).aspx
utility for converting PDB files into something readable and grepable.
Here is an example of function information + its arguments + its local variables:
FUNCTION ThVmcSysEvent
Address: 10143190 Size: 675 bytes Index: 60483 TypeIndex: 60484
Type: int NEAR_C ThVmcSysEvent (unsigned int, unsigned char, unsigned short*)
Flags: 0
PARAMETER events
Address: Reg335+288 Size: 4 bytes Index: 60488 TypeIndex: 60489
Type: unsigned int
Flags: d0
PARAMETER opcode
Address: Reg335+296 Size: 1 bytes Index: 60490 TypeIndex: 60491
Type: unsigned char
Flags: d0
PARAMETER serverName
http://conus.info/utils/SAP_pkt_decompr.txt
http://www.debuginfo.com/tools/typeinfodump.html
470
57.2. S/l 6.0 l/SSw0ku CnlCAlno lunC1l0nS Cn/l1lk 57. S/l
Address: Reg335+304 Size: 8 bytes Index: 60492 TypeIndex: 60493
Type: unsigned short*
Flags: d0
STATIC_LOCAL_VAR func
Address: 12274af0 Size: 8 bytes Index: 60495 TypeIndex: 60496
Type: wchar_t*
Flags: 80
LOCAL_VAR admhead
Address: Reg335+304 Size: 8 bytes Index: 60498 TypeIndex: 60499
Type: unsigned char*
Flags: 90
LOCAL_VAR record
Address: Reg335+64 Size: 204 bytes Index: 60501 TypeIndex: 60502
Type: AD_RECORD
Flags: 90
LOCAL_VAR adlen
Address: Reg335+296 Size: 4 bytes Index: 60508 TypeIndex: 60509
Type: int
Flags: 90
And here is an example of some structure:
STRUCT DBSL_STMTID
Size: 120 Variables: 4 Functions: 0 Base classes: 0
MEMBER moduletype
Type: DBSL_MODULETYPE
Offset: 0 Index: 3 TypeIndex: 38653
MEMBER module
Type: wchar_t module[40]
Offset: 4 Index: 3 TypeIndex: 831
MEMBER stmtnum
Type: long
Offset: 84 Index: 3 TypeIndex: 440
MEMBER timestamp
Type: wchar_t timestamp[15]
Offset: 88 Index: 3 TypeIndex: 6612
Wow!
Another good news is: Jebo|n calls (there are plenty of them) are very useful.
Here you can also notice ct_level global variable
Probably, the table kqfviw contain most (maybe even all) views prefixed with V$, these are f|xeJ v|ews, present all the
time. Superficially, by noticingcyclic recurrence of data, we caneasily see that eachkqfviwtable element has -bit fields.
It is very simple to create a -elements structure in IDA and apply it to all table elements. As of Oracle RDBMS version .,
there are table elements, i.e., there are described of all possible f|xeJ v|ews. We will return to this number later.
As we can see, there is not much information in these numbers in fields. The very first number is always equals to name
of view (without terminating zero. This is correct for each element. But this information is not very useful.
We also knowthat information about all fixed views can be retrieved fromf|xeJv|ewnamed V$FIXED_VIEW_DEFINITION
(by the way, the information for this viewis also taken fromkqfviw and kqfvip tables.) By the way, there are elements
too.
SQL> select * from V$FIXED_VIEW_DEFINITION where view_name=V$VERSION;
VIEW_NAME
------------------------------
VIEW_DEFINITION
--------------------------------------------------------------------------------
V$VERSION
select BANNER from GV$VERSION where inst_id = USERENV(Instance)
So, V$VERSION is some kind of tlonk v|ew for another view, named GV$VERSION, which is, in turn:
SQL> select * from V$FIXED_VIEW_DEFINITION where view_name=GV$VERSION;
VIEW_NAME
program, so to gather all this information from Oracle RDBMS for Linux object files. For
V$VERSION, we may find this:
Listing .: Result of oracle tables
kqfviw_element.viewname: [V$VERSION] ?: 0x3 0x43 0x1 0xffffc085 0x4
kqfvip_element.statement: [select BANNER from GV$VERSION where inst_id = USERENV(Instance)]
kqfvip_element.params:
[BANNER]
and:
http://yurichev.com/oracle_tables.html
476
58.. V$VERSION 1/Bll ln 1nl 0k/Cll kuBMS Cn/l1lk 58. 0k/Cll kuBMS
Listing .: Result of oracle tables
kqfviw_element.viewname: [GV$VERSION] ?: 0x3 0x26 0x2 0xffffc192 0x1
kqfvip_element.statement: [select inst_id, banner from x$version]
kqfvip_element.params:
[INST_ID] [BANNER]
GV$VERSION f|xeJ v|ewis distinct fromV$VERSION in only that way that it contains one more field with |nstcnce identifier.
Anyway, we stuck at the table X$VERSION. Just like any other X$-tables, it is undocumented, however, we can query it:
SQL> select * from x$version;
ADDR INDX INST_ID
-------- ---------- ----------
BANNER
--------------------------------------------------------------------------------
0DBAF574 0 1
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
...
This table has additional fields like ADDR and INDX.
While scrolling kqf.o in IDA we may spot another table containing pointer to the X$VERSION string, this is kqftab:
Listing .: kqf.o
.rodata:0803CAC0 dd 9 ; element number 0x1f6
.rodata:0803CAC4 dd offset _2__STRING_13113_0 ; "X$VERSION"
.rodata:0803CAC8 dd 4
.rodata:0803CACC dd offset _2__STRING_13114_0 ; "kqvt"
.rodata:0803CAD0 dd 4
.rodata:0803CAD4 dd 4
.rodata:0803CAD8 dd 0
.rodata:0803CADC dd 4
.rodata:0803CAE0 dd 0Ch
.rodata:0803CAE4 dd 0FFFFC075h
.rodata:0803CAE8 dd 3
.rodata:0803CAEC dd 0
.rodata:0803CAF0 dd 7
.rodata:0803CAF4 dd offset _2__STRING_13115_0 ; "X$KQFSZ"
.rodata:0803CAF8 dd 5
.rodata:0803CAFC dd offset _2__STRING_13116_0 ; "kqfsz"
.rodata:0803CB00 dd 1
.rodata:0803CB04 dd 38h
.rodata:0803CB08 dd 0
.rodata:0803CB0C dd 7
.rodata:0803CB10 dd 0
.rodata:0803CB14 dd 0FFFFC09Dh
.rodata:0803CB18 dd 2
.rodata:0803CB1C dd 0
There are a lot of references to X$-table names, apparently, to all Oracle RDBMS . X$-tables. But again, we have not
enough information. I have no idea, what kqvt string means. kq prefix may means kernel and qoery. v, apparently, means
vers|on and t tye? Frankly speaking, I do not know.
The table named similarly can be found in kqf.o:
Listing .: kqf.o
.rodata:0808C360 kqvt_c_0 kqftap_param <4, offset _2__STRING_19_0, 917h, 0, 0, 0, 4, 0,
0>
.rodata:0808C360 ; DATA XREF: .rodata:08042680
.rodata:0808C360 ; "ADDR"
.rodata:0808C384 kqftap_param <4, offset _2__STRING_20_0, 0B02h, 0, 0, 0, 4, 0,
0> ; "INDX"
477
58.. V$VERSION 1/Bll ln 1nl 0k/Cll kuBMS Cn/l1lk 58. 0k/Cll kuBMS
.rodata:0808C3A8 kqftap_param <7, offset _2__STRING_21_0, 0B02h, 0, 0, 0, 4, 0,
0> ; "INST_ID"
.rodata:0808C3CC kqftap_param <6, offset _2__STRING_5017_0, 601h, 0, 0, 0, 50h,
0, 0> ; "BANNER"
.rodata:0808C3F0 kqftap_param <0, offset _2__STRING_0_0, 0, 0, 0, 0, 0, 0, 0>
It containinformationabout all fields inthe X$VERSIONtable. The only reference tothis table present inthe kqftaptable:
Listing .: kqf.o
.rodata:08042680 kqftap_element <0, offset kqvt_c_0, offset kqvrow, 0> ;
element 0x1f6
It is interesting that this element here is 0x1f6th (nd), just as a pointer to the X$VERSION string in the kqftab table.
Probably, kqftap and kqftab tables are complement each other, just like kqfvip and kqfviw. We also see a pointer to the
kqvrow() function. Finally, we got something useful!
So I added these tables to my oracle tables
http://yurichev.com/oracle_tables.html
478
58.. V$VERSION 1/Bll ln 1nl 0k/Cll kuBMS Cn/l1lk 58. 0k/Cll kuBMS
loc_2CE10F6: ; CODE XREF: _kqvrow_+10A
; _kqvrow_+1A9
cmp ecx, 5 ; ECX=0..5
ja loc_56C11C7
mov edi, [ebp+arg_18] ; [EBP+20h]=0
mov [ebp+var_14], edx ; EDX=0xc98c938
mov [ebp+var_8], ebx ; EBX=0
mov ebx, eax ; EAX=0xcdfe554
mov [ebp+var_C], esi ; ESI=0xcdfe248
loc_2CE110D: ; CODE XREF: _kqvrow_+29E00E6
mov edx, ds:off_628B09C[ecx*4] ; [ECX*4+628B09Ch]=0x2ce1116, 0x2ce11ac, 0x2ce11db
, 0x2ce11f6, 0x2ce1236, 0x2ce127a
jmp edx ; EDX=0x2ce1116, 0x2ce11ac, 0x2ce11db, 0x2ce11f6, 0x2ce1236,
0x2ce127a
loc_2CE1116: ; DATA XREF: .rdata:off_628B09C
push offset aXKqvvsnBuffer ; "x$kqvvsn buffer"
mov ecx, [ebp+arg_C] ; [EBP+14h]=0x8a172b4
xor edx, edx
mov esi, [ebp+var_14] ; [EBP-14h]=0xc98c938
push edx ; EDX=0
push edx ; EDX=0
push 50h
push ecx ; ECX=0x8a172b4
push dword ptr [esi+10494h] ; [ESI+10494h]=0xc98cd58
call _kghalf ; tracing nested maximum level (1) reached, skipping this
CALL
mov esi, ds:__imp__vsnnum ; [59771A8h]=0x61bc49e0
mov [ebp+Dest], eax ; EAX=0xce2ffb0
mov [ebx+8], eax ; EAX=0xce2ffb0
mov [ebx+4], eax ; EAX=0xce2ffb0
mov edi, [esi] ; [ESI]=0xb200100
mov esi, ds:__imp__vsnstr ; [597D6D4h]=0x65852148, "- Production"
push esi ; ESI=0x65852148, "- Production"
mov ebx, edi ; EDI=0xb200100
shr ebx, 18h ; EBX=0xb200100
mov ecx, edi ; EDI=0xb200100
shr ecx, 14h ; ECX=0xb200100
and ecx, 0Fh ; ECX=0xb2
mov edx, edi ; EDI=0xb200100
shr edx, 0Ch ; EDX=0xb200100
movzx edx, dl ; DL=0
mov eax, edi ; EDI=0xb200100
shr eax, 8 ; EAX=0xb200100
and eax, 0Fh ; EAX=0xb2001
and edi, 0FFh ; EDI=0xb200100
push edi ; EDI=0
mov edi, [ebp+arg_18] ; [EBP+20h]=0
push eax ; EAX=1
mov eax, ds:__imp__vsnban ; [597D6D8h]=0x65852100, "Oracle Database 11g
Enterprise Edition Release %d.%d.%d.%d.%d %s"
push edx ; EDX=0
push ecx ; ECX=2
push ebx ; EBX=0xb
mov ebx, [ebp+arg_8] ; [EBP+10h]=0xcdfe554
push eax ; EAX=0x65852100, "Oracle Database 11g Enterprise Edition
Release %d.%d.%d.%d.%d %s"
mov eax, [ebp+Dest] ; [EBP-10h]=0xce2ffb0
push eax ; EAX=0xce2ffb0
479
58.. V$VERSION 1/Bll ln 1nl 0k/Cll kuBMS Cn/l1lk 58. 0k/Cll kuBMS
call ds:__imp__sprintf ; op1=MSVCR80.dll!sprintf tracing nested maximum level (1)
reached, skipping this CALL
add esp, 38h
mov dword ptr [ebx], 1
loc_2CE1192: ; CODE XREF: _kqvrow_+FB
; _kqvrow_+128 ...
test edi, edi ; EDI=0
jnz __VInfreq__kqvrow
mov esi, [ebp+var_C] ; [EBP-0Ch]=0xcdfe248
mov edi, [ebp+var_4] ; [EBP-4]=0xc98c938
mov eax, ebx ; EBX=0xcdfe554
mov ebx, [ebp+var_8] ; [EBP-8]=0
lea eax, [eax+4] ; [EAX+4]=0xce2ffb0, "NLSRTL Version 11.2.0.1.0 - Production
", "Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production", "PL/SQL
Release 11.2.0.1.0 - Production", "TNS for 32-bit Windows: Version 11.2.0.1.0 -
Production"
loc_2CE11A8: ; CODE XREF: _kqvrow_+29E00F6
mov esp, ebp
pop ebp
retn ; EAX=0xcdfe558
loc_2CE11AC: ; DATA XREF: .rdata:0628B0A0
mov edx, [ebx+8] ; [EBX+8]=0xce2ffb0, "Oracle Database 11g Enterprise Edition
Release 11.2.0.1.0 - Production"
mov dword ptr [ebx], 2
mov [ebx+4], edx ; EDX=0xce2ffb0, "Oracle Database 11g Enterprise Edition
Release 11.2.0.1.0 - Production"
push edx ; EDX=0xce2ffb0, "Oracle Database 11g Enterprise Edition
Release 11.2.0.1.0 - Production"
call _kkxvsn ; tracing nested maximum level (1) reached, skipping this
CALL
pop ecx
mov edx, [ebx+4] ; [EBX+4]=0xce2ffb0, "PL/SQL Release 11.2.0.1.0 - Production"
movzx ecx, byte ptr [edx] ; [EDX]=0x50
test ecx, ecx ; ECX=0x50
jnz short loc_2CE1192
mov edx, [ebp+var_14]
mov esi, [ebp+var_C]
mov eax, ebx
mov ebx, [ebp+var_8]
mov ecx, [eax]
jmp loc_2CE10F6
loc_2CE11DB: ; DATA XREF: .rdata:0628B0A4
push 0
push 50h
mov edx, [ebx+8] ; [EBX+8]=0xce2ffb0, "PL/SQL Release 11.2.0.1.0 - Production"
mov [ebx+4], edx ; EDX=0xce2ffb0, "PL/SQL Release 11.2.0.1.0 - Production"
push edx ; EDX=0xce2ffb0, "PL/SQL Release 11.2.0.1.0 - Production"
call _lmxver ; tracing nested maximum level (1) reached, skipping this
CALL
add esp, 0Ch
mov dword ptr [ebx], 3
jmp short loc_2CE1192
loc_2CE11F6: ; DATA XREF: .rdata:0628B0A8
mov edx, [ebx+8] ; [EBX+8]=0xce2ffb0
mov [ebp+var_18], 50h
mov [ebx+4], edx ; EDX=0xce2ffb0
480
58.. V$VERSION 1/Bll ln 1nl 0k/Cll kuBMS Cn/l1lk 58. 0k/Cll kuBMS
push 0
call _npinli ; tracing nested maximum level (1) reached, skipping this
CALL
pop ecx
test eax, eax ; EAX=0
jnz loc_56C11DA
mov ecx, [ebp+var_14] ; [EBP-14h]=0xc98c938
lea edx, [ebp+var_18] ; [EBP-18h]=0x50
push edx ; EDX=0xd76c93c
push dword ptr [ebx+8] ; [EBX+8]=0xce2ffb0
push dword ptr [ecx+13278h] ; [ECX+13278h]=0xacce190
call _nrtnsvrs ; tracing nested maximum level (1) reached, skipping this
CALL
add esp, 0Ch
loc_2CE122B: ; CODE XREF: _kqvrow_+29E0118
mov dword ptr [ebx], 4
jmp loc_2CE1192
loc_2CE1236: ; DATA XREF: .rdata:0628B0AC
lea edx, [ebp+var_7C] ; [EBP-7Ch]=1
push edx ; EDX=0xd76c8d8
push 0
mov esi, [ebx+8] ; [EBX+8]=0xce2ffb0, "TNS for 32-bit Windows: Version
11.2.0.1.0 - Production"
mov [ebx+4], esi ; ESI=0xce2ffb0, "TNS for 32-bit Windows: Version 11.2.0.1.0
- Production"
mov ecx, 50h
mov [ebp+var_18], ecx ; ECX=0x50
push ecx ; ECX=0x50
push esi ; ESI=0xce2ffb0, "TNS for 32-bit Windows: Version 11.2.0.1.0
- Production"
call _lxvers ; tracing nested maximum level (1) reached, skipping this
CALL
add esp, 10h
mov edx, [ebp+var_18] ; [EBP-18h]=0x50
mov dword ptr [ebx], 5
test edx, edx ; EDX=0x50
jnz loc_2CE1192
mov edx, [ebp+var_14]
mov esi, [ebp+var_C]
mov eax, ebx
mov ebx, [ebp+var_8]
mov ecx, 5
jmp loc_2CE10F6
loc_2CE127A: ; DATA XREF: .rdata:0628B0B0
mov edx, [ebp+var_14] ; [EBP-14h]=0xc98c938
mov esi, [ebp+var_C] ; [EBP-0Ch]=0xcdfe248
mov edi, [ebp+var_4] ; [EBP-4]=0xc98c938
mov eax, ebx ; EBX=0xcdfe554
mov ebx, [ebp+var_8] ; [EBP-8]=0
loc_2CE1288: ; CODE XREF: _kqvrow_+1F
mov eax, [eax+8] ; [EAX+8]=0xce2ffb0, "NLSRTL Version 11.2.0.1.0 - Production"
test eax, eax ; EAX=0xce2ffb0, "NLSRTL Version 11.2.0.1.0 - Production"
jz short loc_2CE12A7
push offset aXKqvvsnBuffer ; "x$kqvvsn buffer"
push eax ; EAX=0xce2ffb0, "NLSRTL Version 11.2.0.1.0 - Production"
mov eax, [ebp+arg_C] ; [EBP+14h]=0x8a172b4
push eax ; EAX=0x8a172b4
481
58.2. X$KSMLRU 1/Bll ln 0k/Cll kuBMS Cn/l1lk 58. 0k/Cll kuBMS
push dword ptr [edx+10494h] ; [EDX+10494h]=0xc98cd58
call _kghfrf ; tracing nested maximum level (1) reached, skipping this
CALL
add esp, 10h
loc_2CE12A7: ; CODE XREF: _kqvrow_+1C1
xor eax, eax
mov esp, ebp
pop ebp
retn ; EAX=0
_kqvrow_ endp
Now it is easy to see that row number is passed from outside of function. The function returns the string constructing it
as follows:
String Using vsnstr, vsnnum, vsnban global variables. Calling sprintf().
String Calling kkxvsn().
String Calling lmxver().
String Calling npinli(), nrtnsvrs().
String Calling lxvers().
Thats how corresponding functions are called for determining each modules version.
$8.2 X$KSMLRU table in oracle Rb8H5
There is a mention of a special table in the u|cnos|n cnJ kesolv|n lrror 0k/-0403 on tle SlcreJ lool or 0tler Memory
lools jv|Jeoj jlu 46599.j note:
There is a fixedtable calledX$KSMLRUthat tracks allocations inthe sharedpool that cause other objects
inthe sharedpool tobe agedout. This fixedtable canbe usedtoidentify what is causing the large allocation.
If many objects are being periodically flushed from the shared pool then this will cause response time
problems and will likely cause library cache latch contention problems when the objects are reloaded into
the shared pool.
One unusual thing about the X$KSMLRU fixed table is that the contents of the fixed table are erased
whenever someone selects from the fixed table. This is done since the fixed table stores only the largest
allocations that haveoccurred. Thevalues arereset afer beingselectedsothat subsequent largeallocations
canbenotedevenif they werenot quiteas largeas others that occurredpreviously. Becauseof this resetting,
the output of selecting from this table should be carefully kept since it cannot be retrieved back afer the
query is issued.
However, as it can be easily checked, this tables contents is cleared each time table querying. Are we able to find why?
Lets back to tables we already know: kqftab and kqftap which were generated with oracle tables
http://yurichev.com/oracle_tables.html
482
58.3. V$TIMER 1/Bll ln 0k/Cll kuBMS Cn/l1lk 58. 0k/Cll kuBMS
kqftap_param.name=[KSMLRSES] ?: 0x17 0x0 0x0 0x0 0x4 0x4c 0x0
kqftap_param.name=[KSMLRADU] ?: 0x2 0x0 0x0 0x0 0x4 0x50 0x0
kqftap_param.name=[KSMLRNID] ?: 0x2 0x0 0x0 0x0 0x4 0x54 0x0
kqftap_param.name=[KSMLRNSD] ?: 0x2 0x0 0x0 0x0 0x4 0x58 0x0
kqftap_param.name=[KSMLRNCD] ?: 0x2 0x0 0x0 0x0 0x4 0x5c 0x0
kqftap_param.name=[KSMLRNED] ?: 0x2 0x0 0x0 0x0 0x4 0x60 0x0
kqftap_element.fn1=ksmlrs
kqftap_element.fn2=NULL
Indeed, with the tracer help it is easy to see this function is called each time we query the X$KSMLRU table.
Here we see a references to the ksmsplu_sp() and ksmsplu_jp() functions, each of themcall the ksmsplu() finally. At
the end of the ksmsplu() function we see a call to the memset():
Listing .: ksm.o
...
.text:00434C50 loc_434C50: ; DATA XREF: .rdata:off_5E50EA8
.text:00434C50 mov edx, [ebp-4]
.text:00434C53 mov [eax], esi
.text:00434C55 mov esi, [edi]
.text:00434C57 mov [eax+4], esi
.text:00434C5A mov [edi], eax
.text:00434C5C add edx, 1
.text:00434C5F mov [ebp-4], edx
.text:00434C62 jnz loc_434B7D
.text:00434C68 mov ecx, [ebp+14h]
.text:00434C6B mov ebx, [ebp-10h]
.text:00434C6E mov esi, [ebp-0Ch]
.text:00434C71 mov edi, [ebp-8]
.text:00434C74 lea eax, [ecx+8Ch]
.text:00434C7A push 370h ; Size
.text:00434C7F push 0 ; Val
.text:00434C81 push eax ; Dst
.text:00434C82 call __intel_fast_memset
.text:00434C87 add esp, 0Ch
.text:00434C8A mov esp, ebp
.text:00434C8C pop ebp
.text:00434C8D retn
.text:00434C8D _ksmsplu endp
Constructions like memset (block, 0, size) are ofen used just to zero memory block. What if we would take a risk,
block memset() call and see what will happen?
Lets run tracer with the following options: set breakpoint at 0x434C7A (the point where memset() arguments are to be
passed), thus, that tracer set programcounter EIP at this point to the point where passed to the memset() arguments are to
be cleared (at 0x434C8A) It can be said, we just simulate an unconditional jump from the address 0x434C7A to 0x434C8A.
tracer -a:oracle.exe bpx=oracle.exe!0x00434C7A,set(eip,0x00434C8A)
(Important: all these addresses are valid only for win-version of Oracle RDBMS .)
Indeed, now we can query X$KSMLRU table as many times as we want and it is not clearing anymore!
Do not try this at home ("MythBusters") Do not try this on your production servers.
It is probably not a very useful or desired systembehaviour, but as an experiment of locating piece of code we need, that
is perfectly suit our needs!
$8.8 V$TIMER table in oracle Rb8H5
V$TIMER is another f|xeJ v|ew, reflecting a rapidly changing value:
483
58.3. V$TIMER 1/Bll ln 0k/Cll kuBMS Cn/l1lk 58. 0k/Cll kuBMS
V$TIMER displays the elapsed time in hundredths of a second. Time is measured since the beginning of
the epoch, which is operating system specific, and wraps around to again whenever the value overflows
four bytes (roughly days).
(From Oracle RDBMS documentation
)
It is interesting the periods are diferent for Oracle for win and for Linux. Will we able to find a function generating this
value?
As we can see, this information is finally taken fromX$KSUTM table.
SQL> select * from V$FIXED_VIEW_DEFINITION where view_name=V$TIMER;
VIEW_NAME
------------------------------
VIEW_DEFINITION
--------------------------------------------------------------------------------
V$TIMER
select HSECS from GV$TIMER where inst_id = USERENV(Instance)
SQL> select * from V$FIXED_VIEW_DEFINITION where view_name=GV$TIMER;
VIEW_NAME
------------------------------
VIEW_DEFINITION
--------------------------------------------------------------------------------
GV$TIMER
select inst_id,ksutmtim from x$ksutm
Now we stuck in a small problem, there are no references to value generating function(s) in the tables kqftab/kqftap:
Listing .: Result of oracle tables
kqftab_element.name: [X$KSUTM] ?: [ksutm] 0x1 0x4 0x4 0x0 0xffffc09b 0x3
kqftap_param.name=[ADDR] ?: 0x10917 0x0 0x0 0x0 0x4 0x0 0x0
kqftap_param.name=[INDX] ?: 0x20b02 0x0 0x0 0x0 0x4 0x0 0x0
kqftap_param.name=[INST_ID] ?: 0xb02 0x0 0x0 0x0 0x4 0x0 0x0
kqftap_param.name=[KSUTMTIM] ?: 0x1302 0x0 0x0 0x0 0x4 0x0 0x1e
kqftap_element.fn1=NULL
kqftap_element.fn2=NULL
Lets try to find a string KSUTMTIM, and we find it in this function:
kqfd_DRN_ksutm_c proc near ; DATA XREF: .rodata:0805B4E8
arg_0 = dword ptr 8
arg_8 = dword ptr 10h
arg_C = dword ptr 14h
push ebp
mov ebp, esp
push [ebp+arg_C]
push offset ksugtm
push offset _2__STRING_1263_0 ; "KSUTMTIM"
push [ebp+arg_8]
push [ebp+arg_0]
call kqfd_cfui_drain
add esp, 14h
mov esp, ebp
pop ebp
http://docs.oracle.com/cd/B28359_01/server.111/b28320/dynviews_3104.htm
484
58.3. V$TIMER 1/Bll ln 0k/Cll kuBMS Cn/l1lk 58. 0k/Cll kuBMS
retn
kqfd_DRN_ksutm_c endp
The function kqfd_DRN_ksutm_c() is mentioned in kqfd_tab_registry_0 table:
dd offset _2__STRING_62_0 ; "X$KSUTM"
dd offset kqfd_OPN_ksutm_c
dd offset kqfd_tabl_fetch
dd 0
dd 0
dd offset kqfd_DRN_ksutm_c
There are is a function ksugtm() referenced here. Lets see whats in it (Linux x):
Listing .: ksu.o
ksugtm proc near
var_1C = byte ptr -1Ch
arg_4 = dword ptr 0Ch
push ebp
mov ebp, esp
sub esp, 1Ch
lea eax, [ebp+var_1C]
push eax
call slgcs
pop ecx
mov edx, [ebp+arg_4]
mov [edx], eax
mov eax, 4
mov esp, ebp
pop ebp
retn
ksugtm endp
Almost the same code in win-version.
Is this the function we are looking for? Lets see:
tracer -a:oracle.exe bpf=oracle.exe!_ksugtm,args:2,dump_args:0x4
Lets try again:
SQL> select * from V$TIMER;
HSECS
----------
27294929
SQL> select * from V$TIMER;
HSECS
----------
27295006
SQL> select * from V$TIMER;
HSECS
----------
27295167
Listing .: tracer output
TID=2428|(0) oracle.exe!_ksugtm (0x0, 0xd76c5f0) (called from oracle.exe!__VInfreq__qerfxFetch
+0xfad (0x56bb6d5))
485
58.3. V$TIMER 1/Bll ln 0k/Cll kuBMS Cn/l1lk 58. 0k/Cll kuBMS
Argument 2/2
0D76C5F0: 38 C9 "8. "
TID=2428|(0) oracle.exe!_ksugtm () -> 0x4 (0x4)
Argument 2/2 difference
00000000: D1 7C A0 01 ".|.. "
TID=2428|(0) oracle.exe!_ksugtm (0x0, 0xd76c5f0) (called from oracle.exe!__VInfreq__qerfxFetch
+0xfad (0x56bb6d5))
Argument 2/2
0D76C5F0: 38 C9 "8. "
TID=2428|(0) oracle.exe!_ksugtm () -> 0x4 (0x4)
Argument 2/2 difference
00000000: 1E 7D A0 01 ".}.. "
TID=2428|(0) oracle.exe!_ksugtm (0x0, 0xd76c5f0) (called from oracle.exe!__VInfreq__qerfxFetch
+0xfad (0x56bb6d5))
Argument 2/2
0D76C5F0: 38 C9 "8. "
TID=2428|(0) oracle.exe!_ksugtm () -> 0x4 (0x4)
Argument 2/2 difference
00000000: BF 7D A0 01 ".}.. "
Indeed the value is the same we see in SQL*Plus and it is returning via second argument.
Lets see what is in slgcs() (Linux x):
slgcs proc near
var_4 = dword ptr -4
arg_0 = dword ptr 8
push ebp
mov ebp, esp
push esi
mov [ebp+var_4], ebx
mov eax, [ebp+arg_0]
call $+5
pop ebx
nop ; PIC mode
mov ebx, offset _GLOBAL_OFFSET_TABLE_
mov dword ptr [eax], 0
call sltrgatime64 ; PIC mode
push 0
push 0Ah
push edx
push eax
call __udivdi3 ; PIC mode
mov ebx, [ebp+var_4]
add esp, 10h
mov esp, ebp
pop ebp
retn
slgcs endp
(it is just a call to sltrgatime64() and division of its result by ())
And win-version:
_slgcs proc near ; CODE XREF: _dbgefgHtElResetCount+15
; _dbgerRunActions+1528
db 66h
nop
push ebp
mov ebp, esp
mov eax, [ebp+8]
mov dword ptr [eax], 0
call ds:__imp__GetTickCount@0 ; GetTickCount()
486
58.3. V$TIMER 1/Bll ln 0k/Cll kuBMS Cn/l1lk 58. 0k/Cll kuBMS
mov edx, eax
mov eax, 0CCCCCCCDh
mul edx
shr edx, 3
mov eax, edx
mov esp, ebp
pop ebp
retn
_slgcs endp
It is just result of GetTickCount()
divided by ().
Voil! Thats why win-version and Linux x version showdiferent results, just because they are generated by diferent
OS functions.
urc|n apparently means connect|n specific table column to specific function.
I added the table kqfd_tab_registry_0 to oracle tables
http://msdn.microsoft.com/en-us/library/windows/desktop/ms724408(v=vs.85).aspx
http://yurichev.com/oracle_tables.html
487
Cn/l1lk 59. n/nuwkl11ln /SSlMBl\ C0ul
Cbapter $9
Randwritten assembly ccde
$9.1 lCAR test file
This .COM-file is intended for antivirus testing, it is possible to run in in MS-DOS and it will print string: EICAR-STANDARD-
ANTIVIRUS-TEST-FILE!
.
Its important property is that its entirely consisting of printable ASCII-symbols, which, in turn, makes possible to create
it in any text editor:
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
Lets decompile it:
; initial conditions: SP=0FFFEh, SS:[SP]=0
0100 58 pop ax
; AX=0, SP=0
0101 35 4F 21 xor ax, 214Fh
; AX = 214Fh and SP = 0
0104 50 push ax
; AX = 214Fh, SP = FFFEh and SS:[FFFE] = 214Fh
0105 25 40 41 and ax, 4140h
; AX = 140h, SP = FFFEh and SS:[FFFE] = 214Fh
0108 50 push ax
; AX = 140h, SP = FFFCh, SS:[FFFC] = 140h and SS:[FFFE] = 214Fh
0109 5B pop bx
; AX = 140h, BX = 140h, SP = FFFEh and SS:[FFFE] = 214Fh
010A 34 5C xor al, 5Ch
; AX = 11Ch, BX = 140h, SP = FFFEh and SS:[FFFE] = 214Fh
010C 50 push ax
010D 5A pop dx
; AX = 11Ch, BX = 140h, DX = 11Ch, SP = FFFEh and SS:[FFFE] = 214Fh
010E 58 pop ax
; AX = 214Fh, BX = 140h, DX = 11Ch and SP = 0
010F 35 34 28 xor ax, 2834h
; AX = 97Bh, BX = 140h, DX = 11Ch and SP = 0
0112 50 push ax
0113 5E pop si
; AX = 97Bh, BX = 140h, DX = 11Ch, SI = 97Bh and SP = 0
0114 29 37 sub [bx], si
0116 43 inc bx
0117 43 inc bx
0118 29 37 sub [bx], si
011A 7D 24 jge short near ptr word_10140
011C 45 49 43 ... db EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$
0140 48 2B word_10140 dw 2B48h ; CD 21 (INT 21) will be here
0142 48 2A dw 2A48h ; CD 20 (INT 20) will be here
0144 0D db 0Dh
0145 0A db 0Ah
{https://en.wikipedia.org/wiki/EICAR_test_file}
488
59.. llC/k 1lS1 llll Cn/l1lk 59. n/nuwkl11ln /SSlMBl\ C0ul
I added comments about registers and stack afer each instruction.
Essentially, all these instructions are here only to execute this code:
B4 09 MOV AH, 9
BA 1C 01 MOV DX, 11Ch
CD 21 INT 21h
CD 20 INT 20h
INT 21h with th function (passed in AH) just prints a string, address of which is passed in DS:DX. By the way, the string
should be terminated with $ sign. Apparently, its inherited fromCP/Mand this function was leaved in DOS for compatibility.
INT 20h exits to DOS.
But as we can see, these instructions opcodes are not strictly printable. So the main part of EICAR-file is:
preparing register (AH and DX) values we need;
preparing INT and INT opcodes in memory;
executing INT and INT .
By the way, this technique is widely used in shellcode constructing, when one need to pass x-code in the string form.
Here is also a list of all x instructions which has printable opcodes: B...
489
Cn/l1lk 60. ulM0S
Cbapter 80
bemcs
Demos (or demomaking) was anexcellent exercise inmathematics, computer graphics programming andvery tight xhand
coding.
80.1 10 RlN1 CRR$(20$.$+RNb(1)), : 6o1o 10
All examples here are MS-DOS .COM files.
In [] we can read about one of the most simplest possible random maze generators. It just prints slash or backslash
character randomly and endlessly, resulting something like:
There are some known implementations for -bit x.
80.1.1 1rixters 42 byte versicn
The listing taken from his website
http://trixter.oldskool.org/2012/12/17/maze-generation-in-thirteen-bytes/
490
60.. 0 lkln1 Cnk$(205.5+knu(;;, . o010 0 Cn/l1lk 60. ulM0S
; read 16-bit value from port 40h
0000000F: E440 in al,040
00000011: 88C4 mov ah,al
00000013: E440 in al,040
00000015: 9D popf ; enable interrupts by restoring IF flag
00000016: 86C4 xchg ah,al
; here we have 16-bit pseudorandom value
00000018: D1E8 shr ax,1
0000001A: D1E8 shr ax,1
; CF currently have second bit from the value
0000001C: B05C mov al,05C ;\
; if CF=1, skip the next instruction
0000001E: 7202 jc 000000022
; if CF=0, reload AL register with another character
00000020: B02F mov al,02F ;/
; output character
00000022: B40E mov ah,00E
00000024: CD10 int 010
00000026: E2E1 loop 000000009 ; loop 2000 times
00000028: CD20 int 020 ; exit to DOS
Pseudo-randomvalue here is infact the time passedfromthe systemboot, takenfrom time chip, the value increases
by one . times per second.
By writing zero to port 43h, we mean the command is "select counter ", "counter latch", "binary counter" (not BCD
value).
Interrupts enabled back with POPF instruction, which restores IF flag as well.
It is not possible to use IN instruction with other registers instead of AL, hence that shufling.
80.1.2 Hy attempt tc reduce 1rixters versicn: 27 bytes
We can say that since we use timer not to get precise time value, but pseudo-random one, so we may not spent time (and
code) to disable interrupts. Another thing we might say that we need only bit from a low -bit part, so lets read only it.
I reduced the code slightly and Ive got bytes:
00000000: B9D007 mov cx,007D0 ; limit output to 2000 characters
00000003: 31C0 xor ax,ax ; command to timer chip
00000005: E643 out 043,al
00000007: E440 in al,040 ; read 8-bit of timer
00000009: D1E8 shr ax,1 ; get second bit to CF flag
0000000B: D1E8 shr ax,1
0000000D: B05C mov al,05C ; prepare \
0000000F: 7202 jc 000000013
00000011: B02F mov al,02F ; prepare /
; output character to screen
00000013: B40E mov ah,00E
00000015: CD10 int 010
00000017: E2EA loop 000000003
; exit to DOS
00000019: CD20 int 020
80.1.8 1ake a randcmmemcry arbae as a scurce cf randcmness
Since it is MS-DOS, there are no memory protection at all, we can read from whatever address. Even more than that: simple
LODSB instruction will read byte from DS:SI address, but its not a problem if register values are not setted up, let it read )
random bytes; ) from random memory place!
So it is suggested in Trixter webpage
Binary-coded decimal
http://trixter.oldskool.org/2012/12/17/maze-generation-in-thirteen-bytes/
491
60.. 0 lkln1 Cnk$(205.5+knu(;;, . o010 0 Cn/l1lk 60. ulM0S
That is what Peter Ferrie and Andrey hermt Baranovich did ( and bytes)
:
Listing .: Andrey hermt Baranovich: bytes
00000000: B05C mov al,05C ;\
; read AL byte from random place of memory
00000002: AE scasb
; PF = parity(AL - random_memory_byte) = parity(5Ch - random_memory_byte)
00000003: 7A02 jp 000000007
00000005: B02F mov al,02F ;/
00000007: CD29 int 029 ; output AL to screen
00000009: EBF5 jmp 000000000 ; loop endlessly
SCASBalsouse value inALregister, it subtract randommemory byte value from5Chvalue inAL. JPis rare instruction, here
it used for checking parity flag (PF), which is generated by the formulae in the listing. As a consequence, the output character
is determined not by some bit in random memory byte, but by sum of bits, this (hoperfully) makes result more distributed.
It is possible to make this even shorter by using undocumented x instruction SALC (AKA SETALC) (Set AL CF). It was
introduced in NEC V CPU and sets AL to 0xFF if CF is or to if otherwise. So this code will not run on /.
Listing .: Peter Ferrie: bytes
; AL is random at this point
00000000: AE scasb
; CF is set accoring subtracting random memory byte from AL.
; so it is somewhat random at this point
00000001: D6 setalc
; AL is set to 0xFF if CF=1 or to 0 if otherwise
00000002: 242D and al,02D ;-
; AL here is 0x2D or 0
00000004: 042F add al,02F ;/
; AL here is 0x5C or 0x2F
00000006: CD29 int 029 ; output AL to screen
00000008: EBF6 jmps 000000000 ; loop endlessly
So it is possible to get rid of conditional jumps at all. The ASCII
http://pferrie.host22.com/misc/10print.htm
Cn/l1lk 6. nl/u
Cbapter 81
npad
It is an assembly language macro for label aligning by a specific border.
Thats ofenneedfor thebusy labels towherecontrol flowis ofenpassed, e.g., loopbody begin. SotheCPUwill efectively
load data or code from the memory, through memory bus, cache lines, etc.
Taken fromlisting.inc (MSVC):
By the way, it is curious example of diferent NOP variations. All these instructions has no efects whatsoever, but has
diferent size.
;; LISTING.INC
;;
;; This file contains assembler macros and is included by the files created
;; with the -FA compiler switch to be assembled by MASM (Microsoft Macro
;; Assembler).
;;
;; Copyright (c) 1993-2003, Microsoft Corporation. All rights reserved.
;; non destructive nops
npad macro size
if size eq 1
nop
else
if size eq 2
mov edi, edi
else
if size eq 3
; lea ecx, [ecx+00]
DB 8DH, 49H, 00H
else
if size eq 4
; lea esp, [esp+00]
DB 8DH, 64H, 24H, 00H
else
if size eq 5
add eax, DWORD PTR 0
else
if size eq 6
; lea ebx, [ebx+00000000]
DB 8DH, 9BH, 00H, 00H, 00H, 00H
else
if size eq 7
; lea esp, [esp+00000000]
DB 8DH, 0A4H, 24H, 00H, 00H, 00H, 00H
else
if size eq 8
; jmp .+8; .npad 6
DB 0EBH, 06H, 8DH, 9BH, 00H, 00H, 00H, 00H
else
if size eq 9
494
Cn/l1lk 6. nl/u
; jmp .+9; .npad 7
DB 0EBH, 07H, 8DH, 0A4H, 24H, 00H, 00H, 00H, 00H
else
if size eq 10
; jmp .+A; .npad 7; .npad 1
DB 0EBH, 08H, 8DH, 0A4H, 24H, 00H, 00H, 00H, 00H, 90H
else
if size eq 11
; jmp .+B; .npad 7; .npad 2
DB 0EBH, 09H, 8DH, 0A4H, 24H, 00H, 00H, 00H, 00H, 8BH, 0FFH
else
if size eq 12
; jmp .+C; .npad 7; .npad 3
DB 0EBH, 0AH, 8DH, 0A4H, 24H, 00H, 00H, 00H, 00H, 8DH, 49H, 00H
else
if size eq 13
; jmp .+D; .npad 7; .npad 4
DB 0EBH, 0BH, 8DH, 0A4H, 24H, 00H, 00H, 00H, 00H, 8DH, 64H, 24H, 00H
else
if size eq 14
; jmp .+E; .npad 7; .npad 5
DB 0EBH, 0CH, 8DH, 0A4H, 24H, 00H, 00H, 00H, 00H, 05H, 00H, 00H, 00H, 00H
else
if size eq 15
; jmp .+F; .npad 7; .npad 6
DB 0EBH, 0DH, 8DH, 0A4H, 24H, 00H, 00H, 00H, 00H, 8DH, 9BH, 00H, 00H, 00H, 00H
else
%out error: unsupported npad size
.err
endif
endif
endif
endif
endif
endif
endif
endif
endif
endif
endif
endif
endif
endif
endif
endm
495
Cn/l1lk 62. l\lCu1/Bll llllS l/1Cnlno
Cbapter 82
xecutable files patcbin
82.1 1ext strins
C strings are most easily patched (unless they are encrypted) in any hex editor. This technique available even for those who
are not aware of machine code and executabe file formats. New string should not be bigger than old, because its a risk to
overwrite some other value or code there. Using this method, a lot of sofware was loccl|zeJ in MS-DOS era, at least in ex-
USSRcountries in s and s. It was a reason why so weird abbreviations was present in loccl|zeJ sofware: it was no room
for longer strings.
As of Delphi strings, a string size should also be corrected, if needed.
82.2 x88 ccde
Frequent patching tasks are:
One of the most frequently job is to disable some instruction. It is ofen done by filling it by byte 0x90 (NOP).
Conditional jumps, which have opcode like 74 xx (JZ), may also be filled by two NOPs. It is also possible to disable
conditional jump by writing at the second byte (jom ofset).
Another frequent jobis tomake conditional jumptotrigger always: this canbe done by writing 0xEB insteadof opcode,
it mean JMP.
A function execution can be disabled by writing RETN (xC) at its beginning. This is true for all functions excluding
stdcall (.). While patching stdcall functions, one should determine number of arguments (for example, by find-
ing RETN in this function), and use RETN with -bit argument (xC).
Sometimes, a disabled functions should return or . This can be done by MOV EAX, 0 or MOV EAX, 1, but its slightly
verbose. Better way is XOR EAX, EAX ( bytes) or XOR EAX, EAX / INC EAX ( bytes).
A sofware may be protected against modifications. This protection is ofen done by reading executable code and doing
some checksumming. Therefore, the code should be read before protection will be triggered. This can be determined by
setting breakpoint on reading memory.
tracer has BPM option for this.
PE executable file relocs (..) should not be touched while patching, because Windows loader will overwrite a new
code. (They are grayed in Hiew, for example: fig. .). As a last resort, it is possible to write jumps circumventing relocs, or
one will need to edit relocs table.
496
Cn/l1lk 63. C0Mllllk ln1klnSlC
Cbapter 88
Ccmpiler intrinsic
A function specific to a compiler which is not usual library function. Compiler generate a specific machine code instead of
call to it. It is ofen a pseudofunction for specific CPU instruction.
For example, there are no cyclic shif operations in C/C++ languages, but present in most CPUs. For programmers conve-
nience, at least MSVC has pseudofunctions _rotl(; and _rotr(;
http://msdn.microsoft.com/en-us/library/5cc576c4.aspx
497
Cn/l1lk 64. C0MllllkS /n0M/lllS
Cbapter 84
Ccmpilers ancmalies
Intel C++., whichwas usedfor OracleRDBMS.Linuxcompilation, may emit twoJZinrow, andtherearenoreferences
to the second JZ. Second JZ is thus senseless.
Listing .: kdli.o from libserver.a
.text:08114CF1 loc_8114CF1: ; CODE XREF: __PGOSF539_kdlimemSer+89A
.text:08114CF1 ; __PGOSF539_kdlimemSer+3994
.text:08114CF1 8B 45 08 mov eax, [ebp+arg_0]
.text:08114CF4 0F B6 50 14 movzx edx, byte ptr [eax+14h]
.text:08114CF8 F6 C2 01 test dl, 1
.text:08114CFB 0F 85 17 08 00 00 jnz loc_8115518
.text:08114D01 85 C9 test ecx, ecx
.text:08114D03 0F 84 8A 00 00 00 jz loc_8114D93
.text:08114D09 0F 84 09 08 00 00 jz loc_8115518
.text:08114D0F 8B 53 08 mov edx, [ebx+8]
.text:08114D12 89 55 FC mov [ebp+var_4], edx
.text:08114D15 31 C0 xor eax, eax
.text:08114D17 89 45 F4 mov [ebp+var_C], eax
.text:08114D1A 50 push eax
.text:08114D1B 52 push edx
.text:08114D1C E8 03 54 00 00 call len2nbytes
.text:08114D21 83 C4 08 add esp, 8
Listing .: from the same code
.text:0811A2A5 loc_811A2A5: ; CODE XREF: kdliSerLengths+11C
.text:0811A2A5 ; kdliSerLengths+1C1
.text:0811A2A5 8B 7D 08 mov edi, [ebp+arg_0]
.text:0811A2A8 8B 7F 10 mov edi, [edi+10h]
.text:0811A2AB 0F B6 57 14 movzx edx, byte ptr [edi+14h]
.text:0811A2AF F6 C2 01 test dl, 1
.text:0811A2B2 75 3E jnz short loc_811A2F2
.text:0811A2B4 83 E0 01 and eax, 1
.text:0811A2B7 74 1F jz short loc_811A2D8
.text:0811A2B9 74 37 jz short loc_811A2F2
.text:0811A2BB 6A 00 push 0
.text:0811A2BD FF 71 08 push dword ptr [ecx+8]
.text:0811A2C0 E8 5F FE FF FF call len2nbytes
It is probably code generator bug was not found by tests, because, resulting code is working correctly anyway.
Another compiler anomaly I described here (..).
I demonstrate such cases here, so to understand that such compilers errors are possible and sometimes one should not
to rack ones brain and think why compiler generated such strange code.
498
Cn/l1lk 65. 0llnMl
Cbapter 8$
openH
OpenMP is one of the simplest ways to parallelize simple algorithm.
As an example, lets try to build a programto compute cryptographic nonce. In my simplistic example, nonce is a number
added to the plain unencrypted text in order to produce hash with some specific feature. For example, at some step, Bitcoin
protocol require to find a such nonce so resulting hash will contain specific number of running zeroes. This is also called
proof of work
(i.e., system prove it did some intensive calculations and spent some time for it).
My example is not relatedto Bitcoin, it will try to adda numbers to the hello, world!_ string inorder to findsuch number
when hello, world!_<number> will contain at least zero bytes afer hashing this string by SHA algorithm.
Lets limit our brute-force to the interval in ..INT_MAX- (i.e., 0x7FFFFFFE or ).
The algorithm is pretty straightforward:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include "sha512.h"
int found=0;
int32_t checked=0;
int32_t* __min;
int32_t* __max;
time_t start;
#ifdef __GNUC__
#define min(X,Y) ((X) < (Y) ? (X) : (Y))
#define max(X,Y) ((X) > (Y) ? (X) : (Y))
#endif
void check_nonce (int32_t nonce)
{
uint8_t buf[32];
struct sha512_ctx ctx;
uint8_t res[64];
// update statistics
int t=omp_get_thread_num();
if (__min[t]==-1)
__min[t]=nonce;
if (__max[t]==-1)
__max[t]=nonce;
__min[t]=min(__min[t], nonce);
__max[t]=max(__max[t], nonce);
https://en.wikipedia.org/wiki/Proof-of-work_system
499
Cn/l1lk 65. 0llnMl
// idle if valid nonce found
if (found)
return;
memset (buf, 0, sizeof(buf));
sprintf (buf, "hello, world!_%d", nonce);
sha512_init_ctx (&ctx);
sha512_process_bytes (buf, strlen(buf), &ctx);
sha512_finish_ctx (&ctx, &res);
if (res[0]==0 && res[1]==0 && res[2]==0)
{
printf ("found (thread %d): [%s]. seconds spent=%d\n", t, buf, time(NULL)-start
);
found=1;
};
#pragma omp atomic
checked++;
#pragma omp critical
if ((checked % 100000)==0)
printf ("checked=%d\n", checked);
};
int main()
{
int32_t i;
int threads=omp_get_max_threads();
printf ("threads=%d\n", threads);
__min=(int32_t*)malloc(threads*sizeof(int32_t));
__max=(int32_t*)malloc(threads*sizeof(int32_t));
for (i=0; i<threads; i++)
__min[i]=__max[i]=-1;
start=time(NULL);
#pragma omp parallel for
for (i=0; i<INT32_MAX; i++)
check_nonce (i);
for (i=0; i<threads; i++)
printf ("__min[%d]=0x%08x __max[%d]=0x%08x\n", i, __min[i], i, __max[i]);
free(__min); free(__max);
};
check_nonce() function is just add a number to the string, hashes it by SHA and checks for zero bytes in the result.
Very important part of the code is:
#pragma omp parallel for
for (i=0; i<INT32_MAX; i++)
check_nonce (i);
Yes, that simple, without #pragma we just call check_nonce() for each number from to INT32_MAX (0x7fffffff or
). With #pragma, a compiler adds a special code which will slice the loop interval to smaller intervals, to run them
by all CPU cores available
.
The example may be compiled
in MSVC :
N.B.: I intentionally demonstrate here simplest possible example, but in practice, usage of OpenMP may be harder and more complex
sha.(c|h) and u.h files can be taken from the OpenSSL library: http://www.openssl.org/source/
500
65.. MSvC Cn/l1lk 65. 0llnMl
cl openmp_example.c sha512.obj /openmp /O1 /Zi /Faopenmp_example.asm
Or in GCC:
gcc -fopenmp 2.c sha512.c -S -masm=intel
8$.1 H5vC
Now thats how MSVC generates main loop:
Listing .: MSVC
push OFFSET _main$omp$1
push 0
push 1
call __vcomp_fork
add esp, 16 ; 00000010H
All functions prefixed by vcomp are OpenMP-related and stored in the vcomp*.dll file. So here is a group of threads are
started.
Lets take a look on _main$omp$1:
Listing .: MSVC
$T1 = -8 ; size = 4
$T2 = -4 ; size = 4
_main$omp$1 PROC ; COMDAT
push ebp
mov ebp, esp
push ecx
push ecx
push esi
lea eax, DWORD PTR $T2[ebp]
push eax
lea eax, DWORD PTR $T1[ebp]
push eax
push 1
push 1
push 2147483646 ; 7ffffffeH
push 0
call __vcomp_for_static_simple_init
mov esi, DWORD PTR $T1[ebp]
add esp, 24 ; 00000018H
jmp SHORT $LN6@main$omp$1
$LL2@main$omp$1:
push esi
call _check_nonce
pop ecx
inc esi
$LN6@main$omp$1:
cmp esi, DWORD PTR $T2[ebp]
jle SHORT $LL2@main$omp$1
call __vcomp_for_static_end
pop esi
leave
ret 0
_main$omp$1 ENDP
This function will be started n times in parallel, where n is number of CPUcores. vcomp_for_static_simple_init() is
calculating interval for the for() construct for the current thread, depending on the current thread number. Loop begin and
end values are stored in $T1 and $T2 local variables. You may also notice 7ffffffeh (or ) as an argument to the
vcomp_for_static_simple_init() functionthis is a number of iterations of the whole loop to by divided evenly.
501
65.. MSvC Cn/l1lk 65. 0llnMl
Then we see a new loop with a call to check_nonce() function which do all work.
I also added some code in the beginning of check_nonce() function to gather statistics, with which arguments the func-
tion was called.
This is what we see while run it:
threads=4
...
checked=2800000
checked=3000000
checked=3200000
checked=3300000
found (thread 3): [hello, world!_1611446522]. seconds spent=3
__min[0]=0x00000000 __max[0]=0x1fffffff
__min[1]=0x20000000 __max[1]=0x3fffffff
__min[2]=0x40000000 __max[2]=0x5fffffff
__min[3]=0x60000000 __max[3]=0x7ffffffe
Yes, result is correct, first bytes are zeroes:
C:\...\sha512sum test
000000
f4a8fac5a4ed38794da4c1e39f54279ad5d9bb3c5465cdf57adaf60403df6e3fe6019f5764fc9975e505a7395fed78
0fee50eb38dd4c0279cb114672e2 *test
Running time is 2..3 seconds on my -core Intel Xeon E- . GHz. In the task manager I see threads: main
thread + more started. I did not any further optimizations to keep my example as small and clear as possible. But probably
it can be done much faster. My CPU has cores, that is why OpenMP started exactly threads.
By looking at the statistics table we can clearly see howloop was finely sliced by even parts. Oh well, almost even, if not
to consider the last bit.
There are also pragmas for atomic operations.
Lets see how this code is compiled:
#pragma omp atomic
checked++;
#pragma omp critical
if ((checked % 100000)==0)
printf ("checked=%d\n", checked);
Listing .: MSVC
push edi
push OFFSET _checked
call __vcomp_atomic_add_i4
; Line 55
push OFFSET _$vcomp$critsect$
call __vcomp_enter_critsect
add esp, 12 ; 0000000cH
; Line 56
mov ecx, DWORD PTR _checked
mov eax, ecx
cdq
mov esi, 100000 ; 000186a0H
idiv esi
test edx, edx
jne SHORT $LN1@check_nonc
; Line 57
push ecx
push OFFSET ??_C@_0M@NPNHLIOO@checked?$DN?$CFd?6?$AA@
call _printf
pop ecx
pop ecx
502
65.2. oCC Cn/l1lk 65. 0llnMl
$LN1@check_nonc:
push DWORD PTR _$vcomp$critsect$
call __vcomp_leave_critsect
pop ecx
As it turns out, vcomp_atomic_add_i4() function in the vcomp*.dll is just a a tiny function having LOCK XADD instruc-
tion
.
vcomp_enter_critsect() eventually calling win API function EnterCriticalSection()
.
8$.2 6CC
GCC .. produces the program which shows exactly the same statistics table, so, GCC implementation divides the loop by
parts in the same fashion.
Listing .: GCC ..
mov edi, OFFSET FLAT:main._omp_fn.0
call GOMP_parallel_start
mov edi, 0
call main._omp_fn.0
call GOMP_parallel_end
Unlike MSVC implementation, what GCC code is doing is starting threads, but also runs fourth in the current thread. So
there will be threads instead of as in MSVC.
Here is a main._omp_fn.0 function:
Listing .: GCC ..
main._omp_fn.0:
push rbp
mov rbp, rsp
push rbx
sub rsp, 40
mov QWORD PTR [rbp-40], rdi
call omp_get_num_threads
mov ebx, eax
call omp_get_thread_num
mov esi, eax
mov eax, 2147483647 ; 0x7FFFFFFF
cdq
idiv ebx
mov ecx, eax
mov eax, 2147483647 ; 0x7FFFFFFF
cdq
idiv ebx
mov eax, edx
cmp esi, eax
jl .L15
.L18:
imul esi, ecx
mov edx, esi
add eax, edx
lea ebx, [rax+rcx]
cmp eax, ebx
jge .L14
mov DWORD PTR [rbp-20], eax
.L17:
mov eax, DWORD PTR [rbp-20]
mov edi, eax
call check_nonce
Out-of-order execution
, VGA
) video RAM window on old IBM PC-compatibles has size of KB. For accessing it, a
xA value should be stored in one of segment registers, e.g. into DS. Then DS: will address the very first byte of video
RAM and DS:xFFFF is the very last byte of RAM. The real address on -bit address bus, however, will range from xA
to xAFFFF.
The programmay contain hardcoded addresses like x, but OS may need to load programon arbitrary addresses, so
it recalculates segment register values in such a way, so the program will not care about where in the RAM it is placed.
So, any pointer it old MS-DOS environment was in fact consisted of segment address and the address inside segment,
i.e., two -bit values. -bit was enough for that, though, but one will need to recalculate the addresses very ofen: passing
more information on stack is seems better space/convenience balance.
By the way, because of all this, it was not possible to allocate the memory block larger than KB.
Segment registers were reused at as selectors, serving diferent function.
When CPU and computers with bigger RAM were introduced, MS-DOS was still popular, so the DOS extenders are
emerged: these were infact a steptowardserious OS, switching CPUintoprotectedmode andproviding muchbetter mem-
ory APIs for the programs which still needs to be runned from MS-DOS. Widely popular examples include DOS/GW (DOOM
video game was compiled for it), Phar Lap, PMODE.
By the way, the same was of addressing memory was in -bit line of Windows .x, before Win.
Read-only memory
-related subreddits on reddit.com: ReverseEngineering and REMath (for the topics on the inter-
section of RE and mathematics).
There are also RE part of Stack Exchange website:
http://reverseengineering.stackexchange.com/.
Reverse Engineering
514
art lk
xercises
There are two questions almost for every exercise, if otherwise is not specified:
) What this function does? Answer in one-sentence form.
) Rewrite this function into C/C++.
It is allowed to use Google to search for any leads. However, if you like to make your task harder, you may try to solve it
without Google.
Hints and solutions are in the appendix of this book.
516
Cn/l1lk 72. llvll
Cbapter 72
Level 1
Level exercises are ones you may try to solve in mind.
72.1 xercise 1.1
72.1.1 H5vC 2012 x84 + /Ox
a$ = 8
b$ = 16
f PROC
cmp ecx, edx
cmovg edx, ecx
mov eax, edx
ret 0
f ENDP
72.1.2 Keil (ARH)
CMP r0,r1
MOVLE r0,r1
BX lr
72.1.8 Keil (tbumb)
CMP r0,r1
BGT |L0.6|
MOVS r0,r1
|L0.6|
BX lr
72.2 xercise 1.2
Why LOOP instruction is not used by compilers anymore?
72.8 xercise 1.8
Take an loop example from Loops section (), compile it in your favorite OS and compiler and modify (patch) executable
file, so the loop range will be [..].
517
72.4. l\lkClSl .4 Cn/l1lk 72. llvll
72.4 xercise 1.4
This program requires password. Find it.
As an additional exercise, try to change the password by patching executable file. It may also has a diferent length.
Try also to crash the program using only string input.
win: http://yurichev.com/RE-exercises/1/4/password1.exe
Linux x: http://yurichev.com/RE-exercises/1/4/password1_Linux_x86.tar
Mac OS X: http://yurichev.com/RE-exercises/1/4/password1_MacOSX64.tar
518
Cn/l1lk 73. llvll 2
Cbapter 78
Level 2
For solving exercises of level , you probably will need text editor or paper with pencil.
78.1 xercise 2.1
This is standard C library function. Source code taken from OpenWatcom.
78.1.1 H5vC 2010
_TEXT SEGMENT
_input$ = 8 ; size = 1
_f PROC
push ebp
mov ebp, esp
movsx eax, BYTE PTR _input$[ebp]
cmp eax, 97 ; 00000061H
jl SHORT $LN1@f
movsx ecx, BYTE PTR _input$[ebp]
cmp ecx, 122 ; 0000007aH
jg SHORT $LN1@f
movsx edx, BYTE PTR _input$[ebp]
sub edx, 32 ; 00000020H
mov BYTE PTR _input$[ebp], dl
$LN1@f:
mov al, BYTE PTR _input$[ebp]
pop ebp
ret 0
_f ENDP
_TEXT ENDS
78.1.2 6CC 4.4.1 + -O3
_f proc near
input = dword ptr 8
push ebp
mov ebp, esp
movzx eax, byte ptr [ebp+input]
lea edx, [eax-61h]
cmp dl, 19h
ja short loc_80483F2
sub eax, 20h
519
73.2. l\lkClSl 2.2 Cn/l1lk 73. llvll 2
loc_80483F2:
pop ebp
retn
_f endp
78.1.8 Keil (ARH) + -O3
SUB r1,r0,#0x61
CMP r1,#0x19
SUBLS r0,r0,#0x20
ANDLS r0,r0,#0xff
BX lr
78.1.4 Keil (tbumb) + -O3
MOVS r1,r0
SUBS r1,r1,#0x61
CMP r1,#0x19
BHI |L0.14|
SUBS r0,r0,#0x20
LSLS r0,r0,#24
LSRS r0,r0,#24
|L0.14|
BX lr
78.2 xercise 2.2
. This is also standard C library function. Source code is taken from OpenWatcom and modified slightly.
This function also use these standard C functions: isspace() and isdigit().
78.2.1 H5vC 2010 + /Ox
EXTRN _isdigit:PROC
EXTRN _isspace:PROC
EXTRN ___ptr_check:PROC
; Function compile flags: /Ogtpy
_TEXT SEGMENT
_p$ = 8 ; size = 4
_f PROC
push ebx
push esi
mov esi, DWORD PTR _p$[esp+4]
push edi
push 0
push esi
call ___ptr_check
mov eax, DWORD PTR [esi]
push eax
call _isspace
add esp, 12 ; 0000000cH
test eax, eax
je SHORT $LN6@f
npad 2
$LL7@f:
mov ecx, DWORD PTR [esi+4]
add esi, 4
520
73.2. l\lkClSl 2.2 Cn/l1lk 73. llvll 2
push ecx
call _isspace
add esp, 4
test eax, eax
jne SHORT $LL7@f
$LN6@f:
mov bl, BYTE PTR [esi]
cmp bl, 43 ; 0000002bH
je SHORT $LN4@f
cmp bl, 45 ; 0000002dH
jne SHORT $LN5@f
$LN4@f:
add esi, 4
$LN5@f:
mov edx, DWORD PTR [esi]
push edx
xor edi, edi
call _isdigit
add esp, 4
test eax, eax
je SHORT $LN2@f
$LL3@f:
mov ecx, DWORD PTR [esi]
mov edx, DWORD PTR [esi+4]
add esi, 4
lea eax, DWORD PTR [edi+edi*4]
push edx
lea edi, DWORD PTR [ecx+eax*2-48]
call _isdigit
add esp, 4
test eax, eax
jne SHORT $LL3@f
$LN2@f:
cmp bl, 45 ; 0000002dH
jne SHORT $LN14@f
neg edi
$LN14@f:
mov eax, edi
pop edi
pop esi
pop ebx
ret 0
_f ENDP
_TEXT ENDS
78.2.2 6CC 4.4.1
This exercise is slightly harder since GCC compiled isspace() and isdigit() functions as inline-functions and inserted their bod-
ies right into the code.
_f proc near
var_10 = dword ptr -10h
var_9 = byte ptr -9
input = dword ptr 8
push ebp
mov ebp, esp
sub esp, 18h
jmp short loc_8048410
loc_804840C:
521
73.2. l\lkClSl 2.2 Cn/l1lk 73. llvll 2
add [ebp+input], 4
loc_8048410:
call ___ctype_b_loc
mov edx, [eax]
mov eax, [ebp+input]
mov eax, [eax]
add eax, eax
lea eax, [edx+eax]
movzx eax, word ptr [eax]
movzx eax, ax
and eax, 2000h
test eax, eax
jnz short loc_804840C
mov eax, [ebp+input]
mov eax, [eax]
mov [ebp+var_9], al
cmp [ebp+var_9], +
jz short loc_8048444
cmp [ebp+var_9], -
jnz short loc_8048448
loc_8048444:
add [ebp+input], 4
loc_8048448:
mov [ebp+var_10], 0
jmp short loc_8048471
loc_8048451:
mov edx, [ebp+var_10]
mov eax, edx
shl eax, 2
add eax, edx
add eax, eax
mov edx, eax
mov eax, [ebp+input]
mov eax, [eax]
lea eax, [edx+eax]
sub eax, 30h
mov [ebp+var_10], eax
add [ebp+input], 4
loc_8048471:
call ___ctype_b_loc
mov edx, [eax]
mov eax, [ebp+input]
mov eax, [eax]
add eax, eax
lea eax, [edx+eax]
movzx eax, word ptr [eax]
movzx eax, ax
and eax, 800h
test eax, eax
jnz short loc_8048451
cmp [ebp+var_9], 2Dh
jnz short loc_804849A
neg [ebp+var_10]
loc_804849A:
mov eax, [ebp+var_10]
522
73.2. l\lkClSl 2.2 Cn/l1lk 73. llvll 2
leave
retn
_f endp
78.2.8 Keil (ARH) + -O3
PUSH {r4,lr}
MOV r4,r0
BL __rt_ctype_table
LDR r2,[r0,#0]
|L0.16|
LDR r0,[r4,#0]
LDRB r0,[r2,r0]
TST r0,#1
ADDNE r4,r4,#4
BNE |L0.16|
LDRB r1,[r4,#0]
MOV r0,#0
CMP r1,#0x2b
CMPNE r1,#0x2d
ADDEQ r4,r4,#4
B |L0.76|
|L0.60|
ADD r0,r0,r0,LSL #2
ADD r0,r3,r0,LSL #1
SUB r0,r0,#0x30
ADD r4,r4,#4
|L0.76|
LDR r3,[r4,#0]
LDRB r12,[r2,r3]
CMP r12,#0x20
BEQ |L0.60|
CMP r1,#0x2d
RSBEQ r0,r0,#0
POP {r4,pc}
78.2.4 Keil (tbumb) + -O3
PUSH {r4-r6,lr}
MOVS r4,r0
BL __rt_ctype_table
LDR r2,[r0,#0]
B |L0.14|
|L0.12|
ADDS r4,r4,#4
|L0.14|
LDR r0,[r4,#0]
LDRB r0,[r2,r0]
LSLS r0,r0,#31
BNE |L0.12|
LDRB r1,[r4,#0]
CMP r1,#0x2b
BEQ |L0.32|
CMP r1,#0x2d
BNE |L0.34|
|L0.32|
ADDS r4,r4,#4
|L0.34|
523
73.3. l\lkClSl 2.3 Cn/l1lk 73. llvll 2
MOVS r0,#0
B |L0.48|
|L0.38|
MOVS r5,#0xa
MULS r0,r5,r0
ADDS r4,r4,#4
SUBS r0,r0,#0x30
ADDS r0,r3,r0
|L0.48|
LDR r3,[r4,#0]
LDRB r5,[r2,r3]
CMP r5,#0x20
BEQ |L0.38|
CMP r1,#0x2d
BNE |L0.62|
RSBS r0,r0,#0
|L0.62|
POP {r4-r6,pc}
78.8 xercise 2.8
This is standard C function too, actually, two functions working in pair. Source code taken from MSVC and modified
slightly.
The matter of modification is that this function can work properly in multi-threaded environment, and I removed its
support for simplification (or for confusion).
78.8.1 H5vC 2010 + /Ox
_BSS SEGMENT
_v DD 01H DUP (?)
_BSS ENDS
_TEXT SEGMENT
_s$ = 8 ; size = 4
f1 PROC
push ebp
mov ebp, esp
mov eax, DWORD PTR _s$[ebp]
mov DWORD PTR _v, eax
pop ebp
ret 0
f1 ENDP
_TEXT ENDS
PUBLIC f2
_TEXT SEGMENT
f2 PROC
push ebp
mov ebp, esp
mov eax, DWORD PTR _v
imul eax, 214013 ; 000343fdH
add eax, 2531011 ; 00269ec3H
mov DWORD PTR _v, eax
mov eax, DWORD PTR _v
shr eax, 16 ; 00000010H
and eax, 32767 ; 00007fffH
pop ebp
ret 0
f2 ENDP
524
73.3. l\lkClSl 2.3 Cn/l1lk 73. llvll 2
_TEXT ENDS
END
78.8.2 6CC 4.4.1
public f1
f1 proc near
arg_0 = dword ptr 8
push ebp
mov ebp, esp
mov eax, [ebp+arg_0]
mov ds:v, eax
pop ebp
retn
f1 endp
public f2
f2 proc near
push ebp
mov ebp, esp
mov eax, ds:v
imul eax, 343FDh
add eax, 269EC3h
mov ds:v, eax
mov eax, ds:v
shr eax, 10h
and eax, 7FFFh
pop ebp
retn
f2 endp
bss segment dword public BSS use32
assume cs:_bss
dd ?
bss ends
78.8.8 Keil (ARH) + -O3
f1 PROC
LDR r1,|L0.52|
STR r0,[r1,#0] ; v
BX lr
ENDP
f2 PROC
LDR r0,|L0.52|
LDR r2,|L0.56|
LDR r1,[r0,#0] ; v
MUL r1,r2,r1
LDR r2,|L0.60|
ADD r1,r1,r2
STR r1,[r0,#0] ; v
MVN r0,#0x8000
AND r0,r0,r1,LSR #16
BX lr
ENDP
525
73.4. l\lkClSl 2.4 Cn/l1lk 73. llvll 2
|L0.52|
DCD ||.data||
|L0.56|
DCD 0x000343fd
|L0.60|
DCD 0x00269ec3
78.8.4 Keil (tbumb) + -O3
f1 PROC
LDR r1,|L0.28|
STR r0,[r1,#0] ; v
BX lr
ENDP
f2 PROC
LDR r0,|L0.28|
LDR r2,|L0.32|
LDR r1,[r0,#0] ; v
MULS r1,r2,r1
LDR r2,|L0.36|
ADDS r1,r1,r2
STR r1,[r0,#0] ; v
LSLS r0,r1,#1
LSRS r0,r0,#17
BX lr
ENDP
|L0.28|
DCD ||.data||
|L0.32|
DCD 0x000343fd
|L0.36|
DCD 0x00269ec3
78.4 xercise 2.4
This is standard C library function. Source code taken from MSVC .
78.4.1 H5vC 2010 + /Ox
PUBLIC _f
_TEXT SEGMENT
_arg1$ = 8 ; size = 4
_arg2$ = 12 ; size = 4
_f PROC
push esi
mov esi, DWORD PTR _arg1$[esp]
push edi
mov edi, DWORD PTR _arg2$[esp+4]
cmp BYTE PTR [edi], 0
mov eax, esi
je SHORT $LN7@f
mov dl, BYTE PTR [esi]
push ebx
test dl, dl
526
73.4. l\lkClSl 2.4 Cn/l1lk 73. llvll 2
je SHORT $LN4@f
sub esi, edi
npad 6
$LL5@f:
mov ecx, edi
test dl, dl
je SHORT $LN2@f
$LL3@f:
mov dl, BYTE PTR [ecx]
test dl, dl
je SHORT $LN14@f
movsx ebx, BYTE PTR [esi+ecx]
movsx edx, dl
sub ebx, edx
jne SHORT $LN2@f
inc ecx
cmp BYTE PTR [esi+ecx], bl
jne SHORT $LL3@f
$LN2@f:
cmp BYTE PTR [ecx], 0
je SHORT $LN14@f
mov dl, BYTE PTR [eax+1]
inc eax
inc esi
test dl, dl
jne SHORT $LL5@f
xor eax, eax
pop ebx
pop edi
pop esi
ret 0
_f ENDP
_TEXT ENDS
END
78.4.2 6CC 4.4.1
public f
f proc near
var_C = dword ptr -0Ch
var_8 = dword ptr -8
var_4 = dword ptr -4
arg_0 = dword ptr 8
arg_4 = dword ptr 0Ch
push ebp
mov ebp, esp
sub esp, 10h
mov eax, [ebp+arg_0]
mov [ebp+var_4], eax
mov eax, [ebp+arg_4]
movzx eax, byte ptr [eax]
test al, al
jnz short loc_8048443
mov eax, [ebp+arg_0]
jmp short locret_8048453
loc_80483F4:
mov eax, [ebp+var_4]
527
73.4. l\lkClSl 2.4 Cn/l1lk 73. llvll 2
mov [ebp+var_8], eax
mov eax, [ebp+arg_4]
mov [ebp+var_C], eax
jmp short loc_804840A
loc_8048402:
add [ebp+var_8], 1
add [ebp+var_C], 1
loc_804840A:
mov eax, [ebp+var_8]
movzx eax, byte ptr [eax]
test al, al
jz short loc_804842E
mov eax, [ebp+var_C]
movzx eax, byte ptr [eax]
test al, al
jz short loc_804842E
mov eax, [ebp+var_8]
movzx edx, byte ptr [eax]
mov eax, [ebp+var_C]
movzx eax, byte ptr [eax]
cmp dl, al
jz short loc_8048402
loc_804842E:
mov eax, [ebp+var_C]
movzx eax, byte ptr [eax]
test al, al
jnz short loc_804843D
mov eax, [ebp+var_4]
jmp short locret_8048453
loc_804843D:
add [ebp+var_4], 1
jmp short loc_8048444
loc_8048443:
nop
loc_8048444:
mov eax, [ebp+var_4]
movzx eax, byte ptr [eax]
test al, al
jnz short loc_80483F4
mov eax, 0
locret_8048453:
leave
retn
f endp
78.4.8 Keil (ARH) + -O3
PUSH {r4,lr}
LDRB r2,[r1,#0]
CMP r2,#0
POPEQ {r4,pc}
B |L0.80|
528
73.4. l\lkClSl 2.4 Cn/l1lk 73. llvll 2
|L0.20|
LDRB r12,[r3,#0]
CMP r12,#0
BEQ |L0.64|
LDRB r4,[r2,#0]
CMP r4,#0
POPEQ {r4,pc}
CMP r12,r4
ADDEQ r3,r3,#1
ADDEQ r2,r2,#1
BEQ |L0.20|
B |L0.76|
|L0.64|
LDRB r2,[r2,#0]
CMP r2,#0
POPEQ {r4,pc}
|L0.76|
ADD r0,r0,#1
|L0.80|
LDRB r2,[r0,#0]
CMP r2,#0
MOVNE r3,r0
MOVNE r2,r1
MOVEQ r0,#0
BNE |L0.20|
POP {r4,pc}
78.4.4 Keil (tbumb) + -O3
PUSH {r4,r5,lr}
LDRB r2,[r1,#0]
CMP r2,#0
BEQ |L0.54|
B |L0.46|
|L0.10|
MOVS r3,r0
MOVS r2,r1
B |L0.20|
|L0.16|
ADDS r3,r3,#1
ADDS r2,r2,#1
|L0.20|
LDRB r4,[r3,#0]
CMP r4,#0
BEQ |L0.38|
LDRB r5,[r2,#0]
CMP r5,#0
BEQ |L0.54|
CMP r4,r5
BEQ |L0.16|
B |L0.44|
|L0.38|
LDRB r2,[r2,#0]
CMP r2,#0
BEQ |L0.54|
|L0.44|
ADDS r0,r0,#1
|L0.46|
LDRB r2,[r0,#0]
CMP r2,#0
529
73.5. l\lkClSl 2.5 Cn/l1lk 73. llvll 2
BNE |L0.10|
MOVS r0,#0
|L0.54|
POP {r4,r5,pc}
78.$ xercise 2.$
This exercise is rather on knowledge than on reading code.
. The function is taken from OpenWatcom.
78.$.1 H5vC 2010 + /Ox
_DATA SEGMENT
COMM __v:DWORD
_DATA ENDS
PUBLIC __real@3e45798ee2308c3a
PUBLIC __real@4147ffff80000000
PUBLIC __real@4150017ec0000000
PUBLIC _f
EXTRN __fltused:DWORD
CONST SEGMENT
__real@3e45798ee2308c3a DQ 03e45798ee2308c3ar ; 1e-008
__real@4147ffff80000000 DQ 04147ffff80000000r ; 3.14573e+006
__real@4150017ec0000000 DQ 04150017ec0000000r ; 4.19584e+006
CONST ENDS
_TEXT SEGMENT
_v1$ = -16 ; size = 8
_v2$ = -8 ; size = 8
_f PROC
sub esp, 16 ; 00000010H
fld QWORD PTR __real@4150017ec0000000
fstp QWORD PTR _v1$[esp+16]
fld QWORD PTR __real@4147ffff80000000
fstp QWORD PTR _v2$[esp+16]
fld QWORD PTR _v1$[esp+16]
fld QWORD PTR _v1$[esp+16]
fdiv QWORD PTR _v2$[esp+16]
fmul QWORD PTR _v2$[esp+16]
fsubp ST(1), ST(0)
fcomp QWORD PTR __real@3e45798ee2308c3a
fnstsw ax
test ah, 65 ; 00000041H
jne SHORT $LN1@f
or DWORD PTR __v, 1
$LN1@f:
add esp, 16 ; 00000010H
ret 0
_f ENDP
_TEXT ENDS
78.8 xercise 2.8
78.8.1 H5vC 2010 + /Ox
PUBLIC _f
; Function compile flags: /Ogtpy
_TEXT SEGMENT
530
73.6. l\lkClSl 2.6 Cn/l1lk 73. llvll 2
_k0$ = -12 ; size = 4
_k3$ = -8 ; size = 4
_k2$ = -4 ; size = 4
_v$ = 8 ; size = 4
_k1$ = 12 ; size = 4
_k$ = 12 ; size = 4
_f PROC
sub esp, 12 ; 0000000cH
mov ecx, DWORD PTR _v$[esp+8]
mov eax, DWORD PTR [ecx]
mov ecx, DWORD PTR [ecx+4]
push ebx
push esi
mov esi, DWORD PTR _k$[esp+16]
push edi
mov edi, DWORD PTR [esi]
mov DWORD PTR _k0$[esp+24], edi
mov edi, DWORD PTR [esi+4]
mov DWORD PTR _k1$[esp+20], edi
mov edi, DWORD PTR [esi+8]
mov esi, DWORD PTR [esi+12]
xor edx, edx
mov DWORD PTR _k2$[esp+24], edi
mov DWORD PTR _k3$[esp+24], esi
lea edi, DWORD PTR [edx+32]
$LL8@f:
mov esi, ecx
shr esi, 5
add esi, DWORD PTR _k1$[esp+20]
mov ebx, ecx
shl ebx, 4
add ebx, DWORD PTR _k0$[esp+24]
sub edx, 1640531527 ; 61c88647H
xor esi, ebx
lea ebx, DWORD PTR [edx+ecx]
xor esi, ebx
add eax, esi
mov esi, eax
shr esi, 5
add esi, DWORD PTR _k3$[esp+24]
mov ebx, eax
shl ebx, 4
add ebx, DWORD PTR _k2$[esp+24]
xor esi, ebx
lea ebx, DWORD PTR [edx+eax]
xor esi, ebx
add ecx, esi
dec edi
jne SHORT $LL8@f
mov edx, DWORD PTR _v$[esp+20]
pop edi
pop esi
mov DWORD PTR [edx], eax
mov DWORD PTR [edx+4], ecx
pop ebx
add esp, 12 ; 0000000cH
ret 0
_f ENDP
531
73.6. l\lkClSl 2.6 Cn/l1lk 73. llvll 2
78.8.2 Keil (ARH) + -O3
PUSH {r4-r10,lr}
ADD r5,r1,#8
LDM r5,{r5,r7}
LDR r2,[r0,#4]
LDR r3,[r0,#0]
LDR r4,|L0.116|
LDR r6,[r1,#4]
LDR r8,[r1,#0]
MOV r12,#0
MOV r1,r12
|L0.40|
ADD r12,r12,r4
ADD r9,r8,r2,LSL #4
ADD r10,r2,r12
EOR r9,r9,r10
ADD r10,r6,r2,LSR #5
EOR r9,r9,r10
ADD r3,r3,r9
ADD r9,r5,r3,LSL #4
ADD r10,r3,r12
EOR r9,r9,r10
ADD r10,r7,r3,LSR #5
EOR r9,r9,r10
ADD r1,r1,#1
CMP r1,#0x20
ADD r2,r2,r9
STRCS r2,[r0,#4]
STRCS r3,[r0,#0]
BCC |L0.40|
POP {r4-r10,pc}
|L0.116|
DCD 0x9e3779b9
78.8.8 Keil (tbumb) + -O3
PUSH {r1-r7,lr}
LDR r5,|L0.84|
LDR r3,[r0,#0]
LDR r2,[r0,#4]
STR r5,[sp,#8]
MOVS r6,r1
LDM r6,{r6,r7}
LDR r5,[r1,#8]
STR r6,[sp,#4]
LDR r6,[r1,#0xc]
MOVS r4,#0
MOVS r1,r4
MOV lr,r5
MOV r12,r6
STR r7,[sp,#0]
|L0.30|
LDR r5,[sp,#8]
LSLS r6,r2,#4
ADDS r4,r4,r5
LDR r5,[sp,#4]
LSRS r7,r2,#5
ADDS r5,r6,r5
532
73.7. l\lkClSl 2.7 Cn/l1lk 73. llvll 2
ADDS r6,r2,r4
EORS r5,r5,r6
LDR r6,[sp,#0]
ADDS r1,r1,#1
ADDS r6,r7,r6
EORS r5,r5,r6
ADDS r3,r5,r3
LSLS r5,r3,#4
ADDS r6,r3,r4
ADD r5,r5,lr
EORS r5,r5,r6
LSRS r6,r3,#5
ADD r6,r6,r12
EORS r5,r5,r6
ADDS r2,r5,r2
CMP r1,#0x20
BCC |L0.30|
STR r3,[r0,#0]
STR r2,[r0,#4]
POP {r1-r7,pc}
|L0.84|
DCD 0x9e3779b9
78.7 xercise 2.7
This function is taken from Linux . kernel.
78.7.1 H5vC 2010 + /Ox
_table db 000h, 080h, 040h, 0c0h, 020h, 0a0h, 060h, 0e0h
db 010h, 090h, 050h, 0d0h, 030h, 0b0h, 070h, 0f0h
db 008h, 088h, 048h, 0c8h, 028h, 0a8h, 068h, 0e8h
db 018h, 098h, 058h, 0d8h, 038h, 0b8h, 078h, 0f8h
db 004h, 084h, 044h, 0c4h, 024h, 0a4h, 064h, 0e4h
db 014h, 094h, 054h, 0d4h, 034h, 0b4h, 074h, 0f4h
db 00ch, 08ch, 04ch, 0cch, 02ch, 0ach, 06ch, 0ech
db 01ch, 09ch, 05ch, 0dch, 03ch, 0bch, 07ch, 0fch
db 002h, 082h, 042h, 0c2h, 022h, 0a2h, 062h, 0e2h
db 012h, 092h, 052h, 0d2h, 032h, 0b2h, 072h, 0f2h
db 00ah, 08ah, 04ah, 0cah, 02ah, 0aah, 06ah, 0eah
db 01ah, 09ah, 05ah, 0dah, 03ah, 0bah, 07ah, 0fah
db 006h, 086h, 046h, 0c6h, 026h, 0a6h, 066h, 0e6h
db 016h, 096h, 056h, 0d6h, 036h, 0b6h, 076h, 0f6h
db 00eh, 08eh, 04eh, 0ceh, 02eh, 0aeh, 06eh, 0eeh
db 01eh, 09eh, 05eh, 0deh, 03eh, 0beh, 07eh, 0feh
db 001h, 081h, 041h, 0c1h, 021h, 0a1h, 061h, 0e1h
db 011h, 091h, 051h, 0d1h, 031h, 0b1h, 071h, 0f1h
db 009h, 089h, 049h, 0c9h, 029h, 0a9h, 069h, 0e9h
db 019h, 099h, 059h, 0d9h, 039h, 0b9h, 079h, 0f9h
db 005h, 085h, 045h, 0c5h, 025h, 0a5h, 065h, 0e5h
db 015h, 095h, 055h, 0d5h, 035h, 0b5h, 075h, 0f5h
db 00dh, 08dh, 04dh, 0cdh, 02dh, 0adh, 06dh, 0edh
db 01dh, 09dh, 05dh, 0ddh, 03dh, 0bdh, 07dh, 0fdh
db 003h, 083h, 043h, 0c3h, 023h, 0a3h, 063h, 0e3h
db 013h, 093h, 053h, 0d3h, 033h, 0b3h, 073h, 0f3h
db 00bh, 08bh, 04bh, 0cbh, 02bh, 0abh, 06bh, 0ebh
db 01bh, 09bh, 05bh, 0dbh, 03bh, 0bbh, 07bh, 0fbh
db 007h, 087h, 047h, 0c7h, 027h, 0a7h, 067h, 0e7h
533
73.7. l\lkClSl 2.7 Cn/l1lk 73. llvll 2
db 017h, 097h, 057h, 0d7h, 037h, 0b7h, 077h, 0f7h
db 00fh, 08fh, 04fh, 0cfh, 02fh, 0afh, 06fh, 0efh
db 01fh, 09fh, 05fh, 0dfh, 03fh, 0bfh, 07fh, 0ffh
f proc near
arg_0 = dword ptr 4
mov edx, [esp+arg_0]
movzx eax, dl
movzx eax, _table[eax]
mov ecx, edx
shr edx, 8
movzx edx, dl
movzx edx, _table[edx]
shl ax, 8
movzx eax, ax
or eax, edx
shr ecx, 10h
movzx edx, cl
movzx edx, _table[edx]
shr ecx, 8
movzx ecx, cl
movzx ecx, _table[ecx]
shl dx, 8
movzx edx, dx
shl eax, 10h
or edx, ecx
or eax, edx
retn
f endp
78.7.2 Keil (ARH) + -O3
f2 PROC
LDR r1,|L0.76|
LDRB r2,[r1,r0,LSR #8]
AND r0,r0,#0xff
LDRB r0,[r1,r0]
ORR r0,r2,r0,LSL #8
BX lr
ENDP
f3 PROC
MOV r3,r0
LSR r0,r0,#16
PUSH {lr}
BL f2
MOV r12,r0
LSL r0,r3,#16
LSR r0,r0,#16
BL f2
ORR r0,r12,r0,LSL #16
POP {pc}
ENDP
|L0.76|
DCB 0x00,0x80,0x40,0xc0
DCB 0x20,0xa0,0x60,0xe0
DCB 0x10,0x90,0x50,0xd0
534
73.7. l\lkClSl 2.7 Cn/l1lk 73. llvll 2
DCB 0x30,0xb0,0x70,0xf0
DCB 0x08,0x88,0x48,0xc8
DCB 0x28,0xa8,0x68,0xe8
DCB 0x18,0x98,0x58,0xd8
DCB 0x38,0xb8,0x78,0xf8
DCB 0x04,0x84,0x44,0xc4
DCB 0x24,0xa4,0x64,0xe4
DCB 0x14,0x94,0x54,0xd4
DCB 0x34,0xb4,0x74,0xf4
DCB 0x0c,0x8c,0x4c,0xcc
DCB 0x2c,0xac,0x6c,0xec
DCB 0x1c,0x9c,0x5c,0xdc
DCB 0x3c,0xbc,0x7c,0xfc
DCB 0x02,0x82,0x42,0xc2
DCB 0x22,0xa2,0x62,0xe2
DCB 0x12,0x92,0x52,0xd2
DCB 0x32,0xb2,0x72,0xf2
DCB 0x0a,0x8a,0x4a,0xca
DCB 0x2a,0xaa,0x6a,0xea
DCB 0x1a,0x9a,0x5a,0xda
DCB 0x3a,0xba,0x7a,0xfa
DCB 0x06,0x86,0x46,0xc6
DCB 0x26,0xa6,0x66,0xe6
DCB 0x16,0x96,0x56,0xd6
DCB 0x36,0xb6,0x76,0xf6
DCB 0x0e,0x8e,0x4e,0xce
DCB 0x2e,0xae,0x6e,0xee
DCB 0x1e,0x9e,0x5e,0xde
DCB 0x3e,0xbe,0x7e,0xfe
DCB 0x01,0x81,0x41,0xc1
DCB 0x21,0xa1,0x61,0xe1
DCB 0x11,0x91,0x51,0xd1
DCB 0x31,0xb1,0x71,0xf1
DCB 0x09,0x89,0x49,0xc9
DCB 0x29,0xa9,0x69,0xe9
DCB 0x19,0x99,0x59,0xd9
DCB 0x39,0xb9,0x79,0xf9
DCB 0x05,0x85,0x45,0xc5
DCB 0x25,0xa5,0x65,0xe5
DCB 0x15,0x95,0x55,0xd5
DCB 0x35,0xb5,0x75,0xf5
DCB 0x0d,0x8d,0x4d,0xcd
DCB 0x2d,0xad,0x6d,0xed
DCB 0x1d,0x9d,0x5d,0xdd
DCB 0x3d,0xbd,0x7d,0xfd
DCB 0x03,0x83,0x43,0xc3
DCB 0x23,0xa3,0x63,0xe3
DCB 0x13,0x93,0x53,0xd3
DCB 0x33,0xb3,0x73,0xf3
DCB 0x0b,0x8b,0x4b,0xcb
DCB 0x2b,0xab,0x6b,0xeb
DCB 0x1b,0x9b,0x5b,0xdb
DCB 0x3b,0xbb,0x7b,0xfb
DCB 0x07,0x87,0x47,0xc7
DCB 0x27,0xa7,0x67,0xe7
DCB 0x17,0x97,0x57,0xd7
DCB 0x37,0xb7,0x77,0xf7
DCB 0x0f,0x8f,0x4f,0xcf
DCB 0x2f,0xaf,0x6f,0xef
DCB 0x1f,0x9f,0x5f,0xdf
DCB 0x3f,0xbf,0x7f,0xff
535
73.7. l\lkClSl 2.7 Cn/l1lk 73. llvll 2
78.7.8 Keil (tbumb) + -O3
f2 PROC
LDR r1,|L0.48|
LSLS r2,r0,#24
LSRS r2,r2,#24
LDRB r2,[r1,r2]
LSLS r2,r2,#8
LSRS r0,r0,#8
LDRB r0,[r1,r0]
ORRS r0,r0,r2
BX lr
ENDP
f3 PROC
MOVS r3,r0
LSLS r0,r0,#16
PUSH {r4,lr}
LSRS r0,r0,#16
BL f2
LSLS r4,r0,#16
LSRS r0,r3,#16
BL f2
ORRS r0,r0,r4
POP {r4,pc}
ENDP
|L0.48|
DCB 0x00,0x80,0x40,0xc0
DCB 0x20,0xa0,0x60,0xe0
DCB 0x10,0x90,0x50,0xd0
DCB 0x30,0xb0,0x70,0xf0
DCB 0x08,0x88,0x48,0xc8
DCB 0x28,0xa8,0x68,0xe8
DCB 0x18,0x98,0x58,0xd8
DCB 0x38,0xb8,0x78,0xf8
DCB 0x04,0x84,0x44,0xc4
DCB 0x24,0xa4,0x64,0xe4
DCB 0x14,0x94,0x54,0xd4
DCB 0x34,0xb4,0x74,0xf4
DCB 0x0c,0x8c,0x4c,0xcc
DCB 0x2c,0xac,0x6c,0xec
DCB 0x1c,0x9c,0x5c,0xdc
DCB 0x3c,0xbc,0x7c,0xfc
DCB 0x02,0x82,0x42,0xc2
DCB 0x22,0xa2,0x62,0xe2
DCB 0x12,0x92,0x52,0xd2
DCB 0x32,0xb2,0x72,0xf2
DCB 0x0a,0x8a,0x4a,0xca
DCB 0x2a,0xaa,0x6a,0xea
DCB 0x1a,0x9a,0x5a,0xda
DCB 0x3a,0xba,0x7a,0xfa
DCB 0x06,0x86,0x46,0xc6
DCB 0x26,0xa6,0x66,0xe6
DCB 0x16,0x96,0x56,0xd6
DCB 0x36,0xb6,0x76,0xf6
DCB 0x0e,0x8e,0x4e,0xce
DCB 0x2e,0xae,0x6e,0xee
DCB 0x1e,0x9e,0x5e,0xde
DCB 0x3e,0xbe,0x7e,0xfe
DCB 0x01,0x81,0x41,0xc1
536
73.8. l\lkClSl 2.8 Cn/l1lk 73. llvll 2
DCB 0x21,0xa1,0x61,0xe1
DCB 0x11,0x91,0x51,0xd1
DCB 0x31,0xb1,0x71,0xf1
DCB 0x09,0x89,0x49,0xc9
DCB 0x29,0xa9,0x69,0xe9
DCB 0x19,0x99,0x59,0xd9
DCB 0x39,0xb9,0x79,0xf9
DCB 0x05,0x85,0x45,0xc5
DCB 0x25,0xa5,0x65,0xe5
DCB 0x15,0x95,0x55,0xd5
DCB 0x35,0xb5,0x75,0xf5
DCB 0x0d,0x8d,0x4d,0xcd
DCB 0x2d,0xad,0x6d,0xed
DCB 0x1d,0x9d,0x5d,0xdd
DCB 0x3d,0xbd,0x7d,0xfd
DCB 0x03,0x83,0x43,0xc3
DCB 0x23,0xa3,0x63,0xe3
DCB 0x13,0x93,0x53,0xd3
DCB 0x33,0xb3,0x73,0xf3
DCB 0x0b,0x8b,0x4b,0xcb
DCB 0x2b,0xab,0x6b,0xeb
DCB 0x1b,0x9b,0x5b,0xdb
DCB 0x3b,0xbb,0x7b,0xfb
DCB 0x07,0x87,0x47,0xc7
DCB 0x27,0xa7,0x67,0xe7
DCB 0x17,0x97,0x57,0xd7
DCB 0x37,0xb7,0x77,0xf7
DCB 0x0f,0x8f,0x4f,0xcf
DCB 0x2f,0xaf,0x6f,0xef
DCB 0x1f,0x9f,0x5f,0xdf
DCB 0x3f,0xbf,0x7f,0xff
78.8 xercise 2.8
78.8.1 H5vC 2010 + /O1
(/O: minimize space).
_a$ = 8 ; size = 4
_b$ = 12 ; size = 4
_c$ = 16 ; size = 4
?s@@YAXPAN00@Z PROC ; s, COMDAT
mov eax, DWORD PTR _b$[esp-4]
mov ecx, DWORD PTR _a$[esp-4]
mov edx, DWORD PTR _c$[esp-4]
push esi
push edi
sub ecx, eax
sub edx, eax
mov edi, 200 ; 000000c8H
$LL6@s:
push 100 ; 00000064H
pop esi
$LL3@s:
fld QWORD PTR [ecx+eax]
fadd QWORD PTR [eax]
fstp QWORD PTR [edx+eax]
add eax, 8
dec esi
jne SHORT $LL3@s
537
73.8. l\lkClSl 2.8 Cn/l1lk 73. llvll 2
dec edi
jne SHORT $LL6@s
pop edi
pop esi
ret 0
?s@@YAXPAN00@Z ENDP ; s
78.8.2 Keil (ARH) + -O3
PUSH {r4-r12,lr}
MOV r9,r2
MOV r10,r1
MOV r11,r0
MOV r5,#0
|L0.20|
ADD r0,r5,r5,LSL #3
ADD r0,r0,r5,LSL #4
MOV r4,#0
ADD r8,r10,r0,LSL #5
ADD r7,r11,r0,LSL #5
ADD r6,r9,r0,LSL #5
|L0.44|
ADD r0,r8,r4,LSL #3
LDM r0,{r2,r3}
ADD r1,r7,r4,LSL #3
LDM r1,{r0,r1}
BL __aeabi_dadd
ADD r2,r6,r4,LSL #3
ADD r4,r4,#1
STM r2,{r0,r1}
CMP r4,#0x64
BLT |L0.44|
ADD r5,r5,#1
CMP r5,#0xc8
BLT |L0.20|
POP {r4-r12,pc}
78.8.8 Keil (tbumb) + -O3
PUSH {r0-r2,r4-r7,lr}
MOVS r4,#0
SUB sp,sp,#8
|L0.6|
MOVS r1,#0x19
MOVS r0,r4
LSLS r1,r1,#5
MULS r0,r1,r0
LDR r2,[sp,#8]
LDR r1,[sp,#0xc]
ADDS r2,r0,r2
STR r2,[sp,#0]
LDR r2,[sp,#0x10]
MOVS r5,#0
ADDS r7,r0,r2
ADDS r0,r0,r1
STR r0,[sp,#4]
|L0.32|
LSLS r6,r5,#3
538
73.9. l\lkClSl 2.9 Cn/l1lk 73. llvll 2
ADDS r0,r0,r6
LDM r0!,{r2,r3}
LDR r0,[sp,#0]
ADDS r1,r0,r6
LDM r1,{r0,r1}
BL __aeabi_dadd
ADDS r2,r7,r6
ADDS r5,r5,#1
STM r2!,{r0,r1}
CMP r5,#0x64
BGE |L0.62|
LDR r0,[sp,#4]
B |L0.32|
|L0.62|
ADDS r4,r4,#1
CMP r4,#0xc8
BLT |L0.6|
ADD sp,sp,#0x14
POP {r4-r7,pc}
78.9 xercise 2.9
78.9.1 H5vC 2010 + /O1
(/O: minimize space).
tv315 = -8 ; size = 4
tv291 = -4 ; size = 4
_a$ = 8 ; size = 4
_b$ = 12 ; size = 4
_c$ = 16 ; size = 4
?m@@YAXPAN00@Z PROC ; m, COMDAT
push ebp
mov ebp, esp
push ecx
push ecx
mov edx, DWORD PTR _a$[ebp]
push ebx
mov ebx, DWORD PTR _c$[ebp]
push esi
mov esi, DWORD PTR _b$[ebp]
sub edx, esi
push edi
sub esi, ebx
mov DWORD PTR tv315[ebp], 100 ; 00000064H
$LL9@m:
mov eax, ebx
mov DWORD PTR tv291[ebp], 300 ; 0000012cH
$LL6@m:
fldz
lea ecx, DWORD PTR [esi+eax]
fstp QWORD PTR [eax]
mov edi, 200 ; 000000c8H
$LL3@m:
dec edi
fld QWORD PTR [ecx+edx]
fmul QWORD PTR [ecx]
fadd QWORD PTR [eax]
fstp QWORD PTR [eax]
jne HORT $LL3@m
539
73.9. l\lkClSl 2.9 Cn/l1lk 73. llvll 2
add eax, 8
dec DWORD PTR tv291[ebp]
jne SHORT $LL6@m
add ebx, 800 ; 00000320H
dec DWORD PTR tv315[ebp]
jne SHORT $LL9@m
pop edi
pop esi
pop ebx
leave
ret 0
?m@@YAXPAN00@Z ENDP ; m
78.9.2 Keil (ARH) + -O3
PUSH {r0-r2,r4-r11,lr}
SUB sp,sp,#8
MOV r5,#0
|L0.12|
LDR r1,[sp,#0xc]
ADD r0,r5,r5,LSL #3
ADD r0,r0,r5,LSL #4
ADD r1,r1,r0,LSL #5
STR r1,[sp,#0]
LDR r1,[sp,#8]
MOV r4,#0
ADD r11,r1,r0,LSL #5
LDR r1,[sp,#0x10]
ADD r10,r1,r0,LSL #5
|L0.52|
MOV r0,#0
MOV r1,r0
ADD r7,r10,r4,LSL #3
STM r7,{r0,r1}
MOV r6,r0
LDR r0,[sp,#0]
ADD r8,r11,r4,LSL #3
ADD r9,r0,r4,LSL #3
|L0.84|
LDM r9,{r2,r3}
LDM r8,{r0,r1}
BL __aeabi_dmul
LDM r7,{r2,r3}
BL __aeabi_dadd
ADD r6,r6,#1
STM r7,{r0,r1}
CMP r6,#0xc8
BLT |L0.84|
ADD r4,r4,#1
CMP r4,#0x12c
BLT |L0.52|
ADD r5,r5,#1
CMP r5,#0x64
BLT |L0.12|
ADD sp,sp,#0x14
POP {r4-r11,pc}
78.9.8 Keil (tbumb) + -O3
540
73.0. l\lkClSl 2.0 Cn/l1lk 73. llvll 2
PUSH {r0-r2,r4-r7,lr}
MOVS r0,#0
SUB sp,sp,#0x10
STR r0,[sp,#0]
|L0.8|
MOVS r1,#0x19
LSLS r1,r1,#5
MULS r0,r1,r0
LDR r2,[sp,#0x10]
LDR r1,[sp,#0x14]
ADDS r2,r0,r2
STR r2,[sp,#4]
LDR r2,[sp,#0x18]
MOVS r5,#0
ADDS r7,r0,r2
ADDS r0,r0,r1
STR r0,[sp,#8]
|L0.32|
LSLS r4,r5,#3
MOVS r0,#0
ADDS r2,r7,r4
STR r0,[r2,#0]
MOVS r6,r0
STR r0,[r2,#4]
|L0.44|
LDR r0,[sp,#8]
ADDS r0,r0,r4
LDM r0!,{r2,r3}
LDR r0,[sp,#4]
ADDS r1,r0,r4
LDM r1,{r0,r1}
BL __aeabi_dmul
ADDS r3,r7,r4
LDM r3,{r2,r3}
BL __aeabi_dadd
ADDS r2,r7,r4
ADDS r6,r6,#1
STM r2!,{r0,r1}
CMP r6,#0xc8
BLT |L0.44|
MOVS r0,#0xff
ADDS r5,r5,#1
ADDS r0,r0,#0x2d
CMP r5,r0
BLT |L0.32|
LDR r0,[sp,#0]
ADDS r0,r0,#1
CMP r0,#0x64
STR r0,[sp,#0]
BLT |L0.8|
ADD sp,sp,#0x1c
POP {r4-r7,pc}
78.10 xercise 2.10
If to compile this piece of code and run, a number will be printed. Where it came from? Where it came fromif to compile it in
MSVC with optimization (/Ox)?
#include <stdio.h>
541
73.. l\lkClSl 2. Cn/l1lk 73. llvll 2
int main()
{
printf ("%d\n");
return 0;
};
78.11 xercise 2.11
As a practical joke, fool your Windows Task Manager to showmuch more CPUs/CPUcores than your machine actually has:
Figure .: Fooled Windows Task Manager
78.12 xercise 2.12
This is a well-known algorithm. How its called?
78.12.1 H5vC 2012 x84 + /Ox
s$ = 8
f PROC
cmp BYTE PTR [rcx], 0
mov r9, rcx
je SHORT $LN13@f
npad 8
$LL5@f:
movzx edx, BYTE PTR [rcx]
lea eax, DWORD PTR [rdx-97]
cmp al, 25
542
73.2. l\lkClSl 2.2 Cn/l1lk 73. llvll 2
ja SHORT $LN3@f
movsx r8d, dl
mov eax, 1321528399 ; 4ec4ec4fH
sub r8d, 84 ; 00000054H
imul r8d
sar edx, 3
mov eax, edx
shr eax, 31
add edx, eax
imul edx, 26
sub r8d, edx
add r8b, 97 ; 00000061H
jmp SHORT $LN14@f
$LN3@f:
lea eax, DWORD PTR [rdx-65]
cmp al, 25
ja SHORT $LN1@f
movsx r8d, dl
mov eax, 1321528399 ; 4ec4ec4fH
sub r8d, 52 ; 00000034H
imul r8d
sar edx, 3
mov eax, edx
shr eax, 31
add edx, eax
imul edx, 26
sub r8d, edx
add r8b, 65 ; 00000041H
$LN14@f:
mov BYTE PTR [rcx], r8b
$LN1@f:
inc rcx
cmp BYTE PTR [rcx], 0
jne SHORT $LL5@f
$LN13@f:
mov rax, r9
ret 0
f ENDP
78.12.2 Keil (ARH)
f PROC
PUSH {r4-r6,lr}
MOV r4,r0
MOV r5,r0
B |L0.84|
|L0.16|
SUB r1,r0,#0x61
CMP r1,#0x19
BHI |L0.48|
SUB r0,r0,#0x54
MOV r1,#0x1a
BL __aeabi_idivmod
ADD r0,r1,#0x61
B |L0.76|
|L0.48|
SUB r1,r0,#0x41
CMP r1,#0x19
BHI |L0.80|
SUB r0,r0,#0x34
543
73.3. l\lkClSl 2.3 Cn/l1lk 73. llvll 2
MOV r1,#0x1a
BL __aeabi_idivmod
ADD r0,r1,#0x41
|L0.76|
STRB r0,[r4,#0]
|L0.80|
ADD r4,r4,#1
|L0.84|
LDRB r0,[r4,#0]
CMP r0,#0
MOVEQ r0,r5
BNE |L0.16|
POP {r4-r6,pc}
ENDP
78.12.8 Keil (tbumb)
f PROC
PUSH {r4-r6,lr}
MOVS r4,r0
MOVS r5,r0
B |L0.50|
|L0.8|
MOVS r1,r0
SUBS r1,r1,#0x61
CMP r1,#0x19
BHI |L0.28|
SUBS r0,r0,#0x54
MOVS r1,#0x1a
BL __aeabi_idivmod
ADDS r1,r1,#0x61
B |L0.46|
|L0.28|
MOVS r1,r0
SUBS r1,r1,#0x41
CMP r1,#0x19
BHI |L0.48|
SUBS r0,r0,#0x34
MOVS r1,#0x1a
BL __aeabi_idivmod
ADDS r1,r1,#0x41
|L0.46|
STRB r1,[r4,#0]
|L0.48|
ADDS r4,r4,#1
|L0.50|
LDRB r0,[r4,#0]
CMP r0,#0
BNE |L0.8|
MOVS r0,r5
POP {r4-r6,pc}
ENDP
78.18 xercise 2.18
This is a well-known cryptoalgorithm of the past. How its called?
544
73.4. l\lkClSl 2.4 Cn/l1lk 73. llvll 2
78.18.1 H5vC 2012 + /Ox
_in$ = 8 ; size = 2
_f PROC
movzx ecx, WORD PTR _in$[esp-4]
lea eax, DWORD PTR [ecx*4]
xor eax, ecx
add eax, eax
xor eax, ecx
shl eax, 2
xor eax, ecx
and eax, 32 ; 00000020H
shl eax, 10 ; 0000000aH
shr ecx, 1
or eax, ecx
ret 0
_f ENDP
78.18.2 Keil (ARH)
f PROC
EOR r1,r0,r0,LSR #2
EOR r1,r1,r0,LSR #3
EOR r1,r1,r0,LSR #5
AND r1,r1,#1
LSR r0,r0,#1
ORR r0,r0,r1,LSL #15
BX lr
ENDP
78.18.8 Keil (tbumb)
f PROC
LSRS r1,r0,#2
EORS r1,r1,r0
LSRS r2,r0,#3
EORS r1,r1,r2
LSRS r2,r0,#5
EORS r1,r1,r2
LSLS r1,r1,#31
LSRS r0,r0,#1
LSRS r1,r1,#16
ORRS r0,r0,r1
BX lr
ENDP
78.14 xercise 2.14
Another well-known algorithm. The function takes two variables and returning one.
78.14.1 H5vC 2012
_rt$1 = -4 ; size = 4
_rt$2 = 8 ; size = 4
_x$ = 8 ; size = 4
_y$ = 12 ; size = 4
545
73.4. l\lkClSl 2.4 Cn/l1lk 73. llvll 2
?f@@YAIII@Z PROC ; f
push ecx
push esi
mov esi, DWORD PTR _x$[esp+4]
test esi, esi
jne SHORT $LN7@f
mov eax, DWORD PTR _y$[esp+4]
pop esi
pop ecx
ret 0
$LN7@f:
mov edx, DWORD PTR _y$[esp+4]
mov eax, esi
test edx, edx
je SHORT $LN8@f
or eax, edx
push edi
bsf edi, eax
bsf eax, esi
mov ecx, eax
mov DWORD PTR _rt$1[esp+12], eax
bsf eax, edx
shr esi, cl
mov ecx, eax
shr edx, cl
mov DWORD PTR _rt$2[esp+8], eax
cmp esi, edx
je SHORT $LN22@f
$LN23@f:
jbe SHORT $LN2@f
xor esi, edx
xor edx, esi
xor esi, edx
$LN2@f:
cmp esi, 1
je SHORT $LN22@f
sub edx, esi
bsf eax, edx
mov ecx, eax
shr edx, cl
mov DWORD PTR _rt$2[esp+8], eax
cmp esi, edx
jne SHORT $LN23@f
$LN22@f:
mov ecx, edi
shl esi, cl
pop edi
mov eax, esi
$LN8@f:
pop esi
pop ecx
ret 0
?f@@YAIII@Z ENDP
78.14.2 Keil (ARHmcde)
||f1|| PROC
CMP r0,#0
RSB r1,r0,#0
AND r0,r0,r1
546
73.4. l\lkClSl 2.4 Cn/l1lk 73. llvll 2
CLZ r0,r0
RSBNE r0,r0,#0x1f
BX lr
ENDP
f PROC
MOVS r2,r0
MOV r3,r1
MOVEQ r0,r1
CMPNE r3,#0
PUSH {lr}
POPEQ {pc}
ORR r0,r2,r3
BL ||f1||
MOV r12,r0
MOV r0,r2
BL ||f1||
LSR r2,r2,r0
|L0.196|
MOV r0,r3
BL ||f1||
LSR r0,r3,r0
CMP r2,r0
EORHI r1,r2,r0
EORHI r0,r0,r1
EORHI r2,r1,r0
BEQ |L0.240|
CMP r2,#1
SUBNE r3,r0,r2
BNE |L0.196|
|L0.240|
LSL r0,r2,r12
POP {pc}
ENDP
78.14.8 6CC 4.8.8 fcr Raspberry i (ARHmcde)
f:
subs r3, r0, #0
beq .L162
cmp r1, #0
moveq r1, r3
beq .L162
orr r2, r1, r3
rsb ip, r2, #0
and ip, ip, r2
cmp r2, #0
rsb r2, r3, #0
and r2, r2, r3
clz r2, r2
rsb r2, r2, #31
clz ip, ip
rsbne ip, ip, #31
mov r3, r3, lsr r2
b .L169
.L171:
eorhi r1, r1, r2
eorhi r3, r1, r2
cmp r3, #1
rsb r1, r3, r1
547
73.5. l\lkClSl 2.5 Cn/l1lk 73. llvll 2
beq .L167
.L169:
rsb r0, r1, #0
and r0, r0, r1
cmp r1, #0
clz r0, r0
mov r2, r0
rsbne r2, r0, #31
mov r1, r1, lsr r2
cmp r3, r1
eor r2, r1, r3
bne .L171
.L167:
mov r1, r3, asl ip
.L162:
mov r0, r1
bx lr
78.1$ xercise 2.1$
Well-known algorithm again. What it does?
Take also notice that the code for x uses FPU, but SIMD-instructions are used instead in x code. Thats OK: .
78.1$.1 H5vC 2012 x84 jox
__real@412e848000000000 DQ 0412e848000000000r ; 1e+006
__real@4010000000000000 DQ 04010000000000000r ; 4
__real@4008000000000000 DQ 04008000000000000r ; 3
__real@3f800000 DD 03f800000r ; 1
tmp$1 = 8
tmp$2 = 8
f PROC
movsdx xmm3, QWORD PTR __real@4008000000000000
movss xmm4, DWORD PTR __real@3f800000
mov edx, DWORD PTR ?RNG_state@?1??get_rand@@9@9
xor ecx, ecx
mov r8d, 200000 ; 00030d40H
npad 2
$LL4@f:
imul edx, 1664525 ; 0019660dH
add edx, 1013904223 ; 3c6ef35fH
mov eax, edx
and eax, 8388607 ; 007fffffH
imul edx, 1664525 ; 0019660dH
bts eax, 30
add edx, 1013904223 ; 3c6ef35fH
mov DWORD PTR tmp$2[rsp], eax
mov eax, edx
and eax, 8388607 ; 007fffffH
bts eax, 30
movss xmm0, DWORD PTR tmp$2[rsp]
mov DWORD PTR tmp$1[rsp], eax
cvtps2pd xmm0, xmm0
subsd xmm0, xmm3
cvtpd2ps xmm2, xmm0
movss xmm0, DWORD PTR tmp$1[rsp]
cvtps2pd xmm0, xmm0
mulss xmm2, xmm2
548
73.5. l\lkClSl 2.5 Cn/l1lk 73. llvll 2
subsd xmm0, xmm3
cvtpd2ps xmm1, xmm0
mulss xmm1, xmm1
addss xmm1, xmm2
comiss xmm4, xmm1
jbe SHORT $LN3@f
inc ecx
$LN3@f:
imul edx, 1664525 ; 0019660dH
add edx, 1013904223 ; 3c6ef35fH
mov eax, edx
and eax, 8388607 ; 007fffffH
imul edx, 1664525 ; 0019660dH
bts eax, 30
add edx, 1013904223 ; 3c6ef35fH
mov DWORD PTR tmp$2[rsp], eax
mov eax, edx
and eax, 8388607 ; 007fffffH
bts eax, 30
movss xmm0, DWORD PTR tmp$2[rsp]
mov DWORD PTR tmp$1[rsp], eax
cvtps2pd xmm0, xmm0
subsd xmm0, xmm3
cvtpd2ps xmm2, xmm0
movss xmm0, DWORD PTR tmp$1[rsp]
cvtps2pd xmm0, xmm0
mulss xmm2, xmm2
subsd xmm0, xmm3
cvtpd2ps xmm1, xmm0
mulss xmm1, xmm1
addss xmm1, xmm2
comiss xmm4, xmm1
jbe SHORT $LN15@f
inc ecx
$LN15@f:
imul edx, 1664525 ; 0019660dH
add edx, 1013904223 ; 3c6ef35fH
mov eax, edx
and eax, 8388607 ; 007fffffH
imul edx, 1664525 ; 0019660dH
bts eax, 30
add edx, 1013904223 ; 3c6ef35fH
mov DWORD PTR tmp$2[rsp], eax
mov eax, edx
and eax, 8388607 ; 007fffffH
bts eax, 30
movss xmm0, DWORD PTR tmp$2[rsp]
mov DWORD PTR tmp$1[rsp], eax
cvtps2pd xmm0, xmm0
subsd xmm0, xmm3
cvtpd2ps xmm2, xmm0
movss xmm0, DWORD PTR tmp$1[rsp]
cvtps2pd xmm0, xmm0
mulss xmm2, xmm2
subsd xmm0, xmm3
cvtpd2ps xmm1, xmm0
mulss xmm1, xmm1
addss xmm1, xmm2
comiss xmm4, xmm1
jbe SHORT $LN16@f
inc ecx
549
73.5. l\lkClSl 2.5 Cn/l1lk 73. llvll 2
$LN16@f:
imul edx, 1664525 ; 0019660dH
add edx, 1013904223 ; 3c6ef35fH
mov eax, edx
and eax, 8388607 ; 007fffffH
imul edx, 1664525 ; 0019660dH
bts eax, 30
add edx, 1013904223 ; 3c6ef35fH
mov DWORD PTR tmp$2[rsp], eax
mov eax, edx
and eax, 8388607 ; 007fffffH
bts eax, 30
movss xmm0, DWORD PTR tmp$2[rsp]
mov DWORD PTR tmp$1[rsp], eax
cvtps2pd xmm0, xmm0
subsd xmm0, xmm3
cvtpd2ps xmm2, xmm0
movss xmm0, DWORD PTR tmp$1[rsp]
cvtps2pd xmm0, xmm0
mulss xmm2, xmm2
subsd xmm0, xmm3
cvtpd2ps xmm1, xmm0
mulss xmm1, xmm1
addss xmm1, xmm2
comiss xmm4, xmm1
jbe SHORT $LN17@f
inc ecx
$LN17@f:
imul edx, 1664525 ; 0019660dH
add edx, 1013904223 ; 3c6ef35fH
mov eax, edx
and eax, 8388607 ; 007fffffH
imul edx, 1664525 ; 0019660dH
bts eax, 30
add edx, 1013904223 ; 3c6ef35fH
mov DWORD PTR tmp$2[rsp], eax
mov eax, edx
and eax, 8388607 ; 007fffffH
bts eax, 30
movss xmm0, DWORD PTR tmp$2[rsp]
mov DWORD PTR tmp$1[rsp], eax
cvtps2pd xmm0, xmm0
subsd xmm0, xmm3
cvtpd2ps xmm2, xmm0
movss xmm0, DWORD PTR tmp$1[rsp]
cvtps2pd xmm0, xmm0
mulss xmm2, xmm2
subsd xmm0, xmm3
cvtpd2ps xmm1, xmm0
mulss xmm1, xmm1
addss xmm1, xmm2
comiss xmm4, xmm1
jbe SHORT $LN18@f
inc ecx
$LN18@f:
dec r8
jne $LL4@f
movd xmm0, ecx
mov DWORD PTR ?RNG_state@?1??get_rand@@9@9, edx
cvtdq2ps xmm0, xmm0
cvtps2pd xmm1, xmm0
550
73.5. l\lkClSl 2.5 Cn/l1lk 73. llvll 2
mulsd xmm1, QWORD PTR __real@4010000000000000
divsd xmm1, QWORD PTR __real@412e848000000000
cvtpd2ps xmm0, xmm1
ret 0
f ENDP
78.1$.2 6CC 4.4.8 -o8 x84
f1:
mov eax, DWORD PTR v1.2084[rip]
imul eax, eax, 1664525
add eax, 1013904223
mov DWORD PTR v1.2084[rip], eax
and eax, 8388607
or eax, 1073741824
mov DWORD PTR [rsp-4], eax
movss xmm0, DWORD PTR [rsp-4]
subss xmm0, DWORD PTR .LC0[rip]
ret
f:
push rbp
xor ebp, ebp
push rbx
xor ebx, ebx
sub rsp, 16
.L6:
xor eax, eax
call f1
xor eax, eax
movss DWORD PTR [rsp], xmm0
call f1
movss xmm1, DWORD PTR [rsp]
mulss xmm0, xmm0
mulss xmm1, xmm1
lea eax, [rbx+1]
addss xmm1, xmm0
movss xmm0, DWORD PTR .LC1[rip]
ucomiss xmm0, xmm1
cmova ebx, eax
add ebp, 1
cmp ebp, 1000000
jne .L6
cvtsi2ss xmm0, ebx
unpcklps xmm0, xmm0
cvtps2pd xmm0, xmm0
mulsd xmm0, QWORD PTR .LC2[rip]
divsd xmm0, QWORD PTR .LC3[rip]
add rsp, 16
pop rbx
pop rbp
unpcklpd xmm0, xmm0
cvtpd2ps xmm0, xmm0
ret
v1.2084:
.long 305419896
.LC0:
.long 1077936128
.LC1:
.long 1065353216
.LC2:
551
73.5. l\lkClSl 2.5 Cn/l1lk 73. llvll 2
.long 0
.long 1074790400
.LC3:
.long 0
.long 1093567616
78.1$.8 6CC 4.8.1 -o8 x88
f1:
sub esp, 4
imul eax, DWORD PTR v1.2023, 1664525
add eax, 1013904223
mov DWORD PTR v1.2023, eax
and eax, 8388607
or eax, 1073741824
mov DWORD PTR [esp], eax
fld DWORD PTR [esp]
fsub DWORD PTR .LC0
add esp, 4
ret
f:
push esi
mov esi, 1000000
push ebx
xor ebx, ebx
sub esp, 16
.L7:
call f1
fstp DWORD PTR [esp]
call f1
lea eax, [ebx+1]
fld DWORD PTR [esp]
fmul st, st(0)
fxch st(1)
fmul st, st(0)
faddp st(1), st
fld1
fucomip st, st(1)
fstp st(0)
cmova ebx, eax
sub esi, 1
jne .L7
mov DWORD PTR [esp+4], ebx
fild DWORD PTR [esp+4]
fmul DWORD PTR .LC3
fdiv DWORD PTR .LC4
fstp DWORD PTR [esp+8]
fld DWORD PTR [esp+8]
add esp, 16
pop ebx
pop esi
ret
v1.2023:
.long 305419896
.LC0:
.long 1077936128
.LC3:
.long 1082130432
.LC4:
552
73.5. l\lkClSl 2.5 Cn/l1lk 73. llvll 2
.long 1232348160
78.1$.4 Keil (ARHmcde): Ccrtex-R4f CU as taret
f1 PROC
LDR r1,|L0.184|
LDR r0,[r1,#0] ; v1
LDR r2,|L0.188|
VMOV.F32 s1,#3.00000000
MUL r0,r0,r2
LDR r2,|L0.192|
ADD r0,r0,r2
STR r0,[r1,#0] ; v1
BFC r0,#23,#9
ORR r0,r0,#0x40000000
VMOV s0,r0
VSUB.F32 s0,s0,s1
BX lr
ENDP
f PROC
PUSH {r4,r5,lr}
MOV r4,#0
LDR r5,|L0.196|
MOV r3,r4
|L0.68|
BL f1
VMOV.F32 s2,s0
BL f1
VMOV.F32 s1,s2
ADD r3,r3,#1
VMUL.F32 s1,s1,s1
VMLA.F32 s1,s0,s0
VMOV r0,s1
CMP r0,#0x3f800000
ADDLT r4,r4,#1
CMP r3,r5
BLT |L0.68|
VMOV s0,r4
VMOV.F64 d1,#4.00000000
VCVT.F32.S32 s0,s0
VCVT.F64.F32 d0,s0
VMUL.F64 d0,d0,d1
VLDR d1,|L0.200|
VDIV.F64 d2,d0,d1
VCVT.F32.F64 s0,d2
POP {r4,r5,pc}
ENDP
|L0.184|
DCD ||.data||
|L0.188|
DCD 0x0019660d
|L0.192|
DCD 0x3c6ef35f
|L0.196|
DCD 0x000f4240
|L0.200|
DCFD 0x412e848000000000 ; 1000000
553
73.6. l\lkClSl 2.6 Cn/l1lk 73. llvll 2
DCD 0x00000000
AREA ||.data||, DATA, ALIGN=2
v1
DCD 0x12345678
78.18 xercise 2.18
Well-known function. What it computes? Why stack overflows if and are supplied at input? Are there any error?
78.18.1 H5vC 2012 x84 jox
m$ = 48
n$ = 56
f PROC
$LN14:
push rbx
sub rsp, 32
mov eax, edx
mov ebx, ecx
test ecx, ecx
je SHORT $LN11@f
$LL5@f:
test eax, eax
jne SHORT $LN1@f
mov eax, 1
jmp SHORT $LN12@f
$LN1@f:
lea edx, DWORD PTR [rax-1]
mov ecx, ebx
call f
$LN12@f:
dec ebx
test ebx, ebx
jne SHORT $LL5@f
$LN11@f:
inc eax
add rsp, 32
pop rbx
ret 0
f ENDP
78.18.2 Keil (ARH) -o8
f PROC
PUSH {r4,lr}
MOVS r4,r0
ADDEQ r0,r1,#1
POPEQ {r4,pc}
CMP r1,#0
MOVEQ r1,#1
SUBEQ r0,r0,#1
BEQ |L0.48|
SUB r1,r1,#1
BL f
MOV r1,r0
SUB r0,r4,#1
|L0.48|
554
73.7. l\lkClSl 2.7 Cn/l1lk 73. llvll 2
POP {r4,lr}
B f
ENDP
78.18.8 Keil (tbumb) -o8
f PROC
PUSH {r4,lr}
MOVS r4,r0
BEQ |L0.26|
CMP r1,#0
BEQ |L0.30|
SUBS r1,r1,#1
BL f
MOVS r1,r0
|L0.18|
SUBS r0,r4,#1
BL f
POP {r4,pc}
|L0.26|
ADDS r0,r1,#1
POP {r4,pc}
|L0.30|
MOVS r1,#1
B |L0.18|
ENDP
78.17 xercise 2.17
This program prints some information to stJoot, each time diferent. What is it?
Compiled binaries:
Linux x: http://yurichev.com/RE-exercises/2/17/17_Linux_x64.tar
Mac OS X: http://yurichev.com/RE-exercises/2/17/17_MacOSX_x64.tar
Win: http://yurichev.com/RE-exercises/2/17/17_win32.exe
Win: http://yurichev.com/RE-exercises/2/17/17_win64.exe
As of Windows versions, you may need to install MSVC redist.
78.18 xercise 2.18
This program requires password. Find it.
By the way, multiple passwords may work. Try to find more.
As an additional exercise, try to change the password by patching executable file.
Win: http://yurichev.com/RE-exercises/2/18/password2.exe
Linux x: http://yurichev.com/RE-exercises/2/18/password2_Linux_x86.tar
Mac OS X: http://yurichev.com/RE-exercises/2/18/password2_MacOSX64.tar
555
73.9. l\lkClSl 2.9 Cn/l1lk 73. llvll 2
78.19 xercise 2.19
The same as in exercise ..
Win: http://yurichev.com/RE-exercises/2/19/password3.exe
Linux x: http://yurichev.com/RE-exercises/2/19/password3_Linux_x86.tar
Mac OS X: http://yurichev.com/RE-exercises/2/19/password3_MacOSX64.tar
556
Cn/l1lk 74. llvll 3
Cbapter 74
Level 8
For solving level tasks, youll probably need considerable ammount of time, maybe up to one day.
74.1 xercise 8.1
Well-known algorithm, also included in standard C library. Source code was taken from glibc ... Compiled in GCC ..
with-Os option(code size optimization). Listing was done by IDA. disassembler fromELF-file generatedby GCCandlinker.
For those who wants use IDA while learning, here you may find .elf and .idb files, .idb can be opened with freeware IDA
.:
http://yurichev.com/RE-exercises/3/1/
f proc near
var_150 = dword ptr -150h
var_14C = dword ptr -14Ch
var_13C = dword ptr -13Ch
var_138 = dword ptr -138h
var_134 = dword ptr -134h
var_130 = dword ptr -130h
var_128 = dword ptr -128h
var_124 = dword ptr -124h
var_120 = dword ptr -120h
var_11C = dword ptr -11Ch
var_118 = dword ptr -118h
var_114 = dword ptr -114h
var_110 = dword ptr -110h
var_C = dword ptr -0Ch
arg_0 = dword ptr 8
arg_4 = dword ptr 0Ch
arg_8 = dword ptr 10h
arg_C = dword ptr 14h
arg_10 = dword ptr 18h
push ebp
mov ebp, esp
push edi
push esi
push ebx
sub esp, 14Ch
mov ebx, [ebp+arg_8]
cmp [ebp+arg_4], 0
jz loc_804877D
cmp [ebp+arg_4], 4
lea eax, ds:0[ebx*4]
mov [ebp+var_130], eax
jbe loc_804864C
mov eax, [ebp+arg_4]
557
74.. l\lkClSl 3. Cn/l1lk 74. llvll 3
mov ecx, ebx
mov esi, [ebp+arg_0]
lea edx, [ebp+var_110]
neg ecx
mov [ebp+var_118], 0
mov [ebp+var_114], 0
dec eax
imul eax, ebx
add eax, [ebp+arg_0]
mov [ebp+var_11C], edx
mov [ebp+var_134], ecx
mov [ebp+var_124], eax
lea eax, [ebp+var_118]
mov [ebp+var_14C], eax
mov [ebp+var_120], ebx
loc_8048433: ; CODE XREF: f+28C
mov eax, [ebp+var_124]
xor edx, edx
push edi
push [ebp+arg_10]
sub eax, esi
div [ebp+var_120]
push esi
shr eax, 1
imul eax, [ebp+var_120]
lea edx, [esi+eax]
push edx
mov [ebp+var_138], edx
call [ebp+arg_C]
add esp, 10h
mov edx, [ebp+var_138]
test eax, eax
jns short loc_8048482
xor eax, eax
loc_804846D: ; CODE XREF: f+CC
mov cl, [edx+eax]
mov bl, [esi+eax]
mov [edx+eax], bl
mov [esi+eax], cl
inc eax
cmp [ebp+var_120], eax
jnz short loc_804846D
loc_8048482: ; CODE XREF: f+B5
push ebx
push [ebp+arg_10]
mov [ebp+var_138], edx
push edx
push [ebp+var_124]
call [ebp+arg_C]
mov edx, [ebp+var_138]
add esp, 10h
test eax, eax
jns short loc_80484F6
mov ecx, [ebp+var_124]
xor eax, eax
loc_80484AB: ; CODE XREF: f+10D
movzx edi, byte ptr [edx+eax]
558
74.. l\lkClSl 3. Cn/l1lk 74. llvll 3
mov bl, [ecx+eax]
mov [edx+eax], bl
mov ebx, edi
mov [ecx+eax], bl
inc eax
cmp [ebp+var_120], eax
jnz short loc_80484AB
push ecx
push [ebp+arg_10]
mov [ebp+var_138], edx
push esi
push edx
call [ebp+arg_C]
add esp, 10h
mov edx, [ebp+var_138]
test eax, eax
jns short loc_80484F6
xor eax, eax
loc_80484E1: ; CODE XREF: f+140
mov cl, [edx+eax]
mov bl, [esi+eax]
mov [edx+eax], bl
mov [esi+eax], cl
inc eax
cmp [ebp+var_120], eax
jnz short loc_80484E1
loc_80484F6: ; CODE XREF: f+ED
; f+129
mov eax, [ebp+var_120]
mov edi, [ebp+var_124]
add edi, [ebp+var_134]
lea ebx, [esi+eax]
jmp short loc_8048513
loc_804850D: ; CODE XREF: f+17B
add ebx, [ebp+var_120]
loc_8048513: ; CODE XREF: f+157
; f+1F9
push eax
push [ebp+arg_10]
mov [ebp+var_138], edx
push edx
push ebx
call [ebp+arg_C]
add esp, 10h
mov edx, [ebp+var_138]
test eax, eax
jns short loc_8048537
jmp short loc_804850D
loc_8048531: ; CODE XREF: f+19D
add edi, [ebp+var_134]
loc_8048537: ; CODE XREF: f+179
push ecx
push [ebp+arg_10]
mov [ebp+var_138], edx
push edi
559
74.. l\lkClSl 3. Cn/l1lk 74. llvll 3
push edx
call [ebp+arg_C]
add esp, 10h
mov edx, [ebp+var_138]
test eax, eax
js short loc_8048531
cmp ebx, edi
jnb short loc_8048596
xor eax, eax
mov [ebp+var_128], edx
loc_804855F: ; CODE XREF: f+1BE
mov cl, [ebx+eax]
mov dl, [edi+eax]
mov [ebx+eax], dl
mov [edi+eax], cl
inc eax
cmp [ebp+var_120], eax
jnz short loc_804855F
mov edx, [ebp+var_128]
cmp edx, ebx
jnz short loc_8048582
mov edx, edi
jmp short loc_8048588
loc_8048582: ; CODE XREF: f+1C8
cmp edx, edi
jnz short loc_8048588
mov edx, ebx
loc_8048588: ; CODE XREF: f+1CC
; f+1D0
add ebx, [ebp+var_120]
add edi, [ebp+var_134]
jmp short loc_80485AB
loc_8048596: ; CODE XREF: f+1A1
jnz short loc_80485AB
mov ecx, [ebp+var_134]
mov eax, [ebp+var_120]
lea edi, [ebx+ecx]
add ebx, eax
jmp short loc_80485B3
loc_80485AB: ; CODE XREF: f+1E0
; f:loc_8048596
cmp ebx, edi
jbe loc_8048513
loc_80485B3: ; CODE XREF: f+1F5
mov eax, edi
sub eax, esi
cmp eax, [ebp+var_130]
ja short loc_80485EB
mov eax, [ebp+var_124]
mov esi, ebx
sub eax, ebx
cmp eax, [ebp+var_130]
ja short loc_8048634
sub [ebp+var_11C], 8
mov edx, [ebp+var_11C]
560
74.. l\lkClSl 3. Cn/l1lk 74. llvll 3
mov ecx, [edx+4]
mov esi, [edx]
mov [ebp+var_124], ecx
jmp short loc_8048634
loc_80485EB: ; CODE XREF: f+209
mov edx, [ebp+var_124]
sub edx, ebx
cmp edx, [ebp+var_130]
jbe short loc_804862E
cmp eax, edx
mov edx, [ebp+var_11C]
lea eax, [edx+8]
jle short loc_8048617
mov [edx], esi
mov esi, ebx
mov [edx+4], edi
mov [ebp+var_11C], eax
jmp short loc_8048634
loc_8048617: ; CODE XREF: f+252
mov ecx, [ebp+var_11C]
mov [ebp+var_11C], eax
mov [ecx], ebx
mov ebx, [ebp+var_124]
mov [ecx+4], ebx
loc_804862E: ; CODE XREF: f+245
mov [ebp+var_124], edi
loc_8048634: ; CODE XREF: f+21B
; f+235 ...
mov eax, [ebp+var_14C]
cmp [ebp+var_11C], eax
ja loc_8048433
mov ebx, [ebp+var_120]
loc_804864C: ; CODE XREF: f+2A
mov eax, [ebp+arg_4]
mov ecx, [ebp+arg_0]
add ecx, [ebp+var_130]
dec eax
imul eax, ebx
add eax, [ebp+arg_0]
cmp ecx, eax
mov [ebp+var_120], eax
jbe short loc_804866B
mov ecx, eax
loc_804866B: ; CODE XREF: f+2B3
mov esi, [ebp+arg_0]
mov edi, [ebp+arg_0]
add esi, ebx
mov edx, esi
jmp short loc_80486A3
loc_8048677: ; CODE XREF: f+2F1
push eax
push [ebp+arg_10]
mov [ebp+var_138], edx
mov [ebp+var_13C], ecx
561
74.. l\lkClSl 3. Cn/l1lk 74. llvll 3
push edi
push edx
call [ebp+arg_C]
add esp, 10h
mov edx, [ebp+var_138]
mov ecx, [ebp+var_13C]
test eax, eax
jns short loc_80486A1
mov edi, edx
loc_80486A1: ; CODE XREF: f+2E9
add edx, ebx
loc_80486A3: ; CODE XREF: f+2C1
cmp edx, ecx
jbe short loc_8048677
cmp edi, [ebp+arg_0]
jz loc_8048762
xor eax, eax
loc_80486B2: ; CODE XREF: f+313
mov ecx, [ebp+arg_0]
mov dl, [edi+eax]
mov cl, [ecx+eax]
mov [edi+eax], cl
mov ecx, [ebp+arg_0]
mov [ecx+eax], dl
inc eax
cmp ebx, eax
jnz short loc_80486B2
jmp loc_8048762
loc_80486CE: ; CODE XREF: f+3C3
lea edx, [esi+edi]
jmp short loc_80486D5
loc_80486D3: ; CODE XREF: f+33B
add edx, edi
loc_80486D5: ; CODE XREF: f+31D
push eax
push [ebp+arg_10]
mov [ebp+var_138], edx
push edx
push esi
call [ebp+arg_C]
add esp, 10h
mov edx, [ebp+var_138]
test eax, eax
js short loc_80486D3
add edx, ebx
cmp edx, esi
mov [ebp+var_124], edx
jz short loc_804876F
mov edx, [ebp+var_134]
lea eax, [esi+ebx]
add edx, eax
mov [ebp+var_11C], edx
jmp short loc_804875B
loc_8048710: ; CODE XREF: f+3AA
562
74.2. l\lkClSl 3.2 Cn/l1lk 74. llvll 3
mov cl, [eax]
mov edx, [ebp+var_11C]
mov [ebp+var_150], eax
mov byte ptr [ebp+var_130], cl
mov ecx, eax
jmp short loc_8048733
loc_8048728: ; CODE XREF: f+391
mov al, [edx+ebx]
mov [ecx], al
mov ecx, [ebp+var_128]
loc_8048733: ; CODE XREF: f+372
mov [ebp+var_128], edx
add edx, edi
mov eax, edx
sub eax, edi
cmp [ebp+var_124], eax
jbe short loc_8048728
mov dl, byte ptr [ebp+var_130]
mov eax, [ebp+var_150]
mov [ecx], dl
dec [ebp+var_11C]
loc_804875B: ; CODE XREF: f+35A
dec eax
cmp eax, esi
jnb short loc_8048710
jmp short loc_804876F
loc_8048762: ; CODE XREF: f+2F6
; f+315
mov edi, ebx
neg edi
lea ecx, [edi-1]
mov [ebp+var_134], ecx
loc_804876F: ; CODE XREF: f+347
; f+3AC
add esi, ebx
cmp esi, [ebp+var_120]
jbe loc_80486CE
loc_804877D: ; CODE XREF: f+13
lea esp, [ebp-0Ch]
pop ebx
pop esi
pop edi
pop ebp
retn
f endp
74.2 xercise 8.2
There is a small executable file with a well-known cryptosystem inside. Try to identify it.
Windows x: http://yurichev.com/RE-exercises/3/2/unknown_cryptosystem.exe
Linux x: http://yurichev.com/RE-exercises/3/2/unknown_encryption_linux86.tar
Mac OS X (x): http://yurichev.com/RE-exercises/3/2/unknown_encryption_MacOSX.tar
563
74.3. l\lkClSl 3.3 Cn/l1lk 74. llvll 3
74.8 xercise 8.8
There is a small executable file, some utility. It opens another file, reads it, calculate something and prints a float number.
Try to understand what it do.
Windows x: http://yurichev.com/RE-exercises/3/3/unknown_utility_2_3.exe
Linux x: http://yurichev.com/RE-exercises/3/3/unknown_utility_2_3_Linux86.tar
Mac OS X (x): http://yurichev.com/RE-exercises/3/3/unknown_utility_2_3_MacOSX.tar
74.4 xercise 8.4
There is an utility which encrypts/decrypts files, by password. There is an encrypted text file, password is unknown. En-
crypted file is a text in English language. The utility uses relatively strong cryptosystem, nevertheless, it was implemented
with a serious blunder. Since the mistake present, it is possible to decrypt the file with a little efort..
Try to find the mistake and decrypt the file.
Windows x: http://yurichev.com/RE-exercises/3/4/amateur_cryptor.exe
Text file: http://yurichev.com/RE-exercises/3/4/text_encrypted
74.$ xercise 8.$
This is sofwarecopyprotectionimitation, whichuses keyfile. Thekeyfilecontainuser (or customer) nameandserial number.
There are two tasks:
(Easy) with the help of tracer or any other debugger, force the program to accept changed key file.
(Medium) your goal is to modify user name to another, however, it is not allowed to patch the program.
Windows x: http://yurichev.com/RE-exercises/3/5/super_mega_protection.exe
Linux x: http://yurichev.com/RE-exercises/3/5/super_mega_protection.tar
Mac OS X (x) http://yurichev.com/RE-exercises/3/5/super_mega_protection_MacOSX.tar
Key file: http://yurichev.com/RE-exercises/3/5/sample.key
74.8 xercise 8.8
Here is a very primitive toy web-server, supporting only static files, without CGI
(x) RF (Resume)
, , or denormal)
The register is empty
8.4 5lHb-reisters
8.4.1 HHk-reisters
-bit registers: MM..MM.
8.4.2 55 and Avk-reisters
SSE: -bit registers: XMM..XMM. In the x- more registers were added: XMM..XMM.
AVX is the extension of all these registers to bits.
8.$ bebuin reisters
Used for hardware breakpoints control.
DR address of breakpoint #
DR address of breakpoint #
DR address of breakpoint #
DR address of breakpoint #
DR a cause of break is reflected here
DR breakpoint types are set here
8.$.1 bR8
Bit (mask) Description
() B breakpoint # was triggered
() B breakpoint # was triggered
() B breakpoint # was triggered
() B breakpoint # was triggered
(x) BD modification attempt of one of DRx registers.
may be raised if GD is enabled
(x) BS single step breakpoint (TF flag was set in EFLAGS).
Highest priority. Other bits may also be set.
(x) BT (task switch flag)
Not a Number
576
B.6. lnS1kuC1l0nS /lllnul\ B. \86
N.B. Single step breakpoint is a breakpoint occurring afer each instruction. It can be enabled by setting TF in EFLAGS
(B..).
8.$.2 bR7
Breakpoint types are set here.
Bit (mask) Description
() L enable breakpoint # for the current task
() G enable breakpoint # for all tasks
() L enable breakpoint # for the current task
() G enable breakpoint # for all tasks
(x) L enable breakpoint # for the current task
(x) G enable breakpoint # for all tasks
(x) L enable breakpoint # for the current task
(x) G enable breakpoint # for all tasks
(x) LE not supported since P
(x) GE not supported since P
(x) GD exception will be raised if any MOV instruction
tries to modify one of DRx registers
, (x) breakpoint #: R/W type
, (xC) breakpoint #: LEN length
, (x) breakpoint #: R/W type
, (xC) breakpoint #: LEN length
, (x) breakpoint #: R/W type
, (xC) breakpoint #: LEN length
, (x) breakpoint #: R/W type
, (xC) breakpoint #: LEN length
Breakpoint type is to be set as follows (R/W):
instruction execution
data writes
I/O reads or writes (not available in user-mode)
on data reads or writes
N.B.: breakpoint type for data reads is absent, indeed.
Breakpoint length is to be set as follows (LEN):
one-byte
two-byte
undefined for -bit mode, eight-byte in -bit mode
four-byte
8.8 lnstructicns
Instructions marked as (M) are not usually generated by compiler: if you see it, it is probably hand-written piece of assembly
code, or this is compiler intrinsic ().
Only most frequently used instructions are listed here. Read [] or [] for a full documentation.
577
B.6. lnS1kuC1l0nS /lllnul\ B. \86
8.8.1 refixes
LoCK force CPUto make exclusive access to the RAMin multiprocessor environment. For the sake of simplification, it can be
said that when instruction with this prefix is executed, all other CPUs in multiprocessor system is stopped. Most ofen
it is used for critical sections, semaphores, mutexes. Commonly used with ADD, AND, BTR, BTS, CMPXCHG, OR, XADD,
XOR. Read more about critical sections (.).
R used with MOVSx and STOSx: execute the instruction in loop, counter is located in the CX/ECX/RCX register. For detailed
description, read more about MOVSx (B..) and STOSx (B..) instructions.
Instructions prefixed by REP are sensitive to DF flag, which is used to set direction.
RjRN (AKAREPZ/REPNZ) usedwithCMPSx andSCASx: executethelast instructioninloop, count is set intheCX/ECX/RCX
register. It will terminate prematurely if ZF is (REPE) or if ZF is (REPNE).
For detailed description, read more about CMPSx (B..) and SCASx (B..) instructions.
Instructions prefixed by REPE/REPNE are sensitive to DF flag, which is used to set direction.
8.8.2 Hcst frequently used instructicns
These can be memorized in the first place.
AbC (cJJ w|tl ccrry) add values, increment result if CF flag is set. ofen used for addition of large values, for example, to add
two -bit values in -bit environment using two ADD and ADC instructions, for example:
; work with 64-bit values: add val1 to val2.
; .lo mean lowest 32 bits, .hi means highest.
ADD val1.lo, val2.lo
ADC val1.hi, val2.hi ; use CF set or cleared at the previous instruction
One more example: .
Abb add two values
ANb logical and
CALL call another function: PUSH address_after_CALL_instruction; JMP label
CH compare values and set flags, the same as SUB but no results writing
bC decrement. CF flag is not touched.
lHUL signed multiply
lNC increment. CF flag is not touched.
JCk2, JCk2, JRCk2 (M) jump if CX/ECX/RCX=
JH jump to another address. Opcode has jump ofset.
Jcc (where cccondition code)
A lot of instructions has synonyms (denoted with AKA), this was done for convenience. Synonymous instructions are
translating into the same opcode. Opcode has jump ofset.
JA AKA JNC: jump if above or equal (unsigned): CF=
JA AKA JNBE: jump if greater (unsigned): CF= and ZF=
J8 jump if lesser or equal (unsigned): CF= or ZF=
J8 AKA JC: jump if below (unsigned): CF=
JC AKA JB: jump if CF=
J AKA JZ: jump if equal or zero: ZF=
J6 jump if greater or equal (signed): SF=OF
J6 jump if greater (signed): ZF= and SF=OF
JL jump if lesser or equal (signed): ZF= or SFOF
JL jump if lesser (signed): SFOF
578
B.6. lnS1kuC1l0nS /lllnul\ B. \86
JNA AKA JC: jump if not above or equal (unsigned) CF=
JNA jump if not above (unsigned) CF= and ZF=
JN8 jump if not below or equal (unsigned): CF= and ZF=
JN8 AKA JNC: jump if not below (unsigned): CF=
JNC AKA JAE: jump CF= synonymous to JNB.
JN AKA JNZ: jump if not equal or not zero: ZF=
JN6 jump if not greater or equal (signed): SFOF
JN6 jump if not greater (signed): ZF= or SFOF
JNL jump if not lesser (signed): ZF= and SF=OF
JNL jump if not lesser (signed): SF=OF
JNo jump if not overflow: OF=
JN5 jump if SF flag is cleared
JN2 AKA JNE: jump if not equal or not zero: ZF=
Jo jump if overflow: OF=
Jo jump if PF flag is cleared
J AKA JPE: jump if PF flag is set
J5 jump if SF flag is set
J2 AKA JE: jump if equal or zero: ZF=
LARf copy some flag bits to AH
LAv equivalent of the MOV ESP, EBP andPOP EBP instruction pairinother words, this instructionsets the stack pointer
(ESP) back and restores the EBP register to its initial state.
LA (locJ lfect|ve /JJress) form address
This instruction was intended not for values summing and multiplication but for address forming, e.g., for forming ad-
dress of array element by adding array address, element index, with multiplication of element size
.
So, the diference between MOV and LEA is that MOV forms memory address and loads value from memory or stores
it there, but LEA just forms an address.
But nevertheless, it is can be used for any other calculations.
LEA is convenient because the computations performing by it is not alter CPU flags.
int f(int a, int b)
{
return a*8+b;
};
Listing B.: MSVC /Ox
_a$ = 8 ; size = 4
_b$ = 12 ; size = 4
_f PROC
mov eax, DWORD PTR _b$[esp-4]
mov ecx, DWORD PTR _a$[esp-4]
lea eax, DWORD PTR [eax+ecx*8]
ret 0
_f ENDP
Intel C++ uses LEA even more:
int f1(int a)
{
return a*13;
};
values. op1 = op1 op2. frequently occurred pattern XOR reg,reg meaning write to reg.
8.8.8 Less frequently used instructicns
85f b|t sccn forwcrJ, see also: .
85R b|t sccn reverse
85wA (byte swc;, change value endianness.
81C bit test and complement
81R bit test and reset
815 bit test and set
81 bit test
C8wjCwbjCwbjCbqjCbq Sign-extend value:
C8w : convert byte in AL to word in AX
Cwb : convert word in AX to doubleword in DX:AX
Cwb : convert word in AX to doubleword in EAX
Cbq : convert doubleword in EAX to quadword in EDX:EAX
Cbq (x): convert doubleword in EAX to quadword in RAX
These instructions consider values sign, extending it to high part of newly constructed value. See also: ..
CLb clear DF flag.
CLl (M) clear IF flag
CHC (M) toggle CF flag
CHovcc conditional MOV: load if condition is true The condition codes are the same as in Jcc instructions (B..).
CH58jCH5wjCH5bjCH5q (M) compare byte/ -bit word/ -bit word/ -bit word from the place address of which
is in the SI/ESI/RSI with a variable address of which is in the DI/EDI/RDI. Set flags as CMP does.
Together with REPprefix, it will repeated in loop, count is stored in the CX/ECX/RCX register, the process will be running
util ZF flag is zero (e.g., until compared values are equal to each other, hence E in REPE).
It works like memcmp() in C.
Example from Windows NT kernel (WRK v.):
eXclusive OR
582
B.6. lnS1kuC1l0nS /lllnul\ B. \86
Listing B.: base\ntos\rtl\i\movemem.asm
; ULONG
; RtlCompareMemory (
; IN PVOID Source1,
; IN PVOID Source2,
; IN ULONG Length
; )
;
; Routine Description:
;
; This function compares two blocks of memory and returns the number
; of bytes that compared equal.
;
; Arguments:
;
; Source1 (esp+4) - Supplies a pointer to the first block of memory to
; compare.
;
; Source2 (esp+8) - Supplies a pointer to the second block of memory to
; compare.
;
; Length (esp+12) - Supplies the Length, in bytes, of the memory to be
; compared.
;
; Return Value:
;
; The number of bytes that compared equal is returned as the function
; value. If all bytes compared equal, then the length of the original
; block of memory is returned.
;
;--
RcmSource1 equ [esp+12]
RcmSource2 equ [esp+16]
RcmLength equ [esp+20]
CODE_ALIGNMENT
cPublicProc _RtlCompareMemory,3
cPublicFpo 3,0
push esi ; save registers
push edi ;
cld ; clear direction
mov esi,RcmSource1 ; (esi) -> first block to compare
mov edi,RcmSource2 ; (edi) -> second block to compare
;
; Compare dwords, if any.
;
rcm10: mov ecx,RcmLength ; (ecx) = length in bytes
shr ecx,2 ; (ecx) = length in dwords
jz rcm20 ; no dwords, try bytes
repe cmpsd ; compare dwords
jnz rcm40 ; mismatch, go find byte
;
; Compare residual bytes, if any.
;
rcm20: mov ecx,RcmLength ; (ecx) = length in bytes
583
B.6. lnS1kuC1l0nS /lllnul\ B. \86
and ecx,3 ; (ecx) = length mod 4
jz rcm30 ; 0 odd bytes, go do dwords
repe cmpsb ; compare odd bytes
jnz rcm50 ; mismatch, go report how far we got
;
; All bytes in the block match.
;
rcm30: mov eax,RcmLength ; set number of matching bytes
pop edi ; restore registers
pop esi ;
stdRET _RtlCompareMemory
;
; When we come to rcm40, esi (and edi) points to the dword after the
; one which caused the mismatch. Back up 1 dword and find the byte.
; Since we know the dword didnt match, we can assume one byte wont.
;
rcm40: sub esi,4 ; back up
sub edi,4 ; back up
mov ecx,5 ; ensure that ecx doesnt count out
repe cmpsb ; find mismatch byte
;
; When we come to rcm50, esi points to the byte after the one that
; did not match, which is TWO after the last byte that did match.
;
rcm50: dec esi ; back up
sub esi,RcmSource1 ; compute bytes that matched
mov eax,esi ;
pop edi ; restore registers
pop esi ;
stdRET _RtlCompareMemory
stdENDP _RtlCompareMemory
N.B.: this function uses -bit words comparison (CMPSD) if block size is multiple of , or per-byte comparison (CMPSB)
otherwise.
CUlb get information about CPU features. see also: (..).
blv unsigned division
lblv signed division
lN1 (M): INT x is analogous to PUSHF; CALL dword ptr [x*4] in -bit environment. It was widely used in MS-DOS, func-
tioning as syscalls. Registers AX/BX/CX/DX/SI/DI were filled by arguments and jump to the address in the Interrupt
Vector Table (located at the address space beginning) will be occurred. It was popular because INT has short opcode
( bytes) and the program which needs some MS-DOS services is not bothering by determining services entry point
address. Interrupt handler return control flow to called using IRET instruction.
Most busy MS-DOS interrupt number was x, serving a huge amount of its API. See also: [] for the most comprehen-
sive interrupt lists and other MS-DOS information.
In post-MS-DOS era, this instruction was still used as syscall both in Linux and Windows (), but later replaced by
SYSENTER or SYSCALL instruction.
lN1 8 (M): this instruction is somewhat standing aside of INT, it has its own -byte opcode (0xCC), and actively used while
debugging. Ofen, debuggers just write 0xCC byte at the address of breakpoint to be set, and when exception is raised,
original byte will be restored and original instruction at this address will be re-executed.
584
B.6. lnS1kuC1l0nS /lllnul\ B. \86
As of Windows NT, an EXCEPTION_BREAKPOINT exception will be raised when CPU executes this instruction. This de-
bugging event may be intercepted and handled by a host debugger, if loaded. If it is not loaded, Windows will ofer to
run one of the registered in the system debuggers. If MSVS
.
There are also a win function in kernel.dll named DebugBreak()
http://msdn.microsoft.com/en-us/library/f408b4et.aspx
http://msdn.microsoft.com/en-us/library/windows/desktop/ms679297(v=vs.85).aspx
585
B.6. lnS1kuC1l0nS /lllnul\ B. \86
CF
ROR: rotate right:
CF
Despite the fact that almost all CPUs has these instructions, there are no corresponding operations in the C/C++, so the
compilers of these PLs are usually not generating these instructions.
For programmers convenience, at least MSVC has pseudofunctions (compiler intrinsics) _rotl(; and _rotr(;
, which are
translated by compiler directly to these instructions.
5AL Arithmetic shif lef, synonymous to SHL
5AR Arithmetic shif right
CF
Hence, sign bit is always stayed at the place of MSB
.
51cc op: load toop(byteonly) if conditionis trueor zerootherwise. Theconditioncodes arethesameas inJcc instructions
(B..).
51C (M) set CF flag
51b (M) set DF flag
51l (M) set IF flag
55CALL (AMD) call syscall ()
55N1R (Intel) call syscall ()
Ub2 (M) undefined instruction, raises exception. used for testing.
8.8.4 fU instructicns
-Rin mnemonic usually means that operands are reversed, -Pmeans that one element is poppedfromthe stack afer instruc-
tion execution, -PP means that two elements are popped.
-P instructions are ofen useful when we do not need a value in the FPU stack to be present anymore.
fA85 replace value in ST() by absolute value in ST()
fAbb op: ST()=op+ST()
fAbb ST(), ST(i): ST()=ST()+ST(i)
fAbb ST()=ST()+ST(); pop one element from the stack, i.e., summed values in the stack are replaced by sum
fCR5 : ST()=-ST()
http://msdn.microsoft.com/en-us/library/5cc576c4.aspx
for
hiding some ofen used patterns of inline code.
f.2 ollybb
Short hot-keys cheatsheet:
https://github.com/yurichev/IDA_scripts
594
l.3. MSvC /lllnul\ l. Cnl/1Snll1S
hot-key meaning
F trace into
F step over
F run
Ctrl-F restart
f.8 H5vC
Some useful options I used through this book.
option meaning
/O minimize space
/Ob no inline expansion
/Ox maximum optimizations
/GS- disable security checks (bufer overflows)
/Fa(file) generate assembly listing
/Zi enable debugging information
/Zp(n) pack structs on n-byte boundary
/MD produced executable will use MSVCR*.DLL
f.4 6CC
Some useful options I used through this book.
option meaning
-Os code size optimization
-O maximum optimization
-regparm= how many arguments will be passed in registers
-o file set name of output file
-g produce debugging information in resulting executable
-S generate assembly listing file
-masm=intel produce listing in Intel syntax
f.$ 6b8
Some of commands I used in this book:
595
l.5. ouB /lllnul\ l. Cnl/1Snll1S
option meaning
break filename.c:number set a breakpoint on line number in source code
break function set a breakpoint on function
break *address set a breakpoint on address
b
p variable print value of variable
run run
r
cont continue execution
c
bt print stack
set disassembly-flavor intel set Intel syntax
disas disassemble current function
disas function disassemble function
disas function,+ disassemble portion
disas $eip,+x
info registers print all registers
info locals dump local variables (if known)
x/w ... dump memory as -bit word
x/w $rdi dump memory as -bit word at address stored in RDI
x/w ... dump memory words
x/s ... dump memory as string
x/i ... dump memory as code
x/c ... dump characters
x/b ... dump bytes
x/h ... dump -bit halfwords
x/g ... dump giant (-bit) words
finish execute till the end of function
next next instruction (dont dive into functions)
step next instruction (dive into functions)
frame n switch stack frame
info break list of breakpoints
del n delete breakpoint
596
/lllnul\ o. l\lkClSl S0lu1l0nS
Appendix 6
xercise scluticns
6.1 Level 1
6.1.1 xercise 1.1
That was a function returning maximal value from two.
6.1.2 xercise 1.4
Source code: http://yurichev.com/RE-exercise-solutions/1/4/password1.c
6.2 Level 2
6.2.1 xercise 2.1
Solution: toupper().
C source code:
char toupper ( char c )
{
if( c >= a && c <= z ) {
c = c - a + A;
}
return( c );
}
6.2.2 xercise 2.2
Solution: atoi()
C source code:
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int atoi ( const *p ) /* convert ASCII string to integer */
{
int i;
char s;
while( isspace ( *p ) )
++p;
s = *p;
if( s == + || s == - )
++p;
i = 0;
597
o.2. llvll 2 /lllnul\ o. l\lkClSl S0lu1l0nS
while( isdigit(*p) ) {
i = i * 10 + *p - 0;
++p;
}
if( s == - )
i = - i;
return( i );
}
6.2.8 xercise 2.8
Solution: srand() / rand().
C source code:
static unsigned int v;
void srand (unsigned int s)
{
v = s;
}
int rand ()
{
return( ((v = v * 214013L
+ 2531011L) >> 16) & 0x7fff );
}
6.2.4 xercise 2.4
Solution: strstr().
C source code:
char * strstr (
const char * str1,
const char * str2
)
{
char *cp = (char *) str1;
char *s1, *s2;
if ( !*str2 )
return((char *)str1);
while (*cp)
{
s1 = cp;
s2 = (char *) str2;
while ( *s1 && *s2 && !(*s1-*s2) )
s1++, s2++;
if (!*s2)
return(cp);
cp++;
}
return(NULL);
}
598
o.2. llvll 2 /lllnul\ o. l\lkClSl S0lu1l0nS
6.2.$ xercise 2.$
Hint #: Keep in mind that __vglobal variable.
Hint #: The function is called in CRT startup code, before main() execution.
Solution: early Pentium CPU FDIV bug checking
.
C source code:
unsigned _v; // _v
enum e {
PROB_P5_DIV = 0x0001
};
void f( void ) // __verify_pentium_fdiv_bug
{
/*
Verify we have got the Pentium FDIV problem.
The volatiles are to scare the optimizer away.
*/
volatile double v1 = 4195835;
volatile double v2 = 3145727;
if( (v1 - (v1/v2)*v2) > 1.0e-8 ) {
_v |= PROB_P5_DIV;
}
}
6.2.8 xercise 2.8
Hint: it might be helpful to google a constant used here.
Solution: TEA
encryption algorithm.
C source code (taken fromhttp://en.wikipedia.org/wiki/Tiny_Encryption_Algorithm):
void f (unsigned int* v, unsigned int* k) {
unsigned int v0=v[0], v1=v[1], sum=0, i; /* set up */
unsigned int delta=0x9e3779b9; /* a key schedule constant */
unsigned int k0=k[0], k1=k[1], k2=k[2], k3=k[3]; /* cache key */
for (i=0; i < 32; i++) { /* basic cycle start */
sum += delta;
v0 += ((v1<<4) + k0) ^ (v1 + sum) ^ ((v1>>5) + k1);
v1 += ((v0<<4) + k2) ^ (v0 + sum) ^ ((v0>>5) + k3);
} /* end cycle */
v[0]=v0; v[1]=v1;
}
6.2.7 xercise 2.7
Hint: the table contain pre-calculated values. It is possible to implement the function without it, but it will work slower,
though.
Solution: this function reverse all bits in input -bit integer. It is lib/bitrev.c from Linux kernel.
C source code:
const unsigned char byte_rev_table[256] = {
0x00, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0,
0x10, 0x90, 0x50, 0xd0, 0x30, 0xb0, 0x70, 0xf0,
0x08, 0x88, 0x48, 0xc8, 0x28, 0xa8, 0x68, 0xe8,
0x18, 0x98, 0x58, 0xd8, 0x38, 0xb8, 0x78, 0xf8,
0x04, 0x84, 0x44, 0xc4, 0x24, 0xa4, 0x64, 0xe4,
0x14, 0x94, 0x54, 0xd4, 0x34, 0xb4, 0x74, 0xf4,
http://en.wikipedia.org/wiki/Pentium_FDIV_bug
https://en.wikipedia.org/wiki/ROT13
https://en.wikipedia.org/wiki/Linear_feedback_shift_register
https://en.wikipedia.org/wiki/Ackermann_function
601
o.3. llvll 3 /lllnul\ o. l\lkClSl S0lu1l0nS
return ack (m-1, 1);
return ack(m-1, ack (m, n-1));
};
6.2.18 xercise 2.17
This is D cellular automation working by kole 0:
https://en.wikipedia.org/wiki/Rule_110.
Source code: http://yurichev.com/RE-exercise-solutions/2/17/CA.c
6.2.17 xercise 2.18
Source code: http://yurichev.com/RE-exercise-solutions/2/18/
6.2.18 xercise 2.19
Source code: http://yurichev.com/RE-exercise-solutions/2/19/
6.8 Level 8
6.8.1 xercise 8.1
Hint #: The code has one characteristic thing, if considering it, it may help narrowing search of right function among glibc
functions.
Solution: characteristic is callback-function calling (), pointer to which is passed in th argument. It is quicksort().
C source code: http://yurichev.com/RE-exercise-solutions/3/1/2_1.c
6.8.2 xercise 8.2
Hint: easiest way is to find by values in the tables.
Commented C source code:
http://yurichev.com/RE-exercise-solutions/3/2/gost.c
6.8.8 xercise 8.8
Commented C source code:
http://yurichev.com/RE-exercise-solutions/3/3/entropy.c
6.8.4 xercise 8.4
Commented C source code, and also decrypted file: http://yurichev.com/RE-exercise-solutions/3/4/
6.8.$ xercise 8.$
Hint: as we can see, the string with user name occupies not the whole file.
Bytes afer terminated zero till ofset 0x7F are ignored by program.
Commented C source code:
http://yurichev.com/RE-exercise-solutions/3/5/crc16_keyfile_check.c
6.8.8 xercise 8.8
Commented C source code:
http://yurichev.com/RE-exercise-solutions/3/6/
As another exercise, now you may try to fix all vulnerabilities you found in this web-server.
6.8.7 xercise 8.8
Commented C source code:
http://yurichev.com/RE-exercise-solutions/3/8/
602
Acrcnyms used
user mcde A restricted CPU mode in which it executes all applied sofware code. cf. kernel mode.. ,
windcws N1 Windows NT, , XP, Vista, , . , , , , , , ,
xcrin ofen used in English language, meaning applying XOR operation. , ,
611
lndex
.NET,
AT&T syntax, ,
Bufer Overflow, ,
C language elements
Pointers, , , , ,
Post-decrement,
Post-increment,
Pre-decrement,
Pre-increment,
C,
bool,
restrict,
variable length arrays,
const, ,
for, ,
if, ,
restrict,
return, , ,
switch,
while,
C standard library
alloca(), ,
assert(),
atexit(),
atoi(),
calloc(),
close(),
localtime(),
longjmp(),
malloc(),
memchr(),
memcmp(), ,
memcpy(), , ,
memset(), ,
open(),
qsort(), ,
rand(), , ,
read(),
scanf(),
srand(),
strcmp(),
strcpy(), ,
strlen(), , ,
strstr(),
time(),
tolower(),
toupper(),
Compilers anomalies, ,
C++,
C++, ,
ostream,
References,
STL
std::forward_list,
std::list,
std::map,
std::set,
std::string,
std::vector,
grep usage, , , , , ,
Intel syntax, ,
Mac OS X,
position-independent code, ,
RAM,
ROM, ,
Recursion, ,
Tail recursion,
Stack, , ,
Syntactic Sugar, ,
iPod/iPhone/iPad,
OllyDbg, , , , , , , , , ,
Oracle RDBMS, , , , , , , , ,
,
,
,
, ,
,
Angry Birds,
ARM, , , ,
ARM mode,
Instructions
ADD, , , , , ,
ADDAL,
ADDCC,
ADDS, ,
ADR, ,
ADREQ, ,
ADRGT,
ADRHI,
ADRNE,
ASRS, ,
B, , ,
BCS, ,
BEQ, ,
BGE,
BIC,
BL, , ,
BLE,
BLEQ,
lnul\ lnul\
BLGT,
BLHI,
BLS,
BLT,
BLX,
BNE,
BX, ,
CLZ, ,
CMP, , , , , ,
IDIV,
IT, ,
LDMCSFD,
LDMEA,
LDMED,
LDMFA,
LDMFD, , ,
LDMGEFD,
LDR, , ,
LDR.W,
LDRB,
LDRB.W,
LDRSB,
LSL,
LSL.W,
LSLS,
MLA,
MOV, , ,
MOVT, ,
MOVT.W,
MOVW,
MULS,
MVNS,
ORR,
POP, , , ,
PUSH, ,
RSB, ,
SMMUL,
STMEA,
STMED,
STMFA, ,
STMFD, ,
STMIA,
STMIB,
STR, ,
SUB, , ,
SUBEQ,
SXTB,
TEST,
TST, ,
VADD,
VDIV,
VLDR,
VMOV, ,
VMOVGT,
VMRS,
VMUL,
Registers
APSR,
FPSCR,
Link Register, , , , ,
R, ,
scratch registers, ,
Z, ,
thumb mode, , ,
thumb- mode, , ,
armel,
armhf,
Condition codes,
Data processing instructions,
DCB,
hard float,
if-then block,
Leaf function,
Optional operators
ASR, ,
LSL, , ,
LSR, ,
ROR,
RRX,
sof float,
ASLR,
AWK,
bash,
BASIC
POKE,
binary grep, ,
BIND.EXE,
Bitcoin,
Borland C++Builder,
Borland Delphi, , ,
BSoD,
BSS,
C,
Callbacks,
Canary,
cdecl, ,
COFF,
column-major order,
Compiler intrinsic, ,
CRC, ,
CRT, ,
Cygwin,
cygwin, , ,
DES, ,
dlopen(),
dlsym(),
DOSBox,
DosBox,
double, ,
dtruss,
EICAR,
ELF,
Error messages,
fastcall, , , ,
float, ,
FORTRAN, , ,
Function epilogue, , , , , ,
Function prologue, , , , , ,
613
lnul\ lnul\
Fused multiplyadd,
GCC, , ,
GDB, , , , , , ,
Glibc,
Hex-Rays,
Hiew, , , , , , ,
IAT,
IDA, , ,
var_?, ,
IEEE , , , ,
Inline code, , , ,
INT,
int xe,
int x,
Intel C++, , , , ,
Itanium,
jumptable, ,
Keil,
kernel panic,
kernel space,
LD_PRELOAD,
Linux,
libc.so., ,
LLVM,
long double,
Loop unwinding,
Mac OS Classic,
MD, ,
MFC,
MIDI,
MinGW,
MIPS, , , ,
MS-DOS, , , , , , , , , , ,
DOS extenders,
MSVC, ,
Name mangling,
NEC V,
objdump, ,
OEP, ,
opaque predicate,
OpenMP, ,
OpenWatcom, , , , ,
Ordinal,
Page (memory),
Pascal,
PDB, , ,
PDP-,
PowerPC,
Raspberry Pi, ,
ReactOS,
Register allocation,
Relocation,
row-major order,
RTTI,
RVA,
SAP, ,
SCO OpenServer,
Scratch space,
Security cookie, ,
SHA,
SHA,
Shadow space, , ,
Shellcode, ,
shellcode, , ,
Signed numbers, ,
SIMD,
SSE,
SSE,
stdcall, ,
strace, ,
syscall,
syscalls, ,
TCP/IP,
thiscall, , ,
ThumbTwoMode,
TLS, , , , ,
Callbacks,
tracer, , , , , , , , , , , , ,
, , ,
Unicode,
Unrolled loop, ,
uptime,
user space,
UTF-LE,
UTF-,
VA,
Watcom,
Win, ,
RaiseException(),
SetUnhandledExceptionFilter(),
Windows
GetProcAddress,
KERNEL.DLL,
LoadLibrary,
MSVCR.DLL,
ntoskrnl.exe,
Structured Exception Handling, ,
TIB, , ,
Windows ,
Windows NT,
Windows Vista,
Windows XP, ,
Windows .x, ,
Windows API,
Wine,
Wolfram Mathematica, , ,
x
Instructions
614
lnul\ lnul\
AAA,
AAS,
ADC, , ,
ADD, , , , ,
ADDSD,
ADDSS,
AND, , , , , ,
BSF, , ,
BSR,
BSWAP, ,
BT,
BTC,
BTR, ,
BTS,
CALL, , , ,
CBW,
CDQ, ,
CDQE,
CLD,
CLI,
CMC,
CMOVcc, , ,
CMP, , ,
CMPSB, ,
CMPSD,
CMPSQ,
CMPSW,
COMISD,
COMISS,
CPUID, ,
CWD, ,
CWDE,
DEC, , ,
DIV,
DIVSD, ,
FABS,
FADD,
FADDP, , ,
FCHS,
FCOM, , ,
FCOMP, ,
FCOMPP,
FDIV, , , ,
FDIVP, ,
FDIVR, ,
FDIVRP,
FILD,
FIST,
FISTP,
FLD, , ,
FLD,
FLDCW,
FLDZ,
FMUL, ,
FMULP,
FNSTCW,
FNSTSW, , ,
FSINCOS,
FSQRT,
FST,
FSTCW,
FSTP, ,
FSTSW,
FSUB,
FSUBP,
FSUBR,
FSUBRP,
FUCOM, ,
FUCOMP,
FUCOMPP, ,
FWAIT,
FXCH,
IDIV,
IMUL, , ,
IN, , ,
INC, , ,
INT, ,
IRET, ,
JA, , , ,
JAE, , ,
JB, , , ,
JBE, , ,
JC,
JCXZ,
JE, , ,
JECXZ,
JG, , ,
JGE, ,
JL, , ,
JLE, ,
JMP, , , ,
JNA,
JNAE,
JNB,
JNBE, ,
JNC,
JNE, , , ,
JNG,
JNGE,
JNL,
JNLE,
JNO, ,
JNS, ,
JNZ,
JO, ,
JP, , , ,
JPO,
JRCXZ,
JS, ,
JZ, , , ,
LAHF,
LEA, , , , ,
LEAVE, ,
LES,
LOCK,
LODSB,
LOOP, , , ,
MAXSD,
MOV, , , ,
MOVDQA,
MOVDQU,
MOVSB,
615
lnul\ lnul\
MOVSD, , ,
MOVSDX,
MOVSQ,
MOVSS,
MOVSW,
MOVSX, , , , ,
MOVZX, , , ,
MUL,
MULSD,
NEG,
NOP, , ,
NOT, , , ,
OR, ,
OUT, ,
PADDD,
PCMPEQB,
PLMULHW,
PLMULLD,
PMOVMSKB,
POP, , , , ,
POPA, ,
POPCNT,
POPF, ,
PUSH, , , , , , ,
PUSHA, ,
PUSHF,
PXOR,
RCL, ,
RCR,
RET, , , , ,
ROL, ,
ROR, ,
SAHF, ,
SAL,
SALC,
SAR,
SBB, ,
SCASB, , ,
SCASD,
SCASQ,
SCASW,
SETALC,
SETcc, ,
SETNBE,
SETNZ,
SHL, , ,
SHR, , ,
SHRD, ,
STC,
STD,
STI,
STOSB,
STOSD,
STOSQ,
STOSW,
SUB, , , , ,
SYSCALL, ,
SYSENTER, , ,
TEST, , , ,
UD,
XADD,
XCHG,
XOR, , , , , , ,
Registers
Flags,
EAX, ,
EBP, ,
ECX,
ESP, ,
JMP,
RIP,
ZF, ,
, ,
,
,
AVX,
FPU, ,
MMX,
SSE,
SSE,
x-, , , , , , , , , , , , , ,
Xcode,
Z,
616