symbol.c 55.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * File symbol.c - management of symbols (lexical tree)
 *
 * Copyright (C) 1993, Eric Youngdale.
 *               2004, Eric Pouech
 *
 * This library is free software; 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; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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.
 *
 * You should have received a copy of the GNU Lesser General Public
 * 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
20 21
 */

22 23
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
24

25
#include "config.h"
26

27 28 29 30 31 32
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <limits.h>
#include <sys/types.h>
#include <assert.h>
33 34 35
#ifdef HAVE_REGEX_H
# include <regex.h>
#endif
36

37
#include "wine/debug.h"
38
#include "dbghelp_private.h"
39
#include "winnls.h"
40 41

WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);
42
WINE_DECLARE_DEBUG_CHANNEL(dbghelp_symt);
43

44
static inline int cmp_addr(ULONG64 a1, ULONG64 a2)
45 46 47 48 49 50
{
    if (a1 > a2) return 1;
    if (a1 < a2) return -1;
    return 0;
}

51
static inline int cmp_sorttab_addr(const struct module* module, int idx, ULONG64 addr)
52
{
53
    ULONG64     ref;
54 55 56 57 58 59 60

    symt_get_info(&module->addr_sorttab[idx]->symt, TI_GET_ADDRESS, &ref);
    return cmp_addr(ref, addr);
}

int symt_cmp_addr(const void* p1, const void* p2)
{
61 62
    const struct symt*  sym1 = *(const struct symt* const *)p1;
    const struct symt*  sym2 = *(const struct symt* const *)p2;
63
    ULONG64     a1, a2;
64 65 66 67 68 69

    symt_get_info(sym1, TI_GET_ADDRESS, &a1);
    symt_get_info(sym2, TI_GET_ADDRESS, &a2);
    return cmp_addr(a1, a2);
}

70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
static inline void re_append(char** mask, unsigned* len, char ch)
{
    *mask = HeapReAlloc(GetProcessHeap(), 0, *mask, ++(*len));
    (*mask)[*len - 2] = ch;
}

/* transforms a dbghelp's regular expression into a POSIX one
 * Here are the valid dbghelp reg ex characters:
 *      *       0 or more characters
 *      ?       a single character
 *      []      list
 *      #       0 or more of preceding char
 *      +       1 or more of preceding char
 *      escapes \ on #, ?, [, ], *, +. don't work on -
 */
85
static void compile_regex(const char* str, int numchar, regex_t* re, BOOL _case)
86 87 88 89
{
    char*       mask = HeapAlloc(GetProcessHeap(), 0, 1);
    unsigned    len = 1;
    BOOL        in_escape = FALSE;
90
    unsigned    flags = REG_NOSUB;
91 92

    re_append(&mask, &len, '^');
93 94

    while (*str && numchar--)
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
    {
        /* FIXME: this shouldn't be valid on '-' */
        if (in_escape)
        {
            re_append(&mask, &len, '\\');
            re_append(&mask, &len, *str);
            in_escape = FALSE;
        }
        else switch (*str)
        {
        case '\\': in_escape = TRUE; break;
        case '*':  re_append(&mask, &len, '.'); re_append(&mask, &len, '*'); break;
        case '?':  re_append(&mask, &len, '.'); break;
        case '#':  re_append(&mask, &len, '*'); break;
        /* escape some valid characters in dbghelp reg exp:s */
        case '$':  re_append(&mask, &len, '\\'); re_append(&mask, &len, '$'); break;
        /* +, [, ], - are the same in dbghelp & POSIX, use them as any other char */
        default:   re_append(&mask, &len, *str); break;
        }
        str++;
    }
    if (in_escape)
    {
        re_append(&mask, &len, '\\');
        re_append(&mask, &len, '\\');
    }
    re_append(&mask, &len, '$');
    mask[len - 1] = '\0';
123 124
    if (_case) flags |= REG_ICASE;
    if (regcomp(re, mask, flags)) FIXME("Couldn't compile %s\n", mask);
125 126 127
    HeapFree(GetProcessHeap(), 0, mask);
}

128 129
struct symt_compiland* symt_new_compiland(struct module* module, 
                                          unsigned long address, unsigned src_idx)
130 131 132
{
    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 136 137
    if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
    {
        sym->symt.tag = SymTagCompiland;
138
        sym->address  = address;
139
        sym->source   = src_idx;
140 141 142 143 144 145 146 147 148 149 150 151 152 153
        vector_init(&sym->vchildren, sizeof(struct symt*), 32);
    }
    return sym;
}

struct symt_public* symt_new_public(struct module* module, 
                                    struct symt_compiland* compiland,
                                    const char* name,
                                    unsigned long address, unsigned size,
                                    BOOL in_code, BOOL is_func)
{
    struct symt_public* sym;
    struct symt**       p;

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)
158
        return NULL;
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
    if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
    {
        sym->symt.tag      = SymTagPublicSymbol;
        sym->hash_elt.name = pool_strdup(&module->pool, name);
        hash_table_add(&module->ht_symbols, &sym->hash_elt);
        module->sortlist_valid = FALSE;
        sym->container     = compiland ? &compiland->symt : NULL;
        sym->address       = address;
        sym->size          = size;
        sym->in_code       = in_code;
        sym->is_function   = is_func;
        if (compiland)
        {
            p = vector_add(&compiland->vchildren, &module->pool);
            *p = &sym->symt;
        }
    }
    return sym;
}

struct symt_data* symt_new_global_variable(struct module* module, 
                                           struct symt_compiland* compiland, 
                                           const char* name, unsigned is_static,
                                           unsigned long addr, unsigned long size,
                                           struct symt* type)
{
    struct symt_data*   sym;
    struct symt**       p;
187
    DWORD64             tsz;
188

189
    TRACE_(dbghelp_symt)("Adding global symbol %s:%s @%lx %p\n",
190
                         debugstr_w(module->module.ModuleName), name, addr, type);
191 192 193 194 195 196 197 198 199
    if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
    {
        sym->symt.tag      = SymTagData;
        sym->hash_elt.name = pool_strdup(&module->pool, name);
        hash_table_add(&module->ht_symbols, &sym->hash_elt);
        module->sortlist_valid = FALSE;
        sym->kind          = is_static ? DataIsFileStatic : DataIsGlobal;
        sym->container     = compiland ? &compiland->symt : NULL;
        sym->type          = type;
200
        sym->u.var.offset  = addr;
201 202 203
        if (type && size && symt_get_info(type, TI_GET_LENGTH, &tsz))
        {
            if (tsz != size)
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);
207
        }
208 209 210 211 212 213 214 215 216 217 218 219 220
        if (compiland)
        {
            p = vector_add(&compiland->vchildren, &module->pool);
            *p = &sym->symt;
        }
    }
    return sym;
}

struct symt_function* symt_new_function(struct module* module, 
                                        struct symt_compiland* compiland, 
                                        const char* name,
                                        unsigned long addr, unsigned long size,
221
                                        struct symt* sig_type)
222 223 224 225
{
    struct symt_function*       sym;
    struct symt**               p;

226
    TRACE_(dbghelp_symt)("Adding global function %s:%s @%lx-%lx\n",
227
                         debugstr_w(module->module.ModuleName), name, addr, addr + size - 1);
228 229

    assert(!sig_type || sig_type->tag == SymTagFunctionType);
230 231 232 233 234 235 236
    if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
    {
        sym->symt.tag  = SymTagFunction;
        sym->hash_elt.name = pool_strdup(&module->pool, name);
        hash_table_add(&module->ht_symbols, &sym->hash_elt);
        module->sortlist_valid = FALSE;
        sym->container = &compiland->symt;
237
        sym->address   = addr;
238
        sym->type      = sig_type;
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
        sym->size      = size;
        vector_init(&sym->vlines,  sizeof(struct line_info), 64);
        vector_init(&sym->vchildren, sizeof(struct symt*), 8);
        if (compiland)
        {
            p = vector_add(&compiland->vchildren, &module->pool);
            *p = &sym->symt;
        }
    }
    return sym;
}

