blob: 33d40ec28b70a592246d50460fa8d041604f7990 [file] [log] [blame]
Emeric Brun2b920a12010-09-23 18:30:22 +02001/*
2 * include/types/peers.h
3 * This file defines everything related to peers.
4 *
5 * Copyright 2010 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
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 */
21
22#ifndef _TYPES_PEERS_H
23#define _TYPES_PEERS_H
24
25#include <sys/types.h>
26#include <sys/socket.h>
27#include <netinet/in.h>
28#include <arpa/inet.h>
29
Willy Tarreau3afc4c42020-06-03 18:23:19 +020030#include <haproxy/dict-t.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020031#include <haproxy/api-t.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020032#include <haproxy/list-t.h>
Willy Tarreau8d2b7772020-05-27 10:58:19 +020033#include <import/eb32tree.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020034
Frédéric Lécaille74167b22019-05-28 19:02:42 +020035
Emeric Brun2b920a12010-09-23 18:30:22 +020036struct shared_table {
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020037 struct stktable *table; /* stick table to sync */
Emeric Brunb3971ab2015-05-12 18:49:09 +020038 int local_id;
39 int remote_id;
40 int flags;
41 uint64_t remote_data;
42 unsigned int last_acked;
43 unsigned int last_pushed;
44 unsigned int last_get;
45 unsigned int teaching_origin;
46 unsigned int update;
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020047 struct shared_table *next; /* next shared table in list */
Emeric Brun2b920a12010-09-23 18:30:22 +020048};
49
50struct peer {
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020051 int local; /* proxy state */
Emeric Brun2b920a12010-09-23 18:30:22 +020052 char *id;
Emeric Brun2b920a12010-09-23 18:30:22 +020053 struct {
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020054 const char *file; /* file where the section appears */
55 int line; /* line where the section appears */
56 } conf; /* config information */
Emeric Brun2b920a12010-09-23 18:30:22 +020057 time_t last_change;
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020058 struct sockaddr_storage addr; /* peer address */
59 struct protocol *proto; /* peer address protocol */
60 struct xprt_ops *xprt; /* peer socket operations at transport layer */
61 void *sock_init_arg; /* socket operations's opaque init argument if needed */
62 unsigned int flags; /* peer session flags */
Emeric Brunb3971ab2015-05-12 18:49:09 +020063 unsigned int statuscode; /* current/last session status code */
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020064 unsigned int reconnect; /* next connect timer */
65 unsigned int heartbeat; /* next heartbeat timer */
Emeric Brunb3971ab2015-05-12 18:49:09 +020066 unsigned int confirm; /* confirm message counter */
Frédéric Lécaille33cab3c2019-11-06 11:51:26 +010067 uint32_t rx_hbt; /* received heartbeats counter */
68 uint32_t tx_hbt; /* transmitted heartbeats counter */
Frédéric Lécailleec1c10b2019-11-07 15:22:33 +010069 uint32_t no_hbt; /* no received heartbeat counter */
70 uint32_t new_conn; /* new connection after reconnection timeout expiration counter */
71 uint32_t proto_err; /* protocol errors counter */
Emeric Brunb3971ab2015-05-12 18:49:09 +020072 struct appctx *appctx; /* the appctx running it */
73 struct shared_table *remote_table;
74 struct shared_table *last_local_table;
75 struct shared_table *tables;
Frédéric Lécaille1055e682018-04-26 14:35:21 +020076 struct server *srv;
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +020077 struct dcache *dcache; /* dictionary cache */
Willy Tarreauaf613e82020-06-05 08:40:51 +020078 __decl_thread(HA_SPINLOCK_T lock); /* lock used to handle this peer section */
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020079 struct peer *next; /* next peer in the list */
Emeric Brun2b920a12010-09-23 18:30:22 +020080};
81
82
83struct peers {
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020084 int state; /* proxy state */
85 char *id; /* peer section name */
86 struct task *sync_task; /* main sync task */
87 struct sig_handler *sighandler; /* signal handler */
88 struct peer *remote; /* remote peers list */
89 struct peer *local; /* local peer list */
90 struct proxy *peers_fe; /* peer frontend */
Emeric Brun2b920a12010-09-23 18:30:22 +020091 struct {
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020092 const char *file; /* file where the section appears */
93 int line; /* line where the section appears */
94 } conf; /* config information */
Emeric Brun2b920a12010-09-23 18:30:22 +020095 time_t last_change;
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020096 struct peers *next; /* next peer section */
97 unsigned int flags; /* current peers section resync state */
98 unsigned int resync_timeout; /* resync timeout timer */
99 int count; /* total of peers */
Emeric Brun2b920a12010-09-23 18:30:22 +0200100};
101
Frédéric Lécaille74167b22019-05-28 19:02:42 +0200102/* LRU cache for dictionaies */
103struct dcache_tx {
104 /* The last recently used key */
105 unsigned int lru_key;
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200106 /* An array of entries to store pointers to dictionary entries. */
107 struct ebpt_node *entries;
Frédéric Lécailleb65717f2019-06-07 14:25:25 +0200108 /* The previous lookup result. */
109 struct ebpt_node *prev_lookup;
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200110 /* ebtree to store the previous entries. */
111 struct eb_root cached_entries;
Frédéric Lécaille74167b22019-05-28 19:02:42 +0200112};
113
114struct dcache_rx {
115 unsigned int id;
116 struct dict_entry *de;
117};
118
119struct dcache_tx_entry {
Frédéric Lécaille6c391982019-06-06 11:34:03 +0200120 unsigned int id;
121 struct ebpt_node entry;
Frédéric Lécaille74167b22019-05-28 19:02:42 +0200122};
123
124/* stick-table data type cache */
125struct dcache {
126 /* Cache used upon transmission */
127 struct dcache_tx *tx;
128 /* Cache used upon receipt */
129 struct dcache_rx *rx;
130 /* Maximum number of entries in this cache */
131 size_t max_entries;
132};
Emeric Brun2b920a12010-09-23 18:30:22 +0200133
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200134extern struct peers *cfg_peers;
Emeric Brun2b920a12010-09-23 18:30:22 +0200135
136#endif /* _TYPES_PEERS_H */
137