vacuum: fix horrible indentation/whitespacing for ctdb_vacuum_event()
[garming/samba-autobuild/.git] / ctdb / server / ctdb_vacuum.c
1 /*
2    ctdb vacuuming events
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
20 #include "includes.h"
21 #include "lib/tevent/tevent.h"
22 #include "lib/tdb/include/tdb.h"
23 #include "system/network.h"
24 #include "system/filesys.h"
25 #include "system/dir.h"
26 #include "../include/ctdb_private.h"
27 #include "db_wrap.h"
28 #include "lib/util/dlinklist.h"
29 #include "lib/tevent/tevent.h"
30 #include "../include/ctdb_private.h"
31 #include "../common/rb_tree.h"
32
33 #define TIMELIMIT() timeval_current_ofs(10, 0)
34 #define TUNINGDBNAME "vactune.tdb"
35
36 enum vacuum_child_status { VACUUM_RUNNING, VACUUM_OK, VACUUM_ERROR, VACUUM_TIMEOUT};
37
38 struct ctdb_vacuum_child_context {
39         struct ctdb_vacuum_child_context *next, *prev;
40         struct ctdb_vacuum_handle *vacuum_handle;
41         /* fd child writes status to */
42         int fd[2];
43         pid_t child_pid;
44         enum vacuum_child_status status;
45         struct timeval start_time;
46 };
47
48 struct ctdb_vacuum_handle {
49         struct ctdb_db_context *ctdb_db;
50         struct ctdb_vacuum_child_context *child_ctx;
51         uint32_t fast_path_count;
52 };
53
54
55 /*  a list of records to possibly delete */
56 struct vacuum_data {
57         uint32_t vacuum_limit;
58         uint32_t repack_limit;
59         struct ctdb_context *ctdb;
60         struct ctdb_db_context *ctdb_db;
61         struct tdb_context *dest_db;
62         trbt_tree_t *delete_tree;
63         uint32_t delete_count;
64         struct ctdb_marshall_buffer **list;
65         struct timeval start;
66         bool traverse_error;
67         bool vacuum;
68         uint32_t total;
69         uint32_t vacuumed;
70         uint32_t copied;
71         uint32_t fast_added_to_vacuum_fetch_list;
72         uint32_t fast_added_to_delete_tree;
73         uint32_t fast_deleted;
74         uint32_t fast_skipped;
75         uint32_t fast_error;
76         uint32_t fast_total;
77         uint32_t full_added_to_vacuum_fetch_list;
78         uint32_t full_added_to_delete_tree;
79         uint32_t full_skipped;
80         uint32_t full_error;
81         uint32_t full_total;
82 };
83
84 /* tuning information stored for every db */
85 struct vacuum_tuning_data {
86         uint32_t last_num_repack;
87         uint32_t last_num_empty;
88         uint32_t last_interval;
89         uint32_t new_interval;
90         struct timeval last_start;
91         double   last_duration;
92 };
93
94 /* this structure contains the information for one record to be deleted */
95 struct delete_record_data {
96         struct ctdb_context *ctdb;
97         struct ctdb_db_context *ctdb_db;
98         struct ctdb_ltdb_header hdr;
99         TDB_DATA key;
100 };
101
102 struct delete_records_list {
103         struct ctdb_marshall_buffer *records;
104 };
105
106 /**
107  * Store key and header in a tree, indexed by the key hash.
108  */
109 static int insert_delete_record_data_into_tree(struct ctdb_context *ctdb,
110                                                struct ctdb_db_context *ctdb_db,
111                                                trbt_tree_t *tree,
112                                                const struct ctdb_ltdb_header *hdr,
113                                                TDB_DATA key)
114 {
115         struct delete_record_data *dd;
116         uint32_t hash;
117
118         dd = talloc_zero(tree, struct delete_record_data);
119         if (dd == NULL) {
120                 DEBUG(DEBUG_ERR,(__location__ " Out of memory\n"));
121                 return -1;
122         }
123
124         dd->ctdb      = ctdb;
125         dd->ctdb_db   = ctdb_db;
126         dd->key.dsize = key.dsize;
127         dd->key.dptr  = talloc_memdup(dd, key.dptr, key.dsize);
128         if (dd->key.dptr == NULL) {
129                 DEBUG(DEBUG_ERR,(__location__ " Out of memory\n"));
130                 return -1;
131         }
132
133         dd->hdr = *hdr;
134
135         hash = ctdb_hash(&key);
136
137         trbt_insert32(tree, hash, dd);
138
139         return 0;
140 }
141
142 static int add_record_to_delete_tree(struct vacuum_data *vdata, TDB_DATA key,
143                                      struct ctdb_ltdb_header *hdr)
144 {
145         struct ctdb_context *ctdb = vdata->ctdb;
146         struct ctdb_db_context *ctdb_db = vdata->ctdb_db;
147         uint32_t hash;
148         int ret;
149
150         hash = ctdb_hash(&key);
151
152         if (trbt_lookup32(vdata->delete_tree, hash)) {
153                 DEBUG(DEBUG_INFO, (__location__ " Hash collission when vacuuming, skipping this record.\n"));
154                 return 0;
155         }
156
157         ret = insert_delete_record_data_into_tree(ctdb, ctdb_db,
158                                                   vdata->delete_tree,
159                                                   hdr, key);
160         if (ret != 0) {
161                 return -1;
162         }
163
164         vdata->delete_count++;
165
166         return 0;
167 }
168
169 /**
170  * Add a record to the list of records to be sent
171  * to their lmaster with VACUUM_FETCH.
172  */
173 static int add_record_to_vacuum_fetch_list(struct vacuum_data *vdata,
174                                            TDB_DATA key)
175 {
176         struct ctdb_context *ctdb = vdata->ctdb;
177         struct ctdb_rec_data *rec;
178         uint32_t lmaster;
179         size_t old_size;
180
181         lmaster = ctdb_lmaster(ctdb, &key);
182
183         rec = ctdb_marshall_record(vdata->list[lmaster], ctdb->pnn, key, NULL, tdb_null);
184         if (rec == NULL) {
185                 DEBUG(DEBUG_ERR,(__location__ " Out of memory\n"));
186                 vdata->traverse_error = true;
187                 return -1;
188         }
189
190         old_size = talloc_get_size(vdata->list[lmaster]);
191         vdata->list[lmaster] = talloc_realloc_size(NULL, vdata->list[lmaster],
192                                                    old_size + rec->length);
193         if (vdata->list[lmaster] == NULL) {
194                 DEBUG(DEBUG_ERR,(__location__ " Failed to expand\n"));
195                 vdata->traverse_error = true;
196                 return -1;
197         }
198
199         vdata->list[lmaster]->count++;
200         memcpy(old_size+(uint8_t *)vdata->list[lmaster], rec, rec->length);
201         talloc_free(rec);
202
203         vdata->total++;
204
205         return 0;
206 }
207
208
209 static void ctdb_vacuum_event(struct event_context *ev, struct timed_event *te,
210                               struct timeval t, void *private_data);
211
212
213 /*
214  * traverse function for gathering the records that can be deleted
215  */
216 static int vacuum_traverse(struct tdb_context *tdb, TDB_DATA key, TDB_DATA data, void *private)
217 {
218         struct vacuum_data *vdata = talloc_get_type(private, struct vacuum_data);
219         struct ctdb_context *ctdb = vdata->ctdb;
220         uint32_t lmaster;
221         struct ctdb_ltdb_header *hdr;
222         int res = 0;
223
224         vdata->full_total++;
225
226         lmaster = ctdb_lmaster(ctdb, &key);
227         if (lmaster >= ctdb->num_nodes) {
228                 vdata->full_error++;
229                 DEBUG(DEBUG_CRIT, (__location__
230                                    " lmaster[%u] >= ctdb->num_nodes[%u] for key"
231                                    " with hash[%u]!\n",
232                                    (unsigned)lmaster,
233                                    (unsigned)ctdb->num_nodes,
234                                    (unsigned)ctdb_hash(&key)));
235                 return -1;
236         }
237
238         if (data.dsize != sizeof(struct ctdb_ltdb_header)) {
239                 /* it is not a deleted record */
240                 vdata->full_skipped++;
241                 return 0;
242         }
243
244         hdr = (struct ctdb_ltdb_header *)data.dptr;
245
246         if (hdr->dmaster != ctdb->pnn) {
247                 vdata->full_skipped++;
248                 return 0;
249         }
250
251         if (lmaster == ctdb->pnn) {
252                 /*
253                  * We are both lmaster and dmaster, and the record * is empty.
254                  * So we should be able to delete it.
255                  */
256                 res = add_record_to_delete_tree(vdata, key, hdr);
257                 if (res != 0) {
258                         vdata->full_error++;
259                 } else {
260                         vdata->full_added_to_delete_tree++;
261                 }
262         } else {
263                 /*
264                  * We are not lmaster.
265                  * Add the record to the blob ready to send to the nodes.
266                  */
267                 res = add_record_to_vacuum_fetch_list(vdata, key);
268                 if (res != 0) {
269                         vdata->full_error++;
270                 } else {
271                         vdata->full_added_to_vacuum_fetch_list++;
272                 }
273         }
274
275         return res;
276 }
277
278 /*
279  * traverse the tree of records to delete and marshall them into
280  * a blob
281  */
282 static int delete_traverse(void *param, void *data)
283 {
284         struct delete_record_data *dd = talloc_get_type(data, struct delete_record_data);
285         struct delete_records_list *recs = talloc_get_type(param, struct delete_records_list);
286         struct ctdb_rec_data *rec;
287         size_t old_size;
288
289         rec = ctdb_marshall_record(dd, recs->records->db_id, dd->key, &dd->hdr, tdb_null);
290         if (rec == NULL) {
291                 DEBUG(DEBUG_ERR, (__location__ " failed to marshall record\n"));
292                 return 0;
293         }
294
295         old_size = talloc_get_size(recs->records);
296         recs->records = talloc_realloc_size(NULL, recs->records, old_size + rec->length);
297         if (recs->records == NULL) {
298                 DEBUG(DEBUG_ERR,(__location__ " Failed to expand\n"));
299                 return 0;
300         }
301         recs->records->count++;
302         memcpy(old_size+(uint8_t *)(recs->records), rec, rec->length);
303         return 0;
304 }
305
306 /**
307  * traverse function for the traversal of the delete_queue,
308  * the fast-path vacuuming list.
309  *
310  *  - If the record has been migrated off the node
311  *    or has been revived (filled with data) on the node,
312  *    then skip the record.
313  *
314  *  - If the current node is the record's lmaster and it is
315  *    a record that has never been migrated with data, then
316  *    delete the record from the local tdb.
317  *
318  *  - If the current node is the record's lmaster and it has
319  *    been migrated with data, then schedule it for the normal
320  *    vacuuming procedure (i.e. add it to the delete_list).
321  *
322  *  - If the current node is NOT the record's lmaster then
323  *    add it to the list of records that are to be sent to
324  *    the lmaster with the VACUUM_FETCH message.
325  */
326 static int delete_queue_traverse(void *param, void *data)
327 {
328         struct delete_record_data *dd =
329                 talloc_get_type(data, struct delete_record_data);
330         struct vacuum_data *vdata = talloc_get_type(param, struct vacuum_data);
331         struct ctdb_db_context *ctdb_db = dd->ctdb_db;
332         struct ctdb_context *ctdb = ctdb_db->ctdb; /* or dd->ctdb ??? */
333         int res;
334         struct ctdb_ltdb_header *header;
335         TDB_DATA tdb_data;
336         uint32_t lmaster;
337
338         vdata->fast_total++;
339
340         res = tdb_chainlock(ctdb_db->ltdb->tdb, dd->key);
341         if (res != 0) {
342                 DEBUG(DEBUG_ERR, (__location__ " Error getting chainlock.\n"));
343                 vdata->fast_error++;
344                 return 0;
345         }
346
347         tdb_data = tdb_fetch(ctdb_db->ltdb->tdb, dd->key);
348         if (tdb_data.dsize < sizeof(struct ctdb_ltdb_header)) {
349                 /* Does not exist or not a ctdb record. Skip. */
350                 goto skipped;
351         }
352
353         if (tdb_data.dsize > sizeof(struct ctdb_ltdb_header)) {
354                 /* The record has been recycled (filled with data). Skip. */
355                 goto skipped;
356         }
357
358         header = (struct ctdb_ltdb_header *)tdb_data.dptr;
359
360         if (header->dmaster != ctdb->pnn) {
361                 /* The record has been migrated off the node. Skip. */
362                 goto skipped;
363         }
364
365
366         if (header->rsn != dd->hdr.rsn) {
367                 /*
368                  * The record has been migrated off the node and back again.
369                  * But not requeued for deletion. Skip it.
370                  */
371                 goto skipped;
372         }
373
374         /*
375          * We are dmaster, and the record has no data, and it has
376          * not been migrated after it has been queued for deletion.
377          *
378          * At this stage, the record could still have been revived locally
379          * and last been written with empty data. This can only be
380          * fixed with the addition of an active or delete flag. (TODO)
381          */
382
383         lmaster = ctdb_lmaster(ctdb_db->ctdb, &dd->key);
384
385         if (lmaster != ctdb->pnn) {
386                 res = add_record_to_vacuum_fetch_list(vdata, dd->key);
387
388                 if (res != 0) {
389                         DEBUG(DEBUG_ERR,
390                               (__location__ " Error adding record to list "
391                                "of records to send to lmaster.\n"));
392                         vdata->fast_error++;
393                 } else {
394                         vdata->fast_added_to_vacuum_fetch_list++;
395                 }
396                 goto done;
397         }
398
399         /* use header->flags or dd->hdr.flags ?? */
400         if (dd->hdr.flags & CTDB_REC_FLAG_MIGRATED_WITH_DATA) {
401                 res = add_record_to_delete_tree(vdata, dd->key, &dd->hdr);
402
403                 if (res != 0) {
404                         DEBUG(DEBUG_ERR,
405                               (__location__ " Error adding record to list "
406                                "of records for deletion on lmaster.\n"));
407                         vdata->fast_error++;
408                 } else {
409                         vdata->fast_added_to_delete_tree++;
410                 }
411         } else {
412                 res = tdb_delete(ctdb_db->ltdb->tdb, dd->key);
413
414                 if (res != 0) {
415                         DEBUG(DEBUG_ERR,
416                               (__location__ " Error deleting record from local "
417                                "data base.\n"));
418                         vdata->fast_error++;
419                 } else {
420                         vdata->fast_deleted++;
421                 }
422         }
423
424         goto done;
425
426 skipped:
427         vdata->fast_skipped++;
428
429 done:
430         if (tdb_data.dptr != NULL) {
431                 free(tdb_data.dptr);
432         }
433         tdb_chainunlock(ctdb_db->ltdb->tdb, dd->key);
434
435         return 0;
436 }
437
438 /* 
439  * read-only traverse the database in order to find
440  * records that can be deleted and try to delete these
441  * records on the other nodes
442  * this executes in the child context
443  */
444 static int ctdb_vacuum_db(struct ctdb_db_context *ctdb_db,
445                           struct vacuum_data *vdata,
446                           bool full_vacuum_run)
447 {
448         struct ctdb_context *ctdb = ctdb_db->ctdb;
449         const char *name = ctdb_db->db_name;
450         int ret, i, pnn;
451
452         DEBUG(DEBUG_INFO, (__location__ " Entering %s vacuum run for db "
453                            "%s db_id[0x%08x]\n",
454                            full_vacuum_run ? "full" : "fast",
455                            ctdb_db->db_name, ctdb_db->db_id));
456
457         ret = ctdb_ctrl_getvnnmap(ctdb, TIMELIMIT(), CTDB_CURRENT_NODE, ctdb, &ctdb->vnn_map);
458         if (ret != 0) {
459                 DEBUG(DEBUG_ERR, ("Unable to get vnnmap from local node\n"));
460                 return ret;
461         }
462
463         pnn = ctdb_ctrl_getpnn(ctdb, TIMELIMIT(), CTDB_CURRENT_NODE);
464         if (pnn == -1) {
465                 DEBUG(DEBUG_ERR, ("Unable to get pnn from local node\n"));
466                 return -1;
467         }
468
469         ctdb->pnn = pnn;
470
471         vdata->fast_added_to_delete_tree = 0;
472         vdata->fast_added_to_vacuum_fetch_list = 0;
473         vdata->fast_deleted = 0;
474         vdata->fast_skipped = 0;
475         vdata->fast_error = 0;
476         vdata->fast_total = 0;
477         vdata->full_added_to_delete_tree = 0;
478         vdata->full_added_to_vacuum_fetch_list = 0;
479         vdata->full_skipped = 0;
480         vdata->full_error = 0;
481         vdata->full_total = 0;
482
483         /* the list needs to be of length num_nodes */
484         vdata->list = talloc_array(vdata, struct ctdb_marshall_buffer *, ctdb->num_nodes);
485         if (vdata->list == NULL) {
486                 DEBUG(DEBUG_ERR,(__location__ " Out of memory\n"));
487                 return -1;
488         }
489         for (i = 0; i < ctdb->num_nodes; i++) {
490                 vdata->list[i] = (struct ctdb_marshall_buffer *)
491                         talloc_zero_size(vdata->list,
492                                          offsetof(struct ctdb_marshall_buffer, data));
493                 if (vdata->list[i] == NULL) {
494                         DEBUG(DEBUG_ERR,(__location__ " Out of memory\n"));
495                         return -1;
496                 }
497                 vdata->list[i]->db_id = ctdb_db->db_id;
498         }
499
500         /*
501          * Traverse the delete_queue.
502          * This builds the same lists as the db traverse.
503          */
504         trbt_traversearray32(ctdb_db->delete_queue, 1, delete_queue_traverse, vdata);
505
506         if (vdata->fast_total > 0) {
507                 DEBUG(DEBUG_INFO,
508                       (__location__
509                        " fast vacuuming delete_queue traverse statistics: "
510                        "db[%s] "
511                        "total[%u] "
512                        "del[%u] "
513                        "skp[%u] "
514                        "err[%u] "
515                        "adt[%u] "
516                        "avf[%u]\n",
517                        ctdb_db->db_name,
518                        (unsigned)vdata->fast_total,
519                        (unsigned)vdata->fast_deleted,
520                        (unsigned)vdata->fast_skipped,
521                        (unsigned)vdata->fast_error,
522                        (unsigned)vdata->fast_added_to_delete_tree,
523                        (unsigned)vdata->fast_added_to_vacuum_fetch_list));
524         }
525
526         /*
527          * read-only traverse of the database, looking for records that
528          * might be able to be vacuumed.
529          *
530          * This is not done each time but only every tunable
531          * VacuumFastPathCount times.
532          */
533         if (full_vacuum_run) {
534                 ret = tdb_traverse_read(ctdb_db->ltdb->tdb, vacuum_traverse, vdata);
535                 if (ret == -1 || vdata->traverse_error) {
536                         DEBUG(DEBUG_ERR,(__location__ " Traverse error in vacuuming '%s'\n", name));
537                         return -1;
538                 }
539                 if (vdata->full_total > 0) {
540                         DEBUG(DEBUG_INFO,
541                               (__location__
542                                " full vacuuming db traverse statistics: "
543                                "db[%s] "
544                                "total[%u] "
545                                "skp[%u] "
546                                "err[%u] "
547                                "adt[%u] "
548                                "avf[%u]\n",
549                                ctdb_db->db_name,
550                                (unsigned)vdata->full_total,
551                                (unsigned)vdata->full_skipped,
552                                (unsigned)vdata->full_error,
553                                (unsigned)vdata->full_added_to_delete_tree,
554                                (unsigned)vdata->full_added_to_vacuum_fetch_list));
555                 }
556         }
557
558         /*
559          * For records where we are not the lmaster,
560          * tell the lmaster to fetch the record.
561          */
562         for (i = 0; i < ctdb->num_nodes; i++) {
563                 TDB_DATA data;
564
565                 if (ctdb->nodes[i]->pnn == ctdb->pnn) {
566                         continue;
567                 }
568
569                 if (vdata->list[i]->count == 0) {
570                         continue;
571                 }
572
573                 DEBUG(DEBUG_INFO, ("Found %u records for lmaster %u in '%s'\n",
574                                    vdata->list[i]->count, ctdb->nodes[i]->pnn,
575                                    name));
576
577                 data.dsize = talloc_get_size(vdata->list[i]);
578                 data.dptr  = (void *)vdata->list[i];
579                 if (ctdb_client_send_message(ctdb, ctdb->nodes[i]->pnn, CTDB_SRVID_VACUUM_FETCH, data) != 0) {
580                         DEBUG(DEBUG_ERR, (__location__ " Failed to send vacuum "
581                                           "fetch message to %u\n",
582                                           ctdb->nodes[i]->pnn));
583                         return -1;
584                 }
585         }       
586
587         /* Process all records we can delete (if any) */
588         if (vdata->delete_count > 0) {
589                 struct delete_records_list *recs;
590                 TDB_DATA indata, outdata;
591                 int32_t res;
592                 struct ctdb_node_map *nodemap;
593                 uint32_t *active_nodes;
594                 int num_active_nodes;
595
596                 recs = talloc_zero(vdata, struct delete_records_list);
597                 if (recs == NULL) {
598                         DEBUG(DEBUG_ERR,(__location__ " Out of memory\n"));
599                         return -1;
600                 }
601                 recs->records = (struct ctdb_marshall_buffer *)
602                         talloc_zero_size(vdata, 
603                                     offsetof(struct ctdb_marshall_buffer, data));
604                 if (recs->records == NULL) {
605                         DEBUG(DEBUG_ERR,(__location__ " Out of memory\n"));
606                         return -1;
607                 }
608                 recs->records->db_id = ctdb_db->db_id;
609
610                 /* 
611                  * traverse the tree of all records we want to delete and
612                  * create a blob we can send to the other nodes.
613                  */
614                 trbt_traversearray32(vdata->delete_tree, 1, delete_traverse, recs);
615
616                 indata.dsize = talloc_get_size(recs->records);
617                 indata.dptr  = (void *)recs->records;
618
619                 /* 
620                  * now tell all the active nodes to delete all these records
621                  * (if possible)
622                  */
623
624                 ret = ctdb_ctrl_getnodemap(ctdb, TIMELIMIT(),
625                                            CTDB_CURRENT_NODE,
626                                            recs, /* talloc context */
627                                            &nodemap);
628                 if (ret != 0) {
629                         DEBUG(DEBUG_ERR,(__location__ " unable to get node map\n"));
630                         return -1;
631                 }
632
633                 active_nodes = list_of_active_nodes(ctdb, nodemap,
634                                                     nodemap, /* talloc context */
635                                                     false /* include self */);
636                 /* yuck! ;-) */
637                 num_active_nodes = talloc_get_size(active_nodes)/sizeof(*active_nodes);
638
639                 for (i = 0; i < num_active_nodes; i++) {
640                         struct ctdb_marshall_buffer *records;
641                         struct ctdb_rec_data *rec;
642
643                         ret = ctdb_control(ctdb, active_nodes[i], 0,
644                                         CTDB_CONTROL_TRY_DELETE_RECORDS, 0,
645                                         indata, recs, &outdata, &res,
646                                         NULL, NULL);
647                         if (ret != 0 || res != 0) {
648                                 DEBUG(DEBUG_ERR, ("Failed to delete records on "
649                                                   "node %u: ret[%d] res[%d]\n",
650                                                   active_nodes[i], ret, res));
651                                 return -1;
652                         }
653
654                         /* 
655                          * outdata countains the list of records coming back
656                          * from the node which the node could not delete
657                          */
658                         records = (struct ctdb_marshall_buffer *)outdata.dptr;
659                         rec = (struct ctdb_rec_data *)&records->data[0];
660                         while (records->count-- > 1) {
661                                 TDB_DATA reckey, recdata;
662                                 struct ctdb_ltdb_header *rechdr;
663
664                                 reckey.dptr = &rec->data[0];
665                                 reckey.dsize = rec->keylen;
666                                 recdata.dptr = &rec->data[reckey.dsize];
667                                 recdata.dsize = rec->datalen;
668
669                                 if (recdata.dsize < sizeof(struct ctdb_ltdb_header)) {
670                                         DEBUG(DEBUG_CRIT,(__location__ " bad ltdb record\n"));
671                                         return -1;
672                                 }
673                                 rechdr = (struct ctdb_ltdb_header *)recdata.dptr;
674                                 recdata.dptr += sizeof(*rechdr);
675                                 recdata.dsize -= sizeof(*rechdr);
676
677                                 /* 
678                                  * that other node couldnt delete the record
679                                  * so we should delete it and thereby remove it from the tree
680                                  */
681                                 talloc_free(trbt_lookup32(vdata->delete_tree, ctdb_hash(&reckey)));
682
683                                 rec = (struct ctdb_rec_data *)(rec->length + (uint8_t *)rec);
684                         }           
685                 }
686
687                 /* free nodemap and active_nodes */
688                 talloc_free(nodemap);
689
690                 /* 
691                  * The only records remaining in the tree would be those
692                  * records where all other nodes could successfully
693                  * delete them, so we can safely delete them on the
694                  * lmaster as well. Deletion implictely happens while
695                  * we repack the database. The repack algorithm revisits 
696                  * the tree in order to find the records that don't need
697                  * to be copied / repacked.
698                  */
699         }
700
701         /* this ensures we run our event queue */
702         ctdb_ctrl_getpnn(ctdb, TIMELIMIT(), CTDB_CURRENT_NODE);
703
704         return 0;
705 }
706
707
708 /*
709  * traverse function for repacking
710  */
711 static int repack_traverse(struct tdb_context *tdb, TDB_DATA key, TDB_DATA data, void *private)
712 {
713         struct vacuum_data *vdata = (struct vacuum_data *)private;
714
715         if (vdata->vacuum) {
716                 uint32_t hash = ctdb_hash(&key);
717                 struct delete_record_data *kd;
718                 /*
719                  * check if we can ignore this record because it's in the delete_tree
720                  */
721                 kd = (struct delete_record_data *)trbt_lookup32(vdata->delete_tree, hash);
722                 /*
723                  * there might be hash collisions so we have to compare the keys here to be sure
724                  */
725                 if (kd && kd->key.dsize == key.dsize && memcmp(kd->key.dptr, key.dptr, key.dsize) == 0) {
726                         struct ctdb_ltdb_header *hdr = (struct ctdb_ltdb_header *)data.dptr;
727                         /*
728                          * we have to check if the record hasn't changed in the meantime in order to
729                          * savely remove it from the database
730                          */
731                         if (data.dsize == sizeof(struct ctdb_ltdb_header) &&
732                                 hdr->dmaster == kd->ctdb->pnn &&
733                                 ctdb_lmaster(kd->ctdb, &(kd->key)) == kd->ctdb->pnn &&
734                                 kd->hdr.rsn == hdr->rsn) {
735                                 vdata->vacuumed++;
736                                 return 0;
737                         }
738                 }
739         }
740         if (tdb_store(vdata->dest_db, key, data, TDB_INSERT) != 0) {
741                 vdata->traverse_error = true;
742                 return -1;
743         }
744         vdata->copied++;
745         return 0;
746 }
747
748 /*
749  * repack a tdb
750  */
751 static int ctdb_repack_tdb(struct tdb_context *tdb, TALLOC_CTX *mem_ctx, struct vacuum_data *vdata)
752 {
753         struct tdb_context *tmp_db;
754
755         if (tdb_transaction_start(tdb) != 0) {
756                 DEBUG(DEBUG_ERR,(__location__ " Failed to start transaction\n"));
757                 return -1;
758         }
759
760         tmp_db = tdb_open("tmpdb", tdb_hash_size(tdb),
761                           TDB_INTERNAL|TDB_DISALLOW_NESTING,
762                           O_RDWR|O_CREAT, 0);
763         if (tmp_db == NULL) {
764                 DEBUG(DEBUG_ERR,(__location__ " Failed to create tmp_db\n"));
765                 tdb_transaction_cancel(tdb);
766                 return -1;
767         }
768
769         vdata->traverse_error = false;
770         vdata->dest_db = tmp_db;
771         vdata->vacuum = true;
772         vdata->vacuumed = 0;
773         vdata->copied = 0;
774
775         /*
776          * repack and vacuum on-the-fly by not writing the records that are
777          * no longer needed
778          */
779         if (tdb_traverse_read(tdb, repack_traverse, vdata) == -1) {
780                 DEBUG(DEBUG_ERR,(__location__ " Failed to traverse copying out\n"));
781                 tdb_transaction_cancel(tdb);
782                 tdb_close(tmp_db);
783                 return -1;              
784         }
785
786         DEBUG(DEBUG_INFO,(__location__ " %u records vacuumed\n", vdata->vacuumed));
787         
788         if (vdata->traverse_error) {
789                 DEBUG(DEBUG_ERR,(__location__ " Error during traversal\n"));
790                 tdb_transaction_cancel(tdb);
791                 tdb_close(tmp_db);
792                 return -1;
793         }
794
795         if (tdb_wipe_all(tdb) != 0) {
796                 DEBUG(DEBUG_ERR,(__location__ " Failed to wipe database\n"));
797                 tdb_transaction_cancel(tdb);
798                 tdb_close(tmp_db);
799                 return -1;
800         }
801
802         vdata->traverse_error = false;
803         vdata->dest_db = tdb;
804         vdata->vacuum = false;
805         vdata->copied = 0;
806
807         if (tdb_traverse_read(tmp_db, repack_traverse, vdata) == -1) {
808                 DEBUG(DEBUG_ERR,(__location__ " Failed to traverse copying back\n"));
809                 tdb_transaction_cancel(tdb);
810                 tdb_close(tmp_db);
811                 return -1;              
812         }
813
814         if (vdata->traverse_error) {
815                 DEBUG(DEBUG_ERR,(__location__ " Error during second traversal\n"));
816                 tdb_transaction_cancel(tdb);
817                 tdb_close(tmp_db);
818                 return -1;
819         }
820
821         tdb_close(tmp_db);
822
823
824         if (tdb_transaction_commit(tdb) != 0) {
825                 DEBUG(DEBUG_ERR,(__location__ " Failed to commit\n"));
826                 return -1;
827         }
828         DEBUG(DEBUG_INFO,(__location__ " %u records copied\n", vdata->copied));
829
830         return 0;
831 }
832
833 static int update_tuning_db(struct ctdb_db_context *ctdb_db, struct vacuum_data *vdata, uint32_t freelist)
834 {
835         TALLOC_CTX *tmp_ctx = talloc_new(NULL);
836         TDB_CONTEXT *tune_tdb;
837         TDB_DATA key, value;
838         struct vacuum_tuning_data tdata;
839         struct vacuum_tuning_data *tptr;
840         char *vac_dbname;
841         int flags;
842
843         vac_dbname = talloc_asprintf(tmp_ctx, "%s/%s.%u",
844                                      ctdb_db->ctdb->db_directory_state,
845                                      TUNINGDBNAME, ctdb_db->ctdb->pnn);
846         if (vac_dbname == NULL) {
847                 DEBUG(DEBUG_CRIT,(__location__ " Out of memory error while allocating '%s'\n", vac_dbname));
848                 talloc_free(tmp_ctx);
849                 return -1;
850         }
851
852         flags  = ctdb_db->ctdb->valgrinding ? TDB_NOMMAP : 0;
853         flags |= TDB_DISALLOW_NESTING;
854         tune_tdb = tdb_open(vac_dbname, 0,
855                             flags,
856                             O_RDWR|O_CREAT, 0600);
857         if (tune_tdb == NULL) {
858                 DEBUG(DEBUG_ERR,(__location__ " Failed to create/open %s\n", TUNINGDBNAME));
859                 talloc_free(tmp_ctx);
860                 return -1;
861         }
862         
863         if (tdb_transaction_start(tune_tdb) != 0) {
864                 DEBUG(DEBUG_ERR,(__location__ " Failed to start transaction\n"));
865                 tdb_close(tune_tdb);
866                 return -1;
867         }
868         key.dptr = discard_const(ctdb_db->db_name);
869         key.dsize = strlen(ctdb_db->db_name);
870         value = tdb_fetch(tune_tdb, key);
871
872         if (value.dptr != NULL && value.dsize == sizeof(struct vacuum_tuning_data)) {
873                 tptr = (struct vacuum_tuning_data *)value.dptr;
874                 tdata = *tptr;
875
876                 /*
877                  * re-calc new vacuum interval:
878                  * in case no limit was reached we continuously increase the interval
879                  * until vacuum_max_interval is reached
880                  * in case a limit was reached we divide the current interval by 2
881                  * unless vacuum_min_interval is reached
882                  */
883                 if (freelist < vdata->repack_limit &&
884                     vdata->delete_count < vdata->vacuum_limit) {
885                         if (tdata.last_interval < ctdb_db->ctdb->tunable.vacuum_max_interval) {
886                                 tdata.new_interval = tdata.last_interval * 110 / 100;
887                                 DEBUG(DEBUG_INFO,("Increasing vacuum interval %u -> %u for %s\n", 
888                                         tdata.last_interval, tdata.new_interval, ctdb_db->db_name));
889                         }
890                 } else {
891                         tdata.new_interval = tdata.last_interval / 2;
892                         if (tdata.new_interval < ctdb_db->ctdb->tunable.vacuum_min_interval ||
893                                 tdata.new_interval > ctdb_db->ctdb->tunable.vacuum_max_interval) {
894                                 tdata.new_interval = ctdb_db->ctdb->tunable.vacuum_min_interval;
895                         }               
896                         DEBUG(DEBUG_INFO,("Decreasing vacuum interval %u -> %u for %s\n", 
897                                          tdata.last_interval, tdata.new_interval, ctdb_db->db_name));
898                 }
899                 tdata.last_interval = tdata.new_interval;
900         } else {
901                 DEBUG(DEBUG_DEBUG,(__location__ " Cannot find tunedb record for %s. Using default interval\n", ctdb_db->db_name));
902                 tdata.last_num_repack = freelist;
903                 tdata.last_num_empty = vdata->delete_count;
904                 tdata.last_interval = ctdb_db->ctdb->tunable.vacuum_default_interval;
905         }
906
907         if (value.dptr != NULL) {
908                 free(value.dptr);
909         }
910
911         tdata.last_start = vdata->start;
912         tdata.last_duration = timeval_elapsed(&vdata->start);
913
914         value.dptr = (unsigned char *)&tdata;
915         value.dsize = sizeof(tdata);
916
917         if (tdb_store(tune_tdb, key, value, 0) != 0) {
918                 DEBUG(DEBUG_ERR,(__location__ " Unable to store tundb record for %s\n", ctdb_db->db_name));
919                 tdb_transaction_cancel(tune_tdb);
920                 tdb_close(tune_tdb);
921                 talloc_free(tmp_ctx);
922                 return -1;
923         }
924         tdb_transaction_commit(tune_tdb);
925         tdb_close(tune_tdb);
926         talloc_free(tmp_ctx);
927
928         return 0;
929 }
930
931 /*
932  * repack and vaccum a db
933  * called from the child context
934  */
935 static int ctdb_vacuum_and_repack_db(struct ctdb_db_context *ctdb_db,
936                                      TALLOC_CTX *mem_ctx,
937                                      bool full_vacuum_run)
938 {
939         uint32_t repack_limit = ctdb_db->ctdb->tunable.repack_limit;
940         uint32_t vacuum_limit = ctdb_db->ctdb->tunable.vacuum_limit;
941         const char *name = ctdb_db->db_name;
942         int freelist_size;
943         struct vacuum_data *vdata;
944
945         freelist_size = tdb_freelist_size(ctdb_db->ltdb->tdb);
946         if (freelist_size == -1) {
947                 DEBUG(DEBUG_ERR,(__location__ " Failed to get freelist size for '%s'\n", name));
948                 return -1;
949         }
950
951         vdata = talloc_zero(mem_ctx, struct vacuum_data);
952         if (vdata == NULL) {
953                 DEBUG(DEBUG_ERR,(__location__ " Out of memory\n"));
954                 return -1;
955         }
956
957         vdata->ctdb = ctdb_db->ctdb;
958         vdata->vacuum_limit = vacuum_limit;
959         vdata->repack_limit = repack_limit;
960         vdata->delete_tree = trbt_create(vdata, 0);
961         vdata->ctdb_db = ctdb_db;
962         if (vdata->delete_tree == NULL) {
963                 DEBUG(DEBUG_ERR,(__location__ " Out of memory\n"));
964                 talloc_free(vdata);
965                 return -1;
966         }
967
968         vdata->start = timeval_current();
969  
970         /*
971          * gather all records that can be deleted in vdata
972          */
973         if (ctdb_vacuum_db(ctdb_db, vdata, full_vacuum_run) != 0) {
974                 DEBUG(DEBUG_ERR,(__location__ " Failed to vacuum '%s'\n", name));
975         }
976
977         /*
978          * decide if a repack is necessary
979          */
980         if (freelist_size < repack_limit && vdata->delete_count < vacuum_limit)
981         {
982                 update_tuning_db(ctdb_db, vdata, freelist_size);
983                 talloc_free(vdata);
984                 return 0;
985         }
986
987         DEBUG(DEBUG_INFO,("Repacking %s with %u freelist entries and %u records to delete\n", 
988                         name, freelist_size, vdata->delete_count));
989
990         /*
991          * repack and implicitely get rid of the records we can delete
992          */
993         if (ctdb_repack_tdb(ctdb_db->ltdb->tdb, mem_ctx, vdata) != 0) {
994                 DEBUG(DEBUG_ERR,(__location__ " Failed to repack '%s'\n", name));
995                 update_tuning_db(ctdb_db, vdata, freelist_size);
996                 talloc_free(vdata);
997                 return -1;
998         }
999         update_tuning_db(ctdb_db, vdata, freelist_size);
1000         talloc_free(vdata);
1001
1002         return 0;
1003 }
1004
1005 static int get_vacuum_interval(struct ctdb_db_context *ctdb_db)
1006 {
1007         TALLOC_CTX *tmp_ctx = talloc_new(NULL);
1008         TDB_CONTEXT *tdb;
1009         TDB_DATA key, value;
1010         char *vac_dbname;
1011         uint interval = ctdb_db->ctdb->tunable.vacuum_default_interval;
1012         struct ctdb_context *ctdb = ctdb_db->ctdb;
1013         int flags;
1014
1015         vac_dbname = talloc_asprintf(tmp_ctx, "%s/%s.%u", ctdb->db_directory, TUNINGDBNAME, ctdb->pnn);
1016         if (vac_dbname == NULL) {
1017                 DEBUG(DEBUG_CRIT,(__location__ " Out of memory error while allocating '%s'\n", vac_dbname));
1018                 talloc_free(tmp_ctx);
1019                 return interval;
1020         }
1021
1022         flags  = ctdb_db->ctdb->valgrinding ? TDB_NOMMAP : 0;
1023         flags |= TDB_DISALLOW_NESTING;
1024         tdb = tdb_open(vac_dbname, 0,
1025                        flags,
1026                        O_RDWR|O_CREAT, 0600);
1027         if (!tdb) {
1028                 DEBUG(DEBUG_ERR,("Unable to open/create database %s using default interval. Errno : %s (%d)\n", vac_dbname, strerror(errno), errno));
1029                 talloc_free(tmp_ctx);
1030                 return interval;
1031         }
1032
1033         key.dptr = discard_const(ctdb_db->db_name);
1034         key.dsize = strlen(ctdb_db->db_name);
1035
1036         value = tdb_fetch(tdb, key);
1037
1038         if (value.dptr != NULL) {
1039                 if (value.dsize == sizeof(struct vacuum_tuning_data)) {
1040                         struct vacuum_tuning_data *tptr = (struct vacuum_tuning_data *)value.dptr;
1041
1042                         interval = tptr->new_interval;
1043
1044                         if (interval < ctdb->tunable.vacuum_min_interval) {
1045                                 interval = ctdb->tunable.vacuum_min_interval;
1046                         } 
1047                         if (interval > ctdb->tunable.vacuum_max_interval) {
1048                                 interval = ctdb->tunable.vacuum_max_interval;
1049                         }
1050                 }
1051                 free(value.dptr);
1052         }
1053         tdb_close(tdb);
1054
1055         talloc_free(tmp_ctx);
1056
1057         return interval;
1058 }
1059
1060 static int vacuum_child_destructor(struct ctdb_vacuum_child_context *child_ctx)
1061 {
1062         double l = timeval_elapsed(&child_ctx->start_time);
1063         struct ctdb_db_context *ctdb_db = child_ctx->vacuum_handle->ctdb_db;
1064         struct ctdb_context *ctdb = ctdb_db->ctdb;
1065
1066         DEBUG(DEBUG_INFO,("Vacuuming took %.3f seconds for database %s\n", l, ctdb_db->db_name));
1067
1068         if (child_ctx->child_pid != -1) {
1069                 kill(child_ctx->child_pid, SIGKILL);
1070         } else {
1071                 /* Bump the number of successful fast-path runs. */
1072                 child_ctx->vacuum_handle->fast_path_count++;
1073         }
1074
1075         DLIST_REMOVE(ctdb->vacuumers, child_ctx);
1076
1077         event_add_timed(ctdb->ev, child_ctx->vacuum_handle,
1078                         timeval_current_ofs(get_vacuum_interval(ctdb_db), 0), 
1079                         ctdb_vacuum_event, child_ctx->vacuum_handle);
1080
1081         return 0;
1082 }
1083
1084 /*
1085  * this event is generated when a vacuum child process times out
1086  */
1087 static void vacuum_child_timeout(struct event_context *ev, struct timed_event *te,
1088                                          struct timeval t, void *private_data)
1089 {
1090         struct ctdb_vacuum_child_context *child_ctx = talloc_get_type(private_data, struct ctdb_vacuum_child_context);
1091
1092         DEBUG(DEBUG_ERR,("Vacuuming child process timed out for db %s\n", child_ctx->vacuum_handle->ctdb_db->db_name));
1093
1094         child_ctx->status = VACUUM_TIMEOUT;
1095
1096         talloc_free(child_ctx);
1097 }
1098
1099
1100 /*
1101  * this event is generated when a vacuum child process has completed
1102  */
1103 static void vacuum_child_handler(struct event_context *ev, struct fd_event *fde,
1104                              uint16_t flags, void *private_data)
1105 {
1106         struct ctdb_vacuum_child_context *child_ctx = talloc_get_type(private_data, struct ctdb_vacuum_child_context);
1107         char c = 0;
1108         int ret;
1109
1110         DEBUG(DEBUG_INFO,("Vacuuming child process %d finished for db %s\n", child_ctx->child_pid, child_ctx->vacuum_handle->ctdb_db->db_name));
1111         child_ctx->child_pid = -1;
1112
1113         ret = read(child_ctx->fd[0], &c, 1);
1114         if (ret != 1 || c != 0) {
1115                 child_ctx->status = VACUUM_ERROR;
1116                 DEBUG(DEBUG_ERR, ("A vacuum child process failed with an error for database %s. ret=%d c=%d\n", child_ctx->vacuum_handle->ctdb_db->db_name, ret, c));
1117         } else {
1118                 child_ctx->status = VACUUM_OK;
1119         }
1120
1121         talloc_free(child_ctx);
1122 }
1123
1124 /*
1125  * this event is called every time we need to start a new vacuum process
1126  */
1127 static void
1128 ctdb_vacuum_event(struct event_context *ev, struct timed_event *te,
1129                                struct timeval t, void *private_data)
1130 {
1131         struct ctdb_vacuum_handle *vacuum_handle = talloc_get_type(private_data, struct ctdb_vacuum_handle);
1132         struct ctdb_db_context *ctdb_db = vacuum_handle->ctdb_db;
1133         struct ctdb_context *ctdb = ctdb_db->ctdb;
1134         struct ctdb_vacuum_child_context *child_ctx;
1135         struct tevent_fd *fde;
1136         int ret;
1137
1138         /* we dont vacuum if we are in recovery mode, or db frozen */
1139         if (ctdb->recovery_mode == CTDB_RECOVERY_ACTIVE ||
1140             ctdb->freeze_mode[ctdb_db->priority] != CTDB_FREEZE_NONE) {
1141                 DEBUG(DEBUG_INFO, ("Not vacuuming %s (%s)\n", ctdb_db->db_name,
1142                                    ctdb->recovery_mode == CTDB_RECOVERY_ACTIVE ? "in recovery"
1143                                    : ctdb->freeze_mode[ctdb_db->priority] == CTDB_FREEZE_PENDING
1144                                    ? "freeze pending"
1145                                    : "frozen"));
1146                 event_add_timed(ctdb->ev, vacuum_handle, timeval_current_ofs(ctdb->tunable.vacuum_default_interval, 0), ctdb_vacuum_event, vacuum_handle);
1147                 return;
1148         }
1149
1150         child_ctx = talloc(vacuum_handle, struct ctdb_vacuum_child_context);
1151         if (child_ctx == NULL) {
1152                 DEBUG(DEBUG_CRIT, (__location__ " Failed to allocate child context for vacuuming of %s\n", ctdb_db->db_name));
1153                 ctdb_fatal(ctdb, "Out of memory when crating vacuum child context. Shutting down\n");
1154         }
1155
1156
1157         ret = pipe(child_ctx->fd);
1158         if (ret != 0) {
1159                 talloc_free(child_ctx);
1160                 DEBUG(DEBUG_ERR, ("Failed to create pipe for vacuum child process.\n"));
1161                 event_add_timed(ctdb->ev, vacuum_handle, timeval_current_ofs(ctdb->tunable.vacuum_default_interval, 0), ctdb_vacuum_event, vacuum_handle);
1162                 return;
1163         }
1164
1165         if (vacuum_handle->fast_path_count > ctdb->tunable.vacuum_fast_path_count) {
1166                 vacuum_handle->fast_path_count = 0;
1167         }
1168
1169         child_ctx->child_pid = ctdb_fork(ctdb);
1170         if (child_ctx->child_pid == (pid_t)-1) {
1171                 close(child_ctx->fd[0]);
1172                 close(child_ctx->fd[1]);
1173                 talloc_free(child_ctx);
1174                 DEBUG(DEBUG_ERR, ("Failed to fork vacuum child process.\n"));
1175                 event_add_timed(ctdb->ev, vacuum_handle, timeval_current_ofs(ctdb->tunable.vacuum_default_interval, 0), ctdb_vacuum_event, vacuum_handle);
1176                 return;
1177         }
1178
1179
1180         if (child_ctx->child_pid == 0) {
1181                 char cc = 0;
1182                 bool full_vacuum_run = false;
1183                 close(child_ctx->fd[0]);
1184
1185                 DEBUG(DEBUG_INFO,("Vacuuming child process %d for db %s started\n", getpid(), ctdb_db->db_name));
1186         
1187                 if (switch_from_server_to_client(ctdb, "vacuum-%s", ctdb_db->db_name) != 0) {
1188                         DEBUG(DEBUG_CRIT, (__location__ "ERROR: failed to switch vacuum daemon into client mode. Shutting down.\n"));
1189                         _exit(1);
1190                 }
1191
1192                 /* 
1193                  * repack the db
1194                  */
1195                 if ((ctdb->tunable.vacuum_fast_path_count > 0) &&
1196                     (vacuum_handle->fast_path_count == 0))
1197                 {
1198                         full_vacuum_run = true;
1199                 }
1200                 cc = ctdb_vacuum_and_repack_db(ctdb_db, child_ctx,
1201                                                full_vacuum_run);
1202
1203                 write(child_ctx->fd[1], &cc, 1);
1204                 _exit(0);
1205         }
1206
1207         set_close_on_exec(child_ctx->fd[0]);
1208         close(child_ctx->fd[1]);
1209
1210         child_ctx->status = VACUUM_RUNNING;
1211         child_ctx->start_time = timeval_current();
1212
1213         DLIST_ADD(ctdb->vacuumers, child_ctx);
1214         talloc_set_destructor(child_ctx, vacuum_child_destructor);
1215
1216         /*
1217          * Clear the fastpath vacuuming list in the parent.
1218          */
1219         talloc_free(ctdb_db->delete_queue);
1220         ctdb_db->delete_queue = trbt_create(ctdb_db, 0);
1221         if (ctdb_db->delete_queue == NULL) {
1222                 /* fatal here? ... */
1223                 ctdb_fatal(ctdb, "Out of memory when re-creating vacuum tree "
1224                                  "in parent context. Shutting down\n");
1225         }
1226
1227         event_add_timed(ctdb->ev, child_ctx,
1228                 timeval_current_ofs(ctdb->tunable.vacuum_max_run_time, 0),
1229                 vacuum_child_timeout, child_ctx);
1230
1231         DEBUG(DEBUG_DEBUG, (__location__ " Created PIPE FD:%d to child vacuum process\n", child_ctx->fd[0]));
1232
1233         fde = event_add_fd(ctdb->ev, child_ctx, child_ctx->fd[0],
1234                            EVENT_FD_READ, vacuum_child_handler, child_ctx);
1235         tevent_fd_set_auto_close(fde);
1236
1237         vacuum_handle->child_ctx = child_ctx;
1238         child_ctx->vacuum_handle = vacuum_handle;
1239 }
1240
1241 void ctdb_stop_vacuuming(struct ctdb_context *ctdb)
1242 {
1243         /* Simply free them all. */
1244         while (ctdb->vacuumers) {
1245                 DEBUG(DEBUG_INFO, ("Aborting vacuuming for %s (%i)\n",
1246                            ctdb->vacuumers->vacuum_handle->ctdb_db->db_name,
1247                            (int)ctdb->vacuumers->child_pid));
1248                 /* vacuum_child_destructor kills it, removes from list */
1249                 talloc_free(ctdb->vacuumers);
1250         }
1251 }
1252
1253 /* this function initializes the vacuuming context for a database
1254  * starts the vacuuming events
1255  */
1256 int ctdb_vacuum_init(struct ctdb_db_context *ctdb_db)
1257 {
1258         if (ctdb_db->persistent != 0) {
1259                 DEBUG(DEBUG_ERR,("Vacuuming is disabled for persistent database %s\n", ctdb_db->db_name));
1260                 return 0;
1261         }
1262
1263         ctdb_db->vacuum_handle = talloc(ctdb_db, struct ctdb_vacuum_handle);
1264         CTDB_NO_MEMORY(ctdb_db->ctdb, ctdb_db->vacuum_handle);
1265
1266         ctdb_db->vacuum_handle->ctdb_db         = ctdb_db;
1267         ctdb_db->vacuum_handle->fast_path_count = 0;
1268
1269         event_add_timed(ctdb_db->ctdb->ev, ctdb_db->vacuum_handle, 
1270                         timeval_current_ofs(get_vacuum_interval(ctdb_db), 0), 
1271                         ctdb_vacuum_event, ctdb_db->vacuum_handle);
1272
1273         return 0;
1274 }
1275
1276 /**
1277  * Insert a record into the ctdb_db context's delete queue,
1278  * handling hash collisions.
1279  */
1280 static int insert_record_into_delete_queue(struct ctdb_db_context *ctdb_db,
1281                                            const struct ctdb_ltdb_header *hdr,
1282                                            TDB_DATA key)
1283 {
1284         struct delete_record_data *kd;
1285         uint32_t hash;
1286         int ret;
1287
1288         hash = (uint32_t)ctdb_hash(&key);
1289
1290         DEBUG(DEBUG_INFO, (__location__ " Schedule for deletion: db[%s] "
1291                            "db_id[0x%08x] "
1292                            "key_hash[0x%08x] "
1293                            "lmaster[%u] "
1294                            "migrated_with_data[%s]\n",
1295                             ctdb_db->db_name, ctdb_db->db_id,
1296                             hash,
1297                             ctdb_lmaster(ctdb_db->ctdb, &key),
1298                             hdr->flags & CTDB_REC_FLAG_MIGRATED_WITH_DATA ? "yes" : "no"));
1299
1300         kd = (struct delete_record_data *)trbt_lookup32(ctdb_db->delete_queue, hash);
1301         if (kd != NULL) {
1302                 if ((kd->key.dsize != key.dsize) ||
1303                     (memcmp(kd->key.dptr, key.dptr, key.dsize) != 0))
1304                 {
1305                         DEBUG(DEBUG_INFO,
1306                               ("schedule for deletion: Hash collision (0x%08x)."
1307                                " Skipping the record.\n", hash));
1308                         return 0;
1309                 } else {
1310                         DEBUG(DEBUG_DEBUG,
1311                               ("schedule for deletion: Overwriting entry for "
1312                                "key with hash 0x%08x.\n", hash));
1313                 }
1314         }
1315
1316         ret = insert_delete_record_data_into_tree(ctdb_db->ctdb, ctdb_db,
1317                                                   ctdb_db->delete_queue,
1318                                                   hdr, key);
1319         if (ret != 0) {
1320                 return -1;
1321         }
1322
1323         return 0;
1324 }
1325
1326 /**
1327  * Schedule a record for deletetion.
1328  * Called from the parent context.
1329  */
1330 int32_t ctdb_control_schedule_for_deletion(struct ctdb_context *ctdb,
1331                                            TDB_DATA indata)
1332 {
1333         struct ctdb_control_schedule_for_deletion *dd;
1334         struct ctdb_db_context *ctdb_db;
1335         int ret;
1336         TDB_DATA key;
1337
1338         dd = (struct ctdb_control_schedule_for_deletion *)indata.dptr;
1339
1340         ctdb_db = find_ctdb_db(ctdb, dd->db_id);
1341         if (ctdb_db == NULL) {
1342                 DEBUG(DEBUG_ERR, (__location__ " Unknown db id 0x%08x\n",
1343                                   dd->db_id));
1344                 return -1;
1345         }
1346
1347         key.dsize = dd->keylen;
1348         key.dptr = dd->key;
1349
1350         ret = insert_record_into_delete_queue(ctdb_db, &dd->hdr, key);
1351
1352         return ret;
1353 }
1354
1355 int32_t ctdb_local_schedule_for_deletion(struct ctdb_db_context *ctdb_db,
1356                                          const struct ctdb_ltdb_header *hdr,
1357                                          TDB_DATA key)
1358 {
1359         int ret;
1360         struct ctdb_control_schedule_for_deletion *dd;
1361         TDB_DATA indata;
1362         int32_t status;
1363
1364         if (ctdb_db->ctdb->ctdbd_pid == getpid()) {
1365                 /* main daemon - directly queue */
1366                 ret = insert_record_into_delete_queue(ctdb_db, hdr, key);
1367
1368                 return ret;
1369         }
1370
1371         /* child process: send the main daemon a control */
1372
1373         indata.dsize = offsetof(struct ctdb_control_schedule_for_deletion, key) + key.dsize;
1374         indata.dptr = talloc_zero_array(ctdb_db, uint8_t, indata.dsize);
1375         if (indata.dptr == NULL) {
1376                 DEBUG(DEBUG_ERR, (__location__ " out of memory\n"));
1377                 return -1;
1378         }
1379         dd = (struct ctdb_control_schedule_for_deletion *)(void *)indata.dptr;
1380         dd->db_id = ctdb_db->db_id;
1381         dd->hdr = *hdr;
1382         dd->keylen = key.dsize;
1383         memcpy(dd->key, key.dptr, key.dsize);
1384
1385         ret = ctdb_control(ctdb_db->ctdb,
1386                            CTDB_CURRENT_NODE,
1387                            ctdb_db->db_id,
1388                            CTDB_CONTROL_SCHEDULE_FOR_DELETION,
1389                            CTDB_CTRL_FLAG_NOREPLY, /* flags */
1390                            indata,
1391                            NULL, /* mem_ctx */
1392                            NULL, /* outdata */
1393                            &status,
1394                            NULL, /* timeout : NULL == wait forever */
1395                            NULL); /* error message */
1396
1397         talloc_free(indata.dptr);
1398
1399         if (ret != 0 || status != 0) {
1400                 DEBUG(DEBUG_ERR, (__location__ " Error sending "
1401                                   "SCHEDULE_FOR_DELETION "
1402                                   "control.\n"));
1403                 if (status != 0) {
1404                         ret = -1;
1405                 }
1406         }
1407
1408         return ret;
1409 }