xv6-cs450/syscall.c

140 lines
3.2 KiB
C
Raw Normal View History

2006-06-15 18:02:20 +02:00
#include "types.h"
2007-08-28 01:26:33 +02:00
#include "defs.h"
2006-06-15 18:02:20 +02:00
#include "param.h"
#include "memlayout.h"
2006-06-15 18:02:20 +02:00
#include "mmu.h"
#include "proc.h"
#include "x86.h"
#include "syscall.h"
2006-09-06 19:50:20 +02:00
// User code makes a system call with INT T_SYSCALL.
// System call number in %eax.
// Arguments on the stack, from the user call to the C
// library system call function. The saved user %esp points
// to a saved program counter, and then the first argument.
2006-06-15 18:02:20 +02:00
// Fetch the int at addr from the current process.
2006-06-26 17:11:19 +02:00
int
fetchint(uint addr, int *ip)
2006-06-26 17:11:19 +02:00
{
if(addr >= proc->sz || addr+4 > proc->sz)
return -1;
*ip = *(int*)(addr);
return 0;
}
// Fetch the nul-terminated string at addr from the current process.
2006-09-07 16:13:26 +02:00
// Doesn't actually copy the string - just sets *pp to point at it.
// Returns length of string, not including nul.
int
fetchstr(uint addr, char **pp)
{
2007-08-09 19:32:40 +02:00
char *s, *ep;
2006-09-07 16:13:26 +02:00
if(addr >= proc->sz)
return -1;
*pp = (char*)addr;
ep = (char*)proc->sz;
2007-08-09 19:32:40 +02:00
for(s = *pp; s < ep; s++)
if(*s == 0)
return s - *pp;
2006-09-07 16:13:26 +02:00
return -1;
2006-06-26 17:11:19 +02:00
}
2007-08-28 01:53:50 +02:00
// Fetch the nth 32-bit system call argument.
2006-06-26 17:11:19 +02:00
int
2007-08-28 01:53:17 +02:00
argint(int n, int *ip)
2006-06-26 17:11:19 +02:00
{
return fetchint(proc->tf->esp + 4 + 4*n, ip);
2006-06-26 17:11:19 +02:00
}
2006-09-07 16:13:26 +02:00
// Fetch the nth word-sized system call argument as a pointer
// to a block of memory of size n bytes. Check that the pointer
// lies within the process address space.
2006-07-27 23:10:00 +02:00
int
2007-08-28 01:53:17 +02:00
argptr(int n, char **pp, int size)
2006-07-27 23:10:00 +02:00
{
2006-09-07 16:13:26 +02:00
int i;
2007-08-28 01:53:17 +02:00
if(argint(n, &i) < 0)
2006-09-07 16:13:26 +02:00
return -1;
2011-02-28 15:32:20 +01:00
if((uint)i >= proc->sz || (uint)i+size > proc->sz)
2006-09-07 16:13:26 +02:00
return -1;
*pp = (char*)i;
2006-09-07 16:13:26 +02:00
return 0;
2006-07-27 23:10:00 +02:00
}
2006-09-07 16:13:26 +02:00
// Fetch the nth word-sized system call argument as a string pointer.
// Check that the pointer is valid and the string is nul-terminated.
// (There is no shared writable memory, so the string can't change
// between this check and being used by the kernel.)
2006-06-27 16:35:53 +02:00
int
2007-08-28 01:53:17 +02:00
argstr(int n, char **pp)
2006-06-27 16:35:53 +02:00
{
2006-09-07 16:13:26 +02:00
int addr;
2007-08-28 01:53:17 +02:00
if(argint(n, &addr) < 0)
return -1;
return fetchstr(addr, pp);
2006-06-27 16:35:53 +02:00
}
extern int sys_chdir(void);
extern int sys_close(void);
extern int sys_dup(void);
extern int sys_exec(void);
extern int sys_exit(void);
extern int sys_fork(void);
extern int sys_fstat(void);
extern int sys_getpid(void);
extern int sys_kill(void);
extern int sys_link(void);
extern int sys_mkdir(void);
extern int sys_mknod(void);
extern int sys_open(void);
extern int sys_pipe(void);
extern int sys_read(void);
extern int sys_sbrk(void);
2007-08-27 15:34:35 +02:00
extern int sys_sleep(void);
extern int sys_unlink(void);
extern int sys_wait(void);
extern int sys_write(void);
extern int sys_uptime(void);
2006-07-27 23:10:00 +02:00
2007-08-08 11:41:21 +02:00
static int (*syscalls[])(void) = {
[SYS_fork] sys_fork,
[SYS_exit] sys_exit,
[SYS_wait] sys_wait,
2007-08-08 11:41:21 +02:00
[SYS_pipe] sys_pipe,
[SYS_read] sys_read,
[SYS_kill] sys_kill,
[SYS_exec] sys_exec,
[SYS_fstat] sys_fstat,
[SYS_chdir] sys_chdir,
[SYS_dup] sys_dup,
[SYS_getpid] sys_getpid,
2007-08-08 11:41:21 +02:00
[SYS_sbrk] sys_sbrk,
2007-08-27 15:34:35 +02:00
[SYS_sleep] sys_sleep,
[SYS_uptime] sys_uptime,
[SYS_open] sys_open,
[SYS_write] sys_write,
[SYS_mknod] sys_mknod,
[SYS_unlink] sys_unlink,
[SYS_link] sys_link,
[SYS_mkdir] sys_mkdir,
[SYS_close] sys_close,
2007-08-08 11:41:21 +02:00
};
2006-06-15 18:02:20 +02:00
void
2006-07-15 19:17:00 +02:00
syscall(void)
2006-06-15 18:02:20 +02:00
{
2007-08-24 22:28:08 +02:00
int num;
num = proc->tf->eax;
if(num > 0 && num < NELEM(syscalls) && syscalls[num]) {
proc->tf->eax = syscalls[num]();
} else {
2007-08-08 11:41:21 +02:00
cprintf("%d %s: unknown sys call %d\n",
proc->pid, proc->name, num);
proc->tf->eax = -1;
2006-06-15 18:02:20 +02:00
}
}