blob: 71574993ec91df79b973f38ea4615a96f27f445e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* Copyright (C) 2018 Open Information Security Foundation
*
* You can copy, redistribute or modify this Program under the terms of
* the GNU General Public License version 2 as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* version 2 along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
/**
*
* \file
*
* \author Jacob Masen-Smith <jacob@evengx.com>
*
*/
#ifndef __SOURCE_WINDIVERT_H__
#define __SOURCE_WINDIVERT_H__
#ifdef WINDIVERT
#include "windivert.h"
#define WINDIVERT_FILTER_MAXLEN 128 /* from windivert_device.h */
typedef void *WinDivertHandle;
/**
* \brief WinDivertQueueVars is the queue configuration and other miscellaneous
* information about the specific queue/filter.
*
* see https://reqrypt.org/windivert-doc.html#divert_open for more info
*/
typedef struct WinDivertQueueVars_
{
int queue_num;
/* see https://reqrypt.org/windivert-doc.html#filter_language */
char filter_str[WINDIVERT_FILTER_MAXLEN + 1];
WINDIVERT_LAYER layer;
int16_t priority;
uint64_t flags;
WinDivertHandle filter_handle;
/* only needed for setup/teardown; Recv/Send are internally synchronized */
SCMutex filter_init_mutex;
/* counters */
uint32_t pkts;
uint64_t bytes;
uint32_t errs;
uint32_t accepted;
uint32_t dropped;
uint32_t replaced;
SCMutex counters_mutex;
} WinDivertQueueVars;
typedef struct WinDivertPacketVars_
{
int thread_num;
WINDIVERT_ADDRESS addr;
bool verdicted;
} WinDivertPacketVars;
int WinDivertRegisterQueue(bool forward, char *filter_str);
void *WinDivertGetThread(int thread);
void *WinDivertGetQueue(int queue);
void SourceWinDivertRegisterTests(void);
#endif /* WINDIVERT */
#endif /* __SOURCE_WINDIVERT_H__ */
|