forked from Refinitiv/ngx_http_websocket_stat_module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ngx_http_websocket_stat_format.c
272 lines (250 loc) · 8.14 KB
/
ngx_http_websocket_stat_format.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
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#include <assert.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <linux/ipv6.h>
#include "ngx_http_websocket_stat_format.h"
const char PLACE_HOLDER_CHR = 'X';
const char *HTTP_VAR = "$http_";
size_t HTTP_VAR_LEN = sizeof("$http_") - 1;
template_variable null_variable = {NULL, 0, 0, NULL};
const char *http_header_var(ngx_http_request_t *r, void *data);
template_variable header_variable = {NULL, 0, 50, http_header_var};
typedef struct {
const template_variable *variable;
size_t pos;
int http_hdr;
int orig_pos;
} variable_occurance;
typedef struct {
const char *template;
variable_occurance *occ;
} http_hdr_coccurance_ctx;
static int
compare_occurance(const void *_first, const void *_second)
{
const variable_occurance **first = (const variable_occurance **)_first;
const variable_occurance **second = (const variable_occurance **)_second;
assert((*first)->orig_pos != (*second)->orig_pos);
return (*first)->orig_pos < (*second)->orig_pos ? -1 : 1;
}
#ifdef TEST
ngx_array_t *
ngx_array_create(void *pool, size_t size, size_t el_size)
{
ngx_array_t *res = malloc(sizeof(ngx_array_t));
res->nelts = 0;
res->elts = malloc(100 * el_size);
res->el_size = el_size;
return res;
}
void *
ngx_array_push(ngx_array_t *array)
{
return array->elts + array->nelts++ * array->el_size;
}
#endif
void
insert_occurance(const template_variable *var, size_t pos,
compiled_template *template_cmlp, int http_hdr_len)
{
variable_occurance **oc =
ngx_array_push(template_cmlp->variable_occurances);
*oc = ngx_palloc(template_cmlp->pool, sizeof(variable_occurance));
(*oc)->variable = var;
(*oc)->orig_pos = pos;
(*oc)->http_hdr = http_hdr_len;
}
static void
locate_http_variables(compiled_template *template_cmlp)
{
const char *occurance = template_cmlp->template;
while (1) {
occurance = strstr(occurance, HTTP_VAR);
if (!occurance)
break;
int pos = occurance - template_cmlp->template;
int len = 0;
occurance += HTTP_VAR_LEN;
while (islower(*occurance) || *occurance == '_') {
occurance++;
len++;
}
insert_occurance(&header_variable, pos, template_cmlp, len);
}
}
static void
find_variables(const char *template, compiled_template *template_cmlp)
{
int i = 0;
const template_variable *variables = template_cmlp->variables;
locate_http_variables(template_cmlp);
while (1) {
if (!memcmp(&variables[i], &null_variable, sizeof(template_variable)))
break;
const char *occurance = template;
while (1) {
occurance = strstr(occurance, variables[i].name);
if (occurance) {
int pos = occurance - template;
occurance += variables[i].name_len;
if (*occurance == '_')
continue;
insert_occurance(variables + i, pos, template_cmlp, 0);
} else {
break;
}
}
i++;
}
qsort(template_cmlp->variable_occurances->elts,
template_cmlp->variable_occurances->nelts,
sizeof(variable_occurance *), compare_occurance);
}
size_t
estimate_size(compiled_template *template_cmpl)
{
size_t orig_size = strlen(template_cmpl->template);
int size_dif = 0;
unsigned int i;
for (i = 0; i < template_cmpl->variable_occurances->nelts; i++) {
variable_occurance *occ =
((variable_occurance **)
template_cmpl->variable_occurances->elts)[i];
if (occ->http_hdr) {
size_dif += occ->variable->len - (occ->http_hdr + HTTP_VAR_LEN);
} else {
size_dif += occ->variable->len - occ->variable->name_len;
}
}
return orig_size + size_dif;
}
void
_compile_template(compiled_template *template_cmpl)
{
if (template_cmpl->variable_occurances->nelts == 0) {
template_cmpl->compiled_template_str = template_cmpl->template;
template_cmpl->max_result_len =
strlen(template_cmpl->compiled_template_str);
return;
}
size_t size = estimate_size(template_cmpl);
template_cmpl->compiled_template_str =
ngx_palloc(template_cmpl->pool, size + 1);
char *result_ptr = template_cmpl->compiled_template_str;
const char *template_ptr = template_cmpl->template;
size_t template_len = strlen(template_cmpl->template);
unsigned int i;
for (i = 0; i < template_cmpl->variable_occurances->nelts; i++) {
variable_occurance *occ =
((variable_occurance **)
template_cmpl->variable_occurances->elts)[i];
int s = occ->orig_pos - (template_ptr - template_cmpl->template);
memcpy(result_ptr, template_ptr, s);
template_ptr += s;
result_ptr += s;
memset(result_ptr, PLACE_HOLDER_CHR, occ->variable->len);
occ->pos = result_ptr - template_cmpl->compiled_template_str;
result_ptr += occ->variable->len;
template_ptr += occ->http_hdr ? (occ->http_hdr + HTTP_VAR_LEN)
: occ->variable->name_len;
}
int s = (template_len - (template_ptr - template_cmpl->template));
memcpy(result_ptr, template_ptr, s);
result_ptr += s;
*result_ptr = '\0';
template_cmpl->max_result_len =
strlen(template_cmpl->compiled_template_str);
}
void
_remove_placeholder_chars(char *str)
{
char *result_ptr = str;
while (*str != '\0') {
if (*str != PLACE_HOLDER_CHR) {
*result_ptr = *str;
result_ptr++;
}
str++;
}
*result_ptr = '\0';
}
char *
apply_template(compiled_template *template_cmpl, ngx_http_request_t *r,
void *data)
{
char *result = malloc(strlen(template_cmpl->compiled_template_str) + 1);
strcpy(result, template_cmpl->compiled_template_str);
unsigned int i;
for (i = 0; i < template_cmpl->variable_occurances->nelts; i++) {
variable_occurance *occ =
((variable_occurance **)
template_cmpl->variable_occurances->elts)[i];
if (!occ->http_hdr) {
const char *op = occ->variable->operation(r, data);
size_t len = strlen(op);
memcpy(result + occ->pos, op,
occ->variable->len < len ? occ->variable->len : len);
} else {
http_hdr_coccurance_ctx ctx = {template_cmpl->template, occ};
const char *op = occ->variable->operation(r, &ctx);
size_t len = strlen(op);
memcpy(result + occ->pos, op,
occ->variable->len < len ? occ->variable->len : len);
}
}
_remove_placeholder_chars(result);
return result;
}
int
compare_hdr(const char *hdr, size_t hdr_len, const char *template)
{
while (hdr_len) {
if (*hdr != '-' || *template != '_')
if (tolower(*hdr) != tolower(*template))
return 0;
hdr++;
template ++;
hdr_len--;
}
return *hdr == '\0' ? 1 : 0;
}
const char *
http_header_var(ngx_http_request_t *r, void *data)
{
#ifndef TEST
ngx_list_part_t *part;
ngx_table_elt_t *header;
part = &r->headers_in.headers.part;
header = part->elts;
http_hdr_coccurance_ctx *ctx = data;
int i = part->nelts - 1;
while (1) {
if (compare_hdr((char *)header[i].key.data, ctx->occ->http_hdr,
ctx->template + ctx->occ->orig_pos + HTTP_VAR_LEN))
return (const char *)header[i].value.data;
if (--i < 0) {
if (!part->next)
break;
part = part->next;
header = part->elts;
i = part->nelts - 1;
}
}
#endif
return "???";
}
compiled_template *
compile_template(char *template, const template_variable *variables,
ngx_pool_t *pool)
{
compiled_template *templ = ngx_palloc(pool, sizeof(compiled_template));
templ->variable_occurances =
ngx_array_create(pool, 10, sizeof(variable_occurance *));
templ->variables = variables;
templ->template = template;
templ->pool = pool;
find_variables(templ->template, templ);
_compile_template(templ);
return templ;
}