ieframe: Added ITargetFramePriv2 interface to HlinkFrame object.
[wine] / dlls / dbghelp / elf_module.c
1 /*
2  * File elf.c - processing of ELF files
3  *
4  * Copyright (C) 1996, Eric Youngdale.
5  *               1999-2007 Eric Pouech
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include "config.h"
23 #include "wine/port.h"
24
25 #if defined(__svr4__) || defined(__sun)
26 #define __ELF__ 1
27 /* large files are not supported by libelf */
28 #undef _FILE_OFFSET_BITS
29 #define _FILE_OFFSET_BITS 32
30 #endif
31
32 #include <assert.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35 #ifdef HAVE_SYS_STAT_H
36 # include <sys/stat.h>
37 #endif
38 #include <fcntl.h>
39 #ifdef HAVE_SYS_MMAN_H
40 #include <sys/mman.h>
41 #endif
42 #ifdef HAVE_UNISTD_H
43 # include <unistd.h>
44 #endif
45
46 #include "dbghelp_private.h"
47
48 #include "image_private.h"
49
50 #include "wine/library.h"
51 #include "wine/debug.h"
52
53 #ifdef __ELF__
54
55 #define ELF_INFO_DEBUG_HEADER   0x0001
56 #define ELF_INFO_MODULE         0x0002
57 #define ELF_INFO_NAME           0x0004
58
59 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);
60
61 struct elf_info
62 {
63     unsigned                    flags;          /* IN  one (or several) of the ELF_INFO constants */
64     DWORD_PTR                   dbg_hdr_addr;   /* OUT address of debug header (if ELF_INFO_DEBUG_HEADER is set) */
65     struct module*              module;         /* OUT loaded module (if ELF_INFO_MODULE is set) */
66     const WCHAR*                module_name;    /* OUT found module name (if ELF_INFO_NAME is set) */
67 };
68
69 struct symtab_elt
70 {
71     struct hash_table_elt       ht_elt;
72     const Elf_Sym*              symp;
73     struct symt_compiland*      compiland;
74     unsigned                    used;
75 };
76
77 struct elf_thunk_area
78 {
79     const char*                 symname;
80     THUNK_ORDINAL               ordinal;
81     unsigned long               rva_start;
82     unsigned long               rva_end;
83 };
84
85 struct elf_module_info
86 {
87     unsigned long               elf_addr;
88     unsigned short              elf_mark : 1,
89                                 elf_loader : 1;
90     struct image_file_map       file_map;
91 };
92
93 /******************************************************************
94  *              elf_map_section
95  *
96  * Maps a single section into memory from an ELF file
97  */
98 const char* elf_map_section(struct image_section_map* ism)
99 {
100     struct elf_file_map*        fmap = &ism->fmap->u.elf;
101
102     unsigned long pgsz = getpagesize();
103     unsigned long ofst, size;
104
105     assert(ism->fmap->modtype == DMT_ELF);
106     if (ism->sidx < 0 || ism->sidx >= ism->fmap->u.elf.elfhdr.e_shnum ||
107         fmap->sect[ism->sidx].shdr.sh_type == SHT_NOBITS)
108         return IMAGE_NO_MAP;
109
110     if (fmap->target_copy)
111     {
112         return fmap->target_copy + fmap->sect[ism->sidx].shdr.sh_offset;
113     }
114     /* align required information on page size (we assume pagesize is a power of 2) */
115     ofst = fmap->sect[ism->sidx].shdr.sh_offset & ~(pgsz - 1);
116     size = ((fmap->sect[ism->sidx].shdr.sh_offset +
117              fmap->sect[ism->sidx].shdr.sh_size + pgsz - 1) & ~(pgsz - 1)) - ofst;
118     fmap->sect[ism->sidx].mapped = mmap(NULL, size, PROT_READ, MAP_PRIVATE,
119                                         fmap->fd, ofst);
120     if (fmap->sect[ism->sidx].mapped == IMAGE_NO_MAP) return IMAGE_NO_MAP;
121     return fmap->sect[ism->sidx].mapped + (fmap->sect[ism->sidx].shdr.sh_offset & (pgsz - 1));
122 }
123
124 /******************************************************************
125  *              elf_find_section
126  *
127  * Finds a section by name (and type) into memory from an ELF file
128  * or its alternate if any
129  */
130 BOOL elf_find_section(struct image_file_map* _fmap, const char* name,
131                       unsigned sht, struct image_section_map* ism)
132 {
133     struct elf_file_map*        fmap;
134     unsigned i;
135
136     while (_fmap)
137     {
138         fmap = &_fmap->u.elf;
139         if (fmap->shstrtab == IMAGE_NO_MAP)
140         {
141             struct image_section_map  hdr_ism = {_fmap, fmap->elfhdr.e_shstrndx};
142             if ((fmap->shstrtab = elf_map_section(&hdr_ism)) == IMAGE_NO_MAP) break;
143         }
144         for (i = 0; i < fmap->elfhdr.e_shnum; i++)
145         {
146             if (strcmp(fmap->shstrtab + fmap->sect[i].shdr.sh_name, name) == 0 &&
147                 (sht == SHT_NULL || sht == fmap->sect[i].shdr.sh_type))
148             {
149                 ism->fmap = _fmap;
150                 ism->sidx = i;
151                 return TRUE;
152             }
153         }
154         _fmap = fmap->alternate;
155     }
156     ism->fmap = NULL;
157     ism->sidx = -1;
158     return FALSE;
159 }
160
161 /******************************************************************
162  *              elf_unmap_section
163  *
164  * Unmaps a single section from memory
165  */
166 void elf_unmap_section(struct image_section_map* ism)
167 {
168     struct elf_file_map*        fmap = &ism->fmap->u.elf;
169
170     if (ism->sidx >= 0 && ism->sidx < fmap->elfhdr.e_shnum && !fmap->target_copy &&
171         fmap->sect[ism->sidx].mapped != IMAGE_NO_MAP)
172     {
173         unsigned long pgsz = getpagesize();
174         unsigned long ofst, size;
175
176         ofst = fmap->sect[ism->sidx].shdr.sh_offset & ~(pgsz - 1);
177         size = ((fmap->sect[ism->sidx].shdr.sh_offset +
178              fmap->sect[ism->sidx].shdr.sh_size + pgsz - 1) & ~(pgsz - 1)) - ofst;
179         if (munmap((char*)fmap->sect[ism->sidx].mapped, size) < 0)
180             WARN("Couldn't unmap the section\n");
181         fmap->sect[ism->sidx].mapped = IMAGE_NO_MAP;
182     }
183 }
184
185 static void elf_end_find(struct image_file_map* fmap)
186 {
187     struct image_section_map      ism;
188
189     while (fmap)
190     {
191         ism.fmap = fmap;
192         ism.sidx = fmap->u.elf.elfhdr.e_shstrndx;
193         elf_unmap_section(&ism);
194         fmap->u.elf.shstrtab = IMAGE_NO_MAP;
195         fmap = fmap->u.elf.alternate;
196     }
197 }
198
199 /******************************************************************
200  *              elf_get_map_rva
201  *
202  * Get the RVA of an ELF section
203  */
204 DWORD_PTR elf_get_map_rva(const struct image_section_map* ism)
205 {
206     if (ism->sidx < 0 || ism->sidx >= ism->fmap->u.elf.elfhdr.e_shnum)
207         return 0;
208     return ism->fmap->u.elf.sect[ism->sidx].shdr.sh_addr - ism->fmap->u.elf.elf_start;
209 }
210
211 /******************************************************************
212  *              elf_get_map_size
213  *
214  * Get the size of an ELF section
215  */
216 unsigned elf_get_map_size(const struct image_section_map* ism)
217 {
218     if (ism->sidx < 0 || ism->sidx >= ism->fmap->u.elf.elfhdr.e_shnum)
219         return 0;
220     return ism->fmap->u.elf.sect[ism->sidx].shdr.sh_size;
221 }
222
223 static inline void elf_reset_file_map(struct image_file_map* fmap)
224 {
225     fmap->u.elf.fd = -1;
226     fmap->u.elf.shstrtab = IMAGE_NO_MAP;
227     fmap->u.elf.alternate = NULL;
228     fmap->u.elf.target_copy = NULL;
229 }
230
231 struct elf_map_file_data
232 {
233     enum {from_file, from_process}      kind;
234     union
235     {
236         struct
237         {
238             const WCHAR* filename;
239         } file;
240         struct
241         {
242             HANDLE      handle;
243             void*       load_addr;
244         } process;
245     } u;
246 };
247
248 static BOOL elf_map_file_read(struct image_file_map* fmap, struct elf_map_file_data* emfd,
249                               void* buf, size_t len, off_t off)
250 {
251     SIZE_T dw;
252
253     switch (emfd->kind)
254     {
255     case from_file:
256         return pread(fmap->u.elf.fd, buf, len, off) == len;
257     case from_process:
258         return ReadProcessMemory(emfd->u.process.handle,
259                                  (void*)((unsigned long)emfd->u.process.load_addr + (unsigned long)off),
260                                  buf, len, &dw) && dw == len;
261     default:
262         assert(0);
263         return FALSE;
264     }
265 }
266
267 /******************************************************************
268  *              elf_map_file
269  *
270  * Maps an ELF file into memory (and checks it's a real ELF file)
271  */
272 static BOOL elf_map_file(struct elf_map_file_data* emfd, struct image_file_map* fmap)
273 {
274     static const BYTE   elf_signature[4] = { ELFMAG0, ELFMAG1, ELFMAG2, ELFMAG3 };
275     struct stat         statbuf;
276     int                 i;
277     Elf_Phdr            phdr;
278     unsigned long       tmp, page_mask = getpagesize() - 1;
279     char*               filename;
280     unsigned            len;
281     BOOL                ret = FALSE;
282
283     switch (emfd->kind)
284     {
285     case from_file:
286         len = WideCharToMultiByte(CP_UNIXCP, 0, emfd->u.file.filename, -1, NULL, 0, NULL, NULL);
287         if (!(filename = HeapAlloc(GetProcessHeap(), 0, len))) return FALSE;
288         WideCharToMultiByte(CP_UNIXCP, 0, emfd->u.file.filename, -1, filename, len, NULL, NULL);
289         break;
290     case from_process:
291         filename = NULL;
292         break;
293     default: assert(0);
294         return FALSE;
295     }
296
297     elf_reset_file_map(fmap);
298
299     fmap->modtype = DMT_ELF;
300     fmap->u.elf.fd = -1;
301     fmap->u.elf.target_copy = NULL;
302
303     switch (emfd->kind)
304     {
305     case from_file:
306         /* check that the file exists, and that the module hasn't been loaded yet */
307         if (stat(filename, &statbuf) == -1 || S_ISDIR(statbuf.st_mode)) goto done;
308
309         /* Now open the file, so that we can mmap() it. */
310         if ((fmap->u.elf.fd = open(filename, O_RDONLY)) == -1) goto done;
311         break;
312     case from_process:
313         break;
314     }
315     if (!elf_map_file_read(fmap, emfd, &fmap->u.elf.elfhdr, sizeof(fmap->u.elf.elfhdr), 0))
316         goto done;
317
318     /* and check for an ELF header */
319     if (memcmp(fmap->u.elf.elfhdr.e_ident,
320                elf_signature, sizeof(elf_signature))) goto done;
321     /* and check 32 vs 64 size according to current machine */
322 #ifdef _WIN64
323     if (fmap->u.elf.elfhdr.e_ident[EI_CLASS] != ELFCLASS64) goto done;
324 #else
325     if (fmap->u.elf.elfhdr.e_ident[EI_CLASS] != ELFCLASS32) goto done;
326 #endif
327     fmap->u.elf.sect = HeapAlloc(GetProcessHeap(), 0,
328                                  fmap->u.elf.elfhdr.e_shnum * sizeof(fmap->u.elf.sect[0]));
329     if (!fmap->u.elf.sect) goto done;
330
331     for (i = 0; i < fmap->u.elf.elfhdr.e_shnum; i++)
332     {
333         if (!elf_map_file_read(fmap, emfd, &fmap->u.elf.sect[i].shdr, sizeof(fmap->u.elf.sect[i].shdr),
334                                fmap->u.elf.elfhdr.e_shoff + i * sizeof(fmap->u.elf.sect[i].shdr)))
335         {
336             HeapFree(GetProcessHeap(), 0, fmap->u.elf.sect);
337             fmap->u.elf.sect = NULL;
338             goto done;
339         }
340         fmap->u.elf.sect[i].mapped = IMAGE_NO_MAP;
341     }
342
343     /* grab size of module once loaded in memory */
344     fmap->u.elf.elf_size = 0;
345     fmap->u.elf.elf_start = ~0L;
346     for (i = 0; i < fmap->u.elf.elfhdr.e_phnum; i++)
347     {
348         if (elf_map_file_read(fmap, emfd, &phdr, sizeof(phdr),
349                               fmap->u.elf.elfhdr.e_phoff + i * sizeof(phdr)) &&
350             phdr.p_type == PT_LOAD)
351         {
352             tmp = (phdr.p_vaddr + phdr.p_memsz + page_mask) & ~page_mask;
353             if (fmap->u.elf.elf_size < tmp) fmap->u.elf.elf_size = tmp;
354             if (phdr.p_vaddr < fmap->u.elf.elf_start) fmap->u.elf.elf_start = phdr.p_vaddr;
355         }
356     }
357     /* if non relocatable ELF, then remove fixed address from computation
358      * otherwise, all addresses are zero based and start has no effect
359      */
360     fmap->u.elf.elf_size -= fmap->u.elf.elf_start;
361
362     switch (emfd->kind)
363     {
364     case from_file: break;
365     case from_process:
366         if (!(fmap->u.elf.target_copy = HeapAlloc(GetProcessHeap(), 0, fmap->u.elf.elf_size)))
367         {
368             HeapFree(GetProcessHeap(), 0, fmap->u.elf.sect);
369             goto done;
370         }
371         if (!ReadProcessMemory(emfd->u.process.handle, emfd->u.process.load_addr, fmap->u.elf.target_copy,
372                                fmap->u.elf.elf_size, NULL))
373         {
374             HeapFree(GetProcessHeap(), 0, fmap->u.elf.target_copy);
375             HeapFree(GetProcessHeap(), 0, fmap->u.elf.sect);
376             goto done;
377         }
378         break;
379     }
380     ret = TRUE;
381 done:
382     HeapFree(GetProcessHeap(), 0, filename);
383     return ret;
384 }
385
386 /******************************************************************
387  *              elf_unmap_file
388  *
389  * Unmaps an ELF file from memory (previously mapped with elf_map_file)
390  */
391 static void elf_unmap_file(struct image_file_map* fmap)
392 {
393     while (fmap)
394     {
395         if (fmap->u.elf.fd != -1)
396         {
397             struct image_section_map  ism;
398             ism.fmap = fmap;
399             for (ism.sidx = 0; ism.sidx < fmap->u.elf.elfhdr.e_shnum; ism.sidx++)
400             {
401                 elf_unmap_section(&ism);
402             }
403             HeapFree(GetProcessHeap(), 0, fmap->u.elf.sect);
404             close(fmap->u.elf.fd);
405         }
406         HeapFree(GetProcessHeap(), 0, fmap->u.elf.target_copy);
407         fmap = fmap->u.elf.alternate;
408     }
409 }
410
411 static void elf_module_remove(struct process* pcs, struct module_format* modfmt)
412 {
413     elf_unmap_file(&modfmt->u.elf_info->file_map);
414     HeapFree(GetProcessHeap(), 0, modfmt);
415 }
416
417 /******************************************************************
418  *              elf_is_in_thunk_area
419  *
420  * Check whether an address lies within one of the thunk area we
421  * know of.
422  */
423 int elf_is_in_thunk_area(unsigned long addr,
424                          const struct elf_thunk_area* thunks)
425 {
426     unsigned i;
427
428     if (thunks) for (i = 0; thunks[i].symname; i++)
429     {
430         if (addr >= thunks[i].rva_start && addr < thunks[i].rva_end)
431             return i;
432     }
433     return -1;
434 }
435
436 /******************************************************************
437  *              elf_hash_symtab
438  *
439  * creating an internal hash table to ease use ELF symtab information lookup
440  */
441 static void elf_hash_symtab(struct module* module, struct pool* pool,
442                             struct hash_table* ht_symtab, struct image_file_map* fmap,
443                             struct elf_thunk_area* thunks)
444 {
445     int                         i, j, nsym;
446     const char*                 strp;
447     const char*                 symname;
448     struct symt_compiland*      compiland = NULL;
449     const char*                 ptr;
450     const Elf_Sym*              symp;
451     struct symtab_elt*          ste;
452     struct image_section_map    ism, ism_str;
453
454     if (!elf_find_section(fmap, ".symtab", SHT_SYMTAB, &ism) &&
455         !elf_find_section(fmap, ".dynsym", SHT_DYNSYM, &ism)) return;
456     if ((symp = (const Elf_Sym*)image_map_section(&ism)) == IMAGE_NO_MAP) return;
457     ism_str.fmap = ism.fmap;
458     ism_str.sidx = fmap->u.elf.sect[ism.sidx].shdr.sh_link;
459     if ((strp = image_map_section(&ism_str)) == IMAGE_NO_MAP)
460     {
461         image_unmap_section(&ism);
462         return;
463     }
464
465     nsym = image_get_map_size(&ism) / sizeof(*symp);
466
467     for (j = 0; thunks[j].symname; j++)
468         thunks[j].rva_start = thunks[j].rva_end = 0;
469
470     for (i = 0; i < nsym; i++, symp++)
471     {
472         /* Ignore certain types of entries which really aren't of that much
473          * interest.
474          */
475         if ((ELF32_ST_TYPE(symp->st_info) != STT_NOTYPE &&
476              ELF32_ST_TYPE(symp->st_info) != STT_FILE &&
477              ELF32_ST_TYPE(symp->st_info) != STT_OBJECT &&
478              ELF32_ST_TYPE(symp->st_info) != STT_FUNC) ||
479             symp->st_shndx == SHN_UNDEF)
480         {
481             continue;
482         }
483
484         symname = strp + symp->st_name;
485
486         /* handle some specific symtab (that we'll throw away when done) */
487         switch (ELF32_ST_TYPE(symp->st_info))
488         {
489         case STT_FILE:
490             if (symname)
491                 compiland = symt_new_compiland(module, symp->st_value,
492                                                source_new(module, NULL, symname));
493             else
494                 compiland = NULL;
495             continue;
496         case STT_NOTYPE:
497             /* we are only interested in wine markers inserted by winebuild */
498             for (j = 0; thunks[j].symname; j++)
499             {
500                 if (!strcmp(symname, thunks[j].symname))
501                 {
502                     thunks[j].rva_start = symp->st_value;
503                     thunks[j].rva_end   = symp->st_value + symp->st_size;
504                     break;
505                 }
506             }
507             continue;
508         }
509
510         /* FIXME: we don't need to handle them (GCC internals)
511          * Moreover, they screw up our symbol lookup :-/
512          */
513         if (symname[0] == '.' && symname[1] == 'L' && isdigit(symname[2]))
514             continue;
515
516         ste = pool_alloc(pool, sizeof(*ste));
517         ste->ht_elt.name = symname;
518         /* GCC emits, in some cases, a .<digit>+ suffix.
519          * This is used for static variable inside functions, so
520          * that we can have several such variables with same name in
521          * the same compilation unit
522          * We simply ignore that suffix when present (we also get rid
523          * of it in stabs parsing)
524          */
525         ptr = symname + strlen(symname) - 1;
526         if (isdigit(*ptr))
527         {
528             while (isdigit(*ptr) && ptr >= symname) ptr--;
529             if (ptr > symname && *ptr == '.')
530             {
531                 char* n = pool_alloc(pool, ptr - symname + 1);
532                 memcpy(n, symname, ptr - symname + 1);
533                 n[ptr - symname] = '\0';
534                 ste->ht_elt.name = n;
535             }
536         }
537         ste->symp        = symp;
538         ste->compiland   = compiland;
539         ste->used        = 0;
540         hash_table_add(ht_symtab, &ste->ht_elt);
541     }
542     /* as we added in the ht_symtab pointers to the symbols themselves,
543      * we cannot unmap yet the sections, it will be done when we're over
544      * with this ELF file
545      */
546 }
547
548 /******************************************************************
549  *              elf_lookup_symtab
550  *
551  * lookup a symbol by name in our internal hash table for the symtab
552  */
553 static const Elf_Sym* elf_lookup_symtab(const struct module* module,
554                                           const struct hash_table* ht_symtab,
555                                           const char* name, const struct symt* compiland)
556 {
557     struct symtab_elt*          weak_result = NULL; /* without compiland name */
558     struct symtab_elt*          result = NULL;
559     struct hash_table_iter      hti;
560     struct symtab_elt*          ste;
561     const char*                 compiland_name;
562     const char*                 compiland_basename;
563     const char*                 base;
564
565     /* we need weak match up (at least) when symbols of same name, 
566      * defined several times in different compilation units,
567      * are merged in a single one (hence a different filename for c.u.)
568      */
569     if (compiland)
570     {
571         compiland_name = source_get(module,
572                                     ((const struct symt_compiland*)compiland)->source);
573         compiland_basename = strrchr(compiland_name, '/');
574         if (!compiland_basename++) compiland_basename = compiland_name;
575     }
576     else compiland_name = compiland_basename = NULL;
577     
578     hash_table_iter_init(ht_symtab, &hti, name);
579     while ((ste = hash_table_iter_up(&hti)))
580     {
581         if (ste->used || strcmp(ste->ht_elt.name, name)) continue;
582
583         weak_result = ste;
584         if ((ste->compiland && !compiland_name) || (!ste->compiland && compiland_name))
585             continue;
586         if (ste->compiland && compiland_name)
587         {
588             const char* filename = source_get(module, ste->compiland->source);
589             if (strcmp(filename, compiland_name))
590             {
591                 base = strrchr(filename, '/');
592                 if (!base++) base = filename;
593                 if (strcmp(base, compiland_basename)) continue;
594             }
595         }
596         if (result)
597         {
598             FIXME("Already found symbol %s (%s) in symtab %s @%08x and %s @%08x\n",
599                   name, compiland_name,
600                   source_get(module, result->compiland->source), (unsigned int)result->symp->st_value,
601                   source_get(module, ste->compiland->source), (unsigned int)ste->symp->st_value);
602         }
603         else
604         {
605             result = ste;
606             ste->used = 1;
607         }
608     }
609     if (!result && !(result = weak_result))
610     {
611         FIXME("Couldn't find symbol %s!%s in symtab\n",
612               debugstr_w(module->module.ModuleName), name);
613         return NULL;
614     }
615     return result->symp;
616 }
617
618 /******************************************************************
619  *              elf_finish_stabs_info
620  *
621  * - get any relevant information (address & size) from the bits we got from the
622  *   stabs debugging information
623  */
624 static void elf_finish_stabs_info(struct module* module, const struct hash_table* symtab)
625 {
626     struct hash_table_iter      hti;
627     void*                       ptr;
628     struct symt_ht*             sym;
629     const Elf_Sym*              symp;
630     struct elf_module_info*     elf_info = module->format_info[DFI_ELF]->u.elf_info;
631
632     hash_table_iter_init(&module->ht_symbols, &hti, NULL);
633     while ((ptr = hash_table_iter_up(&hti)))
634     {
635         sym = GET_ENTRY(ptr, struct symt_ht, hash_elt);
636         switch (sym->symt.tag)
637         {
638         case SymTagFunction:
639             if (((struct symt_function*)sym)->address != elf_info->elf_addr &&
640                 ((struct symt_function*)sym)->size)
641             {
642                 break;
643             }
644             symp = elf_lookup_symtab(module, symtab, sym->hash_elt.name, 
645                                      ((struct symt_function*)sym)->container);
646             if (symp)
647             {
648                 if (((struct symt_function*)sym)->address != elf_info->elf_addr &&
649                     ((struct symt_function*)sym)->address != elf_info->elf_addr + symp->st_value)
650                     FIXME("Changing address for %p/%s!%s from %08lx to %08lx\n",
651                           sym, debugstr_w(module->module.ModuleName), sym->hash_elt.name,
652                           ((struct symt_function*)sym)->address, elf_info->elf_addr + symp->st_value);
653                 if (((struct symt_function*)sym)->size && ((struct symt_function*)sym)->size != symp->st_size)
654                     FIXME("Changing size for %p/%s!%s from %08lx to %08x\n",
655                           sym, debugstr_w(module->module.ModuleName), sym->hash_elt.name,
656                           ((struct symt_function*)sym)->size, (unsigned int)symp->st_size);
657
658                 ((struct symt_function*)sym)->address = elf_info->elf_addr + symp->st_value;
659                 ((struct symt_function*)sym)->size    = symp->st_size;
660             } else
661                 FIXME("Couldn't find %s!%s\n",
662                       debugstr_w(module->module.ModuleName), sym->hash_elt.name);
663             break;
664         case SymTagData:
665             switch (((struct symt_data*)sym)->kind)
666             {
667             case DataIsGlobal:
668             case DataIsFileStatic:
669                 if (((struct symt_data*)sym)->u.var.kind != loc_absolute ||
670                     ((struct symt_data*)sym)->u.var.offset != elf_info->elf_addr)
671                     break;
672                 symp = elf_lookup_symtab(module, symtab, sym->hash_elt.name, 
673                                          ((struct symt_data*)sym)->container);
674                 if (symp)
675                 {
676                 if (((struct symt_data*)sym)->u.var.offset != elf_info->elf_addr &&
677                     ((struct symt_data*)sym)->u.var.offset != elf_info->elf_addr + symp->st_value)
678                     FIXME("Changing address for %p/%s!%s from %08lx to %08lx\n",
679                           sym, debugstr_w(module->module.ModuleName), sym->hash_elt.name,
680                           ((struct symt_function*)sym)->address, elf_info->elf_addr + symp->st_value);
681                     ((struct symt_data*)sym)->u.var.offset = elf_info->elf_addr + symp->st_value;
682                     ((struct symt_data*)sym)->kind = (ELF32_ST_BIND(symp->st_info) == STB_LOCAL) ?
683                         DataIsFileStatic : DataIsGlobal;
684                 } else
685                     FIXME("Couldn't find %s!%s\n",
686                           debugstr_w(module->module.ModuleName), sym->hash_elt.name);
687                 break;
688             default:;
689             }
690             break;
691         default:
692             FIXME("Unsupported tag %u\n", sym->symt.tag);
693             break;
694         }
695     }
696     /* since we may have changed some addresses & sizes, mark the module to be resorted */
697     module->sortlist_valid = FALSE;
698 }
699
700 /******************************************************************
701  *              elf_load_wine_thunks
702  *
703  * creating the thunk objects for a wine native DLL
704  */
705 static int elf_new_wine_thunks(struct module* module, const struct hash_table* ht_symtab,
706                                const struct elf_thunk_area* thunks)
707 {
708     int                         j;
709     struct hash_table_iter      hti;
710     struct symtab_elt*          ste;
711     DWORD_PTR                   addr;
712     struct symt_ht*             symt;
713
714     hash_table_iter_init(ht_symtab, &hti, NULL);
715     while ((ste = hash_table_iter_up(&hti)))
716     {
717         if (ste->used) continue;
718
719         addr = module->reloc_delta + ste->symp->st_value;
720
721         j = elf_is_in_thunk_area(ste->symp->st_value, thunks);
722         if (j >= 0) /* thunk found */
723         {
724             symt_new_thunk(module, ste->compiland, ste->ht_elt.name, thunks[j].ordinal,
725                            addr, ste->symp->st_size);
726         }
727         else
728         {
729             ULONG64     ref_addr;
730             struct location loc;
731
732             symt = symt_find_nearest(module, addr);
733             if (symt && !symt_get_address(&symt->symt, &ref_addr))
734                 ref_addr = addr;
735             if (!symt || addr != ref_addr)
736             {
737                 /* creating public symbols for all the ELF symbols which haven't been
738                  * used yet (ie we have no debug information on them)
739                  * That's the case, for example, of the .spec.c files
740                  */
741                 switch (ELF32_ST_TYPE(ste->symp->st_info))
742                 {
743                 case STT_FUNC:
744                     symt_new_function(module, ste->compiland, ste->ht_elt.name,
745                                       addr, ste->symp->st_size, NULL);
746                     break;
747                 case STT_OBJECT:
748                     loc.kind = loc_absolute;
749                     loc.reg = 0;
750                     loc.offset = addr;
751                     symt_new_global_variable(module, ste->compiland, ste->ht_elt.name,
752                                              ELF32_ST_BIND(ste->symp->st_info) == STB_LOCAL,
753                                              loc, ste->symp->st_size, NULL);
754                     break;
755                 default:
756                     FIXME("Shouldn't happen\n");
757                     break;
758                 }
759                 /* FIXME: this is a hack !!!
760                  * we are adding new symbols, but as we're parsing a symbol table
761                  * (hopefully without duplicate symbols) we delay rebuilding the sorted
762                  * module table until we're done with the symbol table
763                  * Otherwise, as we intertwine symbols' add and lookup, performance
764                  * is rather bad
765                  */
766                 module->sortlist_valid = TRUE;
767             }
768         }
769     }
770     /* see comment above */
771     module->sortlist_valid = FALSE;
772     return TRUE;
773 }
774
775 /******************************************************************
776  *              elf_new_public_symbols
777  *
778  * Creates a set of public symbols from an ELF symtab
779  */
780 static int elf_new_public_symbols(struct module* module, const struct hash_table* symtab)
781 {
782     struct hash_table_iter      hti;
783     struct symtab_elt*          ste;
784
785     if (dbghelp_options & SYMOPT_NO_PUBLICS) return TRUE;
786
787     /* FIXME: we're missing the ELF entry point here */
788
789     hash_table_iter_init(symtab, &hti, NULL);
790     while ((ste = hash_table_iter_up(&hti)))
791     {
792         symt_new_public(module, ste->compiland, ste->ht_elt.name,
793                         module->reloc_delta + ste->symp->st_value,
794                         ste->symp->st_size);
795     }
796     return TRUE;
797 }
798
799 static BOOL elf_check_debug_link(const WCHAR* file, struct image_file_map* fmap, DWORD crc)
800 {
801     BOOL        ret;
802     struct elf_map_file_data    emfd;
803
804     emfd.kind = from_file;
805     emfd.u.file.filename = file;
806     if (!elf_map_file(&emfd, fmap)) return FALSE;
807     if (!(ret = crc == calc_crc32(fmap->u.elf.fd)))
808     {
809         WARN("Bad CRC for file %s (got %08x while expecting %08x)\n",
810              debugstr_w(file), calc_crc32(fmap->u.elf.fd), crc);
811         elf_unmap_file(fmap);
812     }
813     return ret;
814 }
815
816 /******************************************************************
817  *              elf_locate_debug_link
818  *
819  * Locate a filename from a .gnu_debuglink section, using the same
820  * strategy as gdb:
821  * "If the full name of the directory containing the executable is
822  * execdir, and the executable has a debug link that specifies the
823  * name debugfile, then GDB will automatically search for the
824  * debugging information file in three places:
825  *  - the directory containing the executable file (that is, it
826  *    will look for a file named `execdir/debugfile',
827  *  - a subdirectory of that directory named `.debug' (that is, the
828  *    file `execdir/.debug/debugfile', and
829  *  - a subdirectory of the global debug file directory that includes
830  *    the executable's full path, and the name from the link (that is,
831  *    the file `globaldebugdir/execdir/debugfile', where globaldebugdir
832  *    is the global debug file directory, and execdir has been turned
833  *    into a relative path)." (from GDB manual)
834  */
835 static BOOL elf_locate_debug_link(struct image_file_map* fmap, const char* filename,
836                                   const WCHAR* loaded_file, DWORD crc)
837 {
838     static const WCHAR globalDebugDirW[] = {'/','u','s','r','/','l','i','b','/','d','e','b','u','g','/'};
839     static const WCHAR dotDebugW[] = {'.','d','e','b','u','g','/'};
840     const size_t globalDebugDirLen = sizeof(globalDebugDirW) / sizeof(WCHAR);
841     size_t filename_len;
842     WCHAR* p = NULL;
843     WCHAR* slash;
844     struct image_file_map* fmap_link = NULL;
845
846     fmap_link = HeapAlloc(GetProcessHeap(), 0, sizeof(*fmap_link));
847     if (!fmap_link) return FALSE;
848
849     filename_len = MultiByteToWideChar(CP_UNIXCP, 0, filename, -1, NULL, 0);
850     p = HeapAlloc(GetProcessHeap(), 0,
851                   (globalDebugDirLen + strlenW(loaded_file) + 6 + 1 + filename_len + 1) * sizeof(WCHAR));
852     if (!p) goto found;
853
854     /* we prebuild the string with "execdir" */
855     strcpyW(p, loaded_file);
856     slash = strrchrW(p, '/');
857     if (slash == NULL) slash = p; else slash++;
858
859     /* testing execdir/filename */
860     MultiByteToWideChar(CP_UNIXCP, 0, filename, -1, slash, filename_len);
861     if (elf_check_debug_link(p, fmap_link, crc)) goto found;
862
863     /* testing execdir/.debug/filename */
864     memcpy(slash, dotDebugW, sizeof(dotDebugW));
865     MultiByteToWideChar(CP_UNIXCP, 0, filename, -1, slash + sizeof(dotDebugW) / sizeof(WCHAR), filename_len);
866     if (elf_check_debug_link(p, fmap_link, crc)) goto found;
867
868     /* testing globaldebugdir/execdir/filename */
869     memmove(p + globalDebugDirLen, p, (slash - p) * sizeof(WCHAR));
870     memcpy(p, globalDebugDirW, globalDebugDirLen * sizeof(WCHAR));
871     slash += globalDebugDirLen;
872     MultiByteToWideChar(CP_UNIXCP, 0, filename, -1, slash, filename_len);
873     if (elf_check_debug_link(p, fmap_link, crc)) goto found;
874
875     /* finally testing filename */
876     if (elf_check_debug_link(slash, fmap_link, crc)) goto found;
877
878
879     WARN("Couldn't locate or map %s\n", filename);
880     HeapFree(GetProcessHeap(), 0, p);
881     HeapFree(GetProcessHeap(), 0, fmap_link);
882     return FALSE;
883
884 found:
885     TRACE("Located debug information file %s at %s\n", filename, debugstr_w(p));
886     HeapFree(GetProcessHeap(), 0, p);
887     fmap->u.elf.alternate = fmap_link;
888     return TRUE;
889 }
890
891 /******************************************************************
892  *              elf_debuglink_parse
893  *
894  * Parses a .gnu_debuglink section and loads the debug info from
895  * the external file specified there.
896  */
897 static BOOL elf_debuglink_parse(struct image_file_map* fmap, const struct module* module,
898                                 const BYTE* debuglink)
899 {
900     /* The content of a debug link section is:
901      * 1/ a NULL terminated string, containing the file name for the
902      *    debug info
903      * 2/ padding on 4 byte boundary
904      * 3/ CRC of the linked ELF file
905      */
906     const char* dbg_link = (const char*)debuglink;
907     DWORD crc;
908
909     crc = *(const DWORD*)(dbg_link + ((DWORD_PTR)(strlen(dbg_link) + 4) & ~3));
910     return elf_locate_debug_link(fmap, dbg_link, module->module.LoadedImageName, crc);
911 }
912
913 /******************************************************************
914  *              elf_load_debug_info_from_map
915  *
916  * Loads the symbolic information from ELF module which mapping is described
917  * in fmap
918  * the module has been loaded at 'load_offset' address, so symbols' address
919  * relocation is performed.
920  * CRC is checked if fmap->with_crc is TRUE
921  * returns
922  *      0 if the file doesn't contain symbolic info (or this info cannot be
923  *      read or parsed)
924  *      1 on success
925  */
926 static BOOL elf_load_debug_info_from_map(struct module* module,
927                                          struct image_file_map* fmap,
928                                          struct pool* pool,
929                                          struct hash_table* ht_symtab)
930 {
931     BOOL                ret = FALSE, lret;
932     struct elf_thunk_area thunks[] = 
933     {
934         {"__wine_spec_import_thunks",           THUNK_ORDINAL_NOTYPE, 0, 0},    /* inter DLL calls */
935         {"__wine_spec_delayed_import_loaders",  THUNK_ORDINAL_LOAD,   0, 0},    /* delayed inter DLL calls */
936         {"__wine_spec_delayed_import_thunks",   THUNK_ORDINAL_LOAD,   0, 0},    /* delayed inter DLL calls */
937         {"__wine_delay_load",                   THUNK_ORDINAL_LOAD,   0, 0},    /* delayed inter DLL calls */
938         {"__wine_spec_thunk_text_16",           -16,                  0, 0},    /* 16 => 32 thunks */
939         {"__wine_spec_thunk_text_32",           -32,                  0, 0},    /* 32 => 16 thunks */
940         {NULL,                                  0,                    0, 0}
941     };
942
943     module->module.SymType = SymExport;
944
945     /* create a hash table for the symtab */
946     elf_hash_symtab(module, pool, ht_symtab, fmap, thunks);
947
948     if (!(dbghelp_options & SYMOPT_PUBLICS_ONLY))
949     {
950         struct image_section_map stab_sect, stabstr_sect;
951         struct image_section_map debuglink_sect;
952
953         /* if present, add the .gnu_debuglink file as an alternate to current one */
954         if (elf_find_section(fmap, ".gnu_debuglink", SHT_NULL, &debuglink_sect))
955         {
956             const BYTE* dbg_link;
957
958             dbg_link = (const BYTE*)image_map_section(&debuglink_sect);
959             if (dbg_link != IMAGE_NO_MAP)
960             {
961                 lret = elf_debuglink_parse(fmap, module, dbg_link);
962                 if (!lret)
963                     WARN("Couldn't load linked debug file for %s\n",
964                          debugstr_w(module->module.ModuleName));
965                 ret = ret || lret;
966             }
967             image_unmap_section(&debuglink_sect);
968         }
969         if (elf_find_section(fmap, ".stab", SHT_NULL, &stab_sect) &&
970             elf_find_section(fmap, ".stabstr", SHT_NULL, &stabstr_sect))
971         {
972             const char* stab;
973             const char* stabstr;
974
975             stab = image_map_section(&stab_sect);
976             stabstr = image_map_section(&stabstr_sect);
977             if (stab != IMAGE_NO_MAP && stabstr != IMAGE_NO_MAP)
978             {
979                 /* OK, now just parse all of the stabs. */
980                 lret = stabs_parse(module, module->format_info[DFI_ELF]->u.elf_info->elf_addr,
981                                    stab, image_get_map_size(&stab_sect),
982                                    stabstr, image_get_map_size(&stabstr_sect),
983                                    NULL, NULL);
984                 if (lret)
985                     /* and fill in the missing information for stabs */
986                     elf_finish_stabs_info(module, ht_symtab);
987                 else
988                     WARN("Couldn't correctly read stabs\n");
989                 ret = ret || lret;
990             }
991             image_unmap_section(&stab_sect);
992             image_unmap_section(&stabstr_sect);
993         }
994         lret = dwarf2_parse(module, module->reloc_delta, thunks, fmap);
995         ret = ret || lret;
996     }
997     if (strstrW(module->module.ModuleName, S_ElfW) ||
998         !strcmpW(module->module.ModuleName, S_WineLoaderW))
999     {
1000         /* add the thunks for native libraries */
1001         if (!(dbghelp_options & SYMOPT_PUBLICS_ONLY))
1002             elf_new_wine_thunks(module, ht_symtab, thunks);
1003     }
1004     /* add all the public symbols from symtab */
1005     if (elf_new_public_symbols(module, ht_symtab) && !ret) ret = TRUE;
1006
1007     return ret;
1008 }
1009
1010 /******************************************************************
1011  *              elf_load_debug_info
1012  *
1013  * Loads ELF debugging information from the module image file.
1014  */
1015 BOOL elf_load_debug_info(struct module* module)
1016 {
1017     BOOL                        ret = TRUE;
1018     struct pool                 pool;
1019     struct hash_table           ht_symtab;
1020     struct module_format*       modfmt;
1021
1022     if (module->type != DMT_ELF || !(modfmt = module->format_info[DFI_ELF]) || !modfmt->u.elf_info)
1023     {
1024         ERR("Bad elf module '%s'\n", debugstr_w(module->module.LoadedImageName));
1025         return FALSE;
1026     }
1027
1028     pool_init(&pool, 65536);
1029     hash_table_init(&pool, &ht_symtab, 256);
1030
1031     ret = elf_load_debug_info_from_map(module, &modfmt->u.elf_info->file_map, &pool, &ht_symtab);
1032
1033     pool_destroy(&pool);
1034     return ret;
1035 }
1036
1037 /******************************************************************
1038  *              elf_fetch_file_info
1039  *
1040  * Gathers some more information for an ELF module from a given file
1041  */
1042 BOOL elf_fetch_file_info(const WCHAR* name, DWORD_PTR* base,
1043                          DWORD* size, DWORD* checksum)
1044 {
1045     struct image_file_map fmap;
1046
1047     struct elf_map_file_data    emfd;
1048
1049     emfd.kind = from_file;
1050     emfd.u.file.filename = name;
1051     if (!elf_map_file(&emfd, &fmap)) return FALSE;
1052     if (base) *base = fmap.u.elf.elf_start;
1053     *size = fmap.u.elf.elf_size;
1054     *checksum = calc_crc32(fmap.u.elf.fd);
1055     elf_unmap_file(&fmap);
1056     return TRUE;
1057 }
1058
1059 static BOOL elf_load_file_from_fmap(struct process* pcs, const WCHAR* filename,
1060                                     struct image_file_map* fmap, unsigned long load_offset,
1061                                     unsigned long dyn_addr, struct elf_info* elf_info)
1062 {
1063     BOOL        ret = FALSE;
1064
1065     if (elf_info->flags & ELF_INFO_DEBUG_HEADER)
1066     {
1067         struct image_section_map        ism;
1068
1069         if (elf_find_section(fmap, ".dynamic", SHT_DYNAMIC, &ism))
1070         {
1071             Elf_Dyn         dyn;
1072             char*           ptr = (char*)fmap->u.elf.sect[ism.sidx].shdr.sh_addr;
1073             unsigned long   len;
1074
1075             do
1076             {
1077                 if (!ReadProcessMemory(pcs->handle, ptr, &dyn, sizeof(dyn), &len) ||
1078                     len != sizeof(dyn))
1079                     return ret;
1080                 if (dyn.d_tag == DT_DEBUG)
1081                 {
1082                     elf_info->dbg_hdr_addr = dyn.d_un.d_ptr;
1083                     if (load_offset == 0 && dyn_addr == 0) /* likely the case */
1084                         /* Assume this module (the Wine loader) has been loaded at its preferred address */
1085                         dyn_addr = ism.fmap->u.elf.sect[ism.sidx].shdr.sh_addr;
1086                     break;
1087                 }
1088                 ptr += sizeof(dyn);
1089             } while (dyn.d_tag != DT_NULL);
1090             if (dyn.d_tag == DT_NULL) return ret;
1091         }
1092         elf_end_find(fmap);
1093     }
1094
1095     if (elf_info->flags & ELF_INFO_MODULE)
1096     {
1097         struct elf_module_info *elf_module_info;
1098         struct module_format*   modfmt;
1099         struct image_section_map ism;
1100         unsigned long           modbase = load_offset;
1101
1102         if (elf_find_section(fmap, ".dynamic", SHT_DYNAMIC, &ism))
1103         {
1104             unsigned long rva_dyn = elf_get_map_rva(&ism);
1105
1106             TRACE("For module %s, got ELF (start=%lx dyn=%lx), link_map (start=%lx dyn=%lx)\n",
1107                   debugstr_w(filename), (unsigned long)fmap->u.elf.elf_start, rva_dyn,
1108                   load_offset, dyn_addr);
1109             if (dyn_addr && load_offset + rva_dyn != dyn_addr)
1110             {
1111                 WARN("\thave to relocate: %lx\n", dyn_addr - rva_dyn);
1112                 modbase = dyn_addr - rva_dyn;
1113             }
1114         } else WARN("For module %s, no .dynamic section\n", debugstr_w(filename));
1115         elf_end_find(fmap);
1116
1117         modfmt = HeapAlloc(GetProcessHeap(), 0,
1118                           sizeof(struct module_format) + sizeof(struct elf_module_info));
1119         if (!modfmt) return FALSE;
1120         elf_info->module = module_new(pcs, filename, DMT_ELF, FALSE, modbase,
1121                                       fmap->u.elf.elf_size, 0, calc_crc32(fmap->u.elf.fd));
1122         if (!elf_info->module)
1123         {
1124             HeapFree(GetProcessHeap(), 0, modfmt);
1125             return FALSE;
1126         }
1127         elf_info->module->reloc_delta = elf_info->module->module.BaseOfImage - fmap->u.elf.elf_start;
1128         elf_module_info = (void*)(modfmt + 1);
1129         elf_info->module->format_info[DFI_ELF] = modfmt;
1130         modfmt->module      = elf_info->module;
1131         modfmt->remove      = elf_module_remove;
1132         modfmt->loc_compute = NULL;
1133         modfmt->u.elf_info  = elf_module_info;
1134
1135         elf_module_info->elf_addr = load_offset;
1136
1137         elf_module_info->file_map = *fmap;
1138         elf_reset_file_map(fmap);
1139         if (dbghelp_options & SYMOPT_DEFERRED_LOADS)
1140         {
1141             elf_info->module->module.SymType = SymDeferred;
1142             ret = TRUE;
1143         }
1144         else ret = elf_load_debug_info(elf_info->module);
1145
1146         elf_module_info->elf_mark = 1;
1147         elf_module_info->elf_loader = 0;
1148     } else ret = TRUE;
1149
1150     if (elf_info->flags & ELF_INFO_NAME)
1151     {
1152         WCHAR*  ptr;
1153         ptr = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(filename) + 1) * sizeof(WCHAR));
1154         if (ptr)
1155         {
1156             strcpyW(ptr, filename);
1157             elf_info->module_name = ptr;
1158         }
1159         else ret = FALSE;
1160     }
1161
1162     return ret;
1163 }
1164
1165 /******************************************************************
1166  *              elf_load_file
1167  *
1168  * Loads the information for ELF module stored in 'filename'
1169  * the module has been loaded at 'load_offset' address
1170  * returns
1171  *      -1 if the file cannot be found/opened
1172  *      0 if the file doesn't contain symbolic info (or this info cannot be
1173  *      read or parsed)
1174  *      1 on success
1175  */
1176 static BOOL elf_load_file(struct process* pcs, const WCHAR* filename,
1177                           unsigned long load_offset, unsigned long dyn_addr,
1178                           struct elf_info* elf_info)
1179 {
1180     BOOL                        ret = FALSE;
1181     struct image_file_map       fmap;
1182     struct elf_map_file_data    emfd;
1183
1184     TRACE("Processing elf file '%s' at %08lx\n", debugstr_w(filename), load_offset);
1185
1186     emfd.kind = from_file;
1187     emfd.u.file.filename = filename;
1188     if (!elf_map_file(&emfd, &fmap)) return ret;
1189
1190     /* Next, we need to find a few of the internal ELF headers within
1191      * this thing.  We need the main executable header, and the section
1192      * table.
1193      */
1194     if (!fmap.u.elf.elf_start && !load_offset)
1195         ERR("Relocatable ELF %s, but no load address. Loading at 0x0000000\n",
1196             debugstr_w(filename));
1197
1198     ret = elf_load_file_from_fmap(pcs, filename, &fmap, load_offset, dyn_addr, elf_info);
1199
1200     elf_unmap_file(&fmap);
1201
1202     return ret;
1203 }
1204
1205 /******************************************************************
1206  *              elf_load_file_from_path
1207  * tries to load an ELF file from a set of paths (separated by ':')
1208  */
1209 static BOOL elf_load_file_from_path(HANDLE hProcess,
1210                                     const WCHAR* filename,
1211                                     unsigned long load_offset,
1212                                     unsigned long dyn_addr,
1213                                     const char* path,
1214                                     struct elf_info* elf_info)
1215 {
1216     BOOL                ret = FALSE;
1217     WCHAR               *s, *t, *fn;
1218     WCHAR*              pathW = NULL;
1219     unsigned            len;
1220
1221     if (!path) return FALSE;
1222
1223     len = MultiByteToWideChar(CP_UNIXCP, 0, path, -1, NULL, 0);
1224     pathW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
1225     if (!pathW) return FALSE;
1226     MultiByteToWideChar(CP_UNIXCP, 0, path, -1, pathW, len);
1227
1228     for (s = pathW; s && *s; s = (t) ? (t+1) : NULL)
1229     {
1230         t = strchrW(s, ':');
1231         if (t) *t = '\0';
1232         fn = HeapAlloc(GetProcessHeap(), 0, (lstrlenW(filename) + 1 + lstrlenW(s) + 1) * sizeof(WCHAR));
1233         if (!fn) break;
1234         strcpyW(fn, s);
1235         strcatW(fn, S_SlashW);
1236         strcatW(fn, filename);
1237         ret = elf_load_file(hProcess, fn, load_offset, dyn_addr, elf_info);
1238         HeapFree(GetProcessHeap(), 0, fn);
1239         if (ret) break;
1240     }
1241
1242     HeapFree(GetProcessHeap(), 0, pathW);
1243     return ret;
1244 }
1245
1246 /******************************************************************
1247  *              elf_load_file_from_dll_path
1248  *
1249  * Tries to load an ELF file from the dll path
1250  */
1251 static BOOL elf_load_file_from_dll_path(HANDLE hProcess,
1252                                         const WCHAR* filename,
1253                                         unsigned long load_offset,
1254                                         unsigned long dyn_addr,
1255                                         struct elf_info* elf_info)
1256 {
1257     BOOL ret = FALSE;
1258     unsigned int index = 0;
1259     const char *path;
1260
1261     while (!ret && (path = wine_dll_enum_load_path( index++ )))
1262     {
1263         WCHAR *name;
1264         unsigned len;
1265
1266         len = MultiByteToWideChar(CP_UNIXCP, 0, path, -1, NULL, 0);
1267
1268         name = HeapAlloc( GetProcessHeap(), 0,
1269                           (len + lstrlenW(filename) + 2) * sizeof(WCHAR) );
1270
1271         if (!name) break;
1272         MultiByteToWideChar(CP_UNIXCP, 0, path, -1, name, len);
1273         strcatW( name, S_SlashW );
1274         strcatW( name, filename );
1275         ret = elf_load_file(hProcess, name, load_offset, dyn_addr, elf_info);
1276         HeapFree( GetProcessHeap(), 0, name );
1277     }
1278     return ret;
1279 }
1280
1281 #ifdef AT_SYSINFO_EHDR
1282 /******************************************************************
1283  *              elf_search_auxv
1284  *
1285  * locate some a value from the debuggee auxiliary vector
1286  */
1287 static BOOL elf_search_auxv(const struct process* pcs, unsigned type, unsigned long* val)
1288 {
1289     char        buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME];
1290     SYMBOL_INFO*si = (SYMBOL_INFO*)buffer;
1291     void*       addr;
1292     void*       str;
1293     void*       str_max;
1294     Elf_auxv_t  auxv;
1295
1296     si->SizeOfStruct = sizeof(*si);
1297     si->MaxNameLen = MAX_SYM_NAME;
1298     if (!SymFromName(pcs->handle, "libwine.so.1!__wine_main_environ", si) ||
1299         !(addr = (void*)(DWORD_PTR)si->Address) ||
1300         !ReadProcessMemory(pcs->handle, addr, &addr, sizeof(addr), NULL) ||
1301         !addr)
1302     {
1303         FIXME("can't find symbol in module\n");
1304         return FALSE;
1305     }
1306     /* walk through envp[] */
1307     /* envp[] strings are located after the auxiliary vector, so protect the walk */
1308     str_max = (void*)(DWORD_PTR)~0L;
1309     while (ReadProcessMemory(pcs->handle, addr, &str, sizeof(str), NULL) &&
1310            (addr = (void*)((DWORD_PTR)addr + sizeof(str))) != NULL && str != NULL)
1311         str_max = min(str_max, str);
1312
1313     /* Walk through the end of envp[] array.
1314      * Actually, there can be several NULLs at the end of envp[]. This happens when an env variable is
1315      * deleted, the last entry is replaced by an extra NULL.
1316      */
1317     while (addr < str_max && ReadProcessMemory(pcs->handle, addr, &str, sizeof(str), NULL) && str == NULL)
1318         addr = (void*)((DWORD_PTR)addr + sizeof(str));
1319
1320     while (ReadProcessMemory(pcs->handle, addr, &auxv, sizeof(auxv), NULL) && auxv.a_type != AT_NULL)
1321     {
1322         if (auxv.a_type == type)
1323         {
1324             *val = auxv.a_un.a_val;
1325             return TRUE;
1326         }
1327         addr = (void*)((DWORD_PTR)addr + sizeof(auxv));
1328     }
1329
1330     return FALSE;
1331 }
1332 #endif
1333
1334 /******************************************************************
1335  *              elf_search_and_load_file
1336  *
1337  * lookup a file in standard ELF locations, and if found, load it
1338  */
1339 static BOOL elf_search_and_load_file(struct process* pcs, const WCHAR* filename,
1340                                      unsigned long load_offset, unsigned long dyn_addr,
1341                                      struct elf_info* elf_info)
1342 {
1343     BOOL                ret = FALSE;
1344     struct module*      module;
1345     static WCHAR        S_libstdcPPW[] = {'l','i','b','s','t','d','c','+','+','\0'};
1346
1347     if (filename == NULL || *filename == '\0') return FALSE;
1348     if ((module = module_is_already_loaded(pcs, filename)))
1349     {
1350         elf_info->module = module;
1351         elf_info->module->format_info[DFI_ELF]->u.elf_info->elf_mark = 1;
1352         return module->module.SymType;
1353     }
1354
1355     if (strstrW(filename, S_libstdcPPW)) return FALSE; /* We know we can't do it */
1356     ret = elf_load_file(pcs, filename, load_offset, dyn_addr, elf_info);
1357     /* if relative pathname, try some absolute base dirs */
1358     if (!ret && !strchrW(filename, '/'))
1359     {
1360         ret = elf_load_file_from_path(pcs, filename, load_offset, dyn_addr,
1361                                       getenv("PATH"), elf_info) ||
1362             elf_load_file_from_path(pcs, filename, load_offset, dyn_addr,
1363                                     getenv("LD_LIBRARY_PATH"), elf_info);
1364         if (!ret) ret = elf_load_file_from_dll_path(pcs, filename,
1365                                                     load_offset, dyn_addr, elf_info);
1366     }
1367
1368     return ret;
1369 }
1370
1371 typedef BOOL (*enum_elf_modules_cb)(const WCHAR*, unsigned long load_addr,
1372                                     unsigned long dyn_addr, BOOL is_system, void* user);
1373
1374 /******************************************************************
1375  *              elf_enum_modules_internal
1376  *
1377  * Enumerate ELF modules from a running process
1378  */
1379 static BOOL elf_enum_modules_internal(const struct process* pcs,
1380                                       const WCHAR* main_name,
1381                                       enum_elf_modules_cb cb, void* user)
1382 {
1383     struct r_debug      dbg_hdr;
1384     void*               lm_addr;
1385     struct link_map     lm;
1386     char                bufstr[256];
1387     WCHAR               bufstrW[MAX_PATH];
1388
1389     if (!pcs->dbg_hdr_addr ||
1390         !ReadProcessMemory(pcs->handle, (void*)pcs->dbg_hdr_addr,
1391                            &dbg_hdr, sizeof(dbg_hdr), NULL))
1392         return FALSE;
1393
1394     /* Now walk the linked list.  In all known ELF implementations,
1395      * the dynamic loader maintains this linked list for us.  In some
1396      * cases the first entry doesn't appear with a name, in other cases it
1397      * does.
1398      */
1399     for (lm_addr = (void*)dbg_hdr.r_map; lm_addr; lm_addr = (void*)lm.l_next)
1400     {
1401         if (!ReadProcessMemory(pcs->handle, lm_addr, &lm, sizeof(lm), NULL))
1402             return FALSE;
1403
1404         if (lm.l_prev != NULL && /* skip first entry, normally debuggee itself */
1405             lm.l_name != NULL &&
1406             ReadProcessMemory(pcs->handle, lm.l_name, bufstr, sizeof(bufstr), NULL))
1407         {
1408             bufstr[sizeof(bufstr) - 1] = '\0';
1409             MultiByteToWideChar(CP_UNIXCP, 0, bufstr, -1, bufstrW, sizeof(bufstrW) / sizeof(WCHAR));
1410             if (main_name && !bufstrW[0]) strcpyW(bufstrW, main_name);
1411             if (!cb(bufstrW, (unsigned long)lm.l_addr, (unsigned long)lm.l_ld, FALSE, user)) break;
1412         }
1413     }
1414
1415 #ifdef AT_SYSINFO_EHDR
1416     if (!lm_addr)
1417     {
1418         unsigned long ehdr_addr;
1419
1420         if (elf_search_auxv(pcs, AT_SYSINFO_EHDR, &ehdr_addr))
1421         {
1422             static const WCHAR vdsoW[] = {'[','v','d','s','o',']','.','s','o',0};
1423             cb(vdsoW, ehdr_addr, 0, TRUE, user);
1424         }
1425     }
1426 #endif
1427     return TRUE;
1428 }
1429
1430 /******************************************************************
1431  *              elf_search_loader
1432  *
1433  * Lookup in a running ELF process the loader, and sets its ELF link
1434  * address (for accessing the list of loaded .so libs) in pcs.
1435  * If flags is ELF_INFO_MODULE, the module for the loader is also
1436  * added as a module into pcs.
1437  */
1438 static BOOL elf_search_loader(struct process* pcs, struct elf_info* elf_info)
1439 {
1440     return elf_search_and_load_file(pcs, get_wine_loader_name(), 0, 0, elf_info);
1441 }
1442
1443 /******************************************************************
1444  *              elf_read_wine_loader_dbg_info
1445  *
1446  * Try to find a decent wine executable which could have loaded the debuggee
1447  */
1448 BOOL elf_read_wine_loader_dbg_info(struct process* pcs)
1449 {
1450     struct elf_info     elf_info;
1451
1452     elf_info.flags = ELF_INFO_DEBUG_HEADER | ELF_INFO_MODULE;
1453     if (!elf_search_loader(pcs, &elf_info)) return FALSE;
1454     elf_info.module->format_info[DFI_ELF]->u.elf_info->elf_loader = 1;
1455     module_set_module(elf_info.module, S_WineLoaderW);
1456     return (pcs->dbg_hdr_addr = elf_info.dbg_hdr_addr) != 0;
1457 }
1458
1459 struct elf_enum_user
1460 {
1461     enum_modules_cb     cb;
1462     void*               user;
1463 };
1464
1465 static BOOL elf_enum_modules_translate(const WCHAR* name, unsigned long load_addr,
1466                                        unsigned long dyn_addr, BOOL is_system, void* user)
1467 {
1468     struct elf_enum_user*       eeu = user;
1469     return eeu->cb(name, load_addr, eeu->user);
1470 }
1471
1472 /******************************************************************
1473  *              elf_enum_modules
1474  *
1475  * Enumerates the ELF loaded modules from a running target (hProc)
1476  * This function doesn't require that someone has called SymInitialize
1477  * on this very process.
1478  */
1479 BOOL elf_enum_modules(HANDLE hProc, enum_modules_cb cb, void* user)
1480 {
1481     struct process      pcs;
1482     struct elf_info     elf_info;
1483     BOOL                ret;
1484     struct elf_enum_user eeu;
1485
1486     memset(&pcs, 0, sizeof(pcs));
1487     pcs.handle = hProc;
1488     elf_info.flags = ELF_INFO_DEBUG_HEADER | ELF_INFO_NAME;
1489     if (!elf_search_loader(&pcs, &elf_info)) return FALSE;
1490     pcs.dbg_hdr_addr = elf_info.dbg_hdr_addr;
1491     eeu.cb = cb;
1492     eeu.user = user;
1493     ret = elf_enum_modules_internal(&pcs, elf_info.module_name, elf_enum_modules_translate, &eeu);
1494     HeapFree(GetProcessHeap(), 0, (char*)elf_info.module_name);
1495     return ret;
1496 }
1497
1498 struct elf_load
1499 {
1500     struct process*     pcs;
1501     struct elf_info     elf_info;
1502     const WCHAR*        name;
1503     BOOL                ret;
1504 };
1505
1506 /******************************************************************
1507  *              elf_load_cb
1508  *
1509  * Callback for elf_load_module, used to walk the list of loaded
1510  * modules.
1511  */
1512 static BOOL elf_load_cb(const WCHAR* name, unsigned long load_addr,
1513                         unsigned long dyn_addr, BOOL is_system, void* user)
1514 {
1515     struct elf_load*    el = user;
1516     BOOL                ret = TRUE;
1517     const WCHAR*        p;
1518
1519     if (is_system) /* virtual ELF module, created by system. handle it from memory */
1520     {
1521         struct module*                  module;
1522         struct elf_map_file_data        emfd;
1523         struct image_file_map           fmap;
1524
1525         if ((module = module_is_already_loaded(el->pcs, name)))
1526         {
1527             el->elf_info.module = module;
1528             el->elf_info.module->format_info[DFI_ELF]->u.elf_info->elf_mark = 1;
1529             return module->module.SymType;
1530         }
1531
1532         emfd.kind = from_process;
1533         emfd.u.process.handle = el->pcs->handle;
1534         emfd.u.process.load_addr = (void*)load_addr;
1535
1536         if (elf_map_file(&emfd, &fmap))
1537             el->ret = elf_load_file_from_fmap(el->pcs, name, &fmap, load_addr, 0, &el->elf_info);
1538         return TRUE;
1539     }
1540     if (el->name)
1541     {
1542         /* memcmp is needed for matches when bufstr contains also version information
1543          * el->name: libc.so, name: libc.so.6.0
1544          */
1545         p = strrchrW(name, '/');
1546         if (!p++) p = name;
1547     }
1548
1549     if (!el->name || !memcmp(p, el->name, lstrlenW(el->name) * sizeof(WCHAR)))
1550     {
1551         el->ret = elf_search_and_load_file(el->pcs, name, load_addr, dyn_addr, &el->elf_info);
1552         if (el->name) ret = FALSE;
1553     }
1554
1555     return ret;
1556 }
1557
1558 /******************************************************************
1559  *              elf_load_module
1560  *
1561  * loads an ELF module and stores it in process' module list
1562  * Also, find module real name and load address from
1563  * the real loaded modules list in pcs address space
1564  */
1565 struct module*  elf_load_module(struct process* pcs, const WCHAR* name, unsigned long addr)
1566 {
1567     struct elf_load     el;
1568
1569     TRACE("(%p %s %08lx)\n", pcs, debugstr_w(name), addr);
1570
1571     el.elf_info.flags = ELF_INFO_MODULE;
1572     el.ret = FALSE;
1573
1574     if (pcs->dbg_hdr_addr) /* we're debugging a life target */
1575     {
1576         el.pcs = pcs;
1577         /* do only the lookup from the filename, not the path (as we lookup module
1578          * name in the process' loaded module list)
1579          */
1580         el.name = strrchrW(name, '/');
1581         if (!el.name++) el.name = name;
1582         el.ret = FALSE;
1583
1584         if (!elf_enum_modules_internal(pcs, NULL, elf_load_cb, &el))
1585             return NULL;
1586     }
1587     else if (addr)
1588     {
1589         el.name = name;
1590         el.ret = elf_search_and_load_file(pcs, el.name, addr, 0, &el.elf_info);
1591     }
1592     if (!el.ret) return NULL;
1593     assert(el.elf_info.module);
1594     return el.elf_info.module;
1595 }
1596
1597 /******************************************************************
1598  *              elf_synchronize_module_list
1599  *
1600  * this functions rescans the debuggee module's list and synchronizes it with
1601  * the one from 'pcs', ie:
1602  * - if a module is in debuggee and not in pcs, it's loaded into pcs
1603  * - if a module is in pcs and not in debuggee, it's unloaded from pcs
1604  */
1605 BOOL    elf_synchronize_module_list(struct process* pcs)
1606 {
1607     struct module*      module;
1608     struct elf_load     el;
1609
1610     for (module = pcs->lmodules; module; module = module->next)
1611     {
1612         if (module->type == DMT_ELF && !module->is_virtual)
1613             module->format_info[DFI_ELF]->u.elf_info->elf_mark = 0;
1614     }
1615
1616     el.pcs = pcs;
1617     el.elf_info.flags = ELF_INFO_MODULE;
1618     el.ret = FALSE;
1619     el.name = NULL; /* fetch all modules */
1620
1621     if (!elf_enum_modules_internal(pcs, NULL, elf_load_cb, &el))
1622         return FALSE;
1623
1624     module = pcs->lmodules;
1625     while (module)
1626     {
1627         if (module->type == DMT_ELF && !module->is_virtual)
1628         {
1629             struct elf_module_info* elf_info = module->format_info[DFI_ELF]->u.elf_info;
1630
1631             if (!elf_info->elf_mark && !elf_info->elf_loader)
1632             {
1633                 module_remove(pcs, module);
1634                 /* restart all over */
1635                 module = pcs->lmodules;
1636                 continue;
1637             }
1638         }
1639         module = module->next;
1640     }
1641     return TRUE;
1642 }
1643
1644 #else   /* !__ELF__ */
1645
1646 BOOL         elf_find_section(struct image_file_map* fmap, const char* name,
1647                               unsigned sht, struct image_section_map* ism)
1648 {
1649     return FALSE;
1650 }
1651
1652 const char*  elf_map_section(struct image_section_map* ism)
1653 {
1654     return NULL;
1655 }
1656
1657 void         elf_unmap_section(struct image_section_map* ism)
1658 {}
1659
1660 unsigned     elf_get_map_size(const struct image_section_map* ism)
1661 {
1662     return 0;
1663 }
1664
1665 DWORD_PTR elf_get_map_rva(const struct image_section_map* ism)
1666 {
1667     return 0;
1668 }
1669
1670 BOOL    elf_synchronize_module_list(struct process* pcs)
1671 {
1672     return FALSE;
1673 }
1674
1675 BOOL elf_fetch_file_info(const WCHAR* name, DWORD_PTR* base,
1676                          DWORD* size, DWORD* checksum)
1677 {
1678     return FALSE;
1679 }
1680
1681 BOOL elf_read_wine_loader_dbg_info(struct process* pcs)
1682 {
1683     return FALSE;
1684 }
1685
1686 BOOL elf_enum_modules(HANDLE hProc, enum_modules_cb cb, void* user)
1687 {
1688     return FALSE;
1689 }
1690
1691 struct module*  elf_load_module(struct process* pcs, const WCHAR* name, unsigned long addr)
1692 {
1693     return NULL;
1694 }
1695
1696 BOOL elf_load_debug_info(struct module* module)
1697 {
1698     return FALSE;
1699 }
1700
1701 int elf_is_in_thunk_area(unsigned long addr,
1702                          const struct elf_thunk_area* thunks)
1703 {
1704     return -1;
1705 }
1706 #endif  /* __ELF__ */