blob: ac78bc1acc8732e3fe1e712d7af10807a10bcda5 [file] [log] [blame]
Thomas Heijligen5c43abc2023-12-11 15:24:36 +00001package FILO.FS.Ext2 is
Nico Huber1d7727f2023-11-30 15:58:46 +01002
Nico Huber57d3a852023-12-04 15:42:40 +01003 type T is private;
Nico Huber1d7727f2023-11-30 15:58:46 +01004
Nico Huber57d3a852023-12-04 15:42:40 +01005 function Is_Mounted (State : T) return Boolean;
6 function Is_Open (State : T) return Boolean
Nico Huber1d7727f2023-11-30 15:58:46 +01007 with
Nico Huber57d3a852023-12-04 15:42:40 +01008 Post => (if Is_Open'Result then Is_Mounted (State));
Nico Huber1d7727f2023-11-30 15:58:46 +01009
Nico Huber57d3a852023-12-04 15:42:40 +010010 procedure Mount
11 (State : in out T;
12 Part_Len : in Partition_Length;
13 Success : out Boolean)
Nico Huber1d7727f2023-11-30 15:58:46 +010014 with
Nico Huber57d3a852023-12-04 15:42:40 +010015 Pre => not Is_Mounted (State),
16 Post => Success = Is_Mounted (State);
Nico Huber1d7727f2023-11-30 15:58:46 +010017
Nico Huber57d3a852023-12-04 15:42:40 +010018 procedure Open
19 (State : in out T;
20 File_Len : out File_Length;
21 File_Path : in String;
22 Success : out Boolean)
Nico Huber1d7727f2023-11-30 15:58:46 +010023 with
Nico Huber57d3a852023-12-04 15:42:40 +010024 Pre => Is_Mounted (State) and not Is_Open (State),
25 Post => Success = Is_Open (State);
26
27 procedure Close (State : in out T)
28 with
29 Pre => Is_Open (State),
30 Post => Is_Mounted (State);
31
32 procedure Read
33 (State : in out T;
34 File_Len : in File_Length;
35 File_Pos : in out File_Offset;
36 Buf : out Buffer_Type;
37 Len : out Natural)
38 with
39 Pre => Is_Open (State),
40 Post => Is_Open (State);
41
42private
43 type State is (Unmounted, Mounted, File_Opened);
44
Nico Huber26f71832023-12-05 16:26:56 +010045 -- maximum block size is 64KiB (2^16):
46 subtype Log_Block_Size is Positive range 10 .. 16;
Nico Huber6623c982023-12-12 16:35:46 +010047 subtype Max_Block_Index is Index_Type range 0 .. 2 ** Log_Block_Size'Last - 1;
48
49 -- Minimum ext2 block size is 1KiB (two 512B blocks)
50 type FSBlock_Offset is new Block_Offset range 0 .. Block_Offset'Last / 2;
51 type FSBlock_Logical is new Block_Offset range 0 .. Block_Offset'Last / 2;
52
Nico Huberfe897122023-12-12 21:33:36 +010053 -- We use a 64KiB cache which fits at least one ext2 block. If a lower
54 -- block size is encountered (likely), we partition the cache into up
55 -- to 64 1KiB blocks.
56 -- Cache entries can be used for blocks that map logical block offets
57 -- to physical ones. Then we note the first logical block offset mapped
Nico Huber57dfbfb2023-12-13 23:24:16 +010058 -- by the cached block. Otherwise, we use their physical offset.
59 type Cache_Label is new Unsigned_64;
Nico Huberfe897122023-12-12 21:33:36 +010060 subtype Block_Cache_Index is Natural range 0 .. 63;
Nico Huber57dfbfb2023-12-13 23:24:16 +010061 type Cache_Label_Logical is array (Block_Cache_Index) of Boolean;
62 type Cache_Label_Array is array (Block_Cache_Index) of Cache_Label;
Nico Huber6623c982023-12-12 16:35:46 +010063
Nico Huberfffc8c12023-12-13 12:44:12 +010064 -- Same as the 12 direct + 3 indirect blocks times 4B:
65 subtype Inode_Extents_Index is Natural range 0 .. 59;
Nico Huber33f6d952023-12-13 23:16:42 +010066 subtype Inode_Extents is Buffer_Type (Inode_Extents_Index);
Nico Huberfffc8c12023-12-13 12:44:12 +010067
Nico Hubercdc03512023-12-13 23:32:54 +010068 type Inode_Index is new Unsigned_32 range 1 .. Unsigned_32'Last;
Nico Huber26f71832023-12-05 16:26:56 +010069 subtype Inode_Size is Positive range 128 .. Positive (Unsigned_16'Last);
Nico Hubercd1d5f72023-12-13 16:01:43 +010070 subtype Desc_Size is Positive range 32 .. 2 ** 15; -- power-of-2 that fits in 16 bits
Nico Huber26f71832023-12-05 16:26:56 +010071
Nico Huber022e2262023-12-15 23:15:17 +010072 type Inode_Type is (Dir, Regular, Link, Fast_Link);
73 type Inode_Length is range 0 .. 2 ** 46;
74
Nico Huber33f6d952023-12-13 23:16:42 +010075 type Inode_Info is record
Nico Huber022e2262023-12-15 23:15:17 +010076 Mode : Inode_Type := Inode_Type'First;
77 Size : Inode_Length := 0;
Nico Hubercdc03512023-12-13 23:32:54 +010078 Use_Extents : Boolean := False;
Nico Huber7403a542023-12-15 23:13:47 +010079 Inline : Buffer_Type (Inode_Extents_Index) := (others => 16#00#);
Nico Huber33f6d952023-12-13 23:16:42 +010080 end record;
81
Nico Huber57d3a852023-12-04 15:42:40 +010082 type T is record
83 S : State;
Nico Huber57dfbfb2023-12-13 23:24:16 +010084 Part_Len : Partition_Length := 0;
85 First_Data_Block : FSBlock_Offset := 0;
86 Block_Size_Bits : Log_Block_Size := 10;
Nico Hubercdc03512023-12-13 23:32:54 +010087 Inodes_Per_Group : Inode_Index := 1;
Nico Huber57dfbfb2023-12-13 23:24:16 +010088 Inode_Size : Ext2.Inode_Size := Ext2.Inode_Size'First;
89 Desc_Size : Ext2.Desc_Size := Ext2.Desc_Size'First;
90 Feature_Extents : Boolean := False;
91 Feature_64Bit : Boolean := False;
92 Inode : Inode_Info := (others => <>);
93 Block_Cache_Logical : Cache_Label_Logical := (others => False);
94 Block_Cache_Label : Cache_Label_Array := (others => 0);
95 Block_Cache : Buffer_Type (Max_Block_Index) := (others => 16#00#);
Nico Huber57d3a852023-12-04 15:42:40 +010096 end record;
Nico Huber1d7727f2023-11-30 15:58:46 +010097
Thomas Heijligen5c43abc2023-12-11 15:24:36 +000098end FILO.FS.Ext2;