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