diff options
| author | Rubens Brandao <git@rubens.io> | 2024-08-06 11:01:23 -0300 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2024-08-27 17:19:25 -0400 |
| commit | 7e1027d904e66b0cadb277883cdfa7b13dcb209f (patch) | |
| tree | 4451fe8134e7518d43b1e04c1446f56d3bb2091e /view/bintxt/src/srec.rs | |
| parent | feca74615ab3e10e7e256630946d830d07414d08 (diff) | |
Implement IHEX, SREC and TI-TXT views
All bundled under the arch_bintxt/arch_bintext view plugin
Diffstat (limited to 'view/bintxt/src/srec.rs')
| -rw-r--r-- | view/bintxt/src/srec.rs | 329 |
1 files changed, 329 insertions, 0 deletions
diff --git a/view/bintxt/src/srec.rs b/view/bintxt/src/srec.rs new file mode 100644 index 00000000..d11e5fd5 --- /dev/null +++ b/view/bintxt/src/srec.rs @@ -0,0 +1,329 @@ +use binaryninja::binaryview::{BinaryView, BinaryViewBase, BinaryViewExt}; +use binaryninja::custombinaryview::{ + BinaryViewType, BinaryViewTypeBase, CustomBinaryView, CustomBinaryViewType, CustomView, + CustomViewBuilder, +}; +use binaryninja::rc::Ref; +use binaryninja::segment::SegmentBuilder; +use srec::Record; + +use crate::{ + segment_after_address, segment_from_address, sort_and_merge_segments, MergedSegment, + UnmergedSegment, +}; + +struct SRecParser<I> { + reader: I, + segments: Vec<UnmergedSegment>, + sector_counter: u32, + start: u32, +} + +#[derive(Clone, Copy, PartialEq, Eq)] +enum RecordLen { + R16, + R24, + R32, +} + +impl<I: Iterator<Item = Result<Record, srec::ReaderError>>> SRecParser<I> { + fn parse(&mut self) -> Result<(), ()> { + // first sector need to be the header + let header = self.reader.next(); + let header = header + .ok_or_else(|| { + log::error!("Missing header record"); + })? + .map_err(|e| { + log::error!("Unable to parse header record: {e}"); + })?; + + let Record::S0(_header_info) = header else { + log::error!("Invalid first record"); + return Err(()); + }; + + // parse the first data record + let second_record = self + .reader + .next() + .ok_or_else(|| { + log::error!("Missing first data record"); + })? + .map_err(|e| { + log::error!("Unable to parse first data record: {e}"); + })?; + let (addr_len, first_data_addr, first_data) = match second_record { + Record::S0(_) + | Record::S5(_) + | Record::S6(_) + | Record::S7(_) + | Record::S8(_) + | Record::S9(_) => { + log::error!("Invalid second record type"); + return Err(()); + } + Record::S1(s) => (RecordLen::R16, u32::from(s.address).into(), s.data), + Record::S2(s) => (RecordLen::R24, u32::from(s.address).into(), s.data), + Record::S3(s) => (RecordLen::R32, u32::from(s.address).into(), s.data), + }; + self.sector_counter = 1; + self.segments.push(UnmergedSegment { + address: first_data_addr, + data: first_data, + }); + + // parse zero or more data after the first until hit a Count (S5, S6) + // or Start Address (S7, S8, S9) Record + let next = loop { + let record = self + .reader + .next() + .ok_or_else(|| { + log::error!("Final record can't be data"); + })? + .map_err(|e| { + log::error!("Unable to parse record: {e}"); + })?; + match record { + Record::S0(_) => { + log::error!("Multiple header records"); + return Err(()); + } + Record::S1(s) if addr_len == RecordLen::R16 => { + self.add_record_data(u32::from(s.address).into(), s.data) + } + Record::S2(s) if addr_len == RecordLen::R24 => { + self.add_record_data(u32::from(s.address).into(), s.data) + } + Record::S3(s) if addr_len == RecordLen::R32 => { + self.add_record_data(u32::from(s.address).into(), s.data) + } + Record::S1(_) | Record::S2(_) | Record::S3(_) => { + log::error!("Data record with invalid len"); + return Err(()); + } + other @ (Record::S5(_) + | Record::S6(_) + | Record::S7(_) + | Record::S8(_) + | Record::S9(_)) => break other, + } + }; + + // S5/S6 is an opional last-but-one record + let last = match next { + Record::S0(_) | Record::S1(_) | Record::S2(_) | Record::S3(_) => { + unreachable!() + } + Record::S5(s) => { + self.check_count_record(s.into())?; + self.reader.next() + } + Record::S6(s) => { + self.check_count_record(s.into())?; + self.reader.next() + } + s @ (Record::S7(_) | Record::S8(_) | Record::S9(_)) => Some(Ok(s)), + }; + + // the last record need to be S7 | S8 | S9 + let last = last + .ok_or_else(|| { + log::error!("Missing last record"); + })? + .map_err(|e| { + log::error!("Unable to parse last record: {e}"); + })?; + match last { + Record::S7(s) => self.start = s.into(), + Record::S8(s) => self.start = s.into(), + Record::S9(s) => self.start = s.into(), + _ => { + log::error!("Invalid last record type"); + return Err(()); + } + } + + // can't have any record after S7 | S8 | S9 + if let Some(_s) = self.reader.next() { + log::error!("Records found after the last"); + return Err(()); + } + + Ok(()) + } + + fn add_record_data(&mut self, address: u64, data: Vec<u8>) { + self.sector_counter += 1; + match self.segments.last_mut() { + // check if the block is just extending the previous one, merge both + Some(last) if last.end() == address => { + last.data.extend(data); + } + // otherwise just add a new block + _ => { + self.segments.push(UnmergedSegment { address, data }); + } + } + } + + fn check_count_record(&self, value: u32) -> Result<(), ()> { + if value != self.sector_counter { + log::error!("Invalid number of records"); + Err(()) + } else { + Ok(()) + } + } +} + +fn parse_srec(data: &str) -> Result<(Vec<u8>, SRecViewData), ()> { + let mut parser = SRecParser { + reader: srec::reader::read_records(&data), + segments: vec![], + sector_counter: 0, + start: 0, + }; + parser.parse()?; + + let segments = sort_and_merge_segments(parser.segments)?; + Ok(( + segments.data, + SRecViewData { + segments: segments.segments, + start: parser.start, + }, + )) +} + +pub struct SRecViewConstructor { + pub core: BinaryViewType, +} + +impl AsRef<BinaryViewType> for SRecViewConstructor { + fn as_ref(&self) -> &BinaryViewType { + &self.core + } +} +impl CustomBinaryViewType for SRecViewConstructor { + fn create_custom_view<'builder>( + &self, + parent: &BinaryView, + builder: CustomViewBuilder<'builder, Self>, + ) -> Result<CustomView<'builder>, ()> { + let bytes = parent.len(); + let mut buf = vec![0; bytes]; + let bytes_read = parent.read(&mut buf, 0); + if bytes_read != bytes { + log::error!("IHex file is too small"); + return Err(()); + } + let string = String::from_utf8(buf).map_err(|_| { + log::error!("File contains invalid UTF8 characters"); + })?; + let (data, regs) = parse_srec(&string)?; + + let parent_bin = BinaryView::from_data(&parent.file(), &data)?; + builder.create::<SRecView>(&parent_bin, regs) + } +} + +impl BinaryViewTypeBase for SRecViewConstructor { + fn is_valid_for(&self, data: &BinaryView) -> bool { + // TODO check filename and identify the type if necessary + //let filename = data.file().filename(); + //let filename = std::path::Path::new(filename.as_str()); + //let filetype = filename + // .extension() + // .map(|ext| match ext.to_string_lossy().as_ref() { + // "s19" | "s28" | "s37" | "s" | "s1" | "s2" | "s3" | "sx" | "srec" | "exo" + // | "mot" | "mxt" => true, + // _ => false, + // }); + + // The biggest possible record line is 269 + const READ_LEN: usize = 384; + let mut first_bytes = [0u8; READ_LEN]; + let read_bytes = data.read(&mut first_bytes, 0); + let line = String::from_utf8_lossy(&first_bytes[0..read_bytes]); + if !line.is_ascii() { + return false; + } + let first_record: Result<Record, _> = line.parse(); + // first record need to be and S0 + matches!(first_record, Ok(Record::S0(_))) + } + + fn is_deprecated(&self) -> bool { + false + } +} + +pub struct SRecView { + core: Ref<BinaryView>, + segments: Vec<MergedSegment>, + start: u32, +} + +pub struct SRecViewData { + segments: Vec<MergedSegment>, + start: u32, +} + +impl AsRef<BinaryView> for SRecView { + fn as_ref(&self) -> &BinaryView { + &self.core + } +} + +unsafe impl CustomBinaryView for SRecView { + type Args = SRecViewData; + + fn new(handle: &BinaryView, _args: &Self::Args) -> Result<Self, ()> { + Ok(Self { + core: handle.to_owned(), + // NOTE dummy values, final values are added on init + start: 0, + segments: vec![], + }) + } + + fn init(&mut self, SRecViewData { start, segments }: Self::Args) -> Result<(), ()> { + self.start = start; + self.segments = segments; + + for segment in self.segments.iter() { + self.add_segment( + SegmentBuilder::from(*segment) + .executable(true) + .readable(true) + .contains_data(true) + .contains_code(true), + ); + } + Ok(()) + } +} + +impl BinaryViewBase for SRecView { + fn entry_point(&self) -> u64 { + self.start.into() + } + + fn default_endianness(&self) -> binaryninja::Endianness { + binaryninja::Endianness::LittleEndian + } + + fn address_size(&self) -> usize { + 4 + } + + fn offset_valid(&self, offset: u64) -> bool { + segment_from_address(&self.segments, offset).is_some() + } + + fn next_valid_offset_after(&self, offset: u64) -> u64 { + segment_after_address(&self.segments, offset) + } +} |
