This repository was archived by the owner on Aug 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathFilterManager.cpp
229 lines (211 loc) · 8.29 KB
/
FilterManager.cpp
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/*
* OSPE - Open Source Packet Editor
* Copyright(C) 2018-2019 Javier Pereda <https://github.com/elecyb>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdafx.h"
#include "FilterManager.h"
Filter _filterList[50];
UINT8 filterCount = 0;
void CovertBytesToFilterList(char * readData)
{
/*
| SCODE | FilterCount | filter Data |
| 1-byte | 1-byte |-------- 3010-bytes -----------------|
| -------------------------- readData ----------------------------|
Filter data representation:
| enabled | Mode | captureFuncsFlags | actions | lenMin | lenMax | numApply | searchCount | search | replacesCount | replace |
| 1-byte | 1-byte | 2-bytes | 1-bye | 2-byes | 2-byes | 2-bytes | 2-bytes | ----- 1500-bytes ----| 2-bytes | ---- 1500-bytes ----|
| ---------------------------------------- filterData ------------------------------------------------------------------------------------------------------|
*/
// Maximo 50 filtros
filterCount = readData[1]; // byte 0 is for ServerCode and the byte 1 is for FilterCount
int pos = 2;
for (int i = 0; i < filterCount; i++) {
_filterList[i].Active = readData[pos]; // enabled
_filterList[i].Mode = (FilterModes)readData[pos + 1]; // Mode
memcpy(&_filterList[i].Functions, &readData[pos + 2], 2); // captureFuncsFlags
_filterList[i].Actions = (FilterActions)readData[pos + 4]; // actions
memcpy(&_filterList[i].PacketLengthMin, &readData[pos + 5], 2); // lenMin
memcpy(&_filterList[i].PacketLengthMax, &readData[pos + 7], 2); // lenMax
memcpy(&_filterList[i].NumTimesApply, &readData[pos + 9], 2); // numApply
int count, key; char val;
_filterList[i].searches.clear();
count = (((UINT8)readData[pos + 12] << 8) | (UINT8)readData[pos + 11]); // searchCount
for (int j = 0; j < count; j++) {
key = (((UINT8)readData[pos + 14 + (j * 3)] << 8) | (UINT8)readData[pos + 13 + (j * 3)]); // search key
val = readData[pos + 15 + (j * 3)]; // search val
_filterList[i].searches.insert(std::make_pair(key, val));
}
_filterList[i].replaces.clear();
count = (((UINT8)readData[pos + 1514] << 8) | (UINT8)readData[pos + 1513]); // replaceCount
for (int j = 0; j < count; j++) {
key = (((UINT8)readData[pos + 1516 + (j * 3)] << 8) | (UINT8)readData[pos + 1515 + (j * 3)]); // search key
val = readData[pos + 1517 + (j * 3)]; // search val
_filterList[i].replaces.insert(std::make_pair(key, val));
}
pos = pos + FILTERINBYTESSIZE;
}
}
bool CheckIfBetweenLength(Filter f, UINT16 pSize)
{
if (f.PacketLengthMax != 0)
return (pSize >= f.PacketLengthMin && pSize <= f.PacketLengthMax);
return true;
}
bool FilterMeetConditions(Filter filter, UINT16 packetSize, FilterCaptureFuncs functionFlag)
{
if ((filter.Active) &&
(CheckIfBetweenLength(filter, packetSize)) && // If the filter has length, it must be between lengthMin and lengthMax
((filter.Functions&(functionFlag)) != 0) && // The packet's function flag must be actived in the filter
(filter.searches.size() == 0 || filter.searches.crbegin()->first < packetSize)) // Latest search offset position must be less than packet Size
return true;
return false;
}
bool AllSearchOffsetMatch(char * data, UINT16 len, Filter filter, int * pos)
{
if (filter.Mode == FilterModes::SearchAndReplaceFromBegin)
{
for (auto rit = filter.searches.begin(); rit != filter.searches.end(); ++rit)
{
if (rit->second != data[rit->first])
return false;
}
return true;
}
if (filter.Mode == FilterModes::SearchOcurrenceReplaceFromBegin || filter.Mode == FilterModes::SearchOcurrenceReplaceFromPosition)
{
for (int i = 0; i<len; i++)
{
bool shouldContinue = false;
for (auto rit = filter.searches.begin(); rit != filter.searches.end(); ++rit)
{
if (rit->first + i > len - 1) // Next search offset position is greather than packet length, NO MATCH
return false;
if (data[rit->first + i] != rit->second) // Offset data is different?
{
shouldContinue = true; // We must continue, increment i and try from the next value of i
break; // Break foreach, one of the offsets are not equal, no need to check the rest
}
}
if (shouldContinue) continue;
(*pos) = i;
return true;
}
return false; // No matches, neither we past the len...
}
throw;
}
bool DoFilteringForPacket(char * data, UINT16 size, FilterCaptureFuncs functionFlag)
{
bool dataModified = false;
for (int i = 0; i<filterCount; i++)
{
Filter filter = _filterList[i];
if (filter.replaces.size() == 0) // Nothing to filer
continue;
if (!FilterMeetConditions(filter, size, functionFlag))
continue;
int pos = 0;
bool allOffsetMatch = AllSearchOffsetMatch(data, size, filter, &pos);
if (allOffsetMatch) // All search offsets match, let's do the edits
{
if (filter.Mode == FilterModes::SearchAndReplaceFromBegin || filter.Mode == FilterModes::SearchOcurrenceReplaceFromBegin)
for (auto rit = filter.replaces.begin(); rit != filter.replaces.end() && rit->first <= size; ++rit)
data[rit->first] = rit->second;
else
{
for (auto rit = filter.replaces.begin(); rit != filter.replaces.end(); ++rit)
{
if (rit->first - 250 + pos > size - 1 || rit->first - 250 + pos < 0) continue;
data[rit->first - 250 + pos] = rit->second;
}
}
dataModified = true;
}
}
return dataModified;
}
bool CheckBlockIgnoreWatchBreak(char* data, UINT16 size, FilterCaptureFuncs functionFlag, FilterActions checkType)
{
for (int i = 0; i < filterCount; i++)
{
Filter filter = _filterList[i];
switch (checkType)
{
case FilterActions::Block:
if (!(filter.Actions & FilterActions::Block))
continue;
break;
case FilterActions::Ignore:
if (!(filter.Actions & FilterActions::Ignore))
continue;
break;
case FilterActions::Watch:
if (!(filter.Actions & FilterActions::Watch))
continue;
break;
case FilterActions::Break:
if (!(filter.Actions & FilterActions::Break))
continue;
break;
default:
throw;
}
if (filter.searches.size() == 0) // Filter without search? Skip to next..
continue;
if (!FilterMeetConditions(filter, size, functionFlag))
continue;
int pos = 0;
bool allOffsetMatch = AllSearchOffsetMatch(data, size, filter, &pos);
if (allOffsetMatch)
return true; // All search offsets match with the corresponding offsets in data buffer, filter action will be applied
}
return false;
}
bool CheckPacketBlock(char * data, UINT16 size, FilterCaptureFuncs functionFlag)
{
for (int i = 0; i<filterCount; i++)
{
Filter filter = _filterList[i];
if (!(filter.Actions & FilterActions::Block))
continue;
if (filter.searches.size() == 0) // Filter without search? Skip to next..
continue;
if (!FilterMeetConditions(filter, size, functionFlag))
continue;
int pos = 0;
bool allOffsetMatch = AllSearchOffsetMatch(data, size, filter, &pos);
if (allOffsetMatch)
return true; // All search offsets match with the corresponding offsets in data buffer, filter action will be applied
}
return false;
}
bool CheckPacketBreak(char * data, UINT16 size, FilterCaptureFuncs functionFlag)
{
for (int i = 0; i<filterCount; i++)
{
Filter filter = _filterList[i];
if (!(filter.Actions & FilterActions::Break))
continue;
if (!FilterMeetConditions(filter, size, functionFlag))
continue;
int pos = 0;
bool allOffsetMatch = AllSearchOffsetMatch(data, size, filter, &pos);
if (allOffsetMatch)
return true; // All search offsets match with the corresponding offsets in data buffer, filter action will be applied
}
return false;
}