-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gdt.cpp
75 lines (61 loc) · 1.82 KB
/
gdt.cpp
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
#include "gdt.h"
GlobalDescriptorTable::GlobalDescriptorTable()
: nullSegmentSelector(0,0,0),
unusedSegmentSelector(0,0,0),
codeSegmentSelector(0,64*1024*1024, 0x9A),
dataSegmentSelector(0,64*1024*1024, 0x92)
{
uint32_t i[2];
i[0] = (uint32_t)this;
i[1] = sizeof(GlobalDescriptorTable) << 16;
asm volatile("lgdt (%0)": :"p"(((uint8_t *) i)+2));
}
GlobalDescriptorTable::~GlobalDescriptorTable(){};
uint16_t GlobalDescriptorTable::DataSegmentSelector()
{
return (uint8_t*)&dataSegmentSelector - (uint8_t*)this;
}
uint16_t GlobalDescriptorTable::CodeSegmentSelector()
{
return (uint8_t*)&codeSegmentSelector - (uint8_t*)this;
}
GlobalDescriptorTable::SegmentDescriptor::SegmentDescriptor(uint32_t base, uint32_t limit, uint8_t flags)
{
uint8_t* target = (uint8_t*)this;
if(limit <= 65536)
{
target[6] = 0x40;
}
else
{
if((limit & 0xFFF) != 0xFFF) limit = (limit >> 12)-1;
else limit = limit >> 12;
target[6] = 0xC0;
}
target[0] = limit & 0xFF;
target[1] = (limit >> 8) & 0xFF;
target[6] |= (limit >> 16) & 0xFF;
target[2] = base & 0xFF;
target[3] = (base >> 8) & 0xFF;
target[4] = (base >> 16) & 0xFF;
target[7] = (base >> 24) & 0xFF;
target[5] = flags;
}
uint32_t GlobalDescriptorTable::SegmentDescriptor::Base()
{
uint8_t* target = (uint8_t*)this;
uint32_t result = target[7];
result = (result << 8) + target[4];
result = (result << 8) + target[3];
result = (result << 8) + target[2];
return result;
}
uint32_t GlobalDescriptorTable::SegmentDescriptor::Limit()
{
uint8_t* target = (uint8_t*)this;
uint32_t result = target[6] & 0xF;
result = (result << 8) + target[1];
result = (result << 8) + target[0];
if((target[6] & 0xC0) == 0xC0) result = (result << 12) | 0xFFF;
return result;
}