66a5e75eb6af5db595cd4af39d3f2e8cbdf09c2b
[metze/samba/wip.git] / ctdb / server / ipalloc.h
1 /*
2    CTDB IP takeover code
3
4    Copyright (C) Ronnie Sahlberg  2007
5    Copyright (C) Andrew Tridgell  2007
6    Copyright (C) Martin Schwenke  2015
7
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.
12
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.
17
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/>.
20 */
21
22 #ifndef __CTDB_IPALLOC_H__
23 #define __CTDB_IPALLOC_H__
24
25 #include <talloc.h>
26
27 #include "replace.h"
28 #include "system/network.h"
29
30 struct public_ip_list {
31         struct public_ip_list *next;
32         uint32_t pnn;
33         ctdb_sock_addr addr;
34 };
35
36 #define IP_KEYLEN       4
37 uint32_t *ip_key(ctdb_sock_addr *ip);
38
39 /* Flags used in IP allocation algorithms. */
40 enum ipalloc_algorithm {
41         IPALLOC_DETERMINISTIC,
42         IPALLOC_NONDETERMINISTIC,
43         IPALLOC_LCP2,
44 };
45
46 struct ipalloc_state;
47
48 struct ipalloc_state * ipalloc_state_init(TALLOC_CTX *mem_ctx,
49                                           uint32_t num_nodes,
50                                           enum ipalloc_algorithm algorithm,
51                                           bool no_ip_failback,
52                                           uint32_t *force_rebalance_nodes);
53
54 void ipalloc_set_node_flags(struct ipalloc_state *ipalloc_state,
55                             struct ctdb_node_map *nodemap,
56                             uint32_t *tval_noiptakeover,
57                             uint32_t *tval_noiphostonalldisabled);
58
59 bool ipalloc_set_public_ips(struct ipalloc_state *ipalloc_state,
60                             struct ctdb_public_ip_list *known_ips,
61                             struct ctdb_public_ip_list *available_ips);
62
63 bool ipalloc_can_host_ips(struct ipalloc_state *ipalloc_state);
64
65 struct public_ip_list *ipalloc(struct ipalloc_state *ipalloc_state);
66
67 #endif /* __CTDB_IPALLOC_H__ */