blob: 48c995786b5c2f1063b9e49d39f14aa82645ee8a [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 {
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 */
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 */
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020073 struct peer *next; /* next peer in the list */
Emeric Brun2b920a12010-09-23 18:30:22 +020074};
75
76
77struct peers {
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020078 int state; /* proxy state */
79 char *id; /* peer section name */
80 struct task *sync_task; /* main sync task */
81 struct sig_handler *sighandler; /* signal handler */
82 struct peer *remote; /* remote peers list */
83 struct peer *local; /* local peer list */
84 struct proxy *peers_fe; /* peer frontend */
Emeric Brun2b920a12010-09-23 18:30:22 +020085 struct {
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020086 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;
Frédéric Lécaille1673bbd2019-05-15 10:49:13 +020090 struct peers *next; /* next peer section */
91 unsigned int flags; /* current peers section resync state */
92 unsigned int resync_timeout; /* resync timeout timer */
93 int count; /* total of peers */
Emeric Brun2b920a12010-09-23 18:30:22 +020094};
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