symbol.c 58.7 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 380 381
struct symt_hierarchy_point* symt_add_function_point(struct module* module,
                                                     struct symt_function* func,
                                                     enum SymTagEnum point,
                                                     const struct location* loc,
                                                     const char* name)
382
{
383
    struct symt_hierarchy_point*sym;
384 385 386 387 388
    struct symt**               p;

    if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
    {
        sym->symt.tag = point;
389
        sym->parent   = &func->symt;
390
        sym->loc      = *loc;
391
        sym->hash_elt.name = name ? pool_strdup(&module->pool, name) : NULL;
392 393 394 395 396 397
        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

    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;
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
            p = vector_add(&compiland->vchildren, &module->pool);
            *p = &sym->symt;
        }
    }
    return sym;
}

struct symt_hierarchy_point* symt_new_label(struct module* module,
                                            struct symt_compiland* compiland,
                                            const char* name, unsigned long address)
{
    struct symt_hierarchy_point*        sym;

    TRACE_(dbghelp_symt)("Adding global label value %s:%s\n",
                         debugstr_w(module->module.ModuleName), name);

    if ((sym = pool_alloc(&module->pool, sizeof(*sym))))
    {
        sym->symt.tag      = SymTagLabel;
        sym->hash_elt.name = pool_strdup(&module->pool, name);
        hash_table_add(&module->ht_symbols, &sym->hash_elt);
        module->sortlist_valid = FALSE;
        sym->loc.kind      = loc_absolute;
        sym->loc.offset    = address;
        sym->parent        = compiland ? &compiland->symt : NULL;
        if (compiland)
        {
            struct symt**       p;
502 503 504 505 506 507 508
            p = vector_add(&compiland->vchildren, &module->pool);
            *p = &sym->symt;
        }
    }
    return sym;
}

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 513 514
                               const struct symt* sym, SYMBOL_INFO* sym_info)
{
    const char* name;
515
    DWORD64 size;
516

517 518 519
    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
520
    sym_info->Reserved[0] = sym_info->Reserved[1] = 0;
521
    if (!symt_get_info(sym, TI_GET_LENGTH, &size) &&
Eric Pouech's avatar
Eric Pouech committed
522 523
        (!sym_info->TypeIndex ||
         !symt_get_info((struct symt*)sym_info->TypeIndex, TI_GET_LENGTH, &size)))
524
        size = 0;
525
    sym_info->Size = (DWORD)size;
Eric Pouech's avatar
Eric Pouech committed
526
    sym_info->ModBase = pair->requested->module.BaseOfImage;
527
    sym_info->Flags = 0;
Eric Pouech's avatar
Eric Pouech committed
528 529
    sym_info->Value = 0;

530 531 532 533
    switch (sym->tag)
    {
    case SymTagData:
        {
534
            const struct symt_data*  data = (const struct symt_data*)sym;
535
            switch (data->kind)
536
            {
537
            case DataIsParam:
538 539
                sym_info->Flags |= SYMFLAG_PARAMETER;
                /* fall through */
540
            case DataIsLocal:
541
                {
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
                    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);
                    }
568
                }
569
                break;
570 571
            case DataIsGlobal:
            case DataIsFileStatic:
572 573 574
                symt_get_info(sym, TI_GET_ADDRESS, &sym_info->Address);
                sym_info->Register = 0;
                break;
575
            case DataIsConstant:
576
                sym_info->Flags |= SYMFLAG_VALUEPRESENT;
577 578 579 580 581 582 583 584
                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;
585 586
                case VT_I1 | VT_BYREF: sym_info->Value = (ULONG)data->u.value.n1.n2.n3.byref; break;
                default:
587
                    FIXME("Unsupported variant type (%u)\n", data->u.value.n1.n2.vt);
588 589
                    sym_info->Value = 0;
                    break;
590
                }
591 592
                break;
            default:
593
                FIXME("Unhandled kind (%u) in sym data\n", data->kind);
594 595 596 597 598 599 600 601 602 603 604
            }
        }
        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;
