Wireshark 4.5.0
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
11#ifndef __CONVERSATION_H__
12#define __CONVERSATION_H__
13
14#include "ws_symbol_export.h"
15
16#include "packet.h" /* for conversation dissector type */
17#include <epan/wmem_scopes.h>
18
19#ifdef __cplusplus
20extern "C" {
21#endif /* __cplusplus */
22
41#define NO_ADDR2 0x01
42#define NO_PORT2 0x02
43#define NO_PORT2_FORCE 0x04
44#define CONVERSATION_TEMPLATE 0x08
45#define NO_PORTS 0x010
46
51#define NO_MASK_B 0xFFFF0000
52#define NO_ADDR_B 0x00010000
53#define NO_PORT_B 0x00020000
54#define NO_PORT_X 0x00040000
55#define NO_ANC 0x00080000
56
58#define USE_LAST_ENDPOINT 0x08
60/* Types of conversations Wireshark knows about. */
61/* XXX: There should be a way to register conversation types used only
62 * within one dissector, similar to address types, instead of changing
63 * the global typedef.
64 */
65typedef enum {
66 CONVERSATION_NONE, /* no conversation key */
67 CONVERSATION_SCTP, /* SCTP */
68 CONVERSATION_TCP, /* TCP address/port pairs */
69 CONVERSATION_UDP, /* UDP address/port pairs */
70 CONVERSATION_DCCP, /* DCCP */
71 CONVERSATION_IPX, /* IPX sockets */
72 CONVERSATION_NCP, /* NCP connection */
73 CONVERSATION_EXCHG, /* Fibre Channel exchange */
74 CONVERSATION_DDP, /* DDP AppleTalk address/port pair */
75 CONVERSATION_SBCCS, /* FICON */
76 CONVERSATION_IDP, /* XNS IDP sockets */
77 CONVERSATION_TIPC, /* TIPC PORT */
78 CONVERSATION_USB, /* USB endpoint 0xffff means the host */
79 CONVERSATION_I2C,
80 CONVERSATION_IBQP, /* Infiniband QP number */
81 CONVERSATION_BLUETOOTH,
82 CONVERSATION_TDMOP,
83 CONVERSATION_DVBCI,
84 CONVERSATION_ISO14443,
85 CONVERSATION_ISDN, /* ISDN channel number */
86 CONVERSATION_H223, /* H.223 logical channel number */
87 CONVERSATION_X25, /* X.25 logical channel number */
88 CONVERSATION_IAX2, /* IAX2 call id */
89 CONVERSATION_DLCI, /* Frame Relay DLCI */
90 CONVERSATION_ISUP, /* ISDN User Part CIC */
91 CONVERSATION_BICC, /* BICC Circuit identifier */
92 CONVERSATION_GSMTAP,
93 CONVERSATION_IUUP,
94 CONVERSATION_DVBBBF, /* DVB Base Band Frame ISI/PLP_ID */
95 CONVERSATION_IWARP_MPA, /* iWarp MPA */
96 CONVERSATION_BT_UTP, /* BitTorrent uTP Connection ID */
97 CONVERSATION_LOG, /* Logging source */
98 CONVERSATION_LTP, /* LTP Engine ID and Session Number */
99 CONVERSATION_MCTP,
100 CONVERSATION_NVME_MI, /* NVMe management interface */
101 CONVERSATION_BP, /* Bundle Protocol endpoint IDs */
102 CONVERSATION_SNMP, /* SNMP */
103 CONVERSATION_QUIC, /* QUIC */
104 CONVERSATION_IDN,
105 CONVERSATION_IP, /* IP */
106 CONVERSATION_IPV6, /* IPv6 */
107 CONVERSATION_ETH, /* ETHERNET classic */
108 CONVERSATION_ETH_NN, /* ETHERNET deinterlaced Interface:N VLAN:N */
109 CONVERSATION_ETH_NV, /* ETHERNET deinterlaced Interface:N VLAN:Y */
110 CONVERSATION_ETH_IN, /* ETHERNET deinterlaced Interface:Y VLAN:N */
111 CONVERSATION_ETH_IV, /* ETHERNET deinterlaced Interface:Y VLAN:Y */
112 CONVERSATION_VSPC_VMOTION, /* VMware vSPC vMotion (Telnet) */
113 CONVERSATION_OPENVPN,
114} conversation_type;
115
116/*
117 * XXX - for now, we just #define these to be the same as the
118 * corresponding CONVERSATION_ values, for backwards source
119 * compatibility.
120 *
121 * In the long term, we should make this into a separate enum,
122 * with elements corresponding to conversation types that do
123 * not have known endpoints removed.
124 */
125/* Types of conversation endpoints Wireshark knows about. */
126#define ENDPOINT_NONE CONVERSATION_NONE
127#define ENDPOINT_SCTP CONVERSATION_SCTP
128#define ENDPOINT_TCP CONVERSATION_TCP
129#define ENDPOINT_UDP CONVERSATION_UDP
130#define ENDPOINT_DCCP CONVERSATION_DCCP
131#define ENDPOINT_IPX CONVERSATION_IPX
132#define ENDPOINT_NCP CONVERSATION_NCP
133#define ENDPOINT_EXCHG CONVERSATION_EXCHG
134#define ENDPOINT_DDP CONVERSATION_DDP
135#define ENDPOINT_SBCCS CONVERSATION_SBCCS
136#define ENDPOINT_IDP CONVERSATION_IDP
137#define ENDPOINT_TIPC CONVERSATION_TIPC
138#define ENDPOINT_USB CONVERSATION_USB
139#define ENDPOINT_I2C CONVERSATION_I2C
140#define ENDPOINT_IBQP CONVERSATION_IBQP
141#define ENDPOINT_BLUETOOTH CONVERSATION_BLUETOOTH
142#define ENDPOINT_TDMOP CONVERSATION_TDMOP
143#define ENDPOINT_DVBCI CONVERSATION_DVBCI
144#define ENDPOINT_ISO14443 CONVERSATION_ISO14443
145#define ENDPOINT_ISDN CONVERSATION_ISDN
146#define ENDPOINT_H223 CONVERSATION_H223
147#define ENDPOINT_X25 CONVERSATION_X25
148#define ENDPOINT_IAX2 CONVERSATION_IAX2
149#define ENDPOINT_DLCI CONVERSATION_DLCI
150#define ENDPOINT_ISUP CONVERSATION_ISUP
151#define ENDPOINT_BICC CONVERSATION_BICC
152#define ENDPOINT_GSMTAP CONVERSATION_GSMTAP
153#define ENDPOINT_IUUP CONVERSATION_IUUP
154#define ENDPOINT_DVBBBF CONVERSATION_DVBBBF
155#define ENDPOINT_IWARP_MPA CONVERSATION_IWARP_MPA
156#define ENDPOINT_BT_UTP CONVERSATION_BT_UTP
157#define ENDPOINT_LOG CONVERSATION_LOG
158#define ENDPOINT_MCTP CONVERSATION_MCTP
159#define ENDPOINT_NVME_MI CONVERSATION_NVME_MI
160#define ENDPOINT_SNMP CONVERSATION_SNMP
161
162typedef conversation_type endpoint_type;
163
167typedef enum {
168 CE_CONVERSATION_TYPE, /* CONVERSATION_ value */
169 CE_ADDRESS, /* address */
170 CE_PORT, /* unsigned integer representing a port */
171 CE_STRING, /* string */
172 CE_UINT, /* unsigned integer not representing a port */
173 CE_UINT64, /* 64-bit unsigned integer */
174 CE_INT, /* signed integer */
175 CE_INT64, /* signed integer */
176 CE_BLOB, /* arbitrary binary data */
178
200typedef struct conversation_element {
202 union {
203 conversation_type conversation_type_val;
204 address addr_val;
205 unsigned int port_val;
206 const char *str_val;
207 unsigned int uint_val;
208 uint64_t uint64_val;
209 int int_val;
210 int64_t int64_val;
211 struct {
212 const uint8_t *val;
213 size_t len;
214 } blob;
215 };
217
221typedef struct conversation {
222 struct conversation *next;
225 uint32_t conv_index;
226 uint32_t setup_frame;
227 /* Assume that setup_frame is also the lowest frame number for now. */
228 uint32_t last_frame;
231 unsigned options;
234
235/*
236 * For some protocols, we store, in the packet_info structure, a pair
237 * of address/port endpoints, for use by code that might want to
238 * construct a conversation for that protocol.
239 *
240 * This appears to have been done in order to allow protocols to save
241 * that information *without* overwriting the addresses or ports in the
242 * packet_info structure, so that the other code that uses those values,
243 * such as the code that fills in the address and port columns in the
244 * packet summary, will pick up the values put there by protocols such
245 * as IP and UDP, rather than the values put there by protocols such as
246 * TDMoP, FCIP, TIPC, and DVB Dynamic Mode Adaptation. See commit
247 * 66b441f3d63e21949530d672bf1406dea94ed254 and issue #11340.
248 *
249 * That is set by conversation_set_conv_addr_port_endpoints().
250 *
251 * In find_conversation_pinfo() and find_or_create_conversation(), if
252 * any dissector has set this, that address/port endpoint pair is used
253 * to look up or create the conversation.
254 *
255 * Prior to 4.0, conversations identified by a single integer value
256 * (such as a circuit ID) were handled by creating a pair of address/port
257 * endpoints with null addresses, the first port equal to the integer
258 * value, the second port missing, and a port type being an ENDPOINT_
259 * type specifying the protocol for the conversation. Now we use an
260 * array of elements, with a CE_UINT value for the integer followed
261 * by a CE_CONVERSATION_TYPE value specifying the protocol for the
262 * conversation.
263 *
264 * XXX - is there any reason why we shouldn't use an array of conversation
265 * elements, with the appropriate addresses and ports, instead of this
266 * structure? It would at least simplify find_conversation_pinfo() and
267 * find_or_create_conversation().
268 */
271
272WS_DLL_PUBLIC const address* conversation_key_addr1(const conversation_element_t *key);
273WS_DLL_PUBLIC uint32_t conversation_key_port1(const conversation_element_t *key);
274WS_DLL_PUBLIC const address* conversation_key_addr2(const conversation_element_t *key);
275WS_DLL_PUBLIC uint32_t conversation_key_port2(const conversation_element_t *key);
276
280extern void conversation_init(void);
281
285extern void conversation_epan_reset(void);
286
293WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_full(const uint32_t setup_frame, conversation_element_t *elements);
294
314WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new(const uint32_t setup_frame, const address *addr1, const address *addr2,
315 const conversation_type ctype, const uint32_t port1, const uint32_t port2, const unsigned options);
316
317WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_by_id(const uint32_t setup_frame, const conversation_type ctype, const uint32_t id);
318
322WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_deinterlaced(const uint32_t setup_frame, const address *addr1, const address *addr2,
323 const conversation_type ctype, const uint32_t port1, const uint32_t port2, const uint32_t anchor, const unsigned options);
324
338WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_deinterlacer(const uint32_t setup_frame, const address *addr1, const address *addr2,
339 const conversation_type ctype, const uint32_t key1, const uint32_t key2, const uint32_t key3);
340
351WS_DLL_PUBLIC WS_RETNONNULL conversation_t *conversation_new_strat(packet_info *pinfo, const conversation_type ctype, const unsigned options);
352
359WS_DLL_PUBLIC conversation_t *find_conversation_full(const uint32_t frame_num, conversation_element_t *elements);
360
408WS_DLL_PUBLIC conversation_t *find_conversation(const uint32_t frame_num, const address *addr_a, const address *addr_b,
409 const conversation_type ctype, const uint32_t port_a, const uint32_t port_b, const unsigned options);
410
411WS_DLL_PUBLIC conversation_t *find_conversation_deinterlaced(const uint32_t frame_num, const address *addr_a, const address *addr_b,
412 const conversation_type ctype, const uint32_t port_a, const uint32_t port_b, const uint32_t anchor, const unsigned options);
413
414WS_DLL_PUBLIC conversation_t *find_conversation_deinterlacer(const uint32_t frame_num, const address *addr_a, const address *addr_b,
415 const conversation_type ctype, const uint32_t key_a, const uint32_t key_b, const uint32_t key_c);
416
423
424WS_DLL_PUBLIC conversation_t *find_conversation_by_id(const uint32_t frame, const conversation_type ctype, const uint32_t id);
425
430WS_DLL_PUBLIC conversation_t *find_conversation_strat(const packet_info *pinfo, const conversation_type ctype, const unsigned options);
431
435WS_DLL_PUBLIC conversation_t *find_conversation_pinfo(const packet_info *pinfo, const unsigned options);
436
443WS_DLL_PUBLIC conversation_t *find_conversation_pinfo_ro(const packet_info *pinfo, const unsigned options);
444
455WS_DLL_PUBLIC WS_RETNONNULL conversation_t *find_or_create_conversation(packet_info *pinfo);
456
461WS_DLL_PUBLIC WS_RETNONNULL conversation_t *find_or_create_conversation_by_id(packet_info *pinfo, const conversation_type ctype, const uint32_t id);
462
468WS_DLL_PUBLIC void conversation_add_proto_data(conversation_t *conv, const int proto, void *proto_data);
469
475WS_DLL_PUBLIC void *conversation_get_proto_data(const conversation_t *conv, const int proto);
476
481WS_DLL_PUBLIC void conversation_delete_proto_data(conversation_t *conv, const int proto);
482
483WS_DLL_PUBLIC void conversation_set_dissector(conversation_t *conversation, const dissector_handle_t handle);
484
485WS_DLL_PUBLIC void conversation_set_dissector_from_frame_number(conversation_t *conversation,
486 const uint32_t starting_frame_num, const dissector_handle_t handle);
487
488WS_DLL_PUBLIC dissector_handle_t conversation_get_dissector(conversation_t *conversation, const uint32_t frame_num);
489
501WS_DLL_PUBLIC void conversation_set_conv_addr_port_endpoints(struct _packet_info *pinfo, address* addr1, address* addr2,
502 conversation_type ctype, uint32_t port1, uint32_t port2);
503
512WS_DLL_PUBLIC void conversation_set_elements_by_id(struct _packet_info *pinfo,
513 conversation_type ctype, uint32_t id);
514
523WS_DLL_PUBLIC uint32_t conversation_get_id_from_elements(struct _packet_info *pinfo,
524 conversation_type ctype, const unsigned options);
525
536WS_DLL_PUBLIC bool try_conversation_dissector(const address *addr_a, const address *addr_b, const conversation_type ctype,
537 const uint32_t port_a, const uint32_t port_b, tvbuff_t *tvb, packet_info *pinfo,
538 proto_tree *tree, void* data, const unsigned options);
539
540WS_DLL_PUBLIC bool try_conversation_dissector_by_id(const conversation_type ctype, const uint32_t id, tvbuff_t *tvb,
541 packet_info *pinfo, proto_tree *tree, void* data);
542
543/* These routines are used to set undefined values for a conversation */
544
550WS_DLL_PUBLIC void conversation_set_port2(conversation_t *conv, const uint32_t port);
551
557WS_DLL_PUBLIC void conversation_set_addr2(conversation_t *conv, const address *addr);
558
565WS_DLL_PUBLIC wmem_map_t *get_conversation_hashtables(void);
566
567/* Temporary function to handle port_type to conversation_type conversion
568 For now it's a 1-1 mapping, but the intention is to remove
569 many of the port_type instances in favor of conversation_type
570 */
571WS_DLL_PUBLIC conversation_type conversation_pt_to_conversation_type(port_type pt);
572
573/* Temporary function to handle port_type to endpoint_type conversion
574 For now it's a 1-1 mapping, but the intention is to remove
575 many of the port_type instances in favor of endpoint_type
576 */
577WS_DLL_PUBLIC endpoint_type conversation_pt_to_endpoint_type(port_type pt);
578
579#ifdef __cplusplus
580}
581#endif /* __cplusplus */
582
583#endif /* conversation.h */
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)
Definition conversation.c:2169
WS_DLL_PUBLIC conversation_t * find_conversation_full(const uint32_t frame_num, conversation_element_t *elements)
Definition conversation.c:1358
void conversation_epan_reset(void)
Definition conversation.c:698
WS_DLL_PUBLIC void * conversation_get_proto_data(const conversation_t *conv, const int proto)
Definition conversation.c:2087
struct conversation conversation_t
WS_DLL_PUBLIC conversation_t * find_conversation_deinterlacer_pinfo(const packet_info *pinfo)
Definition conversation.c:2021
WS_DLL_PUBLIC void conversation_set_addr2(conversation_t *conv, const address *addr)
Definition conversation.c:1284
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * find_or_create_conversation_by_id(packet_info *pinfo, const conversation_type ctype, const uint32_t id)
Definition conversation.c:2402
WS_DLL_PUBLIC conversation_t * find_conversation_strat(const packet_info *pinfo, const conversation_type ctype, const unsigned options)
Definition conversation.c:2250
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)
Definition conversation.c:2420
WS_DLL_PUBLIC void conversation_set_elements_by_id(struct _packet_info *pinfo, conversation_type ctype, uint32_t id)
Definition conversation.c:2440
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * find_or_create_conversation(packet_info *pinfo)
Definition conversation.c:2374
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * conversation_new_full(const uint32_t setup_frame, conversation_element_t *elements)
Definition conversation.c:825
WS_DLL_PUBLIC void conversation_delete_proto_data(conversation_t *conv, const int proto)
Definition conversation.c:2101
struct conversation_element conversation_element_t
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)
Definition conversation.c:1101
WS_DLL_PUBLIC conversation_t * find_conversation_pinfo(const packet_info *pinfo, const unsigned options)
Definition conversation.c:2271
WS_DLL_PUBLIC conversation_t * find_conversation_pinfo_ro(const packet_info *pinfo, const unsigned options)
Definition conversation.c:2326
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:2450
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:1561
WS_DLL_PUBLIC void conversation_set_port2(conversation_t *conv, const uint32_t port)
Definition conversation.c:1240
void conversation_init(void)
Definition conversation.c:539
conversation_element_type
Definition conversation.h:167
WS_DLL_PUBLIC wmem_map_t * get_conversation_hashtables(void)
Get a hash table of conversation hash table.
Definition conversation.c:2468
WS_DLL_PUBLIC void conversation_add_proto_data(conversation_t *conv, const int proto, void *proto_data)
Definition conversation.c:2074
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)
Definition conversation.c:869
WS_DLL_PUBLIC WS_RETNONNULL conversation_t * conversation_new_strat(packet_info *pinfo, const conversation_type ctype, const unsigned options)
Definition conversation.c:1059
Definition address.h:56
Definition packet_info.h:43
Definition proto.h:899
Definition wmem_map.c:44
Definition wmem_tree-int.h:48
Definition conversation.c:49
Definition conversation.h:200
Definition conversation.h:221
wmem_tree_t * dissector_tree
Definition conversation.h:230
struct conversation * last
Definition conversation.h:223
struct conversation * latest_found
Definition conversation.h:224
uint32_t setup_frame
Definition conversation.h:226
unsigned options
Definition conversation.h:231
wmem_tree_t * data_list
Definition conversation.h:229
uint32_t last_frame
Definition conversation.h:228
uint32_t conv_index
Definition conversation.h:225
conversation_element_t * key_ptr
Definition conversation.h:232
Definition packet.c:765
Definition tvbuff-int.h:35