utils.py 930 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #!/usr/bin/env python3
  2. #
  3. # Copyright (c) 2021 Intel Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. """
  7. Utilities for Dictionary-based Logingg Parser
  8. """
  9. import binascii
  10. def convert_hex_file_to_bin(hexfile):
  11. """This converts a file in hexadecimal to binary"""
  12. bin_data = b''
  13. with open(hexfile, "r") as hfile:
  14. for line in hfile.readlines():
  15. hex_str = line.strip()
  16. bin_str = binascii.unhexlify(hex_str)
  17. bin_data += bin_str
  18. return bin_data
  19. def extract_string_from_section(section, str_ptr):
  20. """Extract all the strings in an ELF section"""
  21. data = section['data']
  22. max_offset = section['size']
  23. offset = str_ptr - section['start']
  24. if offset < 0 or offset >= max_offset:
  25. return None
  26. ret_str = ""
  27. while (data[offset] != 0) and (offset < max_offset):
  28. ret_str += chr(data[offset])
  29. offset += 1
  30. return ret_str