这是我的代码:
@execve takes 3 arguments (r0,r1,r2)
mov r7,#11 @syscall number for execve
ldr r0,=addr_of_string
sub r1,r1,r1 @so that r1 can get zero
sub r2,r2,r2 @same for r2
svc #0
end:
mov r7,#1
svc 0
.data
addr_of_string: .asciz "\bin\ls"
它成功编译并成功链接但是当我执行它时,我得到:
NULL argv [0]通过exec系统调用
传递答案 0 :(得分:0)
Why can the execve system call run "/bin/sh" without any argv arguments, but not "/bin/ls"?
上面的帖子说,既然/ bin / ls是gnu coreutils包的一部分,他们就会调用' set' [程序名称]进行设置。
答案 1 :(得分:0)
Why can the execve system call run "/bin/sh" without any argv arguments, but not "/bin/ls"?
上面的帖子说,因为/ bin / ls是gnu coreutil包的一部分,所以必须在调用之前进行设置。