Emeric Brun | 3bd697e | 2010-01-04 15:23:48 +0100 | [diff] [blame] | 1 | /* |
| 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 Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 6 | * Copyright (C) 2010 Willy Tarreau <w@1wt.eu> |
Emeric Brun | 3bd697e | 2010-01-04 15:23:48 +0100 | [diff] [blame] | 7 | * |
| 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 Tarreau | 68129b9 | 2010-06-06 16:06:52 +0200 | [diff] [blame] | 28 | #define stktable_data_size(type) (sizeof(((union stktable_data*)0)->type)) |
| 29 | #define stktable_data_cast(ptr, type) ((union stktable_data*)(ptr))->type |
| 30 | |
Willy Tarreau | 41883e2 | 2010-06-06 17:39:30 +0200 | [diff] [blame] | 31 | extern struct stktable_key static_table_key; |
| 32 | |
Emeric Brun | 3bd697e | 2010-01-04 15:23:48 +0100 | [diff] [blame] | 33 | struct stksess *stksess_new(struct stktable *t, struct stktable_key *key); |
Willy Tarreau | 393379c | 2010-06-06 12:11:37 +0200 | [diff] [blame] | 34 | void stksess_setkey(struct stktable *t, struct stksess *ts, struct stktable_key *key); |
Emeric Brun | 3bd697e | 2010-01-04 15:23:48 +0100 | [diff] [blame] | 35 | void stksess_free(struct stktable *t, struct stksess *ts); |
| 36 | |
| 37 | int stktable_init(struct stktable *t); |
| 38 | int stktable_parse_type(char **args, int *idx, unsigned long *type, size_t *key_size); |
Willy Tarreau | 9ba2dcc | 2010-06-14 21:04:55 +0200 | [diff] [blame] | 39 | struct stksess *stktable_get_entry(struct stktable *table, struct stktable_key *key); |
Willy Tarreau | f16d2b8 | 2010-06-06 15:38:59 +0200 | [diff] [blame] | 40 | struct stksess *stktable_store(struct stktable *t, struct stksess *ts); |
Willy Tarreau | cb18364 | 2010-06-06 17:58:34 +0200 | [diff] [blame] | 41 | struct stksess *stktable_touch(struct stktable *t, struct stksess *ts); |
Willy Tarreau | f16d2b8 | 2010-06-06 15:38:59 +0200 | [diff] [blame] | 42 | struct stksess *stktable_lookup(struct stktable *t, struct stksess *ts); |
| 43 | struct stksess *stktable_lookup_key(struct stktable *t, struct stktable_key *key); |
Willy Tarreau | f0b38bf | 2010-06-06 13:22:23 +0200 | [diff] [blame] | 44 | struct stktable_key *stktable_fetch_key(struct proxy *px, struct session *l4, |
| 45 | void *l7, int dir, struct pattern_expr *expr, |
| 46 | unsigned long table_type); |
| 47 | int stktable_compatible_pattern(struct pattern_expr *expr, unsigned long table_type); |
Willy Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 48 | int stktable_get_data_type(char *name); |
Willy Tarreau | 4a0347a | 2010-06-18 17:26:50 +0200 | [diff] [blame] | 49 | struct proxy *find_stktable(const char *name); |
Willy Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 50 | |
| 51 | /* reserve some space for data type <type>. Return non-0 if OK, or 0 if already |
| 52 | * allocated (or impossible type). |
| 53 | */ |
| 54 | static inline int stktable_alloc_data_type(struct stktable *t, int type) |
| 55 | { |
| 56 | if (type >= STKTABLE_DATA_TYPES) |
| 57 | return 0; |
| 58 | |
| 59 | if (t->data_ofs[type]) |
| 60 | /* already allocated */ |
| 61 | return 0; |
Emeric Brun | 3bd697e | 2010-01-04 15:23:48 +0100 | [diff] [blame] | 62 | |
Willy Tarreau | 08d5f98 | 2010-06-06 13:34:54 +0200 | [diff] [blame] | 63 | t->data_size += stktable_data_types[type].data_length; |
| 64 | t->data_ofs[type] = -t->data_size; |
| 65 | return 1; |
| 66 | } |
Emeric Brun | 3bd697e | 2010-01-04 15:23:48 +0100 | [diff] [blame] | 67 | |
Willy Tarreau | 68129b9 | 2010-06-06 16:06:52 +0200 | [diff] [blame] | 68 | /* return pointer for data type <type> in sticky session <ts> of table <t>, or |
| 69 | * NULL if either <ts> is NULL or the type is not stored. |
| 70 | */ |
| 71 | static inline void *stktable_data_ptr(struct stktable *t, struct stksess *ts, int type) |
| 72 | { |
| 73 | if (type >= STKTABLE_DATA_TYPES) |
| 74 | return NULL; |
| 75 | |
| 76 | if (!t->data_ofs[type]) /* type not stored */ |
| 77 | return NULL; |
| 78 | |
| 79 | if (!ts) |
| 80 | return NULL; |
| 81 | |
| 82 | return (void *)ts + t->data_ofs[type]; |
| 83 | } |
| 84 | |
Emeric Brun | 3bd697e | 2010-01-04 15:23:48 +0100 | [diff] [blame] | 85 | #endif /* _PROTO_STICK_TABLE_H */ |