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
use endianity::{Endianity, EndianBuf};
use fallible_iterator::FallibleIterator;
use parser::{Error, Result, parse_u16, take};
use ranges::Range;
use std::marker::PhantomData;
use Section;

/// An offset into the `.debug_loc` section.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct DebugLocOffset(pub usize);

/// The `DebugLoc` struct represents the DWARF strings
/// found in the `.debug_loc` section.
#[derive(Debug, Clone, Copy)]
pub struct DebugLoc<'input, Endian>
    where Endian: Endianity
{
    debug_loc_section: EndianBuf<'input, Endian>,
}

impl<'input, Endian> DebugLoc<'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 OSX, etc.
    ///
    /// ```
    /// use gimli::{DebugLoc, LittleEndian};
    ///
    /// # let buf = [0x00, 0x01, 0x02, 0x03];
    /// # let read_debug_loc_section_somehow = || &buf;
    /// let debug_loc = DebugLoc::<LittleEndian>::new(read_debug_loc_section_somehow());
    /// ```
    pub fn new(debug_loc_section: &'input [u8]) -> DebugLoc<'input, Endian> {
        DebugLoc { debug_loc_section: EndianBuf(debug_loc_section, PhantomData) }
    }

    /// Iterate over the `LocationListEntry`s starting at the given offset.
    ///
    /// The `address_size` must be match the compilation unit for this location list.
    /// 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: DebugLocOffset,
                     address_size: u8,
                     base_address: u64)
                     -> Result<LocationListIter<'input, Endian>> {
        if self.debug_loc_section.len() < offset.0 {
            return Err(Error::UnexpectedEof);
        }

        let input = self.debug_loc_section.range_from(offset.0..);
        Ok(LocationListIter::new(input, address_size, base_address))
    }

    /// Iterate over the raw `LocationListEntry`s starting at the given offset.
    ///
    /// The `address_size` must be match the compilation unit for this location list.
    ///
    /// 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: DebugLocOffset,
                         address_size: u8)
                         -> Result<RawLocationListIter<'input, Endian>> {
        if self.debug_loc_section.len() < offset.0 {
            return Err(Error::UnexpectedEof);
        }

        let input = self.debug_loc_section.range_from(offset.0..);
        Ok(RawLocationListIter::new(input, address_size))
    }
}

impl<'input, Endian> Section<'input> for DebugLoc<'input, Endian>
    where Endian: Endianity
{
    fn section_name() -> &'static str {
        ".debug_loc"
    }
}

impl<'input, Endian> From<&'input [u8]> for DebugLoc<'input, Endian>
    where Endian: Endianity
{
    fn from(v: &'input [u8]) -> Self {
        Self::new(v)
    }
}

/// 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 RawLocationListIter<'input, Endian>
    where Endian: Endianity
{
    input: EndianBuf<'input, Endian>,
    address_size: u8,
}

impl<'input, Endian> RawLocationListIter<'input, Endian>
    where Endian: Endianity
{
    /// Construct a `RawLocationListIter`.
    pub fn new(input: EndianBuf<'input, Endian>,
               address_size: u8)
               -> RawLocationListIter<'input, Endian> {
        RawLocationListIter {
            input: input,
            address_size: address_size,
        }
    }

    /// Advance the iterator to the next location.
    pub fn next(&mut self) -> Result<Option<LocationListEntry<'input, Endian>>> {
        if self.input.is_empty() {
            return Ok(None);
        }

        let (rest, location) = try!(LocationListEntry::parse(self.input, self.address_size));
        if location.range.is_end() {
            self.input = EndianBuf::new(&[]);
        } else {
            self.input = rest;
        }

        Ok(Some(location))
    }
}

