suricata
app-layer-events.h
Go to the documentation of this file.
1 /* Copyright (C) 2014-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_APP_LAYER_EVENTS_H
26 #define SURICATA_APP_LAYER_EVENTS_H
27 
28 /* contains fwd declaration of AppLayerDecoderEvents_ */
29 #include "decode.h"
30 #include "rust.h"
31 
32 /**
33  * \brief Data structure to store app layer decoder events.
34  */
36  /* array of events */
37  uint8_t *events;
38  /* number of events in the above buffer */
39  uint8_t cnt;
40  /* current event buffer size */
42  /* last logged */
44 };
45 
46 /* app layer pkt level events */
47 enum {
54 };
55 
56 int AppLayerGetPktEventInfo(const char *event_name, int *event_id);
57 
58 int AppLayerGetEventInfoById(int event_id, const char **event_name,
59  AppLayerEventType *event_type);
60 void AppLayerDecoderEventsSetEventRaw(AppLayerDecoderEvents **sevents, uint8_t event);
61 
62 static inline int AppLayerDecoderEventsIsEventSet(
63  const AppLayerDecoderEvents *devents, uint8_t event)
64 {
65  if (devents == NULL)
66  return 0;
67 
68  int cnt = devents->cnt;
69  for (int i = 0; i < cnt; i++) {
70  if (devents->events[i] == event)
71  return 1;
72  }
73 
74  return 0;
75 }
76 
79 int DetectEngineGetEventInfo(const char *event_name, int *event_id, AppLayerEventType *event_type);
80 
81 #endif /* SURICATA_APP_LAYER_EVENTS_H */
APPLAYER_MISMATCH_PROTOCOL_BOTH_DIRECTIONS
@ APPLAYER_MISMATCH_PROTOCOL_BOTH_DIRECTIONS
Definition: app-layer-events.h:48
AppLayerDecoderEventsFreeEvents
void AppLayerDecoderEventsFreeEvents(AppLayerDecoderEvents **events)
Definition: app-layer-events.c:133
APPLAYER_WRONG_DIRECTION_FIRST_DATA
@ APPLAYER_WRONG_DIRECTION_FIRST_DATA
Definition: app-layer-events.h:49
AppLayerDecoderEvents_::events_buffer_size
uint8_t events_buffer_size
Definition: app-layer-events.h:41
AppLayerDecoderEvents_::event_last_logged
uint8_t event_last_logged
Definition: app-layer-events.h:43
rust.h
AppLayerDecoderEvents_
Data structure to store app layer decoder events.
Definition: app-layer-events.h:35
AppLayerDecoderEventsResetEvents
void AppLayerDecoderEventsResetEvents(AppLayerDecoderEvents *events)
Definition: app-layer-events.c:124
APPLAYER_DETECT_PROTOCOL_ONLY_ONE_DIRECTION
@ APPLAYER_DETECT_PROTOCOL_ONLY_ONE_DIRECTION
Definition: app-layer-events.h:50
decode.h
APPLAYER_PROTO_DETECTION_SKIPPED
@ APPLAYER_PROTO_DETECTION_SKIPPED
Definition: app-layer-events.h:51
AppLayerDecoderEventsSetEventRaw
void AppLayerDecoderEventsSetEventRaw(AppLayerDecoderEvents **sevents, uint8_t event)
Set an app layer decoder event.
Definition: app-layer-events.c:91
APPLAYER_NO_TLS_AFTER_STARTTLS
@ APPLAYER_NO_TLS_AFTER_STARTTLS
Definition: app-layer-events.h:52
AppLayerDecoderEvents_::cnt
uint8_t cnt
Definition: app-layer-events.h:39
AppLayerGetEventInfoById
int AppLayerGetEventInfoById(int event_id, const char **event_name, AppLayerEventType *event_type)
Definition: app-layer-events.c:51
AppLayerGetPktEventInfo
int AppLayerGetPktEventInfo(const char *event_name, int *event_id)
Definition: app-layer-events.c:68
DetectEngineGetEventInfo
int DetectEngineGetEventInfo(const char *event_name, int *event_id, AppLayerEventType *event_type)
Definition: app-layer-events.c:164
cnt
uint32_t cnt
Definition: tmqh-packetpool.h:7
APPLAYER_UNEXPECTED_PROTOCOL
@ APPLAYER_UNEXPECTED_PROTOCOL
Definition: app-layer-events.h:53
AppLayerDecoderEvents_::events
uint8_t * events
Definition: app-layer-events.h:37