blob: 903820b2e431f07331ba34d6a822ae146b8e2705 [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 Huber33f6d952023-12-13 23:16:42 +010010with Ada.Unchecked_Conversion;
Nico Huber8ec45a12023-12-04 17:11:08 +010011with System;
Nico Huber1d7727f2023-11-30 15:58:46 +010012with Interfaces;
Nico Huber8ec45a12023-12-04 17:11:08 +010013with Interfaces.C;
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;
Nico Huber26f71832023-12-05 16:26:56 +010028 SUPERBLOCK_MAGIC : constant := 16#ef53#;
29 OLD_REV : constant := 0;
30 DYNAMIC_REV : constant := 1;
Nico Huber700a4112024-01-08 15:50:09 +010031
Nico Huber26f71832023-12-05 16:26:56 +010032 FEATURE_INCOMPAT_EXTENTS : constant := 16#0040#;
33 FEATURE_INCOMPAT_64BIT : constant := 16#0080#;
34
Nico Hubercdc03512023-12-13 23:32:54 +010035 EXT4_EXTENTS_FL : constant := 16#8_0000#;
36
Nico Huber57d3a852023-12-04 15:42:40 +010037 procedure Mount
38 (State : in out T;
39 Part_Len : in Partition_Length;
40 Success : out Boolean)
Nico Huber1d7727f2023-11-30 15:58:46 +010041 is
Nico Huber52f4c8d2024-01-09 13:57:33 +010042 Static : Mount_State renames State.Static;
Nico Huberb50290f2024-01-28 14:30:49 +010043 Super_Block : Buffer_Type (0 .. 64 * 4 - 1);
Nico Huber1d7727f2023-11-30 15:58:46 +010044 begin
Nico Huber26f71832023-12-05 16:26:56 +010045 if Part_Len < 2 * SUPERBLOCK_SIZE then
46 Success := False;
47 return;
48 end if;
49
Thomas Heijligen5c43abc2023-12-11 15:24:36 +000050 Blockdev.Read (Super_Block, 1 * SUPERBLOCK_SIZE, Success);
Nico Huber26f71832023-12-05 16:26:56 +010051 if not Success then
52 return;
53 end if;
54
55 if Read_LE16 (Super_Block, 14 * 4) /= 16#ef53# then
56 Success := False;
57 return;
58 end if;
59
Nico Huber52f4c8d2024-01-09 13:57:33 +010060 Static.Part_Len := Part_Len;
Nico Huber39f086c2024-01-09 17:43:06 +010061 Static.First_Data_Block := Read_LE32 (Super_Block, 5 * 4);
Nico Huber26f71832023-12-05 16:26:56 +010062
63 declare
64 S_Log_Block_Size : constant Unsigned_32 := Read_LE32 (Super_Block, 6 * 4);
65 begin
66 if S_Log_Block_Size <= Unsigned_32 (Log_Block_Size'Last - 10) then
Nico Huber52f4c8d2024-01-09 13:57:33 +010067 Static.Block_Size_Bits := Log_Block_Size (S_Log_Block_Size + 10);
68 Static.Block_Size := 2 ** Log_Block_Size (S_Log_Block_Size + 10);
Nico Huber26f71832023-12-05 16:26:56 +010069 else
70 Success := False;
71 return;
72 end if;
73 end;
Nico Huber53df7852024-01-15 18:36:04 +010074 pragma Assert_And_Cut (Success and not Is_Mounted (State));
Nico Huber26f71832023-12-05 16:26:56 +010075
76 declare
77 S_Inodes_Per_Group : constant Unsigned_32 := Read_LE32 (Super_Block, 10 * 4);
78 begin
Nico Huber925326e2024-01-09 18:46:26 +010079 if S_Inodes_Per_Group in 1 .. Unsigned_32'Last then
80 Static.Inodes_Per_Group := Inode_In_Group_Count (S_Inodes_Per_Group);
Nico Huber26f71832023-12-05 16:26:56 +010081 else
82 Success := False;
83 return;
84 end if;
85 end;
86
87 declare
88 S_Rev_Level : constant Unsigned_32 := Read_LE32 (Super_Block, 19 * 4);
89 begin
90 if S_Rev_Level >= DYNAMIC_REV then
91 declare
92 S_Inode_Size : constant Unsigned_16 := Read_LE16 (Super_Block, 22 * 4);
93 begin
Nico Huberecafb8f2024-01-09 15:45:49 +010094 if Natural (S_Inode_Size) in Inode_Size and then
95 Natural (S_Inode_Size) <= Static.Block_Size
96 then
Nico Huber52f4c8d2024-01-09 13:57:33 +010097 Static.Inode_Size := Inode_Size (S_Inode_Size);
Nico Huber26f71832023-12-05 16:26:56 +010098 else
99 Success := False;
100 return;
101 end if;
Nico Huberecafb8f2024-01-09 15:45:49 +0100102 pragma Assert (Static.Block_Size / Static.Inode_Size <= Natural (Inode_In_Block_Count'Last));
Nico Huber26f71832023-12-05 16:26:56 +0100103 end;
104 else
Nico Huber52f4c8d2024-01-09 13:57:33 +0100105 Static.Inode_Size := Inode_Size'First;
Nico Huber26f71832023-12-05 16:26:56 +0100106 end if;
Nico Huberecafb8f2024-01-09 15:45:49 +0100107 Static.Inodes_Per_Block := Inode_In_Block_Count (Static.Block_Size / Static.Inode_Size);
Nico Huber26f71832023-12-05 16:26:56 +0100108 end;
Nico Huber53df7852024-01-15 18:36:04 +0100109 pragma Assert_And_Cut (Success and not Is_Mounted (State));
Nico Huber26f71832023-12-05 16:26:56 +0100110
111 declare
112 S_Feature_Incompat : constant Unsigned_32 := Read_LE32 (Super_Block, 24 * 4);
113 begin
Nico Huber52f4c8d2024-01-09 13:57:33 +0100114 Static.Feature_Extents := (S_Feature_Incompat and FEATURE_INCOMPAT_EXTENTS) /= 0;
115 Static.Feature_64Bit := (S_Feature_Incompat and FEATURE_INCOMPAT_64BIT) /= 0;
116 if Static.Feature_64Bit then
Nico Huber26f71832023-12-05 16:26:56 +0100117 declare
118 S_Desc_Size : constant Unsigned_16 := Read_LE16 (Super_Block, 63 * 4 + 2);
119 begin
Nico Huber7eb56922024-01-10 17:22:54 +0100120 if Natural (S_Desc_Size) in Group_Desc_Size and
Nico Huber52f4c8d2024-01-09 13:57:33 +0100121 Natural (S_Desc_Size) <= Static.Block_Size and
Nico Huber700a4112024-01-08 15:50:09 +0100122 Is_Power_Of_2 (S_Desc_Size)
Nico Huber26f71832023-12-05 16:26:56 +0100123 then
Nico Huber7eb56922024-01-10 17:22:54 +0100124 Static.Group_Desc_Size := Group_Desc_Size (S_Desc_Size);
Nico Huber26f71832023-12-05 16:26:56 +0100125 else
126 Success := False;
127 return;
128 end if;
Nico Huber7eb56922024-01-10 17:22:54 +0100129 pragma Assert (Static.Block_Size / Static.Group_Desc_Size <= Natural (Group_In_Block_Count'Last));
Nico Huber26f71832023-12-05 16:26:56 +0100130 end;
Nico Huber7eb56922024-01-10 17:22:54 +0100131 Static.Feature_64Bit := Static.Feature_64Bit and Static.Group_Desc_Size >= 64;
Nico Huber26f71832023-12-05 16:26:56 +0100132 else
Nico Huber7eb56922024-01-10 17:22:54 +0100133 Static.Group_Desc_Size := Group_Desc_Size'First;
Nico Huber26f71832023-12-05 16:26:56 +0100134 end if;
Nico Huber7eb56922024-01-10 17:22:54 +0100135 Static.Group_Desc_Per_Block := Group_In_Block_Count (Static.Block_Size / Static.Group_Desc_Size);
Nico Huber26f71832023-12-05 16:26:56 +0100136 end;
137
138 State.S := Mounted;
Nico Huber1d7727f2023-11-30 15:58:46 +0100139 end Mount;
140
Nico Huberf5d99d02023-12-12 13:42:55 +0100141 procedure Read_FSBlock
Nico Huber700a4112024-01-08 15:50:09 +0100142 (Buf : in out Buffer_Type;
Nico Huberf5d99d02023-12-12 13:42:55 +0100143 FSBlock : in FSBlock_Offset;
Nico Huber700a4112024-01-08 15:50:09 +0100144 Part_Len : in Partition_Length;
Nico Huberf5d99d02023-12-12 13:42:55 +0100145 Success : out Boolean)
146 with
Nico Huber700a4112024-01-08 15:50:09 +0100147 Pre => Buf'Length in Block_Size
Nico Huberf5d99d02023-12-12 13:42:55 +0100148 is
Nico Huber700a4112024-01-08 15:50:09 +0100149 FSBlock_64 : constant Integer_64 := Integer_64 (FSBlock);
150 Block_Size : constant Integer_64 := Integer_64 (Buf'Length);
151 Max_Block_Offset : constant Integer_64 := Integer_64 (Part_Len) / Block_Size - 1;
Nico Huberf5d99d02023-12-12 13:42:55 +0100152 begin
Nico Huber700a4112024-01-08 15:50:09 +0100153 if FSBlock_64 > Max_Block_Offset then
Nico Huberf5d99d02023-12-12 13:42:55 +0100154 Success := False;
155 return;
156 end if;
Nico Huber700a4112024-01-08 15:50:09 +0100157 Blockdev.Read (Buf, Blockdev_Length (FSBlock_64 * Block_Size), Success);
Nico Huberf5d99d02023-12-12 13:42:55 +0100158 end Read_FSBlock;
159
Nico Huber68c86932023-12-13 11:03:11 +0100160 procedure Cache_FSBlock
Nico Huber52f4c8d2024-01-09 13:57:33 +0100161 (Static : in Mount_State;
162 Cache : in out Block_Cache;
Nico Huber68c86932023-12-13 11:03:11 +0100163 Phys : in FSBlock_Offset;
164 Level : in Block_Cache_Index;
Nico Huber68c86932023-12-13 11:03:11 +0100165 Cache_Start : out Max_Block_Index;
166 Cache_End : out Max_Block_Index;
167 Success : out Boolean)
168 with
Nico Huber52f4c8d2024-01-09 13:57:33 +0100169 Post => Cache_End = Cache_Start + Static.Block_Size - 1
Nico Huber68c86932023-12-13 11:03:11 +0100170 is
Nico Huber68c86932023-12-13 11:03:11 +0100171 -- Limit cache usage depending on block size:
Nico Huber52f4c8d2024-01-09 13:57:33 +0100172 Max_Level : constant Block_Cache_Index := Block_Size'Last / Static.Block_Size - 1;
Nico Huber700a4112024-01-08 15:50:09 +0100173 Cache_Level : constant Block_Cache_Index := Block_Cache_Index'Min (Level, Max_Level);
Nico Huber68c86932023-12-13 11:03:11 +0100174 begin
Nico Huber52f4c8d2024-01-09 13:57:33 +0100175 Cache_Start := Cache_Level * Static.Block_Size;
176 Cache_End := Cache_Start + Static.Block_Size - 1;
Nico Huber6bef9242024-01-26 23:47:49 +0100177 if Cache.Phys (Cache_Level) = Phys then
Nico Huber68c86932023-12-13 11:03:11 +0100178 Success := True;
179 else
180 Read_FSBlock
Nico Huber52f4c8d2024-01-09 13:57:33 +0100181 (Buf => Cache.Buffer (Cache_Start .. Cache_End),
Nico Huber68c86932023-12-13 11:03:11 +0100182 FSBlock => Phys,
Nico Huber52f4c8d2024-01-09 13:57:33 +0100183 Part_Len => Static.Part_Len,
Nico Huber68c86932023-12-13 11:03:11 +0100184 Success => Success);
Nico Huber6bef9242024-01-26 23:47:49 +0100185 Cache.Phys (Cache_Level) := Phys;
Nico Huber68c86932023-12-13 11:03:11 +0100186 end if;
187 end Cache_FSBlock;
188
Nico Huber6623c982023-12-12 16:35:46 +0100189 procedure Ext2_Block_Map
190 (State : in out T;
191 Logical : in FSBlock_Logical;
192 Physical : out FSBlock_Offset;
193 Success : out Boolean)
Nico Huber53df7852024-01-15 18:36:04 +0100194 with
195 Post => State.Static = State.Static'Old and State.S = State.S'Old
Nico Huber6623c982023-12-12 16:35:46 +0100196 is
Nico Huber52f4c8d2024-01-09 13:57:33 +0100197 Static : constant Mount_State := State.Static;
198
Nico Huber33f6d952023-12-13 23:16:42 +0100199 Direct_Blocks : constant := 12;
200 type Direct_Blocks_Array is array (Natural range 0 .. Direct_Blocks - 1) of Unsigned_32;
201 type Inode_Blocks is record
202 Direct_Blocks : Direct_Blocks_Array;
203 Indirect_Block : Unsigned_32;
204 Double_Indirect : Unsigned_32;
205 Triple_Indirect : Unsigned_32;
206 end record
Nico Huber7e7d1492024-02-05 11:57:16 +0100207 with
Nico Huber20bf5932024-02-05 12:02:54 +0100208 Size => Inline_Extents'Length * 8,
209 Object_Size => Inline_Extents'Length * 8;
Nico Huber33f6d952023-12-13 23:16:42 +0100210
Nico Huber20bf5932024-02-05 12:02:54 +0100211 function I_Blocks is new Ada.Unchecked_Conversion (Inline_Extents, Inode_Blocks);
Nico Huber7403a542023-12-15 23:13:47 +0100212 function I_Blocks (State : T) return Inode_Blocks is (I_Blocks (State.Inode.Inline));
Nico Huber33f6d952023-12-13 23:16:42 +0100213
Nico Huber52f4c8d2024-01-09 13:57:33 +0100214 Addr_Per_Block : constant FSBlock_Logical := FSBlock_Logical (Static.Block_Size / 4);
Nico Huber700a4112024-01-08 15:50:09 +0100215 Max_Addr_Per_Block : constant FSBlock_Logical := FSBlock_Logical (Block_Size'Last / 4);
Nico Huber6623c982023-12-12 16:35:46 +0100216 type Addr_In_Block_Range is range 0 .. Max_Addr_Per_Block - 1;
217
218 procedure Indirect_Block_Lookup
219 (Indirect_Block_Phys : in FSBlock_Offset;
220 Addr_In_Block : in Addr_In_Block_Range;
221 Level : in Block_Cache_Index;
Nico Huber6623c982023-12-12 16:35:46 +0100222 Next_Physical : out FSBlock_Offset;
223 Success : out Boolean)
224 with
Nico Huber5a042fd2024-01-08 15:54:57 +0100225 Pre =>
Nico Huber52f4c8d2024-01-09 13:57:33 +0100226 Addr_Per_Block = FSBlock_Logical (Static.Block_Size / 4) and
Nico Huber53df7852024-01-15 18:36:04 +0100227 FSBlock_Logical (Addr_In_Block) < Addr_Per_Block,
228 Post => State.Static = State.Static'Old and State.S = State.S'Old
Nico Huber6623c982023-12-12 16:35:46 +0100229 is
Nico Huber68c86932023-12-13 11:03:11 +0100230 Cache_Start, Cache_End : Max_Block_Index;
Nico Huber6623c982023-12-12 16:35:46 +0100231 begin
Nico Huber75e20b52024-01-28 02:14:33 +0100232 if Indirect_Block_Phys = 0 then
233 Next_Physical := 0;
234 Success := True;
235 return;
236 end if;
237
Nico Huber68c86932023-12-13 11:03:11 +0100238 Cache_FSBlock
Nico Huber52f4c8d2024-01-09 13:57:33 +0100239 (Static => Static,
240 Cache => State.Cache,
Nico Huber68c86932023-12-13 11:03:11 +0100241 Phys => Indirect_Block_Phys,
242 Level => Level,
Nico Huber68c86932023-12-13 11:03:11 +0100243 Cache_Start => Cache_Start,
244 Cache_End => Cache_End,
245 Success => Success);
Nico Huber6623c982023-12-12 16:35:46 +0100246 Next_Physical := FSBlock_Offset (Read_LE32
Nico Huber52f4c8d2024-01-09 13:57:33 +0100247 (Buf => State.Cache.Buffer (Cache_Start .. Cache_End),
Nico Huber6623c982023-12-12 16:35:46 +0100248 Off => Natural (Addr_In_Block) * 4));
Nico Huber6623c982023-12-12 16:35:46 +0100249 end Indirect_Block_Lookup;
250
251 Logical_Rest : FSBlock_Logical := Logical;
Nico Huber5a042fd2024-01-08 15:54:57 +0100252
253 pragma Assert (Addr_Per_Block <= 2 ** 14);
Nico Huber6623c982023-12-12 16:35:46 +0100254 begin
255 if Logical_Rest < Direct_Blocks then
Nico Huber33f6d952023-12-13 23:16:42 +0100256 Physical := FSBlock_Offset (I_Blocks (State).Direct_Blocks (Natural (Logical)));
Nico Huber6623c982023-12-12 16:35:46 +0100257 Success := True;
258 return;
259 end if;
260
261 Logical_Rest := Logical_Rest - Direct_Blocks;
262 if Logical_Rest < Addr_Per_Block then
263 Indirect_Block_Lookup
Nico Huber33f6d952023-12-13 23:16:42 +0100264 (Indirect_Block_Phys => FSBlock_Offset (I_Blocks (State).Indirect_Block),
Nico Huber6623c982023-12-12 16:35:46 +0100265 Addr_In_Block => Addr_In_Block_Range (Logical_Rest),
Nico Huber6bef9242024-01-26 23:47:49 +0100266 Level => Block_Map_Cache_Level,
Nico Huber6623c982023-12-12 16:35:46 +0100267 Next_Physical => Physical,
268 Success => Success);
269 return;
270 end if;
271
272 Logical_Rest := Logical_Rest - Addr_Per_Block;
273 if Logical_Rest < Addr_Per_Block ** 2 then
274 Indirect_Block_Lookup
Nico Huber33f6d952023-12-13 23:16:42 +0100275 (Indirect_Block_Phys => FSBlock_Offset (I_Blocks (State).Double_Indirect),
Nico Huber5a042fd2024-01-08 15:54:57 +0100276 Addr_In_Block => Addr_In_Block_Range ((Logical_Rest / Addr_Per_Block) mod Addr_Per_Block),
Nico Huber6bef9242024-01-26 23:47:49 +0100277 Level => Block_Map_Cache_Level + 1,
Nico Huber6623c982023-12-12 16:35:46 +0100278 Next_Physical => Physical,
279 Success => Success);
280 if not Success then
281 return;
282 end if;
283
284 Indirect_Block_Lookup
285 (Indirect_Block_Phys => Physical,
286 Addr_In_Block => Addr_In_Block_Range (Logical_Rest mod Addr_Per_Block),
Nico Huber6bef9242024-01-26 23:47:49 +0100287 Level => Block_Map_Cache_Level,
Nico Huber6623c982023-12-12 16:35:46 +0100288 Next_Physical => Physical,
289 Success => Success);
290 return;
291 end if;
292
293 Logical_Rest := Logical_Rest - Addr_Per_Block ** 2;
294 if Logical_Rest < Addr_Per_Block ** 3 then
295 Indirect_Block_Lookup
Nico Huber33f6d952023-12-13 23:16:42 +0100296 (Indirect_Block_Phys => FSBlock_Offset (I_Blocks (State).Triple_Indirect),
Nico Huber5a042fd2024-01-08 15:54:57 +0100297 Addr_In_Block => Addr_In_Block_Range ((Logical_Rest / Addr_Per_Block ** 2) mod Addr_Per_Block),
Nico Huber6bef9242024-01-26 23:47:49 +0100298 Level => Block_Map_Cache_Level + 2,
Nico Huber6623c982023-12-12 16:35:46 +0100299 Next_Physical => Physical,
300 Success => Success);
301 if not Success then
302 return;
303 end if;
304
305 Indirect_Block_Lookup
306 (Indirect_Block_Phys => Physical,
Nico Huber5a042fd2024-01-08 15:54:57 +0100307 Addr_In_Block => Addr_In_Block_Range ((Logical_Rest / Addr_Per_Block) mod Addr_Per_Block),
Nico Huber6bef9242024-01-26 23:47:49 +0100308 Level => Block_Map_Cache_Level + 1,
Nico Huber6623c982023-12-12 16:35:46 +0100309 Next_Physical => Physical,
310 Success => Success);
311 if not Success then
312 return;
313 end if;
314
315 Indirect_Block_Lookup
316 (Indirect_Block_Phys => Physical,
317 Addr_In_Block => Addr_In_Block_Range (Logical_Rest mod Addr_Per_Block),
Nico Huber6bef9242024-01-26 23:47:49 +0100318 Level => Block_Map_Cache_Level,
Nico Huber6623c982023-12-12 16:35:46 +0100319 Next_Physical => Physical,
320 Success => Success);
321 return;
322 end if;
323
324 -- Logical address was just too high.
Nico Huber5a042fd2024-01-08 15:54:57 +0100325 Physical := 0;
Nico Huber6623c982023-12-12 16:35:46 +0100326 Success := False;
327 end Ext2_Block_Map;
328
Nico Huberfffc8c12023-12-13 12:44:12 +0100329 procedure Extent_Block_Map
330 (State : in out T;
331 Logical : in FSBlock_Logical;
332 Physical : out FSBlock_Offset;
333 Success : out Boolean)
Nico Huber53df7852024-01-15 18:36:04 +0100334 with
335 Post => State.Static = State.Static'Old and State.S = State.S'Old
Nico Huberfffc8c12023-12-13 12:44:12 +0100336 is
Nico Huber52f4c8d2024-01-09 13:57:33 +0100337 Cache : Cache_Buffer renames State.Cache.Buffer;
338
Nico Huberfffc8c12023-12-13 12:44:12 +0100339 -- Extent blocks always start with a 12B header and contain 12B entries.
340 -- Every entry starts with the number of the first logical block it
341 -- covers. Entries are sorted by this number.
342 -- Depth > 0 blocks have index entries, referencing further extent blocks.
343 -- Depth = 0 blocks have extent entries, referencing a contiguous range
344 -- of data blocks.
345 --
346 -- +-----------------+
347 -- .-> | Hdr depth=0 |
348 -- | +-----------------+
349 -- | | Extent 0.. 12 |
350 -- +-------------+ | +-----------------+
351 -- | Hdr depth=1 | | | Extent 13.. 13 |
352 -- +-------------+ | +-----------------+
353 -- | Index 0 | --' | Extent 14..122 |
354 -- +-------------+ +-----------------+
355 -- | Index 123 | --.
356 -- +-------------+ | +-----------------+
357 -- `-> | Hdr depth=0 |
358 -- +-----------------+
359 -- | Extent 123..125 |
360 -- +-----------------+
361 -- | Extent 126..234 |
362 -- +-----------------+
363 --
364
365 Extent_Header_Size : constant := 12;
Nico Huberbc4f7e92024-01-27 01:59:54 +0100366 Extent_Header_Magic : constant := 16#f30a#;
Nico Huber29e1ba22024-01-27 18:45:32 +0100367 Initialized_Extent_Max_Len : constant := 2 ** 15;
Nico Huberfffc8c12023-12-13 12:44:12 +0100368 subtype Extent_Off is Natural range 0 .. Extent_Header_Size;
369 subtype Extent_Idx is Natural range 1 .. (Max_Block_Index'Last + 1) / Extent_Header_Size - 1;
Nico Huber52f4c8d2024-01-09 13:57:33 +0100370 Dynamic_Max_Index : constant Extent_Idx := State.Static.Block_Size / Extent_Header_Size - 1;
Nico Huber96a0b0e2024-01-08 15:57:09 +0100371 subtype Extent_Depth is Natural range 0 .. 32;
Nico Huberfffc8c12023-12-13 12:44:12 +0100372
373 function Extent_Byte_Offset (Idx : Extent_Idx; Off : Extent_Off) return Natural
374 is
375 (Idx * Extent_Header_Size + Off);
376
377 function Header_Magic (Buf : Buffer_Type) return Unsigned_16
378 is
379 (Read_LE16 (Buf, 0))
380 with
381 Pre => Buf'Length >= 2;
382
383 function Header_Entries (Buf : Buffer_Type) return Natural
384 is
385 (Natural (Read_LE16 (Buf, 2)))
386 with
387 Pre => Buf'Length >= 4;
388
389 function Header_Depth (Buf : Buffer_Type) return Natural
390 is
391 (Natural (Read_LE16 (Buf, 6)))
392 with
393 Pre => Buf'Length >= 8;
394
395 function Index_Logical (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Logical
396 is
397 (FSBlock_Logical (Read_LE32 (Buf, Extent_Byte_Offset (Idx, 0))))
398 with
399 Pre => Buf'Length >= Extent_Byte_Offset (Idx, 4);
400
401 function Index_Physical (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Offset
402 is
403 (FSBlock_Offset
404 (Shift_Left (Unsigned_64 (Read_LE16 (Buf, Extent_Byte_Offset (Idx, 8))), 32) or
405 Unsigned_64 (Read_LE32 (Buf, Extent_Byte_Offset (Idx, 4)))))
406 with
407 Pre => Buf'Length >= Extent_Byte_Offset (Idx, 10);
408
409 function Extent_Logical (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Logical
410 renames Index_Logical;
411
412 function Extent_Length (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Logical
413 is
414 (FSBlock_Logical (Read_LE16 (Buf, Extent_Byte_Offset (Idx, 4))))
415 with
416 Pre => Buf'Length >= Extent_Byte_Offset (Idx, 6);
417
418 function Extent_Physical (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Offset
419 is
420 (FSBlock_Offset
421 (Shift_Left (Unsigned_64 (Read_LE16 (Buf, Extent_Byte_Offset (Idx, 6))), 32) or
422 Unsigned_64 (Read_LE32 (Buf, Extent_Byte_Offset (Idx, 8)))))
423 with
424 Pre => Buf'Length >= Extent_Byte_Offset (Idx, 12);
425
426 function Bin_Search (Buf : Buffer_Type; Refs : Extent_Idx) return Extent_Idx
427 with
Nico Huber6710c0e2024-01-08 15:56:24 +0100428 Pre =>
429 Buf'Length in 2 * Extent_Header_Size .. Max_Block_Index'Last and then
430 Refs in 1 .. Extent_Idx (Buf'Length / Extent_Header_Size - 1) and then
431 Extent_Logical (Buf, 1) <= Logical,
432 Post =>
433 Bin_Search'Result in 1 .. Refs and
434 Extent_Logical (Buf, Bin_Search'Result) <= Logical
Nico Huberfffc8c12023-12-13 12:44:12 +0100435 is
Nico Huber6710c0e2024-01-08 15:56:24 +0100436 Left : Positive := 2;
Nico Huberfffc8c12023-12-13 12:44:12 +0100437 Right : Extent_Idx := Refs;
438 begin
439 while Left <= Right loop
440 declare
441 Mid : constant Extent_Idx := (Left + Right) / 2;
442 Ext_Logical : constant FSBlock_Logical := Extent_Logical (Buf, Mid);
443 begin
444 if Logical < Ext_Logical then
445 Right := Mid - 1;
446 else
447 Left := Mid + 1;
448 end if;
Nico Huber6710c0e2024-01-08 15:56:24 +0100449 pragma Loop_Invariant
450 (Right <= Refs and then
451 Left in 2 .. Refs + 1 and then
452 Extent_Logical (Buf, Left - 1) <= Logical);
Nico Huberfffc8c12023-12-13 12:44:12 +0100453 end;
454 end loop;
455 return Left - 1;
456 end Bin_Search;
457
458 procedure Next_Ref
459 (Current : in FSBlock_Offset;
Nico Huber96a0b0e2024-01-08 15:57:09 +0100460 Depth : in Extent_Depth;
Nico Huberfffc8c12023-12-13 12:44:12 +0100461 Next : out Extent_Idx;
462 Cache_Start : out Max_Block_Index;
463 Cache_End : out Max_Block_Index;
464 Success : out Boolean)
465 with
Nico Huber1db91932024-01-09 16:58:26 +0100466 Pre =>
Nico Huber1db91932024-01-09 16:58:26 +0100467 Dynamic_Max_Index = State.Static.Block_Size / Extent_Header_Size - 1,
468 Post =>
Nico Huber53df7852024-01-15 18:36:04 +0100469 State.Static = State.Static'Old and State.S = State.S'Old and
Nico Huber1db91932024-01-09 16:58:26 +0100470 (if Success then
471 Next <= Dynamic_Max_Index and then
Nico Huber4f366b32024-01-27 19:02:36 +0100472 Cache_End = Cache_Start + State.Static.Block_Size - 1)
Nico Huberfffc8c12023-12-13 12:44:12 +0100473 is
Nico Huberfffc8c12023-12-13 12:44:12 +0100474 begin
475 Cache_FSBlock
Nico Huber52f4c8d2024-01-09 13:57:33 +0100476 (Static => State.Static,
477 Cache => State.Cache,
Nico Huberfffc8c12023-12-13 12:44:12 +0100478 Phys => Current,
Nico Huber6bef9242024-01-26 23:47:49 +0100479 Level => Block_Map_Cache_Level + Depth,
Nico Huberfffc8c12023-12-13 12:44:12 +0100480 Cache_Start => Cache_Start,
481 Cache_End => Cache_End,
482 Success => Success);
483 if not Success then
484 Next := 1;
485 return;
486 end if;
487
488 declare
Nico Huber52f4c8d2024-01-09 13:57:33 +0100489 Hdr_Magic : constant Unsigned_16 := Header_Magic (Cache (Cache_Start .. Cache_End));
490 Hdr_Entries : constant Natural := Header_Entries (Cache (Cache_Start .. Cache_End));
491 Hdr_Depth : constant Natural := Header_Depth (Cache (Cache_Start .. Cache_End));
Nico Huberfffc8c12023-12-13 12:44:12 +0100492 First_Logical : constant FSBlock_Logical :=
Nico Huber52f4c8d2024-01-09 13:57:33 +0100493 Extent_Logical (Cache (Cache_Start .. Cache_End), 1);
Nico Huberfffc8c12023-12-13 12:44:12 +0100494 begin
495 Success := Success and then
496 Hdr_Magic = Extent_Header_Magic and then
497 Hdr_Depth = Depth and then
Nico Huber96a0b0e2024-01-08 15:57:09 +0100498 Hdr_Entries in Extent_Idx and then
Nico Huber4f366b32024-01-27 19:02:36 +0100499 Hdr_Entries <= Dynamic_Max_Index;
500 if not Success or else
501 -- Is the searched `Logical' out of range?
502 First_Logical > Logical
503 then
Nico Huberfffc8c12023-12-13 12:44:12 +0100504 Next := 1;
505 else
Nico Huber1db91932024-01-09 16:58:26 +0100506 pragma Assert (Cache_End - Cache_Start + 1 = State.Static.Block_Size);
Nico Huber52f4c8d2024-01-09 13:57:33 +0100507 Next := Bin_Search (Cache (Cache_Start .. Cache_End), Hdr_Entries);
Nico Huberfffc8c12023-12-13 12:44:12 +0100508 end if;
509 end;
510 end Next_Ref;
511
Nico Huber20bf5932024-02-05 12:02:54 +0100512 Inline_Extents : Ext2.Inline_Extents renames State.Inode.Inline;
Nico Huber7403a542023-12-15 23:13:47 +0100513 Inode_Magic : constant Unsigned_16 := Header_Magic (Inline_Extents);
514 Inode_Entries : constant Natural := Header_Entries (Inline_Extents);
515 First_Logical : constant FSBlock_Logical := Extent_Logical (Inline_Extents, 1);
516 Depth : Natural := Header_Depth (Inline_Extents);
Nico Huberfffc8c12023-12-13 12:44:12 +0100517
518 Cache_Start, Cache_End : Max_Block_Index;
519 Logical_Off, Length : FSBlock_Logical;
Nico Huber4f366b32024-01-27 19:02:36 +0100520 Physical_Off : FSBlock_Offset;
Nico Huberfffc8c12023-12-13 12:44:12 +0100521 Idx : Extent_Idx;
522 begin
Nico Huber4f366b32024-01-27 19:02:36 +0100523 Physical := 0; -- Return `0' if the searched `Logical' is not allocated.
Nico Huberfffc8c12023-12-13 12:44:12 +0100524 Success :=
525 Inode_Magic = Extent_Header_Magic and then
Nico Huber7403a542023-12-15 23:13:47 +0100526 Inode_Entries < Inline_Extents'Length / Extent_Header_Size and then
Nico Huber96a0b0e2024-01-08 15:57:09 +0100527 Depth in Extent_Depth;
Nico Huber4f366b32024-01-27 19:02:36 +0100528 if not Success or else
529 -- Is there no extent or the searched `Logical' out of range?
530 Inode_Entries = 0 or else First_Logical > Logical
531 then
Nico Huberfffc8c12023-12-13 12:44:12 +0100532 return;
533 end if;
534
Nico Huber7403a542023-12-15 23:13:47 +0100535 Idx := Bin_Search (Inline_Extents, Inode_Entries);
Nico Huberfffc8c12023-12-13 12:44:12 +0100536 if Depth = 0 then
Nico Huber4f366b32024-01-27 19:02:36 +0100537 Physical_Off := Extent_Physical (Inline_Extents, Idx);
Nico Huber7403a542023-12-15 23:13:47 +0100538 Logical_Off := Extent_Logical (Inline_Extents, Idx);
539 Length := Extent_Length (Inline_Extents, Idx);
Nico Huberfffc8c12023-12-13 12:44:12 +0100540 else
Nico Huber4f366b32024-01-27 19:02:36 +0100541 Physical_Off := Index_Physical (Inline_Extents, Idx);
Nico Huber7403a542023-12-15 23:13:47 +0100542 Logical_Off := Index_Logical (Inline_Extents, Idx);
Nico Huberfffc8c12023-12-13 12:44:12 +0100543 loop
Nico Huber96a0b0e2024-01-08 15:57:09 +0100544 pragma Loop_Invariant
Nico Huber1db91932024-01-09 16:58:26 +0100545 (State.Static = State.Static'Loop_Entry and then
Nico Huber53df7852024-01-15 18:36:04 +0100546 State.S = State.S'Loop_Entry and then
Nico Huber1db91932024-01-09 16:58:26 +0100547 Depth > 0 and then
Nico Huber96a0b0e2024-01-08 15:57:09 +0100548 Depth in Extent_Depth and then
549 Logical_Off <= Logical);
Nico Huberfffc8c12023-12-13 12:44:12 +0100550 Depth := Depth - 1;
551 Next_Ref
Nico Huber4f366b32024-01-27 19:02:36 +0100552 (Current => Physical_Off,
Nico Huberfffc8c12023-12-13 12:44:12 +0100553 Depth => Depth,
554 Next => Idx,
555 Cache_Start => Cache_Start,
556 Cache_End => Cache_End,
557 Success => Success);
558 if not Success then
559 return;
560 end if;
561
562 exit when Depth = 0;
Nico Huber4f366b32024-01-27 19:02:36 +0100563 Physical_Off := Index_Physical (Cache (Cache_Start .. Cache_End), Idx);
Nico Huber52f4c8d2024-01-09 13:57:33 +0100564 Logical_Off := Index_Logical (Cache (Cache_Start .. Cache_End), Idx);
Nico Huber4f366b32024-01-27 19:02:36 +0100565
566 -- Is the searched `Logical' out of range?
567 if Logical_Off > Logical then
568 return;
569 end if;
Nico Huberfffc8c12023-12-13 12:44:12 +0100570 end loop;
571
Nico Huber4f366b32024-01-27 19:02:36 +0100572 Physical_Off := Extent_Physical (Cache (Cache_Start .. Cache_End), Idx);
Nico Huber52f4c8d2024-01-09 13:57:33 +0100573 Logical_Off := Extent_Logical (Cache (Cache_Start .. Cache_End), Idx);
574 Length := Extent_Length (Cache (Cache_Start .. Cache_End), Idx);
Nico Huberfffc8c12023-12-13 12:44:12 +0100575 end if;
576
Nico Huber4f366b32024-01-27 19:02:36 +0100577 -- Is the searched `Logical' out of range?
578 if Logical_Off > Logical or else
579 -- Is this an empty extent?
580 (Length = 0 or Length > Initialized_Extent_Max_Len)
581 then
582 return;
583 end if;
584
585 Success := Logical_Off <= FSBlock_Logical'Last - Length + 1;
586 if not Success or else
587 -- Is the searched `Logical' after this extent?
588 Logical > Logical_Off + Length - 1
589 then
590 return;
591 end if;
592
593 Success := FSBlock_Offset (Logical - Logical_Off) <= FSBlock_Offset'Last - Physical_Off;
Nico Huberfffc8c12023-12-13 12:44:12 +0100594 if Success then
Nico Huber4f366b32024-01-27 19:02:36 +0100595 Physical := Physical_Off + FSBlock_Offset (Logical - Logical_Off);
Nico Huberfffc8c12023-12-13 12:44:12 +0100596 end if;
597 end Extent_Block_Map;
598
Nico Huber7eb56922024-01-10 17:22:54 +0100599 procedure Parse_Group
600 (Static : in Mount_State;
601 Table_Start : out FSBlock_Offset;
602 Buf : in Buffer_Type;
603 Success : out Boolean)
604 with
605 Pre =>
606 Buf'Length >= Group_Desc_Size'First and
607 (if Static.Feature_64Bit then Buf'Length >= 64)
608 is
609 Inode_Table_Block : constant Unsigned_64 :=
610 (if Static.Feature_64Bit
611 then Shift_Left (Unsigned_64 (Read_LE32 (Buf, 40)), 32)
612 else 0)
613 or
614 Unsigned_64 (Read_LE32 (Buf, 8));
615 begin
616 if Inode_Table_Block >= Unsigned_64 (Static.First_Data_Block) and
617 Inode_Table_Block <= Unsigned_64 (FSBlock_Offset'Last)
618 then
619 Table_Start := FSBlock_Offset (Inode_Table_Block);
620 Success := True;
621 else
622 Table_Start := 0;
623 Success := False;
624 end if;
625 end Parse_Group;
626
Nico Huber71f9ca02024-01-10 15:38:49 +0100627 procedure Parse_Inode
628 (Static : in Mount_State;
629 Inode : in out Inode_Info;
630 Buf : in Buffer_Type;
631 Success : out Boolean)
632 with
633 Pre => Buf'Length >= Inode_Size'First
634 is
635 S_IFMT : constant := 8#170000#;
636 S_IFDIR : constant := 8#040000#;
637 S_IFREG : constant := 8#100000#;
638 S_IFLNK : constant := 8#120000#;
639
640 I_Mode : constant Unsigned_16 := Read_LE16 (Buf, 0);
641 I_Blocks : constant Unsigned_32 := Read_LE32 (Buf, 28);
642 I_Flags : constant Unsigned_32 := Read_LE32 (Buf, 32);
643 I_File_ACL : constant Unsigned_32 := Read_LE32 (Buf, 104);
644 begin
645 case I_Mode and S_IFMT is
646 when S_IFDIR => Inode.Mode := Dir;
647 when S_IFREG => Inode.Mode := Regular;
648 when S_IFLNK => Inode.Mode := Link;
649 when others => Success := False; return;
650 end case;
651
652 if Inode.Mode = Link and
653 ((I_File_ACL = 0 and I_Blocks = 0) or
654 (I_File_ACL /= 0 and I_Blocks = 2 ** (Static.Block_Size_Bits - 9)))
655 then
656 Inode.Mode := Fast_Link;
657 end if;
658
659 declare
660 I_Size : constant Unsigned_64 :=
661 (if Inode.Mode = Regular
662 then Shift_Left (Unsigned_64 (Read_LE32 (Buf, 108)), 32)
663 else 0) or
664 Unsigned_64 (Read_LE32 (Buf, 4));
665 begin
666 if I_Size > Unsigned_64 (Inode_Length'Last) then
667 Success := False;
668 return;
669 end if;
670 Inode.Size := Inode_Length (I_Size);
671 end;
672
673 Inode.Use_Extents := Static.Feature_Extents and (I_Flags and EXT4_EXTENTS_FL) /= 0;
674 Inode.Inline := Buf (Buf'First + 40 .. Buf'First + 100 - 1);
675
676 Success := True;
677 end Parse_Inode;
678
Nico Huber57d3a852023-12-04 15:42:40 +0100679 procedure Open
Nico Hubercdc03512023-12-13 23:32:54 +0100680 (State : in out T;
681 Inode : in Inode_Index;
682 Success : out Boolean)
683 with
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100684 Pre => Is_Mounted (State),
Nico Huber53df7852024-01-15 18:36:04 +0100685 Post => Is_Mounted (State) and (Success = Is_Open (State))
Nico Hubercdc03512023-12-13 23:32:54 +0100686 is
Nico Huber52f4c8d2024-01-09 13:57:33 +0100687 Static : Mount_State renames State.Static;
688 Cache : Cache_Buffer renames State.Cache.Buffer;
689
Nico Huber52f4c8d2024-01-09 13:57:33 +0100690 Group : constant Group_Index := Group_Index ((Inode - 1) / Static.Inodes_Per_Group);
Nico Huber7eb56922024-01-10 17:22:54 +0100691 Group_Block : constant FSBlock_Offset :=
692 1 + FSBlock_Offset (Static.First_Data_Block) + FSBlock_Offset (Group / Static.Group_Desc_Per_Block);
693 Group_In_Block : constant Group_In_Block_Index := Group_In_Block_Index (Group mod Static.Group_Desc_Per_Block);
694 Group_In_Block_Offset : constant Natural := Natural (Group_In_Block) * Static.Group_Desc_Size;
695
Nico Hubercdc03512023-12-13 23:32:54 +0100696 Cache_Start, Cache_End : Max_Block_Index;
Nico Huber7eb56922024-01-10 17:22:54 +0100697 First_Table_Block : FSBlock_Offset;
Nico Hubercdc03512023-12-13 23:32:54 +0100698 begin
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100699 State.S := Mounted;
700
Nico Hubercdc03512023-12-13 23:32:54 +0100701 Cache_FSBlock
Nico Huber52f4c8d2024-01-09 13:57:33 +0100702 (Static => Static,
703 Cache => State.Cache,
Nico Huber7eb56922024-01-10 17:22:54 +0100704 Phys => Group_Block,
Nico Huber6bef9242024-01-26 23:47:49 +0100705 Level => Group_Cache_Level,
Nico Hubercdc03512023-12-13 23:32:54 +0100706 Cache_Start => Cache_Start,
707 Cache_End => Cache_End,
708 Success => Success);
Nico Hubereb012072024-01-10 17:56:24 +0100709 Success := Success and then
710 -- TODO: Prove this using a predicate on Mount_State:
711 Cache_Start <= Cache_End - Group_In_Block_Offset - Static.Group_Desc_Size + 1;
Nico Hubercdc03512023-12-13 23:32:54 +0100712 if not Success then
713 return;
714 end if;
715
Nico Huber7eb56922024-01-10 17:22:54 +0100716 Parse_Group
717 (Static => Static,
718 Table_Start => First_Table_Block,
719 Buf => Cache (Cache_Start + Group_In_Block_Offset ..
720 Cache_Start + Group_In_Block_Offset + Static.Group_Desc_Size - 1),
721 Success => Success);
722 if not Success then
723 return;
724 end if;
Nico Huber7eb56922024-01-10 17:22:54 +0100725
Nico Hubercdc03512023-12-13 23:32:54 +0100726 declare
Nico Huberecafb8f2024-01-09 15:45:49 +0100727 Inode_In_Group : constant Inode_In_Group_Index :=
728 Inode_In_Group_Index ((Inode - 1) mod Static.Inodes_Per_Group);
Nico Huber71f9ca02024-01-10 15:38:49 +0100729
Nico Huber7eb56922024-01-10 17:22:54 +0100730 Inode_Block : constant FSBlock_Offset := FSBlock_Offset (Inode_In_Group / Static.Inodes_Per_Block);
Nico Huber71f9ca02024-01-10 15:38:49 +0100731 Inode_In_Block : constant Inode_In_Block_Index :=
732 Inode_In_Block_Index (Inode_In_Group mod Static.Inodes_Per_Block);
733 Inode_In_Block_Offset : constant Natural :=
734 Natural (Inode_In_Block) * Static.Inode_Size;
Nico Hubercdc03512023-12-13 23:32:54 +0100735 begin
Nico Huber7eb56922024-01-10 17:22:54 +0100736 if First_Table_Block > FSBlock_Offset'Last - Inode_Block then
Nico Huber925326e2024-01-09 18:46:26 +0100737 Success := False;
738 return;
739 end if;
Nico Huber925326e2024-01-09 18:46:26 +0100740
Nico Hubercdc03512023-12-13 23:32:54 +0100741 Cache_FSBlock
Nico Huber52f4c8d2024-01-09 13:57:33 +0100742 (Static => Static,
743 Cache => State.Cache,
Nico Huber7eb56922024-01-10 17:22:54 +0100744 Phys => FSBlock_Offset (First_Table_Block + Inode_Block),
Nico Huber6bef9242024-01-26 23:47:49 +0100745 Level => Inode_Cache_Level,
Nico Hubercdc03512023-12-13 23:32:54 +0100746 Cache_Start => Cache_Start,
747 Cache_End => Cache_End,
748 Success => Success);
Nico Hubereb012072024-01-10 17:56:24 +0100749 Success := Success and then
750 -- TODO: Prove this using a predicate on Mount_State:
751 Cache_Start <= Cache_End - Inode_In_Block_Offset - Static.Inode_Size + 1;
Nico Hubercdc03512023-12-13 23:32:54 +0100752 if not Success then
753 return;
754 end if;
755
Nico Huber71f9ca02024-01-10 15:38:49 +0100756 Parse_Inode
757 (Static => State.Static,
758 Inode => State.Inode,
759 Buf => Cache (Cache_Start + Inode_In_Block_Offset ..
760 Cache_Start + Inode_In_Block_Offset + Static.Inode_Size - 1),
761 Success => Success);
Nico Huber022e2262023-12-15 23:15:17 +0100762
Nico Huber71f9ca02024-01-10 15:38:49 +0100763 if Success then
Nico Huber21d42022023-12-16 02:50:22 +0100764 State.Inode.I := Inode;
Nico Huberea1de112024-01-27 18:52:12 +0100765 State.Inode.Map_Cache := (others => <>);
Nico Hubercdc03512023-12-13 23:32:54 +0100766 State.S := File_Opened;
Nico Huber71f9ca02024-01-10 15:38:49 +0100767 end if;
Nico Hubercdc03512023-12-13 23:32:54 +0100768 end;
769 end Open;
770
771 procedure Open
Nico Huber57d3a852023-12-04 15:42:40 +0100772 (State : in out T;
773 File_Len : out File_Length;
Nico Huberb1cb2d32023-12-17 01:45:47 +0100774 File_Type : out FS.File_Type;
775 File_Name : in String;
776 In_Root : in Boolean;
Nico Huber57d3a852023-12-04 15:42:40 +0100777 Success : out Boolean)
Nico Huber1d7727f2023-11-30 15:58:46 +0100778 is
Nico Huber21d42022023-12-16 02:50:22 +0100779 File_Name_Max : constant := 255;
780 Root_Inode : constant := 2;
781
Nico Huber21d42022023-12-16 02:50:22 +0100782 File_Inode : Inode_Index;
783 File_Pos : File_Length;
Nico Huber1d7727f2023-11-30 15:58:46 +0100784 begin
Nico Huber57d3a852023-12-04 15:42:40 +0100785 File_Len := 0;
Nico Huber21d42022023-12-16 02:50:22 +0100786 File_Type := FS.File_Type'First;
787
788 if File_Name'Length > File_Name_Max then
789 Success := False;
790 return;
791 end if;
792
793 -- Ensure dir is opened:
794 --
795 if State.S = File_Opened then
796 if State.Cur_Dir /= State.Inode.I then
797 Success := False;
798 return;
799 end if;
800 else
801 if In_Root then
802 State.Cur_Dir := Root_Inode;
803 end if;
804 Open (State, State.Cur_Dir, Success);
805 if not Success then
806 return;
807 end if;
808 end if;
809
810 -- Lookup file in opened dir:
811 --
812 File_Pos := 0;
Nico Huber1d7727f2023-11-30 15:58:46 +0100813 Success := False;
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100814 loop
815 pragma Loop_Invariant (Is_Open (State) and not Success);
Nico Huber21d42022023-12-16 02:50:22 +0100816 declare
817 Dir_Entry_Header_Length : constant := 4 + 2 + 1 + 1;
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100818 Dir_Entry_Header : Buffer_Type (0 .. Dir_Entry_Header_Length - 1);
Nico Huber292f8a32024-02-08 19:07:30 +0100819 Dir_Entry_Name : Buffer_Type (0 .. File_Name'Length - 1);
Nico Huber21d42022023-12-16 02:50:22 +0100820 Entry_File_Pos : File_Offset := File_Pos;
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100821 Dir_Entry_Length : File_Length;
822 Inode : Inode_0_Index;
Nico Huber21d42022023-12-16 02:50:22 +0100823 Len : Natural;
824 begin
825 Read
826 (State => State,
827 File_Pos => Entry_File_Pos,
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100828 Buf => Dir_Entry_Header,
Nico Huber21d42022023-12-16 02:50:22 +0100829 Len => Len);
830 if Len < Dir_Entry_Header_Length then
831 return;
832 end if;
833
834 -- Only check filenames of exact same length
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100835 Inode := Inode_0_Index (Read_LE32 (Dir_Entry_Header, 0));
Nico Huber566c8862024-01-28 04:02:59 +0100836 if Inode >= Root_Inode and then
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100837 File_Name'Length = Natural (Dir_Entry_Header (6))
Nico Huber21d42022023-12-16 02:50:22 +0100838 then
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100839 pragma Warnings
840 (GNATprove, Off, """Entry_File_Pos"" is set*but not used",
841 Reason => "We only care about intermedidate values.");
Nico Huber21d42022023-12-16 02:50:22 +0100842 Read
843 (State => State,
844 File_Pos => Entry_File_Pos,
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100845 Buf => Dir_Entry_Name,
Nico Huber21d42022023-12-16 02:50:22 +0100846 Len => Len);
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100847 pragma Warnings (GNATprove, On, """Entry_File_Pos"" is set*but not used");
Nico Huber292f8a32024-02-08 19:07:30 +0100848 if Len /= File_Name'Length then
Nico Huber21d42022023-12-16 02:50:22 +0100849 return;
850 end if;
851
Nico Huber292f8a32024-02-08 19:07:30 +0100852 Success := Equal (File_Name, Dir_Entry_Name);
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100853 if Success then
854 File_Inode := Inode;
855 exit;
856 end if;
Nico Huber21d42022023-12-16 02:50:22 +0100857 end if;
858
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100859 Dir_Entry_Length := File_Length (Read_LE16 (Dir_Entry_Header, 4));
Nico Huber767608d2024-01-27 18:47:05 +0100860 if Dir_Entry_Length = 0 or
861 File_Pos > File_Length'Last - Dir_Entry_Length or
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100862 Unsigned_64 (File_Pos) >= Unsigned_64 (State.Inode.Size) - Unsigned_64 (Dir_Entry_Length)
863 then
864 return;
865 end if;
866 File_Pos := File_Pos + Dir_Entry_Length;
Nico Huber21d42022023-12-16 02:50:22 +0100867 end;
868 end loop;
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100869 pragma Assert_And_Cut (Success and Is_Mounted (State));
Nico Huber21d42022023-12-16 02:50:22 +0100870
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100871 Open (State, File_Inode, Success);
872 if not Success then
873 return;
Nico Huber21d42022023-12-16 02:50:22 +0100874 end if;
875
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100876 if State.Inode.Mode = Dir then
877 State.Cur_Dir := File_Inode;
878 end if;
879
880 Success := State.Inode.Size <= Inode_Length (File_Length'Last);
Nico Huber21d42022023-12-16 02:50:22 +0100881 if Success then
882 File_Len := File_Length (State.Inode.Size);
883 File_Type := (case State.Inode.Mode is
884 when Dir => FS.Dir,
885 when Regular => FS.Regular,
886 when Link .. Fast_Link => FS.Link);
887 else
888 Close (State);
889 end if;
Nico Huber1d7727f2023-11-30 15:58:46 +0100890 end Open;
891
Nico Huber57d3a852023-12-04 15:42:40 +0100892 procedure Close (State : in out T) is
893 begin
894 State.S := Mounted;
895 end Close;
Nico Huber1d7727f2023-11-30 15:58:46 +0100896
Nico Huber57d3a852023-12-04 15:42:40 +0100897 procedure Read
898 (State : in out T;
Nico Huber57d3a852023-12-04 15:42:40 +0100899 File_Pos : in out File_Offset;
900 Buf : out Buffer_Type;
901 Len : out Natural)
Nico Huber1d7727f2023-11-30 15:58:46 +0100902 is
Nico Huber52f4c8d2024-01-09 13:57:33 +0100903 Static : Mount_State renames State.Static;
904 Cache : Cache_Buffer renames State.Cache.Buffer;
905
Nico Huber53df7852024-01-15 18:36:04 +0100906 Pos : Natural range Buf'First .. Buf'Last + 1;
Nico Huber1d7727f2023-11-30 15:58:46 +0100907 begin
Nico Huberd3644be2023-12-16 01:43:00 +0100908 if State.Inode.Mode = Fast_Link then
Nico Huber549a1b82023-12-17 01:51:59 +0100909 if State.Inode.Size > Inode_Length (State.Inode.Inline'Length) or
910 Inode_Length (File_Pos) >= State.Inode.Size then
Nico Huberd3644be2023-12-16 01:43:00 +0100911 Len := 0;
912 else
Nico Huber549a1b82023-12-17 01:51:59 +0100913 Len := Natural'Min (Buf'Length, Natural (State.Inode.Size) - Natural (File_Pos));
Nico Huberd3644be2023-12-16 01:43:00 +0100914 end if;
915 Buf (Buf'First .. Buf'First + Len - 1) :=
916 State.Inode.Inline (Natural (File_Pos) .. Natural (File_Pos) + Len - 1);
917 Buf (Buf'First + Len .. Buf'Last) := (others => 16#00#);
918 File_Pos := File_Pos + File_Length (Len);
919 return;
920 end if;
921
Nico Huber1d7727f2023-11-30 15:58:46 +0100922 Len := 0;
Nico Huberd3644be2023-12-16 01:43:00 +0100923 Pos := Buf'First;
Nico Huber53df7852024-01-15 18:36:04 +0100924 while Pos <= Buf'Last and
925 File_Pos < File_Offset'Last and
926 Inode_Length (File_Pos) < State.Inode.Size
927 loop
Nico Huberb735a1d2024-02-05 11:43:12 +0100928 pragma Loop_Invariant (for all I in Buf'First .. Pos - 1 => Buf (I)'Initialized);
Nico Huber53df7852024-01-15 18:36:04 +0100929 pragma Loop_Invariant (Is_Open (State));
Nico Huberd3644be2023-12-16 01:43:00 +0100930 declare
Nico Huber52f4c8d2024-01-09 13:57:33 +0100931 In_Block : constant Max_Block_Index := Natural (File_Pos) mod Static.Block_Size;
Nico Huber53df7852024-01-15 18:36:04 +0100932 Logical : constant FSBlock_Logical :=
933 FSBlock_Logical (File_Pos / File_Offset (Static.Block_Size));
934 In_Block_Space : constant Positive := Static.Block_Size - In_Block;
Nico Huber549a1b82023-12-17 01:51:59 +0100935 In_File_Space : constant Inode_Length := State.Inode.Size - Inode_Length (File_Pos);
Nico Huber53df7852024-01-15 18:36:04 +0100936 In_Buf_Space : constant Positive := Buf'Last - Pos + 1;
937 Len_Here : Positive;
Nico Huberd3644be2023-12-16 01:43:00 +0100938 begin
939 Len_Here := In_Block_Space;
Nico Huber549a1b82023-12-17 01:51:59 +0100940 if In_File_Space < Inode_Length (Len_Here) then
Nico Huber53df7852024-01-15 18:36:04 +0100941 Len_Here := Positive (In_File_Space);
Nico Huberd3644be2023-12-16 01:43:00 +0100942 end if;
943 if In_Buf_Space < Len_Here then
944 Len_Here := In_Buf_Space;
945 end if;
Nico Huber53df7852024-01-15 18:36:04 +0100946 if File_Offset'Last - File_Pos < File_Length (Len_Here) then
947 Len_Here := Positive (File_Offset'Last - File_Pos);
948 end if;
Nico Huberd3644be2023-12-16 01:43:00 +0100949
950 declare
951 Last : constant Index_Type := Pos + Len_Here - 1;
952 Cache_Start, Cache_End : Max_Block_Index;
953 Physical : FSBlock_Offset;
954 Success : Boolean;
955 begin
Nico Huberea1de112024-01-27 18:52:12 +0100956 if State.Inode.Map_Cache.Logical = Block_Offset (Logical) then
957 Physical := State.Inode.Map_Cache.Phys;
958 Success := True;
959 elsif State.Inode.Use_Extents then
Nico Huberd3644be2023-12-16 01:43:00 +0100960 Extent_Block_Map (State, Logical, Physical, Success);
961 else
962 Ext2_Block_Map (State, Logical, Physical, Success);
963 end if;
Nico Huber53df7852024-01-15 18:36:04 +0100964 exit when not Success;
Nico Huberea1de112024-01-27 18:52:12 +0100965 State.Inode.Map_Cache := (Phys => Physical, Logical => Block_Offset (Logical));
Nico Huber53df7852024-01-15 18:36:04 +0100966
Nico Huber4f366b32024-01-27 19:02:36 +0100967 if Physical > 0 then
968 Cache_FSBlock
969 (Static => Static,
970 Cache => State.Cache,
971 Phys => Physical,
972 Level => File_Cache_Level,
973 Cache_Start => Cache_Start,
974 Cache_End => Cache_End,
975 Success => Success);
976 pragma Assert (Cache_Start <= Cache_End - (In_Block + Len_Here - 1));
977 exit when not Success;
Nico Huberd3644be2023-12-16 01:43:00 +0100978
Nico Huber4f366b32024-01-27 19:02:36 +0100979 Buf (Pos .. Last) := Cache (
980 Cache_Start + In_Block .. Cache_Start + In_Block + Len_Here - 1);
981 else
982 -- Treat unallocated and unwritten blocks as all 00 (sparse files).
983 Buf (Pos .. Last) := (others => 16#00#);
984 end if;
985
Nico Huberd3644be2023-12-16 01:43:00 +0100986 File_Pos := File_Pos + File_Length (Len_Here);
987 Pos := Pos + Len_Here;
Nico Huber53df7852024-01-15 18:36:04 +0100988 Len := Pos - Buf'First;
Nico Huberd3644be2023-12-16 01:43:00 +0100989 end;
990 end;
991 end loop;
992 Buf (Pos .. Buf'Last) := (others => 16#00#);
Nico Huber1d7727f2023-11-30 15:58:46 +0100993 end Read;
994
Nico Huber26f71832023-12-05 16:26:56 +0100995 --------------------------------------------------------------------------
996
997 package C is new VFS (T => T, Initial => (S => Unmounted, others => <>));
Nico Huber8ec45a12023-12-04 17:11:08 +0100998
999 function C_Mount return int
1000 with
1001 Export,
1002 Convention => C,
1003 External_Name => "ext2fs_mount";
1004 function C_Mount return int
1005 with
1006 SPARK_Mode => Off
1007 is
1008 begin
1009 return C.C_Mount;
1010 end C_Mount;
1011
Nico Huber3da21472023-12-18 15:43:35 +01001012 function C_Open (File_Path : System.Address) return int
Nico Huber8ec45a12023-12-04 17:11:08 +01001013 with
1014 Export,
1015 Convention => C,
1016 External_Name => "ext2fs_dir";
Nico Huber3da21472023-12-18 15:43:35 +01001017 function C_Open (File_Path : System.Address) return int
Nico Huber8ec45a12023-12-04 17:11:08 +01001018 with
1019 SPARK_Mode => Off
1020 is
1021 begin
1022 return C.C_Open (File_Path);
1023 end C_Open;
1024
1025 function C_Read (Buf : System.Address; Len : int) return int
1026 with
1027 Export,
1028 Convention => C,
1029 External_Name => "ext2fs_read";
1030 function C_Read (Buf : System.Address; Len : int) return int
1031 with
1032 SPARK_Mode => Off
1033 is
1034 begin
1035 return C.C_Read (Buf, Len);
1036 end C_Read;
1037
Thomas Heijligen5c43abc2023-12-11 15:24:36 +00001038end FILO.FS.Ext2;