catch exceptions while parsing ax25 frames

This commit is contained in:
Jakob Ketterl 2021-10-22 15:07:42 +02:00
parent d757b817b1
commit f967a8d87a

View File

@ -56,12 +56,15 @@ class Ax25Parser(PickleModule):
for i in range(0, len(l), n): for i in range(0, len(l), n):
yield l[i:i + n] yield l[i:i + n]
return { try:
"destination": self.extractCallsign(ax25frame[0:7]), return {
"source": self.extractCallsign(ax25frame[7:14]), "destination": self.extractCallsign(ax25frame[0:7]),
"path": [self.extractCallsign(c) for c in chunks(ax25frame[14:control_pid], 7)], "source": self.extractCallsign(ax25frame[7:14]),
"data": ax25frame[control_pid + 2 :], "path": [self.extractCallsign(c) for c in chunks(ax25frame[14:control_pid], 7)],
} "data": ax25frame[control_pid + 2 :],
}
except (ValueError, IndexError):
logger.exception("error parsing ax25 frame")
def extractCallsign(self, input): def extractCallsign(self, input):
cs = bytes([b >> 1 for b in input[0:6]]).decode(encoding, "replace").strip() cs = bytes([b >> 1 for b in input[0:6]]).decode(encoding, "replace").strip()