void symt_add_func_line(struct module* module, struct symt_function* func,
                        unsigned source_idx, int line_num, unsigned long offset)
{
    struct line_info*   dli;
    BOOL                last_matches = FALSE;
256
    int                 i;
257 258 259

    if (func == NULL || !(dbghelp_options & SYMOPT_LOAD_LINES)) return;

260 261 262
    TRACE_(dbghelp_symt)("(%p)%s:%lx %s:%u\n", 
                         func, func->hash_elt.name, offset, 
                         source_get(module, source_idx), line_num);
263 264 265

    assert(func->symt.tag == SymTagFunction);

266
    for (i=vector_length(&func->vlines)-1; i>=0; i--)
267
    {
268
        dli = vector_at(&func->vlines, i);
269
        if (dli->is_source_file)
270 271 272 273 274 275 276 277 278 279
        {
            last_matches = (source_idx == dli->u.source_file);
            break;
        }
    }

    if (!last_matches)
    {
        /* we shouldn't have line changes on first line of function */
        dli = vector_add(&func->vlines, &module->pool);
280 281 282 283
        dli->is_source_file = 1;
        dli->is_first       = dli->is_last = 0;
        dli->line_number    = 0;
        dli->u.source_file  = source_idx;
284 285
    }
    dli = vector_add(&func->vlines, &module->pool);
286 287 288
    dli->is_source_file = 0;
    dli->is_first       = dli->is_last = 0;
    dli->line_number    = line_num;
289
    dli->u.pc_offset    = func->address + offset;
290 291
}

292
/******************************************************************
293
 *             symt_add_func_local
294 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 298
 * If regno it's not 0:
 *      - 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
302
 */
303 304
struct symt_data* symt_add_func_local(struct module* module, 
                                      struct symt_function* func, 
305
                                      enum DataKind dt,
306
                                      const struct location* loc,
307 308 309 310 311 312
                                      struct symt_block* block, 
                                      struct symt* type, const char* name)
{
    struct symt_data*   locsym;
    struct symt**       p;

313
    TRACE_(dbghelp_symt)("Adding local symbol (%s:%s): %s %p\n",
314
                         debugstr_w(module->module.ModuleName), func->hash_elt.name,
315
                         name, type);
316 317 318 319 320

    assert(func);
    assert(func->symt.tag == SymTagFunction);
    assert(dt == DataIsParam || dt == DataIsLocal);

321 322 323 324
    locsym = pool_alloc(&module->pool, sizeof(*locsym));
    locsym->symt.tag      = SymTagData;
    locsym->hash_elt.name = pool_strdup(&module->pool, name);
    locsym->hash_elt.next = NULL;
325
    locsym->kind          = dt;
326 327
    locsym->container     = &block->symt;
    locsym->type          = type;
328
    locsym->u.var         = *loc;
329 330 331 332 333 334 335 336
    if (block)
        p = vector_add(&block->vchildren, &module->pool);
    else
        p = vector_add(&func->vchildren, &module->pool);
    *p = &locsym->symt;
    return locsym;
}

337

338 339 340
struct symt_block* symt_open_func_block(struct module* module, 
                                        struct symt_function* func,
                                        struct symt_block* parent_block, 
341
                                        unsigned pc, unsigned len)
342 343 344 345 346 347 348 349 350
{
    struct symt_block*  block;
    struct symt**       p;

    assert(func);
    assert(func->symt.tag == SymTagFunction);

    assert(!parent_block || parent_block->symt.tag == SymTagBlock);
    block = pool_alloc(&module->pool, sizeof(*block));
351
    block->symt.tag = SymTagBlock;
352
    block->address  = func->address + pc;
353
    block->size     = len;
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
    block->container = parent_block ? &parent_block->symt : &func->symt;
    vector_init(&block->vchildren, sizeof(struct symt*), 4);
    if (parent_block)
        p = vector_add(&parent_block->vchildren, &module->pool);
    else
        p = vector_add(&func->vchildren, &module->pool);
    *p = &block->symt;

    return block;
}

struct symt_block* symt_close_func_block(struct module* module, 
                                         struct symt_function* func,
                                         struct symt_block* block, unsigned pc)
{
369
    assert(func);
370 371
    assert(func->symt.tag == SymTagFunction);

372
    if (pc) block->size = func->address + pc - block->address;
373 374 375 376
    return (block->container->tag == SymTagBlock) ? 
        GET_ENTRY(block->container, struct symt_block, symt) : NULL;
}

377 378 379
struct symt_function_point* symt_add_function_point(struct module* module, 
                                                    struct symt_function* func,
                                                    enum SymTagEnum point, 
380 381
                                                    const struct location* loc,
                                                    const char* name)
382 383 384 385 386 387 388 389
{
    struct symt_function_point* sym;
    struct symt**               p;

    if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
    {
        sym->symt.tag = point;
        sym->parent   = func;
390
        sym->loc      = *loc;
391 392 393 394 395 396 397
        sym->name     = name ? pool_strdup(&module->pool, name) : NULL;
        p = vector_add(&func->vchildren, &module->pool);
        *p = &sym->symt;
    }
    return sym;
}

398 399 400 401 402
BOOL symt_normalize_function(struct module* module, struct symt_function* func)
{
    unsigned            len;
    struct line_info*   dli;

403
    assert(func);
404 405 406 407 408 409 410 411 412 413 414
    /* We aren't adding any more locals or line numbers to this function.
     * Free any spare memory that we might have allocated.
     */
    assert(func->symt.tag == SymTagFunction);

/* EPP     vector_pool_normalize(&func->vlines,    &module->pool); */
/* EPP     vector_pool_normalize(&func->vchildren, &module->pool); */

    len = vector_length(&func->vlines);
    if (len--)
    {
415 416
        dli = vector_at(&func->vlines,   0);  dli->is_first = 1;
        dli = vector_at(&func->vlines, len);  dli->is_last  = 1;
417 418 419 420
    }
    return TRUE;
}

421 422 423 424 425 426 427
struct symt_thunk* symt_new_thunk(struct module* module, 
                                  struct symt_compiland* compiland, 
                                  const char* name, THUNK_ORDINAL ord,
                                  unsigned long addr, unsigned long size)
{
    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);
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450

    if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
    {
        sym->symt.tag  = SymTagThunk;
        sym->hash_elt.name = pool_strdup(&module->pool, name);
        hash_table_add(&module->ht_symbols, &sym->hash_elt);
        module->sortlist_valid = FALSE;
        sym->container = &compiland->symt;
        sym->address   = addr;
        sym->size      = size;
        sym->ordinal   = ord;
        if (compiland)
        {
            struct symt**       p;
            p = vector_add(&compiland->vchildren, &module->pool);
            *p = &sym->symt;
        }
    }
    return sym;
}

451 452 453 454 455 456 457 458
struct symt_data* symt_new_constant(struct module* module,
                                    struct symt_compiland* compiland,
                                    const char* name, struct symt* type,
                                    const VARIANT* v)
{
    struct symt_data*  sym;

    TRACE_(dbghelp_symt)("Adding constant value %s:%s\n",
459
                         debugstr_w(module->module.ModuleName), name);
460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480

    if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
    {
        sym->symt.tag      = SymTagData;
        sym->hash_elt.name = pool_strdup(&module->pool, name);
        hash_table_add(&module->ht_symbols, &sym->hash_elt);
        module->sortlist_valid = FALSE;
        sym->kind          = DataIsConstant;
        sym->container     = compiland ? &compiland->symt : NULL;
        sym->type          = type;
        sym->u.value       = *v;
        if (compiland)
        {
            struct symt**       p;
            p = vector_add(&compiland->vchildren, &module->pool);
            *p = &sym->symt;
        }
    }
    return sym;
}

