-
Notifications
You must be signed in to change notification settings - Fork 19
/
max_connections_module.c
677 lines (556 loc) · 20.3 KB
/
max_connections_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
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
/* max connections module for nginx
* Copyright 2008 Engine Yard, Inc. All rights reserved.
* Author: Ryan Dahl ([email protected])
*/
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_event.h>
#include <ngx_http.h>
#include <ngx_http_upstream.h>
#include <assert.h>
/* 0.5 seconds until a backend SLOT is reset after client half-close */
#define CLIENT_CLOSURE_SLEEP ((ngx_msec_t)500)
typedef struct {
ngx_uint_t max_connections;
ngx_uint_t max_queue_length;
ngx_uint_t queue_length;
ngx_queue_t waiting_requests;
ngx_array_t *backends; /* backend servers */
ngx_event_t queue_check_event;
ngx_msec_t queue_timeout;
} max_connections_srv_conf_t;
typedef struct {
struct sockaddr *sockaddr;
socklen_t socklen;
ngx_str_t *name;
ngx_uint_t weight; /* unused */
ngx_uint_t max_fails;
time_t fail_timeout;
time_t accessed;
ngx_uint_t down:1;
ngx_uint_t fails;
ngx_uint_t client_closures;
ngx_uint_t connections;
ngx_event_t disconnect_event;
max_connections_srv_conf_t *maxconn_cf;
} max_connections_backend_t;
typedef struct {
max_connections_srv_conf_t *maxconn_cf;
max_connections_backend_t *backend; /* the backend the peer was sent to */
ngx_queue_t queue; /* queue information */
ngx_http_request_t *r; /* the request associated with the peer */
ngx_msec_t accessed;
ngx_uint_t really_needs_backend:1;
} max_connections_peer_data_t;
static ngx_uint_t max_connections_rr_index;
/* forward declarations */
static char * max_connections_command (ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
static char * max_connections_queue_timeout_command (ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
static char * max_connections_max_queue_length_command (ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
static void * max_connections_create_conf(ngx_conf_t *cf);
#define RAMP(x) (x > 0 ? x : 0)
static ngx_command_t max_connections_commands[] =
{ { ngx_string("max_connections")
, NGX_HTTP_UPS_CONF|NGX_CONF_TAKE1
, max_connections_command
, 0
, 0
, NULL
}
, { ngx_string("max_connections_queue_timeout")
, NGX_HTTP_UPS_CONF|NGX_CONF_TAKE1
, max_connections_queue_timeout_command
, 0
, 0
, NULL
}
, { ngx_string("max_connections_max_queue_length")
, NGX_HTTP_UPS_CONF|NGX_CONF_TAKE1
, max_connections_max_queue_length_command
, 0
, 0
, NULL
}
, ngx_null_command
};
static ngx_http_module_t max_connections_module_ctx =
/* preconfiguration */ { NULL
/* postconfiguration */ , NULL
/* create main configuration */ , NULL
/* init main configuration */ , NULL
/* create server configuration */ , max_connections_create_conf
/* merge server configuration */ , NULL
/* create location configuration */ , NULL
/* merge location configuration */ , NULL
};
ngx_module_t max_connections_module =
{ NGX_MODULE_V1
/* module context */ , &max_connections_module_ctx
/* module directives */ , max_connections_commands
/* module 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
};
static ngx_uint_t
queue_size (max_connections_srv_conf_t *maxconn_cf)
{
ngx_queue_t *node;
ngx_uint_t queue_size = 0;
/* TODO O(n) could be O(1) */
for( node = maxconn_cf->waiting_requests.next
; node && node != &maxconn_cf->waiting_requests
; node = node->next
) queue_size += 1;
return queue_size;
}
static max_connections_peer_data_t *
queue_oldest (max_connections_srv_conf_t *maxconn_cf)
{
if(ngx_queue_empty(&maxconn_cf->waiting_requests))
return NULL;
ngx_queue_t *last = ngx_queue_last(&maxconn_cf->waiting_requests);
max_connections_peer_data_t *peer_data =
ngx_queue_data(last, max_connections_peer_data_t, queue);
return peer_data;
}
static ngx_int_t
queue_remove (max_connections_peer_data_t *peer_data)
{
max_connections_srv_conf_t *maxconn_cf = peer_data->maxconn_cf;
/* return 0 if it wasn't in the queue */
if(peer_data->queue.next == NULL)
return 0;
max_connections_peer_data_t *oldest = queue_oldest (maxconn_cf);
ngx_queue_remove(&peer_data->queue);
peer_data->queue.prev = peer_data->queue.next = NULL;
maxconn_cf->queue_length -= 1;
assert(maxconn_cf->queue_length == queue_size(peer_data->maxconn_cf));
ngx_log_error( NGX_LOG_INFO
, peer_data->r->connection->log
, 0
, "max_connections del queue (new size %ui)"
, queue_size(peer_data->maxconn_cf)
);
if(ngx_queue_empty(&maxconn_cf->waiting_requests)) {
/* delete the timer if the queue is empty now */
if(maxconn_cf->queue_check_event.timer_set) {
ngx_del_timer( (&maxconn_cf->queue_check_event) );
}
} else if(oldest == peer_data) {
/* if the removed peer_data was the first */
/* make sure that the check queue timer is set when we have things in
* the queue */
oldest = queue_oldest (maxconn_cf);
/* ------|-----------|-------------|------------------------ */
/* accessed now accessed + TIMEOUT */
ngx_add_timer( (&maxconn_cf->queue_check_event)
, RAMP(oldest->accessed + maxconn_cf->queue_timeout - ngx_current_msec)
);
}
return 1;
}
/* removes the first item from the queue - returns request */
static max_connections_peer_data_t *
queue_shift (max_connections_srv_conf_t *maxconn_cf)
{
if(ngx_queue_empty(&maxconn_cf->waiting_requests))
return NULL;
max_connections_peer_data_t *peer_data = queue_oldest (maxconn_cf);
ngx_int_t r = queue_remove (peer_data);
assert(r == 1);
return peer_data;
}
/* adds a request to the end of the queue */
static ngx_int_t
queue_push (max_connections_srv_conf_t *maxconn_cf, max_connections_peer_data_t *peer_data)
{
if(maxconn_cf->queue_length >= maxconn_cf->max_queue_length)
return NGX_ERROR;
/* if this is the first element ensure we set the queue_check_event */
if(ngx_queue_empty(&maxconn_cf->waiting_requests)) {
assert(!maxconn_cf->queue_check_event.timer_set);
ngx_add_timer((&maxconn_cf->queue_check_event), maxconn_cf->queue_timeout);
}
ngx_queue_insert_head(&maxconn_cf->waiting_requests, &peer_data->queue);
maxconn_cf->queue_length += 1;
assert(maxconn_cf->queue_length == queue_size(peer_data->maxconn_cf));
assert(maxconn_cf->max_queue_length >= maxconn_cf->queue_length);
ngx_log_error( NGX_LOG_INFO
, peer_data->r->connection->log
, 0
, "max_connections add queue (new size %ui)"
, queue_size(maxconn_cf)
);
return NGX_OK;
}
/* This function selects an open backend. It simply iterates through the
* backends looking for the one with the least connections. */
static max_connections_backend_t*
find_upstream (max_connections_srv_conf_t *maxconn_cf, int forced)
{
#define MAXCONN_BIGNUM 999999
ngx_uint_t c
, index
, min_backend_index = MAXCONN_BIGNUM
, min_backend_connections = MAXCONN_BIGNUM
;
ngx_uint_t nbackends = maxconn_cf->backends->nelts;
max_connections_backend_t *backends = maxconn_cf->backends->elts;
time_t now = ngx_time();
for( c = 0, index = ngx_random() % nbackends
; c < nbackends
; c++, index = (index + 1) % nbackends
)
{
max_connections_backend_t *backend = &backends[index];
if(now - backend->accessed > backend->fail_timeout) {
backend->fails = 0;
}
if(backend->fails >= backend->max_fails || backend->down)
continue;
if(backend->connections < min_backend_connections) {
min_backend_connections = backend->connections;
min_backend_index = index;
}
}
/* there weren't even any backends to look at */
if(min_backend_connections == MAXCONN_BIGNUM)
return NULL;
assert(min_backend_index < nbackends);
max_connections_backend_t *choosen = &backends[min_backend_index];
assert(choosen->connections == min_backend_connections);
assert(!choosen->down);
assert(choosen->fails < choosen->max_fails);
if(!forced && choosen->connections >= maxconn_cf->max_connections)
return NULL; /* no open slots */
return choosen;
}
/* Returns true if there are no slots to send a request to. */
#define upstreams_are_all_occupied(maxconn_cf) \
(find_upstream (maxconn_cf, 0) == NULL)
#define upstreams_are_all_dead(maxconn_cf) \
(find_upstream (maxconn_cf, 1) == NULL)
/* This function takes the oldest request on the queue
* (maxconn_cf->waiting_requests) and dispatches it to the backends. This
* calls ngx_http_upstream_connect() which will in turn call the peer get
* callback, peer_get(). peer_get() will do
* the actual selection of backend. Here we're just giving the request the
* go-ahead to proceed.
*/
static void
dispatch (max_connections_srv_conf_t *maxconn_cf)
{
if(ngx_queue_empty(&maxconn_cf->waiting_requests)) return;
if(upstreams_are_all_occupied(maxconn_cf)) return;
max_connections_peer_data_t *peer_data = queue_shift(maxconn_cf);
ngx_http_request_t *r = peer_data->r;
assert(!r->connection->destroyed);
assert(!r->connection->error);
assert(peer_data->backend == NULL);
ngx_log_error( NGX_LOG_INFO
, r->connection->log
, 0
, "max_connections dispatch (max_queue_length: %ui, queue timeout: %ui, maxconn: %ui)"
, maxconn_cf->max_queue_length
, maxconn_cf->queue_timeout
, maxconn_cf->max_connections
);
ngx_http_upstream_connect(r, r->upstream);
/* can we dispatch again? */
dispatch(maxconn_cf);
}
static void
recover_from_client_closure(ngx_event_t *ev)
{
max_connections_backend_t *backend = ev->data;
assert(backend->connections > 0);
assert(backend->client_closures > 0);
backend->connections -= backend->client_closures;
backend->client_closures = 0;
dispatch(backend->maxconn_cf);
}
static void
queue_check_event(ngx_event_t *ev)
{
max_connections_srv_conf_t *maxconn_cf = ev->data;
max_connections_peer_data_t *oldest;
while ( (oldest = queue_oldest(maxconn_cf))
&& ngx_current_msec - oldest->accessed > maxconn_cf->queue_timeout
)
{
max_connections_peer_data_t *peer_data = queue_shift(maxconn_cf);
assert(peer_data == oldest);
ngx_log_error( NGX_LOG_INFO
, peer_data->r->connection->log
, 0
, "max_connections expire"
);
ngx_http_finalize_request(peer_data->r, NGX_HTTP_QUEUE_EXPIRATION);
}
/* try to dispatch some requets */
dispatch(maxconn_cf);
/* check the check timer */
if( !ngx_queue_empty(&maxconn_cf->waiting_requests)
&& !maxconn_cf->queue_check_event.timer_set
)
{
ngx_add_timer((&maxconn_cf->queue_check_event), maxconn_cf->queue_timeout);
}
}
/* The peer free function which is part of all NGINX upstream modules */
static void
peer_free (ngx_peer_connection_t *pc, void *data, ngx_uint_t state)
{
max_connections_peer_data_t *peer_data = data;
max_connections_backend_t *backend = peer_data->backend;
max_connections_srv_conf_t *maxconn_cf = peer_data->maxconn_cf;
assert(maxconn_cf->queue_length == queue_size(peer_data->maxconn_cf));
assert(maxconn_cf->max_queue_length >= maxconn_cf->queue_length);
/* This happens when a client closes their connection before the request
* is completed */
if(peer_data->r->connection->error) {
/* If the connection is in the queue, remove it. */
queue_remove(peer_data);
/* If the connection is connected to a backend */
if(backend != NULL) {
if(!backend->disconnect_event.timer_set) {
assert(backend->client_closures == 0);
ngx_add_timer( (&backend->disconnect_event)
, CLIENT_CLOSURE_SLEEP
);
}
backend->client_closures++;
assert(backend->client_closures <= maxconn_cf->max_connections);
peer_data->backend = NULL;
}
pc->tries = 0;
goto dispatch;
}
if(pc)
pc->tries--;
if(backend) {
assert(backend->connections > 0);
backend->connections--; /* free the slot */
ngx_log_error( NGX_LOG_INFO
, peer_data->r->connection->log
, 0
, "max_connections recv client from %V (now %ui connections)"
, backend->name
, backend->connections
);
}
/* previous connection failed (state & NGX_PEER_FAILED) or either the
* connection failed, or it succeeded but the application returned an
* error (state & NGX_PEER_NEXT)
*/
if(state & NGX_PEER_FAILED) {
ngx_log_error( NGX_LOG_INFO
, pc->log
, 0
, "max_connections %V failed "
, backend->name
);
peer_data->backend->accessed = ngx_time();
peer_data->backend->fails++;
peer_data->backend = NULL;
/* this forces a backend even if it's maxconn is full */
peer_data->really_needs_backend = 1;
if(upstreams_are_all_dead(maxconn_cf)) {
pc->tries = 0; /* kill this request */
ngx_log_error( NGX_LOG_INFO
, pc->log
, 0
, "max_connections all backends are dead. killing request."
);
}
return;
}
/*
if (state & NGX_PEER_NEXT) {
assert(0 && "TODO just get the next host");
}
*/
peer_data->backend = NULL;
dispatch:
dispatch(maxconn_cf);
}
static ngx_int_t
peer_get (ngx_peer_connection_t *pc, void *data)
{
max_connections_peer_data_t *peer_data = data;
max_connections_srv_conf_t *maxconn_cf = peer_data->maxconn_cf;
assert(peer_data->queue.next == NULL && "should not be in the queue");
assert(peer_data->queue.prev == NULL && "should not be in the queue");
max_connections_backend_t *backend =
find_upstream(maxconn_cf, peer_data->really_needs_backend);
assert(backend != NULL && "should always be an availible backend in peer_get()");
assert(peer_data->backend == NULL);
peer_data->backend = backend;
backend->connections++; /* keep track of how many slots are occupied */
pc->sockaddr = backend->sockaddr;
pc->socklen = backend->socklen;
pc->name = backend->name;
ngx_log_error( NGX_LOG_INFO
, pc->log
, 0
, "max_connections sending client to %V (now %ui connections)"
, pc->name
, backend->connections
);
return NGX_OK;
}
static ngx_int_t
peer_init (ngx_http_request_t *r, ngx_http_upstream_srv_conf_t *uscf)
{
max_connections_srv_conf_t *maxconn_cf =
ngx_http_conf_upstream_srv_conf(uscf, max_connections_module);
max_connections_peer_data_t *peer_data =
ngx_palloc(r->pool, sizeof(max_connections_peer_data_t));
if(peer_data == NULL) return NGX_ERROR;
peer_data->backend = NULL;
peer_data->maxconn_cf = maxconn_cf;
peer_data->r = r;
peer_data->accessed = ngx_current_msec;
peer_data->really_needs_backend = 0;
r->upstream->peer.free = peer_free;
r->upstream->peer.get = peer_get;
r->upstream->peer.tries = maxconn_cf->backends->nelts;
r->upstream->peer.data = peer_data;
if(queue_push(maxconn_cf, peer_data) == NGX_ERROR)
return NGX_ERROR;
dispatch(peer_data->maxconn_cf);
return NGX_BUSY;
}
static ngx_int_t
max_connections_init(ngx_conf_t *cf, ngx_http_upstream_srv_conf_t *uscf)
{
ngx_log_error( NGX_LOG_INFO
, cf->log
, 0
, "max_connections_init"
);
max_connections_srv_conf_t *maxconn_cf =
ngx_http_conf_upstream_srv_conf(uscf, max_connections_module);
/* allocate all the max_connections_backend_t. put them in
* maxconn_cf->backends */
if(uscf->servers == NULL) return NGX_ERROR;
ngx_http_upstream_server_t *server = uscf->servers->elts;
ngx_uint_t i, j;
ngx_uint_t number_backends = 0;
for (i = 0; i < uscf->servers->nelts; i++)
number_backends += server[i].naddrs;
ngx_array_t *backends =
ngx_array_create(cf->pool, number_backends, sizeof(max_connections_backend_t));
if (backends == NULL) return NGX_ERROR;
/* one hostname can have multiple IP addresses in DNS */
ngx_uint_t n;
for (n = 0, i = 0; i < uscf->servers->nelts; i++) {
for (j = 0; j < server[i].naddrs; j++, n++) {
max_connections_backend_t *backend = ngx_array_push(backends);
backend->sockaddr = server[i].addrs[j].sockaddr;
backend->socklen = server[i].addrs[j].socklen;
backend->name = &(server[i].addrs[j].name);
backend->max_fails = server[i].max_fails;
backend->fail_timeout = server[i].fail_timeout;
backend->down = server[i].down;
backend->weight = server[i].down ? 0 : server[i].weight;
backend->connections = 0;
backend->disconnect_event.handler = recover_from_client_closure;
backend->disconnect_event.log = cf->log;
backend->disconnect_event.data = backend;
backend->maxconn_cf = maxconn_cf;
}
}
maxconn_cf->backends = backends;
uscf->peer.init = peer_init;
ngx_queue_init(&maxconn_cf->waiting_requests);
assert(ngx_queue_empty(&maxconn_cf->waiting_requests));
maxconn_cf->queue_check_event.handler = queue_check_event;
maxconn_cf->queue_check_event.log = cf->log;
maxconn_cf->queue_check_event.data = maxconn_cf;
return NGX_OK;
}
/* TODO This function is probably not neccesary. Nginx provides a means of
* easily setting scalar time values with ngx_conf_set_msec_slot() in the
* ngx_command_t structure. I couldn't manage to make it work, not knowing
* what I should be using for the two offset parameters.
*/
static char *
max_connections_queue_timeout_command (ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
{
ngx_http_upstream_srv_conf_t *uscf =
ngx_http_conf_get_module_srv_conf(cf, ngx_http_upstream_module);
max_connections_srv_conf_t *maxconn_cf =
ngx_http_conf_upstream_srv_conf(uscf, max_connections_module);
ngx_str_t *value;
value = cf->args->elts;
ngx_msec_t ms = ngx_parse_time(&value[1], 0);
if (ms == (ngx_msec_t) NGX_ERROR) {
return "invalid value";
}
if (ms == (ngx_msec_t) NGX_PARSE_LARGE_TIME) {
return "value must be less than 597 hours";
}
maxconn_cf->queue_timeout = ms;
return NGX_CONF_OK;
}
/* TODO same as above */
static char *
max_connections_max_queue_length_command (ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
{
ngx_http_upstream_srv_conf_t *uscf =
ngx_http_conf_get_module_srv_conf(cf, ngx_http_upstream_module);
max_connections_srv_conf_t *maxconn_cf =
ngx_http_conf_upstream_srv_conf(uscf, max_connections_module);
ngx_str_t *value = cf->args->elts;
ngx_int_t n = ngx_atoi(value[1].data, value[1].len);
if (n == NGX_ERROR) {
return "invalid number";
}
maxconn_cf->max_queue_length = n;
return NGX_CONF_OK;
}
static char *
max_connections_command (ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
{
ngx_http_upstream_srv_conf_t *uscf =
ngx_http_conf_get_module_srv_conf(cf, ngx_http_upstream_module);
/* 1. set the initialization function */
uscf->peer.init_upstream = max_connections_init;
ngx_str_t *value = cf->args->elts;
ngx_int_t max_connections = ngx_atoi(value[1].data, value[1].len);
if (max_connections == NGX_ERROR || max_connections == 0) {
ngx_conf_log_error( NGX_LOG_EMERG
, cf
, 0
, "invalid value \"%V\" in \"%V\" directive"
, &value[1]
, &cmd->name
);
return NGX_CONF_ERROR;
}
max_connections_srv_conf_t *maxconn_cf =
ngx_http_conf_upstream_srv_conf(uscf, max_connections_module);
/* 2. set the number of max_connections */
maxconn_cf->max_connections = (ngx_uint_t)max_connections;
maxconn_cf->queue_length = 0;
return NGX_CONF_OK;
}
static void *
max_connections_create_conf(ngx_conf_t *cf)
{
max_connections_srv_conf_t *conf =
ngx_pcalloc(cf->pool, sizeof(max_connections_srv_conf_t));
if (conf == NULL) return NGX_CONF_ERROR;
max_connections_rr_index = 0;
conf->max_connections = 1;
conf->max_queue_length = 10000; /* default max queue length 10000 */
conf->queue_timeout = 10000; /* default queue timeout 10 seconds */
return conf;
}