1 /* $NetBSD: libdwarf_loclist.c,v 1.2 2014/03/09 16:58:04 christos Exp $ */
4 * Copyright (c) 2009,2011 Kai Wang
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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.
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
29 #include "_libdwarf.h"
31 __RCSID("$NetBSD: libdwarf_loclist.c,v 1.2 2014/03/09 16:58:04 christos Exp $");
32 ELFTC_VCSID("Id: libdwarf_loclist.c 2972 2013-12-23 06:46:04Z kaiwang27 ");
35 _dwarf_loclist_add_locdesc(Dwarf_Debug dbg
, Dwarf_CU cu
, Dwarf_Section
*ds
,
36 uint64_t *off
, Dwarf_Locdesc
**ld
, uint64_t *ldlen
,
37 Dwarf_Unsigned
*total_len
, Dwarf_Error
*error
)
42 if (total_len
!= NULL
)
45 for (i
= 0; *off
< ds
->ds_size
; i
++) {
46 start
= dbg
->read(ds
->ds_data
, off
, cu
->cu_pointer_size
);
47 end
= dbg
->read(ds
->ds_data
, off
, cu
->cu_pointer_size
);
49 ld
[i
]->ld_lopc
= start
;
53 if (total_len
!= NULL
)
54 *total_len
+= 2 * cu
->cu_pointer_size
;
56 /* Check if it is the end entry. */
57 if (start
== 0 && end
==0) {
62 /* Check if it is base-select entry. */
63 if ((cu
->cu_pointer_size
== 4 && start
== ~0U) ||
64 (cu
->cu_pointer_size
== 8 && start
== ~0ULL))
67 /* Otherwise it's normal entry. */
68 len
= dbg
->read(ds
->ds_data
, off
, 2);
69 if (*off
+ len
> ds
->ds_size
) {
70 DWARF_SET_ERROR(dbg
, error
,
71 DW_DLE_DEBUG_LOC_SECTION_SHORT
);
72 return (DW_DLE_DEBUG_LOC_SECTION_SHORT
);
75 if (total_len
!= NULL
)
79 ret
= _dwarf_loc_fill_locdesc(dbg
, ld
[i
],
80 ds
->ds_data
+ *off
, len
, cu
->cu_pointer_size
,
82 if (ret
!= DW_DLE_NONE
)
96 _dwarf_loclist_find(Dwarf_Debug dbg
, Dwarf_CU cu
, uint64_t lloff
,
97 Dwarf_Loclist
*ret_ll
, Dwarf_Error
*error
)
102 assert(ret_ll
!= NULL
);
105 TAILQ_FOREACH(ll
, &dbg
->dbg_loclist
, ll_next
)
106 if (ll
->ll_offset
== lloff
)
110 ret
= _dwarf_loclist_add(dbg
, cu
, lloff
, ret_ll
, error
);
118 _dwarf_loclist_add(Dwarf_Debug dbg
, Dwarf_CU cu
, uint64_t lloff
,
119 Dwarf_Loclist
*ret_ll
, Dwarf_Error
*error
)
122 Dwarf_Loclist ll
, tll
;
128 if ((ds
= _dwarf_find_section(dbg
, ".debug_loc")) == NULL
) {
129 DWARF_SET_ERROR(dbg
, error
, DW_DLE_NO_ENTRY
);
130 return (DW_DLE_NO_ENTRY
);
133 if (lloff
>= ds
->ds_size
) {
134 DWARF_SET_ERROR(dbg
, error
, DW_DLE_NO_ENTRY
);
135 return (DW_DLE_NO_ENTRY
);
138 if ((ll
= malloc(sizeof(struct _Dwarf_Loclist
))) == NULL
) {
139 DWARF_SET_ERROR(dbg
, error
, DW_DLE_MEMORY
);
140 return (DW_DLE_MEMORY
);
143 ll
->ll_offset
= lloff
;
145 /* Get the number of locdesc the first round. */
146 ret
= _dwarf_loclist_add_locdesc(dbg
, cu
, ds
, &lloff
, NULL
, &ldlen
,
148 if (ret
!= DW_DLE_NONE
)
152 * Dwarf_Locdesc list memory is allocated in this way (one more level
153 * of indirect) to make the loclist API be compatible with SGI libdwarf.
155 ll
->ll_ldlen
= ldlen
;
157 if ((ll
->ll_ldlist
= calloc(ldlen
, sizeof(Dwarf_Locdesc
*))) ==
159 DWARF_SET_ERROR(dbg
, error
, DW_DLE_MEMORY
);
163 for (i
= 0; (uint64_t) i
< ldlen
; i
++) {
164 if ((ll
->ll_ldlist
[i
] =
165 calloc(1, sizeof(Dwarf_Locdesc
))) == NULL
) {
166 DWARF_SET_ERROR(dbg
, error
, DW_DLE_MEMORY
);
172 ll
->ll_ldlist
= NULL
;
174 lloff
= ll
->ll_offset
;
176 /* Fill in locdesc. */
177 ret
= _dwarf_loclist_add_locdesc(dbg
, cu
, ds
, &lloff
, ll
->ll_ldlist
,
178 NULL
, &ll
->ll_length
, error
);
179 if (ret
!= DW_DLE_NONE
)
182 /* Insert to the queue. Sort by offset. */
183 TAILQ_FOREACH(tll
, &dbg
->dbg_loclist
, ll_next
)
184 if (tll
->ll_offset
> ll
->ll_offset
) {
185 TAILQ_INSERT_BEFORE(tll
, ll
, ll_next
);
190 TAILQ_INSERT_TAIL(&dbg
->dbg_loclist
, ll
, ll_next
);
193 return (DW_DLE_NONE
);
197 _dwarf_loclist_free(ll
);
203 _dwarf_loclist_free(Dwarf_Loclist ll
)
210 if (ll
->ll_ldlist
!= NULL
) {
211 for (i
= 0; i
< ll
->ll_ldlen
; i
++) {
212 if (ll
->ll_ldlist
[i
]->ld_s
)
213 free(ll
->ll_ldlist
[i
]->ld_s
);
214 free(ll
->ll_ldlist
[i
]);
222 _dwarf_loclist_cleanup(Dwarf_Debug dbg
)
224 Dwarf_Loclist ll
, tll
;
226 assert(dbg
!= NULL
&& dbg
->dbg_mode
== DW_DLC_READ
);
228 TAILQ_FOREACH_SAFE(ll
, &dbg
->dbg_loclist
, ll_next
, tll
) {
229 TAILQ_REMOVE(&dbg
->dbg_loclist
, ll
, ll_next
);
230 _dwarf_loclist_free(ll
);