ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Wireshark-dev: Re: [Wireshark-dev] multiple parsing of the same packets

From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Wed, 30 Oct 2013 12:05:57 -0700
On Oct 30, 2013, at 7:31 AM, Evan Huus <eapache@xxxxxxxxx> wrote:

> On Wed, Oct 30, 2013 at 4:14 AM, Matthieu Patou <mat@xxxxxxxxx> wrote:
>> Hello,
>> 
>> I noticed long time ago that wireshark is parsing the same packet at least 3
>> tree times.
>> 
>> To make it worse if I go back and forth to the same packet it will be
>> dissected one more time.
>> With complex protocols like DRS (directory replication for Active directory)
>> it's really a problem as the UI freeze for a while.
> 
> Is the protocol really so complex that dissecting a single packet of
> it takes a user-visible amount of time? That seems suspect to me.

I think we may currently have to make two passes over the contents of some DCE RPC packets.

If so, is that truly necessary?

And are there any *other* things that make DRS *so* complicated that dissecting a single packet is that slow?  Is it just that the packets are extremely large?

>> First thing, why 3 dissections initially, is there a way to reduce this to
>> 2, I more or less understand why 2 pass are needed but 3 ...
> 
> It is in theory possible, the third pass is usually either to fill in
> the column or tree information. We could in theory pull that straight
> from the second pass, but we would have to calculate in advance which
> packets are visible, which may or may not be easy.

We could, perhaps, cache dissection results from a small number of packets.  If, for example, we could query the packet summary list widget to see how many packets it's displaying, the cache could save dissection results for that many of the most recently dissected packets.