blob: 60338c9974dec1fc6c020f04dfd6481b651e85b0 [file] [log] [blame]
Willy TARREAU3dc06442006-06-15 21:48:13 +02001/*
Willy Tarreau87b09662015-04-03 00:22:06 +02002 * include/proto/stream.h
3 * This file defines everything related to streams.
Willy Tarreau81f9aa32010-06-01 17:45:26 +02004 *
5 * Copyright (C) 2000-2010 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Willy TARREAU3dc06442006-06-15 21:48:13 +020021
Willy Tarreau87b09662015-04-03 00:22:06 +020022#ifndef _PROTO_STREAM_H
23#define _PROTO_STREAM_H
Willy Tarreaubaaee002006-06-26 02:48:02 +020024
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020025#include <common/config.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020026#include <common/memory.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +020027#include <types/action.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020028#include <types/stream.h>
Willy Tarreaua24adf02014-11-27 01:11:56 +010029#include <proto/fd.h>
Willy Tarreau91c43d72010-06-20 11:19:22 +020030#include <proto/freq_ctr.h>
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020031#include <proto/stick_table.h>
Willy Tarreaua24adf02014-11-27 01:11:56 +010032#include <proto/task.h>
Willy TARREAU3dc06442006-06-15 21:48:13 +020033
Christopher Fauletc8b246f2019-05-14 22:05:28 +020034#define IS_HTX_STRM(strm) ((strm)->flags & SF_HTX)
35
Willy Tarreaubafbe012017-11-24 17:34:44 +010036extern struct pool_head *pool_head_stream;
Willy Tarreau87b09662015-04-03 00:22:06 +020037extern struct list streams;
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020038
Willy Tarreaubc174aa2012-11-19 16:10:32 +010039extern struct data_cb sess_conn_cb;
40
Willy Tarreau87787ac2017-08-28 16:22:54 +020041struct stream *stream_new(struct session *sess, enum obj_type *origin);
Olivier Houchard9aaf7782017-09-13 18:30:23 +020042int stream_create_from_cs(struct conn_stream *cs);
Willy Tarreaubaaee002006-06-26 02:48:02 +020043
Willy Tarreaue7dff022015-04-03 01:14:29 +020044/* kill a stream and set the termination flags to <why> (one of SF_ERR_*) */
Willy Tarreau87b09662015-04-03 00:22:06 +020045void stream_shutdown(struct stream *stream, int why);
Willy Tarreau5484d582019-05-22 09:33:03 +020046void stream_dump(struct buffer *buf, const struct stream *s, const char *pfx, char eol);
Willy Tarreau71c07ac2019-04-25 19:08:48 +020047void stream_dump_and_crash(enum obj_type *obj, int rate);
Simon Hormandec5be42011-06-08 09:19:07 +090048
Willy Tarreau87b09662015-04-03 00:22:06 +020049void stream_process_counters(struct stream *s);
50void sess_change_server(struct stream *sess, struct server *newsrv);
Olivier Houchard9f6af332018-05-25 14:04:04 +020051struct task *process_stream(struct task *t, void *context, unsigned short state);
Willy Tarreau87b09662015-04-03 00:22:06 +020052void default_srv_error(struct stream *s, struct stream_interface *si);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020053int parse_track_counters(char **args, int *arg,
54 int section_type, struct proxy *curpx,
55 struct track_ctr_prm *prm,
Willy Tarreau0a3dd742012-05-08 19:47:01 +020056 struct proxy *defpx, char **err);
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020057
Willy Tarreau87b09662015-04-03 00:22:06 +020058/* Update the stream's backend and server time stats */
59void stream_update_time_stats(struct stream *s);
Willy Tarreau87b09662015-04-03 00:22:06 +020060void stream_release_buffers(struct stream *s);
Willy Tarreaub882dd82018-11-06 15:50:21 +010061int stream_buf_available(void *arg);
Willy Tarreau4bfc5802014-06-17 12:19:18 +020062
Willy Tarreaub1ec8c42015-04-03 13:53:24 +020063/* returns the session this stream belongs to */
64static inline struct session *strm_sess(const struct stream *strm)
65{
66 return strm->sess;
67}
68
Willy Tarreaud0d8da92015-04-04 02:10:38 +020069/* returns the frontend this stream was initiated from */
70static inline struct proxy *strm_fe(const struct stream *strm)
71{
72 return strm->sess->fe;
73}
74
75/* returns the listener this stream was initiated from */
76static inline struct listener *strm_li(const struct stream *strm)
77{
78 return strm->sess->listener;
79}
80
81/* returns a pointer to the origin of the session which created this stream */
82static inline enum obj_type *strm_orig(const struct stream *strm)
83{
84 return strm->sess->origin;
85}
86
Willy Tarreau87b09662015-04-03 00:22:06 +020087/* Remove the refcount from the stream to the tracked counters, and clear the
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020088 * pointer to ensure this is only performed once. The caller is responsible for
Willy Tarreaua68f7622015-09-21 17:48:24 +020089 * ensuring that the pointer is valid first. We must be extremely careful not
90 * to touch the entries we inherited from the session.
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020091 */
Willy Tarreau87b09662015-04-03 00:22:06 +020092static inline void stream_store_counters(struct stream *s)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +020093{
Willy Tarreauf059a0f2010-08-03 16:29:52 +020094 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +010095 int i;
Emeric Brun819fc6f2017-06-13 19:37:32 +020096 struct stksess *ts;
Willy Tarreauf059a0f2010-08-03 16:29:52 +020097
Willy Tarreaub4c84932013-07-23 19:15:30 +020098 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Emeric Brun819fc6f2017-06-13 19:37:32 +020099 ts = stkctr_entry(&s->stkctr[i]);
100 if (!ts)
Willy Tarreau20d46a52012-12-09 15:55:40 +0100101 continue;
Willy Tarreaua68f7622015-09-21 17:48:24 +0200102
103 if (stkctr_entry(&s->sess->stkctr[i]))
104 continue;
105
Emeric Brun819fc6f2017-06-13 19:37:32 +0200106 ptr = stktable_data_ptr(s->stkctr[i].table, ts, STKTABLE_DT_CONN_CUR);
107 if (ptr) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100108 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200109
Tim Duesterhus8b87c012019-01-04 00:11:59 +0100110 if (stktable_data_cast(ptr, conn_cur) > 0)
111 stktable_data_cast(ptr, conn_cur)--;
Emeric Brun819fc6f2017-06-13 19:37:32 +0200112
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100113 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun0fed0b02017-11-29 16:15:07 +0100114
115 /* If data was modified, we need to touch to re-schedule sync */
116 stktable_touch_local(s->stkctr[i].table, ts, 0);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200117 }
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100118 stkctr_set_entry(&s->stkctr[i], NULL);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200119 stksess_kill_if_expired(s->stkctr[i].table, ts, 1);
Willy Tarreau38285c12010-06-18 16:35:43 +0200120 }
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200121}
122
Willy Tarreau87b09662015-04-03 00:22:06 +0200123/* Remove the refcount from the stream counters tracked at the content level if
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200124 * any, and clear the pointer to ensure this is only performed once. The caller
Willy Tarreaua68f7622015-09-21 17:48:24 +0200125 * is responsible for ensuring that the pointer is valid first. We must be
126 * extremely careful not to touch the entries we inherited from the session.
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200127 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200128static inline void stream_stop_content_counters(struct stream *s)
Willy Tarreau9ba2dcc2010-06-14 21:04:55 +0200129{
Emeric Brun819fc6f2017-06-13 19:37:32 +0200130 struct stksess *ts;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200131 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100132 int i;
Willy Tarreaue3487932010-06-18 21:03:20 +0200133
Willy Tarreaub4c84932013-07-23 19:15:30 +0200134 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Emeric Brun819fc6f2017-06-13 19:37:32 +0200135 ts = stkctr_entry(&s->stkctr[i]);
136 if (!ts)
Willy Tarreau20d46a52012-12-09 15:55:40 +0100137 continue;
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200138
Willy Tarreaua68f7622015-09-21 17:48:24 +0200139 if (stkctr_entry(&s->sess->stkctr[i]))
140 continue;
141
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100142 if (!(stkctr_flags(&s->stkctr[i]) & STKCTR_TRACK_CONTENT))
Willy Tarreau20d46a52012-12-09 15:55:40 +0100143 continue;
144
Emeric Brun819fc6f2017-06-13 19:37:32 +0200145 ptr = stktable_data_ptr(s->stkctr[i].table, ts, STKTABLE_DT_CONN_CUR);
146 if (ptr) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100147 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200148
Tim Duesterhus8b87c012019-01-04 00:11:59 +0100149 if (stktable_data_cast(ptr, conn_cur) > 0)
150 stktable_data_cast(ptr, conn_cur)--;
Emeric Brun819fc6f2017-06-13 19:37:32 +0200151
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100152 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun0fed0b02017-11-29 16:15:07 +0100153
154 /* If data was modified, we need to touch to re-schedule sync */
155 stktable_touch_local(s->stkctr[i].table, ts, 0);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200156 }
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100157 stkctr_set_entry(&s->stkctr[i], NULL);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200158 stksess_kill_if_expired(s->stkctr[i].table, ts, 1);
Willy Tarreau0a4838c2010-08-06 20:11:05 +0200159 }
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200160}
Willy Tarreaue3487932010-06-18 21:03:20 +0200161
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200162/* Increase total and concurrent connection count for stick entry <ts> of table
163 * <t>. The caller is responsible for ensuring that <t> and <ts> are valid
164 * pointers, and for calling this only once per connection.
165 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200166static inline void stream_start_counters(struct stktable *t, struct stksess *ts)
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200167{
168 void *ptr;
Willy Tarreau91c43d72010-06-20 11:19:22 +0200169
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100170 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200171
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200172 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_CONN_CUR);
173 if (ptr)
174 stktable_data_cast(ptr, conn_cur)++;
175
176 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_CONN_CNT);
177 if (ptr)
178 stktable_data_cast(ptr, conn_cnt)++;
179
180 ptr = stktable_data_ptr(t, ts, STKTABLE_DT_CONN_RATE);
181 if (ptr)
182 update_freq_ctr_period(&stktable_data_cast(ptr, conn_rate),
183 t->data_arg[STKTABLE_DT_CONN_RATE].u, 1);
184 if (tick_isset(t->expire))
185 ts->expire = tick_add(now_ms, MS_TO_TICKS(t->expire));
Emeric Brun819fc6f2017-06-13 19:37:32 +0200186
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100187 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun0fed0b02017-11-29 16:15:07 +0100188
189 /* If data was modified, we need to touch to re-schedule sync */
190 stktable_touch_local(t, ts, 0);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200191}
192
Willy Tarreau87b09662015-04-03 00:22:06 +0200193/* Enable tracking of stream counters as <stkctr> on stksess <ts>. The caller is
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200194 * responsible for ensuring that <t> and <ts> are valid pointers. Some controls
195 * are performed to ensure the state can still change.
196 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200197static inline void stream_track_stkctr(struct stkctr *ctr, struct stktable *t, struct stksess *ts)
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200198{
Emeric Brun819fc6f2017-06-13 19:37:32 +0200199 /* Why this test ???? */
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100200 if (stkctr_entry(ctr))
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200201 return;
202
Willy Tarreau20d46a52012-12-09 15:55:40 +0100203 ctr->table = t;
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100204 stkctr_set_entry(ctr, ts);
Willy Tarreau87b09662015-04-03 00:22:06 +0200205 stream_start_counters(t, ts);
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200206}
207
Willy Tarreauda7ff642010-06-23 11:44:09 +0200208/* Increase the number of cumulated HTTP requests in the tracked counters */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200209static inline void stream_inc_http_req_ctr(struct stream *s)
Willy Tarreauda7ff642010-06-23 11:44:09 +0200210{
Emeric Brun819fc6f2017-06-13 19:37:32 +0200211 struct stksess *ts;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200212 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100213 int i;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200214
Willy Tarreaub4c84932013-07-23 19:15:30 +0200215 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200216 struct stkctr *stkctr = &s->stkctr[i];
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200217
Emeric Brun819fc6f2017-06-13 19:37:32 +0200218 ts = stkctr_entry(stkctr);
219 if (!ts) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200220 stkctr = &s->sess->stkctr[i];
Emeric Brun819fc6f2017-06-13 19:37:32 +0200221 ts = stkctr_entry(stkctr);
222 if (!ts)
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200223 continue;
224 }
225
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100226 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200227
228 ptr = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_HTTP_REQ_CNT);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200229 if (ptr)
230 stktable_data_cast(ptr, http_req_cnt)++;
231
Emeric Brun819fc6f2017-06-13 19:37:32 +0200232 ptr = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_HTTP_REQ_RATE);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200233 if (ptr)
234 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200235 stkctr->table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200236
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100237 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun0fed0b02017-11-29 16:15:07 +0100238
239 /* If data was modified, we need to touch to re-schedule sync */
240 stktable_touch_local(stkctr->table, ts, 0);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200241 }
242}
243
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200244/* Increase the number of cumulated HTTP requests in the backend's tracked
245 * counters. We don't look up the session since it cannot happen in the bakcend.
246 */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200247static inline void stream_inc_be_http_req_ctr(struct stream *s)
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100248{
Emeric Brun819fc6f2017-06-13 19:37:32 +0200249 struct stksess *ts;
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100250 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100251 int i;
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100252
Willy Tarreaub4c84932013-07-23 19:15:30 +0200253 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200254 struct stkctr *stkctr = &s->stkctr[i];
255
Emeric Brun819fc6f2017-06-13 19:37:32 +0200256 ts = stkctr_entry(stkctr);
257 if (!ts)
Willy Tarreau20d46a52012-12-09 15:55:40 +0100258 continue;
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100259
Willy Tarreaucc08d2c2014-01-28 23:18:23 +0100260 if (!(stkctr_flags(&s->stkctr[i]) & STKCTR_TRACK_BACKEND))
Willy Tarreau20d46a52012-12-09 15:55:40 +0100261 continue;
262
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100263 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200264
265 ptr = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_HTTP_REQ_CNT);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100266 if (ptr)
267 stktable_data_cast(ptr, http_req_cnt)++;
268
Emeric Brun819fc6f2017-06-13 19:37:32 +0200269 ptr = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_HTTP_REQ_RATE);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100270 if (ptr)
271 update_freq_ctr_period(&stktable_data_cast(ptr, http_req_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200272 stkctr->table->data_arg[STKTABLE_DT_HTTP_REQ_RATE].u, 1);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200273
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100274 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun0fed0b02017-11-29 16:15:07 +0100275
276 /* If data was modified, we need to touch to re-schedule sync */
277 stktable_touch_local(stkctr->table, ts, 0);
Willy Tarreau5d5b5d82012-12-09 12:00:04 +0100278 }
279}
280
Willy Tarreauda7ff642010-06-23 11:44:09 +0200281/* Increase the number of cumulated failed HTTP requests in the tracked
282 * counters. Only 4xx requests should be counted here so that we can
283 * distinguish between errors caused by client behaviour and other ones.
284 * Note that even 404 are interesting because they're generally caused by
285 * vulnerability scans.
286 */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200287static inline void stream_inc_http_err_ctr(struct stream *s)
Willy Tarreauda7ff642010-06-23 11:44:09 +0200288{
Emeric Brun819fc6f2017-06-13 19:37:32 +0200289 struct stksess *ts;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200290 void *ptr;
Willy Tarreau20d46a52012-12-09 15:55:40 +0100291 int i;
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200292
Willy Tarreaub4c84932013-07-23 19:15:30 +0200293 for (i = 0; i < MAX_SESS_STKCTR; i++) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200294 struct stkctr *stkctr = &s->stkctr[i];
Willy Tarreauf059a0f2010-08-03 16:29:52 +0200295
Emeric Brun819fc6f2017-06-13 19:37:32 +0200296 ts = stkctr_entry(stkctr);
297 if (!ts) {
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200298 stkctr = &s->sess->stkctr[i];
Emeric Brun819fc6f2017-06-13 19:37:32 +0200299 ts = stkctr_entry(stkctr);
300 if (!ts)
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200301 continue;
302 }
303
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100304 HA_RWLOCK_WRLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200305
306 ptr = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_HTTP_ERR_CNT);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200307 if (ptr)
308 stktable_data_cast(ptr, http_err_cnt)++;
309
Emeric Brun819fc6f2017-06-13 19:37:32 +0200310 ptr = stktable_data_ptr(stkctr->table, ts, STKTABLE_DT_HTTP_ERR_RATE);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200311 if (ptr)
312 update_freq_ctr_period(&stktable_data_cast(ptr, http_err_rate),
Willy Tarreau8b7f8682015-04-04 16:29:12 +0200313 stkctr->table->data_arg[STKTABLE_DT_HTTP_ERR_RATE].u, 1);
Emeric Brun819fc6f2017-06-13 19:37:32 +0200314
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100315 HA_RWLOCK_WRUNLOCK(STK_SESS_LOCK, &ts->lock);
Emeric Brun0fed0b02017-11-29 16:15:07 +0100316
317 /* If data was modified, we need to touch to re-schedule sync */
318 stktable_touch_local(stkctr->table, ts, 0);
Willy Tarreauda7ff642010-06-23 11:44:09 +0200319 }
320}
321
Willy Tarreau0e492e22019-04-15 21:25:03 +0200322static inline void __stream_add_srv_conn(struct stream *sess, struct server *srv)
Simon Hormanaf514952011-06-21 14:34:57 +0900323{
324 sess->srv_conn = srv;
325 LIST_ADD(&srv->actconns, &sess->by_srv);
Willy Tarreau103e5662017-11-26 18:48:14 +0100326}
327
Willy Tarreau0e492e22019-04-15 21:25:03 +0200328static inline void stream_add_srv_conn(struct stream *sess, struct server *srv)
Willy Tarreau103e5662017-11-26 18:48:14 +0100329{
330 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
331 __stream_add_srv_conn(sess, srv);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100332 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Simon Hormanaf514952011-06-21 14:34:57 +0900333}
334
Willy Tarreau0e492e22019-04-15 21:25:03 +0200335static inline void stream_del_srv_conn(struct stream *sess)
Simon Hormanaf514952011-06-21 14:34:57 +0900336{
Christopher Faulet29f77e82017-06-08 14:04:45 +0200337 struct server *srv = sess->srv_conn;
338
339 if (!srv)
Simon Hormanaf514952011-06-21 14:34:57 +0900340 return;
341
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100342 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Simon Hormanaf514952011-06-21 14:34:57 +0900343 sess->srv_conn = NULL;
344 LIST_DEL(&sess->by_srv);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100345 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Simon Hormanaf514952011-06-21 14:34:57 +0900346}
347
Willy Tarreau0e492e22019-04-15 21:25:03 +0200348static inline void stream_init_srv_conn(struct stream *sess)
Willy Tarreau9bd0d742011-07-20 00:17:39 +0200349{
350 sess->srv_conn = NULL;
351 LIST_INIT(&sess->by_srv);
352}
353
Thierry FOURNIER5a363e72015-09-27 19:29:33 +0200354void service_keywords_register(struct action_kw_list *kw_list);
Willy Tarreau679bba12019-03-19 08:08:10 +0100355void list_services(FILE *out);
Thierry FOURNIER5a363e72015-09-27 19:29:33 +0200356
Willy Tarreau87b09662015-04-03 00:22:06 +0200357#endif /* _PROTO_STREAM_H */
Willy TARREAU3dc06442006-06-15 21:48:13 +0200358
Willy Tarreaubaaee002006-06-26 02:48:02 +0200359/*
360 * Local variables:
361 * c-indent-level: 8
362 * c-basic-offset: 8
363 * End:
364 */