Não é possível executar um executável criado com o NASM

7

Eu estou tentando montar o arquivo de origem de montagem abaixo usando o seguinte comando NASM:

nasm -f elf -o test.o test.asm

Isso é concluído sem erros e, em seguida, tento vincular um executável a ld :

ld -m elf_i386 -e main -o test test.o -lc

Isto também parece ter sucesso e eu então tento rodar o executável:

$ ./test
bash: ./test: No such file or directory

Infelizmente, parece que não funciona. Eu tentei executar ldd no executável:

linux-gate.so.1 =>  (0xf777f000)
libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf7598000)
/usr/lib/libc.so.1 => /lib/ld-linux.so.2 (0xf7780000)

Instalei o pacote lsb-core e verifiquei que /lib/ld-linux.so.2 existe. Por que ainda não consigo executar o executável?

Estou tentando fazer isso em uma máquina executando a edição de 64 bits do Ubuntu 15.04.

O código-fonte:

; This code has been generated by the 7Basic
; compiler <http://launchpad.net/7basic>

extern printf
extern scanf
extern read
extern strlen
extern strcat
extern strcpy
extern strcmp
extern malloc
extern free

; Initialized data

      SECTION .data
s_0 db "Hello, World!",0
printf_i: db "%d",10,0
printf_s: db "%s",10,0
printf_f: db "%f",10,0
scanf_i: db "%d",0
scanf_f: db "%lf",0
; Uninitialized data

      SECTION .bss
v_12 resb 4
v_0  resb 4
v_4  resb 8

      SECTION .text

; Code

global main
  main:
finit
push ebp
mov ebp,esp
push 0
pop eax
mov [v_12], eax
    l_0:
mov eax, [v_12]
push eax
push 5
pop edx
pop eax
cmp eax, edx
jl l_2
push 0
jmp l_3
    l_2:
push 1
    l_3:
pop eax
cmp eax, 0
je l_1
push s_0
push printf_s
call printf
add esp, 8
mov eax, [v_12]
push eax
push 1
pop edx
pop eax
add eax, edx
push eax
pop eax
mov [v_12], eax
jmp l_0
    l_1:
mov esp,ebp
pop ebp
mov eax,0
ret

Veja a saída de strings test :

/usr/lib/libc.so.1
libc.so.6
strcpy
printf
strlen
read
malloc
strcat
scanf
strcmp
free
GLIBC_2.0
t'hx
Hello, World!
.symtab
.strtab
.shstrtab
.interp
.hash
.dynsym
.dynstr
.gnu.version
.gnu.version_r
.rel.plt
.text
.eh_frame
.dynamic
.got.plt
.data
.bss
test.7b.out
printf_i
printf_s
printf_f
scanf_i
scanf_f
v_12
_DYNAMIC
_GLOBAL_OFFSET_TABLE_
strcmp@@GLIBC_2.0
read@@GLIBC_2.0
printf@@GLIBC_2.0
free@@GLIBC_2.0
_edata
strcat@@GLIBC_2.0
strcpy@@GLIBC_2.0
malloc@@GLIBC_2.0
scanf@@GLIBC_2.0
strlen@@GLIBC_2.0
_end
__bss_start
main
    
por Nathan Osman 03.06.2015 / 23:19

1 resposta

1

Você também precisa vincular fragmentos de inicialização como crt1.o e outros se quiser chamar funções libc. O processo de vinculação pode ser muito complicado, então é melhor você usar gcc para isso.

No amd64 Ubuntu, você pode:

sudo apt-get install gcc-multilib
gcc -m32 -o test test.o

Você pode ver arquivos e comandos para o link adicionando a opção -v .

    
por 04.06.2015 / 03:08