- 论坛徽章:
- 0
|
下面这段代码是实现一个非常简单的exec的系统调用,为什么在redhat linux enterprise4 下,编译不通过呢?对汇编嵌入C不懂,还请大虾指教,谢谢!
- void main()
- {
- __asm__("
- jmp 1f
- 2: popl %esi
- movl %esi,0x8(%esi)
- xorl %eax,%eax
- movb %eax,0x7(%esi)
- movl %eax,0xc(%esi)
- movb $0xb,%al
- movl %esi,%ebx
- leal 0x8(%esi),%ecx
- leal 0xc(%esi),%edx
- int $0x80
- xorl %ebx,%ebx
- movl %ebx,%eax
- inc %eax
- int $0x80
- 1: call 2b
- .string \"/bin/sh\"
- ");
- }
复制代码
出错提示:
- shell.c: In function `main':
- shell.c:3: error: missing terminating " character
- shell.c:4:10: invalid suffix "f" on integer constant
- shell.c:4: error: `jmp' undeclared (first use in this function)
- shell.c:4: error: (Each undeclared identifier is reported only once
- shell.c:4: error: for each function it appears in.)
- shell.c:4: error: syntax error before numeric constant
- shell.c:19:12: invalid suffix "b" on integer constant
- shell.c:20: error: stray '\' in program
- shell.c:20: error: missing terminating " character
- shell.c:21: error: missing terminating " character
- shell.c:2: warning: return type of 'main' is not `int'
复制代码 |
|