481
/* expect sym_info->MaxNameLen to be set before being called */
482
static void symt_fill_sym_info(const struct module_pair* pair,
483
                               const struct symt_function* func,
484 485 486
                               const struct symt* sym, SYMBOL_INFO* sym_info)
{
    const char* name;
487
    DWORD64 size;
488

489 490 491
    if (!symt_get_info(sym, TI_GET_TYPE, &sym_info->TypeIndex))
        sym_info->TypeIndex = 0;
    sym_info->info = (DWORD)sym;
Eric Pouech's avatar
Eric Pouech committed
492
    sym_info->Reserved[0] = sym_info->Reserved[1] = 0;
493
    if (!symt_get_info(sym, TI_GET_LENGTH, &size) &&
Eric Pouech's avatar
Eric Pouech committed
494 495
        (!sym_info->TypeIndex ||
         !symt_get_info((struct symt*)sym_info->TypeIndex, TI_GET_LENGTH, &size)))
496
        size = 0;
497
    sym_info->Size = (DWORD)size;
Eric Pouech's avatar
Eric Pouech committed
498
    sym_info->ModBase = pair->requested->module.BaseOfImage;
499
    sym_info->Flags = 0;
Eric Pouech's avatar
Eric Pouech committed
500 501
    sym_info->Value = 0;

502 503 504 505
    switch (sym->tag)
    {
    case SymTagData:
        {
506
            const struct symt_data*  data = (const struct symt_data*)sym;
507
            switch (data->kind)
508
            {
509
            case DataIsParam:
510 511
                sym_info->Flags |= SYMFLAG_PARAMETER;
                /* fall through */
512
            case DataIsLocal:
513
                {
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
                    struct location loc = data->u.var;

                    if (loc.kind >= loc_user)
                        pair->effective->loc_compute(pair->pcs, pair->effective, func, &loc);

                    switch (loc.kind)
                    {
                    case loc_error:
                        /* for now we report error cases as a negative register number */
                        sym_info->Flags |= SYMFLAG_LOCAL;
                        /* fall through */
                    case loc_register:
                        sym_info->Flags |= SYMFLAG_REGISTER;
                        sym_info->Register = loc.reg;
                        sym_info->Address = 0;
                        break;
                    case loc_regrel:
                        sym_info->Flags |= SYMFLAG_LOCAL | SYMFLAG_REGREL;
                        /* FIXME: it's i386 dependent !!! */
                        sym_info->Register = loc.reg ? loc.reg : CV_REG_EBP;
                        sym_info->Address = loc.offset;
                        break;
                    default:
                        FIXME("Shouldn't happen (kind=%d), debug reader backend is broken\n", loc.kind);
                        assert(0);
                    }
540
                }
541
                break;
542 543
            case DataIsGlobal:
            case DataIsFileStatic:
544 545 546
                symt_get_info(sym, TI_GET_ADDRESS, &sym_info->Address);
                sym_info->Register = 0;
                break;
547
            case DataIsConstant:
548
                sym_info->Flags |= SYMFLAG_VALUEPRESENT;
549 550 551 552 553 554 555 556
                switch (data->u.value.n1.n2.vt)
                {
                case VT_I4:  sym_info->Value = (ULONG)data->u.value.n1.n2.n3.lVal; break;
                case VT_I2:  sym_info->Value = (ULONG)(long)data->u.value.n1.n2.n3.iVal; break;
                case VT_I1:  sym_info->Value = (ULONG)(long)data->u.value.n1.n2.n3.cVal; break;
                case VT_UI4: sym_info->Value = (ULONG)data->u.value.n1.n2.n3.ulVal; break;
                case VT_UI2: sym_info->Value = (ULONG)data->u.value.n1.n2.n3.uiVal; break;
                case VT_UI1: sym_info->Value = (ULONG)data->u.value.n1.n2.n3.bVal; break;
557 558
                case VT_I1 | VT_BYREF: sym_info->Value = (ULONG)data->u.value.n1.n2.n3.byref; break;
                default:
559
                    FIXME("Unsupported variant type (%u)\n", data->u.value.n1.n2.vt);
560 561
                    sym_info->Value = 0;
                    break;
562
                }
563 564
                break;
            default:
565
                FIXME("Unhandled kind (%u) in sym data\n", data->kind);
566 567 568 569 570 571 572 573 574 575 576
            }
        }
        break;
    case SymTagPublicSymbol:
        sym_info->Flags |= SYMFLAG_EXPORT;
        symt_get_info(sym, TI_GET_ADDRESS, &sym_info->Address);
        break;
    case SymTagFunction:
        sym_info->Flags |= SYMFLAG_FUNCTION;
        symt_get_info(sym, TI_GET_ADDRESS, &sym_info->Address);
        break;
577 578 579 580
    case SymTagThunk:
        sym_info->Flags |= SYMFLAG_THUNK;
        symt_get_info(sym, TI_GET_ADDRESS, &sym_info->Address);
        break;
581 582 583 584 585 586 587 588 589 590
    default:
        symt_get_info(sym, TI_GET_ADDRESS, &sym_info->Address);
        sym_info->Register = 0;
        break;
    }
    sym_info->Scope = 0; /* FIXME */
    sym_info->Tag = sym->tag;
    name = symt_get_name(sym);
    if (sym_info->MaxNameLen)
    {
591
        if (sym->tag != SymTagPublicSymbol || !(dbghelp_options & SYMOPT_UNDNAME) ||
592
            (sym_info->NameLen = UnDecorateSymbolName(name, sym_info->Name, 
593 594 595
                                                      sym_info->MaxNameLen, UNDNAME_COMPLETE) == 0))
        {
            sym_info->NameLen = min(strlen(name), sym_info->MaxNameLen - 1);
596
            memcpy(sym_info->Name, name, sym_info->NameLen);
597 598
            sym_info->Name[sym_info->NameLen] = '\0';
        }
599
    }
600
    TRACE_(dbghelp_symt)("%p => %s %u %s\n",
601 602
                         sym, sym_info->Name, sym_info->Size,
                         wine_dbgstr_longlong(sym_info->Address));
603 604
}

605 606 607 608 609
struct sym_enum
{
    PSYM_ENUMERATESYMBOLS_CALLBACK      cb;
    PVOID                               user;
    SYMBOL_INFO*                        sym_info;
610 611 612
    DWORD                               index;
    DWORD                               tag;
    DWORD64                             addr;
613 614
    char                                buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
};
615

616
static BOOL send_symbol(const struct sym_enum* se, const struct module_pair* pair,
617
                        const struct symt_function* func, const struct symt* sym)
618
{
619
    symt_fill_sym_info(pair, func, sym, se->sym_info);
620 621 622 623 624 625
    if (se->index && se->sym_info->info != se->index) return FALSE;
    if (se->tag && se->sym_info->Tag != se->tag) return FALSE;
    if (se->addr && !(se->addr >= se->sym_info->Address && se->addr < se->sym_info->Address + se->sym_info->Size)) return FALSE;
    return !se->cb(se->sym_info, se->sym_info->Size, se->user);
}

626
static BOOL symt_enum_module(struct module_pair* pair, const regex_t* regex,
627
                             const struct sym_enum* se)
628 629 630 631 632
{
    void*                       ptr;
    struct symt_ht*             sym = NULL;
    struct hash_table_iter      hti;

Eric Pouech's avatar
Eric Pouech committed
633
    hash_table_iter_init(&pair->effective->ht_symbols, &hti, NULL);
634 635 636 637
    while ((ptr = hash_table_iter_up(&hti)))
    {
        sym = GET_ENTRY(ptr, struct symt_ht, hash_elt);
        if (sym->hash_elt.name &&
638
            regexec(regex, sym->hash_elt.name, 0, NULL, 0) == 0)
639
        {
640 641
            se->sym_info->SizeOfStruct = sizeof(SYMBOL_INFO);
            se->sym_info->MaxNameLen = sizeof(se->buffer) - sizeof(SYMBOL_INFO);
642
            if (send_symbol(se, pair, NULL, &sym->symt)) return TRUE;
643 644
        }
    }   
645
    return FALSE;
646 647 648 649 650 651 652 653 654 655 656 657
}

/***********************************************************************
 *              resort_symbols
 *
 * Rebuild sorted list of symbols for a module.
 */
