b909aab8a809bcca48c004979c29bccab1af8239
[ocaml-bitstring.git] / bitmatch.mli
1 (** Bitmatch library. *)
2 (* Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  *
18  * $Id: bitmatch.mli,v 1.11 2008-04-02 13:22:07 rjones Exp $
19  *)
20
21 (**
22    {{:#reference}Jump straight to the reference section for
23    documentation on types and functions}.
24
25    {2 Introduction}
26
27    Bitmatch adds Erlang-style bitstrings and matching over bitstrings
28    as a syntax extension and library for OCaml.  You can use
29    this module to both parse and generate binary formats, for
30    example, communications protocols, disk formats and binary files.
31
32    {{:http://et.redhat.com/~rjones/bitmatch/}OCaml bitmatch website}
33
34    {2 Examples}
35
36    A function which can parse IPv4 packets:
37
38 {[
39 let display pkt =
40   bitmatch pkt with
41   (* IPv4 packet header
42     0                   1                   2                   3   
43     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 
44    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
45    |   4   |  IHL  |Type of Service|          Total Length         |
46    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
47    |         Identification        |Flags|      Fragment Offset    |
48    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
49    |  Time to Live |    Protocol   |         Header Checksum       |
50    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
51    |                       Source Address                          |
52    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
53    |                    Destination Address                        |
54    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
55    |                    Options                    |    Padding    |
56    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
57   *)
58   | 4 : 4; hdrlen : 4; tos : 8;   length : 16;
59     identification : 16;          flags : 3; fragoffset : 13;
60     ttl : 8; protocol : 8;        checksum : 16;
61     source : 32;
62     dest : 32;
63     options : (hdrlen-5)*32 : bitstring;
64     payload : -1 : bitstring ->
65
66     printf "IPv4:\n";
67     printf "  header length: %d * 32 bit words\n" hdrlen;
68     printf "  type of service: %d\n" tos;
69     printf "  packet length: %d bytes\n" length;
70     printf "  identification: %d\n" identification;
71     printf "  flags: %d\n" flags;
72     printf "  fragment offset: %d\n" fragoffset;
73     printf "  ttl: %d\n" ttl;
74     printf "  protocol: %d\n" protocol;
75     printf "  checksum: %d\n" checksum;
76     printf "  source: %lx  dest: %lx\n" source dest;
77     printf "  header options + padding:\n";
78     Bitmatch.hexdump_bitstring stdout options;
79     printf "  packet payload:\n";
80     Bitmatch.hexdump_bitstring stdout payload
81
82   | version : 4 ->
83     eprintf "unknown IP version %d\n" version;
84     exit 1
85
86   | _ as pkt ->
87     eprintf "data is smaller than one nibble:\n";
88     Bitmatch.hexdump_bitstring stderr pkt;
89     exit 1
90 ]}
91
92    A program which can parse
93    {{:http://lxr.linux.no/linux/include/linux/ext3_fs.h}Linux EXT3 filesystem superblocks}:
94
95 {[
96 let bits = Bitmatch.bitstring_of_file "tests/ext3_sb"
97
98 let () =
99   bitmatch bits with
100   | s_inodes_count : 32 : littleendian;       (* Inodes count *)
101     s_blocks_count : 32 : littleendian;       (* Blocks count *)
102     s_r_blocks_count : 32 : littleendian;     (* Reserved blocks count *)
103     s_free_blocks_count : 32 : littleendian;  (* Free blocks count *)
104     s_free_inodes_count : 32 : littleendian;  (* Free inodes count *)
105     s_first_data_block : 32 : littleendian;   (* First Data Block *)
106     s_log_block_size : 32 : littleendian;     (* Block size *)
107     s_log_frag_size : 32 : littleendian;      (* Fragment size *)
108     s_blocks_per_group : 32 : littleendian;   (* # Blocks per group *)
109     s_frags_per_group : 32 : littleendian;    (* # Fragments per group *)
110     s_inodes_per_group : 32 : littleendian;   (* # Inodes per group *)
111     s_mtime : 32 : littleendian;              (* Mount time *)
112     s_wtime : 32 : littleendian;              (* Write time *)
113     s_mnt_count : 16 : littleendian;          (* Mount count *)
114     s_max_mnt_count : 16 : littleendian;      (* Maximal mount count *)
115     0xef53 : 16 : littleendian ->             (* Magic signature *)
116
117     printf "ext3 superblock:\n";
118     printf "  s_inodes_count = %ld\n" s_inodes_count;
119     printf "  s_blocks_count = %ld\n" s_blocks_count;
120     printf "  s_free_inodes_count = %ld\n" s_free_inodes_count;
121     printf "  s_free_blocks_count = %ld\n" s_free_blocks_count
122
123   | _ ->
124     eprintf "not an ext3 superblock!\n%!";
125     exit 2
126 ]}
127
128    Constructing packets for a simple binary message
129    protocol:
130
131 {[
132 (*
133   +---------------+---------------+--------------------------+
134   | type          | subtype       | parameter                |
135   +---------------+---------------+--------------------------+
136    <-- 16 bits --> <-- 16 bits --> <------- 32 bits -------->
137
138   All fields are in network byte order.
139 *)
140
141 let make_message typ subtype param =
142   (BITSTRING
143      typ : 16;
144      subtype : 16;
145      param : 32) ;;
146 ]}
147
148    {2 Loading, creating bitstrings}
149
150    The basic data type is the {!bitstring}, a string of bits of
151    arbitrary length.  Bitstrings can be any length in bits and
152    operations do not need to be byte-aligned (although they will
153    generally be more efficient if they are byte-aligned).
154
155    Internally a bitstring is stored as a normal OCaml [string]
156    together with an offset and length, where the offset and length are
157    measured in bits.  Thus one can efficiently form substrings of
158    bitstrings, overlay a bitstring on existing data, and load and save
159    bitstrings from files or other external sources.
160
161    To load a bitstring from a file use {!bitstring_of_file} or
162    {!bitstring_of_chan}.
163
164    There are also functions to create bitstrings from arbitrary data.
165    See the {{:#reference}reference} below.
166
167    {2 Matching bitstrings with patterns}
168
169    Use the [bitmatch] operator (part of the syntax extension) to break
170    apart a bitstring into its fields.  [bitmatch] works a lot like the
171    OCaml [match] operator.
172
173    The general form of [bitmatch] is:
174
175    [bitmatch] {i bitstring-expression} [with]
176
177    [|] {i pattern} [->] {i code}
178
179    [|] {i pattern} [->] {i code}
180
181    [|] ...
182
183    As with normal match, the statement attempts to match the
184    bitstring against each pattern in turn.  If none of the patterns
185    match then the standard library [Match_failure] exception is
186    thrown.
187
188    Patterns look a bit different from normal match patterns.  The
189    consist of a list of bitfields separated by [;] where each bitfield
190    contains a bind variable, the width (in bits) of the field, and
191    other information.  Some example patterns:
192
193 {[
194 bitmatch bits with
195
196 | version : 8; name : 8; param : 8 -> ...
197
198    (* Bitstring of at least 3 bytes.  First byte is the version
199       number, second byte is a field called name, third byte is
200       a field called parameter. *)
201
202 | flag : 1 ->
203    printf "flag is %b\n" flag
204
205    (* A single flag bit (mapped into an OCaml boolean). *)
206
207 | len : 4; data : 1+len ->
208    printf "len = %d, data = 0x%Lx\n" len data
209
210    (* A 4-bit length, followed by 1-16 bits of data, where the
211       length of the data is computed from len. *)
212
213 | ipv6_source : 128 : bitstring;
214   ipv6_dest : 128 : bitstring -> ...
215
216    (* IPv6 source and destination addresses.  Each is 128 bits
217       and is mapped into a bitstring type which will be a substring
218       of the main bitstring expression. *)
219 ]}
220
221    You can also add conditional when-clauses:
222
223 {[
224 | version : 4
225     when version = 4 || version = 6 -> ...
226
227    (* Only match and run the code when version is 4 or 6.  If
228       it isn't we will drop through to the next case. *)
229 ]}
230
231    Note that the pattern is only compared against the first part of
232    the bitstring (there may be more data in the bitstring following
233    the pattern, which is not matched).  In terms of regular
234    expressions you might say that the pattern matches [^pattern], not
235    [^pattern$].  To ensure that the bitstring contains only the
236    pattern, add a length -1 bitstring to the end and test that its
237    length is zero in the when-clause:
238
239 {[
240 | n : 4;
241   rest : -1 : bitstring
242     when Bitmatch.bitstring_length rest = 0 -> ...
243
244    (* Only matches exactly 4 bits. *)
245 ]}
246
247    Normally the first part of each field is a binding variable,
248    but you can also match a constant, as in:
249
250 {[
251 | 6 : 4 -> ...
252
253    (* Only matches if the first 4 bits contain the integer 6. *)
254 ]}
255
256    {3:patternfieldreference Pattern field reference}
257
258    The exact format of each pattern field is:
259
260    [pattern : length [: qualifier [,qualifier ...]]]
261
262    [pattern] is the pattern, binding variable name, or constant to
263    match.  [length] is the length in bits which may be either a
264    constant or an expression.  The length expression is just an OCaml
265    expression and can use any values defined in the program, and refer
266    back to earlier fields (but not to later fields).
267
268    Integers can only have lengths in the range \[1..64\] bits.  See the
269    {{:#integertypes}integer types} section below for how these are
270    mapped to the OCaml int/int32/int64 types.  This is checked
271    at compile time if the length expression is constant, otherwise it is
272    checked at runtime and you will get a runtime exception eg. in
273    the case of a computed length expression.
274
275    A bitstring field of length -1 matches all the rest of the
276    bitstring (thus this is only useful as the last field in a
277    pattern).
278
279    A bitstring field of length 0 matches an empty bitstring
280    (occasionally useful when matching optional subfields).
281
282    Qualifiers are a list of identifiers which control the type,
283    signedness and endianness of the field.  Permissible qualifiers are:
284
285    - [int] (field has an integer type)
286    - [bitstring] (field is a bitstring type)
287    - [signed] (field is signed)
288    - [unsigned] (field is unsigned)
289    - [bigendian] (field is big endian - a.k.a network byte order)
290    - [littleendian] (field is little endian - a.k.a Intel byte order)
291    - [nativeendian] (field is same endianness as the machine)
292
293    The default settings are [int], [unsigned], [bigendian].
294
295    Note that many of these qualifiers cannot be used together,
296    eg. bitstrings do not have endianness.  The syntax extension should
297    give you a compile-time error if you use incompatible qualifiers.
298
299    {3 Other cases in bitmatch}
300
301    As well as a list of fields, it is possible to name the
302    bitstring and/or have a default match case:
303
304 {[
305 | _ -> ...
306
307    (* Default match case. *)
308
309 | _ as pkt -> ...
310
311    (* Default match case, with 'pkt' bound to the whole bitstring. *)
312 ]}
313
314    {2 Constructing bitstrings}
315
316    Bitstrings may be constructed using the [BITSTRING] operator (as an
317    expression).  The [BITSTRING] operator takes a list of fields,
318    similar to the list of fields for matching:
319
320 {[
321 let version = 1 ;;
322 let data = 10 ;;
323 let bits =
324   BITSTRING
325     version : 4;
326     data : 12 ;;
327
328    (* Constructs a 16-bit bitstring with the first four bits containing
329       the integer 1, and the following 12 bits containing the integer 10,
330       arranged in network byte order. *)
331
332 Bitmatch.hexdump_bitstring stdout bits ;;
333
334    (* Prints:
335
336       00000000  10 0a         |..              |
337     *)
338 ]}
339
340    The format of each field is the same as for pattern fields (see
341    {{:#patternfieldreference}Pattern field reference section}), and
342    things like computed length fields, fixed value fields, insertion
343    of bitstrings within bitstrings, etc. are all supported.
344
345    {3 Construction exception}
346
347    The [BITSTRING] operator may throw a {!Construct_failure}
348    exception at runtime.
349
350    Runtime errors include:
351
352    - int field length not in the range \[1..64\]
353    - a bitstring with a length declared which doesn't have the
354      same length at runtime
355    - trying to insert an out of range value into an int field
356      (eg. an unsigned int field which is 2 bits wide can only
357      take values in the range \[0..3\]).
358
359    {2:integertypes Integer types}
360
361    Integer types are mapped to OCaml types [bool], [int], [int32] or
362    [int64] using a system which tries to ensure that (a) the types are
363    reasonably predictable and (b) the most efficient type is
364    preferred.
365
366    The rules are slightly different depending on whether the bit
367    length expression in the field is a compile-time constant or a
368    computed expression.
369
370    Detection of compile-time constants is quite simplistic so only an
371    immediate, simple integer is recognised as a constant and anything
372    else is considered a computed expression, even expressions such as
373    [5-2] which are obviously (to our eyes) constant.
374
375    In any case the bit size of an integer is limited to the range
376    \[1..64\].  This is detected as a compile-time error if that is
377    possible, otherwise a runtime check is added which can throw an
378    [Invalid_argument] exception.
379
380    The mapping is thus:
381
382    {v
383    Bit size         ---- OCaml type ----
384                 Constant        Computed expression
385
386    1            bool            int64
387    2..31        int             int64
388    32           int32           int64
389    33..64       int64           int64
390    v}
391
392    A possible future extension may allow people with 64 bit computers
393    to specify a more optimal [int] type for bit sizes in the range
394    [32..63].  If this was implemented then such code {i could not even
395    be compiled} on 32 bit platforms, so it would limit portability.
396
397    Another future extension may be to allow computed
398    expressions to assert min/max range for the bit size,
399    allowing a more efficient data type than int64 to be
400    used.  (Of course under such circumstances there would
401    still need to be a runtime check to enforce the
402    size).
403
404    {2 Compiling}
405
406    Using the compiler directly you can do:
407
408    {v
409    ocamlc -I bitmatch -pp "camlp4o -I bitmatch pa_bitmatch.cmo" foo.ml -o foo
410    v}
411
412    Using findlib:
413
414    {v
415    ocamlfind ocamlc -package bitmatch.syntax -linkpkg foo.ml -o foo
416    v}
417
418    {2 Security and type safety}
419
420    {3 Security on input}
421
422    The main concerns for input are buffer overflows and denial
423    of service.
424
425    It is believed that this library is robust against attempted buffer
426    overflows.  In addition to OCaml's normal bounds checks, we check
427    that field lengths are >= 0, and many additional checks.
428
429    Denial of service attacks are more problematic although we still
430    believe that the library is robust.  We only work forwards through
431    the bitstring, thus computation will eventually terminate.  As for
432    computed lengths, code such as this is thought to be secure:
433
434 {[
435 bitmatch bits with
436 | len : 64;
437   buffer : Int64.to_int len : bitstring ->
438 ]}
439
440    The [len] field can be set arbitrarily large by an attacker, but
441    when pattern-matching against the [buffer] field this merely causes
442    a test such as [if len <= remaining_size] to fail.  Even if the
443    length is chosen so that [buffer] bitstring is allocated, the
444    allocation of sub-bitstrings is efficient and doesn't involve an
445    arbitary-sized allocation or any copying.
446
447    The main protection against attackers should therefore be to ensure
448    that the main program will only read input bitstrings up to a
449    certain length, which is outside the scope of this library.
450
451    {3 Security on output}
452
453    As with the input side, computed lengths are believed to be
454    safe.  For example:
455
456 {[
457 let len = read_untrusted_source () in
458 let buffer = allocate_bitstring () in
459 BITSTRING
460   buffer : len : bitstring
461 ]}
462
463    This code merely causes a check that buffer's length is the same as
464    [len].  However the program function [allocate_bitstring] must
465    refuse to allocate an oversized buffer (but that is outside the
466    scope of this library).
467
468    {3 Order of evaluation}
469
470    In [bitmatch] statements, fields are evaluated left to right.
471
472    Note that the when-clause is evaluated {i last}, so if you are
473    relying on the when-clause to filter cases then your code may do a
474    lot of extra and unncessary pattern-matching work on fields which
475    may never be needed just to evaluate the when-clause.  You can
476    usually rearrange the code to do only the first part of the match,
477    followed by the when-clause, followed by a second inner bitmatch.
478
479    {3 Safety}
480
481    The current implementation is believed to be fully type-safe,
482    and makes compile and run-time checks where appropriate.  If
483    you find a case where a check is missing please submit a
484    bug report or a patch.
485
486    {2 Limits}
487
488    These are thought to be the current limits:
489
490    Integers: \[1..64\] bits.
491
492    Bitstrings (32 bit platforms): maximum length is limited
493    by the string size, ie. 16 MBytes.
494
495    Bitstrings (64 bit platforms): maximum length is thought to be
496    limited by the string size, ie. effectively unlimited.
497
498    Bitstrings must be loaded into memory before we can match against
499    them.  Thus available memory may be considered a limit for some
500    applications.
501
502    {2:reference Reference}
503    {3 Types}
504 *)
505
506 type bitstring = string * int * int
507 (** [bitstring] is the basic type used to store bitstrings.
508
509     The type contains the underlying data (a string),
510     the current bit offset within the string and the
511     current bit length of the string (counting from the
512     bit offset).  Note that the offsets are bits, not bytes.
513
514     Normally you don't need to use the bitstring type
515     directly, since there are functions and syntax
516     extensions which hide the details.
517     See {!bitstring_of_file}, {!hexdump_bitstring},
518     {!bitstring_length}.
519 *)
520
521 (** {3 Exceptions} *)
522
523 exception Construct_failure of string * string * int * int
524 (** [Construct_failure (message, file, line, char)] may be
525     raised by the [BITSTRING] constructor.
526
527     Common reasons are that values are out of range of
528     the fields that contain them, or that computed lengths
529     are impossible (eg. negative length bitfields).
530
531     [message] is the error message.
532
533     [file], [line] and [char] point to the original source
534     location of the [BITSTRING] constructor that failed.
535 *)
536
537 (** {3 Bitstrings} *)
538
539 val empty_bitstring : bitstring
540 (** [empty_bitstring] is the empty, zero-length bitstring. *)
541
542 val create_bitstring : int -> bitstring
543 (** [create_bitstring n] creates an [n] bit bitstring
544     containing all zeroes. *)
545
546 val make_bitstring : int -> char -> bitstring
547 (** [make_bitstring n c] creates an [n] bit bitstring
548     containing the repeated 8 bit pattern in [c].
549
550     For example, [make_bitstring 16 '\x5a'] will create
551     the bitstring [0x5a5a] or in binary [0101 1010 0101 1010].
552
553     Note that the length is in bits, not bytes. *)
554
555 val bitstring_of_chan : in_channel -> bitstring
556 (** [bitstring_of_chan chan] loads the contents of
557     the input channel [chan] as a bitstring.
558
559     The length of the final bitstring is determined
560     by the remaining input in [chan], but will always
561     be a multiple of 8 bits. *)
562
563 val bitstring_of_file : string -> bitstring
564 (** [bitstring_of_file filename] loads the named file
565     into a bitstring. *)
566
567 val hexdump_bitstring : out_channel -> bitstring -> unit
568 (** [hexdump_bitstring chan bitstring] prints the bitstring
569     to the output channel in a format similar to the
570     Unix command [hexdump -C]. *)
571
572 val bitstring_length : bitstring -> int
573 (** [bitstring_length bitstring] returns the length of
574     the bitstring in bits. *)
575
576 (** {3 Bitstring buffer} *)
577
578 module Buffer : sig
579   type t
580   val create : unit -> t
581   val contents : t -> bitstring
582   val add_bits : t -> string -> int -> unit
583   val add_bit : t -> bool -> unit
584   val add_byte : t -> int -> unit
585 end
586 (** Buffers are mainly used by the [BITSTRING] constructor, but
587     may also be useful for end users.  They work much like the
588     standard library [Buffer] module. *)
589
590 (** {3 Miscellaneous} *)
591
592 val debug : bool ref
593 (** Set this variable to true to enable extended debugging.
594     This only works if debugging was also enabled in the
595     [pa_bitmatch.ml] file at compile time, otherwise it
596     does nothing. *)
597
598 (**/**)
599
600 (* Private functions, called from generated code.  Do not use
601  * these directly - they are not safe.
602  *)
603
604 val extract_bitstring : string -> int -> int -> int -> bitstring * int * int
605
606 val extract_remainder : string -> int -> int -> bitstring * int * int
607
608 val extract_bit : string -> int -> int -> int -> bool * int * int
609
610 val extract_char_unsigned : string -> int -> int -> int -> int * int * int
611
612 val extract_int_be_unsigned : string -> int -> int -> int -> int * int * int
613
614 val extract_int_le_unsigned : string -> int -> int -> int -> int * int * int
615
616 val extract_int32_be_unsigned : string -> int -> int -> int -> int32 * int * int
617
618 val extract_int32_le_unsigned : string -> int -> int -> int -> int32 * int * int
619
620 val extract_int64_be_unsigned : string -> int -> int -> int -> int64 * int * int
621
622 val construct_bit : Buffer.t -> bool -> int -> unit
623
624 val construct_char_unsigned : Buffer.t -> int -> int -> exn -> unit
625
626 val construct_int_be_unsigned : Buffer.t -> int -> int -> exn -> unit
627
628 val construct_int64_be_unsigned : Buffer.t -> int64 -> int -> exn -> unit