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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
|
/* -------------------------------------------
Copyright (C) 2024-2025, Amlal El Mahrouss, all rights reserved.
------------------------------------------- */
#ifdef __FSKIT_INCLUDES_HEFS__
#include <modules/AHCI/AHCI.h>
#include <modules/ATA/ATA.h>
#include <FSKit/HeFS.h>
#include <KernelKit/KPC.h>
#include <NewKit/Crc32.h>
#include <NewKit/KernelPanic.h>
#include <NewKit/KString.h>
#include <NewKit/Utils.h>
#include <FirmwareKit/EPM.h>
#include <FirmwareKit/GPT.h>
#include <KernelKit/ProcessScheduler.h>
#include <KernelKit/User.h>
namespace Kernel
{
namespace Detail
{
/// @brief Forward declarations of internal functions.
/// @brief Traverse the RB-Tree of the filesystem.
/// @param dir The directory to traverse.
/// @param start The starting point of the traversal.
/// @note This function is used to traverse the RB-Tree of the filesystem.
/// @internal Internal filesystem use only.
STATIC ATTRIBUTE(unused) Void hefsi_traverse_tree(HEFS_INDEX_NODE_DIRECTORY* dir, Lba& start);
/// @brief Get the index node of a file or directory.
/// @param root The root node of the filesystem.
/// @param mnt The drive to read from.
/// @param dir_name The name of the directory.
/// @param file_name The name of the file.
/// @param kind The kind of the file (regular, directory, block, character, FIFO, socket, symbolic link, unknown).
STATIC ATTRIBUTE(unused) HEFS_INDEX_NODE* hefs_fetch_index_node(HEFS_BOOT_NODE* root, DriveTrait* mnt, const Utf16Char* dir_name, const Utf16Char* file_name, UInt8 kind) noexcept;
/// @brief Allocate a new index node.
/// @param root The root node of the filesystem.
/// @param mnt The drive to read/write from.
/// @param parent_dir_name The name of the parent directory.
/// @return Status, see err_global_get().
STATIC ATTRIBUTE(unused) BOOL hefs_allocate_index_node(HEFS_BOOT_NODE* root, DriveTrait* mnt, const Utf16Char* parent_dir_name, HEFS_INDEX_NODE* node) noexcept;
/// @brief Balance RB-Tree of the filesystem.
/// @param root The root node of the filesystem.
/// @param mnt The drive to read/write from.
/// @return Status, see err_global_get().
STATIC ATTRIBUTE(unused) BOOL hefsi_balance_filesystem(HEFS_BOOT_NODE* root, DriveTrait* mnt);
/// @brief Traverse the RB-Tree of the filesystem.
/// @param dir The directory to traverse.
/// @param start The starting point of the traversal.
/// @note This function is used to traverse the RB-Tree of the filesystem.
/// @internal Internal filesystem use only.
STATIC ATTRIBUTE(unused) Void hefsi_traverse_tree(HEFS_INDEX_NODE_DIRECTORY* dir, Lba& start)
{
start = dir->fNext;
if (dir->fColor == kHeFSBlack)
{
if (dir->fParent != 0)
start = dir->fParent;
}
else
{
if (dir->fChild != 0)
start = dir->fChild;
else if (dir->fNext != 0)
start = dir->fNext;
else if (dir->fPrev != 0)
start = dir->fPrev;
else
start = dir->fParent;
}
}
/***********************************************************************************/
/// @brief Rotate the RB-Tree to the left.
/// @internal
/***********************************************************************************/
STATIC ATTRIBUTE(unused) Void hefsi_rotate_left(HEFS_INDEX_NODE_DIRECTORY* dir, Lba& start, DriveTrait* mnt)
{
HEFS_INDEX_NODE_DIRECTORY* parent = new HEFS_INDEX_NODE_DIRECTORY();
if (!parent)
{
kout << "Error: Failed to allocate memory for index node.\r";
return;
}
mnt->fPacket.fPacketLba = dir->fParent;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = parent;
mnt->fInput(mnt->fPacket);
HEFS_INDEX_NODE_DIRECTORY* grand_parent = new HEFS_INDEX_NODE_DIRECTORY();
if (!grand_parent)
{
delete parent;
kout << "Error: Failed to allocate memory for index node.\r";
return;
}
mnt->fPacket.fPacketLba = parent->fParent;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = grand_parent;
mnt->fInput(mnt->fPacket);
dir->fParent = parent->fParent;
parent->fParent = start;
parent->fNext = dir->fChild;
dir->fChild = dir->fParent;
mnt->fPacket.fPacketLba = parent->fParent;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = grand_parent;
mnt->fOutput(mnt->fPacket);
mnt->fPacket.fPacketLba = dir->fParent;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = parent;
mnt->fOutput(mnt->fPacket);
delete parent;
parent = nullptr;
delete grand_parent;
grand_parent = nullptr;
dir->fColor = kHeFSBlack;
}
/***********************************************************************************/
/// @brief Rotate the RB-Tree to the right.
/// @internal
/***********************************************************************************/
STATIC ATTRIBUTE(unused) Void hefsi_rotate_right(HEFS_INDEX_NODE_DIRECTORY* dir, Lba& start, DriveTrait* mnt)
{
HEFS_INDEX_NODE_DIRECTORY* parent = new HEFS_INDEX_NODE_DIRECTORY();
if (!parent)
{
kout << "Error: Failed to allocate memory for index node.\r";
return;
}
mnt->fPacket.fPacketLba = dir->fParent;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = parent;
mnt->fInput(mnt->fPacket);
parent->fParent = dir->fParent;
dir->fParent = parent->fParent;
dir->fNext = parent->fChild;
parent->fChild = start;
mnt->fPacket.fPacketLba = dir->fParent;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = parent;
mnt->fOutput(mnt->fPacket);
delete parent;
parent = nullptr;
dir->fColor = kHeFSBlack;
mnt->fPacket.fPacketLba = start;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = dir;
mnt->fOutput(mnt->fPacket);
}
/// @brief Get the index node of a file or directory.
/// @param root The root node of the filesystem.
/// @param mnt The drive to read from.
/// @param dir_name The name of the directory.
/// @param file_name The name of the file.
/// @param kind The kind of the file (regular, directory, block, character, FIFO, socket, symbolic link, unknown).
STATIC ATTRIBUTE(unused) HEFS_INDEX_NODE* hefs_fetch_index_node(HEFS_BOOT_NODE* root, DriveTrait* mnt, const Utf16Char* dir_name, const Utf16Char* file_name, UInt8 kind) noexcept
{
if (root && mnt)
{
HEFS_INDEX_NODE* node = new HEFS_INDEX_NODE();
HEFS_INDEX_NODE_DIRECTORY* dir = new HEFS_INDEX_NODE_DIRECTORY();
if (!node)
{
kout << "Error: Failed to allocate memory for index node.\r";
return nullptr;
}
auto start = root->fStartIND;
auto end = root->fEndIND;
auto hop_watch = 0;
while (YES)
{
if (start > end)
{
kout << "Error: Invalid start/end values.\r";
break;
}
if (hop_watch > 100)
{
kout << "Error: Hop watch exceeded, filesystem is stalling.\r";
break;
}
if (start == 0)
{
++hop_watch;
start = root->fStartIND;
}
mnt->fPacket.fPacketLba = start;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = dir;
mnt->fInput(mnt->fPacket);
if (!mnt->fPacket.fPacketGood)
{
delete node;
delete dir;
dir = nullptr;
node = nullptr;
err_global_get() = kErrorFileNotFound;
return nullptr;
}
if (dir->fKind == kHeFSFileKindDirectory)
{
if (KStringBuilder::Equals(dir_name, dir->fName))
{
for (SizeT inode_index = 0UL; inode_index < kHeFSBlockCount; inode_index += 2)
{
if (dir->fIndexNodeStart[inode_index] != 0 ||
dir->fIndexNodeEnd[inode_index] != 0)
{
mnt->fPacket.fPacketLba = (!dir->fIndexNodeStart[inode_index]) ? dir->fIndexNodeEnd[inode_index] : dir->fIndexNodeStart[inode_index];
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE);
mnt->fPacket.fPacketContent = node;
mnt->fInput(mnt->fPacket);
if (mnt->fPacket.fPacketGood)
{
if (KStringBuilder::Equals(file_name, node->fName) && node->fKind == kind)
{
delete dir;
dir = nullptr;
return node;
}
}
else
{
err_global_get() = kErrorDiskIsCorrupted;
delete dir;
delete node;
dir = nullptr;
node = nullptr;
return nullptr;
}
}
}
}
}
hefsi_traverse_tree(dir, start);
}
delete dir;
delete node;
dir = nullptr;
node = nullptr;
}
kout << "Error: Failed to find index node.\r";
err_global_get() = kErrorFileNotFound;
return nullptr;
}
/// @brief Allocate a new index node.
/// @param root The root node of the filesystem.
/// @param mnt The drive to read from.
/// @param parent_dir_name The name of the parent directory.
/// @return Status, see err_global_get().
STATIC ATTRIBUTE(unused) BOOL hefs_allocate_index_node(HEFS_BOOT_NODE* root, DriveTrait* mnt, const Utf16Char* parent_dir_name, HEFS_INDEX_NODE* node) noexcept
{
if (root && mnt)
{
HEFS_INDEX_NODE_DIRECTORY* dir = new HEFS_INDEX_NODE_DIRECTORY();
auto start = root->fStartIND;
auto hop_watch = 0;
while (YES)
{
if (hop_watch > 100)
{
kout << "Error: Hop watch exceeded, filesystem is stalling.\r";
break;
}
if (start == 0)
{
++hop_watch;
start = root->fStartIND;
}
mnt->fPacket.fPacketLba = start;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = dir;
mnt->fInput(mnt->fPacket);
if (KStringBuilder::Equals(dir->fName, parent_dir_name))
{
for (SizeT inode_index = 0UL; inode_index < kHeFSBlockCount; inode_index += 2)
{
if (dir->fIndexNodeStart[inode_index] != 0 ||
dir->fIndexNodeEnd[inode_index] != 0)
{
mnt->fPacket.fPacketLba = (!dir->fIndexNodeStart[inode_index]) ? dir->fIndexNodeEnd[inode_index] : dir->fIndexNodeStart[inode_index];
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE);
mnt->fPacket.fPacketContent = node;
mnt->fOutput(mnt->fPacket);
if (mnt->fPacket.fPacketGood)
{
delete dir;
dir = nullptr;
return YES;
}
}
}
}
hefsi_traverse_tree(dir, start);
}
delete dir;
dir = nullptr;
return YES;
}
return NO;
}
/// @brief Balance RB-Tree of the filesystem.
/// @param root The root node of the filesystem.
/// @param mnt The drive to read/write from.
/// @return Status, see err_global_get().
STATIC ATTRIBUTE(unused) BOOL hefsi_balance_filesystem(HEFS_BOOT_NODE* root, DriveTrait* mnt)
{
if (root && mnt)
{
HEFS_INDEX_NODE_DIRECTORY* dir = new HEFS_INDEX_NODE_DIRECTORY();
HEFS_INDEX_NODE_DIRECTORY* dir_parent = new HEFS_INDEX_NODE_DIRECTORY();
auto start = root->fStartIND;
while (YES)
{
mnt->fPacket.fPacketLba = start;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = dir;
mnt->fInput(mnt->fPacket);
if (start == root->fStartIND)
{
dir->fColor = kHeFSBlack;
mnt->fPacket.fPacketLba = start;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = dir;
mnt->fOutput(mnt->fPacket);
}
mnt->fPacket.fPacketLba = dir->fParent;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = dir_parent;
mnt->fInput(mnt->fPacket);
if (dir_parent->fColor != kHeFSRed)
{
delete dir_parent;
delete dir;
dir = nullptr;
dir_parent = nullptr;
err_global_get() = kErrorDiskIsCorrupted;
return NO;
}
if (!mnt->fPacket.fPacketGood)
{
delete dir;
dir = nullptr;
err_global_get() = kErrorDiskIsCorrupted;
return NO;
}
HEFS_INDEX_NODE_DIRECTORY dir_uncle{};
mnt->fPacket.fPacketLba = dir_parent->fNext;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = &dir_uncle;
mnt->fInput(mnt->fPacket);
if (dir_uncle.fColor == kHeFSRed)
{
dir_parent->fColor = kHeFSBlack;
dir_uncle.fColor = kHeFSBlack;
mnt->fPacket.fPacketLba = dir->fParent;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = dir_parent;
mnt->fOutput(mnt->fPacket);
mnt->fPacket.fPacketLba = dir_uncle.fParent;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = &dir_uncle;
mnt->fOutput(mnt->fPacket);
hefsi_traverse_tree(dir, start);
continue;
}
else
{
if (dir_parent->fNext == start)
{
hefsi_rotate_left(dir, start, mnt);
hefsi_traverse_tree(dir, start);
continue;
}
dir_parent->fColor = kHeFSBlack;
mnt->fPacket.fPacketLba = dir->fParent;
mnt->fPacket.fPacketSize = sizeof(HEFS_INDEX_NODE_DIRECTORY);
mnt->fPacket.fPacketContent = dir_parent;
mnt->fOutput(mnt->fPacket);
hefsi_rotate_right(dir, start, mnt);
hefsi_traverse_tree(dir, start);
continue;
}
hefsi_traverse_tree(dir, start);
}
delete dir;
dir = nullptr;
return YES;
}
return NO;
}
} // namespace Detail
} // namespace Kernel
/// @note HeFS will allocate inodes and ind in advance, to avoid having to allocate them in real-time.
/// @note This is certainly take longer to format a disk with it, but worth-it in the long run.
#endif // ifdef __FSKIT_INCLUDES_HEFS__
|