package binsec

  1. Overview
  2. Docs

doc/src/binsec.dwarf/lines.ml.html

Source file lines.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
(**************************************************************************)
(*  This file is part of BINSEC.                                          *)
(*                                                                        *)
(*  Copyright (C) 2016-2026                                               *)
(*    CEA (Commissariat à l'énergie atomique et aux énergies              *)
(*         alternatives)                                                  *)
(*                                                                        *)
(*  you can redistribute it and/or modify it under the terms of the GNU   *)
(*  Lesser General Public License as published by the Free Software       *)
(*  Foundation, version 2.1.                                              *)
(*                                                                        *)
(*  It is distributed in the hope that it will be useful,                 *)
(*  but WITHOUT ANY WARRANTY; without even the implied warranty of        *)
(*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *)
(*  GNU Lesser General Public License for more details.                   *)
(*                                                                        *)
(*  See the GNU Lesser General Public License version 2.1                 *)
(*  for more details (enclosed in the file licenses/LGPLv2.1).            *)
(*                                                                        *)
(**************************************************************************)

open Basic_types.Integers
open Reader

module File = struct
  type t = { dir : int; time : int; size : int; name : string }

  let pp_row idx { dir; time; size; name } =
    [|
      string_of_int idx;
      string_of_int dir;
      string_of_int time;
      string_of_int size;
      name;
    |]

  let load cursor =
    let name = Read.zero_string "" cursor () in
    let dir = Z.to_int (Read.uleb128 cursor) in
    let time = Z.to_int (Read.uleb128 cursor) in
    let size = Z.to_int (Read.uleb128 cursor) in
    { dir; time; size; name }
end

module Opcode = struct
  type t =
    | Standart of int * Z.t array
    | Extended of string
    | Special of int * int
    | Copy
    | Advance_pc of Z.t
    | Advance_line of int
    | Set_file of int
    | Set_column of int
    | Negate_stmt
    | Set_basic_block
    | Const_add_pc of int
    | Fixed_advance_pc of int
    | End_sequence
    | Set_address of Virtual_address.t
    | Define_file of File.t
    | Set_discriminator of int

  let pp ppf = function
    | Standart (n, b) ->
        Format.fprintf ppf "DW_LNS_standart%d %a" n
          (fun ppf b ->
            match Array.length b with
            | 0 -> ()
            | len ->
                Format.fprintf ppf "(%s" (Z.format "%#x" b.(0));
                for i = 1 to len - 1 do
                  Format.fprintf ppf ", %s" (Z.format "%#x" b.(i))
                done;
                Format.fprintf ppf ")")
          b
    | Extended b ->
        Format.fprintf ppf "DW_LNS_extended %a"
          (fun ppf b ->
            String.iter (fun c -> Format.fprintf ppf "%02x" (Char.code c)) b)
          b
    | Special (a, l) -> Format.fprintf ppf "DW_LNS_special (0x%x, %d)" a l
    | Copy -> Format.fprintf ppf "DW_LNS_copy"
    | Advance_pc p -> Format.fprintf ppf "DW_LNS_advance_pc (%a)" Z.pp_print p
    | Advance_line l -> Format.fprintf ppf "DW_LNS_advance_line (%d)" l
    | Set_file f -> Format.fprintf ppf "DW_LNS_set_file (%d)" f
    | Set_column c -> Format.fprintf ppf "DW_LNS_set_column (%d)" c
    | Negate_stmt -> Format.fprintf ppf "DW_LNS_negate_stmt"
    | Set_basic_block -> Format.fprintf ppf "DW_LNS_set_basic_block"
    | Const_add_pc a -> Format.fprintf ppf "DW_LNS_const_add_pc (0x%x)" a
    | Fixed_advance_pc p -> Format.fprintf ppf "DW_LNS_fixed_advance_pc (%d)" p
    | End_sequence -> Format.fprintf ppf "DW_LNS_end_sequence"
    | Set_address a ->
        Format.fprintf ppf "DW_LNS_set_address (%a)" Virtual_address.pp a
    | Define_file _ -> Format.fprintf ppf "DW_LNS_define_file"
    | Set_discriminator d -> Format.fprintf ppf "DW_LNS_set_discriminator %d" d

  let load_extended cursor size : t =
    if size < 1 then
      Logger.fatal "trying to read Line Extended Opcode with size < 1";
    match Uint8.to_int (Read.u8 cursor) with
    | 0x01 -> End_sequence
    | 0x02 ->
        if size = 5 then
          Set_address (Virtual_address.of_uint32 (Read.u32 cursor))
        else if size = 9 then
          Set_address (Virtual_address.of_uint64 (Read.u64 cursor))
        else
          Logger.fatal
            "trying to read DW_LNS_set_address where address encoding differ \
             from u32 or u64"
    | 0x03 -> Define_file (File.load cursor)
    | 0x04 -> Set_discriminator (Z.to_int (Read.uleb128 cursor))
    | _ ->
        advance cursor (-1);
        Extended (String.init size (fun _ -> Uint8.to_char (Read.u8 cursor)))

  let load cursor standard_opcode_lengths line_base line_range opcode_base : t =
    match Uint8.to_int (Read.u8 cursor) with
    | 0x00 -> load_extended cursor (Z.to_int (Read.uleb128 cursor))
    | 0x01 -> Copy
    | 0x02 -> Advance_pc (Read.uleb128 cursor)
    | 0x03 -> Advance_line (Z.to_int (Read.sleb128 cursor))
    | 0x04 -> Set_file (Z.to_int (Read.uleb128 cursor))
    | 0x05 -> Set_column (Z.to_int (Read.uleb128 cursor))
    | 0x06 -> Negate_stmt
    | 0x07 -> Set_basic_block
    | 0x08 -> Const_add_pc ((255 - opcode_base) / line_range)
    | 0x09 -> Fixed_advance_pc (Uint16.to_int (Read.u16 cursor))
    | x ->
        if x < Array.length standard_opcode_lengths then
          Standart
            ( x,
              Array.init standard_opcode_lengths.(x) (fun _ ->
                  Read.uleb128 cursor) )
        else
          Special
            ( (x - opcode_base) / line_range,
              line_base + ((x - opcode_base) mod line_range) )
end

module Header = struct
  type t = {
    version : int;
    min_instr_length : int;
    default_is_stmt : bool;
    line_base : int;
    line_range : int;
    opcode_base : int;
    standard_opcode_lengths : int array;
    include_directories : string array;
    file_names : (int, File.t) Hashtbl.t;
    instructions : Opcode.t list;
  }

  let pp =
    let columns2 = [| Prettytbl.Column.default; Prettytbl.Column.default |] in
    let columns5 =
      [|
        Prettytbl.Column.default;
        Prettytbl.Column.default;
        Prettytbl.Column.default;
        Prettytbl.Column.default;
        Prettytbl.Column.default;
      |]
    in
    fun ppf h ->
      Format.fprintf ppf
        "@[@[<v 2>Raw dump of debug contents of section .debug_line:@ @ ";
      let t = Prettytbl.make columns2 in
      Prettytbl.append t [| "DWARF Version:"; string_of_int h.version |];
      Prettytbl.append t
        [| "Minimum Instruction Length:"; string_of_int h.min_instr_length |];
      Prettytbl.append t
        [| "Initial value of 'is_stmt':"; string_of_bool h.default_is_stmt |];
      Prettytbl.append t [| "Line Base:"; string_of_int h.line_base |];
      Prettytbl.append t [| "Line Range:"; string_of_int h.line_range |];
      Prettytbl.append t [| "Opcode base:"; string_of_int h.opcode_base |];
      Prettytbl.pp ppf t;
      Format.fprintf ppf "@]@ @[<v 1>@ @[<v 1>Opcodes:";
      for i = 1 to h.opcode_base - 1 do
        Format.fprintf ppf "@ Opcode %d has %d args" i
          h.standard_opcode_lengths.(i)
      done;
      Format.fprintf ppf "@]@]@ @[<v 1>@ @[<v 1>The Directory Table:@ ";
      let t = Prettytbl.make columns2 in
      for i = 1 to Array.length h.include_directories - 1 do
        Prettytbl.append t [| string_of_int i; h.include_directories.(i) |]
      done;
      Prettytbl.pp ppf t;
      Format.fprintf ppf "@]@]@ @[<v 1>@ @[<v 1>The File Name Table:@ ";
      let t = Prettytbl.make columns5 in
      Prettytbl.append t [| "Entry"; "Dir"; "Time"; "Size"; "Name" |];
      for i = 1 to Hashtbl.length h.file_names do
        Prettytbl.append t (File.pp_row i (Hashtbl.find h.file_names i))
      done;
      Prettytbl.pp ppf t;
      Format.fprintf ppf "@]@]@ @[<v 1>@ @[<v 1>Line Number Statements:@ ";
      List.iter
        (fun op -> Format.fprintf ppf "%a@ " Opcode.pp op)
        h.instructions;
      Format.pp_close_box ppf ();
      Format.pp_close_box ppf ();
      Format.pp_close_box ppf ()

  let load cursor : t =
    let format, length =
      let length = Read.u32 cursor in
      if Uint32.to_int32 length = 0xffffffffl then
        (`x64, Uint64.to_int (Read.u64 cursor))
      else (`x32, Uint32.to_int length)
    in
    let bound = get_pos cursor + length in
    let version = Uint16.to_int (Read.u16 cursor) in
    match version with
    | 2 ->
        let prologue_length = Int64.to_int (Utils.read format cursor) in
        let prologue_end = get_pos cursor + prologue_length in
        let min_instr_length = Uint8.to_int (Read.u8 cursor) in
        let default_is_stmt = 0 < Uint8.to_int (Read.u8 cursor) in
        let line_base = Int8.to_int (Read.i8 cursor) in
        let line_range = Uint8.to_int (Read.u8 cursor) in
        let opcode_base = Uint8.to_int (Read.u8 cursor) in
        let standard_opcode_lengths =
          Array.init opcode_base (fun i ->
              if i = 0 then 0 else Uint8.to_int (Read.u8 cursor))
        in
        let rec loop include_directories =
          match Uint8.to_int (Peek.u8 cursor) with
          | 0x00 ->
              advance cursor 1;
              Array.of_list (List.rev include_directories)
          | _ -> loop (Read.zero_string "" cursor () :: include_directories)
        in
        let include_directories = loop [ "." ] in
        let file_names = Hashtbl.create 64 in
        while Uint8.to_int (Peek.u8 cursor) <> 0 do
          Hashtbl.add file_names
            (Hashtbl.length file_names + 1)
            (File.load cursor)
        done;
        set_pos cursor prologue_end;
        let rec loop ins =
          if get_pos cursor < bound then
            loop
              (Opcode.load cursor standard_opcode_lengths line_base line_range
                 opcode_base
              :: ins)
          else List.rev ins
        in
        let instructions = loop [] in
        {
          version;
          min_instr_length;
          default_is_stmt;
          line_base;
          line_range;
          opcode_base;
          standard_opcode_lengths;
          include_directories;
          file_names;
          instructions;
        }
    | 4 ->
        let prologue_length = Int64.to_int (Utils.read format cursor) in
        let prologue_end = get_pos cursor + prologue_length in
        let min_instr_length = Uint8.to_int (Read.u8 cursor) in
        let maximum_operations_per_instruction =
          Uint8.to_int (Read.u8 cursor)
        in
        if maximum_operations_per_instruction <> 1 then
          Logger.fatal
            "trying to read Line header with \
             maximum_operations_per_instruction = %d"
            maximum_operations_per_instruction;
        let default_is_stmt = 0 < Uint8.to_int (Read.u8 cursor) in
        let line_base = Int8.to_int (Read.i8 cursor) in
        let line_range = Uint8.to_int (Read.u8 cursor) in
        let opcode_base = Uint8.to_int (Read.u8 cursor) in
        let standard_opcode_lengths =
          Array.init opcode_base (fun i ->
              if i = 0 then 0 else Uint8.to_int (Read.u8 cursor))
        in
        let rec loop include_directories =
          match Uint8.to_int (Peek.u8 cursor) with
          | 0x00 ->
              advance cursor 1;
              Array.of_list (List.rev include_directories)
          | _ -> loop (Read.zero_string "" cursor () :: include_directories)
        in
        let include_directories = loop [ "." ] in
        let file_names = Hashtbl.create 64 in
        while Uint8.to_int (Peek.u8 cursor) <> 0 do
          Hashtbl.add file_names
            (Hashtbl.length file_names + 1)
            (File.load cursor)
        done;
        set_pos cursor prologue_end;
        let rec loop ins =
          if get_pos cursor < bound then
            loop
              (Opcode.load cursor standard_opcode_lengths line_base line_range
                 opcode_base
              :: ins)
          else List.rev ins
        in
        let instructions = loop [] in
        {
          version;
          min_instr_length;
          default_is_stmt;
          line_base;
          line_range;
          opcode_base;
          standard_opcode_lengths;
          include_directories;
          file_names;
          instructions;
        }
    | _ -> Logger.fatal "trying to read Line header with version %d" version
end

module Machine = struct
  type state = {
    mutable address : Virtual_address.t;
    mutable file : int;
    mutable line : int;
    mutable column : int;
    mutable is_stmt : bool;
    mutable basic_block : bool;
    mutable discriminator : int;
  }

  type t = { previous : state; current : state; mutable end_sequence : bool }

  let init is_stmt =
    {
      previous =
        {
          address = Virtual_address.zero;
          file = 1;
          line = 1;
          column = 0;
          is_stmt;
          basic_block = false;
          discriminator = 0;
        };
      current =
        {
          address = Virtual_address.zero;
          file = 1;
          line = 1;
          column = 0;
          is_stmt;
          basic_block = false;
          discriminator = 0;
        };
      end_sequence = true;
    }

  let reset vm is_stmt =
    vm.current.address <- Virtual_address.zero;
    vm.current.file <- 1;
    vm.current.line <- 1;
    vm.current.column <- 0;
    vm.current.is_stmt <- is_stmt;
    vm.current.basic_block <- false;
    vm.current.discriminator <- 0;
    vm.end_sequence <- true

  let fetch vm =
    vm.previous.address <- vm.current.address;
    vm.previous.file <- vm.current.file;
    vm.previous.line <- vm.current.line;
    vm.previous.column <- vm.current.column;
    vm.previous.is_stmt <- vm.current.is_stmt;
    vm.previous.basic_block <- vm.current.basic_block;
    vm.previous.discriminator <- vm.current.discriminator;
    vm.current.basic_block <- false;
    vm.current.discriminator <- 0;
    vm.end_sequence <- false
end

type entry = {
  addresses : Virtual_address.t Interval.t;
  path : string;
  line : int;
  column : int;
  is_stmt : bool;
  basic_block : bool;
  discriminator : int;
}

type t = entry list

let emit vm hd =
  let fd = Hashtbl.find hd.Header.file_names Machine.(vm.previous.file) in
  let path =
    match String.get fd.File.name 0 with
    | '/' -> fd.File.name
    | _ -> hd.Header.include_directories.(fd.File.dir) ^ "/" ^ fd.File.name
  in
  let entry =
    {
      addresses =
        {
          Interval.lo = vm.Machine.previous.Machine.address;
          hi = Virtual_address.pred vm.Machine.current.Machine.address;
        };
      path;
      line = vm.Machine.previous.Machine.line;
      column = vm.Machine.previous.Machine.column;
      is_stmt = vm.Machine.previous.Machine.is_stmt;
      basic_block = vm.Machine.previous.Machine.basic_block;
      discriminator = vm.Machine.previous.Machine.discriminator;
    }
  in
  Machine.fetch vm;
  entry

let decode vm hd lines (opcode : Opcode.t) =
  match opcode with
  | Special (a, l) ->
      vm.Machine.current.Machine.line <- vm.Machine.current.Machine.line + l;
      vm.Machine.current.Machine.address <-
        Virtual_address.add_int
          (hd.Header.min_instr_length * a)
          vm.Machine.current.Machine.address;
      if vm.Machine.end_sequence then (
        Machine.fetch vm;
        lines)
      else emit vm hd :: lines
  | Copy ->
      if vm.Machine.end_sequence then (
        Machine.fetch vm;
        lines)
      else emit vm hd :: lines
  | Advance_pc a ->
      vm.Machine.current.Machine.address <-
        Virtual_address.add_bigint
          (Z.mul (Z.of_int hd.Header.min_instr_length) a)
          vm.Machine.current.Machine.address;
      lines
  | Const_add_pc a ->
      vm.Machine.current.Machine.address <-
        Virtual_address.add_int
          (hd.Header.min_instr_length * a)
          vm.Machine.current.Machine.address;
      lines
  | Advance_line l ->
      vm.Machine.current.Machine.line <- vm.Machine.current.Machine.line + l;
      lines
  | Set_file f ->
      vm.Machine.current.Machine.file <- f;
      lines
  | Set_column c ->
      vm.Machine.current.Machine.column <- c;
      lines
  | Negate_stmt ->
      vm.Machine.current.Machine.is_stmt <-
        not vm.Machine.current.Machine.is_stmt;
      lines
  | Set_basic_block ->
      vm.Machine.current.Machine.basic_block <- true;
      lines
  | Fixed_advance_pc a ->
      vm.Machine.current.Machine.address <-
        Virtual_address.add_int a vm.Machine.current.Machine.address;
      lines
  | End_sequence ->
      if vm.Machine.end_sequence then
        Logger.fatal "met a DW_LNS_end_sequence on an empty sequence";
      let lines = emit vm hd :: lines in
      Machine.reset vm hd.Header.default_is_stmt;
      lines
  | Set_address address ->
      vm.Machine.current.Machine.address <- address;
      lines
  | Define_file f ->
      Hashtbl.(add hd.Header.file_names (length hd.Header.file_names) f);
      lines
  | Set_discriminator d ->
      vm.Machine.current.Machine.discriminator <- d;
      lines
  | Opcode.Standart _ | Opcode.Extended _ -> lines

let load img : t =
  let section = Loader_utils.find_section_by_name ".debug_line" img in
  let at = (Loader.Section.pos section).raw in
  let length = (Loader.Section.size section).raw in
  let cursor = Read.sub (Loader.Img.cursor ~at img) length in
  let rec loop lines cursor =
    if at_end cursor then List.flatten (List.rev lines)
    else
      let hd = Header.load cursor in
      Logger.debug "%a" Header.pp hd;
      let vm = Machine.init hd.Header.default_is_stmt in
      loop
        (List.rev (List.fold_left (decode vm hd) [] hd.Header.instructions)
        :: lines)
        cursor
  in
  loop [] cursor

let fold = List.fold_left
let iter = List.iter

let pp =
  let columns =
    [|
      Prettytbl.Column.default;
      Prettytbl.(Column.make ~align:R ());
      Prettytbl.(Column.make ~align:R ());
    |]
  in
  fun ppf l ->
    Format.pp_open_vbox ppf 0;
    let t = Prettytbl.make columns in
    Prettytbl.append t [| "File name"; "Line number"; "Starting address" |];
    List.iter
      (fun { path; line; addresses = { Interval.lo; _ }; _ } ->
        Prettytbl.append t
          [|
            path;
            string_of_int line;
            Z.format "%#x" (Virtual_address.to_bigint lo);
          |])
      l;
    Prettytbl.pp ppf t;
    Format.pp_close_box ppf ()