This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ysos.py
executable file
·194 lines (142 loc) · 6.16 KB
/
ysos.py
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
#!/usr/bin/env python3
import os
import shutil
import subprocess
import argparse
parser = argparse.ArgumentParser(description='Build script for YSOS')
parser.add_argument('-d', '--debug', action='store_true',
help='Enable debug for qemu')
parser.add_argument('-i', '--intdbg', action='store_true',
help='Enable interrupt output for qemu')
parser.add_argument('-m', '--memory', default='96M',
help='Set memory size for qemu, default is 96M')
parser.add_argument('-o', '--output', default='-nographic',
help='Set output for qemu, default is -nographic')
parser.add_argument('-p', '--profile', type=str, choices=['release', 'debug'],
default='release', help='Set build profile for kernel')
parser.add_argument('-v', '--verbose', action='store_true',
help='Enable verbose output')
parser.add_argument('--dry-run', action='store_true', help='Enable dry run')
parser.add_argument('--bios', type=str,
default=os.path.join('assets', 'OVMF.fd'), help='Set BIOS path')
parser.add_argument('--boot', type=str, default='esp', help='Set boot path')
parser.add_argument('task', type=str, choices=[
'build', 'clean', 'launch', 'run'
], default='build', help='Task to execute')
args = parser.parse_args()
def info(step: str, content: str):
print(f'\033[1;32m[+] {step}:\033[0m \033[1m{content}\033[0m')
def error(step: str, content: str):
print(f'\033[1;31m[E] {step}:\033[0m \033[1m{content}\033[0m')
def debug(step: str, content: str):
if args.verbose or args.dry_run:
print(f'\033[1;34m[?] {step}:\033[0m \033[1m{content}\033[0m')
def get_apps():
app_path = os.path.join(os.getcwd(), 'pkg', 'app')
if not os.path.exists(app_path):
return []
apps = [name for name in os.listdir(app_path) if os.path.isdir(
os.path.join(app_path, name)) and name not in ['config', '.cargo']]
return apps
def execute_command(cmd: list, workdir: str | None = None, shell: bool = False) -> int:
debug('Executing', " ".join(cmd) + (f' in {workdir}' if workdir else ''))
if args.dry_run:
return 0
prog = subprocess.Popen(cmd, cwd=workdir, shell=shell)
prog.wait()
if prog.returncode != 0:
raise Exception(f"{cmd} failed with code {prog.returncode}")
return prog.returncode
def qemu(output: str = '-nographic', memory: str = '96M', debug: bool = False, intdbg: bool = False):
qemu_exe = shutil.which('qemu-system-x86_64')
# add optional path C:\Program Files\qemu for Windows
if qemu_exe is None and os.name == 'nt':
qemu_exe = shutil.which('qemu-system-x86_64',
path='C:\\Program Files\\qemu')
if qemu_exe is None:
raise Exception('qemu-system-x86_64 not found in PATH')
qemu_args = [qemu_exe, '-bios', args.bios, '-net', 'none', *output.split(),
'-m', memory, '-drive', 'format=raw,file=fat:rw:esp']
if debug:
qemu_args += ['-s', '-S']
elif intdbg:
qemu_args += ['-no-reboot', '-d', 'int,cpu_reset']
execute_command(qemu_args)
def copy_to_esp(src: str, dst: str):
dst = os.path.join(os.getcwd(), args.boot, dst)
if args.dry_run:
debug('Would copy', f'{src} -> {dst}')
return
# mkdir for dst if not exists
dst_base = os.path.dirname(dst)
if not os.path.exists(dst_base):
os.makedirs(dst_base)
# copy files
if os.path.isfile(src):
debug('Copying', f'{src} -> {dst}')
shutil.copy(src, dst)
else:
raise Exception(f'{src} is not a file')
def build():
cargo_exe = shutil.which('cargo')
if cargo_exe is None:
raise Exception('cargo not found in PATH')
# build uefi boot loader
bootloader = os.path.join(os.getcwd(), 'pkg', 'boot')
info('Building', 'bootloader...')
execute_command([cargo_exe, 'build', '--release'], bootloader)
compile_output = os.path.join(
os.getcwd(), 'target', 'x86_64-unknown-uefi', 'release', 'ysos_boot.efi')
copy_to_esp(compile_output, os.path.join('EFI', 'BOOT', 'BOOTX64.EFI'))
# copy kernel config
config_path = os.path.join(
os.getcwd(), 'pkg', 'kernel', 'config', 'boot.conf')
if os.path.exists(config_path):
copy_to_esp(config_path, os.path.join('EFI', 'BOOT', 'boot.conf'))
# build kernel
kernel = os.path.join(os.getcwd(), 'pkg', 'kernel')
info('Building', 'kernel...')
profile = '--release' if args.profile == 'release' else '--profile=release-with-debug'
execute_command([cargo_exe, 'build', profile], kernel)
profile_dir = 'release' if args.profile == 'release' else 'release-with-debug'
compile_output = os.path.join(
os.getcwd(), 'target', 'x86_64-unknown-none', profile_dir, 'ysos_kernel')
copy_to_esp(compile_output, 'KERNEL.ELF')
# build apps
apps = get_apps()
for app in apps:
app_path = os.path.join(os.getcwd(), 'pkg', 'app', app)
# read Cargo.toml to get the package name
with open(os.path.join(app_path, 'Cargo.toml'), 'r') as f:
for line in f.readlines():
if 'name' in line:
app_name = line.split('"')[1]
break
info('Building', f'app {app}...')
execute_command([cargo_exe, 'build', profile], app_path)
compile_output = os.path.join(
app_path, 'target', 'x86_64-unknown-ysos', profile_dir, app_name)
copy_to_esp(compile_output, os.path.join('APP', app))
def clean():
if os.path.exists(args.boot):
shutil.rmtree(args.boot)
cargo_exe = shutil.which('cargo')
if cargo_exe is None:
raise Exception('cargo not found in PATH')
execute_command([cargo_exe, 'clean'])
def main():
if args.task == 'build':
build()
elif args.task == 'clean':
clean()
elif args.task == 'launch':
qemu(args.output, args.memory, args.debug, args.intdbg)
elif args.task == 'run':
build()
qemu(args.output, args.memory, args.debug, args.intdbg)
if __name__ == "__main__":
try:
main()
except Exception as e:
error('Error', e)
exit(1)