605 606 607 608
    case SymTagThunk:
        sym_info->Flags |= SYMFLAG_THUNK;
        symt_get_info(sym, TI_GET_ADDRESS, &sym_info->Address);
        break;
609 610 611 612 613 614 615 616 617 618
    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)
    {
619
        if (sym->tag != SymTagPublicSymbol || !(dbghelp_options & SYMOPT_UNDNAME) ||
620 621
            (sym_info->NameLen = UnDecorateSymbolName(name, sym_info->Name,
                                                      sym_info->MaxNameLen, UNDNAME_NAME_ONLY) == 0))
622 623
        {
            sym_info->NameLen = min(strlen(name), sym_info->MaxNameLen - 1);
624
            memcpy(sym_info->Name, name, sym_info->NameLen);
625 626
            sym_info->Name[sym_info->NameLen] = '\0';
        }
627
    }
628
    TRACE_(dbghelp_symt)("%p => %s %u %s\n",
629 630
                         sym, sym_info->Name, sym_info->Size,
                         wine_dbgstr_longlong(sym_info->Address));
631 632
}

633 634 635 636 637
struct sym_enum
{
    PSYM_ENUMERATESYMBOLS_CALLBACK      cb;
    PVOID                               user;
    SYMBOL_INFO*                        sym_info;
638 639 640
    DWORD                               index;
    DWORD                               tag;
    DWORD64                             addr;
641 642
    char                                buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
};
643

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)
646
{
647
    symt_fill_sym_info(pair, func, sym, se->sym_info);
648 649 650 651 652 653
    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);
}

654
static BOOL symt_enum_module(struct module_pair* pair, const regex_t* regex,
655
                             const struct sym_enum* se)
656 657 658 659 660
{
    void*                       ptr;
    struct symt_ht*             sym = NULL;
    struct hash_table_iter      hti;

Eric Pouech's avatar
Eric Pouech committed
661
    hash_table_iter_init(&pair->effective->ht_symbols, &hti, NULL);
662 663 664 665
    while ((ptr = hash_table_iter_up(&hti)))
    {
        sym = GET_ENTRY(ptr, struct symt_ht, hash_elt);
        if (sym->hash_elt.name &&
666
            regexec(regex, sym->hash_elt.name, 0, NULL, 0) == 0)
667
        {
668 669
            se->sym_info->SizeOfStruct = sizeof(SYMBOL_INFO);
            se->sym_info->MaxNameLen = sizeof(se->buffer) - sizeof(SYMBOL_INFO);
670
            if (send_symbol(se, pair, NULL, &sym->symt)) return TRUE;
671 672
        }
    }   
673
    return FALSE;
674 675 676 677 678 679 680 681 682 683 684 685
}

/***********************************************************************
 *              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;
686
    ULONG64                     addr;
687

688 689
    if (!(module->module.NumSyms = module->ht_symbols.num_elts))
        return FALSE;
690 691 692 693
    
    if (module->addr_sorttab)
        module->addr_sorttab = HeapReAlloc(GetProcessHeap(), 0,
                                           module->addr_sorttab, 
694
                                           module->module.NumSyms * sizeof(struct symt_ht*));
695 696
    else
        module->addr_sorttab = HeapAlloc(GetProcessHeap(), 0,
697
                                         module->module.NumSyms * sizeof(struct symt_ht*));
698 699
    if (!module->addr_sorttab) return FALSE;

700
    module->num_sorttab = 0;
701 702 703 704 705
    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);
706 707 708 709 710 711 712
        /* 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;
713
    }
714
    qsort(module->addr_sorttab, module->num_sorttab, sizeof(struct symt_ht*), symt_cmp_addr);
715 716 717
    return module->sortlist_valid = TRUE;
}

718 719 720 721 722 723 724 725 726 727 728 729
static void symt_get_length(struct symt* symt, ULONG64* size)
{
    DWORD       type_index;

    if (symt_get_info(symt, TI_GET_LENGTH, size) && *size)
        return;

    if (symt_get_info(symt, TI_GET_TYPE, &type_index) &&
        symt_get_info((struct symt*)type_index, TI_GET_LENGTH, size)) return;
    *size = 0x1000; /* arbitrary value */
}

