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
|
/* -------------------------------------------
Copyright (C) 2024-2025, Amlal EL Mahrouss, all rights reserved.
------------------------------------------- */
#include <ArchKit/ArchKit.h>
#ifdef __NE_AMD64__
#include <HALKit/AMD64/Paging.h>
#elif defined(__NE_ARM64__)
#include <HALKit/ARM64/Paging.h>
#endif
#include <NewKit/Defines.h>
#include <NewKit/KernelPanic.h>
#define kBitMapMagic (0x10210U)
#define kBitMapPadSize (mib_cast(16))
#define kBitMapMagIdx (0U)
#define kBitMapSizeIdx (1U)
#define kBitMapUsedIdx (2U)
namespace NeOS
{
namespace HAL
{
namespace Detail
{
/// \brief Proxy Interface to allocate a bitmap.
class IBitMapProxy final
{
public:
explicit IBitMapProxy() = default;
~IBitMapProxy() = default;
NE_COPY_DELETE(IBitMapProxy);
auto IsBitMap(VoidPtr page_ptr) -> Bool
{
if (!page_ptr)
return No;
UIntPtr* ptr_bit_set = reinterpret_cast<UIntPtr*>(page_ptr);
if (!ptr_bit_set[kBitMapMagIdx] ||
ptr_bit_set[kBitMapMagIdx] != kBitMapMagic)
return No;
return Yes;
}
auto FreeBitMap(VoidPtr page_ptr) -> Bool
{
if (this->IsBitMap(page_ptr) == No)
return No;
UIntPtr* ptr_bit_set = reinterpret_cast<UIntPtr*>(page_ptr);
ptr_bit_set[kBitMapMagIdx] = kBitMapMagic;
ptr_bit_set[kBitMapUsedIdx] = No;
this->GetBitMapStatus(ptr_bit_set);
return Yes;
}
UInt32 MakeMMFlags(Bool wr, Bool user)
{
UInt32 flags = kMMFlagsPresent;
if (wr)
flags |= kMMFlagsWr;
if (user)
flags |= kMMFlagsUser;
return flags;
}
/// @brief Iterate over availables pages for a free one.
/// @return The new address which was found.
auto FindBitMap(VoidPtr base_ptr, SizeT size, Bool wr, Bool user) -> VoidPtr
{
if (!size)
return nullptr;
VoidPtr base = reinterpret_cast<VoidPtr>(((UIntPtr)base_ptr) + kPageSize);
static SizeT biggest_block = 0UL;
while (YES)
{
UIntPtr* ptr_bit_set = reinterpret_cast<UIntPtr*>(base);
if (ptr_bit_set[kBitMapMagIdx] == kBitMapMagic &&
ptr_bit_set[kBitMapSizeIdx] == size)
{
if (ptr_bit_set[kBitMapUsedIdx] == No)
{
ptr_bit_set[kBitMapSizeIdx] = size;
ptr_bit_set[kBitMapUsedIdx] = Yes;
this->GetBitMapStatus(ptr_bit_set);
UInt32 flags = this->MakeMMFlags(wr, user);
mm_map_page(ptr_bit_set, ptr_bit_set, flags);
if (biggest_block < size)
biggest_block = size;
return (VoidPtr)ptr_bit_set;
}
}
else if (ptr_bit_set[kBitMapMagIdx] != kBitMapMagic)
{
ptr_bit_set[kBitMapMagIdx] = kBitMapMagic;
ptr_bit_set[kBitMapSizeIdx] = size;
ptr_bit_set[kBitMapUsedIdx] = Yes;
this->GetBitMapStatus(ptr_bit_set);
UInt32 flags = this->MakeMMFlags(wr, user);
mm_map_page(ptr_bit_set, ptr_bit_set, flags);
if (biggest_block < size)
biggest_block = size;
return (VoidPtr)ptr_bit_set;
}
base = reinterpret_cast<VoidPtr>(reinterpret_cast<UIntPtr>(base) + ((ptr_bit_set[kBitMapMagIdx] != kBitMapMagic) ? (size) : ptr_bit_set[kBitMapSizeIdx]));
}
return nullptr;
}
/// @brief Print Bitmap status
auto GetBitMapStatus(UIntPtr* ptr_bit_set) -> Void
{
if (!this->IsBitMap(ptr_bit_set))
{
kout << "Not a BitMap: " << hex_number((UIntPtr)ptr_bit_set) << endl;
return;
}
kout << "Magic Number: " << hex_number(ptr_bit_set[kBitMapMagIdx]) << endl;
kout << "Is Allocated: " << (ptr_bit_set[kBitMapUsedIdx] ? "Yes" : "No") << endl;
kout << "Size of BitMap (B): " << number(ptr_bit_set[kBitMapSizeIdx]) << endl;
kout << "Size of BitMap (KIB): " << number(KIB(ptr_bit_set[kBitMapSizeIdx])) << endl;
kout << "Size of BitMap (MIB): " << number(MIB(ptr_bit_set[kBitMapSizeIdx])) << endl;
kout << "Size of BitMap (GIB): " << number(GIB(ptr_bit_set[kBitMapSizeIdx])) << endl;
kout << "Size of BitMap (TIB): " << number(TIB(ptr_bit_set[kBitMapSizeIdx])) << endl;
kout << "Address Of BitMap Header: " << hex_number((UIntPtr)ptr_bit_set) << endl;
}
};
} // namespace Detail
auto mm_is_bitmap(VoidPtr ptr) -> Bool
{
Detail::IBitMapProxy bitmp;
return bitmp.IsBitMap(ptr);
}
/// @brief Allocate a new page to be used by the OS.
/// @param wr read/write bit.
/// @param user user bit.
/// @return a new bitmap allocated pointer.
auto mm_alloc_bitmap(Boolean wr, Boolean user, SizeT size, Bool is_page) -> VoidPtr
{
VoidPtr ptr_new = nullptr;
Detail::IBitMapProxy bitmp;
ptr_new = bitmp.FindBitMap(kKernelBitMpStart, size, wr, user);
MUST_PASS(ptr_new);
return (UIntPtr*)ptr_new;
}
/// @brief Free Bitmap, and mark it as absent.
/// @param ptr the pointer to free.
auto mm_free_bitmap(VoidPtr ptr) -> Bool
{
if (!ptr)
return No;
Detail::IBitMapProxy bitmp;
Bool ret = bitmp.FreeBitMap(ptr);
return ret;
}
} // namespace HAL
} // namespace NeOS
|