-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathngx_http_captcha_module.c
295 lines (284 loc) · 14.6 KB
/
ngx_http_captcha_module.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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
#include <ngx_http.h>
#include <ngx_md5.h>
#include <gd.h>
#define M_PI 3.14159265358979323846
#define MD5_BHASH_LEN 16
#define MD5_HASH_LEN (MD5_BHASH_LEN * 2)
typedef struct {
ngx_flag_t icase;
ngx_int_t level;
ngx_str_t charset;
ngx_str_t csrf;
ngx_str_t font;
ngx_str_t name;
ngx_http_complex_value_t *secret;
ngx_uint_t arg;
ngx_uint_t cookie;
ngx_uint_t expire;
ngx_uint_t height;
ngx_uint_t length;
ngx_uint_t line;
ngx_uint_t size;
ngx_uint_t star;
ngx_uint_t width;
} ngx_http_captcha_location_t;
ngx_module_t ngx_http_captcha_module;
static int mt_rand(int min, int max) {
return (ngx_random() % (max - min + 1)) + min;
}
static ngx_int_t ngx_http_captcha_handler(ngx_http_request_t *r) {
if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) return NGX_HTTP_NOT_ALLOWED;
ngx_int_t rc = ngx_http_discard_request_body(r);
if (rc != NGX_OK && rc != NGX_AGAIN) return rc;
ngx_http_captcha_location_t *location = ngx_http_get_module_loc_conf(r, ngx_http_captcha_module);
if (!location->secret) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "!location->secret"); return NGX_HTTP_INTERNAL_SERVER_ERROR; }
u_char *code = ngx_pnalloc(r->pool, location->length + 1);
if (!code) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "!ngx_pnalloc"); return NGX_HTTP_INTERNAL_SERVER_ERROR; }
for (size_t i = 0; i < location->length; i++) code[i] = location->charset.data[mt_rand(0, location->charset.len - 1)];
code[location->length] = '\0';
ngx_http_variable_value_t *csrf = ngx_http_get_indexed_variable(r, location->cookie);
if (!csrf || !csrf->data || !csrf->len) {
ngx_log_error(NGX_LOG_WARN, r->connection->log, 0, "captcha: no \"%V\" cookie specified, trying arg...", &location->csrf);
csrf = ngx_http_get_indexed_variable(r, location->arg);
if (!csrf || !csrf->data || !csrf->len) { ngx_log_error(NGX_LOG_WARN, r->connection->log, 0, "captcha: no \"%V\" arg specified", &location->csrf); return NGX_HTTP_NOT_FOUND; }
}
if (location->icase) {
u_char *icode = ngx_pnalloc(r->pool, location->length);
if (!icode) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "!ngx_pnalloc"); return NGX_HTTP_INTERNAL_SERVER_ERROR; }
(void)ngx_strlow(icode, code, location->length);
code = icode;
}
ngx_md5_t md5;
(void)ngx_md5_init(&md5);
ngx_str_t secret;
if (ngx_http_complex_value(r, location->secret, &secret) != NGX_OK) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "ngx_http_complex_value != NGX_OK"); return NGX_HTTP_INTERNAL_SERVER_ERROR; }
(void)ngx_md5_update(&md5, (const void *)secret.data, secret.len);
(void)ngx_md5_update(&md5, (const void *)code, (size_t)location->length);
(void)ngx_md5_update(&md5, (const void *)csrf->data, csrf->len);
u_char bhash[MD5_BHASH_LEN];
(void)ngx_md5_final(bhash, &md5);
u_char hash[MD5_HASH_LEN + 1];
(u_char *)ngx_hex_dump(hash, bhash, MD5_BHASH_LEN);
hash[MD5_HASH_LEN] = '\0';
ngx_table_elt_t *set_cookie_name = ngx_list_push(&r->headers_out.headers);
if (!set_cookie_name) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "!ngx_list_push"); return NGX_HTTP_INTERNAL_SERVER_ERROR; }
set_cookie_name->hash = 1;
ngx_str_set(&set_cookie_name->key, "Set-Cookie");
set_cookie_name->value.len = location->name.len + MD5_HASH_LEN + sizeof("%V=%s; Max-Age=%d") - 1 - 6;
for (ngx_uint_t number = location->expire; number /= 10; set_cookie_name->value.len++);
set_cookie_name->value.len++;
if (!(set_cookie_name->value.data = ngx_pnalloc(r->pool, set_cookie_name->value.len))) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "!ngx_pnalloc"); return NGX_HTTP_INTERNAL_SERVER_ERROR; }
if (ngx_snprintf(set_cookie_name->value.data, set_cookie_name->value.len, "%V=%s; Max-Age=%d", &location->name, hash, location->expire) != set_cookie_name->value.data + set_cookie_name->value.len) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "ngx_snprintf"); return NGX_HTTP_INTERNAL_SERVER_ERROR; }
ngx_str_set(&r->headers_out.content_type, "image/png");
r->headers_out.status = NGX_HTTP_OK;
r->headers_out.content_length_n = 0;
if (r->method == NGX_HTTP_HEAD) {
rc = ngx_http_send_header(r);
if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) return rc;
}
gdFTUseFontConfig(1);
gdImagePtr img = gdImageCreateTrueColor(location->width, location->height);
if (!img) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "!gdImageCreateTrueColor"); return NGX_HTTP_INTERNAL_SERVER_ERROR; }
(void)gdImageFilledRectangle(img, 0, location->height, location->width, 0, gdImageColorAllocate(img, mt_rand(157, 255), mt_rand(157, 255), mt_rand(157, 255)));
for (ngx_uint_t i = 0, brect[8], x = location->width / location->length; i < location->length; i++) (char *)gdImageStringFT(img, (int *)brect, gdImageColorAllocate(img, mt_rand(0, 156), mt_rand(0, 156), mt_rand(0, 156)), (char *)location->font.data, location->size, mt_rand(-30, 30) * (M_PI / 180), x * i + mt_rand(1, 5), location->height / 1.4, (char *)(u_char [2]){*code++, '\0'});
for (ngx_uint_t i = 0; i < location->line; i++) (void)gdImageLine(img, mt_rand(0, location->width), mt_rand(0, location->height), mt_rand(0, location->width), mt_rand(0, location->height), gdImageColorAllocate(img, mt_rand(0, 156), mt_rand(0, 156), mt_rand(0, 156)));
for (ngx_uint_t i = 0, brect[8]; i < location->star; i++) (char *)gdImageStringFT(img, (int *)brect, gdImageColorAllocate(img, mt_rand(200, 255), mt_rand(200, 255), mt_rand(200, 255)), (char *)location->font.data, 8, 0, mt_rand(0, location->width), mt_rand(0, location->height), "*");
int size;
u_char *img_buf = (u_char *)gdImagePngPtrEx(img, &size, location->level);
(void)gdImageDestroy(img);
if (!img_buf) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "!gdImagePngPtrEx"); return NGX_HTTP_INTERNAL_SERVER_ERROR; }
ngx_buf_t *b = ngx_create_temp_buf(r->pool, size);
if (!b) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "!ngx_create_temp_buf"); gdFree(img_buf); return NGX_HTTP_INTERNAL_SERVER_ERROR; }
b->memory = 1;
b->last_buf = 1;
b->last = ngx_copy(b->last, img_buf, size);
gdFree(img_buf);
if (b->last != b->end) { ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, "b->last != b->end"); return NGX_HTTP_INTERNAL_SERVER_ERROR; }
r->headers_out.content_length_n = size;
rc = ngx_http_send_header(r);
if (rc == NGX_ERROR || rc > NGX_OK || r->header_only) return rc;
ngx_chain_t cl = {.buf = b, .next = NULL};
return ngx_http_output_filter(r, &cl);
}
static char *ngx_http_captcha_conf(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) {
ngx_http_core_loc_conf_t *clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module);
clcf->handler = ngx_http_captcha_handler;
return NGX_CONF_OK;
}
static ngx_command_t ngx_http_captcha_commands[] = {
{ .name = ngx_string("captcha"),
.type = NGX_HTTP_LOC_CONF|NGX_CONF_NOARGS,
.set = ngx_http_captcha_conf,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = 0,
.post = NULL },
{ .name = ngx_string("captcha_case"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_flag_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, icase),
.post = NULL },
{ .name = ngx_string("captcha_expire"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_num_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, expire),
.post = NULL },
{ .name = ngx_string("captcha_height"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_num_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, height),
.post = NULL },
{ .name = ngx_string("captcha_length"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_num_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, length),
.post = NULL },
{ .name = ngx_string("captcha_size"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_num_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, size),
.post = NULL },
{ .name = ngx_string("captcha_width"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_num_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, width),
.post = NULL },
{ .name = ngx_string("captcha_line"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_num_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, line),
.post = NULL },
{ .name = ngx_string("captcha_star"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_num_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, star),
.post = NULL },
{ .name = ngx_string("captcha_level"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_num_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, level),
.post = NULL },
{ .name = ngx_string("captcha_charset"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_str_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, charset),
.post = NULL },
{ .name = ngx_string("captcha_csrf"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_str_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, csrf),
.post = NULL },
{ .name = ngx_string("captcha_font"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_str_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, font),
.post = NULL },
{ .name = ngx_string("captcha_name"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_conf_set_str_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, name),
.post = NULL },
{ .name = ngx_string("captcha_secret"),
.type = NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_CONF_TAKE1,
.set = ngx_http_set_complex_value_slot,
.conf = NGX_HTTP_LOC_CONF_OFFSET,
.offset = offsetof(ngx_http_captcha_location_t, secret),
.post = NULL },
ngx_null_command
};
static void *ngx_http_captcha_create_loc_conf(ngx_conf_t *cf) {
ngx_http_captcha_location_t *location = ngx_pcalloc(cf->pool, sizeof(*location));
if (!location) return NULL;
location->icase = NGX_CONF_UNSET;
location->expire = NGX_CONF_UNSET_UINT;
location->height = NGX_CONF_UNSET_UINT;
location->length = NGX_CONF_UNSET_UINT;
location->size = NGX_CONF_UNSET_UINT;
location->width = NGX_CONF_UNSET_UINT;
location->line = NGX_CONF_UNSET_UINT;
location->star = NGX_CONF_UNSET_UINT;
location->level = NGX_CONF_UNSET;
return location;
}
static char *ngx_http_captcha_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child) {
ngx_http_captcha_location_t *prev = parent;
ngx_http_captcha_location_t *conf = child;
ngx_conf_merge_value(conf->icase, prev->icase, 1);
ngx_conf_merge_uint_value(conf->expire, prev->expire, 300);
ngx_conf_merge_uint_value(conf->height, prev->height, 30);
ngx_conf_merge_uint_value(conf->length, prev->length, 4);
ngx_conf_merge_uint_value(conf->size, prev->size, 20);
ngx_conf_merge_uint_value(conf->width, prev->width, 130);
ngx_conf_merge_uint_value(conf->line, prev->line, 10);
ngx_conf_merge_uint_value(conf->star, prev->star, 100);
ngx_conf_merge_value(conf->level, prev->level, -1);
if (conf->level > 9) conf->level = 9; else if (conf->level < -1) conf->level = -1;
ngx_conf_merge_str_value(conf->charset, prev->charset, "abcdefghkmnprstuvwxyzABCDEFGHKMNPRSTUVWXYZ23456789");
ngx_conf_merge_str_value(conf->csrf, prev->csrf, "csrf");
ngx_conf_merge_str_value(conf->font, prev->font, "/usr/local/share/fonts/NimbusSans-Regular.ttf");
ngx_conf_merge_str_value(conf->name, prev->name, "Captcha");
if (!conf->secret) conf->secret = prev->secret;
if (conf->size > conf->height) return "captcha size is too large";
if (!conf->name.len) return "captcha name cannot be empty";
// if (!conf->secret) return "captcha secret cannot be empty";
if (!conf->font.len) return "captcha font cannot be empty";
if (!conf->charset.len) return "captcha charset cannot be empty";
if (!conf->csrf.len) return "captcha csrf cannot be empty";
if (prev->cookie && prev->arg) {
conf->cookie = prev->cookie;
conf->arg = prev->arg;
} else {
ngx_str_t name;
name.len = conf->csrf.len + sizeof("cookie_%V") - 1 - 2;
if (!(name.data = ngx_pnalloc(cf->pool, name.len))) return "!ngx_pnalloc";
if (ngx_snprintf(name.data, name.len, "cookie_%V", &conf->csrf) != name.data + name.len) return "ngx_snprintf";
ngx_int_t index = ngx_http_get_variable_index(cf, &name);
if (index == NGX_ERROR) return "ngx_http_get_variable_index == NGX_ERROR";
conf->cookie = (ngx_uint_t) index;
name.data += 3;
name.len -= 3;
name.data[0] = 'a';
name.data[1] = 'r';
name.data[2] = 'g';
index = ngx_http_get_variable_index(cf, &name);
if (index == NGX_ERROR) return "ngx_http_get_variable_index == NGX_ERROR";
conf->arg = (ngx_uint_t) index;
}
return NGX_CONF_OK;
}
static ngx_http_module_t ngx_http_captcha_ctx = {
.preconfiguration = NULL,
.postconfiguration = NULL,
.create_main_conf = NULL,
.init_main_conf = NULL,
.create_srv_conf = NULL,
.merge_srv_conf = NULL,
.create_loc_conf = ngx_http_captcha_create_loc_conf,
.merge_loc_conf = ngx_http_captcha_merge_loc_conf
};
ngx_module_t ngx_http_captcha_module = {
NGX_MODULE_V1,
.ctx = &ngx_http_captcha_ctx,
.commands = ngx_http_captcha_commands,
.type = NGX_HTTP_MODULE,
.init_master = NULL,
.init_module = NULL,
.init_process = NULL,
.init_thread = NULL,
.exit_thread = NULL,
.exit_process = NULL,
.exit_master = NULL,
NGX_MODULE_V1_PADDING
};