编译、链接、运行汇编程序


Tags asm Linux By ox0spy On 2016-06-17

学习汇编过程中每次输入as, ld的一堆命令行参数编译、链接程序实在很麻烦。

所以,写个小脚本完成汇编程序的编译、链接及运行。

脚本介绍

脚本内容如下:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash -e

function usage()
{
    echo "usage: $0 <asm-file-path>, the <asm-file-path> must end by '.s'"
    exit 0
}

test $# -ne 1 && usage

if ! echo $1 | grep -Eq '\.s$'; then
    usage
elif [ ! -f $1 ]; then
    echo "can not access the asm source code: <$1>"
    usage
fi

src="$1"
dir="$(dirname $src)"
basename="$(basename -s '.s' $src)"
obj="$dir/${basename}.o"
bin="$dir/$basename"
as_opts="--32 -gstabs"  # -gstabs: 使用该参数可以通过gdb调试代码
ld_opts="-m elf_i386"

# check if .global label is not the default "_start"; if not "_start", then using "-e label"
global_label="$(grep -Eo '\.globl\s+\w+' $src | awk '{print $NF}')"
if [ x"$global_label" != x"_start" ]; then
    ld_opts="$ld_opts -e $global_label"
fi

# if asm source code invoke C stdlib, then link C stdlib
if grep -qE '\s+call\s+\w+' "$src"; then
    ld_opts="$ld_opts -lc -dynamic-linker /lib32/ld-linux.so.2"
fi

echo "as $as_opts -o $obj $src"
as $as_opts -o $obj $src
echo "ld $ld_opts -o $bin $obj"
ld $ld_opts -o $bin $obj

# `set +e` 命令执行返回值不为零也不退出程序
set +e
echo "run $bin ..."
$bin
# 显示执行汇编程序的返回值
echo "return value: $?"
# `set -e` 重新开启命令执行返回值不为零就退出程序
set -e

注:上篇文章已经讲过学习资料是AT&T 32位汇编,而个人电脑是64位系统,所以,指定了 as --32ld -m elf_i386

如何使用呢?

将脚本放入 ~/bin/ 目录内,并设置可执行权限 chmod +x ~/bin/asm-run.sh,然后将 $HOME/bin 加入 $PATH 环境变量。

$ echo 'export PATH=$HOME/bin:$PATH' >> ~/.bashrc && source ~/.bashrc

这样就可以在任意目录中直接通过 asm-run.sh 运行脚本了。

假如现在有myhello.s的汇编源码,通过该脚本编译运行的方法如下:

$ asm-run.sh myhello.s
as --32 -o ./myhello.o myhello.s
ld -m elf_i386 -e main -lc -dynamic-linker /lib32/ld-linux.so.2 -o ./myhello ./myhello.o
run ./myhello ...
Hello World

终于不用一遍一遍的输入指令编译、链接、运行汇编程序了。