Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
script3r
GitHub Repository: script3r/os161
Path: blob/master/kern/syscall/runprogram.c
2093 views
1
/*
2
* Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009
3
* The President and Fellows of Harvard College.
4
*
5
* Redistribution and use in source and binary forms, with or without
6
* modification, are permitted provided that the following conditions
7
* are met:
8
* 1. Redistributions of source code must retain the above copyright
9
* notice, this list of conditions and the following disclaimer.
10
* 2. Redistributions in binary form must reproduce the above copyright
11
* notice, this list of conditions and the following disclaimer in the
12
* documentation and/or other materials provided with the distribution.
13
* 3. Neither the name of the University nor the names of its contributors
14
* may be used to endorse or promote products derived from this software
15
* without specific prior written permission.
16
*
17
* THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY AND CONTRIBUTORS ``AS IS'' AND
18
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20
* ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OR CONTRIBUTORS BE LIABLE
21
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27
* SUCH DAMAGE.
28
*/
29
30
/*
31
* Sample/test code for running a user program. You can use this for
32
* reference when implementing the execv() system call. Remember though
33
* that execv() needs to do more than this function does.
34
*/
35
36
#include <types.h>
37
#include <kern/errno.h>
38
#include <kern/fcntl.h>
39
#include <lib.h>
40
#include <thread.h>
41
#include <current.h>
42
#include <addrspace.h>
43
#include <vm.h>
44
#include <vfs.h>
45
#include <syscall.h>
46
#include <test.h>
47
48
/*
49
* Load program "progname" and start running it in usermode.
50
* Does not return except on error.
51
*
52
* Calls vfs_open on progname and thus may destroy it.
53
*/
54
int
55
runprogram(char *progname)
56
{
57
struct vnode *v;
58
vaddr_t entrypoint, stackptr;
59
int result;
60
61
/* Open the file. */
62
result = vfs_open(progname, O_RDONLY, 0, &v);
63
if (result) {
64
return result;
65
}
66
67
/* We should be a new thread. */
68
KASSERT(curthread->t_addrspace == NULL);
69
70
/* Create a new address space. */
71
curthread->t_addrspace = as_create();
72
if (curthread->t_addrspace==NULL) {
73
vfs_close(v);
74
return ENOMEM;
75
}
76
77
/* Activate it. */
78
as_activate(curthread->t_addrspace);
79
80
/* Load the executable. */
81
result = load_elf(v, &entrypoint);
82
if (result) {
83
/* thread_exit destroys curthread->t_addrspace */
84
vfs_close(v);
85
return result;
86
}
87
88
/* Done with the file now. */
89
vfs_close(v);
90
91
/* Define the user stack in the address space */
92
result = as_define_stack(curthread->t_addrspace, &stackptr);
93
if (result) {
94
/* thread_exit destroys curthread->t_addrspace */
95
return result;
96
}
97
98
/* Warp to user mode. */
99
enter_new_process(0 /*argc*/, NULL /*userspace addr of argv*/,
100
stackptr, entrypoint);
101
102
/* enter_new_process does not return. */
103
panic("enter_new_process returned\n");
104
return EINVAL;
105
}
106
107
108