This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
session:02 [2019/07/13 15:21] Radu-Nicolae NICOLAU (78289) |
session:02 [2020/07/19 12:49] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | = 0x02. Assembly Language | + | ====== Refresher. Assembly Language |
- | == Resources | + | ===== Resources |
- | [[https:// | + | [[https:// |
[[https:// | [[https:// | ||
Line 9: | Line 9: | ||
[[https:// | [[https:// | ||
- | == Tutorials | + | ===== 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 16: | 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 55: | 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 175: | 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 216: | Line 216: | ||
</ | </ | ||
- | === Data Transfer | + | ==== Data Transfer |
Data transfer instructions move bytes between memory-register, | Data transfer instructions move bytes between memory-register, | ||
Line 239: | 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 261: | Line 261: | ||
</ | </ | ||
- | === Arithmetic/ | + | ==== Arithmetic/ |
Arithmetic instructions (NASM/Intel syntax): | Arithmetic instructions (NASM/Intel syntax): | ||
Line 278: | 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 302: | Line 302: | ||
The default convention used by GCC is '' | The default convention used by GCC is '' | ||
</ | </ | ||
- | ==== cdecl | + | === cdecl === |
<code c> | <code c> | ||
Line 359: | Line 359: | ||
</ | </ | ||
- | ==== stdcall | + | === stdcall |
<code c> | <code c> | ||
Line 415: | Line 415: | ||
</ | </ | ||
- | ==== fastcall | + | === fastcall |
<code c> | <code c> | ||
Line 466: | 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 484: | Line 484: | ||
</ | </ | ||
- | === 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 497: | Line 497: | ||
</ | </ | ||
*/ | */ | ||
- | ==== function prologue | + | === function prologue |
<code objdump> | <code objdump> | ||
Line 505: | Line 505: | ||
</ | </ | ||
- | ==== function epiloque | + | === function epiloque |
<code objdump> | <code objdump> | ||
Line 512: | Line 512: | ||
</ | </ | ||
- | ==== for loop | + | === for loop === |
<code c> | <code c> | ||
Line 542: | Line 542: | ||
</ | </ | ||
- | ==== while loop | + | === while loop === |
<code c> | <code c> | ||
Line 572: | Line 572: | ||
</ | </ | ||
- | ==== nested fors with break and continue | + | === nested fors with break and continue |
<code c> | <code c> | ||
Line 618: | 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 639: | 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 656: | 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 671: | 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 683: | Line 683: | ||
</ | </ | ||
- | === 04. No exit | + | ==== 04. No exit ==== |
The binary file '' | The binary file '' | ||
Line 693: | Line 693: | ||
The '' | The '' | ||
</ | </ | ||
- | === 05. Funny convention | + | ==== 05. Funny convention |
The binary '' | The binary '' | ||
Line 705: | Line 705: | ||
A more detailed explaination can be found [[https:// | 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 '' |