aboutsummaryrefslogtreecommitdiff
path: root/scripts/transdump.py
blob: 665f04a000fccd9250a94357be9c16891a45c855 (plain)
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
#!/usr/bin/env python

# This script is useful for taking the output of memdump() and
# converting it back into binary output.  This can be useful, for
# example, when one wants to push that data into other tools like
# objdump or hexdump.
#
# (C) Copyright 2010 Kevin O'Connor <kevin@koconnor.net>
#
# This file may be distributed under the terms of the GNU GPLv3 license.

import sys
import struct

def unhex(str):
    return int(str, 16)

def parseMem(filehdl):
    mem = []
    for line in filehdl:
        parts = line.split(':')
        if len(parts) < 2:
            continue
        try:
            vaddr = unhex(parts[0])
            parts = parts[1].split()
            mem.extend([unhex(v) for v in parts])
        except ValueError:
            continue
    return mem

def printUsage():
    sys.stderr.write("Usage:\n %s <file | ->\n"
                     % (sys.argv[0],))
    sys.exit(1)

def main():
    if len(sys.argv) != 2:
        printUsage()
    filename = sys.argv[1]
    if filename == '-':
        filehdl = sys.stdin
    else:
        filehdl = open(filename, 'r')
    mem = parseMem(filehdl)
    for i in mem:
        if (sys.version_info > (3, 0)):
            sys.stdout.buffer.write(struct.pack("<I", i))
        else:
            sys.stdout.write(struct.pack("<I", i))

if __name__ == '__main__':
    main()