This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
session:02 [2018/06/18 20:10] Cristian-Florin DONE (78332) [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:// |
- | == Tutorials | + | [[https:// |
+ | |||
+ | [[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 12: | 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 51: | 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 171: | 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 212: | Line 216: | ||
</ | </ | ||
- | === Data Transfer | + | ==== Data Transfer |
Data transfer instructions move bytes between memory-register, | Data transfer instructions move bytes between memory-register, | ||
Line 235: | 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 257: | Line 261: | ||
</ | </ | ||
- | === Arithmetic/ | + | ==== Arithmetic/ |
Arithmetic instructions (NASM/Intel syntax): | Arithmetic instructions (NASM/Intel syntax): | ||
Line 274: | 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 298: | Line 302: | ||
The default convention used by GCC is '' | The default convention used by GCC is '' | ||
</ | </ | ||
- | ==== cdecl | + | === cdecl === |
<code c> | <code c> | ||
Line 355: | Line 359: | ||
</ | </ | ||
- | ==== stdcall | + | === stdcall |
<code c> | <code c> | ||
Line 411: | Line 415: | ||
</ | </ | ||
- | ==== fastcall | + | === fastcall |
<code c> | <code c> | ||
Line 462: | 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 475: | 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 493: | Line 497: | ||
</ | </ | ||
*/ | */ | ||
- | ==== function prologue | + | === function prologue |
<code objdump> | <code objdump> | ||
Line 501: | Line 505: | ||
</ | </ | ||
- | ==== function epiloque | + | === function epiloque |
<code objdump> | <code objdump> | ||
Line 508: | Line 512: | ||
</ | </ | ||
- | ==== for loop | + | === for loop === |
<code c> | <code c> | ||
Line 538: | Line 542: | ||
</ | </ | ||
- | ==== while loop | + | === while loop === |
<code c> | <code c> | ||
Line 568: | Line 572: | ||
</ | </ | ||
- | ==== nested fors with break and continue | + | === nested fors with break and continue |
<code c> | <code c> | ||
Line 614: | Line 618: | ||
- | == Tasks | + | ===== 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 635: | 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 652: | 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 667: | Line 671: | ||
If the string you use it '' | If the string you use it '' | ||
</ | </ | ||
- | === 03. Call secret function | + | ==== 03. Call secret function |
- | The binary '' | + | The binary |
<note tip> | <note tip> | ||
Line 676: | Line 680: | ||
<note tip> | <note tip> | ||
- | For a more graphically available hex editor, you mai use [[http://home.gna.org/bless/ | + | To edit a binary, you can use [[https://vim.fandom.com/ |
- | < | + | |
- | apt-get install bless | + | |
- | </ | + | |
</ | </ | ||
- | === 04. No exit | + | ==== 04. No exit ==== |
The binary file '' | The binary file '' | ||
Line 691: | Line 693: | ||
The '' | The '' | ||
</ | </ | ||
- | === 05. Funny convention | + | ==== 05. Funny convention |
- | This {{: | + | The binary |
- | The library is position independent, | + | The library is position independent, |
- | + | ||
- | <code asm> | + | |
- | extern _GLOBAL_OFFSET_TABLE_ | + | |
- | extern puts | + | |
- | + | ||
- | ; export a library function and a global var | + | |
- | global count_param: | + | |
- | global leet_write: | + | |
- | + | ||
- | section .data | + | |
- | leet: db " | + | |
- | count_param: | + | |
- | + | ||
- | section .text | + | |
- | leet_write: | + | |
- | ; debugging purpose | + | |
- | push leet | + | |
- | call puts | + | |
- | + | ||
- | ; write your code here -------------------------------------------- | + | |
- | ; TODO | + | |
- | ; ----------------------------------------------------------------- | + | |
- | + | ||
- | add esp, 4 ; leet from above | + | |
- | ret | + | |
- | </code> | + | |
- | + | ||
- | To assemble, and create the '' | + | |
- | + | ||
- | <code text> | + | |
- | $ nasm -f elf32 libfunny.asm | + | |
- | $ ld -shared -lc -m elf_i386 libfunny.o -o libfunny.so | + | |
- | </ | + | |
You should be able to run the provided binary as long as the correct library is in '' | You should be able to run the provided binary as long as the correct library is in '' | ||
<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 '' | ||
+ | |||
+ | |||
+ | <note tip> | ||
+ | You can find the skeleton for this task in the directory '' | ||
+ | </ | ||
<note important> | <note important> |