mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-09 16:47:18 +02:00
The stktable_data union is made of types of varying sizes, and depending on which types are stored in a table, some offsets might not necessarily be aligned. This results in a bus error for certain regtests (e.g. lb-services) on MIPS64. This bug may impact MIPS64, SPARC64, armv7 when accessing a 64-bit counter (e.g. bytes) and depending on how the compiler emitted the operation, and cause a trap that's emulated by the OS on RISCV (heavy cost). x86_64 and armv8 are not affected at all. Let's properly mark the struct with __attribute__((packed)) so that the compiler emits the suitable unaligned-compatible instructions when accessing the fields. This should be backported to all versions where it applies.
257 lines
11 KiB
C
257 lines
11 KiB
C
/*
|
|
* include/haproxy/stick_table-t.h
|
|
* Macros, variables and structures for stick tables management.
|
|
*
|
|
* Copyright (C) 2009-2010 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
|
|
* Copyright (C) 2010 Willy Tarreau <w@1wt.eu>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation, version 2.1
|
|
* exclusively.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef _HAPROXY_STICK_TABLE_T_H
|
|
#define _HAPROXY_STICK_TABLE_T_H
|
|
|
|
#include <import/ebtree-t.h>
|
|
|
|
#include <haproxy/api-t.h>
|
|
#include <haproxy/freq_ctr-t.h>
|
|
#include <haproxy/thread-t.h>
|
|
|
|
#define STKTABLE_MAX_DT_ARRAY_SIZE 100
|
|
|
|
/* The types of extra data we can store in a stick table */
|
|
enum {
|
|
STKTABLE_DT_SERVER_ID, /* the server ID to use with this stream if > 0 */
|
|
STKTABLE_DT_GPT0, /* General Purpose Flag 0. */
|
|
STKTABLE_DT_GPC0, /* General Purpose Counter 0 (unsigned 32-bit integer) */
|
|
STKTABLE_DT_GPC0_RATE, /* General Purpose Counter 0's event rate */
|
|
STKTABLE_DT_CONN_CNT, /* cumulated number of connections */
|
|
STKTABLE_DT_CONN_RATE, /* incoming connection rate */
|
|
STKTABLE_DT_CONN_CUR, /* concurrent number of connections */
|
|
STKTABLE_DT_SESS_CNT, /* cumulated number of sessions (accepted connections) */
|
|
STKTABLE_DT_SESS_RATE, /* accepted sessions rate */
|
|
STKTABLE_DT_HTTP_REQ_CNT, /* cumulated number of incoming HTTP requests */
|
|
STKTABLE_DT_HTTP_REQ_RATE,/* incoming HTTP request rate */
|
|
STKTABLE_DT_HTTP_ERR_CNT, /* cumulated number of HTTP requests errors (4xx) */
|
|
STKTABLE_DT_HTTP_ERR_RATE,/* HTTP request error rate */
|
|
STKTABLE_DT_BYTES_IN_CNT, /* cumulated bytes count from client to servers */
|
|
STKTABLE_DT_BYTES_IN_RATE,/* bytes rate from client to servers */
|
|
STKTABLE_DT_BYTES_OUT_CNT,/* cumulated bytes count from servers to client */
|
|
STKTABLE_DT_BYTES_OUT_RATE,/* bytes rate from servers to client */
|
|
STKTABLE_DT_GPC1, /* General Purpose Counter 1 (unsigned 32-bit integer) */
|
|
STKTABLE_DT_GPC1_RATE, /* General Purpose Counter 1's event rate */
|
|
STKTABLE_DT_SERVER_KEY, /* The server key */
|
|
STKTABLE_DT_HTTP_FAIL_CNT, /* cumulated number of HTTP server failures */
|
|
STKTABLE_DT_HTTP_FAIL_RATE,/* HTTP server failures rate */
|
|
STKTABLE_DT_GPT, /* array of gpt */
|
|
STKTABLE_DT_GPC, /* array of gpc */
|
|
STKTABLE_DT_GPC_RATE, /* array of gpc_rate */
|
|
STKTABLE_DT_GLITCH_CNT, /* cumulated number of front glitches */
|
|
STKTABLE_DT_GLITCH_RATE, /* rate of front glitches */
|
|
|
|
STKTABLE_STATIC_DATA_TYPES,/* number of types above */
|
|
/* up to STKTABLE_EXTRA_DATA_TYPES types may be registered here, always
|
|
* followed by the number of data types, must always be last.
|
|
*/
|
|
STKTABLE_DATA_TYPES = STKTABLE_STATIC_DATA_TYPES + STKTABLE_EXTRA_DATA_TYPES
|
|
};
|
|
|
|
/* The equivalent standard types of the stored data */
|
|
enum {
|
|
STD_T_SINT = 0, /* data is of type signed int */
|
|
STD_T_UINT, /* data is of type unsigned int */
|
|
STD_T_ULL, /* data is of type unsigned long long */
|
|
STD_T_FRQP, /* data is of type freq_ctr */
|
|
STD_T_DICT, /* data is of type key of dictionary entry */
|
|
};
|
|
|
|
/* The types of optional arguments to stored data */
|
|
enum {
|
|
ARG_T_NONE = 0, /* data type takes no argument (default) */
|
|
ARG_T_INT, /* signed integer */
|
|
ARG_T_DELAY, /* a delay which supports time units */
|
|
};
|
|
|
|
/* They types of keys that servers can be identified by */
|
|
enum {
|
|
STKTABLE_SRV_NAME = 0,
|
|
STKTABLE_SRV_ADDR,
|
|
};
|
|
|
|
/* stick table key type flags */
|
|
#define STK_F_CUSTOM_KEYSIZE 0x00000001 /* this table's key size is configurable */
|
|
|
|
/* WARNING: if new fields are added, they must be initialized in stream_accept()
|
|
* and freed in stream_free() !
|
|
*
|
|
* What's the purpose of there two macro:
|
|
* - STKCTR_TRACK_BACKEND indicates that a tracking pointer was set from the backend
|
|
* and thus that when a keep-alive request goes to another backend, the track
|
|
* must cease.
|
|
*
|
|
* - STKCTR_TRACK_CONTENT indicates that the tracking pointer was set in a
|
|
* content-aware rule (tcp-request content or http-request) and that the
|
|
* tracking has to be performed in the stream and not in the session, and
|
|
* will cease for a new keep-alive request over the same connection.
|
|
*
|
|
* These values are mixed with the stksess pointer in stkctr->entry.
|
|
*/
|
|
#define STKCTR_TRACK_BACKEND 1
|
|
#define STKCTR_TRACK_CONTENT 2
|
|
|
|
/* stick_table extra data. This is mainly used for casting or size computation */
|
|
union stktable_data {
|
|
/* standard types for easy casting */
|
|
int std_t_sint;
|
|
unsigned int std_t_uint;
|
|
unsigned long long std_t_ull;
|
|
struct freq_ctr std_t_frqp;
|
|
struct dict_entry *std_t_dict;
|
|
} __attribute__((packed));
|
|
|
|
/* known data types */
|
|
struct stktable_data_type {
|
|
const char *name; /* name of the data type */
|
|
int std_type; /* standard type we can use for this data, STD_T_* */
|
|
int arg_type; /* type of optional argument, ARG_T_* */
|
|
uint is_array:1; /* this is an array of gpc/gpt */
|
|
uint is_local:1; /* this is local only and never learned */
|
|
uint as_is:1; /* cannot be processed / used with arithmetic operations */
|
|
};
|
|
|
|
/* stick table keyword type */
|
|
struct stktable_type {
|
|
const char *kw; /* keyword string */
|
|
int flags; /* type flags */
|
|
size_t default_size; /* default key size */
|
|
};
|
|
|
|
/* Sticky session.
|
|
* Any additional data related to the stuck session is installed *before*
|
|
* stksess (with negative offsets). This allows us to run variable-sized
|
|
* keys and variable-sized data without making use of intermediate pointers.
|
|
*/
|
|
struct stksess {
|
|
unsigned int expire; /* session expiration date */
|
|
unsigned int ref_cnt; /* reference count, can only purge when zero */
|
|
__decl_thread(HA_RWLOCK_T lock); /* lock related to the table entry */
|
|
int shard; /* shard number used by peers */
|
|
int seen; /* 0 only when no peer has seen this entry yet */
|
|
struct eb32_node exp; /* ebtree node used to hold the session in expiration tree */
|
|
struct eb32_node upd; /* ebtree node used to hold the update sequence tree */
|
|
struct ebmb_node key; /* ebtree node used to hold the session in table */
|
|
/* WARNING! do not put anything after <keys>, it's used by the key */
|
|
};
|
|
|
|
|
|
/* stick table */
|
|
struct stktable {
|
|
char *id; /* local table id name. */
|
|
size_t idlen; /* local table id name length. */
|
|
char *nid; /* table id name sent over the network with peers protocol. */
|
|
struct stktable *next; /* The stick-table may be linked when belonging to
|
|
* the same configuration section.
|
|
*/
|
|
struct ebpt_node name; /* Stick-table are lookup by name here. */
|
|
struct pool_head *pool; /* pool used to allocate sticky sessions */
|
|
struct task *exp_task; /* expiration task */
|
|
struct task *sync_task; /* sync task */
|
|
|
|
uint64_t hash_seed; /* hash seed used by shards */
|
|
union {
|
|
struct peers *p; /* sync peers */
|
|
char *name;
|
|
} peers;
|
|
|
|
unsigned long type; /* type of table (determines key format) */
|
|
size_t key_size; /* size of a key, maximum size in case of string */
|
|
unsigned int server_key_type; /* What type of key is used to identify servers */
|
|
unsigned int size; /* maximum number of sticky sessions in table */
|
|
int nopurge; /* if non-zero, don't purge sticky sessions when full */
|
|
int expire; /* time to live for sticky sessions (milliseconds) */
|
|
int data_size; /* the size of the data that is prepended *before* stksess */
|
|
int data_ofs[STKTABLE_DATA_TYPES]; /* negative offsets of present data types, or 0 if absent */
|
|
unsigned int data_nbelem[STKTABLE_DATA_TYPES]; /* to store nb_elem in case of array types */
|
|
union {
|
|
int i;
|
|
unsigned int u;
|
|
void *p;
|
|
} data_arg[STKTABLE_DATA_TYPES]; /* optional argument of each data type */
|
|
struct proxy *proxy; /* The proxy this stick-table is attached to, if any.*/
|
|
union {
|
|
char *name; /* preparsing hint */
|
|
struct stktable *t; /* postparsing */
|
|
void *ptr; /* generic ptr to check if set or not */
|
|
} write_to; /* updates received on the source table will also update write_to */
|
|
|
|
THREAD_ALIGN(64);
|
|
|
|
struct {
|
|
struct eb_root keys; /* head of sticky session tree */
|
|
struct eb_root exps; /* head of sticky session expiration tree */
|
|
__decl_thread(HA_RWLOCK_T sh_lock); /* for the trees above */
|
|
} shards[CONFIG_HAP_TBL_BUCKETS];
|
|
|
|
unsigned int refcnt; /* number of local peer over all peers sections
|
|
attached to this table */
|
|
unsigned int current; /* number of sticky sessions currently in table */
|
|
__decl_thread(HA_RWLOCK_T lock); /* lock related to the table */
|
|
|
|
THREAD_ALIGN(64);
|
|
|
|
struct eb_root updates; /* head of sticky updates sequence tree, uses updt_lock */
|
|
unsigned int update; /* uses updt_lock */
|
|
unsigned int localupdate; /* uses updt_lock */
|
|
unsigned int commitupdate;/* used to identify the latest local updates pending for sync, uses updt_lock */
|
|
|
|
THREAD_ALIGN(64);
|
|
/* this lock is heavily used and must be on its own cache line */
|
|
__decl_thread(HA_RWLOCK_T updt_lock); /* lock protecting the updates part */
|
|
|
|
/* rarely used config stuff below (should not interfere with updt_lock) */
|
|
struct proxy *proxies_list; /* The list of proxies which reference this stick-table. */
|
|
struct {
|
|
const char *file; /* The file where the stick-table is declared. */
|
|
int line; /* The line in this <file> the stick-table is declared. */
|
|
} conf;
|
|
};
|
|
|
|
extern struct stktable_data_type stktable_data_types[STKTABLE_DATA_TYPES];
|
|
|
|
/* stick table key */
|
|
struct stktable_key {
|
|
void *key; /* pointer on key buffer */
|
|
size_t key_len; /* data len to read in buff in case of null terminated string */
|
|
};
|
|
|
|
/* stick counter. The <entry> member is a composite address (caddr) made of a
|
|
* pointer to an stksess struct, and two flags among STKCTR_TRACK_* above.
|
|
*/
|
|
struct stkctr {
|
|
unsigned long entry; /* entry containing counters currently being tracked by this stream */
|
|
struct stktable *table; /* table the counters above belong to (undefined if counters are null) */
|
|
};
|
|
|
|
/* parameters to configure tracked counters */
|
|
struct track_ctr_prm {
|
|
struct sample_expr *expr; /* expression used as the key */
|
|
union {
|
|
struct stktable *t; /* a pointer to the table */
|
|
char *n; /* or its name during parsing. */
|
|
} table;
|
|
};
|
|
|
|
#endif /* _HAPROXY_STICK_TABLE_T_H */
|