这段代码应该以 1 位数字输出密钥的长度,但它输出段错误。
我不明白我做错了什么,问题一定出在列表的第一部分,因为我直接从书中获取了flen
功能:
section .text
global _start ;must be declared for linker (ld)
_start:
mov edi,key
call flen
mov ebx,1
add ecx,38
mov edx,1
int 0x80
flen: ;length of string on es:edi
xor eax,eax
xor ecx,ecx
dec ecx
cld
repne scasb
neg ecx
ret
xor eax,eax
inc eax
int 0x80
section .data
key db '123456',0x0
keylen equ $ - key ;length of our dear string
plaintext times 256 db 1
您应该将退出代码移动到 flen
之前。因为它是您的控制流在系统调用返回后再次进入flen
。此外,您应该将系统呼叫号码放入eax
。此外,要打印的值必须在内存中,并且必须传递指针。0
的ascii代码48
不是38
,或者你可以只使用'0'
。像这样:
section .text
global _start ;must be declared for linker (ld)
_start:
mov edi,key
call flen
add ecx, '0' ; convert to ascii
push ecx ; put text onto stack
mov ecx, esp ; put address into ecx
mov eax, 4 ; sys_write
mov ebx,1
mov edx,1
int 0x80
xor eax,eax
inc eax
int 0x80
flen: ;length of string on es:edi
xor eax,eax
xor ecx,ecx
dec ecx
cld
repne scasb
neg ecx
ret
section .data
key db '123456',0x0
keylen equ $ - key ;length of our dear string
plaintext times 256 db 1
请注意,flen 返回8
。PS:学习使用调试器。