Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
conversation.h
Go to the documentation of this file.
1/* conversation.h
2 * Routines for building lists of packets that are part of a "conversation"
3 *
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <gerald@wireshark.org>
6 * Copyright 1998 Gerald Combs
7 *
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
10#pragma once
11#include "ws_symbol_export.h"
12
13#include <epan/packet.h> /* for conversation dissector type */
14#include <epan/wmem_scopes.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif /* __cplusplus */
19
26
76#define NO_ADDR2 0x01
77#define NO_PORT2 0x02
78#define NO_PORT2_FORCE 0x04
79#define CONVERSATION_TEMPLATE 0x08
80#define NO_PORTS 0x010
81
98#define NO_MASK_B 0xFFFF0000
99#define NO_ADDR_B 0x00010000
100#define NO_PORT_B 0x00020000
101#define NO_PORT_X 0x00040000
102#define NO_GREEDY 0x00100000
103#define EXACT_EXCLUDED 0x00200000
104
106#define USE_LAST_ENDPOINT 0x08
107
170
171/*
172 * XXX - for now, we just #define these to be the same as the
173 * corresponding CONVERSATION_ values, for backwards source
174 * compatibility.
175 *
176 * In the long term, we should make this into a separate enum,
177 * with elements corresponding to conversation types that do
178 * not have known endpoints removed.
179 */
180/* Types of conversation endpoints Wireshark knows about. */
181#define ENDPOINT_NONE CONVERSATION_NONE
182#define ENDPOINT_SCTP CONVERSATION_SCTP
183#define ENDPOINT_TCP CONVERSATION_TCP
184#define ENDPOINT_UDP CONVERSATION_UDP
185#define ENDPOINT_DCCP CONVERSATION_DCCP
186#define ENDPOINT_IPX CONVERSATION_IPX
187#define ENDPOINT_NCP CONVERSATION_NCP
188#define ENDPOINT_EXCHG CONVERSATION_EXCHG
189#define ENDPOINT_DDP CONVERSATION_DDP
190#define ENDPOINT_SBCCS CONVERSATION_SBCCS
191#define ENDPOINT_IDP CONVERSATION_IDP
192#define ENDPOINT_TIPC CONVERSATION_TIPC
193#define ENDPOINT_USB CONVERSATION_USB
194#define ENDPOINT_I2C CONVERSATION_I2C
195#define ENDPOINT_IBQP CONVERSATION_IBQP
196#define ENDPOINT_BLUETOOTH CONVERSATION_BLUETOOTH
197#define ENDPOINT_TDMOP CONVERSATION_TDMOP
198#define ENDPOINT_DVBCI CONVERSATION_DVBCI
199#define ENDPOINT_ISO14443 CONVERSATION_ISO14443
200#define ENDPOINT_ISDN CONVERSATION_ISDN
201#define ENDPOINT_H223 CONVERSATION_H223
202#define ENDPOINT_X25 CONVERSATION_X25
203#define ENDPOINT_IAX2 CONVERSATION_IAX2
204#define ENDPOINT_DLCI CONVERSATION_DLCI
205#define ENDPOINT_ISUP CONVERSATION_ISUP
206#define ENDPOINT_BICC CONVERSATION_BICC
207#define ENDPOINT_GSMTAP CONVERSATION_GSMTAP
208#define ENDPOINT_IUUP CONVERSATION_IUUP
209#define ENDPOINT_DVBBBF CONVERSATION_DVBBBF
210#define ENDPOINT_IWARP_MPA CONVERSATION_IWARP_MPA
211#define ENDPOINT_BT_UTP CONVERSATION_BT_UTP
212#define ENDPOINT_LOG CONVERSATION_LOG
213#define ENDPOINT_MCTP CONVERSATION_MCTP
214#define ENDPOINT_NVME_MI CONVERSATION_NVME_MI
215#define ENDPOINT_SNMP CONVERSATION_SNMP
216#define ENDPOINT_IP CONVERSATION_IP
217#define ENDPOINT_IPv6 CONVERSATION_IPv6
218#define ENDPOINT_ETH CONVERSATION_ETH
219#define ENDPOINT_ILNP CONVERSATION_ILNP
220
221typedef conversation_type endpoint_type;
222
237
259typedef struct conversation_element {
261 union {
264 unsigned int port_val;
265 const char *str_val;
266 unsigned int uint_val;
267 uint64_t uint64_val;
269 int64_t int64_val;
270 struct {
271 const uint8_t *val;
272 size_t len;
274 };
276
280typedef struct conversation {
281 struct conversation *next;
284 uint32_t conv_index;
285 uint32_t setup_frame;
286 /* Assume that setup_frame is also the lowest frame number for now. */
287 uint32_t last_frame;
290 unsigned options;
293
294/*
295 * For some protocols, we store, in the packet_info structure, a pair
296 * of address/port endpoints, for use by code that might want to
297 * construct a conversation for that protocol.
298 *
299 * This appears to have been done in order to allow protocols to save
300 * that information *without* overwriting the addresses or ports in the
301 * packet_info structure, so that the other code that uses those values,
302 * such as the code that fills in the address and port columns in the
303 * packet summary, will pick up the values put there by protocols such
304 * as IP and UDP, rather than the values put there by protocols such as
305 * TDMoP, FCIP, TIPC, and DVB Dynamic Mode Adaptation. See commit
306 * 66b441f3d63e21949530d672bf1406dea94ed254 and issue #11340.
307 *
308 * That is set by conversation_set_conv_addr_port_endpoints().
309 *
310 * In find_conversation_pinfo() and find_or_create_conversation(), if
311 * any dissector has set this, that address/port endpoint pair is used
312 * to look up or create the conversation.
313 *
314 * Prior to 4.0, conversations identified by a single integer value
315 * (such as a circuit ID) were handled by creating a pair of address/port
316 * endpoints with null addresses, the first port equal to the integer
317 * value, the second port missing, and a port type being an ENDPOINT_
318 * type specifying the protocol for the conversation. Now we use an
319 * array of elements, with a CE_UINT value for the integer followed
320 * by a CE_CONVERSATION_TYPE value specifying the protocol for the
321 * conversation.
322 *
323 * XXX - is there any reason why we shouldn't use an array of conversation
324 * elements, with the appropriate addresses and ports, instead of this
325 * structure? It would at least simplify find_conversation_pinfo() and
326 * find_or_create_conversation().
327 */
329typedef struct conversation_addr_port_endpoints* conversation_addr_port_endpoints_t;
330
337WS_DLL_PUBLIC const address* conversation_key_addr1(const conversation_element_t *key);
338
345WS_DLL_PUBLIC uint32_t conversation_key_port1(const conversation_element_t *key);
346
353WS_DLL_PUBLIC const address* conversation_key_addr2(const conversation_element_t *key);
354
361WS_DLL_PUBLIC uint32_t conversation_key_port2(const conversation_element_t *key);
362
366extern void conversation_init(void);
367
375extern void conversation_epan_reset(void);
376
383WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_full(const uint32_t setup_frame, conversation_element_t *elements);
384
404WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new(const uint32_t setup_frame, const address *addr1, const address *addr2,
405 const conversation_type ctype, const uint32_t port1, const uint32_t port2, const unsigned options);
406
414WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_by_id(const uint32_t setup_frame, const conversation_type ctype, const uint32_t id);
415
425WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_err_pkts(const uint32_t setup_frame, const conversation_type ctype, const uint32_t id, const uint32_t rid);
426
433WS_DLL_PUBLIC bool is_deinterlacing_supported(const packet_info *pinfo);
434
450WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_deinterlaced(const uint32_t setup_frame, const address *addr1, const address *addr2,
451 const conversation_type ctype, const uint32_t port1, const uint32_t port2, const uint32_t anchor, const unsigned options);
452
466WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_deinterlacer(const uint32_t setup_frame, const address *addr1, const address *addr2,
467 const conversation_type ctype, const uint32_t key1, const uint32_t key2, const uint32_t key3);
468
479WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_strat(const packet_info *pinfo, const conversation_type ctype, const unsigned options);
480
496WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_strat_xtd(const packet_info *pinfo, const uint32_t setup_frame, const address *addr1, const address *addr2,
497 const conversation_type ctype, const uint32_t port1, const uint32_t port2, const unsigned options);
498
505WS_DLL_PUBLIC conversation_t *find_conversation_full(const uint32_t frame_num, conversation_element_t *elements);
506
554WS_DLL_PUBLIC conversation_t *find_conversation(const uint32_t frame_num, const address *addr_a, const address *addr_b,
555 const conversation_type ctype, const uint32_t port_a, const uint32_t port_b, const unsigned options);
556
570WS_DLL_PUBLIC conversation_t *find_conversation_deinterlaced(const uint32_t frame_num, const address *addr_a, const address *addr_b,
571 const conversation_type ctype, const uint32_t port_a, const uint32_t port_b, const uint32_t anchor, const unsigned options);
572
585WS_DLL_PUBLIC conversation_t *find_conversation_deinterlacer(const uint32_t frame_num, const address *addr_a, const address *addr_b,
586 const conversation_type ctype, const uint32_t key_a, const uint32_t key_b, const uint32_t key_c);
587
599
608WS_DLL_PUBLIC conversation_t *find_conversation_by_id(const uint32_t frame, const conversation_type ctype, const uint32_t id);
609
619WS_DLL_PUBLIC conversation_t *find_conversation_err_pkts(const uint32_t frame, const conversation_type ctype, const uint32_t id, const uint32_t rid);
620
632WS_DLL_PUBLIC conversation_t *find_conversation_strat(const packet_info *pinfo, const conversation_type ctype, const unsigned options, const bool direction);
633
652WS_DLL_PUBLIC conversation_t *find_conversation_strat_xtd(const packet_info *pinfo, const uint32_t setup_frame, const address *addr1, const address *addr2,
653 const conversation_type ctype, const uint32_t port1, const uint32_t port2, const unsigned options);
654
655
663WS_DLL_PUBLIC conversation_t *find_conversation_pinfo(const packet_info *pinfo, const unsigned options);
664
674WS_DLL_PUBLIC conversation_t *find_conversation_pinfo_strat(const packet_info *pinfo, const unsigned options);
675
688WS_DLL_PUBLIC conversation_t *find_conversation_pinfo_ro(const packet_info *pinfo, const unsigned options);
689
702WS_DLL_PUBLIC WS_RETNONNULL conversation_t *find_or_create_conversation(const packet_info *pinfo);
703
713WS_DLL_PUBLIC WS_RETNONNULL conversation_t *find_or_create_conversation_strat(const packet_info *pinfo);
714
725WS_DLL_PUBLIC WS_RETNONNULL conversation_t *find_or_create_conversation_by_id(packet_info *pinfo, const conversation_type ctype, const uint32_t id);
726
733WS_DLL_PUBLIC void conversation_add_proto_data(conversation_t *conv, const int proto, void *proto_data);
734
741WS_DLL_PUBLIC void *conversation_get_proto_data(const conversation_t *conv, const int proto);
742
748WS_DLL_PUBLIC void conversation_delete_proto_data(conversation_t *conv, const int proto);
749
756WS_DLL_PUBLIC void conversation_set_dissector(conversation_t *conversation, const dissector_handle_t handle);
757
765
767 const uint32_t starting_frame_num, const dissector_handle_t handle);
768
776WS_DLL_PUBLIC dissector_handle_t conversation_get_dissector(conversation_t *conversation, const uint32_t frame_num);
777
791WS_DLL_PUBLIC void conversation_set_conv_addr_port_endpoints(struct _packet_info *pinfo, address* addr1, address* addr2,
792 conversation_type ctype, uint32_t port1, uint32_t port2);
793
804WS_DLL_PUBLIC void conversation_set_elements_by_id(struct _packet_info *pinfo,
805 conversation_type ctype, uint32_t id);
806
815WS_DLL_PUBLIC uint32_t conversation_get_id_from_elements(struct _packet_info *pinfo,
816 conversation_type ctype, const unsigned options);
817
840WS_DLL_PUBLIC bool try_conversation_dissector(const address *addr_a, const address *addr_b, const conversation_type ctype,
841 const uint32_t port_a, const uint32_t port_b, tvbuff_t *tvb, packet_info *pinfo,
842 proto_tree *tree, void* data, const unsigned options);
843
860WS_DLL_PUBLIC bool try_conversation_dissector_strat(packet_info *pinfo, const conversation_type ctype,
861 tvbuff_t *tvb, proto_tree *tree, void* data, const unsigned options, const bool direction);
862
874WS_DLL_PUBLIC bool try_conversation_dissector_by_id(const conversation_type ctype, const uint32_t id, tvbuff_t *tvb,
875 packet_info *pinfo, proto_tree *tree, void* data);
876
877/* These routines are used to set undefined values for a conversation */
878
884WS_DLL_PUBLIC void conversation_set_port2(conversation_t *conv, const uint32_t port);
885
891WS_DLL_PUBLIC void conversation_set_addr2(conversation_t *conv, const address *addr);
892
899WS_DLL_PUBLIC wmem_map_t *get_conversation_hashtables(void);
900
901/* Temporary function to handle port_type to conversation_type conversion
902 For now it's a 1-1 mapping, but the intention is to remove
903 many of the port_type instances in favor of conversation_type
904 */
905
917
928WS_DLL_PUBLIC endpoint_type conversation_pt_to_endpoint_type(port_type pt);
929
930#ifdef __cplusplus
931}
932#endif /* __cplusplus */
struct _address address
Holds a network or link-layer address of any supported type.
port_type
Transport-layer port number types recognized by Wireshark.
Definition address.h:425
WS_DLL_PUBLIC dissector_handle_t conversation_get_dissector(conversation_t *conversation, const uint32_t frame_num)
Retrieves the dissector associated with a conversation at a specific frame number.
Definition conversation.c:2781
WS_DLL_PUBLIC conversation_t * find_conversation_by_id(const uint32_t frame, const conversation_type ctype, const uint32_t id)
Finds a conversation by its ID.
Definition conversation.c:2694
WS_DLL_PUBLIC bool try_conversation_dissector(const address *addr_a, const address *addr_b, const conversation_type ctype, const uint32_t port_a, const uint32_t port_b, tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data, const unsigned options)
Given two address/port pairs for a packet, search for a matching conversation and,...
Definition conversation.c:2823
WS_DLL_PUBLIC endpoint_type conversation_pt_to_endpoint_type(port_type pt)
Converts a port_type to an endpoint_type.
Definition conversation.c:3466
WS_DLL_PUBLIC conversation_t * find_conversation_full(const uint32_t frame_num, conversation_element_t *elements)
Search for a conversation based on the structure and values of an element list.
Definition conversation.c:1594
void conversation_epan_reset(void)
Initialize some variables every time a file is loaded or re-loaded.
Definition conversation.c:784
WS_DLL_PUBLIC uint32_t conversation_key_port2(const conversation_element_t *key)
Retrieve the second port from a conversation key.
Definition conversation.c:3410
WS_DLL_PUBLIC void * conversation_get_proto_data(const conversation_t *conv, const int proto)
Fetch data associated with a conversation.
Definition conversation.c:2741
struct conversation conversation_t
WS_DLL_PUBLIC conversation_t * find_conversation_deinterlacer_pinfo(const packet_info *pinfo)
A wrapper function of find_conversation_deinterlacer().
Definition conversation.c:2652
WS_DLL_PUBLIC void conversation_set_addr2(conversation_t *conv, const address *addr)
Set the second address in a conversation created with conversation_new.
Definition conversation.c:1520
WS_DLL_PUBLIC conversation_t * find_conversation_strat_xtd(const packet_info *pinfo, const uint32_t setup_frame, const address *addr1, const address *addr2, const conversation_type ctype, const uint32_t port1, const uint32_t port2, const unsigned options)
Finds a conversation using extended parameters.
Definition conversation.c:2984
WS_DLL_PUBLIC conversation_type conversation_pt_to_conversation_type(port_type pt)
Converts a port_type to an endpoint_type.
Definition conversation.c:3426
WS_DLL_PUBLIC conversation_t * find_conversation_err_pkts(const uint32_t frame, const conversation_type ctype, const uint32_t id, const uint32_t rid)
Finds a conversation using error packets.
Definition conversation.c:2716
WS_DLL_PUBLIC const address * conversation_key_addr1(const conversation_element_t *key)
Retrieve the first address from a conversation key.
Definition conversation.c:3380
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * find_or_create_conversation_by_id(packet_info *pinfo, const conversation_type ctype, const uint32_t id)
A helper function that calls find_conversation_by_id() and, if a conversation is not found,...
Definition conversation.c:3308
conversation_type
Conversation key types recognized by Wireshark dissectors.
Definition conversation.h:115
@ CONVERSATION_SYNCHROPHASOR
Definition conversation.h:168
@ CONVERSATION_ETH_IN
Definition conversation.h:160
@ CONVERSATION_SNMP
Definition conversation.h:152
@ CONVERSATION_BP
Definition conversation.h:151
@ CONVERSATION_BLUETOOTH
Definition conversation.h:131
@ CONVERSATION_TIPC
Definition conversation.h:127
@ CONVERSATION_GNSS
Definition conversation.h:165
@ CONVERSATION_QUIC
Definition conversation.h:153
@ CONVERSATION_SCTP
Definition conversation.h:117
@ CONVERSATION_H223
Definition conversation.h:136
@ CONVERSATION_BICC
Definition conversation.h:141
@ CONVERSATION_NCP
Definition conversation.h:122
@ CONVERSATION_IBQP
Definition conversation.h:130
@ CONVERSATION_IP
Definition conversation.h:155
@ CONVERSATION_NVME_MI
Definition conversation.h:150
@ CONVERSATION_VSPC_VMOTION
Definition conversation.h:162
@ CONVERSATION_IDP
Definition conversation.h:126
@ CONVERSATION_ISO14443
Definition conversation.h:134
@ CONVERSATION_IPV6
Definition conversation.h:156
@ CONVERSATION_LTP
Definition conversation.h:148
@ CONVERSATION_USB
Definition conversation.h:128
@ CONVERSATION_DVBBBF
Definition conversation.h:144
@ CONVERSATION_DVBCI
Definition conversation.h:133
@ CONVERSATION_EXCHG
Definition conversation.h:123
@ CONVERSATION_ETH_NN
Definition conversation.h:158
@ CONVERSATION_LOG
Definition conversation.h:147
@ CONVERSATION_ETH_NV
Definition conversation.h:159
@ CONVERSATION_NONE
Definition conversation.h:116
@ CONVERSATION_IAX2
Definition conversation.h:138
@ CONVERSATION_SBCCS
Definition conversation.h:125
@ CONVERSATION_ETH
Definition conversation.h:157
@ CONVERSATION_PROXY
Definition conversation.h:164
@ CONVERSATION_DDP
Definition conversation.h:124
@ CONVERSATION_TCP
Definition conversation.h:118
@ CONVERSATION_IPX
Definition conversation.h:121
@ CONVERSATION_DCCP
Definition conversation.h:120
@ CONVERSATION_ILNP
Definition conversation.h:167
@ CONVERSATION_GSMTAP
Definition conversation.h:142
@ CONVERSATION_TDMOP
Definition conversation.h:132
@ CONVERSATION_ETH_IV
Definition conversation.h:161
@ CONVERSATION_DLCI
Definition conversation.h:139
@ CONVERSATION_I2C
Definition conversation.h:129
@ CONVERSATION_ISUP
Definition conversation.h:140
@ CONVERSATION_BT_UTP
Definition conversation.h:146
@ CONVERSATION_X25
Definition conversation.h:137
@ CONVERSATION_IWARP_MPA
Definition conversation.h:145
@ CONVERSATION_IUUP
Definition conversation.h:143
@ CONVERSATION_IDN
Definition conversation.h:154
@ CONVERSATION_UDP
Definition conversation.h:119
@ CONVERSATION_MCTP
Definition conversation.h:149
@ CONVERSATION_ISDN
Definition conversation.h:135
@ CONVERSATION_DNP3
Definition conversation.h:166
@ CONVERSATION_OPENVPN
Definition conversation.h:163
WS_DLL_PUBLIC void conversation_set_dissector_from_frame_number(conversation_t *conversation, const uint32_t starting_frame_num, const dissector_handle_t handle)
Set a dissector for a conversation starting from a specific frame number.
Definition conversation.c:2765
WS_DLL_PUBLIC conversation_t * find_conversation_pinfo_strat(const packet_info *pinfo, const unsigned options)
A helper function that calls find_conversation() using data from pinfo. It's a simplified version of ...
Definition conversation.c:3116
WS_DLL_PUBLIC void conversation_set_conv_addr_port_endpoints(struct _packet_info *pinfo, address *addr1, address *addr2, conversation_type ctype, uint32_t port1, uint32_t port2)
Set the address and port endpoints for a conversation in the packet info.
Definition conversation.c:3326
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * conversation_new_deinterlaced(const uint32_t setup_frame, const address *addr1, const address *addr2, const conversation_type ctype, const uint32_t port1, const uint32_t port2, const uint32_t anchor, const unsigned options)
Create a deinterlaced conversation, based on two addresses, a type, and several keys (VLAN,...
Definition conversation.c:1280
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * find_or_create_conversation(const packet_info *pinfo)
A helper function that calls find_conversation() and, if a conversation is not found,...
Definition conversation.c:3234
WS_DLL_PUBLIC void conversation_set_elements_by_id(struct _packet_info *pinfo, conversation_type ctype, uint32_t id)
Set the conversation elements for a conversation in the packet info.
Definition conversation.c:3346
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * conversation_new_by_id(const uint32_t setup_frame, const conversation_type ctype, const uint32_t id)
Create a new conversation identified by a conversation index.
Definition conversation.c:1190
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * conversation_new_full(const uint32_t setup_frame, conversation_element_t *elements)
Create a new conversation identified by a list of elements.
Definition conversation.c:911
WS_DLL_PUBLIC void conversation_delete_proto_data(conversation_t *conv, const int proto)
Remove data associated with a conversation.
Definition conversation.c:2755
struct conversation_element conversation_element_t
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * conversation_new_strat_xtd(const packet_info *pinfo, const uint32_t setup_frame, const address *addr1, const address *addr2, const conversation_type ctype, const uint32_t port1, const uint32_t port2, const unsigned options)
A helper function for creating conversations according to the runtime deinterlacing strategy,...
Definition conversation.c:1167
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * conversation_new_strat(const packet_info *pinfo, const conversation_type ctype, const unsigned options)
A helper function for creating conversations according to the runtime deinterlacing strategy,...
Definition conversation.c:1145
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * conversation_new_deinterlacer(const uint32_t setup_frame, const address *addr1, const address *addr2, const conversation_type ctype, const uint32_t key1, const uint32_t key2, const uint32_t key3)
Create a deinterlacer conversation, based on two addresses, a type, and several keys (VLAN,...
Definition conversation.c:1232
WS_DLL_PUBLIC const address * conversation_key_addr2(const conversation_element_t *key)
Retrieve the second address from a conversation key.
Definition conversation.c:3400
WS_DLL_PUBLIC conversation_t * find_conversation_pinfo(const packet_info *pinfo, const unsigned options)
A helper function that calls find_conversation() using data from pinfo The frame number and addresses...
Definition conversation.c:3004
WS_DLL_PUBLIC conversation_t * find_conversation_pinfo_ro(const packet_info *pinfo, const unsigned options)
A helper function that calls find_conversation() using data from pinfo.
Definition conversation.c:3140
WS_DLL_PUBLIC uint32_t conversation_get_id_from_elements(struct _packet_info *pinfo, conversation_type ctype, const unsigned options)
Get the ID value from the conversation elements in the packet info.
Definition conversation.c:3356
WS_DLL_PUBLIC bool try_conversation_dissector_strat(packet_info *pinfo, const conversation_type ctype, tvbuff_t *tvb, proto_tree *tree, void *data, const unsigned options, const bool direction)
Attempts to dissect a packet using a conversation-based strategy.
Definition conversation.c:2874
WS_DLL_PUBLIC conversation_t * find_conversation(const uint32_t frame_num, const address *addr_a, const address *addr_b, const conversation_type ctype, const uint32_t port_a, const uint32_t port_b, const unsigned options)
Definition conversation.c:1840
WS_DLL_PUBLIC void conversation_set_port2(conversation_t *conv, const uint32_t port)
Set the second port in a conversation created with conversation_new.
Definition conversation.c:1476
WS_DLL_PUBLIC bool is_deinterlacing_supported(const packet_info *pinfo)
Returns the Deinterlacing support status.
Definition conversation.c:3105
void conversation_init(void)
Create a new hash tables for conversations.
Definition conversation.c:572
WS_DLL_PUBLIC conversation_t * find_conversation_deinterlacer(const uint32_t frame_num, const address *addr_a, const address *addr_b, const conversation_type ctype, const uint32_t key_a, const uint32_t key_b, const uint32_t key_c)
Finds a conversation using deinterlacing based on frame number and addresses.
Definition conversation.c:2629
WS_DLL_PUBLIC bool try_conversation_dissector_by_id(const conversation_type ctype, const uint32_t id, tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data)
Tries to use an existing dissector for a given conversation type and ID. Attempt to dissect a packet ...
Definition conversation.c:2923
WS_DLL_PUBLIC uint32_t conversation_key_port1(const conversation_element_t *key)
Retrieve the first port from a conversation key.
Definition conversation.c:3390
conversation_element_type
Definition conversation.h:226
@ CE_UINT
Definition conversation.h:231
@ CE_INT64
Definition conversation.h:234
@ CE_ADDRESS
Definition conversation.h:228
@ CE_UINT64
Definition conversation.h:232
@ CE_INT
Definition conversation.h:233
@ CE_STRING
Definition conversation.h:230
@ CE_CONVERSATION_TYPE
Definition conversation.h:227
@ CE_BLOB
Definition conversation.h:235
@ CE_PORT
Definition conversation.h:229
WS_DLL_PUBLIC wmem_map_t * get_conversation_hashtables(void)
Get a hash table of conversation hash table.
Definition conversation.c:3374
WS_DLL_PUBLIC conversation_t * find_conversation_strat(const packet_info *pinfo, const conversation_type ctype, const unsigned options, const bool direction)
A helper function that calls find_conversation() using data from pinfo, and returns a conversation ac...
Definition conversation.c:2957
WS_DLL_PUBLIC void conversation_add_proto_data(conversation_t *conv, const int proto, void *proto_data)
Associate data with a conversation.
Definition conversation.c:2728
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * find_or_create_conversation_strat(const packet_info *pinfo)
Finds or creates a conversation based on the provided packet information.
Definition conversation.c:3290
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * conversation_new(const uint32_t setup_frame, const address *addr1, const address *addr2, const conversation_type ctype, const uint32_t port1, const uint32_t port2, const unsigned options)
Given two address/port pairs for a packet, create a new conversation identified by address/port pairs...
Definition conversation.c:955
WS_DLL_PUBLIC conversation_t * find_conversation_deinterlaced(const uint32_t frame_num, const address *addr_a, const address *addr_b, const conversation_type ctype, const uint32_t port_a, const uint32_t port_b, const uint32_t anchor, const unsigned options)
Finds a conversation using deinterlacing based on frame number, addresses, ports, and type.
Definition conversation.c:2242
WS_DLL_PUBLIC void conversation_set_dissector(conversation_t *conversation, const dissector_handle_t handle)
Set the dissector for a conversation.
Definition conversation.c:2775
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * conversation_new_err_pkts(const uint32_t setup_frame, const conversation_type ctype, const uint32_t id, const uint32_t rid)
Create a new conversation in the err_pkts table.
Definition conversation.c:1210
struct _packet_info packet_info
Represents the metadata and indexing information for a single captured frame.
struct _wmem_map_t wmem_map_t
Opaque type representing a wmem-managed hash map.
Definition wmem_map.h:46
struct _wmem_tree_t wmem_tree_t
Opaque type representing a red-black tree in the wmem system.
Definition wmem_tree.h:49
Represents the metadata and indexing information for a single captured frame.
Definition packet_info.h:43
Definition conversation.c:49
Definition conversation.h:259
const char * str_val
Definition conversation.h:265
conversation_type conversation_type_val
Definition conversation.h:262
struct conversation_element::@033102106042001132324141022105016241257224270020::@021322373103365370247224232050021226270073014151 blob
const uint8_t * val
Definition conversation.h:271
unsigned int uint_val
Definition conversation.h:266
size_t len
Definition conversation.h:272
conversation_element_type type
Definition conversation.h:260
uint64_t uint64_val
Definition conversation.h:267
address addr_val
Definition conversation.h:263
int int_val
Definition conversation.h:268
unsigned int port_val
Definition conversation.h:264
int64_t int64_val
Definition conversation.h:269
Definition conversation.h:280
wmem_tree_t * dissector_tree
Definition conversation.h:289
struct conversation * last
Definition conversation.h:282
struct conversation * latest_found
Definition conversation.h:283
uint32_t setup_frame
Definition conversation.h:285
unsigned options
Definition conversation.h:290
wmem_tree_t * data_list
Definition conversation.h:288
uint32_t last_frame
Definition conversation.h:287
uint32_t conv_index
Definition conversation.h:284
conversation_element_t * key_ptr
Definition conversation.h:291