aboutsummaryrefslogtreecommitdiff
path: root/kernel/features/load.c
blob: e5b690383da18468e1826e40b48afc7f0273b6bb (plain) (blame)
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
// MIT License, Copyright (c) 2020 Marvin Borner

#include <assert.h>
#include <cpu.h>
#include <def.h>
#include <fs.h>
#include <load.h>
#include <mem.h>
#include <proc.h>
#include <str.h>

int bin_load(char *path, struct proc *proc)
{
	// TODO: Remove hardcoded filesize
	char *data = malloc(0xffff);
	vfs_read(path, data, 0, 0xffff);

	u32 stack = (u32)malloc(0x2000) + 0x1000;

	proc->regs.ebp = (u32)stack;
	proc->regs.useresp = (u32)stack;
	proc->regs.eip = (u32)data;
	strcpy(proc->name, path + 1);

	return data ? 0 : 1;
}