static BOOL resort_symbols(struct module* module)
{
    void*                       ptr;
    struct symt_ht*             sym;
    struct hash_table_iter      hti;
658
    ULONG64                     addr;
659

660 661
    if (!(module->module.NumSyms = module->ht_symbols.num_elts))
        return FALSE;
662 663 664 665
    
    if (module->addr_sorttab)
        module->addr_sorttab = HeapReAlloc(GetProcessHeap(), 0,
                                           module->addr_sorttab, 
666
                                           module->module.NumSyms * sizeof(struct symt_ht*));
667 668
    else
        module->addr_sorttab = HeapAlloc(GetProcessHeap(), 0,
669
                                         module->module.NumSyms * sizeof(struct symt_ht*));
670 671
    if (!module->addr_sorttab) return FALSE;

672
    module->num_sorttab = 0;
673 674 675 676 677
    hash_table_iter_init(&module->ht_symbols, &hti, NULL);
    while ((ptr = hash_table_iter_up(&hti)))
    {
        sym = GET_ENTRY(ptr, struct symt_ht, hash_elt);
        assert(sym);
678 679 680 681 682 683 684
        /* Don't store in sorttab symbol without address, they are of
         * no use here (e.g. constant values)
         * As the number of those symbols is very couple (a couple per module)
         * we don't bother for the unused spots at the end of addr_sorttab
         */
        if (symt_get_info(&sym->symt, TI_GET_ADDRESS, &addr))
            module->addr_sorttab[module->num_sorttab++] = sym;
685
    }
686
    qsort(module->addr_sorttab, module->num_sorttab, sizeof(struct symt_ht*), symt_cmp_addr);
687 688 689 690
    return module->sortlist_valid = TRUE;
}

/* assume addr is in module */
691
struct symt_ht* symt_find_nearest(struct module* module, DWORD addr)
692 693
{
    int         mid, high, low;
694
    ULONG64     ref_addr, ref_size;
695

696 697
    if (!module->sortlist_valid || !module->addr_sorttab)
    {
698
        if (!resort_symbols(module)) return NULL;
699
    }
700 701 702 703 704

    /*
     * Binary search to find closest symbol.
     */
    low = 0;
705
    high = module->num_sorttab;
706

707
    symt_get_info(&module->addr_sorttab[0]->symt, TI_GET_ADDRESS, &ref_addr);
708
    if (addr < ref_addr) return NULL;
709 710
    if (high)
    {
711
        symt_get_info(&module->addr_sorttab[high - 1]->symt, TI_GET_ADDRESS, &ref_addr);
712
        if (!symt_get_info(&module->addr_sorttab[high - 1]->symt, TI_GET_LENGTH, &ref_size) || !ref_size)
713
            ref_size = 0x1000; /* arbitrary value */
714
        if (addr >= ref_addr + ref_size) return NULL;
715
    }
716 717 718 719 720 721 722 723 724
    
    while (high > low + 1)
    {
        mid = (high + low) / 2;
        if (cmp_sorttab_addr(module, mid, addr) < 0)
            low = mid;
        else
            high = mid;
    }
725
    if (low != high && high != module->num_sorttab &&
726 727 728 729 730 731 732 733
        cmp_sorttab_addr(module, high, addr) <= 0)
        low = high;

    /* If found symbol is a public symbol, check if there are any other entries that
     * might also have the same address, but would get better information
     */
    if (module->addr_sorttab[low]->symt.tag == SymTagPublicSymbol)
    {   
734
        symt_get_info(&module->addr_sorttab[low]->symt, TI_GET_ADDRESS, &ref_addr);
735 736
        if (low > 0 &&
            module->addr_sorttab[low - 1]->symt.tag != SymTagPublicSymbol &&
737
            !cmp_sorttab_addr(module, low - 1, ref_addr))
738
            low--;
739
        else if (low < module->num_sorttab - 1 &&
740
                 module->addr_sorttab[low + 1]->symt.tag != SymTagPublicSymbol &&
741
                 !cmp_sorttab_addr(module, low + 1, ref_addr))
742 743
            low++;
    }
744 745
    /* finally check that we fit into the found symbol */
    symt_get_info(&module->addr_sorttab[low]->symt, TI_GET_ADDRESS, &ref_addr);
746
    if (addr < ref_addr) return NULL;
747 748
    if (!symt_get_info(&module->addr_sorttab[high - 1]->symt, TI_GET_LENGTH, &ref_size) || !ref_size)
        ref_size = 0x1000; /* arbitrary value */
749
    if (addr >= ref_addr + ref_size) return NULL;
750

751
    return module->addr_sorttab[low];
752 753
}

754
static BOOL symt_enum_locals_helper(struct module_pair* pair,
755
                                    regex_t* preg, const struct sym_enum* se,
756
                                    struct symt_function* func, const struct vector* v)
757 758
{
    struct symt*        lsym = NULL;
759
    DWORD               pc = pair->pcs->ctx_frame.InstructionOffset;
760
    int                 i;
761

762
    for (i=0; i<vector_length(v); i++)
763
    {
764
        lsym = *(struct symt**)vector_at(v, i);
765 766 767 768 769 770 771
        switch (lsym->tag)
        {
        case SymTagBlock:
            {
                struct symt_block*  block = (struct symt_block*)lsym;
                if (pc < block->address || block->address + block->size <= pc)
                    continue;
772
                if (!symt_enum_locals_helper(pair, preg, se, func, &block->vchildren))
773 774 775 776 777 778
                    return FALSE;
            }
            break;
        case SymTagData:
            if (regexec(preg, symt_get_name(lsym), 0, NULL, 0) == 0)
            {
779
                if (send_symbol(se, pair, func, lsym)) return FALSE;
780 781
            }
            break;
782 783 784
        case SymTagLabel:
        case SymTagFuncDebugStart:
        case SymTagFuncDebugEnd:
785
        case SymTagCustom:
786
            break;
787 788 789 790 791 792 793 794
        default:
            FIXME("Unknown type: %u (%x)\n", lsym->tag, lsym->tag);
            assert(0);
        }
    }
    return TRUE;
}

795 796
static BOOL symt_enum_locals(struct process* pcs, const char* mask, 
                             const struct sym_enum* se)
797
{
Eric Pouech's avatar
Eric Pouech committed
798
    struct module_pair  pair;
799 800 801
    struct symt_ht*     sym;
    DWORD               pc = pcs->ctx_frame.InstructionOffset;

802 803
    se->sym_info->SizeOfStruct = sizeof(*se->sym_info);
    se->sym_info->MaxNameLen = sizeof(se->buffer) - sizeof(SYMBOL_INFO);
804

805 806 807
    pair.pcs = pcs;
    pair.requested = module_find_by_addr(pair.pcs, pc, DMT_UNKNOWN);
    if (!module_get_debug(&pair)) return FALSE;
808
    if ((sym = symt_find_nearest(pair.effective, pc)) == NULL) return FALSE;
809 810 811 812 813 814

    if (sym->symt.tag == SymTagFunction)
    {
        BOOL            ret;
        regex_t         preg;

815 816
        compile_regex(mask ? mask : "*", -1, &preg,
                      dbghelp_options & SYMOPT_CASE_INSENSITIVE);
817
        ret = symt_enum_locals_helper(&pair, &preg, se, (struct symt_function*)sym,
818 819 820 821 822
                                      &((struct symt_function*)sym)->vchildren);
        regfree(&preg);
        return ret;
        
    }
823
    return send_symbol(se, &pair, NULL, &sym->symt);
824 825
}

826 827 828 829 830 831
/******************************************************************
 *		copy_symbolW
 *
 * Helper for transforming an ANSI symbol info into an UNICODE one.
 * Assume that MaxNameLen is the same for both version (A & W).
 */
832
void copy_symbolW(SYMBOL_INFOW* siw, const SYMBOL_INFO* si)
833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850
{
    siw->SizeOfStruct = si->SizeOfStruct;
    siw->TypeIndex = si->TypeIndex; 
    siw->Reserved[0] = si->Reserved[0];
    siw->Reserved[1] = si->Reserved[1];
    siw->Index = si->info; /* FIXME: see dbghelp.h */
    siw->Size = si->Size;
    siw->ModBase = si->ModBase;
    siw->Flags = si->Flags;
    siw->Value = si->Value;
    siw->Address = si->Address;
    siw->Register = si->Register;
    siw->Scope = si->Scope;
    siw->Tag = si->Tag;
    siw->NameLen = si->NameLen;
    siw->MaxNameLen = si->MaxNameLen;
    MultiByteToWideChar(CP_ACP, 0, si->Name, -1, siw->Name, siw->MaxNameLen);
}
851