730
/* assume addr is in module */
731
struct symt_ht* symt_find_nearest(struct module* module, DWORD addr)
732 733
{
    int         mid, high, low;
734
    ULONG64     ref_addr, ref_size;
735

736 737
    if (!module->sortlist_valid || !module->addr_sorttab)
    {
738
        if (!resort_symbols(module)) return NULL;
739
    }
740 741 742 743 744

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

747
    symt_get_info(&module->addr_sorttab[0]->symt, TI_GET_ADDRESS, &ref_addr);
748
    if (addr < ref_addr) return NULL;
749 750
    if (high)
    {
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;
754
    }
755 756 757 758 759 760 761 762 763
    
    while (high > low + 1)
    {
        mid = (high + low) / 2;
        if (cmp_sorttab_addr(module, mid, addr) < 0)
            low = mid;
        else
            high = mid;
    }
764
    if (low != high && high != module->num_sorttab &&
765 766 767 768 769 770 771 772
        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)
    {   
773
        symt_get_info(&module->addr_sorttab[low]->symt, TI_GET_ADDRESS, &ref_addr);
774 775
        if (low > 0 &&
            module->addr_sorttab[low - 1]->symt.tag != SymTagPublicSymbol &&
776
            !cmp_sorttab_addr(module, low - 1, ref_addr))
777
            low--;
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))
781 782
            low++;
    }
783 784
    /* finally check that we fit into the found symbol */
    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;
788

789
    return module->addr_sorttab[low];
790 791
}

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)
795 796
{
    struct symt*        lsym = NULL;
797
    DWORD               pc = pair->pcs->ctx_frame.InstructionOffset;
798
    unsigned int        i;
799

800
    for (i=0; i<vector_length(v); i++)
801
    {
802
        lsym = *(struct symt**)vector_at(v, i);
803 804 805 806 807 808 809
        switch (lsym->tag)
        {
        case SymTagBlock:
            {
                struct symt_block*  block = (struct symt_block*)lsym;
                if (pc < block->address || block->address + block->size <= pc)
                    continue;
810
                if (!symt_enum_locals_helper(pair, preg, se, func, &block->vchildren))
811 812 813 814 815 816
                    return FALSE;
            }
            break;
        case SymTagData:
            if (regexec(preg, symt_get_name(lsym), 0, NULL, 0) == 0)
            {
817
                if (send_symbol(se, pair, func, lsym)) return FALSE;
818 819
            }
            break;
820 821 822
        case SymTagLabel:
        case SymTagFuncDebugStart:
        case SymTagFuncDebugEnd:
823
        case SymTagCustom:
824
            break;
825 826 827 828 829 830 831 832
        default:
            FIXME("Unknown type: %u (%x)\n", lsym->tag, lsym->tag);
            assert(0);
        }
    }
    return TRUE;
}

833 834
static BOOL symt_enum_locals(struct process* pcs, const char* mask, 
                             const struct sym_enum* se)
