blob: db1c1a35c64d220d0a6d7779b9e4378219d02487 [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 Huber43af31f2024-01-26 22:33:47 +010043 Super_Block : Buffer_Type (0 .. 64 * 4 - 1) := (others => 0);
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 Huber5a042fd2024-01-08 15:54:57 +0100207 with Object_Size => Inode_Extents'Length * 8;
Nico Huber33f6d952023-12-13 23:16:42 +0100208
209 function I_Blocks is new Ada.Unchecked_Conversion (Inode_Extents, Inode_Blocks);
Nico Huber7403a542023-12-15 23:13:47 +0100210 function I_Blocks (State : T) return Inode_Blocks is (I_Blocks (State.Inode.Inline));
Nico Huber33f6d952023-12-13 23:16:42 +0100211
Nico Huber52f4c8d2024-01-09 13:57:33 +0100212 Addr_Per_Block : constant FSBlock_Logical := FSBlock_Logical (Static.Block_Size / 4);
Nico Huber700a4112024-01-08 15:50:09 +0100213 Max_Addr_Per_Block : constant FSBlock_Logical := FSBlock_Logical (Block_Size'Last / 4);
Nico Huber6623c982023-12-12 16:35:46 +0100214 type Addr_In_Block_Range is range 0 .. Max_Addr_Per_Block - 1;
215
216 procedure Indirect_Block_Lookup
217 (Indirect_Block_Phys : in FSBlock_Offset;
218 Addr_In_Block : in Addr_In_Block_Range;
219 Level : in Block_Cache_Index;
Nico Huber6623c982023-12-12 16:35:46 +0100220 Next_Physical : out FSBlock_Offset;
221 Success : out Boolean)
222 with
Nico Huber5a042fd2024-01-08 15:54:57 +0100223 Pre =>
Nico Huber52f4c8d2024-01-09 13:57:33 +0100224 Addr_Per_Block = FSBlock_Logical (Static.Block_Size / 4) and
Nico Huber53df7852024-01-15 18:36:04 +0100225 FSBlock_Logical (Addr_In_Block) < Addr_Per_Block,
226 Post => State.Static = State.Static'Old and State.S = State.S'Old
Nico Huber6623c982023-12-12 16:35:46 +0100227 is
Nico Huber68c86932023-12-13 11:03:11 +0100228 Cache_Start, Cache_End : Max_Block_Index;
Nico Huber6623c982023-12-12 16:35:46 +0100229 begin
Nico Huber68c86932023-12-13 11:03:11 +0100230 Cache_FSBlock
Nico Huber52f4c8d2024-01-09 13:57:33 +0100231 (Static => Static,
232 Cache => State.Cache,
Nico Huber68c86932023-12-13 11:03:11 +0100233 Phys => Indirect_Block_Phys,
234 Level => Level,
Nico Huber68c86932023-12-13 11:03:11 +0100235 Cache_Start => Cache_Start,
236 Cache_End => Cache_End,
237 Success => Success);
Nico Huber6623c982023-12-12 16:35:46 +0100238 Next_Physical := FSBlock_Offset (Read_LE32
Nico Huber52f4c8d2024-01-09 13:57:33 +0100239 (Buf => State.Cache.Buffer (Cache_Start .. Cache_End),
Nico Huber6623c982023-12-12 16:35:46 +0100240 Off => Natural (Addr_In_Block) * 4));
Nico Huber6623c982023-12-12 16:35:46 +0100241 end Indirect_Block_Lookup;
242
243 Logical_Rest : FSBlock_Logical := Logical;
Nico Huber5a042fd2024-01-08 15:54:57 +0100244
245 pragma Assert (Addr_Per_Block <= 2 ** 14);
Nico Huber6623c982023-12-12 16:35:46 +0100246 begin
247 if Logical_Rest < Direct_Blocks then
Nico Huber33f6d952023-12-13 23:16:42 +0100248 Physical := FSBlock_Offset (I_Blocks (State).Direct_Blocks (Natural (Logical)));
Nico Huber6623c982023-12-12 16:35:46 +0100249 Success := True;
250 return;
251 end if;
252
253 Logical_Rest := Logical_Rest - Direct_Blocks;
254 if Logical_Rest < Addr_Per_Block then
255 Indirect_Block_Lookup
Nico Huber33f6d952023-12-13 23:16:42 +0100256 (Indirect_Block_Phys => FSBlock_Offset (I_Blocks (State).Indirect_Block),
Nico Huber6623c982023-12-12 16:35:46 +0100257 Addr_In_Block => Addr_In_Block_Range (Logical_Rest),
Nico Huber6bef9242024-01-26 23:47:49 +0100258 Level => Block_Map_Cache_Level,
Nico Huber6623c982023-12-12 16:35:46 +0100259 Next_Physical => Physical,
260 Success => Success);
261 return;
262 end if;
263
264 Logical_Rest := Logical_Rest - Addr_Per_Block;
265 if Logical_Rest < Addr_Per_Block ** 2 then
266 Indirect_Block_Lookup
Nico Huber33f6d952023-12-13 23:16:42 +0100267 (Indirect_Block_Phys => FSBlock_Offset (I_Blocks (State).Double_Indirect),
Nico Huber5a042fd2024-01-08 15:54:57 +0100268 Addr_In_Block => Addr_In_Block_Range ((Logical_Rest / Addr_Per_Block) mod Addr_Per_Block),
Nico Huber6bef9242024-01-26 23:47:49 +0100269 Level => Block_Map_Cache_Level + 1,
Nico Huber6623c982023-12-12 16:35:46 +0100270 Next_Physical => Physical,
271 Success => Success);
272 if not Success then
273 return;
274 end if;
275
276 Indirect_Block_Lookup
277 (Indirect_Block_Phys => Physical,
278 Addr_In_Block => Addr_In_Block_Range (Logical_Rest mod Addr_Per_Block),
Nico Huber6bef9242024-01-26 23:47:49 +0100279 Level => Block_Map_Cache_Level,
Nico Huber6623c982023-12-12 16:35:46 +0100280 Next_Physical => Physical,
281 Success => Success);
282 return;
283 end if;
284
285 Logical_Rest := Logical_Rest - Addr_Per_Block ** 2;
286 if Logical_Rest < Addr_Per_Block ** 3 then
287 Indirect_Block_Lookup
Nico Huber33f6d952023-12-13 23:16:42 +0100288 (Indirect_Block_Phys => FSBlock_Offset (I_Blocks (State).Triple_Indirect),
Nico Huber5a042fd2024-01-08 15:54:57 +0100289 Addr_In_Block => Addr_In_Block_Range ((Logical_Rest / Addr_Per_Block ** 2) mod Addr_Per_Block),
Nico Huber6bef9242024-01-26 23:47:49 +0100290 Level => Block_Map_Cache_Level + 2,
Nico Huber6623c982023-12-12 16:35:46 +0100291 Next_Physical => Physical,
292 Success => Success);
293 if not Success then
294 return;
295 end if;
296
297 Indirect_Block_Lookup
298 (Indirect_Block_Phys => Physical,
Nico Huber5a042fd2024-01-08 15:54:57 +0100299 Addr_In_Block => Addr_In_Block_Range ((Logical_Rest / Addr_Per_Block) mod Addr_Per_Block),
Nico Huber6bef9242024-01-26 23:47:49 +0100300 Level => Block_Map_Cache_Level + 1,
Nico Huber6623c982023-12-12 16:35:46 +0100301 Next_Physical => Physical,
302 Success => Success);
303 if not Success then
304 return;
305 end if;
306
307 Indirect_Block_Lookup
308 (Indirect_Block_Phys => Physical,
309 Addr_In_Block => Addr_In_Block_Range (Logical_Rest mod Addr_Per_Block),
Nico Huber6bef9242024-01-26 23:47:49 +0100310 Level => Block_Map_Cache_Level,
Nico Huber6623c982023-12-12 16:35:46 +0100311 Next_Physical => Physical,
312 Success => Success);
313 return;
314 end if;
315
316 -- Logical address was just too high.
Nico Huber5a042fd2024-01-08 15:54:57 +0100317 Physical := 0;
Nico Huber6623c982023-12-12 16:35:46 +0100318 Success := False;
319 end Ext2_Block_Map;
320
Nico Huberfffc8c12023-12-13 12:44:12 +0100321 procedure Extent_Block_Map
322 (State : in out T;
323 Logical : in FSBlock_Logical;
324 Physical : out FSBlock_Offset;
325 Success : out Boolean)
Nico Huber53df7852024-01-15 18:36:04 +0100326 with
327 Post => State.Static = State.Static'Old and State.S = State.S'Old
Nico Huberfffc8c12023-12-13 12:44:12 +0100328 is
Nico Huber52f4c8d2024-01-09 13:57:33 +0100329 Cache : Cache_Buffer renames State.Cache.Buffer;
330
Nico Huberfffc8c12023-12-13 12:44:12 +0100331 -- Extent blocks always start with a 12B header and contain 12B entries.
332 -- Every entry starts with the number of the first logical block it
333 -- covers. Entries are sorted by this number.
334 -- Depth > 0 blocks have index entries, referencing further extent blocks.
335 -- Depth = 0 blocks have extent entries, referencing a contiguous range
336 -- of data blocks.
337 --
338 -- +-----------------+
339 -- .-> | Hdr depth=0 |
340 -- | +-----------------+
341 -- | | Extent 0.. 12 |
342 -- +-------------+ | +-----------------+
343 -- | Hdr depth=1 | | | Extent 13.. 13 |
344 -- +-------------+ | +-----------------+
345 -- | Index 0 | --' | Extent 14..122 |
346 -- +-------------+ +-----------------+
347 -- | Index 123 | --.
348 -- +-------------+ | +-----------------+
349 -- `-> | Hdr depth=0 |
350 -- +-----------------+
351 -- | Extent 123..125 |
352 -- +-----------------+
353 -- | Extent 126..234 |
354 -- +-----------------+
355 --
356
357 Extent_Header_Size : constant := 12;
Nico Huberbc4f7e92024-01-27 01:59:54 +0100358 Extent_Header_Magic : constant := 16#f30a#;
Nico Huber29e1ba22024-01-27 18:45:32 +0100359 Initialized_Extent_Max_Len : constant := 2 ** 15;
Nico Huberfffc8c12023-12-13 12:44:12 +0100360 subtype Extent_Off is Natural range 0 .. Extent_Header_Size;
361 subtype Extent_Idx is Natural range 1 .. (Max_Block_Index'Last + 1) / Extent_Header_Size - 1;
Nico Huber52f4c8d2024-01-09 13:57:33 +0100362 Dynamic_Max_Index : constant Extent_Idx := State.Static.Block_Size / Extent_Header_Size - 1;
Nico Huber96a0b0e2024-01-08 15:57:09 +0100363 subtype Extent_Depth is Natural range 0 .. 32;
Nico Huberfffc8c12023-12-13 12:44:12 +0100364
365 function Extent_Byte_Offset (Idx : Extent_Idx; Off : Extent_Off) return Natural
366 is
367 (Idx * Extent_Header_Size + Off);
368
369 function Header_Magic (Buf : Buffer_Type) return Unsigned_16
370 is
371 (Read_LE16 (Buf, 0))
372 with
373 Pre => Buf'Length >= 2;
374
375 function Header_Entries (Buf : Buffer_Type) return Natural
376 is
377 (Natural (Read_LE16 (Buf, 2)))
378 with
379 Pre => Buf'Length >= 4;
380
381 function Header_Depth (Buf : Buffer_Type) return Natural
382 is
383 (Natural (Read_LE16 (Buf, 6)))
384 with
385 Pre => Buf'Length >= 8;
386
387 function Index_Logical (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Logical
388 is
389 (FSBlock_Logical (Read_LE32 (Buf, Extent_Byte_Offset (Idx, 0))))
390 with
391 Pre => Buf'Length >= Extent_Byte_Offset (Idx, 4);
392
393 function Index_Physical (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Offset
394 is
395 (FSBlock_Offset
396 (Shift_Left (Unsigned_64 (Read_LE16 (Buf, Extent_Byte_Offset (Idx, 8))), 32) or
397 Unsigned_64 (Read_LE32 (Buf, Extent_Byte_Offset (Idx, 4)))))
398 with
399 Pre => Buf'Length >= Extent_Byte_Offset (Idx, 10);
400
401 function Extent_Logical (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Logical
402 renames Index_Logical;
403
404 function Extent_Length (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Logical
405 is
406 (FSBlock_Logical (Read_LE16 (Buf, Extent_Byte_Offset (Idx, 4))))
407 with
408 Pre => Buf'Length >= Extent_Byte_Offset (Idx, 6);
409
410 function Extent_Physical (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Offset
411 is
412 (FSBlock_Offset
413 (Shift_Left (Unsigned_64 (Read_LE16 (Buf, Extent_Byte_Offset (Idx, 6))), 32) or
414 Unsigned_64 (Read_LE32 (Buf, Extent_Byte_Offset (Idx, 8)))))
415 with
416 Pre => Buf'Length >= Extent_Byte_Offset (Idx, 12);
417
418 function Bin_Search (Buf : Buffer_Type; Refs : Extent_Idx) return Extent_Idx
419 with
Nico Huber6710c0e2024-01-08 15:56:24 +0100420 Pre =>
421 Buf'Length in 2 * Extent_Header_Size .. Max_Block_Index'Last and then
422 Refs in 1 .. Extent_Idx (Buf'Length / Extent_Header_Size - 1) and then
423 Extent_Logical (Buf, 1) <= Logical,
424 Post =>
425 Bin_Search'Result in 1 .. Refs and
426 Extent_Logical (Buf, Bin_Search'Result) <= Logical
Nico Huberfffc8c12023-12-13 12:44:12 +0100427 is
Nico Huber6710c0e2024-01-08 15:56:24 +0100428 Left : Positive := 2;
Nico Huberfffc8c12023-12-13 12:44:12 +0100429 Right : Extent_Idx := Refs;
430 begin
431 while Left <= Right loop
432 declare
433 Mid : constant Extent_Idx := (Left + Right) / 2;
434 Ext_Logical : constant FSBlock_Logical := Extent_Logical (Buf, Mid);
435 begin
436 if Logical < Ext_Logical then
437 Right := Mid - 1;
438 else
439 Left := Mid + 1;
440 end if;
Nico Huber6710c0e2024-01-08 15:56:24 +0100441 pragma Loop_Invariant
442 (Right <= Refs and then
443 Left in 2 .. Refs + 1 and then
444 Extent_Logical (Buf, Left - 1) <= Logical);
Nico Huberfffc8c12023-12-13 12:44:12 +0100445 end;
446 end loop;
447 return Left - 1;
448 end Bin_Search;
449
450 procedure Next_Ref
451 (Current : in FSBlock_Offset;
Nico Huber96a0b0e2024-01-08 15:57:09 +0100452 Depth : in Extent_Depth;
Nico Huberfffc8c12023-12-13 12:44:12 +0100453 Next : out Extent_Idx;
454 Cache_Start : out Max_Block_Index;
455 Cache_End : out Max_Block_Index;
456 Success : out Boolean)
457 with
Nico Huber1db91932024-01-09 16:58:26 +0100458 Pre =>
Nico Huber1db91932024-01-09 16:58:26 +0100459 Dynamic_Max_Index = State.Static.Block_Size / Extent_Header_Size - 1,
460 Post =>
Nico Huber53df7852024-01-15 18:36:04 +0100461 State.Static = State.Static'Old and State.S = State.S'Old and
Nico Huber1db91932024-01-09 16:58:26 +0100462 (if Success then
463 Next <= Dynamic_Max_Index and then
Nico Huber4f366b32024-01-27 19:02:36 +0100464 Cache_End = Cache_Start + State.Static.Block_Size - 1)
Nico Huberfffc8c12023-12-13 12:44:12 +0100465 is
Nico Huberfffc8c12023-12-13 12:44:12 +0100466 begin
467 Cache_FSBlock
Nico Huber52f4c8d2024-01-09 13:57:33 +0100468 (Static => State.Static,
469 Cache => State.Cache,
Nico Huberfffc8c12023-12-13 12:44:12 +0100470 Phys => Current,
Nico Huber6bef9242024-01-26 23:47:49 +0100471 Level => Block_Map_Cache_Level + Depth,
Nico Huberfffc8c12023-12-13 12:44:12 +0100472 Cache_Start => Cache_Start,
473 Cache_End => Cache_End,
474 Success => Success);
475 if not Success then
476 Next := 1;
477 return;
478 end if;
479
480 declare
Nico Huber52f4c8d2024-01-09 13:57:33 +0100481 Hdr_Magic : constant Unsigned_16 := Header_Magic (Cache (Cache_Start .. Cache_End));
482 Hdr_Entries : constant Natural := Header_Entries (Cache (Cache_Start .. Cache_End));
483 Hdr_Depth : constant Natural := Header_Depth (Cache (Cache_Start .. Cache_End));
Nico Huberfffc8c12023-12-13 12:44:12 +0100484 First_Logical : constant FSBlock_Logical :=
Nico Huber52f4c8d2024-01-09 13:57:33 +0100485 Extent_Logical (Cache (Cache_Start .. Cache_End), 1);
Nico Huberfffc8c12023-12-13 12:44:12 +0100486 begin
487 Success := Success and then
488 Hdr_Magic = Extent_Header_Magic and then
489 Hdr_Depth = Depth and then
Nico Huber96a0b0e2024-01-08 15:57:09 +0100490 Hdr_Entries in Extent_Idx and then
Nico Huber4f366b32024-01-27 19:02:36 +0100491 Hdr_Entries <= Dynamic_Max_Index;
492 if not Success or else
493 -- Is the searched `Logical' out of range?
494 First_Logical > Logical
495 then
Nico Huberfffc8c12023-12-13 12:44:12 +0100496 Next := 1;
497 else
Nico Huber1db91932024-01-09 16:58:26 +0100498 pragma Assert (Cache_End - Cache_Start + 1 = State.Static.Block_Size);
Nico Huber52f4c8d2024-01-09 13:57:33 +0100499 Next := Bin_Search (Cache (Cache_Start .. Cache_End), Hdr_Entries);
Nico Huberfffc8c12023-12-13 12:44:12 +0100500 end if;
501 end;
502 end Next_Ref;
503
Nico Huber7403a542023-12-15 23:13:47 +0100504 Inline_Extents : Ext2.Inode_Extents renames State.Inode.Inline;
505 Inode_Magic : constant Unsigned_16 := Header_Magic (Inline_Extents);
506 Inode_Entries : constant Natural := Header_Entries (Inline_Extents);
507 First_Logical : constant FSBlock_Logical := Extent_Logical (Inline_Extents, 1);
508 Depth : Natural := Header_Depth (Inline_Extents);
Nico Huberfffc8c12023-12-13 12:44:12 +0100509
510 Cache_Start, Cache_End : Max_Block_Index;
511 Logical_Off, Length : FSBlock_Logical;
Nico Huber4f366b32024-01-27 19:02:36 +0100512 Physical_Off : FSBlock_Offset;
Nico Huberfffc8c12023-12-13 12:44:12 +0100513 Idx : Extent_Idx;
514 begin
Nico Huber4f366b32024-01-27 19:02:36 +0100515 Physical := 0; -- Return `0' if the searched `Logical' is not allocated.
Nico Huberfffc8c12023-12-13 12:44:12 +0100516 Success :=
517 Inode_Magic = Extent_Header_Magic and then
Nico Huber7403a542023-12-15 23:13:47 +0100518 Inode_Entries < Inline_Extents'Length / Extent_Header_Size and then
Nico Huber96a0b0e2024-01-08 15:57:09 +0100519 Depth in Extent_Depth;
Nico Huber4f366b32024-01-27 19:02:36 +0100520 if not Success or else
521 -- Is there no extent or the searched `Logical' out of range?
522 Inode_Entries = 0 or else First_Logical > Logical
523 then
Nico Huberfffc8c12023-12-13 12:44:12 +0100524 return;
525 end if;
526
Nico Huber7403a542023-12-15 23:13:47 +0100527 Idx := Bin_Search (Inline_Extents, Inode_Entries);
Nico Huberfffc8c12023-12-13 12:44:12 +0100528 if Depth = 0 then
Nico Huber4f366b32024-01-27 19:02:36 +0100529 Physical_Off := Extent_Physical (Inline_Extents, Idx);
Nico Huber7403a542023-12-15 23:13:47 +0100530 Logical_Off := Extent_Logical (Inline_Extents, Idx);
531 Length := Extent_Length (Inline_Extents, Idx);
Nico Huberfffc8c12023-12-13 12:44:12 +0100532 else
Nico Huber4f366b32024-01-27 19:02:36 +0100533 Physical_Off := Index_Physical (Inline_Extents, Idx);
Nico Huber7403a542023-12-15 23:13:47 +0100534 Logical_Off := Index_Logical (Inline_Extents, Idx);
Nico Huberfffc8c12023-12-13 12:44:12 +0100535 loop
Nico Huber96a0b0e2024-01-08 15:57:09 +0100536 pragma Loop_Invariant
Nico Huber1db91932024-01-09 16:58:26 +0100537 (State.Static = State.Static'Loop_Entry and then
Nico Huber53df7852024-01-15 18:36:04 +0100538 State.S = State.S'Loop_Entry and then
Nico Huber1db91932024-01-09 16:58:26 +0100539 Depth > 0 and then
Nico Huber96a0b0e2024-01-08 15:57:09 +0100540 Depth in Extent_Depth and then
541 Logical_Off <= Logical);
Nico Huberfffc8c12023-12-13 12:44:12 +0100542 Depth := Depth - 1;
543 Next_Ref
Nico Huber4f366b32024-01-27 19:02:36 +0100544 (Current => Physical_Off,
Nico Huberfffc8c12023-12-13 12:44:12 +0100545 Depth => Depth,
546 Next => Idx,
547 Cache_Start => Cache_Start,
548 Cache_End => Cache_End,
549 Success => Success);
550 if not Success then
551 return;
552 end if;
553
554 exit when Depth = 0;
Nico Huber4f366b32024-01-27 19:02:36 +0100555 Physical_Off := Index_Physical (Cache (Cache_Start .. Cache_End), Idx);
Nico Huber52f4c8d2024-01-09 13:57:33 +0100556 Logical_Off := Index_Logical (Cache (Cache_Start .. Cache_End), Idx);
Nico Huber4f366b32024-01-27 19:02:36 +0100557
558 -- Is the searched `Logical' out of range?
559 if Logical_Off > Logical then
560 return;
561 end if;
Nico Huberfffc8c12023-12-13 12:44:12 +0100562 end loop;
563
Nico Huber4f366b32024-01-27 19:02:36 +0100564 Physical_Off := Extent_Physical (Cache (Cache_Start .. Cache_End), Idx);
Nico Huber52f4c8d2024-01-09 13:57:33 +0100565 Logical_Off := Extent_Logical (Cache (Cache_Start .. Cache_End), Idx);
566 Length := Extent_Length (Cache (Cache_Start .. Cache_End), Idx);
Nico Huberfffc8c12023-12-13 12:44:12 +0100567 end if;
568
Nico Huber4f366b32024-01-27 19:02:36 +0100569 -- Is the searched `Logical' out of range?
570 if Logical_Off > Logical or else
571 -- Is this an empty extent?
572 (Length = 0 or Length > Initialized_Extent_Max_Len)
573 then
574 return;
575 end if;
576
577 Success := Logical_Off <= FSBlock_Logical'Last - Length + 1;
578 if not Success or else
579 -- Is the searched `Logical' after this extent?
580 Logical > Logical_Off + Length - 1
581 then
582 return;
583 end if;
584
585 Success := FSBlock_Offset (Logical - Logical_Off) <= FSBlock_Offset'Last - Physical_Off;
Nico Huberfffc8c12023-12-13 12:44:12 +0100586 if Success then
Nico Huber4f366b32024-01-27 19:02:36 +0100587 Physical := Physical_Off + FSBlock_Offset (Logical - Logical_Off);
Nico Huberfffc8c12023-12-13 12:44:12 +0100588 end if;
589 end Extent_Block_Map;
590
Nico Huber7eb56922024-01-10 17:22:54 +0100591 procedure Parse_Group
592 (Static : in Mount_State;
593 Table_Start : out FSBlock_Offset;
594 Buf : in Buffer_Type;
595 Success : out Boolean)
596 with
597 Pre =>
598 Buf'Length >= Group_Desc_Size'First and
599 (if Static.Feature_64Bit then Buf'Length >= 64)
600 is
601 Inode_Table_Block : constant Unsigned_64 :=
602 (if Static.Feature_64Bit
603 then Shift_Left (Unsigned_64 (Read_LE32 (Buf, 40)), 32)
604 else 0)
605 or
606 Unsigned_64 (Read_LE32 (Buf, 8));
607 begin
608 if Inode_Table_Block >= Unsigned_64 (Static.First_Data_Block) and
609 Inode_Table_Block <= Unsigned_64 (FSBlock_Offset'Last)
610 then
611 Table_Start := FSBlock_Offset (Inode_Table_Block);
612 Success := True;
613 else
614 Table_Start := 0;
615 Success := False;
616 end if;
617 end Parse_Group;
618
Nico Huber71f9ca02024-01-10 15:38:49 +0100619 procedure Parse_Inode
620 (Static : in Mount_State;
621 Inode : in out Inode_Info;
622 Buf : in Buffer_Type;
623 Success : out Boolean)
624 with
625 Pre => Buf'Length >= Inode_Size'First
626 is
627 S_IFMT : constant := 8#170000#;
628 S_IFDIR : constant := 8#040000#;
629 S_IFREG : constant := 8#100000#;
630 S_IFLNK : constant := 8#120000#;
631
632 I_Mode : constant Unsigned_16 := Read_LE16 (Buf, 0);
633 I_Blocks : constant Unsigned_32 := Read_LE32 (Buf, 28);
634 I_Flags : constant Unsigned_32 := Read_LE32 (Buf, 32);
635 I_File_ACL : constant Unsigned_32 := Read_LE32 (Buf, 104);
636 begin
637 case I_Mode and S_IFMT is
638 when S_IFDIR => Inode.Mode := Dir;
639 when S_IFREG => Inode.Mode := Regular;
640 when S_IFLNK => Inode.Mode := Link;
641 when others => Success := False; return;
642 end case;
643
644 if Inode.Mode = Link and
645 ((I_File_ACL = 0 and I_Blocks = 0) or
646 (I_File_ACL /= 0 and I_Blocks = 2 ** (Static.Block_Size_Bits - 9)))
647 then
648 Inode.Mode := Fast_Link;
649 end if;
650
651 declare
652 I_Size : constant Unsigned_64 :=
653 (if Inode.Mode = Regular
654 then Shift_Left (Unsigned_64 (Read_LE32 (Buf, 108)), 32)
655 else 0) or
656 Unsigned_64 (Read_LE32 (Buf, 4));
657 begin
658 if I_Size > Unsigned_64 (Inode_Length'Last) then
659 Success := False;
660 return;
661 end if;
662 Inode.Size := Inode_Length (I_Size);
663 end;
664
665 Inode.Use_Extents := Static.Feature_Extents and (I_Flags and EXT4_EXTENTS_FL) /= 0;
666 Inode.Inline := Buf (Buf'First + 40 .. Buf'First + 100 - 1);
667
668 Success := True;
669 end Parse_Inode;
670
Nico Huber57d3a852023-12-04 15:42:40 +0100671 procedure Open
Nico Hubercdc03512023-12-13 23:32:54 +0100672 (State : in out T;
673 Inode : in Inode_Index;
674 Success : out Boolean)
675 with
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100676 Pre => Is_Mounted (State),
Nico Huber53df7852024-01-15 18:36:04 +0100677 Post => Is_Mounted (State) and (Success = Is_Open (State))
Nico Hubercdc03512023-12-13 23:32:54 +0100678 is
Nico Huber52f4c8d2024-01-09 13:57:33 +0100679 Static : Mount_State renames State.Static;
680 Cache : Cache_Buffer renames State.Cache.Buffer;
681
Nico Huber52f4c8d2024-01-09 13:57:33 +0100682 Group : constant Group_Index := Group_Index ((Inode - 1) / Static.Inodes_Per_Group);
Nico Huber7eb56922024-01-10 17:22:54 +0100683 Group_Block : constant FSBlock_Offset :=
684 1 + FSBlock_Offset (Static.First_Data_Block) + FSBlock_Offset (Group / Static.Group_Desc_Per_Block);
685 Group_In_Block : constant Group_In_Block_Index := Group_In_Block_Index (Group mod Static.Group_Desc_Per_Block);
686 Group_In_Block_Offset : constant Natural := Natural (Group_In_Block) * Static.Group_Desc_Size;
687
Nico Hubercdc03512023-12-13 23:32:54 +0100688 Cache_Start, Cache_End : Max_Block_Index;
Nico Huber7eb56922024-01-10 17:22:54 +0100689 First_Table_Block : FSBlock_Offset;
Nico Hubercdc03512023-12-13 23:32:54 +0100690 begin
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100691 State.S := Mounted;
692
Nico Hubercdc03512023-12-13 23:32:54 +0100693 Cache_FSBlock
Nico Huber52f4c8d2024-01-09 13:57:33 +0100694 (Static => Static,
695 Cache => State.Cache,
Nico Huber7eb56922024-01-10 17:22:54 +0100696 Phys => Group_Block,
Nico Huber6bef9242024-01-26 23:47:49 +0100697 Level => Group_Cache_Level,
Nico Hubercdc03512023-12-13 23:32:54 +0100698 Cache_Start => Cache_Start,
699 Cache_End => Cache_End,
700 Success => Success);
Nico Hubereb012072024-01-10 17:56:24 +0100701 Success := Success and then
702 -- TODO: Prove this using a predicate on Mount_State:
703 Cache_Start <= Cache_End - Group_In_Block_Offset - Static.Group_Desc_Size + 1;
Nico Hubercdc03512023-12-13 23:32:54 +0100704 if not Success then
705 return;
706 end if;
707
Nico Huber7eb56922024-01-10 17:22:54 +0100708 Parse_Group
709 (Static => Static,
710 Table_Start => First_Table_Block,
711 Buf => Cache (Cache_Start + Group_In_Block_Offset ..
712 Cache_Start + Group_In_Block_Offset + Static.Group_Desc_Size - 1),
713 Success => Success);
714 if not Success then
715 return;
716 end if;
Nico Huber7eb56922024-01-10 17:22:54 +0100717
Nico Hubercdc03512023-12-13 23:32:54 +0100718 declare
Nico Huberecafb8f2024-01-09 15:45:49 +0100719 Inode_In_Group : constant Inode_In_Group_Index :=
720 Inode_In_Group_Index ((Inode - 1) mod Static.Inodes_Per_Group);
Nico Huber71f9ca02024-01-10 15:38:49 +0100721
Nico Huber7eb56922024-01-10 17:22:54 +0100722 Inode_Block : constant FSBlock_Offset := FSBlock_Offset (Inode_In_Group / Static.Inodes_Per_Block);
Nico Huber71f9ca02024-01-10 15:38:49 +0100723 Inode_In_Block : constant Inode_In_Block_Index :=
724 Inode_In_Block_Index (Inode_In_Group mod Static.Inodes_Per_Block);
725 Inode_In_Block_Offset : constant Natural :=
726 Natural (Inode_In_Block) * Static.Inode_Size;
Nico Hubercdc03512023-12-13 23:32:54 +0100727 begin
Nico Huber7eb56922024-01-10 17:22:54 +0100728 if First_Table_Block > FSBlock_Offset'Last - Inode_Block then
Nico Huber925326e2024-01-09 18:46:26 +0100729 Success := False;
730 return;
731 end if;
Nico Huber925326e2024-01-09 18:46:26 +0100732
Nico Hubercdc03512023-12-13 23:32:54 +0100733 Cache_FSBlock
Nico Huber52f4c8d2024-01-09 13:57:33 +0100734 (Static => Static,
735 Cache => State.Cache,
Nico Huber7eb56922024-01-10 17:22:54 +0100736 Phys => FSBlock_Offset (First_Table_Block + Inode_Block),
Nico Huber6bef9242024-01-26 23:47:49 +0100737 Level => Inode_Cache_Level,
Nico Hubercdc03512023-12-13 23:32:54 +0100738 Cache_Start => Cache_Start,
739 Cache_End => Cache_End,
740 Success => Success);
Nico Hubereb012072024-01-10 17:56:24 +0100741 Success := Success and then
742 -- TODO: Prove this using a predicate on Mount_State:
743 Cache_Start <= Cache_End - Inode_In_Block_Offset - Static.Inode_Size + 1;
Nico Hubercdc03512023-12-13 23:32:54 +0100744 if not Success then
745 return;
746 end if;
747
Nico Huber71f9ca02024-01-10 15:38:49 +0100748 Parse_Inode
749 (Static => State.Static,
750 Inode => State.Inode,
751 Buf => Cache (Cache_Start + Inode_In_Block_Offset ..
752 Cache_Start + Inode_In_Block_Offset + Static.Inode_Size - 1),
753 Success => Success);
Nico Huber022e2262023-12-15 23:15:17 +0100754
Nico Huber71f9ca02024-01-10 15:38:49 +0100755 if Success then
Nico Huber21d42022023-12-16 02:50:22 +0100756 State.Inode.I := Inode;
Nico Huberea1de112024-01-27 18:52:12 +0100757 State.Inode.Map_Cache := (others => <>);
Nico Hubercdc03512023-12-13 23:32:54 +0100758 State.S := File_Opened;
Nico Huber71f9ca02024-01-10 15:38:49 +0100759 end if;
Nico Hubercdc03512023-12-13 23:32:54 +0100760 end;
761 end Open;
762
763 procedure Open
Nico Huber57d3a852023-12-04 15:42:40 +0100764 (State : in out T;
765 File_Len : out File_Length;
Nico Huberb1cb2d32023-12-17 01:45:47 +0100766 File_Type : out FS.File_Type;
767 File_Name : in String;
768 In_Root : in Boolean;
Nico Huber57d3a852023-12-04 15:42:40 +0100769 Success : out Boolean)
Nico Huber1d7727f2023-11-30 15:58:46 +0100770 is
Nico Huber21d42022023-12-16 02:50:22 +0100771 File_Name_Max : constant := 255;
772 Root_Inode : constant := 2;
773
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100774 function Str_Buf_Equal (Str : String; Buf : Buffer_Type) return Boolean
775 with
776 Pre => Str'Length <= Buf'Length
777 is
Nico Huber21d42022023-12-16 02:50:22 +0100778 begin
779 for I in Str'Range loop
780 if Character'Pos (Str (I)) /= Buf (Buf'First + (I - Str'First)) then
781 return False;
782 end if;
783 end loop;
784 return True;
785 end Str_Buf_Equal;
786
787 File_Inode : Inode_Index;
788 File_Pos : File_Length;
Nico Huber1d7727f2023-11-30 15:58:46 +0100789 begin
Nico Huber57d3a852023-12-04 15:42:40 +0100790 File_Len := 0;
Nico Huber21d42022023-12-16 02:50:22 +0100791 File_Type := FS.File_Type'First;
792
793 if File_Name'Length > File_Name_Max then
794 Success := False;
795 return;
796 end if;
797
798 -- Ensure dir is opened:
799 --
800 if State.S = File_Opened then
801 if State.Cur_Dir /= State.Inode.I then
802 Success := False;
803 return;
804 end if;
805 else
806 if In_Root then
807 State.Cur_Dir := Root_Inode;
808 end if;
809 Open (State, State.Cur_Dir, Success);
810 if not Success then
811 return;
812 end if;
813 end if;
814
815 -- Lookup file in opened dir:
816 --
817 File_Pos := 0;
Nico Huber1d7727f2023-11-30 15:58:46 +0100818 Success := False;
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100819 loop
820 pragma Loop_Invariant (Is_Open (State) and not Success);
Nico Huber21d42022023-12-16 02:50:22 +0100821 declare
822 Dir_Entry_Header_Length : constant := 4 + 2 + 1 + 1;
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100823 Dir_Entry_Header : Buffer_Type (0 .. Dir_Entry_Header_Length - 1);
824 Dir_Entry_Name : Buffer_Type (0 .. File_Name_Max - 1);
Nico Huber21d42022023-12-16 02:50:22 +0100825 Entry_File_Pos : File_Offset := File_Pos;
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100826 Dir_Entry_Length : File_Length;
827 Inode : Inode_0_Index;
Nico Huber21d42022023-12-16 02:50:22 +0100828 Len : Natural;
829 begin
830 Read
831 (State => State,
832 File_Pos => Entry_File_Pos,
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100833 Buf => Dir_Entry_Header,
Nico Huber21d42022023-12-16 02:50:22 +0100834 Len => Len);
835 if Len < Dir_Entry_Header_Length then
836 return;
837 end if;
838
839 -- Only check filenames of exact same length
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100840 Inode := Inode_0_Index (Read_LE32 (Dir_Entry_Header, 0));
841 if Inode > Root_Inode and then
842 File_Name'Length = Natural (Dir_Entry_Header (6))
Nico Huber21d42022023-12-16 02:50:22 +0100843 then
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100844 pragma Warnings
845 (GNATprove, Off, """Entry_File_Pos"" is set*but not used",
846 Reason => "We only care about intermedidate values.");
Nico Huber21d42022023-12-16 02:50:22 +0100847 Read
848 (State => State,
849 File_Pos => Entry_File_Pos,
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100850 Buf => Dir_Entry_Name,
Nico Huber21d42022023-12-16 02:50:22 +0100851 Len => Len);
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100852 pragma Warnings (GNATprove, On, """Entry_File_Pos"" is set*but not used");
Nico Huber21d42022023-12-16 02:50:22 +0100853 if Len < File_Name'Length then
854 return;
855 end if;
856
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100857 Success := Str_Buf_Equal (File_Name, Dir_Entry_Name);
858 if Success then
859 File_Inode := Inode;
860 exit;
861 end if;
Nico Huber21d42022023-12-16 02:50:22 +0100862 end if;
863
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100864 Dir_Entry_Length := File_Length (Read_LE16 (Dir_Entry_Header, 4));
Nico Huber767608d2024-01-27 18:47:05 +0100865 if Dir_Entry_Length = 0 or
866 File_Pos > File_Length'Last - Dir_Entry_Length or
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100867 Unsigned_64 (File_Pos) >= Unsigned_64 (State.Inode.Size) - Unsigned_64 (Dir_Entry_Length)
868 then
869 return;
870 end if;
871 File_Pos := File_Pos + Dir_Entry_Length;
Nico Huber21d42022023-12-16 02:50:22 +0100872 end;
873 end loop;
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100874 pragma Assert_And_Cut (Success and Is_Mounted (State));
Nico Huber21d42022023-12-16 02:50:22 +0100875
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100876 Open (State, File_Inode, Success);
877 if not Success then
878 return;
Nico Huber21d42022023-12-16 02:50:22 +0100879 end if;
880
Nico Hubere5d7c0e2024-01-10 18:53:13 +0100881 if State.Inode.Mode = Dir then
882 State.Cur_Dir := File_Inode;
883 end if;
884
885 Success := State.Inode.Size <= Inode_Length (File_Length'Last);
Nico Huber21d42022023-12-16 02:50:22 +0100886 if Success then
887 File_Len := File_Length (State.Inode.Size);
888 File_Type := (case State.Inode.Mode is
889 when Dir => FS.Dir,
890 when Regular => FS.Regular,
891 when Link .. Fast_Link => FS.Link);
892 else
893 Close (State);
894 end if;
Nico Huber1d7727f2023-11-30 15:58:46 +0100895 end Open;
896
Nico Huber57d3a852023-12-04 15:42:40 +0100897 procedure Close (State : in out T) is
898 begin
899 State.S := Mounted;
900 end Close;
Nico Huber1d7727f2023-11-30 15:58:46 +0100901
Nico Huber57d3a852023-12-04 15:42:40 +0100902 procedure Read
903 (State : in out T;
Nico Huber57d3a852023-12-04 15:42:40 +0100904 File_Pos : in out File_Offset;
905 Buf : out Buffer_Type;
906 Len : out Natural)
Nico Huber1d7727f2023-11-30 15:58:46 +0100907 is
Nico Huber52f4c8d2024-01-09 13:57:33 +0100908 Static : Mount_State renames State.Static;
909 Cache : Cache_Buffer renames State.Cache.Buffer;
910
Nico Huber53df7852024-01-15 18:36:04 +0100911 Pos : Natural range Buf'First .. Buf'Last + 1;
Nico Huber1d7727f2023-11-30 15:58:46 +0100912 begin
Nico Huberd3644be2023-12-16 01:43:00 +0100913 if State.Inode.Mode = Fast_Link then
Nico Huber549a1b82023-12-17 01:51:59 +0100914 if State.Inode.Size > Inode_Length (State.Inode.Inline'Length) or
915 Inode_Length (File_Pos) >= State.Inode.Size then
Nico Huberd3644be2023-12-16 01:43:00 +0100916 Len := 0;
917 else
Nico Huber549a1b82023-12-17 01:51:59 +0100918 Len := Natural'Min (Buf'Length, Natural (State.Inode.Size) - Natural (File_Pos));
Nico Huberd3644be2023-12-16 01:43:00 +0100919 end if;
920 Buf (Buf'First .. Buf'First + Len - 1) :=
921 State.Inode.Inline (Natural (File_Pos) .. Natural (File_Pos) + Len - 1);
922 Buf (Buf'First + Len .. Buf'Last) := (others => 16#00#);
923 File_Pos := File_Pos + File_Length (Len);
924 return;
925 end if;
926
Nico Huber1d7727f2023-11-30 15:58:46 +0100927 Len := 0;
Nico Huberd3644be2023-12-16 01:43:00 +0100928 Pos := Buf'First;
Nico Huber53df7852024-01-15 18:36:04 +0100929 while Pos <= Buf'Last and
930 File_Pos < File_Offset'Last and
931 Inode_Length (File_Pos) < State.Inode.Size
932 loop
933 pragma Loop_Invariant (Is_Open (State));
Nico Huberd3644be2023-12-16 01:43:00 +0100934 declare
Nico Huber52f4c8d2024-01-09 13:57:33 +0100935 In_Block : constant Max_Block_Index := Natural (File_Pos) mod Static.Block_Size;
Nico Huber53df7852024-01-15 18:36:04 +0100936 Logical : constant FSBlock_Logical :=
937 FSBlock_Logical (File_Pos / File_Offset (Static.Block_Size));
938 In_Block_Space : constant Positive := Static.Block_Size - In_Block;
Nico Huber549a1b82023-12-17 01:51:59 +0100939 In_File_Space : constant Inode_Length := State.Inode.Size - Inode_Length (File_Pos);
Nico Huber53df7852024-01-15 18:36:04 +0100940 In_Buf_Space : constant Positive := Buf'Last - Pos + 1;
941 Len_Here : Positive;
Nico Huberd3644be2023-12-16 01:43:00 +0100942 begin
943 Len_Here := In_Block_Space;
Nico Huber549a1b82023-12-17 01:51:59 +0100944 if In_File_Space < Inode_Length (Len_Here) then
Nico Huber53df7852024-01-15 18:36:04 +0100945 Len_Here := Positive (In_File_Space);
Nico Huberd3644be2023-12-16 01:43:00 +0100946 end if;
947 if In_Buf_Space < Len_Here then
948 Len_Here := In_Buf_Space;
949 end if;
Nico Huber53df7852024-01-15 18:36:04 +0100950 if File_Offset'Last - File_Pos < File_Length (Len_Here) then
951 Len_Here := Positive (File_Offset'Last - File_Pos);
952 end if;
Nico Huberd3644be2023-12-16 01:43:00 +0100953
954 declare
955 Last : constant Index_Type := Pos + Len_Here - 1;
956 Cache_Start, Cache_End : Max_Block_Index;
957 Physical : FSBlock_Offset;
958 Success : Boolean;
959 begin
Nico Huberea1de112024-01-27 18:52:12 +0100960 if State.Inode.Map_Cache.Logical = Block_Offset (Logical) then
961 Physical := State.Inode.Map_Cache.Phys;
962 Success := True;
963 elsif State.Inode.Use_Extents then
Nico Huberd3644be2023-12-16 01:43:00 +0100964 Extent_Block_Map (State, Logical, Physical, Success);
965 else
966 Ext2_Block_Map (State, Logical, Physical, Success);
967 end if;
Nico Huber53df7852024-01-15 18:36:04 +0100968 exit when not Success;
Nico Huberea1de112024-01-27 18:52:12 +0100969 State.Inode.Map_Cache := (Phys => Physical, Logical => Block_Offset (Logical));
Nico Huber53df7852024-01-15 18:36:04 +0100970
Nico Huber4f366b32024-01-27 19:02:36 +0100971 if Physical > 0 then
972 Cache_FSBlock
973 (Static => Static,
974 Cache => State.Cache,
975 Phys => Physical,
976 Level => File_Cache_Level,
977 Cache_Start => Cache_Start,
978 Cache_End => Cache_End,
979 Success => Success);
980 pragma Assert (Cache_Start <= Cache_End - (In_Block + Len_Here - 1));
981 exit when not Success;
Nico Huberd3644be2023-12-16 01:43:00 +0100982
Nico Huber4f366b32024-01-27 19:02:36 +0100983 Buf (Pos .. Last) := Cache (
984 Cache_Start + In_Block .. Cache_Start + In_Block + Len_Here - 1);
985 else
986 -- Treat unallocated and unwritten blocks as all 00 (sparse files).
987 Buf (Pos .. Last) := (others => 16#00#);
988 end if;
989
Nico Huberd3644be2023-12-16 01:43:00 +0100990 File_Pos := File_Pos + File_Length (Len_Here);
991 Pos := Pos + Len_Here;
Nico Huber53df7852024-01-15 18:36:04 +0100992 Len := Pos - Buf'First;
Nico Huberd3644be2023-12-16 01:43:00 +0100993 end;
994 end;
995 end loop;
996 Buf (Pos .. Buf'Last) := (others => 16#00#);
Nico Huber1d7727f2023-11-30 15:58:46 +0100997 end Read;
998
Nico Huber26f71832023-12-05 16:26:56 +0100999 --------------------------------------------------------------------------
1000
1001 package C is new VFS (T => T, Initial => (S => Unmounted, others => <>));
Nico Huber8ec45a12023-12-04 17:11:08 +01001002
1003 function C_Mount return int
1004 with
1005 Export,
1006 Convention => C,
1007 External_Name => "ext2fs_mount";
1008 function C_Mount return int
1009 with
1010 SPARK_Mode => Off
1011 is
1012 begin
1013 return C.C_Mount;
1014 end C_Mount;
1015
Nico Huber3da21472023-12-18 15:43:35 +01001016 function C_Open (File_Path : System.Address) return int
Nico Huber8ec45a12023-12-04 17:11:08 +01001017 with
1018 Export,
1019 Convention => C,
1020 External_Name => "ext2fs_dir";
Nico Huber3da21472023-12-18 15:43:35 +01001021 function C_Open (File_Path : System.Address) return int
Nico Huber8ec45a12023-12-04 17:11:08 +01001022 with
1023 SPARK_Mode => Off
1024 is
1025 begin
1026 return C.C_Open (File_Path);
1027 end C_Open;
1028
1029 function C_Read (Buf : System.Address; Len : int) return int
1030 with
1031 Export,
1032 Convention => C,
1033 External_Name => "ext2fs_read";
1034 function C_Read (Buf : System.Address; Len : int) return int
1035 with
1036 SPARK_Mode => Off
1037 is
1038 begin
1039 return C.C_Read (Buf, Len);
1040 end C_Read;
1041
Thomas Heijligen5c43abc2023-12-11 15:24:36 +00001042end FILO.FS.Ext2;