852
/******************************************************************
853
 *		sym_enum
854
 *
855
 * Core routine for most of the enumeration of symbols
856
 */
857 858
static BOOL sym_enum(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR Mask,
                     const struct sym_enum* se)
859
{
Eric Pouech's avatar
Eric Pouech committed
860
    struct module_pair  pair;
861 862
    const char*         bang;
    regex_t             mod_regex, sym_regex;
863

864
    pair.pcs = process_find_by_handle(hProcess);
865 866
    if (BaseOfDll == 0)
    {
867 868
        /* do local variables ? */
        if (!Mask || !(bang = strchr(Mask, '!')))
869
            return symt_enum_locals(pair.pcs, Mask, se);
870 871 872

        if (bang == Mask) return FALSE;

873
        compile_regex(Mask, bang - Mask, &mod_regex, TRUE);
874 875
        compile_regex(bang + 1, -1, &sym_regex, 
                      dbghelp_options & SYMOPT_CASE_INSENSITIVE);
876
        
877
        for (pair.requested = pair.pcs->lmodules; pair.requested; pair.requested = pair.requested->next)
878
        {
879
            if (pair.requested->type == DMT_PE && module_get_debug(&pair))
880
            {
881
                if (regexec(&mod_regex, pair.requested->module_name, 0, NULL, 0) == 0 &&
882
                    symt_enum_module(&pair, &sym_regex, se))
883 884 885 886 887
                    break;
            }
        }
        /* not found in PE modules, retry on the ELF ones
         */
Eric Pouech's avatar
Eric Pouech committed
888
        if (!pair.requested && (dbghelp_options & SYMOPT_WINE_WITH_ELF_MODULES))
889
        {
890
            for (pair.requested = pair.pcs->lmodules; pair.requested; pair.requested = pair.requested->next)
891
            {
Eric Pouech's avatar
Eric Pouech committed
892
                if (pair.requested->type == DMT_ELF &&
893 894
                    !module_get_containee(pair.pcs, pair.requested) &&
                    module_get_debug(&pair))
895
                {
896
                    if (regexec(&mod_regex, pair.requested->module_name, 0, NULL, 0) == 0 &&
897
                        symt_enum_module(&pair, &sym_regex, se))
898 899
                    break;
                }
900 901
            }
        }
902 903 904
        regfree(&mod_regex);
        regfree(&sym_regex);
        return TRUE;
905
    }
906 907
    pair.requested = module_find_by_addr(pair.pcs, BaseOfDll, DMT_UNKNOWN);
    if (!module_get_debug(&pair))
908 909 910 911
        return FALSE;

    /* we always ignore module name from Mask when BaseOfDll is defined */
    if (Mask && (bang = strchr(Mask, '!')))
912
    {
913 914
        if (bang == Mask) return FALSE;
        Mask = bang + 1;
915
    }
916

917
    compile_regex(Mask ? Mask : "*", -1, &sym_regex, 
Eric Pouech's avatar
Eric Pouech committed
918
                  dbghelp_options & SYMOPT_CASE_INSENSITIVE);
919
    symt_enum_module(&pair, &sym_regex, se);
920 921
    regfree(&sym_regex);

922 923 924
    return TRUE;
}

925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
/******************************************************************
 *		SymEnumSymbols (DBGHELP.@)
 *
 * cases BaseOfDll = 0
 *      !foo fails always (despite what MSDN states)
 *      RE1!RE2 looks up all modules matching RE1, and in all these modules, lookup RE2
 *      no ! in Mask, lookup in local Context
 * cases BaseOfDll != 0
 *      !foo fails always (despite what MSDN states)
 *      RE1!RE2 gets RE2 from BaseOfDll (whatever RE1 is)
 */
BOOL WINAPI SymEnumSymbols(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR Mask,
                           PSYM_ENUMERATESYMBOLS_CALLBACK EnumSymbolsCallback,
                           PVOID UserContext)
{
    struct sym_enum     se;

    TRACE("(%p %s %s %p %p)\n", 
          hProcess, wine_dbgstr_longlong(BaseOfDll), debugstr_a(Mask),
          EnumSymbolsCallback, UserContext);

    se.cb = EnumSymbolsCallback;
    se.user = UserContext;
948 949 950
    se.index = 0;
    se.tag = 0;
    se.addr = 0;
951 952 953 954 955
    se.sym_info = (PSYMBOL_INFO)se.buffer;

    return sym_enum(hProcess, BaseOfDll, Mask, &se);
}

956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002
struct sym_enumW
{
    PSYM_ENUMERATESYMBOLS_CALLBACKW     cb;
    void*                               ctx;
    PSYMBOL_INFOW                       sym_info;
    char                                buffer[sizeof(SYMBOL_INFOW) + MAX_SYM_NAME];

};
    
static BOOL CALLBACK sym_enumW(PSYMBOL_INFO si, ULONG size, PVOID ctx)
{
    struct sym_enumW*   sew = ctx;

    copy_symbolW(sew->sym_info, si);

    return (sew->cb)(sew->sym_info, size, sew->ctx);
}

/******************************************************************
 *		SymEnumSymbolsW (DBGHELP.@)
 *
 */
BOOL WINAPI SymEnumSymbolsW(HANDLE hProcess, ULONG64 BaseOfDll, PCWSTR Mask,
                            PSYM_ENUMERATESYMBOLS_CALLBACKW EnumSymbolsCallback,
                            PVOID UserContext)
{
    struct sym_enumW    sew;
    BOOL                ret = FALSE;
    char*               maskA = NULL;

    sew.ctx = UserContext;
    sew.cb = EnumSymbolsCallback;
    sew.sym_info = (PSYMBOL_INFOW)sew.buffer;

    if (Mask)
    {
        unsigned len = WideCharToMultiByte(CP_ACP, 0, Mask, -1, NULL, 0, NULL, NULL);
        maskA = HeapAlloc(GetProcessHeap(), 0, len);
        if (!maskA) return FALSE;
        WideCharToMultiByte(CP_ACP, 0, Mask, -1, maskA, len, NULL, NULL);
    }
    ret = SymEnumSymbols(hProcess, BaseOfDll, maskA, sym_enumW, &sew);
    HeapFree(GetProcessHeap(), 0, maskA);

    return ret;
}

1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
struct sym_enumerate
{
    void*                       ctx;
    PSYM_ENUMSYMBOLS_CALLBACK   cb;
};

static BOOL CALLBACK sym_enumerate_cb(PSYMBOL_INFO syminfo, ULONG size, void* ctx)
{
    struct sym_enumerate*       se = (struct sym_enumerate*)ctx;
    return (se->cb)(syminfo->Name, syminfo->Address, syminfo->Size, se->ctx);
}

/***********************************************************************
 *		SymEnumerateSymbols (DBGHELP.@)
 */
BOOL WINAPI SymEnumerateSymbols(HANDLE hProcess, DWORD BaseOfDll,
                                PSYM_ENUMSYMBOLS_CALLBACK EnumSymbolsCallback, 
                                PVOID UserContext)
{
    struct sym_enumerate        se;

    se.ctx = UserContext;
    se.cb  = EnumSymbolsCallback;
    
    return SymEnumSymbols(hProcess, BaseOfDll, NULL, sym_enumerate_cb, &se);
}

/******************************************************************
 *		SymFromAddr (DBGHELP.@)
 *
 */
1034 1035
BOOL WINAPI SymFromAddr(HANDLE hProcess, DWORD64 Address, 
                        DWORD64* Displacement, PSYMBOL_INFO Symbol)
1036
{
Eric Pouech's avatar
Eric Pouech committed
1037
    struct module_pair  pair;
1038 1039
    struct symt_ht*     sym;

1040 1041 1042 1043
    pair.pcs = process_find_by_handle(hProcess);
    if (!pair.pcs) return FALSE;
    pair.requested = module_find_by_addr(pair.pcs, Address, DMT_UNKNOWN);
    if (!module_get_debug(&pair)) return FALSE;
1044
    if ((sym = symt_find_nearest(pair.effective, Address)) == NULL) return FALSE;
1045

1046
    symt_fill_sym_info(&pair, NULL, &sym->symt, Symbol);
1047
    *Displacement = Address - Symbol->Address;
1048 1049 1050
    return TRUE;
}

