-
Notifications
You must be signed in to change notification settings - Fork 12
/
Design
239 lines (207 loc) · 5.28 KB
/
Design
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
Data
Table: metadata
---------------------------------------------
| path | |
| uid | |
| gid | |
| permissions | rwxrwxrwx |
| created | YYYY-MM-DD HH:mm:ss.f |
| accessed | YYYY-MM-DD HH:mm:ss.f |
| modified | YYYY-MM-DD HH:mm:ss.f |
---------------------------------------------
Table: userdata
---------------------------------
| uid | |
| gid | |
| password | sha256 hashed |
---------------------------------
========================================
http://www.ucblueash.edu/thomas/Intro_Unix_Text/TOC.html
http://www.comptechdoc.org/os/linux/howlinuxworks/linux_hllogin.html
Startup
ROM -> RAM
bootloader
system kernel
mem check
init process
sets sys states
login
sets uid, gid
starts /etc/passwd startup application
System Start
startup.py
login.py
interpreter.py
STUFF
shutdown.py
--- System ------------------------
| --- Login --------------------- |
| | --- <Shell> --------------- | |
| | | | | |
| | | STUFF | | |
| | | | | |
| | --------------------------- | |
| ------------------------------- |
-----------------------------------
-- Display
|
----------------- |-- Filesystem
| | /
init -----> | System ----{DRIVERS} -- Etc
| | \
----------------- |-- Metadata
| |
| -- Userdata
--------|--------
| [SysCall] | <-- stdin --- [Shell]
| Shell | --- stdout --> [Shell]
| | --- stderr --> [Shell]
-----------------
|
--------|--------
| [shell] |
| Program |
| |
-----------------
/etc/passwd (: delimited)
---------------------------------------------------------
| username | |
| password | random length encrypted (if not 'x') |
| uid | |
| gid | |
| text info | name, dept, etc (optional fields) |
| login dir | |
| startup app | |
---------------------------------------------------------
========================================
Processes
PCB
---------------
| pid |
| ppid |
| owner |
| priority |
| state |
---------------
========================================
Directories
/
|++ programs
| |-- alias.py
| |-- cat.py
| |-- cp.py
| `-- ...
|++ documents
| |++ <USER0>
| |++ <USER1>
| `++ ...
|++ data
| |-- passwd
| |-- data
| `-- system.py
`++ kernel
|-- constants.py
|-- filesystem.py
`-- ...
# TODO
/
|++ bin
| |-- alias.py
| |-- cat.py
| |-- cp.py
| `-- ...
|++ home
| |++ <USER0>
| |++ <USER1>
| `++ ...
|++ etc
| |-- passwd
| |-- data
| `-- system.py
|++ dev
| |-- null
| `-- ...
`++ kernel
|-- constants.py
|-- filesystem.py
`-- ...
========================================
Programs
Required functions
run(shell, args)
arguments
shell
a Shell instance from /kernel/shell.py
args
a list of all the input from the interpreter split on spaces
return
None
# TODO
status codes
help()
return
string of help info
========================================
Process Manager
Memory Manager
Not needed
Filesystem
Files
Metadata
Device Control
Keyboard/Mouse
Display
Networking
Syscalls
abs_path(path)
rel_path(path, base)
irel_path(path)
iabs_path(path)
dir_name(path)
base_name(path)
split(path)
join_path(*args)
exists(path)
is_file(path)
is_dir(path)
move(src, dst)
copy(src, dst, recursive=False)
remove(path)
remove_dir(path)
get_size(path)
list_dir(path)
list_glob(expression)
list_all(path="/")
make_dir(path, parents=False)
open_file(path, mode)
open_program(path)
get_meta_data(path)
get_all_meta_data(path='/')
get_permission_string(path)
get_permission_number(path)
set_permission_string(path, value)
set_permission_number(path, value)
set_permission(path, value)
set_time(path, value=None)
set_time_list(path, value)
set_time_dict(path, value=None)
set_time_string(path, value=None)
get_time(path)
get_owner(path)
set_owner(path, owner)
get_user_data(user)
get_all_user_data(self)
add_user(user, group, info, homedir, shell, password)
delete_user(user)
change_user(user, value)
get_group(user)
set_group(user, value)
get_info(user)
set_info(user, value)
get_homedir(user)
set_homedir(user, value)
get_shell(user)
set_shell(user, value)
get_password(user)
set_password(user, value)
correct_password(user, password)