blob: e1a324d732835a697401bf27e43be7a73832aa43 [file] [log] [blame]
Emeric Brun3bd697e2010-01-04 15:23:48 +01001/*
2 * include/proto/stick_table.h
3 * Functions for stick tables management.
4 *
5 * Copyright (C) 2009-2010 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
Willy Tarreau08d5f982010-06-06 13:34:54 +02006 * Copyright (C) 2010 Willy Tarreau <w@1wt.eu>
Emeric Brun3bd697e2010-01-04 15:23:48 +01007 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation, version 2.1
11 * exclusively.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#ifndef _PROTO_STICK_TABLE_H
24#define _PROTO_STICK_TABLE_H
25
26#include <types/stick_table.h>
27
Willy Tarreau68129b92010-06-06 16:06:52 +020028#define stktable_data_size(type) (sizeof(((union stktable_data*)0)->type))
29#define stktable_data_cast(ptr, type) ((union stktable_data*)(ptr))->type
30
Emeric Brun3bd697e2010-01-04 15:23:48 +010031struct stksess *stksess_new(struct stktable *t, struct stktable_key *key);
Willy Tarreau393379c2010-06-06 12:11:37 +020032void stksess_setkey(struct stktable *t, struct stksess *ts, struct stktable_key *key);
Emeric Brun3bd697e2010-01-04 15:23:48 +010033void stksess_free(struct stktable *t, struct stksess *ts);
34
35int stktable_init(struct stktable *t);
36int stktable_parse_type(char **args, int *idx, unsigned long *type, size_t *key_size);
Willy Tarreauf16d2b82010-06-06 15:38:59 +020037struct stksess *stktable_store(struct stktable *t, struct stksess *ts);
38struct stksess *stktable_lookup(struct stktable *t, struct stksess *ts);
39struct stksess *stktable_lookup_key(struct stktable *t, struct stktable_key *key);
Willy Tarreauf0b38bf2010-06-06 13:22:23 +020040struct stktable_key *stktable_fetch_key(struct proxy *px, struct session *l4,
41 void *l7, int dir, struct pattern_expr *expr,
42 unsigned long table_type);
43int stktable_compatible_pattern(struct pattern_expr *expr, unsigned long table_type);
Willy Tarreau08d5f982010-06-06 13:34:54 +020044int stktable_get_data_type(char *name);
45
46/* reserve some space for data type <type>. Return non-0 if OK, or 0 if already
47 * allocated (or impossible type).
48 */
49static inline int stktable_alloc_data_type(struct stktable *t, int type)
50{
51 if (type >= STKTABLE_DATA_TYPES)
52 return 0;
53
54 if (t->data_ofs[type])
55 /* already allocated */
56 return 0;
Emeric Brun3bd697e2010-01-04 15:23:48 +010057
Willy Tarreau08d5f982010-06-06 13:34:54 +020058 t->data_size += stktable_data_types[type].data_length;
59 t->data_ofs[type] = -t->data_size;
60 return 1;
61}
Emeric Brun3bd697e2010-01-04 15:23:48 +010062
Willy Tarreau68129b92010-06-06 16:06:52 +020063/* return pointer for data type <type> in sticky session <ts> of table <t>, or
64 * NULL if either <ts> is NULL or the type is not stored.
65 */
66static inline void *stktable_data_ptr(struct stktable *t, struct stksess *ts, int type)
67{
68 if (type >= STKTABLE_DATA_TYPES)
69 return NULL;
70
71 if (!t->data_ofs[type]) /* type not stored */
72 return NULL;
73
74 if (!ts)
75 return NULL;
76
77 return (void *)ts + t->data_ofs[type];
78}
79
Emeric Brun3bd697e2010-01-04 15:23:48 +010080#endif /* _PROTO_STICK_TABLE_H */