This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
session:02 [2019/06/16 20:34] Mihai-Valentin DUMITRU (25451) [03. Call secret function] |
session:02 [2020/07/19 12:49] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | = 0x02. Assembly Language | + | ====== Refresher. Assembly Language |
- | == Slides | + | ===== Resources ===== |
- | [[https:// | + | [[https:// |
[[https:// | [[https:// | ||
- | == Tutorials | + | [[https:// |
+ | |||
+ | ===== Tutorials | ||
This session will serve as a quick **refresher** of basic computer architecture and assembly language. For the sake of brevity, we are going to focus on x86. Also, people are generally more familiar with this one. | This session will serve as a quick **refresher** of basic computer architecture and assembly language. For the sake of brevity, we are going to focus on x86. Also, people are generally more familiar with this one. | ||
Line 14: | Line 16: | ||
Let's get our hands dirty! | Let's get our hands dirty! | ||
- | === Computer Architecture: | + | ==== Computer Architecture: |
A microprocessor executes, one by one, **logical**, | A microprocessor executes, one by one, **logical**, | ||
Line 53: | Line 55: | ||
</ | </ | ||
- | === Hello (Assembly) World | + | ==== Hello (Assembly) World ==== |
We can get right down to business and see what happens when we compile a very simple program written in C. | We can get right down to business and see what happens when we compile a very simple program written in C. | ||
Line 173: | Line 175: | ||
</ | </ | ||
- | === Basics | + | ==== Basics |
As new versions of the x86 processors appeared, new features where introduced and, in order to maintain backward compatibility, | As new versions of the x86 processors appeared, new features where introduced and, in order to maintain backward compatibility, | ||
Line 214: | Line 216: | ||
</ | </ | ||
- | === Data Transfer | + | ==== Data Transfer |
Data transfer instructions move bytes between memory-register, | Data transfer instructions move bytes between memory-register, | ||
Line 237: | Line 239: | ||
</ | </ | ||
- | === Control Flow | + | ==== Control Flow ==== |
As a program executes, the address of the next instruction is stored in the '' | As a program executes, the address of the next instruction is stored in the '' | ||
Line 259: | Line 261: | ||
</ | </ | ||
- | === Arithmetic/ | + | ==== Arithmetic/ |
Arithmetic instructions (NASM/Intel syntax): | Arithmetic instructions (NASM/Intel syntax): | ||
Line 276: | Line 278: | ||
Logical instructions: | Logical instructions: | ||
- | === Function Calls | + | ==== Function Calls ==== |
Function (subroutines) calls are nothing more that a convention on how parameters are passed, how the return value is passed back to the caller, and how the registers can be modified by the callee. The addresses to which a function needs to return after execution are stored in a stack data structure. Other values such as frame base pointer, and the functions local variables are also placed on the stack. Each function will thus have a corresponding **stack frame** that it allocates immediately after it is called (function prologue), and deallocates just before returning (function epilogue). The size of this allocation (changing the '' | Function (subroutines) calls are nothing more that a convention on how parameters are passed, how the return value is passed back to the caller, and how the registers can be modified by the callee. The addresses to which a function needs to return after execution are stored in a stack data structure. Other values such as frame base pointer, and the functions local variables are also placed on the stack. Each function will thus have a corresponding **stack frame** that it allocates immediately after it is called (function prologue), and deallocates just before returning (function epilogue). The size of this allocation (changing the '' | ||
Line 300: | Line 302: | ||
The default convention used by GCC is '' | The default convention used by GCC is '' | ||
</ | </ | ||
- | ==== cdecl | + | === cdecl === |
<code c> | <code c> | ||
Line 357: | Line 359: | ||
</ | </ | ||
- | ==== stdcall | + | === stdcall |
<code c> | <code c> | ||
Line 413: | Line 415: | ||
</ | </ | ||
- | ==== fastcall | + | === fastcall |
<code c> | <code c> | ||
Line 464: | Line 466: | ||
</ | </ | ||
- | === System calls | + | ==== System calls ==== |
Syscalls are the interface that allows user applications to request services from the OS kernel, such as reading the disk, starting new processes, or managing existing ones. Just like function calls, syscalls are just a set of conventions on how to pass arguments to a kernel function. The mechanism is invoked by triggering an interrupt (**'' | Syscalls are the interface that allows user applications to request services from the OS kernel, such as reading the disk, starting new processes, or managing existing ones. Just like function calls, syscalls are just a set of conventions on how to pass arguments to a kernel function. The mechanism is invoked by triggering an interrupt (**'' | ||
Line 477: | Line 479: | ||
<note important> | <note important> | ||
**Other useful references: | **Other useful references: | ||
- | * [[https://www.informatik.htw-dresden.de/~beck/ | + | * [[https://syscalls.kernelgrok.com/|Linux syscall table]] with ID, source code, and parameters. |
* [[http:// | * [[http:// | ||
* [[http:// | * [[http:// | ||
</ | </ | ||
- | === Compiler Patterns | + | ==== Compiler Patterns |
In the end, let's take a look at some common C language constructs, and how they are compiled into machine code by GCC. You are encouraged to try other constructs too. | In the end, let's take a look at some common C language constructs, and how they are compiled into machine code by GCC. You are encouraged to try other constructs too. | ||
- | ==== Compiler Explorer | + | === Compiler Explorer |
You can try out the Compiler explorer at http:// | You can try out the Compiler explorer at http:// | ||
Line 495: | Line 497: | ||
</ | </ | ||
*/ | */ | ||
- | ==== function prologue | + | === function prologue |
<code objdump> | <code objdump> | ||
Line 503: | Line 505: | ||
</ | </ | ||
- | ==== function epiloque | + | === function epiloque |
<code objdump> | <code objdump> | ||
Line 510: | Line 512: | ||
</ | </ | ||
- | ==== for loop | + | === for loop === |
<code c> | <code c> | ||
Line 540: | Line 542: | ||
</ | </ | ||
- | ==== while loop | + | === while loop === |
<code c> | <code c> | ||
Line 570: | Line 572: | ||
</ | </ | ||
- | ==== nested fors with break and continue | + | === nested fors with break and continue |
<code c> | <code c> | ||
Line 616: | Line 618: | ||
- | == Challenges | + | ===== Challenges |
- | === 01. Execve | + | ==== 01. Execve |
- | ==== Simple printing | + | === Simple printing |
Use assembly to write a program that receives N command line parameters. If the 1st parameter starts with '' | Use assembly to write a program that receives N command line parameters. If the 1st parameter starts with '' | ||
Line 637: | Line 639: | ||
</ | </ | ||
- | ==== Simple syscall | + | === Simple syscall |
Update the above program and use assembly to write a program that receives N command line parameters, and dispatches them to the '' | Update the above program and use assembly to write a program that receives N command line parameters, and dispatches them to the '' | ||
Line 654: | Line 656: | ||
The syscall number for '' | The syscall number for '' | ||
</ | </ | ||
- | === 02. Looping math | + | ==== 02. Looping math ==== |
Use assembly to write a program that iterates through a statically allocated string (use the '' | Use assembly to write a program that iterates through a statically allocated string (use the '' | ||
Line 669: | Line 671: | ||
If the string you use it '' | If the string you use it '' | ||
</ | </ | ||
- | === 03. Call secret function | + | ==== 03. Call secret function |
The binary file '' | The binary file '' | ||
Line 681: | Line 683: | ||
</ | </ | ||
- | === 04. No exit | + | ==== 04. No exit ==== |
The binary file '' | The binary file '' | ||
Line 691: | Line 693: | ||
The '' | The '' | ||
</ | </ | ||
- | === 05. Funny convention | + | ==== 05. Funny convention |
- | The binary '' | + | The binary '' |
The library is position independent, | The library is position independent, | ||
Line 700: | Line 702: | ||
<note important> | <note important> | ||
- | The '' | + | The library exports the '' |
+ | A more detailed explaination can be found [[https:// | ||
</ | </ | ||
- | === Extra: 06. Obfuscation | + | ==== Extra: 06. Obfuscation |
Write a program that does a completely different thing than what '' | Write a program that does a completely different thing than what '' |