generator: Perl bindings.
[hivex.git] / generator / generator.ml
1 #!/usr/bin/env ocaml
2 (* hivex
3  * Copyright (C) 2009-2010 Red Hat Inc.
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  *
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.
14  *
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  *)
19
20 (* This script generates language bindings and some documentation for
21  * hivex.
22  * 
23  * After editing this file, run it (./generator/generator.ml) to
24  * regenerate all the output files.  'make' will rerun this
25  * automatically when necessary.  Note that if you are using a separate
26  * build directory you must run generator.ml from the _source_
27  * directory.
28  * 
29  * IMPORTANT: This script should NOT print any warnings.  If it prints
30  * warnings, you should treat them as errors.
31  * 
32  * OCaml tips: (1) In emacs, install tuareg-mode to display and format
33  * OCaml code correctly.  'vim' comes with a good OCaml editing mode by
34  * default.  (2) Read the resources at http://ocaml-tutorial.org/
35  *)
36
37 #load "unix.cma";;
38 #load "str.cma";;
39 #directory "+xml-light";;
40 #load "xml-light.cma";;
41
42 open Unix
43 open Printf
44
45 type style = ret * args
46 and ret =
47   | RErr                                (* 0 = ok, -1 = error *)
48   | RErrDispose                         (* Disposes handle, see hivex_close. *)
49   | RHive                               (* Returns a hive_h or NULL. *)
50   | RNode                               (* Returns hive_node_h or 0. *)
51   | RNodeNotFound                       (* See hivex_node_get_child. *)
52   | RNodeList                           (* Returns hive_node_h* or NULL. *)
53   | RValue                              (* Returns hive_value_h or 0. *)
54   | RValueList                          (* Returns hive_value_h* or NULL. *)
55   | RString                             (* Returns char* or NULL. *)
56   | RStringList                         (* Returns char** or NULL. *)
57   | RLenType                            (* See hivex_value_type. *)
58   | RLenTypeVal                         (* See hivex_value_value. *)
59   | RInt32                              (* Returns int32. *)
60   | RInt64                              (* Returns int64. *)
61
62 and args = argt list                    (* List of parameters. *)
63
64 and argt =                              (* Note, cannot be NULL/0 unless it
65                                            says so explicitly below. *)
66   | AHive                               (* hive_h* *)
67   | ANode of string                     (* hive_node_h *)
68   | AValue of string                    (* hive_value_h *)
69   | AString of string                   (* char* *)
70   | AStringNullable of string           (* char* (can be NULL) *)
71   | AOpenFlags                          (* HIVEX_OPEN_* flags list. *)
72   | AUnusedFlags                        (* Flags arg that is always 0 *)
73   | ASetValues                          (* See hivex_node_set_values. *)
74
75 (* Hive types, from:
76  * https://secure.wikimedia.org/wikipedia/en/wiki/Windows_Registry#Keys_and_values
77  * 
78  * It's unfortunate that in our original C binding we strayed away from
79  * the names that Windows uses (eg. REG_SZ for strings).  We include
80  * both our names and the Windows names.
81  *)
82 let hive_types = [
83   0, "none", "NONE",
84     "Just a key without a value";
85   1, "string", "SZ",
86     "A Windows string (encoding is unknown, but often UTF16-LE)";
87   2, "expand_string", "EXPAND_SZ",
88     "A Windows string that contains %env% (environment variable expansion)";
89   3, "binary", "BINARY",
90     "A blob of binary";
91   4, "dword", "DWORD",
92     "DWORD (32 bit integer), little endian";
93   5, "dword_be", "DWORD_BIG_ENDIAN",
94     "DWORD (32 bit integer), big endian";
95   6, "link", "LINK",
96     "Symbolic link to another part of the registry tree";
97   7, "multiple_strings", "MULTI_SZ",
98     "Multiple Windows strings.  See http://blogs.msdn.com/oldnewthing/archive/2009/10/08/9904646.aspx";
99   8, "resource_list", "RESOURCE_LIST",
100     "Resource list";
101   9, "full_resource_description", "FULL_RESOURCE_DESCRIPTOR",
102     "Resource descriptor";
103   10, "resource_requirements_list", "RESOURCE_REQUIREMENTS_LIST",
104     "Resouce requirements list";
105   11, "qword", "QWORD",
106     "QWORD (64 bit integer), unspecified endianness but usually little endian"
107 ]
108 let max_hive_type = 11
109
110 (* Open flags (bitmask passed to AOpenFlags) *)
111 let open_flags = [
112   1, "VERBOSE", "Verbose messages";
113   2, "DEBUG", "Debug messages";
114   4, "WRITE", "Enable writes to the hive";
115 ]
116
117 (* The API calls. *)
118 let functions = [
119   "open", (RHive, [AString "filename"; AOpenFlags]),
120     "open a hive file",
121     "\
122 Opens the hive named C<filename> for reading.
123
124 Flags is an ORed list of the open flags (or C<0> if you don't
125 want to pass any flags).  These flags are defined:
126
127 =over 4
128
129 =item HIVEX_OPEN_VERBOSE
130
131 Verbose messages.
132
133 =item HIVEX_OPEN_DEBUG
134
135 Very verbose messages, suitable for debugging problems in the library
136 itself.
137
138 This is also selected if the C<HIVEX_DEBUG> environment variable
139 is set to 1.
140
141 =item HIVEX_OPEN_WRITE
142
143 Open the hive for writing.  If omitted, the hive is read-only.
144
145 See L<hivex(3)/WRITING TO HIVE FILES>.
146
147 =back";
148
149   "close", (RErrDispose, [AHive]),
150     "close a hive handle",
151     "\
152 Close a hive handle and free all associated resources.
153
154 Note that any uncommitted writes are I<not> committed by this call,
155 but instead are lost.  See L<hivex(3)/WRITING TO HIVE FILES>.";
156
157   "root", (RNode, [AHive]),
158     "return the root node of the hive",
159     "\
160 Return root node of the hive.  All valid registries must contain
161 a root node.";
162
163   "node_name", (RString, [AHive; ANode "node"]),
164     "return the name of the node",
165     "\
166 Return the name of the node.
167
168 Note that the name of the root node is a dummy, such as
169 C<$$$PROTO.HIV> (other names are possible: it seems to depend on the
170 tool or program that created the hive in the first place).  You can
171 only know the \"real\" name of the root node by knowing which registry
172 file this hive originally comes from, which is knowledge that is
173 outside the scope of this library.";
174
175   "node_children", (RNodeList, [AHive; ANode "node"]),
176     "return children of node",
177     "\
178 Return an array of nodes which are the subkeys
179 (children) of C<node>.";
180
181   "node_get_child", (RNodeNotFound, [AHive; ANode "node"; AString "name"]),
182     "return named child of node",
183     "\
184 Return the child of node with the name C<name>, if it exists.
185
186 The name is matched case insensitively.";
187
188   "node_parent", (RNode, [AHive; ANode "node"]),
189     "return the parent of node",
190     "\
191 Return the parent of C<node>.
192
193 The parent pointer of the root node in registry files that we
194 have examined seems to be invalid, and so this function will
195 return an error if called on the root node.";
196
197   "node_values", (RValueList, [AHive; ANode "node"]),
198     "return (key, value) pairs attached to a node",
199     "\
200 Return the array of (key, value) pairs attached to this node.";
201
202   "node_get_value", (RValue, [AHive; ANode "node"; AString "key"]),
203     "return named key at node",
204     "\
205 Return the value attached to this node which has the name C<key>,
206 if it exists.
207
208 The key name is matched case insensitively.
209
210 Note that to get the default key, you should pass the empty
211 string C<\"\"> here.  The default key is often written C<\"@\">, but
212 inside hives that has no meaning and won't give you the
213 default key.";
214
215   "value_key", (RString, [AHive; AValue "val"]),
216     "return the key of a (key, value) pair",
217     "\
218 Return the key (name) of a (key, value) pair.  The name
219 is reencoded as UTF-8 and returned as a string.
220
221 The string should be freed by the caller when it is no longer needed.
222
223 Note that this function can return a zero-length string.  In the
224 context of Windows Registries, this means that this value is the
225 default key for this node in the tree.  This is usually written
226 as C<\"@\">.";
227
228   "value_type", (RLenType, [AHive; AValue "val"]),
229     "return data length and data type of a value",
230     "\
231 Return the data length and data type of the value in this (key, value)
232 pair.  See also C<hivex_value_value> which returns all this
233 information, and the value itself.  Also, C<hivex_value_*> functions
234 below which can be used to return the value in a more useful form when
235 you know the type in advance.";
236
237   "value_value", (RLenTypeVal, [AHive; AValue "val"]),
238     "return data length, data type and data of a value",
239     "\
240 Return the value of this (key, value) pair.  The value should
241 be interpreted according to its type (see C<hive_type>).";
242
243   "value_string", (RString, [AHive; AValue "val"]),
244     "return value as a string",
245     "\
246 If this value is a string, return the string reencoded as UTF-8
247 (as a C string).  This only works for values which have type
248 C<hive_t_string>, C<hive_t_expand_string> or C<hive_t_link>.";
249
250   "value_multiple_strings", (RStringList, [AHive; AValue "val"]),
251     "return value as multiple strings",
252     "\
253 If this value is a multiple-string, return the strings reencoded
254 as UTF-8 (in C, as a NULL-terminated array of C strings, in other
255 language bindings, as a list of strings).  This only
256 works for values which have type C<hive_t_multiple_strings>.";
257
258   "value_dword", (RInt32, [AHive; AValue "val"]),
259     "return value as a DWORD",
260     "\
261 If this value is a DWORD (Windows int32), return it.  This only works
262 for values which have type C<hive_t_dword> or C<hive_t_dword_be>.";
263
264   "value_qword", (RInt64, [AHive; AValue "val"]),
265     "return value as a QWORD",
266     "\
267 If this value is a QWORD (Windows int64), return it.  This only
268 works for values which have type C<hive_t_qword>.";
269
270   "commit", (RErr, [AHive; AStringNullable "filename"; AUnusedFlags]),
271     "commit (write) changes to file",
272     "\
273 Commit (write) any changes which have been made.
274
275 C<filename> is the new file to write.  If C<filename> is null/undefined
276 then we overwrite the original file (ie. the file name that was passed to
277 C<hivex_open>).
278
279 Note this does not close the hive handle.  You can perform further
280 operations on the hive after committing, including making more
281 modifications.  If you no longer wish to use the hive, then you
282 should close the handle after committing.";
283
284   "node_add_child", (RNode, [AHive; ANode "parent"; AString "name"]),
285     "add child node",
286     "\
287 Add a new child node named C<name> to the existing node C<parent>.
288 The new child initially has no subnodes and contains no keys or
289 values.  The sk-record (security descriptor) is inherited from
290 the parent.
291
292 The parent must not have an existing child called C<name>, so if you
293 want to overwrite an existing child, call C<hivex_node_delete_child>
294 first.";
295
296   "node_delete_child", (RErr, [AHive; ANode "node"]),
297     "delete child node",
298     "\
299 Delete the node C<node>.  All values at the node and all subnodes are
300 deleted (recursively).  The C<node> handle and the handles of all
301 subnodes become invalid.  You cannot delete the root node.";
302
303   "node_set_values", (RErr, [AHive; ANode "node"; ASetValues; AUnusedFlags]),
304     "set (key, value) pairs at a node",
305     "\
306 This call can be used to set all the (key, value) pairs
307 stored in C<node>.  Note that this library does not offer
308 a way to modify just a single key at a node.
309
310 C<node> is the node to modify.";
311 ]
312
313 (* Used to memoize the result of pod2text. *)
314 let pod2text_memo_filename = "generator/.pod2text.data"
315 let pod2text_memo : ((int * string * string), string list) Hashtbl.t =
316   try
317     let chan = open_in pod2text_memo_filename in
318     let v = input_value chan in
319     close_in chan;
320     v
321   with
322     _ -> Hashtbl.create 13
323 let pod2text_memo_updated () =
324   let chan = open_out pod2text_memo_filename in
325   output_value chan pod2text_memo;
326   close_out chan
327
328 (* Useful functions.
329  * Note we don't want to use any external OCaml libraries which
330  * makes this a bit harder than it should be.
331  *)
332 module StringMap = Map.Make (String)
333
334 let failwithf fs = ksprintf failwith fs
335
336 let unique = let i = ref 0 in fun () -> incr i; !i
337
338 let replace_char s c1 c2 =
339   let s2 = String.copy s in
340   let r = ref false in
341   for i = 0 to String.length s2 - 1 do
342     if String.unsafe_get s2 i = c1 then (
343       String.unsafe_set s2 i c2;
344       r := true
345     )
346   done;
347   if not !r then s else s2
348
349 let isspace c =
350   c = ' '
351   (* || c = '\f' *) || c = '\n' || c = '\r' || c = '\t' (* || c = '\v' *)
352
353 let triml ?(test = isspace) str =
354   let i = ref 0 in
355   let n = ref (String.length str) in
356   while !n > 0 && test str.[!i]; do
357     decr n;
358     incr i
359   done;
360   if !i = 0 then str
361   else String.sub str !i !n
362
363 let trimr ?(test = isspace) str =
364   let n = ref (String.length str) in
365   while !n > 0 && test str.[!n-1]; do
366     decr n
367   done;
368   if !n = String.length str then str
369   else String.sub str 0 !n
370
371 let trim ?(test = isspace) str =
372   trimr ~test (triml ~test str)
373
374 let rec find s sub =
375   let len = String.length s in
376   let sublen = String.length sub in
377   let rec loop i =
378     if i <= len-sublen then (
379       let rec loop2 j =
380         if j < sublen then (
381           if s.[i+j] = sub.[j] then loop2 (j+1)
382           else -1
383         ) else
384           i (* found *)
385       in
386       let r = loop2 0 in
387       if r = -1 then loop (i+1) else r
388     ) else
389       -1 (* not found *)
390   in
391   loop 0
392
393 let rec replace_str s s1 s2 =
394   let len = String.length s in
395   let sublen = String.length s1 in
396   let i = find s s1 in
397   if i = -1 then s
398   else (
399     let s' = String.sub s 0 i in
400     let s'' = String.sub s (i+sublen) (len-i-sublen) in
401     s' ^ s2 ^ replace_str s'' s1 s2
402   )
403
404 let rec string_split sep str =
405   let len = String.length str in
406   let seplen = String.length sep in
407   let i = find str sep in
408   if i = -1 then [str]
409   else (
410     let s' = String.sub str 0 i in
411     let s'' = String.sub str (i+seplen) (len-i-seplen) in
412     s' :: string_split sep s''
413   )
414
415 let files_equal n1 n2 =
416   let cmd = sprintf "cmp -s %s %s" (Filename.quote n1) (Filename.quote n2) in
417   match Sys.command cmd with
418   | 0 -> true
419   | 1 -> false
420   | i -> failwithf "%s: failed with error code %d" cmd i
421
422 let rec filter_map f = function
423   | [] -> []
424   | x :: xs ->
425       match f x with
426       | Some y -> y :: filter_map f xs
427       | None -> filter_map f xs
428
429 let rec find_map f = function
430   | [] -> raise Not_found
431   | x :: xs ->
432       match f x with
433       | Some y -> y
434       | None -> find_map f xs
435
436 let iteri f xs =
437   let rec loop i = function
438     | [] -> ()
439     | x :: xs -> f i x; loop (i+1) xs
440   in
441   loop 0 xs
442
443 let mapi f xs =
444   let rec loop i = function
445     | [] -> []
446     | x :: xs -> let r = f i x in r :: loop (i+1) xs
447   in
448   loop 0 xs
449
450 let count_chars c str =
451   let count = ref 0 in
452   for i = 0 to String.length str - 1 do
453     if c = String.unsafe_get str i then incr count
454   done;
455   !count
456
457 let name_of_argt = function
458   | AHive -> "h"
459   | ANode n | AValue n | AString n | AStringNullable n -> n
460   | AOpenFlags | AUnusedFlags -> "flags"
461   | ASetValues -> "values"
462
463 (* Check function names etc. for consistency. *)
464 let check_functions () =
465   let contains_uppercase str =
466     let len = String.length str in
467     let rec loop i =
468       if i >= len then false
469       else (
470         let c = str.[i] in
471         if c >= 'A' && c <= 'Z' then true
472         else loop (i+1)
473       )
474     in
475     loop 0
476   in
477
478   (* Check function names. *)
479   List.iter (
480     fun (name, _, _, _) ->
481       if String.length name >= 7 && String.sub name 0 7 = "hivex" then
482         failwithf "function name %s does not need 'hivex' prefix" name;
483       if name = "" then
484         failwithf "function name is empty";
485       if name.[0] < 'a' || name.[0] > 'z' then
486         failwithf "function name %s must start with lowercase a-z" name;
487       if String.contains name '-' then
488         failwithf "function name %s should not contain '-', use '_' instead."
489           name
490   ) functions;
491
492   (* Check function parameter/return names. *)
493   List.iter (
494     fun (name, style, _, _) ->
495       let check_arg_ret_name n =
496         if contains_uppercase n then
497           failwithf "%s param/ret %s should not contain uppercase chars"
498             name n;
499         if String.contains n '-' || String.contains n '_' then
500           failwithf "%s param/ret %s should not contain '-' or '_'"
501             name n;
502         if n = "value" then
503           failwithf "%s has a param/ret called 'value', which causes conflicts in the OCaml bindings, use something like 'val' or a more descriptive name" name;
504         if n = "int" || n = "char" || n = "short" || n = "long" then
505           failwithf "%s has a param/ret which conflicts with a C type (eg. 'int', 'char' etc.)" name;
506         if n = "i" || n = "n" then
507           failwithf "%s has a param/ret called 'i' or 'n', which will cause some conflicts in the generated code" name;
508         if n = "argv" || n = "args" then
509           failwithf "%s has a param/ret called 'argv' or 'args', which will cause some conflicts in the generated code" name;
510
511         (* List Haskell, OCaml and C keywords here.
512          * http://www.haskell.org/haskellwiki/Keywords
513          * http://caml.inria.fr/pub/docs/manual-ocaml/lex.html#operator-char
514          * http://en.wikipedia.org/wiki/C_syntax#Reserved_keywords
515          * Formatted via: cat c haskell ocaml|sort -u|grep -vE '_|^val$' \
516          *   |perl -pe 's/(.+)/"$1";/'|fmt -70
517          * Omitting _-containing words, since they're handled above.
518          * Omitting the OCaml reserved word, "val", is ok,
519          * and saves us from renaming several parameters.
520          *)
521         let reserved = [
522           "and"; "as"; "asr"; "assert"; "auto"; "begin"; "break"; "case";
523           "char"; "class"; "const"; "constraint"; "continue"; "data";
524           "default"; "deriving"; "do"; "done"; "double"; "downto"; "else";
525           "end"; "enum"; "exception"; "extern"; "external"; "false"; "float";
526           "for"; "forall"; "foreign"; "fun"; "function"; "functor"; "goto";
527           "hiding"; "if"; "import"; "in"; "include"; "infix"; "infixl";
528           "infixr"; "inherit"; "initializer"; "inline"; "instance"; "int";
529           "interface";
530           "land"; "lazy"; "let"; "long"; "lor"; "lsl"; "lsr"; "lxor";
531           "match"; "mdo"; "method"; "mod"; "module"; "mutable"; "new";
532           "newtype"; "object"; "of"; "open"; "or"; "private"; "qualified";
533           "rec"; "register"; "restrict"; "return"; "short"; "sig"; "signed";
534           "sizeof"; "static"; "struct"; "switch"; "then"; "to"; "true"; "try";
535           "type"; "typedef"; "union"; "unsigned"; "virtual"; "void";
536           "volatile"; "when"; "where"; "while";
537           ] in
538         if List.mem n reserved then
539           failwithf "%s has param/ret using reserved word %s" name n;
540       in
541
542       List.iter (fun arg -> check_arg_ret_name (name_of_argt arg)) (snd style)
543   ) functions;
544
545   (* Check short descriptions. *)
546   List.iter (
547     fun (name, _, shortdesc, _) ->
548       if shortdesc.[0] <> Char.lowercase shortdesc.[0] then
549         failwithf "short description of %s should begin with lowercase." name;
550       let c = shortdesc.[String.length shortdesc-1] in
551       if c = '\n' || c = '.' then
552         failwithf "short description of %s should not end with . or \\n." name
553   ) functions;
554
555   (* Check long dscriptions. *)
556   List.iter (
557     fun (name, _, _, longdesc) ->
558       if longdesc.[String.length longdesc-1] = '\n' then
559         failwithf "long description of %s should not end with \\n." name
560   ) functions
561
562 (* 'pr' prints to the current output file. *)
563 let chan = ref Pervasives.stdout
564 let lines = ref 0
565 let pr fs =
566   ksprintf
567     (fun str ->
568        let i = count_chars '\n' str in
569        lines := !lines + i;
570        output_string !chan str
571     ) fs
572
573 let copyright_years =
574   let this_year = 1900 + (localtime (time ())).tm_year in
575   if this_year > 2009 then sprintf "2009-%04d" this_year else "2009"
576
577 (* Generate a header block in a number of standard styles. *)
578 type comment_style =
579   | CStyle | CPlusPlusStyle | HashStyle | OCamlStyle | HaskellStyle
580   | PODCommentStyle
581 type license = GPLv2plus | LGPLv2plus | GPLv2 | LGPLv2
582
583 let generate_header ?(extra_inputs = []) comment license =
584   let inputs = "generator/generator.ml" :: extra_inputs in
585   let c = match comment with
586     | CStyle ->         pr "/* "; " *"
587     | CPlusPlusStyle -> pr "// "; "//"
588     | HashStyle ->      pr "# ";  "#"
589     | OCamlStyle ->     pr "(* "; " *"
590     | HaskellStyle ->   pr "{- "; "  "
591     | PODCommentStyle -> pr "=begin comment\n\n "; "" in
592   pr "hivex generated file\n";
593   pr "%s WARNING: THIS FILE IS GENERATED FROM:\n" c;
594   List.iter (pr "%s   %s\n" c) inputs;
595   pr "%s ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.\n" c;
596   pr "%s\n" c;
597   pr "%s Copyright (C) %s Red Hat Inc.\n" c copyright_years;
598   pr "%s Derived from code by Petter Nordahl-Hagen under a compatible license:\n" c;
599   pr "%s   Copyright (c) 1997-2007 Petter Nordahl-Hagen.\n" c;
600   pr "%s Derived from code by Markus Stephany under a compatible license:\n" c;
601   pr "%s   Copyright (c)2000-2004, Markus Stephany.\n" c;
602   pr "%s\n" c;
603   (match license with
604    | GPLv2plus ->
605        pr "%s This program is free software; you can redistribute it and/or modify\n" c;
606        pr "%s it under the terms of the GNU General Public License as published by\n" c;
607        pr "%s the Free Software Foundation; either version 2 of the License, or\n" c;
608        pr "%s (at your option) any later version.\n" c;
609        pr "%s\n" c;
610        pr "%s This program is distributed in the hope that it will be useful,\n" c;
611        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
612        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n" c;
613        pr "%s GNU General Public License for more details.\n" c;
614        pr "%s\n" c;
615        pr "%s You should have received a copy of the GNU General Public License along\n" c;
616        pr "%s with this program; if not, write to the Free Software Foundation, Inc.,\n" c;
617        pr "%s 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n" c;
618
619    | LGPLv2plus ->
620        pr "%s This library is free software; you can redistribute it and/or\n" c;
621        pr "%s modify it under the terms of the GNU Lesser General Public\n" c;
622        pr "%s License as published by the Free Software Foundation; either\n" c;
623        pr "%s version 2 of the License, or (at your option) any later version.\n" c;
624        pr "%s\n" c;
625        pr "%s This library is distributed in the hope that it will be useful,\n" c;
626        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
627        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n" c;
628        pr "%s Lesser General Public License for more details.\n" c;
629        pr "%s\n" c;
630        pr "%s You should have received a copy of the GNU Lesser General Public\n" c;
631        pr "%s License along with this library; if not, write to the Free Software\n" c;
632        pr "%s Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n" c;
633
634    | GPLv2 ->
635        pr "%s This program is free software; you can redistribute it and/or modify\n" c;
636        pr "%s it under the terms of the GNU General Public License as published by\n" c;
637        pr "%s the Free Software Foundation; version 2 of the License only.\n" c;
638        pr "%s\n" c;
639        pr "%s This program is distributed in the hope that it will be useful,\n" c;
640        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
641        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n" c;
642        pr "%s GNU General Public License for more details.\n" c;
643        pr "%s\n" c;
644        pr "%s You should have received a copy of the GNU General Public License along\n" c;
645        pr "%s with this program; if not, write to the Free Software Foundation, Inc.,\n" c;
646        pr "%s 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n" c;
647
648    | LGPLv2 ->
649        pr "%s This library is free software; you can redistribute it and/or\n" c;
650        pr "%s modify it under the terms of the GNU Lesser General Public\n" c;
651        pr "%s License as published by the Free Software Foundation;\n" c;
652        pr "%s version 2.1 of the License only.\n" c;
653        pr "%s\n" c;
654        pr "%s This library is distributed in the hope that it will be useful,\n" c;
655        pr "%s but WITHOUT ANY WARRANTY; without even the implied warranty of\n" c;
656        pr "%s MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\n" c;
657        pr "%s Lesser General Public License for more details.\n" c;
658        pr "%s\n" c;
659        pr "%s You should have received a copy of the GNU Lesser General Public\n" c;
660        pr "%s License along with this library; if not, write to the Free Software\n" c;
661        pr "%s Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n" c;
662   );
663   (match comment with
664    | CStyle -> pr " */\n"
665    | CPlusPlusStyle
666    | HashStyle -> ()
667    | OCamlStyle -> pr " *)\n"
668    | HaskellStyle -> pr "-}\n"
669    | PODCommentStyle -> pr "\n=end comment\n"
670   );
671   pr "\n"
672
673 (* Start of main code generation functions below this line. *)
674
675 let rec generate_c_header () =
676   generate_header CStyle LGPLv2;
677
678   pr "\
679 #ifndef HIVEX_H_
680 #define HIVEX_H_
681
682 #include <stdint.h>
683
684 #ifdef __cplusplus
685 extern \"C\" {
686 #endif
687
688 /* NOTE: This API is documented in the man page hivex(3). */
689
690 /* Hive handle. */
691 typedef struct hive_h hive_h;
692
693 /* Nodes and values. */
694 typedef size_t hive_node_h;
695 typedef size_t hive_value_h;
696
697 /* Pre-defined types. */
698 enum hive_type {
699 ";
700   List.iter (
701     fun (t, old_style, new_style, description) ->
702       pr "  /* %s */\n" description;
703       pr "  hive_t_REG_%s,\n" new_style;
704       pr "#define hive_t_%s hive_t_REG_%s\n" old_style new_style;
705       pr "\n"
706   ) hive_types;
707   pr "\
708 };
709
710 typedef enum hive_type hive_type;
711
712 /* Bitmask of flags passed to hivex_open. */
713 ";
714   List.iter (
715     fun (v, flag, description) ->
716       pr "  /* %s */\n" description;
717       pr "#define HIVEX_OPEN_%-10s %d\n" flag v;
718   ) open_flags;
719   pr "\n";
720
721   pr "\
722 /* Array of (key, value) pairs passed to hivex_node_set_values. */
723 struct hive_set_value {
724   char *key;
725   hive_type t;
726   size_t len;
727   char *value;
728 };
729 typedef struct hive_set_value hive_set_value;
730
731 ";
732
733   pr "/* Functions. */\n";
734
735   (* Function declarations. *)
736   List.iter (
737     fun (shortname, style, _, _) ->
738       let name = "hivex_" ^ shortname in
739       generate_c_prototype ~extern:true name style
740   ) functions;
741
742   (* The visitor pattern. *)
743   pr "
744 /* Visit all nodes.  This is specific to the C API and is not made
745  * available to other languages.  This is because of the complexity
746  * of binding callbacks in other languages, but also because other
747  * languages make it much simpler to iterate over a tree.
748  */
749 struct hivex_visitor {
750   int (*node_start) (hive_h *, void *opaque, hive_node_h, const char *name);
751   int (*node_end) (hive_h *, void *opaque, hive_node_h, const char *name);
752   int (*value_string) (hive_h *, void *opaque, hive_node_h, hive_value_h, hive_type t, size_t len, const char *key, const char *str);
753   int (*value_multiple_strings) (hive_h *, void *opaque, hive_node_h, hive_value_h, hive_type t, size_t len, const char *key, char **argv);
754   int (*value_string_invalid_utf16) (hive_h *, void *opaque, hive_node_h, hive_value_h, hive_type t, size_t len, const char *key, const char *str);
755   int (*value_dword) (hive_h *, void *opaque, hive_node_h, hive_value_h, hive_type t, size_t len, const char *key, int32_t);
756   int (*value_qword) (hive_h *, void *opaque, hive_node_h, hive_value_h, hive_type t, size_t len, const char *key, int64_t);
757   int (*value_binary) (hive_h *, void *opaque, hive_node_h, hive_value_h, hive_type t, size_t len, const char *key, const char *value);
758   int (*value_none) (hive_h *, void *opaque, hive_node_h, hive_value_h, hive_type t, size_t len, const char *key, const char *value);
759   int (*value_other) (hive_h *, void *opaque, hive_node_h, hive_value_h, hive_type t, size_t len, const char *key, const char *value);
760   int (*value_any) (hive_h *, void *opaque, hive_node_h, hive_value_h, hive_type t, size_t len, const char *key, const char *value);
761 };
762
763 #define HIVEX_VISIT_SKIP_BAD 1
764
765 extern int hivex_visit (hive_h *h, const struct hivex_visitor *visitor, size_t len, void *opaque, int flags);
766 extern int hivex_visit_node (hive_h *h, hive_node_h node, const struct hivex_visitor *visitor, size_t len, void *opaque, int flags);
767
768 ";
769
770   (* Finish the header file. *)
771   pr "\
772 #ifdef __cplusplus
773 }
774 #endif
775
776 #endif /* HIVEX_H_ */
777 "
778
779 and generate_c_prototype ?(extern = false) name style =
780   if extern then pr "extern ";
781   (match fst style with
782    | RErr -> pr "int "
783    | RErrDispose -> pr "int "
784    | RHive -> pr "hive_h *"
785    | RNode -> pr "hive_node_h "
786    | RNodeNotFound -> pr "hive_node_h "
787    | RNodeList -> pr "hive_node_h *"
788    | RValue -> pr "hive_value_h "
789    | RValueList -> pr "hive_value_h *"
790    | RString -> pr "char *"
791    | RStringList -> pr "char **"
792    | RLenType -> pr "int "
793    | RLenTypeVal -> pr "char *"
794    | RInt32 -> pr "int32_t "
795    | RInt64 -> pr "int64_t "
796   );
797   pr "%s (" name;
798   let comma = ref false in
799   List.iter (
800     fun arg ->
801       if !comma then pr ", "; comma := true;
802       match arg with
803       | AHive -> pr "hive_h *h"
804       | ANode n -> pr "hive_node_h %s" n
805       | AValue n -> pr "hive_value_h %s" n
806       | AString n | AStringNullable n -> pr "const char *%s" n
807       | AOpenFlags | AUnusedFlags -> pr "int flags"
808       | ASetValues -> pr "size_t nr_values, const hive_set_value *values"
809   ) (snd style);
810   (match fst style with
811    | RLenType | RLenTypeVal -> pr ", hive_type *t, size_t *len"
812    | _ -> ()
813   );
814   pr ");\n"
815
816 and generate_c_pod () =
817   generate_header PODCommentStyle GPLv2;
818
819   pr "\
820   =encoding utf8
821
822 =head1 NAME
823
824 hivex - Windows Registry \"hive\" extraction library
825
826 =head1 SYNOPSIS
827
828  #include <hivex.h>
829  
830 ";
831   List.iter (
832     fun (shortname, style, _, _) ->
833       let name = "hivex_" ^ shortname in
834       pr " ";
835       generate_c_prototype ~extern:false name style;
836   ) functions;
837
838   pr "\
839
840 Link with I<-lhivex>.
841
842 =head1 DESCRIPTION
843
844 libhivex is a library for extracting the contents of Windows Registry
845 \"hive\" files.  It is designed to be secure against buggy or malicious
846 registry files.
847
848 Unlike many other tools in this area, it doesn't use the textual .REG
849 format for output, because parsing that is as much trouble as parsing
850 the original binary format.  Instead it makes the file available
851 through a C API, or there is a separate program to export the hive as
852 XML (see L<hivexml(1)>), or to navigate the file (see L<hivexsh(1)>).
853
854 =head1 TYPES
855
856 =head2 hive_h *
857
858 This handle describes an open hive file.
859
860 =head2 hive_node_h
861
862 This is a node handle, an integer but opaque outside the library.
863 Valid node handles cannot be 0.  The library returns 0 in some
864 situations to indicate an error.
865
866 =head2 hive_type
867
868 The enum below describes the possible types for the value(s)
869 stored at each node.  Note that you should not trust the
870 type field in a Windows Registry, as it very often has no
871 relationship to reality.  Some applications use their own
872 types.  The encoding of strings is not specified.  Some
873 programs store everything (including strings) in binary blobs.
874
875  enum hive_type {
876 ";
877   List.iter (
878     fun (t, _, new_style, description) ->
879       pr "   /* %s */\n" description;
880       pr "   hive_t_REG_%s = %d,\n" new_style t
881   ) hive_types;
882   pr "\
883  };
884
885 =head2 hive_value_h
886
887 This is a value handle, an integer but opaque outside the library.
888 Valid value handles cannot be 0.  The library returns 0 in some
889 situations to indicate an error.
890
891 =head2 hive_set_value
892
893 The typedef C<hive_set_value> is used in conjunction with the
894 C<hivex_node_set_values> call described below.
895
896  struct hive_set_value {
897    char *key;     /* key - a UTF-8 encoded ASCIIZ string */
898    hive_type t;   /* type of value field */
899    size_t len;    /* length of value field in bytes */
900    char *value;   /* value field */
901  };
902  typedef struct hive_set_value hive_set_value;
903
904 To set the default value for a node, you have to pass C<key = \"\">.
905
906 Note that the C<value> field is just treated as a list of bytes, and
907 is stored directly in the hive.  The caller has to ensure correct
908 encoding and endianness, for example converting dwords to little
909 endian.
910
911 The correct type and encoding for values depends on the node and key
912 in the registry, the version of Windows, and sometimes even changes
913 between versions of Windows for the same key.  We don't document it
914 here.  Often it's not documented at all.
915
916 =head1 FUNCTIONS
917
918 ";
919   List.iter (
920     fun (shortname, style, _, longdesc) ->
921       let name = "hivex_" ^ shortname in
922       pr "=head2 %s\n" name;
923       pr "\n";
924       generate_c_prototype ~extern:false name style;
925       pr "\n";
926       pr "%s\n" longdesc;
927       pr "\n";
928
929       if List.mem AUnusedFlags (snd style) then
930         pr "The flags parameter is unused.  Always pass 0.\n\n";
931
932       if List.mem ASetValues (snd style) then
933         pr "C<values> is an array of (key, value) pairs.  There
934 should be C<nr_values> elements in this array.
935
936 Any existing values stored at the node are discarded, and their
937 C<hive_value_h> handles become invalid.  Thus you can remove all
938 values stored at C<node> by passing C<nr_values = 0>.\n\n";
939
940       (match fst style with
941        | RErr ->
942            pr "\
943 Returns 0 on success.
944 On error this returns -1 and sets errno.\n\n"
945        | RErrDispose ->
946            pr "\
947 Returns 0 on success.
948 On error this returns -1 and sets errno.
949
950 This function frees the hive handle (even if it returns an error).
951 The hive handle must not be used again after calling this function.\n\n"
952        | RHive ->
953            pr "\
954 Returns a new hive handle.
955 On error this returns NULL and sets errno.\n\n"
956        | RNode ->
957            pr "\
958 Returns a node handle.
959 On error this returns 0 and sets errno.\n\n"
960        | RNodeNotFound ->
961            pr "\
962 Returns a node handle.
963 If the node was not found, this returns 0 without setting errno.
964 On error this returns 0 and sets errno.\n\n"
965        | RNodeList ->
966            pr "\
967 Returns a 0-terminated array of nodes.
968 The array must be freed by the caller when it is no longer needed.
969 On error this returns NULL and sets errno.\n\n"
970        | RValue ->
971            pr "\
972 Returns a value handle.
973 On error this returns 0 and sets errno.\n\n"
974        | RValueList ->
975            pr "\
976 Returns a 0-terminated array of values.
977 The array must be freed by the caller when it is no longer needed.
978 On error this returns NULL and sets errno.\n\n"
979        | RString ->
980            pr "\
981 Returns a string.
982 The string must be freed by the caller when it is no longer needed.
983 On error this returns NULL and sets errno.\n\n"
984        | RStringList ->
985            pr "\
986 Returns a NULL-terminated array of C strings.
987 The strings and the array must all be freed by the caller when
988 they are no longer needed.
989 On error this returns NULL and sets errno.\n\n"
990        | RLenType ->
991            pr "\
992 Returns 0 on success.
993 On error this returns NULL and sets errno.\n\n"
994        | RLenTypeVal ->
995            pr "\
996 The value is returned as an array of bytes (of length C<len>).
997 The value must be freed by the caller when it is no longer needed.
998 On error this returns NULL and sets errno.\n\n"
999        | RInt32 | RInt64 -> ()
1000       );
1001   ) functions;
1002
1003   pr "\
1004 =head1 WRITING TO HIVE FILES
1005
1006 The hivex library supports making limited modifications to hive files.
1007 We have tried to implement this very conservatively in order to reduce
1008 the chance of corrupting your registry.  However you should be careful
1009 and take back-ups, since Microsoft has never documented the hive
1010 format, and so it is possible there are nuances in the
1011 reverse-engineered format that we do not understand.
1012
1013 To be able to modify a hive, you must pass the C<HIVEX_OPEN_WRITE>
1014 flag to C<hivex_open>, otherwise any write operation will return with
1015 errno C<EROFS>.
1016
1017 The write operations shown below do not modify the on-disk file
1018 immediately.  You must call C<hivex_commit> in order to write the
1019 changes to disk.  If you call C<hivex_close> without committing then
1020 any writes are discarded.
1021
1022 Hive files internally consist of a \"memory dump\" of binary blocks
1023 (like the C heap), and some of these blocks can be unused.  The hivex
1024 library never reuses these unused blocks.  Instead, to ensure
1025 robustness in the face of the partially understood on-disk format,
1026 hivex only allocates new blocks after the end of the file, and makes
1027 minimal modifications to existing structures in the file to point to
1028 these new blocks.  This makes hivex slightly less disk-efficient than
1029 it could be, but disk is cheap, and registry modifications tend to be
1030 very small.
1031
1032 When deleting nodes, it is possible that this library may leave
1033 unreachable live blocks in the hive.  This is because certain parts of
1034 the hive disk format such as security (sk) records and big data (db)
1035 records and classname fields are not well understood (and not
1036 documented at all) and we play it safe by not attempting to modify
1037 them.  Apart from wasting a little bit of disk space, it is not
1038 thought that unreachable blocks are a problem.
1039
1040 =head2 WRITE OPERATIONS WHICH ARE NOT SUPPORTED
1041
1042 =over 4
1043
1044 =item *
1045
1046 Changing the root node.
1047
1048 =item *
1049
1050 Creating a new hive file from scratch.  This is impossible at present
1051 because not all fields in the header are understood.
1052
1053 =item *
1054
1055 Modifying or deleting single values at a node.
1056
1057 =item *
1058
1059 Modifying security key (sk) records or classnames.
1060 Previously we did not understand these records.  However now they
1061 are well-understood and we could add support if it was required
1062 (but nothing much really uses them).
1063
1064 =back
1065
1066 =head1 VISITING ALL NODES
1067
1068 The visitor pattern is useful if you want to visit all nodes
1069 in the tree or all nodes below a certain point in the tree.
1070
1071 First you set up your own C<struct hivex_visitor> with your
1072 callback functions.
1073
1074 Each of these callback functions should return 0 on success or -1
1075 on error.  If any callback returns -1, then the entire visit
1076 terminates immediately.  If you don't need a callback function at
1077 all, set the function pointer to NULL.
1078
1079  struct hivex_visitor {
1080    int (*node_start) (hive_h *, void *opaque, hive_node_h, const char *name);
1081    int (*node_end) (hive_h *, void *opaque, hive_node_h, const char *name);
1082    int (*value_string) (hive_h *, void *opaque, hive_node_h, hive_value_h,
1083          hive_type t, size_t len, const char *key, const char *str);
1084    int (*value_multiple_strings) (hive_h *, void *opaque, hive_node_h,
1085          hive_value_h, hive_type t, size_t len, const char *key, char **argv);
1086    int (*value_string_invalid_utf16) (hive_h *, void *opaque, hive_node_h,
1087          hive_value_h, hive_type t, size_t len, const char *key,
1088          const char *str);
1089    int (*value_dword) (hive_h *, void *opaque, hive_node_h, hive_value_h,
1090          hive_type t, size_t len, const char *key, int32_t);
1091    int (*value_qword) (hive_h *, void *opaque, hive_node_h, hive_value_h,
1092          hive_type t, size_t len, const char *key, int64_t);
1093    int (*value_binary) (hive_h *, void *opaque, hive_node_h, hive_value_h,
1094          hive_type t, size_t len, const char *key, const char *value);
1095    int (*value_none) (hive_h *, void *opaque, hive_node_h, hive_value_h,
1096          hive_type t, size_t len, const char *key, const char *value);
1097    int (*value_other) (hive_h *, void *opaque, hive_node_h, hive_value_h,
1098          hive_type t, size_t len, const char *key, const char *value);
1099    /* If value_any callback is not NULL, then the other value_*
1100     * callbacks are not used, and value_any is called on all values.
1101     */
1102    int (*value_any) (hive_h *, void *opaque, hive_node_h, hive_value_h,
1103          hive_type t, size_t len, const char *key, const char *value);
1104  };
1105
1106 =over 4
1107
1108 =item hivex_visit
1109
1110  int hivex_visit (hive_h *h, const struct hivex_visitor *visitor, size_t len, void *opaque, int flags);
1111
1112 Visit all the nodes recursively in the hive C<h>.
1113
1114 C<visitor> should be a C<hivex_visitor> structure with callback
1115 fields filled in as required (unwanted callbacks can be set to
1116 NULL).  C<len> must be the length of the 'visitor' struct (you
1117 should pass C<sizeof (struct hivex_visitor)> for this).
1118
1119 This returns 0 if the whole recursive visit was completed
1120 successfully.  On error this returns -1.  If one of the callback
1121 functions returned an error than we don't touch errno.  If the
1122 error was generated internally then we set errno.
1123
1124 You can skip bad registry entries by setting C<flag> to
1125 C<HIVEX_VISIT_SKIP_BAD>.  If this flag is not set, then a bad registry
1126 causes the function to return an error immediately.
1127
1128 This function is robust if the registry contains cycles or
1129 pointers which are invalid or outside the registry.  It detects
1130 these cases and returns an error.
1131
1132 =item hivex_visit_node
1133
1134  int hivex_visit_node (hive_h *h, hive_node_h node, const struct hivex_visitor *visitor, size_t len, void *opaque);
1135
1136 Same as C<hivex_visit> but instead of starting out at the root, this
1137 starts at C<node>.
1138
1139 =back
1140
1141 =head1 THE STRUCTURE OF THE WINDOWS REGISTRY
1142
1143 Note: To understand the relationship between hives and the common
1144 Windows Registry keys (like C<HKEY_LOCAL_MACHINE>) please see the
1145 Wikipedia page on the Windows Registry.
1146
1147 The Windows Registry is split across various binary files, each
1148 file being known as a \"hive\".  This library only handles a single
1149 hive file at a time.
1150
1151 Hives are n-ary trees with a single root.  Each node in the tree
1152 has a name.
1153
1154 Each node in the tree (including non-leaf nodes) may have an
1155 arbitrary list of (key, value) pairs attached to it.  It may
1156 be the case that one of these pairs has an empty key.  This
1157 is referred to as the default key for the node.
1158
1159 The (key, value) pairs are the place where the useful data is
1160 stored in the registry.  The key is always a string (possibly the
1161 empty string for the default key).  The value is a typed object
1162 (eg. string, int32, binary, etc.).
1163
1164 =head2 RELATIONSHIP TO .REG FILES
1165
1166 Although this library does not care about or deal with Windows reg
1167 files, it's useful to look at the relationship between the registry
1168 itself and reg files because they are so common.
1169
1170 A reg file is a text representation of the registry, or part of the
1171 registry.  The actual registry hives that Windows uses are binary
1172 files.  There are a number of Windows and Linux tools that let you
1173 generate reg files, or merge reg files back into the registry hives.
1174 Notable amongst them is Microsoft's REGEDIT program (formerly known as
1175 REGEDT32).
1176
1177 A typical reg file will contain many sections looking like this:
1178
1179  [HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Stack]
1180  \"@\"=\"Generic Stack\"
1181  \"TileInfo\"=\"prop:System.FileCount\"
1182  \"TilePath\"=str(2):\"%%systemroot%%\\\\system32\"
1183  \"ThumbnailCutoff\"=dword:00000000
1184  \"FriendlyTypeName\"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\\
1185   6f,00,74,00,25,00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,\\
1186   33,00,32,00,5c,00,73,00,65,00,61,00,72,00,63,00,68,00,66,00,\\
1187   6f,00,6c,00,64,00,65,00,72,00,2e,00,64,00,6c,00,6c,00,2c,00,\\
1188   2d,00,39,00,30,00,32,00,38,00,00,00,d8
1189
1190 Taking this one piece at a time:
1191
1192  [HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Stack]
1193
1194 This is the path to this node in the registry tree.  The first part,
1195 C<HKEY_LOCAL_MACHINE\\SOFTWARE> means that this comes from a hive
1196 (file) called C<SOFTWARE>.  C<\\Classes\\Stack> is the real path part,
1197 starting at the root node of the C<SOFTWARE> hive.
1198
1199 Below the node name is a list of zero or more key-value pairs.  Any
1200 interior or leaf node in the registry may have key-value pairs
1201 attached.
1202
1203  \"@\"=\"Generic Stack\"
1204
1205 This is the \"default key\".  In reality (ie. inside the binary hive)
1206 the key string is the empty string.  In reg files this is written as
1207 C<@> but this has no meaning either in the hives themselves or in this
1208 library.  The value is a string (type 1 - see C<enum hive_type>
1209 above).
1210
1211  \"TileInfo\"=\"prop:System.FileCount\"
1212
1213 This is a regular (key, value) pair, with the value being a type 1
1214 string.  Note that inside the binary file the string is likely to be
1215 UTF-16 encoded.  This library converts to and from UTF-8 strings
1216 transparently.
1217
1218  \"TilePath\"=str(2):\"%%systemroot%%\\\\system32\"
1219
1220 The value in this case has type 2 (expanded string) meaning that some
1221 %%...%% variables get expanded by Windows.  (This library doesn't know
1222 or care about variable expansion).
1223
1224  \"ThumbnailCutoff\"=dword:00000000
1225
1226 The value in this case is a dword (type 4).
1227
1228  \"FriendlyTypeName\"=hex(2):40,00,....
1229
1230 This value is an expanded string (type 2) represented in the reg file
1231 as a series of hex bytes.  In this case the string appears to be a
1232 UTF-16 string.
1233
1234 =head1 NOTE ON THE USE OF ERRNO
1235
1236 Many functions in this library set errno to indicate errors.  These
1237 are the values of errno you may encounter (this list is not
1238 exhaustive):
1239
1240 =over 4
1241
1242 =item ENOTSUP
1243
1244 Corrupt or unsupported Registry file format.
1245
1246 =item ENOKEY
1247
1248 Missing root key.
1249
1250 =item EINVAL
1251
1252 Passed an invalid argument to the function.
1253
1254 =item EFAULT
1255
1256 Followed a Registry pointer which goes outside
1257 the registry or outside a registry block.
1258
1259 =item ELOOP
1260
1261 Registry contains cycles.
1262
1263 =item ERANGE
1264
1265 Field in the registry out of range.
1266
1267 =item EEXIST
1268
1269 Registry key already exists.
1270
1271 =item EROFS
1272
1273 Tried to write to a registry which is not opened for writing.
1274
1275 =back
1276
1277 =head1 ENVIRONMENT VARIABLES
1278
1279 =over 4
1280
1281 =item HIVEX_DEBUG
1282
1283 Setting HIVEX_DEBUG=1 will enable very verbose messages.  This is
1284 useful for debugging problems with the library itself.
1285
1286 =back
1287
1288 =head1 SEE ALSO
1289
1290 L<hivexml(1)>,
1291 L<hivexsh(1)>,
1292 L<virt-win-reg(1)>,
1293 L<guestfs(3)>,
1294 L<http://libguestfs.org/>,
1295 L<virt-cat(1)>,
1296 L<virt-edit(1)>,
1297 L<http://en.wikipedia.org/wiki/Windows_Registry>.
1298
1299 =head1 AUTHORS
1300
1301 Richard W.M. Jones (C<rjones at redhat dot com>)
1302
1303 =head1 COPYRIGHT
1304
1305 Copyright (C) 2009-2010 Red Hat Inc.
1306
1307 Derived from code by Petter Nordahl-Hagen under a compatible license:
1308 Copyright (C) 1997-2007 Petter Nordahl-Hagen.
1309
1310 Derived from code by Markus Stephany under a compatible license:
1311 Copyright (C) 2000-2004 Markus Stephany.
1312
1313 This library is free software; you can redistribute it and/or
1314 modify it under the terms of the GNU Lesser General Public
1315 License as published by the Free Software Foundation;
1316 version 2.1 of the License only.
1317
1318 This library is distributed in the hope that it will be useful,
1319 but WITHOUT ANY WARRANTY; without even the implied warranty of
1320 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1321 Lesser General Public License for more details.
1322 "
1323
1324 and generate_ocaml_interface () =
1325   generate_header OCamlStyle LGPLv2plus;
1326
1327   pr "\
1328 type t
1329 (** A [hive_h] hive file handle. *)
1330
1331 type node
1332 type value
1333 (** Nodes and values. *)
1334
1335 exception Error of string * Unix.error * string
1336 (** Error raised by a function.
1337
1338     The first parameter is the name of the function which raised the error.
1339     The second parameter is the errno (see the [Unix] module).  The third
1340     parameter is a human-readable string corresponding to the errno.
1341
1342     See hivex(3) for a partial list of interesting errno values that
1343     can be generated by the library. *)
1344 exception Handle_closed of string
1345 (** This exception is raised if you call a function on a closed handle. *)
1346
1347 type hive_type =
1348 ";
1349   iteri (
1350     fun i ->
1351       fun (t, _, new_style, description) ->
1352         assert (i = t);
1353         pr "  | REG_%s (** %s *)\n" new_style description
1354   ) hive_types;
1355
1356   pr "\
1357   | REG_UNKNOWN of int32 (** unknown type *)
1358 (** Hive type field. *)
1359
1360 type open_flag =
1361 ";
1362   iteri (
1363     fun i ->
1364       fun (v, flag, description) ->
1365         assert (1 lsl i = v);
1366         pr "  | OPEN_%s (** %s *)\n" flag description
1367   ) open_flags;
1368
1369   pr "\
1370 (** Open flags for {!open_file} call. *)
1371
1372 type set_value = {
1373   key : string;
1374   t : hive_type;
1375   value : string;
1376 }
1377 (** (key, value) pair passed (as an array) to {!node_set_values}. *)
1378 ";
1379
1380   List.iter (
1381     fun (name, style, shortdesc, _) ->
1382       pr "\n";
1383       generate_ocaml_prototype name style;
1384       pr "(** %s *)\n" shortdesc
1385   ) functions
1386
1387 and generate_ocaml_implementation () =
1388   generate_header OCamlStyle LGPLv2plus;
1389
1390   pr "\
1391 type t
1392 type node = int
1393 type value = int
1394
1395 exception Error of string * Unix.error * string
1396 exception Handle_closed of string
1397
1398 (* Give the exceptions names, so they can be raised from the C code. *)
1399 let () =
1400   Callback.register_exception \"ocaml_hivex_error\"
1401     (Error (\"\", Unix.EUNKNOWNERR 0, \"\"));
1402   Callback.register_exception \"ocaml_hivex_closed\" (Handle_closed \"\")
1403
1404 type hive_type =
1405 ";
1406   iteri (
1407     fun i ->
1408       fun (t, _, new_style, _) ->
1409         assert (i = t);
1410         pr "  | REG_%s\n" new_style
1411   ) hive_types;
1412
1413   pr "\
1414   | REG_UNKNOWN of int32
1415
1416 type open_flag =
1417 ";
1418   iteri (
1419     fun i ->
1420       fun (v, flag, description) ->
1421         assert (1 lsl i = v);
1422         pr "  | OPEN_%s (** %s *)\n" flag description
1423   ) open_flags;
1424
1425   pr "\
1426
1427 type set_value = {
1428   key : string;
1429   t : hive_type;
1430   value : string;
1431 }
1432
1433 ";
1434
1435   List.iter (
1436     fun (name, style, _, _) ->
1437       generate_ocaml_prototype ~is_external:true name style
1438   ) functions
1439
1440 and generate_ocaml_prototype ?(is_external = false) name style =
1441   let ocaml_name = if name = "open" then "open_file" else name in
1442
1443   if is_external then pr "external " else pr "val ";
1444   pr "%s : " ocaml_name;
1445   List.iter (
1446     function
1447     | AHive -> pr "t -> "
1448     | ANode _ -> pr "node -> "
1449     | AValue _ -> pr "value -> "
1450     | AString _ -> pr "string -> "
1451     | AStringNullable _ -> pr "string option -> "
1452     | AOpenFlags -> pr "open_flag list -> "
1453     | AUnusedFlags -> ()
1454     | ASetValues -> pr "set_value array -> "
1455   ) (snd style);
1456   (match fst style with
1457    | RErr -> pr "unit" (* all errors are turned into exceptions *)
1458    | RErrDispose -> pr "unit"
1459    | RHive -> pr "t"
1460    | RNode -> pr "node"
1461    | RNodeNotFound -> pr "node"
1462    | RNodeList -> pr "node array"
1463    | RValue -> pr "value"
1464    | RValueList -> pr "value array"
1465    | RString -> pr "string"
1466    | RStringList -> pr "string array"
1467    | RLenType -> pr "hive_type * int"
1468    | RLenTypeVal -> pr "hive_type * string"
1469    | RInt32 -> pr "int32"
1470    | RInt64 -> pr "int64"
1471   );
1472   if is_external then
1473     pr " = \"ocaml_hivex_%s\"" name;
1474   pr "\n"
1475
1476 and generate_ocaml_c () =
1477   generate_header CStyle LGPLv2plus;
1478
1479   pr "\
1480 #include <config.h>
1481
1482 #include <stdio.h>
1483 #include <stdlib.h>
1484 #include <string.h>
1485 #include <stdint.h>
1486 #include <errno.h>
1487
1488 #include <caml/config.h>
1489 #include <caml/alloc.h>
1490 #include <caml/callback.h>
1491 #include <caml/custom.h>
1492 #include <caml/fail.h>
1493 #include <caml/memory.h>
1494 #include <caml/mlvalues.h>
1495 #include <caml/signals.h>
1496 #include <caml/unixsupport.h>
1497
1498 #include <hivex.h>
1499
1500 #define Hiveh_val(v) (*((hive_h **)Data_custom_val(v)))
1501 static value Val_hiveh (hive_h *);
1502 static int HiveOpenFlags_val (value);
1503 static hive_set_value *HiveSetValues_val (value);
1504 static hive_type HiveType_val (value);
1505 static value Val_hive_type (hive_type);
1506 static value copy_int_array (size_t *);
1507 static value copy_type_len (size_t, hive_type);
1508 static value copy_type_value (const char *, size_t, hive_type);
1509 static void raise_error (const char *) Noreturn;
1510 static void raise_closed (const char *) Noreturn;
1511
1512 ";
1513
1514   (* The wrappers. *)
1515   List.iter (
1516     fun (name, style, _, _) ->
1517       pr "/* Automatically generated wrapper for function\n";
1518       pr " * "; generate_ocaml_prototype name style;
1519       pr " */\n";
1520       pr "\n";
1521
1522       let c_params =
1523         List.map (function
1524                   | ASetValues -> ["nrvalues"; "values"]
1525                   | AUnusedFlags -> ["0"]
1526                   | arg -> [name_of_argt arg]) (snd style) in
1527       let c_params =
1528         match fst style with
1529         | RLenType | RLenTypeVal -> c_params @ [["&t"; "&len"]]
1530         | _ -> c_params in
1531       let c_params = List.concat c_params in
1532
1533       let params =
1534         filter_map (function
1535                     | AUnusedFlags -> None
1536                     | arg -> Some (name_of_argt arg ^ "v")) (snd style) in
1537
1538       pr "/* Emit prototype to appease gcc's -Wmissing-prototypes. */\n";
1539       pr "CAMLprim value ocaml_hivex_%s (value %s" name (List.hd params);
1540       List.iter (pr ", value %s") (List.tl params); pr ");\n";
1541       pr "\n";
1542
1543       pr "CAMLprim value\n";
1544       pr "ocaml_hivex_%s (value %s" name (List.hd params);
1545       List.iter (pr ", value %s") (List.tl params);
1546       pr ")\n";
1547       pr "{\n";
1548
1549       pr "  CAMLparam%d (%s);\n"
1550         (List.length params) (String.concat ", " params);
1551       pr "  CAMLlocal1 (rv);\n";
1552       pr "\n";
1553
1554       List.iter (
1555         function
1556         | AHive ->
1557             pr "  hive_h *h = Hiveh_val (hv);\n";
1558             pr "  if (h == NULL)\n";
1559             pr "    raise_closed (\"%s\");\n" name
1560         | ANode n ->
1561             pr "  hive_node_h %s = Int_val (%sv);\n" n n
1562         | AValue n ->
1563             pr "  hive_value_h %s = Int_val (%sv);\n" n n
1564         | AString n ->
1565             pr "  const char *%s = String_val (%sv);\n" n n
1566         | AStringNullable n ->
1567             pr "  const char *%s =\n" n;
1568             pr "    %sv != Val_int (0) ? String_val (Field (%sv, 0)) : NULL;\n"
1569               n n
1570         | AOpenFlags ->
1571             pr "  int flags = HiveOpenFlags_val (flagsv);\n"
1572         | AUnusedFlags -> ()
1573         | ASetValues ->
1574             pr "  int nrvalues = Wosize_val (valuesv);\n";
1575             pr "  hive_set_value *values = HiveSetValues_val (valuesv);\n"
1576       ) (snd style);
1577       pr "\n";
1578
1579       let error_code =
1580         match fst style with
1581         | RErr -> pr "  int r;\n"; "-1"
1582         | RErrDispose -> pr "  int r;\n"; "-1"
1583         | RHive -> pr "  hive_h *r;\n"; "NULL"
1584         | RNode -> pr "  hive_node_h r;\n"; "0"
1585         | RNodeNotFound ->
1586             pr "  errno = 0;\n";
1587             pr "  hive_node_h r;\n";
1588             "0 && errno != 0"
1589         | RNodeList -> pr "  hive_node_h *r;\n"; "NULL"
1590         | RValue -> pr "  hive_value_h r;\n"; "0"
1591         | RValueList -> pr "  hive_value_h *r;\n"; "NULL"
1592         | RString -> pr "  char *r;\n"; "NULL"
1593         | RStringList -> pr "  char **r;\n"; "NULL"
1594         | RLenType ->
1595             pr "  int r;\n";
1596             pr "  size_t len;\n";
1597             pr "  hive_type t;\n";
1598             "-1"
1599         | RLenTypeVal ->
1600             pr "  char *r;\n";
1601             pr "  size_t len;\n";
1602             pr "  hive_type t;\n";
1603             "NULL"
1604         | RInt32 ->
1605             pr "  errno = 0;\n";
1606             pr "  int32_t r;\n";
1607             "-1 && errno != 0"
1608         | RInt64 ->
1609             pr "  errno = 0;\n";
1610             pr "  int64_t r;\n";
1611             "-1 && errno != 0" in
1612
1613       (* The libguestfs OCaml bindings call enter_blocking_section
1614        * here.  However I don't think that is safe, because we are
1615        * holding pointers to caml strings during the call, and these
1616        * could be moved or freed by other threads.  In any case, there
1617        * is very little reason to enter_blocking_section for any hivex
1618        * call, so don't do it.  XXX
1619        *)
1620       (*pr "  caml_enter_blocking_section ();\n";*)
1621       pr "  r = hivex_%s (%s" name (List.hd c_params);
1622       List.iter (pr ", %s") (List.tl c_params);
1623       pr ");\n";
1624       (*pr "  caml_leave_blocking_section ();\n";*)
1625       pr "\n";
1626
1627       (* Dispose of the hive handle (even if hivex_close returns error). *)
1628       (match fst style with
1629        | RErrDispose ->
1630            pr "  /* So we don't double-free in the finalizer. */\n";
1631            pr "  Hiveh_val (hv) = NULL;\n";
1632            pr "\n";
1633        | _ -> ()
1634       );
1635
1636       List.iter (
1637         function
1638         | AHive | ANode _ | AValue _ | AString _ | AStringNullable _
1639         | AOpenFlags | AUnusedFlags -> ()
1640         | ASetValues ->
1641             pr "  free (values);\n";
1642             pr "\n";
1643       ) (snd style);
1644
1645       (* Check for errors. *)
1646       pr "  if (r == %s)\n" error_code;
1647       pr "    raise_error (\"%s\");\n" name;
1648       pr "\n";
1649
1650       (match fst style with
1651        | RErr -> pr "  rv = Val_unit;\n"
1652        | RErrDispose -> pr "  rv = Val_unit;\n"
1653        | RHive -> pr "  rv = Val_hiveh (r);\n"
1654        | RNode -> pr "  rv = Val_int (r);\n"
1655        | RNodeNotFound ->
1656            pr "  if (r == 0)\n";
1657            pr "    caml_raise_not_found ();\n";
1658            pr "\n";
1659            pr "  rv = Val_int (r);\n"
1660        | RNodeList ->
1661            pr "  rv = copy_int_array (r);\n";
1662            pr "  free (r);\n"
1663        | RValue -> pr "  rv = Val_int (r);\n"
1664        | RValueList ->
1665            pr "  rv = copy_int_array (r);\n";
1666            pr "  free (r);\n"
1667        | RString ->
1668            pr "  rv = caml_copy_string (r);\n";
1669            pr "  free (r);\n"
1670        | RStringList ->
1671            pr "  rv = caml_copy_string_array ((const char **) r);\n";
1672            pr "  for (int i = 0; r[i] != NULL; ++i) free (r[i]);\n";
1673            pr "  free (r);\n"
1674        | RLenType -> pr "  rv = copy_type_len (len, t);\n"
1675        | RLenTypeVal ->
1676            pr "  rv = copy_type_value (r, len, t);\n";
1677            pr "  free (r);\n"
1678        | RInt32 -> pr "  rv = caml_copy_int32 (r);\n"
1679        | RInt64 -> pr "  rv = caml_copy_int32 (r);\n"
1680       );
1681
1682       pr "  CAMLreturn (rv);\n";
1683       pr "}\n";
1684       pr "\n";
1685
1686   ) functions;
1687
1688   pr "\
1689 static int
1690 HiveOpenFlags_val (value v)
1691 {
1692   int flags = 0;
1693   value v2;
1694
1695   while (v != Val_int (0)) {
1696     v2 = Field (v, 0);
1697     flags |= 1 << Int_val (v2);
1698     v = Field (v, 1);
1699   }
1700
1701   return flags;
1702 }
1703
1704 static hive_set_value *
1705 HiveSetValues_val (value v)
1706 {
1707   size_t nr_values = Wosize_val (v);
1708   hive_set_value *values = malloc (nr_values * sizeof (hive_set_value));
1709   size_t i;
1710   value v2;
1711
1712   for (i = 0; i < nr_values; ++i) {
1713     v2 = Field (v, i);
1714     values[i].key = String_val (Field (v2, 0));
1715     values[i].t = HiveType_val (Field (v2, 1));
1716     values[i].len = caml_string_length (Field (v2, 2));
1717     values[i].value = String_val (Field (v2, 2));
1718   }
1719
1720   return values;
1721 }
1722
1723 static hive_type
1724 HiveType_val (value v)
1725 {
1726   if (Is_long (v))
1727     return Int_val (v); /* REG_NONE etc. */
1728   else
1729     return Int32_val (Field (v, 0)); /* REG_UNKNOWN of int32 */
1730 }
1731
1732 static value
1733 Val_hive_type (hive_type t)
1734 {
1735   CAMLparam0 ();
1736   CAMLlocal2 (rv, v);
1737
1738   if (t <= %d)
1739     CAMLreturn (Val_int (t));
1740   else {
1741     rv = caml_alloc (1, 0); /* REG_UNKNOWN of int32 */
1742     v = caml_copy_int32 (t);
1743     caml_modify (&Field (rv, 0), v);
1744     CAMLreturn (rv);
1745   }
1746 }
1747
1748 static value
1749 copy_int_array (size_t *xs)
1750 {
1751   CAMLparam0 ();
1752   CAMLlocal2 (v, rv);
1753   size_t nr, i;
1754
1755   for (nr = 0; xs[nr] != 0; ++nr)
1756     ;
1757   if (nr == 0)
1758     CAMLreturn (Atom (0));
1759   else {
1760     rv = caml_alloc (nr, 0);
1761     for (i = 0; i < nr; ++i) {
1762       v = Val_int (xs[i]);
1763       Store_field (rv, i, v); /* Safe because v is not a block. */
1764     }
1765     CAMLreturn (rv);
1766   }
1767 }
1768
1769 static value
1770 copy_type_len (size_t len, hive_type t)
1771 {
1772   CAMLparam0 ();
1773   CAMLlocal2 (v, rv);
1774
1775   rv = caml_alloc (2, 0);
1776   v = Val_hive_type (t);
1777   Store_field (rv, 0, v);
1778   v = Val_int (len);
1779   Store_field (rv, 1, len);
1780   CAMLreturn (rv);
1781 }
1782
1783 static value
1784 copy_type_value (const char *r, size_t len, hive_type t)
1785 {
1786   CAMLparam0 ();
1787   CAMLlocal2 (v, rv);
1788
1789   rv = caml_alloc (2, 0);
1790   v = Val_hive_type (t);
1791   Store_field (rv, 0, v);
1792   v = caml_alloc_string (len);
1793   memcpy (String_val (v), r, len);
1794   caml_modify (&Field (rv, 1), len);
1795   CAMLreturn (rv);
1796 }
1797
1798 /* Raise exceptions. */
1799 static void
1800 raise_error (const char *function)
1801 {
1802   /* Save errno early in case it gets trashed. */
1803   int err = errno;
1804
1805   CAMLparam0 ();
1806   CAMLlocal3 (v1, v2, v3);
1807
1808   v1 = caml_copy_string (function);
1809   v2 = unix_error_of_code (err);
1810   v3 = caml_copy_string (strerror (err));
1811   value vvv[] = { v1, v2, v3 };
1812   caml_raise_with_args (*caml_named_value (\"ocaml_hivex_error\"), 3, vvv);
1813
1814   CAMLnoreturn;
1815 }
1816
1817 static void
1818 raise_closed (const char *function)
1819 {
1820   CAMLparam0 ();
1821   CAMLlocal1 (v);
1822
1823   v = caml_copy_string (function);
1824   caml_raise_with_arg (*caml_named_value (\"ocaml_hivex_closed\"), v);
1825
1826   CAMLnoreturn;
1827 }
1828
1829 /* Allocate handles and deal with finalization. */
1830 static void
1831 hivex_finalize (value hv)
1832 {
1833   hive_h *h = Hiveh_val (hv);
1834   if (h) hivex_close (h);
1835 }
1836
1837 static struct custom_operations hivex_custom_operations = {
1838   (char *) \"hivex_custom_operations\",
1839   hivex_finalize,
1840   custom_compare_default,
1841   custom_hash_default,
1842   custom_serialize_default,
1843   custom_deserialize_default
1844 };
1845
1846 static value
1847 Val_hiveh (hive_h *h)
1848 {
1849   CAMLparam0 ();
1850   CAMLlocal1 (rv);
1851
1852   rv = caml_alloc_custom (&hivex_custom_operations,
1853                           sizeof (hive_h *), 0, 1);
1854   Hiveh_val (rv) = h;
1855
1856   CAMLreturn (rv);
1857 }
1858 " max_hive_type
1859
1860 and generate_perl_pm () =
1861   generate_header HashStyle LGPLv2plus;
1862
1863   pr "\
1864 =pod
1865
1866 =head1 NAME
1867
1868 Win::Hivex - Perl bindings for reading and writing Windows Registry hive files
1869
1870 =head1 SYNOPSIS
1871
1872  use Win::Hivex;
1873
1874  $h = Win::Hivex->open ('SOFTWARE');
1875  $root_node = $h->root ();
1876  print $h->node_name ($root_node);
1877
1878 =head1 DESCRIPTION
1879
1880 The C<Win::Hivex> module provides a Perl XS binding to the
1881 L<hivex(3)> API for reading and writing Windows Registry binary
1882 hive files.
1883
1884 =head1 ERRORS
1885
1886 All errors turn into calls to C<croak> (see L<Carp(3)>).
1887
1888 =head1 METHODS
1889
1890 =over 4
1891
1892 =cut
1893
1894 package Win::Hivex;
1895
1896 use strict;
1897 use warnings;
1898
1899 require XSLoader;
1900 XSLoader::load ('Win::Hivex');
1901
1902 =item open
1903
1904  $h = Win::Hivex::open ($filename,";
1905
1906   List.iter (
1907     fun (_, flag, _) ->
1908       pr "\n                        [%s => 1,]" (String.lowercase flag)
1909   ) open_flags;
1910
1911   pr ")
1912
1913 Open a Windows Registry binary hive file.
1914
1915 The C<verbose> and C<debug> flags enable different levels of
1916 debugging messages.
1917
1918 The C<write> flag is required if you will be modifying the
1919 hive file (see L<hivex(3)/WRITING TO HIVE FILES>).
1920
1921 This function returns a hive handle.  The hive handle is
1922 closed automatically when its reference count drops to 0.
1923
1924 =cut
1925
1926 sub open {
1927   my $proto = shift;
1928   my $class = ref ($proto) || $proto;
1929   my $filename = shift;
1930   my %%flags = @_;
1931   my $flags = 0;
1932
1933 ";
1934
1935   List.iter (
1936     fun (n, flag, description) ->
1937       pr "  # %s\n" description;
1938       pr "  $flags += %d if $flags{%s};\n" n (String.lowercase flag)
1939   ) open_flags;
1940
1941   pr "\
1942
1943   my $self = Win::Hivex::_open ($filename, $flags);
1944   bless $self, $class;
1945   return $self;
1946 }
1947
1948 ";
1949
1950   List.iter (
1951     fun (name, style, _, longdesc) ->
1952       (* The close call isn't explicit in Perl: handles are closed
1953        * when their reference count drops to 0.
1954        *
1955        * The open call is coded specially in Perl.
1956        *
1957        * Therefore we don't generate prototypes for these two calls:
1958        *)
1959       if fst style <> RErrDispose && List.hd (snd style) = AHive then (
1960         let longdesc = replace_str longdesc "C<hivex_" "C<" in
1961         pr "=item %s\n\n " name;
1962         generate_perl_prototype name style;
1963         pr "\n\n";
1964         pr "%s\n\n" longdesc;
1965
1966         (match fst style with
1967          | RErr
1968          | RErrDispose
1969          | RHive
1970          | RString
1971          | RStringList
1972          | RLenType
1973          | RLenTypeVal
1974          | RInt32
1975          | RInt64 -> ()
1976          | RNode ->
1977              pr "\
1978 This returns a node handle.\n\n"
1979          | RNodeNotFound ->
1980              pr "\
1981 This returns a node handle, or C<undef> if the node was not found.\n\n"
1982          | RNodeList ->
1983              pr "\
1984 This returns a list of node handles.\n\n"
1985          | RValue ->
1986              pr "\
1987 This returns a value handle.\n\n"
1988          | RValueList ->
1989              pr "\
1990 This returns a list of value handles.\n\n"
1991         );
1992
1993         if List.mem ASetValues (snd style) then
1994           pr "C<@values> is an array of (keys, value) pairs.
1995 Each element should be a hashref containing C<key>, C<t> (type)
1996 and C<data>.
1997
1998 Any existing values stored at the node are discarded, and their
1999 C<value> handles become invalid.  Thus you can remove all
2000 values stored at C<node> by passing C<@values = []>.\n\n"
2001       )
2002   ) functions;
2003
2004   pr "\
2005 =cut
2006
2007 1;
2008
2009 =back
2010
2011 =head1 COPYRIGHT
2012
2013 Copyright (C) %s Red Hat Inc.
2014
2015 =head1 LICENSE
2016
2017 Please see the file COPYING.LIB for the full license.
2018
2019 =head1 SEE ALSO
2020
2021 L<hivex(3)>,
2022 L<hivexsh(1)>,
2023 L<http://libguestfs.org>,
2024 L<Sys::Guestfs(3)>.
2025
2026 =cut
2027 " copyright_years
2028
2029 and generate_perl_prototype name style =
2030   (* Return type. *)
2031   (match fst style with
2032    | RErr
2033    | RErrDispose -> ()
2034    | RHive -> pr "$h = "
2035    | RNode
2036    | RNodeNotFound -> pr "$node = "
2037    | RNodeList -> pr "@nodes = "
2038    | RValue -> pr "$value = "
2039    | RValueList -> pr "@values = "
2040    | RString -> pr "$string = "
2041    | RStringList -> pr "@strings = "
2042    | RLenType -> pr "($type, $len) = "
2043    | RLenTypeVal -> pr "($type, $data) = "
2044    | RInt32 -> pr "$int32 = "
2045    | RInt64 -> pr "$int64 = "
2046   );
2047
2048   let args = List.tl (snd style) in
2049
2050   (* AUnusedFlags is dropped in the bindings. *)
2051   let args = List.filter ((<>) AUnusedFlags) args in
2052
2053   pr "$h->%s (" name;
2054
2055   let comma = ref false in
2056   List.iter (
2057     fun arg ->
2058       if !comma then pr ", "; comma := true;
2059       match arg with
2060       | AHive -> pr "$h"
2061       | ANode n
2062       | AValue n
2063       | AString n -> pr "$%s" n
2064       | AStringNullable n -> pr "[$%s|undef]" n
2065       | AOpenFlags -> pr "[flags]"
2066       | AUnusedFlags -> assert false
2067       | ASetValues -> pr "\\@values"
2068   ) args;
2069
2070   pr ")"
2071
2072 and generate_perl_xs () =
2073   generate_header CStyle LGPLv2plus;
2074
2075   pr "\
2076 #include \"EXTERN.h\"
2077 #include \"perl.h\"
2078 #include \"XSUB.h\"
2079
2080 #include <string.h>
2081 #include <hivex.h>
2082
2083 #ifndef PRId64
2084 #define PRId64 \"lld\"
2085 #endif
2086
2087 static SV *
2088 my_newSVll(long long val) {
2089 #ifdef USE_64_BIT_ALL
2090   return newSViv(val);
2091 #else
2092   char buf[100];
2093   int len;
2094   len = snprintf(buf, 100, \"%%\" PRId64, val);
2095   return newSVpv(buf, len);
2096 #endif
2097 }
2098
2099 #ifndef PRIu64
2100 #define PRIu64 \"llu\"
2101 #endif
2102
2103 #if 0
2104 static SV *
2105 my_newSVull(unsigned long long val) {
2106 #ifdef USE_64_BIT_ALL
2107   return newSVuv(val);
2108 #else
2109   char buf[100];
2110   int len;
2111   len = snprintf(buf, 100, \"%%\" PRIu64, val);
2112   return newSVpv(buf, len);
2113 #endif
2114 }
2115 #endif
2116
2117 #if 0
2118 /* http://www.perlmonks.org/?node_id=680842 */
2119 static char **
2120 XS_unpack_charPtrPtr (SV *arg) {
2121   char **ret;
2122   AV *av;
2123   I32 i;
2124
2125   if (!arg || !SvOK (arg) || !SvROK (arg) || SvTYPE (SvRV (arg)) != SVt_PVAV)
2126     croak (\"array reference expected\");
2127
2128   av = (AV *)SvRV (arg);
2129   ret = malloc ((av_len (av) + 1 + 1) * sizeof (char *));
2130   if (!ret)
2131     croak (\"malloc failed\");
2132
2133   for (i = 0; i <= av_len (av); i++) {
2134     SV **elem = av_fetch (av, i, 0);
2135
2136     if (!elem || !*elem)
2137       croak (\"missing element in list\");
2138
2139     ret[i] = SvPV_nolen (*elem);
2140   }
2141
2142   ret[i] = NULL;
2143
2144   return ret;
2145 }
2146 #endif
2147
2148 /* Handle set_values parameter. */
2149 typedef struct pl_set_values {
2150   size_t nr_values;
2151   hive_set_value *values;
2152 } pl_set_values;
2153
2154 static pl_set_values
2155 unpack_pl_set_values (SV *sv)
2156 {
2157   pl_set_values ret;
2158   AV *av;
2159   I32 i;
2160
2161   if (!sv || !SvOK (sv) || !SvROK (sv) || SvTYPE (SvRV (sv)) != SVt_PVAV)
2162     croak (\"array reference expected\");
2163
2164   av = (AV *)SvRV(sv);
2165   ret.nr_values = av_len (av) + 1;
2166   ret.values = malloc (ret.nr_values * sizeof (hive_set_value));
2167   if (!ret.values)
2168     croak (\"malloc failed\");
2169
2170   for (i = 0; i <= av_len (av); i++) {
2171     SV **hvp = av_fetch (av, i, 0);
2172
2173     if (!hvp || !*hvp || !SvROK (*hvp) || SvTYPE (SvRV (*hvp)) != SVt_PVHV)
2174       croak (\"missing element in list or not a hash ref\");
2175
2176     HV *hv = (HV *)SvRV(*hvp);
2177
2178     SV **svp;
2179     svp = hv_fetch (hv, \"key\", 3, 0);
2180     if (!svp || !*svp)
2181       croak (\"missing 'key' in hash\");
2182     ret.values[i].key = SvPV_nolen (*svp);
2183
2184     svp = hv_fetch (hv, \"t\", 1, 0);
2185     if (!svp || !*svp)
2186       croak (\"missing 't' in hash\");
2187     ret.values[i].t = SvIV (*svp);
2188
2189     svp = hv_fetch (hv, \"value\", 5, 0);
2190     if (!svp || !*svp)
2191       croak (\"missing 'value' in hash\");
2192     ret.values[i].value = SvPV (*svp, ret.values[i].len);
2193   }
2194
2195   return ret;
2196 }
2197
2198 MODULE = Win::Hivex  PACKAGE = Win::Hivex
2199
2200 PROTOTYPES: ENABLE
2201
2202 hive_h *
2203 _open (filename, flags)
2204       char *filename;
2205       int flags;
2206    CODE:
2207       RETVAL = hivex_open (filename, flags);
2208       if (!RETVAL)
2209         croak (\"hivex_open: %%s: %%s\", filename, strerror (errno));
2210  OUTPUT:
2211       RETVAL
2212
2213 void
2214 DESTROY (h)
2215       hive_h *h;
2216  PPCODE:
2217       if (hivex_close (h) == -1)
2218         croak (\"hivex_close: %%s\", strerror (errno));
2219
2220 ";
2221
2222   List.iter (
2223     fun (name, style, _, longdesc) ->
2224       (* The close and open calls are handled specially above. *)
2225       if fst style <> RErrDispose && List.hd (snd style) = AHive then (
2226         (match fst style with
2227          | RErr -> pr "void\n"
2228          | RErrDispose -> failwith "perl bindings cannot handle a call which disposes of the handle"
2229          | RHive -> failwith "perl bindings cannot handle a call which returns a handle"
2230          | RNode
2231          | RNodeNotFound
2232          | RValue
2233          | RString -> pr "SV *\n"
2234          | RNodeList
2235          | RValueList
2236          | RStringList
2237          | RLenType
2238          | RLenTypeVal -> pr "void\n"
2239          | RInt32 -> pr "SV *\n"
2240          | RInt64 -> pr "SV *\n"
2241         );
2242
2243         (* Call and arguments. *)
2244         let perl_params =
2245           filter_map (function
2246                       | AUnusedFlags -> None
2247                       | arg -> Some (name_of_argt arg)) (snd style) in
2248
2249         let c_params =
2250           List.map (function
2251                     | AUnusedFlags -> "0"
2252                     | ASetValues -> "values.nr_values, values.values"
2253                     | arg -> name_of_argt arg) (snd style) in
2254
2255         pr "%s (%s)\n" name (String.concat ", " perl_params);
2256         iteri (
2257           fun i ->
2258             function
2259             | AHive ->
2260                 pr "      hive_h *h;\n"
2261             | ANode n
2262             | AValue n ->
2263                 pr "      int %s;\n" n
2264             | AString n ->
2265                 pr "      char *%s;\n" n
2266             | AStringNullable n ->
2267                 (* http://www.perlmonks.org/?node_id=554277 *)
2268                 pr "      char *%s = SvOK(ST(%d)) ? SvPV_nolen(ST(%d)) : NULL;\n" n i i
2269             | AOpenFlags ->
2270                 pr "      int flags;\n"
2271             | AUnusedFlags -> ()
2272             | ASetValues ->
2273                 pr "      pl_set_values values = unpack_pl_set_values (ST(%d));\n" i
2274         ) (snd style);
2275
2276         let free_args () =
2277           List.iter (
2278             function
2279             | ASetValues ->
2280                 pr "      free (values.values);\n"
2281             | AHive | ANode _ | AValue _ | AString _ | AStringNullable _
2282             | AOpenFlags | AUnusedFlags -> ()
2283           ) (snd style)
2284         in
2285
2286         (* Code. *)
2287         (match fst style with
2288          | RErr ->
2289              pr "PREINIT:\n";
2290              pr "      int r;\n";
2291              pr " PPCODE:\n";
2292              pr "      r = hivex_%s (%s);\n"
2293                name (String.concat ", " c_params);
2294              free_args ();
2295              pr "      if (r == -1)\n";
2296              pr "        croak (\"%%s: %%s\", \"%s\", strerror (errno));\n"
2297                name;
2298
2299          | RErrDispose -> assert false
2300          | RHive -> assert false
2301
2302          | RInt32
2303          | RNode
2304          | RValue ->
2305              pr "PREINIT:\n";
2306              pr "      /* hive_node_h = hive_value_h = size_t so we cheat\n";
2307              pr "         here to simplify the generator */\n";
2308              pr "      size_t r;\n";
2309              pr "   CODE:\n";
2310              pr "      r = hivex_%s (%s);\n"
2311                name (String.concat ", " c_params);
2312              free_args ();
2313              pr "      if (r == 0)\n";
2314              pr "        croak (\"%%s: %%s\", \"%s\", strerror (errno));\n"
2315                name;
2316              pr "      RETVAL = newSViv (r);\n";
2317              pr " OUTPUT:\n";
2318              pr "      RETVAL\n"
2319
2320          | RNodeNotFound ->
2321              pr "PREINIT:\n";
2322              pr "      hive_node_h r;\n";
2323              pr "   CODE:\n";
2324              pr "      errno = 0;\n";
2325              pr "      r = hivex_%s (%s);\n"
2326                name (String.concat ", " c_params);
2327              free_args ();
2328              pr "      if (r == 0 && errno != 0)\n";
2329              pr "        croak (\"%%s: %%s\", \"%s\", strerror (errno));\n"
2330                name;
2331              pr "      if (r == 0)\n";
2332              pr "        RETVAL = &PL_sv_undef;\n";
2333              pr "      else\n";
2334              pr "        RETVAL = newSViv (r);\n";
2335              pr " OUTPUT:\n";
2336              pr "      RETVAL\n"
2337
2338          | RString ->
2339              pr "PREINIT:\n";
2340              pr "      char *r;\n";
2341              pr "   CODE:\n";
2342              pr "      r = hivex_%s (%s);\n"
2343                name (String.concat ", " c_params);
2344              free_args ();
2345              pr "      if (r == NULL)\n";
2346              pr "        croak (\"%%s: %%s\", \"%s\", strerror (errno));\n"
2347                name;
2348              pr "      RETVAL = newSVpv (r, 0);\n";
2349              pr "      free (r);\n";
2350              pr " OUTPUT:\n";
2351              pr "      RETVAL\n"
2352
2353          | RNodeList
2354          | RValueList ->
2355              pr "PREINIT:\n";
2356              pr "      size_t *r;\n";
2357              pr "      int i, n;\n";
2358              pr " PPCODE:\n";
2359              pr "      r = hivex_%s (%s);\n"
2360                name (String.concat ", " c_params);
2361              free_args ();
2362              pr "      if (r == NULL)\n";
2363              pr "        croak (\"%%s: %%s\", \"%s\", strerror (errno));\n"
2364                name;
2365              pr "      for (n = 0; r[n] != 0; ++n) /**/;\n";
2366              pr "      EXTEND (SP, n);\n";
2367              pr "      for (i = 0; i < n; ++i)\n";
2368              pr "        PUSHs (sv_2mortal (newSViv (r[i])));\n";
2369              pr "      free (r);\n";
2370
2371          | RStringList ->
2372              pr "PREINIT:\n";
2373              pr "      char **r;\n";
2374              pr "      int i, n;\n";
2375              pr " PPCODE:\n";
2376              pr "      r = hivex_%s (%s);\n"
2377                name (String.concat ", " c_params);
2378              free_args ();
2379              pr "      if (r == NULL)\n";
2380              pr "        croak (\"%%s: %%s\", \"%s\", strerror (errno));\n"
2381                name;
2382              pr "      for (n = 0; r[n] != NULL; ++n) /**/;\n";
2383              pr "      EXTEND (SP, n);\n";
2384              pr "      for (i = 0; i < n; ++i) {\n";
2385              pr "        PUSHs (sv_2mortal (newSVpv (r[i], 0)));\n";
2386              pr "        free (r[i]);\n";
2387              pr "      }\n";
2388              pr "      free (r);\n";
2389
2390          | RLenType ->
2391              pr "PREINIT:\n";
2392              pr "      int r;\n";
2393              pr "      size_t len;\n";
2394              pr "      hive_type type;\n";
2395              pr " PPCODE:\n";
2396              pr "      r = hivex_%s (%s, &len, &type);\n"
2397                name (String.concat ", " c_params);
2398              free_args ();
2399              pr "      if (r == -1)\n";
2400              pr "        croak (\"%%s: %%s\", \"%s\", strerror (errno));\n"
2401                name;
2402              pr "      EXTEND (SP, 2);\n";
2403              pr "      PUSHs (sv_2mortal (newSViv (type)));\n";
2404              pr "      PUSHs (sv_2mortal (newSViv (len)));\n";
2405
2406          | RLenTypeVal ->
2407              pr "PREINIT:\n";
2408              pr "      char *r;\n";
2409              pr "      size_t len;\n";
2410              pr "      hive_type type;\n";
2411              pr " PPCODE:\n";
2412              pr "      r = hivex_%s (%s, &len, &type);\n"
2413                name (String.concat ", " c_params);
2414              free_args ();
2415              pr "      if (r == NULL)\n";
2416              pr "        croak (\"%%s: %%s\", \"%s\", strerror (errno));\n"
2417                name;
2418              pr "      EXTEND (SP, 2);\n";
2419              pr "      PUSHs (sv_2mortal (newSViv (type)));\n";
2420              pr "      PUSHs (sv_2mortal (newSVpv (r, len)));\n";
2421              pr "      free (r);\n";
2422
2423          | RInt64 ->
2424              pr "PREINIT:\n";
2425              pr "      int64_t r;\n";
2426              pr "   CODE:\n";
2427              pr "      errno = 0;\n";
2428              pr "      r = hivex_%s (%s);\n"
2429                name (String.concat ", " c_params);
2430              free_args ();
2431              pr "      if (r == -1 && errno != 0)\n";
2432              pr "        croak (\"%%s: %%s\", \"%s\", strerror (errno));\n"
2433                name;
2434              pr "      RETVAL = my_newSVll (r);\n";
2435              pr " OUTPUT:\n";
2436              pr "      RETVAL\n"
2437         );
2438         pr "\n"
2439       )
2440   ) functions
2441
2442 and generate_python_py () =
2443   generate_header HashStyle LGPLv2plus
2444
2445 and generate_python_c () =
2446   generate_header CStyle LGPLv2plus
2447
2448 let output_to filename k =
2449   let filename_new = filename ^ ".new" in
2450   chan := open_out filename_new;
2451   k ();
2452   close_out !chan;
2453   chan := Pervasives.stdout;
2454
2455   (* Is the new file different from the current file? *)
2456   if Sys.file_exists filename && files_equal filename filename_new then
2457     unlink filename_new                 (* same, so skip it *)
2458   else (
2459     (* different, overwrite old one *)
2460     (try chmod filename 0o644 with Unix_error _ -> ());
2461     rename filename_new filename;
2462     chmod filename 0o444;
2463     printf "written %s\n%!" filename;
2464   )
2465
2466 let perror msg = function
2467   | Unix_error (err, _, _) ->
2468       eprintf "%s: %s\n" msg (error_message err)
2469   | exn ->
2470       eprintf "%s: %s\n" msg (Printexc.to_string exn)
2471
2472 (* Main program. *)
2473 let () =
2474   let lock_fd =
2475     try openfile "configure.ac" [O_RDWR] 0
2476     with
2477     | Unix_error (ENOENT, _, _) ->
2478         eprintf "\
2479 You are probably running this from the wrong directory.
2480 Run it from the top source directory using the command
2481   generator/generator.ml
2482 ";
2483         exit 1
2484     | exn ->
2485         perror "open: configure.ac" exn;
2486         exit 1 in
2487
2488   (* Acquire a lock so parallel builds won't try to run the generator
2489    * twice at the same time.  Subsequent builds will wait for the first
2490    * one to finish.  Note the lock is released implicitly when the
2491    * program exits.
2492    *)
2493   (try lockf lock_fd F_LOCK 1
2494    with exn ->
2495      perror "lock: configure.ac" exn;
2496      exit 1);
2497
2498   check_functions ();
2499
2500   output_to "lib/hivex.h" generate_c_header;
2501   output_to "lib/hivex.pod" generate_c_pod;
2502
2503   output_to "ocaml/hivex.mli" generate_ocaml_interface;
2504   output_to "ocaml/hivex.ml" generate_ocaml_implementation;
2505   output_to "ocaml/hivex_c.c" generate_ocaml_c;
2506
2507   output_to "perl/lib/Win/Hivex.pm" generate_perl_pm;
2508   output_to "perl/Hivex.xs" generate_perl_xs;
2509
2510   output_to "python/hivex.py" generate_python_py;
2511   output_to "python/hivex-py.c" generate_python_c;
2512
2513   (* Always generate this file last, and unconditionally.  It's used
2514    * by the Makefile to know when we must re-run the generator.
2515    *)
2516   let chan = open_out "generator/stamp-generator" in
2517   fprintf chan "1\n";
2518   close_out chan;
2519
2520   printf "generated %d lines of code\n" !lines