blob: 6bc99c245b83468532d1ccb795416152dea58240 [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
Emeric Brun2b920a12010-09-23 18:30:22 +020030#include <common/config.h>
31#include <common/mini-clist.h>
32#include <common/regex.h>
Emeric Brun2b920a12010-09-23 18:30:22 +020033#include <common/tools.h>
34#include <eb32tree.h>
35
Emeric Brun2b920a12010-09-23 18:30:22 +020036struct shared_table {
37 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;
Emeric Brun2b920a12010-09-23 18:30:22 +020047 struct shared_table *next; /* next shared table in list */
48};
49
50struct peer {
51 int local; /* proxy state */
52 char *id;
Emeric Brun2b920a12010-09-23 18:30:22 +020053 struct {
54 const char *file; /* file where the section appears */
55 int line; /* line where the section appears */
56 } conf; /* config information */
57 time_t last_change;
David du Colombier6f5ccb12011-03-10 22:26:24 +010058 struct sockaddr_storage addr; /* peer address */
Willy Tarreau26d8c592012-05-07 18:12:14 +020059 struct protocol *proto; /* peer address protocol */
Willy Tarreauf7bc57c2012-10-03 00:19:48 +020060 struct xprt_ops *xprt; /* peer socket operations at transport layer */
Willy Tarreaud02394b2012-05-11 18:32:18 +020061 void *sock_init_arg; /* socket operations's opaque init argument if needed */
Emeric Brunb3971ab2015-05-12 18:49:09 +020062 unsigned int flags; /* peer session flags */
63 unsigned int statuscode; /* current/last session status code */
64 unsigned int reconnect; /* next connect timer */
Frédéric Lécaille645635d2019-02-11 17:49:39 +010065 unsigned int heartbeat; /* next heartbeat timer */
Emeric Brunb3971ab2015-05-12 18:49:09 +020066 unsigned int confirm; /* confirm message counter */
Emeric Brunb3971ab2015-05-12 18:49:09 +020067 struct appctx *appctx; /* the appctx running it */
68 struct shared_table *remote_table;
69 struct shared_table *last_local_table;
70 struct shared_table *tables;
Frédéric Lécaille1055e682018-04-26 14:35:21 +020071 struct server *srv;
Christopher Faulet9dcf9b62017-11-13 10:34:01 +010072 __decl_hathreads(HA_SPINLOCK_T lock); /* lock used to handle this peer section */
Emeric Brun2b920a12010-09-23 18:30:22 +020073 struct peer *next; /* next peer in the list */
74};
75
76
77struct peers {
78 int state; /* proxy state */
79 char *id; /* peer section name */
Emeric Brunb3971ab2015-05-12 18:49:09 +020080 struct task *sync_task; /* main sync task */
81 struct sig_handler *sighandler; /* signal handler */
Emeric Brun2b920a12010-09-23 18:30:22 +020082 struct peer *remote; /* remote peers list */
Emeric Brunb3971ab2015-05-12 18:49:09 +020083 struct peer *local; /* local peer list */
Emeric Brun2b920a12010-09-23 18:30:22 +020084 struct proxy *peers_fe; /* peer frontend */
85 struct {
86 const char *file; /* file where the section appears */
87 int line; /* line where the section appears */
88 } conf; /* config information */
Emeric Brun2b920a12010-09-23 18:30:22 +020089 time_t last_change;
90 struct peers *next; /* next peer section */
Emeric Brunb3971ab2015-05-12 18:49:09 +020091 unsigned int flags; /* current peers section resync state */
92 unsigned int resync_timeout; /* resync timeout timer */
Emeric Brun2b920a12010-09-23 18:30:22 +020093 int count; /* total of peers */
94};
95
96
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +020097extern struct peers *cfg_peers;
Emeric Brun2b920a12010-09-23 18:30:22 +020098
99#endif /* _TYPES_PEERS_H */
100