ctdb-ipalloc: Use a cumulative timeout for takeover run stages
[Samba.git] / ctdb / server / ipalloc.h
blob65c778656f0a1de715cadd76b1d5553453e62393
1 /*
2 CTDB IP takeover code
4 Copyright (C) Ronnie Sahlberg 2007
5 Copyright (C) Andrew Tridgell 2007
6 Copyright (C) Martin Schwenke 2015
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program 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
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #ifndef __CTDB_IPALLOC_H__
23 #define __CTDB_IPALLOC_H__
25 #include "replace.h"
26 #include "system/network.h"
28 #include "include/ctdb_protocol.h"
30 struct public_ip_list {
31 struct public_ip_list *next;
32 uint32_t pnn;
33 ctdb_sock_addr addr;
36 #define IP_KEYLEN 4
37 uint32_t *ip_key(ctdb_sock_addr *ip);
39 /* Flags used in IP allocation algorithms. */
40 enum ipalloc_algorithm {
41 IPALLOC_DETERMINISTIC,
42 IPALLOC_NONDETERMINISTIC,
43 IPALLOC_LCP2,
46 struct ipalloc_state {
47 uint32_t num;
49 /* Arrays with data for each node */
50 struct ctdb_public_ip_list_old **known_public_ips;
51 struct ctdb_public_ip_list_old **available_public_ips;
52 bool *noiptakeover;
53 bool *noiphost;
55 struct public_ip_list *all_ips;
56 enum ipalloc_algorithm algorithm;
57 uint32_t no_ip_failback;
58 uint32_t *force_rebalance_nodes;
61 bool ipalloc(struct ipalloc_state *ipalloc_state);
63 #endif /* __CTDB_IPALLOC_H__ */