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 #define PATH_MAX MAX_PATH
49 #include "dbghelp_private.h"
51 #include "image_private.h"
53 #include "wine/library.h"
54 #include "wine/debug.h"
58 #define ELF_INFO_DEBUG_HEADER 0x0001
59 #define ELF_INFO_MODULE 0x0002
60 #define ELF_INFO_NAME 0x0004
62 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp
);
66 unsigned flags
; /* IN one (or several) of the ELF_INFO constants */
67 DWORD_PTR dbg_hdr_addr
; /* OUT address of debug header (if ELF_INFO_DEBUG_HEADER is set) */
68 struct module
* module
; /* OUT loaded module (if ELF_INFO_MODULE is set) */
69 const WCHAR
* module_name
; /* OUT found module name (if ELF_INFO_NAME is set) */
74 struct hash_table_elt ht_elt
;
76 struct symt_compiland
* compiland
;
83 THUNK_ORDINAL ordinal
;
84 unsigned long rva_start
;
85 unsigned long rva_end
;
88 struct elf_module_info
90 unsigned long elf_addr
;
91 unsigned short elf_mark
: 1,
93 struct image_file_map file_map
;
96 /******************************************************************
99 * Maps a single section into memory from an ELF file
101 const char* elf_map_section(struct image_section_map
* ism
)
103 struct elf_file_map
* fmap
= &ism
->fmap
->u
.elf
;
105 unsigned long pgsz
= getpagesize();
106 unsigned long ofst
, size
;
108 assert(ism
->fmap
->modtype
== DMT_ELF
);
109 if (ism
->sidx
< 0 || ism
->sidx
>= ism
->fmap
->u
.elf
.elfhdr
.e_shnum
||
110 fmap
->sect
[ism
->sidx
].shdr
.sh_type
== SHT_NOBITS
)
113 if (fmap
->target_copy
)
115 return fmap
->target_copy
+ fmap
->sect
[ism
->sidx
].shdr
.sh_offset
;
117 /* align required information on page size (we assume pagesize is a power of 2) */
118 ofst
= fmap
->sect
[ism
->sidx
].shdr
.sh_offset
& ~(pgsz
- 1);
119 size
= ((fmap
->sect
[ism
->sidx
].shdr
.sh_offset
+
120 fmap
->sect
[ism
->sidx
].shdr
.sh_size
+ pgsz
- 1) & ~(pgsz
- 1)) - ofst
;
121 fmap
->sect
[ism
->sidx
].mapped
= mmap(NULL
, size
, PROT_READ
, MAP_PRIVATE
,
123 if (fmap
->sect
[ism
->sidx
].mapped
== IMAGE_NO_MAP
) return IMAGE_NO_MAP
;
124 return fmap
->sect
[ism
->sidx
].mapped
+ (fmap
->sect
[ism
->sidx
].shdr
.sh_offset
& (pgsz
- 1));
127 /******************************************************************
130 * Finds a section by name (and type) into memory from an ELF file
131 * or its alternate if any
133 BOOL
elf_find_section(struct image_file_map
* _fmap
, const char* name
,
134 unsigned sht
, struct image_section_map
* ism
)
136 struct elf_file_map
* fmap
;
141 fmap
= &_fmap
->u
.elf
;
142 if (fmap
->shstrtab
== IMAGE_NO_MAP
)
144 struct image_section_map hdr_ism
= {_fmap
, fmap
->elfhdr
.e_shstrndx
};
145 if ((fmap
->shstrtab
= elf_map_section(&hdr_ism
)) == IMAGE_NO_MAP
) break;
147 for (i
= 0; i
< fmap
->elfhdr
.e_shnum
; i
++)
149 if (strcmp(fmap
->shstrtab
+ fmap
->sect
[i
].shdr
.sh_name
, name
) == 0 &&
150 (sht
== SHT_NULL
|| sht
== fmap
->sect
[i
].shdr
.sh_type
))
157 _fmap
= fmap
->alternate
;
164 /******************************************************************
167 * Unmaps a single section from memory
169 void elf_unmap_section(struct image_section_map
* ism
)
171 struct elf_file_map
* fmap
= &ism
->fmap
->u
.elf
;
173 if (ism
->sidx
>= 0 && ism
->sidx
< fmap
->elfhdr
.e_shnum
&& !fmap
->target_copy
&&
174 fmap
->sect
[ism
->sidx
].mapped
!= IMAGE_NO_MAP
)
176 unsigned long pgsz
= getpagesize();
177 unsigned long ofst
, size
;
179 ofst
= fmap
->sect
[ism
->sidx
].shdr
.sh_offset
& ~(pgsz
- 1);
180 size
= ((fmap
->sect
[ism
->sidx
].shdr
.sh_offset
+
181 fmap
->sect
[ism
->sidx
].shdr
.sh_size
+ pgsz
- 1) & ~(pgsz
- 1)) - ofst
;
182 if (munmap((char*)fmap
->sect
[ism
->sidx
].mapped
, size
) < 0)
183 WARN("Couldn't unmap the section\n");
184 fmap
->sect
[ism
->sidx
].mapped
= IMAGE_NO_MAP
;
188 static void elf_end_find(struct image_file_map
* fmap
)
190 struct image_section_map ism
;
195 ism
.sidx
= fmap
->u
.elf
.elfhdr
.e_shstrndx
;
196 elf_unmap_section(&ism
);
197 fmap
->u
.elf
.shstrtab
= IMAGE_NO_MAP
;
198 fmap
= fmap
->u
.elf
.alternate
;
202 /******************************************************************
205 * Get the RVA of an ELF section
207 DWORD_PTR
elf_get_map_rva(const struct image_section_map
* ism
)
209 if (ism
->sidx
< 0 || ism
->sidx
>= ism
->fmap
->u
.elf
.elfhdr
.e_shnum
)
211 return ism
->fmap
->u
.elf
.sect
[ism
->sidx
].shdr
.sh_addr
- ism
->fmap
->u
.elf
.elf_start
;
214 /******************************************************************
217 * Get the size of an ELF section
219 unsigned elf_get_map_size(const struct image_section_map
* ism
)
221 if (ism
->sidx
< 0 || ism
->sidx
>= ism
->fmap
->u
.elf
.elfhdr
.e_shnum
)
223 return ism
->fmap
->u
.elf
.sect
[ism
->sidx
].shdr
.sh_size
;
226 static inline void elf_reset_file_map(struct image_file_map
* fmap
)
229 fmap
->u
.elf
.shstrtab
= IMAGE_NO_MAP
;
230 fmap
->u
.elf
.alternate
= NULL
;
231 fmap
->u
.elf
.target_copy
= NULL
;
234 struct elf_map_file_data
236 enum {from_file
, from_process
} kind
;
241 const WCHAR
* filename
;
251 static BOOL
elf_map_file_read(struct image_file_map
* fmap
, struct elf_map_file_data
* emfd
,
252 void* buf
, size_t len
, off_t off
)
259 return pread(fmap
->u
.elf
.fd
, buf
, len
, off
) == len
;
261 return ReadProcessMemory(emfd
->u
.process
.handle
,
262 (void*)((unsigned long)emfd
->u
.process
.load_addr
+ (unsigned long)off
),
263 buf
, len
, &dw
) && dw
== len
;
270 /******************************************************************
273 * Maps an ELF file into memory (and checks it's a real ELF file)
275 static BOOL
elf_map_file(struct elf_map_file_data
* emfd
, struct image_file_map
* fmap
)
277 static const BYTE elf_signature
[4] = { ELFMAG0
, ELFMAG1
, ELFMAG2
, ELFMAG3
};
281 unsigned long tmp
, page_mask
= getpagesize() - 1;
289 len
= WideCharToMultiByte(CP_UNIXCP
, 0, emfd
->u
.file
.filename
, -1, NULL
, 0, NULL
, NULL
);
290 if (!(filename
= HeapAlloc(GetProcessHeap(), 0, len
))) return FALSE
;
291 WideCharToMultiByte(CP_UNIXCP
, 0, emfd
->u
.file
.filename
, -1, filename
, len
, NULL
, NULL
);
300 elf_reset_file_map(fmap
);
302 fmap
->modtype
= DMT_ELF
;
304 fmap
->u
.elf
.target_copy
= NULL
;
309 /* check that the file exists, and that the module hasn't been loaded yet */
310 if (stat(filename
, &statbuf
) == -1 || S_ISDIR(statbuf
.st_mode
)) goto done
;
312 /* Now open the file, so that we can mmap() it. */
313 if ((fmap
->u
.elf
.fd
= open(filename
, O_RDONLY
)) == -1) goto done
;
318 if (!elf_map_file_read(fmap
, emfd
, &fmap
->u
.elf
.elfhdr
, sizeof(fmap
->u
.elf
.elfhdr
), 0))
321 /* and check for an ELF header */
322 if (memcmp(fmap
->u
.elf
.elfhdr
.e_ident
,
323 elf_signature
, sizeof(elf_signature
))) goto done
;
324 /* and check 32 vs 64 size according to current machine */
326 if (fmap
->u
.elf
.elfhdr
.e_ident
[EI_CLASS
] != ELFCLASS64
) goto done
;
328 if (fmap
->u
.elf
.elfhdr
.e_ident
[EI_CLASS
] != ELFCLASS32
) goto done
;
330 fmap
->u
.elf
.sect
= HeapAlloc(GetProcessHeap(), 0,
331 fmap
->u
.elf
.elfhdr
.e_shnum
* sizeof(fmap
->u
.elf
.sect
[0]));
332 if (!fmap
->u
.elf
.sect
) goto done
;
334 for (i
= 0; i
< fmap
->u
.elf
.elfhdr
.e_shnum
; i
++)
336 if (!elf_map_file_read(fmap
, emfd
, &fmap
->u
.elf
.sect
[i
].shdr
, sizeof(fmap
->u
.elf
.sect
[i
].shdr
),
337 fmap
->u
.elf
.elfhdr
.e_shoff
+ i
* sizeof(fmap
->u
.elf
.sect
[i
].shdr
)))
339 HeapFree(GetProcessHeap(), 0, fmap
->u
.elf
.sect
);
340 fmap
->u
.elf
.sect
= NULL
;
343 fmap
->u
.elf
.sect
[i
].mapped
= IMAGE_NO_MAP
;
346 /* grab size of module once loaded in memory */
347 fmap
->u
.elf
.elf_size
= 0;
348 fmap
->u
.elf
.elf_start
= ~0L;
349 for (i
= 0; i
< fmap
->u
.elf
.elfhdr
.e_phnum
; i
++)
351 if (elf_map_file_read(fmap
, emfd
, &phdr
, sizeof(phdr
),
352 fmap
->u
.elf
.elfhdr
.e_phoff
+ i
* sizeof(phdr
)) &&
353 phdr
.p_type
== PT_LOAD
)
355 tmp
= (phdr
.p_vaddr
+ phdr
.p_memsz
+ page_mask
) & ~page_mask
;
356 if (fmap
->u
.elf
.elf_size
< tmp
) fmap
->u
.elf
.elf_size
= tmp
;
357 if (phdr
.p_vaddr
< fmap
->u
.elf
.elf_start
) fmap
->u
.elf
.elf_start
= phdr
.p_vaddr
;
360 /* if non relocatable ELF, then remove fixed address from computation
361 * otherwise, all addresses are zero based and start has no effect
363 fmap
->u
.elf
.elf_size
-= fmap
->u
.elf
.elf_start
;
367 case from_file
: break;
369 if (!(fmap
->u
.elf
.target_copy
= HeapAlloc(GetProcessHeap(), 0, fmap
->u
.elf
.elf_size
)))
371 HeapFree(GetProcessHeap(), 0, fmap
->u
.elf
.sect
);
374 if (!ReadProcessMemory(emfd
->u
.process
.handle
, emfd
->u
.process
.load_addr
, fmap
->u
.elf
.target_copy
,
375 fmap
->u
.elf
.elf_size
, NULL
))
377 HeapFree(GetProcessHeap(), 0, fmap
->u
.elf
.target_copy
);
378 HeapFree(GetProcessHeap(), 0, fmap
->u
.elf
.sect
);
385 HeapFree(GetProcessHeap(), 0, filename
);
389 /******************************************************************
392 * Unmaps an ELF file from memory (previously mapped with elf_map_file)
394 static void elf_unmap_file(struct image_file_map
* fmap
)
398 if (fmap
->u
.elf
.fd
!= -1)
400 struct image_section_map ism
;
402 for (ism
.sidx
= 0; ism
.sidx
< fmap
->u
.elf
.elfhdr
.e_shnum
; ism
.sidx
++)
404 elf_unmap_section(&ism
);
406 HeapFree(GetProcessHeap(), 0, fmap
->u
.elf
.sect
);
407 close(fmap
->u
.elf
.fd
);
409 HeapFree(GetProcessHeap(), 0, fmap
->u
.elf
.target_copy
);
410 fmap
= fmap
->u
.elf
.alternate
;
414 static void elf_module_remove(struct process
* pcs
, struct module_format
* modfmt
)
416 elf_unmap_file(&modfmt
->u
.elf_info
->file_map
);
417 HeapFree(GetProcessHeap(), 0, modfmt
);
420 /******************************************************************
421 * elf_is_in_thunk_area
423 * Check whether an address lies within one of the thunk area we
426 int elf_is_in_thunk_area(unsigned long addr
,
427 const struct elf_thunk_area
* thunks
)
431 if (thunks
) for (i
= 0; thunks
[i
].symname
; i
++)
433 if (addr
>= thunks
[i
].rva_start
&& addr
< thunks
[i
].rva_end
)
439 /******************************************************************
442 * creating an internal hash table to ease use ELF symtab information lookup
444 static void elf_hash_symtab(struct module
* module
, struct pool
* pool
,
445 struct hash_table
* ht_symtab
, struct image_file_map
* fmap
,
446 struct elf_thunk_area
* thunks
)
451 struct symt_compiland
* compiland
= NULL
;
454 struct symtab_elt
* ste
;
455 struct image_section_map ism
, ism_str
;
457 if (!elf_find_section(fmap
, ".symtab", SHT_SYMTAB
, &ism
) &&
458 !elf_find_section(fmap
, ".dynsym", SHT_DYNSYM
, &ism
)) return;
459 if ((symp
= (const Elf_Sym
*)image_map_section(&ism
)) == IMAGE_NO_MAP
) return;
460 ism_str
.fmap
= ism
.fmap
;
461 ism_str
.sidx
= fmap
->u
.elf
.sect
[ism
.sidx
].shdr
.sh_link
;
462 if ((strp
= image_map_section(&ism_str
)) == IMAGE_NO_MAP
)
464 image_unmap_section(&ism
);
468 nsym
= image_get_map_size(&ism
) / sizeof(*symp
);
470 for (j
= 0; thunks
[j
].symname
; j
++)
471 thunks
[j
].rva_start
= thunks
[j
].rva_end
= 0;
473 for (i
= 0; i
< nsym
; i
++, symp
++)
475 /* Ignore certain types of entries which really aren't of that much
478 if ((ELF32_ST_TYPE(symp
->st_info
) != STT_NOTYPE
&&
479 ELF32_ST_TYPE(symp
->st_info
) != STT_FILE
&&
480 ELF32_ST_TYPE(symp
->st_info
) != STT_OBJECT
&&
481 ELF32_ST_TYPE(symp
->st_info
) != STT_FUNC
) ||
482 symp
->st_shndx
== SHN_UNDEF
)
487 symname
= strp
+ symp
->st_name
;
489 /* handle some specific symtab (that we'll throw away when done) */
490 switch (ELF32_ST_TYPE(symp
->st_info
))
494 compiland
= symt_new_compiland(module
, symp
->st_value
,
495 source_new(module
, NULL
, symname
));
500 /* we are only interested in wine markers inserted by winebuild */
501 for (j
= 0; thunks
[j
].symname
; j
++)
503 if (!strcmp(symname
, thunks
[j
].symname
))
505 thunks
[j
].rva_start
= symp
->st_value
;
506 thunks
[j
].rva_end
= symp
->st_value
+ symp
->st_size
;
513 /* FIXME: we don't need to handle them (GCC internals)
514 * Moreover, they screw up our symbol lookup :-/
516 if (symname
[0] == '.' && symname
[1] == 'L' && isdigit(symname
[2]))
519 ste
= pool_alloc(pool
, sizeof(*ste
));
520 ste
->ht_elt
.name
= symname
;
521 /* GCC emits, in some cases, a .<digit>+ suffix.
522 * This is used for static variable inside functions, so
523 * that we can have several such variables with same name in
524 * the same compilation unit
525 * We simply ignore that suffix when present (we also get rid
526 * of it in stabs parsing)
528 ptr
= symname
+ strlen(symname
) - 1;
531 while (isdigit(*ptr
) && ptr
>= symname
) ptr
--;
532 if (ptr
> symname
&& *ptr
== '.')
534 char* n
= pool_alloc(pool
, ptr
- symname
+ 1);
535 memcpy(n
, symname
, ptr
- symname
+ 1);
536 n
[ptr
- symname
] = '\0';
537 ste
->ht_elt
.name
= n
;
541 ste
->compiland
= compiland
;
543 hash_table_add(ht_symtab
, &ste
->ht_elt
);
545 /* as we added in the ht_symtab pointers to the symbols themselves,
546 * we cannot unmap yet the sections, it will be done when we're over
551 /******************************************************************
554 * lookup a symbol by name in our internal hash table for the symtab
556 static const Elf_Sym
* elf_lookup_symtab(const struct module
* module
,
557 const struct hash_table
* ht_symtab
,
558 const char* name
, const struct symt
* compiland
)
560 struct symtab_elt
* weak_result
= NULL
; /* without compiland name */
561 struct symtab_elt
* result
= NULL
;
562 struct hash_table_iter hti
;
563 struct symtab_elt
* ste
;
564 const char* compiland_name
;
565 const char* compiland_basename
;
568 /* we need weak match up (at least) when symbols of same name,
569 * defined several times in different compilation units,
570 * are merged in a single one (hence a different filename for c.u.)
574 compiland_name
= source_get(module
,
575 ((const struct symt_compiland
*)compiland
)->source
);
576 compiland_basename
= strrchr(compiland_name
, '/');
577 if (!compiland_basename
++) compiland_basename
= compiland_name
;
579 else compiland_name
= compiland_basename
= NULL
;
581 hash_table_iter_init(ht_symtab
, &hti
, name
);
582 while ((ste
= hash_table_iter_up(&hti
)))
584 if (ste
->used
|| strcmp(ste
->ht_elt
.name
, name
)) continue;
587 if ((ste
->compiland
&& !compiland_name
) || (!ste
->compiland
&& compiland_name
))
589 if (ste
->compiland
&& compiland_name
)
591 const char* filename
= source_get(module
, ste
->compiland
->source
);
592 if (strcmp(filename
, compiland_name
))
594 base
= strrchr(filename
, '/');
595 if (!base
++) base
= filename
;
596 if (strcmp(base
, compiland_basename
)) continue;
601 FIXME("Already found symbol %s (%s) in symtab %s @%08x and %s @%08x\n",
602 name
, compiland_name
,
603 source_get(module
, result
->compiland
->source
), (unsigned int)result
->symp
->st_value
,
604 source_get(module
, ste
->compiland
->source
), (unsigned int)ste
->symp
->st_value
);
612 if (!result
&& !(result
= weak_result
))
614 FIXME("Couldn't find symbol %s!%s in symtab\n",
615 debugstr_w(module
->module
.ModuleName
), name
);
621 /******************************************************************
622 * elf_finish_stabs_info
624 * - get any relevant information (address & size) from the bits we got from the
625 * stabs debugging information
627 static void elf_finish_stabs_info(struct module
* module
, const struct hash_table
* symtab
)
629 struct hash_table_iter hti
;
633 struct elf_module_info
* elf_info
= module
->format_info
[DFI_ELF
]->u
.elf_info
;
635 hash_table_iter_init(&module
->ht_symbols
, &hti
, NULL
);
636 while ((ptr
= hash_table_iter_up(&hti
)))
638 sym
= GET_ENTRY(ptr
, struct symt_ht
, hash_elt
);
639 switch (sym
->symt
.tag
)
642 if (((struct symt_function
*)sym
)->address
!= elf_info
->elf_addr
&&
643 ((struct symt_function
*)sym
)->size
)
647 symp
= elf_lookup_symtab(module
, symtab
, sym
->hash_elt
.name
,
648 ((struct symt_function
*)sym
)->container
);
651 if (((struct symt_function
*)sym
)->address
!= elf_info
->elf_addr
&&
652 ((struct symt_function
*)sym
)->address
!= elf_info
->elf_addr
+ symp
->st_value
)
653 FIXME("Changing address for %p/%s!%s from %08lx to %08lx\n",
654 sym
, debugstr_w(module
->module
.ModuleName
), sym
->hash_elt
.name
,
655 ((struct symt_function
*)sym
)->address
, elf_info
->elf_addr
+ symp
->st_value
);
656 if (((struct symt_function
*)sym
)->size
&& ((struct symt_function
*)sym
)->size
!= symp
->st_size
)
657 FIXME("Changing size for %p/%s!%s from %08lx to %08x\n",
658 sym
, debugstr_w(module
->module
.ModuleName
), sym
->hash_elt
.name
,
659 ((struct symt_function
*)sym
)->size
, (unsigned int)symp
->st_size
);
661 ((struct symt_function
*)sym
)->address
= elf_info
->elf_addr
+ symp
->st_value
;
662 ((struct symt_function
*)sym
)->size
= symp
->st_size
;
664 FIXME("Couldn't find %s!%s\n",
665 debugstr_w(module
->module
.ModuleName
), sym
->hash_elt
.name
);
668 switch (((struct symt_data
*)sym
)->kind
)
671 case DataIsFileStatic
:
672 if (((struct symt_data
*)sym
)->u
.var
.kind
!= loc_absolute
||
673 ((struct symt_data
*)sym
)->u
.var
.offset
!= elf_info
->elf_addr
)
675 symp
= elf_lookup_symtab(module
, symtab
, sym
->hash_elt
.name
,
676 ((struct symt_data
*)sym
)->container
);
679 if (((struct symt_data
*)sym
)->u
.var
.offset
!= elf_info
->elf_addr
&&
680 ((struct symt_data
*)sym
)->u
.var
.offset
!= elf_info
->elf_addr
+ symp
->st_value
)
681 FIXME("Changing address for %p/%s!%s from %08lx to %08lx\n",
682 sym
, debugstr_w(module
->module
.ModuleName
), sym
->hash_elt
.name
,
683 ((struct symt_function
*)sym
)->address
, elf_info
->elf_addr
+ symp
->st_value
);
684 ((struct symt_data
*)sym
)->u
.var
.offset
= elf_info
->elf_addr
+ symp
->st_value
;
685 ((struct symt_data
*)sym
)->kind
= (ELF32_ST_BIND(symp
->st_info
) == STB_LOCAL
) ?
686 DataIsFileStatic
: DataIsGlobal
;
688 FIXME("Couldn't find %s!%s\n",
689 debugstr_w(module
->module
.ModuleName
), sym
->hash_elt
.name
);
695 FIXME("Unsupported tag %u\n", sym
->symt
.tag
);
699 /* since we may have changed some addresses & sizes, mark the module to be resorted */
700 module
->sortlist_valid
= FALSE
;
703 /******************************************************************
704 * elf_load_wine_thunks
706 * creating the thunk objects for a wine native DLL
708 static int elf_new_wine_thunks(struct module
* module
, const struct hash_table
* ht_symtab
,
709 const struct elf_thunk_area
* thunks
)
712 struct hash_table_iter hti
;
713 struct symtab_elt
* ste
;
715 struct symt_ht
* symt
;
717 hash_table_iter_init(ht_symtab
, &hti
, NULL
);
718 while ((ste
= hash_table_iter_up(&hti
)))
720 if (ste
->used
) continue;
722 addr
= module
->reloc_delta
+ ste
->symp
->st_value
;
724 j
= elf_is_in_thunk_area(ste
->symp
->st_value
, thunks
);
725 if (j
>= 0) /* thunk found */
727 symt_new_thunk(module
, ste
->compiland
, ste
->ht_elt
.name
, thunks
[j
].ordinal
,
728 addr
, ste
->symp
->st_size
);
735 symt
= symt_find_nearest(module
, addr
);
736 if (symt
&& !symt_get_address(&symt
->symt
, &ref_addr
))
738 if (!symt
|| addr
!= ref_addr
)
740 /* creating public symbols for all the ELF symbols which haven't been
741 * used yet (ie we have no debug information on them)
742 * That's the case, for example, of the .spec.c files
744 switch (ELF32_ST_TYPE(ste
->symp
->st_info
))
747 symt_new_function(module
, ste
->compiland
, ste
->ht_elt
.name
,
748 addr
, ste
->symp
->st_size
, NULL
);
751 loc
.kind
= loc_absolute
;
754 symt_new_global_variable(module
, ste
->compiland
, ste
->ht_elt
.name
,
755 ELF32_ST_BIND(ste
->symp
->st_info
) == STB_LOCAL
,
756 loc
, ste
->symp
->st_size
, NULL
);
759 FIXME("Shouldn't happen\n");
762 /* FIXME: this is a hack !!!
763 * we are adding new symbols, but as we're parsing a symbol table
764 * (hopefully without duplicate symbols) we delay rebuilding the sorted
765 * module table until we're done with the symbol table
766 * Otherwise, as we intertwine symbols's add and lookup, performance
769 module
->sortlist_valid
= TRUE
;
773 /* see comment above */
774 module
->sortlist_valid
= FALSE
;
778 /******************************************************************
779 * elf_new_public_symbols
781 * Creates a set of public symbols from an ELF symtab
783 static int elf_new_public_symbols(struct module
* module
, const struct hash_table
* symtab
)
785 struct hash_table_iter hti
;
786 struct symtab_elt
* ste
;
788 if (dbghelp_options
& SYMOPT_NO_PUBLICS
) return TRUE
;
790 /* FIXME: we're missing the ELF entry point here */
792 hash_table_iter_init(symtab
, &hti
, NULL
);
793 while ((ste
= hash_table_iter_up(&hti
)))
795 symt_new_public(module
, ste
->compiland
, ste
->ht_elt
.name
,
796 module
->reloc_delta
+ ste
->symp
->st_value
,
802 static BOOL
elf_check_debug_link(const WCHAR
* file
, struct image_file_map
* fmap
, DWORD crc
)
805 struct elf_map_file_data emfd
;
807 emfd
.kind
= from_file
;
808 emfd
.u
.file
.filename
= file
;
809 if (!elf_map_file(&emfd
, fmap
)) return FALSE
;
810 if (!(ret
= crc
== calc_crc32(fmap
->u
.elf
.fd
)))
812 WARN("Bad CRC for file %s (got %08x while expecting %08x)\n",
813 debugstr_w(file
), calc_crc32(fmap
->u
.elf
.fd
), crc
);
814 elf_unmap_file(fmap
);
819 /******************************************************************
820 * elf_locate_debug_link
822 * Locate a filename from a .gnu_debuglink section, using the same
824 * "If the full name of the directory containing the executable is
825 * execdir, and the executable has a debug link that specifies the
826 * name debugfile, then GDB will automatically search for the
827 * debugging information file in three places:
828 * - the directory containing the executable file (that is, it
829 * will look for a file named `execdir/debugfile',
830 * - a subdirectory of that directory named `.debug' (that is, the
831 * file `execdir/.debug/debugfile', and
832 * - a subdirectory of the global debug file directory that includes
833 * the executable's full path, and the name from the link (that is,
834 * the file `globaldebugdir/execdir/debugfile', where globaldebugdir
835 * is the global debug file directory, and execdir has been turned
836 * into a relative path)." (from GDB manual)
838 static BOOL
elf_locate_debug_link(struct image_file_map
* fmap
, const char* filename
,
839 const WCHAR
* loaded_file
, DWORD crc
)
841 static const WCHAR globalDebugDirW
[] = {'/','u','s','r','/','l','i','b','/','d','e','b','u','g','/'};
842 static const WCHAR dotDebugW
[] = {'.','d','e','b','u','g','/'};
843 const size_t globalDebugDirLen
= sizeof(globalDebugDirW
) / sizeof(WCHAR
);
847 struct image_file_map
* fmap_link
= NULL
;
849 fmap_link
= HeapAlloc(GetProcessHeap(), 0, sizeof(*fmap_link
));
850 if (!fmap_link
) return FALSE
;
852 filename_len
= MultiByteToWideChar(CP_UNIXCP
, 0, filename
, -1, NULL
, 0);
853 p
= HeapAlloc(GetProcessHeap(), 0,
854 (globalDebugDirLen
+ strlenW(loaded_file
) + 6 + 1 + filename_len
+ 1) * sizeof(WCHAR
));
857 /* we prebuild the string with "execdir" */
858 strcpyW(p
, loaded_file
);
859 slash
= strrchrW(p
, '/');
860 if (slash
== NULL
) slash
= p
; else slash
++;
862 /* testing execdir/filename */
863 MultiByteToWideChar(CP_UNIXCP
, 0, filename
, -1, slash
, filename_len
);
864 if (elf_check_debug_link(p
, fmap_link
, crc
)) goto found
;
866 /* testing execdir/.debug/filename */
867 memcpy(slash
, dotDebugW
, sizeof(dotDebugW
));
868 MultiByteToWideChar(CP_UNIXCP
, 0, filename
, -1, slash
+ sizeof(dotDebugW
) / sizeof(WCHAR
), filename_len
);
869 if (elf_check_debug_link(p
, fmap_link
, crc
)) goto found
;
871 /* testing globaldebugdir/execdir/filename */
872 memmove(p
+ globalDebugDirLen
, p
, (slash
- p
) * sizeof(WCHAR
));
873 memcpy(p
, globalDebugDirW
, globalDebugDirLen
* sizeof(WCHAR
));
874 slash
+= globalDebugDirLen
;
875 MultiByteToWideChar(CP_UNIXCP
, 0, filename
, -1, slash
, filename_len
);
876 if (elf_check_debug_link(p
, fmap_link
, crc
)) goto found
;
878 /* finally testing filename */
879 if (elf_check_debug_link(slash
, fmap_link
, crc
)) goto found
;
882 WARN("Couldn't locate or map %s\n", filename
);
883 HeapFree(GetProcessHeap(), 0, p
);
884 HeapFree(GetProcessHeap(), 0, fmap_link
);
888 TRACE("Located debug information file %s at %s\n", filename
, debugstr_w(p
));
889 HeapFree(GetProcessHeap(), 0, p
);
890 fmap
->u
.elf
.alternate
= fmap_link
;
894 /******************************************************************
895 * elf_debuglink_parse
897 * Parses a .gnu_debuglink section and loads the debug info from
898 * the external file specified there.
900 static BOOL
elf_debuglink_parse(struct image_file_map
* fmap
, const struct module
* module
,
901 const BYTE
* debuglink
)
903 /* The content of a debug link section is:
904 * 1/ a NULL terminated string, containing the file name for the
906 * 2/ padding on 4 byte boundary
907 * 3/ CRC of the linked ELF file
909 const char* dbg_link
= (const char*)debuglink
;
912 crc
= *(const DWORD
*)(dbg_link
+ ((DWORD_PTR
)(strlen(dbg_link
) + 4) & ~3));
913 return elf_locate_debug_link(fmap
, dbg_link
, module
->module
.LoadedImageName
, crc
);
916 /******************************************************************
917 * elf_load_debug_info_from_map
919 * Loads the symbolic information from ELF module which mapping is described
921 * the module has been loaded at 'load_offset' address, so symbols' address
922 * relocation is performed.
923 * CRC is checked if fmap->with_crc is TRUE
925 * 0 if the file doesn't contain symbolic info (or this info cannot be
929 static BOOL
elf_load_debug_info_from_map(struct module
* module
,
930 struct image_file_map
* fmap
,
932 struct hash_table
* ht_symtab
)
934 BOOL ret
= FALSE
, lret
;
935 struct elf_thunk_area thunks
[] =
937 {"__wine_spec_import_thunks", THUNK_ORDINAL_NOTYPE
, 0, 0}, /* inter DLL calls */
938 {"__wine_spec_delayed_import_loaders", THUNK_ORDINAL_LOAD
, 0, 0}, /* delayed inter DLL calls */
939 {"__wine_spec_delayed_import_thunks", THUNK_ORDINAL_LOAD
, 0, 0}, /* delayed inter DLL calls */
940 {"__wine_delay_load", THUNK_ORDINAL_LOAD
, 0, 0}, /* delayed inter DLL calls */
941 {"__wine_spec_thunk_text_16", -16, 0, 0}, /* 16 => 32 thunks */
942 {"__wine_spec_thunk_text_32", -32, 0, 0}, /* 32 => 16 thunks */
946 module
->module
.SymType
= SymExport
;
948 /* create a hash table for the symtab */
949 elf_hash_symtab(module
, pool
, ht_symtab
, fmap
, thunks
);
951 if (!(dbghelp_options
& SYMOPT_PUBLICS_ONLY
))
953 struct image_section_map stab_sect
, stabstr_sect
;
954 struct image_section_map debuglink_sect
;
956 /* if present, add the .gnu_debuglink file as an alternate to current one */
957 if (elf_find_section(fmap
, ".gnu_debuglink", SHT_NULL
, &debuglink_sect
))
959 const BYTE
* dbg_link
;
961 dbg_link
= (const BYTE
*)image_map_section(&debuglink_sect
);
962 if (dbg_link
!= IMAGE_NO_MAP
)
964 lret
= elf_debuglink_parse(fmap
, module
, dbg_link
);
966 WARN("Couldn't load linked debug file for %s\n",
967 debugstr_w(module
->module
.ModuleName
));
970 image_unmap_section(&debuglink_sect
);
972 if (elf_find_section(fmap
, ".stab", SHT_NULL
, &stab_sect
) &&
973 elf_find_section(fmap
, ".stabstr", SHT_NULL
, &stabstr_sect
))
978 stab
= image_map_section(&stab_sect
);
979 stabstr
= image_map_section(&stabstr_sect
);
980 if (stab
!= IMAGE_NO_MAP
&& stabstr
!= IMAGE_NO_MAP
)
982 /* OK, now just parse all of the stabs. */
983 lret
= stabs_parse(module
, module
->format_info
[DFI_ELF
]->u
.elf_info
->elf_addr
,
984 stab
, image_get_map_size(&stab_sect
),
985 stabstr
, image_get_map_size(&stabstr_sect
),
988 /* and fill in the missing information for stabs */
989 elf_finish_stabs_info(module
, ht_symtab
);
991 WARN("Couldn't correctly read stabs\n");
994 image_unmap_section(&stab_sect
);
995 image_unmap_section(&stabstr_sect
);
997 lret
= dwarf2_parse(module
, module
->reloc_delta
, thunks
, fmap
);
1000 if (strstrW(module
->module
.ModuleName
, S_ElfW
) ||
1001 !strcmpW(module
->module
.ModuleName
, S_WineLoaderW
))
1003 /* add the thunks for native libraries */
1004 if (!(dbghelp_options
& SYMOPT_PUBLICS_ONLY
))
1005 elf_new_wine_thunks(module
, ht_symtab
, thunks
);
1007 /* add all the public symbols from symtab */
1008 if (elf_new_public_symbols(module
, ht_symtab
) && !ret
) ret
= TRUE
;
1013 /******************************************************************
1014 * elf_load_debug_info
1016 * Loads ELF debugging information from the module image file.
1018 BOOL
elf_load_debug_info(struct module
* module
)
1022 struct hash_table ht_symtab
;
1023 struct module_format
* modfmt
;
1025 if (module
->type
!= DMT_ELF
|| !(modfmt
= module
->format_info
[DFI_ELF
]) || !modfmt
->u
.elf_info
)
1027 ERR("Bad elf module '%s'\n", debugstr_w(module
->module
.LoadedImageName
));
1031 pool_init(&pool
, 65536);
1032 hash_table_init(&pool
, &ht_symtab
, 256);
1034 ret
= elf_load_debug_info_from_map(module
, &modfmt
->u
.elf_info
->file_map
, &pool
, &ht_symtab
);
1036 pool_destroy(&pool
);
1040 /******************************************************************
1041 * elf_fetch_file_info
1043 * Gathers some more information for an ELF module from a given file
1045 BOOL
elf_fetch_file_info(const WCHAR
* name
, DWORD_PTR
* base
,
1046 DWORD
* size
, DWORD
* checksum
)
1048 struct image_file_map fmap
;
1050 struct elf_map_file_data emfd
;
1052 emfd
.kind
= from_file
;
1053 emfd
.u
.file
.filename
= name
;
1054 if (!elf_map_file(&emfd
, &fmap
)) return FALSE
;
1055 if (base
) *base
= fmap
.u
.elf
.elf_start
;
1056 *size
= fmap
.u
.elf
.elf_size
;
1057 *checksum
= calc_crc32(fmap
.u
.elf
.fd
);
1058 elf_unmap_file(&fmap
);
1062 static BOOL
elf_load_file_from_fmap(struct process
* pcs
, const WCHAR
* filename
,
1063 struct image_file_map
* fmap
, unsigned long load_offset
,
1064 unsigned long dyn_addr
, struct elf_info
* elf_info
)
1068 if (elf_info
->flags
& ELF_INFO_DEBUG_HEADER
)
1070 struct image_section_map ism
;
1072 if (elf_find_section(fmap
, ".dynamic", SHT_DYNAMIC
, &ism
))
1075 char* ptr
= (char*)fmap
->u
.elf
.sect
[ism
.sidx
].shdr
.sh_addr
;
1080 if (!ReadProcessMemory(pcs
->handle
, ptr
, &dyn
, sizeof(dyn
), &len
) ||
1083 if (dyn
.d_tag
== DT_DEBUG
)
1085 elf_info
->dbg_hdr_addr
= dyn
.d_un
.d_ptr
;
1086 if (load_offset
== 0 && dyn_addr
== 0) /* likely the case */
1087 /* Assume this module (the Wine loader) has been loaded at its preferred address */
1088 dyn_addr
= ism
.fmap
->u
.elf
.sect
[ism
.sidx
].shdr
.sh_addr
;
1092 } while (dyn
.d_tag
!= DT_NULL
);
1093 if (dyn
.d_tag
== DT_NULL
) return ret
;
1098 if (elf_info
->flags
& ELF_INFO_MODULE
)
1100 struct elf_module_info
*elf_module_info
;
1101 struct module_format
* modfmt
;
1102 struct image_section_map ism
;
1103 unsigned long modbase
= load_offset
;
1105 if (elf_find_section(fmap
, ".dynamic", SHT_DYNAMIC
, &ism
))
1107 unsigned long rva_dyn
= elf_get_map_rva(&ism
);
1109 TRACE("For module %s, got ELF (start=%lx dyn=%lx), link_map (start=%lx dyn=%lx)\n",
1110 debugstr_w(filename
), (unsigned long)fmap
->u
.elf
.elf_start
, rva_dyn
,
1111 load_offset
, dyn_addr
);
1112 if (dyn_addr
&& load_offset
+ rva_dyn
!= dyn_addr
)
1114 WARN("\thave to relocate: %lx\n", dyn_addr
- rva_dyn
);
1115 modbase
= dyn_addr
- rva_dyn
;
1117 } else WARN("For module %s, no .dynamic section\n", debugstr_w(filename
));
1120 modfmt
= HeapAlloc(GetProcessHeap(), 0,
1121 sizeof(struct module_format
) + sizeof(struct elf_module_info
));
1122 if (!modfmt
) return FALSE
;
1123 elf_info
->module
= module_new(pcs
, filename
, DMT_ELF
, FALSE
, modbase
,
1124 fmap
->u
.elf
.elf_size
, 0, calc_crc32(fmap
->u
.elf
.fd
));
1125 if (!elf_info
->module
)
1127 HeapFree(GetProcessHeap(), 0, modfmt
);
1130 elf_info
->module
->reloc_delta
= elf_info
->module
->module
.BaseOfImage
- fmap
->u
.elf
.elf_start
;
1131 elf_module_info
= (void*)(modfmt
+ 1);
1132 elf_info
->module
->format_info
[DFI_ELF
] = modfmt
;
1133 modfmt
->module
= elf_info
->module
;
1134 modfmt
->remove
= elf_module_remove
;
1135 modfmt
->loc_compute
= NULL
;
1136 modfmt
->u
.elf_info
= elf_module_info
;
1138 elf_module_info
->elf_addr
= load_offset
;
1140 elf_module_info
->file_map
= *fmap
;
1141 elf_reset_file_map(fmap
);
1142 if (dbghelp_options
& SYMOPT_DEFERRED_LOADS
)
1144 elf_info
->module
->module
.SymType
= SymDeferred
;
1147 else ret
= elf_load_debug_info(elf_info
->module
);
1149 elf_module_info
->elf_mark
= 1;
1150 elf_module_info
->elf_loader
= 0;
1153 if (elf_info
->flags
& ELF_INFO_NAME
)
1156 ptr
= HeapAlloc(GetProcessHeap(), 0, (lstrlenW(filename
) + 1) * sizeof(WCHAR
));
1159 strcpyW(ptr
, filename
);
1160 elf_info
->module_name
= ptr
;
1168 /******************************************************************
1171 * Loads the information for ELF module stored in 'filename'
1172 * the module has been loaded at 'load_offset' address
1174 * -1 if the file cannot be found/opened
1175 * 0 if the file doesn't contain symbolic info (or this info cannot be
1179 static BOOL
elf_load_file(struct process
* pcs
, const WCHAR
* filename
,
1180 unsigned long load_offset
, unsigned long dyn_addr
,
1181 struct elf_info
* elf_info
)
1184 struct image_file_map fmap
;
1185 struct elf_map_file_data emfd
;
1187 TRACE("Processing elf file '%s' at %08lx\n", debugstr_w(filename
), load_offset
);
1189 emfd
.kind
= from_file
;
1190 emfd
.u
.file
.filename
= filename
;
1191 if (!elf_map_file(&emfd
, &fmap
)) return ret
;
1193 /* Next, we need to find a few of the internal ELF headers within
1194 * this thing. We need the main executable header, and the section
1197 if (!fmap
.u
.elf
.elf_start
&& !load_offset
)
1198 ERR("Relocatable ELF %s, but no load address. Loading at 0x0000000\n",
1199 debugstr_w(filename
));
1201 ret
= elf_load_file_from_fmap(pcs
, filename
, &fmap
, load_offset
, dyn_addr
, elf_info
);
1203 elf_unmap_file(&fmap
);
1208 /******************************************************************
1209 * elf_load_file_from_path
1210 * tries to load an ELF file from a set of paths (separated by ':')
1212 static BOOL
elf_load_file_from_path(HANDLE hProcess
,
1213 const WCHAR
* filename
,
1214 unsigned long load_offset
,
1215 unsigned long dyn_addr
,
1217 struct elf_info
* elf_info
)
1221 WCHAR
* pathW
= NULL
;
1224 if (!path
) return FALSE
;
1226 len
= MultiByteToWideChar(CP_UNIXCP
, 0, path
, -1, NULL
, 0);
1227 pathW
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
1228 if (!pathW
) return FALSE
;
1229 MultiByteToWideChar(CP_UNIXCP
, 0, path
, -1, pathW
, len
);
1231 for (s
= pathW
; s
&& *s
; s
= (t
) ? (t
+1) : NULL
)
1233 t
= strchrW(s
, ':');
1235 fn
= HeapAlloc(GetProcessHeap(), 0, (lstrlenW(filename
) + 1 + lstrlenW(s
) + 1) * sizeof(WCHAR
));
1238 strcatW(fn
, S_SlashW
);
1239 strcatW(fn
, filename
);
1240 ret
= elf_load_file(hProcess
, fn
, load_offset
, dyn_addr
, elf_info
);
1241 HeapFree(GetProcessHeap(), 0, fn
);
1245 HeapFree(GetProcessHeap(), 0, pathW
);
1249 /******************************************************************
1250 * elf_load_file_from_dll_path
1252 * Tries to load an ELF file from the dll path
1254 static BOOL
elf_load_file_from_dll_path(HANDLE hProcess
,
1255 const WCHAR
* filename
,
1256 unsigned long load_offset
,
1257 unsigned long dyn_addr
,
1258 struct elf_info
* elf_info
)
1261 unsigned int index
= 0;
1264 while (!ret
&& (path
= wine_dll_enum_load_path( index
++ )))
1269 len
= MultiByteToWideChar(CP_UNIXCP
, 0, path
, -1, NULL
, 0);
1271 name
= HeapAlloc( GetProcessHeap(), 0,
1272 (len
+ lstrlenW(filename
) + 2) * sizeof(WCHAR
) );
1275 MultiByteToWideChar(CP_UNIXCP
, 0, path
, -1, name
, len
);
1276 strcatW( name
, S_SlashW
);
1277 strcatW( name
, filename
);
1278 ret
= elf_load_file(hProcess
, name
, load_offset
, dyn_addr
, elf_info
);
1279 HeapFree( GetProcessHeap(), 0, name
);
1284 #ifdef AT_SYSINFO_EHDR
1285 /******************************************************************
1288 * locate some a value from the debuggee auxillary vector
1290 static BOOL
elf_search_auxv(const struct process
* pcs
, unsigned type
, unsigned long* val
)
1292 char buffer
[sizeof(SYMBOL_INFO
) + MAX_SYM_NAME
];
1293 SYMBOL_INFO
*si
= (SYMBOL_INFO
*)buffer
;
1299 si
->SizeOfStruct
= sizeof(*si
);
1300 si
->MaxNameLen
= MAX_SYM_NAME
;
1301 if (!SymFromName(pcs
->handle
, "libwine.so.1!__wine_main_environ", si
) ||
1302 !(addr
= (void*)(DWORD_PTR
)si
->Address
) ||
1303 !ReadProcessMemory(pcs
->handle
, addr
, &addr
, sizeof(addr
), NULL
) ||
1306 FIXME("can't find symbol in module\n");
1309 /* walk through envp[] */
1310 /* envp[] strings are located after the auxillary vector, so protect the walk */
1311 str_max
= (void*)(DWORD_PTR
)~0L;
1312 while (ReadProcessMemory(pcs
->handle
, addr
, &str
, sizeof(str
), NULL
) &&
1313 (addr
= (void*)((DWORD_PTR
)addr
+ sizeof(str
))) != NULL
&& str
!= NULL
)
1314 str_max
= min(str_max
, str
);
1316 /* Walk through the end of envp[] array.
1317 * Actually, there can be several NULLs at the end of envp[]. This happens when an env variable is
1318 * deleted, the last entry is replaced by an extra NULL.
1320 while (addr
< str_max
&& ReadProcessMemory(pcs
->handle
, addr
, &str
, sizeof(str
), NULL
) && str
== NULL
)
1321 addr
= (void*)((DWORD_PTR
)addr
+ sizeof(str
));
1323 while (ReadProcessMemory(pcs
->handle
, addr
, &auxv
, sizeof(auxv
), NULL
) && auxv
.a_type
!= AT_NULL
)
1325 if (auxv
.a_type
== type
)
1327 *val
= auxv
.a_un
.a_val
;
1330 addr
= (void*)((DWORD_PTR
)addr
+ sizeof(auxv
));
1337 /******************************************************************
1338 * elf_search_and_load_file
1340 * lookup a file in standard ELF locations, and if found, load it
1342 static BOOL
elf_search_and_load_file(struct process
* pcs
, const WCHAR
* filename
,
1343 unsigned long load_offset
, unsigned long dyn_addr
,
1344 struct elf_info
* elf_info
)
1347 struct module
* module
;
1348 static WCHAR S_libstdcPPW
[] = {'l','i','b','s','t','d','c','+','+','\0'};
1350 if (filename
== NULL
|| *filename
== '\0') return FALSE
;
1351 if ((module
= module_is_already_loaded(pcs
, filename
)))
1353 elf_info
->module
= module
;
1354 elf_info
->module
->format_info
[DFI_ELF
]->u
.elf_info
->elf_mark
= 1;
1355 return module
->module
.SymType
;
1358 if (strstrW(filename
, S_libstdcPPW
)) return FALSE
; /* We know we can't do it */
1359 ret
= elf_load_file(pcs
, filename
, load_offset
, dyn_addr
, elf_info
);
1360 /* if relative pathname, try some absolute base dirs */
1361 if (!ret
&& !strchrW(filename
, '/'))
1363 ret
= elf_load_file_from_path(pcs
, filename
, load_offset
, dyn_addr
,
1364 getenv("PATH"), elf_info
) ||
1365 elf_load_file_from_path(pcs
, filename
, load_offset
, dyn_addr
,
1366 getenv("LD_LIBRARY_PATH"), elf_info
);
1367 if (!ret
) ret
= elf_load_file_from_dll_path(pcs
, filename
,
1368 load_offset
, dyn_addr
, elf_info
);
1374 typedef BOOL (*enum_elf_modules_cb
)(const WCHAR
*, unsigned long load_addr
,
1375 unsigned long dyn_addr
, BOOL is_system
, void* user
);
1377 /******************************************************************
1378 * elf_enum_modules_internal
1380 * Enumerate ELF modules from a running process
1382 static BOOL
elf_enum_modules_internal(const struct process
* pcs
,
1383 const WCHAR
* main_name
,
1384 enum_elf_modules_cb cb
, void* user
)
1386 struct r_debug dbg_hdr
;
1390 WCHAR bufstrW
[MAX_PATH
];
1392 if (!pcs
->dbg_hdr_addr
||
1393 !ReadProcessMemory(pcs
->handle
, (void*)pcs
->dbg_hdr_addr
,
1394 &dbg_hdr
, sizeof(dbg_hdr
), NULL
))
1397 /* Now walk the linked list. In all known ELF implementations,
1398 * the dynamic loader maintains this linked list for us. In some
1399 * cases the first entry doesn't appear with a name, in other cases it
1402 for (lm_addr
= (void*)dbg_hdr
.r_map
; lm_addr
; lm_addr
= (void*)lm
.l_next
)
1404 if (!ReadProcessMemory(pcs
->handle
, lm_addr
, &lm
, sizeof(lm
), NULL
))
1407 if (lm
.l_prev
!= NULL
&& /* skip first entry, normally debuggee itself */
1408 lm
.l_name
!= NULL
&&
1409 ReadProcessMemory(pcs
->handle
, lm
.l_name
, bufstr
, sizeof(bufstr
), NULL
))
1411 bufstr
[sizeof(bufstr
) - 1] = '\0';
1412 MultiByteToWideChar(CP_UNIXCP
, 0, bufstr
, -1, bufstrW
, sizeof(bufstrW
) / sizeof(WCHAR
));
1413 if (main_name
&& !bufstrW
[0]) strcpyW(bufstrW
, main_name
);
1414 if (!cb(bufstrW
, (unsigned long)lm
.l_addr
, (unsigned long)lm
.l_ld
, FALSE
, user
)) break;
1418 #ifdef AT_SYSINFO_EHDR
1421 unsigned long ehdr_addr
;
1423 if (elf_search_auxv(pcs
, AT_SYSINFO_EHDR
, &ehdr_addr
))
1425 static const WCHAR vdsoW
[] = {'[','v','d','s','o',']','.','s','o',0};
1426 cb(vdsoW
, ehdr_addr
, 0, TRUE
, user
);
1433 /******************************************************************
1436 * Lookup in a running ELF process the loader, and sets its ELF link
1437 * address (for accessing the list of loaded .so libs) in pcs.
1438 * If flags is ELF_INFO_MODULE, the module for the loader is also
1439 * added as a module into pcs.
1441 static BOOL
elf_search_loader(struct process
* pcs
, struct elf_info
* elf_info
)
1443 return elf_search_and_load_file(pcs
, get_wine_loader_name(), 0, 0, elf_info
);
1446 /******************************************************************
1447 * elf_read_wine_loader_dbg_info
1449 * Try to find a decent wine executable which could have loaded the debuggee
1451 BOOL
elf_read_wine_loader_dbg_info(struct process
* pcs
)
1453 struct elf_info elf_info
;
1455 elf_info
.flags
= ELF_INFO_DEBUG_HEADER
| ELF_INFO_MODULE
;
1456 if (!elf_search_loader(pcs
, &elf_info
)) return FALSE
;
1457 elf_info
.module
->format_info
[DFI_ELF
]->u
.elf_info
->elf_loader
= 1;
1458 module_set_module(elf_info
.module
, S_WineLoaderW
);
1459 return (pcs
->dbg_hdr_addr
= elf_info
.dbg_hdr_addr
) != 0;
1462 struct elf_enum_user
1468 static BOOL
elf_enum_modules_translate(const WCHAR
* name
, unsigned long load_addr
,
1469 unsigned long dyn_addr
, BOOL is_system
, void* user
)
1471 struct elf_enum_user
* eeu
= user
;
1472 return eeu
->cb(name
, load_addr
, eeu
->user
);
1475 /******************************************************************
1478 * Enumerates the ELF loaded modules from a running target (hProc)
1479 * This function doesn't require that someone has called SymInitialize
1480 * on this very process.
1482 BOOL
elf_enum_modules(HANDLE hProc
, enum_modules_cb cb
, void* user
)
1485 struct elf_info elf_info
;
1487 struct elf_enum_user eeu
;
1489 memset(&pcs
, 0, sizeof(pcs
));
1491 elf_info
.flags
= ELF_INFO_DEBUG_HEADER
| ELF_INFO_NAME
;
1492 if (!elf_search_loader(&pcs
, &elf_info
)) return FALSE
;
1493 pcs
.dbg_hdr_addr
= elf_info
.dbg_hdr_addr
;
1496 ret
= elf_enum_modules_internal(&pcs
, elf_info
.module_name
, elf_enum_modules_translate
, &eeu
);
1497 HeapFree(GetProcessHeap(), 0, (char*)elf_info
.module_name
);
1503 struct process
* pcs
;
1504 struct elf_info elf_info
;
1509 /******************************************************************
1512 * Callback for elf_load_module, used to walk the list of loaded
1515 static BOOL
elf_load_cb(const WCHAR
* name
, unsigned long load_addr
,
1516 unsigned long dyn_addr
, BOOL is_system
, void* user
)
1518 struct elf_load
* el
= user
;
1522 if (is_system
) /* virtual ELF module, created by system. handle it from memory */
1524 struct module
* module
;
1525 struct elf_map_file_data emfd
;
1526 struct image_file_map fmap
;
1528 if ((module
= module_is_already_loaded(el
->pcs
, name
)))
1530 el
->elf_info
.module
= module
;
1531 el
->elf_info
.module
->format_info
[DFI_ELF
]->u
.elf_info
->elf_mark
= 1;
1532 return module
->module
.SymType
;
1535 emfd
.kind
= from_process
;
1536 emfd
.u
.process
.handle
= el
->pcs
->handle
;
1537 emfd
.u
.process
.load_addr
= (void*)load_addr
;
1539 if (elf_map_file(&emfd
, &fmap
))
1540 el
->ret
= elf_load_file_from_fmap(el
->pcs
, name
, &fmap
, load_addr
, 0, &el
->elf_info
);
1545 /* memcmp is needed for matches when bufstr contains also version information
1546 * el->name: libc.so, name: libc.so.6.0
1548 p
= strrchrW(name
, '/');
1552 if (!el
->name
|| !memcmp(p
, el
->name
, lstrlenW(el
->name
) * sizeof(WCHAR
)))
1554 el
->ret
= elf_search_and_load_file(el
->pcs
, name
, load_addr
, dyn_addr
, &el
->elf_info
);
1555 if (el
->name
) ret
= FALSE
;
1561 /******************************************************************
1564 * loads an ELF module and stores it in process' module list
1565 * Also, find module real name and load address from
1566 * the real loaded modules list in pcs address space
1568 struct module
* elf_load_module(struct process
* pcs
, const WCHAR
* name
, unsigned long addr
)
1572 TRACE("(%p %s %08lx)\n", pcs
, debugstr_w(name
), addr
);
1574 el
.elf_info
.flags
= ELF_INFO_MODULE
;
1577 if (pcs
->dbg_hdr_addr
) /* we're debugging a life target */
1580 /* do only the lookup from the filename, not the path (as we lookup module
1581 * name in the process' loaded module list)
1583 el
.name
= strrchrW(name
, '/');
1584 if (!el
.name
++) el
.name
= name
;
1587 if (!elf_enum_modules_internal(pcs
, NULL
, elf_load_cb
, &el
))
1593 el
.ret
= elf_search_and_load_file(pcs
, el
.name
, addr
, 0, &el
.elf_info
);
1595 if (!el
.ret
) return NULL
;
1596 assert(el
.elf_info
.module
);
1597 return el
.elf_info
.module
;
1600 /******************************************************************
1601 * elf_synchronize_module_list
1603 * this functions rescans the debuggee module's list and synchronizes it with
1604 * the one from 'pcs', ie:
1605 * - if a module is in debuggee and not in pcs, it's loaded into pcs
1606 * - if a module is in pcs and not in debuggee, it's unloaded from pcs
1608 BOOL
elf_synchronize_module_list(struct process
* pcs
)
1610 struct module
* module
;
1613 for (module
= pcs
->lmodules
; module
; module
= module
->next
)
1615 if (module
->type
== DMT_ELF
&& !module
->is_virtual
)
1616 module
->format_info
[DFI_ELF
]->u
.elf_info
->elf_mark
= 0;
1620 el
.elf_info
.flags
= ELF_INFO_MODULE
;
1622 el
.name
= NULL
; /* fetch all modules */
1624 if (!elf_enum_modules_internal(pcs
, NULL
, elf_load_cb
, &el
))
1627 module
= pcs
->lmodules
;
1630 if (module
->type
== DMT_ELF
&& !module
->is_virtual
)
1632 struct elf_module_info
* elf_info
= module
->format_info
[DFI_ELF
]->u
.elf_info
;
1634 if (!elf_info
->elf_mark
&& !elf_info
->elf_loader
)
1636 module_remove(pcs
, module
);
1637 /* restart all over */
1638 module
= pcs
->lmodules
;
1642 module
= module
->next
;
1647 #else /* !__ELF__ */
1649 BOOL
elf_find_section(struct image_file_map
* fmap
, const char* name
,
1650 unsigned sht
, struct image_section_map
* ism
)
1655 const char* elf_map_section(struct image_section_map
* ism
)
1660 void elf_unmap_section(struct image_section_map
* ism
)
1663 unsigned elf_get_map_size(const struct image_section_map
* ism
)
1668 DWORD_PTR
elf_get_map_rva(const struct image_section_map
* ism
)
1673 BOOL
elf_synchronize_module_list(struct process
* pcs
)
1678 BOOL
elf_fetch_file_info(const WCHAR
* name
, DWORD_PTR
* base
,
1679 DWORD
* size
, DWORD
* checksum
)
1684 BOOL
elf_read_wine_loader_dbg_info(struct process
* pcs
)
1689 BOOL
elf_enum_modules(HANDLE hProc
, enum_modules_cb cb
, void* user
)
1694 struct module
* elf_load_module(struct process
* pcs
, const WCHAR
* name
, unsigned long addr
)
1699 BOOL
elf_load_debug_info(struct module
* module
)
1704 int elf_is_in_thunk_area(unsigned long addr
,
1705 const struct elf_thunk_area
* thunks
)
1709 #endif /* __ELF__ */