-
Notifications
You must be signed in to change notification settings - Fork 8
/
tire.c
84 lines (79 loc) · 1.87 KB
/
tire.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
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/ctype.h>
#include "tire.h"
TrieNodePtr aids_CreateTrieNode(char key)
{
TrieNodePtr t = (TrieNodePtr)kmalloc(sizeof(TrieNode), GFP_KERNEL);
if(!t)
{
pr_warning("[AngelIDS][DPI] aids_CreateTrieNode: kmalloc failed!\n");
return NULL;
}
memset(t, 0, sizeof(TrieNode));
t->value = key;
return t;
}
TrieSTPtr aids_CreateTrie(void)
{
TrieSTPtr t = (TrieSTPtr)kmalloc(sizeof(TrieNode), GFP_KERNEL);
if(!t)
{
pr_warning("[AngelIDS][DPI] aids_CreateTrie: kmalloc failed!\n");
return NULL;
}
memset(t, 0, sizeof(TrieNode));
return t;
}
void aids_InsertTire(TrieSTPtr root, char *key, int matchValue)
{
int i = 0;
TrieSTPtr tmp = root;
while (*(key + i) != '\0') {
if (tmp->next[toupper(*(key + i))] == NULL) {
TrieNodePtr t = aids_CreateTrieNode(toupper(*(key + i)));
if(!t)
return;
tmp->next[toupper(*(key + i))] = t;
tmp->count++;
}
tmp = tmp->next[toupper(*(key + i))];
i++;
}
tmp->isEndOfWord = 1;
tmp->matchValue = matchValue;
}
void aids_DeleteTrie(TrieSTPtr t)
{
int i;
for (i = 0; i < AIDS_TIRE_CHARLENGTH; i++) {
if (t->next[i] != NULL) {
aids_DeleteTrie(t->next[i]);
kfree(t->next[i]);
t->next[i] = NULL;
}
}
}
int aids_SearchTrie(TrieSTPtr root, char *str, unsigned int length)
{
if (root == NULL)
return 0;
TrieSTPtr tmp = root;
int i = 0;
while (i < length && str[i] != NULL){
if (tmp->next[toupper(str[i])] != NULL){
tmp = tmp->next[toupper(str[i])];
}
else
return AIDS_TIRE_NO_MATCH;
i++;
}
if (tmp->isEndOfWord) {
return tmp->matchValue;
}
else {
return AIDS_TIRE_NO_MATCH;
}
}