blob: 142ddbea1f738f24cb23e18cc50b1ff97a8b3848 (
plain)
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
|
/* -------------------------------------------
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 <KernelKit/ProcessScheduler.h>
#include <KernelKit/User.h>
namespace Kernel
{
namespace Detail
{
STATIC HEFS_INDEX_NODE* hefs_get_index_node(HEFS_BOOT_NODE* root, DriveTrait* mnt, const Utf16Char* dir_name, const Utf16Char* file_name, UInt8 kind) noexcept
{
if (root)
{
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 (start != end)
{
if (hop_watch++ > 100)
{
kout << "Error: Hop watch exceeded.\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;
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)
{
if (dir->fIndexNodeStart[inode_index] != 0)
{
mnt->fPacket.fPacketLba = 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;
return node;
}
}
else
{
break;
}
}
else if (dir->fIndexNodeEnd[inode_index] != 0)
{
mnt->fPacket.fPacketLba = dir->fIndexNodeEnd[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;
return node;
}
}
else
{
break;
}
}
}
}
}
start = dir->fNext;
if (start == 0)
start = dir->fChild;
if (start == 0)
start = dir->fParent;
}
delete dir;
delete node;
dir = nullptr;
node = nullptr;
}
kout << "Error: Failed to find index node.\r";
err_global_get() = kErrorFileNotFound;
return nullptr;
}
} // 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__
|