Wireshark-bugs: [Wireshark-bugs] [Bug 8222] Buildbot crash output: fuzz-2013-01-16-23596.pcap
Date: Wed, 16 Jan 2013 21:51:49 +0000

changed bug 8222

What Removed Added
Status CONFIRMED IN_PROGRESS
CC   wireshark@kaiser.cx

Comment # 1 on bug 8222 from
this is an "endless loop" in the dcp-etsi protocol

it's trying to reassemble fragments in dissect_pft_fec_detailed()
apparently, due to rs error correction, this protocol does not need all
fragments for the reassembly, missing fragments can be filled with 0s

the sample capture tricks the dissector into believing that we do have the
fragment for offset 262144 plus enough other fragments such that we can attempt
reassembly. the dissector now tries to insert 262144/fragment size dummy
fragments filled with 0s...

so this is not exactly an endless loop but annoying nevertheless

I comitted a fix in r47123 that stops reassembly attempts if more than 1000
consecutive fragments are missing.


You are receiving this mail because:
  • You are watching all bug changes.