gpt4 book ai didi

linux - 如何将字符串数组作为参数传递给函数?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:11:31 25 4
gpt4 key购买 nike

如何将字符串数组作为参数传递给汇编程序中的函数?例如,假设我想调用如下所示的 execve() 函数:

int execve(const char *filename, char *const argv[], char *const envp[]);

所以我这样做:

测试.asm

format elf executable

entry main

main:
mov eax, 11 ; execve - executes program
mov ebx, filename ; label name is address of string variable
mov ecx, args ; label name is address of array of strings?
mov edx, 0 ; NULL
int 80h

mov eax, 1 ;exit
int 80h
ret

filename db '/bin/ls', 0 ; path to program
args db '/bin/ls', 0, '.', 0, 0 ; array should end with empty string to
; indicate end of array

生成文件

all:
~/apps/fasm/fasm ./test.asm

但是当我运行我的程序时 execve() 无法执行请求的程序并且 strace ./test 显示此消息:

execve("/bin/ls", [0x6e69622f, 0x736c2f, 0x2e], [/* 0 vars */]) = -1 EFAULT (Bad address)

如何正确地将“args”变量传递给 execve 函数?

谢谢:)

最佳答案

你知道这在 C 中是如何工作的吗?字符串是指针,字符串数组是指针数组。因此,您需要执行以下操作:

filename db '/bin/ls', 0 
dot db '.', 0
args dd filename, dot, 0

注意argsdd获取指针大小的项,它填充的是字符串的地址。

关于linux - 如何将字符串数组作为参数传递给函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36248176/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com