我正在编写NASM中的Hello World,我可以让它回显Hello World
到控制台,但是如果我没有使用Make运行它,程序会出现段错误。
使用Makefile跟踪:
$ make
nasm -f macho -o hello.o --prefix _ hello.asm
ld -o hello hello.o -arch i386 -lc -macosx_version_min 10.6 -e _start -no_pie
./hello
Hello World!
使用手动命令跟踪:
$ nasm -f macho -o hello.o --prefix _ hello.asm
$ ld -o hello hello.o -arch i386 -lc -macosx_version_min 10.6 -e _start -no_pie
$ ./hello
Segmentation fault: 11
hello.asm:
[bits 32]
section .data
msg: db "Hello World!", 0
section .text
global start
extern puts
extern exit
start:
push msg
call puts
add esp, 4
push 0
call exit
生成文件:
# Linux defaults
FORMAT=-f elf
MINV=
ARCH=-arch i386
LIBS=
RUN=./
EXECUTABLE=hello
PREFIX=
ENTRY=
PIE=
# Windows
ifeq (${MSYSTEM},MINGW32)
FORMAT=-f win32
EXECUTABLE=hello.exe
PREFIX=--prefix _
ENTRY=-e _start
ARCH=
LIBS=c:/strawberry/c/i686-w64-mingw32/lib/crt2.o -Lc:/strawberry/c/i686-w64-mingw32/lib -lmingw32 -lmingwex -lmsvcrt -lkernel32
ENTRY=
RUN=
endif
# Mac OS X
ifeq ($(shell uname -s),Darwin)
FORMAT=-f macho
PREFIX=--prefix _
ENTRY=-e _start
LIBS=-lc
MINV=-macosx_version_min 10.6
PIE=-no_pie
endif
all: test
test: $(EXECUTABLE)
$(RUN)$(EXECUTABLE)
$(EXECUTABLE): hello.o
ld -o $(EXECUTABLE) hello.o $(ARCH) $(LIBS) $(MINV) $(ENTRY) $(PIE)
hello.o: hello.asm
nasm $(FORMAT) -o hello.o $(PREFIX) hello.asm
clean:
-rm $(EXECUTABLE)
-rm hello.o
规格:
答案 0 :(得分:3)
2件事,你的hello world字符串不是NULL终止,正如我在另一篇文章中提到的,当你使用C函数时,你必须在每次调用后调整esp
答案 1 :(得分:2)
你把堆栈框架拆了两次:
mov esp, ebp
pop ebp
...
leave
您只需要其中一个,因为leave
相当于mov esp, ebp; pop ebp
。
有关几个示例hello world程序,请参阅http://michaux.ca/articles/assembly-hello-world-for-os-x。请注意,所有这些都使用
显式退出程序; 2a prepare the argument for the sys call to exit
push dword 0 ; exit status returned to the operating system
; 2b make the call to sys call to exit
mov eax, 0x1 ; system call number for exit
sub esp, 4 ; OS X (and BSD) system calls needs "extra space" on stack
int 0x80 ; make the system call
因为你不能从入口点ret
(没有什么可以返回)。
另请注意,如果您调用函数main
并且未向e
提供ld
选项,则会调用libc
的入口点。在这种情况下,允许ret
,因为您会将控制权交还给libc
(代表您致电exit
)。