2 * File elf.c - processing of ELF files
4 * Copyright (C) 1996, Eric Youngdale.
5 * 1999-2007 Eric Pouech
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/port.h"
25 #if defined(__svr4__) || defined(__sun)
27 /* large files are not supported by libelf */
28 #undef _FILE_OFFSET_BITS
29 #define _FILE_OFFSET_BITS 32
35 #ifdef HAVE_SYS_STAT_H
36 # include <sys/stat.h>
39 #ifdef HAVE_SYS_MMAN_H
46 #include "dbghelp_private.h"
48 #include "image_private.h"
50 #include "wine/library.h"
51 #include "wine/debug.h"
55 #define ELF_INFO_DEBUG_HEADER 0x0001
56 #define ELF_INFO_MODULE 0x0002
57 #define ELF_INFO_NAME 0x0004
59 #ifndef NT_GNU_BUILD_ID
60 #define NT_GNU_BUILD_ID 3
63 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp
);
67 unsigned flags
; /* IN one (or several) of the ELF_INFO constants */
68 DWORD_PTR dbg_hdr_addr
; /* OUT address of debug header (if ELF_INFO_DEBUG_HEADER is set) */
69 struct module
* module
; /* OUT loaded module (if ELF_INFO_MODULE is set) */
70 const WCHAR
* module_name
; /* OUT found module name (if ELF_INFO_NAME is set) */
75 struct hash_table_elt ht_elt
;
77 struct symt_compiland
* compiland
;
84 THUNK_ORDINAL ordinal
;
85 unsigned long rva_start
;
86 unsigned long rva_end
;
89 struct elf_module_info
91 unsigned long elf_addr
;
92 unsigned short elf_mark
: 1,
94 struct image_file_map file_map
;
97 /******************************************************************
100 * Maps a single section into memory from an ELF file
102 const char* elf_map_section(struct image_section_map
* ism
)
104 struct elf_file_map
* fmap
= &ism
->fmap
->u
.elf
;
106 unsigned long pgsz
= getpagesize();
107 unsigned long ofst
, size
;
109 assert(ism
->fmap
->modtype
== DMT_ELF
);
110 if (ism
->sidx
< 0 || ism
->sidx
>= ism
->fmap
->u
.elf
.elfhdr
.e_shnum
||
111 fmap
->sect
[ism
->sidx
].shdr
.sh_type
== SHT_NOBITS
)
114 if (fmap
->target_copy
)
116 return fmap
->target_copy
+ fmap
->sect
[ism
->sidx
].shdr
.sh_offset
;
118 /* align required information on page size (we assume pagesize is a power of 2) */
119 ofst
= fmap
->sect
[ism
->sidx
].shdr
.sh_offset
& ~(pgsz
- 1);
120 size
= ((fmap
->sect
[ism
->sidx
].shdr
.sh_offset
+
121 fmap
->sect
[ism
->sidx
].shdr
.sh_size
+ pgsz
- 1) & ~(pgsz
- 1)) - ofst
;
122 fmap
->sect
[ism
->sidx
].mapped
= mmap(NULL
, size
, PROT_READ
, MAP_PRIVATE
,
124 if (fmap
->sect
[ism
->sidx
].mapped
== IMAGE_NO_MAP
) return IMAGE_NO_MAP
;
125 return fmap
->sect
[ism
->sidx
].mapped
+ (fmap
->sect
[ism
->sidx
].shdr
.sh_offset
& (pgsz
- 1));
128 /******************************************************************
131 * Finds a section by name (and type) into memory from an ELF file
132 * or its alternate if any
134 BOOL
elf_find_section(struct image_file_map
* _fmap
, const char* name
,
135 unsigned sht
, struct image_section_map
* ism
)
137 struct elf_file_map
* fmap
;
142 fmap
= &_fmap
->u
.elf
;
143 if (fmap
->shstrtab
== IMAGE_NO_MAP
)
145 struct image_section_map hdr_ism
= {_fmap
, fmap
->elfhdr
.e_shstrndx
};
146 if ((fmap
->shstrtab
= elf_map_section(&hdr_ism
)) == IMAGE_NO_MAP
) break;
148 for (i
= 0; i
< fmap
->elfhdr
.e_shnum
; i
++)
150 if (strcmp(fmap
->shstrtab
+ fmap
->sect
[i
].shdr
.sh_name
, name
) == 0 &&
151 (sht
== SHT_NULL
|| sht
== fmap
->sect
[i
].shdr
.sh_type
))
158 _fmap
= fmap
->alternate
;
165 /******************************************************************
168 * Unmaps a single section from memory
170 void elf_unmap_section(struct image_section_map
* ism
)
172 struct elf_file_map
* fmap
= &ism
->fmap
->u
.elf
;
174 if (ism
->sidx
>= 0 && ism
->sidx
< fmap
->elfhdr
.e_shnum
&& !fmap
->target_copy
&&
175 fmap
->sect
[ism
->sidx
].mapped
!= IMAGE_NO_MAP
)
177 unsigned long pgsz
= getpagesize();
178 unsigned long ofst
, size
;
180 ofst
= fmap
->sect
[ism
->sidx
].shdr
.sh_offset
& ~(pgsz
- 1);
181 size
= ((fmap
->sect
[ism
->sidx
].shdr
.sh_offset
+
182 fmap
->sect
[ism
->sidx
].shdr
.sh_size
+ pgsz
- 1) & ~(pgsz
- 1)) - ofst
;
183 if (munmap((char*)fmap
->sect
[ism
->sidx
].mapped
, size
) < 0)
184 WARN("Couldn't unmap the section\n");
185 fmap
->sect
[ism
->sidx
].mapped
= IMAGE_NO_MAP
;
189 static void elf_end_find(struct image_file_map
* fmap
)
191 struct image_section_map ism
;
196 ism
.sidx
= fmap
->u
.elf
.elfhdr
.e_shstrndx
;
197 elf_unmap_section(&ism
);
198 fmap
->u
.elf
.shstrtab
= IMAGE_NO_MAP
;
199 fmap
= fmap
->u
.elf
.alternate
;
203 /******************************************************************
206 * Get the RVA of an ELF section
208 DWORD_PTR
elf_get_map_rva(const struct image_section_map
* ism
)
210 if (ism
->sidx
< 0 || ism
->sidx
>= ism
->fmap
->u
.elf
.elfhdr
.e_shnum
)
212 return ism
->fmap
->u
.elf
.sect
[ism
->sidx
].shdr
.sh_addr
- ism
->fmap
->u
.elf
.elf_start
;
215 /******************************************************************
218 * Get the size of an ELF section
220 unsigned elf_get_map_size(const struct image_section_map
* ism
)
222 if (ism
->sidx
< 0 || ism
->sidx
>= ism
->fmap
->u
.elf
.elfhdr
.e_shnum
)
224 return ism
->fmap
->u
.elf
.sect
[ism
->sidx
].shdr
.sh_size
;
227 static inline void elf_reset_file_map(struct image_file_map
* fmap
)
230 fmap
->u
.elf
.shstrtab
= IMAGE_NO_MAP
;
231 fmap
->u
.elf
.alternate
= NULL
;
232 fmap
->u
.elf
.target_copy
= NULL
;
235 struct elf_map_file_data
237 enum {from_file
, from_process
} kind
;
242 const WCHAR
* filename
;
252 static BOOL
elf_map_file_read(struct image_file_map
* fmap
, struct elf_map_file_data
* emfd
,
253 void* buf
, size_t len
, off_t off
)
260 return pread(fmap
->u
.elf
.fd
, buf
, len
, off
) == len
;
262 return ReadProcessMemory(emfd
->u
.process
.handle
,
263 (void*)((unsigned long)emfd
->u
.process
.load_addr
+ (unsigned long)off
),
264 buf
, len
, &dw
) && dw
== len
;
271 /******************************************************************
274 * Maps an ELF file into memory (and checks it's a real ELF file)
276 static BOOL
elf_map_file(struct elf_map_file_data
* emfd
, struct image_file_map
* fmap
)
278 static const BYTE elf_signature
[4] = { ELFMAG0
, ELFMAG1
, ELFMAG2
, ELFMAG3
};
282 unsigned long tmp
, page_mask
= getpagesize() - 1;
290 len
= WideCharToMultiByte(CP_UNIXCP
, 0, emfd
->u
.file
.filename
, -1, NULL
, 0, NULL
, NULL
);
291 if (!(filename
= HeapAlloc(GetProcessHeap(), 0, len
))) return FALSE
;
292 WideCharToMultiByte(CP_UNIXCP
, 0, emfd
->u
.file
.filename
, -1, filename
, len
, NULL
, NULL
);
301 elf_reset_file_map(fmap
);
303 fmap
->modtype
= DMT_ELF
;
305 fmap
->u
.elf
.target_copy
= NULL
;
310 /* check that the file exists, and that the module hasn't been loaded yet */
311 if (stat(filename
, &statbuf
) == -1 || S_ISDIR(statbuf
.st_mode
)) goto done
;
313 /* Now open the file, so that we can mmap() it. */
314 if ((fmap
->u
.elf
.fd
= open(filename
, O_RDONLY
)) == -1) goto done
;
319 if (!elf_map_file_read(fmap
, emfd
, &fmap
->u
.elf
.elfhdr
, sizeof(fmap
->u
.elf
.elfhdr
), 0))
322 /* and check for an ELF header */
323 if (memcmp(fmap
->u
.elf
.elfhdr
.e_ident
,
324 elf_signature
, sizeof(elf_signature
))) goto done
;
325 /* and check 32 vs 64 size according to current machine */
327 if (fmap
->u
.elf
.elfhdr
.e_ident
[EI_CLASS
] != ELFCLASS64
) goto done
;
329 if (fmap
->u
.elf
.elfhdr
.e_ident
[EI_CLASS
] != ELFCLASS32
) goto done
;
331 fmap
->addr_size
= fmap
->u
.elf
.elfhdr
.e_ident
[EI_CLASS
] == ELFCLASS64
? 64 : 32;
332 fmap
->u
.elf
.sect
= HeapAlloc(GetProcessHeap(), 0,
333 fmap
->u
.elf
.elfhdr
.e_shnum
* sizeof(fmap
->u
.elf
.sect
[0]));
334 if (!fmap
->u
.elf
.sect
) goto done
;
336 for (i
= 0; i
< fmap
->u
.elf
.elfhdr
.e_shnum
; i
++)
338 if (!elf_map_file_read(fmap
, emfd
, &fmap
->u
.elf
.sect
[i
].shdr
, sizeof(fmap
->u
.elf
.sect
[i
].shdr
),
339 fmap
->u
.elf
.elfhdr
.e_shoff
+ i
* sizeof(fmap
->u
.elf
.sect
[i
].shdr
)))
341 HeapFree(GetProcessHeap(), 0, fmap
->u
.elf
.sect
);
342 fmap
->u
.elf
.sect
= NULL
;
345 fmap
->u
.elf
.sect
[i
].mapped
= IMAGE_NO_MAP
;
348 /* grab size of module once loaded in memory */
349 fmap
->u
.elf
.elf_size
= 0;
350 fmap
->u
.elf
.elf_start
= ~0L;
351 for (i
= 0; i
< fmap
->u
.elf
.elfhdr
.e_phnum
; i
++)
353 if (elf_map_file_read(fmap
, emfd
, &phdr
, sizeof(phdr
),
354 fmap
->u
.elf
.elfhdr
.e_phoff
+ i
* sizeof(phdr
)) &&
355 phdr
.p_type
== PT_LOAD
)
357 tmp
= (phdr
.p_vaddr
+ phdr
.p_memsz
+ page_mask
) & ~page_mask
;
358 if (fmap
->u
.elf
.elf_size
< tmp
) fmap
->u
.elf
.elf_size
= tmp
;
359 if (phdr
.p_vaddr
< fmap
->u
.elf
.elf_start
) fmap
->u
.elf
.elf_start
= phdr
.p_vaddr
;
362 /* if non relocatable ELF, then remove fixed address from computation
363 * otherwise, all addresses are zero based and start has no effect
365 fmap
->u
.elf
.elf_size
-= fmap
->u
.elf
.elf_start
;
369 case from_file
: break;
371 if (!(fmap
->u
.elf
.target_copy
= HeapAlloc(GetProcessHeap(), 0, fmap
->u
.elf
.elf_size
)))
373 HeapFree(GetProcessHeap(), 0, fmap
->u
.elf
.sect
);
376 if (!ReadProcessMemory(emfd
->u
.process
.handle
, emfd
->u
.process
.load_addr
, fmap
->u
.elf
.target_copy
,
377 fmap
->u
.elf
.elf_size
, NULL
))
379 HeapFree(GetProcessHeap(), 0, fmap
->u
.elf
.target_copy
);
380 HeapFree(GetProcessHeap(), 0, fmap
->u
.elf
.sect
);
387 HeapFree(GetProcessHeap(), 0, filename
);
391 /******************************************************************
394 * Unmaps an ELF file from memory (previously mapped with elf_map_file)
396 static void elf_unmap_file(struct image_file_map
* fmap
)
400 if (fmap
->u
.elf
.fd
!= -1)
402 struct image_section_map ism
;
404 for (ism
.sidx
= 0; ism
.sidx
< fmap
->u
.elf
.elfhdr
.e_shnum
; ism
.sidx
++)
406 elf_unmap_section(&ism
);
408 HeapFree(GetProcessHeap(), 0, fmap
->u
.elf
.sect
);
409 close(fmap
->u
.elf
.fd
);
411 HeapFree(GetProcessHeap(), 0, fmap
->u
.elf
.target_copy
);
412 fmap
= fmap
->u
.elf
.alternate
;
416 static void elf_module_remove(struct process
* pcs
, struct module_format
* modfmt
)
418 elf_unmap_file(&modfmt
->u
.elf_info
->file_map
);
419 HeapFree(GetProcessHeap(), 0, modfmt
);
422 /******************************************************************
423 * elf_is_in_thunk_area
425 * Check whether an address lies within one of the thunk area we
428 int elf_is_in_thunk_area(unsigned long addr
,
429 const struct elf_thunk_area
* thunks
)
433 if (thunks
) for (i
= 0; thunks
[i
].symname
; i
++)
435 if (addr
>= thunks
[i
].rva_start
&& addr
< thunks
[i
].rva_end
)
441 /******************************************************************
444 * creating an internal hash table to ease use ELF symtab information lookup
446 static void elf_hash_symtab(struct module
* module
, struct pool
* pool
,
447 struct hash_table
* ht_symtab
, struct image_file_map
* fmap
,
448 struct elf_thunk_area
* thunks
)
453 struct symt_compiland
* compiland
= NULL
;
456 struct symtab_elt
* ste
;
457 struct image_section_map ism
, ism_str
;
459 if (!elf_find_section(fmap
, ".symtab", SHT_SYMTAB
, &ism
) &&
460 !elf_find_section(fmap
, ".dynsym", SHT_DYNSYM
, &ism
)) return;
461 if ((symp
= (const Elf_Sym
*)image_map_section(&ism
)) == IMAGE_NO_MAP
) return;
462 ism_str
.fmap
= ism
.fmap
;
463 ism_str
.sidx
= fmap
->u
.elf
.sect
[ism
.sidx
].shdr
.sh_link
;
464 if ((strp
= image_map_section(&ism_str
)) == IMAGE_NO_MAP
)
466 image_unmap_section(&ism
);
470 nsym
= image_get_map_size(&ism
) / sizeof(*symp
);
472 for (j
= 0; thunks
[j
].symname
; j
++)
473 thunks
[j
].rva_start
= thunks
[j
].rva_end
= 0;
475 for (i
= 0; i
< nsym
; i
++, symp
++)
477 /* Ignore certain types of entries which really aren't of that much
480 if ((ELF32_ST_TYPE(symp
->st_info
) != STT_NOTYPE
&&
481 ELF32_ST_TYPE(symp
->st_info
) != STT_FILE
&&
482 ELF32_ST_TYPE(symp
->st_info
) != STT_OBJECT
&&
483 ELF32_ST_TYPE(symp
->st_info
) != STT_FUNC
) ||
484 symp
->st_shndx
== SHN_UNDEF
)
489 symname
= strp
+ symp
->st_name
;
491 /* handle some specific symtab (that we'll throw away when done) */
492 switch (ELF32_ST_TYPE(symp
->st_info
))
496 compiland
= symt_new_compiland(module
, symp
->st_value
,
497 source_new(module
, NULL
, symname
));
502 /* we are only interested in wine markers inserted by winebuild */
503 for (j
= 0; thunks
[j
].symname
; j
++)
505 if (!strcmp(symname
, thunks
[j
].symname
))
507 thunks
[j
].rva_start
= symp
->st_value
;
508 thunks
[j
].rva_end
= symp
->st_value
+ symp
->st_size
;
515 /* FIXME: we don't need to handle them (GCC internals)
516 * Moreover, they screw up our symbol lookup :-/
518 if (symname
[0] == '.' && symname
[1] == 'L' && isdigit(symname
[2]))
521 ste
= pool_alloc(pool
, sizeof(*ste
));
522 ste
->ht_elt
.name
= symname
;
523 /* GCC emits, in some cases, a .<digit>+ suffix.
524 * This is used for static variable inside functions, so
525 * that we can have several such variables with same name in
526 * the same compilation unit
527 * We simply ignore that suffix when present (we also get rid
528 * of it in stabs parsing)
530 ptr
= symname
+ strlen(symname
) - 1;
533 while (isdigit(*ptr
) && ptr
>= symname
) ptr
--;
534 if (ptr
> symname
&& *ptr
== '.')
536 char* n
= pool_alloc(pool
, ptr
- symname
+ 1);
537 memcpy(n
, symname
, ptr
- symname
+ 1);
538 n
[ptr
- symname
] = '\0';
539 ste
->ht_elt
.name
= n
;
543 ste
->compiland
= compiland
;
545 hash_table_add(ht_symtab
, &ste
->ht_elt
);
547 /* as we added in the ht_symtab pointers to the symbols themselves,
548 * we cannot unmap yet the sections, it will be done when we're over
553 /******************************************************************
556 * lookup a symbol by name in our internal hash table for the symtab
558 static const Elf_Sym
* elf_lookup_symtab(const struct module
* module
,
559 const struct hash_table
* ht_symtab
,
560 const char* name
, const struct symt
* compiland
)
562 struct symtab_elt
* weak_result
= NULL
; /* without compiland name */
563 struct symtab_elt
* result
= NULL
;
564 struct hash_table_iter hti
;
565 struct symtab_elt
* ste
;
566 const char* compiland_name
;
567 const char* compiland_basename
;
570 /* we need weak match up (at least) when symbols of same name,
571 * defined several times in different compilation units,
572 * are merged in a single one (hence a different filename for c.u.)
576 compiland_name
= source_get(module
,
577 ((const struct symt_compiland
*)compiland
)->source
);
578 compiland_basename
= strrchr(compiland_name
, '/');
579 if (!compiland_basename
++) compiland_basename
= compiland_name
;
581 else compiland_name
= compiland_basename
= NULL
;
583 hash_table_iter_init(ht_symtab
, &hti
, name
);
584 while ((ste
= hash_table_iter_up(&hti
)))
586 if (ste
->used
|| strcmp(ste
->ht_elt
.name
, name
)) continue;
589 if ((ste
->compiland
&& !compiland_name
) || (!ste
->compiland
&& compiland_name
))
591 if (ste
->compiland
&& compiland_name
)
593 const char* filename
= source_get(module
, ste
->compiland
->source
);
594 if (strcmp(filename
, compiland_name
))
596 base
= strrchr(filename
, '/');
597 if (!base
++) base
= filename
;
598 if (strcmp(base
, compiland_basename
)) continue;
603 FIXME("Already found symbol %s (%s) in symtab %s @%08x and %s @%08x\n",
604 name
, compiland_name
,
605 source_get(module
, result
->compiland
->source
), (unsigned int)result
->symp
->st_value
,
606 source_get(module
, ste
->compiland
->source
), (unsigned int)ste
->symp
->st_value
);
614 if (!result
&& !(result
= weak_result
))
616 FIXME("Couldn't find symbol %s!%s in symtab\n",
617 debugstr_w(module
->module
.ModuleName
), name
);
623 /******************************************************************
624 * elf_finish_stabs_info
626 * - get any relevant information (address & size) from the bits we got from the
627 * stabs debugging information
629 static void elf_finish_stabs_info(struct module
* module
, const struct hash_table
* symtab
)
631 struct hash_table_iter hti
;
635 struct elf_module_info
* elf_info
= module
->format_info
[DFI_ELF
]->u
.elf_info
;
637 hash_table_iter_init(&module
->ht_symbols
, &hti
, NULL
);
638 while ((ptr
= hash_table_iter_up(&hti
)))
640 sym
= GET_ENTRY(ptr
, struct symt_ht
, hash_elt
);
641 switch (sym
->symt
.tag
)
644 if (((struct symt_function
*)sym
)->address
!= elf_info
->elf_addr
&&
645 ((struct symt_function
*)sym
)->size
)
649 symp
= elf_lookup_symtab(module
, symtab
, sym
->hash_elt
.name
,
650 ((struct symt_function
*)sym
)->container
);
653 if (((struct symt_function
*)sym
)->address
!= elf_info
->elf_addr
&&
654 ((struct symt_function
*)sym
)->address
!= elf_info
->elf_addr
+ symp
->st_value
)
655 FIXME("Changing address for %p/%s!%s from %08lx to %08lx\n",
656 sym
, debugstr_w(module
->module
.ModuleName
), sym
->hash_elt
.name
,
657 ((struct symt_function
*)sym
)->address
, elf_info
->elf_addr
+ symp
->st_value
);
658 if (((struct symt_function
*)sym
)->size
&& ((struct symt_function
*)sym
)->size
!= symp
->st_size
)
659 FIXME("Changing size for %p/%s!%s from %08lx to %08x\n",
660 sym
, debugstr_w(module
->module
.ModuleName
), sym
->hash_elt
.name
,
661 ((struct symt_function
*)sym
)->size
, (unsigned int)symp
->st_size
);
663 ((struct symt_function
*)sym
)->address
= elf_info
->elf_addr
+ symp
->st_value
;
664 ((struct symt_function
*)sym
)->size
= symp
->st_size
;
666 FIXME("Couldn't find %s!%s\n",
667 debugstr_w(module
->module
.ModuleName
), sym
->hash_elt
.name
);
670 switch (((struct symt_data
*)sym
)->kind
)
673 case DataIsFileStatic
:
674 if (((struct symt_data
*)sym
)->u
.var
.kind
!= loc_absolute
||
675 ((struct symt_data
*)sym
)->u
.var
.offset
!= elf_info
->elf_addr
)
677 symp
= elf_lookup_symtab(module
, symtab
, sym
->hash_elt
.name
,
678 ((struct symt_data
*)sym
)->container
);
681 if (((struct symt_data
*)sym
)->u
.var
.offset
!= elf_info
->elf_addr
&&
682 ((struct symt_data
*)sym
)->u
.var
.offset
!= elf_info
->elf_addr
+ symp
->st_value
)
683 FIXME("Changing address for %p/%s!%s from %08lx to %08lx\n",
684 sym
, debugstr_w(module
->module
.ModuleName
), sym
->hash_elt
.name
,
685 ((struct symt_function
*)sym
)->address
, elf_info
->elf_addr
+ symp
->st_value
);
686 ((struct symt_data
*)sym
)->u
.var
.offset
= elf_info
->elf_addr
+ symp
->st_value
;
687 ((struct symt_data
*)sym
)->kind
= (ELF32_ST_BIND(symp
->st_info
) == STB_LOCAL
) ?
688 DataIsFileStatic
: DataIsGlobal
;
690 FIXME("Couldn't find %s!%s\n",
691 debugstr_w(module
->module
.ModuleName
), sym
->hash_elt
.name
);
697 FIXME("Unsupported tag %u\n", sym
->symt
.tag
);
701 /* since we may have changed some addresses & sizes, mark the module to be resorted */
702 module
->sortlist_valid
= FALSE
;
705 /******************************************************************
706 * elf_load_wine_thunks
708 * creating the thunk objects for a wine native DLL
710 static int elf_new_wine_thunks(struct module
* module
, const struct hash_table
* ht_symtab
,
711 const struct elf_thunk_area
* thunks
)
714 struct hash_table_iter hti
;
715 struct symtab_elt
* ste
;
717 struct symt_ht
* symt
;
719 hash_table_iter_init(ht_symtab
, &hti
, NULL
);
720 while ((ste
= hash_table_iter_up(&hti
)))
722 if (ste
->used
) continue;
724 addr
= module
->reloc_delta
+ ste
->symp
->st_value
;
726 j
= elf_is_in_thunk_area(ste
->symp
->st_value
, thunks
);
727 if (j
>= 0) /* thunk found */
729 symt_new_thunk(module
, ste
->compiland
, ste
->ht_elt
.name
, thunks
[j
].ordinal
,
730 addr
, ste
->symp
->st_size
);
737 symt
= symt_find_nearest(module
, addr
);
738 if (symt
&& !symt_get_address(&symt
->symt
, &ref_addr
))
740 if (!symt
|| addr
!= ref_addr
)
742 /* creating public symbols for all the ELF symbols which haven't been
743 * used yet (ie we have no debug information on them)
744 * That's the case, for example, of the .spec.c files
746 switch (ELF32_ST_TYPE(ste
->symp
->st_info
))
749 symt_new_function(module
, ste
->compiland
, ste
->ht_elt
.name
,
750 addr
, ste
->symp
->st_size
, NULL
);
753 loc
.kind
= loc_absolute
;
756 symt_new_global_variable(module
, ste
->compiland
, ste
->ht_elt
.name
,
757 ELF32_ST_BIND(ste
->symp
->st_info
) == STB_LOCAL
,
758 loc
, ste
->symp
->st_size
, NULL
);
761 FIXME("Shouldn't happen\n");
764 /* FIXME: this is a hack !!!
765 * we are adding new symbols, but as we're parsing a symbol table
766 * (hopefully without duplicate symbols) we delay rebuilding the sorted
767 * module table until we're done with the symbol table
768 * Otherwise, as we intertwine symbols' add and lookup, performance
771 module
->sortlist_valid
= TRUE
;
775 /* see comment above */
776 module
->sortlist_valid
= FALSE
;
780 /******************************************************************
781 * elf_new_public_symbols
783 * Creates a set of public symbols from an ELF symtab
785 static int elf_new_public_symbols(struct module
* module
, const struct hash_table
* symtab
)
787 struct hash_table_iter hti
;
788 struct symtab_elt
* ste
;
790 if (dbghelp_options
& SYMOPT_NO_PUBLICS
) return TRUE
;
792 /* FIXME: we're missing the ELF entry point here */
794 hash_table_iter_init(symtab
, &hti
, NULL
);
795 while ((ste
= hash_table_iter_up(&hti
)))
797 symt_new_public(module
, ste
->compiland
, ste
->ht_elt
.name
,
798 module
->reloc_delta
+ ste
->symp
->st_value
,
804 static BOOL
elf_check_debug_link(const WCHAR
* file
, struct image_file_map
* fmap
, DWORD crc
)
807 struct elf_map_file_data emfd
;
809 emfd
.kind
= from_file
;
810 emfd
.u
.file
.filename
= file
;
811 if (!elf_map_file(&emfd
, fmap
)) return FALSE
;
812 if (!(ret
= crc
== calc_crc32(fmap
->u
.elf
.fd
)))
814 WARN("Bad CRC for file %s (got %08x while expecting %08x)\n",
815 debugstr_w(file
), calc_crc32(fmap
->u
.elf
.fd
), crc
);
816 elf_unmap_file(fmap
);
821 /******************************************************************
822 * elf_locate_debug_link
824 * Locate a filename from a .gnu_debuglink section, using the same
826 * "If the full name of the directory containing the executable is
827 * execdir, and the executable has a debug link that specifies the
828 * name debugfile, then GDB will automatically search for the
829 * debugging information file in three places:
830 * - the directory containing the executable file (that is, it
831 * will look for a file named `execdir/debugfile',
832 * - a subdirectory of that directory named `.debug' (that is, the
833 * file `execdir/.debug/debugfile', and
834 * - a subdirectory of the global debug file directory that includes
835 * the executable's full path, and the name from the link (that is,
836 * the file `globaldebugdir/execdir/debugfile', where globaldebugdir
837 * is the global debug file directory, and execdir has been turned
838 * into a relative path)." (from GDB manual)
840 static BOOL
elf_locate_debug_link(struct image_file_map
* fmap
, const char* filename
,
841 const WCHAR
* loaded_file
, DWORD crc
)
843 static const WCHAR globalDebugDirW
[] = {'/','u','s','r','/','l','i','b','/','d','e','b','u','g','/'};
844 static const WCHAR dotDebugW
[] = {'.','d','e','b','u','g','/'};
845 const size_t globalDebugDirLen
= sizeof(globalDebugDirW
) / sizeof(WCHAR
);
849 struct image_file_map
* fmap_link
= NULL
;
851 fmap_link
= HeapAlloc(GetProcessHeap(), 0, sizeof(*fmap_link
));
852 if (!fmap_link
) return FALSE
;
854 filename_len
= MultiByteToWideChar(CP_UNIXCP
, 0, filename
, -1, NULL
, 0);
855 p
= HeapAlloc(GetProcessHeap(), 0,
856 (globalDebugDirLen
+ strlenW(loaded_file
) + 6 + 1 + filename_len
+ 1) * sizeof(WCHAR
));
859 /* we prebuild the string with "execdir" */
860 strcpyW(p
, loaded_file
);
861 slash
= strrchrW(p
, '/');
862 if (slash
== NULL
) slash
= p
; else slash
++;
864 /* testing execdir/filename */
865 MultiByteToWideChar(CP_UNIXCP
, 0, filename
, -1, slash
, filename_len
);
866 if (elf_check_debug_link(p
, fmap_link
, crc
)) goto found
;
868 /* testing execdir/.debug/filename */
869 memcpy(slash
, dotDebugW
, sizeof(dotDebugW
));
870 MultiByteToWideChar(CP_UNIXCP
, 0, filename
, -1, slash
+ sizeof(dotDebugW
) / sizeof(WCHAR
), filename_len
);
871 if (elf_check_debug_link(p
, fmap_link
, crc
)) goto found
;
873 /* testing globaldebugdir/execdir/filename */
874 memmove(p
+ globalDebugDirLen
, p
, (slash
- p
) * sizeof(WCHAR
));
875 memcpy(p
, globalDebugDirW
, globalDebugDirLen
* sizeof(WCHAR
));
876 slash
+= globalDebugDirLen
;
877 MultiByteToWideChar(CP_UNIXCP
, 0, filename
, -1, slash
, filename_len
);
878 if (elf_check_debug_link(p
, fmap_link
, crc
)) goto found
;
880 /* finally testing filename */
881 if (elf_check_debug_link(slash
, fmap_link
, crc
)) goto found
;
884 WARN("Couldn't locate or map %s\n", filename
);
885 HeapFree(GetProcessHeap(), 0, p
);
886 HeapFree(GetProcessHeap(), 0, fmap_link
);
890 TRACE("Located debug information file %s at %s\n", filename
, debugstr_w(p
));
891 HeapFree(GetProcessHeap(), 0, p
);
892 fmap
->u
.elf
.alternate
= fmap_link
;
896 /******************************************************************
897 * elf_locate_build_id_target
899 * Try to find the .so file containing the debug info out of the build-id note information
901 static BOOL
elf_locate_build_id_target(struct image_file_map
* fmap
, const BYTE
* id
, unsigned idlen
)
903 static const WCHAR globalDebugDirW
[] = {'/','u','s','r','/','l','i','b','/','d','e','b','u','g','/'};
904 static const WCHAR buildidW
[] = {'.','b','u','i','l','d','-','i','d','/'};
905 static const WCHAR dotDebug0W
[] = {'.','d','e','b','u','g',0};
906 struct image_file_map
* fmap_link
= NULL
;
909 const BYTE
* idend
= id
+ idlen
;
910 struct elf_map_file_data emfd
;
912 fmap_link
= HeapAlloc(GetProcessHeap(), 0, sizeof(*fmap_link
));
913 if (!fmap_link
) return FALSE
;
915 p
= HeapAlloc(GetProcessHeap(), 0,
916 sizeof(globalDebugDirW
) + sizeof(buildidW
) +
917 (idlen
* 2 + 1) * sizeof(WCHAR
) + sizeof(dotDebug0W
));
919 memcpy(z
, globalDebugDirW
, sizeof(globalDebugDirW
));
920 z
+= sizeof(globalDebugDirW
) / sizeof(WCHAR
);
921 memcpy(z
, buildidW
, sizeof(buildidW
));
922 z
+= sizeof(buildidW
) / sizeof(WCHAR
);
926 *z
++ = "0123456789abcdef"[*id
>> 4 ];
927 *z
++ = "0123456789abcdef"[*id
& 0x0F];
934 *z
++ = "0123456789abcdef"[*id
>> 4 ];
935 *z
++ = "0123456789abcdef"[*id
& 0x0F];
938 memcpy(z
, dotDebug0W
, sizeof(dotDebug0W
));
939 TRACE("checking %s\n", wine_dbgstr_w(p
));
941 emfd
.kind
= from_file
;
942 emfd
.u
.file
.filename
= p
;
943 if (elf_map_file(&emfd
, fmap_link
))
945 struct image_section_map buildid_sect
;
946 if (elf_find_section(fmap_link
, ".note.gnu.build-id", SHT_NULL
, &buildid_sect
))
948 const uint32_t* note
;
950 note
= (const uint32_t*)image_map_section(&buildid_sect
);
951 if (note
!= IMAGE_NO_MAP
)
953 /* the usual ELF note structure: name-size desc-size type <name> <desc> */
954 if (note
[2] == NT_GNU_BUILD_ID
)
956 if (note
[1] == idlen
&&
957 !memcmp(note
+ 3 + ((note
[0] + 3) >> 2), idend
- idlen
, idlen
))
959 TRACE("Located debug information file at %s\n", debugstr_w(p
));
960 HeapFree(GetProcessHeap(), 0, p
);
961 fmap
->u
.elf
.alternate
= fmap_link
;
964 WARN("mismatch in buildid information for %s\n", wine_dbgstr_w(p
));
967 image_unmap_section(&buildid_sect
);
969 elf_unmap_file(fmap_link
);
972 TRACE("not found\n");
973 HeapFree(GetProcessHeap(), 0, p
);
974 HeapFree(GetProcessHeap(), 0, fmap_link
);
978 /******************************************************************
979 * elf_check_alternate
981 * Load alternate files for a given ELF file, looking at either .note.gnu_build-id
982 * or .gnu_debuglink sections.
984 static BOOL
elf_check_alternate(struct image_file_map
* fmap
, const struct module
* module
)
988 struct image_section_map buildid_sect
, debuglink_sect
;
990 /* if present, add the .gnu_debuglink file as an alternate to current one */
991 if (elf_find_section(fmap
, ".note.gnu.build-id", SHT_NULL
, &buildid_sect
))
993 const uint32_t* note
;
996 note
= (const uint32_t*)image_map_section(&buildid_sect
);
997 if (note
!= IMAGE_NO_MAP
)
999 /* the usual ELF note structure: name-size desc-size type <name> <desc> */
1000 if (note
[2] == NT_GNU_BUILD_ID
)
1002 ret
= elf_locate_build_id_target(fmap
, (const BYTE
*)(note
+ 3 + ((note
[0] + 3) >> 2)), note
[1]);
1005 image_unmap_section(&buildid_sect
);
1007 /* if present, add the .gnu_debuglink file as an alternate to current one */
1008 if (!ret
&& elf_find_section(fmap
, ".gnu_debuglink", SHT_NULL
, &debuglink_sect
))
1010 const char* dbg_link
;
1013 dbg_link
= (const char*)image_map_section(&debuglink_sect
);
1014 if (dbg_link
!= IMAGE_NO_MAP
)
1016 /* The content of a debug link section is:
1017 * 1/ a NULL terminated string, containing the file name for the
1019 * 2/ padding on 4 byte boundary
1020 * 3/ CRC of the linked ELF file
1022 DWORD crc
= *(const DWORD
*)(dbg_link
+ ((DWORD_PTR
)(strlen(dbg_link
) + 4) & ~3));
1023 ret
= elf_locate_debug_link(fmap
, dbg_link
, module
->module
.LoadedImageName
, crc
);
1025 WARN("Couldn't load linked debug file for %s\n",
1026 debugstr_w(module
->module
.ModuleName
));
1028 image_unmap_section(&debuglink_sect
);
1030 return found
? ret
: TRUE
;
1033 /******************************************************************
1034 * elf_load_debug_info_from_map
1036 * Loads the symbolic information from ELF module which mapping is described
1038 * the module has been loaded at 'load_offset' address, so symbols' address
1039 * relocation is performed.
1040 * CRC is checked if fmap->with_crc is TRUE
1042 * 0 if the file doesn't contain symbolic info (or this info cannot be
1046 static BOOL
elf_load_debug_info_from_map(struct module
* module
,
1047 struct image_file_map
* fmap
,
1049 struct hash_table
* ht_symtab
)
1051 BOOL ret
= FALSE
, lret
;
1052 struct elf_thunk_area thunks
[] =
1054 {"__wine_spec_import_thunks", THUNK_ORDINAL_NOTYPE
, 0, 0}, /* inter DLL calls */
1055 {"__wine_spec_delayed_import_loaders", THUNK_ORDINAL_LOAD
, 0, 0}, /* delayed inter DLL calls */
1056 {"__wine_spec_delayed_import_thunks", THUNK_ORDINAL_LOAD
, 0, 0}, /* delayed inter DLL calls */
1057 {"__wine_delay_load", THUNK_ORDINAL_LOAD
, 0, 0}, /* delayed inter DLL calls */
1058 {"__wine_spec_thunk_text_16", -16, 0, 0}, /* 16 => 32 thunks */
1059 {"__wine_spec_thunk_text_32", -32, 0, 0}, /* 32 => 16 thunks */
1063 module
->module
.SymType
= SymExport
;
1065 /* create a hash table for the symtab */
1066 elf_hash_symtab(module
, pool
, ht_symtab
, fmap
, thunks
);
1068 if (!(dbghelp_options
& SYMOPT_PUBLICS_ONLY
))
1070 struct image_section_map stab_sect
, stabstr_sect
;
1072 /* check if we need an alternate file (from debuglink or build-id) */
1073 ret
= elf_check_alternate(fmap
, module
);
1075 if (elf_find_section(fmap
, ".stab", SHT_NULL
, &stab_sect
) &&
1076 elf_find_section(fmap
, ".stabstr", SHT_NULL
, &stabstr_sect
))
1079 const char* stabstr
;
1081 stab
= image_map_section(&stab_sect
);
1082 stabstr
= image_map_section(&stabstr_sect
);
1083 if (stab
!= IMAGE_NO_MAP
&& stabstr
!= IMAGE_NO_MAP
)
1085 /* OK, now just parse all of the stabs. */
1086 lret
= stabs_parse(module
, module
->format_info
[DFI_ELF
]->u
.elf_info
->elf_addr
,
1087 stab
, image_get_map_size(&stab_sect
),
1088 stabstr
, image_get_map_size(&stabstr_sect
),
1091 /* and fill in the missing information for stabs */
1092 elf_finish_stabs_info(module
, ht_symtab
);
1094 WARN("Couldn't correctly read stabs\n");
1097 image_unmap_section(&stab_sect
);
1098 image_unmap_section(&stabstr_sect
);
1100 lret
= dwarf2_parse(module
, module
->reloc_delta
, thunks
, fmap
);
1103 if (strstrW(module
->module
.ModuleName
, S_ElfW
) ||
1104 !strcmpW(module
->module
.ModuleName
, S_WineLoaderW
))
1106 /* add the thunks for native libraries */
1107 if (!(dbghelp_options
& SYMOPT_PUBLICS_ONLY
))
1108 elf_new_wine_thunks(module
, ht_symtab
, thunks
);
1110 /* add all the public symbols from symtab */
1111 if (elf_new_public_symbols(module
, ht_symtab
) && !ret
) ret
= TRUE
;
1116 /******************************************************************
1117 * elf_load_debug_info
1119 * Loads ELF debugging information from the module image file.
1121 BOOL
elf_load_debug_info(struct module
* module
)
1125 struct hash_table ht_symtab
;
1126 struct module_format
* modfmt
;
1128 if (module
->type
!= DMT_ELF
|| !(modfmt
= module
->format_info
[DFI_ELF
]) || !modfmt
->u
.elf_info
)
1130 ERR("Bad elf module '%s'\n", debugstr_w(module
->module
.LoadedImageName
));
1134 pool_init(&pool
, 65536);
1135 hash_table_init(&pool
, &ht_symtab
, 256);
1137 ret
= elf_load_debug_info_from_map(module
, &modfmt
->u
.elf_info
->file_map
, &pool
, &ht_symtab
);
1139 pool_destroy(&pool
);
1143 /******************************************************************
1144 * elf_fetch_file_info
1146 * Gathers some more information for an ELF module from a given file
1148 BOOL
elf_fetch_file_info(const WCHAR
* name
, DWORD_PTR
* base
,
1149 DWORD
* size
, DWORD
* checksum
)
1151 struct image_file_map fmap
;
1153 struct elf_map_file_data emfd
;
1155 emfd
.kind
= from_file
;
1156 emfd
.u
.file
.filename
= name
;
1157 if (!elf_map_file(&emfd
, &fmap
)) return FALSE
;
1158 if (base
) *base
= fmap
.u
.elf
.elf_start
;
1159 *size
= fmap
.u
.elf
.elf_size
;
1160 *checksum
= calc_crc32(fmap
.u
.elf
.fd
);
1161 elf_unmap_file(&fmap
);
1165 static BOOL
elf_load_file_from_fmap(struct process
* pcs
, const WCHAR
* filename
,
1166 struct image_file_map
* fmap
, unsigned long load_offset
,
1167 unsigned long dyn_addr
, struct elf_info
* elf_info
)
1171 if (elf_info
->flags
& ELF_INFO_DEBUG_HEADER
)
1173 struct image_section_map ism
;
1175 if (elf_find_section(fmap
, ".dynamic", SHT_DYNAMIC
, &ism
))
1178 char* ptr
= (char*)fmap
->u
.elf
.sect
[ism
.sidx
].shdr
.sh_addr
;
1183 if (!ReadProcessMemory(pcs
->handle
, ptr
, &dyn
, sizeof(dyn
), &len
) ||
1186 if (dyn
.d_tag
== DT_DEBUG
)
1188 elf_info
->dbg_hdr_addr
= dyn
.d_un
.d_ptr
;
1189 if (load_offset
== 0 && dyn_addr
== 0) /* likely the case */
1190 /* Assume this module (the Wine loader) has been loaded at its preferred address */
1191 dyn_addr
= ism
.fmap
->u
.elf
.sect
[ism
.sidx
].shdr
.sh_addr
;
1195 } while (dyn
.d_tag
!= DT_NULL
);
1196 if (dyn
.d_tag
== DT_NULL
) return ret
;
1201 if (elf_info
->flags
& ELF_INFO_MODULE
)
1203 struct elf_module_info
*elf_module_info
;
1204 struct module_format
* modfmt
;
1205 struct image_section_map ism
;
1206 unsigned long modbase
= load_offset
;
1208 if (elf_find_section(fmap
, ".dynamic", SHT_DYNAMIC
, &ism
))
1210 unsigned long rva_dyn
= elf_get_map_rva(&ism
);
1212 TRACE("For module %s, got ELF (start=%lx dyn=%lx), link_map (start=%lx dyn=%lx)\n",
1213 debugstr_w(filename
), (unsigned long)fmap
->u
.elf
.elf_start
, rva_dyn
,
1214 load_offset
, dyn_addr
);
1215 if (dyn_addr
&& load_offset
+ rva_dyn
!= dyn_addr
)
1217 WARN("\thave to relocate: %lx\n", dyn_addr
- rva_dyn
);
1218 modbase
= dyn_addr
- rva_dyn
;
1220 } else WARN("For module %s, no .dynamic section\n", debugstr_w(filename
));
1223 modfmt
= HeapAlloc(GetProcessHeap(), 0,
1224 sizeof(struct module_format
) + sizeof(struct elf_module_info
));
1225 if (!modfmt
) return FALSE
;
1226 elf_info
->module
= module_new(pcs
, filename
, DMT_ELF
, FALSE
, modbase
,
1227 fmap
->u
.elf
.elf_size
, 0, calc_crc32(fmap
->u
.elf
.fd
));
1228 if (!elf_info
->module
)
1230 HeapFree(GetProcessHeap(), 0, modfmt
);
1233 elf_info
->module
->reloc_delta
= elf_info
->module
->module
.BaseOfImage
- fmap
->u
.elf
.elf_start
;
1234 elf_module_info
= (void*)(modfmt
+ 1);
1235 elf_info
->module
->format_info
[DFI_ELF
] = modfmt
;
1236 modfmt
->module
= elf_info
->module
;
1237 modfmt
->remove
= elf_module_remove
;
1238 modfmt
->loc_compute
= NULL
;
1239 modfmt
->u
.elf_info
= elf_module_info
;
1241 elf_module_info
->elf_addr
= load_offset
;
1243 elf_module_info
->file_map
= *fmap
;
1244 elf_reset_file_map(fmap
);
1245 if (dbghelp_options
& SYMOPT_DEFERRED_LOADS
)
1247 elf_info
->module
->module
.SymType
= SymDeferred
;
1250 else ret
= elf_load_debug_info(elf_info
->module
);
1252 elf_module_info
->elf_mark
= 1;
1253 elf_module_info
->elf_loader
= 0;
1256 if (elf_info
->flags
& ELF_INFO_NAME
)
1259 ptr
= HeapAlloc(GetProcessHeap(), 0, (lstrlenW(filename
) + 1) * sizeof(WCHAR
));
1262 strcpyW(ptr
, filename
);
1263 elf_info
->module_name
= ptr
;
1271 /******************************************************************
1274 * Loads the information for ELF module stored in 'filename'
1275 * the module has been loaded at 'load_offset' address
1277 * -1 if the file cannot be found/opened
1278 * 0 if the file doesn't contain symbolic info (or this info cannot be
1282 static BOOL
elf_load_file(struct process
* pcs
, const WCHAR
* filename
,
1283 unsigned long load_offset
, unsigned long dyn_addr
,
1284 struct elf_info
* elf_info
)
1287 struct image_file_map fmap
;
1288 struct elf_map_file_data emfd
;
1290 TRACE("Processing elf file '%s' at %08lx\n", debugstr_w(filename
), load_offset
);
1292 emfd
.kind
= from_file
;
1293 emfd
.u
.file
.filename
= filename
;
1294 if (!elf_map_file(&emfd
, &fmap
)) return ret
;
1296 /* Next, we need to find a few of the internal ELF headers within
1297 * this thing. We need the main executable header, and the section
1300 if (!fmap
.u
.elf
.elf_start
&& !load_offset
)
1301 ERR("Relocatable ELF %s, but no load address. Loading at 0x0000000\n",
1302 debugstr_w(filename
));
1304 ret
= elf_load_file_from_fmap(pcs
, filename
, &fmap
, load_offset
, dyn_addr
, elf_info
);
1306 elf_unmap_file(&fmap
);
1311 /******************************************************************
1312 * elf_load_file_from_path
1313 * tries to load an ELF file from a set of paths (separated by ':')
1315 static BOOL
elf_load_file_from_path(HANDLE hProcess
,
1316 const WCHAR
* filename
,
1317 unsigned long load_offset
,
1318 unsigned long dyn_addr
,
1320 struct elf_info
* elf_info
)
1324 WCHAR
* pathW
= NULL
;
1327 if (!path
) return FALSE
;
1329 len
= MultiByteToWideChar(CP_UNIXCP
, 0, path
, -1, NULL
, 0);
1330 pathW
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
1331 if (!pathW
) return FALSE
;
1332 MultiByteToWideChar(CP_UNIXCP
, 0, path
, -1, pathW
, len
);
1334 for (s
= pathW
; s
&& *s
; s
= (t
) ? (t
+1) : NULL
)
1336 t
= strchrW(s
, ':');
1338 fn
= HeapAlloc(GetProcessHeap(), 0, (lstrlenW(filename
) + 1 + lstrlenW(s
) + 1) * sizeof(WCHAR
));
1341 strcatW(fn
, S_SlashW
);
1342 strcatW(fn
, filename
);
1343 ret
= elf_load_file(hProcess
, fn
, load_offset
, dyn_addr
, elf_info
);
1344 HeapFree(GetProcessHeap(), 0, fn
);
1348 HeapFree(GetProcessHeap(), 0, pathW
);
1352 /******************************************************************
1353 * elf_load_file_from_dll_path
1355 * Tries to load an ELF file from the dll path
1357 static BOOL
elf_load_file_from_dll_path(HANDLE hProcess
,
1358 const WCHAR
* filename
,
1359 unsigned long load_offset
,
1360 unsigned long dyn_addr
,
1361 struct elf_info
* elf_info
)
1364 unsigned int index
= 0;
1367 while (!ret
&& (path
= wine_dll_enum_load_path( index
++ )))
1372 len
= MultiByteToWideChar(CP_UNIXCP
, 0, path
, -1, NULL
, 0);
1374 name
= HeapAlloc( GetProcessHeap(), 0,
1375 (len
+ lstrlenW(filename
) + 2) * sizeof(WCHAR
) );
1378 MultiByteToWideChar(CP_UNIXCP
, 0, path
, -1, name
, len
);
1379 strcatW( name
, S_SlashW
);
1380 strcatW( name
, filename
);
1381 ret
= elf_load_file(hProcess
, name
, load_offset
, dyn_addr
, elf_info
);
1382 HeapFree( GetProcessHeap(), 0, name
);
1387 #ifdef AT_SYSINFO_EHDR
1388 /******************************************************************
1391 * locate some a value from the debuggee auxiliary vector
1393 static BOOL
elf_search_auxv(const struct process
* pcs
, unsigned type
, unsigned long* val
)
1395 char buffer
[sizeof(SYMBOL_INFO
) + MAX_SYM_NAME
];
1396 SYMBOL_INFO
*si
= (SYMBOL_INFO
*)buffer
;
1402 si
->SizeOfStruct
= sizeof(*si
);
1403 si
->MaxNameLen
= MAX_SYM_NAME
;
1404 if (!SymFromName(pcs
->handle
, "libwine.so.1!__wine_main_environ", si
) ||
1405 !(addr
= (void*)(DWORD_PTR
)si
->Address
) ||
1406 !ReadProcessMemory(pcs
->handle
, addr
, &addr
, sizeof(addr
), NULL
) ||
1409 FIXME("can't find symbol in module\n");
1412 /* walk through envp[] */
1413 /* envp[] strings are located after the auxiliary vector, so protect the walk */
1414 str_max
= (void*)(DWORD_PTR
)~0L;
1415 while (ReadProcessMemory(pcs
->handle
, addr
, &str
, sizeof(str
), NULL
) &&
1416 (addr
= (void*)((DWORD_PTR
)addr
+ sizeof(str
))) != NULL
&& str
!= NULL
)
1417 str_max
= min(str_max
, str
);
1419 /* Walk through the end of envp[] array.
1420 * Actually, there can be several NULLs at the end of envp[]. This happens when an env variable is
1421 * deleted, the last entry is replaced by an extra NULL.
1423 while (addr
< str_max
&& ReadProcessMemory(pcs
->handle
, addr
, &str
, sizeof(str
), NULL
) && str
== NULL
)
1424 addr
= (void*)((DWORD_PTR
)addr
+ sizeof(str
));
1426 while (ReadProcessMemory(pcs
->handle
, addr
, &auxv
, sizeof(auxv
), NULL
) && auxv
.a_type
!= AT_NULL
)
1428 if (auxv
.a_type
== type
)
1430 *val
= auxv
.a_un
.a_val
;
1433 addr
= (void*)((DWORD_PTR
)addr
+ sizeof(auxv
));
1440 /******************************************************************
1441 * elf_search_and_load_file
1443 * lookup a file in standard ELF locations, and if found, load it
1445 static BOOL
elf_search_and_load_file(struct process
* pcs
, const WCHAR
* filename
,
1446 unsigned long load_offset
, unsigned long dyn_addr
,
1447 struct elf_info
* elf_info
)
1450 struct module
* module
;
1451 static WCHAR S_libstdcPPW
[] = {'l','i','b','s','t','d','c','+','+','\0'};
1453 if (filename
== NULL
|| *filename
== '\0') return FALSE
;
1454 if ((module
= module_is_already_loaded(pcs
, filename
)))
1456 elf_info
->module
= module
;
1457 elf_info
->module
->format_info
[DFI_ELF
]->u
.elf_info
->elf_mark
= 1;
1458 return module
->module
.SymType
;
1461 if (strstrW(filename
, S_libstdcPPW
)) return FALSE
; /* We know we can't do it */
1462 ret
= elf_load_file(pcs
, filename
, load_offset
, dyn_addr
, elf_info
);
1463 /* if relative pathname, try some absolute base dirs */
1464 if (!ret
&& !strchrW(filename
, '/'))
1466 ret
= elf_load_file_from_path(pcs
, filename
, load_offset
, dyn_addr
,
1467 getenv("PATH"), elf_info
) ||
1468 elf_load_file_from_path(pcs
, filename
, load_offset
, dyn_addr
,
1469 getenv("LD_LIBRARY_PATH"), elf_info
);
1470 if (!ret
) ret
= elf_load_file_from_dll_path(pcs
, filename
,
1471 load_offset
, dyn_addr
, elf_info
);
1477 typedef BOOL (*enum_elf_modules_cb
)(const WCHAR
*, unsigned long load_addr
,
1478 unsigned long dyn_addr
, BOOL is_system
, void* user
);
1480 /******************************************************************
1481 * elf_enum_modules_internal
1483 * Enumerate ELF modules from a running process
1485 static BOOL
elf_enum_modules_internal(const struct process
* pcs
,
1486 const WCHAR
* main_name
,
1487 enum_elf_modules_cb cb
, void* user
)
1489 struct r_debug dbg_hdr
;
1493 WCHAR bufstrW
[MAX_PATH
];
1495 if (!pcs
->dbg_hdr_addr
||
1496 !ReadProcessMemory(pcs
->handle
, (void*)pcs
->dbg_hdr_addr
,
1497 &dbg_hdr
, sizeof(dbg_hdr
), NULL
))
1500 /* Now walk the linked list. In all known ELF implementations,
1501 * the dynamic loader maintains this linked list for us. In some
1502 * cases the first entry doesn't appear with a name, in other cases it
1505 for (lm_addr
= (void*)dbg_hdr
.r_map
; lm_addr
; lm_addr
= (void*)lm
.l_next
)
1507 if (!ReadProcessMemory(pcs
->handle
, lm_addr
, &lm
, sizeof(lm
), NULL
))
1510 if (lm
.l_prev
!= NULL
&& /* skip first entry, normally debuggee itself */
1511 lm
.l_name
!= NULL
&&
1512 ReadProcessMemory(pcs
->handle
, lm
.l_name
, bufstr
, sizeof(bufstr
), NULL
))
1514 bufstr
[sizeof(bufstr
) - 1] = '\0';
1515 MultiByteToWideChar(CP_UNIXCP
, 0, bufstr
, -1, bufstrW
, sizeof(bufstrW
) / sizeof(WCHAR
));
1516 if (main_name
&& !bufstrW
[0]) strcpyW(bufstrW
, main_name
);
1517 if (!cb(bufstrW
, (unsigned long)lm
.l_addr
, (unsigned long)lm
.l_ld
, FALSE
, user
)) break;
1521 #ifdef AT_SYSINFO_EHDR
1524 unsigned long ehdr_addr
;
1526 if (elf_search_auxv(pcs
, AT_SYSINFO_EHDR
, &ehdr_addr
))
1528 static const WCHAR vdsoW
[] = {'[','v','d','s','o',']','.','s','o',0};
1529 cb(vdsoW
, ehdr_addr
, 0, TRUE
, user
);
1536 /******************************************************************
1539 * Lookup in a running ELF process the loader, and sets its ELF link
1540 * address (for accessing the list of loaded .so libs) in pcs.
1541 * If flags is ELF_INFO_MODULE, the module for the loader is also
1542 * added as a module into pcs.
1544 static BOOL
elf_search_loader(struct process
* pcs
, struct elf_info
* elf_info
)
1546 return elf_search_and_load_file(pcs
, get_wine_loader_name(), 0, 0, elf_info
);
1549 /******************************************************************
1550 * elf_read_wine_loader_dbg_info
1552 * Try to find a decent wine executable which could have loaded the debuggee
1554 BOOL
elf_read_wine_loader_dbg_info(struct process
* pcs
)
1556 struct elf_info elf_info
;
1558 elf_info
.flags
= ELF_INFO_DEBUG_HEADER
| ELF_INFO_MODULE
;
1559 if (!elf_search_loader(pcs
, &elf_info
)) return FALSE
;
1560 elf_info
.module
->format_info
[DFI_ELF
]->u
.elf_info
->elf_loader
= 1;
1561 module_set_module(elf_info
.module
, S_WineLoaderW
);
1562 return (pcs
->dbg_hdr_addr
= elf_info
.dbg_hdr_addr
) != 0;
1565 struct elf_enum_user
1571 static BOOL
elf_enum_modules_translate(const WCHAR
* name
, unsigned long load_addr
,
1572 unsigned long dyn_addr
, BOOL is_system
, void* user
)
1574 struct elf_enum_user
* eeu
= user
;
1575 return eeu
->cb(name
, load_addr
, eeu
->user
);
1578 /******************************************************************
1581 * Enumerates the ELF loaded modules from a running target (hProc)
1582 * This function doesn't require that someone has called SymInitialize
1583 * on this very process.
1585 BOOL
elf_enum_modules(HANDLE hProc
, enum_modules_cb cb
, void* user
)
1588 struct elf_info elf_info
;
1590 struct elf_enum_user eeu
;
1592 memset(&pcs
, 0, sizeof(pcs
));
1594 elf_info
.flags
= ELF_INFO_DEBUG_HEADER
| ELF_INFO_NAME
;
1595 if (!elf_search_loader(&pcs
, &elf_info
)) return FALSE
;
1596 pcs
.dbg_hdr_addr
= elf_info
.dbg_hdr_addr
;
1599 ret
= elf_enum_modules_internal(&pcs
, elf_info
.module_name
, elf_enum_modules_translate
, &eeu
);
1600 HeapFree(GetProcessHeap(), 0, (char*)elf_info
.module_name
);
1606 struct process
* pcs
;
1607 struct elf_info elf_info
;
1612 /******************************************************************
1615 * Callback for elf_load_module, used to walk the list of loaded
1618 static BOOL
elf_load_cb(const WCHAR
* name
, unsigned long load_addr
,
1619 unsigned long dyn_addr
, BOOL is_system
, void* user
)
1621 struct elf_load
* el
= user
;
1625 if (is_system
) /* virtual ELF module, created by system. handle it from memory */
1627 struct module
* module
;
1628 struct elf_map_file_data emfd
;
1629 struct image_file_map fmap
;
1631 if ((module
= module_is_already_loaded(el
->pcs
, name
)))
1633 el
->elf_info
.module
= module
;
1634 el
->elf_info
.module
->format_info
[DFI_ELF
]->u
.elf_info
->elf_mark
= 1;
1635 return module
->module
.SymType
;
1638 emfd
.kind
= from_process
;
1639 emfd
.u
.process
.handle
= el
->pcs
->handle
;
1640 emfd
.u
.process
.load_addr
= (void*)load_addr
;
1642 if (elf_map_file(&emfd
, &fmap
))
1643 el
->ret
= elf_load_file_from_fmap(el
->pcs
, name
, &fmap
, load_addr
, 0, &el
->elf_info
);
1648 /* memcmp is needed for matches when bufstr contains also version information
1649 * el->name: libc.so, name: libc.so.6.0
1651 p
= strrchrW(name
, '/');
1655 if (!el
->name
|| !memcmp(p
, el
->name
, lstrlenW(el
->name
) * sizeof(WCHAR
)))
1657 el
->ret
= elf_search_and_load_file(el
->pcs
, name
, load_addr
, dyn_addr
, &el
->elf_info
);
1658 if (el
->name
) ret
= FALSE
;
1664 /******************************************************************
1667 * loads an ELF module and stores it in process' module list
1668 * Also, find module real name and load address from
1669 * the real loaded modules list in pcs address space
1671 struct module
* elf_load_module(struct process
* pcs
, const WCHAR
* name
, unsigned long addr
)
1675 TRACE("(%p %s %08lx)\n", pcs
, debugstr_w(name
), addr
);
1677 el
.elf_info
.flags
= ELF_INFO_MODULE
;
1680 if (pcs
->dbg_hdr_addr
) /* we're debugging a life target */
1683 /* do only the lookup from the filename, not the path (as we lookup module
1684 * name in the process' loaded module list)
1686 el
.name
= strrchrW(name
, '/');
1687 if (!el
.name
++) el
.name
= name
;
1690 if (!elf_enum_modules_internal(pcs
, NULL
, elf_load_cb
, &el
))
1696 el
.ret
= elf_search_and_load_file(pcs
, el
.name
, addr
, 0, &el
.elf_info
);
1698 if (!el
.ret
) return NULL
;
1699 assert(el
.elf_info
.module
);
1700 return el
.elf_info
.module
;
1703 /******************************************************************
1704 * elf_synchronize_module_list
1706 * this functions rescans the debuggee module's list and synchronizes it with
1707 * the one from 'pcs', ie:
1708 * - if a module is in debuggee and not in pcs, it's loaded into pcs
1709 * - if a module is in pcs and not in debuggee, it's unloaded from pcs
1711 BOOL
elf_synchronize_module_list(struct process
* pcs
)
1713 struct module
* module
;
1716 for (module
= pcs
->lmodules
; module
; module
= module
->next
)
1718 if (module
->type
== DMT_ELF
&& !module
->is_virtual
)
1719 module
->format_info
[DFI_ELF
]->u
.elf_info
->elf_mark
= 0;
1723 el
.elf_info
.flags
= ELF_INFO_MODULE
;
1725 el
.name
= NULL
; /* fetch all modules */
1727 if (!elf_enum_modules_internal(pcs
, NULL
, elf_load_cb
, &el
))
1730 module
= pcs
->lmodules
;
1733 if (module
->type
== DMT_ELF
&& !module
->is_virtual
)
1735 struct elf_module_info
* elf_info
= module
->format_info
[DFI_ELF
]->u
.elf_info
;
1737 if (!elf_info
->elf_mark
&& !elf_info
->elf_loader
)
1739 module_remove(pcs
, module
);
1740 /* restart all over */
1741 module
= pcs
->lmodules
;
1745 module
= module
->next
;
1750 #else /* !__ELF__ */
1752 BOOL
elf_find_section(struct image_file_map
* fmap
, const char* name
,
1753 unsigned sht
, struct image_section_map
* ism
)
1758 const char* elf_map_section(struct image_section_map
* ism
)
1763 void elf_unmap_section(struct image_section_map
* ism
)
1766 unsigned elf_get_map_size(const struct image_section_map
* ism
)
1771 DWORD_PTR
elf_get_map_rva(const struct image_section_map
* ism
)
1776 BOOL
elf_synchronize_module_list(struct process
* pcs
)
1781 BOOL
elf_fetch_file_info(const WCHAR
* name
, DWORD_PTR
* base
,
1782 DWORD
* size
, DWORD
* checksum
)
1787 BOOL
elf_read_wine_loader_dbg_info(struct process
* pcs
)
1792 BOOL
elf_enum_modules(HANDLE hProc
, enum_modules_cb cb
, void* user
)
1797 struct module
* elf_load_module(struct process
* pcs
, const WCHAR
* name
, unsigned long addr
)
1802 BOOL
elf_load_debug_info(struct module
* module
)
1807 int elf_is_in_thunk_area(unsigned long addr
,
1808 const struct elf_thunk_area
* thunks
)
1812 #endif /* __ELF__ */