blob: 92692ab535032b9506cc9738cbf67692aa52bee5 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Queue management functions.
3 *
Willy Tarreauac68c5d2009-10-04 23:12:44 +02004 * Copyright 2000-2009 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
Willy Tarreau6bdd05c2018-07-25 15:21:00 +020013/* Short explanation on the locking, which is far from being trivial : a
14 * pendconn is a list element which necessarily is associated with an existing
15 * stream. It has pendconn->strm always valid. A pendconn may only be in one of
16 * these three states :
17 * - unlinked : in this case it is an empty list head ;
18 * - linked into the server's queue ;
19 * - linked into the proxy's queue.
20 *
21 * A stream does not necessarily have such a pendconn. Thus the pendconn is
22 * designated by the stream->pend_pos pointer. This results in some properties :
23 * - pendconn->strm->pend_pos is never NULL for any valid pendconn
Patrick Hemmer0355dab2018-05-11 12:52:31 -040024 * - if p->node.node.leaf_p is NULL, the element is unlinked,
Willy Tarreau6bdd05c2018-07-25 15:21:00 +020025 * otherwise it necessarily belongs to one of the other lists ; this may
26 * not be atomically checked under threads though ;
27 * - pendconn->px is never NULL if pendconn->list is not empty
Willy Tarreau88930dd2018-07-26 07:38:54 +020028 * - pendconn->srv is never NULL if pendconn->list is in the server's queue,
Willy Tarreau6bdd05c2018-07-25 15:21:00 +020029 * and is always NULL if pendconn->list is in the backend's queue or empty.
Willy Tarreau88930dd2018-07-26 07:38:54 +020030 * - pendconn->target is NULL while the element is queued, and points to the
31 * assigned server when the pendconn is picked.
Willy Tarreau6bdd05c2018-07-25 15:21:00 +020032 *
33 * Threads complicate the design a little bit but rules remain simple :
Willy Tarreau6bdd05c2018-07-25 15:21:00 +020034 * - the server's queue lock must be held at least when manipulating the
35 * server's queue, which is when adding a pendconn to the queue and when
36 * removing a pendconn from the queue. It protects the queue's integrity.
37 *
38 * - the proxy's queue lock must be held at least when manipulating the
39 * proxy's queue, which is when adding a pendconn to the queue and when
40 * removing a pendconn from the queue. It protects the queue's integrity.
41 *
Willy Tarreau3201e4e2018-07-26 08:23:24 +020042 * - both locks are compatible and may be held at the same time.
Willy Tarreau6bdd05c2018-07-25 15:21:00 +020043 *
44 * - a pendconn_add() is only performed by the stream which will own the
45 * pendconn ; the pendconn is allocated at this moment and returned ; it is
46 * added to either the server or the proxy's queue while holding this
Willy Tarreau49801602020-06-04 22:50:02 +020047s * queue's lock.
Willy Tarreau6bdd05c2018-07-25 15:21:00 +020048 *
49 * - the pendconn is then met by a thread walking over the proxy or server's
50 * queue with the respective lock held. This lock is exclusive and the
51 * pendconn can only appear in one queue so by definition a single thread
52 * may find this pendconn at a time.
53 *
54 * - the pendconn is unlinked either by its own stream upon success/abort/
55 * free, or by another one offering it its server slot. This is achieved by
56 * pendconn_process_next_strm() under either the server or proxy's lock,
57 * pendconn_redistribute() under the server's lock, pendconn_grab_from_px()
58 * under the proxy's lock, or pendconn_unlink() under either the proxy's or
59 * the server's lock depending on the queue the pendconn is attached to.
60 *
61 * - no single operation except the pendconn initialisation prior to the
Willy Tarreau3201e4e2018-07-26 08:23:24 +020062 * insertion are performed without eithre a queue lock held or the element
63 * being unlinked and visible exclusively to its stream.
Willy Tarreau6bdd05c2018-07-25 15:21:00 +020064 *
Willy Tarreau88930dd2018-07-26 07:38:54 +020065 * - pendconn_grab_from_px() and pendconn_process_next_strm() assign ->target
66 * so that the stream knows what server to work with (via
67 * pendconn_dequeue() which sets it on strm->target).
Willy Tarreau6bdd05c2018-07-25 15:21:00 +020068 *
69 * - a pendconn doesn't switch between queues, it stays where it is.
Willy Tarreau6bdd05c2018-07-25 15:21:00 +020070 */
71
Willy Tarreaudfd3de82020-06-04 23:46:14 +020072#include <import/eb32tree.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020073#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020074#include <haproxy/backend.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020075#include <haproxy/http_rules.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020076#include <haproxy/pool.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020077#include <haproxy/queue.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020078#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020079#include <haproxy/server-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020080#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020081#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020082#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020083#include <haproxy/tcp_rules.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +020084#include <haproxy/thread.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020085#include <haproxy/time.h>
Willy Tarreauc1a689f2021-05-08 13:59:05 +020086#include <haproxy/tools.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
88
Patrick Hemmer248cb4c2018-05-11 12:52:31 -040089#define NOW_OFFSET_BOUNDARY() ((now_ms - (TIMER_LOOK_BACK >> 12)) & 0xfffff)
90#define KEY_CLASS(key) ((u32)key & 0xfff00000)
91#define KEY_OFFSET(key) ((u32)key & 0x000fffff)
92#define KEY_CLASS_OFFSET_BOUNDARY(key) (KEY_CLASS(key) | NOW_OFFSET_BOUNDARY())
93#define MAKE_KEY(class, offset) (((u32)(class + 0x7ff) << 20) | ((u32)(now_ms + offset) & 0xfffff))
94
Willy Tarreau8ceae722018-11-26 11:58:30 +010095DECLARE_POOL(pool_head_pendconn, "pendconn", sizeof(struct pendconn));
Willy Tarreaubaaee002006-06-26 02:48:02 +020096
97/* returns the effective dynamic maxconn for a server, considering the minconn
Willy Tarreau86034312006-12-29 00:10:33 +010098 * and the proxy's usage relative to its dynamic connections limit. It is
Willy Tarreau9909fc12007-11-30 17:42:05 +010099 * expected that 0 < s->minconn <= s->maxconn when this is called. If the
100 * server is currently warming up, the slowstart is also applied to the
101 * resulting value, which can be lower than minconn in this case, but never
102 * less than 1.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103 */
Willy Tarreaub17916e2006-10-15 15:17:57 +0200104unsigned int srv_dynamic_maxconn(const struct server *s)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200105{
Willy Tarreau9909fc12007-11-30 17:42:05 +0100106 unsigned int max;
107
Willy Tarreau86034312006-12-29 00:10:33 +0100108 if (s->proxy->beconn >= s->proxy->fullconn)
109 /* no fullconn or proxy is full */
Willy Tarreau9909fc12007-11-30 17:42:05 +0100110 max = s->maxconn;
111 else if (s->minconn == s->maxconn)
Willy Tarreau86034312006-12-29 00:10:33 +0100112 /* static limit */
Willy Tarreau9909fc12007-11-30 17:42:05 +0100113 max = s->maxconn;
114 else max = MAX(s->minconn,
115 s->proxy->beconn * s->maxconn / s->proxy->fullconn);
Willy Tarreau86034312006-12-29 00:10:33 +0100116
Emeric Brun52a91d32017-08-31 14:41:55 +0200117 if ((s->cur_state == SRV_ST_STARTING) &&
Willy Tarreau9909fc12007-11-30 17:42:05 +0100118 now.tv_sec < s->last_change + s->slowstart &&
119 now.tv_sec >= s->last_change) {
120 unsigned int ratio;
Willy Tarreau28a9e522008-09-14 17:43:27 +0200121 ratio = 100 * (now.tv_sec - s->last_change) / s->slowstart;
122 max = MAX(1, max * ratio / 100);
Willy Tarreau9909fc12007-11-30 17:42:05 +0100123 }
124 return max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200125}
126
Willy Tarreau3e3ae252020-10-21 11:20:07 +0200127/* Remove the pendconn from the server's queue. At this stage, the connection
Willy Tarreau96bca332020-10-21 12:01:28 +0200128 * is not really dequeued. It will be done during the process_stream. It is
129 * up to the caller to atomically decrement the pending counts.
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100130 *
Willy Tarreau3e3ae252020-10-21 11:20:07 +0200131 * The caller must own the lock on the server queue. The pendconn must still be
132 * queued (p->node.leaf_p != NULL) and must be in a server (p->srv != NULL).
Christopher Fauletf3a55db2017-06-09 14:26:38 +0200133 */
Willy Tarreau3e3ae252020-10-21 11:20:07 +0200134static void __pendconn_unlink_srv(struct pendconn *p)
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100135{
Willy Tarreau51c63f02021-06-23 16:43:45 +0200136 p->strm->logs.srv_queue_pos += _HA_ATOMIC_LOAD(&p->queue->idx) - p->queue_idx;
Willy Tarreau3e3ae252020-10-21 11:20:07 +0200137 eb32_delete(&p->node);
138}
139
140/* Remove the pendconn from the proxy's queue. At this stage, the connection
Willy Tarreau96bca332020-10-21 12:01:28 +0200141 * is not really dequeued. It will be done during the process_stream. It is
142 * up to the caller to atomically decrement the pending counts.
Willy Tarreau3e3ae252020-10-21 11:20:07 +0200143 *
144 * The caller must own the lock on the proxy queue. The pendconn must still be
145 * queued (p->node.leaf_p != NULL) and must be in the proxy (p->srv == NULL).
146 */
147static void __pendconn_unlink_prx(struct pendconn *p)
148{
Willy Tarreau51c63f02021-06-23 16:43:45 +0200149 p->strm->logs.prx_queue_pos += _HA_ATOMIC_LOAD(&p->queue->idx) - p->queue_idx;
Patrick Hemmer0355dab2018-05-11 12:52:31 -0400150 eb32_delete(&p->node);
Christopher Fauletf3a55db2017-06-09 14:26:38 +0200151}
152
Willy Tarreau7c6f8a22018-07-26 08:03:14 +0200153/* Locks the queue the pendconn element belongs to. This relies on both p->px
154 * and p->srv to be properly initialized (which is always the case once the
155 * element has been added).
156 */
157static inline void pendconn_queue_lock(struct pendconn *p)
158{
Willy Tarreau51c63f02021-06-23 16:43:45 +0200159 HA_SPIN_LOCK(QUEUE_LOCK, &p->queue->lock);
Willy Tarreau7c6f8a22018-07-26 08:03:14 +0200160}
161
162/* Unlocks the queue the pendconn element belongs to. This relies on both p->px
163 * and p->srv to be properly initialized (which is always the case once the
164 * element has been added).
165 */
166static inline void pendconn_queue_unlock(struct pendconn *p)
167{
Willy Tarreau51c63f02021-06-23 16:43:45 +0200168 HA_SPIN_UNLOCK(QUEUE_LOCK, &p->queue->lock);
Willy Tarreau7c6f8a22018-07-26 08:03:14 +0200169}
170
Willy Tarreau9624fae2018-07-25 08:04:20 +0200171/* Removes the pendconn from the server/proxy queue. At this stage, the
172 * connection is not really dequeued. It will be done during process_stream().
Willy Tarreau9ada0302019-11-14 14:58:39 +0100173 * This function takes all the required locks for the operation. The pendconn
174 * must be valid, though it doesn't matter if it was already unlinked. Prefer
Willy Tarreau87154e32021-08-31 17:21:39 +0200175 * pendconn_cond_unlink() to first check <p>. It also forces a serialization
176 * on p->del_lock to make sure another thread currently waking it up finishes
177 * first.
Willy Tarreau9624fae2018-07-25 08:04:20 +0200178 */
179void pendconn_unlink(struct pendconn *p)
180{
Willy Tarreau51c63f02021-06-23 16:43:45 +0200181 struct queue *q = p->queue;
182 struct proxy *px = q->px;
183 struct server *sv = q->sv;
Willy Tarreaud03adce2021-06-23 16:54:16 +0200184 uint oldidx;
185 int done = 0;
Willy Tarreau96bca332020-10-21 12:01:28 +0200186
Willy Tarreaud03adce2021-06-23 16:54:16 +0200187 oldidx = _HA_ATOMIC_LOAD(&p->queue->idx);
188 HA_SPIN_LOCK(QUEUE_LOCK, &q->lock);
Willy Tarreau87154e32021-08-31 17:21:39 +0200189 HA_SPIN_LOCK(QUEUE_LOCK, &p->del_lock);
190
Willy Tarreaud03adce2021-06-23 16:54:16 +0200191 if (p->node.node.leaf_p) {
192 eb32_delete(&p->node);
193 done = 1;
Willy Tarreau3e3ae252020-10-21 11:20:07 +0200194 }
Willy Tarreau87154e32021-08-31 17:21:39 +0200195
196 HA_SPIN_UNLOCK(QUEUE_LOCK, &p->del_lock);
Willy Tarreaud03adce2021-06-23 16:54:16 +0200197 HA_SPIN_UNLOCK(QUEUE_LOCK, &q->lock);
198
199 if (done) {
200 oldidx -= p->queue_idx;
201 if (sv)
202 p->strm->logs.srv_queue_pos += oldidx;
203 else
204 p->strm->logs.prx_queue_pos += oldidx;
205
206 _HA_ATOMIC_DEC(&q->length);
207 _HA_ATOMIC_DEC(&px->totpend);
Willy Tarreau3e3ae252020-10-21 11:20:07 +0200208 }
Willy Tarreau9624fae2018-07-25 08:04:20 +0200209}
210
Willy Tarreau2bf3f2c2021-06-24 07:20:26 +0200211/* Retrieve the first pendconn from tree <pendconns>. Classes are always
212 * considered first, then the time offset. The time does wrap, so the
213 * lookup is performed twice, one to retrieve the first class and a second
214 * time to retrieve the earliest time in this class.
Patrick Hemmer248cb4c2018-05-11 12:52:31 -0400215 */
Willy Tarreau2bf3f2c2021-06-24 07:20:26 +0200216static struct pendconn *pendconn_first(struct eb_root *pendconns)
Patrick Hemmer248cb4c2018-05-11 12:52:31 -0400217{
218 struct eb32_node *node, *node2 = NULL;
219 u32 key;
220
Willy Tarreau2bf3f2c2021-06-24 07:20:26 +0200221 node = eb32_first(pendconns);
222 if (!node)
Patrick Hemmer248cb4c2018-05-11 12:52:31 -0400223 return NULL;
224
225 key = KEY_CLASS_OFFSET_BOUNDARY(node->key);
Willy Tarreau2bf3f2c2021-06-24 07:20:26 +0200226 node2 = eb32_lookup_ge(pendconns, key);
Patrick Hemmer248cb4c2018-05-11 12:52:31 -0400227
228 if (!node2 ||
229 KEY_CLASS(node2->key) != KEY_CLASS(node->key)) {
230 /* no other key in the tree, or in this class */
231 return eb32_entry(node, struct pendconn, node);
232 }
233
234 /* found a better key */
235 return eb32_entry(node2, struct pendconn, node);
236}
237
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100238/* Process the next pending connection from either a server or a proxy, and
Christopher Fauletfd83f0b2018-03-19 15:22:09 +0100239 * returns a strictly positive value on success (see below). If no pending
240 * connection is found, 0 is returned. Note that neither <srv> nor <px> may be
241 * NULL. Priority is given to the oldest request in the queue if both <srv> and
242 * <px> have pending requests. This ensures that no request will be left
243 * unserved. The <px> queue is not considered if the server (or a tracked
244 * server) is not RUNNING, is disabled, or has a null weight (server going
245 * down). The <srv> queue is still considered in this case, because if some
246 * connections remain there, it means that some requests have been forced there
247 * after it was seen down (eg: due to option persist). The stream is
248 * immediately marked as "assigned", and both its <srv> and <srv_conn> are set
249 * to <srv>.
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100250 *
Willy Tarreaua0e9c552021-06-18 19:45:17 +0200251 * The proxy's queue will be consulted only if px_ok is non-zero.
252 *
Willy Tarreau87154e32021-08-31 17:21:39 +0200253 * This function must only be called if the server queue is locked _AND_ the
254 * proxy queue is not. Today it is only called by process_srv_queue.
Willy Tarreaua0e9c552021-06-18 19:45:17 +0200255 * When a pending connection is dequeued, this function returns 1 if a pendconn
256 * is dequeued, otherwise 0.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200257 */
Willy Tarreaua0e9c552021-06-18 19:45:17 +0200258static int pendconn_process_next_strm(struct server *srv, struct proxy *px, int px_ok)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200259{
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100260 struct pendconn *p = NULL;
Patrick Hemmerda282f42018-05-11 12:52:31 -0400261 struct pendconn *pp = NULL;
Patrick Hemmer248cb4c2018-05-11 12:52:31 -0400262 u32 pkey, ppkey;
Willy Tarreaud132f742010-08-06 10:08:23 +0200263
Willy Tarreau2bf3f2c2021-06-24 07:20:26 +0200264 p = NULL;
Willy Tarreau90a160a2021-06-24 07:21:59 +0200265 if (srv->queue.length)
Willy Tarreau2bf3f2c2021-06-24 07:20:26 +0200266 p = pendconn_first(&srv->queue.head);
Willy Tarreau2bf3f2c2021-06-24 07:20:26 +0200267
268 pp = NULL;
Willy Tarreau49667c12021-06-24 08:04:24 +0200269 if (px_ok && px->queue.length) {
270 /* the lock only remains held as long as the pp is
271 * in the proxy's queue.
272 */
Willy Tarreau47ee44f2021-06-24 16:00:18 +0200273 HA_SPIN_LOCK(QUEUE_LOCK, &px->queue.lock);
Willy Tarreau2bf3f2c2021-06-24 07:20:26 +0200274 pp = pendconn_first(&px->queue.head);
Willy Tarreau49667c12021-06-24 08:04:24 +0200275 if (!pp)
Willy Tarreau47ee44f2021-06-24 16:00:18 +0200276 HA_SPIN_UNLOCK(QUEUE_LOCK, &px->queue.lock);
Willy Tarreau49667c12021-06-24 08:04:24 +0200277 }
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100278
Willy Tarreau5343d8e2021-06-24 07:22:03 +0200279 if (!p && !pp)
Willy Tarreaua48905b2021-06-24 07:27:01 +0200280 return 0;
Christopher Fauletcd7126b2021-02-11 11:13:33 +0100281 else if (!pp)
282 goto use_p; /* p != NULL */
283 else if (!p)
284 goto use_pp; /* pp != NULL */
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100285
Christopher Fauletcd7126b2021-02-11 11:13:33 +0100286 /* p != NULL && pp != NULL*/
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100287
Patrick Hemmer248cb4c2018-05-11 12:52:31 -0400288 if (KEY_CLASS(p->node.key) < KEY_CLASS(pp->node.key))
289 goto use_p;
290
291 if (KEY_CLASS(pp->node.key) < KEY_CLASS(p->node.key))
292 goto use_pp;
293
294 pkey = KEY_OFFSET(p->node.key);
295 ppkey = KEY_OFFSET(pp->node.key);
296
297 if (pkey < NOW_OFFSET_BOUNDARY())
298 pkey += 0x100000; // key in the future
299
300 if (ppkey < NOW_OFFSET_BOUNDARY())
301 ppkey += 0x100000; // key in the future
302
303 if (pkey <= ppkey)
304 goto use_p;
305
306 use_pp:
Willy Tarreau87154e32021-08-31 17:21:39 +0200307 /* we'd like to release the proxy lock ASAP to let other threads
308 * work with other servers. But for this we must first hold the
309 * pendconn alive to prevent a removal from its owning stream.
310 */
311 HA_SPIN_LOCK(QUEUE_LOCK, &pp->del_lock);
312
313 /* now the element won't go, we can release the proxy */
Willy Tarreau3e3ae252020-10-21 11:20:07 +0200314 __pendconn_unlink_prx(pp);
Willy Tarreau87154e32021-08-31 17:21:39 +0200315 HA_SPIN_UNLOCK(QUEUE_LOCK, &px->queue.lock);
316
317 pp->strm_flags |= SF_ASSIGNED;
318 pp->target = srv;
319 stream_add_srv_conn(pp->strm, srv);
320
321 /* we must wake the task up before releasing the lock as it's the only
322 * way to make sure the task still exists. The pendconn cannot vanish
323 * under us since the task will need to take the lock anyway and to wait
324 * if it wakes up on a different thread.
325 */
326 task_wakeup(pp->strm->task, TASK_WOKEN_RES);
327 HA_SPIN_UNLOCK(QUEUE_LOCK, &pp->del_lock);
328
Willy Tarreau7f3c1df2021-06-18 09:22:21 +0200329 _HA_ATOMIC_DEC(&px->queue.length);
Willy Tarreau98c89102021-06-18 10:51:58 +0200330 _HA_ATOMIC_INC(&px->queue.idx);
Willy Tarreau87154e32021-08-31 17:21:39 +0200331 return 1;
332
Patrick Hemmer248cb4c2018-05-11 12:52:31 -0400333 use_p:
Willy Tarreau87154e32021-08-31 17:21:39 +0200334 /* we don't need the px queue lock anymore, we have the server's lock */
Willy Tarreau49667c12021-06-24 08:04:24 +0200335 if (pp)
Willy Tarreau87154e32021-08-31 17:21:39 +0200336 HA_SPIN_UNLOCK(QUEUE_LOCK, &px->queue.lock);
337
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100338 p->strm_flags |= SF_ASSIGNED;
Willy Tarreau88930dd2018-07-26 07:38:54 +0200339 p->target = srv;
Willy Tarreaua48905b2021-06-24 07:27:01 +0200340 stream_add_srv_conn(p->strm, srv);
341
Willy Tarreau87154e32021-08-31 17:21:39 +0200342 /* we must wake the task up before releasing the lock as it's the only
343 * way to make sure the task still exists. The pendconn cannot vanish
344 * under us since the task will need to take the lock anyway and to wait
345 * if it wakes up on a different thread.
346 */
Willy Tarreaua48905b2021-06-24 07:27:01 +0200347 task_wakeup(p->strm->task, TASK_WOKEN_RES);
Willy Tarreau87154e32021-08-31 17:21:39 +0200348 __pendconn_unlink_srv(p);
Willy Tarreaua48905b2021-06-24 07:27:01 +0200349
Willy Tarreau87154e32021-08-31 17:21:39 +0200350 _HA_ATOMIC_DEC(&srv->queue.length);
351 _HA_ATOMIC_INC(&srv->queue.idx);
Willy Tarreaua48905b2021-06-24 07:27:01 +0200352 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200353}
354
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100355/* Manages a server's connection queue. This function will try to dequeue as
Willy Tarreau9ab78292021-06-22 18:47:51 +0200356 * many pending streams as possible, and wake them up.
Christopher Faulet87566c92017-06-06 10:34:51 +0200357 */
Willy Tarreau9ab78292021-06-22 18:47:51 +0200358void process_srv_queue(struct server *s)
Christopher Faulet87566c92017-06-06 10:34:51 +0200359{
Willy Tarreaua0e9c552021-06-18 19:45:17 +0200360 struct server *ref = s->track ? s->track : s;
Christopher Faulet87566c92017-06-06 10:34:51 +0200361 struct proxy *p = s->proxy;
Olivier Houchardecfe6732018-07-26 18:47:27 +0200362 int maxconn;
Willy Tarreau19c55812021-06-24 15:51:12 +0200363 int stop = 0;
Willy Tarreau9cef43a2021-06-24 07:47:08 +0200364 int done = 0;
Willy Tarreaua0e9c552021-06-18 19:45:17 +0200365 int px_ok;
366
367 /* if a server is not usable or backup and must not be used
368 * to dequeue backend requests.
369 */
370 px_ok = srv_currently_usable(ref) &&
371 (!(s->flags & SRV_F_BACKUP) ||
372 (!p->srv_act &&
373 (s == p->lbprm.fbck || (p->options & PR_O_USE_ALL_BK))));
Christopher Faulet87566c92017-06-06 10:34:51 +0200374
Willy Tarreauae0b12e2021-06-24 08:30:07 +0200375 /* let's repeat that under the lock on each round. Threads competing
376 * for the same server will give up, knowing that at least one of
377 * them will check the conditions again before quitting.
378 */
Willy Tarreau19c55812021-06-24 15:51:12 +0200379 while (!stop && s->served < (maxconn = srv_dynamic_maxconn(s))) {
Willy Tarreau47ee44f2021-06-24 16:00:18 +0200380 if (HA_SPIN_TRYLOCK(QUEUE_LOCK, &s->queue.lock) != 0)
Christopher Faulet87566c92017-06-06 10:34:51 +0200381 break;
Willy Tarreauae0b12e2021-06-24 08:30:07 +0200382
383 while (s->served < maxconn) {
Willy Tarreau19c55812021-06-24 15:51:12 +0200384 stop = !pendconn_process_next_strm(s, p, px_ok);
385 if (stop)
Willy Tarreauae0b12e2021-06-24 08:30:07 +0200386 break;
387 _HA_ATOMIC_INC(&s->served);
388 done++;
389 }
Willy Tarreau47ee44f2021-06-24 16:00:18 +0200390 HA_SPIN_UNLOCK(QUEUE_LOCK, &s->queue.lock);
Christopher Faulet87566c92017-06-06 10:34:51 +0200391 }
Willy Tarreau9cef43a2021-06-24 07:47:08 +0200392
393 if (done) {
394 _HA_ATOMIC_SUB(&p->totpend, done);
395 _HA_ATOMIC_ADD(&p->served, done);
396 __ha_barrier_atomic_store();
397 if (p->lbprm.server_take_conn)
398 p->lbprm.server_take_conn(s);
399 }
Christopher Faulet87566c92017-06-06 10:34:51 +0200400}
401
Patrick Hemmer248cb4c2018-05-11 12:52:31 -0400402/* Adds the stream <strm> to the pending connection queue of server <strm>->srv
Willy Tarreau87b09662015-04-03 00:22:06 +0200403 * or to the one of <strm>->proxy if srv is NULL. All counters and back pointers
Willy Tarreaubaaee002006-06-26 02:48:02 +0200404 * are updated accordingly. Returns NULL if no memory is available, otherwise the
Willy Tarreau87b09662015-04-03 00:22:06 +0200405 * pendconn itself. If the stream was already marked as served, its flag is
406 * cleared. It is illegal to call this function with a non-NULL strm->srv_conn.
Patrick Hemmerda282f42018-05-11 12:52:31 -0400407 * The stream's queue position is counted with an offset of -1 because we want
408 * to make sure that being at the first position in the queue reports 1.
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100409 *
Patrick Hemmer248cb4c2018-05-11 12:52:31 -0400410 * The queue is sorted by the composition of the priority_class, and the current
411 * timestamp offset by strm->priority_offset. The timestamp is in milliseconds
412 * and truncated to 20 bits, so will wrap every 17m28s575ms.
413 * The offset can be positive or negative, and an offset of 0 puts it in the
414 * middle of this range (~ 8 min). Note that this also means if the adjusted
415 * timestamp wraps around, the request will be misinterpreted as being of
Joseph Herlantd8499ec2018-11-25 11:26:48 -0800416 * the highest priority for that priority class.
Patrick Hemmer248cb4c2018-05-11 12:52:31 -0400417 *
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100418 * This function must be called by the stream itself, so in the context of
419 * process_stream.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200420 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200421struct pendconn *pendconn_add(struct stream *strm)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200422{
423 struct pendconn *p;
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100424 struct proxy *px;
425 struct server *srv;
Willy Tarreau12529c02021-06-18 10:21:20 +0200426 struct queue *q;
427 unsigned int *max_ptr;
428 unsigned int old_max, new_max;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200429
Willy Tarreaubafbe012017-11-24 17:34:44 +0100430 p = pool_alloc(pool_head_pendconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200431 if (!p)
432 return NULL;
433
Willy Tarreau88930dd2018-07-26 07:38:54 +0200434 p->target = NULL;
Patrick Hemmer248cb4c2018-05-11 12:52:31 -0400435 p->node.key = MAKE_KEY(strm->priority_class, strm->priority_offset);
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100436 p->strm = strm;
437 p->strm_flags = strm->flags;
Willy Tarreau87154e32021-08-31 17:21:39 +0200438 HA_SPIN_INIT(&p->del_lock);
Willy Tarreau901972e2021-06-18 10:33:47 +0200439 strm->pend_pos = p;
Willy Tarreau7c669d72008-06-20 15:04:11 +0200440
Willy Tarreau51c63f02021-06-23 16:43:45 +0200441 px = strm->be;
442 if (strm->flags & SF_ASSIGNED)
443 srv = objt_server(strm->target);
444 else
445 srv = NULL;
446
Willy Tarreau7c6f8a22018-07-26 08:03:14 +0200447 if (srv) {
Willy Tarreau12529c02021-06-18 10:21:20 +0200448 q = &srv->queue;
449 max_ptr = &srv->counters.nbpend_max;
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100450 }
451 else {
Willy Tarreau12529c02021-06-18 10:21:20 +0200452 q = &px->queue;
453 max_ptr = &px->be_counters.nbpend_max;
454 }
Willy Tarreau3eecdb62021-06-18 10:21:20 +0200455
Willy Tarreau84290972021-06-23 16:33:52 +0200456 p->queue = q;
Willy Tarreau98c89102021-06-18 10:51:58 +0200457 p->queue_idx = _HA_ATOMIC_LOAD(&q->idx) - 1; // for logging only
Willy Tarreau12529c02021-06-18 10:21:20 +0200458 new_max = _HA_ATOMIC_ADD_FETCH(&q->length, 1);
459 old_max = _HA_ATOMIC_LOAD(max_ptr);
460 while (new_max > old_max) {
461 if (likely(_HA_ATOMIC_CAS(max_ptr, &old_max, new_max)))
462 break;
Willy Tarreau58f4dfb2021-06-24 07:22:15 +0200463 }
Willy Tarreau12529c02021-06-18 10:21:20 +0200464 __ha_barrier_atomic_store();
465
466 HA_SPIN_LOCK(QUEUE_LOCK, &q->lock);
Willy Tarreau12529c02021-06-18 10:21:20 +0200467 eb32_insert(&q->head, &p->node);
468 HA_SPIN_UNLOCK(QUEUE_LOCK, &q->lock);
Willy Tarreau7c6f8a22018-07-26 08:03:14 +0200469
Willy Tarreau4781b152021-04-06 13:53:36 +0200470 _HA_ATOMIC_INC(&px->totpend);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200471 return p;
472}
473
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200474/* Redistribute pending connections when a server goes down. The number of
Willy Tarreau16fbdda2021-06-18 09:45:27 +0200475 * connections redistributed is returned. It will take the server queue lock
476 * and does not use nor depend on other locks.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200477 */
478int pendconn_redistribute(struct server *s)
479{
Patrick Hemmer0355dab2018-05-11 12:52:31 -0400480 struct pendconn *p;
Willy Tarreaubff005a2019-05-27 08:10:11 +0200481 struct eb32_node *node, *nodeb;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200482 int xferred = 0;
483
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100484 /* The REDISP option was specified. We will ignore cookie and force to
485 * balance or use the dispatcher. */
486 if ((s->proxy->options & (PR_O_REDISP|PR_O_PERSIST)) != PR_O_REDISP)
487 return 0;
488
Willy Tarreau47ee44f2021-06-24 16:00:18 +0200489 HA_SPIN_LOCK(QUEUE_LOCK, &s->queue.lock);
Willy Tarreaua0570452021-06-18 09:30:30 +0200490 for (node = eb32_first(&s->queue.head); node; node = nodeb) {
Willy Tarreaubff005a2019-05-27 08:10:11 +0200491 nodeb = eb32_next(node);
492
493 p = eb32_entry(node, struct pendconn, node);
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100494 if (p->strm_flags & SF_FORCE_PRST)
495 continue;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200496
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100497 /* it's left to the dispatcher to choose a server */
Willy Tarreau3e3ae252020-10-21 11:20:07 +0200498 __pendconn_unlink_srv(p);
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100499 p->strm_flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200500
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100501 task_wakeup(p->strm->task, TASK_WOKEN_RES);
Willy Tarreauef71f012020-10-21 11:54:38 +0200502 xferred++;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200503 }
Willy Tarreau47ee44f2021-06-24 16:00:18 +0200504 HA_SPIN_UNLOCK(QUEUE_LOCK, &s->queue.lock);
Willy Tarreau16fbdda2021-06-18 09:45:27 +0200505
Willy Tarreau96bca332020-10-21 12:01:28 +0200506 if (xferred) {
Willy Tarreaua0570452021-06-18 09:30:30 +0200507 _HA_ATOMIC_SUB(&s->queue.length, xferred);
Willy Tarreau5472aa52020-10-24 12:57:41 +0200508 _HA_ATOMIC_SUB(&s->proxy->totpend, xferred);
Willy Tarreau96bca332020-10-21 12:01:28 +0200509 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200510 return xferred;
511}
512
513/* Check for pending connections at the backend, and assign some of them to
514 * the server coming up. The server's weight is checked before being assigned
515 * connections it may not be able to handle. The total number of transferred
Willy Tarreau16fbdda2021-06-18 09:45:27 +0200516 * connections is returned. It will take the proxy's queue lock and will not
517 * use nor depend on other locks.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200518 */
519int pendconn_grab_from_px(struct server *s)
520{
Patrick Hemmer0355dab2018-05-11 12:52:31 -0400521 struct pendconn *p;
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100522 int maxconn, xferred = 0;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200523
Emeric Brun52a91d32017-08-31 14:41:55 +0200524 if (!srv_currently_usable(s))
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200525 return 0;
526
Willy Tarreaua8694652018-08-07 10:44:58 +0200527 /* if this is a backup server and there are active servers or at
528 * least another backup server was elected, then this one must
529 * not dequeue requests from the proxy.
530 */
531 if ((s->flags & SRV_F_BACKUP) &&
532 (s->proxy->srv_act ||
533 ((s != s->proxy->lbprm.fbck) && !(s->proxy->options & PR_O_USE_ALL_BK))))
534 return 0;
535
Willy Tarreau16fbdda2021-06-18 09:45:27 +0200536 HA_SPIN_LOCK(QUEUE_LOCK, &s->proxy->queue.lock);
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100537 maxconn = srv_dynamic_maxconn(s);
Willy Tarreau2bf3f2c2021-06-24 07:20:26 +0200538 while ((p = pendconn_first(&s->proxy->queue.head))) {
539 if (s->maxconn && s->served + xferred >= maxconn)
540 break;
Willy Tarreau772e9682021-06-18 20:32:50 +0200541
Willy Tarreau2bf3f2c2021-06-24 07:20:26 +0200542 __pendconn_unlink_prx(p);
Willy Tarreau88930dd2018-07-26 07:38:54 +0200543 p->target = s;
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100544
545 task_wakeup(p->strm->task, TASK_WOKEN_RES);
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100546 xferred++;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200547 }
Willy Tarreau16fbdda2021-06-18 09:45:27 +0200548 HA_SPIN_UNLOCK(QUEUE_LOCK, &s->proxy->queue.lock);
Willy Tarreau96bca332020-10-21 12:01:28 +0200549 if (xferred) {
Willy Tarreau7f3c1df2021-06-18 09:22:21 +0200550 _HA_ATOMIC_SUB(&s->proxy->queue.length, xferred);
Willy Tarreau5472aa52020-10-24 12:57:41 +0200551 _HA_ATOMIC_SUB(&s->proxy->totpend, xferred);
Willy Tarreau96bca332020-10-21 12:01:28 +0200552 }
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200553 return xferred;
554}
555
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100556/* Try to dequeue pending connection attached to the stream <strm>. It must
557 * always exists here. If the pendconn is still linked to the server or the
558 * proxy queue, nothing is done and the function returns 1. Otherwise,
559 * <strm>->flags and <strm>->target are updated, the pendconn is released and 0
560 * is returned.
561 *
562 * This function must be called by the stream itself, so in the context of
563 * process_stream.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200564 */
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100565int pendconn_dequeue(struct stream *strm)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200566{
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100567 struct pendconn *p;
Willy Tarreau3201e4e2018-07-26 08:23:24 +0200568 int is_unlinked;
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100569
570 if (unlikely(!strm->pend_pos)) {
571 /* unexpected case because it is called by the stream itself and
572 * only the stream can release a pendconn. So it is only
573 * possible if a pendconn is released by someone else or if the
574 * stream is supposed to be queued but without its associated
575 * pendconn. In both cases it is a bug! */
576 abort();
Christopher Faulet8ba59142017-06-27 15:43:53 +0200577 }
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100578 p = strm->pend_pos;
Willy Tarreau3201e4e2018-07-26 08:23:24 +0200579
580 /* note below : we need to grab the queue's lock to check for emptiness
581 * because we don't want a partial _grab_from_px() or _redistribute()
582 * to be called in parallel and show an empty list without having the
583 * time to finish. With this we know that if we see the element
584 * unlinked, these functions were completely done.
585 */
586 pendconn_queue_lock(p);
Patrick Hemmer0355dab2018-05-11 12:52:31 -0400587 is_unlinked = !p->node.node.leaf_p;
Willy Tarreau3201e4e2018-07-26 08:23:24 +0200588 pendconn_queue_unlock(p);
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100589
Willy Tarreau87154e32021-08-31 17:21:39 +0200590 /* serialize to make sure the element was finished processing */
591 HA_SPIN_LOCK(QUEUE_LOCK, &p->del_lock);
592 HA_SPIN_UNLOCK(QUEUE_LOCK, &p->del_lock);
593
Willy Tarreau3201e4e2018-07-26 08:23:24 +0200594 if (!is_unlinked)
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100595 return 1;
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100596
Willy Tarreau3201e4e2018-07-26 08:23:24 +0200597 /* the pendconn is not queued anymore and will not be so we're safe
598 * to proceed.
599 */
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100600 strm->flags &= ~(SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
601 strm->flags |= p->strm_flags & (SF_DIRECT | SF_ASSIGNED | SF_ADDR_SET);
Willy Tarreau7867ceb2021-06-16 08:42:23 +0200602
603 if (p->target) {
604 /* a server picked this pendconn, it must skip LB */
605 strm->target = &p->target->obj_type;
606 strm->flags |= SF_ASSIGNED;
607 }
608
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100609 strm->pend_pos = NULL;
Willy Tarreaubafbe012017-11-24 17:34:44 +0100610 pool_free(pool_head_pendconn, p);
Christopher Faulet5cd4bbd2018-03-14 16:18:06 +0100611 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200612}
613
Patrick Hemmer268a7072018-05-11 12:52:31 -0400614static enum act_return action_set_priority_class(struct act_rule *rule, struct proxy *px,
615 struct session *sess, struct stream *s, int flags)
616{
617 struct sample *smp;
618
619 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_SINT);
620 if (!smp)
621 return ACT_RET_CONT;
622
623 s->priority_class = queue_limit_class(smp->data.u.sint);
624 return ACT_RET_CONT;
625}
626
627static enum act_return action_set_priority_offset(struct act_rule *rule, struct proxy *px,
628 struct session *sess, struct stream *s, int flags)
629{
630 struct sample *smp;
631
632 smp = sample_fetch_as_type(px, sess, s, SMP_OPT_DIR_REQ|SMP_OPT_FINAL, rule->arg.expr, SMP_T_SINT);
633 if (!smp)
634 return ACT_RET_CONT;
635
636 s->priority_offset = queue_limit_offset(smp->data.u.sint);
637
638 return ACT_RET_CONT;
639}
640
641static enum act_parse_ret parse_set_priority_class(const char **args, int *arg, struct proxy *px,
642 struct act_rule *rule, char **err)
643{
644 unsigned int where = 0;
645
646 rule->arg.expr = sample_parse_expr((char **)args, arg, px->conf.args.file,
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100647 px->conf.args.line, err, &px->conf.args, NULL);
Patrick Hemmer268a7072018-05-11 12:52:31 -0400648 if (!rule->arg.expr)
649 return ACT_RET_PRS_ERR;
650
651 if (px->cap & PR_CAP_FE)
652 where |= SMP_VAL_FE_HRQ_HDR;
653 if (px->cap & PR_CAP_BE)
654 where |= SMP_VAL_BE_HRQ_HDR;
655
656 if (!(rule->arg.expr->fetch->val & where)) {
657 memprintf(err,
658 "fetch method '%s' extracts information from '%s', none of which is available here",
659 args[0], sample_src_names(rule->arg.expr->fetch->use));
660 free(rule->arg.expr);
661 return ACT_RET_PRS_ERR;
662 }
663
664 rule->action = ACT_CUSTOM;
665 rule->action_ptr = action_set_priority_class;
666 return ACT_RET_PRS_OK;
667}
668
669static enum act_parse_ret parse_set_priority_offset(const char **args, int *arg, struct proxy *px,
670 struct act_rule *rule, char **err)
671{
672 unsigned int where = 0;
673
674 rule->arg.expr = sample_parse_expr((char **)args, arg, px->conf.args.file,
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100675 px->conf.args.line, err, &px->conf.args, NULL);
Patrick Hemmer268a7072018-05-11 12:52:31 -0400676 if (!rule->arg.expr)
677 return ACT_RET_PRS_ERR;
678
679 if (px->cap & PR_CAP_FE)
680 where |= SMP_VAL_FE_HRQ_HDR;
681 if (px->cap & PR_CAP_BE)
682 where |= SMP_VAL_BE_HRQ_HDR;
683
684 if (!(rule->arg.expr->fetch->val & where)) {
685 memprintf(err,
686 "fetch method '%s' extracts information from '%s', none of which is available here",
687 args[0], sample_src_names(rule->arg.expr->fetch->use));
688 free(rule->arg.expr);
689 return ACT_RET_PRS_ERR;
690 }
691
692 rule->action = ACT_CUSTOM;
693 rule->action_ptr = action_set_priority_offset;
694 return ACT_RET_PRS_OK;
695}
696
697static struct action_kw_list tcp_cont_kws = {ILH, {
698 { "set-priority-class", parse_set_priority_class },
699 { "set-priority-offset", parse_set_priority_offset },
700 { /* END */ }
701}};
702
Willy Tarreau0108d902018-11-25 19:14:37 +0100703INITCALL1(STG_REGISTER, tcp_req_cont_keywords_register, &tcp_cont_kws);
704
Patrick Hemmer268a7072018-05-11 12:52:31 -0400705static struct action_kw_list http_req_kws = {ILH, {
706 { "set-priority-class", parse_set_priority_class },
707 { "set-priority-offset", parse_set_priority_offset },
708 { /* END */ }
709}};
710
Willy Tarreau0108d902018-11-25 19:14:37 +0100711INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_kws);
712
Patrick Hemmer268a7072018-05-11 12:52:31 -0400713static int
714smp_fetch_priority_class(const struct arg *args, struct sample *smp, const char *kw, void *private)
715{
716 if (!smp->strm)
717 return 0;
718
719 smp->data.type = SMP_T_SINT;
720 smp->data.u.sint = smp->strm->priority_class;
721
722 return 1;
723}
724
725static int
726smp_fetch_priority_offset(const struct arg *args, struct sample *smp, const char *kw, void *private)
727{
728 if (!smp->strm)
729 return 0;
730
731 smp->data.type = SMP_T_SINT;
732 smp->data.u.sint = smp->strm->priority_offset;
733
734 return 1;
735}
736
737
738static struct sample_fetch_kw_list smp_kws = {ILH, {
739 { "prio_class", smp_fetch_priority_class, 0, NULL, SMP_T_SINT, SMP_USE_INTRN, },
740 { "prio_offset", smp_fetch_priority_offset, 0, NULL, SMP_T_SINT, SMP_USE_INTRN, },
741 { /* END */},
742}};
743
Willy Tarreau0108d902018-11-25 19:14:37 +0100744INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
Patrick Hemmer268a7072018-05-11 12:52:31 -0400745
Willy Tarreaubaaee002006-06-26 02:48:02 +0200746/*
747 * Local variables:
748 * c-indent-level: 8
749 * c-basic-offset: 8
750 * End:
751 */