835
{
Eric Pouech's avatar
Eric Pouech committed
836
    struct module_pair  pair;
837 838 839
    struct symt_ht*     sym;
    DWORD               pc = pcs->ctx_frame.InstructionOffset;

840 841
    se->sym_info->SizeOfStruct = sizeof(*se->sym_info);
    se->sym_info->MaxNameLen = sizeof(se->buffer) - sizeof(SYMBOL_INFO);
842

843 844 845
    pair.pcs = pcs;
    pair.requested = module_find_by_addr(pair.pcs, pc, DMT_UNKNOWN);
    if (!module_get_debug(&pair)) return FALSE;
846
    if ((sym = symt_find_nearest(pair.effective, pc)) == NULL) return FALSE;
847 848 849 850 851 852

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

853 854
        compile_regex(mask ? mask : "*", -1, &preg,
                      dbghelp_options & SYMOPT_CASE_INSENSITIVE);
855
        ret = symt_enum_locals_helper(&pair, &preg, se, (struct symt_function*)sym,
856 857 858 859 860
                                      &((struct symt_function*)sym)->vchildren);
        regfree(&preg);
        return ret;
        
    }
861
    return send_symbol(se, &pair, NULL, &sym->symt);
862 863
}

864 865 866 867 868 869
/******************************************************************
 *		copy_symbolW
 *
 * Helper for transforming an ANSI symbol info into an UNICODE one.
 * Assume that MaxNameLen is the same for both version (A & W).
 */
870
void copy_symbolW(SYMBOL_INFOW* siw, const SYMBOL_INFO* si)
871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888
{
    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);
}
889

890
/******************************************************************
891
 *		sym_enum
892
 *
893
 * Core routine for most of the enumeration of symbols
894
 */
895 896
static BOOL sym_enum(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR Mask,
                     const struct sym_enum* se)
897
{
Eric Pouech's avatar
Eric Pouech committed
898
    struct module_pair  pair;
899 900
    const char*         bang;
    regex_t             mod_regex, sym_regex;
901

902
    pair.pcs = process_find_by_handle(hProcess);
903 904
    if (BaseOfDll == 0)
    {
905 906
        /* do local variables ? */
        if (!Mask || !(bang = strchr(Mask, '!')))
907
            return symt_enum_locals(pair.pcs, Mask, se);
908 909 910

        if (bang == Mask) return FALSE;

911
        compile_regex(Mask, bang - Mask, &mod_regex, TRUE);
912 913
        compile_regex(bang + 1, -1, &sym_regex, 
                      dbghelp_options & SYMOPT_CASE_INSENSITIVE);
914
        
915
        for (pair.requested = pair.pcs->lmodules; pair.requested; pair.requested = pair.requested->next)
916
        {
917
            if (pair.requested->type == DMT_PE && module_get_debug(&pair))
918
            {
919
                if (regexec(&mod_regex, pair.requested->module_name, 0, NULL, 0) == 0 &&
920
                    symt_enum_module(&pair, &sym_regex, se))
921 922 923 924 925
                    break;
            }
        }
        /* not found in PE modules, retry on the ELF ones
         */
Eric Pouech's avatar
Eric Pouech committed
926
        if (!pair.requested && (dbghelp_options & SYMOPT_WINE_WITH_ELF_MODULES))
927
        {
928
            for (pair.requested = pair.pcs->lmodules; pair.requested; pair.requested = pair.requested->next)
929
            {
Eric Pouech's avatar
Eric Pouech committed
930
                if (pair.requested->type == DMT_ELF &&
931 932
                    !module_get_containee(pair.pcs, pair.requested) &&
                    module_get_debug(&pair))
933
                {
934
                    if (regexec(&mod_regex, pair.requested->module_name, 0, NULL, 0) == 0 &&
935
                        symt_enum_module(&pair, &sym_regex, se))
936 937
                    break;
                }
938 939
            }
        }
940 941 942
        regfree(&mod_regex);
        regfree(&sym_regex);
        return TRUE;
943
    }
944 945
    pair.requested = module_find_by_addr(pair.pcs, BaseOfDll, DMT_UNKNOWN);
    if (!module_get_debug(&pair))
946 947 948 949
        return FALSE;

    /* we always ignore module name from Mask when BaseOfDll is defined */
    if (Mask && (bang = strchr(Mask, '!')))
950
    {
951 952
        if (bang == Mask) return FALSE;
        Mask = bang + 1;
953
    }
954

955
    compile_regex(Mask ? Mask : "*", -1, &sym_regex, 
Eric Pouech's avatar
Eric Pouech committed
956
                  dbghelp_options & SYMOPT_CASE_INSENSITIVE);
957
    symt_enum_module(&pair, &sym_regex, se);
958 959
    regfree(&sym_regex);

960 961 962
    return TRUE;
}

