blob: d0f91cb997f0059f79e36ea300af0b59f5949407 [file] [log] [blame]
Nico Huber26f71832023-12-05 16:26:56 +01001-- Derived from GRUB -- GRand Unified Bootloader
2-- Copyright (C) 1999, 2001, 2003 Free Software Foundation, Inc.
3-- Copyright (C) 2023 secunet Security Networks AG
4--
5-- This program is free software; you can redistribute it and/or modify
6-- it under the terms of the GNU General Public License as published by
7-- the Free Software Foundation; either version 2 of the License, or
8-- (at your option) any later version.
9
Nico Huber8ec45a12023-12-04 17:11:08 +010010with System;
Nico Huber1d7727f2023-11-30 15:58:46 +010011with Interfaces;
Nico Huber8ec45a12023-12-04 17:11:08 +010012with Interfaces.C;
13with Interfaces.C.Strings;
Nico Huber1d7727f2023-11-30 15:58:46 +010014
Thomas Heijligen5c43abc2023-12-11 15:24:36 +000015with FILO.Blockdev;
16with FILO.FS.VFS;
Nico Huber8ec45a12023-12-04 17:11:08 +010017
18use Interfaces.C;
Nico Huber1d7727f2023-11-30 15:58:46 +010019
Thomas Heijligen5c43abc2023-12-11 15:24:36 +000020package body FILO.FS.Ext2 is
Nico Huber1d7727f2023-11-30 15:58:46 +010021
Nico Huber57d3a852023-12-04 15:42:40 +010022 function Is_Mounted (State : T) return Boolean is (State.S >= Mounted);
23 function Is_Open (State : T) return Boolean is (State.S = File_Opened);
24
Nico Huber26f71832023-12-05 16:26:56 +010025 --------------------------------------------------------------------------
26
27 SUPERBLOCK_SIZE : constant := 1024;
28 SUPERBLOCK_BLOCKS : constant := SUPERBLOCK_SIZE / BLOCK_SIZE;
29
30 SUPERBLOCK_MAGIC : constant := 16#ef53#;
31 OLD_REV : constant := 0;
32 DYNAMIC_REV : constant := 1;
33 FEATURE_INCOMPAT_EXTENTS : constant := 16#0040#;
34 FEATURE_INCOMPAT_64BIT : constant := 16#0080#;
35
Nico Huber57d3a852023-12-04 15:42:40 +010036 procedure Mount
37 (State : in out T;
38 Part_Len : in Partition_Length;
39 Success : out Boolean)
Nico Huber1d7727f2023-11-30 15:58:46 +010040 is
Nico Huber26f71832023-12-05 16:26:56 +010041 Super_Block : Buffer_Type (0 .. SUPERBLOCK_SIZE - 1) := (others => 0);
Nico Huber1d7727f2023-11-30 15:58:46 +010042 begin
Nico Huber26f71832023-12-05 16:26:56 +010043 if Part_Len < 2 * SUPERBLOCK_SIZE then
44 Success := False;
45 return;
46 end if;
47
Thomas Heijligen5c43abc2023-12-11 15:24:36 +000048 Blockdev.Read (Super_Block, 1 * SUPERBLOCK_SIZE, Success);
Nico Huber26f71832023-12-05 16:26:56 +010049 if not Success then
50 return;
51 end if;
52
53 if Read_LE16 (Super_Block, 14 * 4) /= 16#ef53# then
54 Success := False;
55 return;
56 end if;
57
58 State.Part_Len := Part_Len;
59 State.First_Data_Block := Block_Offset (Read_LE32 (Super_Block, 5 * 4));
60
61 declare
62 S_Log_Block_Size : constant Unsigned_32 := Read_LE32 (Super_Block, 6 * 4);
63 begin
64 if S_Log_Block_Size <= Unsigned_32 (Log_Block_Size'Last - 10) then
65 State.Block_Size_Bits := Log_Block_Size (S_Log_Block_Size + 10);
66 else
67 Success := False;
68 return;
69 end if;
70 end;
71
72 declare
73 S_Inodes_Per_Group : constant Unsigned_32 := Read_LE32 (Super_Block, 10 * 4);
74 begin
75 if S_Inodes_Per_Group in 1 .. Unsigned_32 (Positive'Last) then
76 State.Inodes_Per_Group := Positive (S_Inodes_Per_Group);
77 else
78 Success := False;
79 return;
80 end if;
81 end;
82
83 declare
84 S_Rev_Level : constant Unsigned_32 := Read_LE32 (Super_Block, 19 * 4);
85 begin
86 if S_Rev_Level >= DYNAMIC_REV then
87 declare
88 S_Inode_Size : constant Unsigned_16 := Read_LE16 (Super_Block, 22 * 4);
89 begin
90 if S_Inode_Size in
91 Unsigned_16 (Inode_Size'First) .. Unsigned_16 (Inode_Size'Last)
92 then
93 State.Inode_Size := Inode_Size (S_Inode_Size);
94 else
95 Success := False;
96 return;
97 end if;
98 end;
99 else
100 State.Inode_Size := Inode_Size'First;
101 end if;
102 end;
103
104 declare
105 S_Feature_Incompat : constant Unsigned_32 := Read_LE32 (Super_Block, 24 * 4);
106 begin
107 State.Feature_Extents := (S_Feature_Incompat and FEATURE_INCOMPAT_EXTENTS) /= 0;
108 State.Feature_64Bit := (S_Feature_Incompat and FEATURE_INCOMPAT_64BIT) /= 0;
109 if State.Feature_64Bit then
110 declare
111 S_Desc_Size : constant Unsigned_16 := Read_LE16 (Super_Block, 63 * 4 + 2);
112 begin
113 if S_Desc_Size in
114 Unsigned_16 (Desc_Size'First) .. Unsigned_16 (Desc_Size'Last)
115 then
116 State.Desc_Size := Desc_Size (S_Desc_Size);
117 else
118 Success := False;
119 return;
120 end if;
121 end;
122 else
123 State.Desc_Size := Desc_Size'First;
124 end if;
125 end;
126
127 State.S := Mounted;
Nico Huber1d7727f2023-11-30 15:58:46 +0100128 end Mount;
129
Nico Huberf5d99d02023-12-12 13:42:55 +0100130 procedure Read_FSBlock
131 (State : in T;
132 Buf : out Buffer_Type;
133 FSBlock : in FSBlock_Offset;
134 Success : out Boolean)
135 with
136 Pre =>
137 Is_Mounted (State) and
138 Buf'Length = 2 ** State.Block_Size_Bits
139 is
140 Block_Size : constant Blockdev_Length := 2 ** State.Block_Size_Bits;
141 Max_Block_Offset : constant FSBlock_Offset :=
142 FSBlock_Offset (State.Part_Len / Block_Size - 1);
143 begin
144 if FSBlock > Max_Block_Offset then
145 Success := False;
146 return;
147 end if;
148 Blockdev.Read (Buf, Blockdev_Length (FSBlock) * Block_Size, Success);
149 end Read_FSBlock;
150
Nico Huber68c86932023-12-13 11:03:11 +0100151 procedure Cache_FSBlock
152 (State : in out T;
153 Phys : in FSBlock_Offset;
154 Level : in Block_Cache_Index;
155 Logical_Off : in FSBlock_Logical;
156 Cache_Start : out Max_Block_Index;
157 Cache_End : out Max_Block_Index;
158 Success : out Boolean)
159 with
160 Post => Cache_End = Cache_Start + 2 ** State.Block_Size_Bits
161 is
162 Block_Size : constant Natural := 2 ** State.Block_Size_Bits;
163 -- Limit cache usage depending on block size:
164 Max_Level : constant Block_Cache_Index :=
165 2 ** (Log_Block_Size'Last - State.Block_Size_Bits) - 1;
166 Cache_Level : constant Block_Cache_Index :=
167 Block_Cache_Index'Min (Level, Max_Level);
168 begin
169 Cache_Start := Cache_Level * Block_Size;
170 Cache_End := Cache_Start + Block_Size - 1;
171 if State.Block_Cache_Index (Cache_Level) = Logical_Off then
172 Success := True;
173 else
174 Read_FSBlock
175 (State => State,
176 Buf => State.Block_Cache (Cache_Start .. Cache_End),
177 FSBlock => Phys,
178 Success => Success);
179 State.Block_Cache_Index (Cache_Level) := Logical_Off;
180 end if;
181 end Cache_FSBlock;
182
Nico Huber6623c982023-12-12 16:35:46 +0100183 procedure Ext2_Block_Map
184 (State : in out T;
185 Logical : in FSBlock_Logical;
186 Physical : out FSBlock_Offset;
187 Success : out Boolean)
188 is
189 Block_Size : constant Natural := 2 ** State.Block_Size_Bits;
190 Addr_Per_Block : constant FSBlock_Logical := FSBlock_Logical (Block_Size / 4);
191 Max_Addr_Per_Block : constant FSBlock_Logical := FSBlock_Logical (2 ** Log_Block_Size'Last / 4);
192 type Addr_In_Block_Range is range 0 .. Max_Addr_Per_Block - 1;
193
194 procedure Indirect_Block_Lookup
195 (Indirect_Block_Phys : in FSBlock_Offset;
196 Addr_In_Block : in Addr_In_Block_Range;
197 Level : in Block_Cache_Index;
198 Logical_Off : in FSBlock_Logical;
199 Next_Physical : out FSBlock_Offset;
200 Success : out Boolean)
201 with
202 Pre => FSBlock_Logical (Addr_In_Block) < Addr_Per_Block
203 is
Nico Huber68c86932023-12-13 11:03:11 +0100204 Cache_Start, Cache_End : Max_Block_Index;
Nico Huber6623c982023-12-12 16:35:46 +0100205 begin
Nico Huber68c86932023-12-13 11:03:11 +0100206 Cache_FSBlock
207 (State => State,
208 Phys => Indirect_Block_Phys,
209 Level => Level,
210 Logical_Off => Logical_Off,
211 Cache_Start => Cache_Start,
212 Cache_End => Cache_End,
213 Success => Success);
Nico Huber6623c982023-12-12 16:35:46 +0100214 Next_Physical := FSBlock_Offset (Read_LE32
Nico Huberfe897122023-12-12 21:33:36 +0100215 (Buf => State.Block_Cache (Cache_Start .. Cache_End),
Nico Huber6623c982023-12-12 16:35:46 +0100216 Off => Natural (Addr_In_Block) * 4));
Nico Huber6623c982023-12-12 16:35:46 +0100217 end Indirect_Block_Lookup;
218
219 Logical_Rest : FSBlock_Logical := Logical;
220 begin
221 if Logical_Rest < Direct_Blocks then
222 Physical := FSBlock_Offset (State.Direct_Blocks (Natural (Logical)));
223 Success := True;
224 return;
225 end if;
226
227 Logical_Rest := Logical_Rest - Direct_Blocks;
228 if Logical_Rest < Addr_Per_Block then
229 Indirect_Block_Lookup
230 (Indirect_Block_Phys => FSBlock_Offset (State.Indirect_Block),
231 Addr_In_Block => Addr_In_Block_Range (Logical_Rest),
Nico Huberfe897122023-12-12 21:33:36 +0100232 Level => 0,
Nico Huber6623c982023-12-12 16:35:46 +0100233 Logical_Off => Logical - Logical_Rest,
234 Next_Physical => Physical,
235 Success => Success);
236 return;
237 end if;
238
239 Logical_Rest := Logical_Rest - Addr_Per_Block;
240 if Logical_Rest < Addr_Per_Block ** 2 then
241 Indirect_Block_Lookup
242 (Indirect_Block_Phys => FSBlock_Offset (State.Double_Indirect),
243 Addr_In_Block => Addr_In_Block_Range (Logical_Rest / Addr_Per_Block),
Nico Huberfe897122023-12-12 21:33:36 +0100244 Level => 1,
Nico Huber6623c982023-12-12 16:35:46 +0100245 Logical_Off => Logical - Logical_Rest,
246 Next_Physical => Physical,
247 Success => Success);
248 if not Success then
249 return;
250 end if;
251
252 Indirect_Block_Lookup
253 (Indirect_Block_Phys => Physical,
254 Addr_In_Block => Addr_In_Block_Range (Logical_Rest mod Addr_Per_Block),
Nico Huberfe897122023-12-12 21:33:36 +0100255 Level => 0,
Nico Huber6623c982023-12-12 16:35:46 +0100256 Logical_Off => Logical - (Logical_Rest mod Addr_Per_Block),
257 Next_Physical => Physical,
258 Success => Success);
259 return;
260 end if;
261
262 Logical_Rest := Logical_Rest - Addr_Per_Block ** 2;
263 if Logical_Rest < Addr_Per_Block ** 3 then
264 Indirect_Block_Lookup
265 (Indirect_Block_Phys => FSBlock_Offset (State.Triple_Indirect),
266 Addr_In_Block => Addr_In_Block_Range (Logical_Rest / Addr_Per_Block ** 2),
Nico Huberfe897122023-12-12 21:33:36 +0100267 Level => 2,
Nico Huber6623c982023-12-12 16:35:46 +0100268 Logical_Off => Logical - Logical_Rest,
269 Next_Physical => Physical,
270 Success => Success);
271 if not Success then
272 return;
273 end if;
274
275 Indirect_Block_Lookup
276 (Indirect_Block_Phys => Physical,
277 Addr_In_Block => Addr_In_Block_Range (Logical_Rest / Addr_Per_Block mod Addr_Per_Block),
Nico Huberfe897122023-12-12 21:33:36 +0100278 Level => 1,
Nico Huber6623c982023-12-12 16:35:46 +0100279 Logical_Off => Logical - (Logical_Rest mod Addr_Per_Block ** 2),
280 Next_Physical => Physical,
281 Success => Success);
282 if not Success then
283 return;
284 end if;
285
286 Indirect_Block_Lookup
287 (Indirect_Block_Phys => Physical,
288 Addr_In_Block => Addr_In_Block_Range (Logical_Rest mod Addr_Per_Block),
Nico Huberfe897122023-12-12 21:33:36 +0100289 Level => 0,
Nico Huber6623c982023-12-12 16:35:46 +0100290 Logical_Off => Logical - (Logical_Rest mod Addr_Per_Block),
291 Next_Physical => Physical,
292 Success => Success);
293 return;
294 end if;
295
296 -- Logical address was just too high.
297 Success := False;
298 end Ext2_Block_Map;
299
Nico Huber57d3a852023-12-04 15:42:40 +0100300 procedure Open
301 (State : in out T;
302 File_Len : out File_Length;
303 File_Path : in String;
304 Success : out Boolean)
Nico Huber1d7727f2023-11-30 15:58:46 +0100305 is
306 begin
Nico Huber57d3a852023-12-04 15:42:40 +0100307 File_Len := 0;
Nico Huber1d7727f2023-11-30 15:58:46 +0100308 Success := False;
309 end Open;
310
Nico Huber57d3a852023-12-04 15:42:40 +0100311 procedure Close (State : in out T) is
312 begin
313 State.S := Mounted;
314 end Close;
Nico Huber1d7727f2023-11-30 15:58:46 +0100315
Nico Huber57d3a852023-12-04 15:42:40 +0100316 procedure Read
317 (State : in out T;
318 File_Len : in File_Length;
319 File_Pos : in out File_Offset;
320 Buf : out Buffer_Type;
321 Len : out Natural)
Nico Huber1d7727f2023-11-30 15:58:46 +0100322 is
323 begin
Nico Huber57d3a852023-12-04 15:42:40 +0100324 Buf := (others => 0);
Nico Huber1d7727f2023-11-30 15:58:46 +0100325 Len := 0;
326 end Read;
327
Nico Huber26f71832023-12-05 16:26:56 +0100328 --------------------------------------------------------------------------
329
330 package C is new VFS (T => T, Initial => (S => Unmounted, others => <>));
Nico Huber8ec45a12023-12-04 17:11:08 +0100331
332 function C_Mount return int
333 with
334 Export,
335 Convention => C,
336 External_Name => "ext2fs_mount";
337 function C_Mount return int
338 with
339 SPARK_Mode => Off
340 is
341 begin
342 return C.C_Mount;
343 end C_Mount;
344
345 function C_Open (File_Path : Strings.chars_ptr) return int
346 with
347 Export,
348 Convention => C,
349 External_Name => "ext2fs_dir";
350 function C_Open (File_Path : Strings.chars_ptr) return int
351 with
352 SPARK_Mode => Off
353 is
354 begin
355 return C.C_Open (File_Path);
356 end C_Open;
357
358 function C_Read (Buf : System.Address; Len : int) return int
359 with
360 Export,
361 Convention => C,
362 External_Name => "ext2fs_read";
363 function C_Read (Buf : System.Address; Len : int) return int
364 with
365 SPARK_Mode => Off
366 is
367 begin
368 return C.C_Read (Buf, Len);
369 end C_Read;
370
Thomas Heijligen5c43abc2023-12-11 15:24:36 +0000371end FILO.FS.Ext2;