作者luster
摘要:好吧我们已经铺垫了很多东西了而且看上去用汇编写程序似乎是一个非常恐怖的事情了不过既然我们感兴趣还是应该开始我们的hello world程序
我们开始写hello world吧
好吧我们已经铺垫了很多东西了而且看上去用汇编写程序似乎是一个非常恐怖的事情了不过既然我们感兴趣还是应该开始我们的hello world程序
下面的代码中我们准备采取直接使用内核中的系统调用的方法这是调用系统内核服务的最快的方法我们的代码不链接到其他函数库也不使用ELF解释器而是直接和内核通讯
我们分别使用nasm和gas两种汇编器来编译我们的程序这样我们可以看到Intel和AT&T两种语法格式了
使用的工具
当然首先我们需要汇编编译器nasm和gas然后我们需要链接器-ld因为汇编编译器是生成的只是object代码一般的发行包的binutils里面包括了gas和ld这两个实用工具而对于大多数的发行包(例如DebianSuSeMandrake)都有nasm
Hello world!
Linux是一个位的运行在保护模式下的操作系统使用的是flat memory 模式使用ELF格式的二进制代码
一个程序可以划分为下面几个部分 textdatabsstext是一些只读的代码data是可读可写的数据区bss则是可读可写的没有初始化的数据区当然可以有其他一些标准的部分也可以使用户自己定义的sections但是我们这里不关心一个程序至少有text部分
下面就是我们的第一个程序helloworld我们给出两个版本分别是nasm和gas两种
NASM (helloasm)
section data ;section declarationmsg db Hello world!
xa ;our dear stringlen equ $ msg ;length of our dear stringsection text ;
section declaration ;we must export the entry point to the ELF linker
or global _start ;loader They conventionally recognize _start as their ;
entry point Use ld e foo to override the default_start:;write our string
to stdout mov edxlen ;third argument: message length mov ecxmsg ;second
argument: pointer to message to write mov ebx ;first argument: file handle
(stdout) mov eax ;system call number (sys_write) int x ;call kernel;
and exit mov ebx ;first syscall argument: exit code mov eax ;system
call number (sys_exit) int x ;
call kernel
GAS (helloS)
data # section declarationmsg: string Hello world!
# our dear string len = msg # length of our dear stringtext
# section declaration # we must export the entry point to the ELF linker or
global _start # loader They conventionally recognize _start as their
# entry point Use ld e foo to override the default_start:
# write our string to stdout movl $len%edx # third argument:
message length movl $msg%ecx # second argument: pointer to message to
write movl $%ebx # first argument: file handle (stdout) movl $%eax
# system call number (sys_write) int $x # call kernel# and exit movl
$%ebx # first argument: exit code movl $%eax # system call number
(sys_exit) int $x # call kernel
建立可运行的程序
要生成一个可执行的代码首先就是用源代码编译生产一个object文件
对于nasm下面的语法
$ nasm f elf helloasm
而对于gas而用下面的语法
$ as o helloo helloS
这样就得到了helloo这个object文件了
然后我们就要使用这个object文件来生成可执行代码这里使用链接器链接
$ ld s o hello helloo
这样我们就获得了我们的可以执行的代码helloworld
我们的学习就告一段落了更多的信息可以去参考
by Luster(cn)