1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- V X A D D R 2 L I N E --
9 -- Copyright (C) 2002-2011, AdaCore --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 -- This program is meant to be used with vxworks to compute symbolic
27 -- backtraces on the host from non-symbolic backtraces obtained on the target.
29 -- The basic idea is to automate the computation of the necessary address
30 -- adjustments prior to calling addr2line when the application has only been
31 -- partially linked on the host.
33 -- Variants for various targets are supported, and the command line should
36 -- <target>-addr2line [-a <target_arch>] <exe_file> <ref_address>
37 -- <backtrace addresses>
41 -- selects the target architecture. In the absence of this parameter the
42 -- default variant is chosen based on the Detect_Arch result. Generally,
43 -- this parameter will only be used if vxaddr2line is recompiled manually.
44 -- Otherwise, the command name will always be of the form
45 -- <target>-vxaddr2line where there is no ambiguity on the target's
49 -- The name of the partially linked binary file for the application.
52 -- Runtime address (on the target) of a reference symbol you choose,
53 -- which name shall match the value of the Ref_Symbol variable declared
54 -- below. A symbol with a small offset from the beginning of the text
55 -- segment is better, so "adainit" is a good choice.
57 -- <backtrace addresses> :
58 -- The call chain addresses you obtained at run time on the target and
59 -- for which you want a symbolic association.
61 -- TO ADD A NEW ARCHITECTURE add an appropriate value to Architecture type
62 -- (in a format <host>_<target>), and then an appropriate value to Config_List
65 with Ada
.Text_IO
; use Ada
.Text_IO
;
66 with Ada
.Command_Line
; use Ada
.Command_Line
;
67 with Ada
.Strings
.Fixed
; use Ada
.Strings
.Fixed
;
68 with Interfaces
; use Interfaces
;
70 with GNAT
.OS_Lib
; use GNAT
.OS_Lib
;
71 with GNAT
.Directory_Operations
; use GNAT
.Directory_Operations
;
72 with GNAT
.Expect
; use GNAT
.Expect
;
73 with GNAT
.Regpat
; use GNAT
.Regpat
;
75 procedure VxAddr2Line
is
77 package Unsigned_32_IO
is new Modular_IO
(Unsigned_32
);
78 -- Instantiate Modular_IO to have Put
80 Ref_Symbol
: constant String := "adainit";
81 -- This is the name of the reference symbol which runtime address shall
82 -- be provided as the <ref_address> argument.
84 -- All supported architectures
98 type Arch_Record
is record
99 Addr2line_Binary
: String_Access
;
100 -- Name of the addr2line utility to use
102 Nm_Binary
: String_Access
;
103 -- Name of the host nm utility, which will be used to find out the
104 -- offset of the reference symbol in the text segment of the partially
105 -- linked executable.
107 Addr_Digits_To_Skip
: Integer;
108 -- When addresses such as 0xfffffc0001dfed50 are provided, for instance
109 -- on ALPHA, indicate the number of leading digits that can be ignored,
110 -- which will avoid computational overflows. Typically only useful when
111 -- 64bit addresses are provided.
113 Bt_Offset_From_Call
: Unsigned_32
;
114 -- Offset from a backtrace address to the address of the corresponding
115 -- call instruction. This should always be 0, except on platforms where
116 -- the backtrace addresses actually correspond to return and not call
117 -- points. In such cases, a negative value is most likely.
120 -- Configuration for each of the architectures
121 Arch_List
: array (Architecture
'Range) of Arch_Record
:=
123 (Addr2line_Binary
=> null,
125 Addr_Digits_To_Skip
=> 8,
126 Bt_Offset_From_Call
=> 0),
128 (Addr2line_Binary
=> null,
130 Addr_Digits_To_Skip
=> 0,
131 Bt_Offset_From_Call
=> -4),
133 (Addr2line_Binary
=> null,
135 Addr_Digits_To_Skip
=> 0,
136 Bt_Offset_From_Call
=> -2),
138 (Addr2line_Binary
=> null,
140 Addr_Digits_To_Skip
=> 0,
141 Bt_Offset_From_Call
=> -4),
143 (Addr2line_Binary
=> null,
145 Addr_Digits_To_Skip
=> 0,
146 Bt_Offset_From_Call
=> -4),
148 (Addr2line_Binary
=> null,
150 Addr_Digits_To_Skip
=> 0,
151 Bt_Offset_From_Call
=> -2),
153 (Addr2line_Binary
=> null,
155 Addr_Digits_To_Skip
=> 0,
156 Bt_Offset_From_Call
=> -4),
158 (Addr2line_Binary
=> null,
160 Addr_Digits_To_Skip
=> 0,
161 Bt_Offset_From_Call
=> -4),
163 (Addr2line_Binary
=> null,
165 Addr_Digits_To_Skip
=> 0,
166 Bt_Offset_From_Call
=> -2),
168 (Addr2line_Binary
=> null,
170 Addr_Digits_To_Skip
=> 0,
171 Bt_Offset_From_Call
=> -4),
173 (Addr2line_Binary
=> null,
175 Addr_Digits_To_Skip
=> 0,
176 Bt_Offset_From_Call
=> -4)
179 -- Current architecture
180 Cur_Arch
: Architecture
;
182 -- State of architecture detection
183 Detect_Success
: Boolean := False;
185 -----------------------
186 -- Local subprograms --
187 -----------------------
189 procedure Error
(Msg
: String);
190 pragma No_Return
(Error
);
191 -- Prints the message and then terminates the program
194 -- Displays the short help message and then terminates the program
196 function Get_Reference_Offset
return Unsigned_32
;
197 -- Computes the static offset of the reference symbol by calling nm
199 function Get_Value_From_Hex_Arg
(Arg
: Natural) return Unsigned_32
;
200 -- Threats the argument number Arg as a C-style hexadecimal literal
201 -- and returns its integer value
203 function Hex_Image
(Value
: Unsigned_32
) return String_Access
;
204 -- Returns access to a string that contains hexadecimal image of Value
206 -- Separate functions that provide build-time customization:
208 procedure Detect_Arch
;
209 -- Saves in Cur_Arch the current architecture, based on the name of
210 -- vxaddr2line instance and properties of the host. Detect_Success is False
211 -- if detection fails
217 procedure Detect_Arch
is
218 Name
: constant String := Base_Name
(Command_Name
);
219 Proc
: constant String :=
220 Name
(Name
'First .. Index
(Name
, "-") - 1);
221 Target
: constant String :=
222 Name
(Name
'First .. Index
(Name
, "vxaddr2line") - 1);
225 Detect_Success
:= False;
231 if Proc
= "alpha" then
232 Cur_Arch
:= DEC_ALPHA
;
234 -- Let's detect the host.
235 -- ??? A naive implementation that can't distinguish between Unixes
236 if Directory_Separator
= '/' then
237 Cur_Arch
:= Architecture
'Value ("solaris_" & Proc
);
239 Cur_Arch
:= Architecture
'Value ("windows_" & Proc
);
243 if Arch_List
(Cur_Arch
).Addr2line_Binary
= null then
244 Arch_List
(Cur_Arch
).Addr2line_Binary
:= new String'
245 (Target & "addr2line");
247 if Arch_List (Cur_Arch).Nm_Binary = null then
248 Arch_List (Cur_Arch).Nm_Binary := new String'
252 Detect_Success
:= True;
263 procedure Error
(Msg
: String) is
270 --------------------------
271 -- Get_Reference_Offset --
272 --------------------------
274 function Get_Reference_Offset
return Unsigned_32
is
275 Nm_Cmd
: constant String_Access
:=
276 Locate_Exec_On_Path
(Arch_List
(Cur_Arch
).Nm_Binary
.all);
278 Nm_Args
: constant Argument_List
:=
280 new String'(Argument
(1)));
282 Forever
: aliased String := "^@@@@";
283 Reference
: aliased String := Ref_Symbol
& "\s+\S\s+([\da-fA-F]+)";
285 Pd
: Process_Descriptor
;
286 Result
: Expect_Match
;
289 -- If Nm is not found, abort
291 if Nm_Cmd
= null then
292 Error
("Couldn't find " & Arch_List
(Cur_Arch
).Nm_Binary
.all);
296 (Pd
, Nm_Cmd
.all, Nm_Args
, Buffer_Size
=> 0, Err_To_Out
=> True);
298 -- Expect a string containing the reference symbol
301 Regexp_Array
'(1 => Reference'Unchecked_Access),
304 -- If we are here, the pattern was matched successfully
307 Match_String : constant String := Expect_Out_Match (Pd);
308 Matches : Match_Array (0 .. 1);
312 Match (Reference, Match_String, Matches);
313 Value := Unsigned_32'Value
315 & Match_String (Matches (1).First .. Matches (1).Last) & "#");
317 -- Expect a string that will never be emitted, so that the
318 -- process can be correctly terminated (with Process_Died)
321 Regexp_Array'(1 => Forever
'Unchecked_Access),
329 -- We cannot get here
334 when Invalid_Process
=>
335 Error
("Could not spawn a process " & Nm_Cmd
.all);
339 -- The process died without matching the reference symbol or the
340 -- format wasn't recognized.
342 Error
("Unexpected output from " & Nm_Cmd
.all);
343 end Get_Reference_Offset
;
345 ----------------------------
346 -- Get_Value_From_Hex_Arg --
347 ----------------------------
349 function Get_Value_From_Hex_Arg
(Arg
: Natural) return Unsigned_32
is
350 Cur_Arg
: constant String := Argument
(Arg
);
354 -- Skip "0x" prefix if present
356 if Cur_Arg
'Length > 2 and then Cur_Arg
(1 .. 2) = "0x" then
362 -- Add architecture-specific offset
364 Offset
:= Offset
+ Arch_List
(Cur_Arch
).Addr_Digits_To_Skip
;
368 return Unsigned_32
'Value
369 ("16#" & Cur_Arg
(Offset
.. Cur_Arg
'Last) & "#");
372 when Constraint_Error
=>
374 Error
("Can't parse backtrace address '" & Cur_Arg
& "'");
376 end Get_Value_From_Hex_Arg
;
382 function Hex_Image
(Value
: Unsigned_32
) return String_Access
is
383 Result
: String (1 .. 20);
387 Unsigned_32_IO
.Put
(Result
, Value
, 16);
388 Start_Pos
:= Index
(Result
, "16#") + 3;
389 return new String'(Result (Start_Pos .. Result'Last - 1));
398 Put_Line ("Usage : " & Base_Name (Command_Name)
400 & Ref_Symbol & " offset on target> <addr1> ...");
405 Ref_Static_Offset, Ref_Runtime_Address, Bt_Address : Unsigned_32;
407 Addr2line_Cmd : String_Access;
409 Addr2line_Args : Argument_List (1 .. 501);
410 -- We expect that there won't be more than 500 backtrace frames
412 Addr2line_Args_Count : Natural;
416 -- Start of processing for VxAddr2Line
422 -- There should be at least two arguments
424 if Argument_Count < 2 then
428 -- ??? HARD LIMIT! There should be at most 501 arguments
430 if Argument_Count > 501 then
431 Error ("Too many backtrace frames");
434 -- Do we have a valid architecture?
436 if not Detect_Success then
437 Put_Line ("Couldn't detect the architecture");
442 Locate_Exec_On_Path (Arch_List (Cur_Arch).Addr2line_Binary.all);
444 -- If Addr2line is not found, abort
446 if Addr2line_Cmd = null then
447 Error ("Couldn't find " & Arch_List (Cur_Arch).Addr2line_Binary.all);
450 -- The first argument specifies the image file. Check if it exists
452 if not Is_Regular_File (Argument (1)) then
453 Error ("Couldn't find the executable " & Argument (1));
456 -- The second argument specifies the reference symbol runtime address.
457 -- Let's parse and store it
459 Ref_Runtime_Address := Get_Value_From_Hex_Arg (2);
461 -- Run nm command to get the reference symbol static offset
463 Ref_Static_Offset := Get_Reference_Offset;
465 -- Build addr2line parameters. First, the standard part
467 Addr2line_Args (1) := new String'("--exe=" & Argument
(1));
468 Addr2line_Args_Count
:= 1;
470 -- Now, append to this the adjusted backtraces in arguments 4 and further
472 for J
in 3 .. Argument_Count
loop
474 -- Basically, for each address in the runtime backtrace ...
476 -- o We compute its offset relatively to the runtime address of the
481 -- o We add this offset to the static one for the reference symbol in
482 -- the executable to find the executable offset corresponding to the
483 -- backtrace address.
485 Bt_Address
:= Get_Value_From_Hex_Arg
(J
);
488 Bt_Address
- Ref_Runtime_Address
490 + Arch_List
(Cur_Arch
).Bt_Offset_From_Call
;
492 Addr2line_Args_Count
:= Addr2line_Args_Count
+ 1;
493 Addr2line_Args
(Addr2line_Args_Count
) := Hex_Image
(Bt_Address
);
496 -- Run the resulting command
498 Spawn
(Addr2line_Cmd
.all,
499 Addr2line_Args
(1 .. Addr2line_Args_Count
), Success
);
502 Error
("Couldn't spawn " & Addr2line_Cmd
.all);
508 -- Mask all exceptions