963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985
/******************************************************************
 *		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;
986 987 988
    se.index = 0;
    se.tag = 0;
    se.addr = 0;
989 990 991 992 993
    se.sym_info = (PSYMBOL_INFO)se.buffer;

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

994 995 996 997 998 999 1000 1001 1002 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 1034 1035 1036 1037 1038 1039 1040
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;
}

1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
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);
}

1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
struct sym_enumerate64
{
    void*                       ctx;
    PSYM_ENUMSYMBOLS_CALLBACK64 cb;
};

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

/***********************************************************************
 *              SymEnumerateSymbols64 (DBGHELP.@)
 */
BOOL WINAPI SymEnumerateSymbols64(HANDLE hProcess, DWORD64 BaseOfDll,
                                  PSYM_ENUMSYMBOLS_CALLBACK64 EnumSymbolsCallback,
                                  PVOID UserContext)
{
    struct sym_enumerate64      se;

    se.ctx = UserContext;
    se.cb  = EnumSymbolsCallback;

    return SymEnumSymbols(hProcess, BaseOfDll, NULL, sym_enumerate_cb64, &se);
}

1095 1096 1097 1098
/******************************************************************
 *		SymFromAddr (DBGHELP.@)
 *
 */
1099 1100
BOOL WINAPI SymFromAddr(HANDLE hProcess, DWORD64 Address, 
                        DWORD64* Displacement, PSYMBOL_INFO Symbol)
1101
{
Eric Pouech's avatar
Eric Pouech committed
1102
    struct module_pair  pair;
1103 1104
    struct symt_ht*     sym;

1105 1106 1107 1108
    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;
1109
    if ((sym = symt_find_nearest(pair.effective, Address)) == NULL) return FALSE;
1110

1111
    symt_fill_sym_info(&pair, NULL, &sym->symt, Symbol);
1112
    *Displacement = Address - Symbol->Address;
1113 1114 1115
    return TRUE;
}

1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
/******************************************************************
 *		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;
}

1141 1142 1143 1144 1145 1146 1147
/******************************************************************
 *		SymGetSymFromAddr (DBGHELP.@)
 *
 */
BOOL WINAPI SymGetSymFromAddr(HANDLE hProcess, DWORD Address,
                              PDWORD Displacement, PIMAGEHLP_SYMBOL Symbol)
{
Eric Pouech's avatar
Eric Pouech committed
1148
    char        buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1149 1150
    SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
    size_t      len;
1151
    DWORD64     Displacement64;
1152 1153 1154

    if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
    si->SizeOfStruct = sizeof(*si);
Eric Pouech's avatar
Eric Pouech committed
1155
    si->MaxNameLen = MAX_SYM_NAME;
1156
    if (!SymFromAddr(hProcess, Address, &Displacement64, si))
1157 1158
        return FALSE;

1159 1160
    if (Displacement)
        *Displacement = Displacement64;
1161 1162 1163 1164
    Symbol->Address = si->Address;
    Symbol->Size    = si->Size;
    Symbol->Flags   = si->Flags;
    len = min(Symbol->MaxNameLength, si->MaxNameLen);
1165
    lstrcpynA(Symbol->Name, si->Name, len);
1166 1167 1168
    return TRUE;
}

