-
Notifications
You must be signed in to change notification settings - Fork 22
/
exec.c
executable file
·202 lines (170 loc) · 4.37 KB
/
exec.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
#include "types.h"
#include "param.h"
#include "memlayout.h"
#include "mmu.h"
#include "proc.h"
#include "defs.h"
#include "x86.h"
#include "elf.h"
#define MAX_ENVIRONMENT_PATH_LENGTH (1024) // the max length of each path
#define MAX_PATH_NUMBER (100) // the max number of the paths can be save.
// its use to hold one path
typedef struct _path_item{
char path[1024];
int length;
}path_item;
// its use to hold all path in array
path_item environment_path_set[MAX_PATH_NUMBER];
// the file path
char file_path[MAX_ENVIRONMENT_PATH_LENGTH * 2];
/*
sys_set_global_path
set the global environment path
*/
int
sys_set_global_path(void){
char* strpath;
int pos = 0;
int i = 0;
int length = 0;
int count = 0;
//get the pointer
if(argstr(0, &strpath) < 0)
return -1;
// clear all path before
memset(environment_path_set, 0, sizeof(path_item) * MAX_PATH_NUMBER);
length = strlen(strpath);
pos = 0;
count = 0;
for(i = 0; i < length; i++){
if(strpath[i] == ':'){
//finishe
environment_path_set[count].path[pos] = '\0';
environment_path_set[count].length = pos;
count ++;
pos = 0;
}else{
//add this char to string
if(pos < MAX_ENVIRONMENT_PATH_LENGTH - 1){
environment_path_set[count].path[pos] = strpath[i];
pos++;
}
}
}
return 0;
}
int
exec(char *path, char **argv)
{
char *s, *last;
int i, off;
uint argc, sz, sp, ustack[3+MAXARG+1];
struct elfhdr elf;
struct inode *ip;
struct proghdr ph;
pde_t *pgdir, *oldpgdir;
int length;
int found = 0;
path_item *pitem;
int n;
//if not found, search program in the
if((ip = namei(path)) == 0){
//get the length of path from parameter
length = strlen(path);
for(i = 0; i < MAX_PATH_NUMBER && !found; i++){
// get current variable
pitem = environment_path_set + i;
//clear buffer
memset(file_path, 0, sizeof(char) * MAX_ENVIRONMENT_PATH_LENGTH * 2);
n = 0;
//copy the environment path
for(n=0; n < pitem->length; n++){
file_path[n] = pitem->path[n];
}
//copy the path from parameter
for(n=0; n < length; n++){
file_path[pitem->length + n] = path[n];
}
//set string end
file_path[pitem->length + length] = '\0';
if((ip = namei(file_path)) != 0){
path = file_path;
found = 1;
}
}
// nout found
if(!found)
return -1;
}
#ifdef DML //reset the priority to 2
reset_priority();
#endif
ilock(ip);
pgdir = 0;
// Check ELF header
if(readi(ip, (char*)&elf, 0, sizeof(elf)) < sizeof(elf))
goto bad;
if(elf.magic != ELF_MAGIC)
goto bad;
if((pgdir = setupkvm()) == 0)
goto bad;
// Load program into memory.
sz = 0;
for(i=0, off=elf.phoff; i<elf.phnum; i++, off+=sizeof(ph)){
if(readi(ip, (char*)&ph, off, sizeof(ph)) != sizeof(ph))
goto bad;
if(ph.type != ELF_PROG_LOAD)
continue;
if(ph.memsz < ph.filesz)
goto bad;
if((sz = allocuvm(pgdir, sz, ph.vaddr + ph.memsz)) == 0)
goto bad;
if(loaduvm(pgdir, (char*)ph.vaddr, ip, ph.off, ph.filesz) < 0)
goto bad;
}
iunlockput(ip);
ip = 0;
// Allocate two pages at the next page boundary.
// Make the first inaccessible. Use the second as the user stack.
sz = PGROUNDUP(sz);
if((sz = allocuvm(pgdir, sz, sz + 2*PGSIZE)) == 0)
goto bad;
clearpteu(pgdir, (char*)(sz - 2*PGSIZE));
sp = sz;
// Push argument strings, prepare rest of stack in ustack.
for(argc = 0; argv[argc]; argc++) {
if(argc >= MAXARG)
goto bad;
sp = (sp - (strlen(argv[argc]) + 1)) & ~3;
if(copyout(pgdir, sp, argv[argc], strlen(argv[argc]) + 1) < 0)
goto bad;
ustack[3+argc] = sp;
}
ustack[3+argc] = 0;
ustack[0] = 0xffffffff; // fake return PC
ustack[1] = argc;
ustack[2] = sp - (argc+1)*4; // argv pointer
sp -= (3+argc+1) * 4;
if(copyout(pgdir, sp, ustack, (3+argc+1)*4) < 0)
goto bad;
// Save program name for debugging.
for(last=s=path; *s; s++)
if(*s == '/')
last = s+1;
safestrcpy(proc->name, last, sizeof(proc->name));
// Commit to the user image.
oldpgdir = proc->pgdir;
proc->pgdir = pgdir;
proc->sz = sz;
proc->tf->eip = elf.entry; // main
proc->tf->esp = sp;
switchuvm(proc);
freevm(oldpgdir);
return 0;
bad:
if(pgdir)
freevm(pgdir);
if(ip)
iunlockput(ip);
return -1;
}