Nico Huber | 26f7183 | 2023-12-05 16:26:56 +0100 | [diff] [blame] | 1 | -- 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 Huber | 33f6d95 | 2023-12-13 23:16:42 +0100 | [diff] [blame] | 10 | with Ada.Unchecked_Conversion; |
Nico Huber | 8ec45a1 | 2023-12-04 17:11:08 +0100 | [diff] [blame] | 11 | with System; |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 12 | with Interfaces; |
Nico Huber | 8ec45a1 | 2023-12-04 17:11:08 +0100 | [diff] [blame] | 13 | with Interfaces.C; |
| 14 | with Interfaces.C.Strings; |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 15 | |
Thomas Heijligen | 5c43abc | 2023-12-11 15:24:36 +0000 | [diff] [blame] | 16 | with FILO.Blockdev; |
| 17 | with FILO.FS.VFS; |
Nico Huber | 8ec45a1 | 2023-12-04 17:11:08 +0100 | [diff] [blame] | 18 | |
| 19 | use Interfaces.C; |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 20 | |
Thomas Heijligen | 5c43abc | 2023-12-11 15:24:36 +0000 | [diff] [blame] | 21 | package body FILO.FS.Ext2 is |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 22 | |
Nico Huber | 57d3a85 | 2023-12-04 15:42:40 +0100 | [diff] [blame] | 23 | function Is_Mounted (State : T) return Boolean is (State.S >= Mounted); |
| 24 | function Is_Open (State : T) return Boolean is (State.S = File_Opened); |
| 25 | |
Nico Huber | 26f7183 | 2023-12-05 16:26:56 +0100 | [diff] [blame] | 26 | -------------------------------------------------------------------------- |
| 27 | |
| 28 | SUPERBLOCK_SIZE : constant := 1024; |
| 29 | SUPERBLOCK_BLOCKS : constant := SUPERBLOCK_SIZE / BLOCK_SIZE; |
| 30 | |
| 31 | SUPERBLOCK_MAGIC : constant := 16#ef53#; |
| 32 | OLD_REV : constant := 0; |
| 33 | DYNAMIC_REV : constant := 1; |
| 34 | FEATURE_INCOMPAT_EXTENTS : constant := 16#0040#; |
| 35 | FEATURE_INCOMPAT_64BIT : constant := 16#0080#; |
| 36 | |
Nico Huber | cdc0351 | 2023-12-13 23:32:54 +0100 | [diff] [blame] | 37 | EXT4_EXTENTS_FL : constant := 16#8_0000#; |
| 38 | |
Nico Huber | 57d3a85 | 2023-12-04 15:42:40 +0100 | [diff] [blame] | 39 | procedure Mount |
| 40 | (State : in out T; |
| 41 | Part_Len : in Partition_Length; |
| 42 | Success : out Boolean) |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 43 | is |
Nico Huber | 26f7183 | 2023-12-05 16:26:56 +0100 | [diff] [blame] | 44 | Super_Block : Buffer_Type (0 .. SUPERBLOCK_SIZE - 1) := (others => 0); |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 45 | begin |
Nico Huber | 26f7183 | 2023-12-05 16:26:56 +0100 | [diff] [blame] | 46 | if Part_Len < 2 * SUPERBLOCK_SIZE then |
| 47 | Success := False; |
| 48 | return; |
| 49 | end if; |
| 50 | |
Thomas Heijligen | 5c43abc | 2023-12-11 15:24:36 +0000 | [diff] [blame] | 51 | Blockdev.Read (Super_Block, 1 * SUPERBLOCK_SIZE, Success); |
Nico Huber | 26f7183 | 2023-12-05 16:26:56 +0100 | [diff] [blame] | 52 | if not Success then |
| 53 | return; |
| 54 | end if; |
| 55 | |
| 56 | if Read_LE16 (Super_Block, 14 * 4) /= 16#ef53# then |
| 57 | Success := False; |
| 58 | return; |
| 59 | end if; |
| 60 | |
| 61 | State.Part_Len := Part_Len; |
Nico Huber | cd1d5f7 | 2023-12-13 16:01:43 +0100 | [diff] [blame] | 62 | State.First_Data_Block := FSBlock_Offset (Read_LE32 (Super_Block, 5 * 4)); |
Nico Huber | 26f7183 | 2023-12-05 16:26:56 +0100 | [diff] [blame] | 63 | |
| 64 | declare |
| 65 | S_Log_Block_Size : constant Unsigned_32 := Read_LE32 (Super_Block, 6 * 4); |
| 66 | begin |
| 67 | if S_Log_Block_Size <= Unsigned_32 (Log_Block_Size'Last - 10) then |
| 68 | State.Block_Size_Bits := Log_Block_Size (S_Log_Block_Size + 10); |
| 69 | else |
| 70 | Success := False; |
| 71 | return; |
| 72 | end if; |
| 73 | end; |
| 74 | |
| 75 | declare |
| 76 | S_Inodes_Per_Group : constant Unsigned_32 := Read_LE32 (Super_Block, 10 * 4); |
| 77 | begin |
Nico Huber | cdc0351 | 2023-12-13 23:32:54 +0100 | [diff] [blame] | 78 | if S_Inodes_Per_Group in 1 .. Unsigned_32'Last then |
| 79 | State.Inodes_Per_Group := Inode_Index (S_Inodes_Per_Group); |
Nico Huber | 26f7183 | 2023-12-05 16:26:56 +0100 | [diff] [blame] | 80 | else |
| 81 | Success := False; |
| 82 | return; |
| 83 | end if; |
| 84 | end; |
| 85 | |
| 86 | declare |
| 87 | S_Rev_Level : constant Unsigned_32 := Read_LE32 (Super_Block, 19 * 4); |
| 88 | begin |
| 89 | if S_Rev_Level >= DYNAMIC_REV then |
| 90 | declare |
| 91 | S_Inode_Size : constant Unsigned_16 := Read_LE16 (Super_Block, 22 * 4); |
| 92 | begin |
| 93 | if S_Inode_Size in |
| 94 | Unsigned_16 (Inode_Size'First) .. Unsigned_16 (Inode_Size'Last) |
| 95 | then |
| 96 | State.Inode_Size := Inode_Size (S_Inode_Size); |
| 97 | else |
| 98 | Success := False; |
| 99 | return; |
| 100 | end if; |
| 101 | end; |
| 102 | else |
| 103 | State.Inode_Size := Inode_Size'First; |
| 104 | end if; |
| 105 | end; |
| 106 | |
| 107 | declare |
| 108 | S_Feature_Incompat : constant Unsigned_32 := Read_LE32 (Super_Block, 24 * 4); |
| 109 | begin |
| 110 | State.Feature_Extents := (S_Feature_Incompat and FEATURE_INCOMPAT_EXTENTS) /= 0; |
| 111 | State.Feature_64Bit := (S_Feature_Incompat and FEATURE_INCOMPAT_64BIT) /= 0; |
| 112 | if State.Feature_64Bit then |
| 113 | declare |
| 114 | S_Desc_Size : constant Unsigned_16 := Read_LE16 (Super_Block, 63 * 4 + 2); |
| 115 | begin |
Nico Huber | cd1d5f7 | 2023-12-13 16:01:43 +0100 | [diff] [blame] | 116 | if Is_Power_Of_2 (S_Desc_Size) and then |
| 117 | S_Desc_Size in Unsigned_16 (Desc_Size'First) .. |
| 118 | Unsigned_16 (Positive'Min (Desc_Size'Last, 2 ** State.Block_Size_Bits)) |
Nico Huber | 26f7183 | 2023-12-05 16:26:56 +0100 | [diff] [blame] | 119 | then |
| 120 | State.Desc_Size := Desc_Size (S_Desc_Size); |
| 121 | else |
| 122 | Success := False; |
| 123 | return; |
| 124 | end if; |
| 125 | end; |
Nico Huber | 77a04d7 | 2023-12-13 23:11:40 +0100 | [diff] [blame] | 126 | State.Feature_64Bit := State.Feature_64Bit and State.Desc_Size >= 64; |
Nico Huber | 26f7183 | 2023-12-05 16:26:56 +0100 | [diff] [blame] | 127 | else |
| 128 | State.Desc_Size := Desc_Size'First; |
| 129 | end if; |
| 130 | end; |
| 131 | |
| 132 | State.S := Mounted; |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 133 | end Mount; |
| 134 | |
Nico Huber | f5d99d0 | 2023-12-12 13:42:55 +0100 | [diff] [blame] | 135 | procedure Read_FSBlock |
| 136 | (State : in T; |
| 137 | Buf : out Buffer_Type; |
| 138 | FSBlock : in FSBlock_Offset; |
| 139 | Success : out Boolean) |
| 140 | with |
| 141 | Pre => |
| 142 | Is_Mounted (State) and |
| 143 | Buf'Length = 2 ** State.Block_Size_Bits |
| 144 | is |
| 145 | Block_Size : constant Blockdev_Length := 2 ** State.Block_Size_Bits; |
| 146 | Max_Block_Offset : constant FSBlock_Offset := |
| 147 | FSBlock_Offset (State.Part_Len / Block_Size - 1); |
| 148 | begin |
| 149 | if FSBlock > Max_Block_Offset then |
| 150 | Success := False; |
| 151 | return; |
| 152 | end if; |
| 153 | Blockdev.Read (Buf, Blockdev_Length (FSBlock) * Block_Size, Success); |
| 154 | end Read_FSBlock; |
| 155 | |
Nico Huber | 68c8693 | 2023-12-13 11:03:11 +0100 | [diff] [blame] | 156 | procedure Cache_FSBlock |
| 157 | (State : in out T; |
| 158 | Phys : in FSBlock_Offset; |
| 159 | Level : in Block_Cache_Index; |
Nico Huber | 57dfbfb | 2023-12-13 23:24:16 +0100 | [diff] [blame] | 160 | Label : in Cache_Label; |
| 161 | Logical : in Boolean := True; |
Nico Huber | 68c8693 | 2023-12-13 11:03:11 +0100 | [diff] [blame] | 162 | Cache_Start : out Max_Block_Index; |
| 163 | Cache_End : out Max_Block_Index; |
| 164 | Success : out Boolean) |
| 165 | with |
| 166 | Post => Cache_End = Cache_Start + 2 ** State.Block_Size_Bits |
| 167 | is |
| 168 | Block_Size : constant Natural := 2 ** State.Block_Size_Bits; |
| 169 | -- Limit cache usage depending on block size: |
| 170 | Max_Level : constant Block_Cache_Index := |
| 171 | 2 ** (Log_Block_Size'Last - State.Block_Size_Bits) - 1; |
| 172 | Cache_Level : constant Block_Cache_Index := |
| 173 | Block_Cache_Index'Min (Level, Max_Level); |
| 174 | begin |
| 175 | Cache_Start := Cache_Level * Block_Size; |
| 176 | Cache_End := Cache_Start + Block_Size - 1; |
Nico Huber | 57dfbfb | 2023-12-13 23:24:16 +0100 | [diff] [blame] | 177 | if State.Block_Cache_Logical (Cache_Level) = Logical and |
| 178 | State.Block_Cache_Label (Cache_Level) = Label |
| 179 | then |
Nico Huber | 68c8693 | 2023-12-13 11:03:11 +0100 | [diff] [blame] | 180 | Success := True; |
| 181 | else |
| 182 | Read_FSBlock |
| 183 | (State => State, |
| 184 | Buf => State.Block_Cache (Cache_Start .. Cache_End), |
| 185 | FSBlock => Phys, |
| 186 | Success => Success); |
Nico Huber | 57dfbfb | 2023-12-13 23:24:16 +0100 | [diff] [blame] | 187 | State.Block_Cache_Logical (Cache_Level) := Logical; |
| 188 | State.Block_Cache_Label (Cache_Level) := Label; |
Nico Huber | 68c8693 | 2023-12-13 11:03:11 +0100 | [diff] [blame] | 189 | end if; |
| 190 | end Cache_FSBlock; |
| 191 | |
Nico Huber | 57dfbfb | 2023-12-13 23:24:16 +0100 | [diff] [blame] | 192 | procedure Cache_FSBlock |
| 193 | (State : in out T; |
| 194 | Phys : in FSBlock_Offset; |
| 195 | Level : in Block_Cache_Index; |
| 196 | Cache_Start : out Max_Block_Index; |
| 197 | Cache_End : out Max_Block_Index; |
| 198 | Success : out Boolean) |
| 199 | with |
| 200 | Post => Cache_End = Cache_Start + 2 ** State.Block_Size_Bits |
| 201 | is |
| 202 | begin |
| 203 | Cache_FSBlock (State, Phys, Level, Cache_Label (Phys), |
| 204 | False, Cache_Start, Cache_End, Success); |
| 205 | end Cache_FSBlock; |
| 206 | |
| 207 | procedure Reset_Cache_Logical (State : in out T) is |
| 208 | begin |
| 209 | for I in Block_Cache_Index loop |
| 210 | if State.Block_Cache_Logical (I) then |
| 211 | State.Block_Cache_Logical (I) := False; |
| 212 | State.Block_Cache_Label (I) := 0; |
| 213 | end if; |
| 214 | end loop; |
| 215 | end Reset_Cache_Logical; |
| 216 | |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 217 | procedure Ext2_Block_Map |
| 218 | (State : in out T; |
| 219 | Logical : in FSBlock_Logical; |
| 220 | Physical : out FSBlock_Offset; |
| 221 | Success : out Boolean) |
| 222 | is |
Nico Huber | 33f6d95 | 2023-12-13 23:16:42 +0100 | [diff] [blame] | 223 | Direct_Blocks : constant := 12; |
| 224 | type Direct_Blocks_Array is array (Natural range 0 .. Direct_Blocks - 1) of Unsigned_32; |
| 225 | type Inode_Blocks is record |
| 226 | Direct_Blocks : Direct_Blocks_Array; |
| 227 | Indirect_Block : Unsigned_32; |
| 228 | Double_Indirect : Unsigned_32; |
| 229 | Triple_Indirect : Unsigned_32; |
| 230 | end record |
| 231 | with Size => Inode_Extents'Length * 8; |
| 232 | |
| 233 | function I_Blocks is new Ada.Unchecked_Conversion (Inode_Extents, Inode_Blocks); |
Nico Huber | 7403a54 | 2023-12-15 23:13:47 +0100 | [diff] [blame] | 234 | function I_Blocks (State : T) return Inode_Blocks is (I_Blocks (State.Inode.Inline)); |
Nico Huber | 33f6d95 | 2023-12-13 23:16:42 +0100 | [diff] [blame] | 235 | |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 236 | Block_Size : constant Natural := 2 ** State.Block_Size_Bits; |
| 237 | Addr_Per_Block : constant FSBlock_Logical := FSBlock_Logical (Block_Size / 4); |
| 238 | Max_Addr_Per_Block : constant FSBlock_Logical := FSBlock_Logical (2 ** Log_Block_Size'Last / 4); |
| 239 | type Addr_In_Block_Range is range 0 .. Max_Addr_Per_Block - 1; |
| 240 | |
| 241 | procedure Indirect_Block_Lookup |
| 242 | (Indirect_Block_Phys : in FSBlock_Offset; |
| 243 | Addr_In_Block : in Addr_In_Block_Range; |
| 244 | Level : in Block_Cache_Index; |
| 245 | Logical_Off : in FSBlock_Logical; |
| 246 | Next_Physical : out FSBlock_Offset; |
| 247 | Success : out Boolean) |
| 248 | with |
| 249 | Pre => FSBlock_Logical (Addr_In_Block) < Addr_Per_Block |
| 250 | is |
Nico Huber | 68c8693 | 2023-12-13 11:03:11 +0100 | [diff] [blame] | 251 | Cache_Start, Cache_End : Max_Block_Index; |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 252 | begin |
Nico Huber | 68c8693 | 2023-12-13 11:03:11 +0100 | [diff] [blame] | 253 | Cache_FSBlock |
| 254 | (State => State, |
| 255 | Phys => Indirect_Block_Phys, |
| 256 | Level => Level, |
Nico Huber | 57dfbfb | 2023-12-13 23:24:16 +0100 | [diff] [blame] | 257 | Label => Cache_Label (Logical_Off), |
Nico Huber | 68c8693 | 2023-12-13 11:03:11 +0100 | [diff] [blame] | 258 | Cache_Start => Cache_Start, |
| 259 | Cache_End => Cache_End, |
| 260 | Success => Success); |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 261 | Next_Physical := FSBlock_Offset (Read_LE32 |
Nico Huber | fe89712 | 2023-12-12 21:33:36 +0100 | [diff] [blame] | 262 | (Buf => State.Block_Cache (Cache_Start .. Cache_End), |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 263 | Off => Natural (Addr_In_Block) * 4)); |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 264 | end Indirect_Block_Lookup; |
| 265 | |
| 266 | Logical_Rest : FSBlock_Logical := Logical; |
| 267 | begin |
| 268 | if Logical_Rest < Direct_Blocks then |
Nico Huber | 33f6d95 | 2023-12-13 23:16:42 +0100 | [diff] [blame] | 269 | Physical := FSBlock_Offset (I_Blocks (State).Direct_Blocks (Natural (Logical))); |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 270 | Success := True; |
| 271 | return; |
| 272 | end if; |
| 273 | |
| 274 | Logical_Rest := Logical_Rest - Direct_Blocks; |
| 275 | if Logical_Rest < Addr_Per_Block then |
| 276 | Indirect_Block_Lookup |
Nico Huber | 33f6d95 | 2023-12-13 23:16:42 +0100 | [diff] [blame] | 277 | (Indirect_Block_Phys => FSBlock_Offset (I_Blocks (State).Indirect_Block), |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 278 | Addr_In_Block => Addr_In_Block_Range (Logical_Rest), |
Nico Huber | fe89712 | 2023-12-12 21:33:36 +0100 | [diff] [blame] | 279 | Level => 0, |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 280 | Logical_Off => Logical - Logical_Rest, |
| 281 | Next_Physical => Physical, |
| 282 | Success => Success); |
| 283 | return; |
| 284 | end if; |
| 285 | |
| 286 | Logical_Rest := Logical_Rest - Addr_Per_Block; |
| 287 | if Logical_Rest < Addr_Per_Block ** 2 then |
| 288 | Indirect_Block_Lookup |
Nico Huber | 33f6d95 | 2023-12-13 23:16:42 +0100 | [diff] [blame] | 289 | (Indirect_Block_Phys => FSBlock_Offset (I_Blocks (State).Double_Indirect), |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 290 | Addr_In_Block => Addr_In_Block_Range (Logical_Rest / Addr_Per_Block), |
Nico Huber | fe89712 | 2023-12-12 21:33:36 +0100 | [diff] [blame] | 291 | Level => 1, |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 292 | Logical_Off => Logical - Logical_Rest, |
| 293 | Next_Physical => Physical, |
| 294 | Success => Success); |
| 295 | if not Success then |
| 296 | return; |
| 297 | end if; |
| 298 | |
| 299 | Indirect_Block_Lookup |
| 300 | (Indirect_Block_Phys => Physical, |
| 301 | Addr_In_Block => Addr_In_Block_Range (Logical_Rest mod Addr_Per_Block), |
Nico Huber | fe89712 | 2023-12-12 21:33:36 +0100 | [diff] [blame] | 302 | Level => 0, |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 303 | Logical_Off => Logical - (Logical_Rest mod Addr_Per_Block), |
| 304 | Next_Physical => Physical, |
| 305 | Success => Success); |
| 306 | return; |
| 307 | end if; |
| 308 | |
| 309 | Logical_Rest := Logical_Rest - Addr_Per_Block ** 2; |
| 310 | if Logical_Rest < Addr_Per_Block ** 3 then |
| 311 | Indirect_Block_Lookup |
Nico Huber | 33f6d95 | 2023-12-13 23:16:42 +0100 | [diff] [blame] | 312 | (Indirect_Block_Phys => FSBlock_Offset (I_Blocks (State).Triple_Indirect), |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 313 | Addr_In_Block => Addr_In_Block_Range (Logical_Rest / Addr_Per_Block ** 2), |
Nico Huber | fe89712 | 2023-12-12 21:33:36 +0100 | [diff] [blame] | 314 | Level => 2, |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 315 | Logical_Off => Logical - Logical_Rest, |
| 316 | Next_Physical => Physical, |
| 317 | Success => Success); |
| 318 | if not Success then |
| 319 | return; |
| 320 | end if; |
| 321 | |
| 322 | Indirect_Block_Lookup |
| 323 | (Indirect_Block_Phys => Physical, |
| 324 | Addr_In_Block => Addr_In_Block_Range (Logical_Rest / Addr_Per_Block mod Addr_Per_Block), |
Nico Huber | fe89712 | 2023-12-12 21:33:36 +0100 | [diff] [blame] | 325 | Level => 1, |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 326 | Logical_Off => Logical - (Logical_Rest mod Addr_Per_Block ** 2), |
| 327 | Next_Physical => Physical, |
| 328 | Success => Success); |
| 329 | if not Success then |
| 330 | return; |
| 331 | end if; |
| 332 | |
| 333 | Indirect_Block_Lookup |
| 334 | (Indirect_Block_Phys => Physical, |
| 335 | Addr_In_Block => Addr_In_Block_Range (Logical_Rest mod Addr_Per_Block), |
Nico Huber | fe89712 | 2023-12-12 21:33:36 +0100 | [diff] [blame] | 336 | Level => 0, |
Nico Huber | 6623c98 | 2023-12-12 16:35:46 +0100 | [diff] [blame] | 337 | Logical_Off => Logical - (Logical_Rest mod Addr_Per_Block), |
| 338 | Next_Physical => Physical, |
| 339 | Success => Success); |
| 340 | return; |
| 341 | end if; |
| 342 | |
| 343 | -- Logical address was just too high. |
| 344 | Success := False; |
| 345 | end Ext2_Block_Map; |
| 346 | |
Nico Huber | fffc8c1 | 2023-12-13 12:44:12 +0100 | [diff] [blame] | 347 | procedure Extent_Block_Map |
| 348 | (State : in out T; |
| 349 | Logical : in FSBlock_Logical; |
| 350 | Physical : out FSBlock_Offset; |
| 351 | Success : out Boolean) |
| 352 | is |
| 353 | -- Extent blocks always start with a 12B header and contain 12B entries. |
| 354 | -- Every entry starts with the number of the first logical block it |
| 355 | -- covers. Entries are sorted by this number. |
| 356 | -- Depth > 0 blocks have index entries, referencing further extent blocks. |
| 357 | -- Depth = 0 blocks have extent entries, referencing a contiguous range |
| 358 | -- of data blocks. |
| 359 | -- |
| 360 | -- +-----------------+ |
| 361 | -- .-> | Hdr depth=0 | |
| 362 | -- | +-----------------+ |
| 363 | -- | | Extent 0.. 12 | |
| 364 | -- +-------------+ | +-----------------+ |
| 365 | -- | Hdr depth=1 | | | Extent 13.. 13 | |
| 366 | -- +-------------+ | +-----------------+ |
| 367 | -- | Index 0 | --' | Extent 14..122 | |
| 368 | -- +-------------+ +-----------------+ |
| 369 | -- | Index 123 | --. |
| 370 | -- +-------------+ | +-----------------+ |
| 371 | -- `-> | Hdr depth=0 | |
| 372 | -- +-----------------+ |
| 373 | -- | Extent 123..125 | |
| 374 | -- +-----------------+ |
| 375 | -- | Extent 126..234 | |
| 376 | -- +-----------------+ |
| 377 | -- |
| 378 | |
| 379 | Extent_Header_Size : constant := 12; |
| 380 | Extent_Header_Magic : constant := 16#f03a#; |
| 381 | subtype Extent_Off is Natural range 0 .. Extent_Header_Size; |
| 382 | subtype Extent_Idx is Natural range 1 .. (Max_Block_Index'Last + 1) / Extent_Header_Size - 1; |
| 383 | |
| 384 | function Extent_Byte_Offset (Idx : Extent_Idx; Off : Extent_Off) return Natural |
| 385 | is |
| 386 | (Idx * Extent_Header_Size + Off); |
| 387 | |
| 388 | function Header_Magic (Buf : Buffer_Type) return Unsigned_16 |
| 389 | is |
| 390 | (Read_LE16 (Buf, 0)) |
| 391 | with |
| 392 | Pre => Buf'Length >= 2; |
| 393 | |
| 394 | function Header_Entries (Buf : Buffer_Type) return Natural |
| 395 | is |
| 396 | (Natural (Read_LE16 (Buf, 2))) |
| 397 | with |
| 398 | Pre => Buf'Length >= 4; |
| 399 | |
| 400 | function Header_Depth (Buf : Buffer_Type) return Natural |
| 401 | is |
| 402 | (Natural (Read_LE16 (Buf, 6))) |
| 403 | with |
| 404 | Pre => Buf'Length >= 8; |
| 405 | |
| 406 | function Index_Logical (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Logical |
| 407 | is |
| 408 | (FSBlock_Logical (Read_LE32 (Buf, Extent_Byte_Offset (Idx, 0)))) |
| 409 | with |
| 410 | Pre => Buf'Length >= Extent_Byte_Offset (Idx, 4); |
| 411 | |
| 412 | function Index_Physical (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Offset |
| 413 | is |
| 414 | (FSBlock_Offset |
| 415 | (Shift_Left (Unsigned_64 (Read_LE16 (Buf, Extent_Byte_Offset (Idx, 8))), 32) or |
| 416 | Unsigned_64 (Read_LE32 (Buf, Extent_Byte_Offset (Idx, 4))))) |
| 417 | with |
| 418 | Pre => Buf'Length >= Extent_Byte_Offset (Idx, 10); |
| 419 | |
| 420 | function Extent_Logical (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Logical |
| 421 | renames Index_Logical; |
| 422 | |
| 423 | function Extent_Length (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Logical |
| 424 | is |
| 425 | (FSBlock_Logical (Read_LE16 (Buf, Extent_Byte_Offset (Idx, 4)))) |
| 426 | with |
| 427 | Pre => Buf'Length >= Extent_Byte_Offset (Idx, 6); |
| 428 | |
| 429 | function Extent_Physical (Buf : Buffer_Type; Idx : Extent_Idx) return FSBlock_Offset |
| 430 | is |
| 431 | (FSBlock_Offset |
| 432 | (Shift_Left (Unsigned_64 (Read_LE16 (Buf, Extent_Byte_Offset (Idx, 6))), 32) or |
| 433 | Unsigned_64 (Read_LE32 (Buf, Extent_Byte_Offset (Idx, 8))))) |
| 434 | with |
| 435 | Pre => Buf'Length >= Extent_Byte_Offset (Idx, 12); |
| 436 | |
| 437 | function Bin_Search (Buf : Buffer_Type; Refs : Extent_Idx) return Extent_Idx |
| 438 | with |
| 439 | Pre => Refs in 1 .. Extent_Idx (Buf'Length / Extent_Header_Size - 1) and |
| 440 | Extent_Logical (Buf, 1) <= Logical, |
| 441 | Post => Bin_Search'Result in 1 .. Refs and |
| 442 | Extent_Logical (Buf, Bin_Search'Result) <= Logical |
| 443 | is |
| 444 | Left : Extent_Idx := 1; |
| 445 | Right : Extent_Idx := Refs; |
| 446 | begin |
| 447 | while Left <= Right loop |
| 448 | declare |
| 449 | Mid : constant Extent_Idx := (Left + Right) / 2; |
| 450 | Ext_Logical : constant FSBlock_Logical := Extent_Logical (Buf, Mid); |
| 451 | begin |
| 452 | if Logical < Ext_Logical then |
| 453 | Right := Mid - 1; |
| 454 | else |
| 455 | Left := Mid + 1; |
| 456 | end if; |
| 457 | end; |
| 458 | end loop; |
| 459 | return Left - 1; |
| 460 | end Bin_Search; |
| 461 | |
| 462 | procedure Next_Ref |
| 463 | (Current : in FSBlock_Offset; |
| 464 | Logical_Off : in FSBlock_Logical; |
| 465 | Depth : in Natural; |
| 466 | Next : out Extent_Idx; |
| 467 | Cache_Start : out Max_Block_Index; |
| 468 | Cache_End : out Max_Block_Index; |
| 469 | Success : out Boolean) |
| 470 | with |
| 471 | Pre => Logical_Off <= Logical, |
| 472 | Post => (if Success then |
| 473 | Extent_Logical (State.Block_Cache (Cache_Start .. Cache_End), Next) <= Logical) |
| 474 | is |
| 475 | Block_Size : constant Natural := 2 ** State.Block_Size_Bits; |
| 476 | Dynamic_Max_Index : constant Natural := Block_Size / Extent_Header_Size - 1; |
| 477 | begin |
| 478 | Cache_FSBlock |
| 479 | (State => State, |
| 480 | Phys => Current, |
| 481 | Level => Depth, |
Nico Huber | 57dfbfb | 2023-12-13 23:24:16 +0100 | [diff] [blame] | 482 | Label => Cache_Label (Logical_Off), |
Nico Huber | fffc8c1 | 2023-12-13 12:44:12 +0100 | [diff] [blame] | 483 | Cache_Start => Cache_Start, |
| 484 | Cache_End => Cache_End, |
| 485 | Success => Success); |
| 486 | if not Success then |
| 487 | Next := 1; |
| 488 | return; |
| 489 | end if; |
| 490 | |
| 491 | declare |
| 492 | Hdr_Magic : constant Unsigned_16 := |
| 493 | Header_Magic (State.Block_Cache (Cache_Start .. Cache_End)); |
| 494 | Hdr_Entries : constant Natural := |
| 495 | Header_Entries (State.Block_Cache (Cache_Start .. Cache_End)); |
| 496 | Hdr_Depth : constant Natural := |
| 497 | Header_Depth (State.Block_Cache (Cache_Start .. Cache_End)); |
| 498 | First_Logical : constant FSBlock_Logical := |
| 499 | Extent_Logical (State.Block_Cache (Cache_Start .. Cache_End), 1); |
| 500 | begin |
| 501 | Success := Success and then |
| 502 | Hdr_Magic = Extent_Header_Magic and then |
| 503 | Hdr_Depth = Depth and then |
| 504 | Hdr_Entries <= Dynamic_Max_Index and then |
| 505 | First_Logical = Logical_Off; |
| 506 | if not Success then |
| 507 | Next := 1; |
| 508 | else |
| 509 | Next := Bin_Search (State.Block_Cache (Cache_Start .. Cache_End), Hdr_Entries); |
| 510 | end if; |
| 511 | end; |
| 512 | end Next_Ref; |
| 513 | |
Nico Huber | 7403a54 | 2023-12-15 23:13:47 +0100 | [diff] [blame] | 514 | Inline_Extents : Ext2.Inode_Extents renames State.Inode.Inline; |
| 515 | Inode_Magic : constant Unsigned_16 := Header_Magic (Inline_Extents); |
| 516 | Inode_Entries : constant Natural := Header_Entries (Inline_Extents); |
| 517 | First_Logical : constant FSBlock_Logical := Extent_Logical (Inline_Extents, 1); |
| 518 | Depth : Natural := Header_Depth (Inline_Extents); |
Nico Huber | fffc8c1 | 2023-12-13 12:44:12 +0100 | [diff] [blame] | 519 | |
| 520 | Cache_Start, Cache_End : Max_Block_Index; |
| 521 | Logical_Off, Length : FSBlock_Logical; |
| 522 | Idx : Extent_Idx; |
| 523 | begin |
| 524 | Success := |
| 525 | Inode_Magic = Extent_Header_Magic and then |
| 526 | Inode_Entries > 0 and then |
Nico Huber | 7403a54 | 2023-12-15 23:13:47 +0100 | [diff] [blame] | 527 | Inode_Entries < Inline_Extents'Length / Extent_Header_Size and then |
Nico Huber | fffc8c1 | 2023-12-13 12:44:12 +0100 | [diff] [blame] | 528 | First_Logical <= Logical; |
| 529 | if not Success then |
| 530 | Physical := 0; |
| 531 | return; |
| 532 | end if; |
| 533 | |
Nico Huber | 7403a54 | 2023-12-15 23:13:47 +0100 | [diff] [blame] | 534 | Idx := Bin_Search (Inline_Extents, Inode_Entries); |
Nico Huber | fffc8c1 | 2023-12-13 12:44:12 +0100 | [diff] [blame] | 535 | if Depth = 0 then |
Nico Huber | 7403a54 | 2023-12-15 23:13:47 +0100 | [diff] [blame] | 536 | Physical := Extent_Physical (Inline_Extents, Idx); |
| 537 | Logical_Off := Extent_Logical (Inline_Extents, Idx); |
| 538 | Length := Extent_Length (Inline_Extents, Idx); |
Nico Huber | fffc8c1 | 2023-12-13 12:44:12 +0100 | [diff] [blame] | 539 | else |
Nico Huber | 7403a54 | 2023-12-15 23:13:47 +0100 | [diff] [blame] | 540 | Physical := Index_Physical (Inline_Extents, Idx); |
| 541 | Logical_Off := Index_Logical (Inline_Extents, Idx); |
Nico Huber | fffc8c1 | 2023-12-13 12:44:12 +0100 | [diff] [blame] | 542 | loop |
| 543 | Depth := Depth - 1; |
| 544 | Next_Ref |
| 545 | (Current => Physical, |
| 546 | Logical_Off => Logical_Off, |
| 547 | Depth => Depth, |
| 548 | Next => Idx, |
| 549 | Cache_Start => Cache_Start, |
| 550 | Cache_End => Cache_End, |
| 551 | Success => Success); |
| 552 | if not Success then |
| 553 | return; |
| 554 | end if; |
| 555 | |
| 556 | exit when Depth = 0; |
| 557 | Physical := Index_Physical (State.Block_Cache (Cache_Start .. Cache_End), Idx); |
| 558 | Logical_Off := Index_Logical (State.Block_Cache (Cache_Start .. Cache_End), Idx); |
| 559 | end loop; |
| 560 | |
| 561 | Physical := Extent_Physical (State.Block_Cache (Cache_Start .. Cache_End), Idx); |
| 562 | Logical_Off := Extent_Logical (State.Block_Cache (Cache_Start .. Cache_End), Idx); |
| 563 | Length := Extent_Length (State.Block_Cache (Cache_Start .. Cache_End), Idx); |
| 564 | end if; |
| 565 | |
| 566 | Success := |
| 567 | Length > 0 and then |
Nico Huber | c4c7a5e | 2023-12-14 00:08:56 +0100 | [diff] [blame] | 568 | Logical_Off <= FSBlock_Logical'Last - Length and then |
Nico Huber | fffc8c1 | 2023-12-13 12:44:12 +0100 | [diff] [blame] | 569 | Logical < Logical_Off + Length; |
| 570 | if Success then |
| 571 | Physical := Physical + FSBlock_Offset (Logical - Logical_Off); |
| 572 | end if; |
| 573 | end Extent_Block_Map; |
| 574 | |
Nico Huber | 57d3a85 | 2023-12-04 15:42:40 +0100 | [diff] [blame] | 575 | procedure Open |
Nico Huber | cdc0351 | 2023-12-13 23:32:54 +0100 | [diff] [blame] | 576 | (State : in out T; |
| 577 | Inode : in Inode_Index; |
| 578 | Success : out Boolean) |
| 579 | with |
| 580 | Pre => Is_Mounted (State) and not Is_Open (State), |
| 581 | Post => Success = Is_Open (State) |
| 582 | is |
| 583 | type Group_Index is new Natural; |
| 584 | subtype Desc_In_Block_Index is Group_Index |
| 585 | range 0 .. Group_Index (2 ** Log_Block_Size'Last / Desc_Size'First - 1); |
| 586 | |
| 587 | Block_Size : constant Natural := 2 ** State.Block_Size_Bits; |
| 588 | |
| 589 | Inodes_Per_Block : constant Inode_Index := Inode_Index (Block_Size / State.Inode_Size); |
| 590 | Desc_Per_Block : constant Group_Index := Group_Index (Block_Size / State.Desc_Size); |
| 591 | |
Nico Huber | 022e226 | 2023-12-15 23:15:17 +0100 | [diff] [blame] | 592 | ------------------------ |
| 593 | -- Group deserialization |
| 594 | |
Nico Huber | cdc0351 | 2023-12-13 23:32:54 +0100 | [diff] [blame] | 595 | subtype Group_Off is Natural range 0 .. Desc_Size'Last; |
| 596 | function Group_Byte_Offset (Idx : Group_Index; Off : Group_Off) return Natural |
| 597 | is |
| 598 | (Natural (Idx) * State.Desc_Size + Off); |
| 599 | |
| 600 | function Group_Inode_Table (Buf : Buffer_Type; Idx : Group_Index) return FSBlock_Offset |
| 601 | is |
| 602 | (FSBlock_Offset ( |
| 603 | (if State.Feature_64Bit |
| 604 | then Shift_Left (Unsigned_64 (Read_LE32 (Buf, Group_Byte_Offset (Idx, 40))), 32) |
| 605 | else 0) |
| 606 | or |
| 607 | Unsigned_64 (Read_LE32 (Buf, Group_Byte_Offset (Idx, 8))))) |
| 608 | with |
| 609 | Pre => Buf'Length >= Group_Byte_Offset (Idx, 44); |
| 610 | |
Nico Huber | 022e226 | 2023-12-15 23:15:17 +0100 | [diff] [blame] | 611 | ------------------------ |
| 612 | -- Inode deserialization |
| 613 | |
Nico Huber | cdc0351 | 2023-12-13 23:32:54 +0100 | [diff] [blame] | 614 | subtype Inode_Off is Natural range 0 .. Inode_Size'Last; |
| 615 | function Inode_Byte_Offset (Idx : Inode_Index; Off : Inode_Off) return Natural |
| 616 | is |
| 617 | (Natural (Idx) * State.Inode_Size + Off); |
| 618 | |
Nico Huber | 022e226 | 2023-12-15 23:15:17 +0100 | [diff] [blame] | 619 | function Inode_Mode (Buf : Buffer_Type; Idx : Inode_Index) return Unsigned_16 |
| 620 | is |
| 621 | (Read_LE16 (Buf, Inode_Byte_Offset (Idx, 0))) |
| 622 | with |
| 623 | Pre => Buf'Length >= Inode_Byte_Offset (Idx, 2); |
| 624 | |
| 625 | function Inode_Size (Buf : Buffer_Type; Idx : Inode_Index; Mode : Inode_Type) return Unsigned_64 |
| 626 | is |
| 627 | ((if Mode = Regular |
| 628 | then Shift_Left (Unsigned_64 (Read_LE32 (Buf, Inode_Byte_Offset (Idx, 108))), 32) |
| 629 | else 0) or |
| 630 | Unsigned_64 (Read_LE32 (Buf, Inode_Byte_Offset (Idx, 4)))) |
| 631 | with |
| 632 | Pre => Buf'Length >= Inode_Byte_Offset (Idx, 112); |
| 633 | |
| 634 | function Inode_Blocks (Buf : Buffer_Type; Idx : Inode_Index) return Unsigned_32 |
| 635 | is |
| 636 | (Read_LE32 (Buf, Inode_Byte_Offset (Idx, 28))) |
| 637 | with |
| 638 | Pre => Buf'Length >= Inode_Byte_Offset (Idx, 32); |
| 639 | |
Nico Huber | cdc0351 | 2023-12-13 23:32:54 +0100 | [diff] [blame] | 640 | function Inode_Flags (Buf : Buffer_Type; Idx : Inode_Index) return Unsigned_32 |
| 641 | is |
| 642 | (Read_LE32 (Buf, Inode_Byte_Offset (Idx, 32))) |
| 643 | with |
| 644 | Pre => Buf'Length >= Inode_Byte_Offset (Idx, 36); |
| 645 | |
Nico Huber | 022e226 | 2023-12-15 23:15:17 +0100 | [diff] [blame] | 646 | function Inode_File_ACL (Buf : Buffer_Type; Idx : Inode_Index) return Unsigned_32 |
| 647 | is |
| 648 | (Read_LE32 (Buf, Inode_Byte_Offset (Idx, 104))) |
| 649 | with |
| 650 | Pre => Buf'Length >= Inode_Byte_Offset (Idx, 108); |
| 651 | |
Nico Huber | cdc0351 | 2023-12-13 23:32:54 +0100 | [diff] [blame] | 652 | Group : constant Group_Index := Group_Index ((Inode - 1) / State.Inodes_Per_Group); |
| 653 | Desc_Block : constant FSBlock_Offset := |
| 654 | 1 + State.First_Data_Block + FSBlock_Offset (Group / Desc_Per_Block); |
| 655 | Cache_Start, Cache_End : Max_Block_Index; |
| 656 | begin |
| 657 | Cache_FSBlock |
| 658 | (State => State, |
| 659 | Phys => Desc_Block, |
| 660 | Level => Natural'Min (Natural (Group / Desc_Per_Block), Block_Cache_Index'Last), |
| 661 | Cache_Start => Cache_Start, |
| 662 | Cache_End => Cache_End, |
| 663 | Success => Success); |
| 664 | if not Success then |
| 665 | return; |
| 666 | end if; |
| 667 | |
| 668 | declare |
| 669 | Desc : constant Desc_In_Block_Index := Group mod Desc_Per_Block; |
| 670 | Inode_In_Group : constant Inode_Index := (Inode - 1) mod State.Inodes_Per_Group; |
| 671 | Inode_Block : constant FSBlock_Offset := |
| 672 | Group_Inode_Table (State.Block_Cache (Cache_Start .. Cache_End), Group) + |
| 673 | FSBlock_Offset (Inode_In_Group / Inodes_Per_Block); |
| 674 | begin |
| 675 | Cache_FSBlock |
| 676 | (State => State, |
| 677 | Phys => Inode_Block, |
| 678 | Level => Block_Cache_Index'Last, |
| 679 | Cache_Start => Cache_Start, |
| 680 | Cache_End => Cache_End, |
| 681 | Success => Success); |
| 682 | if not Success then |
| 683 | return; |
| 684 | end if; |
| 685 | |
| 686 | declare |
Nico Huber | 022e226 | 2023-12-15 23:15:17 +0100 | [diff] [blame] | 687 | S_IFMT : constant := 8#170000#; |
| 688 | S_IFDIR : constant := 8#040000#; |
| 689 | S_IFREG : constant := 8#100000#; |
| 690 | S_IFLNK : constant := 8#120000#; |
| 691 | |
Nico Huber | cdc0351 | 2023-12-13 23:32:54 +0100 | [diff] [blame] | 692 | Inode_In_Block : constant Inode_Index := Inode_In_Group mod Inodes_Per_Block; |
Nico Huber | 022e226 | 2023-12-15 23:15:17 +0100 | [diff] [blame] | 693 | I_Mode : constant Unsigned_16 := |
| 694 | Inode_Mode (State.Block_Cache (Cache_Start .. Cache_End), Inode_In_Block); |
Nico Huber | cdc0351 | 2023-12-13 23:32:54 +0100 | [diff] [blame] | 695 | I_Flags : constant Unsigned_32 := |
| 696 | Inode_Flags (State.Block_Cache (Cache_Start .. Cache_End), Inode_In_Block); |
| 697 | begin |
Nico Huber | 022e226 | 2023-12-15 23:15:17 +0100 | [diff] [blame] | 698 | case I_Mode and S_IFMT is |
| 699 | when S_IFDIR => State.Inode.Mode := Dir; |
| 700 | when S_IFREG => State.Inode.Mode := Regular; |
| 701 | when S_IFLNK => State.Inode.Mode := Link; |
| 702 | when others => Success := False; return; |
| 703 | end case; |
| 704 | if State.Inode.Mode = Link then |
| 705 | declare |
| 706 | I_File_ACL : constant Unsigned_32 := Inode_File_ACL ( |
| 707 | State.Block_Cache (Cache_Start .. Cache_End), Inode_In_Block); |
| 708 | I_Blocks : constant Unsigned_32 := Inode_Blocks ( |
| 709 | State.Block_Cache (Cache_Start .. Cache_End), Inode_In_Block); |
| 710 | begin |
| 711 | if (I_File_ACL = 0 and I_Blocks = 0) or |
| 712 | (I_File_ACL /= 0 and I_Blocks = 2 ** (State.Block_Size_Bits - 9)) |
| 713 | then |
| 714 | State.Inode.Mode := Fast_Link; |
| 715 | end if; |
| 716 | end; |
| 717 | end if; |
| 718 | declare |
| 719 | I_Size : constant Unsigned_64 := Inode_Size ( |
| 720 | State.Block_Cache (Cache_Start .. Cache_End), Inode_In_Block, State.Inode.Mode); |
| 721 | begin |
| 722 | if I_Size <= Unsigned_64 (Inode_Length'Last) then |
| 723 | State.Inode.Size := Inode_Length (I_Size); |
| 724 | else |
| 725 | Success := False; |
| 726 | end if; |
| 727 | end; |
Nico Huber | cdc0351 | 2023-12-13 23:32:54 +0100 | [diff] [blame] | 728 | State.Inode.Use_Extents := State.Feature_Extents and (I_Flags and EXT4_EXTENTS_FL) /= 0; |
Nico Huber | 7403a54 | 2023-12-15 23:13:47 +0100 | [diff] [blame] | 729 | State.Inode.Inline := State.Block_Cache (Cache_Start + 40 .. Cache_Start + 100 - 1); |
Nico Huber | cdc0351 | 2023-12-13 23:32:54 +0100 | [diff] [blame] | 730 | Reset_Cache_Logical (State); |
| 731 | State.S := File_Opened; |
| 732 | end; |
| 733 | end; |
| 734 | end Open; |
| 735 | |
| 736 | procedure Open |
Nico Huber | 57d3a85 | 2023-12-04 15:42:40 +0100 | [diff] [blame] | 737 | (State : in out T; |
| 738 | File_Len : out File_Length; |
| 739 | File_Path : in String; |
| 740 | Success : out Boolean) |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 741 | is |
| 742 | begin |
Nico Huber | 57d3a85 | 2023-12-04 15:42:40 +0100 | [diff] [blame] | 743 | File_Len := 0; |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 744 | Success := False; |
| 745 | end Open; |
| 746 | |
Nico Huber | 57d3a85 | 2023-12-04 15:42:40 +0100 | [diff] [blame] | 747 | procedure Close (State : in out T) is |
| 748 | begin |
| 749 | State.S := Mounted; |
| 750 | end Close; |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 751 | |
Nico Huber | 57d3a85 | 2023-12-04 15:42:40 +0100 | [diff] [blame] | 752 | procedure Read |
| 753 | (State : in out T; |
Nico Huber | 57d3a85 | 2023-12-04 15:42:40 +0100 | [diff] [blame] | 754 | File_Pos : in out File_Offset; |
| 755 | Buf : out Buffer_Type; |
| 756 | Len : out Natural) |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 757 | is |
Nico Huber | d3644be | 2023-12-16 01:43:00 +0100 | [diff] [blame] | 758 | Pos : Natural; |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 759 | begin |
Nico Huber | d3644be | 2023-12-16 01:43:00 +0100 | [diff] [blame] | 760 | if State.Inode.Mode = Fast_Link then |
Nico Huber | 549a1b8 | 2023-12-17 01:51:59 +0100 | [diff] [blame^] | 761 | if State.Inode.Size > Inode_Length (State.Inode.Inline'Length) or |
| 762 | Inode_Length (File_Pos) >= State.Inode.Size then |
Nico Huber | d3644be | 2023-12-16 01:43:00 +0100 | [diff] [blame] | 763 | Len := 0; |
| 764 | else |
Nico Huber | 549a1b8 | 2023-12-17 01:51:59 +0100 | [diff] [blame^] | 765 | Len := Natural'Min (Buf'Length, Natural (State.Inode.Size) - Natural (File_Pos)); |
Nico Huber | d3644be | 2023-12-16 01:43:00 +0100 | [diff] [blame] | 766 | end if; |
| 767 | Buf (Buf'First .. Buf'First + Len - 1) := |
| 768 | State.Inode.Inline (Natural (File_Pos) .. Natural (File_Pos) + Len - 1); |
| 769 | Buf (Buf'First + Len .. Buf'Last) := (others => 16#00#); |
| 770 | File_Pos := File_Pos + File_Length (Len); |
| 771 | return; |
| 772 | end if; |
| 773 | |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 774 | Len := 0; |
Nico Huber | d3644be | 2023-12-16 01:43:00 +0100 | [diff] [blame] | 775 | Pos := Buf'First; |
| 776 | while Pos <= Buf'Last and Inode_Length (File_Pos) < State.Inode.Size loop |
| 777 | declare |
| 778 | Block_Size : constant File_Length := 2 ** State.Block_Size_Bits; |
| 779 | In_Block : constant Max_Block_Index := Natural (File_Pos mod Block_Size); |
| 780 | Logical : constant FSBlock_Logical := FSBlock_Logical (File_Pos / Block_Size); |
| 781 | In_Block_Space : constant Natural := Natural (Block_Size) - In_Block; |
Nico Huber | 549a1b8 | 2023-12-17 01:51:59 +0100 | [diff] [blame^] | 782 | In_File_Space : constant Inode_Length := State.Inode.Size - Inode_Length (File_Pos); |
Nico Huber | d3644be | 2023-12-16 01:43:00 +0100 | [diff] [blame] | 783 | In_Buf_Space : constant Natural := Buf'Last - Pos + 1; |
| 784 | Len_Here : Natural; |
| 785 | begin |
| 786 | Len_Here := In_Block_Space; |
Nico Huber | 549a1b8 | 2023-12-17 01:51:59 +0100 | [diff] [blame^] | 787 | if In_File_Space < Inode_Length (Len_Here) then |
| 788 | Len_Here := Natural (In_File_Space); |
Nico Huber | d3644be | 2023-12-16 01:43:00 +0100 | [diff] [blame] | 789 | end if; |
| 790 | if In_Buf_Space < Len_Here then |
| 791 | Len_Here := In_Buf_Space; |
| 792 | end if; |
| 793 | |
| 794 | declare |
| 795 | Last : constant Index_Type := Pos + Len_Here - 1; |
| 796 | Cache_Start, Cache_End : Max_Block_Index; |
| 797 | Physical : FSBlock_Offset; |
| 798 | Success : Boolean; |
| 799 | begin |
| 800 | if State.Inode.Use_Extents then |
| 801 | Extent_Block_Map (State, Logical, Physical, Success); |
| 802 | else |
| 803 | Ext2_Block_Map (State, Logical, Physical, Success); |
| 804 | end if; |
| 805 | if Success then |
| 806 | Cache_FSBlock |
| 807 | (State => State, |
| 808 | Phys => Physical, |
| 809 | Level => Block_Cache_Index'Last, |
| 810 | Cache_Start => Cache_Start, |
| 811 | Cache_End => Cache_End, |
| 812 | Success => Success); |
| 813 | end if; |
| 814 | exit when not Success; |
| 815 | |
| 816 | Buf (Pos .. Last) := State.Block_Cache ( |
| 817 | Cache_Start + In_Block .. Cache_Start + In_Block + Len_Here - 1); |
| 818 | File_Pos := File_Pos + File_Length (Len_Here); |
| 819 | Pos := Pos + Len_Here; |
| 820 | Len := Len + Len_Here; |
| 821 | end; |
| 822 | end; |
| 823 | end loop; |
| 824 | Buf (Pos .. Buf'Last) := (others => 16#00#); |
Nico Huber | 1d7727f | 2023-11-30 15:58:46 +0100 | [diff] [blame] | 825 | end Read; |
| 826 | |
Nico Huber | 26f7183 | 2023-12-05 16:26:56 +0100 | [diff] [blame] | 827 | -------------------------------------------------------------------------- |
| 828 | |
| 829 | package C is new VFS (T => T, Initial => (S => Unmounted, others => <>)); |
Nico Huber | 8ec45a1 | 2023-12-04 17:11:08 +0100 | [diff] [blame] | 830 | |
| 831 | function C_Mount return int |
| 832 | with |
| 833 | Export, |
| 834 | Convention => C, |
| 835 | External_Name => "ext2fs_mount"; |
| 836 | function C_Mount return int |
| 837 | with |
| 838 | SPARK_Mode => Off |
| 839 | is |
| 840 | begin |
| 841 | return C.C_Mount; |
| 842 | end C_Mount; |
| 843 | |
| 844 | function C_Open (File_Path : Strings.chars_ptr) return int |
| 845 | with |
| 846 | Export, |
| 847 | Convention => C, |
| 848 | External_Name => "ext2fs_dir"; |
| 849 | function C_Open (File_Path : Strings.chars_ptr) return int |
| 850 | with |
| 851 | SPARK_Mode => Off |
| 852 | is |
| 853 | begin |
| 854 | return C.C_Open (File_Path); |
| 855 | end C_Open; |
| 856 | |
| 857 | function C_Read (Buf : System.Address; Len : int) return int |
| 858 | with |
| 859 | Export, |
| 860 | Convention => C, |
| 861 | External_Name => "ext2fs_read"; |
| 862 | function C_Read (Buf : System.Address; Len : int) return int |
| 863 | with |
| 864 | SPARK_Mode => Off |
| 865 | is |
| 866 | begin |
| 867 | return C.C_Read (Buf, Len); |
| 868 | end C_Read; |
| 869 | |
Thomas Heijligen | 5c43abc | 2023-12-11 15:24:36 +0000 | [diff] [blame] | 870 | end FILO.FS.Ext2; |