This repository has been archived by the owner on Dec 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
portknocking.c
173 lines (152 loc) · 5.41 KB
/
portknocking.c
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*-
* BSD LICENSE
*
* Copyright (c) 2016, 6WIND S.A.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* * Neither the name of 6WIND S.A. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <bcc/proto.h>
#include <uapi/linux/in.h>
#include "openstate.h"
int ebpf_filter(struct __sk_buff *skb) {
u8 *cursor = 0;
int current_state;
/* Initialize most fields to 0 in case we do not parse associated headers.
* The alternative is to set it to 0 once we know we will not meet the header
* (e.g. when we see ARP, we won't have dst IP / port...). It would prevent
* to affect a value twice in some cases, but it is prone to error when
* adding parsing for other protocols.
*/
struct StateTableKey state_idx;
// state_idx.ether_type // Will be set anyway
state_idx.__padding16 = 0;
state_idx.ip_src = 0;
state_idx.ip_dst = 0;
struct XFSMTableKey xfsm_idx;
// xfsm_idx.state // Will be set anyway before XFSM lookup
xfsm_idx.l4_proto = 0;
xfsm_idx.src_port = 0;
xfsm_idx.dst_port = 0;
xfsm_idx.__padding8 = 0;
xfsm_idx.__padding16 = 0;
struct ethernet_t *ethernet;
struct ip_t *ip;
struct udp_t *l4;
/* Headers parsing */
ethernet: {
ethernet = cursor_advance(cursor, sizeof(*ethernet));
state_idx.ether_type = ethernet->type;
switch (ethernet->type) {
case ETH_P_IP: goto ip;
case ETH_P_ARP: goto arp;
default: goto EOP;
}
}
ip: {
ip = cursor_advance(cursor, sizeof(*ip));
state_idx.ip_src = ip->src;
state_idx.ip_dst = ip->dst;
switch (ip->nextp) {
case IPPROTO_TCP: goto l4;
case IPPROTO_UDP: goto l4;
default: goto statelookup;
}
}
arp: {
/* We could parse ARP packet here if we needed to retrieve some fields from
* the ARP header for the lookup.
*/
goto statelookup;
}
l4: {
/* Here We only need dst and src ports from L4, and they are at the same
* location for TCP and UDP; so do not switch on cases, just use UDP
* cursor.
*/
l4 = cursor_advance(cursor, sizeof(*l4));
goto statelookup;
}
/* Tables lookups */
statelookup: {
struct StateTableLeaf *state_val = state_table.lookup(&state_idx);
if (state_val) {
current_state = state_val->state;
/* If we found a state, go on and search XFSM table for this state and
* for current event.
*/
goto xfsmlookup;
}
goto EOP;
}
xfsmlookup: {
/* We don't want to match on L4 src port, so set it at 0 here and in XFSM
* initialization, since we have no wildcard mechanism. */
xfsm_idx.state = current_state;
xfsm_idx.l4_proto = ip->nextp;
xfsm_idx.src_port = 0;
xfsm_idx.dst_port = l4->dport;
xfsm_idx.__padding8 = 0;
xfsm_idx.__padding16 = 0;
struct XFSMTableLeaf *xfsm_val = xfsm_table.lookup(&xfsm_idx);
if (xfsm_val) {
/* Update state table. We re-use the StateTableKey we had initialized
* already. We update this rule with the new state provided by XFSM
* table.
*/
struct StateTableLeaf new_state = { xfsm_val->next_state };
state_table.update(&state_idx, &new_state);
/* At last, execute the action for the current state, that we obtained
* from the XFSM table.
* Users should add new actions here.
*/
switch (xfsm_val->action) {
case ACTION_DROP:
return TC_CLS_DEFAULT;
case ACTION_FORWARD:
return TC_CLS_NOMATCH;
default:
return TC_CLS_NOMATCH; // XXX Should actually return an error code.
}
}
/* So we did not find a match in XFSM table... For port knocking, default
* action is "return to initial state". We have yet to find a way to
* properly implement a default action. XXX
*/
enum states {
DEFAULT,
STEP_1,
STEP_2,
OPEN
};
struct StateTableLeaf new_state = { DEFAULT };
state_table.update(&state_idx, &new_state);
return TC_CLS_DEFAULT;
}
EOP:
return TC_CLS_NOMATCH;
}