-
Notifications
You must be signed in to change notification settings - Fork 1
/
key_pair.c
126 lines (101 loc) · 2.54 KB
/
key_pair.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
#include <string.h>
#include <stdlib.h>
#include "key_pair.h"
inline struct key_pair_list* create_pair_list()
{
struct key_pair_list *head =
(struct key_pair_list *)malloc(sizeof(struct key_pair_list));
if (head != NULL) {
STAILQ_INIT(head);
}
return head;
}
inline void free_pair_list(struct key_pair_list *head)
{
struct key_pair_s *pair = NULL;
struct key_pair_s *tpair = NULL;
STAILQ_FOREACH_SAFE(pair, head, next, tpair) {
free(pair->key);
free(pair->value);
free(pair);
}
free(head);
}
inline struct key_pair_s* create_key_value_pair(char* key, char* value)
{
struct key_pair_s *pair = NULL;
pair = (struct key_pair_s *)malloc(sizeof(struct key_pair_s));
if (pair != NULL) {
pair->key = key;
pair->value = value;
}
return pair;
}
inline uint get_int_value_from_key(struct key_pair_list* head, char* key)
{
struct key_pair_s *pair;
uint value = 0;
STAILQ_FOREACH(pair, head, next) {
if (strcmp(pair->key, key) == 0) {
value = strtol(pair->value, NULL, 0);
break;
}
}
return value;
}
inline char* get_str_value_from_key(struct key_pair_list* head, char* key)
{
struct key_pair_s *pair;
char *value = NULL;
STAILQ_FOREACH(pair, head, next) {
if (strcmp(pair->key, key) == 0) {
value = pair->value;
break;
}
}
return value;
}
inline static uint proto_to_value(char *proto)
{
if (strcmp(proto, "UDP") == 0)
return 1;
if (strcmp(proto, "TCP") == 0)
return 2;
if (strcmp(proto, "HTTP") == 0)
return 3;
return 0;
}
inline uint get_sigProto_value(struct key_pair_list* head)
{
struct key_pair_s *pair;
uint value = 0;
STAILQ_FOREACH(pair, head, next) {
if (strcmp(pair->key, "sig_proto") == 0) {
value = proto_to_value(pair->value);
break;
}
}
return value;
}
inline static uint matchType_to_value(char *type)
{
if (strcmp(type, "AC") == 0)
return 1;
if (strcmp(type, "AC_MULTI") == 0)
return 2;
if (strcmp(type, "REGEX") == 0)
return 3;
return 0;
}
inline uint get_matchType_value(struct key_pair_list* head)
{
struct key_pair_s *pair;
uint value = 0;
STAILQ_FOREACH(pair, head, next) {
if (strcmp(pair->key, "sig_type") == 0) {
value = matchType_to_value(pair->value);
break;
}
}
return value;
}