- Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathngx_http_lua_ssl_client_helloby.c
725 lines (546 loc) · 17.9 KB
/
ngx_http_lua_ssl_client_helloby.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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
/*
* Copyright (C) Yichun Zhang (agentzh)
*/
#ifndefDDEBUG
#defineDDEBUG 0
#endif
#include"ddebug.h"
#if (NGX_HTTP_SSL)
#include"ngx_http_lua_cache.h"
#include"ngx_http_lua_initworkerby.h"
#include"ngx_http_lua_util.h"
#include"ngx_http_ssl_module.h"
#include"ngx_http_lua_contentby.h"
#include"ngx_http_lua_ssl_client_helloby.h"
#include"ngx_http_lua_directive.h"
#include"ngx_http_lua_ssl.h"
staticvoidngx_http_lua_ssl_client_hello_done(void*data);
staticvoidngx_http_lua_ssl_client_hello_aborted(void*data);
staticu_char*ngx_http_lua_log_ssl_client_hello_error(ngx_log_t*log,
u_char*buf, size_tlen);
staticngx_int_tngx_http_lua_ssl_client_hello_by_chunk(lua_State*L,
ngx_http_request_t*r);
ngx_int_t
ngx_http_lua_ssl_client_hello_handler_file(ngx_http_request_t*r,
ngx_http_lua_srv_conf_t*lscf, lua_State*L)
{
ngx_int_trc;
rc=ngx_http_lua_cache_loadfile(r->connection->log, L,
lscf->srv.ssl_client_hello_src.data,
&lscf->srv.ssl_client_hello_src_ref,
lscf->srv.ssl_client_hello_src_key);
if (rc!=NGX_OK) {
returnrc;
}
/* make sure we have a valid code chunk */
ngx_http_lua_assert(lua_isfunction(L, -1));
returnngx_http_lua_ssl_client_hello_by_chunk(L, r);
}
ngx_int_t
ngx_http_lua_ssl_client_hello_handler_inline(ngx_http_request_t*r,
ngx_http_lua_srv_conf_t*lscf, lua_State*L)
{
ngx_int_trc;
rc=ngx_http_lua_cache_loadbuffer(r->connection->log, L,
lscf->srv.ssl_client_hello_src.data,
lscf->srv.ssl_client_hello_src.len,
&lscf->srv.ssl_client_hello_src_ref,
lscf->srv.ssl_client_hello_src_key,
(constchar*) lscf->srv.ssl_client_hello_chunkname);
if (rc!=NGX_OK) {
returnrc;
}
/* make sure we have a valid code chunk */
ngx_http_lua_assert(lua_isfunction(L, -1));
returnngx_http_lua_ssl_client_hello_by_chunk(L, r);
}
char*
ngx_http_lua_ssl_client_hello_by_lua_block(ngx_conf_t*cf, ngx_command_t*cmd,
void*conf)
{
char*rv;
ngx_conf_tsave;
save=*cf;
cf->handler=ngx_http_lua_ssl_client_hello_by_lua;
cf->handler_conf=conf;
rv=ngx_http_lua_conf_lua_block_parse(cf, cmd);
*cf=save;
returnrv;
}
char*
ngx_http_lua_ssl_client_hello_by_lua(ngx_conf_t*cf, ngx_command_t*cmd,
void*conf)
{
#ifndefSSL_ERROR_WANT_CLIENT_HELLO_CB
ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
"at least OpenSSL 1.1.1 required but found "
OPENSSL_VERSION_TEXT);
returnNGX_CONF_ERROR;
#else
size_tchunkname_len;
u_char*chunkname;
u_char*cache_key=NULL;
u_char*name;
ngx_str_t*value;
ngx_http_lua_srv_conf_t*lscf=conf;
/* must specify a concrete handler */
if (cmd->post==NULL) {
returnNGX_CONF_ERROR;
}
if (lscf->srv.ssl_client_hello_handler) {
return"is duplicate";
}
if (ngx_http_lua_ssl_init(cf->log) !=NGX_OK) {
returnNGX_CONF_ERROR;
}
value=cf->args->elts;
lscf->srv.ssl_client_hello_handler=
(ngx_http_lua_srv_conf_handler_pt) cmd->post;
if (cmd->post==ngx_http_lua_ssl_client_hello_handler_file) {
/* Lua code in an external file */
name=ngx_http_lua_rebase_path(cf->pool, value[1].data,
value[1].len);
if (name==NULL) {
returnNGX_CONF_ERROR;
}
cache_key=ngx_http_lua_gen_file_cache_key(cf, value[1].data,
value[1].len);
if (cache_key==NULL) {
returnNGX_CONF_ERROR;
}
lscf->srv.ssl_client_hello_src.data=name;
lscf->srv.ssl_client_hello_src.len=ngx_strlen(name);
} else {
cache_key=ngx_http_lua_gen_chunk_cache_key(cf,
"ssl_client_hello_by_lua",
value[1].data,
value[1].len);
if (cache_key==NULL) {
returnNGX_CONF_ERROR;
}
chunkname=ngx_http_lua_gen_chunk_name(cf, "ssl_client_hello_by_lua",
sizeof("ssl_client_hello_by_lua")-1,
&chunkname_len);
if (chunkname==NULL) {
returnNGX_CONF_ERROR;
}
/* Don't eval nginx variables for inline lua code */
lscf->srv.ssl_client_hello_src=value[1];
lscf->srv.ssl_client_hello_chunkname=chunkname;
}
lscf->srv.ssl_client_hello_src_key=cache_key;
returnNGX_CONF_OK;
#endif/* NO SSL_ERROR_WANT_CLIENT_HELLO_CB */
}
int
ngx_http_lua_ssl_client_hello_handler(ngx_ssl_conn_t*ssl_conn,
int*al, void*arg)
{
lua_State*L;
ngx_int_trc;
ngx_connection_t*c, *fc;
ngx_http_request_t*r=NULL;
ngx_pool_cleanup_t*cln;
ngx_http_connection_t*hc;
ngx_http_lua_srv_conf_t*lscf;
ngx_http_core_loc_conf_t*clcf;
ngx_http_lua_ssl_ctx_t*cctx;
ngx_http_core_srv_conf_t*cscf;
c=ngx_ssl_get_connection(ssl_conn);
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0,
"ssl client hello: connection reusable: %ud", c->reusable);
cctx=ngx_http_lua_ssl_get_ctx(c->ssl->connection);
dd("ssl client hello handler, client-hello-ctx=%p", cctx);
if (cctx&&cctx->entered_client_hello_handler) {
/* not the first time */
if (cctx->done) {
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0,
"lua_client_hello_by_lua: "
"client hello cb exit code: %d",
cctx->exit_code);
dd("lua ssl client hello done, finally");
returncctx->exit_code;
}
return-1;
}
dd("first time");
#if (nginx_version<1017009)
ngx_reusable_connection(c, 0);
#endif
hc=c->data;
fc=ngx_http_lua_create_fake_connection(NULL);
if (fc==NULL) {
goto failed;
}
fc->log->handler=ngx_http_lua_log_ssl_client_hello_error;
fc->log->data=fc;
fc->addr_text=c->addr_text;
fc->listening=c->listening;
r=ngx_http_lua_create_fake_request(fc);
if (r==NULL) {
goto failed;
}
r->main_conf=hc->conf_ctx->main_conf;
r->srv_conf=hc->conf_ctx->srv_conf;
r->loc_conf=hc->conf_ctx->loc_conf;
fc->log->file=c->log->file;
fc->log->log_level=c->log->log_level;
fc->ssl=c->ssl;
clcf=ngx_http_get_module_loc_conf(r, ngx_http_core_module);
#ifnginx_version >= 1009000
ngx_set_connection_log(fc, clcf->error_log);
#else
ngx_http_set_connection_log(fc, clcf->error_log);
#endif
if (cctx==NULL) {
cctx=ngx_pcalloc(c->pool, sizeof(ngx_http_lua_ssl_ctx_t));
if (cctx==NULL) {
goto failed; /* error */
}
cctx->ctx_ref=LUA_NOREF;
}
cctx->exit_code=1; /* successful by default */
cctx->connection=c;
cctx->request=r;
cctx->entered_client_hello_handler=1;
cctx->done=0;
dd("setting cctx");
if (SSL_set_ex_data(c->ssl->connection, ngx_http_lua_ssl_ctx_index, cctx)
==0)
{
ngx_ssl_error(NGX_LOG_ALERT, c->log, 0, "SSL_set_ex_data() failed");
goto failed;
}
lscf=ngx_http_get_module_srv_conf(r, ngx_http_lua_module);
/* TODO honor lua_code_cache off */
L=ngx_http_lua_get_lua_vm(r, NULL);
c->log->action="loading SSL client hello by lua";
if (lscf->srv.ssl_client_hello_handler==NULL) {
cscf=ngx_http_get_module_srv_conf(r, ngx_http_core_module);
ngx_log_error(NGX_LOG_ALERT, c->log, 0,
"no ssl_client_hello_by_lua* defined in "
"server %V", &cscf->server_name);
goto failed;
}
rc=lscf->srv.ssl_client_hello_handler(r, lscf, L);
if (rc >= NGX_OK||rc==NGX_ERROR) {
cctx->done=1;
if (cctx->cleanup) {
*cctx->cleanup=NULL;
}
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, c->log, 0,
"lua_client_hello_by_lua: handler return value: %i, "
"client hello cb exit code: %d", rc, cctx->exit_code);
c->log->action="SSL handshaking";
returncctx->exit_code;
}
/* rc == NGX_DONE */
cln=ngx_pool_cleanup_add(fc->pool, 0);
if (cln==NULL) {
goto failed;
}
cln->handler=ngx_http_lua_ssl_client_hello_done;
cln->data=cctx;
if (cctx->cleanup==NULL) {
cln=ngx_pool_cleanup_add(c->pool, 0);
if (cln==NULL) {
goto failed;
}
cln->data=cctx;
cctx->cleanup=&cln->handler;
}
*cctx->cleanup=ngx_http_lua_ssl_client_hello_aborted;
return-1;
#if1
failed:
if (r&&r->pool) {
ngx_http_lua_free_fake_request(r);
}
if (fc) {
ngx_http_lua_close_fake_connection(fc);
}
return0;
#endif
}
staticvoid
ngx_http_lua_ssl_client_hello_done(void*data)
{
ngx_connection_t*c;
ngx_http_lua_ssl_ctx_t*cctx=data;
dd("lua ssl client hello done");
if (cctx->aborted) {
return;
}
ngx_http_lua_assert(cctx->done==0);
cctx->done=1;
if (cctx->cleanup) {
*cctx->cleanup=NULL;
}
c=cctx->connection;
c->log->action="SSL handshaking";
ngx_post_event(c->write, &ngx_posted_events);
}
staticvoid
ngx_http_lua_ssl_client_hello_aborted(void*data)
{
ngx_http_lua_ssl_ctx_t*cctx=data;
dd("lua ssl client hello aborted");
if (cctx->done) {
/* completed successfully already */
return;
}
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, cctx->connection->log, 0,
"lua_client_hello_by_lua: client hello cb aborted");
cctx->aborted=1;
cctx->request->connection->ssl=NULL;
ngx_http_lua_finalize_fake_request(cctx->request, NGX_ERROR);
}
staticu_char*
ngx_http_lua_log_ssl_client_hello_error(ngx_log_t*log,
u_char*buf, size_tlen)
{
u_char*p;
ngx_connection_t*c;
if (log->action) {
p=ngx_snprintf(buf, len, " while %s", log->action);
len-=p-buf;
buf=p;
}
p=ngx_snprintf(buf, len, ", context: ssl_client_hello_by_lua*");
len-=p-buf;
buf=p;
c=log->data;
if (c&&c->addr_text.len) {
p=ngx_snprintf(buf, len, ", client: %V", &c->addr_text);
len-=p-buf;
buf=p;
}
if (c&&c->listening&&c->listening->addr_text.len) {
p=ngx_snprintf(buf, len, ", server: %V", &c->listening->addr_text);
/* len -= p - buf; */
buf=p;
}
returnbuf;
}
staticngx_int_t
ngx_http_lua_ssl_client_hello_by_chunk(lua_State*L, ngx_http_request_t*r)
{
intco_ref;
ngx_int_trc;
lua_State*co;
ngx_http_lua_ctx_t*ctx;
ngx_pool_cleanup_t*cln;
ctx=ngx_http_get_module_ctx(r, ngx_http_lua_module);
if (ctx==NULL) {
ctx=ngx_http_lua_create_ctx(r);
if (ctx==NULL) {
rc=NGX_ERROR;
ngx_http_lua_finalize_request(r, rc);
returnrc;
}
} else {
dd("reset ctx");
ngx_http_lua_reset_ctx(r, L, ctx);
}
ctx->entered_content_phase=1;
/* {{{ new coroutine to handle request */
co=ngx_http_lua_new_thread(r, L, &co_ref);
if (co==NULL) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"lua: failed to create new coroutine to handle request");
rc=NGX_ERROR;
ngx_http_lua_finalize_request(r, rc);
returnrc;
}
/* move code closure to new coroutine */
lua_xmove(L, co, 1);
#ifndefOPENRESTY_LUAJIT
/* set closure's env table to new coroutine's globals table */
ngx_http_lua_get_globals_table(co);
lua_setfenv(co, -2);
#endif
/* save nginx request in coroutine globals table */
ngx_http_lua_set_req(co, r);
ctx->cur_co_ctx=&ctx->entry_co_ctx;
ctx->cur_co_ctx->co=co;
ctx->cur_co_ctx->co_ref=co_ref;
#ifdefNGX_LUA_USE_ASSERT
ctx->cur_co_ctx->co_top=1;
#endif
ngx_http_lua_attach_co_ctx_to_L(co, ctx->cur_co_ctx);
/* register request cleanup hooks */
if (ctx->cleanup==NULL) {
cln=ngx_pool_cleanup_add(r->pool, 0);
if (cln==NULL) {
rc=NGX_ERROR;
ngx_http_lua_finalize_request(r, rc);
returnrc;
}
cln->handler=ngx_http_lua_request_cleanup_handler;
cln->data=ctx;
ctx->cleanup=&cln->handler;
}
ctx->context=NGX_HTTP_LUA_CONTEXT_SSL_CLIENT_HELLO;
rc=ngx_http_lua_run_thread(L, r, ctx, 0);
if (rc==NGX_ERROR||rc >= NGX_OK) {
/* do nothing */
} elseif (rc==NGX_AGAIN) {
rc=ngx_http_lua_content_run_posted_threads(L, r, ctx, 0);
} elseif (rc==NGX_DONE) {
rc=ngx_http_lua_content_run_posted_threads(L, r, ctx, 1);
} else {
rc=NGX_OK;
}
ngx_http_lua_finalize_request(r, rc);
returnrc;
}
int
ngx_http_lua_ffi_ssl_get_client_hello_server_name(ngx_http_request_t*r,
constchar**name, size_t*namelen, char**err)
{
#ifdefLIBRESSL_VERSION_NUMBER
*err="LibreSSL does not support by ssl_client_hello_by_lua*";
returnNGX_ERROR;
#else
ngx_ssl_conn_t*ssl_conn;
#ifdefSSL_ERROR_WANT_CLIENT_HELLO_CB
constunsigned char*p;
size_tremaining, len;
#endif
if (r->connection==NULL||r->connection->ssl==NULL) {
*err="bad request";
returnNGX_ERROR;
}
ssl_conn=r->connection->ssl->connection;
if (ssl_conn==NULL) {
*err="bad ssl conn";
returnNGX_ERROR;
}
#ifdefSSL_CTRL_SET_TLSEXT_HOSTNAME
#ifdefSSL_ERROR_WANT_CLIENT_HELLO_CB
remaining=0;
/* This code block is taken from OpenSSL's client_hello_select_server_ctx()
* */
if (!SSL_client_hello_get0_ext(ssl_conn, TLSEXT_TYPE_server_name, &p,
&remaining))
{
returnNGX_DECLINED;
}
if (remaining <= 2) {
*err="Bad SSL Client Hello Extension";
returnNGX_ERROR;
}
len= (*(p++) << 8);
len+=*(p++);
if (len+2!=remaining) {
*err="Bad SSL Client Hello Extension";
returnNGX_ERROR;
}
remaining=len;
if (remaining==0||*p++!=TLSEXT_NAMETYPE_host_name) {
*err="Bad SSL Client Hello Extension";
returnNGX_ERROR;
}
remaining--;
if (remaining <= 2) {
*err="Bad SSL Client Hello Extension";
returnNGX_ERROR;
}
len= (*(p++) << 8);
len+=*(p++);
if (len+2>remaining) {
*err="Bad SSL Client Hello Extension";
returnNGX_ERROR;
}
remaining=len;
*name= (constchar*) p;
*namelen=len;
returnNGX_OK;
#else
*err="OpenSSL too old to support this function";
returnNGX_ERROR;
#endif
#else
*err="no TLS extension support";
returnNGX_ERROR;
#endif
#endif/* LIBRESSL_VERSION_NUMBER */
}
int
ngx_http_lua_ffi_ssl_get_client_hello_ext(ngx_http_request_t*r,
unsigned inttype, constunsigned char**out, size_t*outlen, char**err)
{
#ifdefLIBRESSL_VERSION_NUMBER
*err="LibreSSL does not support by ssl_client_hello_by_lua*";
returnNGX_ERROR;
#else
ngx_ssl_conn_t*ssl_conn;
if (r->connection==NULL||r->connection->ssl==NULL) {
*err="bad request";
returnNGX_ERROR;
}
ssl_conn=r->connection->ssl->connection;
if (ssl_conn==NULL) {
*err="bad ssl conn";
returnNGX_ERROR;
}
#ifdefSSL_ERROR_WANT_CLIENT_HELLO_CB
if (SSL_client_hello_get0_ext(ssl_conn, type, out, outlen) ==0) {
returnNGX_DECLINED;
}
returnNGX_OK;
#else
*err="OpenSSL too old to support this function";
returnNGX_ERROR;
#endif
#endif/* LIBRESSL_VERSION_NUMBER */
}
int
ngx_http_lua_ffi_ssl_set_protocols(ngx_http_request_t*r,
intprotocols, char**err)
{
ngx_ssl_conn_t*ssl_conn;
if (r->connection==NULL||r->connection->ssl==NULL) {
*err="bad request";
returnNGX_ERROR;
}
ssl_conn=r->connection->ssl->connection;
if (ssl_conn==NULL) {
*err="bad ssl conn";
returnNGX_ERROR;
}
#ifOPENSSL_VERSION_NUMBER >= 0x009080dfL
/* only in 0.9.8m+ */
SSL_clear_options(ssl_conn,
SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TLSv1);
#endif
if (!(protocols&NGX_SSL_SSLv2)) {
SSL_set_options(ssl_conn, SSL_OP_NO_SSLv2);
}
if (!(protocols&NGX_SSL_SSLv3)) {
SSL_set_options(ssl_conn, SSL_OP_NO_SSLv3);
}
if (!(protocols&NGX_SSL_TLSv1)) {
SSL_set_options(ssl_conn, SSL_OP_NO_TLSv1);
}
#ifdefSSL_OP_NO_TLSv1_1
SSL_clear_options(ssl_conn, SSL_OP_NO_TLSv1_1);
if (!(protocols&NGX_SSL_TLSv1_1)) {
SSL_set_options(ssl_conn, SSL_OP_NO_TLSv1_1);
}
#endif
#ifdefSSL_OP_NO_TLSv1_2
SSL_clear_options(ssl_conn, SSL_OP_NO_TLSv1_2);
if (!(protocols&NGX_SSL_TLSv1_2)) {
SSL_set_options(ssl_conn, SSL_OP_NO_TLSv1_2);
}
#endif
#if defined(NGX_SSL_TLSv1_3) && defined( SSL_OP_NO_TLSv1_3)
SSL_clear_options(ssl_conn, SSL_OP_NO_TLSv1_3);
if (!(protocols&NGX_SSL_TLSv1_3)) {
SSL_set_options(ssl_conn, SSL_OP_NO_TLSv1_3);
}
#endif
returnNGX_OK;
}
#endif/* NGX_HTTP_SSL */