scripts: Added -w/--word-bits to bound dbgleb128/dbgle32 parsing

This is limited to dbgle32.py, dbgleb128.py, and dbgtag.py for now.

This more closely matches how littlefs behaves, in that we read a
bounded number of bytes before leb128 decoding. This minimizes bugs
related to leb128 overflow and avoids reading inherently undecodable
data.

The previous unbounded behavior is still available with -w0.

Note this gives dbgle32.py much more flexibility in that it can now
decode other integer widths. Uh, ignore the name for now. At least it's
self documenting that the default is 32-bits...

---

Also fixed a bug in fromleb128 where size was reported incorrectly on
offset + truncated leb128.
This commit is contained in:
Christopher Haster
2025-04-14 16:26:21 -05:00
parent 0cea8b96fb
commit bd70270e11
9 changed files with 91 additions and 28 deletions
+28 -9
View File
@@ -5,6 +5,7 @@ if __name__ == "__main__":
__import__('sys').path.pop(0)
import io
import math as mt
import os
import struct
import sys
@@ -21,18 +22,27 @@ def openio(path, mode='r', buffering=-1):
else:
return open(path, mode, buffering)
def fromle32(data, j=0):
return struct.unpack('<I', data[j:j+4].ljust(4, b'\0'))[0]
def dbg_le32s(data, *,
word_bits=32):
# figure out le32 size in bytes
if word_bits != 0:
n = mt.ceil(word_bits / 8)
def dbg_le32s(data):
# parse le32s, or le<whatevers>
lines = []
j = 0
while j < len(data):
word = fromle32(data, j)
word = 0
d = 0
while (j+d < len(data)
and (d < n if word_bits != 0 else True)):
word |= data[j+d] << d
d += 1
lines.append((
' '.join('%02x' % b for b in data[j:j+4]),
' '.join('%02x' % b for b in data[j:j+d]),
word))
j += 4
j += d
# figure out widths
w = [0]
@@ -47,18 +57,21 @@ def dbg_le32s(data):
def main(le32s, *,
hex=False,
input=None):
input=None,
word_bits=32):
hex_ = hex; del hex
# interpret as a sequence of hex bytes
if hex_:
bytes_ = [b for le32 in le32s for b in le32.split()]
dbg_le32s(bytes(int(b, 16) for b in bytes_))
dbg_le32s(bytes(int(b, 16) for b in bytes_),
word_bits=word_bits)
# parse le32s in a file
elif input:
with openio(input, 'rb') as f:
dbg_le32s(f.read())
dbg_le32s(f.read(),
word_bits=word_bits)
# we don't currently have a default interpretation
else:
@@ -84,6 +97,12 @@ if __name__ == "__main__":
parser.add_argument(
'-i', '--input',
help="Read le32s from this file. Can use - for stdin.")
parser.add_argument(
'-w', '--word-bits',
nargs='?',
type=lambda x: int(x, 0),
const=0,
help="Word size in bits. 0 is unbounded. Defaults to 32.")
sys.exit(main(**{k: v
for k, v in vars(parser.parse_intermixed_args()).items()
if v is not None}))