aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/tasks/userspace.c
blob: 375e7bbdb7554da995796c3bd0d751f9f5464d8d (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
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
#include <interrupts/interrupts.h>
#include <io/io.h>
#include <lib/lib.h>
#include <memory/paging.h>
#include <stddef.h>
#include <stdint.h>
#include <system.h>
#include <tasks/process.h>
#include <tasks/userspace.h>

struct process *proc_bottom = NULL;

u32 hl_cr3;
u32 hl_eip;
u32 hl_esp;

u32 spawn_child(struct process *child)
{
	return (u32)-1;
}

void userspace_enter(struct process *proc)
{
	proc_bottom = proc;
	proc->next = NULL;
	hl_eip = proc->registers.eip;
	hl_esp = proc->registers.esp;
	paging_switch_directory(proc->cr3);

	current_proc = proc;

	debug("Jumping to userspace!");
	sti(); // TODO: Prevent race conditions in userspace jumping
	jump_userspace();
}

void single_yield(struct process *proc, struct regs *regs)
{
	memcpy(&proc_bottom->registers, regs, sizeof(struct regs));

	if (proc == proc_bottom)
		panic("Can't return from parent process");

	proc->next = proc_bottom;
	proc_bottom = proc;

	memcpy(regs, &proc->registers, sizeof(struct regs));
	paging_switch_directory(proc->cr3);
}

u32 single_exit(struct regs *regs)
{
	//close(current_proc->stdout);
	//close(current_proc->stderr);

	u32 hold = regs->ebx;
	proc_bottom = proc_bottom->next;

	if (proc_bottom == NULL)
		panic("Return from process with no parent");

	memcpy(regs, &proc_bottom->registers, sizeof(struct regs));
	paging_switch_directory(proc_bottom->cr3);

	return hold;
}