ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
April 17th, 2024 | 14:30-16:00 SGT (UTC+8) | Online

Wireshark-dev: [Wireshark-dev] Decoding a buffer using a particular protocol

Date Prev · Date Next · Thread Prev · Thread Next
From: "Sultan, Hassan" <sultah@xxxxxxxxxx>
Date: Thu, 1 Feb 2018 01:42:39 +0000

Hi everyone,

 

I’m looking at doing what ‘decode as’ does, but directly in code :

 

User provides a buffer and a protocol to use, and the code would perform the parsing and end up with an epan_dissect_t that contains the parsed information.

 

I understand there might be limitations as to which dissectors allow doing ‘decode as’, but assuming I restrict myself to the ‘supported’ protocols for this, how do I even do the setup to perform that parsing ?

 

I already have all the code (see below) to take a raw data buffer and parse it, I just can’t figure out how to tell the code “start dissecting using protocol X” and the code in decode_as_dialog.cpp wasn’t clear to me.

 

Any pointers ?

 

Here’s how I’m parsing raw buffers (assuming they start at Ethernet) :

 

        struct wtap_pkthdr stHeader;

        memset(&stHeader, 0, sizeof (stHeader));

 

        stHeader.rec_type = REC_TYPE_PACKET;

        stHeader.caplen = poFrameData->GetLength();

        stHeader.len = poFrameData->GetLength();

        stHeader.pkt_encap = WTAP_ENCAP_ETHERNET;

        stHeader.presence_flags = WTAP_HAS_TS | WTAP_HAS_CAP_LEN;

        frame_data_init(&stFrameData, m_qwFrameCount, &stHeader, 0, 0);

        epan_dissect_run(pstEpanDissect, WTAP_FILE_TYPE_SUBTYPE_UNKNOWN, &stHeader, tvb_new_real_data(poFrameData->GetPayload(), poFrameData->GetLength(), poFrameData->GetLength()), &stFrameData, NULL);

 

Thanks,

 

Hassan