impl<'input, Endian> FallibleIterator for RawLocationListIter<'input, Endian>
    where Endian: Endianity
{
    type Item = LocationListEntry<'input, Endian>;
    type Error = Error;

    fn next(&mut self) -> ::std::result::Result<Option<Self::Item>, Self::Error> {
        RawLocationListIter::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 LocationListIter<'input, Endian>
    where Endian: Endianity
{
    raw: RawLocationListIter<'input, Endian>,
    base_address: u64,
}

impl<'input, Endian> LocationListIter<'input, Endian>
    where Endian: Endianity
{
    /// Construct a `LocationListIter`.
    fn new(input: EndianBuf<'input, Endian>,
           address_size: u8,
           base_address: u64)
           -> LocationListIter<'input, Endian> {
        LocationListIter {
            raw: RawLocationListIter::new(input, address_size),
            base_address: base_address,
        }
    }

    /// Advance the iterator to the next location.
    pub fn next(&mut self) -> Result<Option<LocationListEntry<'input, Endian>>> {
        loop {
            let mut location = match try!(self.raw.next()) {
                Some(location) => location,
                None => return Ok(None),
            };

            if location.range.is_end() {
                return Ok(None);
            }

            if location.range.is_base_address(self.raw.address_size) {
                self.base_address = location.range.end;
                continue;
            }

            if location.range.begin == location.range.end {
                // An empty location list entry, skip it.
                continue;
            }

            location.range.add_base_address(self.base_address, self.raw.address_size);
            if location.range.begin > location.range.end {
                self.raw.input = EndianBuf::new(&[]);
                return Err(Error::InvalidLocationAddressRange);
            }

            return Ok(Some(location));
        }
    }
}

impl<'input, Endian> FallibleIterator for LocationListIter<'input, Endian>
    where Endian: Endianity
{
    type Item = LocationListEntry<'input, Endian>;
    type Error = Error;

    fn next(&mut self) -> ::std::result::Result<Option<Self::Item>, Self::Error> {
        LocationListIter::next(self)
    }
}

/// A location list entry from the `.debug_loc` section.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct LocationListEntry<'input, Endian>
    where Endian: Endianity
{
    /// The address range that this location is valid for.
    pub range: Range,

    /// The data containing a single location description.
    pub data: EndianBuf<'input, Endian>,
}

impl<'input, Endian> LocationListEntry<'input, Endian>
    where Endian: Endianity
{
    /// Parse a location list entry from `.debug_loc`.
    fn parse(input: EndianBuf<Endian>,
             address_size: u8)
             -> Result<(EndianBuf<Endian>, LocationListEntry<Endian>)>
        where Endian: Endianity
    {
        let (rest, range) = try!(Range::parse(input, address_size));
        if range.is_end() || range.is_base_address(address_size) {
            let location = LocationListEntry {
                range: range,
                data: EndianBuf::new(&[]),
            };
            Ok((rest, location))
        } else {
            let (rest, len) = try!(parse_u16(rest));
            let (rest, data) = try!(take(len as usize, rest));
            let location = LocationListEntry {
                range: range,
                data: data,
            };
            Ok((rest, location))
        }
    }
}

#[cfg(test)]
mod tests {
    extern crate test_assembler;

    use super::*;
    use endianity::{EndianBuf, LittleEndian};
    use parser::Error;
    use ranges::Range;
    use self::test_assembler::{Endian, Label, LabelMaker, Section};

    #[test]
    fn test_location_list_32() {
        let start = Label::new();
        let first = Label::new();
        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(0xffffffff).L32(0x02000000)
            .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(0xffffffff).L32(0x00000000)
            .L32(0).L32(0xffffffff).L16(4).L32(7)
            // A location list end.
            .L32(0).L32(0)
            // Some extra data.
            .L32(0);

        let buf = section.get_contents().unwrap();
        let debug_loc = DebugLoc::<LittleEndian>::new(&buf);
        let offset = DebugLocOffset((&first - &start) as usize);
        let mut locations = debug_loc.locations(offset, 4, 0x01000000).unwrap();

        // A normal location.
        assert_eq!(locations.next(),
                   Ok(Some(LocationListEntry {
                       range: Range {
                           begin: 0x01010200,
                           end: 0x01010300,
                       },
                       data: EndianBuf::new(&[2, 0, 0, 0]),
                   })));

        // A base address selection followed by a normal location.
        assert_eq!(locations.next(),
                   Ok(Some(LocationListEntry {
                       range: Range {
                           begin: 0x02010400,
                           end: 0x02010500,
                       },
                       data: EndianBuf::new(&[3, 0, 0, 0]),
                   })));

        // An empty location range followed by a normal location.
        assert_eq!(locations.next(),
                   Ok(Some(LocationListEntry {
                       range: Range {
                           begin: 0x02010800,
                           end: 0x02010900,
                       },
                       data: EndianBuf::new(&[5, 0, 0, 0]),
                   })));

        // A location range that starts at 0.
        assert_eq!(locations.next(),
                   Ok(Some(LocationListEntry {
                       range: Range {
                           begin: 0x02000000,
                           end: 0x02000001,
                       },
                       data: EndianBuf::new(&[6, 0, 0, 0]),
                   })));

        // A location range that ends at -1.
        assert_eq!(locations.next(),
                   Ok(Some(LocationListEntry {
                       range: Range {
                           begin: 0x00000000,
                           end: 0xffffffff,
                       },
                       data: EndianBuf::new(&[7, 0, 0, 0]),
                   })));

        // A location list end.
        assert_eq!(locations.next(), Ok(None));

        // An offset at the end of buf.
        let mut locations = debug_loc.locations(DebugLocOffset(buf.len()), 4, 0x01000000)
            .unwrap();
        assert_eq!(locations.next(), Ok(None));
    }

