Assembly Syscalls in 64-bit Windows

11,863

Attempt #1:

Attempt #2:

Internally Windows uses either interrupts or system calls. However they are not officially documented and they may change anytime Microsoft wants to change them:

Only a few .dll files directly use the system call instructions; all programs are directly or indirectly accessing these .dll files.

A certain sequence (for example mov rax, 5, syscall) might have the meaning "print out a text" before a Windows update and Microsoft might change the meaning of this sequence to "delete a file" after a Windows update.

To do this Microsoft simply has to replace the kernel and the .dll files which are officially "allowed" to use the syscall instruction.

The only way to call Windows operating system functions in a way that it is guaranteed that your program is still working after the next Windows update is to call the functions in the .dll files - just the same way you would do this in a C program.

Example (32-bit code):

push 1
push msg
push 14
call _write
mov dword [esp], 0
call _exit
Share:
11,863
Eagterrian Knight
Author by

Eagterrian Knight

Updated on June 04, 2022

Comments

  • Eagterrian Knight
    Eagterrian Knight almost 2 years

    I am on windows 10, with Cygwin installed. I have been using Cygwin for the compilation/assembly of c and assembly programs using Cygwin-installed "gcc" and "nasm". From what I know, nasm has a -f win64 mode, so it can assemble 64-bit programs. Now, for x64 assembly programming on windows, it seems youtube has a lack of tutorials. Most assembly programming tutorials on youtube are either for x64 linux or x32 windows, and I need to be able to print a string to the console on x64 windows, without the use of any external functions such as C's "printf".

    StackOverflow links that didn't work for me:

    64-bit windows assembler

    As far as I know, nasm does support 64-bit windows using the -f win64 extension. Also, the answers have nothing to do with how to write an actual program in assembly on x64 bit windows

    How to write hello world in assembler under Windows?

    All answers that give code give only code for outdated windows versions (32-bit), except one. The one answer that works for 64 bit I tried, but the command to link the object file gave an error for me, that the system could not find the path specified.

    windows x64 assembler?

    This site does not contain any code, which is what I need. Also, I am trying to write the Hello World program in nasm.

    64 bit assembly, when to use smaller size registers

    The question actually contains code for a hello world program, but when executed under cygwin on windows 10 (my device), I get a segmentation fault.

    Why does Windows64 use a different calling convention from all other OSes on x86-64?

    I have tried disassembling a C Hello World Program with objdump -d, but this calls printf, a prebuilt C function, and I am trying to avoid using external functions.

    I have tried other external functions (such as Messagebox), but they return errors because something does not recognize the functions. Also, I am trying not to use any extern functions if possible, only syscall, sysenter, or interrupts.

    CODE:

    Attempt #1:

        section .data
        msg db "Hello, World!", 10, 0
        section .text
        mov rax, 1
        mov rdi, 1
        mov rsi, msg
        mov rdx, 14
        syscall
        mov rax, 60
        mov rdi, 0
        syscall
    

    Problem: Assembles and links properly, but throws a segmentation fault when run.

    Attempt #2:

        section .text
        mov ah, 0eh
        mov al, '!', 0
        mov bh, 0
        mov bl, 0
        int 10h
    

    Problem: Does not assemble properly; says "test.asm:3: error: invalid combination of opcode and operands"

    Attempt #3:

        section .text
        msg db 'test', 10, 0
        mov rdi, 1
        mov rsi, 1
        mov rdx, msg
        mov rcx, 5
        syscall
        mov rdi, 60
        mov rsi, 0
        syscall
    

    Problem: Assembles and links properly, but throws a segmentation fault when run.

    Attempt #4:

        section .text
        mov ah, 0eh
        mov al, '!'
        mov bh, 0
        mov bl, 0
        int 10h
    

    Problem: Assembles and links properly, but throws a segmentation fault when run.

    I just need an example of a hello world assembly program that works on 64-bit Windows 10. 32-bit programs seem to return errors when I run them. If it is not possible to print a string to the console without using external functions, an example of a program that uses external functions and works on 64-bit Windows 10 would be nice.

    I heard that syscalls in windows have far different addresses than those in linux.

  • mcandre
    mcandre almost 6 years
    The author requested 64 bit code. Is the C-level Windows API in x86_64 still a 32 bit interface? Which DLL's provide _write and _exit?
  • Martin Rosenau
    Martin Rosenau almost 6 years
    @mcandre The main aspect of my answer was the "platform independent" part: Directly using system calls will not work. The x86_32 example code is only there to make the last part of the answer clearer and not to give a "valid" example of code.
  • Eagterrian Knight
    Eagterrian Knight over 5 years
    Been a while since I posted this, but I figured out which dll files to use and how to include them. C:\\Windows\\System32\\msvcrt.dll seems to provide the entire C standard library, and all you have to do is say "extern [whatever C function]" and link msvcrt.dll with your object file. It doesn't use syscalls, but considering what you said about syscalls in windows being unstable, I'm okay with using C's standard library in assembly. That's likely the only way to make it platform independent anyhow.
  • Eagterrian Knight
    Eagterrian Knight over 5 years
    Just 1 question: do you know if there are in fact lower level dll files I could be using in place of msvcrt.dll? The fact that sizeof in C varies from implementation to implementation somewhat concerns me. I found user32.dll and kernel32.dll in System32, do these provide the windows library?
  • Eagterrian Knight
    Eagterrian Knight over 5 years
    solved my own problem. there's a thing that comes with Visual Studio called dumpbin that, with /exports, allows you to see all functions that come with a .dll file. And it turns out that kernel32.dll does indeed provide the windows api.
  • nponeccop
    nponeccop over 4 years
    Syscalls numbers indeed change: hfiref0x.github.io/syscalls.html but the question is an excersise in reverse engineering and not normal code.