2010-03-04 18:29:38 +00:00
|
|
|
/*
|
|
|
|
* Generic syscall call.
|
2012-04-12 08:50:42 +00:00
|
|
|
* Upon entry:
|
|
|
|
* %eax: system call number - caller save
|
|
|
|
* %ebx: arg0 to system call - callee save
|
|
|
|
* %ecx: arg1 - caller save
|
|
|
|
* %edx: arg2 - caller save
|
|
|
|
* %esi: arg3 - callee save
|
|
|
|
* %edi: arg4 - callee save
|
|
|
|
* %ebp: arg5 - callee save
|
2010-03-04 18:29:38 +00:00
|
|
|
*/
|
|
|
|
|
2013-03-22 05:48:18 +00:00
|
|
|
#include <asm/unistd.h>
|
2013-02-12 01:08:16 +00:00
|
|
|
#include <machine/asm.h>
|
2010-03-04 18:29:38 +00:00
|
|
|
|
2013-02-12 01:08:16 +00:00
|
|
|
ENTRY(syscall)
|
2012-04-12 08:50:42 +00:00
|
|
|
# Push the callee save registers.
|
2010-03-04 18:29:38 +00:00
|
|
|
push %ebx
|
|
|
|
push %esi
|
|
|
|
push %edi
|
2012-04-12 08:50:42 +00:00
|
|
|
push %ebp
|
2010-03-04 18:29:38 +00:00
|
|
|
|
2012-04-12 08:50:42 +00:00
|
|
|
# Load all the arguments from the calling frame.
|
|
|
|
# (Not all will be valid, depending on the syscall.)
|
|
|
|
mov 20(%esp),%eax
|
|
|
|
mov 24(%esp),%ebx
|
|
|
|
mov 28(%esp),%ecx
|
|
|
|
mov 32(%esp),%edx
|
|
|
|
mov 36(%esp),%esi
|
|
|
|
mov 40(%esp),%edi
|
|
|
|
mov 44(%esp),%ebp
|
|
|
|
|
|
|
|
# Make the system call.
|
2010-03-04 18:29:38 +00:00
|
|
|
int $0x80
|
|
|
|
|
2012-04-12 08:50:42 +00:00
|
|
|
# Error?
|
2011-06-17 21:37:50 +00:00
|
|
|
cmpl $-4095, %eax
|
2010-03-04 18:29:38 +00:00
|
|
|
jb 1f
|
2012-04-12 08:50:42 +00:00
|
|
|
# Yes, so set errno.
|
2010-03-04 18:29:38 +00:00
|
|
|
negl %eax
|
|
|
|
pushl %eax
|
|
|
|
call __set_errno
|
|
|
|
addl $4, %esp
|
|
|
|
orl $-1, %eax
|
|
|
|
1:
|
2012-04-12 08:50:42 +00:00
|
|
|
# Restore the callee save registers.
|
|
|
|
pop %ebp
|
2010-03-04 18:29:38 +00:00
|
|
|
pop %edi
|
|
|
|
pop %esi
|
|
|
|
pop %ebx
|
|
|
|
ret
|
2013-02-12 01:08:16 +00:00
|
|
|
END(syscall)
|