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 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228
|
/*
Copyright (C) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
Portions Copyright (C) 2007-2016 David Anderson. All Rights Reserved.
Portions Copyright 2012 SN Systems Ltd. All rights reserved.
This program is free software; you can redistribute it and/or modify it
under the terms of version 2.1 of the GNU Lesser General Public License
as published by the Free Software Foundation.
This program is distributed in the hope that it would be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Further, this software is distributed without any warranty that it is
free of the rightful claim of any third person regarding infringement
or the like. Any license provided herein, whether implied or
otherwise, applies only to this software file. Patent licenses, if
any, provided herein do not apply to combinations of this program with
other software, or any other product whatsoever.
You should have received a copy of the GNU Lesser General Public
License along with this program; if not, write the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston MA 02110-1301,
USA.
*/
#include "config.h"
#include "dwarf_incl.h"
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h> /* For free() */
#include "dwarf_die_deliv.h"
#include "pro_encode_nm.h"
#define MINBUFLEN 1000
#define TRUE 1
#define FALSE 0
Dwarf_Bool
_dwarf_file_has_debug_fission_cu_index(Dwarf_Debug dbg)
{
if(!dbg) {
return FALSE;
}
if (dbg->de_cu_hashindex_data) {
return TRUE;
}
return FALSE;
}
Dwarf_Bool
_dwarf_file_has_debug_fission_tu_index(Dwarf_Debug dbg)
{
if(!dbg) {
return FALSE;
}
if (dbg->de_tu_hashindex_data ) {
return TRUE;
}
return FALSE;
}
Dwarf_Bool
_dwarf_file_has_debug_fission_index(Dwarf_Debug dbg)
{
if(!dbg) {
return FALSE;
}
if (dbg->de_cu_hashindex_data ||
dbg->de_tu_hashindex_data) {
return 1;
}
return FALSE;
}
int
_dwarf_internal_get_die_comp_dir(Dwarf_Die die, const char **compdir_out,
const char **compname_out,
Dwarf_Error *error)
{
Dwarf_Attribute comp_dir_attr = 0;
Dwarf_Attribute comp_name_attr = 0;
int resattr = 0;
Dwarf_Debug dbg = 0;
dbg = die->di_cu_context->cc_dbg;
resattr = dwarf_attr(die, DW_AT_name, &comp_name_attr, error);
if (resattr == DW_DLV_ERROR) {
return resattr;
}
if (resattr == DW_DLV_OK) {
int cres = DW_DLV_ERROR;
char *name = 0;
cres = dwarf_formstring(comp_name_attr, &name, error);
if (cres == DW_DLV_ERROR) {
dwarf_dealloc(dbg, comp_name_attr, DW_DLA_ATTR);
return cres;
} else if (cres == DW_DLV_OK) {
*compname_out = (const char *)name;
} else {
/* FALL thru */
}
}
if (resattr == DW_DLV_OK) {
dwarf_dealloc(dbg, comp_name_attr, DW_DLA_ATTR);
}
resattr = dwarf_attr(die, DW_AT_comp_dir, &comp_dir_attr, error);
if (resattr == DW_DLV_ERROR) {
return resattr;
}
if (resattr == DW_DLV_OK) {
int cres = DW_DLV_ERROR;
char *cdir = 0;
cres = dwarf_formstring(comp_dir_attr, &cdir, error);
if (cres == DW_DLV_ERROR) {
dwarf_dealloc(dbg, comp_dir_attr, DW_DLA_ATTR);
return cres;
} else if (cres == DW_DLV_OK) {
*compdir_out = (const char *) cdir;
} else {
/* FALL thru */
}
}
if (resattr == DW_DLV_OK) {
dwarf_dealloc(dbg, comp_dir_attr, DW_DLA_ATTR);
}
return resattr;
}
/* Given a form, and a pointer to the bytes encoding
a value of that form, val_ptr, this function returns
the length, in bytes, of a value of that form.
When using this function, check for a return of 0
a recursive DW_FORM_INDIRECT value. */
int
_dwarf_get_size_of_val(Dwarf_Debug dbg,
Dwarf_Unsigned form,
Dwarf_Half cu_version,
Dwarf_Half address_size,
Dwarf_Small * val_ptr,
int v_length_size,
Dwarf_Unsigned *size_out,
Dwarf_Small *section_end_ptr,
Dwarf_Error*error)
{
Dwarf_Unsigned length = 0;
Dwarf_Word leb128_length = 0;
Dwarf_Unsigned form_indirect = 0;
Dwarf_Unsigned ret_value = 0;
switch (form) {
/* When we encounter a FORM here that
we know about but forgot to enter here,
we had better not just continue.
Usually means we forgot to update this function
when implementing form handling of a new FORM.
Disaster results from using a bogus value,
so generate error. */
default:
_dwarf_error(dbg,error,DW_DLE_DEBUG_FORM_HANDLING_INCOMPLETE);
return DW_DLV_ERROR;
case 0: return DW_DLV_OK;
case DW_FORM_GNU_ref_alt:
case DW_FORM_GNU_strp_alt:
case DW_FORM_strp_sup:
*size_out = v_length_size;
return DW_DLV_OK;
case DW_FORM_addr:
if (address_size) {
*size_out = address_size;
} else {
/* This should never happen, address_size should be set. */
*size_out = dbg->de_pointer_size;
}
return DW_DLV_OK;
case DW_FORM_ref_sig8:
*size_out = 8;
/* sizeof Dwarf_Sig8 */
return DW_DLV_OK;
/* DWARF2 was wrong on the size of the attribute for
DW_FORM_ref_addr. We assume compilers are using the
corrected DWARF3 text (for 32bit pointer target objects pointer and
offsets are the same size anyway).
It is clear (as of 2014) that for 64bit folks used
the V2 spec in the way V2 was
written, so the ref_addr has to account for that.*/
case DW_FORM_ref_addr:
if (cu_version == DW_CU_VERSION2) {
*size_out = address_size;
} else {
*size_out = v_length_size;
}
return DW_DLV_OK;
case DW_FORM_block1: {
ptrdiff_t sizeasptrdiff = 0;
if (val_ptr >= section_end_ptr) {
_dwarf_error(dbg,error,DW_DLE_FORM_BLOCK_LENGTH_ERROR);
return DW_DLV_ERROR;
}
ret_value = *(Dwarf_Small *) val_ptr;
sizeasptrdiff = (ptrdiff_t)ret_value;
if (sizeasptrdiff > (section_end_ptr - val_ptr) ||
sizeasptrdiff < 0) {
_dwarf_error(dbg,error,DW_DLE_FORM_BLOCK_LENGTH_ERROR);
return DW_DLV_ERROR;
}
*size_out = ret_value +1;
}
return DW_DLV_OK;
case DW_FORM_block2: {
ptrdiff_t sizeasptrdiff = 0;
READ_UNALIGNED_CK(dbg, ret_value, Dwarf_Unsigned,
val_ptr, sizeof(Dwarf_Half),error,section_end_ptr);
sizeasptrdiff = (ptrdiff_t)ret_value;
if (sizeasptrdiff > (section_end_ptr - val_ptr) ||
sizeasptrdiff < 0) {
_dwarf_error(dbg,error,DW_DLE_FORM_BLOCK_LENGTH_ERROR);
return DW_DLV_ERROR;
}
*size_out = ret_value + sizeof(Dwarf_Half);
}
return DW_DLV_OK;
case DW_FORM_block4: {
ptrdiff_t sizeasptrdiff = 0;
READ_UNALIGNED_CK(dbg, ret_value, Dwarf_Unsigned,
val_ptr, sizeof(Dwarf_ufixed),
error,section_end_ptr);
sizeasptrdiff = (ptrdiff_t)ret_value;
if (sizeasptrdiff > (section_end_ptr - val_ptr) ||
sizeasptrdiff < 0) {
_dwarf_error(dbg,error,DW_DLE_FORM_BLOCK_LENGTH_ERROR);
return DW_DLV_ERROR;
}
*size_out = ret_value + sizeof(Dwarf_ufixed);
}
return DW_DLV_OK;
case DW_FORM_data1:
*size_out = 1;
return DW_DLV_OK;
case DW_FORM_data2:
*size_out = 2;
return DW_DLV_OK;
case DW_FORM_data4:
*size_out = 4;
return DW_DLV_OK;
case DW_FORM_data8:
*size_out = 8;
return DW_DLV_OK;
case DW_FORM_string: {
int res = 0;
res = _dwarf_check_string_valid(dbg,val_ptr,
val_ptr,
section_end_ptr,
DW_DLE_FORM_STRING_BAD_STRING,
error);
if ( res != DW_DLV_OK) {
return res;
}
}
*size_out = strlen((char *) val_ptr) + 1;
return DW_DLV_OK;
case DW_FORM_block:
case DW_FORM_exprloc: {
DECODE_LEB128_UWORD_LEN_CK(val_ptr,length,leb128_length,
dbg,error,section_end_ptr);
*size_out = length + leb128_length;
return DW_DLV_OK;;
}
case DW_FORM_flag_present:
*size_out = 0;
return DW_DLV_OK;
case DW_FORM_flag:
*size_out = 1;
return DW_DLV_OK;
case DW_FORM_sec_offset:
/* If 32bit dwarf, is 4. Else is 64bit dwarf and is 8. */
*size_out = v_length_size;
return DW_DLV_OK;
case DW_FORM_ref_udata: {
UNUSEDARG Dwarf_Unsigned v = 0;
/* Discard the decoded value, we just want the length
of the value. */
DECODE_LEB128_UWORD_LEN_CK(val_ptr,v,leb128_length,
dbg,error,section_end_ptr);
*size_out = leb128_length;
return DW_DLV_OK;;
}
case DW_FORM_indirect:
{
Dwarf_Word indir_len = 0;
int res = 0;
Dwarf_Unsigned real_form_len = 0;
DECODE_LEB128_UWORD_LEN_CK(val_ptr,form_indirect,indir_len,
dbg,error,section_end_ptr);
if (form_indirect == DW_FORM_indirect) {
/* We are in big trouble: The true form
of DW_FORM_indirect is
DW_FORM_indirect? Nonsense. Should
never happen. */
_dwarf_error(dbg,error,DW_DLE_NESTED_FORM_INDIRECT_ERROR);
return DW_DLV_ERROR;
}
res = _dwarf_get_size_of_val(dbg,
form_indirect,
cu_version,
address_size,
val_ptr + indir_len,
v_length_size,
&real_form_len,
section_end_ptr,
error);
if(res != DW_DLV_OK) {
return res;
}
*size_out = indir_len + real_form_len;
return DW_DLV_OK;
}
case DW_FORM_ref1:
*size_out = 1;
return DW_DLV_OK;
case DW_FORM_ref2:
*size_out = 2;
return DW_DLV_OK;
case DW_FORM_ref4:
*size_out = 4;
return DW_DLV_OK;
case DW_FORM_ref8:
*size_out = 8;
return DW_DLV_OK;
case DW_FORM_sdata: {
/* Discard the decoded value, we just want the length
of the value. */
UNUSEDARG Dwarf_Signed v = 0;
/* Discard the decoded value, we just want the length
of the value. */
DECODE_LEB128_SWORD_LEN_CK(val_ptr,v,leb128_length,
dbg,error,section_end_ptr);
*size_out = leb128_length;
return DW_DLV_OK;
}
case DW_FORM_addrx:
case DW_FORM_GNU_addr_index:
case DW_FORM_strx:
case DW_FORM_GNU_str_index: {
UNUSEDARG Dwarf_Unsigned v = 0;
DECODE_LEB128_UWORD_LEN_CK(val_ptr,v,leb128_length,
dbg,error,section_end_ptr);
*size_out = leb128_length;
return DW_DLV_OK;
}
case DW_FORM_strp:
*size_out = v_length_size;
return DW_DLV_OK;
case DW_FORM_udata: {
/* Discard the decoded value, we just want the length
of the value. */
UNUSEDARG Dwarf_Unsigned v = 0;
DECODE_LEB128_UWORD_LEN_CK(val_ptr,v,leb128_length,
dbg,error,section_end_ptr);
*size_out = leb128_length;
return DW_DLV_OK;
}
}
}
/* We allow an arbitrary number of HT_MULTIPLE entries
before resizing. It seems up to 20 or 30
would work nearly as well.
We could have a different resize multiple than 'resize now'
test multiple, but for now we don't do that. */
#define HT_MULTIPLE 8
/* Copy the old entries, updating each to be in
a new list. Don't delete anything. Leave the
htin with stale data. */
static void
copy_abbrev_table_to_new_table(Dwarf_Hash_Table htin,
Dwarf_Hash_Table htout)
{
Dwarf_Hash_Table_Entry entry_in = htin->tb_entries;
unsigned entry_in_count = htin->tb_table_entry_count;
Dwarf_Hash_Table_Entry entry_out = htout->tb_entries;
unsigned entry_out_count = htout->tb_table_entry_count;
unsigned k = 0;
for (; k < entry_in_count; ++k,++entry_in) {
Dwarf_Abbrev_List listent = entry_in->at_head;
Dwarf_Abbrev_List nextlistent = 0;
for (; listent ; listent = nextlistent) {
unsigned newtmp = listent->abl_code;
unsigned newhash = newtmp%entry_out_count;
Dwarf_Hash_Table_Entry e;
nextlistent = listent->abl_next;
e = entry_out+newhash;
/* Move_entry_to_new_hash. This reverses the
order of the entries, effectively, but
that does not seem significant. */
listent->abl_next = e->at_head;
e->at_head = listent;
htout->tb_total_abbrev_count++;
}
}
}
/* We allow zero form here, end of list. */
int
_dwarf_valid_form_we_know(UNUSEDARG Dwarf_Debug dbg,
Dwarf_Unsigned at_form,
Dwarf_Unsigned at_name)
{
if(at_form == 0 && at_name == 0) {
return TRUE;
}
if (at_name == 0) {
return FALSE;
}
if (at_form <= DW_FORM_ref_sig8) {
return TRUE;
}
if (at_form == DW_FORM_GNU_addr_index ||
at_form == DW_FORM_GNU_str_index ||
at_form == DW_FORM_GNU_ref_alt ||
at_form == DW_FORM_GNU_strp_alt) {
return TRUE;
}
return FALSE;
}
/* This function returns a pointer to a Dwarf_Abbrev_List_s
struct for the abbrev with the given code. It puts the
struct on the appropriate hash table. It also adds all
the abbrev between the last abbrev added and this one to
the hash table. In other words, the .debug_abbrev section
is scanned sequentially from the top for an abbrev with
the given code. All intervening abbrevs are also put
into the hash table.
This function hashes the given code, and checks the chain
at that hash table entry to see if a Dwarf_Abbrev_List_s
with the given code exists. If yes, it returns a pointer
to that struct. Otherwise, it scans the .debug_abbrev
section from the last byte scanned for that CU till either
an abbrev with the given code is found, or an abbrev code
of 0 is read. It puts Dwarf_Abbrev_List_s entries for all
abbrev's read till that point into the hash table. The
hash table contains both a head pointer and a tail pointer
for each entry.
While the lists can move and entries can be moved between
lists on reallocation, any given Dwarf_Abbrev_list entry
never moves once allocated, so the pointer is safe to return.
See also dwarf_get_abbrev() in dwarf_abbrev.c.
Returns NULL on error. */
int
_dwarf_get_abbrev_for_code(Dwarf_CU_Context cu_context, Dwarf_Unsigned code,
Dwarf_Abbrev_List *list_out,
Dwarf_Error *error)
{
Dwarf_Debug dbg = cu_context->cc_dbg;
Dwarf_Hash_Table hash_table_base = cu_context->cc_abbrev_hash_table;
Dwarf_Hash_Table_Entry entry_base = 0;
Dwarf_Hash_Table_Entry entry_cur = 0;
Dwarf_Word hash_num = 0;
Dwarf_Unsigned abbrev_code = 0;
Dwarf_Unsigned abbrev_tag = 0;
Dwarf_Unsigned attr_name = 0;
Dwarf_Unsigned attr_form = 0;
Dwarf_Abbrev_List hash_abbrev_entry = 0;
Dwarf_Abbrev_List inner_list_entry = 0;
Dwarf_Hash_Table_Entry inner_hash_entry = 0;
Dwarf_Byte_Ptr abbrev_ptr = 0;
Dwarf_Byte_Ptr end_abbrev_ptr = 0;
unsigned hashable_val = 0;
if (!hash_table_base->tb_entries) {
hash_table_base->tb_table_entry_count = HT_MULTIPLE;
hash_table_base->tb_total_abbrev_count= 0;
hash_table_base->tb_entries =
(struct Dwarf_Hash_Table_Entry_s *)_dwarf_get_alloc(dbg,
DW_DLA_HASH_TABLE_ENTRY,
hash_table_base->tb_table_entry_count);
if (!hash_table_base->tb_entries) {
return DW_DLV_NO_ENTRY;
}
} else if (hash_table_base->tb_total_abbrev_count >
( hash_table_base->tb_table_entry_count * HT_MULTIPLE) ) {
struct Dwarf_Hash_Table_s newht;
/* Effectively multiplies by >= HT_MULTIPLE */
newht.tb_table_entry_count = hash_table_base->tb_total_abbrev_count;
newht.tb_total_abbrev_count = 0;
newht.tb_entries =
(struct Dwarf_Hash_Table_Entry_s *)_dwarf_get_alloc(dbg,
DW_DLA_HASH_TABLE_ENTRY,
newht.tb_table_entry_count);
if (!newht.tb_entries) {
return DW_DLV_NO_ENTRY;
}
/* Copy the existing entries to the new table,
rehashing each. */
copy_abbrev_table_to_new_table(hash_table_base, &newht);
/* Dealloc only the entries hash table array, not the lists
of things pointed to by a hash table entry array. */
dwarf_dealloc(dbg, hash_table_base->tb_entries,DW_DLA_HASH_TABLE_ENTRY);
hash_table_base->tb_entries = 0;
/* Now overwrite the existing table descriptor with
the new, newly valid, contents. */
*hash_table_base = newht;
} /* Else is ok as is, add entry */
hashable_val = code;
hash_num = hashable_val %
hash_table_base->tb_table_entry_count;
entry_base = hash_table_base->tb_entries;
entry_cur = entry_base + hash_num;
/* Determine if the 'code' is the list of synonyms already. */
for (hash_abbrev_entry = entry_cur->at_head;
hash_abbrev_entry != NULL && hash_abbrev_entry->abl_code != code;
hash_abbrev_entry = hash_abbrev_entry->abl_next);
if (hash_abbrev_entry != NULL) {
/* This returns a pointer to an abbrev list entry, not
the list itself. */
*list_out = hash_abbrev_entry;
return DW_DLV_OK;
}
if (cu_context->cc_last_abbrev_ptr) {
abbrev_ptr = cu_context->cc_last_abbrev_ptr;
end_abbrev_ptr = cu_context->cc_last_abbrev_endptr;
} else {
/* This is ok because cc_abbrev_offset includes DWP
offset if appropriate. */
abbrev_ptr = dbg->de_debug_abbrev.dss_data +
cu_context->cc_abbrev_offset;
if (cu_context->cc_dwp_offsets.pcu_type) {
/* In a DWP the abbrevs
for this context are known quite precisely. */
Dwarf_Unsigned size = 0;
/* Ignore the offset returned. Already in cc_abbrev_offset. */
_dwarf_get_dwp_extra_offset(&cu_context->cc_dwp_offsets,
DW_SECT_ABBREV,&size);
/* ASSERT: size != 0 */
end_abbrev_ptr = abbrev_ptr + size;
} else {
end_abbrev_ptr = dbg->de_debug_abbrev.dss_data +
dbg->de_debug_abbrev.dss_size;
}
}
/* End of abbrev's as we are past the end entirely.
This can happen,though it seems wrong.
Or we are at the end of the data block,
which we also take as
meaning done with abbrevs for this CU. An abbreviations table
is supposed to end with a zero byte. Not ended by end
of data block. But we are allowing what is possibly a bit
more flexible end policy here. */
if (abbrev_ptr >= end_abbrev_ptr) {
return DW_DLV_NO_ENTRY;
}
/* End of abbrev's for this cu, since abbrev code is 0. */
if (*abbrev_ptr == 0) {
return DW_DLV_NO_ENTRY;
}
do {
unsigned new_hashable_val = 0;
Dwarf_Off abb_goff = 0;
Dwarf_Unsigned atcount = 0;
abb_goff = abbrev_ptr - dbg->de_debug_abbrev.dss_data;
DECODE_LEB128_UWORD_CK(abbrev_ptr, abbrev_code,
dbg,error,end_abbrev_ptr);
DECODE_LEB128_UWORD_CK(abbrev_ptr, abbrev_tag,
dbg,error,end_abbrev_ptr);
if (abbrev_ptr >= end_abbrev_ptr) {
_dwarf_error(dbg, error, DW_DLE_ABBREV_OFF_END);
return DW_DLV_ERROR;
}
inner_list_entry = (Dwarf_Abbrev_List)
_dwarf_get_alloc(cu_context->cc_dbg, DW_DLA_ABBREV_LIST, 1);
if (inner_list_entry == NULL) {
_dwarf_error(dbg, error, DW_DLE_ALLOC_FAIL);
return DW_DLV_ERROR;
}
new_hashable_val = abbrev_code;
hash_num = new_hashable_val %
hash_table_base->tb_table_entry_count;
inner_hash_entry = entry_base + hash_num;
/* Move_entry_to_new_hash */
inner_list_entry->abl_next = inner_hash_entry->at_head;
inner_hash_entry->at_head = inner_list_entry;
hash_table_base->tb_total_abbrev_count++;
inner_list_entry->abl_code = abbrev_code;
inner_list_entry->abl_tag = abbrev_tag;
inner_list_entry->abl_has_child = *(abbrev_ptr++);
inner_list_entry->abl_abbrev_ptr = abbrev_ptr;
inner_list_entry->abl_goffset = abb_goff;
hash_table_base->tb_total_abbrev_count++;
/* Cycle thru the abbrev content, ignoring the content except
to find the end of the content. */
do {
DECODE_LEB128_UWORD_CK(abbrev_ptr, attr_name,
dbg,error,end_abbrev_ptr);
DECODE_LEB128_UWORD_CK(abbrev_ptr, attr_form,
dbg,error,end_abbrev_ptr);
if (!_dwarf_valid_form_we_know(dbg,attr_form,attr_name)) {
_dwarf_error(dbg,error,DW_DLE_UNKNOWN_FORM);
return DW_DLV_ERROR;
}
atcount++;
} while (attr_name != 0 && attr_form != 0);
/* We counted one too high, by counting the NUL
byte pair at end of list. So decrement. */
inner_list_entry->abl_count = atcount-1;
/* The abbreviations table ends with an entry with a single
byte of zero for the abbreviation code.
Padding bytes following that zero are allowed, but
here we simply stop looking past that zero abbrev.
We also stop looking if the block/section ends,
though the DWARF2 and later standards do not specifically
allow section/block end to terminate an abbreviations list. */
} while ((abbrev_ptr < end_abbrev_ptr) &&
*abbrev_ptr != 0 && abbrev_code != code);
cu_context->cc_last_abbrev_ptr = abbrev_ptr;
cu_context->cc_last_abbrev_endptr = end_abbrev_ptr;
if(abbrev_code == code) {
*list_out = inner_list_entry;
return DW_DLV_OK;
}
return DW_DLV_NO_ENTRY;
}
/*
We check that:
areaptr <= strptr.
a NUL byte (*p) exists at p < end.
and return DW_DLV_ERROR if a check fails.
de_assume_string_in_bounds
*/
int
_dwarf_check_string_valid(Dwarf_Debug dbg,void *areaptr,
void *strptr, void *areaendptr,
int suggested_error,
Dwarf_Error*error)
{
Dwarf_Small *start = areaptr;
Dwarf_Small *p = strptr;
Dwarf_Small *end = areaendptr;
if (p < start) {
_dwarf_error(dbg,error,suggested_error);
return DW_DLV_ERROR;
}
if (p >= end) {
_dwarf_error(dbg,error,suggested_error);
return DW_DLV_ERROR;
}
if (dbg->de_assume_string_in_bounds) {
/* This NOT the default. But folks can choose
to live dangerously and just assume strings ok. */
return DW_DLV_OK;
}
while (p < end) {
if (*p == 0) {
return DW_DLV_OK;
}
++p;
}
_dwarf_error(dbg,error,DW_DLE_STRING_NOT_TERMINATED);
return DW_DLV_ERROR;
}
/* Return non-zero if the start/end are not valid for the
die's section.
If pastend matches the dss_data+dss_size then
pastend is a pointer that cannot be dereferenced.
But we allow it as valid here, it is normal for
a pointer to point one-past-end in
various circumstances (one must
avoid dereferencing it, of course).
Return 0 if valid. Return 1 if invalid. */
int
_dwarf_reference_outside_section(Dwarf_Die die,
Dwarf_Small * startaddr,
Dwarf_Small * pastend)
{
Dwarf_Debug dbg = 0;
Dwarf_CU_Context contxt = 0;
struct Dwarf_Section_s *sec = 0;
contxt = die->di_cu_context;
dbg = contxt->cc_dbg;
if (die->di_is_info) {
sec = &dbg->de_debug_info;
} else {
sec = &dbg->de_debug_types;
}
if (startaddr < sec->dss_data) {
return 1;
}
if (pastend > (sec->dss_data + sec->dss_size)) {
return 1;
}
return 0;
}
/*
A byte-swapping version of memcpy
for cross-endian use.
Only 2,4,8 should be lengths passed in.
*/
void *
_dwarf_memcpy_swap_bytes(void *s1, const void *s2, size_t len)
{
void *orig_s1 = s1;
unsigned char *targ = (unsigned char *) s1;
const unsigned char *src = (const unsigned char *) s2;
if (len == 4) {
targ[3] = src[0];
targ[2] = src[1];
targ[1] = src[2];
targ[0] = src[3];
} else if (len == 8) {
targ[7] = src[0];
targ[6] = src[1];
targ[5] = src[2];
targ[4] = src[3];
targ[3] = src[4];
targ[2] = src[5];
targ[1] = src[6];
targ[0] = src[7];
} else if (len == 2) {
targ[1] = src[0];
targ[0] = src[1];
}
/* should NOT get below here: is not the intended use */
else if (len == 1) {
targ[0] = src[0];
} else {
memcpy(s1, s2, len);
}
return orig_s1;
}
/* This calculation used to be sprinkled all over.
Now brought to one place.
We try to accurately compute the size of a cu header
given a known cu header location ( an offset in .debug_info
or debug_types). */
/* ARGSUSED */
int
_dwarf_length_of_cu_header(Dwarf_Debug dbg, Dwarf_Unsigned offset,
Dwarf_Bool is_info,
Dwarf_Unsigned *area_length_out,
Dwarf_Error *error)
{
int local_length_size = 0;
int local_extension_size = 0;
Dwarf_Unsigned length = 0;
Dwarf_Unsigned final_size = 0;
Dwarf_Small *section_start =
is_info? dbg->de_debug_info.dss_data:
dbg->de_debug_types.dss_data;
Dwarf_Small *cuptr = section_start + offset;
Dwarf_Unsigned section_length =
is_info? dbg->de_debug_info.dss_size:
dbg->de_debug_types.dss_size;
Dwarf_Small * section_end_ptr =
section_start + section_length;
READ_AREA_LENGTH_CK(dbg, length, Dwarf_Unsigned,
cuptr, local_length_size, local_extension_size,
error,section_length,section_end_ptr);
final_size = local_extension_size + /* initial extension, if present */
local_length_size + /* Size of cu length field. */
sizeof(Dwarf_Half) + /* Size of version stamp field. */
local_length_size + /* Size of abbrev offset field. */
sizeof(Dwarf_Small); /* Size of address size field. */
if (!is_info) {
final_size +=
/* type signature size */
sizeof (Dwarf_Sig8) +
/* type offset size */
local_length_size;
}
*area_length_out = final_size;
return DW_DLV_OK;
}
/* Pretend we know nothing about the CU
and just roughly compute the result. */
Dwarf_Unsigned
_dwarf_length_of_cu_header_simple(Dwarf_Debug dbg,
Dwarf_Bool dinfo)
{
Dwarf_Unsigned finalsize = 0;
finalsize = dbg->de_length_size + /* Size of cu length field. */
sizeof(Dwarf_Half) + /* Size of version stamp field. */
dbg->de_length_size + /* Size of abbrev offset field. */
sizeof(Dwarf_Small); /* Size of address size field. */
if (!dinfo) {
finalsize +=
/* type signature size */
sizeof (Dwarf_Sig8) +
/* type offset size */
dbg->de_length_size;
}
return finalsize;
}
/* Now that we delay loading .debug_info, we need to do the
load in more places. So putting the load
code in one place now instead of replicating it in multiple
places. */
int
_dwarf_load_debug_info(Dwarf_Debug dbg, Dwarf_Error * error)
{
int res = DW_DLV_ERROR;
if (dbg->de_debug_info.dss_data) {
return DW_DLV_OK;
}
res = _dwarf_load_section(dbg, &dbg->de_debug_abbrev,error);
if (res != DW_DLV_OK) {
return res;
}
res = _dwarf_load_section(dbg, &dbg->de_debug_info, error);
return res;
}
int
_dwarf_load_debug_types(Dwarf_Debug dbg, Dwarf_Error * error)
{
int res = DW_DLV_ERROR;
if (dbg->de_debug_types.dss_data) {
return DW_DLV_OK;
}
res = _dwarf_load_section(dbg, &dbg->de_debug_abbrev,error);
if (res != DW_DLV_OK) {
return res;
}
res = _dwarf_load_section(dbg, &dbg->de_debug_types, error);
return res;
}
void
_dwarf_free_abbrev_hash_table_contents(Dwarf_Debug dbg,Dwarf_Hash_Table hash_table)
{
/* A Hash Table is an array with tb_table_entry_count struct
Dwarf_Hash_Table_s entries in the array. */
unsigned hashnum = 0;
for (; hashnum < hash_table->tb_table_entry_count; ++hashnum) {
struct Dwarf_Abbrev_List_s *abbrev = 0;
struct Dwarf_Abbrev_List_s *nextabbrev = 0;
struct Dwarf_Hash_Table_Entry_s *tb = &hash_table->tb_entries[hashnum];
abbrev = tb->at_head;
for (; abbrev; abbrev = nextabbrev) {
nextabbrev = abbrev->abl_next;
abbrev->abl_next = 0;
dwarf_dealloc(dbg, abbrev, DW_DLA_ABBREV_LIST);
}
tb->at_head = 0;
}
/* Frees all the entries at once: an array. */
dwarf_dealloc(dbg,hash_table->tb_entries,DW_DLA_HASH_TABLE_ENTRY);
hash_table->tb_entries = 0;
}
/*
If no die provided the size value returned might be wrong.
If different compilation units have different address sizes
this may not give the correct value in all contexts if the die
pointer is NULL.
If the Elf offset size != address_size
(for example if address_size = 4 but recorded in elf64 object)
this may not give the correct value in all contexts if the die
pointer is NULL.
If the die pointer is non-NULL (in which case it must point to
a valid DIE) this will return the correct size.
*/
int
_dwarf_get_address_size(Dwarf_Debug dbg, Dwarf_Die die)
{
Dwarf_CU_Context context = 0;
Dwarf_Half addrsize = 0;
if (!die) {
return dbg->de_pointer_size;
}
context = die->di_cu_context;
addrsize = context->cc_address_size;
return addrsize;
}
/* Encode val as an unsigned LEB128. */
int dwarf_encode_leb128(Dwarf_Unsigned val, int *nbytes,
char *space, int splen)
{
/* Encode val as an unsigned LEB128. */
return _dwarf_pro_encode_leb128_nm(val,nbytes,space,splen);
}
/* Encode val as a signed LEB128. */
int dwarf_encode_signed_leb128(Dwarf_Signed val, int *nbytes,
char *space, int splen)
{
/* Encode val as a signed LEB128. */
return _dwarf_pro_encode_signed_leb128_nm(val,nbytes,space,splen);
}
struct Dwarf_Printf_Callback_Info_s
dwarf_register_printf_callback( Dwarf_Debug dbg,
struct Dwarf_Printf_Callback_Info_s * newvalues)
{
struct Dwarf_Printf_Callback_Info_s oldval = dbg->de_printf_callback;
if (!newvalues) {
return oldval;
}
if( newvalues->dp_buffer_user_provided) {
if( oldval.dp_buffer_user_provided) {
/* User continues to control the buffer. */
dbg->de_printf_callback = *newvalues;
}else {
/* Switch from our control of buffer to user
control. */
free(oldval.dp_buffer);
oldval.dp_buffer = 0;
dbg->de_printf_callback = *newvalues;
}
} else if (oldval.dp_buffer_user_provided){
/* Switch from user control to our control */
dbg->de_printf_callback = *newvalues;
dbg->de_printf_callback.dp_buffer_len = 0;
dbg->de_printf_callback.dp_buffer= 0;
} else {
/* User does not control the buffer. */
dbg->de_printf_callback = *newvalues;
dbg->de_printf_callback.dp_buffer_len =
oldval.dp_buffer_len;
dbg->de_printf_callback.dp_buffer =
oldval.dp_buffer;
}
return oldval;
}
/* start is a minimum size, but may be zero. */
static void bufferdoublesize(struct Dwarf_Printf_Callback_Info_s *bufdata)
{
char *space = 0;
unsigned int targlen = 0;
if (bufdata->dp_buffer_len == 0) {
targlen = MINBUFLEN;
} else {
targlen = bufdata->dp_buffer_len * 2;
if (targlen < bufdata->dp_buffer_len) {
/* Overflow, we cannot do this doubling. */
return;
}
}
/* Make big enough for a trailing NUL char. */
space = (char *)malloc(targlen+1);
if (!space) {
/* Out of space, we cannot double it. */
return;
}
free(bufdata->dp_buffer);
bufdata->dp_buffer = space;
bufdata->dp_buffer_len = targlen;
return;
}
int
dwarf_printf(Dwarf_Debug dbg,
const char * format,
...)
{
va_list ap;
int maxtries = 4;
int tries = 0;
struct Dwarf_Printf_Callback_Info_s *bufdata =
&dbg->de_printf_callback;
dwarf_printf_callback_function_type func = bufdata->dp_fptr;
if (!func) {
return 0;
}
if (!bufdata->dp_buffer) {
bufferdoublesize(bufdata);
if (!bufdata->dp_buffer) {
/* Something is wrong. Possibly caller
set up callback wrong. */
return 0;
}
}
/* Here we ensure (or nearly ensure) we expand
the buffer when necessary, but not excessively
(but only if we control the buffer size). */
while (1) {
int olen = 0;
tries++;
va_start(ap,format);
olen = vsnprintf(bufdata->dp_buffer,
bufdata->dp_buffer_len, format,ap);
/* "The object ap may be passed as an argument to another
function; if that function invokes the va_arg()
macro with parameter ap, the value of ap in the calling
function is unspecified and shall be passed to the va_end()
macro prior to any further reference to ap."
Single Unix Specification. */
va_end(ap);
if (olen > -1 && (long)olen < (long)bufdata->dp_buffer_len) {
/* The caller had better copy or dispose
of the contents, as next-call will overwrite them. */
func(bufdata->dp_user_pointer,bufdata->dp_buffer);
return 0;
}
if (bufdata->dp_buffer_user_provided) {
func(bufdata->dp_user_pointer,bufdata->dp_buffer);
return 0;
}
if (tries > maxtries) {
/* we did all we could, print what we have space for. */
func(bufdata->dp_user_pointer,bufdata->dp_buffer);
return 0;
}
bufferdoublesize(bufdata);
}
/* Not reached. */
return 0;
}
/* Often errs and errt point to the same Dwarf_Error,
So exercise care.
All the arguments MUST be non-null.*/
void
_dwarf_error_mv_s_to_t(Dwarf_Debug dbgs,Dwarf_Error *errs,
Dwarf_Debug dbgt,Dwarf_Error *errt)
{
if (!errt || !errs) {
return;
}
if (!dbgs || !dbgt) {
return;
}
if(dbgs == dbgt) {
if(errs != errt) {
Dwarf_Error ers = *errs;
*errs = 0;
*errt = ers;
}
} else {
/* Do not stomp on the system errno
variable if there is one! */
int mydw_errno = dwarf_errno(*errs);
dwarf_dealloc(dbgs,*errs, DW_DLA_ERROR);
*errs = 0;
_dwarf_error(dbgt,errt, mydw_errno);
}
}
static int
inthissection(struct Dwarf_Section_s *sec,Dwarf_Small *ptr)
{
if (!sec->dss_data) {
return FALSE;
}
if (ptr < sec->dss_data ) {
return FALSE;
}
if (ptr >= (sec->dss_data + sec->dss_size) ) {
return FALSE;
}
return TRUE;
}
#define FINDSEC(m_s,m_p,n,st,l,e) \
do { \
if (inthissection((m_s),(m_p))) { \
*(n) = (m_s)->dss_name; \
*(st)= (m_s)->dss_data; \
*(l) = (m_s)->dss_size; \
*(e) = (m_s)->dss_data + (m_s)->dss_size; \
return DW_DLV_OK; \
} \
} while (0)
/* So we can know a section end even when we do not
have the section info apriori It's only
needed for a subset of sections. */
int
_dwarf_what_section_are_we(Dwarf_Debug dbg,
Dwarf_Small * our_pointer,
const char ** section_name_out,
Dwarf_Small ** sec_start_ptr_out,
Dwarf_Unsigned * sec_len_out,
Dwarf_Small ** sec_end_ptr_out,
UNUSEDARG Dwarf_Error * error)
{
FINDSEC(&dbg->de_debug_info,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_loc,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_line,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_aranges,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_macro,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_ranges,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_str_offsets,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_addr,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_pubtypes,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_gdbindex,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_abbrev,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_cu_index,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_tu_index,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_line_str,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_types,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_sup,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_frame,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
FINDSEC(&dbg->de_debug_frame_eh_gnu,
our_pointer, section_name_out,
sec_start_ptr_out, sec_len_out, sec_end_ptr_out);
return DW_DLV_NO_ENTRY;
}
|