i have written a hexdump utility in assembly language using nasm compiler and ld linker.The programe is supposed to dump the hex values for any input file.However it segfaults at one particular procedure "LoadBuff".The function of loadbuff is to read input to a buffer of 16 bytes.the code is
LoadBuff:
push ebx
push edx
push eax
mov eax,3 ;sys_read call
mov ebx,0 ;read from standard input
mov ecx,Buff ;pass the buffer adress
mov edx,BuffLen ;pass the number of bytes to be read at a time
int 80h ;call the linux kernel
mov ebp,eax
;cmp eax,0 ;number of characters read is returned in eax
;jz exit ;if zero character is returned i.e end of iinput file
;jump to exit
xor ecx,ecx
pop eax
pop edx
pop ebx
ret
If the lines
;cmp eax,0
;jz exit
are uncommented the code runs fine,without any seg fault.However,when i comment it and include these lines in the caller so as to do the same comparision in the caller and not here,this procedure seg faults.
gdb backtrace gives
#0 0x00000000 in ?? ()
Any idea why is it happening like that?
exitlabel? – Greg Hewgill May 6 '11 at 4:11