2 * File symbol.c - management of symbols (lexical tree)
4 * Copyright (C) 1993, Eric Youngdale.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #define NONAMELESSUNION
23 #define NONAMELESSSTRUCT
31 #include <sys/types.h>
37 #include "wine/debug.h"
38 #include "dbghelp_private.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp
);
42 WINE_DECLARE_DEBUG_CHANNEL(dbghelp_symt
);
44 static inline int cmp_addr(ULONG64 a1
, ULONG64 a2
)
46 if (a1
> a2
) return 1;
47 if (a1
< a2
) return -1;
51 static inline int cmp_sorttab_addr(const struct module
* module
, int idx
, ULONG64 addr
)
55 symt_get_info(&module
->addr_sorttab
[idx
]->symt
, TI_GET_ADDRESS
, &ref
);
56 return cmp_addr(ref
, addr
);
59 int symt_cmp_addr(const void* p1
, const void* p2
)
61 const struct symt
* sym1
= *(const struct symt
* const *)p1
;
62 const struct symt
* sym2
= *(const struct symt
* const *)p2
;
65 symt_get_info(sym1
, TI_GET_ADDRESS
, &a1
);
66 symt_get_info(sym2
, TI_GET_ADDRESS
, &a2
);
67 return cmp_addr(a1
, a2
);
70 static inline void re_append(char** mask
, unsigned* len
, char ch
)
72 *mask
= HeapReAlloc(GetProcessHeap(), 0, *mask
, ++(*len
));
73 (*mask
)[*len
- 2] = ch
;
76 /* transforms a dbghelp's regular expression into a POSIX one
77 * Here are the valid dbghelp reg ex characters:
78 * * 0 or more characters
79 * ? a single character
81 * # 0 or more of preceding char
82 * + 1 or more of preceding char
83 * escapes \ on #, ?, [, ], *, +. don't work on -
85 static void compile_regex(const char* str
, int numchar
, regex_t
* re
, BOOL _case
)
87 char* mask
= HeapAlloc(GetProcessHeap(), 0, 1);
89 BOOL in_escape
= FALSE
;
90 unsigned flags
= REG_NOSUB
;
92 re_append(&mask
, &len
, '^');
94 while (*str
&& numchar
--)
96 /* FIXME: this shouldn't be valid on '-' */
99 re_append(&mask
, &len
, '\\');
100 re_append(&mask
, &len
, *str
);
105 case '\\': in_escape
= TRUE
; break;
106 case '*': re_append(&mask
, &len
, '.'); re_append(&mask
, &len
, '*'); break;
107 case '?': re_append(&mask
, &len
, '.'); break;
108 case '#': re_append(&mask
, &len
, '*'); break;
109 /* escape some valid characters in dbghelp reg exp:s */
110 case '$': re_append(&mask
, &len
, '\\'); re_append(&mask
, &len
, '$'); break;
111 /* +, [, ], - are the same in dbghelp & POSIX, use them as any other char */
112 default: re_append(&mask
, &len
, *str
); break;
118 re_append(&mask
, &len
, '\\');
119 re_append(&mask
, &len
, '\\');
121 re_append(&mask
, &len
, '$');
122 mask
[len
- 1] = '\0';
123 if (_case
) flags
|= REG_ICASE
;
124 if (regcomp(re
, mask
, flags
)) FIXME("Couldn't compile %s\n", mask
);
125 HeapFree(GetProcessHeap(), 0, mask
);
128 struct symt_compiland
* symt_new_compiland(struct module
* module
,
129 unsigned long address
, unsigned src_idx
)
131 struct symt_compiland
* sym
;
133 TRACE_(dbghelp_symt
)("Adding compiland symbol %s:%s\n",
134 debugstr_w(module
->module
.ModuleName
), source_get(module
, src_idx
));
135 if ((sym
= pool_alloc(&module
->pool
, sizeof(*sym
))))
137 sym
->symt
.tag
= SymTagCompiland
;
138 sym
->address
= address
;
139 sym
->source
= src_idx
;
140 vector_init(&sym
->vchildren
, sizeof(struct symt
*), 32);
145 struct symt_public
* symt_new_public(struct module
* module
,
146 struct symt_compiland
* compiland
,
148 unsigned long address
, unsigned size
,
149 BOOL in_code
, BOOL is_func
)
151 struct symt_public
* sym
;
154 TRACE_(dbghelp_symt
)("Adding public symbol %s:%s @%lx\n",
155 debugstr_w(module
->module
.ModuleName
), name
, address
);
156 if ((dbghelp_options
& SYMOPT_AUTO_PUBLICS
) &&
157 symt_find_nearest(module
, address
) != NULL
)
159 if ((sym
= pool_alloc(&module
->pool
, sizeof(*sym
))))
161 sym
->symt
.tag
= SymTagPublicSymbol
;
162 sym
->hash_elt
.name
= pool_strdup(&module
->pool
, name
);
163 hash_table_add(&module
->ht_symbols
, &sym
->hash_elt
);
164 module
->sortlist_valid
= FALSE
;
165 sym
->container
= compiland
? &compiland
->symt
: NULL
;
166 sym
->address
= address
;
168 sym
->in_code
= in_code
;
169 sym
->is_function
= is_func
;
172 p
= vector_add(&compiland
->vchildren
, &module
->pool
);
179 struct symt_data
* symt_new_global_variable(struct module
* module
,
180 struct symt_compiland
* compiland
,
181 const char* name
, unsigned is_static
,
182 unsigned long addr
, unsigned long size
,
185 struct symt_data
* sym
;
189 TRACE_(dbghelp_symt
)("Adding global symbol %s:%s @%lx %p\n",
190 debugstr_w(module
->module
.ModuleName
), name
, addr
, type
);
191 if ((sym
= pool_alloc(&module
->pool
, sizeof(*sym
))))
193 sym
->symt
.tag
= SymTagData
;
194 sym
->hash_elt
.name
= pool_strdup(&module
->pool
, name
);
195 hash_table_add(&module
->ht_symbols
, &sym
->hash_elt
);
196 module
->sortlist_valid
= FALSE
;
197 sym
->kind
= is_static
? DataIsFileStatic
: DataIsGlobal
;
198 sym
->container
= compiland
? &compiland
->symt
: NULL
;
200 sym
->u
.var
.offset
= addr
;
201 if (type
&& size
&& symt_get_info(type
, TI_GET_LENGTH
, &tsz
))
204 FIXME("Size mismatch for %s.%s between type (%s) and src (%lu)\n",
205 debugstr_w(module
->module
.ModuleName
), name
,
206 wine_dbgstr_longlong(tsz
), size
);
210 p
= vector_add(&compiland
->vchildren
, &module
->pool
);
217 struct symt_function
* symt_new_function(struct module
* module
,
218 struct symt_compiland
* compiland
,
220 unsigned long addr
, unsigned long size
,
221 struct symt
* sig_type
)
223 struct symt_function
* sym
;
226 TRACE_(dbghelp_symt
)("Adding global function %s:%s @%lx-%lx\n",
227 debugstr_w(module
->module
.ModuleName
), name
, addr
, addr
+ size
- 1);
229 assert(!sig_type
|| sig_type
->tag
== SymTagFunctionType
);
230 if ((sym
= pool_alloc(&module
->pool
, sizeof(*sym
))))
232 sym
->symt
.tag
= SymTagFunction
;
233 sym
->hash_elt
.name
= pool_strdup(&module
->pool
, name
);
234 hash_table_add(&module
->ht_symbols
, &sym
->hash_elt
);
235 module
->sortlist_valid
= FALSE
;
236 sym
->container
= &compiland
->symt
;
238 sym
->type
= sig_type
;
240 vector_init(&sym
->vlines
, sizeof(struct line_info
), 64);
241 vector_init(&sym
->vchildren
, sizeof(struct symt
*), 8);
244 p
= vector_add(&compiland
->vchildren
, &module
->pool
);
251 void symt_add_func_line(struct module
* module
, struct symt_function
* func
,
252 unsigned source_idx
, int line_num
, unsigned long offset
)
254 struct line_info
* dli
;
255 BOOL last_matches
= FALSE
;
258 if (func
== NULL
|| !(dbghelp_options
& SYMOPT_LOAD_LINES
)) return;
260 TRACE_(dbghelp_symt
)("(%p)%s:%lx %s:%u\n",
261 func
, func
->hash_elt
.name
, offset
,
262 source_get(module
, source_idx
), line_num
);
264 assert(func
->symt
.tag
== SymTagFunction
);
266 for (i
=vector_length(&func
->vlines
)-1; i
>=0; i
--)
268 dli
= vector_at(&func
->vlines
, i
);
269 if (dli
->is_source_file
)
271 last_matches
= (source_idx
== dli
->u
.source_file
);
278 /* we shouldn't have line changes on first line of function */
279 dli
= vector_add(&func
->vlines
, &module
->pool
);
280 dli
->is_source_file
= 1;
281 dli
->is_first
= dli
->is_last
= 0;
282 dli
->line_number
= 0;
283 dli
->u
.source_file
= source_idx
;
285 dli
= vector_add(&func
->vlines
, &module
->pool
);
286 dli
->is_source_file
= 0;
287 dli
->is_first
= dli
->is_last
= 0;
288 dli
->line_number
= line_num
;
289 dli
->u
.pc_offset
= func
->address
+ offset
;
292 /******************************************************************
293 * symt_add_func_local
295 * Adds a new local/parameter to a given function:
296 * In any cases, dt tells whether it's a local variable or a parameter
297 * If regno it's not 0:
298 * - then variable is stored in a register
299 * - otherwise, value is referenced by register + offset
300 * Otherwise, the variable is stored on the stack:
301 * - offset is then the offset from the frame register
303 struct symt_data
* symt_add_func_local(struct module
* module
,
304 struct symt_function
* func
,
306 const struct location
* loc
,
307 struct symt_block
* block
,
308 struct symt
* type
, const char* name
)
310 struct symt_data
* locsym
;
313 TRACE_(dbghelp_symt
)("Adding local symbol (%s:%s): %s %p\n",
314 debugstr_w(module
->module
.ModuleName
), func
->hash_elt
.name
,
318 assert(func
->symt
.tag
== SymTagFunction
);
319 assert(dt
== DataIsParam
|| dt
== DataIsLocal
);
321 locsym
= pool_alloc(&module
->pool
, sizeof(*locsym
));
322 locsym
->symt
.tag
= SymTagData
;
323 locsym
->hash_elt
.name
= pool_strdup(&module
->pool
, name
);
324 locsym
->hash_elt
.next
= NULL
;
326 locsym
->container
= &block
->symt
;
328 locsym
->u
.var
= *loc
;
330 p
= vector_add(&block
->vchildren
, &module
->pool
);
332 p
= vector_add(&func
->vchildren
, &module
->pool
);
338 struct symt_block
* symt_open_func_block(struct module
* module
,
339 struct symt_function
* func
,
340 struct symt_block
* parent_block
,
341 unsigned pc
, unsigned len
)
343 struct symt_block
* block
;
347 assert(func
->symt
.tag
== SymTagFunction
);
349 assert(!parent_block
|| parent_block
->symt
.tag
== SymTagBlock
);
350 block
= pool_alloc(&module
->pool
, sizeof(*block
));
351 block
->symt
.tag
= SymTagBlock
;
352 block
->address
= func
->address
+ pc
;
354 block
->container
= parent_block
? &parent_block
->symt
: &func
->symt
;
355 vector_init(&block
->vchildren
, sizeof(struct symt
*), 4);
357 p
= vector_add(&parent_block
->vchildren
, &module
->pool
);
359 p
= vector_add(&func
->vchildren
, &module
->pool
);
365 struct symt_block
* symt_close_func_block(struct module
* module
,
366 struct symt_function
* func
,
367 struct symt_block
* block
, unsigned pc
)
370 assert(func
->symt
.tag
== SymTagFunction
);
372 if (pc
) block
->size
= func
->address
+ pc
- block
->address
;
373 return (block
->container
->tag
== SymTagBlock
) ?
374 GET_ENTRY(block
->container
, struct symt_block
, symt
) : NULL
;
377 struct symt_hierarchy_point
* symt_add_function_point(struct module
* module
,
378 struct symt_function
* func
,
379 enum SymTagEnum point
,
380 const struct location
* loc
,
383 struct symt_hierarchy_point
*sym
;
386 if ((sym
= pool_alloc(&module
->pool
, sizeof(*sym
))))
388 sym
->symt
.tag
= point
;
389 sym
->parent
= &func
->symt
;
391 sym
->hash_elt
.name
= name
? pool_strdup(&module
->pool
, name
) : NULL
;
392 p
= vector_add(&func
->vchildren
, &module
->pool
);
398 BOOL
symt_normalize_function(struct module
* module
, struct symt_function
* func
)
401 struct line_info
* dli
;
404 /* We aren't adding any more locals or line numbers to this function.
405 * Free any spare memory that we might have allocated.
407 assert(func
->symt
.tag
== SymTagFunction
);
409 /* EPP vector_pool_normalize(&func->vlines, &module->pool); */
410 /* EPP vector_pool_normalize(&func->vchildren, &module->pool); */
412 len
= vector_length(&func
->vlines
);
415 dli
= vector_at(&func
->vlines
, 0); dli
->is_first
= 1;
416 dli
= vector_at(&func
->vlines
, len
); dli
->is_last
= 1;
421 struct symt_thunk
* symt_new_thunk(struct module
* module
,
422 struct symt_compiland
* compiland
,
423 const char* name
, THUNK_ORDINAL ord
,
424 unsigned long addr
, unsigned long size
)
426 struct symt_thunk
* sym
;
428 TRACE_(dbghelp_symt
)("Adding global thunk %s:%s @%lx-%lx\n",
429 debugstr_w(module
->module
.ModuleName
), name
, addr
, addr
+ size
- 1);
431 if ((sym
= pool_alloc(&module
->pool
, sizeof(*sym
))))
433 sym
->symt
.tag
= SymTagThunk
;
434 sym
->hash_elt
.name
= pool_strdup(&module
->pool
, name
);
435 hash_table_add(&module
->ht_symbols
, &sym
->hash_elt
);
436 module
->sortlist_valid
= FALSE
;
437 sym
->container
= &compiland
->symt
;
444 p
= vector_add(&compiland
->vchildren
, &module
->pool
);
451 struct symt_data
* symt_new_constant(struct module
* module
,
452 struct symt_compiland
* compiland
,
453 const char* name
, struct symt
* type
,
456 struct symt_data
* sym
;
458 TRACE_(dbghelp_symt
)("Adding constant value %s:%s\n",
459 debugstr_w(module
->module
.ModuleName
), name
);
461 if ((sym
= pool_alloc(&module
->pool
, sizeof(*sym
))))
463 sym
->symt
.tag
= SymTagData
;
464 sym
->hash_elt
.name
= pool_strdup(&module
->pool
, name
);
465 hash_table_add(&module
->ht_symbols
, &sym
->hash_elt
);
466 module
->sortlist_valid
= FALSE
;
467 sym
->kind
= DataIsConstant
;
468 sym
->container
= compiland
? &compiland
->symt
: NULL
;
474 p
= vector_add(&compiland
->vchildren
, &module
->pool
);
481 struct symt_hierarchy_point
* symt_new_label(struct module
* module
,
482 struct symt_compiland
* compiland
,
483 const char* name
, unsigned long address
)
485 struct symt_hierarchy_point
* sym
;
487 TRACE_(dbghelp_symt
)("Adding global label value %s:%s\n",
488 debugstr_w(module
->module
.ModuleName
), name
);
490 if ((sym
= pool_alloc(&module
->pool
, sizeof(*sym
))))
492 sym
->symt
.tag
= SymTagLabel
;
493 sym
->hash_elt
.name
= pool_strdup(&module
->pool
, name
);
494 hash_table_add(&module
->ht_symbols
, &sym
->hash_elt
);
495 module
->sortlist_valid
= FALSE
;
496 sym
->loc
.kind
= loc_absolute
;
497 sym
->loc
.offset
= address
;
498 sym
->parent
= compiland
? &compiland
->symt
: NULL
;
502 p
= vector_add(&compiland
->vchildren
, &module
->pool
);
509 /* expect sym_info->MaxNameLen to be set before being called */
510 static void symt_fill_sym_info(const struct module_pair
* pair
,
511 const struct symt_function
* func
,
512 const struct symt
* sym
, SYMBOL_INFO
* sym_info
)
517 if (!symt_get_info(sym
, TI_GET_TYPE
, &sym_info
->TypeIndex
))
518 sym_info
->TypeIndex
= 0;
519 sym_info
->info
= (DWORD
)sym
;
520 sym_info
->Reserved
[0] = sym_info
->Reserved
[1] = 0;
521 if (!symt_get_info(sym
, TI_GET_LENGTH
, &size
) &&
522 (!sym_info
->TypeIndex
||
523 !symt_get_info((struct symt
*)sym_info
->TypeIndex
, TI_GET_LENGTH
, &size
)))
525 sym_info
->Size
= (DWORD
)size
;
526 sym_info
->ModBase
= pair
->requested
->module
.BaseOfImage
;
534 const struct symt_data
* data
= (const struct symt_data
*)sym
;
538 sym_info
->Flags
|= SYMFLAG_PARAMETER
;
542 struct location loc
= data
->u
.var
;
544 if (loc
.kind
>= loc_user
)
545 pair
->effective
->loc_compute(pair
->pcs
, pair
->effective
, func
, &loc
);
550 /* for now we report error cases as a negative register number */
551 sym_info
->Flags
|= SYMFLAG_LOCAL
;
554 sym_info
->Flags
|= SYMFLAG_REGISTER
;
555 sym_info
->Register
= loc
.reg
;
556 sym_info
->Address
= 0;
559 sym_info
->Flags
|= SYMFLAG_LOCAL
| SYMFLAG_REGREL
;
560 /* FIXME: it's i386 dependent !!! */
561 sym_info
->Register
= loc
.reg
? loc
.reg
: CV_REG_EBP
;
562 sym_info
->Address
= loc
.offset
;
565 FIXME("Shouldn't happen (kind=%d), debug reader backend is broken\n", loc
.kind
);
571 case DataIsFileStatic
:
572 symt_get_info(sym
, TI_GET_ADDRESS
, &sym_info
->Address
);
573 sym_info
->Register
= 0;
576 sym_info
->Flags
|= SYMFLAG_VALUEPRESENT
;
577 switch (data
->u
.value
.n1
.n2
.vt
)
579 case VT_I4
: sym_info
->Value
= (ULONG
)data
->u
.value
.n1
.n2
.n3
.lVal
; break;
580 case VT_I2
: sym_info
->Value
= (ULONG
)(long)data
->u
.value
.n1
.n2
.n3
.iVal
; break;
581 case VT_I1
: sym_info
->Value
= (ULONG
)(long)data
->u
.value
.n1
.n2
.n3
.cVal
; break;
582 case VT_UI4
: sym_info
->Value
= (ULONG
)data
->u
.value
.n1
.n2
.n3
.ulVal
; break;
583 case VT_UI2
: sym_info
->Value
= (ULONG
)data
->u
.value
.n1
.n2
.n3
.uiVal
; break;
584 case VT_UI1
: sym_info
->Value
= (ULONG
)data
->u
.value
.n1
.n2
.n3
.bVal
; break;
585 case VT_I1
| VT_BYREF
: sym_info
->Value
= (ULONG
)data
->u
.value
.n1
.n2
.n3
.byref
; break;
587 FIXME("Unsupported variant type (%u)\n", data
->u
.value
.n1
.n2
.vt
);
593 FIXME("Unhandled kind (%u) in sym data\n", data
->kind
);
597 case SymTagPublicSymbol
:
598 sym_info
->Flags
|= SYMFLAG_EXPORT
;
599 symt_get_info(sym
, TI_GET_ADDRESS
, &sym_info
->Address
);
602 sym_info
->Flags
|= SYMFLAG_FUNCTION
;
603 symt_get_info(sym
, TI_GET_ADDRESS
, &sym_info
->Address
);
606 sym_info
->Flags
|= SYMFLAG_THUNK
;
607 symt_get_info(sym
, TI_GET_ADDRESS
, &sym_info
->Address
);
610 symt_get_info(sym
, TI_GET_ADDRESS
, &sym_info
->Address
);
611 sym_info
->Register
= 0;
614 sym_info
->Scope
= 0; /* FIXME */
615 sym_info
->Tag
= sym
->tag
;
616 name
= symt_get_name(sym
);
617 if (sym_info
->MaxNameLen
)
619 if (sym
->tag
!= SymTagPublicSymbol
|| !(dbghelp_options
& SYMOPT_UNDNAME
) ||
620 (sym_info
->NameLen
= UnDecorateSymbolName(name
, sym_info
->Name
,
621 sym_info
->MaxNameLen
, UNDNAME_NAME_ONLY
) == 0))
623 sym_info
->NameLen
= min(strlen(name
), sym_info
->MaxNameLen
- 1);
624 memcpy(sym_info
->Name
, name
, sym_info
->NameLen
);
625 sym_info
->Name
[sym_info
->NameLen
] = '\0';
628 TRACE_(dbghelp_symt
)("%p => %s %u %s\n",
629 sym
, sym_info
->Name
, sym_info
->Size
,
630 wine_dbgstr_longlong(sym_info
->Address
));
635 PSYM_ENUMERATESYMBOLS_CALLBACK cb
;
637 SYMBOL_INFO
* sym_info
;
641 char buffer
[sizeof(SYMBOL_INFO
) + MAX_SYM_NAME
];
644 static BOOL
send_symbol(const struct sym_enum
* se
, const struct module_pair
* pair
,
645 const struct symt_function
* func
, const struct symt
* sym
)
647 symt_fill_sym_info(pair
, func
, sym
, se
->sym_info
);
648 if (se
->index
&& se
->sym_info
->info
!= se
->index
) return FALSE
;
649 if (se
->tag
&& se
->sym_info
->Tag
!= se
->tag
) return FALSE
;
650 if (se
->addr
&& !(se
->addr
>= se
->sym_info
->Address
&& se
->addr
< se
->sym_info
->Address
+ se
->sym_info
->Size
)) return FALSE
;
651 return !se
->cb(se
->sym_info
, se
->sym_info
->Size
, se
->user
);
654 static BOOL
symt_enum_module(struct module_pair
* pair
, const regex_t
* regex
,
655 const struct sym_enum
* se
)
658 struct symt_ht
* sym
= NULL
;
659 struct hash_table_iter hti
;
661 hash_table_iter_init(&pair
->effective
->ht_symbols
, &hti
, NULL
);
662 while ((ptr
= hash_table_iter_up(&hti
)))
664 sym
= GET_ENTRY(ptr
, struct symt_ht
, hash_elt
);
665 if (sym
->hash_elt
.name
&&
666 regexec(regex
, sym
->hash_elt
.name
, 0, NULL
, 0) == 0)
668 se
->sym_info
->SizeOfStruct
= sizeof(SYMBOL_INFO
);
669 se
->sym_info
->MaxNameLen
= sizeof(se
->buffer
) - sizeof(SYMBOL_INFO
);
670 if (send_symbol(se
, pair
, NULL
, &sym
->symt
)) return TRUE
;
676 /***********************************************************************
679 * Rebuild sorted list of symbols for a module.
681 static BOOL
resort_symbols(struct module
* module
)
685 struct hash_table_iter hti
;
688 if (!(module
->module
.NumSyms
= module
->ht_symbols
.num_elts
))
691 if (module
->addr_sorttab
)
692 module
->addr_sorttab
= HeapReAlloc(GetProcessHeap(), 0,
693 module
->addr_sorttab
,
694 module
->module
.NumSyms
* sizeof(struct symt_ht
*));
696 module
->addr_sorttab
= HeapAlloc(GetProcessHeap(), 0,
697 module
->module
.NumSyms
* sizeof(struct symt_ht
*));
698 if (!module
->addr_sorttab
) return FALSE
;
700 module
->num_sorttab
= 0;
701 hash_table_iter_init(&module
->ht_symbols
, &hti
, NULL
);
702 while ((ptr
= hash_table_iter_up(&hti
)))
704 sym
= GET_ENTRY(ptr
, struct symt_ht
, hash_elt
);
706 /* Don't store in sorttab symbol without address, they are of
707 * no use here (e.g. constant values)
708 * As the number of those symbols is very couple (a couple per module)
709 * we don't bother for the unused spots at the end of addr_sorttab
711 if (symt_get_info(&sym
->symt
, TI_GET_ADDRESS
, &addr
))
712 module
->addr_sorttab
[module
->num_sorttab
++] = sym
;
714 qsort(module
->addr_sorttab
, module
->num_sorttab
, sizeof(struct symt_ht
*), symt_cmp_addr
);
715 return module
->sortlist_valid
= TRUE
;
718 static void symt_get_length(struct symt
* symt
, ULONG64
* size
)
722 if (symt_get_info(symt
, TI_GET_LENGTH
, size
) && *size
)
725 if (symt_get_info(symt
, TI_GET_TYPE
, &type_index
) &&
726 symt_get_info((struct symt
*)type_index
, TI_GET_LENGTH
, size
)) return;
727 *size
= 0x1000; /* arbitrary value */
730 /* assume addr is in module */
731 struct symt_ht
* symt_find_nearest(struct module
* module
, DWORD addr
)
734 ULONG64 ref_addr
, ref_size
;
736 if (!module
->sortlist_valid
|| !module
->addr_sorttab
)
738 if (!resort_symbols(module
)) return NULL
;
742 * Binary search to find closest symbol.
745 high
= module
->num_sorttab
;
747 symt_get_info(&module
->addr_sorttab
[0]->symt
, TI_GET_ADDRESS
, &ref_addr
);
748 if (addr
< ref_addr
) return NULL
;
751 symt_get_info(&module
->addr_sorttab
[high
- 1]->symt
, TI_GET_ADDRESS
, &ref_addr
);
752 symt_get_length(&module
->addr_sorttab
[high
- 1]->symt
, &ref_size
);
753 if (addr
>= ref_addr
+ ref_size
) return NULL
;
756 while (high
> low
+ 1)
758 mid
= (high
+ low
) / 2;
759 if (cmp_sorttab_addr(module
, mid
, addr
) < 0)
764 if (low
!= high
&& high
!= module
->num_sorttab
&&
765 cmp_sorttab_addr(module
, high
, addr
) <= 0)
768 /* If found symbol is a public symbol, check if there are any other entries that
769 * might also have the same address, but would get better information
771 if (module
->addr_sorttab
[low
]->symt
.tag
== SymTagPublicSymbol
)
773 symt_get_info(&module
->addr_sorttab
[low
]->symt
, TI_GET_ADDRESS
, &ref_addr
);
775 module
->addr_sorttab
[low
- 1]->symt
.tag
!= SymTagPublicSymbol
&&
776 !cmp_sorttab_addr(module
, low
- 1, ref_addr
))
778 else if (low
< module
->num_sorttab
- 1 &&
779 module
->addr_sorttab
[low
+ 1]->symt
.tag
!= SymTagPublicSymbol
&&
780 !cmp_sorttab_addr(module
, low
+ 1, ref_addr
))
783 /* finally check that we fit into the found symbol */
784 symt_get_info(&module
->addr_sorttab
[low
]->symt
, TI_GET_ADDRESS
, &ref_addr
);
785 if (addr
< ref_addr
) return NULL
;
786 symt_get_length(&module
->addr_sorttab
[low
]->symt
, &ref_size
);
787 if (addr
>= ref_addr
+ ref_size
) return NULL
;
789 return module
->addr_sorttab
[low
];
792 static BOOL
symt_enum_locals_helper(struct module_pair
* pair
,
793 regex_t
* preg
, const struct sym_enum
* se
,
794 struct symt_function
* func
, const struct vector
* v
)
796 struct symt
* lsym
= NULL
;
797 DWORD pc
= pair
->pcs
->ctx_frame
.InstructionOffset
;
800 for (i
=0; i
<vector_length(v
); i
++)
802 lsym
= *(struct symt
**)vector_at(v
, i
);
807 struct symt_block
* block
= (struct symt_block
*)lsym
;
808 if (pc
< block
->address
|| block
->address
+ block
->size
<= pc
)
810 if (!symt_enum_locals_helper(pair
, preg
, se
, func
, &block
->vchildren
))
815 if (regexec(preg
, symt_get_name(lsym
), 0, NULL
, 0) == 0)
817 if (send_symbol(se
, pair
, func
, lsym
)) return FALSE
;
821 case SymTagFuncDebugStart
:
822 case SymTagFuncDebugEnd
:
826 FIXME("Unknown type: %u (%x)\n", lsym
->tag
, lsym
->tag
);
833 static BOOL
symt_enum_locals(struct process
* pcs
, const char* mask
,
834 const struct sym_enum
* se
)
836 struct module_pair pair
;
838 DWORD pc
= pcs
->ctx_frame
.InstructionOffset
;
840 se
->sym_info
->SizeOfStruct
= sizeof(*se
->sym_info
);
841 se
->sym_info
->MaxNameLen
= sizeof(se
->buffer
) - sizeof(SYMBOL_INFO
);
844 pair
.requested
= module_find_by_addr(pair
.pcs
, pc
, DMT_UNKNOWN
);
845 if (!module_get_debug(&pair
)) return FALSE
;
846 if ((sym
= symt_find_nearest(pair
.effective
, pc
)) == NULL
) return FALSE
;
848 if (sym
->symt
.tag
== SymTagFunction
)
853 compile_regex(mask
? mask
: "*", -1, &preg
,
854 dbghelp_options
& SYMOPT_CASE_INSENSITIVE
);
855 ret
= symt_enum_locals_helper(&pair
, &preg
, se
, (struct symt_function
*)sym
,
856 &((struct symt_function
*)sym
)->vchildren
);
861 return send_symbol(se
, &pair
, NULL
, &sym
->symt
);
864 /******************************************************************
867 * Helper for transforming an ANSI symbol info into an UNICODE one.
868 * Assume that MaxNameLen is the same for both version (A & W).
870 void copy_symbolW(SYMBOL_INFOW
* siw
, const SYMBOL_INFO
* si
)
872 siw
->SizeOfStruct
= si
->SizeOfStruct
;
873 siw
->TypeIndex
= si
->TypeIndex
;
874 siw
->Reserved
[0] = si
->Reserved
[0];
875 siw
->Reserved
[1] = si
->Reserved
[1];
876 siw
->Index
= si
->info
; /* FIXME: see dbghelp.h */
877 siw
->Size
= si
->Size
;
878 siw
->ModBase
= si
->ModBase
;
879 siw
->Flags
= si
->Flags
;
880 siw
->Value
= si
->Value
;
881 siw
->Address
= si
->Address
;
882 siw
->Register
= si
->Register
;
883 siw
->Scope
= si
->Scope
;
885 siw
->NameLen
= si
->NameLen
;
886 siw
->MaxNameLen
= si
->MaxNameLen
;
887 MultiByteToWideChar(CP_ACP
, 0, si
->Name
, -1, siw
->Name
, siw
->MaxNameLen
);
890 /******************************************************************
893 * Core routine for most of the enumeration of symbols
895 static BOOL
sym_enum(HANDLE hProcess
, ULONG64 BaseOfDll
, PCSTR Mask
,
896 const struct sym_enum
* se
)
898 struct module_pair pair
;
900 regex_t mod_regex
, sym_regex
;
902 pair
.pcs
= process_find_by_handle(hProcess
);
905 /* do local variables ? */
906 if (!Mask
|| !(bang
= strchr(Mask
, '!')))
907 return symt_enum_locals(pair
.pcs
, Mask
, se
);
909 if (bang
== Mask
) return FALSE
;
911 compile_regex(Mask
, bang
- Mask
, &mod_regex
, TRUE
);
912 compile_regex(bang
+ 1, -1, &sym_regex
,
913 dbghelp_options
& SYMOPT_CASE_INSENSITIVE
);
915 for (pair
.requested
= pair
.pcs
->lmodules
; pair
.requested
; pair
.requested
= pair
.requested
->next
)
917 if (pair
.requested
->type
== DMT_PE
&& module_get_debug(&pair
))
919 if (regexec(&mod_regex
, pair
.requested
->module_name
, 0, NULL
, 0) == 0 &&
920 symt_enum_module(&pair
, &sym_regex
, se
))
924 /* not found in PE modules, retry on the ELF ones
926 if (!pair
.requested
&& (dbghelp_options
& SYMOPT_WINE_WITH_ELF_MODULES
))
928 for (pair
.requested
= pair
.pcs
->lmodules
; pair
.requested
; pair
.requested
= pair
.requested
->next
)
930 if (pair
.requested
->type
== DMT_ELF
&&
931 !module_get_containee(pair
.pcs
, pair
.requested
) &&
932 module_get_debug(&pair
))
934 if (regexec(&mod_regex
, pair
.requested
->module_name
, 0, NULL
, 0) == 0 &&
935 symt_enum_module(&pair
, &sym_regex
, se
))
944 pair
.requested
= module_find_by_addr(pair
.pcs
, BaseOfDll
, DMT_UNKNOWN
);
945 if (!module_get_debug(&pair
))
948 /* we always ignore module name from Mask when BaseOfDll is defined */
949 if (Mask
&& (bang
= strchr(Mask
, '!')))
951 if (bang
== Mask
) return FALSE
;
955 compile_regex(Mask
? Mask
: "*", -1, &sym_regex
,
956 dbghelp_options
& SYMOPT_CASE_INSENSITIVE
);
957 symt_enum_module(&pair
, &sym_regex
, se
);
963 /******************************************************************
964 * SymEnumSymbols (DBGHELP.@)
966 * cases BaseOfDll = 0
967 * !foo fails always (despite what MSDN states)
968 * RE1!RE2 looks up all modules matching RE1, and in all these modules, lookup RE2
969 * no ! in Mask, lookup in local Context
970 * cases BaseOfDll != 0
971 * !foo fails always (despite what MSDN states)
972 * RE1!RE2 gets RE2 from BaseOfDll (whatever RE1 is)
974 BOOL WINAPI
SymEnumSymbols(HANDLE hProcess
, ULONG64 BaseOfDll
, PCSTR Mask
,
975 PSYM_ENUMERATESYMBOLS_CALLBACK EnumSymbolsCallback
,
980 TRACE("(%p %s %s %p %p)\n",
981 hProcess
, wine_dbgstr_longlong(BaseOfDll
), debugstr_a(Mask
),
982 EnumSymbolsCallback
, UserContext
);
984 se
.cb
= EnumSymbolsCallback
;
985 se
.user
= UserContext
;
989 se
.sym_info
= (PSYMBOL_INFO
)se
.buffer
;
991 return sym_enum(hProcess
, BaseOfDll
, Mask
, &se
);
996 PSYM_ENUMERATESYMBOLS_CALLBACKW cb
;
998 PSYMBOL_INFOW sym_info
;
999 char buffer
[sizeof(SYMBOL_INFOW
) + MAX_SYM_NAME
];
1003 static BOOL CALLBACK
sym_enumW(PSYMBOL_INFO si
, ULONG size
, PVOID ctx
)
1005 struct sym_enumW
* sew
= ctx
;
1007 copy_symbolW(sew
->sym_info
, si
);
1009 return (sew
->cb
)(sew
->sym_info
, size
, sew
->ctx
);
1012 /******************************************************************
1013 * SymEnumSymbolsW (DBGHELP.@)
1016 BOOL WINAPI
SymEnumSymbolsW(HANDLE hProcess
, ULONG64 BaseOfDll
, PCWSTR Mask
,
1017 PSYM_ENUMERATESYMBOLS_CALLBACKW EnumSymbolsCallback
,
1020 struct sym_enumW sew
;
1024 sew
.ctx
= UserContext
;
1025 sew
.cb
= EnumSymbolsCallback
;
1026 sew
.sym_info
= (PSYMBOL_INFOW
)sew
.buffer
;
1030 unsigned len
= WideCharToMultiByte(CP_ACP
, 0, Mask
, -1, NULL
, 0, NULL
, NULL
);
1031 maskA
= HeapAlloc(GetProcessHeap(), 0, len
);
1032 if (!maskA
) return FALSE
;
1033 WideCharToMultiByte(CP_ACP
, 0, Mask
, -1, maskA
, len
, NULL
, NULL
);
1035 ret
= SymEnumSymbols(hProcess
, BaseOfDll
, maskA
, sym_enumW
, &sew
);
1036 HeapFree(GetProcessHeap(), 0, maskA
);
1041 struct sym_enumerate
1044 PSYM_ENUMSYMBOLS_CALLBACK cb
;
1047 static BOOL CALLBACK
sym_enumerate_cb(PSYMBOL_INFO syminfo
, ULONG size
, void* ctx
)
1049 struct sym_enumerate
* se
= (struct sym_enumerate
*)ctx
;
1050 return (se
->cb
)(syminfo
->Name
, syminfo
->Address
, syminfo
->Size
, se
->ctx
);
1053 /***********************************************************************
1054 * SymEnumerateSymbols (DBGHELP.@)
1056 BOOL WINAPI
SymEnumerateSymbols(HANDLE hProcess
, DWORD BaseOfDll
,
1057 PSYM_ENUMSYMBOLS_CALLBACK EnumSymbolsCallback
,
1060 struct sym_enumerate se
;
1062 se
.ctx
= UserContext
;
1063 se
.cb
= EnumSymbolsCallback
;
1065 return SymEnumSymbols(hProcess
, BaseOfDll
, NULL
, sym_enumerate_cb
, &se
);
1068 struct sym_enumerate64
1071 PSYM_ENUMSYMBOLS_CALLBACK64 cb
;
1074 static BOOL CALLBACK
sym_enumerate_cb64(PSYMBOL_INFO syminfo
, ULONG size
, void* ctx
)
1076 struct sym_enumerate64
* se
= (struct sym_enumerate64
*)ctx
;
1077 return (se
->cb
)(syminfo
->Name
, syminfo
->Address
, syminfo
->Size
, se
->ctx
);
1080 /***********************************************************************
1081 * SymEnumerateSymbols64 (DBGHELP.@)
1083 BOOL WINAPI
SymEnumerateSymbols64(HANDLE hProcess
, DWORD64 BaseOfDll
,
1084 PSYM_ENUMSYMBOLS_CALLBACK64 EnumSymbolsCallback
,
1087 struct sym_enumerate64 se
;
1089 se
.ctx
= UserContext
;
1090 se
.cb
= EnumSymbolsCallback
;
1092 return SymEnumSymbols(hProcess
, BaseOfDll
, NULL
, sym_enumerate_cb64
, &se
);
1095 /******************************************************************
1096 * SymFromAddr (DBGHELP.@)
1099 BOOL WINAPI
SymFromAddr(HANDLE hProcess
, DWORD64 Address
,
1100 DWORD64
* Displacement
, PSYMBOL_INFO Symbol
)
1102 struct module_pair pair
;
1103 struct symt_ht
* sym
;
1105 pair
.pcs
= process_find_by_handle(hProcess
);
1106 if (!pair
.pcs
) return FALSE
;
1107 pair
.requested
= module_find_by_addr(pair
.pcs
, Address
, DMT_UNKNOWN
);
1108 if (!module_get_debug(&pair
)) return FALSE
;
1109 if ((sym
= symt_find_nearest(pair
.effective
, Address
)) == NULL
) return FALSE
;
1111 symt_fill_sym_info(&pair
, NULL
, &sym
->symt
, Symbol
);
1112 *Displacement
= Address
- Symbol
->Address
;
1116 /******************************************************************
1117 * SymFromAddrW (DBGHELP.@)
1120 BOOL WINAPI
SymFromAddrW(HANDLE hProcess
, DWORD64 Address
,
1121 DWORD64
* Displacement
, PSYMBOL_INFOW Symbol
)
1127 len
= sizeof(*si
) + Symbol
->MaxNameLen
* sizeof(WCHAR
);
1128 si
= HeapAlloc(GetProcessHeap(), 0, len
);
1129 if (!si
) return FALSE
;
1131 si
->SizeOfStruct
= sizeof(*si
);
1132 si
->MaxNameLen
= Symbol
->MaxNameLen
;
1133 if ((ret
= SymFromAddr(hProcess
, Address
, Displacement
, si
)))
1135 copy_symbolW(Symbol
, si
);
1137 HeapFree(GetProcessHeap(), 0, si
);
1141 /******************************************************************
1142 * SymGetSymFromAddr (DBGHELP.@)
1145 BOOL WINAPI
SymGetSymFromAddr(HANDLE hProcess
, DWORD Address
,
1146 PDWORD Displacement
, PIMAGEHLP_SYMBOL Symbol
)
1148 char buffer
[sizeof(SYMBOL_INFO
) + MAX_SYM_NAME
];
1149 SYMBOL_INFO
*si
= (SYMBOL_INFO
*)buffer
;
1151 DWORD64 Displacement64
;
1153 if (Symbol
->SizeOfStruct
< sizeof(*Symbol
)) return FALSE
;
1154 si
->SizeOfStruct
= sizeof(*si
);
1155 si
->MaxNameLen
= MAX_SYM_NAME
;
1156 if (!SymFromAddr(hProcess
, Address
, &Displacement64
, si
))
1160 *Displacement
= Displacement64
;
1161 Symbol
->Address
= si
->Address
;
1162 Symbol
->Size
= si
->Size
;
1163 Symbol
->Flags
= si
->Flags
;
1164 len
= min(Symbol
->MaxNameLength
, si
->MaxNameLen
);
1165 lstrcpynA(Symbol
->Name
, si
->Name
, len
);
1169 /******************************************************************
1170 * SymGetSymFromAddr64 (DBGHELP.@)
1173 BOOL WINAPI
SymGetSymFromAddr64(HANDLE hProcess
, DWORD64 Address
,
1174 PDWORD64 Displacement
, PIMAGEHLP_SYMBOL64 Symbol
)
1176 char buffer
[sizeof(SYMBOL_INFO
) + MAX_SYM_NAME
];
1177 SYMBOL_INFO
*si
= (SYMBOL_INFO
*)buffer
;
1179 DWORD64 Displacement64
;
1181 if (Symbol
->SizeOfStruct
< sizeof(*Symbol
)) return FALSE
;
1182 si
->SizeOfStruct
= sizeof(*si
);
1183 si
->MaxNameLen
= MAX_SYM_NAME
;
1184 if (!SymFromAddr(hProcess
, Address
, &Displacement64
, si
))
1188 *Displacement
= Displacement64
;
1189 Symbol
->Address
= si
->Address
;
1190 Symbol
->Size
= si
->Size
;
1191 Symbol
->Flags
= si
->Flags
;
1192 len
= min(Symbol
->MaxNameLength
, si
->MaxNameLen
);
1193 lstrcpynA(Symbol
->Name
, si
->Name
, len
);
1197 static BOOL
find_name(struct process
* pcs
, struct module
* module
, const char* name
,
1198 SYMBOL_INFO
* symbol
)
1200 struct hash_table_iter hti
;
1202 struct symt_ht
* sym
= NULL
;
1203 struct module_pair pair
;
1206 if (!(pair
.requested
= module
)) return FALSE
;
1207 if (!module_get_debug(&pair
)) return FALSE
;
1209 hash_table_iter_init(&pair
.effective
->ht_symbols
, &hti
, name
);
1210 while ((ptr
= hash_table_iter_up(&hti
)))
1212 sym
= GET_ENTRY(ptr
, struct symt_ht
, hash_elt
);
1214 if (!strcmp(sym
->hash_elt
.name
, name
))
1216 symt_fill_sym_info(&pair
, NULL
, &sym
->symt
, symbol
);
1223 /******************************************************************
1224 * SymFromName (DBGHELP.@)
1227 BOOL WINAPI
SymFromName(HANDLE hProcess
, PCSTR Name
, PSYMBOL_INFO Symbol
)
1229 struct process
* pcs
= process_find_by_handle(hProcess
);
1230 struct module
* module
;
1233 TRACE("(%p, %s, %p)\n", hProcess
, Name
, Symbol
);
1234 if (!pcs
) return FALSE
;
1235 if (Symbol
->SizeOfStruct
< sizeof(*Symbol
)) return FALSE
;
1236 name
= strchr(Name
, '!');
1240 assert(name
- Name
< sizeof(tmp
));
1241 memcpy(tmp
, Name
, name
- Name
);
1242 tmp
[name
- Name
] = '\0';
1243 module
= module_find_by_nameA(pcs
, tmp
);
1244 return find_name(pcs
, module
, name
+ 1, Symbol
);
1246 for (module
= pcs
->lmodules
; module
; module
= module
->next
)
1248 if (module
->type
== DMT_PE
&& find_name(pcs
, module
, Name
, Symbol
))
1251 /* not found in PE modules, retry on the ELF ones
1253 if (dbghelp_options
& SYMOPT_WINE_WITH_ELF_MODULES
)
1255 for (module
= pcs
->lmodules
; module
; module
= module
->next
)
1257 if (module
->type
== DMT_ELF
&& !module_get_containee(pcs
, module
) &&
1258 find_name(pcs
, module
, Name
, Symbol
))
1265 /***********************************************************************
1266 * SymGetSymFromName (DBGHELP.@)
1268 BOOL WINAPI
SymGetSymFromName(HANDLE hProcess
, PCSTR Name
, PIMAGEHLP_SYMBOL Symbol
)
1270 char buffer
[sizeof(SYMBOL_INFO
) + MAX_SYM_NAME
];
1271 SYMBOL_INFO
*si
= (SYMBOL_INFO
*)buffer
;
1274 if (Symbol
->SizeOfStruct
< sizeof(*Symbol
)) return FALSE
;
1275 si
->SizeOfStruct
= sizeof(*si
);
1276 si
->MaxNameLen
= MAX_SYM_NAME
;
1277 if (!SymFromName(hProcess
, Name
, si
)) return FALSE
;
1279 Symbol
->Address
= si
->Address
;
1280 Symbol
->Size
= si
->Size
;
1281 Symbol
->Flags
= si
->Flags
;
1282 len
= min(Symbol
->MaxNameLength
, si
->MaxNameLen
);
1283 lstrcpynA(Symbol
->Name
, si
->Name
, len
);
1287 /******************************************************************
1288 * sym_fill_func_line_info
1290 * fills information about a file
1292 BOOL
symt_fill_func_line_info(const struct module
* module
, const struct symt_function
* func
,
1293 DWORD addr
, IMAGEHLP_LINE
* line
)
1295 struct line_info
* dli
= NULL
;
1299 assert(func
->symt
.tag
== SymTagFunction
);
1301 for (i
=vector_length(&func
->vlines
)-1; i
>=0; i
--)
1303 dli
= vector_at(&func
->vlines
, i
);
1304 if (!dli
->is_source_file
)
1306 if (found
|| dli
->u
.pc_offset
> addr
) continue;
1307 line
->LineNumber
= dli
->line_number
;
1308 line
->Address
= dli
->u
.pc_offset
;
1315 line
->FileName
= (char*)source_get(module
, dli
->u
.source_file
);
1322 /***********************************************************************
1323 * SymGetSymNext (DBGHELP.@)
1325 BOOL WINAPI
SymGetSymNext(HANDLE hProcess
, PIMAGEHLP_SYMBOL Symbol
)
1328 * get module from Symbol.Address
1329 * get index in module.addr_sorttab of Symbol.Address
1331 * if out of module bounds, move to next module in process address space
1333 FIXME("(%p, %p): stub\n", hProcess
, Symbol
);
1334 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
1338 /***********************************************************************
1339 * SymGetSymPrev (DBGHELP.@)
1342 BOOL WINAPI
SymGetSymPrev(HANDLE hProcess
, PIMAGEHLP_SYMBOL Symbol
)
1344 FIXME("(%p, %p): stub\n", hProcess
, Symbol
);
1345 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
1349 /******************************************************************
1350 * SymGetLineFromAddr (DBGHELP.@)
1353 BOOL WINAPI
SymGetLineFromAddr(HANDLE hProcess
, DWORD dwAddr
,
1354 PDWORD pdwDisplacement
, PIMAGEHLP_LINE Line
)
1356 struct module_pair pair
;
1357 struct symt_ht
* symt
;
1359 TRACE("%p %08x %p %p\n", hProcess
, dwAddr
, pdwDisplacement
, Line
);
1361 if (Line
->SizeOfStruct
< sizeof(*Line
)) return FALSE
;
1363 pair
.pcs
= process_find_by_handle(hProcess
);
1364 if (!pair
.pcs
) return FALSE
;
1365 pair
.requested
= module_find_by_addr(pair
.pcs
, dwAddr
, DMT_UNKNOWN
);
1366 if (!module_get_debug(&pair
)) return FALSE
;
1367 if ((symt
= symt_find_nearest(pair
.effective
, dwAddr
)) == NULL
) return FALSE
;
1369 if (symt
->symt
.tag
!= SymTagFunction
) return FALSE
;
1370 if (!symt_fill_func_line_info(pair
.effective
, (struct symt_function
*)symt
,
1371 dwAddr
, Line
)) return FALSE
;
1372 *pdwDisplacement
= dwAddr
- Line
->Address
;
1376 /******************************************************************
1377 * copy_line_64_from_32 (internal)
1380 static void copy_line_64_from_32(IMAGEHLP_LINE64
* l64
, const IMAGEHLP_LINE
* l32
)
1383 l64
->Key
= l32
->Key
;
1384 l64
->LineNumber
= l32
->LineNumber
;
1385 l64
->FileName
= l32
->FileName
;
1386 l64
->Address
= l32
->Address
;
1389 /******************************************************************
1390 * copy_line_W64_from_32 (internal)
1393 static void copy_line_W64_from_32(struct process
* pcs
, IMAGEHLP_LINEW64
* l64
, const IMAGEHLP_LINE
* l32
)
1397 l64
->Key
= l32
->Key
;
1398 l64
->LineNumber
= l32
->LineNumber
;
1399 len
= MultiByteToWideChar(CP_ACP
, 0, l32
->FileName
, -1, NULL
, 0);
1400 if ((l64
->FileName
= fetch_buffer(pcs
, len
* sizeof(WCHAR
))))
1401 MultiByteToWideChar(CP_ACP
, 0, l32
->FileName
, -1, l64
->FileName
, len
);
1402 l64
->Address
= l32
->Address
;
1405 /******************************************************************
1406 * copy_line_32_from_64 (internal)
1409 static void copy_line_32_from_64(IMAGEHLP_LINE
* l32
, const IMAGEHLP_LINE64
* l64
)
1412 l32
->Key
= l64
->Key
;
1413 l32
->LineNumber
= l64
->LineNumber
;
1414 l32
->FileName
= l64
->FileName
;
1415 l32
->Address
= l64
->Address
;
1418 /******************************************************************
1419 * SymGetLineFromAddr64 (DBGHELP.@)
1422 BOOL WINAPI
SymGetLineFromAddr64(HANDLE hProcess
, DWORD64 dwAddr
,
1423 PDWORD pdwDisplacement
, PIMAGEHLP_LINE64 Line
)
1425 IMAGEHLP_LINE line32
;
1427 if (Line
->SizeOfStruct
< sizeof(*Line
)) return FALSE
;
1428 if (!validate_addr64(dwAddr
)) return FALSE
;
1429 line32
.SizeOfStruct
= sizeof(line32
);
1430 if (!SymGetLineFromAddr(hProcess
, (DWORD
)dwAddr
, pdwDisplacement
, &line32
))
1432 copy_line_64_from_32(Line
, &line32
);
1436 /******************************************************************
1437 * SymGetLineFromAddrW64 (DBGHELP.@)
1440 BOOL WINAPI
SymGetLineFromAddrW64(HANDLE hProcess
, DWORD64 dwAddr
,
1441 PDWORD pdwDisplacement
, PIMAGEHLP_LINEW64 Line
)
1443 struct process
* pcs
= process_find_by_handle(hProcess
);
1444 IMAGEHLP_LINE line32
;
1446 if (!pcs
) return FALSE
;
1447 if (Line
->SizeOfStruct
< sizeof(*Line
)) return FALSE
;
1448 if (!validate_addr64(dwAddr
)) return FALSE
;
1449 line32
.SizeOfStruct
= sizeof(line32
);
1450 if (!SymGetLineFromAddr(hProcess
, (DWORD
)dwAddr
, pdwDisplacement
, &line32
))
1452 copy_line_W64_from_32(pcs
, Line
, &line32
);
1456 /******************************************************************
1457 * SymGetLinePrev (DBGHELP.@)
1460 BOOL WINAPI
SymGetLinePrev(HANDLE hProcess
, PIMAGEHLP_LINE Line
)
1462 struct module_pair pair
;
1463 struct line_info
* li
;
1464 BOOL in_search
= FALSE
;
1466 TRACE("(%p %p)\n", hProcess
, Line
);
1468 if (Line
->SizeOfStruct
< sizeof(*Line
)) return FALSE
;
1470 pair
.pcs
= process_find_by_handle(hProcess
);
1471 if (!pair
.pcs
) return FALSE
;
1472 pair
.requested
= module_find_by_addr(pair
.pcs
, Line
->Address
, DMT_UNKNOWN
);
1473 if (!module_get_debug(&pair
)) return FALSE
;
1475 if (Line
->Key
== 0) return FALSE
;
1476 li
= (struct line_info
*)Line
->Key
;
1477 /* things are a bit complicated because when we encounter a DLIT_SOURCEFILE
1478 * element we have to go back until we find the prev one to get the real
1479 * source file name for the DLIT_OFFSET element just before
1480 * the first DLIT_SOURCEFILE
1482 while (!li
->is_first
)
1485 if (!li
->is_source_file
)
1487 Line
->LineNumber
= li
->line_number
;
1488 Line
->Address
= li
->u
.pc_offset
;
1490 if (!in_search
) return TRUE
;
1496 Line
->FileName
= (char*)source_get(pair
.effective
, li
->u
.source_file
);
1502 SetLastError(ERROR_NO_MORE_ITEMS
); /* FIXME */
1506 /******************************************************************
1507 * SymGetLinePrev64 (DBGHELP.@)
1510 BOOL WINAPI
SymGetLinePrev64(HANDLE hProcess
, PIMAGEHLP_LINE64 Line
)
1512 IMAGEHLP_LINE line32
;
1514 line32
.SizeOfStruct
= sizeof(line32
);
1515 copy_line_32_from_64(&line32
, Line
);
1516 if (!SymGetLinePrev(hProcess
, &line32
)) return FALSE
;
1517 copy_line_64_from_32(Line
, &line32
);
1521 BOOL
symt_get_func_line_next(const struct module
* module
, PIMAGEHLP_LINE line
)
1523 struct line_info
* li
;
1525 if (line
->Key
== 0) return FALSE
;
1526 li
= (struct line_info
*)line
->Key
;
1527 while (!li
->is_last
)
1530 if (!li
->is_source_file
)
1532 line
->LineNumber
= li
->line_number
;
1533 line
->Address
= li
->u
.pc_offset
;
1537 line
->FileName
= (char*)source_get(module
, li
->u
.source_file
);
1542 /******************************************************************
1543 * SymGetLineNext (DBGHELP.@)
1546 BOOL WINAPI
SymGetLineNext(HANDLE hProcess
, PIMAGEHLP_LINE Line
)
1548 struct module_pair pair
;
1550 TRACE("(%p %p)\n", hProcess
, Line
);
1552 if (Line
->SizeOfStruct
< sizeof(*Line
)) return FALSE
;
1553 pair
.pcs
= process_find_by_handle(hProcess
);
1554 if (!pair
.pcs
) return FALSE
;
1555 pair
.requested
= module_find_by_addr(pair
.pcs
, Line
->Address
, DMT_UNKNOWN
);
1556 if (!module_get_debug(&pair
)) return FALSE
;
1558 if (symt_get_func_line_next(pair
.effective
, Line
)) return TRUE
;
1559 SetLastError(ERROR_NO_MORE_ITEMS
); /* FIXME */
1563 /******************************************************************
1564 * SymGetLineNext64 (DBGHELP.@)
1567 BOOL WINAPI
SymGetLineNext64(HANDLE hProcess
, PIMAGEHLP_LINE64 Line
)
1569 IMAGEHLP_LINE line32
;
1571 line32
.SizeOfStruct
= sizeof(line32
);
1572 copy_line_32_from_64(&line32
, Line
);
1573 if (!SymGetLineNext(hProcess
, &line32
)) return FALSE
;
1574 copy_line_64_from_32(Line
, &line32
);
1578 /***********************************************************************
1579 * SymFunctionTableAccess (DBGHELP.@)
1581 PVOID WINAPI
SymFunctionTableAccess(HANDLE hProcess
, DWORD AddrBase
)
1583 WARN("(%p, 0x%08x): stub\n", hProcess
, AddrBase
);
1587 /***********************************************************************
1588 * SymFunctionTableAccess64 (DBGHELP.@)
1590 PVOID WINAPI
SymFunctionTableAccess64(HANDLE hProcess
, DWORD64 AddrBase
)
1592 WARN("(%p, %s): stub\n", hProcess
, wine_dbgstr_longlong(AddrBase
));
1596 /***********************************************************************
1597 * SymUnDName (DBGHELP.@)
1599 BOOL WINAPI
SymUnDName(PIMAGEHLP_SYMBOL sym
, PSTR UnDecName
, DWORD UnDecNameLength
)
1601 TRACE("(%p %s %u)\n", sym
, UnDecName
, UnDecNameLength
);
1602 return UnDecorateSymbolName(sym
->Name
, UnDecName
, UnDecNameLength
,
1603 UNDNAME_COMPLETE
) != 0;
1606 static void* und_alloc(size_t len
) { return HeapAlloc(GetProcessHeap(), 0, len
); }
1607 static void und_free (void* ptr
) { HeapFree(GetProcessHeap(), 0, ptr
); }
1609 /***********************************************************************
1610 * UnDecorateSymbolName (DBGHELP.@)
1612 DWORD WINAPI
UnDecorateSymbolName(PCSTR DecoratedName
, PSTR UnDecoratedName
,
1613 DWORD UndecoratedLength
, DWORD Flags
)
1615 /* undocumented from msvcrt */
1616 static char* (*p_undname
)(char*, const char*, int, void* (*)(size_t), void (*)(void*), unsigned short);
1617 static const WCHAR szMsvcrt
[] = {'m','s','v','c','r','t','.','d','l','l',0};
1619 TRACE("(%s, %p, %d, 0x%08x)\n",
1620 debugstr_a(DecoratedName
), UnDecoratedName
, UndecoratedLength
, Flags
);
1624 if (!hMsvcrt
) hMsvcrt
= LoadLibraryW(szMsvcrt
);
1625 if (hMsvcrt
) p_undname
= (void*)GetProcAddress(hMsvcrt
, "__unDName");
1626 if (!p_undname
) return 0;
1629 if (!UnDecoratedName
) return 0;
1630 if (!p_undname(UnDecoratedName
, DecoratedName
, UndecoratedLength
,
1631 und_alloc
, und_free
, Flags
))
1633 return strlen(UnDecoratedName
);
1636 /******************************************************************
1637 * SymMatchString (DBGHELP.@)
1640 BOOL WINAPI
SymMatchString(PCSTR string
, PCSTR re
, BOOL _case
)
1645 TRACE("%s %s %c\n", string
, re
, _case
? 'Y' : 'N');
1647 compile_regex(re
, -1, &preg
, _case
);
1648 ret
= regexec(&preg
, string
, 0, NULL
, 0) == 0;
1653 /******************************************************************
1654 * SymSearch (DBGHELP.@)
1656 BOOL WINAPI
SymSearch(HANDLE hProcess
, ULONG64 BaseOfDll
, DWORD Index
,
1657 DWORD SymTag
, PCSTR Mask
, DWORD64 Address
,
1658 PSYM_ENUMERATESYMBOLS_CALLBACK EnumSymbolsCallback
,
1659 PVOID UserContext
, DWORD Options
)
1663 TRACE("(%p %s %u %u %s %s %p %p %x)\n",
1664 hProcess
, wine_dbgstr_longlong(BaseOfDll
), Index
, SymTag
, Mask
,
1665 wine_dbgstr_longlong(Address
), EnumSymbolsCallback
,
1666 UserContext
, Options
);
1668 if (Options
!= SYMSEARCH_GLOBALSONLY
)
1670 FIXME("Unsupported searching with options (%x)\n", Options
);
1671 SetLastError(ERROR_INVALID_PARAMETER
);
1675 se
.cb
= EnumSymbolsCallback
;
1676 se
.user
= UserContext
;
1680 se
.sym_info
= (PSYMBOL_INFO
)se
.buffer
;
1682 return sym_enum(hProcess
, BaseOfDll
, Mask
, &se
);
1685 /******************************************************************
1686 * SymSearchW (DBGHELP.@)
1688 BOOL WINAPI
SymSearchW(HANDLE hProcess
, ULONG64 BaseOfDll
, DWORD Index
,
1689 DWORD SymTag
, PCWSTR Mask
, DWORD64 Address
,
1690 PSYM_ENUMERATESYMBOLS_CALLBACKW EnumSymbolsCallback
,
1691 PVOID UserContext
, DWORD Options
)
1693 struct sym_enumW sew
;
1697 TRACE("(%p %s %u %u %s %s %p %p %x)\n",
1698 hProcess
, wine_dbgstr_longlong(BaseOfDll
), Index
, SymTag
, debugstr_w(Mask
),
1699 wine_dbgstr_longlong(Address
), EnumSymbolsCallback
,
1700 UserContext
, Options
);
1702 sew
.ctx
= UserContext
;
1703 sew
.cb
= EnumSymbolsCallback
;
1704 sew
.sym_info
= (PSYMBOL_INFOW
)sew
.buffer
;
1708 unsigned len
= WideCharToMultiByte(CP_ACP
, 0, Mask
, -1, NULL
, 0, NULL
, NULL
);
1709 maskA
= HeapAlloc(GetProcessHeap(), 0, len
);
1710 if (!maskA
) return FALSE
;
1711 WideCharToMultiByte(CP_ACP
, 0, Mask
, -1, maskA
, len
, NULL
, NULL
);
1713 ret
= SymSearch(hProcess
, BaseOfDll
, Index
, SymTag
, maskA
, Address
,
1714 sym_enumW
, &sew
, Options
);
1715 HeapFree(GetProcessHeap(), 0, maskA
);