1 (* 'df' command for virtual domains.
3 (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 Support for Master Boot Record partition scheme.
32 let sector_size64 = 512L
34 (* Maximum number of extended partitions possible. *)
35 let max_extended_partitions = 100
37 (* Device representing a single partition. It just acts as an offset
38 * into the underlying device.
41 * (1) 'start'/'size' are measured in sectors.
42 * (2) 'partno' is the partition number, starting at 1
43 * (cf. /dev/hda1 is the first partition).
44 * (3) 'dev' is the underlying block device.
45 * (4) natural blocksize to use is sector size.
47 class partition_device partno start size dev =
48 let devname = dev#name in
49 let name = sprintf "%s%d" devname partno in
50 let start = start *^ sector_size64 in
51 let size = size *^ sector_size64 in
53 inherit offset_device name start size sector_size dev
57 {{:http://en.wikipedia.org/wiki/Master_boot_record}master boot record}
58 (if it is one) and read the partitions.
60 @raise Not_found if it is not an MBR.
63 (* Read the first sector. *)
65 try dev#read_bitstring 0L sector_size
66 with exn -> raise Not_found in
68 (* Does this match a likely-looking MBR? *)
70 | { _ : 3568 : bitstring; (* padding to byte offset 446 *)
71 part0 : 128 : bitstring; (* partitions *)
72 part1 : 128 : bitstring;
73 part2 : 128 : bitstring;
74 part3 : 128 : bitstring;
75 0x55 : 8; 0xAA : 8 } -> (* MBR signature *)
77 (* Parse the partition table entries. *)
79 List.mapi (parse_mbr_entry dev) [part0;part1;part2;part3] in
82 (* Read extended partition data. *)
83 let extendeds = List.map (
85 | { part_type = 0x05 } as part ->
86 probe_extended_partition
87 max_extended_partitions fd part part.part_lba_start
90 let extendeds = List.concat extendeds in
93 { parts_plugin_id = plugin_id; parts = primaries }
96 raise Not_found (* not an MBR *)
98 (* Parse a single partition table entry. See the table here:
99 * http://en.wikipedia.org/wiki/Master_boot_record
101 and parse_mbr_entry dev i bits =
103 | { 0l : 32; 0l : 32; 0l : 32; 0l : 32 } ->
104 { part_status = NullEntry; part_type = 0;
105 part_dev = null_device; part_content = `Unknown }
107 | { ((0|0x80) as bootable) : 8; first_chs : 24;
108 part_type : 8; last_chs : 24;
109 first_lba : 32 : unsigned, littleendian;
110 part_size : 32 : unsigned, littleendian } ->
111 let bootable = if bootable = 0 then Nonbootable else Bootable in
112 make_mbr_entry bootable dev (i+1) part_type first_lba part_size
115 { part_status = Malformed; part_type = 0;
116 part_dev = null_device; part_content = `Unknown }
118 and make_mbr_entry part_status dev partno part_type first_lba part_size =
119 let first_lba = uint64_of_int32 first_lba in
120 let part_size = uint64_of_int32 part_size in
122 eprintf "make_mbr_entry: first_lba = %Lx part_size = %Lx\n%!"
124 { part_status = part_status;
125 part_type = part_type;
126 part_dev = new partition_device partno first_lba part_size dev;
127 part_content = `Unknown }
130 This code worked previously, but now needs some love ...
133 (* Probe an extended partition. *)
134 and probe_extended_partition max fd epart sect =
136 (* Offset of the first EBR. *)
137 let ebr_offs = sect *^ sector_size in
139 LargeFile.lseek fd (ebr_offs +^ 510L) SEEK_SET;
140 let str = String.create 2 in
141 if read fd str 0 2 <> 2 || str.[0] != '\x55' || str.[1] != '\xAA' then
144 (* Read the extended partition table entries (just 2 of them). *)
145 LargeFile.lseek fd (ebr_offs +^ 446L) SEEK_SET;
146 let str = String.create 32 in
147 if read fd str 0 32 <> 32 then
148 failwith (s_ "error reading extended partition")
150 (* Extract partitions from the data. *)
152 match List.map (get_partition str) [ 0; 16 ] with
154 | _ -> failwith (s_ "probe_extended_partition: internal error") in
155 (* First partition entry has offset to the start of this partition. *)
156 let part1 = { part1 with
157 part_lba_start = sect +^ part1.part_lba_start } in
158 (* Second partition entry is zeroes if end of list, otherwise points
159 * to the next partition.
161 if part2.part_status = NullEntry then
164 part1 :: probe_extended_partition
165 (max-1) fd epart (sect +^ part2.part_lba_start)
172 (* Ugh, fake a UInt32 -> UInt64 conversion without sign extension, until
173 * we get working UInt32/UInt64 modules in extlib.
175 and uint64_of_int32 u32 =
176 let i64 = Int64.of_int32 u32 in
177 if u32 >= 0l then i64
178 else Int64.add i64 0x1_0000_0000_L