ctdb-daemon: Separate prototypes for common client/server functions
[garming/samba-autobuild/.git] / ctdb / server / ctdb_banning.c
1 /* 
2    ctdb banning code
3
4    Copyright (C) Ronnie Sahlberg  2009
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19 #include "replace.h"
20 #include "system/time.h"
21 #include "system/network.h"
22 #include "system/filesys.h"
23 #include "system/wait.h"
24
25 #include <talloc.h>
26 #include <tevent.h>
27
28 #include "lib/util/debug.h"
29 #include "lib/util/samba_util.h"
30
31 #include "ctdb_private.h"
32 #include "ctdb_client.h"
33 #include "ctdb_logging.h"
34
35 #include "common/common.h"
36
37 static void ctdb_ban_node_event(struct tevent_context *ev,
38                                 struct tevent_timer *te,
39                                 struct timeval t, void *private_data)
40 {
41         struct ctdb_context *ctdb = talloc_get_type(private_data, struct ctdb_context);
42
43         /* Make sure we were able to freeze databases during banning */
44         if (!ctdb_db_all_frozen(ctdb)) {
45                 DEBUG(DEBUG_ERR, ("Banning timedout, but still unable to freeze databases\n"));
46                 ctdb_ban_self(ctdb);
47                 return;
48         }
49
50         DEBUG(DEBUG_ERR,("Banning timedout\n"));
51         ctdb->nodes[ctdb->pnn]->flags &= ~NODE_FLAGS_BANNED;
52
53         if (ctdb->banning_ctx != NULL) {
54                 talloc_free(ctdb->banning_ctx);
55                 ctdb->banning_ctx = NULL;
56         }
57 }
58
59 void ctdb_local_node_got_banned(struct ctdb_context *ctdb)
60 {
61         struct ctdb_db_context *ctdb_db;
62
63         DEBUG(DEBUG_NOTICE,("This node has been banned - forcing recovery\n"));
64
65         /* Reset the generation id to 1 to make us ignore any
66            REQ/REPLY CALL/DMASTER someone sends to us.
67            We are now banned so we shouldnt service database calls
68            anymore.
69         */
70         ctdb->vnn_map->generation = INVALID_GENERATION;
71         for (ctdb_db = ctdb->db_list; ctdb_db != NULL; ctdb_db = ctdb_db->next) {
72                 ctdb_db->generation = INVALID_GENERATION;
73         }
74
75         /* make sure we get frozen */
76         ctdb->recovery_mode = CTDB_RECOVERY_ACTIVE;
77
78         ctdb_release_all_ips(ctdb);
79 }
80
81 int32_t ctdb_control_set_ban_state(struct ctdb_context *ctdb, TDB_DATA indata)
82 {
83         struct ctdb_ban_time *bantime = (struct ctdb_ban_time *)indata.dptr;
84         bool already_banned;
85
86         DEBUG(DEBUG_INFO,("SET BAN STATE\n"));
87
88         if (bantime->pnn != ctdb->pnn) {
89                 if (bantime->pnn >= ctdb->num_nodes) {
90                         DEBUG(DEBUG_ERR,(__location__ " ERROR: Invalid ban request. PNN:%d is invalid. Max nodes %d\n", bantime->pnn, ctdb->num_nodes));
91                         return -1;
92                 }
93                 if (bantime->time == 0) {
94                         DEBUG(DEBUG_NOTICE,("unbanning node %d\n", bantime->pnn));
95                         ctdb->nodes[bantime->pnn]->flags &= ~NODE_FLAGS_BANNED;
96                 } else {
97                         DEBUG(DEBUG_NOTICE,("banning node %d\n", bantime->pnn));
98                         if (ctdb->tunable.enable_bans == 0) {
99                                 /* FIXME: This is bogus. We really should be
100                                  * taking decision based on the tunables on
101                                  * the banned node and not local node.
102                                  */
103                                 DEBUG(DEBUG_WARNING,("Bans are disabled - ignoring ban of node %u\n", bantime->pnn));
104                                 return 0;
105                         }
106
107                         ctdb->nodes[bantime->pnn]->flags |= NODE_FLAGS_BANNED;
108                 }
109                 return 0;
110         }
111
112         already_banned = false;
113         if (ctdb->banning_ctx != NULL) {
114                 talloc_free(ctdb->banning_ctx);
115                 ctdb->banning_ctx = NULL;
116                 already_banned = true;
117         }
118
119         if (bantime->time == 0) {
120                 DEBUG(DEBUG_ERR,("Unbanning this node\n"));
121                 ctdb->nodes[bantime->pnn]->flags &= ~NODE_FLAGS_BANNED;
122                 return 0;
123         }
124
125         if (ctdb->tunable.enable_bans == 0) {
126                 DEBUG(DEBUG_ERR,("Bans are disabled - ignoring ban of node %u\n", bantime->pnn));
127                 return 0;
128         }
129
130         ctdb->banning_ctx = talloc(ctdb, struct ctdb_ban_time);
131         if (ctdb->banning_ctx == NULL) {
132                 DEBUG(DEBUG_CRIT,(__location__ " ERROR Failed to allocate new banning state\n"));
133                 return -1;
134         }
135         *((struct ctdb_ban_time *)(ctdb->banning_ctx)) = *bantime;
136
137
138         DEBUG(DEBUG_ERR,("Banning this node for %d seconds\n", bantime->time));
139         ctdb->nodes[bantime->pnn]->flags |= NODE_FLAGS_BANNED;
140
141         tevent_add_timer(ctdb->ev, ctdb->banning_ctx,
142                          timeval_current_ofs(bantime->time,0),
143                          ctdb_ban_node_event, ctdb);
144
145         if (!already_banned) {
146                 ctdb_local_node_got_banned(ctdb);
147         }
148         return 0;
149 }
150
151 int32_t ctdb_control_get_ban_state(struct ctdb_context *ctdb, TDB_DATA *outdata)
152 {
153         struct ctdb_ban_time *bantime;
154
155         bantime = talloc(outdata, struct ctdb_ban_time);
156         CTDB_NO_MEMORY(ctdb, bantime);
157
158         if (ctdb->banning_ctx != NULL) {
159                 *bantime = *(struct ctdb_ban_time *)(ctdb->banning_ctx);
160         } else {
161                 bantime->pnn = ctdb->pnn;
162                 bantime->time = 0;
163         }
164
165         outdata->dptr  = (uint8_t *)bantime;
166         outdata->dsize = sizeof(struct ctdb_ban_time);
167
168         return 0;
169 }
170
171 /* Routine to ban ourselves for a while when trouble strikes. */
172 void ctdb_ban_self(struct ctdb_context *ctdb)
173 {
174         TDB_DATA data;
175         struct ctdb_ban_time bantime;
176
177         bantime.pnn  = ctdb->pnn;
178         bantime.time = ctdb->tunable.recovery_ban_period;
179
180         data.dsize = sizeof(bantime);
181         data.dptr  = (uint8_t *)&bantime;
182
183         ctdb_control_set_ban_state(ctdb, data);
184 }