blob: 3f18ad9ce2b871c675261fa85eb5b244372ad761 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreau7c669d72008-06-20 15:04:11 +02004 * Copyright 2000-2008 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <stdlib.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020014
15#include <common/config.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020016#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020017#include <common/memory.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020018
Willy Tarreaubaaee002006-06-26 02:48:02 +020019#include <types/capture.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010020#include <types/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010022#include <proto/backend.h>
Willy Tarreau7341d942007-05-13 19:56:02 +020023#include <proto/buffers.h>
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010024#include <proto/hdr_idx.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020025#include <proto/log.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026#include <proto/session.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010027#include <proto/proto_http.h>
28#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020029#include <proto/queue.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010030#include <proto/stream_interface.h>
31#include <proto/stream_sock.h>
32#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020033
34
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020035struct pool_head *pool2_session;
Willy Tarreauf54f8bd2008-11-23 19:53:55 +010036struct list sessions;
Willy Tarreaubaaee002006-06-26 02:48:02 +020037
38/*
39 * frees the context associated to a session. It must have been removed first.
40 */
41void session_free(struct session *s)
42{
Willy Tarreau4dbc4a22007-03-03 16:23:22 +010043 struct http_txn *txn = &s->txn;
Willy Tarreau632f5a72007-07-11 10:42:35 +020044 struct proxy *fe = s->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +010045 struct bref *bref, *back;
Willy Tarreau0f7562b2007-01-07 15:46:13 +010046
Willy Tarreaubaaee002006-06-26 02:48:02 +020047 if (s->pend_pos)
48 pendconn_free(s->pend_pos);
Willy Tarreau922a8062008-12-04 09:33:58 +010049
Willy Tarreau1e62de62008-11-11 20:20:02 +010050 if (s->srv) { /* there may be requests left pending in queue */
51 if (s->flags & SN_CURR_SESS) {
52 s->flags &= ~SN_CURR_SESS;
53 s->srv->cur_sess--;
54 }
Willy Tarreau922a8062008-12-04 09:33:58 +010055 if (may_dequeue_tasks(s->srv, s->be))
56 process_srv_queue(s->srv);
Willy Tarreau1e62de62008-11-11 20:20:02 +010057 }
Willy Tarreau922a8062008-12-04 09:33:58 +010058
Willy Tarreau7c669d72008-06-20 15:04:11 +020059 if (unlikely(s->srv_conn)) {
60 /* the session still has a reserved slot on a server, but
61 * it should normally be only the same as the one above,
62 * so this should not happen in fact.
63 */
64 sess_change_server(s, NULL);
65 }
66
Willy Tarreau259de1b2009-01-18 21:56:21 +010067#if defined(CONFIG_HAP_LINUX_SPLICE)
68 if (s->req->splice.prod >= 0)
69 close(s->req->splice.prod);
70 if (s->req->splice.cons >= 0)
71 close(s->req->splice.cons);
72
73 if (s->req->splice.prod >= 0 || s->req->splice.cons >= 0)
74 usedpipes--;
75
76 if (s->rep->splice.prod >= 0)
77 close(s->rep->splice.prod);
78 if (s->rep->splice.cons >= 0)
79 close(s->rep->splice.cons);
80
81 if (s->rep->splice.prod >= 0 || s->rep->splice.cons >= 0)
82 usedpipes--;
83#endif
84
Willy Tarreau48d63db2008-08-03 17:41:33 +020085 pool_free2(pool2_buffer, s->req);
86 pool_free2(pool2_buffer, s->rep);
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
Willy Tarreau92fb9832007-10-16 17:34:28 +020088 if (fe) {
Willy Tarreau48d63db2008-08-03 17:41:33 +020089 pool_free2(fe->hdr_idx_pool, txn->hdr_idx.v);
Willy Tarreau41dff822007-01-01 23:32:30 +010090
Willy Tarreau92fb9832007-10-16 17:34:28 +020091 if (txn->rsp.cap != NULL) {
92 struct cap_hdr *h;
Willy Tarreau48d63db2008-08-03 17:41:33 +020093 for (h = fe->rsp_cap; h; h = h->next)
94 pool_free2(h->pool, txn->rsp.cap[h->index]);
Willy Tarreau92fb9832007-10-16 17:34:28 +020095 pool_free2(fe->rsp_cap_pool, txn->rsp.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +020096 }
Willy Tarreau92fb9832007-10-16 17:34:28 +020097 if (txn->req.cap != NULL) {
98 struct cap_hdr *h;
Willy Tarreau48d63db2008-08-03 17:41:33 +020099 for (h = fe->req_cap; h; h = h->next)
100 pool_free2(h->pool, txn->req.cap[h->index]);
Willy Tarreau92fb9832007-10-16 17:34:28 +0200101 pool_free2(fe->req_cap_pool, txn->req.cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200102 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103 }
Willy Tarreau48d63db2008-08-03 17:41:33 +0200104 pool_free2(pool2_requri, txn->uri);
105 pool_free2(pool2_capture, txn->cli_cookie);
106 pool_free2(pool2_capture, txn->srv_cookie);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100107
108 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
109 LIST_DEL(&bref->users);
110 LIST_ADDQ(&LIST_ELEM(s->list.n, struct session *, list)->back_refs, &bref->users);
111 bref->ref = s->list.n;
112 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100113 LIST_DEL(&s->list);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200114 pool_free2(pool2_session, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200115
116 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200117 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreau48d63db2008-08-03 17:41:33 +0200118 pool_flush2(pool2_buffer);
119 pool_flush2(fe->hdr_idx_pool);
120 pool_flush2(pool2_requri);
121 pool_flush2(pool2_capture);
122 pool_flush2(pool2_session);
123 pool_flush2(fe->req_cap_pool);
124 pool_flush2(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200125 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200126}
127
128
129/* perform minimal intializations, report 0 in case of error, 1 if OK. */
130int init_session()
131{
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100132 LIST_INIT(&sessions);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200133 pool2_session = create_pool("session", sizeof(struct session), MEM_F_SHARED);
134 return pool2_session != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135}
136
Willy Tarreau30e71012007-11-26 20:15:35 +0100137void session_process_counters(struct session *s)
138{
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100139 unsigned long long bytes;
140
Willy Tarreau30e71012007-11-26 20:15:35 +0100141 if (s->req) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100142 bytes = s->req->total - s->logs.bytes_in;
Willy Tarreau30e71012007-11-26 20:15:35 +0100143 s->logs.bytes_in = s->req->total;
144 if (bytes) {
145 s->fe->bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100146
Willy Tarreau30e71012007-11-26 20:15:35 +0100147 if (s->be != s->fe)
148 s->be->bytes_in += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100149
Willy Tarreau30e71012007-11-26 20:15:35 +0100150 if (s->srv)
151 s->srv->bytes_in += bytes;
152 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100153 }
154
Willy Tarreau30e71012007-11-26 20:15:35 +0100155 if (s->rep) {
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100156 bytes = s->rep->total - s->logs.bytes_out;
Willy Tarreau30e71012007-11-26 20:15:35 +0100157 s->logs.bytes_out = s->rep->total;
158 if (bytes) {
159 s->fe->bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100160
Willy Tarreau30e71012007-11-26 20:15:35 +0100161 if (s->be != s->fe)
162 s->be->bytes_out += bytes;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100163
Willy Tarreau30e71012007-11-26 20:15:35 +0100164 if (s->srv)
165 s->srv->bytes_out += bytes;
166 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100167 }
168}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200169
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100170/* This function is called with (si->state == SI_ST_CON) meaning that a
171 * connection was attempted and that the file descriptor is already allocated.
172 * We must check for establishment, error and abort. Possible output states
173 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
174 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
175 * otherwise 1.
176 */
177int sess_update_st_con_tcp(struct session *s, struct stream_interface *si)
178{
179 struct buffer *req = si->ob;
180 struct buffer *rep = si->ib;
181
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100182 /* If we got an error, or if nothing happened and the connection timed
183 * out, we must give up. The CER state handler will take care of retry
184 * attempts and error reports.
185 */
186 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
187 si->state = SI_ST_CER;
188 fd_delete(si->fd);
189
190 if (si->err_type)
191 return 0;
192
193 si->err_loc = s->srv;
194 if (si->flags & SI_FL_ERR)
195 si->err_type = SI_ET_CONN_ERR;
196 else
197 si->err_type = SI_ET_CONN_TO;
198 return 0;
199 }
200
201 /* OK, maybe we want to abort */
202 if (unlikely((req->flags & BF_SHUTW_NOW) ||
203 (rep->flags & BF_SHUTW) ||
204 ((req->flags & BF_SHUTR) && /* FIXME: this should not prevent a connection from establishing */
Willy Tarreauefc612c2009-01-09 12:18:24 +0100205 (((req->flags & (BF_EMPTY|BF_WRITE_ACTIVITY)) == BF_EMPTY) ||
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100206 s->be->options & PR_O_ABRT_CLOSE)))) {
207 /* give up */
208 si->shutw(si);
209 si->err_type |= SI_ET_CONN_ABRT;
210 si->err_loc = s->srv;
211 return 1;
212 }
213
214 /* we need to wait a bit more if there was no activity either */
215 if (!(req->flags & BF_WRITE_ACTIVITY))
216 return 1;
217
218 /* OK, this means that a connection succeeded. The caller will be
219 * responsible for handling the transition from CON to EST.
220 */
221 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
222 si->state = SI_ST_EST;
223 si->err_type = SI_ET_NONE;
224 si->err_loc = NULL;
225 return 1;
226}
227
228/* This function is called with (si->state == SI_ST_CER) meaning that a
229 * previous connection attempt has failed and that the file descriptor
230 * has already been released. Possible causes include asynchronous error
231 * notification and time out. Possible output states are SI_ST_CLO when
232 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
233 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
234 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
235 * marked as in error state. It returns 0.
236 */
237int sess_update_st_cer(struct session *s, struct stream_interface *si)
238{
239 /* we probably have to release last session from the server */
240 if (s->srv) {
241 if (s->flags & SN_CURR_SESS) {
242 s->flags &= ~SN_CURR_SESS;
243 s->srv->cur_sess--;
244 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100245 }
246
247 /* ensure that we have enough retries left */
248 s->conn_retries--;
249 if (s->conn_retries < 0) {
250 if (!si->err_type) {
251 si->err_type = SI_ET_CONN_ERR;
252 si->err_loc = s->srv;
253 }
254
255 if (s->srv)
256 s->srv->failed_conns++;
257 s->be->failed_conns++;
258 if (may_dequeue_tasks(s->srv, s->be))
259 process_srv_queue(s->srv);
260
261 /* shutw is enough so stop a connecting socket */
262 si->shutw(si);
263 si->ob->flags |= BF_WRITE_ERROR;
264 si->ib->flags |= BF_READ_ERROR;
265
266 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100267 if (s->srv_error)
268 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100269 return 0;
270 }
271
272 /* If the "redispatch" option is set on the backend, we are allowed to
273 * retry on another server for the last retry. In order to achieve this,
274 * we must mark the session unassigned, and eventually clear the DIRECT
275 * bit to ignore any persistence cookie. We won't count a retry nor a
276 * redispatch yet, because this will depend on what server is selected.
277 */
278 if (s->srv && s->conn_retries == 0 && s->be->options & PR_O_REDISP) {
279 if (may_dequeue_tasks(s->srv, s->be))
280 process_srv_queue(s->srv);
281
282 s->flags &= ~(SN_DIRECT | SN_ASSIGNED | SN_ADDR_SET);
283 s->prev_srv = s->srv;
284 si->state = SI_ST_REQ;
285 } else {
286 if (s->srv)
287 s->srv->retries++;
288 s->be->retries++;
289 si->state = SI_ST_ASS;
290 }
291
292 if (si->flags & SI_FL_ERR) {
293 /* The error was an asynchronous connection error, and we will
294 * likely have to retry connecting to the same server, most
295 * likely leading to the same result. To avoid this, we wait
296 * one second before retrying.
297 */
298
299 if (!si->err_type)
300 si->err_type = SI_ET_CONN_ERR;
301
302 si->state = SI_ST_TAR;
303 si->exp = tick_add(now_ms, MS_TO_TICKS(1000));
304 return 0;
305 }
306 return 0;
307}
308
309/*
310 * This function handles the transition between the SI_ST_CON state and the
311 * SI_ST_EST state. It must only be called after switching from SI_ST_CON to
312 * SI_ST_EST.
313 */
314void sess_establish(struct session *s, struct stream_interface *si)
315{
316 struct buffer *req = si->ob;
317 struct buffer *rep = si->ib;
318
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100319 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100320 buffer_set_rlim(rep, BUFSIZE); /* no rewrite needed */
321
322 /* if the user wants to log as soon as possible, without counting
323 * bytes from the server, then this is the right moment. */
324 if (s->fe->to_log && !(s->logs.logwait & LW_BYTES)) {
325 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100326 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100327 }
328#ifdef CONFIG_HAP_TCPSPLICE
329 if ((s->fe->options & s->be->options) & PR_O_TCPSPLICE) {
330 /* TCP splicing supported by both FE and BE */
331 tcp_splice_splicefd(req->prod->fd, si->fd, 0);
332 }
333#endif
334 }
335 else {
336 rep->analysers |= AN_RTR_HTTP_HDR;
337 buffer_set_rlim(rep, BUFSIZE - MAXREWRITE); /* rewrite needed */
338 s->txn.rsp.msg_state = HTTP_MSG_RPBEFORE;
339 /* reset hdr_idx which was already initialized by the request.
340 * right now, the http parser does it.
341 * hdr_idx_init(&s->txn.hdr_idx);
342 */
343 }
344
345 rep->flags |= BF_READ_ATTACHED; /* producer is now attached */
346 req->wex = TICK_ETERNITY;
347}
348
349/* Update stream interface status for input states SI_ST_ASS, SI_ST_QUE, SI_ST_TAR.
350 * Other input states are simply ignored.
351 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON.
352 * Flags must have previously been updated for timeouts and other conditions.
353 */
354void sess_update_stream_int(struct session *s, struct stream_interface *si)
355{
356 DPRINTF(stderr,"[%u] %s: sess=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rql=%d rpl=%d cs=%d ss=%d\n",
357 now_ms, __FUNCTION__,
358 s,
359 s->req, s->rep,
360 s->req->rex, s->rep->wex,
361 s->req->flags, s->rep->flags,
362 s->req->l, s->rep->l, s->rep->cons->state, s->req->cons->state);
363
364 if (si->state == SI_ST_ASS) {
365 /* Server assigned to connection request, we have to try to connect now */
366 int conn_err;
367
368 conn_err = connect_server(s);
369 if (conn_err == SN_ERR_NONE) {
370 /* state = SI_ST_CON now */
Willy Tarreau8f6457c2008-12-01 00:08:28 +0100371 if (s->srv)
372 s->srv->cum_sess++;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100373 return;
374 }
375
376 /* We have received a synchronous error. We might have to
377 * abort, retry immediately or redispatch.
378 */
379 if (conn_err == SN_ERR_INTERNAL) {
380 if (!si->err_type) {
381 si->err_type = SI_ET_CONN_OTHER;
382 si->err_loc = s->srv;
383 }
384
385 if (s->srv)
386 s->srv->cum_sess++;
387 if (s->srv)
388 s->srv->failed_conns++;
389 s->be->failed_conns++;
390
391 /* release other sessions waiting for this server */
392 if (may_dequeue_tasks(s->srv, s->be))
393 process_srv_queue(s->srv);
394
395 /* Failed and not retryable. */
396 si->shutr(si);
397 si->shutw(si);
398 si->ob->flags |= BF_WRITE_ERROR;
399
400 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
401
402 /* no session was ever accounted for this server */
403 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100404 if (s->srv_error)
405 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100406 return;
407 }
408
409 /* We are facing a retryable error, but we don't want to run a
410 * turn-around now, as the problem is likely a source port
411 * allocation problem, so we want to retry now.
412 */
413 si->state = SI_ST_CER;
414 si->flags &= ~SI_FL_ERR;
415 sess_update_st_cer(s, si);
416 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
417 return;
418 }
419 else if (si->state == SI_ST_QUE) {
420 /* connection request was queued, check for any update */
421 if (!s->pend_pos) {
422 /* The connection is not in the queue anymore. Either
423 * we have a server connection slot available and we
424 * go directly to the assigned state, or we need to
425 * load-balance first and go to the INI state.
426 */
427 si->exp = TICK_ETERNITY;
428 if (unlikely(!(s->flags & SN_ASSIGNED)))
429 si->state = SI_ST_REQ;
430 else {
431 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
432 si->state = SI_ST_ASS;
433 }
434 return;
435 }
436
437 /* Connection request still in queue... */
438 if (si->flags & SI_FL_EXP) {
439 /* ... and timeout expired */
440 si->exp = TICK_ETERNITY;
441 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
442 if (s->srv)
443 s->srv->failed_conns++;
444 s->be->failed_conns++;
445 si->shutr(si);
446 si->shutw(si);
447 si->ob->flags |= BF_WRITE_TIMEOUT;
448 if (!si->err_type)
449 si->err_type = SI_ET_QUEUE_TO;
450 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100451 if (s->srv_error)
452 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100453 return;
454 }
455
456 /* Connection remains in queue, check if we have to abort it */
457 if ((si->ob->flags & (BF_READ_ERROR|BF_SHUTW_NOW)) || /* abort requested */
458 ((si->ob->flags & BF_SHUTR) && /* empty and client stopped */
459 (si->ob->flags & BF_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
460 /* give up */
461 si->exp = TICK_ETERNITY;
462 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
463 si->shutr(si);
464 si->shutw(si);
465 si->err_type |= SI_ET_QUEUE_ABRT;
466 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100467 if (s->srv_error)
468 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100469 return;
470 }
471
472 /* Nothing changed */
473 return;
474 }
475 else if (si->state == SI_ST_TAR) {
476 /* Connection request might be aborted */
477 if ((si->ob->flags & (BF_READ_ERROR|BF_SHUTW_NOW)) || /* abort requested */
478 ((si->ob->flags & BF_SHUTR) && /* empty and client stopped */
479 (si->ob->flags & BF_EMPTY || s->be->options & PR_O_ABRT_CLOSE))) {
480 /* give up */
481 si->exp = TICK_ETERNITY;
482 si->shutr(si);
483 si->shutw(si);
484 si->err_type |= SI_ET_CONN_ABRT;
485 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100486 if (s->srv_error)
487 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100488 return;
489 }
490
491 if (!(si->flags & SI_FL_EXP))
492 return; /* still in turn-around */
493
494 si->exp = TICK_ETERNITY;
495
496 /* we keep trying on the same server as long as the session is
497 * marked "assigned".
498 * FIXME: Should we force a redispatch attempt when the server is down ?
499 */
500 if (s->flags & SN_ASSIGNED)
501 si->state = SI_ST_ASS;
502 else
503 si->state = SI_ST_REQ;
504 return;
505 }
506}
507
508/* This function initiates a server connection request on a stream interface
509 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS,
510 * indicating that a server has been assigned. It may also return SI_ST_QUE,
511 * or SI_ST_CLO upon error.
512 */
513static void sess_prepare_conn_req(struct session *s, struct stream_interface *si) {
514 DPRINTF(stderr,"[%u] %s: sess=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rql=%d rpl=%d cs=%d ss=%d\n",
515 now_ms, __FUNCTION__,
516 s,
517 s->req, s->rep,
518 s->req->rex, s->rep->wex,
519 s->req->flags, s->rep->flags,
520 s->req->l, s->rep->l, s->rep->cons->state, s->req->cons->state);
521
522 if (si->state != SI_ST_REQ)
523 return;
524
525 /* Try to assign a server */
526 if (srv_redispatch_connect(s) != 0) {
527 /* We did not get a server. Either we queued the
528 * connection request, or we encountered an error.
529 */
530 if (si->state == SI_ST_QUE)
531 return;
532
533 /* we did not get any server, let's check the cause */
534 si->shutr(si);
535 si->shutw(si);
536 si->ob->flags |= BF_WRITE_ERROR;
537 if (!si->err_type)
538 si->err_type = SI_ET_CONN_OTHER;
539 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100540 if (s->srv_error)
541 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100542 return;
543 }
544
545 /* The server is assigned */
546 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
547 si->state = SI_ST_ASS;
548}
549
550/* Processes the client, server, request and response jobs of a session task,
551 * then puts it back to the wait queue in a clean state, or cleans up its
552 * resources if it must be deleted. Returns in <next> the date the task wants
553 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
554 * nothing too many times, the request and response buffers flags are monitored
555 * and each function is called only if at least another function has changed at
556 * least one flag it is interested in.
557 */
558void process_session(struct task *t, int *next)
559{
560 struct session *s = t->context;
561 int resync;
562 unsigned int rqf_last, rpf_last;
563
564 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
565 // s->si[0].state, s->si[1].state, s->si[1].err_type, s->req->flags, s->rep->flags);
566
567 /* 1a: Check for low level timeouts if needed. We just set a flag on
568 * stream interfaces when their timeouts have expired.
569 */
570 if (unlikely(t->state & TASK_WOKEN_TIMER)) {
571 stream_int_check_timeouts(&s->si[0]);
572 stream_int_check_timeouts(&s->si[1]);
573 buffer_check_timeouts(s->req);
574 buffer_check_timeouts(s->rep);
575 }
576
Willy Tarreau86491c32008-12-14 09:04:47 +0100577 s->req->flags &= ~BF_READ_NOEXP;
578
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100579 /* copy req/rep flags so that we can detect shutdowns */
580 rqf_last = s->req->flags;
581 rpf_last = s->rep->flags;
582
583 /* 1b: check for low-level errors reported at the stream interface.
584 * First we check if it's a retryable error (in which case we don't
585 * want to tell the buffer). Otherwise we report the error one level
586 * upper by setting flags into the buffers. Note that the side towards
587 * the client cannot have connect (hence retryable) errors. Also, the
588 * connection setup code must be able to deal with any type of abort.
589 */
590 if (unlikely(s->si[0].flags & SI_FL_ERR)) {
591 if (s->si[0].state == SI_ST_EST || s->si[0].state == SI_ST_DIS) {
592 s->si[0].shutr(&s->si[0]);
593 s->si[0].shutw(&s->si[0]);
594 stream_int_report_error(&s->si[0]);
Willy Tarreau05cb29b2008-12-14 11:44:04 +0100595 if (!(s->req->analysers) && !(s->rep->analysers)) {
596 if (!(s->flags & SN_ERR_MASK))
597 s->flags |= SN_ERR_CLICL;
598 if (!(s->flags & SN_FINST_MASK))
599 s->flags |= SN_FINST_D;
600 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100601 }
602 }
603
604 if (unlikely(s->si[1].flags & SI_FL_ERR)) {
605 if (s->si[1].state == SI_ST_EST || s->si[1].state == SI_ST_DIS) {
606 s->si[1].shutr(&s->si[1]);
607 s->si[1].shutw(&s->si[1]);
608 stream_int_report_error(&s->si[1]);
609 s->be->failed_resp++;
610 if (s->srv)
611 s->srv->failed_resp++;
Willy Tarreau05cb29b2008-12-14 11:44:04 +0100612 if (!(s->req->analysers) && !(s->rep->analysers)) {
613 if (!(s->flags & SN_ERR_MASK))
614 s->flags |= SN_ERR_SRVCL;
615 if (!(s->flags & SN_FINST_MASK))
616 s->flags |= SN_FINST_D;
617 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100618 }
619 /* note: maybe we should process connection errors here ? */
620 }
621
622 if (s->si[1].state == SI_ST_CON) {
623 /* we were trying to establish a connection on the server side,
624 * maybe it succeeded, maybe it failed, maybe we timed out, ...
625 */
626 if (unlikely(!sess_update_st_con_tcp(s, &s->si[1])))
627 sess_update_st_cer(s, &s->si[1]);
628 else if (s->si[1].state == SI_ST_EST)
629 sess_establish(s, &s->si[1]);
630
631 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
632 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
633 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
634 */
635 }
636
637 /* check buffer timeouts, and close the corresponding stream interfaces
638 * for future reads or writes. Note: this will also concern upper layers
639 * but we do not touch any other flag. We must be careful and correctly
640 * detect state changes when calling them.
641 */
642 if (unlikely(s->req->flags & (BF_READ_TIMEOUT|BF_WRITE_TIMEOUT))) {
643 if (s->req->flags & BF_READ_TIMEOUT)
644 s->req->prod->shutr(s->req->prod);
645 if (s->req->flags & BF_WRITE_TIMEOUT)
646 s->req->cons->shutw(s->req->cons);
647 DPRINTF(stderr,
648 "[%u] %s:%d: task=%p s=%p, sfl=0x%08x, rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rql=%d rpl=%d cs=%d ss=%d, cet=0x%x set=0x%x retr=%d\n",
649 now_ms, __FUNCTION__, __LINE__,
650 t,
651 s, s->flags,
652 s->req, s->rep,
653 s->req->rex, s->rep->wex,
654 s->req->flags, s->rep->flags,
655 s->req->l, s->rep->l, s->rep->cons->state, s->req->cons->state,
656 s->rep->cons->err_type, s->req->cons->err_type,
657 s->conn_retries);
658 }
659
660 if (unlikely(s->rep->flags & (BF_READ_TIMEOUT|BF_WRITE_TIMEOUT))) {
661 if (s->rep->flags & BF_READ_TIMEOUT)
662 s->rep->prod->shutr(s->rep->prod);
663 if (s->rep->flags & BF_WRITE_TIMEOUT)
664 s->rep->cons->shutw(s->rep->cons);
665 DPRINTF(stderr,
666 "[%u] %s:%d: task=%p s=%p, sfl=0x%08x, rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rql=%d rpl=%d cs=%d ss=%d, cet=0x%x set=0x%x retr=%d\n",
667 now_ms, __FUNCTION__, __LINE__,
668 t,
669 s, s->flags,
670 s->req, s->rep,
671 s->req->rex, s->rep->wex,
672 s->req->flags, s->rep->flags,
673 s->req->l, s->rep->l, s->rep->cons->state, s->req->cons->state,
674 s->rep->cons->err_type, s->req->cons->err_type,
675 s->conn_retries);
676 }
677
678 /* Check for connection closure */
679
680resync_stream_interface:
681 DPRINTF(stderr,
682 "[%u] %s:%d: task=%p s=%p, sfl=0x%08x, rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rql=%d rpl=%d cs=%d ss=%d, cet=0x%x set=0x%x retr=%d\n",
683 now_ms, __FUNCTION__, __LINE__,
684 t,
685 s, s->flags,
686 s->req, s->rep,
687 s->req->rex, s->rep->wex,
688 s->req->flags, s->rep->flags,
689 s->req->l, s->rep->l, s->rep->cons->state, s->req->cons->state,
690 s->rep->cons->err_type, s->req->cons->err_type,
691 s->conn_retries);
692
693 /* nothing special to be done on client side */
694 if (unlikely(s->req->prod->state == SI_ST_DIS))
695 s->req->prod->state = SI_ST_CLO;
696
697 /* When a server-side connection is released, we have to count it and
698 * check for pending connections on this server.
699 */
700 if (unlikely(s->req->cons->state == SI_ST_DIS)) {
701 s->req->cons->state = SI_ST_CLO;
702 if (s->srv) {
703 if (s->flags & SN_CURR_SESS) {
704 s->flags &= ~SN_CURR_SESS;
705 s->srv->cur_sess--;
706 }
707 sess_change_server(s, NULL);
708 if (may_dequeue_tasks(s->srv, s->be))
709 process_srv_queue(s->srv);
710 }
711 }
712
713 /*
714 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
715 * at this point.
716 */
717
718 /**** Process layer 7 below ****/
719
720 resync = 0;
721
722 /* Analyse request */
723 if ((s->req->flags & BF_MASK_ANALYSER) ||
724 (s->req->flags ^ rqf_last) & BF_MASK_STATIC) {
725 unsigned int flags = s->req->flags;
726
727 if (s->req->prod->state >= SI_ST_EST) {
728 /* it's up to the analysers to reset write_ena */
729 buffer_write_ena(s->req);
Willy Tarreauedcf6682008-11-30 23:15:34 +0100730
731 /* We will call all analysers for which a bit is set in
732 * s->req->analysers, following the bit order from LSB
733 * to MSB. The analysers must remove themselves from
734 * the list when not needed. This while() loop is in
735 * fact a cleaner if().
736 */
737 while (s->req->analysers) {
738 if (s->req->analysers & AN_REQ_INSPECT)
739 if (!tcp_inspect_request(s, s->req))
740 break;
741
Willy Tarreau59234e92008-11-30 23:51:27 +0100742 if (s->req->analysers & AN_REQ_HTTP_HDR)
743 if (!http_process_request(s, s->req))
Willy Tarreauedcf6682008-11-30 23:15:34 +0100744 break;
745
Willy Tarreau60b85b02008-11-30 23:28:40 +0100746 if (s->req->analysers & AN_REQ_HTTP_TARPIT)
747 if (!http_process_tarpit(s, s->req))
748 break;
749
Willy Tarreaud34af782008-11-30 23:36:37 +0100750 if (s->req->analysers & AN_REQ_HTTP_BODY)
751 if (!http_process_request_body(s, s->req))
752 break;
753
Willy Tarreauedcf6682008-11-30 23:15:34 +0100754 /* Just make sure that nobody set a wrong flag causing an endless loop */
755 s->req->analysers &= AN_REQ_INSPECT | AN_REQ_HTTP_HDR | AN_REQ_HTTP_TARPIT | AN_REQ_HTTP_BODY;
756
757 /* we don't want to loop anyway */
758 break;
759 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100760 }
761 s->req->flags &= BF_CLEAR_READ & BF_CLEAR_WRITE & BF_CLEAR_TIMEOUT;
762 flags &= BF_CLEAR_READ & BF_CLEAR_WRITE & BF_CLEAR_TIMEOUT;
763 if (s->req->flags != flags)
764 resync = 1;
765 }
766
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100767 /* if noone is interested in analysing data, let's forward everything
768 * and only wake up every 1-2 MB. We still wake up when send_max is
769 * reached though.
770 */
771 if (!s->req->send_max && s->req->prod->state >= SI_ST_EST &&
772 !s->req->analysers && !(s->req->flags & BF_HIJACK)) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100773 /* check if it is wise to enable kernel splicing on the request buffer */
774 if (!(s->req->flags & BF_KERN_SPLICING) &&
775 (usedpipes < global.maxpipes) &&
776 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
777 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
778 (s->req->flags & BF_STREAMER_FAST))))
779 s->req->flags |= BF_KERN_SPLICING;
780
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100781 if (s->req->to_forward < FORWARD_DEFAULT_SIZE)
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100782 buffer_forward(s->req, FORWARD_DEFAULT_SIZE);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100783 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100784
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100785 /* reflect what the L7 analysers have seen last */
786 rqf_last = s->req->flags;
787
788 /*
789 * Now forward all shutdown requests between both sides of the buffer
790 */
791
792 /* first, let's check if the request buffer needs to shutdown(write) */
793 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_EMPTY|BF_HIJACK|BF_WRITE_ENA|BF_SHUTR)) ==
794 (BF_EMPTY|BF_WRITE_ENA|BF_SHUTR)))
795 buffer_shutw_now(s->req);
796 else if ((s->req->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_EMPTY|BF_WRITE_ENA)) == (BF_EMPTY|BF_WRITE_ENA) &&
797 (s->req->cons->state == SI_ST_EST) &&
798 s->be->options & PR_O_FORCE_CLO &&
799 s->rep->flags & BF_READ_ACTIVITY) {
800 /* We want to force the connection to the server to close,
801 * and the server has begun to respond. That's the right
802 * time.
803 */
804 buffer_shutw_now(s->req);
805 }
806
807 /* shutdown(write) pending */
808 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTW_NOW)) == BF_SHUTW_NOW))
809 s->req->cons->shutw(s->req->cons);
810
811 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +0100812 if (unlikely((s->req->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW &&
813 !s->req->analysers))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100814 buffer_shutr_now(s->req);
815
816 /* shutdown(read) pending */
817 if (unlikely((s->req->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW))
818 s->req->prod->shutr(s->req->prod);
819
820 /* it's possible that an upper layer has requested a connection setup */
821 if (s->req->cons->state == SI_ST_INI &&
822 (s->req->flags & (BF_WRITE_ENA|BF_SHUTW|BF_SHUTW_NOW)) == BF_WRITE_ENA)
823 s->req->cons->state = SI_ST_REQ;
824
825 /* we may have a pending connection request, or a connection waiting
826 * for completion.
827 */
828 if (s->si[1].state >= SI_ST_REQ && s->si[1].state < SI_ST_CON) {
829 do {
830 /* nb: step 1 might switch from QUE to ASS, but we first want
831 * to give a chance to step 2 to perform a redirect if needed.
832 */
833 if (s->si[1].state != SI_ST_REQ)
834 sess_update_stream_int(s, &s->si[1]);
835 if (s->si[1].state == SI_ST_REQ)
836 sess_prepare_conn_req(s, &s->si[1]);
837
838 if (s->si[1].state == SI_ST_ASS && s->srv &&
839 s->srv->rdr_len && (s->flags & SN_REDIRECTABLE))
840 perform_http_redirect(s, &s->si[1]);
841 } while (s->si[1].state == SI_ST_ASS);
842 }
843
844 /*
845 * Here we want to check if we need to resync or not.
846 */
847 if ((s->req->flags ^ rqf_last) & BF_MASK_STATIC)
848 resync = 1;
849
850 s->req->flags &= BF_CLEAR_READ & BF_CLEAR_WRITE & BF_CLEAR_TIMEOUT;
851
852 /* according to benchmarks, it makes sense to resync now */
853 if (resync)
854 goto resync_stream_interface;
855
856
857 /* Analyse response */
858
859 if (unlikely(s->rep->flags & BF_HIJACK)) {
860 /* In inject mode, we wake up everytime something has
861 * happened on the write side of the buffer.
862 */
863 unsigned int flags = s->rep->flags;
864
865 if ((s->rep->flags & (BF_WRITE_PARTIAL|BF_WRITE_ERROR|BF_SHUTW)) &&
866 !(s->rep->flags & BF_FULL)) {
Willy Tarreau01bf8672008-12-07 18:03:29 +0100867 s->rep->hijacker(s, s->rep);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100868 }
869 s->rep->flags &= BF_CLEAR_READ & BF_CLEAR_WRITE & BF_CLEAR_TIMEOUT;
870 flags &= BF_CLEAR_READ & BF_CLEAR_WRITE & BF_CLEAR_TIMEOUT;
871 if (s->rep->flags != flags)
872 resync = 1;
873 }
874 else if ((s->rep->flags & BF_MASK_ANALYSER) ||
875 (s->rep->flags ^ rpf_last) & BF_MASK_STATIC) {
876 unsigned int flags = s->rep->flags;
877
878 if (s->rep->prod->state >= SI_ST_EST) {
879 /* it's up to the analysers to reset write_ena */
880 buffer_write_ena(s->rep);
881 if (s->rep->analysers)
882 process_response(s);
883 }
884 s->rep->flags &= BF_CLEAR_READ & BF_CLEAR_WRITE & BF_CLEAR_TIMEOUT;
885 flags &= BF_CLEAR_READ & BF_CLEAR_WRITE & BF_CLEAR_TIMEOUT;
886 if (s->rep->flags != flags)
887 resync = 1;
888 }
889
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100890 /* if noone is interested in analysing data, let's forward everything
891 * and only wake up every 1-2 MB. We still wake up when send_max is
892 * reached though.
893 */
894 if (!s->rep->send_max && s->rep->prod->state >= SI_ST_EST &&
895 !s->rep->analysers && !(s->rep->flags & BF_HIJACK)) {
Willy Tarreau5bd8c372009-01-19 00:32:22 +0100896 /* check if it is wise to enable kernel splicing on the response buffer */
897 if (!(s->rep->flags & BF_KERN_SPLICING) &&
898 (usedpipes < global.maxpipes) &&
899 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
900 (((s->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
901 (s->rep->flags & BF_STREAMER_FAST))))
902 s->rep->flags |= BF_KERN_SPLICING;
903
Willy Tarreau0abebcc2009-01-08 00:09:41 +0100904 if (s->rep->to_forward < FORWARD_DEFAULT_SIZE)
905 buffer_forward(s->rep, FORWARD_DEFAULT_SIZE);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100906 }
Willy Tarreauf890dc92008-12-13 21:12:26 +0100907
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100908 /* reflect what the L7 analysers have seen last */
909 rpf_last = s->rep->flags;
910
911 /*
912 * Now forward all shutdown requests between both sides of the buffer
913 */
914
915 /*
916 * FIXME: this is probably where we should produce error responses.
917 */
918
Willy Tarreau6b66f3e2008-12-14 17:31:54 +0100919 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100920 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTW_NOW|BF_EMPTY|BF_HIJACK|BF_WRITE_ENA|BF_SHUTR)) ==
921 (BF_EMPTY|BF_WRITE_ENA|BF_SHUTR)))
922 buffer_shutw_now(s->rep);
923
924 /* shutdown(write) pending */
925 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTW_NOW)) == BF_SHUTW_NOW))
926 s->rep->cons->shutw(s->rep->cons);
927
928 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau3dbc6942008-12-07 13:05:04 +0100929 if (unlikely((s->rep->flags & (BF_SHUTW|BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTW) &&
930 !s->rep->analysers)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100931 buffer_shutr_now(s->rep);
932
933 /* shutdown(read) pending */
934 if (unlikely((s->rep->flags & (BF_SHUTR|BF_SHUTR_NOW)) == BF_SHUTR_NOW))
935 s->rep->prod->shutr(s->rep->prod);
936
937 /*
938 * Here we want to check if we need to resync or not.
939 */
940 if ((s->rep->flags ^ rpf_last) & BF_MASK_STATIC)
941 resync = 1;
942
943 s->rep->flags &= BF_CLEAR_READ & BF_CLEAR_WRITE & BF_CLEAR_TIMEOUT;
944
945 if (resync)
946 goto resync_stream_interface;
947
948
949 /* This is needed only when debugging is enabled, to indicate
950 * client-side or server-side close. Please note that in the unlikely
951 * event where both sides would close at once, the sequence is reported
952 * on the server side first.
953 */
954 if (unlikely((global.mode & MODE_DEBUG) &&
955 (!(global.mode & MODE_QUIET) ||
956 (global.mode & MODE_VERBOSE)))) {
957 int len;
958
959 if (s->si[1].state == SI_ST_CLO &&
960 s->si[1].prev_state == SI_ST_EST) {
961 len = sprintf(trash, "%08x:%s.srvcls[%04x:%04x]\n",
962 s->uniq_id, s->be->id,
963 (unsigned short)s->si[0].fd,
964 (unsigned short)s->si[1].fd);
965 write(1, trash, len);
966 }
967
968 if (s->si[0].state == SI_ST_CLO &&
969 s->si[0].prev_state == SI_ST_EST) {
970 len = sprintf(trash, "%08x:%s.clicls[%04x:%04x]\n",
971 s->uniq_id, s->be->id,
972 (unsigned short)s->si[0].fd,
973 (unsigned short)s->si[1].fd);
974 write(1, trash, len);
975 }
976 }
977
978 if (likely((s->rep->cons->state != SI_ST_CLO) ||
979 (s->req->cons->state > SI_ST_INI && s->req->cons->state < SI_ST_CLO))) {
980
981 if ((s->fe->options & PR_O_CONTSTATS) && (s->flags & SN_BE_ASSIGNED))
982 session_process_counters(s);
983
984 if (s->rep->cons->state == SI_ST_EST)
Willy Tarreaub0253252008-11-30 21:37:12 +0100985 stream_sock_data_finish(s->rep->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100986
987 if (s->req->cons->state == SI_ST_EST)
Willy Tarreaub0253252008-11-30 21:37:12 +0100988 stream_sock_data_finish(s->req->cons);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100989
990 s->req->flags &= BF_CLEAR_READ & BF_CLEAR_WRITE & BF_CLEAR_TIMEOUT;
991 s->rep->flags &= BF_CLEAR_READ & BF_CLEAR_WRITE & BF_CLEAR_TIMEOUT;
992 s->si[0].prev_state = s->si[0].state;
993 s->si[1].prev_state = s->si[1].state;
Willy Tarreaub0ef7352008-12-14 13:26:20 +0100994 s->si[0].flags &= ~(SI_FL_ERR|SI_FL_EXP);
995 s->si[1].flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100996
997 /* Trick: if a request is being waiting for the server to respond,
998 * and if we know the server can timeout, we don't want the timeout
999 * to expire on the client side first, but we're still interested
1000 * in passing data from the client to the server (eg: POST). Thus,
1001 * we can cancel the client's request timeout if the server's
1002 * request timeout is set and the server has not yet sent a response.
1003 */
1004
1005 if ((s->rep->flags & (BF_WRITE_ENA|BF_SHUTR)) == 0 &&
Willy Tarreau86491c32008-12-14 09:04:47 +01001006 (tick_isset(s->req->wex) || tick_isset(s->rep->rex))) {
1007 s->req->flags |= BF_READ_NOEXP;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001008 s->req->rex = TICK_ETERNITY;
Willy Tarreau86491c32008-12-14 09:04:47 +01001009 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001010
1011 t->expire = tick_first(tick_first(s->req->rex, s->req->wex),
1012 tick_first(s->rep->rex, s->rep->wex));
1013 if (s->req->analysers)
1014 t->expire = tick_first(t->expire, s->req->analyse_exp);
1015
1016 if (s->si[0].exp)
1017 t->expire = tick_first(t->expire, s->si[0].exp);
1018
1019 if (s->si[1].exp)
1020 t->expire = tick_first(t->expire, s->si[1].exp);
1021
1022#ifdef DEBUG_FULL
1023 fprintf(stderr, "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u rep->rex=%u rep->wex=%u, cs=%d, ss=%d\n",
1024 now_ms, t->expire, s->req->rex, s->req->wex, s->req->analyse_exp, s->rep->rex, s->rep->wex, s->si[0].state, s->si[1].state);
1025#endif
1026 /* restore t to its place in the task list */
1027 task_queue(t);
1028
1029#ifdef DEBUG_DEV
1030 /* this may only happen when no timeout is set or in case of an FSM bug */
1031 if (!t->expire)
1032 ABORT_NOW();
1033#endif
1034 *next = t->expire;
1035 return; /* nothing more to do */
1036 }
1037
1038 s->fe->feconn--;
1039 if (s->flags & SN_BE_ASSIGNED)
1040 s->be->beconn--;
1041 actconn--;
1042
1043 if (unlikely((global.mode & MODE_DEBUG) &&
1044 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
1045 int len;
1046 len = sprintf(trash, "%08x:%s.closed[%04x:%04x] (term_trace=0x%08x)\n",
1047 s->uniq_id, s->be->id,
1048 (unsigned short)s->req->prod->fd, (unsigned short)s->req->cons->fd,
1049 s->term_trace);
1050 write(1, trash, len);
1051 }
1052
1053 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
1054 session_process_counters(s);
1055
1056 /* let's do a final log if we need it */
1057 if (s->logs.logwait &&
1058 !(s->flags & SN_MONITOR) &&
1059 (!(s->fe->options & PR_O_NULLNOLOG) || s->req->total)) {
Willy Tarreaua5555ec2008-11-30 19:02:32 +01001060 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001061 }
1062
1063 /* the task MUST not be in the run queue anymore */
1064 task_delete(t);
1065 session_free(s);
1066 task_free(t);
1067 *next = TICK_ETERNITY;
1068}
1069
Willy Tarreau7c669d72008-06-20 15:04:11 +02001070/*
1071 * This function adjusts sess->srv_conn and maintains the previous and new
1072 * server's served session counts. Setting newsrv to NULL is enough to release
1073 * current connection slot. This function also notifies any LB algo which might
1074 * expect to be informed about any change in the number of active sessions on a
1075 * server.
1076 */
1077void sess_change_server(struct session *sess, struct server *newsrv)
1078{
1079 if (sess->srv_conn == newsrv)
1080 return;
1081
1082 if (sess->srv_conn) {
1083 sess->srv_conn->served--;
1084 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
1085 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
1086 sess->srv_conn = NULL;
1087 }
1088
1089 if (newsrv) {
1090 newsrv->served++;
1091 if (newsrv->proxy->lbprm.server_take_conn)
1092 newsrv->proxy->lbprm.server_take_conn(newsrv);
1093 sess->srv_conn = newsrv;
1094 }
1095}
1096
1097
Willy Tarreaubaaee002006-06-26 02:48:02 +02001098/*
1099 * Local variables:
1100 * c-indent-level: 8
1101 * c-basic-offset: 8
1102 * End:
1103 */