1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
/******************************************************************
 *		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
1197 1198 1199 1200 1201 1202 1203 1204
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;

1205
    pair.pcs = pcs;
Eric Pouech's avatar
Eric Pouech committed
1206
    if (!(pair.requested = module)) return FALSE;
1207
    if (!module_get_debug(&pair)) return FALSE;
Eric Pouech's avatar
Eric Pouech committed
1208 1209 1210 1211 1212 1213 1214 1215

    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))
        {
1216
            symt_fill_sym_info(&pair, NULL, &sym->symt, symbol);
Eric Pouech's avatar
Eric Pouech committed
1217 1218 1219 1220 1221 1222
            return TRUE;
        }
    }
    return FALSE;

}
1223 1224 1225 1226
/******************************************************************
 *		SymFromName (DBGHELP.@)
 *
 */
1227
BOOL WINAPI SymFromName(HANDLE hProcess, PCSTR Name, PSYMBOL_INFO Symbol)
1228 1229 1230
{
    struct process*             pcs = process_find_by_handle(hProcess);
    struct module*              module;
1231
    const char*                 name;
1232 1233 1234 1235

    TRACE("(%p, %s, %p)\n", hProcess, Name, Symbol);
    if (!pcs) return FALSE;
    if (Symbol->SizeOfStruct < sizeof(*Symbol)) return FALSE;
1236 1237 1238 1239 1240 1241 1242
    name = strchr(Name, '!');
    if (name)
    {
        char    tmp[128];
        assert(name - Name < sizeof(tmp));
        memcpy(tmp, Name, name - Name);
        tmp[name - Name] = '\0';
1243
        module = module_find_by_nameA(pcs, tmp);
1244
        return find_name(pcs, module, name + 1, Symbol);
1245
    }
Eric Pouech's avatar
Eric Pouech committed
1246
    for (module = pcs->lmodules; module; module = module->next)
1247
    {
Eric Pouech's avatar
Eric Pouech committed
1248 1249 1250 1251 1252 1253 1254 1255
        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)
1256
        {
Eric Pouech's avatar
Eric Pouech committed
1257 1258
            if (module->type == DMT_ELF && !module_get_containee(pcs, module) &&
                find_name(pcs, module, Name, Symbol))
1259
                return TRUE;
1260 1261 1262 1263 1264 1265 1266 1267
        }
    }
    return FALSE;
}

/***********************************************************************
 *		SymGetSymFromName (DBGHELP.@)
 */
1268
BOOL WINAPI SymGetSymFromName(HANDLE hProcess, PCSTR Name, PIMAGEHLP_SYMBOL Symbol)
1269
{
Eric Pouech's avatar
Eric Pouech committed
1270
    char        buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1271 1272 1273 1274 1275
    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
1276
    si->MaxNameLen = MAX_SYM_NAME;
1277 1278 1279 1280 1281 1282
    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);
1283
    lstrcpynA(Symbol->Name, si->Name, len);
1284 1285 1286 1287
    return TRUE;
}

/******************************************************************
1288
 *		sym_fill_func_line_info
1289 1290 1291
 *
 * 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)
1294 1295 1296
{
    struct line_info*   dli = NULL;
    BOOL                found = FALSE;
1297
    int                 i;
1298 1299 1300

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

1301
    for (i=vector_length(&func->vlines)-1; i>=0; i--)
1302
    {
1303
        dli = vector_at(&func->vlines, i);
1304
        if (!dli->is_source_file)
1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355
        {
            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
1356
    struct module_pair  pair;
1357
    struct symt_ht*     symt;
1358

1359
    TRACE("%p %08x %p %p\n", hProcess, dwAddr, pdwDisplacement, Line);
1360 1361 1362

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

1363 1364 1365 1366
    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;
1367
    if ((symt = symt_find_nearest(pair.effective, dwAddr)) == NULL) return FALSE;
1368

1369 1370
    if (symt->symt.tag != SymTagFunction) return FALSE;
    if (!symt_fill_func_line_info(pair.effective, (struct symt_function*)symt,
1371
                                  dwAddr, Line)) return FALSE;
1372
    *pdwDisplacement = dwAddr - Line->Address;
1373 1374 1375
    return TRUE;
}

1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
/******************************************************************
 *		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;
}

1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
/******************************************************************
 *		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;
}

1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435
/******************************************************************
 *		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;
}

1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
/******************************************************************
 *		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;
}

1456 1457 1458 1459 1460 1461
/******************************************************************
 *		SymGetLinePrev (DBGHELP.@)
 *
 */