1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
/******************************************************************
 *		SymFromAddrW (DBGHELP.@)
 *
 */
BOOL WINAPI SymFromAddrW(HANDLE hProcess, DWORD64 Address, 
                         DWORD64* Displacement, PSYMBOL_INFOW Symbol)
{
    PSYMBOL_INFO        si;
    unsigned            len;
    BOOL                ret;

    len = sizeof(*si) + Symbol->MaxNameLen * sizeof(WCHAR);
    si = HeapAlloc(GetProcessHeap(), 0, len);
    if (!si) return FALSE;

    si->SizeOfStruct = sizeof(*si);
    si->MaxNameLen = Symbol->MaxNameLen;
    if ((ret = SymFromAddr(hProcess, Address, Displacement, si)))
    {
        copy_symbolW(Symbol, si);
    }
    HeapFree(GetProcessHeap(), 0, si);
    return ret;
}

1076 1077 1078 1079 1080 1081 1082
/******************************************************************
 *		SymGetSymFromAddr (DBGHELP.@)
 *
 */
BOOL WINAPI SymGetSymFromAddr(HANDLE hProcess, DWORD Address,
                              PDWORD Displacement, PIMAGEHLP_SYMBOL Symbol)
{
Eric Pouech's avatar
Eric Pouech committed
1083
    char        buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1084 1085
    SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
    size_t      len;
1086
    DWORD64     Displacement64;
1087 1088 1089

    if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
    si->SizeOfStruct = sizeof(*si);
Eric Pouech's avatar
Eric Pouech committed
1090
    si->MaxNameLen = MAX_SYM_NAME;
1091
    if (!SymFromAddr(hProcess, Address, &Displacement64, si))
1092 1093
        return FALSE;

1094 1095
    if (Displacement)
        *Displacement = Displacement64;
1096 1097 1098 1099
    Symbol->Address = si->Address;
    Symbol->Size    = si->Size;
    Symbol->Flags   = si->Flags;
    len = min(Symbol->MaxNameLength, si->MaxNameLen);
1100
    lstrcpynA(Symbol->Name, si->Name, len);
1101 1102 1103
    return TRUE;
}

1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
/******************************************************************
 *		SymGetSymFromAddr64 (DBGHELP.@)
 *
 */
BOOL WINAPI SymGetSymFromAddr64(HANDLE hProcess, DWORD64 Address,
                                PDWORD64 Displacement, PIMAGEHLP_SYMBOL64 Symbol)
{
    char        buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
    SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
    size_t      len;
    DWORD64     Displacement64;

    if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
    si->SizeOfStruct = sizeof(*si);
    si->MaxNameLen = MAX_SYM_NAME;
    if (!SymFromAddr(hProcess, Address, &Displacement64, si))
        return FALSE;

    if (Displacement)
        *Displacement = Displacement64;
    Symbol->Address = si->Address;
    Symbol->Size    = si->Size;
    Symbol->Flags   = si->Flags;
    len = min(Symbol->MaxNameLength, si->MaxNameLen);
    lstrcpynA(Symbol->Name, si->Name, len);
    return TRUE;
}

Eric Pouech's avatar
Eric Pouech committed
1132 1133 1134 1135 1136 1137 1138 1139
static BOOL find_name(struct process* pcs, struct module* module, const char* name,
                      SYMBOL_INFO* symbol)
{
    struct hash_table_iter      hti;
    void*                       ptr;
    struct symt_ht*             sym = NULL;
    struct module_pair          pair;

1140
    pair.pcs = pcs;
Eric Pouech's avatar
Eric Pouech committed
1141
    if (!(pair.requested = module)) return FALSE;
1142
    if (!module_get_debug(&pair)) return FALSE;
Eric Pouech's avatar
Eric Pouech committed
1143 1144 1145 1146 1147 1148 1149 1150

    hash_table_iter_init(&pair.effective->ht_symbols, &hti, name);
    while ((ptr = hash_table_iter_up(&hti)))
    {
        sym = GET_ENTRY(ptr, struct symt_ht, hash_elt);

        if (!strcmp(sym->hash_elt.name, name))
        {
1151
            symt_fill_sym_info(&pair, NULL, &sym->symt, symbol);
Eric Pouech's avatar
Eric Pouech committed
1152 1153 1154 1155 1156 1157
            return TRUE;
        }
    }
    return FALSE;

}
1158 1159 1160 1161
/******************************************************************
 *		SymFromName (DBGHELP.@)
 *
 */
1162
BOOL WINAPI SymFromName(HANDLE hProcess, PCSTR Name, PSYMBOL_INFO Symbol)
1163 1164 1165
{
    struct process*             pcs = process_find_by_handle(hProcess);
    struct module*              module;
1166
    const char*                 name;
1167 1168 1169 1170

    TRACE("(%p, %s, %p)\n", hProcess, Name, Symbol);
    if (!pcs) return FALSE;
    if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
1171 1172 1173 1174 1175 1176 1177
    name = strchr(Name, '!');
    if (name)
    {
        char    tmp[128];
        assert(name - Name < sizeof(tmp));
        memcpy(tmp, Name, name - Name);
        tmp[name - Name] = '\0';
1178
        module = module_find_by_nameA(pcs, tmp);
1179
        return find_name(pcs, module, name + 1, Symbol);
1180
    }
Eric Pouech's avatar
Eric Pouech committed
1181
    for (module = pcs->lmodules; module; module = module->next)
1182
    {
Eric Pouech's avatar
Eric Pouech committed
1183 1184 1185 1186 1187 1188 1189 1190
        if (module->type == DMT_PE && find_name(pcs, module, Name, Symbol))
            return TRUE;
    }
    /* not found in PE modules, retry on the ELF ones
     */
    if (dbghelp_options & SYMOPT_WINE_WITH_ELF_MODULES)
    {
        for (module = pcs->lmodules; module; module = module->next)
1191
        {
Eric Pouech's avatar
Eric Pouech committed
1192 1193
            if (module->type == DMT_ELF && !module_get_containee(pcs, module) &&
                find_name(pcs, module, Name, Symbol))
1194
                return TRUE;
1195 1196 1197 1198 1199 1200 1201 1202
        }
    }
    return FALSE;
}

/***********************************************************************
 *		SymGetSymFromName (DBGHELP.@)
 */
1203
BOOL WINAPI SymGetSymFromName(HANDLE hProcess, PCSTR Name, PIMAGEHLP_SYMBOL Symbol)
1204
{
Eric Pouech's avatar
Eric Pouech committed
1205
    char        buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1206 1207 1208 1209 1210
    SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
    size_t      len;

    if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
    si->SizeOfStruct = sizeof(*si);
Eric Pouech's avatar
Eric Pouech committed
1211
    si->MaxNameLen = MAX_SYM_NAME;
1212 1213 1214 1215 1216 1217
    if (!SymFromName(hProcess, Name, si)) return FALSE;

    Symbol->Address = si->Address;
    Symbol->Size    = si->Size;
    Symbol->Flags   = si->Flags;
    len = min(Symbol->MaxNameLength, si->MaxNameLen);
1218
    lstrcpynA(Symbol->Name, si->Name, len);
1219 1220 1221 1222
    return TRUE;
}

/******************************************************************
1223
 *		sym_fill_func_line_info
1224 1225 1226
 *
 * fills information about a file
 */
1227
BOOL symt_fill_func_line_info(const struct module* module, const struct symt_function* func,
1228
                              DWORD addr, IMAGEHLP_LINE* line)
1229 1230 1231
{
    struct line_info*   dli = NULL;
    BOOL                found = FALSE;
1232
    int                 i;
1233 1234 1235

    assert(func->symt.tag == SymTagFunction);

1236
    for (i=vector_length(&func->vlines)-1; i>=0; i--)
1237
    {
1238
        dli = vector_at(&func->vlines, i);
1239
        if (!dli->is_source_file)
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
        {
            if (found || dli->u.pc_offset > addr) continue;
            line->LineNumber = dli->line_number;
            line->Address    = dli->u.pc_offset;
            line->Key        = dli;
            found = TRUE;
            continue;
        }
        if (found)
        {
            line->FileName = (char*)source_get(module, dli->u.source_file);
            return TRUE;
        }
    }
    return FALSE;
}

