suricata
decode-events.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2022 Open Information Security Foundation
2  *
3  * You can copy, redistribute or modify this Program under the terms of
4  * the GNU General Public License version 2 as published by the Free
5  * Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * version 2 along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  */
17 
18 /**
19  * \file
20  *
21  * \author Victor Julien <victor@inliniac.net>
22  * \author Anoop Saldanha <anoopsaldanha@gmail.com>
23  */
24 
25 #ifndef SURICATA_DECODE_EVENTS_H
26 #define SURICATA_DECODE_EVENTS_H
27 
28 /* packet decoder events */
29 enum {
30  /* AF_PACKET EVENTS */
31  AFP_TRUNC_PKT = 0, /**< packet truncated by af-packet */
32 
33  /* IPV4 EVENTS */
34  IPV4_PKT_TOO_SMALL, /**< ipv4 pkt smaller than minimum header size */
35  IPV4_HLEN_TOO_SMALL, /**< ipv4 header smaller than minimum size */
36  IPV4_IPLEN_SMALLER_THAN_HLEN, /**< ipv4 pkt len smaller than ip header size */
37  IPV4_TRUNC_PKT, /**< truncated ipv4 packet */
38 
39  /* IPV4 OPTIONS */
40  IPV4_OPT_INVALID, /**< invalid ip options */
41  IPV4_OPT_INVALID_LEN, /**< ip options with invalid len */
42  IPV4_OPT_MALFORMED, /**< malformed ip options */
43  IPV4_OPT_PAD_REQUIRED, /**< pad bytes are needed in ip options */
44  IPV4_OPT_EOL_REQUIRED, /**< "end of list" needed in ip options */
45  IPV4_OPT_DUPLICATE, /**< duplicated ip option */
46  IPV4_OPT_UNKNOWN, /**< unknown ip option */
47  IPV4_WRONG_IP_VER, /**< wrong ip version in ip options */
48  IPV4_WITH_ICMPV6, /**< IPv4 packet with ICMPv6 header */
49  IPV4_PROTO_UNKNOWN, /**< IPv4 packet with unknown protocol*/
50 
51  /* ICMP EVENTS */
52  ICMPV4_PKT_TOO_SMALL, /**< icmpv4 packet smaller than minimum size */
53  ICMPV4_UNKNOWN_TYPE, /**< icmpv4 unknown type */
54  ICMPV4_UNKNOWN_CODE, /**< icmpv4 unknown code */
55  ICMPV4_IPV4_TRUNC_PKT, /**< truncated icmpv4 packet */
56  ICMPV4_IPV4_UNKNOWN_VER, /**< unknown version in icmpv4 packet*/
57 
58  /* ICMPv6 EVENTS */
59  ICMPV6_UNKNOWN_TYPE, /**< icmpv6 unknown type */
60  ICMPV6_UNKNOWN_CODE, /**< icmpv6 unknown code */
61  ICMPV6_PKT_TOO_SMALL, /**< icmpv6 smaller than minimum size */
62  ICMPV6_IPV6_UNKNOWN_VER, /**< unknown version in icmpv6 packet */
63  ICMPV6_IPV6_TRUNC_PKT, /**< truncated icmpv6 packet */
64  ICMPV6_MLD_MESSAGE_WITH_INVALID_HL, /**< invalid MLD that doesn't have HL 1 */
65  ICMPV6_UNASSIGNED_TYPE, /**< unassigned ICMPv6 type */
66  ICMPV6_EXPERIMENTATION_TYPE, /**< private experimentation ICMPv6 type */
67 
68  /* IPV6 EVENTS */
69  IPV6_PKT_TOO_SMALL, /**< ipv6 packet smaller than minimum size */
70  IPV6_TRUNC_PKT, /**< truncated ipv6 packet */
71  IPV6_TRUNC_EXTHDR, /**< truncated ipv6 extension header */
72  IPV6_EXTHDR_DUPL_FH, /**< duplicated "fragment" header in ipv6 extension headers */
73  IPV6_EXTHDR_USELESS_FH, /**< useless FH: offset 0 + no more fragments */
74  IPV6_EXTHDR_DUPL_RH, /**< duplicated "routing" header in ipv6 extension headers */
75  IPV6_EXTHDR_DUPL_HH, /**< duplicated "hop-by-hop" header in ipv6 extension headers */
76  IPV6_EXTHDR_DUPL_DH, /**< duplicated "destination" header in ipv6 extension headers */
77  IPV6_EXTHDR_DUPL_AH, /**< duplicated "authentication" header in ipv6 extension headers */
78  IPV6_EXTHDR_DUPL_EH, /**< duplicated "ESP" header in ipv6 extension headers */
79 
80  IPV6_EXTHDR_INVALID_OPTLEN, /**< the opt len in an hop or dst hdr is invalid. */
81  IPV6_WRONG_IP_VER, /**< wrong version in ipv6 */
82  IPV6_EXTHDR_AH_RES_NOT_NULL, /**< AH hdr reserved fields not null (rfc 4302) */
83 
84  IPV6_HOPOPTS_UNKNOWN_OPT, /**< unknown HOP opt */
85  IPV6_HOPOPTS_ONLY_PADDING, /**< all options in HOP opts are padding */
86  IPV6_DSTOPTS_UNKNOWN_OPT, /**< unknown DST opt */
87  IPV6_DSTOPTS_ONLY_PADDING, /**< all options in DST opts are padding */
88 
89  IPV6_EXTHDR_RH_TYPE_0, /**< RH 0 is deprecated as per rfc5095 */
90  IPV6_EXTHDR_ZERO_LEN_PADN, /**< padN w/o data (0 len) */
91  IPV6_FH_NON_ZERO_RES_FIELD, /**< reserved field not zero */
92  IPV6_DATA_AFTER_NONE_HEADER, /**< data after 'none' (59) header */
93 
94  IPV6_UNKNOWN_NEXT_HEADER, /**< unknown/unsupported next header */
95  IPV6_WITH_ICMPV4, /**< IPv6 packet with ICMPv4 header */
96 
97  /* TCP EVENTS */
98  TCP_PKT_TOO_SMALL, /**< tcp packet smaller than minimum size */
99  TCP_HLEN_TOO_SMALL, /**< tcp header smaller than minimum size */
100  TCP_INVALID_OPTLEN, /**< invalid len in tcp options */
101 
102  /* TCP OPTIONS */
103  TCP_OPT_INVALID_LEN, /**< tcp option with invalid len */
104  TCP_OPT_DUPLICATE, /**< duplicated tcp option */
105 
106  /* UDP EVENTS */
107  UDP_PKT_TOO_SMALL, /**< udp packet smaller than minimum size */
108  UDP_HLEN_TOO_SMALL, /**< udp header smaller than minimum size */
109  UDP_HLEN_INVALID, /**< invalid len of upd header */
110  UDP_LEN_INVALID, /**< packet len in header is invalid */
111 
112  /* SLL EVENTS */
113  SLL_PKT_TOO_SMALL, /**< sll packet smaller than minimum size */
114 
115  /* SLL2 EVENTS */
116  SLL2_PKT_TOO_SMALL, /**< sll2 packet smaller than minimum size */
117 
118  /* ETHERNET EVENTS */
119  ETHERNET_PKT_TOO_SMALL, /**< ethernet packet smaller than minimum size */
120  ETHERNET_UNKNOWN_ETHERTYPE, /**< ethertype unknown/unhandled*/
121 
122  /* PPP EVENTS */
123  PPP_PKT_TOO_SMALL, /**< ppp packet smaller than minimum size */
124  PPPVJU_PKT_TOO_SMALL, /**< ppp vj uncompressed packet smaller than minimum size */
125  PPPIPV4_PKT_TOO_SMALL, /**< ppp ipv4 packet smaller than minimum size */
126  PPPIPV6_PKT_TOO_SMALL, /**< ppp ipv6 packet smaller than minimum size */
127  PPP_WRONG_TYPE, /**< wrong type in ppp frame */
128  PPP_UNSUP_PROTO, /**< protocol not supported for ppp */
129 
130  /* PPPOE EVENTS */
131  PPPOE_PKT_TOO_SMALL, /**< pppoe packet smaller than minimum size */
132  PPPOE_WRONG_CODE, /**< wrong code for pppoe */
133  PPPOE_MALFORMED_TAGS, /**< malformed tags in pppoe */
134 
135  /* GRE EVENTS */
136  GRE_PKT_TOO_SMALL, /**< gre packet smaller than minimum size */
137  GRE_WRONG_VERSION, /**< wrong version in gre header */
138  GRE_VERSION0_RECUR, /**< gre v0 recursion control */
139  GRE_VERSION0_FLAGS, /**< gre v0 flags */
140  GRE_VERSION0_HDR_TOO_BIG, /**< gre v0 header bigger than maximum size */
141  GRE_VERSION0_MALFORMED_SRE_HDR, /**< gre v0 malformed source route entry header */
142  GRE_VERSION1_CHKSUM, /**< gre v1 checksum */
143  GRE_VERSION1_ROUTE, /**< gre v1 routing */
144  GRE_VERSION1_SSR, /**< gre v1 strict source route */
145  GRE_VERSION1_RECUR, /**< gre v1 recursion control */
146  GRE_VERSION1_FLAGS, /**< gre v1 flags */
147  GRE_VERSION1_NO_KEY, /**< gre v1 no key present in header */
148  GRE_VERSION1_WRONG_PROTOCOL, /**< gre v1 wrong protocol */
149  GRE_VERSION1_MALFORMED_SRE_HDR, /**< gre v1 malformed source route entry header */
150  GRE_VERSION1_HDR_TOO_BIG, /**< gre v1 header too big */
151 
152  /* VLAN EVENTS */
153  VLAN_HEADER_TOO_SMALL, /**< vlan header smaller than minimum size */
154  VLAN_UNKNOWN_TYPE, /**< vlan unknown type */
156 
158 
159  /* VNTAG EVENTS */
160  VNTAG_HEADER_TOO_SMALL, /**< vntag header smaller than minimum size */
161  VNTAG_UNKNOWN_TYPE, /**< vntag unknown type */
162 
163  /* ETAG EVENTS */
164  ETAG_HEADER_TOO_SMALL, /**< etag header smaller than minimum size */
165  ETAG_UNKNOWN_TYPE, /**< etag unknown type */
166 
167  /* RAW EVENTS */
168  IPRAW_INVALID_IPV, /**< invalid ip version in ip raw */
169 
170  /* LINKTYPE NULL EVENTS */
171  LTNULL_PKT_TOO_SMALL, /**< pkt too small for lt:null */
172  LTNULL_UNSUPPORTED_TYPE, /**< pkt has a type that the decoder doesn't support */
173 
174  /* SCTP EVENTS */
175  SCTP_PKT_TOO_SMALL, /**< sctp packet smaller than minimum size */
176 
177  /* ESP EVENTS */
178  ESP_PKT_TOO_SMALL, /**< esp packet smaller than minimum size */
179 
180  /* Fragmentation reassembly events. */
186 
187  /* Fragment ignored due to internal error */
190 
191  /* IPv4 in IPv6 events */
194 
195  /* IPv6 in IPv6 events */
198 
199  /* MPLS decode events. */
206 
207  /* VXLAN events */
209 
210  /* Geneve events */
212 
213  /* ERSPAN events */
217 
218  /* Cisco Fabric Path/DCE events. */
220 
221  /* Cisco HDLC events. */
223 
224  /* NSH events */
231 
232  /* generic events */
234 
235  /* END OF DECODE EVENTS ON SINGLE PACKET */
237 
238  /* STREAM EVENTS */
299 
302 
312 
313  /* ARP EVENTS */
314  ARP_PKT_TOO_SMALL, /**< arp packet smaller than minimum size */
315  ARP_UNSUPPORTED_HARDWARE, /**< arp hw_type is not ethernet */
316  ARP_UNSUPPORTED_PROTOCOL, /**< arp proto_type is not ipv4 */
317  ARP_INVALID_PKT, /**< arp pkt len is not 28 */
318  ARP_INVALID_HARDWARE_SIZE, /**< arp hw size is 6 */
319  ARP_INVALID_PROTOCOL_SIZE, /**< arp proto size is not 4 */
320  ARP_UNSUPPORTED_OPCODE, /**< arp opcode is not listed */
321 
322  /* should always be last! */
324 };
325 
326 #define EVENT_IS_DECODER_PACKET_ERROR(e) \
327  ((e) < (DECODE_EVENT_PACKET_MAX))
328 
329 /* supported decoder events */
330 
332  const char *event_name;
333  uint8_t code;
334 };
335 /* +1 for the end of table marker */
336 extern const struct DecodeEvents_ DEvents[DECODE_EVENT_MAX + 1];
337 
338 #endif /* SURICATA_DECODE_EVENTS_H */
STREAM_EST_SYN_RESEND_DIFF_SEQ
@ STREAM_EST_SYN_RESEND_DIFF_SEQ
Definition: decode-events.h:271
STREAM_EST_SYN_RESEND
@ STREAM_EST_SYN_RESEND
Definition: decode-events.h:270
GRE_VERSION1_FLAGS
@ GRE_VERSION1_FLAGS
Definition: decode-events.h:146
PPPVJU_PKT_TOO_SMALL
@ PPPVJU_PKT_TOO_SMALL
Definition: decode-events.h:124
ARP_INVALID_PKT
@ ARP_INVALID_PKT
Definition: decode-events.h:317
IPV4_IPLEN_SMALLER_THAN_HLEN
@ IPV4_IPLEN_SMALLER_THAN_HLEN
Definition: decode-events.h:36
IPV4_PKT_TOO_SMALL
@ IPV4_PKT_TOO_SMALL
Definition: decode-events.h:34
STREAM_RST_INVALID_ACK
@ STREAM_RST_INVALID_ACK
Definition: decode-events.h:294
IPV4_IN_IPV6_PKT_TOO_SMALL
@ IPV4_IN_IPV6_PKT_TOO_SMALL
Definition: decode-events.h:192
STREAM_FIN1_ACK_WRONG_SEQ
@ STREAM_FIN1_ACK_WRONG_SEQ
Definition: decode-events.h:276
STREAM_LASTACK_INVALID_ACK
@ STREAM_LASTACK_INVALID_ACK
Definition: decode-events.h:286
ICMPV6_IPV6_UNKNOWN_VER
@ ICMPV6_IPV6_UNKNOWN_VER
Definition: decode-events.h:62
STREAM_3WHS_ACK_IN_WRONG_DIR
@ STREAM_3WHS_ACK_IN_WRONG_DIR
Definition: decode-events.h:239
GENERIC_TOO_MANY_LAYERS
@ GENERIC_TOO_MANY_LAYERS
Definition: decode-events.h:233
STREAM_3WHS_SYNACK_RESEND_WITH_DIFF_SEQ
@ STREAM_3WHS_SYNACK_RESEND_WITH_DIFF_SEQ
Definition: decode-events.h:244
STREAM_PKT_INVALID_TIMESTAMP
@ STREAM_PKT_INVALID_TIMESTAMP
Definition: decode-events.h:291
IPV6_EXTHDR_DUPL_FH
@ IPV6_EXTHDR_DUPL_FH
Definition: decode-events.h:72
IPV4_OPT_INVALID_LEN
@ IPV4_OPT_INVALID_LEN
Definition: decode-events.h:41
ETAG_UNKNOWN_TYPE
@ ETAG_UNKNOWN_TYPE
Definition: decode-events.h:165
STREAM_REASSEMBLY_SEGMENT_BEFORE_BASE_SEQ
@ STREAM_REASSEMBLY_SEGMENT_BEFORE_BASE_SEQ
Definition: decode-events.h:303
UDP_HLEN_TOO_SMALL
@ UDP_HLEN_TOO_SMALL
Definition: decode-events.h:108
VNTAG_HEADER_TOO_SMALL
@ VNTAG_HEADER_TOO_SMALL
Definition: decode-events.h:160
TCP_OPT_DUPLICATE
@ TCP_OPT_DUPLICATE
Definition: decode-events.h:104
VLAN_UNKNOWN_TYPE
@ VLAN_UNKNOWN_TYPE
Definition: decode-events.h:154
ICMPV6_UNASSIGNED_TYPE
@ ICMPV6_UNASSIGNED_TYPE
Definition: decode-events.h:65
NSH_UNSUPPORTED_VERSION
@ NSH_UNSUPPORTED_VERSION
Definition: decode-events.h:226
STREAM_FIN_BUT_NO_SESSION
@ STREAM_FIN_BUT_NO_SESSION
Definition: decode-events.h:282
STREAM_REASSEMBLY_URGENT_OOB_LIMIT_REACHED
@ STREAM_REASSEMBLY_URGENT_OOB_LIMIT_REACHED
Definition: decode-events.h:311
IPV6_FRAG_OVERLAP
@ IPV6_FRAG_OVERLAP
Definition: decode-events.h:184
UDP_PKT_TOO_SMALL
@ UDP_PKT_TOO_SMALL
Definition: decode-events.h:107
STREAM_EST_ACK_ZWP_DATA
@ STREAM_EST_ACK_ZWP_DATA
Definition: decode-events.h:274
STREAM_4WHS_SYNACK_WITH_WRONG_SYN
@ STREAM_4WHS_SYNACK_WITH_WRONG_SYN
Definition: decode-events.h:255
ETHERNET_UNKNOWN_ETHERTYPE
@ ETHERNET_UNKNOWN_ETHERTYPE
Definition: decode-events.h:120
STREAM_EST_PACKET_OUT_OF_WINDOW
@ STREAM_EST_PACKET_OUT_OF_WINDOW
Definition: decode-events.h:264
GRE_VERSION1_WRONG_PROTOCOL
@ GRE_VERSION1_WRONG_PROTOCOL
Definition: decode-events.h:148
STREAM_EST_SYNACK_RESEND_WITH_DIFFERENT_ACK
@ STREAM_EST_SYNACK_RESEND_WITH_DIFFERENT_ACK
Definition: decode-events.h:267
ERSPAN_UNSUPPORTED_VERSION
@ ERSPAN_UNSUPPORTED_VERSION
Definition: decode-events.h:215
IPV6_DSTOPTS_ONLY_PADDING
@ IPV6_DSTOPTS_ONLY_PADDING
Definition: decode-events.h:87
GRE_VERSION1_ROUTE
@ GRE_VERSION1_ROUTE
Definition: decode-events.h:143
IPV6_HOPOPTS_ONLY_PADDING
@ IPV6_HOPOPTS_ONLY_PADDING
Definition: decode-events.h:85
STREAM_CLOSING_ACK_WRONG_SEQ
@ STREAM_CLOSING_ACK_WRONG_SEQ
Definition: decode-events.h:262
IPV4_OPT_UNKNOWN
@ IPV4_OPT_UNKNOWN
Definition: decode-events.h:46
GENEVE_UNKNOWN_PAYLOAD_TYPE
@ GENEVE_UNKNOWN_PAYLOAD_TYPE
Definition: decode-events.h:211
VNTAG_UNKNOWN_TYPE
@ VNTAG_UNKNOWN_TYPE
Definition: decode-events.h:161
STREAM_3WHS_SYNACK_WITH_WRONG_ACK
@ STREAM_3WHS_SYNACK_WITH_WRONG_ACK
Definition: decode-events.h:246
STREAM_3WHS_SYNACK_FLOOD
@ STREAM_3WHS_SYNACK_FLOOD
Definition: decode-events.h:247
STREAM_TIMEWAIT_INVALID_ACK
@ STREAM_TIMEWAIT_INVALID_ACK
Definition: decode-events.h:289
IPV6_TRUNC_EXTHDR
@ IPV6_TRUNC_EXTHDR
Definition: decode-events.h:71
VLAN_HEADER_TOO_MANY_LAYERS
@ VLAN_HEADER_TOO_MANY_LAYERS
Definition: decode-events.h:155
STREAM_3WHS_ASYNC_WRONG_SEQ
@ STREAM_3WHS_ASYNC_WRONG_SEQ
Definition: decode-events.h:240
STREAM_RST_BUT_NO_SESSION
@ STREAM_RST_BUT_NO_SESSION
Definition: decode-events.h:287
ARP_PKT_TOO_SMALL
@ ARP_PKT_TOO_SMALL
Definition: decode-events.h:314
VXLAN_UNKNOWN_PAYLOAD_TYPE
@ VXLAN_UNKNOWN_PAYLOAD_TYPE
Definition: decode-events.h:208
ICMPV4_IPV4_TRUNC_PKT
@ ICMPV4_IPV4_TRUNC_PKT
Definition: decode-events.h:55
IPV4_IN_IPV6_WRONG_IP_VER
@ IPV4_IN_IPV6_WRONG_IP_VER
Definition: decode-events.h:193
IPV4_OPT_PAD_REQUIRED
@ IPV4_OPT_PAD_REQUIRED
Definition: decode-events.h:43
ICMPV6_UNKNOWN_CODE
@ ICMPV6_UNKNOWN_CODE
Definition: decode-events.h:60
IPV6_TRUNC_PKT
@ IPV6_TRUNC_PKT
Definition: decode-events.h:70
PPP_WRONG_TYPE
@ PPP_WRONG_TYPE
Definition: decode-events.h:127
IPV4_OPT_MALFORMED
@ IPV4_OPT_MALFORMED
Definition: decode-events.h:42
ICMPV4_UNKNOWN_TYPE
@ ICMPV4_UNKNOWN_TYPE
Definition: decode-events.h:53
STREAM_3WHS_SYN_RESEND_DIFF_SEQ_ON_SYN_RECV
@ STREAM_3WHS_SYN_RESEND_DIFF_SEQ_ON_SYN_RECV
Definition: decode-events.h:249
STREAM_FIN1_FIN_WRONG_SEQ
@ STREAM_FIN1_FIN_WRONG_SEQ
Definition: decode-events.h:277
GRE_VERSION1_SSR
@ GRE_VERSION1_SSR
Definition: decode-events.h:144
DECODE_EVENT_PACKET_MAX
@ DECODE_EVENT_PACKET_MAX
Definition: decode-events.h:236
GRE_WRONG_VERSION
@ GRE_WRONG_VERSION
Definition: decode-events.h:137
DCE_PKT_TOO_SMALL
@ DCE_PKT_TOO_SMALL
Definition: decode-events.h:219
STREAM_FIN_OUT_OF_WINDOW
@ STREAM_FIN_OUT_OF_WINDOW
Definition: decode-events.h:283
IPV6_EXTHDR_DUPL_HH
@ IPV6_EXTHDR_DUPL_HH
Definition: decode-events.h:75
SLL2_PKT_TOO_SMALL
@ SLL2_PKT_TOO_SMALL
Definition: decode-events.h:116
STREAM_FIN2_FIN_WRONG_SEQ
@ STREAM_FIN2_FIN_WRONG_SEQ
Definition: decode-events.h:280
ICMPV6_MLD_MESSAGE_WITH_INVALID_HL
@ ICMPV6_MLD_MESSAGE_WITH_INVALID_HL
Definition: decode-events.h:64
TCP_INVALID_OPTLEN
@ TCP_INVALID_OPTLEN
Definition: decode-events.h:100
ETHERNET_PKT_TOO_SMALL
@ ETHERNET_PKT_TOO_SMALL
Definition: decode-events.h:119
STREAM_CLOSEWAIT_FIN_OUT_OF_WINDOW
@ STREAM_CLOSEWAIT_FIN_OUT_OF_WINDOW
Definition: decode-events.h:259
STREAM_EST_SYNACK_RESEND_WITH_DIFF_SEQ
@ STREAM_EST_SYNACK_RESEND_WITH_DIFF_SEQ
Definition: decode-events.h:268
GRE_VERSION1_RECUR
@ GRE_VERSION1_RECUR
Definition: decode-events.h:145
STREAM_REASSEMBLY_INSERT_LIMIT
@ STREAM_REASSEMBLY_INSERT_LIMIT
Definition: decode-events.h:309
STREAM_SHUTDOWN_SYN_RESEND
@ STREAM_SHUTDOWN_SYN_RESEND
Definition: decode-events.h:290
IPV6_PKT_TOO_SMALL
@ IPV6_PKT_TOO_SMALL
Definition: decode-events.h:69
IPV6_FRAG_IGNORED
@ IPV6_FRAG_IGNORED
Definition: decode-events.h:189
STREAM_4WHS_SYNACK_WITH_WRONG_ACK
@ STREAM_4WHS_SYNACK_WITH_WRONG_ACK
Definition: decode-events.h:254
ARP_INVALID_HARDWARE_SIZE
@ ARP_INVALID_HARDWARE_SIZE
Definition: decode-events.h:318
IPV6_EXTHDR_USELESS_FH
@ IPV6_EXTHDR_USELESS_FH
Definition: decode-events.h:73
PPPIPV4_PKT_TOO_SMALL
@ PPPIPV4_PKT_TOO_SMALL
Definition: decode-events.h:125
MPLS_UNKNOWN_PAYLOAD_TYPE
@ MPLS_UNKNOWN_PAYLOAD_TYPE
Definition: decode-events.h:205
IPV4_FRAG_PKT_TOO_LARGE
@ IPV4_FRAG_PKT_TOO_LARGE
Definition: decode-events.h:181
MPLS_BAD_LABEL_ROUTER_ALERT
@ MPLS_BAD_LABEL_ROUTER_ALERT
Definition: decode-events.h:202
GRE_VERSION1_CHKSUM
@ GRE_VERSION1_CHKSUM
Definition: decode-events.h:142
STREAM_3WHS_WRONG_SEQ_WRONG_ACK
@ STREAM_3WHS_WRONG_SEQ_WRONG_ACK
Definition: decode-events.h:252
STREAM_FIN_SYN
@ STREAM_FIN_SYN
Definition: decode-events.h:284
MPLS_PKT_TOO_SMALL
@ MPLS_PKT_TOO_SMALL
Definition: decode-events.h:201
STREAM_3WHS_SYN_TOCLIENT_ON_SYN_RECV
@ STREAM_3WHS_SYN_TOCLIENT_ON_SYN_RECV
Definition: decode-events.h:250
STREAM_REASSEMBLY_OVERLAP_DIFFERENT_DATA
@ STREAM_REASSEMBLY_OVERLAP_DIFFERENT_DATA
Definition: decode-events.h:306
IPV6_EXTHDR_DUPL_AH
@ IPV6_EXTHDR_DUPL_AH
Definition: decode-events.h:77
NSH_BAD_HEADER_LENGTH
@ NSH_BAD_HEADER_LENGTH
Definition: decode-events.h:227
IPV4_TRUNC_PKT
@ IPV4_TRUNC_PKT
Definition: decode-events.h:37
IPV6_FRAG_PKT_TOO_LARGE
@ IPV6_FRAG_PKT_TOO_LARGE
Definition: decode-events.h:182
STREAM_3WHS_SYNACK_IN_WRONG_DIRECTION
@ STREAM_3WHS_SYNACK_IN_WRONG_DIRECTION
Definition: decode-events.h:242
STREAM_LASTACK_ACK_WRONG_SEQ
@ STREAM_LASTACK_ACK_WRONG_SEQ
Definition: decode-events.h:285
IPV6_IN_IPV6_WRONG_IP_VER
@ IPV6_IN_IPV6_WRONG_IP_VER
Definition: decode-events.h:197
PPPOE_WRONG_CODE
@ PPPOE_WRONG_CODE
Definition: decode-events.h:132
IPV4_HLEN_TOO_SMALL
@ IPV4_HLEN_TOO_SMALL
Definition: decode-events.h:35
IEEE8021AH_HEADER_TOO_SMALL
@ IEEE8021AH_HEADER_TOO_SMALL
Definition: decode-events.h:157
IPV6_FRAG_INVALID_LENGTH
@ IPV6_FRAG_INVALID_LENGTH
Definition: decode-events.h:185
STREAM_FIN2_INVALID_ACK
@ STREAM_FIN2_INVALID_ACK
Definition: decode-events.h:281
IPV6_DSTOPTS_UNKNOWN_OPT
@ IPV6_DSTOPTS_UNKNOWN_OPT
Definition: decode-events.h:86
STREAM_REASSEMBLY_INSERT_INVALID
@ STREAM_REASSEMBLY_INSERT_INVALID
Definition: decode-events.h:310
MPLS_BAD_LABEL_IMPLICIT_NULL
@ MPLS_BAD_LABEL_IMPLICIT_NULL
Definition: decode-events.h:203
PPPOE_PKT_TOO_SMALL
@ PPPOE_PKT_TOO_SMALL
Definition: decode-events.h:131
IPRAW_INVALID_IPV
@ IPRAW_INVALID_IPV
Definition: decode-events.h:168
STREAM_FIN1_INVALID_ACK
@ STREAM_FIN1_INVALID_ACK
Definition: decode-events.h:278
DecodeEvents_
Definition: decode-events.h:331
IPV6_EXTHDR_ZERO_LEN_PADN
@ IPV6_EXTHDR_ZERO_LEN_PADN
Definition: decode-events.h:90
DecodeEvents_::code
uint8_t code
Definition: decode-events.h:333
ARP_UNSUPPORTED_HARDWARE
@ ARP_UNSUPPORTED_HARDWARE
Definition: decode-events.h:315
IPV6_EXTHDR_DUPL_DH
@ IPV6_EXTHDR_DUPL_DH
Definition: decode-events.h:76
STREAM_3WHS_SYN_FLOOD
@ STREAM_3WHS_SYN_FLOOD
Definition: decode-events.h:251
STREAM_RST_WITH_DATA
@ STREAM_RST_WITH_DATA
Definition: decode-events.h:295
STREAM_REASSEMBLY_DEPTH_REACHED
@ STREAM_REASSEMBLY_DEPTH_REACHED
Definition: decode-events.h:307
SLL_PKT_TOO_SMALL
@ SLL_PKT_TOO_SMALL
Definition: decode-events.h:113
IPV4_OPT_INVALID
@ IPV4_OPT_INVALID
Definition: decode-events.h:40
STREAM_EST_SYNACK_RESEND
@ STREAM_EST_SYNACK_RESEND
Definition: decode-events.h:266
ICMPV4_IPV4_UNKNOWN_VER
@ ICMPV4_IPV4_UNKNOWN_VER
Definition: decode-events.h:56
IPV4_PROTO_UNKNOWN
@ IPV4_PROTO_UNKNOWN
Definition: decode-events.h:49
DecodeEvents_::event_name
const char * event_name
Definition: decode-events.h:332
IPV6_UNKNOWN_NEXT_HEADER
@ IPV6_UNKNOWN_NEXT_HEADER
Definition: decode-events.h:94
STREAM_PKT_BAD_WINDOW_UPDATE
@ STREAM_PKT_BAD_WINDOW_UPDATE
Definition: decode-events.h:298
STREAM_REASSEMBLY_INSERT_MEMCAP
@ STREAM_REASSEMBLY_INSERT_MEMCAP
Definition: decode-events.h:308
STREAM_FIN_INVALID_ACK
@ STREAM_FIN_INVALID_ACK
Definition: decode-events.h:275
STREAM_CLOSEWAIT_ACK_OUT_OF_WINDOW
@ STREAM_CLOSEWAIT_ACK_OUT_OF_WINDOW
Definition: decode-events.h:258
GRE_VERSION1_HDR_TOO_BIG
@ GRE_VERSION1_HDR_TOO_BIG
Definition: decode-events.h:150
STREAM_EST_PKT_BEFORE_LAST_ACK
@ STREAM_EST_PKT_BEFORE_LAST_ACK
Definition: decode-events.h:265
GRE_VERSION1_NO_KEY
@ GRE_VERSION1_NO_KEY
Definition: decode-events.h:147
STREAM_3WHS_SYNACK_TFO_DATA_IGNORED
@ STREAM_3WHS_SYNACK_TFO_DATA_IGNORED
Definition: decode-events.h:248
STREAM_3WHS_RIGHT_SEQ_WRONG_ACK_EVASION
@ STREAM_3WHS_RIGHT_SEQ_WRONG_ACK_EVASION
Definition: decode-events.h:241
LTNULL_PKT_TOO_SMALL
@ LTNULL_PKT_TOO_SMALL
Definition: decode-events.h:171
STREAM_SUSPECTED_RST_INJECT
@ STREAM_SUSPECTED_RST_INJECT
Definition: decode-events.h:300
TCP_HLEN_TOO_SMALL
@ TCP_HLEN_TOO_SMALL
Definition: decode-events.h:99
STREAM_4WHS_WRONG_SEQ
@ STREAM_4WHS_WRONG_SEQ
Definition: decode-events.h:256
STREAM_4WHS_INVALID_ACK
@ STREAM_4WHS_INVALID_ACK
Definition: decode-events.h:257
STREAM_CLOSEWAIT_PKT_BEFORE_LAST_ACK
@ STREAM_CLOSEWAIT_PKT_BEFORE_LAST_ACK
Definition: decode-events.h:260
PPP_PKT_TOO_SMALL
@ PPP_PKT_TOO_SMALL
Definition: decode-events.h:123
ESP_PKT_TOO_SMALL
@ ESP_PKT_TOO_SMALL
Definition: decode-events.h:178
STREAM_PKT_SPURIOUS_RETRANSMISSION
@ STREAM_PKT_SPURIOUS_RETRANSMISSION
Definition: decode-events.h:297
GRE_VERSION0_HDR_TOO_BIG
@ GRE_VERSION0_HDR_TOO_BIG
Definition: decode-events.h:140
IPV6_WITH_ICMPV4
@ IPV6_WITH_ICMPV4
Definition: decode-events.h:95
IPV6_EXTHDR_INVALID_OPTLEN
@ IPV6_EXTHDR_INVALID_OPTLEN
Definition: decode-events.h:80
IPV6_EXTHDR_DUPL_RH
@ IPV6_EXTHDR_DUPL_RH
Definition: decode-events.h:74
ERSPAN_TOO_MANY_VLAN_LAYERS
@ ERSPAN_TOO_MANY_VLAN_LAYERS
Definition: decode-events.h:216
STREAM_3WHS_SYNACK_TOSERVER_ON_SYN_RECV
@ STREAM_3WHS_SYNACK_TOSERVER_ON_SYN_RECV
Definition: decode-events.h:245
ARP_UNSUPPORTED_PROTOCOL
@ ARP_UNSUPPORTED_PROTOCOL
Definition: decode-events.h:316
IPV6_HOPOPTS_UNKNOWN_OPT
@ IPV6_HOPOPTS_UNKNOWN_OPT
Definition: decode-events.h:84
STREAM_WRONG_THREAD
@ STREAM_WRONG_THREAD
Definition: decode-events.h:301
DECODE_EVENT_MAX
@ DECODE_EVENT_MAX
Definition: decode-events.h:323
DEvents
const struct DecodeEvents_ DEvents[DECODE_EVENT_MAX+1]
Definition: decode-events.c:29
UDP_HLEN_INVALID
@ UDP_HLEN_INVALID
Definition: decode-events.h:109
VLAN_HEADER_TOO_SMALL
@ VLAN_HEADER_TOO_SMALL
Definition: decode-events.h:153
LTNULL_UNSUPPORTED_TYPE
@ LTNULL_UNSUPPORTED_TYPE
Definition: decode-events.h:172
ETAG_HEADER_TOO_SMALL
@ ETAG_HEADER_TOO_SMALL
Definition: decode-events.h:164
TCP_OPT_INVALID_LEN
@ TCP_OPT_INVALID_LEN
Definition: decode-events.h:103
GRE_VERSION0_MALFORMED_SRE_HDR
@ GRE_VERSION0_MALFORMED_SRE_HDR
Definition: decode-events.h:141
PPP_UNSUP_PROTO
@ PPP_UNSUP_PROTO
Definition: decode-events.h:128
ICMPV6_IPV6_TRUNC_PKT
@ ICMPV6_IPV6_TRUNC_PKT
Definition: decode-events.h:63
IPV6_FH_NON_ZERO_RES_FIELD
@ IPV6_FH_NON_ZERO_RES_FIELD
Definition: decode-events.h:91
ICMPV6_EXPERIMENTATION_TYPE
@ ICMPV6_EXPERIMENTATION_TYPE
Definition: decode-events.h:66
IPV6_WRONG_IP_VER
@ IPV6_WRONG_IP_VER
Definition: decode-events.h:81
STREAM_CLOSEWAIT_INVALID_ACK
@ STREAM_CLOSEWAIT_INVALID_ACK
Definition: decode-events.h:261
GRE_VERSION0_FLAGS
@ GRE_VERSION0_FLAGS
Definition: decode-events.h:139
STREAM_PKT_INVALID_ACK
@ STREAM_PKT_INVALID_ACK
Definition: decode-events.h:292
ICMPV4_UNKNOWN_CODE
@ ICMPV4_UNKNOWN_CODE
Definition: decode-events.h:54
IPV4_WRONG_IP_VER
@ IPV4_WRONG_IP_VER
Definition: decode-events.h:47
ARP_INVALID_PROTOCOL_SIZE
@ ARP_INVALID_PROTOCOL_SIZE
Definition: decode-events.h:319
STREAM_REASSEMBLY_SEQ_GAP
@ STREAM_REASSEMBLY_SEQ_GAP
Definition: decode-events.h:305
STREAM_REASSEMBLY_NO_SEGMENT
@ STREAM_REASSEMBLY_NO_SEGMENT
Definition: decode-events.h:304
STREAM_EST_INVALID_ACK
@ STREAM_EST_INVALID_ACK
Definition: decode-events.h:273
GRE_PKT_TOO_SMALL
@ GRE_PKT_TOO_SMALL
Definition: decode-events.h:136
ICMPV4_PKT_TOO_SMALL
@ ICMPV4_PKT_TOO_SMALL
Definition: decode-events.h:52
STREAM_PKT_RETRANSMISSION
@ STREAM_PKT_RETRANSMISSION
Definition: decode-events.h:296
NSH_UNSUPPORTED_TYPE
@ NSH_UNSUPPORTED_TYPE
Definition: decode-events.h:229
AFP_TRUNC_PKT
@ AFP_TRUNC_PKT
Definition: decode-events.h:31
SCTP_PKT_TOO_SMALL
@ SCTP_PKT_TOO_SMALL
Definition: decode-events.h:175
UDP_LEN_INVALID
@ UDP_LEN_INVALID
Definition: decode-events.h:110
IPV4_OPT_EOL_REQUIRED
@ IPV4_OPT_EOL_REQUIRED
Definition: decode-events.h:44
IPV6_DATA_AFTER_NONE_HEADER
@ IPV6_DATA_AFTER_NONE_HEADER
Definition: decode-events.h:92
IPV4_WITH_ICMPV6
@ IPV4_WITH_ICMPV6
Definition: decode-events.h:48
NSH_UNKNOWN_PAYLOAD
@ NSH_UNKNOWN_PAYLOAD
Definition: decode-events.h:230
PPPIPV6_PKT_TOO_SMALL
@ PPPIPV6_PKT_TOO_SMALL
Definition: decode-events.h:126
STREAM_CLOSING_INVALID_ACK
@ STREAM_CLOSING_INVALID_ACK
Definition: decode-events.h:263
STREAM_PKT_BROKEN_ACK
@ STREAM_PKT_BROKEN_ACK
Definition: decode-events.h:293
MPLS_HEADER_TOO_SMALL
@ MPLS_HEADER_TOO_SMALL
Definition: decode-events.h:200
GRE_VERSION0_RECUR
@ GRE_VERSION0_RECUR
Definition: decode-events.h:138
IPV6_IN_IPV6_PKT_TOO_SMALL
@ IPV6_IN_IPV6_PKT_TOO_SMALL
Definition: decode-events.h:196
ICMPV6_PKT_TOO_SMALL
@ ICMPV6_PKT_TOO_SMALL
Definition: decode-events.h:61
ERSPAN_HEADER_TOO_SMALL
@ ERSPAN_HEADER_TOO_SMALL
Definition: decode-events.h:214
NSH_RESERVED_TYPE
@ NSH_RESERVED_TYPE
Definition: decode-events.h:228
STREAM_TIMEWAIT_ACK_WRONG_SEQ
@ STREAM_TIMEWAIT_ACK_WRONG_SEQ
Definition: decode-events.h:288
STREAM_EST_SYN_TOCLIENT
@ STREAM_EST_SYN_TOCLIENT
Definition: decode-events.h:272
STREAM_3WHS_ACK_DATA_INJECT
@ STREAM_3WHS_ACK_DATA_INJECT
Definition: decode-events.h:253
NSH_HEADER_TOO_SMALL
@ NSH_HEADER_TOO_SMALL
Definition: decode-events.h:225
STREAM_FIN2_ACK_WRONG_SEQ
@ STREAM_FIN2_ACK_WRONG_SEQ
Definition: decode-events.h:279
IPV6_EXTHDR_DUPL_EH
@ IPV6_EXTHDR_DUPL_EH
Definition: decode-events.h:78
IPV6_EXTHDR_AH_RES_NOT_NULL
@ IPV6_EXTHDR_AH_RES_NOT_NULL
Definition: decode-events.h:82
STREAM_EST_SYNACK_TOSERVER
@ STREAM_EST_SYNACK_TOSERVER
Definition: decode-events.h:269
ICMPV6_UNKNOWN_TYPE
@ ICMPV6_UNKNOWN_TYPE
Definition: decode-events.h:59
IPV6_EXTHDR_RH_TYPE_0
@ IPV6_EXTHDR_RH_TYPE_0
Definition: decode-events.h:89
IPV4_FRAG_OVERLAP
@ IPV4_FRAG_OVERLAP
Definition: decode-events.h:183
MPLS_BAD_LABEL_RESERVED
@ MPLS_BAD_LABEL_RESERVED
Definition: decode-events.h:204
TCP_PKT_TOO_SMALL
@ TCP_PKT_TOO_SMALL
Definition: decode-events.h:98
IPV4_OPT_DUPLICATE
@ IPV4_OPT_DUPLICATE
Definition: decode-events.h:45
IPV4_FRAG_IGNORED
@ IPV4_FRAG_IGNORED
Definition: decode-events.h:188
CHDLC_PKT_TOO_SMALL
@ CHDLC_PKT_TOO_SMALL
Definition: decode-events.h:222
STREAM_3WHS_SYNACK_RESEND_WITH_DIFFERENT_ACK
@ STREAM_3WHS_SYNACK_RESEND_WITH_DIFFERENT_ACK
Definition: decode-events.h:243
ARP_UNSUPPORTED_OPCODE
@ ARP_UNSUPPORTED_OPCODE
Definition: decode-events.h:320
GRE_VERSION1_MALFORMED_SRE_HDR
@ GRE_VERSION1_MALFORMED_SRE_HDR
Definition: decode-events.h:149
PPPOE_MALFORMED_TAGS
@ PPPOE_MALFORMED_TAGS
Definition: decode-events.h:133