BOOL WINAPI SymGetLinePrev(HANDLE hProcess, PIMAGEHLP_LINE Line)
{
Eric Pouech's avatar
Eric Pouech committed
1462
    struct module_pair  pair;
1463 1464 1465 1466 1467 1468 1469
    struct line_info*   li;
    BOOL                in_search = FALSE;

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

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

1470 1471 1472 1473
    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;
1474 1475 1476 1477 1478 1479 1480 1481

    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
     */
1482
    while (!li->is_first)
1483 1484
    {
        li--;
1485
        if (!li->is_source_file)
1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
        {
            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
1496
                Line->FileName = (char*)source_get(pair.effective, li->u.source_file);
1497 1498 1499 1500 1501 1502 1503 1504 1505
                return TRUE;
            }
            in_search = TRUE;
        }
    }
    SetLastError(ERROR_NO_MORE_ITEMS); /* FIXME */
    return FALSE;
}

1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520
/******************************************************************
 *		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;
}
    
1521
BOOL symt_get_func_line_next(const struct module* module, PIMAGEHLP_LINE line)
1522 1523 1524 1525 1526
{
    struct line_info*   li;

    if (line->Key == 0) return FALSE;
    li = (struct line_info*)line->Key;
1527
    while (!li->is_last)
1528 1529
    {
        li++;
1530
        if (!li->is_source_file)
1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541
        {
            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;
}

1542 1543 1544 1545 1546 1547
/******************************************************************
 *		SymGetLineNext (DBGHELP.@)
 *
 */
BOOL WINAPI SymGetLineNext(HANDLE hProcess, PIMAGEHLP_LINE Line)
{
Eric Pouech's avatar
Eric Pouech committed
1548
    struct module_pair  pair;
1549 1550 1551 1552

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

    if (Line->SizeOfStruct < sizeof(*Line)) return FALSE;
1553 1554 1555 1556
    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;
1557

Eric Pouech's avatar
Eric Pouech committed
1558
    if (symt_get_func_line_next(pair.effective, Line)) return TRUE;
1559 1560 1561 1562
    SetLastError(ERROR_NO_MORE_ITEMS); /* FIXME */
    return FALSE;
}

1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577
/******************************************************************
 *		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;
}
    
1578 1579 1580 1581 1582
/***********************************************************************
 *		SymFunctionTableAccess (DBGHELP.@)
 */
PVOID WINAPI SymFunctionTableAccess(HANDLE hProcess, DWORD AddrBase)
{
1583
    WARN("(%p, 0x%08x): stub\n", hProcess, AddrBase);
1584 1585 1586 1587 1588 1589 1590 1591 1592 1593
    return NULL;
}

/***********************************************************************
 *		SymFunctionTableAccess64 (DBGHELP.@)
 */
PVOID WINAPI SymFunctionTableAccess64(HANDLE hProcess, DWORD64 AddrBase)
{
    WARN("(%p, %s): stub\n", hProcess, wine_dbgstr_longlong(AddrBase));
    return NULL;
1594 1595 1596 1597 1598
}

/***********************************************************************
 *		SymUnDName (DBGHELP.@)
 */
1599
BOOL WINAPI SymUnDName(PIMAGEHLP_SYMBOL sym, PSTR UnDecName, DWORD UnDecNameLength)
1600
{
1601 1602
    TRACE("(%p %s %u)\n", sym, UnDecName, UnDecNameLength);
    return UnDecorateSymbolName(sym->Name, UnDecName, UnDecNameLength,
1603
                                UNDNAME_COMPLETE) != 0;
1604 1605
}

