You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
riscv-pke/kernel/syscall.c

246 lines
6.5 KiB

/*
* contains the implementation of all syscalls.
*/
#include <stdint.h>
#include <errno.h>
#include "util/types.h"
#include "syscall.h"
#include "string.h"
#include "process.h"
#include "util/functions.h"
#include "pmm.h"
#include "vmm.h"
#include "sched.h"
#include "proc_file.h"
#include "spike_interface/spike_utils.h"
//
// implement the SYS_user_print syscall
//
ssize_t sys_user_print(const char* buf, size_t n) {
// buf is now an address in user space of the given app's user stack,
// so we have to transfer it into phisical address (kernel is running in direct mapping).
assert( current );
char* pa = (char*)user_va_to_pa((pagetable_t)(current->pagetable), (void*)buf);
sprint(pa);
return 0;
}
//
// implement the SYS_user_exit syscall
//
ssize_t sys_user_exit(uint64 code) {
sprint("User exit with code:%d.\n", code);
// reclaim the current process, and reschedule. added @lab3_1
free_process( current );
schedule();
return 0;
}
//
// maybe, the simplest implementation of malloc in the world ... added @lab2_2
//
uint64 sys_user_allocate_page() {
void* pa = alloc_page();
uint64 va;
// if there are previously reclaimed pages, use them first (this does not change the
// size of the heap)
if (current->user_heap.free_pages_count > 0) {
va = current->user_heap.free_pages_address[--current->user_heap.free_pages_count];
assert(va < current->user_heap.heap_top);
} else {
// otherwise, allocate a new page (this increases the size of the heap by one page)
va = current->user_heap.heap_top;
current->user_heap.heap_top += PGSIZE;
current->mapped_info[HEAP_SEGMENT].npages++;
}
user_vm_map((pagetable_t)current->pagetable, va, PGSIZE, (uint64)pa,
prot_to_type(PROT_WRITE | PROT_READ, 1));
return va;
}
//
// reclaim a page, indicated by "va". added @lab2_2
//
uint64 sys_user_free_page(uint64 va) {
user_vm_unmap((pagetable_t)current->pagetable, va, PGSIZE, 1);
// add the reclaimed page to the free page list
current->user_heap.free_pages_address[current->user_heap.free_pages_count++] = va;
return 0;
}
//
// kerenl entry point of naive_fork
//
ssize_t sys_user_fork() {
sprint("User call fork.\n");
return do_fork( current );
}
//
// kerenl entry point of yield. added @lab3_2
//
ssize_t sys_user_yield() {
// TODO (lab3_2): implment the syscall of yield.
// hint: the functionality of yield is to give up the processor. therefore,
// we should set the status of currently running process to READY, insert it in
// the rear of ready queue, and finally, schedule a READY process to run.
panic( "You need to implement the yield syscall in lab3_2.\n" );
return 0;
}
//
// open file
//
ssize_t sys_user_open(char *pathva, int flags) {
char* pathpa = (char*)user_va_to_pa((pagetable_t)(current->pagetable), pathva);
return do_open(pathpa, flags);
}
//
// read file
//
ssize_t sys_user_read(int fd, char *bufva, uint64 count) {
int i = 0;
while (i < count) { // count can be greater than page size
uint64 addr = (uint64)bufva + i;
uint64 pa = lookup_pa((pagetable_t)current->pagetable, addr);
uint64 off = addr - ROUNDDOWN(addr, PGSIZE);
uint64 len = count - i < PGSIZE - off ? count - i : PGSIZE - off;
uint64 r = do_read(fd, (char *)pa + off, len);
i += r; if (r < len) return i;
}
return count;
}
//
// write file
//
ssize_t sys_user_write(int fd, char *bufva, uint64 count) {
int i = 0;
while (i < count) { // count can be greater than page size
uint64 addr = (uint64)bufva + i;
uint64 pa = lookup_pa((pagetable_t)current->pagetable, addr);
uint64 off = addr - ROUNDDOWN(addr, PGSIZE);
uint64 len = count - i < PGSIZE - off ? count - i : PGSIZE - off;
uint64 r = do_write(fd, (char *)pa + off, len);
i += r; if (r < len) return i;
}
return count;
}
//
// lseek file
//
ssize_t sys_user_lseek(int fd, int offset, int whence) {
return do_lseek(fd, offset, whence);
}
//
// read vinode
//
ssize_t sys_user_stat(int fd, struct istat *istat) {
struct istat * pistat = (struct istat *)user_va_to_pa((pagetable_t)(current->pagetable), istat);
return do_stat(fd, pistat);
}
//
// read disk inode
//
ssize_t sys_user_disk_stat(int fd, struct istat *istat) {
struct istat * pistat = (struct istat *)user_va_to_pa((pagetable_t)(current->pagetable), istat);
return do_disk_stat(fd, pistat);
}
//
// close file
//
ssize_t sys_user_close(int fd) {
return do_close(fd);
}
//
// lib call to opendir
//
ssize_t sys_user_opendir(char * pathva){
char * pathpa = (char*)user_va_to_pa((pagetable_t)(current->pagetable), pathva);
return do_opendir(pathpa);
}
//
// lib call to readdir
//
ssize_t sys_user_readdir(int fd, struct dir *vdir){
struct dir * pdir = (struct dir *)user_va_to_pa((pagetable_t)(current->pagetable), vdir);
return do_readdir(fd, pdir);
}
//
// lib call to mkdir
//
ssize_t sys_user_mkdir(char * pathva){
char * pathpa = (char*)user_va_to_pa((pagetable_t)(current->pagetable), pathva);
return do_mkdir(pathpa);
}
//
// lib call to closedir
//
ssize_t sys_user_closedir(int fd){
return do_closedir(fd);
}
//
// [a0]: the syscall number; [a1] ... [a7]: arguments to the syscalls.
// returns the code of success, (e.g., 0 means success, fail for otherwise)
//
long do_syscall(long a0, long a1, long a2, long a3, long a4, long a5, long a6, long a7) {
switch (a0) {
case SYS_user_print:
return sys_user_print((const char*)a1, a2);
case SYS_user_exit:
return sys_user_exit(a1);
// added @lab2_2
case SYS_user_allocate_page:
return sys_user_allocate_page();
case SYS_user_free_page:
return sys_user_free_page(a1);
case SYS_user_fork:
return sys_user_fork();
case SYS_user_yield:
return sys_user_yield();
// added @lab4_1
case SYS_user_open:
return sys_user_open((char *)a1, a2);
case SYS_user_read:
return sys_user_read(a1, (char *)a2, a3);
case SYS_user_write:
return sys_user_write(a1, (char *)a2, a3);
case SYS_user_lseek:
return sys_user_lseek(a1, a2, a3);
case SYS_user_stat:
return sys_user_stat(a1, (struct istat *)a2);
case SYS_user_disk_stat:
return sys_user_disk_stat(a1, (struct istat *)a2);
case SYS_user_close:
return sys_user_close(a1);
// added @lab4_2
case SYS_user_opendir:
return sys_user_opendir((char *)a1);
case SYS_user_readdir:
return sys_user_readdir(a1, (struct dir *)a2);
case SYS_user_mkdir:
return sys_user_mkdir((char *)a1);
case SYS_user_closedir:
return sys_user_closedir(a1);
default:
panic("Unknown syscall %ld \n", a0);
}
}