123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- #include <types.h>
- #include <kern/errno.h>
- #include <kern/unistd.h>
- #include <kern/wait.h>
- #include <mips/trapframe.h>
- #include <lib.h>
- #include <vfs.h>
- #include <vnode.h>
- #include <syscall.h>
- #include <current.h>
- #include <proc.h>
- #include <thread.h>
- #include <addrspace.h>
- #include <copyinout.h>
- #include <synch.h>
- void sys__exit(int exitcode)
- {
- struct addrspace * as;
- struct proc * p = curproc;
- p->exitcode = exitcode;
- DEBUG(DB_SYSCALL,"Syscall: _exit(%d)\n",exitcode);
- KASSERT(curproc->p_addrspace != NULL);
-
- lock_acquire(proclock);
- int x = listpop(p->kids);
- while (x)
- {
- if(processes->pids[x])
- {
- processes->pids[x]->parent = NULL;
- if (processes->pids[x]->exitcode >= 0)
- {
- lock_release(proclock);
- proc_destroy(processes->pids[x]);
- lock_acquire(proclock);
- }
- }
- x = listpop(p->kids);
- }
- lock_release(proclock);
- listelete(p->kids);
-
- // VFS fields
- if (p->p_cwd)
- {
- VOP_DECREF(p->p_cwd);
- p->p_cwd = NULL;
- }
-
- as_deactivate();
- as = curproc_setas(NULL);
- as_destroy(as);
- /* detach this thread from its process */
- /* note: curproc cannot be used after this call */
- proc_remthread(curthread);
- threadarray_cleanup(&p->p_threads);
- spinlock_cleanup(&p->p_lock);
- lock_acquire(p->waitlock);
- cv_broadcast(p->waiting, p->waitlock);
- lock_release(p->waitlock);
- if (!(p->parent) || p->parent->exitcode >= 0 || p->parent == kproc) proc_destroy(p);
-
- thread_exit();
- /* thread_exit() does not return, so we should never get here */
- panic("return from thread_exit in sys_exit\n");
- }
- // basically, return an error code, and put the actual result in retval
- int sys_getpid(pid_t * retval)
- {
- if (!(curproc)) return 1;
- *retval = curproc->pid;
- return(0);
- }
- int sys_waitpid(pid_t pid, userptr_t status, int options, pid_t * retval)
- {
- (void)status;
- if (options != 0)
- {
- return(EINVAL);
- }
-
- if (pid < PID_MIN || pid > PID_MAX) return ESRCH;
- struct proc * target = getChild(curproc, pid);
-
- if (!(target)) return ECHILD;
- if (target->exitcode >= 0)
- {
- *retval = target->exitcode;
- return 0;
- }
-
- lock_acquire(target->waitlock);
- cv_wait(target->waiting, target->waitlock);
- lock_release(target->waitlock);
- *retval = target->exitcode;
- proc_destroy(target);
- return 0;
- }
- int sys_fork(struct trapframe * tf, int * retval)
- {
- // create new process' memory space
- struct proc * child = proc_create_runprogram("childproc");
- if ((!child)) return ENOMEM;
-
- struct trapframe * new_tf = kmalloc(sizeof(*tf));
- struct addrspace * new_as;
- as_copy(curproc_getas(), &new_as);
-
- if (!(new_as) || !(new_tf))
- {
- proc_destroy(child);
- kfree(new_as);
- kfree(new_tf);
- return ENOMEM;
- }
-
- // set PIDs, etc. copy data in to the new space
- child->p_addrspace = new_as;
- child->parent = curproc;
- add_child(curproc, child->pid);
- *new_tf = *tf;
-
- // start new thread
- thread_fork("childproc", child, enter_forked_process, new_tf, 0);
-
- // return correct values
- if (curproc->pid == child->pid) *retval = 0;
- else *retval = child->pid;
- return 0;
- }
- // args is an array of null terminated strings, with the last element being a null pointer so we don't overflow if iterating
- // since this is a userptr type, we need to use copyin and copyout to get data properly
- // hopefully the path in program is actually a full filepath
- int execv(const char * program, userptr_t args)
- {
- userptr_t ** temp = args;
- int argcount = 0;
- char ** argv;
-
- // see how long args is
- while (1)
- {
- char * temp2;
- if (copyin(temp, temp2, sizeof(char *))) return errno;
- if (!(temp2)) break;
- temp += sizeof(char *);
- ++argcount;
- }
-
- // allocate space for argv
- argv = kmalloc(argcount * sizeof(char *));
- if (!argv) return ENOMEM;
-
- // get kernel copy of args in argv
- temp = args;
- for (int i = 0; i < argcount; ++i)
- {
- if (copyin(args, argv[i], sizeof(char *)))
- {
- kfree(argv);
- return errno;
- }
-
- temp += sizeof(char *);
- }
-
- // allocate space for filepath
- const char * filepath = kmalloc(sizeof(program));
- if (!(filepath))
- {
- kfree(argv);
- return ENOMEM;
- }
-
- // get kernel copy of filepath
- size_t useless;
- if (copyinstr((const_userptr_t)program, filepath, strlen(program) + 1, &useless))
- {
- kfree(argv);
- kfree(filepath);
- return errno;
- }
-
- // open program file
- struct vnode * v;
- if (vfs_open(filepath, O_RDONLY, 0, &v))
- {
- kfree(argv);
- kfree(filepath);
- return errno;
- }
-
- // create new address space
- struct addrspace * as = as_create();
- if (!(as))
- {
- vfs_close(v);
- kfree(argv);
- kfree(filepath);
- return ENOMEM;
- }
- // Switch to the new as and activate. keep old in case we fail later
- struct addrspace * oldas = curproc_getas();
- curproc_setas(as);
- as_activate();
- // Load santa's favourite slave
- if (load_elf(v, &entrypoint))
- {
- vfs_close(v);
- kfree(argv);
- kfree(filepath);
- curproc_setas(oldas);
- as_destroy(as);
- return errno;
- }
- // close the file now that we're done
- vfs_close(v);
-
- // create the new stack
- vaddr_t newstack;
- if (as_define_stack(as, &newstack))
- {
- kfree(argv);
- kfree(filepath);
- curproc_setas(oldas);
- as_destroy(as);
- return errno;
- }
-
- userptr_t userArgv;
-
- // need to copy data over into the new address space, as rn it is all in kernel heap
- }
|