1 (* 'diskzip' command for intelligently compressing disk images.
2 (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
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.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 open Diskzip_gettext.Gettext
25 module Bitmap = Diskzip_bitmap
27 type output = File of string | Dir of string
28 type extcompress = BZip2 | GZip | External of string
31 (* Program name changes behaviour. *)
33 let name = Sys.argv.(0) in
34 let name = Filename.basename name in (* just the executable name *)
35 let name = (* remove .opt or .exe *)
36 try Filename.chop_extension name
37 with Invalid_argument("Filename.chop_extension") -> name in
38 let name = String.lowercase name in
44 (f_"diskzip: unknown executable name '%s', assuming 'diskzip'\n")
46 let compressing = ref compressing in
48 (* Command line argument parsing. *)
50 printf "diskzip\n"; (* XXX version XXX *)
54 let output = ref None in
56 if !output <> None then (
57 prerr_endline (s_"diskzip: '-o' option cannot appear more than once");
61 let statbuf = stat path in
62 if statbuf.st_kind = S_DIR then
63 output := Some (Dir path)
65 output := Some (File path)
67 (* No such file or directory, assume it's a file output. *)
68 | Unix_error (ENOENT, _, _) -> output := Some (File path)
71 (* By default we don't use any external compression program. *)
72 let extcompress = ref None in
73 let set_extcompress t () =
74 if !extcompress <> None then (
75 prerr_endline (s_"diskzip: '-z' or '-j' cannot appear more than once");
81 let force = ref false in
83 let argspec = Arg.align [
84 "-d", Arg.Clear compressing,
85 " " ^ s_ "Uncompress (default: depends on executable name)";
86 "--debug", Arg.Set Diskimage.debug,
87 " " ^ s_ "Debug mode (default: false)";
89 " " ^ s_"Force compress even if stdout looks like a tty";
90 "-j", Arg.Unit (set_extcompress BZip2),
91 " " ^ s_"Pipe the output/input through bzip2";
92 "-o", Arg.String set_output,
93 "path " ^ s_"Set the output filename or directory name";
94 "-p", Arg.String (fun prog -> set_extcompress (External prog) ()),
95 "prog " ^ s_"Pipe the output/input through external program";
96 "--version", Arg.Unit version,
97 " " ^ s_"Display version and exit";
98 "-z", Arg.Unit (set_extcompress GZip),
99 " " ^ s_"Pipe the output/input through gzip";
103 let anon_fun str = args := str :: !args in
104 let usage_msg = s_"diskzip: Intelligently compress disk images
107 diskzip [-options] disk.img [disk.img ...] > output.dz
108 diskzcat [-options] output.dz > disk.img
112 Arg.parse argspec anon_fun usage_msg;
114 (* Turn refs back into normal values. *)
115 let compressing = !compressing in
116 let extcompress = !extcompress in
117 let output = !output in
118 let force = !force in
121 (* Check the arguments make sense. *)
122 if compressing && output <> None then (
123 prerr_endline (s_"diskzip: '-o' option cannot be used when compressing");
126 if compressing && args = [] then (
127 prerr_endline (s_"diskzip: no input");
130 if compressing && not force && isatty stdout then (
131 prerr_endline (s_"diskzip: compressed data not written to a terminal, use '-f' to force");
135 (* Run the compression or decompression functions. *)
137 go_compress extcompress args
139 go_decompress ?output extcompress args
141 (* Do compression. *)
142 and go_compress extcompress images =
143 (* Create a Diskimage machine description from the requested images. This
144 * also checks that everything we need is readable.
147 Diskimage.open_machine "diskzip" (List.map (fun n -> (n,n)) images) in
149 (* Scan the images for filesystems. *)
150 let machine = Diskimage.scan_machine machine in
152 (* Create ownership tables. *)
153 let ownership = Diskimage.create_ownership machine in
155 (* Create ownership bitmap for each disk. *)
157 fun { Diskimage.d_name = name; d_dev = disk } ->
158 let blocksize = disk#blocksize in
159 let size = disk#size in (* Size in bytes. *)
160 let nr_blocks = size /^ blocksize in (* Number of disk sectors. *)
162 if !Diskimage.debug then
163 eprintf "Creating bitmap for %s (%s sectors) ...\n%!"
164 disk#name (Int63.to_string nr_blocks);
166 (* Create an empty bitmap, one bit per sector. *)
167 let bitmap = Bitmap.create nr_blocks in
169 (* Get the lookup function for this disk. *)
170 let lookup = Diskimage.get_owners_lookup machine ownership disk in
172 (* Lookup each sector. *)
175 let owners = lookup blk in
178 ) machine.Diskimage.m_disks;
180 (* Redirect output through external pipe if asked. *)
181 (match extcompress with
186 | BZip2 -> "bzip2", [|"bzip2"; "-c"|]
187 | GZip -> "gzip", [|"gzip"; "-c"|]
188 | External prog -> "sh", [|"sh"; "-c"; prog |] in
189 let rfd, wfd = pipe () in
191 if pid = 0 then ( (* child *)
196 ) else ( (* parent *)
212 and go_decompress ?output extcompress args =
213 (* Read the input, which may be a single named file, or a series of
214 * files (we just concatenate them). We may have to feed the input
215 * through an external program.
219 | [] -> () (* Reading from stdin. *)
220 | [file] -> (* Read the named file. *)
221 let fd = openfile file [O_RDONLY] 0 in
224 | files -> (* Concatenate files. *)
225 let rfd, wfd = pipe () in
227 if pid = 0 then ( (* child *)
231 execvp "cat" (Array.of_list ("cat" :: "--" :: files))
232 ) else ( (* parent *)
238 (match extcompress with
243 | BZip2 -> "bzip2", [|"bzip2"; "-cd"|]
244 | GZip -> "gzip", [|"gzip"; "-cd"|]
245 | External prog -> "sh", [|"sh"; "-c"; prog |] in
246 let rfd, wfd = pipe () in
248 if pid = 0 then ( (* child *)
253 ) else ( (* parent *)
261 let header = read_header () in
274 (* Since we have the wonderful pa_bitmatch, might as well use it to
275 * define a robust binary format for the compressed files.
277 and write_header ... =
279 0xD152 : 16; 0x01 : 8; 0x00 : 8; (* file magic, version 1.0 *)
280 nr_disks : 8; (* number of disks being packed *)
288 (* Diskzip headers are limited to overall max size of 1024 bytes. *)
289 let bs = Bitmatch.bitstring_of_file_descr_max stdin 1024 in
292 | { 0xD152 : 16; (* file magic *)
293 0x01 : 8; (_ as minor) : 8; (* major, minor versions *)
296 (* Is this a later version (major != 1)? *)
297 | { 0xD152 : 16; (* file magic *)
298 (_ as major) : 8; (_ as minor) : 8 } when major <> 1 ->
299 eprintf (f_"diskzip: archive version %d.%d, this program only understands version 1.x")
303 (* If it looks like gzip or bzip2, exit with an informative error. *)
304 | { 0o37 : 8; 0o213 : 8 } -> (* gzip *)
305 prerr_endline (s_"diskzip: This looks like a gzip archive. Did you mean to pass the '-z' option?");
307 | { "BZh" : 24 : string } -> (* bzip2 *)
308 prerr_endline (s_"diskzip: This looks like a bzip2 archive. Did you mean to pass the '-j' option?");
311 (* If it looks like a disk image (MBR), give an error. *)
312 | { _ : 4080 : bitstring; 0x55 : 8; 0xAA : 8 } ->
313 prerr_endline (s_"diskzip: This looks like a disk image. Did you mean to compress it?");
317 prerr_endline (s_"diskzip: Not a diskzip archive.");