Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to generate a nasm compilable assembly code from c source code on Linux?

Tags:

Test platform is 32 bit Linux.

Basically, I know gcc can be used to generate both Intel and At&T style assembly code, but it seems that you can not directly use nasm/tasm to compile the Intel style assembly code gcc generated.

I am conducting a project analysis asm code on both windows and Linux platform, so I am thinking if they can be both compiled by platform independent assembler like nasm\yasm, I could have a much easier time...

So my question is how to generate a nasm compilable assembly code from c source code on Linux?

like image 489
lllllllllllll Avatar asked Dec 23 '13 06:12

lllllllllllll


People also ask

How do I run a NASM program in Ubuntu?

Open a Linux terminal. Type whereis nasm and press ENTER. If it is already installed, then a line like, nasm: /usr/bin/nasm appears. Otherwise, you will see just nasm:, then you need to install NASM.

Is C code compiled to assembly?

c is being compiled without any additional links or files, so the program will be converted into an executable by itself. Alas, for the grand finale, let's run the full shebang (no computing reference intended here), gcc main. c without any options, to preprocess, compile, assemble, and link the program all at once.


1 Answers

I find it's a better approach to disassemble the object files rather than use assembly code generated by gcc.

  1. First, generate an object file from your source code:

    gcc -fno-asynchronous-unwind-tables -O2 -s -c -o main.o main.c 

    -fno-asynchronous-unwind-tables: do not generate unnecessary sections like .eh_frame

    -O2 optimizes so the asm isn't horrible. Optionally use -Os (size over speed) or -O3 (full optimization including auto-vectorization). Also you can tune for a CPU and and use extensions it supports with -march=native or -march=haswell or -march=znver1 (Zen)

    -s: make smaller executable (strip)

    -c -o main.o: compile but don't link, generate an object file called main.o

  2. Use objconv to generate nasm code:

    objconv -fnasm main.o 

    The result will be stored in main.asm.

  3. The result will be very close to Nasm syntax. However you might need to make some minor tweaks to eliminiate warnings/errors. Simply try to compile it with Nasm

    nasm -f elf32 main.asm 

    and fix the errors/warnings by hand. For example:

    • remove the align=N and execute/noexecute words from .SECTION lines.
    • remove the text : function from global declarations
    • remove the default rel line
    • remove empty sections if you wish etc
  4. Link the resulting main.o which generated by Nasm in step 3 using gcc:

    gcc main.o 

    You can also link it using ld but it's much harder.

like image 54
Babken Vardanyan Avatar answered Sep 22 '22 08:09

Babken Vardanyan