/***********************************************************************
 *		SymGetSymNext (DBGHELP.@)
 */
BOOL WINAPI SymGetSymNext(HANDLE hProcess, PIMAGEHLP_SYMBOL Symbol)
{
    /* algo:
     * get module from Symbol.Address
     * get index in module.addr_sorttab of Symbol.Address
     * increment index
     * if out of module bounds, move to next module in process address space
     */
    FIXME("(%p, %p): stub\n", hProcess, Symbol);
    SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
    return FALSE;
}

/***********************************************************************
 *		SymGetSymPrev (DBGHELP.@)
 */

BOOL WINAPI SymGetSymPrev(HANDLE hProcess, PIMAGEHLP_SYMBOL Symbol)
{
    FIXME("(%p, %p): stub\n", hProcess, Symbol);
    SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
    return FALSE;
}

/******************************************************************
 *		SymGetLineFromAddr (DBGHELP.@)
 *
 */
BOOL WINAPI SymGetLineFromAddr(HANDLE hProcess, DWORD dwAddr, 
                               PDWORD pdwDisplacement, PIMAGEHLP_LINE Line)
{
Eric Pouech's avatar
Eric Pouech committed
1291
    struct module_pair  pair;
1292
    struct symt_ht*     symt;
1293

1294
    TRACE("%p %08x %p %p\n", hProcess, dwAddr, pdwDisplacement, Line);
1295 1296 1297

    if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;

1298 1299 1300 1301
    pair.pcs = process_find_by_handle(hProcess);
    if (!pair.pcs) return FALSE;
    pair.requested = module_find_by_addr(pair.pcs, dwAddr, DMT_UNKNOWN);
    if (!module_get_debug(&pair)) return FALSE;
1302
    if ((symt = symt_find_nearest(pair.effective, dwAddr)) == NULL) return FALSE;
1303

1304 1305
    if (symt->symt.tag != SymTagFunction) return FALSE;
    if (!symt_fill_func_line_info(pair.effective, (struct symt_function*)symt,
1306
                                  dwAddr, Line)) return FALSE;
1307
    *pdwDisplacement = dwAddr - Line->Address;
1308 1309 1310
    return TRUE;
}

1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
/******************************************************************
 *		copy_line_64_from_32 (internal)
 *
 */
static void copy_line_64_from_32(IMAGEHLP_LINE64* l64, const IMAGEHLP_LINE* l32)

{
    l64->Key = l32->Key;
    l64->LineNumber = l32->LineNumber;
    l64->FileName = l32->FileName;
    l64->Address = l32->Address;
}

1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
/******************************************************************
 *		copy_line_W64_from_32 (internal)
 *
 */
static void copy_line_W64_from_32(struct process* pcs, IMAGEHLP_LINEW64* l64, const IMAGEHLP_LINE* l32)
{
    unsigned len;

    l64->Key = l32->Key;
    l64->LineNumber = l32->LineNumber;
    len = MultiByteToWideChar(CP_ACP, 0, l32->FileName, -1, NULL, 0);
    if ((l64->FileName = fetch_buffer(pcs, len * sizeof(WCHAR))))
        MultiByteToWideChar(CP_ACP, 0, l32->FileName, -1, l64->FileName, len);
    l64->Address = l32->Address;
}

1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370
/******************************************************************
 *		copy_line_32_from_64 (internal)
 *
 */
static void copy_line_32_from_64(IMAGEHLP_LINE* l32, const IMAGEHLP_LINE64* l64)

{
    l32->Key = l64->Key;
    l32->LineNumber = l64->LineNumber;
    l32->FileName = l64->FileName;
    l32->Address = l64->Address;
}

/******************************************************************
 *		SymGetLineFromAddr64 (DBGHELP.@)
 *
 */
BOOL WINAPI SymGetLineFromAddr64(HANDLE hProcess, DWORD64 dwAddr, 
                                 PDWORD pdwDisplacement, PIMAGEHLP_LINE64 Line)
{
    IMAGEHLP_LINE       line32;

    if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;
    if (!validate_addr64(dwAddr)) return FALSE;
    line32.SizeOfStruct = sizeof(line32);
    if (!SymGetLineFromAddr(hProcess, (DWORD)dwAddr, pdwDisplacement, &line32))
        return FALSE;
    copy_line_64_from_32(Line, &line32);
    return TRUE;
}

1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390
/******************************************************************
 *		SymGetLineFromAddrW64 (DBGHELP.@)
 *
 */
BOOL WINAPI SymGetLineFromAddrW64(HANDLE hProcess, DWORD64 dwAddr, 
                                  PDWORD pdwDisplacement, PIMAGEHLP_LINEW64 Line)
{
    struct process*     pcs = process_find_by_handle(hProcess);
    IMAGEHLP_LINE       line32;

    if (!pcs) return FALSE;
    if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;
    if (!validate_addr64(dwAddr)) return FALSE;
    line32.SizeOfStruct = sizeof(line32);
    if (!SymGetLineFromAddr(hProcess, (DWORD)dwAddr, pdwDisplacement, &line32))
        return FALSE;
    copy_line_W64_from_32(pcs, Line, &line32);
    return TRUE;
}

1391 1392 1393 1394 1395 1396
/******************************************************************
 *		SymGetLinePrev (DBGHELP.@)
 *
 */
BOOL WINAPI SymGetLinePrev(HANDLE hProcess, PIMAGEHLP_LINE Line)
{
Eric Pouech's avatar
Eric Pouech committed
1397
    struct module_pair  pair;
1398 1399 1400 1401 1402 1403 1404
    struct line_info*   li;
    BOOL                in_search = FALSE;

    TRACE("(%p %p)\n", hProcess, Line);

    if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;

1405 1406 1407 1408
    pair.pcs = process_find_by_handle(hProcess);
    if (!pair.pcs) return FALSE;
    pair.requested = module_find_by_addr(pair.pcs, Line->Address, DMT_UNKNOWN);
    if (!module_get_debug(&pair)) return FALSE;
1409 1410 1411 1412 1413 1414 1415 1416

    if (Line->Key == 0) return FALSE;
    li = (struct line_info*)Line->Key;
    /* things are a bit complicated because when we encounter a DLIT_SOURCEFILE
     * element we have to go back until we find the prev one to get the real
     * source file name for the DLIT_OFFSET element just before 
     * the first DLIT_SOURCEFILE
     */
1417
    while (!li->is_first)
1418 1419
    {
        li--;
1420
        if (!li->is_source_file)
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430
        {
            Line->LineNumber = li->line_number;
            Line->Address    = li->u.pc_offset;
            Line->Key        = li;
            if (!in_search) return TRUE;
        }
        else
        {
            if (in_search)
            {
Eric Pouech's avatar
Eric Pouech committed
1431
                Line->FileName = (char*)source_get(pair.effective, li->u.source_file);
1432 1433 1434 1435 1436 1437 1438 1439 1440
                return TRUE;
            }
            in_search = TRUE;
        }
    }
    SetLastError(ERROR_NO_MORE_ITEMS); /* FIXME */
    return FALSE;
}

1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
/******************************************************************
 *		SymGetLinePrev64 (DBGHELP.@)
 *
 */
BOOL WINAPI SymGetLinePrev64(HANDLE hProcess, PIMAGEHLP_LINE64 Line)
{
    IMAGEHLP_LINE       line32;

    line32.SizeOfStruct = sizeof(line32);
    copy_line_32_from_64(&line32, Line);
    if (!SymGetLinePrev(hProcess, &line32)) return FALSE;
    copy_line_64_from_32(Line, &line32);
    return TRUE;
}
    
1456
BOOL symt_get_func_line_next(const struct module* module, PIMAGEHLP_LINE line)
1457 1458 1459 1460 1461
{
    struct line_info*   li;

    if (line->Key == 0) return FALSE;
    li = (struct line_info*)line->Key;
1462
    while (!li->is_last)
1463 1464
    {
        li++;
1465
        if (!li->is_source_file)
1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
        {
            line->LineNumber = li->line_number;
            line->Address    = li->u.pc_offset;
            line->Key        = li;
            return TRUE;
        }
        line->FileName = (char*)source_get(module, li->u.source_file);
    }
    return FALSE;
}

