1/*	$NetBSD: libdwarf.h,v 1.1.1.1 2009/12/23 00:03:27 darran Exp $	*/
2
3/*-
4 * Copyright (c) 2007 John Birrell (jb@freebsd.org)
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * $FreeBSD: src/lib/libdwarf/libdwarf.h,v 1.1.4.1 2009/08/03 08:13:06 kensmith Exp $
29 */
30
31#ifndef	_LIBDWARF_H_
32#define	_LIBDWARF_H_
33
34#include <libelf.h>
35
36typedef int		Dwarf_Bool;
37typedef off_t		Dwarf_Off;
38typedef uint64_t	Dwarf_Unsigned;
39typedef uint16_t	Dwarf_Half;
40typedef uint8_t		Dwarf_Small;
41typedef int64_t		Dwarf_Signed;
42typedef uint64_t	Dwarf_Addr;
43typedef void		*Dwarf_Ptr;
44
45/* Forward definitions. */
46typedef struct _Dwarf_Abbrev	*Dwarf_Abbrev;
47typedef struct _Dwarf_Arange	*Dwarf_Arange;
48typedef struct _Dwarf_Attribute	*Dwarf_Attribute;
49typedef struct _Dwarf_AttrValue	*Dwarf_AttrValue;
50typedef struct _Dwarf_CU	*Dwarf_CU;
51typedef struct _Dwarf_Cie	*Dwarf_Cie;
52typedef struct _Dwarf_Debug	*Dwarf_Debug;
53typedef struct _Dwarf_Die	*Dwarf_Die;
54typedef struct _Dwarf_Fde	*Dwarf_Fde;
55typedef struct _Dwarf_Func	*Dwarf_Func;
56typedef struct _Dwarf_Global	*Dwarf_Global;
57typedef struct _Dwarf_Line	*Dwarf_Line;
58typedef struct _Dwarf_Type	*Dwarf_Type;
59typedef struct _Dwarf_Var	*Dwarf_Var;
60typedef struct _Dwarf_Weak	*Dwarf_Weak;
61
62typedef struct {
63        Dwarf_Small	lr_atom;
64        Dwarf_Unsigned	lr_number;
65	Dwarf_Unsigned	lr_number2;
66	Dwarf_Unsigned	lr_offset;
67} Dwarf_Loc;
68
69typedef struct {
70	Dwarf_Addr      ld_lopc;
71	Dwarf_Addr      ld_hipc;
72	Dwarf_Half      ld_cents;
73	Dwarf_Loc	*ld_s;
74} Dwarf_Locdesc;
75
76/*
77 * Error numbers which are specific to this implementation.
78 */
79enum {
80	DWARF_E_NONE,			/* No error. */
81	DWARF_E_ERROR,			/* An error! */
82	DWARF_E_NO_ENTRY,		/* No entry. */
83	DWARF_E_ARGUMENT,		/* Invalid argument. */
84	DWARF_E_DEBUG_INFO,		/* Debug info NULL. */
85	DWARF_E_MEMORY,			/* Insufficient memory. */
86	DWARF_E_ELF,			/* ELF error. */
87	DWARF_E_INVALID_CU,		/* Invalid compilation unit data. */
88	DWARF_E_CU_VERSION,		/* Wrong CU version. */
89	DWARF_E_MISSING_ABBREV,		/* Abbrev not found. */
90	DWARF_E_NOT_IMPLEMENTED,	/* Not implemented. */
91	DWARF_E_CU_CURRENT,		/* No current compilation unit. */
92	DWARF_E_BAD_FORM,		/* Wrong form type for attribute value. */
93	DWARF_E_INVALID_EXPR,		/* Invalid DWARF expression. */
94	DWARF_E_NUM			/* Max error number. */
95};
96
97typedef struct _Dwarf_Error {
98	int		err_error;	/* DWARF error. */
99	int		elf_error;	/* ELF error. */
100	const char	*err_func;	/* Function name where error occurred. */
101	int		err_line;	/* Line number where error occurred. */
102	char		err_msg[1024];	/* Formatted error message. */
103} Dwarf_Error;
104
105/*
106 * Return values which have to be compatible with other
107 * implementations of libdwarf.
108 */
109#define DW_DLV_NO_ENTRY		DWARF_E_NO_ENTRY
110#define DW_DLV_OK		DWARF_E_NONE
111#define DW_DLE_DEBUG_INFO_NULL	DWARF_E_DEBUG_INFO
112
113#define DW_DLC_READ        	0	/* read only access */
114
115/* Function prototype definitions. */
116__BEGIN_DECLS
117Dwarf_Abbrev	dwarf_abbrev_find(Dwarf_CU, uint64_t);
118Dwarf_AttrValue dwarf_attrval_find(Dwarf_Die, Dwarf_Half);
119Dwarf_Die	dwarf_die_find(Dwarf_Die, Dwarf_Unsigned);
120const char	*dwarf_errmsg(Dwarf_Error *);
121const char	*get_sht_desc(uint32_t);
122const char	*get_attr_desc(uint32_t);
123const char	*get_form_desc(uint32_t);
124const char	*get_tag_desc(uint32_t);
125int		dwarf_abbrev_add(Dwarf_CU, uint64_t, uint64_t, uint8_t, Dwarf_Abbrev *, Dwarf_Error *);
126int		dwarf_attr(Dwarf_Die, Dwarf_Half, Dwarf_Attribute *, Dwarf_Error *);
127int		dwarf_attr_add(Dwarf_Abbrev, uint64_t, uint64_t, Dwarf_Attribute *, Dwarf_Error *);
128int		dwarf_attrval(Dwarf_Die, Dwarf_Half, Dwarf_AttrValue *, Dwarf_Error *);
129int		dwarf_attrval_add(Dwarf_Die, Dwarf_AttrValue, Dwarf_AttrValue *, Dwarf_Error *);
130int		dwarf_attrval_flag(Dwarf_Die, uint64_t, Dwarf_Bool *, Dwarf_Error *);
131int		dwarf_attrval_signed(Dwarf_Die, uint64_t, Dwarf_Signed *, Dwarf_Error *);
132int		dwarf_attrval_string(Dwarf_Die, uint64_t, const char **, Dwarf_Error *);
133int		dwarf_attrval_unsigned(Dwarf_Die, uint64_t, Dwarf_Unsigned *, Dwarf_Error *);
134int		dwarf_child(Dwarf_Die, Dwarf_Die *, Dwarf_Error *);
135int		dwarf_die_add(Dwarf_CU, int, uint64_t, uint64_t, Dwarf_Abbrev, Dwarf_Die *, Dwarf_Error *);
136int		dwarf_dieoffset(Dwarf_Die, Dwarf_Off *, Dwarf_Error *);
137int		dwarf_elf_init(Elf *, int, Dwarf_Debug *, Dwarf_Error *);
138int		dwarf_errno(Dwarf_Error *);
139int		dwarf_finish(Dwarf_Debug *, Dwarf_Error *);
140int		dwarf_locdesc(Dwarf_Die, uint64_t, Dwarf_Locdesc **, Dwarf_Signed *, Dwarf_Error *);
141int		dwarf_locdesc_free(Dwarf_Locdesc *, Dwarf_Error *);
142int		dwarf_init(int, int, Dwarf_Debug *, Dwarf_Error *);
143int		dwarf_next_cu_header(Dwarf_Debug, Dwarf_Unsigned *, Dwarf_Half *,
144		    Dwarf_Unsigned *, Dwarf_Half *, Dwarf_Unsigned *, Dwarf_Error *);
145int		dwarf_op_num(uint8_t, uint8_t *, int);
146int		dwarf_siblingof(Dwarf_Debug, Dwarf_Die, Dwarf_Die *, Dwarf_Error *);
147int		dwarf_tag(Dwarf_Die, Dwarf_Half *, Dwarf_Error *);
148int		dwarf_whatform(Dwarf_Attribute, Dwarf_Half *, Dwarf_Error *);
149void		dwarf_dealloc(Dwarf_Debug, Dwarf_Ptr, Dwarf_Unsigned);
150void		dwarf_dump(Dwarf_Debug);
151void		dwarf_dump_abbrev(Dwarf_Debug);
152void		dwarf_dump_av(Dwarf_Die, Dwarf_AttrValue);
153void		dwarf_dump_dbgstr(Dwarf_Debug);
154void		dwarf_dump_die(Dwarf_Die);
155void		dwarf_dump_die_at_offset(Dwarf_Debug, Dwarf_Off);
156void		dwarf_dump_info(Dwarf_Debug);
157void		dwarf_dump_shstrtab(Dwarf_Debug);
158void		dwarf_dump_strtab(Dwarf_Debug);
159void		dwarf_dump_symtab(Dwarf_Debug);
160void		dwarf_dump_raw(Dwarf_Debug);
161void		dwarf_dump_tree(Dwarf_Debug);
162__END_DECLS
163
164#endif /* !_LIBDWARF_H_ */
165