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 <[email protected]>
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
169
170/*
171 * XXX - for now, we just #define these to be the same as the
172 * corresponding CONVERSATION_ values, for backwards source
173 * compatibility.
174 *
175 * In the long term, we should make this into a separate enum,
176 * with elements corresponding to conversation types that do
177 * not have known endpoints removed.
178 */
179/* Types of conversation endpoints Wireshark knows about. */
180#define ENDPOINT_NONE CONVERSATION_NONE
181#define ENDPOINT_SCTP CONVERSATION_SCTP
182#define ENDPOINT_TCP CONVERSATION_TCP
183#define ENDPOINT_UDP CONVERSATION_UDP
184#define ENDPOINT_DCCP CONVERSATION_DCCP
185#define ENDPOINT_IPX CONVERSATION_IPX
186#define ENDPOINT_NCP CONVERSATION_NCP
187#define ENDPOINT_EXCHG CONVERSATION_EXCHG
188#define ENDPOINT_DDP CONVERSATION_DDP
189#define ENDPOINT_SBCCS CONVERSATION_SBCCS
190#define ENDPOINT_IDP CONVERSATION_IDP
191#define ENDPOINT_TIPC CONVERSATION_TIPC
192#define ENDPOINT_USB CONVERSATION_USB
193#define ENDPOINT_I2C CONVERSATION_I2C
194#define ENDPOINT_IBQP CONVERSATION_IBQP
195#define ENDPOINT_BLUETOOTH CONVERSATION_BLUETOOTH
196#define ENDPOINT_TDMOP CONVERSATION_TDMOP
197#define ENDPOINT_DVBCI CONVERSATION_DVBCI
198#define ENDPOINT_ISO14443 CONVERSATION_ISO14443
199#define ENDPOINT_ISDN CONVERSATION_ISDN
200#define ENDPOINT_H223 CONVERSATION_H223
201#define ENDPOINT_X25 CONVERSATION_X25
202#define ENDPOINT_IAX2 CONVERSATION_IAX2
203#define ENDPOINT_DLCI CONVERSATION_DLCI
204#define ENDPOINT_ISUP CONVERSATION_ISUP
205#define ENDPOINT_BICC CONVERSATION_BICC
206#define ENDPOINT_GSMTAP CONVERSATION_GSMTAP
207#define ENDPOINT_IUUP CONVERSATION_IUUP
208#define ENDPOINT_DVBBBF CONVERSATION_DVBBBF
209#define ENDPOINT_IWARP_MPA CONVERSATION_IWARP_MPA
210#define ENDPOINT_BT_UTP CONVERSATION_BT_UTP
211#define ENDPOINT_LOG CONVERSATION_LOG
212#define ENDPOINT_MCTP CONVERSATION_MCTP
213#define ENDPOINT_NVME_MI CONVERSATION_NVME_MI
214#define ENDPOINT_SNMP CONVERSATION_SNMP
215#define ENDPOINT_IP CONVERSATION_IP
216#define ENDPOINT_IPv6 CONVERSATION_IPv6
217#define ENDPOINT_ETH CONVERSATION_ETH
218#define ENDPOINT_ILNP CONVERSATION_ILNP
219
220typedef conversation_type endpoint_type;
221
236
258typedef struct conversation_element {
260 union {
263 unsigned int port_val;
264 const char *str_val;
265 unsigned int uint_val;
266 uint64_t uint64_val;
268 int64_t int64_val;
269 struct {
270 const uint8_t *val;
271 size_t len;
273 };
275
279typedef struct conversation {
280 struct conversation *next;
283 uint32_t conv_index;
284 uint32_t setup_frame;
285 /* Assume that setup_frame is also the lowest frame number for now. */
286 uint32_t last_frame;
289 unsigned options;
292
293/*
294 * For some protocols, we store, in the packet_info structure, a pair
295 * of address/port endpoints, for use by code that might want to
296 * construct a conversation for that protocol.
297 *
298 * This appears to have been done in order to allow protocols to save
299 * that information *without* overwriting the addresses or ports in the
300 * packet_info structure, so that the other code that uses those values,
301 * such as the code that fills in the address and port columns in the
302 * packet summary, will pick up the values put there by protocols such
303 * as IP and UDP, rather than the values put there by protocols such as
304 * TDMoP, FCIP, TIPC, and DVB Dynamic Mode Adaptation. See commit
305 * 66b441f3d63e21949530d672bf1406dea94ed254 and issue #11340.
306 *
307 * That is set by conversation_set_conv_addr_port_endpoints().
308 *
309 * In find_conversation_pinfo() and find_or_create_conversation(), if
310 * any dissector has set this, that address/port endpoint pair is used
311 * to look up or create the conversation.
312 *
313 * Prior to 4.0, conversations identified by a single integer value
314 * (such as a circuit ID) were handled by creating a pair of address/port
315 * endpoints with null addresses, the first port equal to the integer
316 * value, the second port missing, and a port type being an ENDPOINT_
317 * type specifying the protocol for the conversation. Now we use an
318 * array of elements, with a CE_UINT value for the integer followed
319 * by a CE_CONVERSATION_TYPE value specifying the protocol for the
320 * conversation.
321 *
322 * XXX - is there any reason why we shouldn't use an array of conversation
323 * elements, with the appropriate addresses and ports, instead of this
324 * structure? It would at least simplify find_conversation_pinfo() and
325 * find_or_create_conversation().
326 */
328typedef struct conversation_addr_port_endpoints* conversation_addr_port_endpoints_t;
329
336WS_DLL_PUBLIC const address* conversation_key_addr1(const conversation_element_t *key);
337
344WS_DLL_PUBLIC uint32_t conversation_key_port1(const conversation_element_t *key);
345
352WS_DLL_PUBLIC const address* conversation_key_addr2(const conversation_element_t *key);
353
360WS_DLL_PUBLIC uint32_t conversation_key_port2(const conversation_element_t *key);
361
365extern void conversation_init(void);
366
374extern void conversation_epan_reset(void);
375
382WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_full(const uint32_t setup_frame, conversation_element_t *elements);
383
403WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new(const uint32_t setup_frame, const address *addr1, const address *addr2,
404 const conversation_type ctype, const uint32_t port1, const uint32_t port2, const unsigned options);
405
413WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_by_id(const uint32_t setup_frame, const conversation_type ctype, const uint32_t id);
414
424WS_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);
425
432WS_DLL_PUBLIC bool is_deinterlacing_supported(const packet_info *pinfo);
433
449WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_deinterlaced(const uint32_t setup_frame, const address *addr1, const address *addr2,
450 const conversation_type ctype, const uint32_t port1, const uint32_t port2, const uint32_t anchor, const unsigned options);
451
465WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_deinterlacer(const uint32_t setup_frame, const address *addr1, const address *addr2,
466 const conversation_type ctype, const uint32_t key1, const uint32_t key2, const uint32_t key3);
467
478WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_strat(const packet_info *pinfo, const conversation_type ctype, const unsigned options);
479
495WS_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,
496 const conversation_type ctype, const uint32_t port1, const uint32_t port2, const unsigned options);
497
504WS_DLL_PUBLIC conversation_t *find_conversation_full(const uint32_t frame_num, conversation_element_t *elements);
505
553WS_DLL_PUBLIC conversation_t *find_conversation(const uint32_t frame_num, const address *addr_a, const address *addr_b,
554 const conversation_type ctype, const uint32_t port_a, const uint32_t port_b, const unsigned options);
555
569WS_DLL_PUBLIC conversation_t *find_conversation_deinterlaced(const uint32_t frame_num, const address *addr_a, const address *addr_b,
570 const conversation_type ctype, const uint32_t port_a, const uint32_t port_b, const uint32_t anchor, const unsigned options);
571
584WS_DLL_PUBLIC conversation_t *find_conversation_deinterlacer(const uint32_t frame_num, const address *addr_a, const address *addr_b,
585 const conversation_type ctype, const uint32_t key_a, const uint32_t key_b, const uint32_t key_c);
586
598
607WS_DLL_PUBLIC conversation_t *find_conversation_by_id(const uint32_t frame, const conversation_type ctype, const uint32_t id);
608
618WS_DLL_PUBLIC conversation_t *find_conversation_err_pkts(const uint32_t frame, const conversation_type ctype, const uint32_t id, const uint32_t rid);
619
631WS_DLL_PUBLIC conversation_t *find_conversation_strat(const packet_info *pinfo, const conversation_type ctype, const unsigned options, const bool direction);
632
651WS_DLL_PUBLIC conversation_t *find_conversation_strat_xtd(const packet_info *pinfo, const uint32_t setup_frame, const address *addr1, const address *addr2,
652 const conversation_type ctype, const uint32_t port1, const uint32_t port2, const unsigned options);
653
654
662WS_DLL_PUBLIC conversation_t *find_conversation_pinfo(const packet_info *pinfo, const unsigned options);
663
673WS_DLL_PUBLIC conversation_t *find_conversation_pinfo_strat(const packet_info *pinfo, const unsigned options);
674
687WS_DLL_PUBLIC conversation_t *find_conversation_pinfo_ro(const packet_info *pinfo, const unsigned options);
688
701WS_DLL_PUBLIC WS_RETNONNULL conversation_t *find_or_create_conversation(const packet_info *pinfo);
702
712WS_DLL_PUBLIC WS_RETNONNULL conversation_t *find_or_create_conversation_strat(const packet_info *pinfo);
713
724WS_DLL_PUBLIC WS_RETNONNULL conversation_t *find_or_create_conversation_by_id(packet_info *pinfo, const conversation_type ctype, const uint32_t id);
725
732WS_DLL_PUBLIC void conversation_add_proto_data(conversation_t *conv, const int proto, void *proto_data);
733
740WS_DLL_PUBLIC void *conversation_get_proto_data(const conversation_t *conv, const int proto);
741
747WS_DLL_PUBLIC void conversation_delete_proto_data(conversation_t *conv, const int proto);
748
755WS_DLL_PUBLIC void conversation_set_dissector(conversation_t *conversation, const dissector_handle_t handle);
756
764
766 const uint32_t starting_frame_num, const dissector_handle_t handle);
767
775WS_DLL_PUBLIC dissector_handle_t conversation_get_dissector(conversation_t *conversation, const uint32_t frame_num);
776
790WS_DLL_PUBLIC void conversation_set_conv_addr_port_endpoints(struct _packet_info *pinfo, address* addr1, address* addr2,
791 conversation_type ctype, uint32_t port1, uint32_t port2);
792
803WS_DLL_PUBLIC void conversation_set_elements_by_id(struct _packet_info *pinfo,
804 conversation_type ctype, uint32_t id);
805
814WS_DLL_PUBLIC uint32_t conversation_get_id_from_elements(struct _packet_info *pinfo,
815 conversation_type ctype, const unsigned options);
816
839WS_DLL_PUBLIC bool try_conversation_dissector(const address *addr_a, const address *addr_b, const conversation_type ctype,
840 const uint32_t port_a, const uint32_t port_b, tvbuff_t *tvb, packet_info *pinfo,
841 proto_tree *tree, void* data, const unsigned options);
842
859WS_DLL_PUBLIC bool try_conversation_dissector_strat(packet_info *pinfo, const conversation_type ctype,
860 tvbuff_t *tvb, proto_tree *tree, void* data, const unsigned options, const bool direction);
861
873WS_DLL_PUBLIC bool try_conversation_dissector_by_id(const conversation_type ctype, const uint32_t id, tvbuff_t *tvb,
874 packet_info *pinfo, proto_tree *tree, void* data);
875
876/* These routines are used to set undefined values for a conversation */
877
883WS_DLL_PUBLIC void conversation_set_port2(conversation_t *conv, const uint32_t port);
884
890WS_DLL_PUBLIC void conversation_set_addr2(conversation_t *conv, const address *addr);
891
898WS_DLL_PUBLIC wmem_map_t *get_conversation_hashtables(void);
899
900/* Temporary function to handle port_type to conversation_type conversion
901 For now it's a 1-1 mapping, but the intention is to remove
902 many of the port_type instances in favor of conversation_type
903 */
904
916
927WS_DLL_PUBLIC endpoint_type conversation_pt_to_endpoint_type(port_type pt);
928
929#ifdef __cplusplus
930}
931#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_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:225
@ CE_UINT
Definition conversation.h:230
@ CE_INT64
Definition conversation.h:233
@ CE_ADDRESS
Definition conversation.h:227
@ CE_UINT64
Definition conversation.h:231
@ CE_INT
Definition conversation.h:232
@ CE_STRING
Definition conversation.h:229
@ CE_CONVERSATION_TYPE
Definition conversation.h:226
@ CE_BLOB
Definition conversation.h:234
@ CE_PORT
Definition conversation.h:228
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:258
const char * str_val
Definition conversation.h:264
conversation_type conversation_type_val
Definition conversation.h:261
struct conversation_element::@033102106042001132324141022105016241257224270020::@021322373103365370247224232050021226270073014151 blob
const uint8_t * val
Definition conversation.h:270
unsigned int uint_val
Definition conversation.h:265
size_t len
Definition conversation.h:271
conversation_element_type type
Definition conversation.h:259
uint64_t uint64_val
Definition conversation.h:266
address addr_val
Definition conversation.h:262
int int_val
Definition conversation.h:267
unsigned int port_val
Definition conversation.h:263
int64_t int64_val
Definition conversation.h:268
Definition conversation.h:279
wmem_tree_t * dissector_tree
Definition conversation.h:288
struct conversation * last
Definition conversation.h:281
struct conversation * latest_found
Definition conversation.h:282
uint32_t setup_frame
Definition conversation.h:284
unsigned options
Definition conversation.h:289
wmem_tree_t * data_list
Definition conversation.h:287
uint32_t last_frame
Definition conversation.h:286
uint32_t conv_index
Definition conversation.h:283
conversation_element_t * key_ptr
Definition conversation.h:290