1477 1478 1479 1480 1481 1482
/******************************************************************
 *		SymGetLineNext (DBGHELP.@)
 *
 */
BOOL WINAPI SymGetLineNext(HANDLE hProcess, PIMAGEHLP_LINE Line)
{
Eric Pouech's avatar
Eric Pouech committed
1483
    struct module_pair  pair;
1484 1485 1486 1487

    TRACE("(%p %p)\n", hProcess, Line);

    if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;
1488 1489 1490 1491
    pair.pcs = process_find_by_handle(hProcess);
    if (!pair.pcs) return FALSE;
    pair.requested = module_find_by_addr(pair.pcs, Line->Address, DMT_UNKNOWN);
    if (!module_get_debug(&pair)) return FALSE;
1492

Eric Pouech's avatar
Eric Pouech committed
1493
    if (symt_get_func_line_next(pair.effective, Line)) return TRUE;
1494 1495 1496 1497
    SetLastError(ERROR_NO_MORE_ITEMS); /* FIXME */
    return FALSE;
}

1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
/******************************************************************
 *		SymGetLineNext64 (DBGHELP.@)
 *
 */
BOOL WINAPI SymGetLineNext64(HANDLE hProcess, PIMAGEHLP_LINE64 Line)
{
    IMAGEHLP_LINE       line32;

    line32.SizeOfStruct = sizeof(line32);
    copy_line_32_from_64(&line32, Line);
    if (!SymGetLineNext(hProcess, &line32)) return FALSE;
    copy_line_64_from_32(Line, &line32);
    return TRUE;
}
    
1513 1514 1515 1516 1517
/***********************************************************************
 *		SymFunctionTableAccess (DBGHELP.@)
 */
PVOID WINAPI SymFunctionTableAccess(HANDLE hProcess, DWORD AddrBase)
{
1518
    WARN("(%p, 0x%08x): stub\n", hProcess, AddrBase);
1519 1520 1521 1522 1523 1524 1525 1526 1527 1528
    return NULL;
}

/***********************************************************************
 *		SymFunctionTableAccess64 (DBGHELP.@)
 */
PVOID WINAPI SymFunctionTableAccess64(HANDLE hProcess, DWORD64 AddrBase)
{
    WARN("(%p, %s): stub\n", hProcess, wine_dbgstr_longlong(AddrBase));
    return NULL;
1529 1530 1531 1532 1533
}

/***********************************************************************
 *		SymUnDName (DBGHELP.@)
 */
1534
BOOL WINAPI SymUnDName(PIMAGEHLP_SYMBOL sym, PSTR UnDecName, DWORD UnDecNameLength)
1535
{
1536 1537
    TRACE("(%p %s %u)\n", sym, UnDecName, UnDecNameLength);
    return UnDecorateSymbolName(sym->Name, UnDecName, UnDecNameLength,
1538
                                UNDNAME_COMPLETE) != 0;
1539 1540
}

1541 1542 1543
static void* und_alloc(size_t len) { return HeapAlloc(GetProcessHeap(), 0, len); }
static void  und_free (void* ptr)  { HeapFree(GetProcessHeap(), 0, ptr); }

1544 1545 1546
/***********************************************************************
 *		UnDecorateSymbolName (DBGHELP.@)
 */
1547
DWORD WINAPI UnDecorateSymbolName(PCSTR DecoratedName, PSTR UnDecoratedName,
1548 1549
                                  DWORD UndecoratedLength, DWORD Flags)
{
1550 1551
    /* undocumented from msvcrt */
    static char* (*p_undname)(char*, const char*, int, void* (*)(size_t), void (*)(void*), unsigned short);
1552
    static const WCHAR szMsvcrt[] = {'m','s','v','c','r','t','.','d','l','l',0};
1553

1554
    TRACE("(%s, %p, %d, 0x%08x)\n",
1555 1556
          debugstr_a(DecoratedName), UnDecoratedName, UndecoratedLength, Flags);

1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568
    if (!p_undname)
    {
        if (!hMsvcrt) hMsvcrt = LoadLibraryW(szMsvcrt);
        if (hMsvcrt) p_undname = (void*)GetProcAddress(hMsvcrt, "__unDName");
        if (!p_undname) return 0;
    }

    if (!UnDecoratedName) return 0;
    if (!p_undname(UnDecoratedName, DecoratedName, UndecoratedLength, 
                   und_alloc, und_free, Flags))
        return 0;
    return strlen(UnDecoratedName);
1569
}
1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587

/******************************************************************
 *		SymMatchString (DBGHELP.@)
 *
 */
BOOL WINAPI SymMatchString(PCSTR string, PCSTR re, BOOL _case)
{
    regex_t     preg;
    BOOL        ret;

    TRACE("%s %s %c\n", string, re, _case ? 'Y' : 'N');

    compile_regex(re, -1, &preg, _case);
    ret = regexec(&preg, string, 0, NULL, 0) == 0;
    regfree(&preg);
    return ret;
}

1588 1589 1590 1591 1592 1593 1594 1595
/******************************************************************
 *		SymSearch (DBGHELP.@)
 */
BOOL WINAPI SymSearch(HANDLE hProcess, ULONG64 BaseOfDll, DWORD Index,
                      DWORD SymTag, PCSTR Mask, DWORD64 Address,
                      PSYM_ENUMERATESYMBOLS_CALLBACK EnumSymbolsCallback,
                      PVOID UserContext, DWORD Options)
{
1596 1597
    struct sym_enum     se;

1598 1599
    TRACE("(%p %s %u %u %s %s %p %p %x)\n",
          hProcess, wine_dbgstr_longlong(BaseOfDll), Index, SymTag, Mask,
1600 1601 1602 1603 1604
          wine_dbgstr_longlong(Address), EnumSymbolsCallback,
          UserContext, Options);

    if (Options != SYMSEARCH_GLOBALSONLY)
    {
1605
        FIXME("Unsupported searching with options (%x)\n", Options);
1606 1607 1608
        SetLastError(ERROR_INVALID_PARAMETER);
        return FALSE;
    }
1609 1610 1611 1612 1613 1614 1615 1616 1617

    se.cb = EnumSymbolsCallback;
    se.user = UserContext;
    se.index = Index;
    se.tag = SymTag;
    se.addr = Address;
    se.sym_info = (PSYMBOL_INFO)se.buffer;

    return sym_enum(hProcess, BaseOfDll, Mask, &se);
1618
}
1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631

/******************************************************************
 *		SymSearchW (DBGHELP.@)
 */
BOOL WINAPI SymSearchW(HANDLE hProcess, ULONG64 BaseOfDll, DWORD Index,
                       DWORD SymTag, PCWSTR Mask, DWORD64 Address,
                       PSYM_ENUMERATESYMBOLS_CALLBACKW EnumSymbolsCallback,
                       PVOID UserContext, DWORD Options)
{
    struct sym_enumW    sew;
    BOOL                ret = FALSE;
    char*               maskA = NULL;

1632 1633
    TRACE("(%p %s %u %u %s %s %p %p %x)\n",
          hProcess, wine_dbgstr_longlong(BaseOfDll), Index, SymTag, debugstr_w(Mask),
1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653
          wine_dbgstr_longlong(Address), EnumSymbolsCallback,
          UserContext, Options);

    sew.ctx = UserContext;
    sew.cb = EnumSymbolsCallback;
    sew.sym_info = (PSYMBOL_INFOW)sew.buffer;

    if (Mask)
    {
        unsigned len = WideCharToMultiByte(CP_ACP, 0, Mask, -1, NULL, 0, NULL, NULL);
        maskA = HeapAlloc(GetProcessHeap(), 0, len);
        if (!maskA) return FALSE;
        WideCharToMultiByte(CP_ACP, 0, Mask, -1, maskA, len, NULL, NULL);
    }
    ret = SymSearch(hProcess, BaseOfDll, Index, SymTag, maskA, Address,
                    sym_enumW, &sew, Options);
    HeapFree(GetProcessHeap(), 0, maskA);

    return ret;
}