_start 可以是拇指函数吗?
- 2024-10-28 08:37:00
- admin 原创
- 50
问题描述:
请帮助我使用适用于 arm926ejs cpu 的 gnu 汇编程序。
我尝试建立一个简单的程序(test.S):
.global _start
_start:
mov r0, #2
bx lr
并成功构建它:
arm-none-linux-gnueabi-as -mthumb -o test.o test.S
arm-none-linux-gnueabi-ld -o test test.o
但是当我在arm目标linux环境中运行该程序时,出现错误:
./test
Segmentation fault
我做错了什么? _start 函数可以是 thumb 函数吗?还是它始终是 arm 函数?
解决方案 1:
_start 可以是缩略函数(在 Linux 用户程序中)吗?
是的,可以。步骤并不像你想象的那么简单。
请使用.code 16
其他人描述的。另请查看ARM 脚本谓词;我的答案显示了如何检测拇指二进制文件。输入符号必须具有传统值,否则 Linux 将决定在ARM_start+1
模式下调用您。_start
你的代码也试图模拟,
int main(void) { return 2; }
符号_start
不能这样做(根据auselen)。要在ARM_start
模式下执行此操作,您需要,main()
#include <linux/unistd.h>
static inline void exit(int status)
{
asm volatile ("mov r0, %0
"
"mov r7, %1
"
"swi #7
"
: : "r" (status),
"Ir" (__NR_exit)
: "r0", "r7");
}
/* Wrapper for main return code. */
void __attribute__ ((unused)) estart (int argc, char*argv[])
{
int rval = main(argc,argv);
exit(rval);
}
/* Setup arguments for estart [like main()]. */
void __attribute__ ((naked)) _start (void)
{
asm(" sub lr, lr, lr
" /* Clear the link register. */
" ldr r0, [sp]
" /* Get argc... */
" add r1, sp, #4
" /* ... and argv ... */
" b estart
" /* Let's go! */
);
}
最好清除以便堆栈跟踪终止。如果需要,lr
您可以避免argc
和处理。显示了如何使用它。只是一个将返回代码转换为调用的包装器。argv
`startestart
main()`exit()
您需要将上述汇编程序转换为Thumb等效程序。我建议使用gcc 内联汇编程序。如果内联程序可以工作,您可以转换为纯汇编程序源代码。但是,除非您尝试制作一个非常小的可执行文件,否则在“C”源代码中执行此操作可能更实用。
有用的gcc参数是,
-nostartfiles -static -nostdlib -isystem <path to linux user headers>
添加-mthumb
后您就应该拥有适合任一模式的线束。
解决方案 2:
你的问题是你最终
bx lr
并且您期望 Linux 此后接管。那一行肯定是 的原因Segmentation fault
。
您可以尝试创建一个最小的可执行文件,然后尝试将其一分为二,以了解其内部内容并了解可执行文件的预期行为方式。
请参阅下面的工作示例:
.global _start
.thumb_func
_start:
mov r0, #42
mov r7, #1
svc #0
编译
arm-linux-gnueabihf-as start.s -o start.o && arm-linux-gnueabihf-ld start.o -o start_test
并倾倒以查看胆量
$ arm-linux-gnueabihf-readelf-a-W start_test
现在你应该注意到_start
ELF Header:
Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
Class: ELF32
Data: 2's complement, little endian
Version: 1 (current)
OS/ABI: UNIX - System V
ABI Version: 0
Type: EXEC (Executable file)
Machine: ARM
Version: 0x1
Entry point address: 0x8055
Start of program headers: 52 (bytes into file)
Start of section headers: 160 (bytes into file)
Flags: 0x5000000, Version5 EABI
Size of this header: 52 (bytes)
Size of program headers: 32 (bytes)
Number of program headers: 1
Size of section headers: 40 (bytes)
Number of section headers: 6
Section header string table index: 3
Section Headers:
[Nr] Name Type Addr Off Size ES Flg Lk Inf Al
[ 0] NULL 00000000 000000 000000 00 0 0 0
[ 1] .text PROGBITS 00008054 000054 000006 00 AX 0 0 4
[ 2] .ARM.attributes ARM_ATTRIBUTES 00000000 00005a 000014 00 0 0 1
[ 3] .shstrtab STRTAB 00000000 00006e 000031 00 0 0 1
[ 4] .symtab SYMTAB 00000000 000190 0000e0 10 5 6 4
[ 5] .strtab STRTAB 00000000 000270 000058 00 0 0 1
Key to Flags:
W (write), A (alloc), X (execute), M (merge), S (strings)
I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)
O (extra OS processing required) o (OS specific), p (processor specific)
There are no section groups in this file.
Program Headers:
Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align
LOAD 0x000000 0x00008000 0x00008000 0x0005a 0x0005a R E 0x8000
Section to Segment mapping:
Segment Sections...
00 .text
There is no dynamic section in this file.
There are no relocations in this file.
There are no unwind sections in this file.
Symbol table '.symtab' contains 14 entries:
Num: Value Size Type Bind Vis Ndx Name
0: 00000000 0 NOTYPE LOCAL DEFAULT UND
1: 00008054 0 SECTION LOCAL DEFAULT 1
2: 00000000 0 SECTION LOCAL DEFAULT 2
3: 00000000 0 FILE LOCAL DEFAULT ABS start.o
4: 00008054 0 NOTYPE LOCAL DEFAULT 1 $t
5: 00000000 0 FILE LOCAL DEFAULT ABS
6: 0001005a 0 NOTYPE GLOBAL DEFAULT 1 _bss_end__
7: 0001005a 0 NOTYPE GLOBAL DEFAULT 1 __bss_start__
8: 0001005a 0 NOTYPE GLOBAL DEFAULT 1 __bss_end__
9: 00008055 0 FUNC GLOBAL DEFAULT 1 _start
10: 0001005a 0 NOTYPE GLOBAL DEFAULT 1 __bss_start
11: 0001005c 0 NOTYPE GLOBAL DEFAULT 1 __end__
12: 0001005a 0 NOTYPE GLOBAL DEFAULT 1 _edata
13: 0001005c 0 NOTYPE GLOBAL DEFAULT 1 _end
No version information found in this file.
Attribute Section: aeabi
File Attributes
Tag_CPU_arch: v4T
Tag_THUMB_ISA_use: Thumb-1
解决方案 3:
这里回答。
谢谢大家。
http://stuff.mit.edu/afs/sipb/project/egcs/src/egcs/gcc/config/arm/README-interworking
BX
如果在 ARM 模式下进行调用,则通过函数指针进行的调用应使用指令:.code 32 mov lr, pc bx rX
但是,此代码序列在 Thumb 模式下不起作用,因为 mov 指令不会设置寄存器的最低位。相反,应使用
lr
分支链接函数:_call_via_rX
.code 16 bl _call_via_rX
其中
rX
替换为包含函数地址的寄存器的名称。
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件