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 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627
use crate::common::{
DebugAddrBase, DebugAddrIndex, DebugLocListsBase, DebugLocListsIndex, DwarfFileType, Encoding,
LocationListsOffset, SectionId,
};
use crate::constants;
use crate::endianity::Endianity;
use crate::read::{
lists::ListsHeader, DebugAddr, EndianSlice, Error, Expression, Range, RawRange, Reader,
ReaderOffset, ReaderOffsetId, Result, Section,
};
/// The raw contents of the `.debug_loc` section.
#[derive(Debug, Default, Clone, Copy)]
pub struct DebugLoc<R> {
pub(crate) section: R,
}
impl<'input, Endian> DebugLoc<EndianSlice<'input, Endian>>
where
Endian: Endianity,
{
/// Construct a new `DebugLoc` instance from the data in the `.debug_loc`
/// section.
///
/// It is the caller's responsibility to read the `.debug_loc` section and
/// present it as a `&[u8]` slice. That means using some ELF loader on
/// Linux, a Mach-O loader on macOS, etc.
///
/// ```
/// use gimli::{DebugLoc, LittleEndian};
///
/// # let buf = [0x00, 0x01, 0x02, 0x03];
/// # let read_debug_loc_section_somehow = || &buf;
/// let debug_loc = DebugLoc::new(read_debug_loc_section_somehow(), LittleEndian);
/// ```
pub fn new(section: &'input [u8], endian: Endian) -> Self {
Self::from(EndianSlice::new(section, endian))
}
}
impl<R> Section<R> for DebugLoc<R> {
fn id() -> SectionId {
SectionId::DebugLoc
}
fn reader(&self) -> &R {
&self.section
}
}
impl<R> From<R> for DebugLoc<R> {
fn from(section: R) -> Self {
DebugLoc { section }
}
}
/// The `DebugLocLists` struct represents the DWARF data
/// found in the `.debug_loclists` section.
#[derive(Debug, Default, Clone, Copy)]
pub struct DebugLocLists<R> {
section: R,
}
impl<'input, Endian> DebugLocLists<EndianSlice<'input, Endian>>
where
Endian: Endianity,
{
/// Construct a new `DebugLocLists` instance from the data in the `.debug_loclists`
/// section.
///
/// It is the caller's responsibility to read the `.debug_loclists` section and
/// present it as a `&[u8]` slice. That means using some ELF loader on
/// Linux, a Mach-O loader on macOS, etc.
///
/// ```
/// use gimli::{DebugLocLists, LittleEndian};
///
/// # let buf = [0x00, 0x01, 0x02, 0x03];
/// # let read_debug_loclists_section_somehow = || &buf;
/// let debug_loclists = DebugLocLists::new(read_debug_loclists_section_somehow(), LittleEndian);
/// ```
pub fn new(section: &'input [u8], endian: Endian) -> Self {
Self::from(EndianSlice::new(section, endian))
}
}
impl<R> Section<R> for DebugLocLists<R> {
fn id() -> SectionId {
SectionId::DebugLocLists
}
fn reader(&self) -> &R {
&self.section
}
}
impl<R> From<R> for DebugLocLists<R> {
fn from(section: R) -> Self {
DebugLocLists { section }
}
}
pub(crate) type LocListsHeader = ListsHeader;
impl<Offset> DebugLocListsBase<Offset>
where
Offset: ReaderOffset,
{
/// Returns a `DebugLocListsBase` with the default value of DW_AT_loclists_base
/// for the given `Encoding` and `DwarfFileType`.
pub fn default_for_encoding_and_file(
encoding: Encoding,
file_type: DwarfFileType,
) -> DebugLocListsBase<Offset> {
if encoding.version >= 5 && file_type == DwarfFileType::Dwo {
// In .dwo files, the compiler omits the DW_AT_loclists_base attribute (because there is
// only a single unit in the file) but we must skip past the header, which the attribute
// would normally do for us.
DebugLocListsBase(Offset::from_u8(LocListsHeader::size_for_encoding(encoding)))
} else {
DebugLocListsBase(Offset::from_u8(0))
}
}
}
/// The DWARF data found in `.debug_loc` and `.debug_loclists` sections.
#[derive(Debug, Default, Clone, Copy)]
pub struct LocationLists<R> {
debug_loc: DebugLoc<R>,
debug_loclists: DebugLocLists<R>,
}
impl<R> LocationLists<R> {
/// Construct a new `LocationLists` instance from the data in the `.debug_loc` and
/// `.debug_loclists` sections.
pub fn new(debug_loc: DebugLoc<R>, debug_loclists: DebugLocLists<R>) -> LocationLists<R> {
LocationLists {
debug_loc,
debug_loclists,
}
}
}
impl<T> LocationLists<T> {
/// Create a `LocationLists` that references the data in `self`.
///
/// This is useful when `R` implements `Reader` but `T` does not.
///
/// ## Example Usage
///
/// ```rust,no_run
/// # let load_section = || unimplemented!();
/// // Read the DWARF section into a `Vec` with whatever object loader you're using.
/// let owned_section: gimli::LocationLists<Vec<u8>> = load_section();
/// // Create a reference to the DWARF section.
/// let section = owned_section.borrow(|section| {
/// gimli::EndianSlice::new(§ion, gimli::LittleEndian)
/// });
/// ```
pub fn borrow<'a, F, R>(&'a self, mut borrow: F) -> LocationLists<R>
where
F: FnMut(&'a T) -> R,
{
LocationLists {
debug_loc: borrow(&self.debug_loc.section).into(),
debug_loclists: borrow(&self.debug_loclists.section).into(),
}
}
}
impl<R: Reader> LocationLists<R> {
/// Iterate over the `LocationListEntry`s starting at the given offset.
///
/// The `unit_encoding` must match the compilation unit that the
/// offset was contained in.
///
/// The `base_address` should be obtained from the `DW_AT_low_pc` attribute in the
/// `DW_TAG_compile_unit` entry for the compilation unit that contains this location
/// list.
///
/// Can be [used with
/// `FallibleIterator`](./index.html#using-with-fallibleiterator).
pub fn locations(
&self,
offset: LocationListsOffset<R::Offset>,
unit_encoding: Encoding,
base_address: u64,
debug_addr: &DebugAddr<R>,
debug_addr_base: DebugAddrBase<R::Offset>,
) -> Result<LocListIter<R>> {
Ok(LocListIter::new(
self.raw_locations(offset, unit_encoding)?,
base_address,
debug_addr.clone(),
debug_addr_base,
))
}
/// Similar to `locations`, but with special handling for .dwo files.
/// This should only been used when this `LocationLists` was loaded from a
/// .dwo file.
pub fn locations_dwo(
&self,
offset: LocationListsOffset<R::Offset>,
unit_encoding: Encoding,
base_address: u64,
debug_addr: &DebugAddr<R>,
debug_addr_base: DebugAddrBase<R::Offset>,
) -> Result<LocListIter<R>> {
Ok(LocListIter::new(
self.raw_locations_dwo(offset, unit_encoding)?,
base_address,
debug_addr.clone(),
debug_addr_base,
))
}
/// Iterate over the raw `LocationListEntry`s starting at the given offset.
///
/// The `unit_encoding` must match the compilation unit that the
/// offset was contained in.
///
/// This iterator does not perform any processing of the location entries,
/// such as handling base addresses.
///
/// Can be [used with
/// `FallibleIterator`](./index.html#using-with-fallibleiterator).
pub fn raw_locations(
&self,
offset: LocationListsOffset<R::Offset>,
unit_encoding: Encoding,
) -> Result<RawLocListIter<R>> {
let (mut input, format) = if unit_encoding.version <= 4 {
(self.debug_loc.section.clone(), LocListsFormat::Bare)
} else {
(self.debug_loclists.section.clone(), LocListsFormat::Lle)
};
input.skip(offset.0)?;
Ok(RawLocListIter::new(input, unit_encoding, format))
}
/// Similar to `raw_locations`, but with special handling for .dwo files.
/// This should only been used when this `LocationLists` was loaded from a
/// .dwo file.
pub fn raw_locations_dwo(
&self,
offset: LocationListsOffset<R::Offset>,
unit_encoding: Encoding,
) -> Result<RawLocListIter<R>> {
let mut input = if unit_encoding.version <= 4 {
// In the GNU split dwarf extension the locations are present in the
// .debug_loc section but are encoded with the DW_LLE values used
// for the DWARF 5 .debug_loclists section.
self.debug_loc.section.clone()
} else {
self.debug_loclists.section.clone()
};
input.skip(offset.0)?;
Ok(RawLocListIter::new(
input,
unit_encoding,
LocListsFormat::Lle,
))
}
/// Returns the `.debug_loclists` offset at the given `base` and `index`.
///
/// The `base` must be the `DW_AT_loclists_base` value from the compilation unit DIE.
/// This is an offset that points to the first entry following the header.
///
/// The `index` is the value of a `DW_FORM_loclistx` attribute.
pub fn get_offset(
&self,
unit_encoding: Encoding,
base: DebugLocListsBase<R::Offset>,
index: DebugLocListsIndex<R::Offset>,
) -> Result<LocationListsOffset<R::Offset>> {
let format = unit_encoding.format;
let input = &mut self.debug_loclists.section.clone();
input.skip(base.0)?;
input.skip(R::Offset::from_u64(
index.0.into_u64() * u64::from(format.word_size()),
)?)?;
input
.read_offset(format)
.map(|x| LocationListsOffset(base.0 + x))
}
/// Call `Reader::lookup_offset_id` for each section, and return the first match.
pub fn lookup_offset_id(&self, id: ReaderOffsetId) -> Option<(SectionId, R::Offset)> {
self.debug_loc
.lookup_offset_id(id)
.or_else(|| self.debug_loclists.lookup_offset_id(id))
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum LocListsFormat {
/// The bare location list format used before DWARF 5.
Bare,
/// The DW_LLE encoded range list format used in DWARF 5 and the non-standard GNU
/// split dwarf extension.
Lle,
}
/// A raw iterator over a location list.
///
/// This iterator does not perform any processing of the location entries,
/// such as handling base addresses.
#[derive(Debug)]
pub struct RawLocListIter<R: Reader> {
input: R,
encoding: Encoding,
format: LocListsFormat,
}
/// A raw entry in .debug_loclists.
#[derive(Clone, Debug)]
pub enum RawLocListEntry<R: Reader> {
/// A location from DWARF version <= 4.
AddressOrOffsetPair {
/// Start of range. May be an address or an offset.
begin: u64,
/// End of range. May be an address or an offset.
end: u64,
/// expression
data: Expression<R>,
},
/// DW_LLE_base_address
BaseAddress {
/// base address
addr: u64,
},
/// DW_LLE_base_addressx
BaseAddressx {
/// base address
addr: DebugAddrIndex<R::Offset>,
},
/// DW_LLE_startx_endx
StartxEndx {
/// start of range
begin: DebugAddrIndex<R::Offset>,
/// end of range
end: DebugAddrIndex<R::Offset>,
/// expression
data: Expression<R>,
},
/// DW_LLE_startx_length
StartxLength {
/// start of range
begin: DebugAddrIndex<R::Offset>,
/// length of range
length: u64,
/// expression
data: Expression<R>,
},
/// DW_LLE_offset_pair
OffsetPair {
/// start of range
begin: u64,
/// end of range
end: u64,
/// expression
data: Expression<R>,
},
/// DW_LLE_default_location
DefaultLocation {
/// expression
data: Expression<R>,
},
/// DW_LLE_start_end
StartEnd {
/// start of range
begin: u64,
/// end of range
end: u64,
/// expression
data: Expression<R>,
},
/// DW_LLE_start_length
StartLength {
/// start of range
begin: u64,
/// length of range
length: u64,
/// expression
data: Expression<R>,
},
}
fn parse_data<R: Reader>(input: &mut R, encoding: Encoding) -> Result<Expression<R>> {
if encoding.version >= 5 {
let len = R::Offset::from_u64(input.read_uleb128()?)?;
Ok(Expression(input.split(len)?))
} else {
// In the GNU split-dwarf extension this is a fixed 2 byte value.
let len = R::Offset::from_u16(input.read_u16()?);
Ok(Expression(input.split(len)?))
}
}
impl<R: Reader> RawLocListEntry<R> {
/// Parse a location list entry from `.debug_loclists`
fn parse(input: &mut R, encoding: Encoding, format: LocListsFormat) -> Result<Option<Self>> {
Ok(match format {
LocListsFormat::Bare => {
let range = RawRange::parse(input, encoding.address_size)?;
if range.is_end() {
None
} else if range.is_base_address(encoding.address_size) {
Some(RawLocListEntry::BaseAddress { addr: range.end })
} else {
let len = R::Offset::from_u16(input.read_u16()?);
let data = Expression(input.split(len)?);
Some(RawLocListEntry::AddressOrOffsetPair {
begin: range.begin,
end: range.end,
data,
})
}
}
LocListsFormat::Lle => match constants::DwLle(input.read_u8()?) {
constants::DW_LLE_end_of_list => None,
constants::DW_LLE_base_addressx => Some(RawLocListEntry::BaseAddressx {
addr: DebugAddrIndex(input.read_uleb128().and_then(R::Offset::from_u64)?),
}),
constants::DW_LLE_startx_endx => Some(RawLocListEntry::StartxEndx {
begin: DebugAddrIndex(input.read_uleb128().and_then(R::Offset::from_u64)?),
end: DebugAddrIndex(input.read_uleb128().and_then(R::Offset::from_u64)?),
data: parse_data(input, encoding)?,
}),
constants::DW_LLE_startx_length => Some(RawLocListEntry::StartxLength {
begin: DebugAddrIndex(input.read_uleb128().and_then(R::Offset::from_u64)?),
length: if encoding.version >= 5 {
input.read_uleb128()?
} else {
// In the GNU split-dwarf extension this is a fixed 4 byte value.
input.read_u32()? as u64
},
data: parse_data(input, encoding)?,
}),
constants::DW_LLE_offset_pair => Some(RawLocListEntry::OffsetPair {
begin: input.read_uleb128()?,
end: input.read_uleb128()?,
data: parse_data(input, encoding)?,
}),
constants::DW_LLE_default_location => Some(RawLocListEntry::DefaultLocation {
data: parse_data(input, encoding)?,
}),
constants::DW_LLE_base_address => Some(RawLocListEntry::BaseAddress {
addr: input.read_address(encoding.address_size)?,
}),
constants::DW_LLE_start_end => Some(RawLocListEntry::StartEnd {
begin: input.read_address(encoding.address_size)?,
end: input.read_address(encoding.address_size)?,
data: parse_data(input, encoding)?,
}),
constants::DW_LLE_start_length => Some(RawLocListEntry::StartLength {
begin: input.read_address(encoding.address_size)?,
length: input.read_uleb128()?,
data: parse_data(input, encoding)?,
}),
_ => {
return Err(Error::InvalidAddressRange);
}
},
})
}
}
impl<R: Reader> RawLocListIter<R> {
/// Construct a `RawLocListIter`.
fn new(input: R, encoding: Encoding, format: LocListsFormat) -> RawLocListIter<R> {
RawLocListIter {
input,
encoding,
format,
}
}
/// Advance the iterator to the next location.
pub fn next(&mut self) -> Result<Option<RawLocListEntry<R>>> {
if self.input.is_empty() {
return Ok(None);
}
match RawLocListEntry::parse(&mut self.input, self.encoding, self.format) {
Ok(entry) => {
if entry.is_none() {
self.input.empty();
}
Ok(entry)
}
Err(e) => {
self.input.empty();
Err(e)
}
}
}
}
#[cfg(feature = "fallible-iterator")]
impl<R: Reader> fallible_iterator::FallibleIterator for RawLocListIter<R> {
type Item = RawLocListEntry<R>;
type Error = Error;
fn next(&mut self) -> ::core::result::Result<Option<Self::Item>, Self::Error> {
RawLocListIter::next(self)
}
}
/// An iterator over a location list.
///
/// This iterator internally handles processing of base address selection entries
/// and list end entries. Thus, it only returns location entries that are valid
/// and already adjusted for the base address.
#[derive(Debug)]
pub struct LocListIter<R: Reader> {
raw: RawLocListIter<R>,
base_address: u64,
debug_addr: DebugAddr<R>,
debug_addr_base: DebugAddrBase<R::Offset>,
}
impl<R: Reader> LocListIter<R> {
/// Construct a `LocListIter`.
fn new(
raw: RawLocListIter<R>,
base_address: u64,
debug_addr: DebugAddr<R>,
debug_addr_base: DebugAddrBase<R::Offset>,
) -> LocListIter<R> {
LocListIter {
raw,
base_address,
debug_addr,
debug_addr_base,
}
}
#[inline]
fn get_address(&self, index: DebugAddrIndex<R::Offset>) -> Result<u64> {
self.debug_addr
.get_address(self.raw.encoding.address_size, self.debug_addr_base, index)
}
/// Advance the iterator to the next location.
pub fn next(&mut self) -> Result<Option<LocationListEntry<R>>> {
loop {
let raw_loc = match self.raw.next()? {
Some(loc) => loc,
None => return Ok(None),
};
let loc = self.convert_raw(raw_loc)?;
if loc.is_some() {
return Ok(loc);
}
}
}
/// Return the next raw location.
///
/// The raw location should be passed to `convert_raw`.
#[doc(hidden)]
pub fn next_raw(&mut self) -> Result<Option<RawLocListEntry<R>>> {
self.raw.next()
}
/// Convert a raw location into a location, and update the state of the iterator.
///
/// The raw location should have been obtained from `next_raw`.
#[doc(hidden)]
pub fn convert_raw(
&mut self,
raw_loc: RawLocListEntry<R>,
) -> Result<Option<LocationListEntry<R>>> {
let mask = !0 >> (64 - self.raw.encoding.address_size * 8);
let tombstone = if self.raw.encoding.version <= 4 {
mask - 1
} else {
mask
};
let (range, data) = match raw_loc {
RawLocListEntry::BaseAddress { addr } => {
self.base_address = addr;
return Ok(None);
}
RawLocListEntry::BaseAddressx { addr } => {
self.base_address = self.get_address(addr)?;
return Ok(None);
}
RawLocListEntry::StartxEndx { begin, end, data } => {
let begin = self.get_address(begin)?;
let end = self.get_address(end)?;
(Range { begin, end }, data)
}
RawLocListEntry::StartxLength {
begin,
length,
data,
} => {
let begin = self.get_address(begin)?;
let end = begin.wrapping_add(length) & mask;
(Range { begin, end }, data)
}
RawLocListEntry::DefaultLocation { data } => (
Range {
begin: 0,
end: u64::max_value(),
},
data,
),
RawLocListEntry::AddressOrOffsetPair { begin, end, data }
| RawLocListEntry::OffsetPair { begin, end, data } => {
if self.base_address == tombstone {
return Ok(None);
}
let mut range = Range { begin, end };
range.add_base_address(self.base_address, self.raw.encoding.address_size);
(range, data)
}
RawLocListEntry::StartEnd { begin, end, data } => (Range { begin, end }, data),
RawLocListEntry::StartLength {
begin,
length,
data,
} => {
let end = begin.wrapping_add(length) & mask;
(Range { begin, end }, data)
}
};
if range.begin == tombstone {
return Ok(None);
}
if range.begin > range.end {
self.raw.input.empty();
return Err(Error::InvalidLocationAddressRange);
}
Ok(Some(LocationListEntry { range, data }))
}
}
#[cfg(feature = "fallible-iterator")]
impl<R: Reader> fallible_iterator::FallibleIterator for LocListIter<R> {
type Item = LocationListEntry<R>;
type Error = Error;
fn next(&mut self) -> ::core::result::Result<Option<Self::Item>, Self::Error> {
LocListIter::next(self)
}
}
/// A location list entry from the `.debug_loc` or `.debug_loclists` sections.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct LocationListEntry<R: Reader> {
/// The address range that this location is valid for.
pub range: Range,
/// The data containing a single location description.
pub data: Expression<R>,
}
#[cfg(test)]
mod tests {
use super::*;
use crate::common::Format;
use crate::endianity::LittleEndian;
use crate::read::{EndianSlice, Range};
use crate::test_util::GimliSectionMethods;
use test_assembler::{Endian, Label, LabelMaker, Section};
#[test]
fn test_loclists_32() {
let tombstone = !0u32;
let encoding = Encoding {
format: Format::Dwarf32,
version: 5,
address_size: 4,
};
let section = Section::with_endian(Endian::Little)
.L32(0x0300_0000)
.L32(0x0301_0300)
.L32(0x0301_0400)
.L32(0x0301_0500)
.L32(tombstone)
.L32(0x0301_0600);
let buf = section.get_contents().unwrap();
let debug_addr = &DebugAddr::from(EndianSlice::new(&buf, LittleEndian));
let debug_addr_base = DebugAddrBase(0);
let start = Label::new();
let first = Label::new();
let size = Label::new();
#[rustfmt::skip]
let section = Section::with_endian(Endian::Little)
// Header
.mark(&start)
.L32(&size)
.L16(encoding.version)
.L8(encoding.address_size)
.L8(0)
.L32(0)
.mark(&first)
// OffsetPair
.L8(4).uleb(0x10200).uleb(0x10300).uleb(4).L32(2)
// A base address selection followed by an OffsetPair.
.L8(6).L32(0x0200_0000)
.L8(4).uleb(0x10400).uleb(0x10500).uleb(4).L32(3)
// An empty OffsetPair followed by a normal OffsetPair.
.L8(4).uleb(0x10600).uleb(0x10600).uleb(4).L32(4)
.L8(4).uleb(0x10800).uleb(0x10900).uleb(4).L32(5)
// A StartEnd
.L8(7).L32(0x201_0a00).L32(0x201_0b00).uleb(4).L32(6)
// A StartLength
.L8(8).L32(0x201_0c00).uleb(0x100).uleb(4).L32(7)
// An OffsetPair that starts at 0.
.L8(4).uleb(0).uleb(1).uleb(4).L32(8)
// An OffsetPair that ends at -1.
.L8(6).L32(0)
.L8(4).uleb(0).uleb(0xffff_ffff).uleb(4).L32(9)
// A DefaultLocation
.L8(5).uleb(4).L32(10)
// A BaseAddressx + OffsetPair
.L8(1).uleb(0)
.L8(4).uleb(0x10100).uleb(0x10200).uleb(4).L32(11)
// A StartxEndx
.L8(2).uleb(1).uleb(2).uleb(4).L32(12)
// A StartxLength
.L8(3).uleb(3).uleb(0x100).uleb(4).L32(13)
// Tombstone entries, all of which should be ignored.
// A BaseAddressx that is a tombstone.
.L8(1).uleb(4)
.L8(4).uleb(0x11100).uleb(0x11200).uleb(4).L32(20)
// A BaseAddress that is a tombstone.
.L8(6).L32(tombstone)
.L8(4).uleb(0x11300).uleb(0x11400).uleb(4).L32(21)
// A StartxEndx that is a tombstone.
.L8(2).uleb(4).uleb(5).uleb(4).L32(22)
// A StartxLength that is a tombstone.
.L8(3).uleb(4).uleb(0x100).uleb(4).L32(23)
// A StartEnd that is a tombstone.
.L8(7).L32(tombstone).L32(0x201_1500).uleb(4).L32(24)
// A StartLength that is a tombstone.
.L8(8).L32(tombstone).uleb(0x100).uleb(4).L32(25)
// A StartEnd (not ignored)
.L8(7).L32(0x201_1600).L32(0x201_1700).uleb(4).L32(26)
// A range end.
.L8(0)
// Some extra data.
.L32(0xffff_ffff);
size.set_const((§ion.here() - &start - 4) as u64);
let buf = section.get_contents().unwrap();
let debug_loc = DebugLoc::new(&[], LittleEndian);
let debug_loclists = DebugLocLists::new(&buf, LittleEndian);
let loclists = LocationLists::new(debug_loc, debug_loclists);
let offset = LocationListsOffset((&first - &start) as usize);
let mut locations = loclists
.locations(offset, encoding, 0x0100_0000, debug_addr, debug_addr_base)
.unwrap();
// A normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0101_0200,
end: 0x0101_0300,
},
data: Expression(EndianSlice::new(&[2, 0, 0, 0], LittleEndian)),
}))
);
// A base address selection followed by a normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0400,
end: 0x0201_0500,
},
data: Expression(EndianSlice::new(&[3, 0, 0, 0], LittleEndian)),
}))
);
// An empty location range followed by a normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0600,
end: 0x0201_0600,
},
data: Expression(EndianSlice::new(&[4, 0, 0, 0], LittleEndian)),
}))
);
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0800,
end: 0x0201_0900,
},
data: Expression(EndianSlice::new(&[5, 0, 0, 0], LittleEndian)),
}))
);
// A normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0a00,
end: 0x0201_0b00,
},
data: Expression(EndianSlice::new(&[6, 0, 0, 0], LittleEndian)),
}))
);
// A normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0c00,
end: 0x0201_0d00,
},
data: Expression(EndianSlice::new(&[7, 0, 0, 0], LittleEndian)),
}))
);
// A location range that starts at 0.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0200_0000,
end: 0x0200_0001,
},
data: Expression(EndianSlice::new(&[8, 0, 0, 0], LittleEndian)),
}))
);
// A location range that ends at -1.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0000_0000,
end: 0xffff_ffff,
},
data: Expression(EndianSlice::new(&[9, 0, 0, 0], LittleEndian)),
}))
);
// A DefaultLocation.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0,
end: u64::max_value(),
},
data: Expression(EndianSlice::new(&[10, 0, 0, 0], LittleEndian)),
}))
);
// A BaseAddressx + OffsetPair
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0301_0100,
end: 0x0301_0200,
},
data: Expression(EndianSlice::new(&[11, 0, 0, 0], LittleEndian)),
}))
);
// A StartxEndx
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0301_0300,
end: 0x0301_0400,
},
data: Expression(EndianSlice::new(&[12, 0, 0, 0], LittleEndian)),
}))
);
// A StartxLength
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0301_0500,
end: 0x0301_0600,
},
data: Expression(EndianSlice::new(&[13, 0, 0, 0], LittleEndian)),
}))
);
// A StartEnd location following the tombstones
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_1600,
end: 0x0201_1700,
},
data: Expression(EndianSlice::new(&[26, 0, 0, 0], LittleEndian)),
}))
);
// A location list end.
assert_eq!(locations.next(), Ok(None));
// An offset at the end of buf.
let mut locations = loclists
.locations(
LocationListsOffset(buf.len()),
encoding,
0x0100_0000,
debug_addr,
debug_addr_base,
)
.unwrap();
assert_eq!(locations.next(), Ok(None));
}
#[test]
fn test_loclists_64() {
let tombstone = !0u64;
let encoding = Encoding {
format: Format::Dwarf64,
version: 5,
address_size: 8,
};
let section = Section::with_endian(Endian::Little)
.L64(0x0300_0000)
.L64(0x0301_0300)
.L64(0x0301_0400)
.L64(0x0301_0500)
.L64(tombstone)
.L64(0x0301_0600);
let buf = section.get_contents().unwrap();
let debug_addr = &DebugAddr::from(EndianSlice::new(&buf, LittleEndian));
let debug_addr_base = DebugAddrBase(0);
let start = Label::new();
let first = Label::new();
let size = Label::new();
#[rustfmt::skip]
let section = Section::with_endian(Endian::Little)
// Header
.mark(&start)
.L32(0xffff_ffff)
.L64(&size)
.L16(encoding.version)
.L8(encoding.address_size)
.L8(0)
.L32(0)
.mark(&first)
// OffsetPair
.L8(4).uleb(0x10200).uleb(0x10300).uleb(4).L32(2)
// A base address selection followed by an OffsetPair.
.L8(6).L64(0x0200_0000)
.L8(4).uleb(0x10400).uleb(0x10500).uleb(4).L32(3)
// An empty OffsetPair followed by a normal OffsetPair.
.L8(4).uleb(0x10600).uleb(0x10600).uleb(4).L32(4)
.L8(4).uleb(0x10800).uleb(0x10900).uleb(4).L32(5)
// A StartEnd
.L8(7).L64(0x201_0a00).L64(0x201_0b00).uleb(4).L32(6)
// A StartLength
.L8(8).L64(0x201_0c00).uleb(0x100).uleb(4).L32(7)
// An OffsetPair that starts at 0.
.L8(4).uleb(0).uleb(1).uleb(4).L32(8)
// An OffsetPair that ends at -1.
.L8(6).L64(0)
.L8(4).uleb(0).uleb(0xffff_ffff).uleb(4).L32(9)
// A DefaultLocation
.L8(5).uleb(4).L32(10)
// A BaseAddressx + OffsetPair
.L8(1).uleb(0)
.L8(4).uleb(0x10100).uleb(0x10200).uleb(4).L32(11)
// A StartxEndx
.L8(2).uleb(1).uleb(2).uleb(4).L32(12)
// A StartxLength
.L8(3).uleb(3).uleb(0x100).uleb(4).L32(13)
// Tombstone entries, all of which should be ignored.
// A BaseAddressx that is a tombstone.
.L8(1).uleb(4)
.L8(4).uleb(0x11100).uleb(0x11200).uleb(4).L32(20)
// A BaseAddress that is a tombstone.
.L8(6).L64(tombstone)
.L8(4).uleb(0x11300).uleb(0x11400).uleb(4).L32(21)
// A StartxEndx that is a tombstone.
.L8(2).uleb(4).uleb(5).uleb(4).L32(22)
// A StartxLength that is a tombstone.
.L8(3).uleb(4).uleb(0x100).uleb(4).L32(23)
// A StartEnd that is a tombstone.
.L8(7).L64(tombstone).L64(0x201_1500).uleb(4).L32(24)
// A StartLength that is a tombstone.
.L8(8).L64(tombstone).uleb(0x100).uleb(4).L32(25)
// A StartEnd (not ignored)
.L8(7).L64(0x201_1600).L64(0x201_1700).uleb(4).L32(26)
// A range end.
.L8(0)
// Some extra data.
.L32(0xffff_ffff);
size.set_const((§ion.here() - &start - 12) as u64);
let buf = section.get_contents().unwrap();
let debug_loc = DebugLoc::new(&[], LittleEndian);
let debug_loclists = DebugLocLists::new(&buf, LittleEndian);
let loclists = LocationLists::new(debug_loc, debug_loclists);
let offset = LocationListsOffset((&first - &start) as usize);
let mut locations = loclists
.locations(offset, encoding, 0x0100_0000, debug_addr, debug_addr_base)
.unwrap();
// A normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0101_0200,
end: 0x0101_0300,
},
data: Expression(EndianSlice::new(&[2, 0, 0, 0], LittleEndian)),
}))
);
// A base address selection followed by a normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0400,
end: 0x0201_0500,
},
data: Expression(EndianSlice::new(&[3, 0, 0, 0], LittleEndian)),
}))
);
// An empty location range followed by a normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0600,
end: 0x0201_0600,
},
data: Expression(EndianSlice::new(&[4, 0, 0, 0], LittleEndian)),
}))
);
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0800,
end: 0x0201_0900,
},
data: Expression(EndianSlice::new(&[5, 0, 0, 0], LittleEndian)),
}))
);
// A normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0a00,
end: 0x0201_0b00,
},
data: Expression(EndianSlice::new(&[6, 0, 0, 0], LittleEndian)),
}))
);
// A normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0c00,
end: 0x0201_0d00,
},
data: Expression(EndianSlice::new(&[7, 0, 0, 0], LittleEndian)),
}))
);
// A location range that starts at 0.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0200_0000,
end: 0x0200_0001,
},
data: Expression(EndianSlice::new(&[8, 0, 0, 0], LittleEndian)),
}))
);
// A location range that ends at -1.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0000_0000,
end: 0xffff_ffff,
},
data: Expression(EndianSlice::new(&[9, 0, 0, 0], LittleEndian)),
}))
);
// A DefaultLocation.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0,
end: u64::max_value(),
},
data: Expression(EndianSlice::new(&[10, 0, 0, 0], LittleEndian)),
}))
);
// A BaseAddressx + OffsetPair
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0301_0100,
end: 0x0301_0200,
},
data: Expression(EndianSlice::new(&[11, 0, 0, 0], LittleEndian)),
}))
);
// A StartxEndx
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0301_0300,
end: 0x0301_0400,
},
data: Expression(EndianSlice::new(&[12, 0, 0, 0], LittleEndian)),
}))
);
// A StartxLength
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0301_0500,
end: 0x0301_0600,
},
data: Expression(EndianSlice::new(&[13, 0, 0, 0], LittleEndian)),
}))
);
// A StartEnd location following the tombstones
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_1600,
end: 0x0201_1700,
},
data: Expression(EndianSlice::new(&[26, 0, 0, 0], LittleEndian)),
}))
);
// A location list end.
assert_eq!(locations.next(), Ok(None));
// An offset at the end of buf.
let mut locations = loclists
.locations(
LocationListsOffset(buf.len()),
encoding,
0x0100_0000,
debug_addr,
debug_addr_base,
)
.unwrap();
assert_eq!(locations.next(), Ok(None));
}
#[test]
fn test_location_list_32() {
let tombstone = !0u32 - 1;
let start = Label::new();
let first = Label::new();
#[rustfmt::skip]
let section = Section::with_endian(Endian::Little)
// A location before the offset.
.mark(&start)
.L32(0x10000).L32(0x10100).L16(4).L32(1)
.mark(&first)
// A normal location.
.L32(0x10200).L32(0x10300).L16(4).L32(2)
// A base address selection followed by a normal location.
.L32(0xffff_ffff).L32(0x0200_0000)
.L32(0x10400).L32(0x10500).L16(4).L32(3)
// An empty location range followed by a normal location.
.L32(0x10600).L32(0x10600).L16(4).L32(4)
.L32(0x10800).L32(0x10900).L16(4).L32(5)
// A location range that starts at 0.
.L32(0).L32(1).L16(4).L32(6)
// A location range that ends at -1.
.L32(0xffff_ffff).L32(0x0000_0000)
.L32(0).L32(0xffff_ffff).L16(4).L32(7)
// A normal location with tombstone.
.L32(tombstone).L32(tombstone).L16(4).L32(8)
// A base address selection with tombstone followed by a normal location.
.L32(0xffff_ffff).L32(tombstone)
.L32(0x10a00).L32(0x10b00).L16(4).L32(9)
// A location list end.
.L32(0).L32(0)
// Some extra data.
.L32(0);
let buf = section.get_contents().unwrap();
let debug_loc = DebugLoc::new(&buf, LittleEndian);
let debug_loclists = DebugLocLists::new(&[], LittleEndian);
let loclists = LocationLists::new(debug_loc, debug_loclists);
let offset = LocationListsOffset((&first - &start) as usize);
let debug_addr = &DebugAddr::from(EndianSlice::new(&[], LittleEndian));
let debug_addr_base = DebugAddrBase(0);
let encoding = Encoding {
format: Format::Dwarf32,
version: 4,
address_size: 4,
};
let mut locations = loclists
.locations(offset, encoding, 0x0100_0000, debug_addr, debug_addr_base)
.unwrap();
// A normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0101_0200,
end: 0x0101_0300,
},
data: Expression(EndianSlice::new(&[2, 0, 0, 0], LittleEndian)),
}))
);
// A base address selection followed by a normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0400,
end: 0x0201_0500,
},
data: Expression(EndianSlice::new(&[3, 0, 0, 0], LittleEndian)),
}))
);
// An empty location range followed by a normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0600,
end: 0x0201_0600,
},
data: Expression(EndianSlice::new(&[4, 0, 0, 0], LittleEndian)),
}))
);
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0800,
end: 0x0201_0900,
},
data: Expression(EndianSlice::new(&[5, 0, 0, 0], LittleEndian)),
}))
);
// A location range that starts at 0.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0200_0000,
end: 0x0200_0001,
},
data: Expression(EndianSlice::new(&[6, 0, 0, 0], LittleEndian)),
}))
);
// A location range that ends at -1.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0000_0000,
end: 0xffff_ffff,
},
data: Expression(EndianSlice::new(&[7, 0, 0, 0], LittleEndian)),
}))
);
// A location list end.
assert_eq!(locations.next(), Ok(None));
// An offset at the end of buf.
let mut locations = loclists
.locations(
LocationListsOffset(buf.len()),
encoding,
0x0100_0000,
debug_addr,
debug_addr_base,
)
.unwrap();
assert_eq!(locations.next(), Ok(None));
}
#[test]
fn test_location_list_64() {
let tombstone = !0u64 - 1;
let start = Label::new();
let first = Label::new();
#[rustfmt::skip]
let section = Section::with_endian(Endian::Little)
// A location before the offset.
.mark(&start)
.L64(0x10000).L64(0x10100).L16(4).L32(1)
.mark(&first)
// A normal location.
.L64(0x10200).L64(0x10300).L16(4).L32(2)
// A base address selection followed by a normal location.
.L64(0xffff_ffff_ffff_ffff).L64(0x0200_0000)
.L64(0x10400).L64(0x10500).L16(4).L32(3)
// An empty location range followed by a normal location.
.L64(0x10600).L64(0x10600).L16(4).L32(4)
.L64(0x10800).L64(0x10900).L16(4).L32(5)
// A location range that starts at 0.
.L64(0).L64(1).L16(4).L32(6)
// A location range that ends at -1.
.L64(0xffff_ffff_ffff_ffff).L64(0x0000_0000)
.L64(0).L64(0xffff_ffff_ffff_ffff).L16(4).L32(7)
// A normal location with tombstone.
.L64(tombstone).L64(tombstone).L16(4).L32(8)
// A base address selection with tombstone followed by a normal location.
.L64(0xffff_ffff_ffff_ffff).L64(tombstone)
.L64(0x10a00).L64(0x10b00).L16(4).L32(9)
// A location list end.
.L64(0).L64(0)
// Some extra data.
.L64(0);
let buf = section.get_contents().unwrap();
let debug_loc = DebugLoc::new(&buf, LittleEndian);
let debug_loclists = DebugLocLists::new(&[], LittleEndian);
let loclists = LocationLists::new(debug_loc, debug_loclists);
let offset = LocationListsOffset((&first - &start) as usize);
let debug_addr = &DebugAddr::from(EndianSlice::new(&[], LittleEndian));
let debug_addr_base = DebugAddrBase(0);
let encoding = Encoding {
format: Format::Dwarf64,
version: 4,
address_size: 8,
};
let mut locations = loclists
.locations(offset, encoding, 0x0100_0000, debug_addr, debug_addr_base)
.unwrap();
// A normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0101_0200,
end: 0x0101_0300,
},
data: Expression(EndianSlice::new(&[2, 0, 0, 0], LittleEndian)),
}))
);
// A base address selection followed by a normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0400,
end: 0x0201_0500,
},
data: Expression(EndianSlice::new(&[3, 0, 0, 0], LittleEndian)),
}))
);
// An empty location range followed by a normal location.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0600,
end: 0x0201_0600,
},
data: Expression(EndianSlice::new(&[4, 0, 0, 0], LittleEndian)),
}))
);
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0201_0800,
end: 0x0201_0900,
},
data: Expression(EndianSlice::new(&[5, 0, 0, 0], LittleEndian)),
}))
);
// A location range that starts at 0.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0200_0000,
end: 0x0200_0001,
},
data: Expression(EndianSlice::new(&[6, 0, 0, 0], LittleEndian)),
}))
);
// A location range that ends at -1.
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0,
end: 0xffff_ffff_ffff_ffff,
},
data: Expression(EndianSlice::new(&[7, 0, 0, 0], LittleEndian)),
}))
);
// A location list end.
assert_eq!(locations.next(), Ok(None));
// An offset at the end of buf.
let mut locations = loclists
.locations(
LocationListsOffset(buf.len()),
encoding,
0x0100_0000,
debug_addr,
debug_addr_base,
)
.unwrap();
assert_eq!(locations.next(), Ok(None));
}
#[test]
fn test_locations_invalid() {
#[rustfmt::skip]
let section = Section::with_endian(Endian::Little)
// An invalid location range.
.L32(0x20000).L32(0x10000).L16(4).L32(1)
// An invalid range after wrapping.
.L32(0x20000).L32(0xff01_0000).L16(4).L32(2);
let buf = section.get_contents().unwrap();
let debug_loc = DebugLoc::new(&buf, LittleEndian);
let debug_loclists = DebugLocLists::new(&[], LittleEndian);
let loclists = LocationLists::new(debug_loc, debug_loclists);
let debug_addr = &DebugAddr::from(EndianSlice::new(&[], LittleEndian));
let debug_addr_base = DebugAddrBase(0);
let encoding = Encoding {
format: Format::Dwarf32,
version: 4,
address_size: 4,
};
// An invalid location range.
let mut locations = loclists
.locations(
LocationListsOffset(0x0),
encoding,
0x0100_0000,
debug_addr,
debug_addr_base,
)
.unwrap();
assert_eq!(locations.next(), Err(Error::InvalidLocationAddressRange));
// An invalid location range after wrapping.
let mut locations = loclists
.locations(
LocationListsOffset(14),
encoding,
0x0100_0000,
debug_addr,
debug_addr_base,
)
.unwrap();
assert_eq!(locations.next(), Err(Error::InvalidLocationAddressRange));
// An invalid offset.
match loclists.locations(
LocationListsOffset(buf.len() + 1),
encoding,
0x0100_0000,
debug_addr,
debug_addr_base,
) {
Err(Error::UnexpectedEof(_)) => {}
otherwise => panic!("Unexpected result: {:?}", otherwise),
}
}
#[test]
fn test_get_offset() {
for format in vec![Format::Dwarf32, Format::Dwarf64] {
let encoding = Encoding {
format,
version: 5,
address_size: 4,
};
let zero = Label::new();
let length = Label::new();
let start = Label::new();
let first = Label::new();
let end = Label::new();
let mut section = Section::with_endian(Endian::Little)
.mark(&zero)
.initial_length(format, &length, &start)
.D16(encoding.version)
.D8(encoding.address_size)
.D8(0)
.D32(20)
.mark(&first);
for i in 0..20 {
section = section.word(format.word_size(), 1000 + i);
}
section = section.mark(&end);
length.set_const((&end - &start) as u64);
let section = section.get_contents().unwrap();
let debug_loc = DebugLoc::from(EndianSlice::new(&[], LittleEndian));
let debug_loclists = DebugLocLists::from(EndianSlice::new(§ion, LittleEndian));
let locations = LocationLists::new(debug_loc, debug_loclists);
let base = DebugLocListsBase((&first - &zero) as usize);
assert_eq!(
locations.get_offset(encoding, base, DebugLocListsIndex(0)),
Ok(LocationListsOffset(base.0 + 1000))
);
assert_eq!(
locations.get_offset(encoding, base, DebugLocListsIndex(19)),
Ok(LocationListsOffset(base.0 + 1019))
);
}
}
#[test]
fn test_loclists_gnu_v4_split_dwarf() {
#[rustfmt::skip]
let buf = [
0x03, // DW_LLE_startx_length
0x00, // ULEB encoded b7
0x08, 0x00, 0x00, 0x00, // Fixed 4 byte length of 8
0x03, 0x00, // Fixed two byte length of the location
0x11, 0x00, // DW_OP_constu 0
0x9f, // DW_OP_stack_value
// Padding data
//0x99, 0x99, 0x99, 0x99
];
let data_buf = [0x11, 0x00, 0x9f];
let expected_data = EndianSlice::new(&data_buf, LittleEndian);
let debug_loc = DebugLoc::new(&buf, LittleEndian);
let debug_loclists = DebugLocLists::new(&[], LittleEndian);
let loclists = LocationLists::new(debug_loc, debug_loclists);
let debug_addr =
&DebugAddr::from(EndianSlice::new(&[0x01, 0x02, 0x03, 0x04], LittleEndian));
let debug_addr_base = DebugAddrBase(0);
let encoding = Encoding {
format: Format::Dwarf32,
version: 4,
address_size: 4,
};
// An invalid location range.
let mut locations = loclists
.locations_dwo(
LocationListsOffset(0x0),
encoding,
0,
debug_addr,
debug_addr_base,
)
.unwrap();
assert_eq!(
locations.next(),
Ok(Some(LocationListEntry {
range: Range {
begin: 0x0403_0201,
end: 0x0403_0209
},
data: Expression(expected_data),
}))
);
}
}