blob: 0f2ccf010d255fa15300465fc4970c8fa61db369 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau87b09662015-04-03 00:22:06 +02002 * Stream management functions.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003 *
Willy Tarreaud28c3532012-04-19 19:28:33 +02004 * Copyright 2000-2012 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 Tarreau81f9aa32010-06-01 17:45:26 +020014#include <unistd.h>
15#include <fcntl.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020016
Thierry FOURNIER5a363e72015-09-27 19:29:33 +020017#include <common/cfgparse.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020018#include <common/config.h>
Willy Tarreau9b28e032012-10-12 23:49:43 +020019#include <common/buffer.h>
Willy Tarreau7c669d72008-06-20 15:04:11 +020020#include <common/debug.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020021#include <common/memory.h>
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +020022#include <common/hathreads.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020023
Willy Tarreau8a8d83b2015-04-13 13:24:54 +020024#include <types/applet.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020025#include <types/capture.h>
William Lallemand4c5b4d52016-11-21 08:51:11 +010026#include <types/cli.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020027#include <types/filters.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010028#include <types/global.h>
William Lallemand9ed62032016-11-21 17:49:11 +010029#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020030
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020031#include <proto/acl.h>
Thierry FOURNIER5a363e72015-09-27 19:29:33 +020032#include <proto/action.h>
Willy Tarreau61612d42012-04-19 18:42:05 +020033#include <proto/arg.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010034#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020035#include <proto/channel.h>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +010036#include <proto/checks.h>
William Lallemand4c5b4d52016-11-21 08:51:11 +010037#include <proto/cli.h>
Willy Tarreaud2274c62012-07-06 14:29:45 +020038#include <proto/connection.h>
William Lallemand9ed62032016-11-21 17:49:11 +010039#include <proto/stats.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020040#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020041#include <proto/filters.h>
Willy Tarreau91c43d72010-06-20 11:19:22 +020042#include <proto/freq_ctr.h>
Willy Tarreau3041b9f2010-10-15 23:25:20 +020043#include <proto/frontend.h>
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010044#include <proto/hdr_idx.h>
Thierry FOURNIER65f34c62015-02-16 20:11:43 +010045#include <proto/hlua.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020046#include <proto/listener.h>
Willy Tarreau332f8bf2007-05-13 21:36:56 +020047#include <proto/log.h>
Willy Tarreaucbaaec42012-09-06 11:32:07 +020048#include <proto/raw_sock.h>
Willy Tarreaufeb76402015-04-03 14:10:06 +020049#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020050#include <proto/stream.h>
Willy Tarreau3eba98a2009-01-25 13:56:13 +010051#include <proto/pipe.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010052#include <proto/proto_http.h>
Willy Tarreau1d0dfb12009-07-07 15:10:31 +020053#include <proto/proxy.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020054#include <proto/queue.h>
Willy Tarreau7f062c42009-03-05 18:43:00 +010055#include <proto/server.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020056#include <proto/sample.h>
Emeric Brun1d33b292010-01-04 15:47:17 +010057#include <proto/stick_table.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010058#include <proto/stream_interface.h>
Willy Tarreau55a8d0e2008-11-30 18:47:21 +010059#include <proto/task.h>
Willy Tarreau39713102016-11-25 15:49:32 +010060#include <proto/tcp_rules.h>
Thierry FOURNIER4834bc72015-06-06 19:29:07 +020061#include <proto/vars.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020062
Willy Tarreaubafbe012017-11-24 17:34:44 +010063struct pool_head *pool_head_stream;
Willy Tarreau87b09662015-04-03 00:22:06 +020064struct list streams;
Christopher Faulet9dcf9b62017-11-13 10:34:01 +010065__decl_hathreads(HA_SPINLOCK_T streams_lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +020066
Thierry FOURNIER5a363e72015-09-27 19:29:33 +020067/* List of all use-service keywords. */
68static struct list service_keywords = LIST_HEAD_INIT(service_keywords);
69
Willy Tarreau5790eb02017-08-28 17:18:36 +020070
71/* Create a new stream for connection <conn>. Return < 0 on error. This is only
72 * valid right after the handshake, before the connection's data layer is
73 * initialized, because it relies on the session to be in conn->owner.
74 */
Olivier Houchard9aaf7782017-09-13 18:30:23 +020075int stream_create_from_cs(struct conn_stream *cs)
Willy Tarreau5790eb02017-08-28 17:18:36 +020076{
77 struct stream *strm;
78
Olivier Houchard9aaf7782017-09-13 18:30:23 +020079 strm = stream_new(cs->conn->owner, &cs->obj_type);
Willy Tarreau5790eb02017-08-28 17:18:36 +020080 if (strm == NULL)
81 return -1;
82
83 task_wakeup(strm->task, TASK_WOKEN_INIT);
84 return 0;
85}
86
Willy Tarreau9903f0e2015-04-04 18:50:31 +020087/* This function is called from the session handler which detects the end of
Willy Tarreau73b65ac2015-04-08 18:26:29 +020088 * handshake, in order to complete initialization of a valid stream. It must be
Willy Tarreau87787ac2017-08-28 16:22:54 +020089 * called with a completley initialized session. It returns the pointer to
Willy Tarreau73b65ac2015-04-08 18:26:29 +020090 * the newly created stream, or NULL in case of fatal error. The client-facing
Willy Tarreau87787ac2017-08-28 16:22:54 +020091 * end point is assigned to <origin>, which must be valid. The stream's task
92 * is configured with a nice value inherited from the listener's nice if any.
93 * The task's context is set to the new stream, and its function is set to
94 * process_stream(). Target and analysers are null.
Willy Tarreau2542b532012-08-31 16:01:23 +020095 */
Willy Tarreau87787ac2017-08-28 16:22:54 +020096struct stream *stream_new(struct session *sess, enum obj_type *origin)
Willy Tarreau2542b532012-08-31 16:01:23 +020097{
Willy Tarreau02a0c0e2015-04-04 18:08:21 +020098 struct stream *s;
Willy Tarreau87787ac2017-08-28 16:22:54 +020099 struct task *t;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200100 struct conn_stream *cs = objt_cs(origin);
Willy Tarreau73b65ac2015-04-08 18:26:29 +0200101 struct appctx *appctx = objt_appctx(origin);
Willy Tarreau2542b532012-08-31 16:01:23 +0200102
Willy Tarreaubafbe012017-11-24 17:34:44 +0100103 if (unlikely((s = pool_alloc(pool_head_stream)) == NULL))
Willy Tarreau87787ac2017-08-28 16:22:54 +0200104 goto out_fail_alloc;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200105
106 /* minimum stream initialization required for an embryonic stream is
107 * fairly low. We need very little to execute L4 ACLs, then we need a
108 * task to make the client-side connection live on its own.
109 * - flags
110 * - stick-entry tracking
111 */
112 s->flags = 0;
Willy Tarreaufb9f5842015-04-05 18:19:23 +0200113 s->logs.logwait = sess->fe->to_log;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200114 s->logs.level = 0;
Willy Tarreau99eb0f12015-04-05 12:03:54 +0200115 s->logs.accept_date = sess->accept_date; /* user-visible date for logging */
116 s->logs.tv_accept = sess->tv_accept; /* corrected date for internal use */
Thierry FOURNIER / OZON.IO4cac3592016-07-28 17:19:45 +0200117 /* This function is called just after the handshake, so the handshake duration is
118 * between the accept time and now.
119 */
120 s->logs.t_handshake = tv_ms_elapsed(&sess->tv_accept, &now);
121 s->logs.t_idle = -1;
Willy Tarreau99eb0f12015-04-05 12:03:54 +0200122 tv_zero(&s->logs.tv_request);
123 s->logs.t_queue = -1;
124 s->logs.t_connect = -1;
125 s->logs.t_data = -1;
126 s->logs.t_close = 0;
127 s->logs.bytes_in = s->logs.bytes_out = 0;
Patrick Hemmerffe5e8c2018-05-11 12:52:31 -0400128 s->logs.prx_queue_pos = 0; /* we get the number of pending conns before us */
129 s->logs.srv_queue_pos = 0; /* we will get this number soon */
Willy Tarreau99eb0f12015-04-05 12:03:54 +0200130
131 /* default logging function */
132 s->do_log = strm_log;
133
134 /* default error reporting function, may be changed by analysers */
135 s->srv_error = default_srv_error;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200136
137 /* Initialise the current rule list pointer to NULL. We are sure that
138 * any rulelist match the NULL pointer.
139 */
140 s->current_rule_list = NULL;
Remi Gacogne7fb9de22015-07-22 17:10:58 +0200141 s->current_rule = NULL;
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200142
Willy Tarreaua68f7622015-09-21 17:48:24 +0200143 /* Copy SC counters for the stream. We don't touch refcounts because
144 * any reference we have is inherited from the session. Since the stream
145 * doesn't exist without the session, the session's existence guarantees
146 * we don't lose the entry. During the store operation, the stream won't
147 * touch these ones.
Thierry FOURNIER827752e2015-08-18 11:34:18 +0200148 */
Thierry FOURNIERc8fdb982015-08-16 12:03:39 +0200149 memcpy(s->stkctr, sess->stkctr, sizeof(s->stkctr));
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200150
151 s->sess = sess;
152 s->si[0].flags = SI_FL_NONE;
153 s->si[1].flags = SI_FL_ISBACK;
154
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200155 s->uniq_id = global.req_count++;
156
Willy Tarreau87b09662015-04-03 00:22:06 +0200157 /* OK, we're keeping the stream, so let's properly initialize the stream */
Willy Tarreau2542b532012-08-31 16:01:23 +0200158 LIST_INIT(&s->back_refs);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100159
160 LIST_INIT(&s->buffer_wait.list);
161 s->buffer_wait.target = s;
162 s->buffer_wait.wakeup_cb = (int (*)(void *))stream_res_wakeup;
Willy Tarreauf8a49ea2013-10-14 21:32:07 +0200163
Willy Tarreaue7dff022015-04-03 01:14:29 +0200164 s->flags |= SF_INITIALIZED;
Willy Tarreau2542b532012-08-31 16:01:23 +0200165 s->unique_id = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200166
Emeric Brunc60def82017-09-27 14:59:38 +0200167 if ((t = task_new(tid_bit)) == NULL)
Willy Tarreau87787ac2017-08-28 16:22:54 +0200168 goto out_fail_alloc;
169
Willy Tarreau02a0c0e2015-04-04 18:08:21 +0200170 s->task = t;
Christopher Faulet9d810ca2016-12-08 22:33:52 +0100171 s->pending_events = 0;
Willy Tarreaud1769b82015-04-06 00:25:48 +0200172 t->process = process_stream;
Willy Tarreau2542b532012-08-31 16:01:23 +0200173 t->context = s;
174 t->expire = TICK_ETERNITY;
Willy Tarreau87787ac2017-08-28 16:22:54 +0200175 if (sess->listener)
176 t->nice = sess->listener->nice;
Willy Tarreau2542b532012-08-31 16:01:23 +0200177
Willy Tarreau87b09662015-04-03 00:22:06 +0200178 /* Note: initially, the stream's backend points to the frontend.
Willy Tarreau2542b532012-08-31 16:01:23 +0200179 * This changes later when switching rules are executed or
180 * when the default backend is assigned.
181 */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200182 s->be = sess->fe;
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200183 s->req.buf = BUF_NULL;
184 s->res.buf = BUF_NULL;
Willy Tarreaucb7dd012015-04-03 22:16:32 +0200185 s->req_cap = NULL;
186 s->res_cap = NULL;
Willy Tarreau2542b532012-08-31 16:01:23 +0200187
Willy Tarreauebcd4842015-06-19 11:59:02 +0200188 /* Initialise all the variables contexts even if not used.
189 * This permits to prune these contexts without errors.
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200190 */
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200191 vars_init(&s->vars_txn, SCOPE_TXN);
192 vars_init(&s->vars_reqres, SCOPE_REQ);
193
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200194 /* this part should be common with other protocols */
Olivier Houchard8f0b4c62018-08-02 18:21:38 +0200195 if (si_reset(&s->si[0]) < 0)
196 goto out_fail_alloc;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200197 si_set_state(&s->si[0], SI_ST_EST);
Hongbo Longe39683c2017-03-10 18:41:51 +0100198 s->si[0].hcto = sess->fe->timeout.clientfin;
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200199
Willy Tarreau984fca92017-12-20 16:31:43 +0100200 if (cs && cs->conn->mux && cs->conn->mux->flags & MX_FL_CLEAN_ABRT)
201 s->si[0].flags |= SI_FL_CLEAN_ABRT;
202
Willy Tarreau1f52bb22015-04-04 14:28:46 +0200203 /* attach the incoming connection to the stream interface now. */
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200204 if (cs)
205 si_attach_cs(&s->si[0], cs);
Willy Tarreau470280e2015-04-05 01:33:13 +0200206 else if (appctx)
207 si_attach_appctx(&s->si[0], appctx);
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200208
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200209 if (likely(sess->fe->options2 & PR_O2_INDEPSTR))
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200210 s->si[0].flags |= SI_FL_INDEP_STR;
211
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200212 /* pre-initialize the other side's stream interface to an INIT state. The
213 * callbacks will be initialized before attempting to connect.
214 */
Olivier Houchard8f0b4c62018-08-02 18:21:38 +0200215 if (si_reset(&s->si[1]) < 0)
216 goto out_fail_alloc_si1;
Hongbo Longe39683c2017-03-10 18:41:51 +0100217 s->si[1].hcto = TICK_ETERNITY;
Willy Tarreaub363a1f2013-10-01 10:45:07 +0200218
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200219 if (likely(sess->fe->options2 & PR_O2_INDEPSTR))
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200220 s->si[1].flags |= SI_FL_INDEP_STR;
221
Willy Tarreau87b09662015-04-03 00:22:06 +0200222 stream_init_srv_conn(s);
Willy Tarreau9b82d942016-12-05 00:26:31 +0100223 s->target = sess->listener ? sess->listener->default_target : NULL;
224
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200225 s->pend_pos = NULL;
Patrick Hemmer268a7072018-05-11 12:52:31 -0400226 s->priority_class = 0;
227 s->priority_offset = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200228
229 /* init store persistence */
230 s->store_count = 0;
231
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100232 channel_init(&s->req);
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100233 s->req.flags |= CF_READ_ATTACHED; /* the producer is already connected */
Willy Tarreau9b82d942016-12-05 00:26:31 +0100234 s->req.analysers = sess->listener ? sess->listener->analysers : 0;
Willy Tarreaue223e3b2017-11-18 15:39:10 +0100235
236 if (!sess->fe->fe_req_ana) {
237 channel_auto_connect(&s->req); /* don't wait to establish connection */
238 channel_auto_close(&s->req); /* let the producer forward close requests */
239 }
Willy Tarreauc8815ef2015-04-05 18:15:59 +0200240
241 s->req.rto = sess->fe->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100242 s->req.wto = TICK_ETERNITY;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100243 s->req.rex = TICK_ETERNITY;
244 s->req.wex = TICK_ETERNITY;
245 s->req.analyse_exp = TICK_ETERNITY;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200246
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100247 channel_init(&s->res);
Willy Tarreauef573c02014-11-28 14:17:09 +0100248 s->res.flags |= CF_ISRESP;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100249 s->res.analysers = 0;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200250
Willy Tarreaue36cbcb2015-04-03 15:40:56 +0200251 if (sess->fe->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100252 s->req.flags |= CF_NEVER_WAIT;
253 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200254 }
255
Willy Tarreauc8815ef2015-04-05 18:15:59 +0200256 s->res.wto = sess->fe->timeout.client;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100257 s->res.rto = TICK_ETERNITY;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100258 s->res.rex = TICK_ETERNITY;
259 s->res.wex = TICK_ETERNITY;
260 s->res.analyse_exp = TICK_ETERNITY;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200261
Willy Tarreaueee5b512015-04-03 23:46:31 +0200262 s->txn = NULL;
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +0100263 s->hlua = NULL;
Thierry FOURNIER65f34c62015-02-16 20:11:43 +0100264
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100265 HA_SPIN_LOCK(STRMS_LOCK, &streams_lock);
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200266 LIST_ADDQ(&streams, &s->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100267 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200268
Christopher Faulet92d36382015-11-05 13:35:03 +0100269 if (flt_stream_init(s) < 0 || flt_stream_start(s) < 0)
Christopher Fauletd7c91962015-04-30 11:48:27 +0200270 goto out_fail_accept;
271
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200272 /* finish initialization of the accepted file descriptor */
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200273 if (cs)
274 cs_want_recv(cs);
Willy Tarreau470280e2015-04-05 01:33:13 +0200275 else if (appctx)
Willy Tarreaufe127932015-04-21 19:23:39 +0200276 si_applet_want_get(&s->si[0]);
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200277
Willy Tarreaufb9f5842015-04-05 18:19:23 +0200278 if (sess->fe->accept && sess->fe->accept(s) < 0)
Willy Tarreauc5a7ff42015-04-05 11:52:08 +0200279 goto out_fail_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200280
281 /* it is important not to call the wakeup function directly but to
282 * pass through task_wakeup(), because this one knows how to apply
Emeric Brun5f77fef2017-05-29 15:26:51 +0200283 * priorities to tasks. Using multi thread we must be sure that
284 * stream is fully initialized before calling task_wakeup. So
285 * the caller must handle the task_wakeup
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200286 */
Willy Tarreau02d86382015-04-05 12:00:52 +0200287 return s;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200288
289 /* Error unrolling */
Willy Tarreauc5a7ff42015-04-05 11:52:08 +0200290 out_fail_accept:
Christopher Faulet92d36382015-11-05 13:35:03 +0100291 flt_stream_release(s, 0);
Willy Tarreau87787ac2017-08-28 16:22:54 +0200292 task_free(t);
Olivier Houchard8f0b4c62018-08-02 18:21:38 +0200293 tasklet_free(s->si[1].wait_list.task);
294out_fail_alloc_si1:
295 tasklet_free(s->si[0].wait_list.task);
Willy Tarreau87787ac2017-08-28 16:22:54 +0200296 out_fail_alloc:
Willy Tarreau3b246412014-11-25 17:10:33 +0100297 LIST_DEL(&s->list);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100298 pool_free(pool_head_stream, s);
Willy Tarreau02d86382015-04-05 12:00:52 +0200299 return NULL;
Willy Tarreau81f9aa32010-06-01 17:45:26 +0200300}
301
Willy Tarreaubaaee002006-06-26 02:48:02 +0200302/*
Willy Tarreau87b09662015-04-03 00:22:06 +0200303 * frees the context associated to a stream. It must have been removed first.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200304 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200305static void stream_free(struct stream *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200306{
Willy Tarreau9ad7bd42015-04-03 19:19:59 +0200307 struct session *sess = strm_sess(s);
308 struct proxy *fe = sess->fe;
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100309 struct bref *bref, *back;
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200310 struct conn_stream *cli_cs = objt_cs(s->si[0].end);
Willy Tarreau5bcfd562017-11-29 14:05:38 +0100311 int must_free_sess;
Willy Tarreaua4cda672010-06-06 18:28:49 +0200312 int i;
Willy Tarreau0f7562b2007-01-07 15:46:13 +0100313
Willy Tarreaud0ad4a82018-07-25 11:13:53 +0200314 pendconn_free(s);
Willy Tarreau922a8062008-12-04 09:33:58 +0100315
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100316 if (objt_server(s->target)) { /* there may be requests left pending in queue */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200317 if (s->flags & SF_CURR_SESS) {
318 s->flags &= ~SF_CURR_SESS;
Christopher Faulet29f77e82017-06-08 14:04:45 +0200319 HA_ATOMIC_SUB(&objt_server(s->target)->cur_sess, 1);
Willy Tarreau1e62de62008-11-11 20:20:02 +0100320 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100321 if (may_dequeue_tasks(objt_server(s->target), s->be))
322 process_srv_queue(objt_server(s->target));
Willy Tarreau1e62de62008-11-11 20:20:02 +0100323 }
Willy Tarreau922a8062008-12-04 09:33:58 +0100324
Willy Tarreau7c669d72008-06-20 15:04:11 +0200325 if (unlikely(s->srv_conn)) {
Willy Tarreau87b09662015-04-03 00:22:06 +0200326 /* the stream still has a reserved slot on a server, but
Willy Tarreau7c669d72008-06-20 15:04:11 +0200327 * it should normally be only the same as the one above,
328 * so this should not happen in fact.
329 */
330 sess_change_server(s, NULL);
331 }
332
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100333 if (s->req.pipe)
334 put_pipe(s->req.pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100335
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100336 if (s->res.pipe)
337 put_pipe(s->res.pipe);
Willy Tarreau259de1b2009-01-18 21:56:21 +0100338
Willy Tarreaubf883e02014-11-25 21:10:35 +0100339 /* We may still be present in the buffer wait queue */
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100340 if (!LIST_ISEMPTY(&s->buffer_wait.list)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100341 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100342 LIST_DEL(&s->buffer_wait.list);
343 LIST_INIT(&s->buffer_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100344 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100345 }
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200346 if (s->req.buf.size || s->res.buf.size) {
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100347 b_drop(&s->req.buf);
348 b_drop(&s->res.buf);
Olivier Houchard673867c2018-05-25 16:58:52 +0200349 offer_buffers(NULL, tasks_run_queue);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100350 }
Willy Tarreau9b28e032012-10-12 23:49:43 +0200351
Thierry FOURNIER2c8b54e2016-12-17 12:45:32 +0100352 hlua_ctx_destroy(s->hlua);
353 s->hlua = NULL;
Willy Tarreaueee5b512015-04-03 23:46:31 +0200354 if (s->txn)
355 http_end_txn(s);
Willy Tarreau46023632010-01-07 22:51:47 +0100356
Willy Tarreau1e954912012-10-12 17:50:05 +0200357 /* ensure the client-side transport layer is destroyed */
Willy Tarreau32560732017-10-08 11:33:44 +0200358 if (cli_cs)
359 cs_close(cli_cs);
Willy Tarreau1e954912012-10-12 17:50:05 +0200360
Willy Tarreaua4cda672010-06-06 18:28:49 +0200361 for (i = 0; i < s->store_count; i++) {
362 if (!s->store[i].ts)
363 continue;
364 stksess_free(s->store[i].table, s->store[i].ts);
365 s->store[i].ts = NULL;
366 }
367
Willy Tarreaueee5b512015-04-03 23:46:31 +0200368 if (s->txn) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100369 pool_free(pool_head_hdr_idx, s->txn->hdr_idx.v);
370 pool_free(pool_head_http_txn, s->txn);
Willy Tarreaueee5b512015-04-03 23:46:31 +0200371 s->txn = NULL;
372 }
373
Christopher Fauletd7c91962015-04-30 11:48:27 +0200374 flt_stream_stop(s);
Christopher Faulet92d36382015-11-05 13:35:03 +0100375 flt_stream_release(s, 0);
Christopher Fauletd7c91962015-04-30 11:48:27 +0200376
Willy Tarreau92fb9832007-10-16 17:34:28 +0200377 if (fe) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100378 pool_free(fe->rsp_cap_pool, s->res_cap);
379 pool_free(fe->req_cap_pool, s->req_cap);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200380 }
Willy Tarreau0937bc42009-12-22 15:03:09 +0100381
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200382 /* Cleanup all variable contexts. */
Willy Tarreau6204cd92016-03-10 16:33:04 +0100383 vars_prune(&s->vars_txn, s->sess, s);
384 vars_prune(&s->vars_reqres, s->sess, s);
Thierry FOURNIER4834bc72015-06-06 19:29:07 +0200385
Willy Tarreau87b09662015-04-03 00:22:06 +0200386 stream_store_counters(s);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200387
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100388 HA_SPIN_LOCK(STRMS_LOCK, &streams_lock);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100389 list_for_each_entry_safe(bref, back, &s->back_refs, users) {
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100390 /* we have to unlink all watchers. We must not relink them if
Willy Tarreau87b09662015-04-03 00:22:06 +0200391 * this stream was the last one in the list.
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100392 */
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100393 LIST_DEL(&bref->users);
Willy Tarreaufd3828e2009-02-22 15:17:24 +0100394 LIST_INIT(&bref->users);
Willy Tarreau87b09662015-04-03 00:22:06 +0200395 if (s->list.n != &streams)
396 LIST_ADDQ(&LIST_ELEM(s->list.n, struct stream *, list)->back_refs, &bref->users);
Willy Tarreau62e4f1d2008-12-07 20:16:23 +0100397 bref->ref = s->list.n;
398 }
Willy Tarreauf54f8bd2008-11-23 19:53:55 +0100399 LIST_DEL(&s->list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100400 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
Emeric Brun6b35e9b2017-06-30 16:23:45 +0200401
Willy Tarreau5bcfd562017-11-29 14:05:38 +0100402 /* applets do not release session yet */
403 must_free_sess = objt_appctx(sess->origin) && sess->origin == s->si[0].end;
404
Willy Tarreau32e3c6a2013-10-11 19:34:20 +0200405 si_release_endpoint(&s->si[1]);
406 si_release_endpoint(&s->si[0]);
Willy Tarreaufeb76402015-04-03 14:10:06 +0200407
Willy Tarreau5bcfd562017-11-29 14:05:38 +0100408 if (must_free_sess)
409 session_free(sess);
410
Olivier Houchard8f0b4c62018-08-02 18:21:38 +0200411 tasklet_free(s->si[0].wait_list.task);
Olivier Houchard18a85fe2018-08-21 14:25:52 +0200412 LIST_DEL(&s->si[0].wait_list.list);
Olivier Houchard8f0b4c62018-08-02 18:21:38 +0200413 tasklet_free(s->si[1].wait_list.task);
Olivier Houchard18a85fe2018-08-21 14:25:52 +0200414 LIST_DEL(&s->si[1].wait_list.list);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100415 pool_free(pool_head_stream, s);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200416
417 /* We may want to free the maximum amount of pools if the proxy is stopping */
Willy Tarreau92fb9832007-10-16 17:34:28 +0200418 if (fe && unlikely(fe->state == PR_STSTOPPED)) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100419 pool_flush(pool_head_buffer);
420 pool_flush(pool_head_http_txn);
421 pool_flush(pool_head_hdr_idx);
422 pool_flush(pool_head_requri);
423 pool_flush(pool_head_capture);
424 pool_flush(pool_head_stream);
425 pool_flush(pool_head_session);
426 pool_flush(pool_head_connection);
427 pool_flush(pool_head_pendconn);
428 pool_flush(fe->req_cap_pool);
429 pool_flush(fe->rsp_cap_pool);
Willy Tarreau632f5a72007-07-11 10:42:35 +0200430 }
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200431}
432
Willy Tarreau656859d2014-11-25 19:46:36 +0100433
Willy Tarreau87b09662015-04-03 00:22:06 +0200434/* Allocates a work buffer for stream <s>. It is meant to be called inside
435 * process_stream(). It will only allocate the side needed for the function
Willy Tarreaubc39a5d2015-04-20 15:52:18 +0200436 * to work fine, which is the response buffer so that an error message may be
437 * built and returned. Response buffers may be allocated from the reserve, this
438 * is critical to ensure that a response may always flow and will never block a
439 * server from releasing a connection. Returns 0 in case of failure, non-zero
440 * otherwise.
Willy Tarreau656859d2014-11-25 19:46:36 +0100441 */
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100442static int stream_alloc_work_buffer(struct stream *s)
Willy Tarreau656859d2014-11-25 19:46:36 +0100443{
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100444 if (!LIST_ISEMPTY(&s->buffer_wait.list)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100445 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100446 LIST_DEL(&s->buffer_wait.list);
447 LIST_INIT(&s->buffer_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100448 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreaubf883e02014-11-25 21:10:35 +0100449 }
Willy Tarreau656859d2014-11-25 19:46:36 +0100450
Willy Tarreaubc39a5d2015-04-20 15:52:18 +0200451 if (b_alloc_margin(&s->res.buf, 0))
Willy Tarreau656859d2014-11-25 19:46:36 +0100452 return 1;
453
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100454 HA_SPIN_LOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100455 LIST_ADDQ(&buffer_wq, &s->buffer_wait.list);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100456 HA_SPIN_UNLOCK(BUF_WQ_LOCK, &buffer_wq_lock);
Willy Tarreau656859d2014-11-25 19:46:36 +0100457 return 0;
458}
459
460/* releases unused buffers after processing. Typically used at the end of the
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100461 * update() functions. It will try to wake up as many tasks/applets as the
462 * number of buffers that it releases. In practice, most often streams are
463 * blocked on a single buffer, so it makes sense to try to wake two up when two
464 * buffers are released at once.
Willy Tarreau656859d2014-11-25 19:46:36 +0100465 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200466void stream_release_buffers(struct stream *s)
Willy Tarreau656859d2014-11-25 19:46:36 +0100467{
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100468 int offer = 0;
Willy Tarreau656859d2014-11-25 19:46:36 +0100469
Willy Tarreau0c7ed5d2018-07-10 09:53:31 +0200470 if (c_size(&s->req) && c_empty(&s->req)) {
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100471 offer = 1;
472 b_free(&s->req.buf);
473 }
Willy Tarreau0c7ed5d2018-07-10 09:53:31 +0200474 if (c_size(&s->res) && c_empty(&s->res)) {
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100475 offer = 1;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100476 b_free(&s->res.buf);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100477 }
Willy Tarreau656859d2014-11-25 19:46:36 +0100478
Willy Tarreaubf883e02014-11-25 21:10:35 +0100479 /* if we're certain to have at least 1 buffer available, and there is
480 * someone waiting, we can wake up a waiter and offer them.
481 */
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100482 if (offer)
Olivier Houchard673867c2018-05-25 16:58:52 +0200483 offer_buffers(s, tasks_run_queue);
Willy Tarreau656859d2014-11-25 19:46:36 +0100484}
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200485
486/* perform minimal intializations, report 0 in case of error, 1 if OK. */
Willy Tarreau87b09662015-04-03 00:22:06 +0200487int init_stream()
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200488{
Willy Tarreau87b09662015-04-03 00:22:06 +0200489 LIST_INIT(&streams);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100490 HA_SPIN_INIT(&streams_lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100491 pool_head_stream = create_pool("stream", sizeof(struct stream), MEM_F_SHARED);
492 return pool_head_stream != NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200493}
494
Willy Tarreau87b09662015-04-03 00:22:06 +0200495void stream_process_counters(struct stream *s)
Willy Tarreau30e71012007-11-26 20:15:35 +0100496{
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200497 struct session *sess = s->sess;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100498 unsigned long long bytes;
Emeric Brun57056f02015-06-15 18:29:57 +0200499 void *ptr1,*ptr2;
Emeric Brun819fc6f2017-06-13 19:37:32 +0200500 struct stksess *ts;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100501 int i;
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100502
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100503 bytes = s->req.total - s->logs.bytes_in;
504 s->logs.bytes_in = s->req.total;
505 if (bytes) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200506 HA_ATOMIC_ADD(&sess->fe->fe_counters.bytes_in, bytes);
507 HA_ATOMIC_ADD(&s->be->be_counters.bytes_in, bytes);
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100508
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100509 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +0200510 HA_ATOMIC_ADD(&objt_server(s->target)->counters.bytes_in, bytes);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200511
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200512 if (sess->listener && sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200513 HA_ATOMIC_ADD(&sess->listener->counters->bytes_in, bytes);
Willy Tarreau855e4bb2010-06-18 18:33:32 +0200514
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100515 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200516 struct stkctr *stkctr = &s->stkctr[i];
517
Emeric Brun819fc6f2017-06-13 19:37:32 +0200518 ts = stkctr_entry(stkctr);
519 if (!ts) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200520 stkctr = &sess->stkctr[i];
Emeric Brun819fc6f2017-06-13 19:37:32 +0200521 ts = stkctr_entry(stkctr);
522 if (!ts)
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200523 continue;
524 }
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200525
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100526 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200527 ptr1 = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_BYTES_IN_CNT);
Emeric Brun57056f02015-06-15 18:29:57 +0200528 if (ptr1)
529 stktable_data_cast(ptr1, bytes_in_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200530
Emeric Brun819fc6f2017-06-13 19:37:32 +0200531 ptr2 = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_BYTES_IN_RATE);
Emeric Brun57056f02015-06-15 18:29:57 +0200532 if (ptr2)
533 update_freq_ctr_period(&stktable_data_cast(ptr2, bytes_in_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200534 stkctr->table->data_arg[STKTABLE_DT_BYTES_IN_RATE].u, bytes);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100535 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun57056f02015-06-15 18:29:57 +0200536
537 /* If data was modified, we need to touch to re-schedule sync */
538 if (ptr1 || ptr2)
Emeric Brun819fc6f2017-06-13 19:37:32 +0200539 stktable_touch_local(stkctr->table, ts, 0);
Willy Tarreau30e71012007-11-26 20:15:35 +0100540 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100541 }
542
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100543 bytes = s->res.total - s->logs.bytes_out;
544 s->logs.bytes_out = s->res.total;
545 if (bytes) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200546 HA_ATOMIC_ADD(&sess->fe->fe_counters.bytes_out, bytes);
547 HA_ATOMIC_ADD(&s->be->be_counters.bytes_out, bytes);
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100548
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100549 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +0200550 HA_ATOMIC_ADD(&objt_server(s->target)->counters.bytes_out, bytes);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200551
Willy Tarreaufb0afa72015-04-03 14:46:27 +0200552 if (sess->listener && sess->listener->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +0200553 HA_ATOMIC_ADD(&sess->listener->counters->bytes_out, bytes);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200554
Willy Tarreau22ec1ea2014-11-27 20:45:39 +0100555 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200556 struct stkctr *stkctr = &s->stkctr[i];
557
Emeric Brun819fc6f2017-06-13 19:37:32 +0200558 ts = stkctr_entry(stkctr);
559 if (!ts) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200560 stkctr = &sess->stkctr[i];
Emeric Brun819fc6f2017-06-13 19:37:32 +0200561 ts = stkctr_entry(stkctr);
562 if (!ts)
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200563 continue;
564 }
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200565
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100566 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200567 ptr1 = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_BYTES_OUT_CNT);
Emeric Brun57056f02015-06-15 18:29:57 +0200568 if (ptr1)
569 stktable_data_cast(ptr1, bytes_out_cnt) += bytes;
Willy Tarreau6c59e0a2010-06-20 11:56:30 +0200570
Emeric Brun819fc6f2017-06-13 19:37:32 +0200571 ptr2 = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_BYTES_OUT_RATE);
Emeric Brun57056f02015-06-15 18:29:57 +0200572 if (ptr2)
573 update_freq_ctr_period(&stktable_data_cast(ptr2, bytes_out_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200574 stkctr->table->data_arg[STKTABLE_DT_BYTES_OUT_RATE].u, bytes);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100575 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun57056f02015-06-15 18:29:57 +0200576
577 /* If data was modified, we need to touch to re-schedule sync */
578 if (ptr1 || ptr2)
Emeric Brun819fc6f2017-06-13 19:37:32 +0200579 stktable_touch_local(stkctr->table, stkctr_entry(stkctr), 0);
Willy Tarreau30e71012007-11-26 20:15:35 +0100580 }
Krzysztof Piotr Oledzki583bc962007-11-24 22:12:47 +0100581 }
582}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200583
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100584/* This function is called with (si->state == SI_ST_CON) meaning that a
585 * connection was attempted and that the file descriptor is already allocated.
586 * We must check for establishment, error and abort. Possible output states
587 * are SI_ST_EST (established), SI_ST_CER (error), SI_ST_DIS (abort), and
588 * SI_ST_CON (no change). The function returns 0 if it switches to SI_ST_CER,
Willy Tarreau87b09662015-04-03 00:22:06 +0200589 * otherwise 1. This only works with connection-based streams.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100590 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200591static int sess_update_st_con_tcp(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100592{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100593 struct stream_interface *si = &s->si[1];
594 struct channel *req = &s->req;
595 struct channel *rep = &s->res;
Willy Tarreaua553ae92017-10-05 18:52:17 +0200596 struct conn_stream *srv_cs = __objt_cs(si->end);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100597
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100598 /* If we got an error, or if nothing happened and the connection timed
599 * out, we must give up. The CER state handler will take care of retry
600 * attempts and error reports.
601 */
602 if (unlikely(si->flags & (SI_FL_EXP|SI_FL_ERR))) {
Bin Wang95fad5b2017-09-15 14:56:40 +0800603 if (unlikely(req->flags & CF_WROTE_DATA)) {
Willy Tarreaue3224e82012-10-29 22:41:31 +0100604 /* Some data were sent past the connection establishment,
605 * so we need to pretend we're established to log correctly
606 * and let later states handle the failure.
607 */
Willy Tarreaue3224e82012-10-29 22:41:31 +0100608 si->state = SI_ST_EST;
609 si->err_type = SI_ET_DATA_ERR;
Willy Tarreau103197d2014-11-28 15:26:12 +0100610 rep->flags |= CF_READ_ERROR | CF_WRITE_ERROR;
Willy Tarreaue3224e82012-10-29 22:41:31 +0100611 return 1;
612 }
Willy Tarreau127334e2009-03-28 10:47:26 +0100613 si->exp = TICK_ETERNITY;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100614 si->state = SI_ST_CER;
Willy Tarreau0ede5a32012-12-08 08:44:02 +0100615
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200616 /* XXX cognet: do we really want to kill the connection here ?
617 * Probably not for multiple streams.
618 */
Willy Tarreaua553ae92017-10-05 18:52:17 +0200619 cs_close(srv_cs);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100620
621 if (si->err_type)
622 return 0;
623
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100624 if (si->flags & SI_FL_ERR)
625 si->err_type = SI_ET_CONN_ERR;
626 else
627 si->err_type = SI_ET_CONN_TO;
628 return 0;
629 }
630
631 /* OK, maybe we want to abort */
Bin Wang95fad5b2017-09-15 14:56:40 +0800632 if (!(req->flags & CF_WROTE_DATA) &&
Willy Tarreaua7a7ebc2012-12-30 00:50:35 +0100633 unlikely((rep->flags & CF_SHUTW) ||
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200634 ((req->flags & CF_SHUTW_NOW) && /* FIXME: this should not prevent a connection from establishing */
Christopher Fauletc5a9d5b2017-11-09 09:36:43 +0100635 ((!(req->flags & (CF_WRITE_ACTIVITY|CF_WRITE_EVENT)) && channel_is_empty(req)) ||
Willy Tarreau7aa15b02017-12-20 16:56:50 +0100636 ((s->be->options & PR_O_ABRT_CLOSE) && !(s->si[0].flags & SI_FL_CLEAN_ABRT)))))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100637 /* give up */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200638 si_shutw(si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100639 si->err_type |= SI_ET_CONN_ABRT;
Willy Tarreau84455332009-03-15 22:34:05 +0100640 if (s->srv_error)
641 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100642 return 1;
643 }
644
645 /* we need to wait a bit more if there was no activity either */
Christopher Fauletc5a9d5b2017-11-09 09:36:43 +0100646 if (!(req->flags & (CF_WRITE_ACTIVITY|CF_WRITE_EVENT)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100647 return 1;
648
649 /* OK, this means that a connection succeeded. The caller will be
650 * responsible for handling the transition from CON to EST.
651 */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100652 si->state = SI_ST_EST;
653 si->err_type = SI_ET_NONE;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100654 return 1;
655}
656
657/* This function is called with (si->state == SI_ST_CER) meaning that a
658 * previous connection attempt has failed and that the file descriptor
659 * has already been released. Possible causes include asynchronous error
660 * notification and time out. Possible output states are SI_ST_CLO when
661 * retries are exhausted, SI_ST_TAR when a delay is wanted before a new
662 * connection attempt, SI_ST_ASS when it's wise to retry on the same server,
663 * and SI_ST_REQ when an immediate redispatch is wanted. The buffers are
664 * marked as in error state. It returns 0.
665 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200666static int sess_update_st_cer(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100667{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100668 struct stream_interface *si = &s->si[1];
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200669 struct conn_stream *cs = objt_cs(si->end);
670 struct connection *conn = cs_conn(cs);
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100671
Willy Tarreau87b09662015-04-03 00:22:06 +0200672 /* we probably have to release last stream from the server */
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100673 if (objt_server(s->target)) {
674 health_adjust(objt_server(s->target), HANA_STATUS_L4_ERR);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100675
Willy Tarreaue7dff022015-04-03 01:14:29 +0200676 if (s->flags & SF_CURR_SESS) {
677 s->flags &= ~SF_CURR_SESS;
Christopher Faulet29f77e82017-06-08 14:04:45 +0200678 HA_ATOMIC_SUB(&objt_server(s->target)->cur_sess, 1);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100679 }
Willy Tarreau46d5b082017-07-26 20:13:37 +0200680
681 if ((si->flags & SI_FL_ERR) &&
682 conn && conn->err_code == CO_ER_SSL_MISMATCH_SNI) {
683 /* We tried to connect to a server which is configured
684 * with "verify required" and which doesn't have the
685 * "verifyhost" directive. The server presented a wrong
686 * certificate (a certificate for an unexpected name),
687 * which implies that we have used SNI in the handshake,
688 * and that the server doesn't have the associated cert
689 * and presented a default one.
690 *
691 * This is a serious enough issue not to retry. It's
692 * especially important because this wrong name might
693 * either be the result of a configuration error, and
694 * retrying will only hammer the server, or is caused
695 * by the use of a wrong SNI value, most likely
696 * provided by the client and we don't want to let the
697 * client provoke retries.
698 */
699 si->conn_retries = 0;
700 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100701 }
702
703 /* ensure that we have enough retries left */
Willy Tarreauee28de02010-06-01 09:51:00 +0200704 si->conn_retries--;
705 if (si->conn_retries < 0) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100706 if (!si->err_type) {
707 si->err_type = SI_ET_CONN_ERR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100708 }
709
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100710 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +0200711 HA_ATOMIC_ADD(&objt_server(s->target)->counters.failed_conns, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200712 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100713 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100714 if (may_dequeue_tasks(objt_server(s->target), s->be))
715 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100716
717 /* shutw is enough so stop a connecting socket */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200718 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +0100719 s->req.flags |= CF_WRITE_ERROR;
720 s->res.flags |= CF_READ_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100721
722 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100723 if (s->srv_error)
724 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100725 return 0;
726 }
727
728 /* If the "redispatch" option is set on the backend, we are allowed to
Joseph Lynch726ab712015-05-11 23:25:34 -0700729 * retry on another server. By default this redispatch occurs on the
730 * last retry, but if configured we allow redispatches to occur on
731 * configurable intervals, e.g. on every retry. In order to achieve this,
Willy Tarreau87b09662015-04-03 00:22:06 +0200732 * we must mark the stream unassigned, and eventually clear the DIRECT
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100733 * bit to ignore any persistence cookie. We won't count a retry nor a
734 * redispatch yet, because this will depend on what server is selected.
Willy Tarreau33a14e52014-06-13 17:49:40 +0200735 * If the connection is not persistent, the balancing algorithm is not
736 * determinist (round robin) and there is more than one active server,
737 * we accept to perform an immediate redispatch without waiting since
738 * we don't care about this particular server.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100739 */
Willy Tarreau33a14e52014-06-13 17:49:40 +0200740 if (objt_server(s->target) &&
Joseph Lynch726ab712015-05-11 23:25:34 -0700741 (s->be->options & PR_O_REDISP) && !(s->flags & SF_FORCE_PRST) &&
Emeric Brun52a91d32017-08-31 14:41:55 +0200742 ((__objt_server(s->target)->cur_state < SRV_ST_RUNNING) ||
Willy Tarreau49008c12016-01-13 07:58:44 +0100743 (((s->be->redispatch_after > 0) &&
Joseph Lynch726ab712015-05-11 23:25:34 -0700744 ((s->be->conn_retries - si->conn_retries) %
745 s->be->redispatch_after == 0)) ||
746 ((s->be->redispatch_after < 0) &&
747 ((s->be->conn_retries - si->conn_retries) %
748 (s->be->conn_retries + 1 + s->be->redispatch_after) == 0))) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +0200749 (!(s->flags & SF_DIRECT) && s->be->srv_act > 1 &&
Joseph Lynch726ab712015-05-11 23:25:34 -0700750 ((s->be->lbprm.algo & BE_LB_KIND) == BE_LB_KIND_RR)))) {
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100751 sess_change_server(s, NULL);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100752 if (may_dequeue_tasks(objt_server(s->target), s->be))
753 process_srv_queue(objt_server(s->target));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100754
Willy Tarreaue7dff022015-04-03 01:14:29 +0200755 s->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100756 si->state = SI_ST_REQ;
757 } else {
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100758 if (objt_server(s->target))
Christopher Faulet29f77e82017-06-08 14:04:45 +0200759 HA_ATOMIC_ADD(&objt_server(s->target)->counters.retries, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200760 HA_ATOMIC_ADD(&s->be->be_counters.retries, 1);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100761 si->state = SI_ST_ASS;
762 }
763
764 if (si->flags & SI_FL_ERR) {
765 /* The error was an asynchronous connection error, and we will
766 * likely have to retry connecting to the same server, most
767 * likely leading to the same result. To avoid this, we wait
Willy Tarreaub0290662014-06-13 17:04:44 +0200768 * MIN(one second, connect timeout) before retrying.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100769 */
770
Willy Tarreaub0290662014-06-13 17:04:44 +0200771 int delay = 1000;
772
773 if (s->be->timeout.connect && s->be->timeout.connect < delay)
774 delay = s->be->timeout.connect;
775
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100776 if (!si->err_type)
777 si->err_type = SI_ET_CONN_ERR;
778
Willy Tarreaudb6d0122014-06-13 17:40:15 +0200779 /* only wait when we're retrying on the same server */
780 if (si->state == SI_ST_ASS ||
781 (s->be->lbprm.algo & BE_LB_KIND) != BE_LB_KIND_RR ||
782 (s->be->srv_act <= 1)) {
783 si->state = SI_ST_TAR;
784 si->exp = tick_add(now_ms, MS_TO_TICKS(delay));
785 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100786 return 0;
787 }
788 return 0;
789}
790
791/*
792 * This function handles the transition between the SI_ST_CON state and the
Willy Tarreau85e7d002010-05-31 11:57:51 +0200793 * SI_ST_EST state. It must only be called after switching from SI_ST_CON (or
Willy Tarreau26d8c592012-05-07 18:12:14 +0200794 * SI_ST_INI) to SI_ST_EST, but only when a ->proto is defined.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100795 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200796static void sess_establish(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100797{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100798 struct stream_interface *si = &s->si[1];
799 struct channel *req = &s->req;
800 struct channel *rep = &s->res;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100801
Willy Tarreau0e37f1c2013-12-31 23:06:46 +0100802 /* First, centralize the timers information */
803 s->logs.t_connect = tv_ms_elapsed(&s->logs.tv_accept, &now);
804 si->exp = TICK_ETERNITY;
805
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100806 if (objt_server(s->target))
807 health_adjust(objt_server(s->target), HANA_STATUS_L4_OK);
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100808
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100809 if (s->be->mode == PR_MODE_TCP) { /* let's allow immediate data connection in this case */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100810 /* if the user wants to log as soon as possible, without counting
811 * bytes from the server, then this is the right moment. */
Willy Tarreaud0d8da92015-04-04 02:10:38 +0200812 if (!LIST_ISEMPTY(&strm_fe(s)->logformat) && !(s->logs.logwait & LW_BYTES)) {
Willy Tarreau66425e32018-07-25 06:55:12 +0200813 /* note: no pend_pos here, session is established */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100814 s->logs.t_close = s->logs.t_connect; /* to get a valid end date */
Willy Tarreaua5555ec2008-11-30 19:02:32 +0100815 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100816 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100817 }
818 else {
Willy Tarreaud81ca042013-12-31 22:33:13 +0100819 rep->flags |= CF_READ_DONTWAIT; /* a single read is enough to get response headers */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100820 }
821
Willy Tarreaud62b98c2016-12-13 15:26:56 +0100822 if (!(s->flags & SF_TUNNEL)) {
823 rep->analysers |= strm_fe(s)->fe_rsp_ana | s->be->be_rsp_ana;
Christopher Faulet309c6412015-12-02 09:57:32 +0100824
Willy Tarreaud62b98c2016-12-13 15:26:56 +0100825 /* Be sure to filter response headers if the backend is an HTTP proxy
826 * and if there are filters attached to the stream. */
827 if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s))
828 rep->analysers |= AN_RES_FLT_HTTP_HDRS;
829 }
Christopher Faulet309c6412015-12-02 09:57:32 +0100830
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200831 rep->flags |= CF_READ_ATTACHED; /* producer is now attached */
Willy Tarreau644c1012014-04-30 18:11:11 +0200832 if (req->flags & CF_WAKE_CONNECT) {
833 req->flags |= CF_WAKE_ONCE;
834 req->flags &= ~CF_WAKE_CONNECT;
835 }
Olivier Houchard9aaf7782017-09-13 18:30:23 +0200836 if (objt_cs(si->end)) {
Willy Tarreaud04e8582010-05-31 12:31:35 +0200837 /* real connections have timeouts */
838 req->wto = s->be->timeout.server;
839 rep->rto = s->be->timeout.server;
840 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100841 req->wex = TICK_ETERNITY;
842}
843
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -0700844/* Check if the connection request is in such a state that it can be aborted. */
845static int check_req_may_abort(struct channel *req, struct stream *s)
846{
847 return ((req->flags & (CF_READ_ERROR)) ||
Willy Tarreaud651ba12018-01-12 10:42:12 +0100848 ((req->flags & (CF_SHUTW_NOW|CF_SHUTW)) && /* empty and client aborted */
Willy Tarreau7aa15b02017-12-20 16:56:50 +0100849 (channel_is_empty(req) ||
850 ((s->be->options & PR_O_ABRT_CLOSE) && !(s->si[0].flags & SI_FL_CLEAN_ABRT)))));
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -0700851}
852
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100853/* Update back stream interface status for input states SI_ST_ASS, SI_ST_QUE,
854 * SI_ST_TAR. Other input states are simply ignored.
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +0100855 * Possible output states are SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ, SI_ST_CON
856 * and SI_ST_EST. Flags must have previously been updated for timeouts and other
857 * conditions.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100858 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200859static void sess_update_stream_int(struct stream *s)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100860{
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100861 struct server *srv = objt_server(s->target);
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100862 struct stream_interface *si = &s->si[1];
Willy Tarreau103197d2014-11-28 15:26:12 +0100863 struct channel *req = &s->req;
Willy Tarreau827aee92011-03-10 16:55:02 +0100864
Christopher Faulet45073512018-07-20 10:16:29 +0200865 DPRINTF(stderr,"[%u] %s: sess=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rqh=%lu rqt=%lu rph=%lu rpt=%lu cs=%d ss=%d\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100866 now_ms, __FUNCTION__,
867 s,
CJ Ess6eac32e2015-05-02 16:35:24 -0400868 req, &s->res,
Willy Tarreau103197d2014-11-28 15:26:12 +0100869 req->rex, s->res.wex,
870 req->flags, s->res.flags,
Christopher Faulet45073512018-07-20 10:16:29 +0200871 ci_data(req), co_data(req), ci_data(&s->res), co_data(&s->res), s->si[0].state, s->si[1].state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100872
873 if (si->state == SI_ST_ASS) {
874 /* Server assigned to connection request, we have to try to connect now */
875 int conn_err;
876
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -0700877 /* Before we try to initiate the connection, see if the
878 * request may be aborted instead.
879 */
880 if (check_req_may_abort(req, s)) {
881 si->err_type |= SI_ET_CONN_ABRT;
882 goto abort_connection;
883 }
884
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100885 conn_err = connect_server(s);
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100886 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +0100887
Willy Tarreaue7dff022015-04-03 01:14:29 +0200888 if (conn_err == SF_ERR_NONE) {
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +0100889 /* state = SI_ST_CON or SI_ST_EST now */
Willy Tarreau827aee92011-03-10 16:55:02 +0100890 if (srv)
891 srv_inc_sess_ctr(srv);
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -0500892 if (srv)
893 srv_set_sess_last(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100894 return;
895 }
896
897 /* We have received a synchronous error. We might have to
898 * abort, retry immediately or redispatch.
899 */
Willy Tarreaue7dff022015-04-03 01:14:29 +0200900 if (conn_err == SF_ERR_INTERNAL) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100901 if (!si->err_type) {
902 si->err_type = SI_ET_CONN_OTHER;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100903 }
904
Willy Tarreau827aee92011-03-10 16:55:02 +0100905 if (srv)
906 srv_inc_sess_ctr(srv);
907 if (srv)
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -0500908 srv_set_sess_last(srv);
909 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +0200910 HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200911 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100912
Willy Tarreau87b09662015-04-03 00:22:06 +0200913 /* release other streams waiting for this server */
Willy Tarreaub89cfca2010-12-29 14:32:28 +0100914 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +0100915 if (may_dequeue_tasks(srv, s->be))
916 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100917
918 /* Failed and not retryable. */
Willy Tarreau73b013b2012-05-21 16:31:45 +0200919 si_shutr(si);
920 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +0100921 req->flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100922
923 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
924
Willy Tarreau66425e32018-07-25 06:55:12 +0200925 /* we may need to know the position in the queue for logging */
926 pendconn_cond_unlink(s->pend_pos);
927
Willy Tarreau87b09662015-04-03 00:22:06 +0200928 /* no stream was ever accounted for this server */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100929 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100930 if (s->srv_error)
931 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100932 return;
933 }
934
935 /* We are facing a retryable error, but we don't want to run a
936 * turn-around now, as the problem is likely a source port
937 * allocation problem, so we want to retry now.
938 */
939 si->state = SI_ST_CER;
940 si->flags &= ~SI_FL_ERR;
Willy Tarreau7b8c4f92014-11-28 15:15:44 +0100941 sess_update_st_cer(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100942 /* now si->state is one of SI_ST_CLO, SI_ST_TAR, SI_ST_ASS, SI_ST_REQ */
943 return;
944 }
945 else if (si->state == SI_ST_QUE) {
946 /* connection request was queued, check for any update */
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100947 if (!pendconn_dequeue(s)) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100948 /* The connection is not in the queue anymore. Either
949 * we have a server connection slot available and we
950 * go directly to the assigned state, or we need to
951 * load-balance first and go to the INI state.
952 */
953 si->exp = TICK_ETERNITY;
Willy Tarreaue7dff022015-04-03 01:14:29 +0200954 if (unlikely(!(s->flags & SF_ASSIGNED)))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100955 si->state = SI_ST_REQ;
956 else {
957 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
958 si->state = SI_ST_ASS;
959 }
960 return;
961 }
962
963 /* Connection request still in queue... */
964 if (si->flags & SI_FL_EXP) {
965 /* ... and timeout expired */
966 si->exp = TICK_ETERNITY;
967 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau66425e32018-07-25 06:55:12 +0200968
969 /* we may need to know the position in the queue for logging */
970 pendconn_cond_unlink(s->pend_pos);
971
Willy Tarreau827aee92011-03-10 16:55:02 +0100972 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +0200973 HA_ATOMIC_ADD(&srv->counters.failed_conns, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +0200974 HA_ATOMIC_ADD(&s->be->be_counters.failed_conns, 1);
Willy Tarreau73b013b2012-05-21 16:31:45 +0200975 si_shutr(si);
976 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +0100977 req->flags |= CF_WRITE_TIMEOUT;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100978 if (!si->err_type)
979 si->err_type = SI_ET_QUEUE_TO;
980 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +0100981 if (s->srv_error)
982 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100983 return;
984 }
985
986 /* Connection remains in queue, check if we have to abort it */
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -0700987 if (check_req_may_abort(req, s)) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100988 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau66425e32018-07-25 06:55:12 +0200989
990 /* we may need to know the position in the queue for logging */
991 pendconn_cond_unlink(s->pend_pos);
992
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100993 si->err_type |= SI_ET_QUEUE_ABRT;
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -0700994 goto abort_connection;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +0100995 }
996
997 /* Nothing changed */
998 return;
999 }
1000 else if (si->state == SI_ST_TAR) {
1001 /* Connection request might be aborted */
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001002 if (check_req_may_abort(req, s)) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001003 si->err_type |= SI_ET_CONN_ABRT;
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001004 goto abort_connection;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001005 }
1006
1007 if (!(si->flags & SI_FL_EXP))
1008 return; /* still in turn-around */
1009
1010 si->exp = TICK_ETERNITY;
1011
Willy Tarreau87b09662015-04-03 00:22:06 +02001012 /* we keep trying on the same server as long as the stream is
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001013 * marked "assigned".
1014 * FIXME: Should we force a redispatch attempt when the server is down ?
1015 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001016 if (s->flags & SF_ASSIGNED)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001017 si->state = SI_ST_ASS;
1018 else
1019 si->state = SI_ST_REQ;
1020 return;
1021 }
Frederik Deweerdt6cd8d132016-04-07 09:01:04 -07001022 return;
1023
1024abort_connection:
1025 /* give up */
1026 si->exp = TICK_ETERNITY;
1027 si_shutr(si);
1028 si_shutw(si);
1029 si->state = SI_ST_CLO;
1030 if (s->srv_error)
1031 s->srv_error(s, si);
1032 return;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001033}
1034
Willy Tarreau87b09662015-04-03 00:22:06 +02001035/* Set correct stream termination flags in case no analyser has done it. It
Simon Hormandec5be42011-06-08 09:19:07 +09001036 * also counts a failed request if the server state has not reached the request
1037 * stage.
1038 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001039static void sess_set_term_flags(struct stream *s)
Simon Hormandec5be42011-06-08 09:19:07 +09001040{
Willy Tarreaue7dff022015-04-03 01:14:29 +02001041 if (!(s->flags & SF_FINST_MASK)) {
Simon Hormandec5be42011-06-08 09:19:07 +09001042 if (s->si[1].state < SI_ST_REQ) {
1043
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001044 HA_ATOMIC_ADD(&strm_fe(s)->fe_counters.failed_req, 1);
Willy Tarreau2c1068c2015-09-23 12:21:21 +02001045 if (strm_li(s) && strm_li(s)->counters)
Christopher Faulet8d8aa0d2017-05-30 15:36:50 +02001046 HA_ATOMIC_ADD(&strm_li(s)->counters->failed_req, 1);
Simon Hormandec5be42011-06-08 09:19:07 +09001047
Willy Tarreaue7dff022015-04-03 01:14:29 +02001048 s->flags |= SF_FINST_R;
Simon Hormandec5be42011-06-08 09:19:07 +09001049 }
1050 else if (s->si[1].state == SI_ST_QUE)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001051 s->flags |= SF_FINST_Q;
Simon Hormandec5be42011-06-08 09:19:07 +09001052 else if (s->si[1].state < SI_ST_EST)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001053 s->flags |= SF_FINST_C;
Simon Hormandec5be42011-06-08 09:19:07 +09001054 else if (s->si[1].state == SI_ST_EST || s->si[1].prev_state == SI_ST_EST)
Willy Tarreaue7dff022015-04-03 01:14:29 +02001055 s->flags |= SF_FINST_D;
Simon Hormandec5be42011-06-08 09:19:07 +09001056 else
Willy Tarreaue7dff022015-04-03 01:14:29 +02001057 s->flags |= SF_FINST_L;
Simon Hormandec5be42011-06-08 09:19:07 +09001058 }
1059}
1060
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001061/* This function initiates a server connection request on a stream interface
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001062 * already in SI_ST_REQ state. Upon success, the state goes to SI_ST_ASS for
1063 * a real connection to a server, indicating that a server has been assigned,
1064 * or SI_ST_EST for a successful connection to an applet. It may also return
1065 * SI_ST_QUE, or SI_ST_CLO upon error.
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001066 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001067static void sess_prepare_conn_req(struct stream *s)
Willy Tarreau02d6cfc2012-03-01 18:19:58 +01001068{
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001069 struct stream_interface *si = &s->si[1];
1070
Christopher Faulet45073512018-07-20 10:16:29 +02001071 DPRINTF(stderr,"[%u] %s: sess=%p rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rqh=%lu rqt=%lu rph=%lu rpt=%lu cs=%d ss=%d\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001072 now_ms, __FUNCTION__,
1073 s,
CJ Ess6eac32e2015-05-02 16:35:24 -04001074 &s->req, &s->res,
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001075 s->req.rex, s->res.wex,
1076 s->req.flags, s->res.flags,
Christopher Faulet45073512018-07-20 10:16:29 +02001077 ci_data(&s->req), co_data(&s->req), ci_data(&s->res), co_data(&s->res), s->si[0].state, s->si[1].state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001078
1079 if (si->state != SI_ST_REQ)
1080 return;
1081
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001082 if (unlikely(obj_type(s->target) == OBJ_TYPE_APPLET)) {
1083 /* the applet directly goes to the EST state */
Willy Tarreau4384ddf2013-12-01 12:25:52 +01001084 struct appctx *appctx = objt_appctx(si->end);
1085
1086 if (!appctx || appctx->applet != __objt_applet(s->target))
1087 appctx = stream_int_register_handler(si, objt_applet(s->target));
1088
1089 if (!appctx) {
1090 /* No more memory, let's immediately abort. Force the
1091 * error code to ignore the ERR_LOCAL which is not a
1092 * real error.
1093 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001094 s->flags &= ~(SF_ERR_MASK | SF_FINST_MASK);
Willy Tarreau4384ddf2013-12-01 12:25:52 +01001095
1096 si_shutr(si);
1097 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +01001098 s->req.flags |= CF_WRITE_ERROR;
Willy Tarreau6bbb2f62013-12-09 17:14:23 +01001099 si->err_type = SI_ET_CONN_RES;
Willy Tarreau4384ddf2013-12-01 12:25:52 +01001100 si->state = SI_ST_CLO;
1101 if (s->srv_error)
1102 s->srv_error(s, si);
1103 return;
1104 }
1105
Willy Tarreauee8269e2017-11-23 17:34:29 +01001106 if (tv_iszero(&s->logs.tv_request))
1107 s->logs.tv_request = now;
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001108 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001109 si->state = SI_ST_EST;
1110 si->err_type = SI_ET_NONE;
Willy Tarreaub9a551e2014-04-23 00:35:17 +02001111 be_set_sess_last(s->be);
Willy Tarreaufac4bd12013-11-30 09:21:49 +01001112 /* let sess_establish() finish the job */
Willy Tarreaud84fb5e2013-11-30 09:06:53 +01001113 return;
1114 }
1115
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001116 /* Try to assign a server */
1117 if (srv_redispatch_connect(s) != 0) {
1118 /* We did not get a server. Either we queued the
1119 * connection request, or we encountered an error.
1120 */
1121 if (si->state == SI_ST_QUE)
1122 return;
1123
1124 /* we did not get any server, let's check the cause */
Willy Tarreau73b013b2012-05-21 16:31:45 +02001125 si_shutr(si);
1126 si_shutw(si);
Willy Tarreau103197d2014-11-28 15:26:12 +01001127 s->req.flags |= CF_WRITE_ERROR;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001128 if (!si->err_type)
1129 si->err_type = SI_ET_CONN_OTHER;
1130 si->state = SI_ST_CLO;
Willy Tarreau0cac36f2008-11-30 20:44:17 +01001131 if (s->srv_error)
1132 s->srv_error(s, si);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001133 return;
1134 }
1135
1136 /* The server is assigned */
1137 s->logs.t_queue = tv_ms_elapsed(&s->logs.tv_accept, &now);
1138 si->state = SI_ST_ASS;
Willy Tarreaub9a551e2014-04-23 00:35:17 +02001139 be_set_sess_last(s->be);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001140}
1141
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001142/* This function parses the use-service action ruleset. It executes
1143 * the associated ACL and set an applet as a stream or txn final node.
1144 * it returns ACT_RET_ERR if an error occurs, the proxy left in
1145 * consistent state. It returns ACT_RET_STOP in succes case because
1146 * use-service must be a terminal action. Returns ACT_RET_YIELD
1147 * if the initialisation function require more data.
1148 */
1149enum act_return process_use_service(struct act_rule *rule, struct proxy *px,
1150 struct session *sess, struct stream *s, int flags)
1151
1152{
1153 struct appctx *appctx;
1154
1155 /* Initialises the applet if it is required. */
1156 if (flags & ACT_FLAG_FIRST) {
1157 /* Register applet. this function schedules the applet. */
1158 s->target = &rule->applet.obj_type;
1159 if (unlikely(!stream_int_register_handler(&s->si[1], objt_applet(s->target))))
1160 return ACT_RET_ERR;
1161
1162 /* Initialise the context. */
1163 appctx = si_appctx(&s->si[1]);
1164 memset(&appctx->ctx, 0, sizeof(appctx->ctx));
1165 appctx->rule = rule;
Willy Tarreau85cb0ae2017-08-23 10:52:20 +02001166
1167 /* enable the minimally required analyzers in case of HTTP
1168 * keep-alive to properly handle keep-alive and compression
1169 * on the HTTP response.
1170 */
1171 if (rule->from == ACT_F_HTTP_REQ) {
1172 s->req.analysers &= AN_REQ_FLT_HTTP_HDRS | AN_REQ_FLT_END;
1173 s->req.analysers |= AN_REQ_HTTP_XFER_BODY;
1174 }
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001175 }
1176 else
1177 appctx = si_appctx(&s->si[1]);
1178
1179 /* Stops the applet sheduling, in case of the init function miss
1180 * some data.
1181 */
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001182 si_applet_stop_get(&s->si[1]);
1183
1184 /* Call initialisation. */
1185 if (rule->applet.init)
1186 switch (rule->applet.init(appctx, px, s)) {
1187 case 0: return ACT_RET_ERR;
1188 case 1: break;
1189 default: return ACT_RET_YIELD;
1190 }
1191
1192 /* Now we can schedule the applet. */
1193 si_applet_cant_get(&s->si[1]);
1194 appctx_wakeup(appctx);
1195
1196 if (sess->fe == s->be) /* report it if the request was intercepted by the frontend */
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001197 HA_ATOMIC_ADD(&sess->fe->fe_counters.intercepted_req, 1);
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02001198
1199 /* The flag SF_ASSIGNED prevent from server assignment. */
1200 s->flags |= SF_ASSIGNED;
1201
1202 return ACT_RET_STOP;
1203}
1204
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001205/* This stream analyser checks the switching rules and changes the backend
Willy Tarreau4de91492010-01-22 19:10:05 +01001206 * if appropriate. The default_backend rule is also considered, then the
1207 * target backend's forced persistence rules are also evaluated last if any.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001208 * It returns 1 if the processing can continue on next analysers, or zero if it
1209 * either needs more data or wants to immediately abort the request.
1210 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001211static int process_switching_rules(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001212{
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001213 struct persist_rule *prst_rule;
Willy Tarreau192252e2015-04-04 01:47:55 +02001214 struct session *sess = s->sess;
1215 struct proxy *fe = sess->fe;
Willy Tarreau4de91492010-01-22 19:10:05 +01001216
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001217 req->analysers &= ~an_bit;
1218 req->analyse_exp = TICK_ETERNITY;
1219
Christopher Faulet45073512018-07-20 10:16:29 +02001220 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001221 now_ms, __FUNCTION__,
1222 s,
1223 req,
1224 req->rex, req->wex,
1225 req->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02001226 ci_data(req),
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001227 req->analysers);
1228
1229 /* now check whether we have some switching rules for this request */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001230 if (!(s->flags & SF_BE_ASSIGNED)) {
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001231 struct switching_rule *rule;
1232
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001233 list_for_each_entry(rule, &fe->switching_rules, list) {
Willy Tarreauf51658d2014-04-23 01:21:56 +02001234 int ret = 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001235
Willy Tarreauf51658d2014-04-23 01:21:56 +02001236 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001237 ret = acl_exec_cond(rule->cond, fe, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001238 ret = acl_pass(ret);
1239 if (rule->cond->pol == ACL_COND_UNLESS)
1240 ret = !ret;
1241 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001242
1243 if (ret) {
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001244 /* If the backend name is dynamic, try to resolve the name.
1245 * If we can't resolve the name, or if any error occurs, break
1246 * the loop and fallback to the default backend.
1247 */
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001248 struct proxy *backend = NULL;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001249
1250 if (rule->dynamic) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001251 struct buffer *tmp;
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001252
1253 tmp = alloc_trash_chunk();
1254 if (!tmp)
1255 goto sw_failed;
1256
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001257 if (build_logline(s, tmp->area, tmp->size, &rule->be.expr))
1258 backend = proxy_be_by_name(tmp->area);
Dragan Dosen2ae327e2017-10-26 11:25:10 +02001259
1260 free_trash_chunk(tmp);
1261 tmp = NULL;
1262
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01001263 if (!backend)
1264 break;
1265 }
1266 else
1267 backend = rule->be.backend;
1268
Willy Tarreau87b09662015-04-03 00:22:06 +02001269 if (!stream_set_backend(s, backend))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001270 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001271 break;
1272 }
1273 }
1274
1275 /* To ensure correct connection accounting on the backend, we
1276 * have to assign one if it was not set (eg: a listen). This
1277 * measure also takes care of correctly setting the default
1278 * backend if any.
1279 */
Willy Tarreaue7dff022015-04-03 01:14:29 +02001280 if (!(s->flags & SF_BE_ASSIGNED))
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001281 if (!stream_set_backend(s, fe->defbe.be ? fe->defbe.be : s->be))
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001282 goto sw_failed;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001283 }
1284
Willy Tarreaufb356202010-08-03 14:02:05 +02001285 /* we don't want to run the TCP or HTTP filters again if the backend has not changed */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02001286 if (fe == s->be) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001287 s->req.analysers &= ~AN_REQ_INSPECT_BE;
1288 s->req.analysers &= ~AN_REQ_HTTP_PROCESS_BE;
Christopher Faulet0184ea72017-01-05 14:06:34 +01001289 s->req.analysers &= ~AN_REQ_FLT_START_BE;
Willy Tarreaufb356202010-08-03 14:02:05 +02001290 }
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001291
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001292 /* as soon as we know the backend, we must check if we have a matching forced or ignored
Willy Tarreau87b09662015-04-03 00:22:06 +02001293 * persistence rule, and report that in the stream.
Willy Tarreau4de91492010-01-22 19:10:05 +01001294 */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001295 list_for_each_entry(prst_rule, &s->be->persist_rules, list) {
Willy Tarreau4de91492010-01-22 19:10:05 +01001296 int ret = 1;
1297
1298 if (prst_rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001299 ret = acl_exec_cond(prst_rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau4de91492010-01-22 19:10:05 +01001300 ret = acl_pass(ret);
1301 if (prst_rule->cond->pol == ACL_COND_UNLESS)
1302 ret = !ret;
1303 }
1304
1305 if (ret) {
1306 /* no rule, or the rule matches */
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001307 if (prst_rule->type == PERSIST_TYPE_FORCE) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001308 s->flags |= SF_FORCE_PRST;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001309 } else {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001310 s->flags |= SF_IGNORE_PRST;
Cyril Bonté47fdd8e2010-04-25 00:00:51 +02001311 }
Willy Tarreau4de91492010-01-22 19:10:05 +01001312 break;
1313 }
1314 }
1315
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001316 return 1;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001317
1318 sw_failed:
1319 /* immediately abort this request in case of allocation failure */
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001320 channel_abort(&s->req);
1321 channel_abort(&s->res);
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001322
Willy Tarreaue7dff022015-04-03 01:14:29 +02001323 if (!(s->flags & SF_ERR_MASK))
1324 s->flags |= SF_ERR_RESOURCE;
1325 if (!(s->flags & SF_FINST_MASK))
1326 s->flags |= SF_FINST_R;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001327
Willy Tarreaueee5b512015-04-03 23:46:31 +02001328 if (s->txn)
1329 s->txn->status = 500;
Christopher Faulet0184ea72017-01-05 14:06:34 +01001330 s->req.analysers &= AN_REQ_FLT_END;
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001331 s->req.analyse_exp = TICK_ETERNITY;
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001332 return 0;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001333}
1334
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001335/* This stream analyser works on a request. It applies all use-server rules on
1336 * it then returns 1. The data must already be present in the buffer otherwise
1337 * they won't match. It always returns 1.
1338 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001339static int process_server_rules(struct stream *s, struct channel *req, int an_bit)
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001340{
1341 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001342 struct session *sess = s->sess;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001343 struct server_rule *rule;
1344
Christopher Faulet45073512018-07-20 10:16:29 +02001345 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%lu analysers=%02x\n",
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001346 now_ms, __FUNCTION__,
1347 s,
1348 req,
1349 req->rex, req->wex,
1350 req->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02001351 c_data(req),
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001352 req->analysers);
1353
Willy Tarreaue7dff022015-04-03 01:14:29 +02001354 if (!(s->flags & SF_ASSIGNED)) {
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001355 list_for_each_entry(rule, &px->server_rules, list) {
1356 int ret;
1357
Willy Tarreau192252e2015-04-04 01:47:55 +02001358 ret = acl_exec_cond(rule->cond, s->be, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001359 ret = acl_pass(ret);
1360 if (rule->cond->pol == ACL_COND_UNLESS)
1361 ret = !ret;
1362
1363 if (ret) {
1364 struct server *srv = rule->srv.ptr;
1365
Emeric Brun52a91d32017-08-31 14:41:55 +02001366 if ((srv->cur_state != SRV_ST_STOPPED) ||
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001367 (px->options & PR_O_PERSIST) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02001368 (s->flags & SF_FORCE_PRST)) {
1369 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001370 s->target = &srv->obj_type;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001371 break;
1372 }
1373 /* if the server is not UP, let's go on with next rules
1374 * just in case another one is suited.
1375 */
1376 }
1377 }
1378 }
1379
1380 req->analysers &= ~an_bit;
1381 req->analyse_exp = TICK_ETERNITY;
1382 return 1;
1383}
1384
Emeric Brun1d33b292010-01-04 15:47:17 +01001385/* This stream analyser works on a request. It applies all sticking rules on
1386 * it then returns 1. The data must already be present in the buffer otherwise
1387 * they won't match. It always returns 1.
1388 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001389static int process_sticking_rules(struct stream *s, struct channel *req, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001390{
1391 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001392 struct session *sess = s->sess;
Emeric Brun1d33b292010-01-04 15:47:17 +01001393 struct sticking_rule *rule;
1394
Christopher Faulet45073512018-07-20 10:16:29 +02001395 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Emeric Brun1d33b292010-01-04 15:47:17 +01001396 now_ms, __FUNCTION__,
1397 s,
1398 req,
1399 req->rex, req->wex,
1400 req->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02001401 ci_data(req),
Emeric Brun1d33b292010-01-04 15:47:17 +01001402 req->analysers);
1403
1404 list_for_each_entry(rule, &px->sticking_rules, list) {
1405 int ret = 1 ;
1406 int i;
1407
Willy Tarreau9667a802013-12-09 12:52:13 +01001408 /* Only the first stick store-request of each table is applied
1409 * and other ones are ignored. The purpose is to allow complex
1410 * configurations which look for multiple entries by decreasing
1411 * order of precision and to stop at the first which matches.
1412 * An example could be a store of the IP address from an HTTP
1413 * header first, then from the source if not found.
1414 */
Emeric Brun1d33b292010-01-04 15:47:17 +01001415 for (i = 0; i < s->store_count; i++) {
1416 if (rule->table.t == s->store[i].table)
1417 break;
1418 }
1419
1420 if (i != s->store_count)
1421 continue;
1422
1423 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001424 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001425 ret = acl_pass(ret);
1426 if (rule->cond->pol == ACL_COND_UNLESS)
1427 ret = !ret;
1428 }
1429
1430 if (ret) {
1431 struct stktable_key *key;
1432
Willy Tarreau192252e2015-04-04 01:47:55 +02001433 key = stktable_fetch_key(rule->table.t, px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->expr, NULL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001434 if (!key)
1435 continue;
1436
1437 if (rule->flags & STK_IS_MATCH) {
1438 struct stksess *ts;
1439
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001440 if ((ts = stktable_lookup_key(rule->table.t, key)) != NULL) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001441 if (!(s->flags & SF_ASSIGNED)) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001442 struct eb32_node *node;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001443 void *ptr;
Emeric Brun1d33b292010-01-04 15:47:17 +01001444
1445 /* srv found in table */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001446 HA_RWLOCK_RDLOCK(STK_SESS_LOCK, &ts->lock);
Willy Tarreau13c29de2010-06-06 16:40:39 +02001447 ptr = stktable_data_ptr(rule->table.t, ts, STKTABLE_DT_SERVER_ID);
1448 node = eb32_lookup(&px->conf.used_server_id, stktable_data_cast(ptr, server_id));
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001449 HA_RWLOCK_RDUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun1d33b292010-01-04 15:47:17 +01001450 if (node) {
1451 struct server *srv;
1452
1453 srv = container_of(node, struct server, conf.id);
Emeric Brun52a91d32017-08-31 14:41:55 +02001454 if ((srv->cur_state != SRV_ST_STOPPED) ||
Willy Tarreau4de91492010-01-22 19:10:05 +01001455 (px->options & PR_O_PERSIST) ||
Willy Tarreaue7dff022015-04-03 01:14:29 +02001456 (s->flags & SF_FORCE_PRST)) {
1457 s->flags |= SF_DIRECT | SF_ASSIGNED;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001458 s->target = &srv->obj_type;
Emeric Brun1d33b292010-01-04 15:47:17 +01001459 }
1460 }
1461 }
Emeric Brun819fc6f2017-06-13 19:37:32 +02001462 stktable_touch_local(rule->table.t, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001463 }
1464 }
1465 if (rule->flags & STK_IS_STORE) {
1466 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
1467 struct stksess *ts;
1468
1469 ts = stksess_new(rule->table.t, key);
1470 if (ts) {
1471 s->store[s->store_count].table = rule->table.t;
1472 s->store[s->store_count++].ts = ts;
1473 }
1474 }
1475 }
1476 }
1477 }
1478
1479 req->analysers &= ~an_bit;
1480 req->analyse_exp = TICK_ETERNITY;
1481 return 1;
1482}
1483
1484/* This stream analyser works on a response. It applies all store rules on it
1485 * then returns 1. The data must already be present in the buffer otherwise
1486 * they won't match. It always returns 1.
1487 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001488static int process_store_rules(struct stream *s, struct channel *rep, int an_bit)
Emeric Brun1d33b292010-01-04 15:47:17 +01001489{
1490 struct proxy *px = s->be;
Willy Tarreau192252e2015-04-04 01:47:55 +02001491 struct session *sess = s->sess;
Emeric Brun1d33b292010-01-04 15:47:17 +01001492 struct sticking_rule *rule;
1493 int i;
Willy Tarreau9667a802013-12-09 12:52:13 +01001494 int nbreq = s->store_count;
Emeric Brun1d33b292010-01-04 15:47:17 +01001495
Christopher Faulet45073512018-07-20 10:16:29 +02001496 DPRINTF(stderr,"[%u] %s: stream=%p b=%p, exp(r,w)=%u,%u bf=%08x bh=%lu analysers=%02x\n",
Emeric Brun1d33b292010-01-04 15:47:17 +01001497 now_ms, __FUNCTION__,
1498 s,
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001499 rep,
1500 rep->rex, rep->wex,
1501 rep->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02001502 ci_data(rep),
Willy Tarreau2e2b3eb2010-02-09 20:55:44 +01001503 rep->analysers);
Emeric Brun1d33b292010-01-04 15:47:17 +01001504
1505 list_for_each_entry(rule, &px->storersp_rules, list) {
1506 int ret = 1 ;
Emeric Brun1d33b292010-01-04 15:47:17 +01001507
Willy Tarreau9667a802013-12-09 12:52:13 +01001508 /* Only the first stick store-response of each table is applied
1509 * and other ones are ignored. The purpose is to allow complex
1510 * configurations which look for multiple entries by decreasing
1511 * order of precision and to stop at the first which matches.
1512 * An example could be a store of a set-cookie value, with a
1513 * fallback to a parameter found in a 302 redirect.
1514 *
1515 * The store-response rules are not allowed to override the
1516 * store-request rules for the same table, but they may coexist.
1517 * Thus we can have up to one store-request entry and one store-
1518 * response entry for the same table at any time.
1519 */
1520 for (i = nbreq; i < s->store_count; i++) {
1521 if (rule->table.t == s->store[i].table)
1522 break;
1523 }
1524
1525 /* skip existing entries for this table */
1526 if (i < s->store_count)
1527 continue;
1528
Emeric Brun1d33b292010-01-04 15:47:17 +01001529 if (rule->cond) {
Willy Tarreau192252e2015-04-04 01:47:55 +02001530 ret = acl_exec_cond(rule->cond, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001531 ret = acl_pass(ret);
1532 if (rule->cond->pol == ACL_COND_UNLESS)
1533 ret = !ret;
1534 }
1535
1536 if (ret) {
1537 struct stktable_key *key;
1538
Willy Tarreau192252e2015-04-04 01:47:55 +02001539 key = stktable_fetch_key(rule->table.t, px, sess, s, SMP_OPT_DIR_RES|SMP_OPT_FINAL, rule->expr, NULL);
Emeric Brun1d33b292010-01-04 15:47:17 +01001540 if (!key)
1541 continue;
1542
Willy Tarreau37e340c2013-12-06 23:05:21 +01001543 if (s->store_count < (sizeof(s->store) / sizeof(s->store[0]))) {
Emeric Brun1d33b292010-01-04 15:47:17 +01001544 struct stksess *ts;
1545
1546 ts = stksess_new(rule->table.t, key);
1547 if (ts) {
1548 s->store[s->store_count].table = rule->table.t;
Emeric Brun1d33b292010-01-04 15:47:17 +01001549 s->store[s->store_count++].ts = ts;
1550 }
1551 }
1552 }
1553 }
1554
1555 /* process store request and store response */
1556 for (i = 0; i < s->store_count; i++) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001557 struct stksess *ts;
Willy Tarreau13c29de2010-06-06 16:40:39 +02001558 void *ptr;
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001559
Willy Tarreauc93cd162014-05-13 15:54:22 +02001560 if (objt_server(s->target) && objt_server(s->target)->flags & SRV_F_NON_STICK) {
Simon Hormanfa461682011-06-25 09:39:49 +09001561 stksess_free(s->store[i].table, s->store[i].ts);
1562 s->store[i].ts = NULL;
1563 continue;
1564 }
1565
Emeric Brun819fc6f2017-06-13 19:37:32 +02001566 ts = stktable_set_entry(s->store[i].table, s->store[i].ts);
1567 if (ts != s->store[i].ts) {
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001568 /* the entry already existed, we can free ours */
Emeric Brun1d33b292010-01-04 15:47:17 +01001569 stksess_free(s->store[i].table, s->store[i].ts);
Emeric Brun1d33b292010-01-04 15:47:17 +01001570 }
Willy Tarreauf16d2b82010-06-06 15:38:59 +02001571 s->store[i].ts = NULL;
Emeric Brun819fc6f2017-06-13 19:37:32 +02001572
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001573 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Willy Tarreau13c29de2010-06-06 16:40:39 +02001574 ptr = stktable_data_ptr(s->store[i].table, ts, STKTABLE_DT_SERVER_ID);
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001575 stktable_data_cast(ptr, server_id) = objt_server(s->target)->puid;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001576 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +02001577 stktable_touch_local(s->store[i].table, ts, 1);
Emeric Brun1d33b292010-01-04 15:47:17 +01001578 }
Willy Tarreau2a164ee2010-06-18 09:57:45 +02001579 s->store_count = 0; /* everything is stored */
Emeric Brun1d33b292010-01-04 15:47:17 +01001580
1581 rep->analysers &= ~an_bit;
1582 rep->analyse_exp = TICK_ETERNITY;
1583 return 1;
1584}
1585
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001586/* This macro is very specific to the function below. See the comments in
Willy Tarreau87b09662015-04-03 00:22:06 +02001587 * process_stream() below to understand the logic and the tests.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001588 */
1589#define UPDATE_ANALYSERS(real, list, back, flag) { \
1590 list = (((list) & ~(flag)) | ~(back)) & (real); \
1591 back = real; \
1592 if (!(list)) \
1593 break; \
1594 if (((list) ^ ((list) & ((list) - 1))) < (flag)) \
1595 continue; \
1596}
1597
Christopher Fauleta9215b72016-05-11 17:06:28 +02001598/* These 2 following macros call an analayzer for the specified channel if the
1599 * right flag is set. The first one is used for "filterable" analyzers. If a
Christopher Faulet3a394fa2016-05-11 17:13:39 +02001600 * stream has some registered filters, pre and post analyaze callbacks are
Christopher Faulet0184ea72017-01-05 14:06:34 +01001601 * called. The second are used for other analyzers (AN_REQ/RES_FLT_* and
Christopher Fauleta9215b72016-05-11 17:06:28 +02001602 * AN_REQ/RES_HTTP_XFER_BODY) */
1603#define FLT_ANALYZE(strm, chn, fun, list, back, flag, ...) \
1604 { \
1605 if ((list) & (flag)) { \
1606 if (HAS_FILTERS(strm)) { \
Christopher Faulet3a394fa2016-05-11 17:13:39 +02001607 if (!flt_pre_analyze((strm), (chn), (flag))) \
Christopher Fauleta9215b72016-05-11 17:06:28 +02001608 break; \
1609 if (!fun((strm), (chn), (flag), ##__VA_ARGS__)) \
1610 break; \
Christopher Faulet3a394fa2016-05-11 17:13:39 +02001611 if (!flt_post_analyze((strm), (chn), (flag))) \
1612 break; \
Christopher Fauleta9215b72016-05-11 17:06:28 +02001613 } \
1614 else { \
1615 if (!fun((strm), (chn), (flag), ##__VA_ARGS__)) \
1616 break; \
1617 } \
1618 UPDATE_ANALYSERS((chn)->analysers, (list), \
1619 (back), (flag)); \
1620 } \
1621 }
1622
1623#define ANALYZE(strm, chn, fun, list, back, flag, ...) \
1624 { \
1625 if ((list) & (flag)) { \
1626 if (!fun((strm), (chn), (flag), ##__VA_ARGS__)) \
1627 break; \
1628 UPDATE_ANALYSERS((chn)->analysers, (list), \
1629 (back), (flag)); \
1630 } \
1631 }
1632
Willy Tarreau87b09662015-04-03 00:22:06 +02001633/* Processes the client, server, request and response jobs of a stream task,
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001634 * then puts it back to the wait queue in a clean state, or cleans up its
1635 * resources if it must be deleted. Returns in <next> the date the task wants
1636 * to be woken up, or TICK_ETERNITY. In order not to call all functions for
1637 * nothing too many times, the request and response buffers flags are monitored
1638 * and each function is called only if at least another function has changed at
1639 * least one flag it is interested in.
1640 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02001641struct task *process_stream(struct task *t, void *context, unsigned short state)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001642{
Willy Tarreau827aee92011-03-10 16:55:02 +01001643 struct server *srv;
Olivier Houchard9f6af332018-05-25 14:04:04 +02001644 struct stream *s = context;
Willy Tarreaufb0afa72015-04-03 14:46:27 +02001645 struct session *sess = s->sess;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001646 unsigned int rqf_last, rpf_last;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001647 unsigned int rq_prod_last, rq_cons_last;
1648 unsigned int rp_cons_last, rp_prod_last;
Willy Tarreau576507f2010-01-07 00:09:04 +01001649 unsigned int req_ana_back;
Willy Tarreau8f128b42014-11-28 15:07:47 +01001650 struct channel *req, *res;
1651 struct stream_interface *si_f, *si_b;
1652
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001653 activity[tid].stream++;
1654
Willy Tarreau8f128b42014-11-28 15:07:47 +01001655 req = &s->req;
1656 res = &s->res;
1657
1658 si_f = &s->si[0];
1659 si_b = &s->si[1];
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001660
1661 //DPRINTF(stderr, "%s:%d: cs=%d ss=%d(%d) rqf=0x%08x rpf=0x%08x\n", __FUNCTION__, __LINE__,
Willy Tarreau8f128b42014-11-28 15:07:47 +01001662 // si_f->state, si_b->state, si_b->err_type, req->flags, res->flags);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001663
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001664 /* this data may be no longer valid, clear it */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001665 if (s->txn)
1666 memset(&s->txn->auth, 0, sizeof(s->txn->auth));
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01001667
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02001668 /* This flag must explicitly be set every time */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001669 req->flags &= ~(CF_READ_NOEXP|CF_WAKE_WRITE);
1670 res->flags &= ~(CF_READ_NOEXP|CF_WAKE_WRITE);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001671
1672 /* Keep a copy of req/rep flags so that we can detect shutdowns */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001673 rqf_last = req->flags & ~CF_MASK_ANALYSER;
1674 rpf_last = res->flags & ~CF_MASK_ANALYSER;
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001675
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001676 /* we don't want the stream interface functions to recursively wake us up */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001677 si_f->flags |= SI_FL_DONT_WAKE;
1678 si_b->flags |= SI_FL_DONT_WAKE;
Willy Tarreau89f7ef22009-09-05 20:57:35 +02001679
Christopher Faulet9d810ca2016-12-08 22:33:52 +01001680 /* update pending events */
Olivier Houchard9f6af332018-05-25 14:04:04 +02001681 s->pending_events |= (state & TASK_WOKEN_ANY);
Christopher Faulet9d810ca2016-12-08 22:33:52 +01001682
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001683 /* 1a: Check for low level timeouts if needed. We just set a flag on
1684 * stream interfaces when their timeouts have expired.
1685 */
Christopher Faulet9d810ca2016-12-08 22:33:52 +01001686 if (unlikely(s->pending_events & TASK_WOKEN_TIMER)) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001687 stream_int_check_timeouts(si_f);
1688 stream_int_check_timeouts(si_b);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001689
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001690 /* check channel timeouts, and close the corresponding stream interfaces
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001691 * for future reads or writes. Note: this will also concern upper layers
1692 * but we do not touch any other flag. We must be careful and correctly
1693 * detect state changes when calling them.
1694 */
1695
Willy Tarreau8f128b42014-11-28 15:07:47 +01001696 channel_check_timeouts(req);
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001697
Willy Tarreau8f128b42014-11-28 15:07:47 +01001698 if (unlikely((req->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
1699 si_b->flags |= SI_FL_NOLINGER;
1700 si_shutw(si_b);
Willy Tarreau14641402009-12-29 14:49:56 +01001701 }
1702
Willy Tarreau8f128b42014-11-28 15:07:47 +01001703 if (unlikely((req->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
1704 if (si_f->flags & SI_FL_NOHALF)
1705 si_f->flags |= SI_FL_NOLINGER;
1706 si_shutr(si_f);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001707 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001708
Willy Tarreau8f128b42014-11-28 15:07:47 +01001709 channel_check_timeouts(res);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001710
Willy Tarreau8f128b42014-11-28 15:07:47 +01001711 if (unlikely((res->flags & (CF_SHUTW|CF_WRITE_TIMEOUT)) == CF_WRITE_TIMEOUT)) {
1712 si_f->flags |= SI_FL_NOLINGER;
1713 si_shutw(si_f);
Willy Tarreau14641402009-12-29 14:49:56 +01001714 }
1715
Willy Tarreau8f128b42014-11-28 15:07:47 +01001716 if (unlikely((res->flags & (CF_SHUTR|CF_READ_TIMEOUT)) == CF_READ_TIMEOUT)) {
1717 if (si_b->flags & SI_FL_NOHALF)
1718 si_b->flags |= SI_FL_NOLINGER;
1719 si_shutr(si_b);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02001720 }
Willy Tarreau798f4322012-11-08 14:49:17 +01001721
Christopher Fauleta00d8172016-11-10 14:58:05 +01001722 if (HAS_FILTERS(s))
1723 flt_stream_check_timeouts(s);
1724
Willy Tarreau798f4322012-11-08 14:49:17 +01001725 /* Once in a while we're woken up because the task expires. But
1726 * this does not necessarily mean that a timeout has been reached.
Willy Tarreau87b09662015-04-03 00:22:06 +02001727 * So let's not run a whole stream processing if only an expiration
Willy Tarreau798f4322012-11-08 14:49:17 +01001728 * timeout needs to be refreshed.
1729 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001730 if (!((req->flags | res->flags) &
Willy Tarreau798f4322012-11-08 14:49:17 +01001731 (CF_SHUTR|CF_READ_ACTIVITY|CF_READ_TIMEOUT|CF_SHUTW|
Christopher Fauletc5a9d5b2017-11-09 09:36:43 +01001732 CF_WRITE_ACTIVITY|CF_WRITE_EVENT|CF_WRITE_TIMEOUT|CF_ANA_TIMEOUT)) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01001733 !((si_f->flags | si_b->flags) & (SI_FL_EXP|SI_FL_ERR)) &&
Christopher Faulet9d810ca2016-12-08 22:33:52 +01001734 ((s->pending_events & TASK_WOKEN_ANY) == TASK_WOKEN_TIMER)) {
Willy Tarreau5fb04712016-05-04 10:18:37 +02001735 si_f->flags &= ~SI_FL_DONT_WAKE;
1736 si_b->flags &= ~SI_FL_DONT_WAKE;
Willy Tarreau798f4322012-11-08 14:49:17 +01001737 goto update_exp_and_leave;
Willy Tarreau5fb04712016-05-04 10:18:37 +02001738 }
Willy Tarreaub67a9b82009-06-21 22:03:51 +02001739 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001740
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001741 /* below we may emit error messages so we have to ensure that we have
1742 * our buffers properly allocated.
1743 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001744 if (!stream_alloc_work_buffer(s)) {
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001745 /* No buffer available, we've been subscribed to the list of
1746 * buffer waiters, let's wait for our turn.
1747 */
Willy Tarreau5fb04712016-05-04 10:18:37 +02001748 si_f->flags &= ~SI_FL_DONT_WAKE;
1749 si_b->flags &= ~SI_FL_DONT_WAKE;
Willy Tarreau10fc09e2014-11-25 19:46:36 +01001750 goto update_exp_and_leave;
1751 }
1752
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001753 /* 1b: check for low-level errors reported at the stream interface.
1754 * First we check if it's a retryable error (in which case we don't
1755 * want to tell the buffer). Otherwise we report the error one level
1756 * upper by setting flags into the buffers. Note that the side towards
1757 * the client cannot have connect (hence retryable) errors. Also, the
1758 * connection setup code must be able to deal with any type of abort.
1759 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001760 srv = objt_server(s->target);
Willy Tarreau8f128b42014-11-28 15:07:47 +01001761 if (unlikely(si_f->flags & SI_FL_ERR)) {
1762 if (si_f->state == SI_ST_EST || si_f->state == SI_ST_DIS) {
1763 si_shutr(si_f);
1764 si_shutw(si_f);
1765 stream_int_report_error(si_f);
1766 if (!(req->analysers) && !(res->analysers)) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001767 HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
1768 HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001769 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02001770 HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001771 if (!(s->flags & SF_ERR_MASK))
1772 s->flags |= SF_ERR_CLICL;
1773 if (!(s->flags & SF_FINST_MASK))
1774 s->flags |= SF_FINST_D;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001775 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001776 }
1777 }
1778
Willy Tarreau8f128b42014-11-28 15:07:47 +01001779 if (unlikely(si_b->flags & SI_FL_ERR)) {
1780 if (si_b->state == SI_ST_EST || si_b->state == SI_ST_DIS) {
1781 si_shutr(si_b);
1782 si_shutw(si_b);
1783 stream_int_report_error(si_b);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001784 HA_ATOMIC_ADD(&s->be->be_counters.failed_resp, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001785 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02001786 HA_ATOMIC_ADD(&srv->counters.failed_resp, 1);
Willy Tarreau8f128b42014-11-28 15:07:47 +01001787 if (!(req->analysers) && !(res->analysers)) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001788 HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
1789 HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01001790 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02001791 HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02001792 if (!(s->flags & SF_ERR_MASK))
1793 s->flags |= SF_ERR_SRVCL;
1794 if (!(s->flags & SF_FINST_MASK))
1795 s->flags |= SF_FINST_D;
Willy Tarreau05cb29b2008-12-14 11:44:04 +01001796 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001797 }
1798 /* note: maybe we should process connection errors here ? */
1799 }
1800
Willy Tarreau8f128b42014-11-28 15:07:47 +01001801 if (si_b->state == SI_ST_CON) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001802 /* we were trying to establish a connection on the server side,
1803 * maybe it succeeded, maybe it failed, maybe we timed out, ...
1804 */
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001805 if (unlikely(!sess_update_st_con_tcp(s)))
1806 sess_update_st_cer(s);
Willy Tarreau8f128b42014-11-28 15:07:47 +01001807 else if (si_b->state == SI_ST_EST)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01001808 sess_establish(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001809
1810 /* state is now one of SI_ST_CON (still in progress), SI_ST_EST
1811 * (established), SI_ST_DIS (abort), SI_ST_CLO (last error),
1812 * SI_ST_ASS/SI_ST_TAR/SI_ST_REQ for retryable errors.
1813 */
1814 }
1815
Willy Tarreau8f128b42014-11-28 15:07:47 +01001816 rq_prod_last = si_f->state;
1817 rq_cons_last = si_b->state;
1818 rp_cons_last = si_f->state;
1819 rp_prod_last = si_b->state;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001820
1821 resync_stream_interface:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001822 /* Check for connection closure */
1823
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001824 DPRINTF(stderr,
Christopher Faulet45073512018-07-20 10:16:29 +02001825 "[%u] %s:%d: task=%p s=%p, sfl=0x%08x, rq=%p, rp=%p, exp(r,w)=%u,%u rqf=%08x rpf=%08x rqh=%lu rqt=%lu rph=%lu rpt=%lu cs=%d ss=%d, cet=0x%x set=0x%x retr=%d\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001826 now_ms, __FUNCTION__, __LINE__,
1827 t,
1828 s, s->flags,
Willy Tarreau8f128b42014-11-28 15:07:47 +01001829 req, res,
1830 req->rex, res->wex,
1831 req->flags, res->flags,
Christopher Faulet45073512018-07-20 10:16:29 +02001832 ci_data(req), co_data(req), ci_data(res), co_data(res), si_f->state, si_b->state,
Willy Tarreau8f128b42014-11-28 15:07:47 +01001833 si_f->err_type, si_b->err_type,
1834 si_b->conn_retries);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001835
1836 /* nothing special to be done on client side */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001837 if (unlikely(si_f->state == SI_ST_DIS))
1838 si_f->state = SI_ST_CLO;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001839
1840 /* When a server-side connection is released, we have to count it and
1841 * check for pending connections on this server.
1842 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001843 if (unlikely(si_b->state == SI_ST_DIS)) {
1844 si_b->state = SI_ST_CLO;
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001845 srv = objt_server(s->target);
Willy Tarreau827aee92011-03-10 16:55:02 +01001846 if (srv) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02001847 if (s->flags & SF_CURR_SESS) {
1848 s->flags &= ~SF_CURR_SESS;
Christopher Faulet29f77e82017-06-08 14:04:45 +02001849 HA_ATOMIC_SUB(&srv->cur_sess, 1);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001850 }
1851 sess_change_server(s, NULL);
Willy Tarreau827aee92011-03-10 16:55:02 +01001852 if (may_dequeue_tasks(srv, s->be))
1853 process_srv_queue(srv);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001854 }
1855 }
1856
1857 /*
1858 * Note: of the transient states (REQ, CER, DIS), only REQ may remain
1859 * at this point.
1860 */
1861
Willy Tarreau0be0ef92009-03-08 19:20:25 +01001862 resync_request:
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001863 /* Analyse request */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001864 if (((req->flags & ~rqf_last) & CF_MASK_ANALYSER) ||
1865 ((req->flags ^ rqf_last) & CF_MASK_STATIC) ||
Willy Tarreau33982cb2017-11-20 15:37:13 +01001866 (req->analysers && (req->flags & CF_SHUTW)) ||
Willy Tarreau8f128b42014-11-28 15:07:47 +01001867 si_f->state != rq_prod_last ||
1868 si_b->state != rq_cons_last ||
Christopher Faulet9d810ca2016-12-08 22:33:52 +01001869 s->pending_events & TASK_WOKEN_MSG) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001870 unsigned int flags = req->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001871
Willy Tarreau8f128b42014-11-28 15:07:47 +01001872 if (si_f->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001873 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001874 unsigned int ana_list;
1875 unsigned int ana_back;
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001876
Willy Tarreau90deb182010-01-07 00:20:41 +01001877 /* it's up to the analysers to stop new connections,
1878 * disable reading or closing. Note: if an analyser
1879 * disables any of these bits, it is responsible for
1880 * enabling them again when it disables itself, so
1881 * that other analysers are called in similar conditions.
1882 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001883 channel_auto_read(req);
1884 channel_auto_connect(req);
1885 channel_auto_close(req);
Willy Tarreauedcf6682008-11-30 23:15:34 +01001886
1887 /* We will call all analysers for which a bit is set in
Willy Tarreau8f128b42014-11-28 15:07:47 +01001888 * req->analysers, following the bit order from LSB
Willy Tarreauedcf6682008-11-30 23:15:34 +01001889 * to MSB. The analysers must remove themselves from
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001890 * the list when not needed. Any analyser may return 0
1891 * to break out of the loop, either because of missing
1892 * data to take a decision, or because it decides to
Willy Tarreau87b09662015-04-03 00:22:06 +02001893 * kill the stream. We loop at least once through each
Willy Tarreau1a52dbd2009-06-28 19:37:53 +02001894 * analyser, and we may loop again if other analysers
1895 * are added in the middle.
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001896 *
1897 * We build a list of analysers to run. We evaluate all
1898 * of these analysers in the order of the lower bit to
1899 * the higher bit. This ordering is very important.
1900 * An analyser will often add/remove other analysers,
1901 * including itself. Any changes to itself have no effect
1902 * on the loop. If it removes any other analysers, we
1903 * want those analysers not to be called anymore during
1904 * this loop. If it adds an analyser that is located
1905 * after itself, we want it to be scheduled for being
1906 * processed during the loop. If it adds an analyser
1907 * which is located before it, we want it to switch to
1908 * it immediately, even if it has already been called
1909 * once but removed since.
1910 *
1911 * In order to achieve this, we compare the analyser
1912 * list after the call with a copy of it before the
1913 * call. The work list is fed with analyser bits that
1914 * appeared during the call. Then we compare previous
1915 * work list with the new one, and check the bits that
1916 * appeared. If the lowest of these bits is lower than
1917 * the current bit, it means we have enabled a previous
1918 * analyser and must immediately loop again.
Willy Tarreauedcf6682008-11-30 23:15:34 +01001919 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001920
Willy Tarreau8f128b42014-11-28 15:07:47 +01001921 ana_list = ana_back = req->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001922 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001923 /* Warning! ensure that analysers are always placed in ascending order! */
Christopher Faulet0184ea72017-01-05 14:06:34 +01001924 ANALYZE (s, req, flt_start_analyze, ana_list, ana_back, AN_REQ_FLT_START_FE);
Christopher Fauleta9215b72016-05-11 17:06:28 +02001925 FLT_ANALYZE(s, req, tcp_inspect_request, ana_list, ana_back, AN_REQ_INSPECT_FE);
1926 FLT_ANALYZE(s, req, http_wait_for_request, ana_list, ana_back, AN_REQ_WAIT_HTTP);
1927 FLT_ANALYZE(s, req, http_wait_for_request_body, ana_list, ana_back, AN_REQ_HTTP_BODY);
1928 FLT_ANALYZE(s, req, http_process_req_common, ana_list, ana_back, AN_REQ_HTTP_PROCESS_FE, sess->fe);
1929 FLT_ANALYZE(s, req, process_switching_rules, ana_list, ana_back, AN_REQ_SWITCHING_RULES);
Christopher Faulet0184ea72017-01-05 14:06:34 +01001930 ANALYZE (s, req, flt_start_analyze, ana_list, ana_back, AN_REQ_FLT_START_BE);
Christopher Fauleta9215b72016-05-11 17:06:28 +02001931 FLT_ANALYZE(s, req, tcp_inspect_request, ana_list, ana_back, AN_REQ_INSPECT_BE);
1932 FLT_ANALYZE(s, req, http_process_req_common, ana_list, ana_back, AN_REQ_HTTP_PROCESS_BE, s->be);
1933 FLT_ANALYZE(s, req, http_process_tarpit, ana_list, ana_back, AN_REQ_HTTP_TARPIT);
1934 FLT_ANALYZE(s, req, process_server_rules, ana_list, ana_back, AN_REQ_SRV_RULES);
1935 FLT_ANALYZE(s, req, http_process_request, ana_list, ana_back, AN_REQ_HTTP_INNER);
1936 FLT_ANALYZE(s, req, tcp_persist_rdp_cookie, ana_list, ana_back, AN_REQ_PRST_RDP_COOKIE);
1937 FLT_ANALYZE(s, req, process_sticking_rules, ana_list, ana_back, AN_REQ_STICKING_RULES);
Christopher Faulet0184ea72017-01-05 14:06:34 +01001938 ANALYZE (s, req, flt_analyze_http_headers, ana_list, ana_back, AN_REQ_FLT_HTTP_HDRS);
Christopher Fauleta9215b72016-05-11 17:06:28 +02001939 ANALYZE (s, req, http_request_forward_body, ana_list, ana_back, AN_REQ_HTTP_XFER_BODY);
Christopher Faulet0184ea72017-01-05 14:06:34 +01001940 ANALYZE (s, req, flt_xfer_data, ana_list, ana_back, AN_REQ_FLT_XFER_DATA);
1941 ANALYZE (s, req, flt_end_analyze, ana_list, ana_back, AN_REQ_FLT_END);
Willy Tarreaue34070e2010-01-08 00:32:27 +01001942 break;
1943 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01001944 }
Willy Tarreau84455332009-03-15 22:34:05 +01001945
Willy Tarreau8f128b42014-11-28 15:07:47 +01001946 rq_prod_last = si_f->state;
1947 rq_cons_last = si_b->state;
1948 req->flags &= ~CF_WAKE_ONCE;
1949 rqf_last = req->flags;
Willy Tarreau815a9b22010-07-27 17:15:12 +02001950
Willy Tarreau8f128b42014-11-28 15:07:47 +01001951 if ((req->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001952 goto resync_request;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001953 }
1954
Willy Tarreau576507f2010-01-07 00:09:04 +01001955 /* we'll monitor the request analysers while parsing the response,
1956 * because some response analysers may indirectly enable new request
1957 * analysers (eg: HTTP keep-alive).
1958 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001959 req_ana_back = req->analysers;
Willy Tarreau576507f2010-01-07 00:09:04 +01001960
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001961 resync_response:
1962 /* Analyse response */
1963
Willy Tarreau8f128b42014-11-28 15:07:47 +01001964 if (((res->flags & ~rpf_last) & CF_MASK_ANALYSER) ||
1965 (res->flags ^ rpf_last) & CF_MASK_STATIC ||
Willy Tarreau33982cb2017-11-20 15:37:13 +01001966 (res->analysers && (res->flags & CF_SHUTW)) ||
Willy Tarreau8f128b42014-11-28 15:07:47 +01001967 si_f->state != rp_cons_last ||
1968 si_b->state != rp_prod_last ||
Christopher Faulet9d810ca2016-12-08 22:33:52 +01001969 s->pending_events & TASK_WOKEN_MSG) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01001970 unsigned int flags = res->flags;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02001971
Willy Tarreau8f128b42014-11-28 15:07:47 +01001972 if (si_b->state >= SI_ST_EST) {
Willy Tarreaue34070e2010-01-08 00:32:27 +01001973 int max_loops = global.tune.maxpollevents;
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001974 unsigned int ana_list;
1975 unsigned int ana_back;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001976
Willy Tarreau90deb182010-01-07 00:20:41 +01001977 /* it's up to the analysers to stop disable reading or
1978 * closing. Note: if an analyser disables any of these
1979 * bits, it is responsible for enabling them again when
1980 * it disables itself, so that other analysers are called
1981 * in similar conditions.
1982 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01001983 channel_auto_read(res);
1984 channel_auto_close(res);
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001985
1986 /* We will call all analysers for which a bit is set in
Willy Tarreau8f128b42014-11-28 15:07:47 +01001987 * res->analysers, following the bit order from LSB
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001988 * to MSB. The analysers must remove themselves from
1989 * the list when not needed. Any analyser may return 0
1990 * to break out of the loop, either because of missing
1991 * data to take a decision, or because it decides to
Willy Tarreau87b09662015-04-03 00:22:06 +02001992 * kill the stream. We loop at least once through each
Willy Tarreaub37c27e2009-10-18 22:53:08 +02001993 * analyser, and we may loop again if other analysers
1994 * are added in the middle.
1995 */
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001996
Willy Tarreau8f128b42014-11-28 15:07:47 +01001997 ana_list = ana_back = res->analysers;
Willy Tarreaue34070e2010-01-08 00:32:27 +01001998 while (ana_list && max_loops--) {
Willy Tarreau1e0bbaf2010-01-06 23:53:24 +01001999 /* Warning! ensure that analysers are always placed in ascending order! */
Christopher Faulet0184ea72017-01-05 14:06:34 +01002000 ANALYZE (s, res, flt_start_analyze, ana_list, ana_back, AN_RES_FLT_START_FE);
2001 ANALYZE (s, res, flt_start_analyze, ana_list, ana_back, AN_RES_FLT_START_BE);
Christopher Fauleta9215b72016-05-11 17:06:28 +02002002 FLT_ANALYZE(s, res, tcp_inspect_response, ana_list, ana_back, AN_RES_INSPECT);
2003 FLT_ANALYZE(s, res, http_wait_for_response, ana_list, ana_back, AN_RES_WAIT_HTTP);
2004 FLT_ANALYZE(s, res, process_store_rules, ana_list, ana_back, AN_RES_STORE_RULES);
2005 FLT_ANALYZE(s, res, http_process_res_common, ana_list, ana_back, AN_RES_HTTP_PROCESS_BE, s->be);
Christopher Faulet0184ea72017-01-05 14:06:34 +01002006 ANALYZE (s, res, flt_analyze_http_headers, ana_list, ana_back, AN_RES_FLT_HTTP_HDRS);
Christopher Fauleta9215b72016-05-11 17:06:28 +02002007 ANALYZE (s, res, http_response_forward_body, ana_list, ana_back, AN_RES_HTTP_XFER_BODY);
Christopher Faulet0184ea72017-01-05 14:06:34 +01002008 ANALYZE (s, res, flt_xfer_data, ana_list, ana_back, AN_RES_FLT_XFER_DATA);
2009 ANALYZE (s, res, flt_end_analyze, ana_list, ana_back, AN_RES_FLT_END);
Willy Tarreaue34070e2010-01-08 00:32:27 +01002010 break;
2011 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002012 }
2013
Willy Tarreau8f128b42014-11-28 15:07:47 +01002014 rp_cons_last = si_f->state;
2015 rp_prod_last = si_b->state;
Christopher Fauletcdaea892017-07-06 15:49:30 +02002016 res->flags &= ~CF_WAKE_ONCE;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002017 rpf_last = res->flags;
Willy Tarreau815a9b22010-07-27 17:15:12 +02002018
Willy Tarreau8f128b42014-11-28 15:07:47 +01002019 if ((res->flags ^ flags) & CF_MASK_STATIC)
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002020 goto resync_response;
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002021 }
2022
Willy Tarreau576507f2010-01-07 00:09:04 +01002023 /* maybe someone has added some request analysers, so we must check and loop */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002024 if (req->analysers & ~req_ana_back)
Willy Tarreau576507f2010-01-07 00:09:04 +01002025 goto resync_request;
2026
Willy Tarreau8f128b42014-11-28 15:07:47 +01002027 if ((req->flags & ~rqf_last) & CF_MASK_ANALYSER)
Willy Tarreau0499e352010-12-17 07:13:42 +01002028 goto resync_request;
2029
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002030 /* FIXME: here we should call protocol handlers which rely on
2031 * both buffers.
2032 */
2033
2034
2035 /*
Willy Tarreau87b09662015-04-03 00:22:06 +02002036 * Now we propagate unhandled errors to the stream. Normally
Willy Tarreauae526782010-03-04 20:34:23 +01002037 * we're just in a data phase here since it means we have not
2038 * seen any analyser who could set an error status.
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002039 */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002040 srv = objt_server(s->target);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002041 if (unlikely(!(s->flags & SF_ERR_MASK))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002042 if (req->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002043 /* Report it if the client got an error or a read timeout expired */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002044 req->analysers = 0;
2045 if (req->flags & CF_READ_ERROR) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002046 HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
2047 HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002048 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02002049 HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002050 s->flags |= SF_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002051 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01002052 else if (req->flags & CF_READ_TIMEOUT) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002053 HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
2054 HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002055 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02002056 HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002057 s->flags |= SF_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01002058 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01002059 else if (req->flags & CF_WRITE_ERROR) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002060 HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
2061 HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002062 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02002063 HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002064 s->flags |= SF_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002065 }
2066 else {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002067 HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
2068 HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002069 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02002070 HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002071 s->flags |= SF_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002072 }
Willy Tarreau84455332009-03-15 22:34:05 +01002073 sess_set_term_flags(s);
2074 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01002075 else if (res->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) {
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002076 /* Report it if the server got an error or a read timeout expired */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002077 res->analysers = 0;
2078 if (res->flags & CF_READ_ERROR) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002079 HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
2080 HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002081 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02002082 HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002083 s->flags |= SF_ERR_SRVCL;
Willy Tarreauae526782010-03-04 20:34:23 +01002084 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01002085 else if (res->flags & CF_READ_TIMEOUT) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002086 HA_ATOMIC_ADD(&s->be->be_counters.srv_aborts, 1);
2087 HA_ATOMIC_ADD(&sess->fe->fe_counters.srv_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002088 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02002089 HA_ATOMIC_ADD(&srv->counters.srv_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002090 s->flags |= SF_ERR_SRVTO;
Willy Tarreauae526782010-03-04 20:34:23 +01002091 }
Willy Tarreau8f128b42014-11-28 15:07:47 +01002092 else if (res->flags & CF_WRITE_ERROR) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002093 HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
2094 HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002095 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02002096 HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002097 s->flags |= SF_ERR_CLICL;
Willy Tarreauae526782010-03-04 20:34:23 +01002098 }
2099 else {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002100 HA_ATOMIC_ADD(&s->be->be_counters.cli_aborts, 1);
2101 HA_ATOMIC_ADD(&sess->fe->fe_counters.cli_aborts, 1);
Willy Tarreau827aee92011-03-10 16:55:02 +01002102 if (srv)
Christopher Faulet29f77e82017-06-08 14:04:45 +02002103 HA_ATOMIC_ADD(&srv->counters.cli_aborts, 1);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002104 s->flags |= SF_ERR_CLITO;
Willy Tarreauae526782010-03-04 20:34:23 +01002105 }
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002106 sess_set_term_flags(s);
2107 }
Willy Tarreau84455332009-03-15 22:34:05 +01002108 }
2109
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002110 /*
2111 * Here we take care of forwarding unhandled data. This also includes
2112 * connection establishments and shutdown requests.
2113 */
2114
2115
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002116 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002117 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002118 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002119 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002120 */
Christopher Faulet35fe6992017-08-29 16:06:38 +02002121 if (unlikely((!req->analysers || (req->analysers == AN_REQ_FLT_END && !(req->flags & CF_FLT_ANALYZE))) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002122 !(req->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
2123 (si_f->state >= SI_ST_EST) &&
2124 (req->to_forward != CHN_INFINITE_FORWARD))) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002125 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002126 * attached to it. If any data are left in, we'll permit them to
2127 * move.
2128 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002129 channel_auto_read(req);
2130 channel_auto_connect(req);
2131 channel_auto_close(req);
Willy Tarreau144c5c42018-06-15 15:16:51 +02002132 c_adv(req, ci_data(req));
Willy Tarreau5bd8c372009-01-19 00:32:22 +01002133
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002134 /* We'll let data flow between the producer (if still connected)
2135 * to the consumer (which might possibly not be connected yet).
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002136 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002137 if (!(req->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8bf242b2016-05-04 14:05:58 +02002138 channel_forward_forever(req);
Willy Tarreau42529c32015-07-09 18:38:57 +02002139
2140 /* Just in order to support fetching HTTP contents after start
2141 * of forwarding when the HTTP forwarding analyser is not used,
2142 * we simply reset msg->sov so that HTTP rewinding points to the
2143 * headers.
2144 */
2145 if (s->txn)
Willy Tarreau7e9c30a2018-06-15 19:24:46 +02002146 s->txn->req.sov = s->txn->req.eoh + s->txn->req.eol - co_data(req);
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002147 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002148
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002149 /* check if it is wise to enable kernel splicing to forward request data */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002150 if (!(req->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
2151 req->to_forward &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002152 (global.tune.options & GTUNE_USE_SPLICE) &&
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002153 (objt_cs(si_f->end) && __objt_cs(si_f->end)->conn->xprt && __objt_cs(si_f->end)->conn->xprt->rcv_pipe) &&
2154 (objt_cs(si_b->end) && __objt_cs(si_b->end)->conn->xprt && __objt_cs(si_b->end)->conn->xprt->snd_pipe) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002155 (pipes_used < global.maxpipes) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002156 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_REQ) ||
2157 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002158 (req->flags & CF_STREAMER_FAST)))) {
2159 req->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002160 }
2161
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002162 /* reflect what the L7 analysers have seen last */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002163 rqf_last = req->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002164
2165 /*
2166 * Now forward all shutdown requests between both sides of the buffer
2167 */
2168
Willy Tarreau520d95e2009-09-19 21:04:57 +02002169 /* first, let's check if the request buffer needs to shutdown(write), which may
2170 * happen either because the input is closed or because we want to force a close
Willy Tarreau05cdd962014-05-10 14:30:07 +02002171 * once the server has begun to respond. If a half-closed timeout is set, we adjust
2172 * the other side's timeout as well.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002173 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002174 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau05cdd962014-05-10 14:30:07 +02002175 (CF_AUTO_CLOSE|CF_SHUTR))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002176 channel_shutw_now(req);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002177 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002178
2179 /* shutdown(write) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002180 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
2181 channel_is_empty(req))) {
2182 if (req->flags & CF_READ_ERROR)
2183 si_b->flags |= SI_FL_NOLINGER;
2184 si_shutw(si_b);
Willy Tarreau8615c2a2013-06-21 08:20:19 +02002185 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002186
2187 /* shutdown(write) done on server side, we must stop the client too */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002188 if (unlikely((req->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW &&
2189 !req->analysers))
2190 channel_shutr_now(req);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002191
2192 /* shutdown(read) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002193 if (unlikely((req->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
2194 if (si_f->flags & SI_FL_NOHALF)
2195 si_f->flags |= SI_FL_NOLINGER;
2196 si_shutr(si_f);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002197 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002198
Willy Tarreau520d95e2009-09-19 21:04:57 +02002199 /* it's possible that an upper layer has requested a connection setup or abort.
2200 * There are 2 situations where we decide to establish a new connection :
2201 * - there are data scheduled for emission in the buffer
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002202 * - the CF_AUTO_CONNECT flag is set (active connection)
Willy Tarreau520d95e2009-09-19 21:04:57 +02002203 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002204 if (si_b->state == SI_ST_INI) {
2205 if (!(req->flags & CF_SHUTW)) {
2206 if ((req->flags & CF_AUTO_CONNECT) || !channel_is_empty(req)) {
Willy Tarreaucf644ed2013-09-29 17:19:56 +02002207 /* If we have an appctx, there is no connect method, so we
2208 * immediately switch to the connected state, otherwise we
2209 * perform a connection request.
Willy Tarreau520d95e2009-09-19 21:04:57 +02002210 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002211 si_b->state = SI_ST_REQ; /* new connection requested */
2212 si_b->conn_retries = s->be->conn_retries;
Willy Tarreau520d95e2009-09-19 21:04:57 +02002213 }
Willy Tarreau73201222009-08-16 18:27:24 +02002214 }
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002215 else {
Willy Tarreau0542c8b2017-11-24 15:01:10 +01002216 si_release_endpoint(si_b);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002217 si_b->state = SI_ST_CLO; /* shutw+ini = abort */
2218 channel_shutw_now(req); /* fix buffer flags upon abort */
2219 channel_shutr_now(res);
Willy Tarreauf41ffdc2009-09-20 08:19:25 +02002220 }
Willy Tarreau92795622009-03-06 12:51:23 +01002221 }
2222
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002223
2224 /* we may have a pending connection request, or a connection waiting
2225 * for completion.
2226 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002227 if (si_b->state >= SI_ST_REQ && si_b->state < SI_ST_CON) {
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02002228
2229 /* prune the request variables and swap to the response variables. */
2230 if (s->vars_reqres.scope != SCOPE_RES) {
Willy Tarreau6204cd92016-03-10 16:33:04 +01002231 vars_prune(&s->vars_reqres, s->sess, s);
Thierry FOURNIER4834bc72015-06-06 19:29:07 +02002232 vars_init(&s->vars_reqres, SCOPE_RES);
2233 }
2234
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002235 do {
2236 /* nb: step 1 might switch from QUE to ASS, but we first want
2237 * to give a chance to step 2 to perform a redirect if needed.
2238 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002239 if (si_b->state != SI_ST_REQ)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002240 sess_update_stream_int(s);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002241 if (si_b->state == SI_ST_REQ)
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002242 sess_prepare_conn_req(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002243
Willy Tarreau9e5a3aa2013-12-31 23:32:12 +01002244 /* applets directly go to the ESTABLISHED state. Similarly,
2245 * servers experience the same fate when their connection
2246 * is reused.
2247 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002248 if (unlikely(si_b->state == SI_ST_EST))
Willy Tarreau7b8c4f92014-11-28 15:15:44 +01002249 sess_establish(s);
Willy Tarreaufac4bd12013-11-30 09:21:49 +01002250
Willy Tarreaub44c8732013-12-31 23:16:50 +01002251 /* Now we can add the server name to a header (if requested) */
2252 /* check for HTTP mode and proxy server_name_hdr_name != NULL */
Willy Tarreau9c03b332015-09-07 19:32:33 +02002253 if ((si_b->state >= SI_ST_CON) && (si_b->state < SI_ST_CLO) &&
Willy Tarreaub44c8732013-12-31 23:16:50 +01002254 (s->be->server_id_hdr_name != NULL) &&
2255 (s->be->mode == PR_MODE_HTTP) &&
2256 objt_server(s->target)) {
Willy Tarreaueee5b512015-04-03 23:46:31 +02002257 http_send_name_header(s->txn, s->be, objt_server(s->target)->id);
Willy Tarreau1e5dfda2013-04-07 18:19:16 +02002258 }
2259
Willy Tarreau3fdb3662012-11-12 00:42:33 +01002260 srv = objt_server(s->target);
Willy Tarreaue7dff022015-04-03 01:14:29 +02002261 if (si_b->state == SI_ST_ASS && srv && srv->rdr_len && (s->flags & SF_REDIRECTABLE))
Willy Tarreau8f128b42014-11-28 15:07:47 +01002262 http_perform_server_redirect(s, si_b);
2263 } while (si_b->state == SI_ST_ASS);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002264 }
2265
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002266 /* Benchmarks have shown that it's optimal to do a full resync now */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002267 if (si_f->state == SI_ST_DIS || si_b->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002268 goto resync_stream_interface;
2269
Willy Tarreau815a9b22010-07-27 17:15:12 +02002270 /* otherwise we want to check if we need to resync the req buffer or not */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002271 if ((req->flags ^ rqf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002272 goto resync_request;
2273
Willy Tarreau3deb3d02009-06-21 22:43:05 +02002274 /* perform output updates to the response buffer */
Willy Tarreau84455332009-03-15 22:34:05 +01002275
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002276 /* If noone is interested in analysing data, it's time to forward
Willy Tarreau31971e52009-09-20 12:07:52 +02002277 * everything. We configure the buffer to forward indefinitely.
Willy Tarreau03cdb7c2012-08-27 23:14:58 +02002278 * Note that we're checking CF_SHUTR_NOW as an indication of a possible
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002279 * recent call to channel_abort().
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002280 */
Christopher Faulet35fe6992017-08-29 16:06:38 +02002281 if (unlikely((!res->analysers || (res->analysers == AN_RES_FLT_END && !(res->flags & CF_FLT_ANALYZE))) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002282 !(res->flags & (CF_SHUTW|CF_SHUTR_NOW)) &&
2283 (si_b->state >= SI_ST_EST) &&
2284 (res->to_forward != CHN_INFINITE_FORWARD))) {
Willy Tarreaub31c9712012-11-11 23:05:39 +01002285 /* This buffer is freewheeling, there's no analyser
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002286 * attached to it. If any data are left in, we'll permit them to
2287 * move.
2288 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002289 channel_auto_read(res);
2290 channel_auto_close(res);
Willy Tarreau144c5c42018-06-15 15:16:51 +02002291 c_adv(res, ci_data(res));
Willy Tarreauda4d9fe2010-11-07 20:26:56 +01002292
2293 /* We'll let data flow between the producer (if still connected)
2294 * to the consumer.
2295 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002296 if (!(res->flags & (CF_SHUTR|CF_SHUTW_NOW)))
Willy Tarreau8bf242b2016-05-04 14:05:58 +02002297 channel_forward_forever(res);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002298
Willy Tarreau42529c32015-07-09 18:38:57 +02002299 /* Just in order to support fetching HTTP contents after start
2300 * of forwarding when the HTTP forwarding analyser is not used,
2301 * we simply reset msg->sov so that HTTP rewinding points to the
2302 * headers.
2303 */
2304 if (s->txn)
Willy Tarreau7e9c30a2018-06-15 19:24:46 +02002305 s->txn->rsp.sov = s->txn->rsp.eoh + s->txn->rsp.eol - co_data(res);
Willy Tarreau42529c32015-07-09 18:38:57 +02002306
Willy Tarreauce887fd2012-05-12 12:50:00 +02002307 /* if we have no analyser anymore in any direction and have a
Willy Tarreau05cdd962014-05-10 14:30:07 +02002308 * tunnel timeout set, use it now. Note that we must respect
2309 * the half-closed timeouts as well.
Willy Tarreauce887fd2012-05-12 12:50:00 +02002310 */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002311 if (!req->analysers && s->be->timeout.tunnel) {
2312 req->rto = req->wto = res->rto = res->wto =
Willy Tarreauce887fd2012-05-12 12:50:00 +02002313 s->be->timeout.tunnel;
Willy Tarreau05cdd962014-05-10 14:30:07 +02002314
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002315 if ((req->flags & CF_SHUTR) && tick_isset(sess->fe->timeout.clientfin))
2316 res->wto = sess->fe->timeout.clientfin;
Willy Tarreau8f128b42014-11-28 15:07:47 +01002317 if ((req->flags & CF_SHUTW) && tick_isset(s->be->timeout.serverfin))
2318 res->rto = s->be->timeout.serverfin;
2319 if ((res->flags & CF_SHUTR) && tick_isset(s->be->timeout.serverfin))
2320 req->wto = s->be->timeout.serverfin;
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002321 if ((res->flags & CF_SHUTW) && tick_isset(sess->fe->timeout.clientfin))
2322 req->rto = sess->fe->timeout.clientfin;
Willy Tarreau05cdd962014-05-10 14:30:07 +02002323
Willy Tarreau8f128b42014-11-28 15:07:47 +01002324 req->rex = tick_add(now_ms, req->rto);
2325 req->wex = tick_add(now_ms, req->wto);
2326 res->rex = tick_add(now_ms, res->rto);
2327 res->wex = tick_add(now_ms, res->wto);
Willy Tarreauce887fd2012-05-12 12:50:00 +02002328 }
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002329 }
Willy Tarreauf890dc92008-12-13 21:12:26 +01002330
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002331 /* check if it is wise to enable kernel splicing to forward response data */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002332 if (!(res->flags & (CF_KERN_SPLICING|CF_SHUTR)) &&
2333 res->to_forward &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002334 (global.tune.options & GTUNE_USE_SPLICE) &&
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002335 (objt_cs(si_f->end) && __objt_cs(si_f->end)->conn->xprt && __objt_cs(si_f->end)->conn->xprt->snd_pipe) &&
2336 (objt_cs(si_b->end) && __objt_cs(si_b->end)->conn->xprt && __objt_cs(si_b->end)->conn->xprt->rcv_pipe) &&
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002337 (pipes_used < global.maxpipes) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002338 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_RTR) ||
2339 (((sess->fe->options2|s->be->options2) & PR_O2_SPLIC_AUT) &&
Willy Tarreau8f128b42014-11-28 15:07:47 +01002340 (res->flags & CF_STREAMER_FAST)))) {
2341 res->flags |= CF_KERN_SPLICING;
Willy Tarreau7c84bab2009-03-08 21:38:23 +01002342 }
2343
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002344 /* reflect what the L7 analysers have seen last */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002345 rpf_last = res->flags;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002346
2347 /*
2348 * Now forward all shutdown requests between both sides of the buffer
2349 */
2350
2351 /*
2352 * FIXME: this is probably where we should produce error responses.
2353 */
2354
Willy Tarreau6b66f3e2008-12-14 17:31:54 +01002355 /* first, let's check if the response buffer needs to shutdown(write) */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002356 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CLOSE|CF_SHUTR)) ==
Willy Tarreau05cdd962014-05-10 14:30:07 +02002357 (CF_AUTO_CLOSE|CF_SHUTR))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002358 channel_shutw_now(res);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002359 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002360
2361 /* shutdown(write) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002362 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) == CF_SHUTW_NOW &&
2363 channel_is_empty(res))) {
2364 si_shutw(si_f);
Willy Tarreau05cdd962014-05-10 14:30:07 +02002365 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002366
2367 /* shutdown(write) done on the client side, we must stop the server too */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002368 if (unlikely((res->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTW) &&
2369 !res->analysers)
2370 channel_shutr_now(res);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002371
2372 /* shutdown(read) pending */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002373 if (unlikely((res->flags & (CF_SHUTR|CF_SHUTR_NOW)) == CF_SHUTR_NOW)) {
2374 if (si_b->flags & SI_FL_NOHALF)
2375 si_b->flags |= SI_FL_NOLINGER;
2376 si_shutr(si_b);
Willy Tarreau7bb68ab2012-05-13 14:48:59 +02002377 }
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002378
Willy Tarreau8f128b42014-11-28 15:07:47 +01002379 if (si_f->state == SI_ST_DIS || si_b->state == SI_ST_DIS)
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002380 goto resync_stream_interface;
2381
Willy Tarreau8f128b42014-11-28 15:07:47 +01002382 if (req->flags != rqf_last)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002383 goto resync_request;
2384
Willy Tarreau8f128b42014-11-28 15:07:47 +01002385 if ((res->flags ^ rpf_last) & CF_MASK_STATIC)
Willy Tarreau0be0ef92009-03-08 19:20:25 +01002386 goto resync_response;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002387
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002388 /* we're interested in getting wakeups again */
Willy Tarreau8f128b42014-11-28 15:07:47 +01002389 si_f->flags &= ~SI_FL_DONT_WAKE;
2390 si_b->flags &= ~SI_FL_DONT_WAKE;
Willy Tarreau89f7ef22009-09-05 20:57:35 +02002391
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002392 /* This is needed only when debugging is enabled, to indicate
2393 * client-side or server-side close. Please note that in the unlikely
2394 * event where both sides would close at once, the sequence is reported
2395 * on the server side first.
2396 */
2397 if (unlikely((global.mode & MODE_DEBUG) &&
2398 (!(global.mode & MODE_QUIET) ||
2399 (global.mode & MODE_VERBOSE)))) {
Willy Tarreau8f128b42014-11-28 15:07:47 +01002400 if (si_b->state == SI_ST_CLO &&
2401 si_b->prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002402 chunk_printf(&trash, "%08x:%s.srvcls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002403 s->uniq_id, s->be->id,
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002404 objt_cs(si_f->end) ? (unsigned short)objt_cs(si_f->end)->conn->handle.fd : -1,
2405 objt_cs(si_b->end) ? (unsigned short)objt_cs(si_b->end)->conn->handle.fd : -1);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002406 shut_your_big_mouth_gcc(write(1, trash.area, trash.data));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002407 }
2408
Willy Tarreau8f128b42014-11-28 15:07:47 +01002409 if (si_f->state == SI_ST_CLO &&
2410 si_f->prev_state == SI_ST_EST) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002411 chunk_printf(&trash, "%08x:%s.clicls[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002412 s->uniq_id, s->be->id,
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002413 objt_cs(si_f->end) ? (unsigned short)objt_cs(si_f->end)->conn->handle.fd : -1,
2414 objt_cs(si_b->end) ? (unsigned short)objt_cs(si_b->end)->conn->handle.fd : -1);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002415 shut_your_big_mouth_gcc(write(1, trash.area, trash.data));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002416 }
2417 }
2418
Willy Tarreau8f128b42014-11-28 15:07:47 +01002419 if (likely((si_f->state != SI_ST_CLO) ||
2420 (si_b->state > SI_ST_INI && si_b->state < SI_ST_CLO))) {
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002421
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002422 if ((sess->fe->options & PR_O_CONTSTATS) && (s->flags & SF_BE_ASSIGNED))
Willy Tarreau87b09662015-04-03 00:22:06 +02002423 stream_process_counters(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002424
Willy Tarreau563cc372015-04-19 18:13:56 +02002425 if (si_f->state == SI_ST_EST)
Willy Tarreau8f128b42014-11-28 15:07:47 +01002426 si_update(si_f);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002427
Willy Tarreau563cc372015-04-19 18:13:56 +02002428 if (si_b->state == SI_ST_EST)
Willy Tarreau8f128b42014-11-28 15:07:47 +01002429 si_update(si_b);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002430
Christopher Fauletc5a9d5b2017-11-09 09:36:43 +01002431 req->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED|CF_WRITE_EVENT);
2432 res->flags &= ~(CF_READ_NULL|CF_READ_PARTIAL|CF_WRITE_NULL|CF_WRITE_PARTIAL|CF_READ_ATTACHED|CF_WRITE_EVENT);
Willy Tarreau8f128b42014-11-28 15:07:47 +01002433 si_f->prev_state = si_f->state;
2434 si_b->prev_state = si_b->state;
2435 si_f->flags &= ~(SI_FL_ERR|SI_FL_EXP);
2436 si_b->flags &= ~(SI_FL_ERR|SI_FL_EXP);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002437
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002438 /* Trick: if a request is being waiting for the server to respond,
2439 * and if we know the server can timeout, we don't want the timeout
2440 * to expire on the client side first, but we're still interested
2441 * in passing data from the client to the server (eg: POST). Thus,
2442 * we can cancel the client's request timeout if the server's
2443 * request timeout is set and the server has not yet sent a response.
2444 */
2445
Willy Tarreau8f128b42014-11-28 15:07:47 +01002446 if ((res->flags & (CF_AUTO_CLOSE|CF_SHUTR)) == 0 &&
2447 (tick_isset(req->wex) || tick_isset(res->rex))) {
2448 req->flags |= CF_READ_NOEXP;
2449 req->rex = TICK_ETERNITY;
Willy Tarreau6f0a7ba2014-06-23 15:22:31 +02002450 }
2451
Christopher Faulet9d810ca2016-12-08 22:33:52 +01002452 /* Reset pending events now */
2453 s->pending_events = 0;
2454
Willy Tarreau798f4322012-11-08 14:49:17 +01002455 update_exp_and_leave:
Willy Tarreau5fb04712016-05-04 10:18:37 +02002456 /* Note: please ensure that if you branch here you disable SI_FL_DONT_WAKE */
Christopher Fauleta00d8172016-11-10 14:58:05 +01002457 t->expire = tick_first((tick_is_expired(t->expire, now_ms) ? 0 : t->expire),
2458 tick_first(tick_first(req->rex, req->wex),
2459 tick_first(res->rex, res->wex)));
Willy Tarreaudef0d222016-11-08 22:03:00 +01002460 if (!req->analysers)
2461 req->analyse_exp = TICK_ETERNITY;
2462
2463 if ((sess->fe->options & PR_O_CONTSTATS) && (s->flags & SF_BE_ASSIGNED) &&
2464 (!tick_isset(req->analyse_exp) || tick_is_expired(req->analyse_exp, now_ms)))
2465 req->analyse_exp = tick_add(now_ms, 5000);
2466
2467 t->expire = tick_first(t->expire, req->analyse_exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002468
Willy Tarreau9a398be2017-11-10 17:14:23 +01002469 t->expire = tick_first(t->expire, res->analyse_exp);
2470
Willy Tarreau8f128b42014-11-28 15:07:47 +01002471 if (si_f->exp)
2472 t->expire = tick_first(t->expire, si_f->exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002473
Willy Tarreau8f128b42014-11-28 15:07:47 +01002474 if (si_b->exp)
2475 t->expire = tick_first(t->expire, si_b->exp);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002476
Christopher Faulet56803b12017-11-24 16:06:18 +01002477 DPRINTF(stderr,
Willy Tarreau127334e2009-03-28 10:47:26 +01002478 "[%u] queuing with exp=%u req->rex=%u req->wex=%u req->ana_exp=%u"
2479 " rep->rex=%u rep->wex=%u, si[0].exp=%u, si[1].exp=%u, cs=%d, ss=%d\n",
Willy Tarreau8f128b42014-11-28 15:07:47 +01002480 now_ms, t->expire, req->rex, req->wex, req->analyse_exp,
2481 res->rex, res->wex, si_f->exp, si_b->exp, si_f->state, si_b->state);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002482
2483#ifdef DEBUG_DEV
2484 /* this may only happen when no timeout is set or in case of an FSM bug */
Willy Tarreaud0a201b2009-03-08 15:53:06 +01002485 if (!tick_isset(t->expire))
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002486 ABORT_NOW();
2487#endif
Christopher Faulet9d810ca2016-12-08 22:33:52 +01002488 s->pending_events &= ~(TASK_WOKEN_TIMER | TASK_WOKEN_RES);
Willy Tarreau87b09662015-04-03 00:22:06 +02002489 stream_release_buffers(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002490 return t; /* nothing more to do */
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002491 }
2492
Willy Tarreaue7dff022015-04-03 01:14:29 +02002493 if (s->flags & SF_BE_ASSIGNED)
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002494 HA_ATOMIC_SUB(&s->be->beconn, 1);
Willy Tarreau6f5e4b92017-09-15 09:07:56 +02002495
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002496 if (unlikely((global.mode & MODE_DEBUG) &&
2497 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)))) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002498 chunk_printf(&trash, "%08x:%s.closed[%04x:%04x]\n",
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002499 s->uniq_id, s->be->id,
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002500 objt_cs(si_f->end) ? (unsigned short)objt_cs(si_f->end)->conn->handle.fd : -1,
2501 objt_cs(si_b->end) ? (unsigned short)objt_cs(si_b->end)->conn->handle.fd : -1);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002502 shut_your_big_mouth_gcc(write(1, trash.area, trash.data));
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002503 }
2504
2505 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
Willy Tarreau87b09662015-04-03 00:22:06 +02002506 stream_process_counters(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002507
Willy Tarreaueee5b512015-04-03 23:46:31 +02002508 if (s->txn && s->txn->status) {
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002509 int n;
2510
Willy Tarreaueee5b512015-04-03 23:46:31 +02002511 n = s->txn->status / 100;
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002512 if (n < 1 || n > 5)
2513 n = 0;
2514
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002515 if (sess->fe->mode == PR_MODE_HTTP) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002516 HA_ATOMIC_ADD(&sess->fe->fe_counters.p.http.rsp[n], 1);
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002517 }
Willy Tarreaue7dff022015-04-03 01:14:29 +02002518 if ((s->flags & SF_BE_ASSIGNED) &&
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002519 (s->be->mode == PR_MODE_HTTP)) {
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002520 HA_ATOMIC_ADD(&s->be->be_counters.p.http.rsp[n], 1);
2521 HA_ATOMIC_ADD(&s->be->be_counters.p.http.cum_req, 1);
Willy Tarreau5e16cbc2012-11-24 14:54:13 +01002522 }
Krzysztof Piotr Oledzkide71d162009-10-24 15:36:15 +02002523 }
2524
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002525 /* let's do a final log if we need it */
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002526 if (!LIST_ISEMPTY(&sess->fe->logformat) && s->logs.logwait &&
Willy Tarreaue7dff022015-04-03 01:14:29 +02002527 !(s->flags & SF_MONITOR) &&
Willy Tarreaue36cbcb2015-04-03 15:40:56 +02002528 (!(sess->fe->options & PR_O_NULLNOLOG) || req->total)) {
Willy Tarreau66425e32018-07-25 06:55:12 +02002529 /* we may need to know the position in the queue */
2530 pendconn_free(s);
Willy Tarreaua5555ec2008-11-30 19:02:32 +01002531 s->do_log(s);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002532 }
2533
Willy Tarreau87b09662015-04-03 00:22:06 +02002534 /* update time stats for this stream */
2535 stream_update_time_stats(s);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002536
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002537 /* the task MUST not be in the run queue anymore */
Willy Tarreau87b09662015-04-03 00:22:06 +02002538 stream_free(s);
Willy Tarreau26c25062009-03-08 09:38:41 +01002539 task_delete(t);
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002540 task_free(t);
Willy Tarreau26c25062009-03-08 09:38:41 +01002541 return NULL;
Willy Tarreau55a8d0e2008-11-30 18:47:21 +01002542}
2543
Willy Tarreau87b09662015-04-03 00:22:06 +02002544/* Update the stream's backend and server time stats */
2545void stream_update_time_stats(struct stream *s)
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002546{
2547 int t_request;
2548 int t_queue;
2549 int t_connect;
2550 int t_data;
2551 int t_close;
2552 struct server *srv;
2553
2554 t_request = 0;
2555 t_queue = s->logs.t_queue;
2556 t_connect = s->logs.t_connect;
2557 t_close = s->logs.t_close;
2558 t_data = s->logs.t_data;
2559
2560 if (s->be->mode != PR_MODE_HTTP)
2561 t_data = t_connect;
2562
2563 if (t_connect < 0 || t_data < 0)
2564 return;
2565
2566 if (tv_isge(&s->logs.tv_request, &s->logs.tv_accept))
2567 t_request = tv_ms_elapsed(&s->logs.tv_accept, &s->logs.tv_request);
2568
2569 t_data -= t_connect;
2570 t_connect -= t_queue;
2571 t_queue -= t_request;
2572
2573 srv = objt_server(s->target);
2574 if (srv) {
2575 swrate_add(&srv->counters.q_time, TIME_STATS_SAMPLES, t_queue);
2576 swrate_add(&srv->counters.c_time, TIME_STATS_SAMPLES, t_connect);
2577 swrate_add(&srv->counters.d_time, TIME_STATS_SAMPLES, t_data);
2578 swrate_add(&srv->counters.t_time, TIME_STATS_SAMPLES, t_close);
2579 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002580 HA_SPIN_LOCK(PROXY_LOCK, &s->be->lock);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002581 swrate_add(&s->be->be_counters.q_time, TIME_STATS_SAMPLES, t_queue);
2582 swrate_add(&s->be->be_counters.c_time, TIME_STATS_SAMPLES, t_connect);
2583 swrate_add(&s->be->be_counters.d_time, TIME_STATS_SAMPLES, t_data);
2584 swrate_add(&s->be->be_counters.t_time, TIME_STATS_SAMPLES, t_close);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002585 HA_SPIN_UNLOCK(PROXY_LOCK, &s->be->lock);
Willy Tarreau4bfc5802014-06-17 12:19:18 +02002586}
2587
Willy Tarreau7c669d72008-06-20 15:04:11 +02002588/*
2589 * This function adjusts sess->srv_conn and maintains the previous and new
Willy Tarreau87b09662015-04-03 00:22:06 +02002590 * server's served stream counts. Setting newsrv to NULL is enough to release
Willy Tarreau7c669d72008-06-20 15:04:11 +02002591 * current connection slot. This function also notifies any LB algo which might
Willy Tarreau87b09662015-04-03 00:22:06 +02002592 * expect to be informed about any change in the number of active streams on a
Willy Tarreau7c669d72008-06-20 15:04:11 +02002593 * server.
2594 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002595void sess_change_server(struct stream *sess, struct server *newsrv)
Willy Tarreau7c669d72008-06-20 15:04:11 +02002596{
2597 if (sess->srv_conn == newsrv)
2598 return;
2599
2600 if (sess->srv_conn) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02002601 HA_ATOMIC_SUB(&sess->srv_conn->served, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002602 HA_ATOMIC_SUB(&sess->srv_conn->proxy->served, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002603 if (sess->srv_conn->proxy->lbprm.server_drop_conn)
2604 sess->srv_conn->proxy->lbprm.server_drop_conn(sess->srv_conn);
Willy Tarreau87b09662015-04-03 00:22:06 +02002605 stream_del_srv_conn(sess);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002606 }
2607
2608 if (newsrv) {
Christopher Faulet29f77e82017-06-08 14:04:45 +02002609 HA_ATOMIC_ADD(&newsrv->served, 1);
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002610 HA_ATOMIC_ADD(&newsrv->proxy->served, 1);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002611 if (newsrv->proxy->lbprm.server_take_conn)
2612 newsrv->proxy->lbprm.server_take_conn(newsrv);
Willy Tarreau87b09662015-04-03 00:22:06 +02002613 stream_add_srv_conn(sess, newsrv);
Willy Tarreau7c669d72008-06-20 15:04:11 +02002614 }
2615}
2616
Willy Tarreau84455332009-03-15 22:34:05 +01002617/* Handle server-side errors for default protocols. It is called whenever a a
2618 * connection setup is aborted or a request is aborted in queue. It sets the
Willy Tarreau87b09662015-04-03 00:22:06 +02002619 * stream termination flags so that the caller does not have to worry about
Willy Tarreau84455332009-03-15 22:34:05 +01002620 * them. It's installed as ->srv_error for the server-side stream_interface.
2621 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002622void default_srv_error(struct stream *s, struct stream_interface *si)
Willy Tarreau84455332009-03-15 22:34:05 +01002623{
2624 int err_type = si->err_type;
2625 int err = 0, fin = 0;
2626
2627 if (err_type & SI_ET_QUEUE_ABRT) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002628 err = SF_ERR_CLICL;
2629 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01002630 }
2631 else if (err_type & SI_ET_CONN_ABRT) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002632 err = SF_ERR_CLICL;
2633 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002634 }
2635 else if (err_type & SI_ET_QUEUE_TO) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002636 err = SF_ERR_SRVTO;
2637 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01002638 }
2639 else if (err_type & SI_ET_QUEUE_ERR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002640 err = SF_ERR_SRVCL;
2641 fin = SF_FINST_Q;
Willy Tarreau84455332009-03-15 22:34:05 +01002642 }
2643 else if (err_type & SI_ET_CONN_TO) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002644 err = SF_ERR_SRVTO;
2645 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002646 }
2647 else if (err_type & SI_ET_CONN_ERR) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002648 err = SF_ERR_SRVCL;
2649 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002650 }
Willy Tarreau2d400bb2012-05-14 12:11:47 +02002651 else if (err_type & SI_ET_CONN_RES) {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002652 err = SF_ERR_RESOURCE;
2653 fin = SF_FINST_C;
Willy Tarreau2d400bb2012-05-14 12:11:47 +02002654 }
Willy Tarreau84455332009-03-15 22:34:05 +01002655 else /* SI_ET_CONN_OTHER and others */ {
Willy Tarreaue7dff022015-04-03 01:14:29 +02002656 err = SF_ERR_INTERNAL;
2657 fin = SF_FINST_C;
Willy Tarreau84455332009-03-15 22:34:05 +01002658 }
2659
Willy Tarreaue7dff022015-04-03 01:14:29 +02002660 if (!(s->flags & SF_ERR_MASK))
Willy Tarreau84455332009-03-15 22:34:05 +01002661 s->flags |= err;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002662 if (!(s->flags & SF_FINST_MASK))
Willy Tarreau84455332009-03-15 22:34:05 +01002663 s->flags |= fin;
2664}
Willy Tarreau7c669d72008-06-20 15:04:11 +02002665
Willy Tarreaue7dff022015-04-03 01:14:29 +02002666/* kill a stream and set the termination flags to <why> (one of SF_ERR_*) */
Willy Tarreau87b09662015-04-03 00:22:06 +02002667void stream_shutdown(struct stream *stream, int why)
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002668{
Willy Tarreau87b09662015-04-03 00:22:06 +02002669 if (stream->req.flags & (CF_SHUTW|CF_SHUTW_NOW))
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002670 return;
2671
Willy Tarreau87b09662015-04-03 00:22:06 +02002672 channel_shutw_now(&stream->req);
2673 channel_shutr_now(&stream->res);
2674 stream->task->nice = 1024;
Willy Tarreaue7dff022015-04-03 01:14:29 +02002675 if (!(stream->flags & SF_ERR_MASK))
Willy Tarreau87b09662015-04-03 00:22:06 +02002676 stream->flags |= why;
2677 task_wakeup(stream->task, TASK_WOKEN_OTHER);
Willy Tarreaua2a64e92011-09-07 23:01:56 +02002678}
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +02002679
Willy Tarreau8b22a712010-06-18 17:46:06 +02002680/************************************************************************/
2681/* All supported ACL keywords must be declared here. */
2682/************************************************************************/
2683
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02002684/* 0=OK, <0=Alert, >0=Warning */
2685static enum act_parse_ret stream_parse_use_service(const char **args, int *cur_arg,
2686 struct proxy *px, struct act_rule *rule,
2687 char **err)
2688{
2689 struct action_kw *kw;
2690
2691 /* Check if the service name exists. */
2692 if (*(args[*cur_arg]) == 0) {
2693 memprintf(err, "'%s' expects a service name.", args[0]);
Thierry FOURNIER337eae12015-11-26 19:48:04 +01002694 return ACT_RET_PRS_ERR;
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02002695 }
2696
2697 /* lookup for keyword corresponding to a service. */
2698 kw = action_lookup(&service_keywords, args[*cur_arg]);
2699 if (!kw) {
2700 memprintf(err, "'%s' unknown service name.", args[1]);
2701 return ACT_RET_PRS_ERR;
2702 }
2703 (*cur_arg)++;
2704
2705 /* executes specific rule parser. */
2706 rule->kw = kw;
2707 if (kw->parse((const char **)args, cur_arg, px, rule, err) == ACT_RET_PRS_ERR)
2708 return ACT_RET_PRS_ERR;
2709
2710 /* Register processing function. */
2711 rule->action_ptr = process_use_service;
2712 rule->action = ACT_CUSTOM;
2713
2714 return ACT_RET_PRS_OK;
2715}
2716
2717void service_keywords_register(struct action_kw_list *kw_list)
2718{
2719 LIST_ADDQ(&service_keywords, &kw_list->list);
2720}
2721
William Lallemand4c5b4d52016-11-21 08:51:11 +01002722
2723/* This function dumps a complete stream state onto the stream interface's
2724 * read buffer. The stream has to be set in strm. It returns 0 if the output
2725 * buffer is full and it needs to be called again, otherwise non-zero. It is
2726 * designed to be called from stats_dump_strm_to_buffer() below.
2727 */
2728static int stats_dump_full_strm_to_buffer(struct stream_interface *si, struct stream *strm)
2729{
2730 struct appctx *appctx = __objt_appctx(si->end);
2731 struct tm tm;
2732 extern const char *monthname[12];
2733 char pn[INET6_ADDRSTRLEN];
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002734 struct conn_stream *cs;
William Lallemand4c5b4d52016-11-21 08:51:11 +01002735 struct connection *conn;
2736 struct appctx *tmpctx;
2737
2738 chunk_reset(&trash);
2739
2740 if (appctx->ctx.sess.section > 0 && appctx->ctx.sess.uid != strm->uniq_id) {
2741 /* stream changed, no need to go any further */
2742 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +02002743 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01002744 si_applet_cant_put(si);
2745 return 0;
2746 }
2747 appctx->ctx.sess.uid = 0;
2748 appctx->ctx.sess.section = 0;
2749 return 1;
2750 }
2751
2752 switch (appctx->ctx.sess.section) {
2753 case 0: /* main status of the stream */
2754 appctx->ctx.sess.uid = strm->uniq_id;
2755 appctx->ctx.sess.section = 1;
2756 /* fall through */
2757
2758 case 1:
2759 get_localtime(strm->logs.accept_date.tv_sec, &tm);
2760 chunk_appendf(&trash,
2761 "%p: [%02d/%s/%04d:%02d:%02d:%02d.%06d] id=%u proto=%s",
2762 strm,
2763 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
2764 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(strm->logs.accept_date.tv_usec),
2765 strm->uniq_id,
2766 strm_li(strm) ? strm_li(strm)->proto->name : "?");
2767
2768 conn = objt_conn(strm_orig(strm));
2769 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
2770 case AF_INET:
2771 case AF_INET6:
2772 chunk_appendf(&trash, " source=%s:%d\n",
2773 pn, get_host_port(&conn->addr.from));
2774 break;
2775 case AF_UNIX:
2776 chunk_appendf(&trash, " source=unix:%d\n", strm_li(strm)->luid);
2777 break;
2778 default:
2779 /* no more information to print right now */
2780 chunk_appendf(&trash, "\n");
2781 break;
2782 }
2783
2784 chunk_appendf(&trash,
2785 " flags=0x%x, conn_retries=%d, srv_conn=%p, pend_pos=%p\n",
2786 strm->flags, strm->si[1].conn_retries, strm->srv_conn, strm->pend_pos);
2787
2788 chunk_appendf(&trash,
2789 " frontend=%s (id=%u mode=%s), listener=%s (id=%u)",
2790 strm_fe(strm)->id, strm_fe(strm)->uuid, strm_fe(strm)->mode ? "http" : "tcp",
2791 strm_li(strm) ? strm_li(strm)->name ? strm_li(strm)->name : "?" : "?",
2792 strm_li(strm) ? strm_li(strm)->luid : 0);
2793
2794 if (conn)
2795 conn_get_to_addr(conn);
2796
2797 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
2798 case AF_INET:
2799 case AF_INET6:
2800 chunk_appendf(&trash, " addr=%s:%d\n",
2801 pn, get_host_port(&conn->addr.to));
2802 break;
2803 case AF_UNIX:
2804 chunk_appendf(&trash, " addr=unix:%d\n", strm_li(strm)->luid);
2805 break;
2806 default:
2807 /* no more information to print right now */
2808 chunk_appendf(&trash, "\n");
2809 break;
2810 }
2811
2812 if (strm->be->cap & PR_CAP_BE)
2813 chunk_appendf(&trash,
2814 " backend=%s (id=%u mode=%s)",
2815 strm->be->id,
2816 strm->be->uuid, strm->be->mode ? "http" : "tcp");
2817 else
2818 chunk_appendf(&trash, " backend=<NONE> (id=-1 mode=-)");
2819
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002820 cs = objt_cs(strm->si[1].end);
2821 conn = cs_conn(cs);
2822
William Lallemand4c5b4d52016-11-21 08:51:11 +01002823 if (conn)
2824 conn_get_from_addr(conn);
2825
2826 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
2827 case AF_INET:
2828 case AF_INET6:
2829 chunk_appendf(&trash, " addr=%s:%d\n",
2830 pn, get_host_port(&conn->addr.from));
2831 break;
2832 case AF_UNIX:
2833 chunk_appendf(&trash, " addr=unix\n");
2834 break;
2835 default:
2836 /* no more information to print right now */
2837 chunk_appendf(&trash, "\n");
2838 break;
2839 }
2840
2841 if (strm->be->cap & PR_CAP_BE)
2842 chunk_appendf(&trash,
2843 " server=%s (id=%u)",
2844 objt_server(strm->target) ? objt_server(strm->target)->id : "<none>",
2845 objt_server(strm->target) ? objt_server(strm->target)->puid : 0);
2846 else
2847 chunk_appendf(&trash, " server=<NONE> (id=-1)");
2848
2849 if (conn)
2850 conn_get_to_addr(conn);
2851
2852 switch (conn ? addr_to_str(&conn->addr.to, pn, sizeof(pn)) : AF_UNSPEC) {
2853 case AF_INET:
2854 case AF_INET6:
2855 chunk_appendf(&trash, " addr=%s:%d\n",
2856 pn, get_host_port(&conn->addr.to));
2857 break;
2858 case AF_UNIX:
2859 chunk_appendf(&trash, " addr=unix\n");
2860 break;
2861 default:
2862 /* no more information to print right now */
2863 chunk_appendf(&trash, "\n");
2864 break;
2865 }
2866
2867 chunk_appendf(&trash,
Christopher Fauletf0205062017-11-15 20:56:43 +01002868 " task=%p (state=0x%02x nice=%d calls=%d exp=%s tmask=0x%lx%s",
William Lallemand4c5b4d52016-11-21 08:51:11 +01002869 strm->task,
2870 strm->task->state,
2871 strm->task->nice, strm->task->calls,
2872 strm->task->expire ?
2873 tick_is_expired(strm->task->expire, now_ms) ? "<PAST>" :
2874 human_time(TICKS_TO_MS(strm->task->expire - now_ms),
2875 TICKS_TO_MS(1000)) : "<NEVER>",
Christopher Fauletf0205062017-11-15 20:56:43 +01002876 strm->task->thread_mask,
William Lallemand4c5b4d52016-11-21 08:51:11 +01002877 task_in_rq(strm->task) ? ", running" : "");
2878
2879 chunk_appendf(&trash,
2880 " age=%s)\n",
2881 human_time(now.tv_sec - strm->logs.accept_date.tv_sec, 1));
2882
2883 if (strm->txn)
2884 chunk_appendf(&trash,
2885 " txn=%p flags=0x%x meth=%d status=%d req.st=%s rsp.st=%s waiting=%d\n",
2886 strm->txn, strm->txn->flags, strm->txn->meth, strm->txn->status,
Willy Tarreau0da5b3b2017-09-21 09:30:46 +02002887 h1_msg_state_str(strm->txn->req.msg_state), h1_msg_state_str(strm->txn->rsp.msg_state), !LIST_ISEMPTY(&strm->buffer_wait.list));
William Lallemand4c5b4d52016-11-21 08:51:11 +01002888
2889 chunk_appendf(&trash,
2890 " si[0]=%p (state=%s flags=0x%02x endp0=%s:%p exp=%s, et=0x%03x)\n",
2891 &strm->si[0],
2892 si_state_str(strm->si[0].state),
2893 strm->si[0].flags,
2894 obj_type_name(strm->si[0].end),
2895 obj_base_ptr(strm->si[0].end),
2896 strm->si[0].exp ?
2897 tick_is_expired(strm->si[0].exp, now_ms) ? "<PAST>" :
2898 human_time(TICKS_TO_MS(strm->si[0].exp - now_ms),
2899 TICKS_TO_MS(1000)) : "<NEVER>",
2900 strm->si[0].err_type);
2901
2902 chunk_appendf(&trash,
2903 " si[1]=%p (state=%s flags=0x%02x endp1=%s:%p exp=%s, et=0x%03x)\n",
2904 &strm->si[1],
2905 si_state_str(strm->si[1].state),
2906 strm->si[1].flags,
2907 obj_type_name(strm->si[1].end),
2908 obj_base_ptr(strm->si[1].end),
2909 strm->si[1].exp ?
2910 tick_is_expired(strm->si[1].exp, now_ms) ? "<PAST>" :
2911 human_time(TICKS_TO_MS(strm->si[1].exp - now_ms),
2912 TICKS_TO_MS(1000)) : "<NEVER>",
2913 strm->si[1].err_type);
2914
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002915 if ((cs = objt_cs(strm->si[0].end)) != NULL) {
2916 conn = cs->conn;
2917
William Lallemand4c5b4d52016-11-21 08:51:11 +01002918 chunk_appendf(&trash,
Willy Tarreau53a47662017-08-28 10:53:00 +02002919 " co0=%p ctrl=%s xprt=%s mux=%s data=%s target=%s:%p\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01002920 conn,
2921 conn_get_ctrl_name(conn),
2922 conn_get_xprt_name(conn),
Willy Tarreau53a47662017-08-28 10:53:00 +02002923 conn_get_mux_name(conn),
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002924 cs_get_data_name(cs),
William Lallemand4c5b4d52016-11-21 08:51:11 +01002925 obj_type_name(conn->target),
2926 obj_base_ptr(conn->target));
2927
2928 chunk_appendf(&trash,
Christopher Fauletf0205062017-11-15 20:56:43 +01002929 " flags=0x%08x fd=%d fd.state=%02x fd.cache=%d updt=%d fd.tmask=0x%lx\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01002930 conn->flags,
Willy Tarreau585744b2017-08-24 14:31:19 +02002931 conn->handle.fd,
2932 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].state : 0,
Olivier Houchard12568362018-01-31 18:07:29 +01002933 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].cache.next >= -2 : 0,
Willy Tarreauebc78d72018-01-20 23:53:50 +01002934 conn->handle.fd >= 0 ? !!(fdtab[conn->handle.fd].update_mask & tid_bit) : 0,
Christopher Fauletf0205062017-11-15 20:56:43 +01002935 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].thread_mask: 0);
William Lallemand4c5b4d52016-11-21 08:51:11 +01002936 }
2937 else if ((tmpctx = objt_appctx(strm->si[0].end)) != NULL) {
2938 chunk_appendf(&trash,
Willy Tarreau34b1fac2018-05-31 14:40:19 +02002939 " app0=%p st0=%d st1=%d st2=%d applet=%s tmask=0x%lx nice=%d calls=%u\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01002940 tmpctx,
2941 tmpctx->st0,
2942 tmpctx->st1,
2943 tmpctx->st2,
Christopher Fauletf0205062017-11-15 20:56:43 +01002944 tmpctx->applet->name,
Willy Tarreau34b1fac2018-05-31 14:40:19 +02002945 tmpctx->thread_mask,
2946 tmpctx->t->nice, tmpctx->t->calls);
William Lallemand4c5b4d52016-11-21 08:51:11 +01002947 }
2948
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002949 if ((cs = objt_cs(strm->si[1].end)) != NULL) {
2950 conn = cs->conn;
2951
William Lallemand4c5b4d52016-11-21 08:51:11 +01002952 chunk_appendf(&trash,
Willy Tarreau53a47662017-08-28 10:53:00 +02002953 " co1=%p ctrl=%s xprt=%s mux=%s data=%s target=%s:%p\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01002954 conn,
2955 conn_get_ctrl_name(conn),
2956 conn_get_xprt_name(conn),
Willy Tarreau53a47662017-08-28 10:53:00 +02002957 conn_get_mux_name(conn),
Olivier Houchard9aaf7782017-09-13 18:30:23 +02002958 cs_get_data_name(cs),
William Lallemand4c5b4d52016-11-21 08:51:11 +01002959 obj_type_name(conn->target),
2960 obj_base_ptr(conn->target));
2961
2962 chunk_appendf(&trash,
Christopher Fauletf0205062017-11-15 20:56:43 +01002963 " flags=0x%08x fd=%d fd.state=%02x fd.cache=%d updt=%d fd.tmask=0x%lx\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01002964 conn->flags,
Willy Tarreau585744b2017-08-24 14:31:19 +02002965 conn->handle.fd,
2966 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].state : 0,
Olivier Houchard12568362018-01-31 18:07:29 +01002967 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].cache.next >= -2 : 0,
Willy Tarreauebc78d72018-01-20 23:53:50 +01002968 conn->handle.fd >= 0 ? !!(fdtab[conn->handle.fd].update_mask & tid_bit) : 0,
Christopher Fauletf0205062017-11-15 20:56:43 +01002969 conn->handle.fd >= 0 ? fdtab[conn->handle.fd].thread_mask: 0);
William Lallemand4c5b4d52016-11-21 08:51:11 +01002970 }
2971 else if ((tmpctx = objt_appctx(strm->si[1].end)) != NULL) {
2972 chunk_appendf(&trash,
Willy Tarreau34b1fac2018-05-31 14:40:19 +02002973 " app1=%p st0=%d st1=%d st2=%d applet=%s tmask=0x%lx, nice=%d, calls=%u\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01002974 tmpctx,
2975 tmpctx->st0,
2976 tmpctx->st1,
2977 tmpctx->st2,
Christopher Fauletf0205062017-11-15 20:56:43 +01002978 tmpctx->applet->name,
Willy Tarreau34b1fac2018-05-31 14:40:19 +02002979 tmpctx->thread_mask,
2980 tmpctx->t->nice, tmpctx->t->calls);
William Lallemand4c5b4d52016-11-21 08:51:11 +01002981 }
2982
2983 chunk_appendf(&trash,
2984 " req=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
2985 " an_exp=%s",
2986 &strm->req,
2987 strm->req.flags, strm->req.analysers,
2988 strm->req.pipe ? strm->req.pipe->data : 0,
2989 strm->req.to_forward, strm->req.total,
2990 strm->req.analyse_exp ?
2991 human_time(TICKS_TO_MS(strm->req.analyse_exp - now_ms),
2992 TICKS_TO_MS(1000)) : "<NEVER>");
2993
2994 chunk_appendf(&trash,
2995 " rex=%s",
2996 strm->req.rex ?
2997 human_time(TICKS_TO_MS(strm->req.rex - now_ms),
2998 TICKS_TO_MS(1000)) : "<NEVER>");
2999
3000 chunk_appendf(&trash,
3001 " wex=%s\n"
Willy Tarreau7e9c30a2018-06-15 19:24:46 +02003002 " buf=%p data=%p o=%u p=%u req.next=%d i=%u size=%u\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003003 strm->req.wex ?
3004 human_time(TICKS_TO_MS(strm->req.wex - now_ms),
3005 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003006 &strm->req.buf,
3007 b_orig(&strm->req.buf), (unsigned int)co_data(&strm->req),
Willy Tarreau7e9c30a2018-06-15 19:24:46 +02003008 (unsigned int)ci_head_ofs(&strm->req),
Willy Tarreau591d4452018-06-15 17:21:00 +02003009 strm->txn ? strm->txn->req.next : 0, (unsigned int)ci_data(&strm->req),
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003010 (unsigned int)strm->req.buf.size);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003011
3012 chunk_appendf(&trash,
3013 " res=%p (f=0x%06x an=0x%x pipe=%d tofwd=%d total=%lld)\n"
3014 " an_exp=%s",
3015 &strm->res,
3016 strm->res.flags, strm->res.analysers,
3017 strm->res.pipe ? strm->res.pipe->data : 0,
3018 strm->res.to_forward, strm->res.total,
3019 strm->res.analyse_exp ?
3020 human_time(TICKS_TO_MS(strm->res.analyse_exp - now_ms),
3021 TICKS_TO_MS(1000)) : "<NEVER>");
3022
3023 chunk_appendf(&trash,
3024 " rex=%s",
3025 strm->res.rex ?
3026 human_time(TICKS_TO_MS(strm->res.rex - now_ms),
3027 TICKS_TO_MS(1000)) : "<NEVER>");
3028
3029 chunk_appendf(&trash,
3030 " wex=%s\n"
Willy Tarreau7e9c30a2018-06-15 19:24:46 +02003031 " buf=%p data=%p o=%u p=%u rsp.next=%d i=%u size=%u\n",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003032 strm->res.wex ?
3033 human_time(TICKS_TO_MS(strm->res.wex - now_ms),
3034 TICKS_TO_MS(1000)) : "<NEVER>",
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003035 &strm->res.buf,
3036 b_orig(&strm->res.buf), (unsigned int)co_data(&strm->res),
Willy Tarreau7e9c30a2018-06-15 19:24:46 +02003037 (unsigned int)ci_head_ofs(&strm->res),
Willy Tarreau591d4452018-06-15 17:21:00 +02003038 strm->txn ? strm->txn->rsp.next : 0, (unsigned int)ci_data(&strm->res),
Willy Tarreauc9fa0482018-07-10 17:43:27 +02003039 (unsigned int)strm->res.buf.size);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003040
Willy Tarreau06d80a92017-10-19 14:32:15 +02003041 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01003042 si_applet_cant_put(si);
3043 return 0;
3044 }
3045
3046 /* use other states to dump the contents */
3047 }
3048 /* end of dump */
3049 appctx->ctx.sess.uid = 0;
3050 appctx->ctx.sess.section = 0;
3051 return 1;
3052}
3053
3054
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003055static int cli_parse_show_sess(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand4c5b4d52016-11-21 08:51:11 +01003056{
William Lallemand4c5b4d52016-11-21 08:51:11 +01003057 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
3058 return 1;
3059
3060 if (*args[2] && strcmp(args[2], "all") == 0)
3061 appctx->ctx.sess.target = (void *)-1;
3062 else if (*args[2])
3063 appctx->ctx.sess.target = (void *)strtoul(args[2], NULL, 0);
3064 else
3065 appctx->ctx.sess.target = NULL;
3066 appctx->ctx.sess.section = 0; /* start with stream status */
3067 appctx->ctx.sess.pos = 0;
3068
3069 return 0;
3070}
3071
3072/* This function dumps all streams' states onto the stream interface's
3073 * read buffer. It returns 0 if the output buffer is full and it needs
3074 * to be called again, otherwise non-zero. It is designed to be called
3075 * from stats_dump_sess_to_buffer() below.
3076 */
3077static int cli_io_handler_dump_sess(struct appctx *appctx)
3078{
3079 struct stream_interface *si = appctx->owner;
3080 struct connection *conn;
3081
3082 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW))) {
3083 /* If we're forced to shut down, we might have to remove our
3084 * reference to the last stream being dumped.
3085 */
3086 if (appctx->st2 == STAT_ST_LIST) {
3087 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
3088 LIST_DEL(&appctx->ctx.sess.bref.users);
3089 LIST_INIT(&appctx->ctx.sess.bref.users);
3090 }
3091 }
3092 return 1;
3093 }
3094
3095 chunk_reset(&trash);
3096
3097 switch (appctx->st2) {
3098 case STAT_ST_INIT:
3099 /* the function had not been called yet, let's prepare the
3100 * buffer for a response. We initialize the current stream
3101 * pointer to the first in the global list. When a target
3102 * stream is being destroyed, it is responsible for updating
3103 * this pointer. We know we have reached the end when this
3104 * pointer points back to the head of the streams list.
3105 */
3106 LIST_INIT(&appctx->ctx.sess.bref.users);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003107 HA_SPIN_LOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003108 appctx->ctx.sess.bref.ref = streams.n;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003109 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003110 appctx->st2 = STAT_ST_LIST;
3111 /* fall through */
3112
3113 case STAT_ST_LIST:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003114 HA_SPIN_LOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003115 /* first, let's detach the back-ref from a possible previous stream */
3116 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users)) {
3117 LIST_DEL(&appctx->ctx.sess.bref.users);
3118 LIST_INIT(&appctx->ctx.sess.bref.users);
3119 }
3120
3121 /* and start from where we stopped */
3122 while (appctx->ctx.sess.bref.ref != &streams) {
3123 char pn[INET6_ADDRSTRLEN];
3124 struct stream *curr_strm;
3125
3126 curr_strm = LIST_ELEM(appctx->ctx.sess.bref.ref, struct stream *, list);
3127
3128 if (appctx->ctx.sess.target) {
3129 if (appctx->ctx.sess.target != (void *)-1 && appctx->ctx.sess.target != curr_strm)
3130 goto next_sess;
3131
3132 LIST_ADDQ(&curr_strm->back_refs, &appctx->ctx.sess.bref.users);
3133 /* call the proper dump() function and return if we're missing space */
Emeric Brun6b35e9b2017-06-30 16:23:45 +02003134 if (!stats_dump_full_strm_to_buffer(si, curr_strm)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003135 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003136 return 0;
Emeric Brun6b35e9b2017-06-30 16:23:45 +02003137 }
William Lallemand4c5b4d52016-11-21 08:51:11 +01003138
3139 /* stream dump complete */
3140 LIST_DEL(&appctx->ctx.sess.bref.users);
3141 LIST_INIT(&appctx->ctx.sess.bref.users);
3142 if (appctx->ctx.sess.target != (void *)-1) {
3143 appctx->ctx.sess.target = NULL;
3144 break;
3145 }
3146 else
3147 goto next_sess;
3148 }
3149
3150 chunk_appendf(&trash,
3151 "%p: proto=%s",
3152 curr_strm,
3153 strm_li(curr_strm) ? strm_li(curr_strm)->proto->name : "?");
3154
3155 conn = objt_conn(strm_orig(curr_strm));
3156 switch (conn ? addr_to_str(&conn->addr.from, pn, sizeof(pn)) : AF_UNSPEC) {
3157 case AF_INET:
3158 case AF_INET6:
3159 chunk_appendf(&trash,
3160 " src=%s:%d fe=%s be=%s srv=%s",
3161 pn,
3162 get_host_port(&conn->addr.from),
3163 strm_fe(curr_strm)->id,
3164 (curr_strm->be->cap & PR_CAP_BE) ? curr_strm->be->id : "<NONE>",
3165 objt_server(curr_strm->target) ? objt_server(curr_strm->target)->id : "<none>"
3166 );
3167 break;
3168 case AF_UNIX:
3169 chunk_appendf(&trash,
3170 " src=unix:%d fe=%s be=%s srv=%s",
3171 strm_li(curr_strm)->luid,
3172 strm_fe(curr_strm)->id,
3173 (curr_strm->be->cap & PR_CAP_BE) ? curr_strm->be->id : "<NONE>",
3174 objt_server(curr_strm->target) ? objt_server(curr_strm->target)->id : "<none>"
3175 );
3176 break;
3177 }
3178
3179 chunk_appendf(&trash,
3180 " ts=%02x age=%s calls=%d",
3181 curr_strm->task->state,
3182 human_time(now.tv_sec - curr_strm->logs.tv_accept.tv_sec, 1),
3183 curr_strm->task->calls);
3184
3185 chunk_appendf(&trash,
Willy Tarreau506a29a2018-07-18 10:07:58 +02003186 " rq[f=%06xh,i=%u,an=%02xh,rx=%s",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003187 curr_strm->req.flags,
Willy Tarreau7e9c30a2018-06-15 19:24:46 +02003188 (unsigned int)ci_data(&curr_strm->req),
William Lallemand4c5b4d52016-11-21 08:51:11 +01003189 curr_strm->req.analysers,
3190 curr_strm->req.rex ?
3191 human_time(TICKS_TO_MS(curr_strm->req.rex - now_ms),
3192 TICKS_TO_MS(1000)) : "");
3193
3194 chunk_appendf(&trash,
3195 ",wx=%s",
3196 curr_strm->req.wex ?
3197 human_time(TICKS_TO_MS(curr_strm->req.wex - now_ms),
3198 TICKS_TO_MS(1000)) : "");
3199
3200 chunk_appendf(&trash,
3201 ",ax=%s]",
3202 curr_strm->req.analyse_exp ?
3203 human_time(TICKS_TO_MS(curr_strm->req.analyse_exp - now_ms),
3204 TICKS_TO_MS(1000)) : "");
3205
3206 chunk_appendf(&trash,
Willy Tarreau506a29a2018-07-18 10:07:58 +02003207 " rp[f=%06xh,i=%u,an=%02xh,rx=%s",
William Lallemand4c5b4d52016-11-21 08:51:11 +01003208 curr_strm->res.flags,
Willy Tarreau7e9c30a2018-06-15 19:24:46 +02003209 (unsigned int)ci_data(&curr_strm->res),
William Lallemand4c5b4d52016-11-21 08:51:11 +01003210 curr_strm->res.analysers,
3211 curr_strm->res.rex ?
3212 human_time(TICKS_TO_MS(curr_strm->res.rex - now_ms),
3213 TICKS_TO_MS(1000)) : "");
3214
3215 chunk_appendf(&trash,
3216 ",wx=%s",
3217 curr_strm->res.wex ?
3218 human_time(TICKS_TO_MS(curr_strm->res.wex - now_ms),
3219 TICKS_TO_MS(1000)) : "");
3220
3221 chunk_appendf(&trash,
3222 ",ax=%s]",
3223 curr_strm->res.analyse_exp ?
3224 human_time(TICKS_TO_MS(curr_strm->res.analyse_exp - now_ms),
3225 TICKS_TO_MS(1000)) : "");
3226
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003227 conn = cs_conn(objt_cs(curr_strm->si[0].end));
William Lallemand4c5b4d52016-11-21 08:51:11 +01003228 chunk_appendf(&trash,
3229 " s0=[%d,%1xh,fd=%d,ex=%s]",
3230 curr_strm->si[0].state,
3231 curr_strm->si[0].flags,
Willy Tarreau585744b2017-08-24 14:31:19 +02003232 conn ? conn->handle.fd : -1,
William Lallemand4c5b4d52016-11-21 08:51:11 +01003233 curr_strm->si[0].exp ?
3234 human_time(TICKS_TO_MS(curr_strm->si[0].exp - now_ms),
3235 TICKS_TO_MS(1000)) : "");
3236
Olivier Houchard9aaf7782017-09-13 18:30:23 +02003237 conn = cs_conn(objt_cs(curr_strm->si[1].end));
William Lallemand4c5b4d52016-11-21 08:51:11 +01003238 chunk_appendf(&trash,
3239 " s1=[%d,%1xh,fd=%d,ex=%s]",
3240 curr_strm->si[1].state,
3241 curr_strm->si[1].flags,
Willy Tarreau585744b2017-08-24 14:31:19 +02003242 conn ? conn->handle.fd : -1,
William Lallemand4c5b4d52016-11-21 08:51:11 +01003243 curr_strm->si[1].exp ?
3244 human_time(TICKS_TO_MS(curr_strm->si[1].exp - now_ms),
3245 TICKS_TO_MS(1000)) : "");
3246
3247 chunk_appendf(&trash,
3248 " exp=%s",
3249 curr_strm->task->expire ?
3250 human_time(TICKS_TO_MS(curr_strm->task->expire - now_ms),
3251 TICKS_TO_MS(1000)) : "");
3252 if (task_in_rq(curr_strm->task))
3253 chunk_appendf(&trash, " run(nice=%d)", curr_strm->task->nice);
3254
3255 chunk_appendf(&trash, "\n");
3256
Willy Tarreau06d80a92017-10-19 14:32:15 +02003257 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01003258 /* let's try again later from this stream. We add ourselves into
3259 * this stream's users so that it can remove us upon termination.
3260 */
3261 si_applet_cant_put(si);
3262 LIST_ADDQ(&curr_strm->back_refs, &appctx->ctx.sess.bref.users);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003263 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003264 return 0;
3265 }
3266
3267 next_sess:
3268 appctx->ctx.sess.bref.ref = curr_strm->list.n;
3269 }
3270
3271 if (appctx->ctx.sess.target && appctx->ctx.sess.target != (void *)-1) {
3272 /* specified stream not found */
3273 if (appctx->ctx.sess.section > 0)
3274 chunk_appendf(&trash, " *** session terminated while we were watching it ***\n");
3275 else
3276 chunk_appendf(&trash, "Session not found.\n");
3277
Willy Tarreau06d80a92017-10-19 14:32:15 +02003278 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand4c5b4d52016-11-21 08:51:11 +01003279 si_applet_cant_put(si);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003280 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003281 return 0;
3282 }
3283
3284 appctx->ctx.sess.target = NULL;
3285 appctx->ctx.sess.uid = 0;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003286 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003287 return 1;
3288 }
3289
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003290 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003291 /* fall through */
3292
3293 default:
3294 appctx->st2 = STAT_ST_FIN;
3295 return 1;
3296 }
3297}
3298
3299static void cli_release_show_sess(struct appctx *appctx)
3300{
3301 if (appctx->st2 == STAT_ST_LIST) {
Willy Tarreau7ce3f092017-11-10 16:24:41 +01003302 HA_SPIN_LOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003303 if (!LIST_ISEMPTY(&appctx->ctx.sess.bref.users))
3304 LIST_DEL(&appctx->ctx.sess.bref.users);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003305 HA_SPIN_UNLOCK(STRMS_LOCK, &streams_lock);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003306 }
3307}
3308
Willy Tarreau61b65212016-11-24 11:09:25 +01003309/* Parses the "shutdown session" directive, it always returns 1 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003310static int cli_parse_shutdown_session(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau61b65212016-11-24 11:09:25 +01003311{
3312 struct stream *strm, *ptr;
3313
3314 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3315 return 1;
3316
3317 if (!*args[2]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02003318 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau61b65212016-11-24 11:09:25 +01003319 appctx->ctx.cli.msg = "Session pointer expected (use 'show sess').\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01003320 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau61b65212016-11-24 11:09:25 +01003321 return 1;
3322 }
3323
3324 ptr = (void *)strtoul(args[2], NULL, 0);
3325
3326 /* first, look for the requested stream in the stream table */
3327 list_for_each_entry(strm, &streams, list) {
3328 if (strm == ptr)
3329 break;
3330 }
3331
3332 /* do we have the stream ? */
3333 if (strm != ptr) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02003334 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau61b65212016-11-24 11:09:25 +01003335 appctx->ctx.cli.msg = "No such session (use 'show sess').\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01003336 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau61b65212016-11-24 11:09:25 +01003337 return 1;
3338 }
3339
3340 stream_shutdown(strm, SF_ERR_KILLED);
3341 return 1;
3342}
3343
Willy Tarreau4e46b622016-11-23 16:50:48 +01003344/* Parses the "shutdown session server" directive, it always returns 1 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003345static int cli_parse_shutdown_sessions_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau4e46b622016-11-23 16:50:48 +01003346{
3347 struct server *sv;
3348 struct stream *strm, *strm_bck;
3349
3350 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3351 return 1;
3352
3353 sv = cli_find_server(appctx, args[3]);
3354 if (!sv)
3355 return 1;
3356
3357 /* kill all the stream that are on this server */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003358 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau4e46b622016-11-23 16:50:48 +01003359 list_for_each_entry_safe(strm, strm_bck, &sv->actconns, by_srv)
3360 if (strm->srv_conn == sv)
3361 stream_shutdown(strm, SF_ERR_KILLED);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003362 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau4e46b622016-11-23 16:50:48 +01003363 return 1;
3364}
3365
William Lallemand4c5b4d52016-11-21 08:51:11 +01003366/* register cli keywords */
3367static struct cli_kw_list cli_kws = {{ },{
3368 { { "show", "sess", NULL }, "show sess [id] : report the list of current sessions or dump this session", cli_parse_show_sess, cli_io_handler_dump_sess, cli_release_show_sess },
Willy Tarreau61b65212016-11-24 11:09:25 +01003369 { { "shutdown", "session", NULL }, "shutdown session : kill a specific session", cli_parse_shutdown_session, NULL, NULL },
Willy Tarreau4e46b622016-11-23 16:50:48 +01003370 { { "shutdown", "sessions", "server" }, "shutdown sessions server : kill sessions on a server", cli_parse_shutdown_sessions_server, NULL, NULL },
William Lallemand4c5b4d52016-11-21 08:51:11 +01003371 {{},}
3372}};
3373
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02003374/* main configuration keyword registration. */
3375static struct action_kw_list stream_tcp_keywords = { ILH, {
3376 { "use-service", stream_parse_use_service },
3377 { /* END */ }
3378}};
3379
3380static struct action_kw_list stream_http_keywords = { ILH, {
3381 { "use-service", stream_parse_use_service },
3382 { /* END */ }
3383}};
3384
Willy Tarreau8b22a712010-06-18 17:46:06 +02003385__attribute__((constructor))
Willy Tarreau87b09662015-04-03 00:22:06 +02003386static void __stream_init(void)
Willy Tarreau8b22a712010-06-18 17:46:06 +02003387{
Thierry FOURNIER5a363e72015-09-27 19:29:33 +02003388 tcp_req_cont_keywords_register(&stream_tcp_keywords);
3389 http_req_keywords_register(&stream_http_keywords);
William Lallemand4c5b4d52016-11-21 08:51:11 +01003390 cli_register_kw(&cli_kws);
Willy Tarreau8b22a712010-06-18 17:46:06 +02003391}
3392
Willy Tarreaubaaee002006-06-26 02:48:02 +02003393/*
3394 * Local variables:
3395 * c-indent-level: 8
3396 * c-basic-offset: 8
3397 * End:
3398 */