TMP: add a ctdb snapshot of current ctdb master (git://git.samba.org/ctdb.git) to...
[obnox/samba/samba-obnox.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 "includes.h"
20 #include "lib/tevent/tevent.h"
21 #include "lib/tdb/include/tdb.h"
22 #include "system/time.h"
23 #include "system/network.h"
24 #include "system/filesys.h"
25 #include "system/wait.h"
26 #include "../include/ctdb_client.h"
27 #include "../include/ctdb_private.h"
28
29
30 static void
31 ctdb_ban_node_event(struct event_context *ev, struct timed_event *te, 
32                                struct timeval t, void *private_data)
33 {
34         struct ctdb_context *ctdb = talloc_get_type(private_data, struct ctdb_context);
35
36         DEBUG(DEBUG_ERR,("Banning timedout\n"));
37         ctdb->nodes[ctdb->pnn]->flags &= ~NODE_FLAGS_BANNED;
38
39         if (ctdb->banning_ctx != NULL) {
40                 talloc_free(ctdb->banning_ctx);
41                 ctdb->banning_ctx = NULL;
42         }
43 }
44
45 int32_t ctdb_local_node_got_banned(struct ctdb_context *ctdb)
46 {
47         uint32_t i;
48
49         /* make sure we are frozen */
50         DEBUG(DEBUG_NOTICE,("This node has been banned - forcing freeze and recovery\n"));
51
52         /* Reset the generation id to 1 to make us ignore any
53            REQ/REPLY CALL/DMASTER someone sends to us.
54            We are now banned so we shouldnt service database calls
55            anymore.
56         */
57         ctdb->vnn_map->generation = INVALID_GENERATION;
58
59         for (i=1; i<=NUM_DB_PRIORITIES; i++) {
60                 if (ctdb_start_freeze(ctdb, i) != 0) {
61                         DEBUG(DEBUG_ERR,(__location__ " Failed to freeze db priority %u\n", i));
62                 }
63         }
64         ctdb_release_all_ips(ctdb);
65         ctdb->recovery_mode = CTDB_RECOVERY_ACTIVE;
66
67         return 0;
68 }
69
70 int32_t ctdb_control_set_ban_state(struct ctdb_context *ctdb, TDB_DATA indata)
71 {
72         struct ctdb_ban_time *bantime = (struct ctdb_ban_time *)indata.dptr;
73
74         DEBUG(DEBUG_INFO,("SET BAN STATE\n"));
75
76         if (bantime->pnn != ctdb->pnn) {
77                 if (bantime->pnn < 0 || bantime->pnn >= ctdb->num_nodes) {
78                         DEBUG(DEBUG_ERR,(__location__ " ERROR: Invalid ban request. PNN:%d is invalid. Max nodes %d\n", bantime->pnn, ctdb->num_nodes));
79                         return -1;
80                 }
81                 if (bantime->time == 0) {
82                         DEBUG(DEBUG_INFO,("unbanning node %d\n", bantime->pnn));
83                         ctdb->nodes[bantime->pnn]->flags &= ~NODE_FLAGS_BANNED;
84                 } else {
85                         DEBUG(DEBUG_INFO,("banning node %d\n", bantime->pnn));
86                         if (ctdb->tunable.enable_bans == 0) {
87                                 DEBUG(DEBUG_INFO,("Bans are disabled - ignoring ban of node %u\n", bantime->pnn));
88                                 return 0;
89                         }
90
91                         ctdb->nodes[bantime->pnn]->flags |= NODE_FLAGS_BANNED;
92                 }
93                 return 0;
94         }
95
96         if (ctdb->banning_ctx != NULL) {
97                 talloc_free(ctdb->banning_ctx);
98                 ctdb->banning_ctx = NULL;
99         }
100
101         if (bantime->time == 0) {
102                 DEBUG(DEBUG_ERR,("Unbanning this node\n"));
103                 ctdb->nodes[bantime->pnn]->flags &= ~NODE_FLAGS_BANNED;
104                 return 0;
105         }
106
107         if (ctdb->tunable.enable_bans == 0) {
108                 DEBUG(DEBUG_ERR,("Bans are disabled - ignoring ban of node %u\n", bantime->pnn));
109                 return 0;
110         }
111
112         ctdb->banning_ctx = talloc(ctdb, struct ctdb_ban_time);
113         if (ctdb->banning_ctx == NULL) {
114                 DEBUG(DEBUG_CRIT,(__location__ " ERROR Failed to allocate new banning state\n"));
115                 return -1;
116         }
117         *((struct ctdb_ban_time *)(ctdb->banning_ctx)) = *bantime;
118
119
120         DEBUG(DEBUG_ERR,("Banning this node for %d seconds\n", bantime->time));
121         ctdb->nodes[bantime->pnn]->flags |= NODE_FLAGS_BANNED;
122
123         event_add_timed(ctdb->ev, ctdb->banning_ctx, timeval_current_ofs(bantime->time,0), ctdb_ban_node_event, ctdb);
124         if (bantime->pnn == ctdb->pnn) {
125                 return ctdb_local_node_got_banned(ctdb);
126         }
127
128         return 0;
129 }
130
131 int32_t ctdb_control_get_ban_state(struct ctdb_context *ctdb, TDB_DATA *outdata)
132 {
133         struct ctdb_ban_time *bantime;
134
135         bantime = talloc(outdata, struct ctdb_ban_time);
136         CTDB_NO_MEMORY(ctdb, bantime);
137
138         if (ctdb->banning_ctx != NULL) {
139                 *bantime = *(struct ctdb_ban_time *)(ctdb->banning_ctx);
140         } else {
141                 bantime->pnn = ctdb->pnn;
142                 bantime->time = 0;
143         }
144
145         outdata->dptr  = (uint8_t *)bantime;
146         outdata->dsize = sizeof(struct ctdb_ban_time);
147
148         return 0;
149 }
150
151 /* Routine to ban ourselves for a while when trouble strikes. */
152 void ctdb_ban_self(struct ctdb_context *ctdb)
153 {
154         TDB_DATA data;
155         struct ctdb_ban_time bantime;
156
157         bantime.pnn  = ctdb->pnn;
158         bantime.time = ctdb->tunable.recovery_ban_period;
159
160         data.dsize = sizeof(bantime);
161         data.dptr  = (uint8_t *)&bantime;
162
163         ctdb_control_set_ban_state(ctdb, data);
164 }