Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-udp.h
1 /* packet-udp.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #ifndef __PACKET_UDP_H__
12 #define __PACKET_UDP_H__
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif /* __cplusplus */
17 
18 #include "ws_symbol_export.h"
19 
20 #include <epan/conversation.h>
21 
22 /* UDP structs and definitions */
23 typedef struct _e_udphdr {
24  guint16 uh_sport;
25  guint16 uh_dport;
26  guint32 uh_ulen;
27  guint32 uh_sum_cov;
28  guint16 uh_sum;
29  guint32 uh_stream; /* this stream index field is included to help differentiate when address/port pairs are reused */
30  address ip_src;
31  address ip_dst;
32 } e_udphdr;
33 
34 /* Conversation and process structures originally copied from packet-tcp.c */
35 typedef struct _udp_flow_t {
36  /* Process info, currently discovered via IPFIX */
37  guint32 process_uid; /* UID of local process */
38  guint32 process_pid; /* PID of local process */
39  gchar *username; /* Username of the local process */
40  gchar *command; /* Local process name + path + args */
41 } udp_flow_t;
42 
43 struct udp_analysis {
44  /* These two structs are managed based on comparing the source
45  * and destination addresses and, if they're equal, comparing
46  * the source and destination ports.
47  *
48  * If the source is greater than the destination, then stuff
49  * sent from src is in ual1.
50  *
51  * If the source is less than the destination, then stuff
52  * sent from src is in ual2.
53  *
54  * XXX - if the addresses and ports are equal, we don't guarantee
55  * the behavior.
56  */
57  udp_flow_t flow1;
58  udp_flow_t flow2;
59 
60  /* These pointers are set by get_tcp_conversation_data()
61  * fwd point in the same direction as the current packet
62  * and rev in the reverse direction
63  */
64  udp_flow_t *fwd;
65  udp_flow_t *rev;
66 
67  /* Keep track of udp stream numbers instead of using the conversation
68  * index (as how it was done before). This prevents gaps in the
69  * stream index numbering
70  */
71  guint32 stream;
72 };
73 
86 extern void add_udp_process_info(guint32 frame_num, address *local_addr, address *remote_addr, guint16 local_port, guint16 remote_port, guint32 uid, guint32 pid, gchar *username, gchar *command);
87 
92 WS_DLL_PUBLIC guint32 get_udp_stream_count(void);
93 
94 WS_DLL_PUBLIC void decode_udp_ports(tvbuff_t *, int, packet_info *,
95  proto_tree *, int, int, int);
96 
97 WS_DLL_PUBLIC struct udp_analysis *get_udp_conversation_data(conversation_t *,
98  packet_info *);
99 
100 /*
101  * Loop for dissecting PDUs within a UDP packet; Similar to tcp_dissect_pdus,
102  * but doesn't have stream support. Assumes that a PDU consists of a
103  * fixed-length chunk of data that contains enough information
104  * to determine the length of the PDU, followed by rest of the PDU.
105  *
106  * @param tvb the tvbuff with the (remaining) packet data passed to dissector
107  * @param pinfo the packet info of this packet (additional info) passed to dissector
108  * @param tree the protocol tree to be build or NULL passed to dissector
109  * @param fixed_len is the length of the fixed-length part of the PDU.
110  * @param heuristic_check is the optional routine called to see if dissection
111  * should be done; it's passed "pinfo", "tvb", "offset" and "dissector_data".
112  * @param get_pdu_len is a routine called to get the length of the PDU from
113  * the fixed-length part of the PDU; it's passed "pinfo", "tvb", "offset" and
114  * "dissector_data".
115  * @param dissect_pdu the sub-dissector to be called
116  * @param dissector_data parameter to pass to subdissector
117  */
118 WS_DLL_PUBLIC int
119 udp_dissect_pdus(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
120  guint fixed_len, gboolean (*heuristic_check)(packet_info *, tvbuff_t *, int, void*),
121  guint (*get_pdu_len)(packet_info *, tvbuff_t *, int, void*),
122  dissector_t dissect_pdu, void* dissector_data);
123 
124 #ifdef __cplusplus
125 }
126 #endif /* __cplusplus */
127 
128 #endif
Definition: packet_info.h:44
Definition: tvbuff-int.h:35
Definition: packet-udp.h:43
Definition: conversation.h:89
Definition: packet-udp.h:23
Definition: stream.c:40
Definition: packet-udp.h:35
Definition: proto.h:759
Definition: address.h:47