suricata
util-ja3.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2017 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 Mats Klepsland <mats.klepsland@gmail.com>
22  */
23 
24 #ifndef SURICATA_UTIL_JA3_H
25 #define SURICATA_UTIL_JA3_H
26 
27 #define JA3_BUFFER_INITIAL_SIZE 128
28 
29 #include "detect.h"
30 
31 typedef struct JA3Buffer_ {
32  char *data;
33  size_t size;
34  size_t used;
36 
38 void Ja3BufferFree(JA3Buffer **);
40 int Ja3BufferAddValue(JA3Buffer **, uint32_t);
41 char *Ja3GenerateHash(JA3Buffer *);
42 int Ja3IsDisabled(const char *);
43 
44 #ifdef HAVE_JA3
45 InspectionBuffer *Ja3DetectGetHash(DetectEngineThreadCtx *det_ctx,
46  const DetectEngineTransforms *transforms, Flow *_f, const uint8_t _flow_flags, void *txv,
47  const int list_id);
48 
49 InspectionBuffer *Ja3DetectGetString(DetectEngineThreadCtx *det_ctx,
50  const DetectEngineTransforms *transforms, Flow *_f, const uint8_t _flow_flags, void *txv,
51  const int list_id);
52 #endif /* HAVE_JA3 */
53 #endif /* SURICATA_UTIL_JA3_H */
JA3Buffer_
Definition: util-ja3.h:31
DetectEngineTransforms
Definition: detect.h:409
JA3Buffer_::size
size_t size
Definition: util-ja3.h:33
Ja3BufferInit
JA3Buffer * Ja3BufferInit(void)
Allocate new buffer.
Definition: util-ja3.c:39
InspectionBuffer
Definition: detect.h:374
Flow_
Flow data structure.
Definition: flow.h:351
JA3Buffer_::data
char * data
Definition: util-ja3.h:32
Ja3IsDisabled
int Ja3IsDisabled(const char *)
Definition: util-ja3.c:325
JA3Buffer_::used
size_t used
Definition: util-ja3.h:34
DetectEngineThreadCtx_
Definition: detect.h:1095
detect.h
JA3Buffer
struct JA3Buffer_ JA3Buffer
Ja3BufferFree
void Ja3BufferFree(JA3Buffer **)
Free allocated buffer.
Definition: util-ja3.c:54
Ja3GenerateHash
char * Ja3GenerateHash(JA3Buffer *)
Definition: util-ja3.c:320
Ja3BufferAddValue
int Ja3BufferAddValue(JA3Buffer **, uint32_t)
Definition: util-ja3.c:315
Ja3BufferAppendBuffer
int Ja3BufferAppendBuffer(JA3Buffer **, JA3Buffer **)
Definition: util-ja3.c:310