1606 1607 1608
static void* und_alloc(size_t len) { return HeapAlloc(GetProcessHeap(), 0, len); }
static void  und_free (void* ptr)  { HeapFree(GetProcessHeap(), 0, ptr); }

1609 1610 1611
/***********************************************************************
 *		UnDecorateSymbolName (DBGHELP.@)
 */
1612
DWORD WINAPI UnDecorateSymbolName(PCSTR DecoratedName, PSTR UnDecoratedName,
1613 1614
                                  DWORD UndecoratedLength, DWORD Flags)
{
1615 1616
    /* undocumented from msvcrt */
    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};
1618

1619
    TRACE("(%s, %p, %d, 0x%08x)\n",
1620 1621
          debugstr_a(DecoratedName), UnDecoratedName, UndecoratedLength, Flags);

1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633
    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);
1634
}
1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652

/******************************************************************
 *		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;
}

1653 1654 1655 1656 1657 1658 1659 1660
/******************************************************************
 *		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)
{
1661 1662
    struct sym_enum     se;

1663 1664
    TRACE("(%p %s %u %u %s %s %p %p %x)\n",
          hProcess, wine_dbgstr_longlong(BaseOfDll), Index, SymTag, Mask,
1665 1666 1667 1668 1669
          wine_dbgstr_longlong(Address), EnumSymbolsCallback,
          UserContext, Options);

    if (Options != SYMSEARCH_GLOBALSONLY)
    {
1670
        FIXME("Unsupported searching with options (%x)\n", Options);
1671 1672 1673
        SetLastError(ERROR_INVALID_PARAMETER);
        return FALSE;
    }
1674 1675 1676 1677 1678 1679 1680 1681 1682

    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);
1683
}
1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696

/******************************************************************
 *		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;

1697 1698
    TRACE("(%p %s %u %u %s %s %p %p %x)\n",
          hProcess, wine_dbgstr_longlong(BaseOfDll), Index, SymTag, debugstr_w(Mask),
1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718
          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;
}
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752

/******************************************************************
 *		SymAddSymbol (DBGHELP.@)
 *
 */
BOOL WINAPI SymAddSymbol(HANDLE hProcess, ULONG64 BaseOfDll, PCSTR name,
                         DWORD64 addr, DWORD size, DWORD flags)
{
    WCHAR       nameW[MAX_SYM_NAME];

    MultiByteToWideChar(CP_ACP, 0, name, -1, nameW, sizeof(nameW) / sizeof(WCHAR));
    return SymAddSymbolW(hProcess, BaseOfDll, nameW, addr, size, flags);
}

/******************************************************************
 *		SymAddSymbolW (DBGHELP.@)
 *
 */
BOOL WINAPI SymAddSymbolW(HANDLE hProcess, ULONG64 BaseOfDll, PCWSTR name,
                          DWORD64 addr, DWORD size, DWORD flags)
{
    struct module_pair  pair;

    TRACE("(%p %s %s %u)\n", hProcess, wine_dbgstr_w(name), wine_dbgstr_longlong(addr), size);

    pair.pcs = process_find_by_handle(hProcess);
    if (!pair.pcs) return FALSE;
    pair.requested = module_find_by_addr(pair.pcs, BaseOfDll, DMT_UNKNOWN);
    if (!module_get_debug(&pair)) return FALSE;

    SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
    return FALSE;
}

1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764
/******************************************************************
 *		SymSetScopeFromAddr (DBGHELP.@)
 */
BOOL WINAPI SymSetScopeFromAddr(HANDLE hProcess, ULONG64 addr)
{
    struct process*     pcs;

    FIXME("(%p %s): stub\n", hProcess, wine_dbgstr_longlong(addr));

    if (!(pcs = process_find_by_handle(hProcess))) return FALSE;
    return TRUE;
}