forked from alibaba/nginx-tfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathngx_http_tfs_timers.c
172 lines (129 loc) · 4.29 KB
/
ngx_http_tfs_timers.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
/*
* Copyright (C) 2010-2012 Alibaba Group Holding Limited
*/
#include <ngx_http_tfs_timers.h>
#include <nginx.h>
static void ngx_http_tfs_timeout_handler(ngx_event_t *event);
static ngx_atomic_t *ngx_http_tfs_kp_mutex_ptr;
static ngx_shmtx_t ngx_http_tfs_kp_mutex;
ngx_int_t
ngx_http_tfs_timers_init(ngx_cycle_t *cycle, u_char *lock_file)
{
u_char *shared;
size_t size;
ngx_shm_t shm;
if (ngx_http_tfs_kp_mutex_ptr) {
return NGX_OK;
}
/* cl should be equal or bigger than cache line size */
size = 128; /* ngx_http_tfs_kp_mutex */
shm.size = size;
shm.name.len = sizeof("nginx_tfs_keepalive_zone");
shm.name.data = (u_char *) "nginx_tfs_keepalive_zone";
shm.log = cycle->log;
if (ngx_shm_alloc(&shm) != NGX_OK) {
return NGX_ERROR;
}
shared = shm.addr;
ngx_http_tfs_kp_mutex_ptr = (ngx_atomic_t *) shared;
ngx_http_tfs_kp_mutex.spin = (ngx_uint_t) -1;
#if defined(nginx_version) && (nginx_version > 1001008)
if (ngx_shmtx_create(&ngx_http_tfs_kp_mutex, (ngx_shmtx_sh_t *) shared, lock_file)
!= NGX_OK)
{
return NGX_ERROR;
}
#else
if (ngx_shmtx_create(&ngx_http_tfs_kp_mutex, shared, lock_file)
!= NGX_OK)
{
return NGX_ERROR;
}
#endif
return NGX_OK;
}
ngx_int_t
ngx_http_tfs_add_rcs_timers(ngx_cycle_t *cycle, ngx_http_tfs_main_conf_t *tmcf)
{
ngx_event_t *ev;
ngx_log_debug0(NGX_LOG_DEBUG_HTTP, cycle->log, 0, "http check tfs rc servers");
ev = ngx_pcalloc(cycle->pool, sizeof(ngx_event_t));
if (ev == NULL) {
return NGX_ERROR;
}
ev->handler = ngx_http_tfs_timeout_handler;
ev->log = cycle->log;
ev->data = tmcf;
ev->timer_set = 0;
ngx_add_timer(ev, tmcf->rcs_interval);
return NGX_OK;
}
ngx_int_t
ngx_http_tfs_timers_finalize_request_handler(ngx_http_tfs_t *t)
{
ngx_event_t *event;
ngx_http_tfs_main_conf_t *tmcf;
event = t->finalize_data;
tmcf = event->data;
ngx_destroy_pool(t->pool);
ngx_shmtx_unlock(&ngx_http_tfs_kp_mutex);
ngx_add_timer(event, tmcf->rcs_interval);
return NGX_OK;
}
static void
ngx_http_tfs_timeout_handler(ngx_event_t *event)
{
ngx_int_t rc;
ngx_pool_t *pool;
ngx_http_tfs_t *t;
ngx_http_request_t *r;
ngx_http_tfs_main_conf_t *tmcf;
if (ngx_shmtx_trylock(&ngx_http_tfs_kp_mutex)) {
tmcf = event->data;
if (ngx_queue_empty(&tmcf->rc_ctx->sh->kp_queue)) {
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, event->log, 0, "empty rc keepalive queue");
ngx_shmtx_unlock(&ngx_http_tfs_kp_mutex);
ngx_add_timer(event, tmcf->rcs_interval);
return;
}
pool = ngx_create_pool(8192, event->log);
if (pool == NULL) {
ngx_shmtx_unlock(&ngx_http_tfs_kp_mutex);
return;
}
/* fake ngx_http_request_t */
r = ngx_pcalloc(pool, sizeof(ngx_http_request_t));
if (r == NULL) {
ngx_shmtx_unlock(&ngx_http_tfs_kp_mutex);
return;
}
r->pool = pool;
r->connection = ngx_pcalloc(pool, sizeof(ngx_connection_t));
if (r->connection == NULL) {
ngx_shmtx_unlock(&ngx_http_tfs_kp_mutex);
return;
}
r->connection->log = event->log;
r->connection->destroyed = 1; /* in order to return from ngx_http_run_posted_requests() */
t = ngx_pcalloc(pool, sizeof(ngx_http_tfs_t));
if (t == NULL) {
ngx_shmtx_unlock(&ngx_http_tfs_kp_mutex);
return;
}
t->pool = pool;
t->data = r;
t->log = event->log;
t->finalize_request = ngx_http_tfs_timers_finalize_request_handler;
t->finalize_data = event;
t->r_ctx.action.code = NGX_HTTP_TFS_ACTION_KEEPALIVE;
t->r_ctx.version = 1;
t->main_conf = tmcf;
rc = ngx_http_tfs_init(t);
if (rc == NGX_ERROR) {
ngx_destroy_pool(pool);
ngx_shmtx_unlock(&ngx_http_tfs_kp_mutex);
}
} else {
ngx_log_debug0(NGX_LOG_DEBUG_EVENT, event->log, 0, "tfs kp mutex lock failed");
}
}