Merge root@10.1.1.27:/shared/ctdb/ctdb-git
[kamenim/samba-autobuild/.git] / ctdb / server / ctdb_recover.c
1 /* 
2    ctdb recovery code
3
4    Copyright (C) Andrew Tridgell  2007
5    Copyright (C) Ronnie Sahlberg  2007
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11    
12    This program 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
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, see <http://www.gnu.org/licenses/>.
19 */
20 #include "includes.h"
21 #include "lib/events/events.h"
22 #include "lib/tdb/include/tdb.h"
23 #include "system/time.h"
24 #include "system/network.h"
25 #include "system/filesys.h"
26 #include "system/wait.h"
27 #include "../include/ctdb_private.h"
28 #include "lib/util/dlinklist.h"
29 #include "db_wrap.h"
30
31 /*
32   lock all databases - mark only
33  */
34 static int ctdb_lock_all_databases_mark(struct ctdb_context *ctdb, uint32_t priority)
35 {
36         struct ctdb_db_context *ctdb_db;
37
38         if ((priority < 1) || (priority > NUM_DB_PRIORITIES)) {
39                 DEBUG(DEBUG_ERR,(__location__ " Illegal priority when trying to mark all databases Prio:%u\n", priority));
40                 return -1;
41         }
42
43         if (ctdb->freeze_mode[priority] != CTDB_FREEZE_FROZEN) {
44                 DEBUG(DEBUG_ERR,("Attempt to mark all databases locked when not frozen\n"));
45                 return -1;
46         }
47         /* The dual loop is a woraround for older versions of samba
48            that does not yet support the set-db-priority/lock order
49            call. So that we get basic deadlock avoiidance also for
50            these old versions of samba.
51            This code will be removed in the future.
52         */
53         for (ctdb_db=ctdb->db_list;ctdb_db;ctdb_db=ctdb_db->next) {
54                 if (ctdb_db->priority != priority) {
55                         continue;
56                 }
57                 if (strstr(ctdb_db->db_name, "notify") != NULL) {
58                         continue;
59                 }
60                 if (tdb_lockall_mark(ctdb_db->ltdb->tdb) != 0) {
61                         return -1;
62                 }
63         }
64         for (ctdb_db=ctdb->db_list;ctdb_db;ctdb_db=ctdb_db->next) {
65                 if (ctdb_db->priority != priority) {
66                         continue;
67                 }
68                 if (strstr(ctdb_db->db_name, "notify") == NULL) {
69                         continue;
70                 }
71                 if (tdb_lockall_mark(ctdb_db->ltdb->tdb) != 0) {
72                         return -1;
73                 }
74         }
75         return 0;
76 }
77
78 /*
79   lock all databases - unmark only
80  */
81 static int ctdb_lock_all_databases_unmark(struct ctdb_context *ctdb, uint32_t priority)
82 {
83         struct ctdb_db_context *ctdb_db;
84
85         if ((priority < 1) || (priority > NUM_DB_PRIORITIES)) {
86                 DEBUG(DEBUG_ERR,(__location__ " Illegal priority when trying to mark all databases Prio:%u\n", priority));
87                 return -1;
88         }
89
90         if (ctdb->freeze_mode[priority] != CTDB_FREEZE_FROZEN) {
91                 DEBUG(DEBUG_ERR,("Attempt to unmark all databases locked when not frozen\n"));
92                 return -1;
93         }
94         for (ctdb_db=ctdb->db_list;ctdb_db;ctdb_db=ctdb_db->next) {
95                 if (ctdb_db->priority != priority) {
96                         continue;
97                 }
98                 if (tdb_lockall_unmark(ctdb_db->ltdb->tdb) != 0) {
99                         return -1;
100                 }
101         }
102         return 0;
103 }
104
105
106 int 
107 ctdb_control_getvnnmap(struct ctdb_context *ctdb, uint32_t opcode, TDB_DATA indata, TDB_DATA *outdata)
108 {
109         CHECK_CONTROL_DATA_SIZE(0);
110         struct ctdb_vnn_map_wire *map;
111         size_t len;
112
113         len = offsetof(struct ctdb_vnn_map_wire, map) + sizeof(uint32_t)*ctdb->vnn_map->size;
114         map = talloc_size(outdata, len);
115         CTDB_NO_MEMORY(ctdb, map);
116
117         map->generation = ctdb->vnn_map->generation;
118         map->size = ctdb->vnn_map->size;
119         memcpy(map->map, ctdb->vnn_map->map, sizeof(uint32_t)*map->size);
120
121         outdata->dsize = len;
122         outdata->dptr  = (uint8_t *)map;
123
124         return 0;
125 }
126
127 int 
128 ctdb_control_setvnnmap(struct ctdb_context *ctdb, uint32_t opcode, TDB_DATA indata, TDB_DATA *outdata)
129 {
130         struct ctdb_vnn_map_wire *map = (struct ctdb_vnn_map_wire *)indata.dptr;
131         int i;
132
133         for(i=1; i<=NUM_DB_PRIORITIES; i++) {
134                 if (ctdb->freeze_mode[i] != CTDB_FREEZE_FROZEN) {
135                         DEBUG(DEBUG_ERR,("Attempt to set vnnmap when not frozen\n"));
136                         return -1;
137                 }
138         }
139
140         talloc_free(ctdb->vnn_map);
141
142         ctdb->vnn_map = talloc(ctdb, struct ctdb_vnn_map);
143         CTDB_NO_MEMORY(ctdb, ctdb->vnn_map);
144
145         ctdb->vnn_map->generation = map->generation;
146         ctdb->vnn_map->size       = map->size;
147         ctdb->vnn_map->map = talloc_array(ctdb->vnn_map, uint32_t, map->size);
148         CTDB_NO_MEMORY(ctdb, ctdb->vnn_map->map);
149
150         memcpy(ctdb->vnn_map->map, map->map, sizeof(uint32_t)*map->size);
151
152         return 0;
153 }
154
155 int 
156 ctdb_control_getdbmap(struct ctdb_context *ctdb, uint32_t opcode, TDB_DATA indata, TDB_DATA *outdata)
157 {
158         uint32_t i, len;
159         struct ctdb_db_context *ctdb_db;
160         struct ctdb_dbid_map *dbid_map;
161
162         CHECK_CONTROL_DATA_SIZE(0);
163
164         len = 0;
165         for(ctdb_db=ctdb->db_list;ctdb_db;ctdb_db=ctdb_db->next){
166                 len++;
167         }
168
169
170         outdata->dsize = offsetof(struct ctdb_dbid_map, dbs) + sizeof(dbid_map->dbs[0])*len;
171         outdata->dptr  = (unsigned char *)talloc_zero_size(outdata, outdata->dsize);
172         if (!outdata->dptr) {
173                 DEBUG(DEBUG_ALERT, (__location__ " Failed to allocate dbmap array\n"));
174                 exit(1);
175         }
176
177         dbid_map = (struct ctdb_dbid_map *)outdata->dptr;
178         dbid_map->num = len;
179         for (i=0,ctdb_db=ctdb->db_list;ctdb_db;i++,ctdb_db=ctdb_db->next){
180                 dbid_map->dbs[i].dbid       = ctdb_db->db_id;
181                 dbid_map->dbs[i].persistent = ctdb_db->persistent;
182         }
183
184         return 0;
185 }
186
187 int 
188 ctdb_control_getnodemap(struct ctdb_context *ctdb, uint32_t opcode, TDB_DATA indata, TDB_DATA *outdata)
189 {
190         uint32_t i, num_nodes;
191         struct ctdb_node_map *node_map;
192
193         CHECK_CONTROL_DATA_SIZE(0);
194
195         num_nodes = ctdb->num_nodes;
196
197         outdata->dsize = offsetof(struct ctdb_node_map, nodes) + num_nodes*sizeof(struct ctdb_node_and_flags);
198         outdata->dptr  = (unsigned char *)talloc_zero_size(outdata, outdata->dsize);
199         if (!outdata->dptr) {
200                 DEBUG(DEBUG_ALERT, (__location__ " Failed to allocate nodemap array\n"));
201                 exit(1);
202         }
203
204         node_map = (struct ctdb_node_map *)outdata->dptr;
205         node_map->num = num_nodes;
206         for (i=0; i<num_nodes; i++) {
207                 if (parse_ip(ctdb->nodes[i]->address.address,
208                              NULL, /* TODO: pass in the correct interface here*/
209                              0,
210                              &node_map->nodes[i].addr) == 0)
211                 {
212                         DEBUG(DEBUG_ERR, (__location__ " Failed to parse %s into a sockaddr\n", ctdb->nodes[i]->address.address));
213                 }
214
215                 node_map->nodes[i].pnn   = ctdb->nodes[i]->pnn;
216                 node_map->nodes[i].flags = ctdb->nodes[i]->flags;
217         }
218
219         return 0;
220 }
221
222 /*
223    get an old style ipv4-only nodemap
224 */
225 int 
226 ctdb_control_getnodemapv4(struct ctdb_context *ctdb, uint32_t opcode, TDB_DATA indata, TDB_DATA *outdata)
227 {
228         uint32_t i, num_nodes;
229         struct ctdb_node_mapv4 *node_map;
230
231         CHECK_CONTROL_DATA_SIZE(0);
232
233         num_nodes = ctdb->num_nodes;
234
235         outdata->dsize = offsetof(struct ctdb_node_mapv4, nodes) + num_nodes*sizeof(struct ctdb_node_and_flagsv4);
236         outdata->dptr  = (unsigned char *)talloc_zero_size(outdata, outdata->dsize);
237         if (!outdata->dptr) {
238                 DEBUG(DEBUG_ALERT, (__location__ " Failed to allocate nodemap array\n"));
239                 exit(1);
240         }
241
242         node_map = (struct ctdb_node_mapv4 *)outdata->dptr;
243         node_map->num = num_nodes;
244         for (i=0; i<num_nodes; i++) {
245                 if (parse_ipv4(ctdb->nodes[i]->address.address, 0, &node_map->nodes[i].sin) == 0) {
246                         DEBUG(DEBUG_ERR, (__location__ " Failed to parse %s into a sockaddr\n", ctdb->nodes[i]->address.address));
247                         return -1;
248                 }
249
250                 node_map->nodes[i].pnn   = ctdb->nodes[i]->pnn;
251                 node_map->nodes[i].flags = ctdb->nodes[i]->flags;
252         }
253
254         return 0;
255 }
256
257 static void
258 ctdb_reload_nodes_event(struct event_context *ev, struct timed_event *te, 
259                                struct timeval t, void *private_data)
260 {
261         int i, num_nodes;
262         struct ctdb_context *ctdb = talloc_get_type(private_data, struct ctdb_context);
263         TALLOC_CTX *tmp_ctx;
264         struct ctdb_node **nodes;       
265
266         tmp_ctx = talloc_new(ctdb);
267
268         /* steal the old nodes file for a while */
269         talloc_steal(tmp_ctx, ctdb->nodes);
270         nodes = ctdb->nodes;
271         ctdb->nodes = NULL;
272         num_nodes = ctdb->num_nodes;
273         ctdb->num_nodes = 0;
274
275         /* load the new nodes file */
276         ctdb_load_nodes_file(ctdb);
277
278         for (i=0; i<ctdb->num_nodes; i++) {
279                 /* keep any identical pre-existing nodes and connections */
280                 if ((i < num_nodes) && ctdb_same_address(&ctdb->nodes[i]->address, &nodes[i]->address)) {
281                         talloc_free(ctdb->nodes[i]);
282                         ctdb->nodes[i] = talloc_steal(ctdb->nodes, nodes[i]);
283                         continue;
284                 }
285
286                 if (ctdb->nodes[i]->flags & NODE_FLAGS_DELETED) {
287                         continue;
288                 }
289
290                 /* any new or different nodes must be added */
291                 if (ctdb->methods->add_node(ctdb->nodes[i]) != 0) {
292                         DEBUG(DEBUG_CRIT, (__location__ " methods->add_node failed at %d\n", i));
293                         ctdb_fatal(ctdb, "failed to add node. shutting down\n");
294                 }
295                 if (ctdb->methods->connect_node(ctdb->nodes[i]) != 0) {
296                         DEBUG(DEBUG_CRIT, (__location__ " methods->add_connect failed at %d\n", i));
297                         ctdb_fatal(ctdb, "failed to connect to node. shutting down\n");
298                 }
299         }
300
301         /* tell the recovery daemon to reaload the nodes file too */
302         ctdb_daemon_send_message(ctdb, ctdb->pnn, CTDB_SRVID_RELOAD_NODES, tdb_null);
303
304         talloc_free(tmp_ctx);
305         return;
306 }
307
308 /*
309   reload the nodes file after a short delay (so that we can send the response
310   back first
311 */
312 int 
313 ctdb_control_reload_nodes_file(struct ctdb_context *ctdb, uint32_t opcode)
314 {
315         event_add_timed(ctdb->ev, ctdb, timeval_current_ofs(1,0), ctdb_reload_nodes_event, ctdb);
316
317         return 0;
318 }
319
320 /* 
321    a traverse function for pulling all relevent records from pulldb
322  */
323 struct pulldb_data {
324         struct ctdb_context *ctdb;
325         struct ctdb_marshall_buffer *pulldata;
326         uint32_t len;
327         bool failed;
328 };
329
330 static int traverse_pulldb(struct tdb_context *tdb, TDB_DATA key, TDB_DATA data, void *p)
331 {
332         struct pulldb_data *params = (struct pulldb_data *)p;
333         struct ctdb_rec_data *rec;
334
335         /* add the record to the blob */
336         rec = ctdb_marshall_record(params->pulldata, 0, key, NULL, data);
337         if (rec == NULL) {
338                 params->failed = true;
339                 return -1;
340         }
341         params->pulldata = talloc_realloc_size(NULL, params->pulldata, rec->length + params->len);
342         if (params->pulldata == NULL) {
343                 DEBUG(DEBUG_ERR,(__location__ " Failed to expand pulldb_data to %u (%u records)\n", 
344                          rec->length + params->len, params->pulldata->count));
345                 params->failed = true;
346                 return -1;
347         }
348         params->pulldata->count++;
349         memcpy(params->len+(uint8_t *)params->pulldata, rec, rec->length);
350         params->len += rec->length;
351         talloc_free(rec);
352
353         return 0;
354 }
355
356 /*
357   pul a bunch of records from a ltdb, filtering by lmaster
358  */
359 int32_t ctdb_control_pull_db(struct ctdb_context *ctdb, TDB_DATA indata, TDB_DATA *outdata)
360 {
361         struct ctdb_control_pulldb *pull;
362         struct ctdb_db_context *ctdb_db;
363         struct pulldb_data params;
364         struct ctdb_marshall_buffer *reply;
365
366         pull = (struct ctdb_control_pulldb *)indata.dptr;
367         
368         ctdb_db = find_ctdb_db(ctdb, pull->db_id);
369         if (!ctdb_db) {
370                 DEBUG(DEBUG_ERR,(__location__ " Unknown db 0x%08x\n", pull->db_id));
371                 return -1;
372         }
373
374         if (ctdb->freeze_mode[ctdb_db->priority] != CTDB_FREEZE_FROZEN) {
375                 DEBUG(DEBUG_DEBUG,("rejecting ctdb_control_pull_db when not frozen\n"));
376                 return -1;
377         }
378
379         reply = talloc_zero(outdata, struct ctdb_marshall_buffer);
380         CTDB_NO_MEMORY(ctdb, reply);
381
382         reply->db_id = pull->db_id;
383
384         params.ctdb = ctdb;
385         params.pulldata = reply;
386         params.len = offsetof(struct ctdb_marshall_buffer, data);
387         params.failed = false;
388
389         if (ctdb_db->unhealthy_reason) {
390                 /* this is just a warning, as the tdb should be empty anyway */
391                 DEBUG(DEBUG_WARNING,("db(%s) unhealty in ctdb_control_pull_db: %s\n",
392                                      ctdb_db->db_name, ctdb_db->unhealthy_reason));
393         }
394
395         if (ctdb_lock_all_databases_mark(ctdb, ctdb_db->priority) != 0) {
396                 DEBUG(DEBUG_ERR,(__location__ " Failed to get lock on entired db - failing\n"));
397                 return -1;
398         }
399
400         if (tdb_traverse_read(ctdb_db->ltdb->tdb, traverse_pulldb, &params) == -1) {
401                 DEBUG(DEBUG_ERR,(__location__ " Failed to get traverse db '%s'\n", ctdb_db->db_name));
402                 ctdb_lock_all_databases_unmark(ctdb, ctdb_db->priority);
403                 talloc_free(params.pulldata);
404                 return -1;
405         }
406
407         ctdb_lock_all_databases_unmark(ctdb, ctdb_db->priority);
408
409         outdata->dptr = (uint8_t *)params.pulldata;
410         outdata->dsize = params.len;
411
412         return 0;
413 }
414
415 /*
416   push a bunch of records into a ltdb, filtering by rsn
417  */
418 int32_t ctdb_control_push_db(struct ctdb_context *ctdb, TDB_DATA indata)
419 {
420         struct ctdb_marshall_buffer *reply = (struct ctdb_marshall_buffer *)indata.dptr;
421         struct ctdb_db_context *ctdb_db;
422         int i, ret;
423         struct ctdb_rec_data *rec;
424
425         if (indata.dsize < offsetof(struct ctdb_marshall_buffer, data)) {
426                 DEBUG(DEBUG_ERR,(__location__ " invalid data in pulldb reply\n"));
427                 return -1;
428         }
429
430         ctdb_db = find_ctdb_db(ctdb, reply->db_id);
431         if (!ctdb_db) {
432                 DEBUG(DEBUG_ERR,(__location__ " Unknown db 0x%08x\n", reply->db_id));
433                 return -1;
434         }
435
436         if (ctdb->freeze_mode[ctdb_db->priority] != CTDB_FREEZE_FROZEN) {
437                 DEBUG(DEBUG_DEBUG,("rejecting ctdb_control_push_db when not frozen\n"));
438                 return -1;
439         }
440
441         if (ctdb_lock_all_databases_mark(ctdb, ctdb_db->priority) != 0) {
442                 DEBUG(DEBUG_ERR,(__location__ " Failed to get lock on entired db - failing\n"));
443                 return -1;
444         }
445
446         rec = (struct ctdb_rec_data *)&reply->data[0];
447
448         DEBUG(DEBUG_INFO,("starting push of %u records for dbid 0x%x\n",
449                  reply->count, reply->db_id));
450
451         for (i=0;i<reply->count;i++) {
452                 TDB_DATA key, data;
453                 struct ctdb_ltdb_header *hdr;
454
455                 key.dptr = &rec->data[0];
456                 key.dsize = rec->keylen;
457                 data.dptr = &rec->data[key.dsize];
458                 data.dsize = rec->datalen;
459
460                 if (data.dsize < sizeof(struct ctdb_ltdb_header)) {
461                         DEBUG(DEBUG_CRIT,(__location__ " bad ltdb record\n"));
462                         goto failed;
463                 }
464                 hdr = (struct ctdb_ltdb_header *)data.dptr;
465                 data.dptr += sizeof(*hdr);
466                 data.dsize -= sizeof(*hdr);
467
468                 ret = ctdb_ltdb_store(ctdb_db, key, hdr, data);
469                 if (ret != 0) {
470                         DEBUG(DEBUG_CRIT, (__location__ " Unable to store record\n"));
471                         goto failed;
472                 }
473
474                 rec = (struct ctdb_rec_data *)(rec->length + (uint8_t *)rec);
475         }           
476
477         DEBUG(DEBUG_DEBUG,("finished push of %u records for dbid 0x%x\n",
478                  reply->count, reply->db_id));
479
480         ctdb_lock_all_databases_unmark(ctdb, ctdb_db->priority);
481         return 0;
482
483 failed:
484         ctdb_lock_all_databases_unmark(ctdb, ctdb_db->priority);
485         return -1;
486 }
487
488
489 static int traverse_setdmaster(struct tdb_context *tdb, TDB_DATA key, TDB_DATA data, void *p)
490 {
491         uint32_t *dmaster = (uint32_t *)p;
492         struct ctdb_ltdb_header *header = (struct ctdb_ltdb_header *)data.dptr;
493         int ret;
494
495         /* skip if already correct */
496         if (header->dmaster == *dmaster) {
497                 return 0;
498         }
499
500         header->dmaster = *dmaster;
501
502         ret = tdb_store(tdb, key, data, TDB_REPLACE);
503         if (ret) {
504                 DEBUG(DEBUG_CRIT,(__location__ " failed to write tdb data back  ret:%d\n",ret));
505                 return ret;
506         }
507
508         /* TODO: add error checking here */
509
510         return 0;
511 }
512
513 int32_t ctdb_control_set_dmaster(struct ctdb_context *ctdb, TDB_DATA indata)
514 {
515         struct ctdb_control_set_dmaster *p = (struct ctdb_control_set_dmaster *)indata.dptr;
516         struct ctdb_db_context *ctdb_db;
517
518         ctdb_db = find_ctdb_db(ctdb, p->db_id);
519         if (!ctdb_db) {
520                 DEBUG(DEBUG_ERR,(__location__ " Unknown db 0x%08x\n", p->db_id));
521                 return -1;
522         }
523
524         if (ctdb->freeze_mode[ctdb_db->priority] != CTDB_FREEZE_FROZEN) {
525                 DEBUG(DEBUG_DEBUG,("rejecting ctdb_control_set_dmaster when not frozen\n"));
526                 return -1;
527         }
528
529         if (ctdb_lock_all_databases_mark(ctdb,  ctdb_db->priority) != 0) {
530                 DEBUG(DEBUG_ERR,(__location__ " Failed to get lock on entired db - failing\n"));
531                 return -1;
532         }
533
534         tdb_traverse(ctdb_db->ltdb->tdb, traverse_setdmaster, &p->dmaster);
535
536         ctdb_lock_all_databases_unmark(ctdb, ctdb_db->priority);
537         
538         return 0;
539 }
540
541 struct ctdb_set_recmode_state {
542         struct ctdb_context *ctdb;
543         struct ctdb_req_control *c;
544         uint32_t recmode;
545         int fd[2];
546         struct timed_event *te;
547         struct fd_event *fde;
548         pid_t child;
549         struct timeval start_time;
550 };
551
552 /*
553   called if our set_recmode child times out. this would happen if
554   ctdb_recovery_lock() would block.
555  */
556 static void ctdb_set_recmode_timeout(struct event_context *ev, struct timed_event *te, 
557                                          struct timeval t, void *private_data)
558 {
559         struct ctdb_set_recmode_state *state = talloc_get_type(private_data, 
560                                            struct ctdb_set_recmode_state);
561
562         /* we consider this a success, not a failure, as we failed to
563            set the recovery lock which is what we wanted.  This can be
564            caused by the cluster filesystem being very slow to
565            arbitrate locks immediately after a node failure.       
566          */
567         DEBUG(DEBUG_ERR,(__location__ " set_recmode child process hung/timedout CFS slow to grant locks? (allowing recmode set anyway)\n"));
568         state->ctdb->recovery_mode = state->recmode;
569         ctdb_request_control_reply(state->ctdb, state->c, NULL, 0, NULL);
570         talloc_free(state);
571 }
572
573
574 /* when we free the recmode state we must kill any child process.
575 */
576 static int set_recmode_destructor(struct ctdb_set_recmode_state *state)
577 {
578         double l = timeval_elapsed(&state->start_time);
579
580         ctdb_reclock_latency(state->ctdb, "daemon reclock", &state->ctdb->statistics.reclock.ctdbd, l);
581
582         if (state->fd[0] != -1) {
583                 state->fd[0] = -1;
584         }
585         if (state->fd[1] != -1) {
586                 state->fd[1] = -1;
587         }
588         kill(state->child, SIGKILL);
589         return 0;
590 }
591
592 /* this is called when the client process has completed ctdb_recovery_lock()
593    and has written data back to us through the pipe.
594 */
595 static void set_recmode_handler(struct event_context *ev, struct fd_event *fde, 
596                              uint16_t flags, void *private_data)
597 {
598         struct ctdb_set_recmode_state *state= talloc_get_type(private_data, 
599                                              struct ctdb_set_recmode_state);
600         char c = 0;
601         int ret;
602
603         /* we got a response from our child process so we can abort the
604            timeout.
605         */
606         talloc_free(state->te);
607         state->te = NULL;
608
609
610         /* read the childs status when trying to lock the reclock file.
611            child wrote 0 if everything is fine and 1 if it did manage
612            to lock the file, which would be a problem since that means
613            we got a request to exit from recovery but we could still lock
614            the file   which at this time SHOULD be locked by the recovery
615            daemon on the recmaster
616         */              
617         ret = read(state->fd[0], &c, 1);
618         if (ret != 1 || c != 0) {
619                 ctdb_request_control_reply(state->ctdb, state->c, NULL, -1, "managed to lock reclock file from inside daemon");
620                 talloc_free(state);
621                 return;
622         }
623
624         state->ctdb->recovery_mode = state->recmode;
625
626         ctdb_request_control_reply(state->ctdb, state->c, NULL, 0, NULL);
627         talloc_free(state);
628         return;
629 }
630
631 static void
632 ctdb_drop_all_ips_event(struct event_context *ev, struct timed_event *te, 
633                                struct timeval t, void *private_data)
634 {
635         struct ctdb_context *ctdb = talloc_get_type(private_data, struct ctdb_context);
636
637         DEBUG(DEBUG_ERR,(__location__ " Been in recovery mode for too long. Dropping all IPS\n"));
638         talloc_free(ctdb->release_ips_ctx);
639         ctdb->release_ips_ctx = NULL;
640
641         ctdb_release_all_ips(ctdb);
642 }
643
644 /*
645   set the recovery mode
646  */
647 int32_t ctdb_control_set_recmode(struct ctdb_context *ctdb, 
648                                  struct ctdb_req_control *c,
649                                  TDB_DATA indata, bool *async_reply,
650                                  const char **errormsg)
651 {
652         uint32_t recmode = *(uint32_t *)indata.dptr;
653         int i, ret;
654         struct ctdb_set_recmode_state *state;
655         pid_t parent = getpid();
656
657         /* if we enter recovery but stay in recovery for too long
658            we will eventually drop all our ip addresses
659         */
660         if (recmode == CTDB_RECOVERY_NORMAL) {
661                 talloc_free(ctdb->release_ips_ctx);
662                 ctdb->release_ips_ctx = NULL;
663         } else {
664                 talloc_free(ctdb->release_ips_ctx);
665                 ctdb->release_ips_ctx = talloc_new(ctdb);
666                 CTDB_NO_MEMORY(ctdb, ctdb->release_ips_ctx);
667
668                 event_add_timed(ctdb->ev, ctdb->release_ips_ctx, timeval_current_ofs(ctdb->tunable.recovery_drop_all_ips, 0), ctdb_drop_all_ips_event, ctdb);
669         }
670
671         if (recmode != ctdb->recovery_mode) {
672                 DEBUG(DEBUG_NOTICE,(__location__ " Recovery mode set to %s\n", 
673                          recmode==CTDB_RECOVERY_NORMAL?"NORMAL":"ACTIVE"));
674         }
675
676         if (recmode != CTDB_RECOVERY_NORMAL ||
677             ctdb->recovery_mode != CTDB_RECOVERY_ACTIVE) {
678                 ctdb->recovery_mode = recmode;
679                 return 0;
680         }
681
682         /* some special handling when ending recovery mode */
683
684         /* force the databases to thaw */
685         for (i=1; i<=NUM_DB_PRIORITIES; i++) {
686                 if (ctdb->freeze_handles[i] != NULL) {
687                         ctdb_control_thaw(ctdb, i);
688                 }
689         }
690
691         state = talloc(ctdb, struct ctdb_set_recmode_state);
692         CTDB_NO_MEMORY(ctdb, state);
693
694         state->start_time = timeval_current();
695         state->fd[0] = -1;
696         state->fd[1] = -1;
697
698         if (ctdb->tunable.verify_recovery_lock == 0) {
699                 /* dont need to verify the reclock file */
700                 ctdb->recovery_mode = recmode;
701                 return 0;
702         }
703
704         /* For the rest of what needs to be done, we need to do this in
705            a child process since 
706            1, the call to ctdb_recovery_lock() can block if the cluster
707               filesystem is in the process of recovery.
708         */
709         ret = pipe(state->fd);
710         if (ret != 0) {
711                 talloc_free(state);
712                 DEBUG(DEBUG_CRIT,(__location__ " Failed to open pipe for set_recmode child\n"));
713                 return -1;
714         }
715
716         state->child = fork();
717         if (state->child == (pid_t)-1) {
718                 close(state->fd[0]);
719                 close(state->fd[1]);
720                 talloc_free(state);
721                 return -1;
722         }
723
724         if (state->child == 0) {
725                 char cc = 0;
726                 close(state->fd[0]);
727
728                 /* we should not be able to get the lock on the reclock file, 
729                   as it should  be held by the recovery master 
730                 */
731                 if (ctdb_recovery_lock(ctdb, false)) {
732                         DEBUG(DEBUG_CRIT,("ERROR: recovery lock file %s not locked when recovering!\n", ctdb->recovery_lock_file));
733                         cc = 1;
734                 }
735
736                 write(state->fd[1], &cc, 1);
737                 /* make sure we die when our parent dies */
738                 while (kill(parent, 0) == 0 || errno != ESRCH) {
739                         sleep(5);
740                         write(state->fd[1], &cc, 1);
741                 }
742                 _exit(0);
743         }
744         close(state->fd[1]);
745         set_close_on_exec(state->fd[0]);
746
747         state->fd[1] = -1;
748
749         talloc_set_destructor(state, set_recmode_destructor);
750
751         DEBUG(DEBUG_DEBUG, (__location__ " Created PIPE FD:%d for setrecmode\n", state->fd[0]));
752
753         state->te = event_add_timed(ctdb->ev, state, timeval_current_ofs(5, 0),
754                                     ctdb_set_recmode_timeout, state);
755
756         state->fde = event_add_fd(ctdb->ev, state, state->fd[0],
757                                 EVENT_FD_READ|EVENT_FD_AUTOCLOSE,
758                                 set_recmode_handler,
759                                 (void *)state);
760
761         if (state->fde == NULL) {
762                 talloc_free(state);
763                 return -1;
764         }
765
766         state->ctdb    = ctdb;
767         state->recmode = recmode;
768         state->c       = talloc_steal(state, c);
769
770         *async_reply = true;
771
772         return 0;
773 }
774
775
776 /*
777   try and get the recovery lock in shared storage - should only work
778   on the recovery master recovery daemon. Anywhere else is a bug
779  */
780 bool ctdb_recovery_lock(struct ctdb_context *ctdb, bool keep)
781 {
782         struct flock lock;
783
784         if (keep) {
785                 DEBUG(DEBUG_ERR, ("Take the recovery lock\n"));
786         }
787         if (ctdb->recovery_lock_fd != -1) {
788                 close(ctdb->recovery_lock_fd);
789                 ctdb->recovery_lock_fd = -1;
790         }
791
792         ctdb->recovery_lock_fd = open(ctdb->recovery_lock_file, O_RDWR|O_CREAT, 0600);
793         if (ctdb->recovery_lock_fd == -1) {
794                 DEBUG(DEBUG_ERR,("ctdb_recovery_lock: Unable to open %s - (%s)\n", 
795                          ctdb->recovery_lock_file, strerror(errno)));
796                 return false;
797         }
798
799         set_close_on_exec(ctdb->recovery_lock_fd);
800
801         lock.l_type = F_WRLCK;
802         lock.l_whence = SEEK_SET;
803         lock.l_start = 0;
804         lock.l_len = 1;
805         lock.l_pid = 0;
806
807         if (fcntl(ctdb->recovery_lock_fd, F_SETLK, &lock) != 0) {
808                 close(ctdb->recovery_lock_fd);
809                 ctdb->recovery_lock_fd = -1;
810                 if (keep) {
811                         DEBUG(DEBUG_CRIT,("ctdb_recovery_lock: Failed to get recovery lock on '%s'\n", ctdb->recovery_lock_file));
812                 }
813                 return false;
814         }
815
816         if (!keep) {
817                 close(ctdb->recovery_lock_fd);
818                 ctdb->recovery_lock_fd = -1;
819         }
820
821         if (keep) {
822                 DEBUG(DEBUG_NOTICE, ("Recovery lock taken successfully\n"));
823         }
824
825         DEBUG(DEBUG_NOTICE,("ctdb_recovery_lock: Got recovery lock on '%s'\n", ctdb->recovery_lock_file));
826
827         return true;
828 }
829
830 /*
831   delete a record as part of the vacuum process
832   only delete if we are not lmaster or dmaster, and our rsn is <= the provided rsn
833   use non-blocking locks
834
835   return 0 if the record was successfully deleted (i.e. it does not exist
836   when the function returns)
837   or !0 is the record still exists in the tdb after returning.
838  */
839 static int delete_tdb_record(struct ctdb_context *ctdb, struct ctdb_db_context *ctdb_db, struct ctdb_rec_data *rec)
840 {
841         TDB_DATA key, data;
842         struct ctdb_ltdb_header *hdr, *hdr2;
843         
844         /* these are really internal tdb functions - but we need them here for
845            non-blocking lock of the freelist */
846         int tdb_lock_nonblock(struct tdb_context *tdb, int list, int ltype);
847         int tdb_unlock(struct tdb_context *tdb, int list, int ltype);
848
849
850         key.dsize = rec->keylen;
851         key.dptr  = &rec->data[0];
852         data.dsize = rec->datalen;
853         data.dptr = &rec->data[rec->keylen];
854
855         if (ctdb_lmaster(ctdb, &key) == ctdb->pnn) {
856                 DEBUG(DEBUG_INFO,(__location__ " Called delete on record where we are lmaster\n"));
857                 return -1;
858         }
859
860         if (data.dsize != sizeof(struct ctdb_ltdb_header)) {
861                 DEBUG(DEBUG_ERR,(__location__ " Bad record size\n"));
862                 return -1;
863         }
864
865         hdr = (struct ctdb_ltdb_header *)data.dptr;
866
867         /* use a non-blocking lock */
868         if (tdb_chainlock_nonblock(ctdb_db->ltdb->tdb, key) != 0) {
869                 return -1;
870         }
871
872         data = tdb_fetch(ctdb_db->ltdb->tdb, key);
873         if (data.dptr == NULL) {
874                 tdb_chainunlock(ctdb_db->ltdb->tdb, key);
875                 return 0;
876         }
877
878         if (data.dsize < sizeof(struct ctdb_ltdb_header)) {
879                 if (tdb_lock_nonblock(ctdb_db->ltdb->tdb, -1, F_WRLCK) == 0) {
880                         tdb_delete(ctdb_db->ltdb->tdb, key);
881                         tdb_unlock(ctdb_db->ltdb->tdb, -1, F_WRLCK);
882                         DEBUG(DEBUG_CRIT,(__location__ " Deleted corrupt record\n"));
883                 }
884                 tdb_chainunlock(ctdb_db->ltdb->tdb, key);
885                 free(data.dptr);
886                 return 0;
887         }
888         
889         hdr2 = (struct ctdb_ltdb_header *)data.dptr;
890
891         if (hdr2->rsn > hdr->rsn) {
892                 tdb_chainunlock(ctdb_db->ltdb->tdb, key);
893                 DEBUG(DEBUG_INFO,(__location__ " Skipping record with rsn=%llu - called with rsn=%llu\n",
894                          (unsigned long long)hdr2->rsn, (unsigned long long)hdr->rsn));
895                 free(data.dptr);
896                 return -1;              
897         }
898
899         if (hdr2->dmaster == ctdb->pnn) {
900                 tdb_chainunlock(ctdb_db->ltdb->tdb, key);
901                 DEBUG(DEBUG_INFO,(__location__ " Attempted delete record where we are the dmaster\n"));
902                 free(data.dptr);
903                 return -1;                              
904         }
905
906         if (tdb_lock_nonblock(ctdb_db->ltdb->tdb, -1, F_WRLCK) != 0) {
907                 tdb_chainunlock(ctdb_db->ltdb->tdb, key);
908                 free(data.dptr);
909                 return -1;                              
910         }
911
912         if (tdb_delete(ctdb_db->ltdb->tdb, key) != 0) {
913                 tdb_unlock(ctdb_db->ltdb->tdb, -1, F_WRLCK);
914                 tdb_chainunlock(ctdb_db->ltdb->tdb, key);
915                 DEBUG(DEBUG_INFO,(__location__ " Failed to delete record\n"));
916                 free(data.dptr);
917                 return -1;                                              
918         }
919
920         tdb_unlock(ctdb_db->ltdb->tdb, -1, F_WRLCK);
921         tdb_chainunlock(ctdb_db->ltdb->tdb, key);
922         free(data.dptr);
923         return 0;       
924 }
925
926
927
928 struct recovery_callback_state {
929         struct ctdb_req_control *c;
930 };
931
932
933 /*
934   called when the 'recovered' event script has finished
935  */
936 static void ctdb_end_recovery_callback(struct ctdb_context *ctdb, int status, void *p)
937 {
938         struct recovery_callback_state *state = talloc_get_type(p, struct recovery_callback_state);
939
940         ctdb_enable_monitoring(ctdb);
941
942         if (status != 0) {
943                 DEBUG(DEBUG_ERR,(__location__ " recovered event script failed (status %d)\n", status));
944                 if (status == -ETIME) {
945                         ctdb_ban_self(ctdb);
946                 }
947         }
948
949         ctdb_request_control_reply(ctdb, state->c, NULL, status, NULL);
950         talloc_free(state);
951
952         gettimeofday(&ctdb->last_recovery_finished, NULL);
953 }
954
955 /*
956   recovery has finished
957  */
958 int32_t ctdb_control_end_recovery(struct ctdb_context *ctdb, 
959                                 struct ctdb_req_control *c,
960                                 bool *async_reply)
961 {
962         int ret;
963         struct recovery_callback_state *state;
964
965         DEBUG(DEBUG_NOTICE,("Recovery has finished\n"));
966
967         state = talloc(ctdb, struct recovery_callback_state);
968         CTDB_NO_MEMORY(ctdb, state);
969
970         state->c    = c;
971
972         ctdb_disable_monitoring(ctdb);
973
974         ret = ctdb_event_script_callback(ctdb, state,
975                                          ctdb_end_recovery_callback, 
976                                          state, 
977                                          false,
978                                          CTDB_EVENT_RECOVERED, "%s", "");
979
980         if (ret != 0) {
981                 ctdb_enable_monitoring(ctdb);
982
983                 DEBUG(DEBUG_ERR,(__location__ " Failed to end recovery\n"));
984                 talloc_free(state);
985                 return -1;
986         }
987
988         /* tell the control that we will be reply asynchronously */
989         state->c    = talloc_steal(state, c);
990         *async_reply = true;
991         return 0;
992 }
993
994 /*
995   called when the 'startrecovery' event script has finished
996  */
997 static void ctdb_start_recovery_callback(struct ctdb_context *ctdb, int status, void *p)
998 {
999         struct recovery_callback_state *state = talloc_get_type(p, struct recovery_callback_state);
1000
1001         if (status != 0) {
1002                 DEBUG(DEBUG_ERR,(__location__ " startrecovery event script failed (status %d)\n", status));
1003         }
1004
1005         ctdb_request_control_reply(ctdb, state->c, NULL, status, NULL);
1006         talloc_free(state);
1007 }
1008
1009 /*
1010   run the startrecovery eventscript
1011  */
1012 int32_t ctdb_control_start_recovery(struct ctdb_context *ctdb, 
1013                                 struct ctdb_req_control *c,
1014                                 bool *async_reply)
1015 {
1016         int ret;
1017         struct recovery_callback_state *state;
1018
1019         DEBUG(DEBUG_NOTICE,(__location__ " startrecovery eventscript has been invoked\n"));
1020         gettimeofday(&ctdb->last_recovery_started, NULL);
1021
1022         state = talloc(ctdb, struct recovery_callback_state);
1023         CTDB_NO_MEMORY(ctdb, state);
1024
1025         state->c    = talloc_steal(state, c);
1026
1027         ctdb_disable_monitoring(ctdb);
1028
1029         ret = ctdb_event_script_callback(ctdb, state,
1030                                          ctdb_start_recovery_callback, 
1031                                          state, false,
1032                                          CTDB_EVENT_START_RECOVERY,
1033                                          "%s", "");
1034
1035         if (ret != 0) {
1036                 DEBUG(DEBUG_ERR,(__location__ " Failed to start recovery\n"));
1037                 talloc_free(state);
1038                 return -1;
1039         }
1040
1041         /* tell the control that we will be reply asynchronously */
1042         *async_reply = true;
1043         return 0;
1044 }
1045
1046 /*
1047  try to delete all these records as part of the vacuuming process
1048  and return the records we failed to delete
1049 */
1050 int32_t ctdb_control_try_delete_records(struct ctdb_context *ctdb, TDB_DATA indata, TDB_DATA *outdata)
1051 {
1052         struct ctdb_marshall_buffer *reply = (struct ctdb_marshall_buffer *)indata.dptr;
1053         struct ctdb_db_context *ctdb_db;
1054         int i;
1055         struct ctdb_rec_data *rec;
1056         struct ctdb_marshall_buffer *records;
1057
1058         if (indata.dsize < offsetof(struct ctdb_marshall_buffer, data)) {
1059                 DEBUG(DEBUG_ERR,(__location__ " invalid data in try_delete_records\n"));
1060                 return -1;
1061         }
1062
1063         ctdb_db = find_ctdb_db(ctdb, reply->db_id);
1064         if (!ctdb_db) {
1065                 DEBUG(DEBUG_ERR,(__location__ " Unknown db 0x%08x\n", reply->db_id));
1066                 return -1;
1067         }
1068
1069
1070         DEBUG(DEBUG_DEBUG,("starting try_delete_records of %u records for dbid 0x%x\n",
1071                  reply->count, reply->db_id));
1072
1073
1074         /* create a blob to send back the records we couldnt delete */  
1075         records = (struct ctdb_marshall_buffer *)
1076                         talloc_zero_size(outdata, 
1077                                     offsetof(struct ctdb_marshall_buffer, data));
1078         if (records == NULL) {
1079                 DEBUG(DEBUG_ERR,(__location__ " Out of memory\n"));
1080                 return -1;
1081         }
1082         records->db_id = ctdb_db->db_id;
1083
1084
1085         rec = (struct ctdb_rec_data *)&reply->data[0];
1086         for (i=0;i<reply->count;i++) {
1087                 TDB_DATA key, data;
1088
1089                 key.dptr = &rec->data[0];
1090                 key.dsize = rec->keylen;
1091                 data.dptr = &rec->data[key.dsize];
1092                 data.dsize = rec->datalen;
1093
1094                 if (data.dsize < sizeof(struct ctdb_ltdb_header)) {
1095                         DEBUG(DEBUG_CRIT,(__location__ " bad ltdb record in indata\n"));
1096                         return -1;
1097                 }
1098
1099                 /* If we cant delete the record we must add it to the reply
1100                    so the lmaster knows it may not purge this record
1101                 */
1102                 if (delete_tdb_record(ctdb, ctdb_db, rec) != 0) {
1103                         size_t old_size;
1104                         struct ctdb_ltdb_header *hdr;
1105
1106                         hdr = (struct ctdb_ltdb_header *)data.dptr;
1107                         data.dptr += sizeof(*hdr);
1108                         data.dsize -= sizeof(*hdr);
1109
1110                         DEBUG(DEBUG_INFO, (__location__ " Failed to vacuum delete record with hash 0x%08x\n", ctdb_hash(&key)));
1111
1112                         old_size = talloc_get_size(records);
1113                         records = talloc_realloc_size(outdata, records, old_size + rec->length);
1114                         if (records == NULL) {
1115                                 DEBUG(DEBUG_ERR,(__location__ " Failed to expand\n"));
1116                                 return -1;
1117                         }
1118                         records->count++;
1119                         memcpy(old_size+(uint8_t *)records, rec, rec->length);
1120                 } 
1121
1122                 rec = (struct ctdb_rec_data *)(rec->length + (uint8_t *)rec);
1123         }           
1124
1125
1126         outdata->dptr = (uint8_t *)records;
1127         outdata->dsize = talloc_get_size(records);
1128
1129         return 0;
1130 }
1131
1132 /*
1133   report capabilities
1134  */
1135 int32_t ctdb_control_get_capabilities(struct ctdb_context *ctdb, TDB_DATA *outdata)
1136 {
1137         uint32_t *capabilities = NULL;
1138
1139         capabilities = talloc(outdata, uint32_t);
1140         CTDB_NO_MEMORY(ctdb, capabilities);
1141         *capabilities = ctdb->capabilities;
1142
1143         outdata->dsize = sizeof(uint32_t);
1144         outdata->dptr = (uint8_t *)capabilities;
1145
1146         return 0;       
1147 }
1148
1149 static void ctdb_recd_ping_timeout(struct event_context *ev, struct timed_event *te, struct timeval t, void *p)
1150 {
1151         struct ctdb_context *ctdb = talloc_get_type(p, struct ctdb_context);
1152         uint32_t *count = talloc_get_type(ctdb->recd_ping_count, uint32_t);
1153
1154         DEBUG(DEBUG_ERR, ("Recovery daemon ping timeout. Count : %u\n", *count));
1155
1156         if (*count < ctdb->tunable.recd_ping_failcount) {
1157                 (*count)++;
1158                 event_add_timed(ctdb->ev, ctdb->recd_ping_count, 
1159                         timeval_current_ofs(ctdb->tunable.recd_ping_timeout, 0),
1160                         ctdb_recd_ping_timeout, ctdb);
1161                 return;
1162         }
1163
1164         DEBUG(DEBUG_ERR, ("Final timeout for recovery daemon ping. Shutting down ctdb daemon. (This can be caused if the cluster filesystem has hung)\n"));
1165
1166         ctdb_stop_recoverd(ctdb);
1167         ctdb_stop_keepalive(ctdb);
1168         ctdb_stop_monitoring(ctdb);
1169         ctdb_release_all_ips(ctdb);
1170         if (ctdb->methods != NULL) {
1171                 ctdb->methods->shutdown(ctdb);
1172         }
1173         ctdb_event_script(ctdb, CTDB_EVENT_SHUTDOWN);
1174         DEBUG(DEBUG_ERR, ("Recovery daemon ping timeout. Daemon has been shut down.\n"));
1175         exit(0);
1176 }
1177
1178 /* The recovery daemon will ping us at regular intervals.
1179    If we havent been pinged for a while we assume the recovery
1180    daemon is inoperable and we shut down.
1181 */
1182 int32_t ctdb_control_recd_ping(struct ctdb_context *ctdb)
1183 {
1184         talloc_free(ctdb->recd_ping_count);
1185
1186         ctdb->recd_ping_count = talloc_zero(ctdb, uint32_t);
1187         CTDB_NO_MEMORY(ctdb, ctdb->recd_ping_count);
1188
1189         if (ctdb->tunable.recd_ping_timeout != 0) {
1190                 event_add_timed(ctdb->ev, ctdb->recd_ping_count, 
1191                         timeval_current_ofs(ctdb->tunable.recd_ping_timeout, 0),
1192                         ctdb_recd_ping_timeout, ctdb);
1193         }
1194
1195         return 0;
1196 }
1197
1198
1199
1200 int32_t ctdb_control_set_recmaster(struct ctdb_context *ctdb, uint32_t opcode, TDB_DATA indata)
1201 {
1202         CHECK_CONTROL_DATA_SIZE(sizeof(uint32_t));
1203
1204         ctdb->recovery_master = ((uint32_t *)(&indata.dptr[0]))[0];
1205         return 0;
1206 }
1207
1208
1209 struct stop_node_callback_state {
1210         struct ctdb_req_control *c;
1211 };
1212
1213 /*
1214   called when the 'stopped' event script has finished
1215  */
1216 static void ctdb_stop_node_callback(struct ctdb_context *ctdb, int status, void *p)
1217 {
1218         struct stop_node_callback_state *state = talloc_get_type(p, struct stop_node_callback_state);
1219
1220         if (status != 0) {
1221                 DEBUG(DEBUG_ERR,(__location__ " stopped event script failed (status %d)\n", status));
1222                 ctdb->nodes[ctdb->pnn]->flags &= ~NODE_FLAGS_STOPPED;
1223                 if (status == -ETIME) {
1224                         ctdb_ban_self(ctdb);
1225                 }
1226         }
1227
1228         ctdb_request_control_reply(ctdb, state->c, NULL, status, NULL);
1229         talloc_free(state);
1230 }
1231
1232 int32_t ctdb_control_stop_node(struct ctdb_context *ctdb, struct ctdb_req_control *c, bool *async_reply)
1233 {
1234         int ret;
1235         struct stop_node_callback_state *state;
1236
1237         DEBUG(DEBUG_INFO,(__location__ " Stopping node\n"));
1238
1239         state = talloc(ctdb, struct stop_node_callback_state);
1240         CTDB_NO_MEMORY(ctdb, state);
1241
1242         state->c    = talloc_steal(state, c);
1243
1244         ctdb_disable_monitoring(ctdb);
1245
1246         ret = ctdb_event_script_callback(ctdb, state,
1247                                          ctdb_stop_node_callback, 
1248                                          state, false,
1249                                          CTDB_EVENT_STOPPED, "%s", "");
1250
1251         if (ret != 0) {
1252                 ctdb_enable_monitoring(ctdb);
1253
1254                 DEBUG(DEBUG_ERR,(__location__ " Failed to stop node\n"));
1255                 talloc_free(state);
1256                 return -1;
1257         }
1258
1259         ctdb->nodes[ctdb->pnn]->flags |= NODE_FLAGS_STOPPED;
1260
1261         *async_reply = true;
1262
1263         return 0;
1264 }
1265
1266 int32_t ctdb_control_continue_node(struct ctdb_context *ctdb)
1267 {
1268         DEBUG(DEBUG_INFO,(__location__ " Continue node\n"));
1269         ctdb->nodes[ctdb->pnn]->flags &= ~NODE_FLAGS_STOPPED;
1270
1271         return 0;
1272 }