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
use core::mem::size_of;
use core::option::{Option, None, Some};
use core;
use kernel::heap;
use kernel;
mod gdt;
mod idt;
mod tss;
pub mod interrupt;
pub mod io;
mod exception;
pub mod mmu;
macro_rules! cpuid(
($n:expr, $s1:expr, $s2:expr, $s3:expr, $s4:expr) => (
asm!("cpuid"
: "=A"($s1),
"={ebx}"($s2),
"={edx}"($s3),
"={ecx}"($s4)
: "A"($n) :: "intel");
);
($n:expr, *$s1:expr) => (
cpuid!($n, (*$s1)[0], (*$s1)[1], (*$s1)[2], (*$s1)[3]);
);
($n:expr, $s1:expr) => (
asm!("cpuid"
: "=A"($s1)
: "A"($n) : "ebx", "edx", "ecx" : "intel");
);
)
bitflags!(flags Eflags: u32 {
static CF = 1 << 0,
static IF = 1 << 9
})
impl Eflags {
fn read() -> Eflags {
unsafe {
let mut flags: u32;
asm!("pushf; pop $0;" : "=r"(flags) ::: "volatile")
Eflags::from_bits_truncate(flags)
}
}
}
bitflags!(flags CR0Flags: u32 {
static CR0_PG = 1 << 31
})
struct CR0;
impl CR0 {
#[inline]
fn read() -> CR0Flags {
unsafe {
let flags;
asm!("mov $0, cr0" : "=r"(flags) ::: "intel");
CR0Flags { bits: flags }
}
}
#[inline]
fn write(f: CR0Flags) {
unsafe {
asm!("mov cr0, $0" :: "r"(f.bits) :: "volatile", "intel");
}
}
}
impl core::ops::BitOr<CR0Flags, CR0Flags> for CR0 {
#[inline(always)]
fn bitor(&self, other: &CR0Flags) -> CR0Flags {
CR0Flags { bits: CR0::read().bits | other.bits }
}
}
struct CR3;
impl CR3 {
#[inline]
fn read() -> *mut mmu::PageDirectory {
unsafe {
let ptr;
asm!("mov $0, cr3" : "=r"(ptr) ::: "intel");
ptr
}
}
#[inline]
fn write(ptr: *mut mmu::PageDirectory) {
unsafe {
asm!("mov cr3, $0" :: "r"(ptr) :: "volatile", "intel");
}
}
}
#[packed]
struct DtReg<T> {
size: u16,
addr: *mut T,
}
impl<T> DtReg<T> {
pub fn new(descriptor_table: *mut T, capacity: uint) -> DtReg<T> {
DtReg {
size: (capacity * size_of::<T>()) as u16,
addr: descriptor_table,
}
}
}
struct Context {
edi: u32, esi: u32, ebp: u32, esp: u32, ebx: u32, edx: u32, ecx: u32, eax: u32,
ds: u32, es: u32, fs: u32, gs: u32,
int_no: u32,
err_code: u32,
call_stack: IsrCallStack
}
struct IsrCallStack {
eip: u32, cs: u32, eflags: u32, esp: u32, ss: u32
}
impl Context {
unsafe fn save<'a>() -> &'a mut Context {
let this: &mut Context;
asm!("push gs
push fs
.byte 0x06 // push es
.byte 0x1e // push ds
pusha"
: "={esp}"(this) ::: "volatile", "intel");
this
}
unsafe fn restore() {
asm!("popa
.byte 0x1f // pop ds
.byte 0x07 // pop es
pop fs
pop gs
add esp, 8
iretd"
:::: "volatile", "intel");
}
}
struct LocalSegment {
ts: tss::TssEntry,
}
impl LocalSegment {
fn get<'a>() -> &'a mut LocalSegment {
unsafe {
let this: &mut LocalSegment;
asm!("mov $0, dword[gs:0]" : "=r"(this) ::: "volatile", "intel")
this
}
}
}
pub static mut desc_table: Option<gdt::Gdt> = None;
pub fn init() {
use cpu::gdt::{Gdt, GdtEntry, SIZE_32, STORAGE, CODE_READ, DATA_WRITE, DPL3};
let local_data = unsafe {
heap::zero_alloc::<LocalSegment>(1)
};
let tls = unsafe {
let seg = heap::zero_alloc::<u32>(32);
*seg = local_data as u32;
seg
};
let t = Gdt::new();
t.enable(1, GdtEntry::flat(STORAGE | CODE_READ, SIZE_32));
t.enable(2, GdtEntry::flat(STORAGE | DATA_WRITE, SIZE_32));
t.enable(3, GdtEntry::flat(STORAGE | CODE_READ | DPL3, SIZE_32));
t.enable(4, GdtEntry::flat(STORAGE | DATA_WRITE | DPL3, SIZE_32));
t.enable(5, GdtEntry::new(tls as u32, 32 * 4, STORAGE | DPL3, SIZE_32));
unsafe {
t.enable(6, (*local_data).ts.gdt_entry());
}
t.load(1 << 3, 2 << 3, 5 << 3);
unsafe {
desc_table = Some(t);
kernel::int_table.map(|mut t| {
use cpu::exception::{Breakpoint, exception_handler};
t.set_isr(Breakpoint, false, exception_handler());
});
mmu::init();
}
}
pub fn info() {
}