    #[test]
    fn test_location_list_64() {
        let start = Label::new();
        let first = Label::new();
        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(0xffffffffffffffff).L64(0x02000000)
            .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(0xffffffffffffffff).L64(0x00000000)
            .L64(0).L64(0xffffffffffffffff).L16(4).L32(7)
            // A location list end.
            .L64(0).L64(0)
            // Some extra data.
            .L64(0);

        let buf = section.get_contents().unwrap();
        let debug_loc = DebugLoc::<LittleEndian>::new(&buf);
        let offset = DebugLocOffset((&first - &start) as usize);
        let mut locations = debug_loc.locations(offset, 8, 0x01000000).unwrap();

        // A normal location.
        assert_eq!(locations.next(),
                   Ok(Some(LocationListEntry {
                       range: Range {
                           begin: 0x01010200,
                           end: 0x01010300,
                       },
                       data: EndianBuf::new(&[2, 0, 0, 0]),
                   })));

        // A base address selection followed by a normal location.
        assert_eq!(locations.next(),
                   Ok(Some(LocationListEntry {
                       range: Range {
                           begin: 0x02010400,
                           end: 0x02010500,
                       },
                       data: EndianBuf::new(&[3, 0, 0, 0]),
                   })));

        // An empty location range followed by a normal location.
        assert_eq!(locations.next(),
                   Ok(Some(LocationListEntry {
                       range: Range {
                           begin: 0x02010800,
                           end: 0x02010900,
                       },
                       data: EndianBuf::new(&[5, 0, 0, 0]),
                   })));

        // A location range that starts at 0.
        assert_eq!(locations.next(),
                   Ok(Some(LocationListEntry {
                       range: Range {
                           begin: 0x02000000,
                           end: 0x02000001,
                       },
                       data: EndianBuf::new(&[6, 0, 0, 0]),
                   })));

        // A location range that ends at -1.
        assert_eq!(locations.next(),
                   Ok(Some(LocationListEntry {
                       range: Range {
                           begin: 0x0,
                           end: 0xffffffffffffffff,
                       },
                       data: EndianBuf::new(&[7, 0, 0, 0]),
                   })));

        // A location list end.
        assert_eq!(locations.next(), Ok(None));

        // An offset at the end of buf.
        let mut locations = debug_loc.locations(DebugLocOffset(buf.len()), 8, 0x01000000)
            .unwrap();
        assert_eq!(locations.next(), Ok(None));
    }

    #[test]
    fn test_ranges_invalid() {
        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(0xff010000).L16(4).L32(2);

        let buf = section.get_contents().unwrap();
        let debug_loc = DebugLoc::<LittleEndian>::new(&buf);

        // An invalid location range.
        let mut locations = debug_loc.locations(DebugLocOffset(0x0), 4, 0x01000000).unwrap();
        assert_eq!(locations.next(), Err(Error::InvalidLocationAddressRange));

        // An invalid location range after wrapping.
        let mut locations = debug_loc.locations(DebugLocOffset(0x8), 4, 0x01000000).unwrap();
        assert_eq!(locations.next(), Err(Error::InvalidLocationAddressRange));

        // An invalid offset.
        match debug_loc.locations(DebugLocOffset(buf.len() + 1), 4, 0x01000000) {
            Err(Error::UnexpectedEof) => {}
            otherwise => panic!("Unexpected result: {:?}", otherwise),
        }
    }
}