1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935
|
/*
Copyright (c) 2020, David Anderson All rights reserved.
Redistribution and use in source and binary forms, with
or without modification, are permitted provided that the
following conditions are met:
Redistributions of source code must retain the above
copyright notice, this list of conditions and the following
disclaimer.
Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials
provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/* This file reads the parts of a Windows PE
file appropriate to reading DWARF debugging data.
*/
#ifdef _WIN32
#define _CRT_SECURE_NO_WARNINGS
#endif /* _WIN32 */
#include "config.h"
#include <stdio.h>
#ifdef HAVE_MALLOC_H
/* Useful include for some Windows compilers. */
#include <malloc.h>
#endif /* HAVE_MALLOC_H */
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif /* HAVE_STDLIB_H */
#ifdef HAVE_STRING_H
#include <string.h> /* memcpy */
#endif /* HAVE_STRING_H */
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h> /* open(), off_t, size_t, ssize_t */
#endif /* HAVE_SYS_TYPES_H */
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h> /* open() */
#endif /* HAVE_SYS_STAT_H */
#include <fcntl.h> /* open() */
#include <time.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h> /* lseek read close */
#elif defined(_WIN32) && defined(_MSC_VER)
#include <io.h>
#endif /* HAVE_UNISTD_H */
/* Windows specific header files */
#if defined(_WIN32) && defined(HAVE_STDAFX_H)
#include "stdafx.h"
#endif /* HAVE_STDAFX_H */
#include "libdwarf.h"
#include "libdwarfdefs.h"
#include "dwarf_base_types.h"
#include "dwarf_opaque.h"
#include "memcpy_swap.h"
#include "dwarf_error.h" /* for _dwarf_error() declaration */
#include "dwarf_reading.h"
#include "dwarf_object_read_common.h"
#include "dwarf_object_detector.h"
#include "dwarf_pe_descr.h"
#include "dwarf_peread.h"
#ifdef HAVE_UNUSED_ATTRIBUTE
#define UNUSEDARG __attribute__ ((unused))
#else
#define UNUSEDARG
#endif
#define DOS_HEADER_LEN 64
#ifndef TYP
#define TYP(n,l) char n[l]
#endif /* TYP */
#ifndef SIZEOFT32
#define SIZEOFT32 4
#endif /* SIZEOFT32 */
#if 0
static void
dump_bytes(char * msg,Dwarf_Small * start, long len)
{
Dwarf_Small *end = start + len;
Dwarf_Small *cur = start;
printf("%s len %ld ",msg,len);
for (; cur < end; cur++) {
printf("%02x ", *cur);
}
printf("\n");
}
#endif
static int _dwarf_pe_object_access_init(
int fd,
unsigned ftype,
unsigned endian,
unsigned offsetsize,
size_t filesize,
Dwarf_Unsigned access,
Dwarf_Obj_Access_Interface **binary_interface,
int *localerrnum);
static unsigned long
magic_copy(char *d, unsigned len)
{
unsigned i = 0;
unsigned long v = 0;
v = d[0];
for(i = 1 ; i < len; ++i) {
v <<= 8;
v |= 0xff&d[i];
}
return v;
}
static int
check_valid_string(char *tab,
Dwarf_Unsigned size,
Dwarf_Unsigned startindex)
{
Dwarf_Unsigned i = startindex;
for( ; i < size; ++i) {
if (!tab[i]) {
return DW_DLV_OK;
}
}
return DW_DLV_ERROR;
}
#ifdef WORDS_BIGENDIAN
#define ASNAR(func,t,s) \
do { \
unsigned tbyte = sizeof(t) - sizeof(s); \
t = 0; \
func(((char *)&t)+tbyte ,&s[0],sizeof(s)); \
} while (0)
#else /* LITTLE ENDIAN */
#define ASNAR(func,t,s) \
do { \
t = 0; \
func(&t,&s[0],sizeof(s)); \
} while (0)
#endif /* end LITTLE- BIG-ENDIAN */
/* Name_array is 8 byte string, or it is supposed to be
anyway. */
static int
pe_section_name_get(dwarf_pe_object_access_internals_t *pep,
const char *name_array,
const char ** name_out,
int *errcode)
{
if (name_array[0] == '/') {
long v = 0;
unsigned long u = 0;
const char *s = 0;
char temp_array[9];
int res = 0;
memcpy(temp_array,name_array+1,7);
temp_array[7] = 0;
v = atoi(temp_array);
if (v < 0) {
*errcode = DW_DLE_STRING_OFFSET_BAD;
return DW_DLV_ERROR;
}
u = v;
if (!pep->pe_string_table) {
*errcode = DW_DLE_STRING_OFFSET_BAD;
return DW_DLV_ERROR;
}
if (u >= pep->pe_string_table_size) {
*errcode = DW_DLE_STRING_OFFSET_BAD;
return DW_DLV_ERROR;
}
res = check_valid_string(pep->pe_string_table,
pep->pe_string_table_size,u);
if (res != DW_DLV_OK) {
*errcode = DW_DLE_STRING_OFFSET_BAD;
return DW_DLV_ERROR;
}
s = pep->pe_string_table +u;
*name_out = s;
return DW_DLV_OK;
}
*name_out = name_array;
return DW_DLV_OK;
}
static Dwarf_Endianness
pe_get_byte_order (void *obj)
{
dwarf_pe_object_access_internals_t *pep =
(dwarf_pe_object_access_internals_t*)(obj);
return pep->pe_endian;
}
static Dwarf_Small
pe_get_length_size (void *obj)
{
dwarf_pe_object_access_internals_t *pep =
(dwarf_pe_object_access_internals_t*)(obj);
return pep->pe_offsetsize/8;
}
static Dwarf_Small
pe_get_pointer_size (void *obj)
{
dwarf_pe_object_access_internals_t *pep =
(dwarf_pe_object_access_internals_t*)(obj);
return pep->pe_pointersize/8;
}
static Dwarf_Unsigned
pe_get_section_count (void *obj)
{
dwarf_pe_object_access_internals_t *pep =
(dwarf_pe_object_access_internals_t*)(obj);
return pep->pe_section_count;
}
static int
pe_get_section_info (void *obj,
Dwarf_Half section_index,
Dwarf_Obj_Access_Section *return_section,
UNUSEDARG int *error)
{
dwarf_pe_object_access_internals_t *pep =
(dwarf_pe_object_access_internals_t*)(obj);
if (section_index < pep->pe_section_count) {
struct dwarf_pe_generic_image_section_header *sp = 0;
sp = pep->pe_sectionptr + section_index;
return_section->addr = pep->pe_OptionalHeader.ImageBase +
sp->VirtualAddress;
return_section->type = 0;
/* SizeOfRawData can be rounded or truncated,
use VirtualSize for the real analog of Elf
section size. */
return_section->size = sp->VirtualSize;
return_section->name = sp->dwarfsectname;
return_section->link = 0;
return_section->info = 0;
return_section->entrysize = 0;
return DW_DLV_OK;
}
return DW_DLV_NO_ENTRY;
}
static int
load_optional_header32(dwarf_pe_object_access_internals_t *pep,
Dwarf_Unsigned offset, int*errcode)
{
int res = 0;
IMAGE_OPTIONAL_HEADER32_dw hdr;
pep->pe_optional_header_size = sizeof(IMAGE_OPTIONAL_HEADER32_dw);
if ((pep->pe_optional_header_size + offset) >
pep->pe_filesize) {
*errcode = DW_DLE_FILE_TOO_SMALL;
return DW_DLV_ERROR;
}
res = _dwarf_object_read_random(pep->pe_fd,
(char *)&hdr,
(off_t)offset, sizeof(IMAGE_OPTIONAL_HEADER32_dw),
(off_t)pep->pe_filesize,
errcode);
if (res != DW_DLV_OK) {
return res;
}
/* This is a subset of fields. */
ASNAR(pep->pe_copy_word,pep->pe_OptionalHeader.Magic,
hdr.Magic);
pep->pe_OptionalHeader.MajorLinkerVersion= hdr.MajorLinkerVersion;
pep->pe_OptionalHeader.MinorLinkerVersion= hdr.MinorLinkerVersion;
ASNAR(pep->pe_copy_word,pep->pe_OptionalHeader.ImageBase,
hdr.ImageBase);
ASNAR(pep->pe_copy_word,pep->pe_OptionalHeader.SizeOfCode,
hdr.SizeOfCode);
ASNAR(pep->pe_copy_word,pep->pe_OptionalHeader.SizeOfImage,
hdr.SizeOfImage);
ASNAR(pep->pe_copy_word,pep->pe_OptionalHeader.SizeOfHeaders,
hdr.SizeOfHeaders);
pep->pe_OptionalHeader.SizeOfDataDirEntry =
sizeof(IMAGE_DATA_DIRECTORY_dw);
return DW_DLV_OK;
}
static int
load_optional_header64(dwarf_pe_object_access_internals_t *pep,
Dwarf_Unsigned offset, int*errcode )
{
IMAGE_OPTIONAL_HEADER64_dw hdr;
int res = 0;
pep->pe_optional_header_size = sizeof(IMAGE_OPTIONAL_HEADER64_dw);
if ((pep->pe_optional_header_size + offset) >
pep->pe_filesize) {
*errcode = DW_DLE_FILE_TOO_SMALL;
return DW_DLV_ERROR;
}
res = _dwarf_object_read_random(pep->pe_fd,
(char *)&hdr,
(off_t)offset, sizeof(IMAGE_OPTIONAL_HEADER64_dw),
(off_t)pep->pe_filesize,
errcode);
if (res != DW_DLV_OK) {
return res;
}
/* This is a subset of fields. */
ASNAR(pep->pe_copy_word,pep->pe_OptionalHeader.Magic,
hdr.Magic);
pep->pe_OptionalHeader.MajorLinkerVersion= hdr.MajorLinkerVersion;
pep->pe_OptionalHeader.MinorLinkerVersion= hdr.MinorLinkerVersion;
ASNAR(pep->pe_copy_word,pep->pe_OptionalHeader.ImageBase,
hdr.ImageBase);
ASNAR(pep->pe_copy_word,pep->pe_OptionalHeader.SizeOfCode,
hdr.SizeOfCode);
ASNAR(pep->pe_copy_word,pep->pe_OptionalHeader.SizeOfImage,
hdr.SizeOfImage);
ASNAR(pep->pe_copy_word,pep->pe_OptionalHeader.SizeOfHeaders,
hdr.SizeOfHeaders);
pep->pe_OptionalHeader.SizeOfDataDirEntry =
sizeof(IMAGE_DATA_DIRECTORY_dw);
return DW_DLV_OK;
}
static int
pe_load_section (void *obj, Dwarf_Half section_index,
Dwarf_Small **return_data, int *error)
{
dwarf_pe_object_access_internals_t *pep =
(dwarf_pe_object_access_internals_t*)(obj);
if (0 < section_index &&
section_index < pep->pe_section_count) {
int res = 0;
struct dwarf_pe_generic_image_section_header *sp =
pep->pe_sectionptr + section_index;
Dwarf_Unsigned read_length = 0;
if(sp->loaded_data) {
*return_data = sp->loaded_data;
return DW_DLV_OK;
}
if (!sp->VirtualSize) {
return DW_DLV_NO_ENTRY;
}
read_length = sp->SizeOfRawData;
if(sp->VirtualSize < read_length) {
/* Don't read padding that wasn't allocated in memory */
read_length = sp->VirtualSize;
}
if ((read_length + sp->PointerToRawData) >
pep->pe_filesize) {
*error = DW_DLE_FILE_TOO_SMALL;
return DW_DLV_ERROR;
}
/* VirtualSize > SizeOfRawData if trailing zeros
in the section were not written to disc.
Malloc enough for the whole section, read in
the bytes we have. */
sp->loaded_data = malloc((size_t)sp->VirtualSize);
if(!sp->loaded_data) {
*error = DW_DLE_ALLOC_FAIL;
return DW_DLV_ERROR;
}
res = _dwarf_object_read_random(pep->pe_fd,
(char *)sp->loaded_data,
(off_t)sp->PointerToRawData, (size_t)read_length,
(off_t)pep->pe_filesize,
error);
if (res != DW_DLV_OK) {
free(sp->loaded_data);
sp->loaded_data = 0;
return res;
}
if(sp->VirtualSize > read_length) {
/* Zero space that was allocated but
truncated from the file */
memset(sp->loaded_data + read_length, 0,
(size_t)(sp->VirtualSize - read_length));
}
*return_data = sp->loaded_data;
return DW_DLV_OK;
}
return DW_DLV_NO_ENTRY;
}
void
_dwarf_destruct_pe_access(
struct Dwarf_Obj_Access_Interface_s *aip)
{
dwarf_pe_object_access_internals_t *pep = 0;
Dwarf_Unsigned i = 0;
if (!aip) {
return;
}
pep = (dwarf_pe_object_access_internals_t*)(aip->object);
if (pep->pe_destruct_close_fd && pep->pe_fd !=-1) {
close(pep->pe_fd);
pep->pe_fd = -1;
}
free((char *)pep->pe_path);
pep->pe_path = 0;
if (pep->pe_sectionptr) {
struct dwarf_pe_generic_image_section_header *sp = 0;
sp = pep->pe_sectionptr;
for( i=0; i < pep->pe_section_count; ++i,++sp) {
if (sp->loaded_data) {
free(sp->loaded_data);
sp->loaded_data = 0;
}
free(sp->name);
sp->name = 0;
free(sp->dwarfsectname);
sp->dwarfsectname = 0;
}
free(pep->pe_sectionptr);
pep->pe_section_count = 0;
}
free(pep->pe_string_table);
pep->pe_string_table = 0;
free(pep);
free(aip);
return;
}
static int
dwarf_pe_load_dwarf_section_headers(
dwarf_pe_object_access_internals_t *pep,int *errcode)
{
Dwarf_Unsigned i = 0;
Dwarf_Unsigned input_count =
pep->pe_FileHeader.NumberOfSections;
Dwarf_Unsigned offset_in_input = pep->pe_section_table_offset;
Dwarf_Unsigned section_hdr_size = sizeof(IMAGE_SECTION_HEADER_dw);
struct dwarf_pe_generic_image_section_header *sec_outp = 0;
Dwarf_Unsigned cur_offset = offset_in_input;
Dwarf_Unsigned past_end_hdrs = offset_in_input +
section_hdr_size*input_count;
/* internal sections include null initial section */
pep->pe_section_count = input_count+1;
if (past_end_hdrs > pep->pe_filesize) {
*errcode = DW_DLE_FILE_TOO_SMALL;
return DW_DLV_ERROR;
}
if (!offset_in_input) {
*errcode = DW_DLE_PE_OFFSET_BAD;
return DW_DLV_ERROR;
}
pep->pe_sectionptr =
(struct dwarf_pe_generic_image_section_header * )
calloc((size_t)pep->pe_section_count,
sizeof(struct dwarf_pe_generic_image_section_header));
if (!pep->pe_sectionptr) {
*errcode = DW_DLE_ALLOC_FAIL;
return DW_DLV_ERROR;
}
sec_outp = pep->pe_sectionptr;
sec_outp->name = strdup("");
sec_outp->dwarfsectname = strdup("");
sec_outp++;
for ( ; i < input_count;
++i, cur_offset += section_hdr_size, sec_outp++) {
int res = 0;
IMAGE_SECTION_HEADER_dw filesect;
char safe_name[IMAGE_SIZEOF_SHORT_NAME +1];
const char *expname = 0;
res = _dwarf_object_read_random(pep->pe_fd,
(char *)&filesect,(off_t)cur_offset,
sizeof(filesect),
(off_t)pep->pe_filesize,
errcode);
if (res != DW_DLV_OK) {
return res;
}
/* The following is safe. filesect.Name is
IMAGE_SIZEOF_SHORT_NAME bytes long and may
not (not sure) have a NUL terminator. */
strncpy(safe_name,filesect.Name,IMAGE_SIZEOF_SHORT_NAME);
/* Then add NUL terminator. */
safe_name[IMAGE_SIZEOF_SHORT_NAME] = 0;
sec_outp->name = strdup(safe_name);
res = pe_section_name_get(pep,
safe_name,&expname,errcode);
if (res != DW_DLV_OK) {
return res;
}
if (expname) {
sec_outp->dwarfsectname = strdup(expname);
} else {
sec_outp->dwarfsectname = strdup("<sec name missing>");
}
if ( !sec_outp->name || !sec_outp->dwarfsectname) {
*errcode = DW_DLE_ALLOC_FAIL;
return DW_DLV_ERROR;
}
sec_outp->SecHeaderOffset = cur_offset;
ASNAR(pep->pe_copy_word,sec_outp->VirtualSize,
filesect.Misc.VirtualSize);
ASNAR(pep->pe_copy_word,sec_outp->VirtualAddress,
filesect.VirtualAddress);
ASNAR(pep->pe_copy_word,sec_outp->SizeOfRawData,
filesect.SizeOfRawData);
ASNAR(pep->pe_copy_word,sec_outp->PointerToRawData,
filesect.PointerToRawData);
if(sec_outp->SizeOfRawData > pep->pe_filesize ||
sec_outp->PointerToRawData > pep->pe_filesize ||
(sec_outp->SizeOfRawData+
sec_outp->PointerToRawData > pep->pe_filesize)) {
*errcode = DW_DLE_FILE_TOO_SMALL;
return DW_DLV_ERROR;
}
ASNAR(pep->pe_copy_word,sec_outp->PointerToRelocations,
filesect.PointerToRelocations);
ASNAR(pep->pe_copy_word,sec_outp->PointerToLinenumbers,
filesect.PointerToLinenumbers);
ASNAR(pep->pe_copy_word,sec_outp->NumberOfRelocations,
filesect.NumberOfRelocations);
ASNAR(pep->pe_copy_word,sec_outp->NumberOfLinenumbers,
filesect.NumberOfLinenumbers);
ASNAR(pep->pe_copy_word,sec_outp->Characteristics,
filesect.Characteristics);
/* sec_outp->loaded data set when we load a section */
}
return DW_DLV_OK;
}
static int
dwarf_load_pe_sections(
dwarf_pe_object_access_internals_t *pep,int *errcode)
{
struct dos_header_dw dhinmem;
IMAGE_FILE_HEADER_dw ifh;
void (*word_swap) (void *, const void *, unsigned long);
unsigned locendian = 0;
int res = 0;
Dwarf_Unsigned dos_sig = 0;
Dwarf_Unsigned nt_address = 0;
char nt_sig_array[4];
unsigned long nt_signature = 0;
if ( (sizeof(ifh) + sizeof(dhinmem)) >= pep->pe_filesize) {
/* corrupt object. */
*errcode = DW_DLE_PE_SIZE_SMALL;
return DW_DLV_ERROR;
}
res = _dwarf_object_read_random(pep->pe_fd,(char *)&dhinmem,
0, sizeof(dhinmem),(off_t)pep->pe_filesize, errcode);
if (res != DW_DLV_OK) {
return res;
}
dos_sig = magic_copy((char *)dhinmem.dh_mz,
sizeof(dhinmem.dh_mz));
if (dos_sig == IMAGE_DOS_SIGNATURE_dw) {
/* IMAGE_DOS_SIGNATURE_dw assumes bytes reversed by little-endian
load, so we intrepet a match the other way. */
/* BIG ENDIAN. From looking at hex characters in object */
#ifdef WORDS_BIGENDIAN
word_swap = _dwarf_memcpy_noswap_bytes;
#else /* LITTLE ENDIAN */
word_swap = _dwarf_memcpy_swap_bytes;
#endif /* LITTLE- BIG-ENDIAN */
locendian = DW_OBJECT_MSB;
} else if (dos_sig == IMAGE_DOS_REVSIGNATURE_dw) {
/* raw load, so intrepet a match the other way. */
/* LITTLE ENDIAN */
#ifdef WORDS_BIGENDIAN
word_swap = _dwarf_memcpy_swap_bytes;
#else /* LITTLE ENDIAN */
word_swap = _dwarf_memcpy_noswap_bytes;
#endif /* LITTLE- BIG-ENDIAN */
locendian = DW_OBJECT_LSB;
} else {
/* Not dos header not a PE file we recognize */
*errcode = DW_DLE_FILE_WRONG_TYPE;
return DW_DLV_ERROR;
}
if (locendian != pep->pe_endian) {
/* Really this is a coding botch somewhere here,
not an object corruption. */
*errcode = DW_DLE_FILE_WRONG_TYPE;
return DW_DLV_ERROR;
}
pep->pe_copy_word = word_swap;
ASNAR(word_swap,nt_address,dhinmem.dh_image_offset);
if (pep->pe_filesize < (nt_address + sizeof(nt_sig_array))) {
/* The nt_address is really a file offset. */
*errcode = DW_DLE_FILE_TOO_SMALL;
/* Not dos header not a PE file we recognize */
return DW_DLV_ERROR;
}
res = _dwarf_object_read_random(pep->pe_fd,
(char *)&nt_sig_array[0],
(off_t)nt_address, sizeof(nt_sig_array),
(off_t)pep->pe_filesize,errcode);
if (res != DW_DLV_OK) {
return res;
}
{ unsigned long lsig = 0;
ASNAR(word_swap,lsig,nt_sig_array);
nt_signature = lsig;
}
if (nt_signature != IMAGE_NT_SIGNATURE_dw) {
*errcode = DW_DLE_FILE_WRONG_TYPE;
return DW_DLV_ERROR;
}
pep->pe_nt_header_offset = nt_address + SIZEOFT32;
if (pep->pe_filesize < (pep->pe_nt_header_offset +
sizeof(ifh))) {
*errcode = DW_DLE_FILE_TOO_SMALL;
/* Not image header not a PE file we recognize */
return DW_DLV_ERROR;
}
res = _dwarf_object_read_random(pep->pe_fd,(char *)&ifh,
(off_t)pep->pe_nt_header_offset, sizeof(ifh),
(off_t)pep->pe_filesize,errcode);
if (res != DW_DLV_OK) {
return res;
}
ASNAR(word_swap,pep->pe_FileHeader.Machine,ifh.Machine);
ASNAR(word_swap,pep->pe_FileHeader.NumberOfSections,
ifh.NumberOfSections);
ASNAR(word_swap,pep->pe_FileHeader.TimeDateStamp,
ifh.TimeDateStamp);
ASNAR(word_swap,pep->pe_FileHeader.PointerToSymbolTable,
ifh.PointerToSymbolTable);
ASNAR(word_swap,pep->pe_FileHeader.NumberOfSymbols,
ifh.NumberOfSymbols);
ASNAR(word_swap,pep->pe_FileHeader.SizeOfOptionalHeader,
ifh.SizeOfOptionalHeader);
ASNAR(word_swap,pep->pe_FileHeader.Characteristics,
ifh.Characteristics);
pep->pe_optional_header_offset = pep->pe_nt_header_offset+
sizeof(ifh);
if (pep->pe_offsetsize == 32) {
res = load_optional_header32(pep,
pep->pe_optional_header_offset,errcode);
pep->pe_optional_header_size = sizeof(IMAGE_OPTIONAL_HEADER32_dw);
} else if (pep->pe_offsetsize == 64) {
res = load_optional_header64(pep,
pep->pe_optional_header_offset,errcode);
pep->pe_optional_header_size = sizeof(IMAGE_OPTIONAL_HEADER64_dw);
} else {
*errcode = DW_DLE_OFFSET_SIZE;
return DW_DLV_ERROR;
}
if (res != DW_DLV_OK) {
return res;
}
pep->pe_section_table_offset = pep->pe_optional_header_offset
+ pep->pe_optional_header_size;
pep->pe_symbol_table_offset =
pep->pe_FileHeader.PointerToSymbolTable;
if (pep->pe_symbol_table_offset >= pep->pe_filesize) {
*errcode = DW_DLE_OFFSET_SIZE;
return DW_DLV_ERROR;
}
if (pep->pe_symbol_table_offset) {
pep->pe_string_table_offset =
pep->pe_symbol_table_offset +
(pep->pe_FileHeader.NumberOfSymbols *
IMAGE_SIZEOF_SYMBOL);
}
if (pep->pe_string_table_offset >= pep->pe_filesize) {
*errcode = DW_DLE_OFFSET_SIZE;
pep->pe_string_table_size = 0;
return DW_DLV_ERROR;
}
if (pep->pe_string_table_offset) {
/* https://docs.microsoft.com/en-us/windows/desktop/debug/pe-format#coff-string-table */
/* The first 4 bytes of the string table contain
the size of the string table. */
char size_field[4];
if ((pep->pe_string_table_offset+sizeof(size_field)) >
pep->pe_filesize) {
*errcode = DW_DLE_FILE_TOO_SMALL;
return DW_DLV_ERROR;
}
memset(size_field,0,sizeof(size_field));
res = _dwarf_object_read_random(pep->pe_fd,
(char *)size_field, (off_t)pep->pe_string_table_offset,
sizeof(size_field),
(off_t)pep->pe_filesize,errcode);
if (res != DW_DLV_OK) {
return res;
}
ASNAR(pep->pe_copy_word,pep->pe_string_table_size,
size_field);
if( pep->pe_string_table_size >= pep->pe_filesize ) {
*errcode = DW_DLE_PE_OFFSET_BAD;
return DW_DLV_ERROR;
}
if ((pep->pe_string_table_offset+pep->pe_string_table_size) >
pep->pe_filesize) {
*errcode = DW_DLE_FILE_TOO_SMALL;
return DW_DLV_ERROR;
}
pep->pe_string_table =
(char *)malloc((size_t)pep->pe_string_table_size);
if (!pep->pe_string_table) {
*errcode = DW_DLE_ALLOC_FAIL;
return DW_DLV_ERROR;
}
res = _dwarf_object_read_random(pep->pe_fd,
(char *)pep->pe_string_table,
(off_t)pep->pe_string_table_offset,
(size_t)pep->pe_string_table_size,
(off_t)pep->pe_filesize,errcode);
if (res != DW_DLV_OK) {
free(pep->pe_string_table);
pep->pe_string_table = 0;
return res;
}
}
res = dwarf_pe_load_dwarf_section_headers(pep,errcode);
return res;
}
int
_dwarf_pe_setup(int fd,
char *true_path,
unsigned ftype,
unsigned endian,
unsigned offsetsize,
size_t filesize,
Dwarf_Unsigned access,
unsigned groupnumber,
Dwarf_Handler errhand,
Dwarf_Ptr errarg,
Dwarf_Debug *dbg,Dwarf_Error *error)
{
Dwarf_Obj_Access_Interface *binary_interface = 0;
dwarf_pe_object_access_internals_t *pep = 0;
int res = DW_DLV_OK;
int localerrnum = 0;
res = _dwarf_pe_object_access_init(
fd,
ftype,endian,offsetsize,filesize,access,
&binary_interface,
&localerrnum);
if (res != DW_DLV_OK) {
if (res == DW_DLV_NO_ENTRY) {
return res;
}
_dwarf_error(NULL, error, localerrnum);
return DW_DLV_ERROR;
}
/* allocates and initializes Dwarf_Debug,
generic code */
res = dwarf_object_init_b(binary_interface, errhand, errarg,
groupnumber, dbg, error);
if (res != DW_DLV_OK){
_dwarf_destruct_pe_access(binary_interface);
return res;
}
pep = binary_interface->object;
pep->pe_path = strdup(true_path);
return res;
}
static Dwarf_Obj_Access_Methods pe_methods = {
pe_get_section_info,
pe_get_byte_order,
pe_get_length_size,
pe_get_pointer_size,
pe_get_section_count,
pe_load_section,
0 /* ignore pe relocations. */
};
/* On any error this frees internals. */
static int
_dwarf_pe_object_access_internals_init(
dwarf_pe_object_access_internals_t * internals,
int fd,
unsigned ftype,
unsigned endian,
unsigned offsetsize,
size_t filesize,
UNUSEDARG Dwarf_Unsigned access,
int *errcode)
{
dwarf_pe_object_access_internals_t * intfc = internals;
struct Dwarf_Obj_Access_Interface_s *localdoas = 0;
int res = 0;
/* Must malloc as _dwarf_destruct_pe_access()
forces that due to other uses. */
localdoas = (struct Dwarf_Obj_Access_Interface_s *)
malloc(sizeof(struct Dwarf_Obj_Access_Interface_s));
if (!localdoas) {
free(internals);
*errcode = DW_DLE_ALLOC_FAIL;
return DW_DLV_ERROR;
}
memset(localdoas,0,sizeof(struct Dwarf_Obj_Access_Interface_s));
intfc->pe_ident[0] = 'P';
intfc->pe_ident[1] = '1';
intfc->pe_fd = fd;
intfc->pe_is_64bit = ((offsetsize==64)?TRUE:FALSE);
intfc->pe_offsetsize = offsetsize;
intfc->pe_pointersize = offsetsize;
intfc->pe_filesize = filesize;
intfc->pe_ftype = ftype;
/* pe_path set by caller */
#ifdef WORDS_BIGENDIAN
if (endian == DW_ENDIAN_LITTLE ) {
intfc->pe_copy_word = _dwarf_memcpy_swap_bytes;
intfc->pe_endian = DW_OBJECT_LSB;
} else {
intfc->pe_copy_word = _dwarf_memcpy_noswap_bytes;
intfc->pe_endian = DW_OBJECT_MSB;
}
#else /* LITTLE ENDIAN */
if (endian == DW_ENDIAN_LITTLE ) {
intfc->pe_copy_word = _dwarf_memcpy_noswap_bytes;
intfc->pe_endian = DW_OBJECT_LSB;
} else {
intfc->pe_copy_word = _dwarf_memcpy_swap_bytes;
intfc->pe_endian = DW_OBJECT_MSB;
}
#endif /* LITTLE- BIG-ENDIAN */
res = dwarf_load_pe_sections(intfc,errcode);
if (res != DW_DLV_OK) {
localdoas->object = intfc;
localdoas->methods = 0;
_dwarf_destruct_pe_access(localdoas);
localdoas = 0;
return res;
}
free(localdoas);
localdoas = 0;
return DW_DLV_OK;
}
static int
_dwarf_pe_object_access_init(
int fd,
unsigned ftype,
unsigned endian,
unsigned offsetsize,
size_t filesize,
Dwarf_Unsigned access,
Dwarf_Obj_Access_Interface **binary_interface,
int *localerrnum)
{
int res = 0;
dwarf_pe_object_access_internals_t *internals = 0;
Dwarf_Obj_Access_Interface *intfc = 0;
internals = malloc(sizeof(dwarf_pe_object_access_internals_t));
if (!internals) {
*localerrnum = DW_DLE_ALLOC_FAIL;
/* Impossible case, we hope. Give up. */
return DW_DLV_ERROR;
}
memset(internals,0,sizeof(*internals));
res = _dwarf_pe_object_access_internals_init(internals,
fd,
ftype, endian, offsetsize, filesize,
access,
localerrnum);
if (res != DW_DLV_OK){
/* *err is already set. and the call freed internals */
return DW_DLV_ERROR;
}
intfc = malloc(sizeof(Dwarf_Obj_Access_Interface));
if (!intfc) {
/* Impossible case, we hope. Give up. */
free(internals);
*localerrnum = DW_DLE_ALLOC_FAIL;
return DW_DLV_ERROR;
}
/* Initialize the interface struct */
intfc->object = internals;
intfc->methods = &pe_methods;
*binary_interface = intfc;
return DW_DLV_OK;
}
|