2 Unix SMB/CIFS implementation.
3 Database interface wrapper around ctdbd
4 Copyright (C) Volker Lendecke 2007-2009
5 Copyright (C) Michael Adam 2009
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.
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.
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/>.
22 #ifdef CLUSTER_SUPPORT
24 #include "ctdb_private.h"
25 #include "ctdbd_conn.h"
28 struct db_ctdb_transaction_handle {
29 struct db_ctdb_ctx *ctx;
31 * we store the reads and writes done under a transaction:
32 * - one list stores both reads and writes (m_all),
33 * - the other just writes (m_write)
35 struct ctdb_marshall_buffer *m_all;
36 struct ctdb_marshall_buffer *m_write;
43 struct db_context *db;
44 struct tdb_wrap *wtdb;
46 struct db_ctdb_transaction_handle *transaction;
47 struct g_lock_ctx *lock_ctx;
51 struct db_ctdb_ctx *ctdb_ctx;
52 struct ctdb_ltdb_header header;
55 static struct db_record *fetch_locked_internal(struct db_ctdb_ctx *ctx,
60 static NTSTATUS tdb_error_to_ntstatus(struct tdb_context *tdb)
63 enum TDB_ERROR tret = tdb_error(tdb);
67 status = NT_STATUS_OBJECT_NAME_COLLISION;
70 status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
73 status = NT_STATUS_INTERNAL_DB_CORRUPTION;
82 * fetch a record from the tdb, separating out the header
83 * information and returning the body of the record.
85 static NTSTATUS db_ctdb_ltdb_fetch(struct db_ctdb_ctx *db,
87 struct ctdb_ltdb_header *header,
94 rec = tdb_fetch(db->wtdb->tdb, key);
95 if (rec.dsize < sizeof(struct ctdb_ltdb_header)) {
96 status = NT_STATUS_NOT_FOUND;
101 header->dmaster = (uint32_t)-1;
108 *header = *(struct ctdb_ltdb_header *)rec.dptr;
112 data->dsize = rec.dsize - sizeof(struct ctdb_ltdb_header);
113 if (data->dsize == 0) {
116 data->dptr = (unsigned char *)talloc_memdup(mem_ctx,
118 + sizeof(struct ctdb_ltdb_header),
120 if (data->dptr == NULL) {
121 status = NT_STATUS_NO_MEMORY;
127 status = NT_STATUS_OK;
135 * Store a record together with the ctdb record header
136 * in the local copy of the database.
138 static NTSTATUS db_ctdb_ltdb_store(struct db_ctdb_ctx *db,
140 struct ctdb_ltdb_header *header,
143 TALLOC_CTX *tmp_ctx = talloc_stackframe();
147 rec.dsize = data.dsize + sizeof(struct ctdb_ltdb_header);
148 rec.dptr = (uint8_t *)talloc_size(tmp_ctx, rec.dsize);
150 if (rec.dptr == NULL) {
151 talloc_free(tmp_ctx);
152 return NT_STATUS_NO_MEMORY;
155 memcpy(rec.dptr, header, sizeof(struct ctdb_ltdb_header));
156 memcpy(sizeof(struct ctdb_ltdb_header) + (uint8_t *)rec.dptr, data.dptr, data.dsize);
158 ret = tdb_store(db->wtdb->tdb, key, rec, TDB_REPLACE);
160 talloc_free(tmp_ctx);
162 return (ret == 0) ? NT_STATUS_OK
163 : tdb_error_to_ntstatus(db->wtdb->tdb);
168 form a ctdb_rec_data record from a key/data pair
170 note that header may be NULL. If not NULL then it is included in the data portion
173 static struct ctdb_rec_data *db_ctdb_marshall_record(TALLOC_CTX *mem_ctx, uint32_t reqid,
175 struct ctdb_ltdb_header *header,
179 struct ctdb_rec_data *d;
181 length = offsetof(struct ctdb_rec_data, data) + key.dsize +
182 data.dsize + (header?sizeof(*header):0);
183 d = (struct ctdb_rec_data *)talloc_size(mem_ctx, length);
189 d->keylen = key.dsize;
190 memcpy(&d->data[0], key.dptr, key.dsize);
192 d->datalen = data.dsize + sizeof(*header);
193 memcpy(&d->data[key.dsize], header, sizeof(*header));
194 memcpy(&d->data[key.dsize+sizeof(*header)], data.dptr, data.dsize);
196 d->datalen = data.dsize;
197 memcpy(&d->data[key.dsize], data.dptr, data.dsize);
203 /* helper function for marshalling multiple records */
204 static struct ctdb_marshall_buffer *db_ctdb_marshall_add(TALLOC_CTX *mem_ctx,
205 struct ctdb_marshall_buffer *m,
209 struct ctdb_ltdb_header *header,
212 struct ctdb_rec_data *r;
213 size_t m_size, r_size;
214 struct ctdb_marshall_buffer *m2 = NULL;
216 r = db_ctdb_marshall_record(talloc_tos(), reqid, key, header, data);
223 m = (struct ctdb_marshall_buffer *)talloc_zero_size(
224 mem_ctx, offsetof(struct ctdb_marshall_buffer, data));
231 m_size = talloc_get_size(m);
232 r_size = talloc_get_size(r);
234 m2 = (struct ctdb_marshall_buffer *)talloc_realloc_size(
235 mem_ctx, m, m_size + r_size);
241 memcpy(m_size + (uint8_t *)m2, r, r_size);
250 /* we've finished marshalling, return a data blob with the marshalled records */
251 static TDB_DATA db_ctdb_marshall_finish(struct ctdb_marshall_buffer *m)
254 data.dptr = (uint8_t *)m;
255 data.dsize = talloc_get_size(m);
260 loop over a marshalling buffer
262 - pass r==NULL to start
263 - loop the number of times indicated by m->count
265 static struct ctdb_rec_data *db_ctdb_marshall_loop_next(struct ctdb_marshall_buffer *m, struct ctdb_rec_data *r,
267 struct ctdb_ltdb_header *header,
268 TDB_DATA *key, TDB_DATA *data)
271 r = (struct ctdb_rec_data *)&m->data[0];
273 r = (struct ctdb_rec_data *)(r->length + (uint8_t *)r);
281 key->dptr = &r->data[0];
282 key->dsize = r->keylen;
285 data->dptr = &r->data[r->keylen];
286 data->dsize = r->datalen;
287 if (header != NULL) {
288 data->dptr += sizeof(*header);
289 data->dsize -= sizeof(*header);
293 if (header != NULL) {
294 if (r->datalen < sizeof(*header)) {
297 *header = *(struct ctdb_ltdb_header *)&r->data[r->keylen];
304 * CTDB transaction destructor
306 static int db_ctdb_transaction_destructor(struct db_ctdb_transaction_handle *h)
310 status = g_lock_unlock(h->ctx->lock_ctx, h->lock_name);
311 if (!NT_STATUS_IS_OK(status)) {
312 DEBUG(0, ("g_lock_unlock failed: %s\n", nt_errstr(status)));
319 * CTDB dbwrap API: transaction_start function
320 * starts a transaction on a persistent database
322 static int db_ctdb_transaction_start(struct db_context *db)
324 struct db_ctdb_transaction_handle *h;
326 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
329 if (!db->persistent) {
330 DEBUG(0,("transactions not supported on non-persistent database 0x%08x\n",
335 if (ctx->transaction) {
336 ctx->transaction->nesting++;
340 h = talloc_zero(db, struct db_ctdb_transaction_handle);
342 DEBUG(0,(__location__ " oom for transaction handle\n"));
348 h->lock_name = talloc_asprintf(h, "transaction_db_0x%08x",
349 (unsigned int)ctx->db_id);
350 if (h->lock_name == NULL) {
351 DEBUG(0, ("talloc_asprintf failed\n"));
357 * Wait a day, i.e. forever...
359 status = g_lock_lock(ctx->lock_ctx, h->lock_name, G_LOCK_WRITE,
360 timeval_set(86400, 0));
361 if (!NT_STATUS_IS_OK(status)) {
362 DEBUG(0, ("g_lock_lock failed: %s\n", nt_errstr(status)));
367 talloc_set_destructor(h, db_ctdb_transaction_destructor);
369 ctx->transaction = h;
371 DEBUG(5,(__location__ " Started transaction on db 0x%08x\n", ctx->db_id));
376 static bool pull_newest_from_marshall_buffer(struct ctdb_marshall_buffer *buf,
378 struct ctdb_ltdb_header *pheader,
382 struct ctdb_rec_data *rec = NULL;
383 struct ctdb_ltdb_header h;
393 * Walk the list of records written during this
394 * transaction. If we want to read one we have already
395 * written, return the last written sample. Thus we do not do
396 * a "break;" for the first hit, this record might have been
400 for (i=0; i<buf->count; i++) {
401 TDB_DATA tkey, tdata;
404 rec = db_ctdb_marshall_loop_next(buf, rec, &reqid, &h, &tkey,
410 if (tdb_data_equal(key, tkey)) {
421 data.dptr = (uint8_t *)talloc_memdup(mem_ctx, data.dptr,
423 if ((data.dsize != 0) && (data.dptr == NULL)) {
429 if (pheader != NULL) {
437 fetch a record inside a transaction
439 static int db_ctdb_transaction_fetch(struct db_ctdb_ctx *db,
441 TDB_DATA key, TDB_DATA *data)
443 struct db_ctdb_transaction_handle *h = db->transaction;
447 found = pull_newest_from_marshall_buffer(h->m_write, key, NULL,
453 status = db_ctdb_ltdb_fetch(h->ctx, key, NULL, mem_ctx, data);
455 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_FOUND)) {
457 } else if (!NT_STATUS_IS_OK(status)) {
461 h->m_all = db_ctdb_marshall_add(h, h->m_all, h->ctx->db_id, 1, key,
463 if (h->m_all == NULL) {
464 DEBUG(0,(__location__ " Failed to add to marshalling "
467 talloc_free(data->dptr);
475 static NTSTATUS db_ctdb_store_transaction(struct db_record *rec, TDB_DATA data, int flag);
476 static NTSTATUS db_ctdb_delete_transaction(struct db_record *rec);
478 static struct db_record *db_ctdb_fetch_locked_transaction(struct db_ctdb_ctx *ctx,
482 struct db_record *result;
485 if (!(result = talloc(mem_ctx, struct db_record))) {
486 DEBUG(0, ("talloc failed\n"));
490 result->private_data = ctx->transaction;
492 result->key.dsize = key.dsize;
493 result->key.dptr = (uint8 *)talloc_memdup(result, key.dptr, key.dsize);
494 if (result->key.dptr == NULL) {
495 DEBUG(0, ("talloc failed\n"));
500 result->store = db_ctdb_store_transaction;
501 result->delete_rec = db_ctdb_delete_transaction;
503 if (pull_newest_from_marshall_buffer(ctx->transaction->m_write, key,
504 NULL, result, &result->value)) {
508 ctdb_data = tdb_fetch(ctx->wtdb->tdb, key);
509 if (ctdb_data.dptr == NULL) {
510 /* create the record */
511 result->value = tdb_null;
515 result->value.dsize = ctdb_data.dsize - sizeof(struct ctdb_ltdb_header);
516 result->value.dptr = NULL;
518 if ((result->value.dsize != 0)
519 && !(result->value.dptr = (uint8 *)talloc_memdup(
520 result, ctdb_data.dptr + sizeof(struct ctdb_ltdb_header),
521 result->value.dsize))) {
522 DEBUG(0, ("talloc failed\n"));
526 SAFE_FREE(ctdb_data.dptr);
531 static int db_ctdb_record_destructor(struct db_record **recp)
533 struct db_record *rec = talloc_get_type_abort(*recp, struct db_record);
534 struct db_ctdb_transaction_handle *h = talloc_get_type_abort(
535 rec->private_data, struct db_ctdb_transaction_handle);
536 int ret = h->ctx->db->transaction_commit(h->ctx->db);
538 DEBUG(0,(__location__ " transaction_commit failed\n"));
544 auto-create a transaction for persistent databases
546 static struct db_record *db_ctdb_fetch_locked_persistent(struct db_ctdb_ctx *ctx,
551 struct db_record *rec, **recp;
553 res = db_ctdb_transaction_start(ctx->db);
558 rec = db_ctdb_fetch_locked_transaction(ctx, mem_ctx, key);
560 ctx->db->transaction_cancel(ctx->db);
564 /* destroy this transaction when we release the lock */
565 recp = talloc(rec, struct db_record *);
567 ctx->db->transaction_cancel(ctx->db);
572 talloc_set_destructor(recp, db_ctdb_record_destructor);
578 stores a record inside a transaction
580 static NTSTATUS db_ctdb_transaction_store(struct db_ctdb_transaction_handle *h,
581 TDB_DATA key, TDB_DATA data)
583 TALLOC_CTX *tmp_ctx = talloc_new(h);
585 struct ctdb_ltdb_header header;
589 /* we need the header so we can update the RSN */
591 if (!pull_newest_from_marshall_buffer(h->m_write, key, &header,
594 rec = tdb_fetch(h->ctx->wtdb->tdb, key);
596 if (rec.dptr != NULL) {
597 memcpy(&header, rec.dptr,
598 sizeof(struct ctdb_ltdb_header));
599 rec.dsize -= sizeof(struct ctdb_ltdb_header);
602 * a special case, we are writing the same
603 * data that is there now
605 if (data.dsize == rec.dsize &&
607 rec.dptr + sizeof(struct ctdb_ltdb_header),
610 talloc_free(tmp_ctx);
617 header.dmaster = get_my_vnn();
620 h->m_all = db_ctdb_marshall_add(h, h->m_all, h->ctx->db_id, 0, key,
622 if (h->m_all == NULL) {
623 DEBUG(0,(__location__ " Failed to add to marshalling "
625 talloc_free(tmp_ctx);
626 return NT_STATUS_NO_MEMORY;
629 h->m_write = db_ctdb_marshall_add(h, h->m_write, h->ctx->db_id, 0, key, &header, data);
630 if (h->m_write == NULL) {
631 DEBUG(0,(__location__ " Failed to add to marshalling record\n"));
632 talloc_free(tmp_ctx);
633 return NT_STATUS_NO_MEMORY;
636 talloc_free(tmp_ctx);
642 a record store inside a transaction
644 static NTSTATUS db_ctdb_store_transaction(struct db_record *rec, TDB_DATA data, int flag)
646 struct db_ctdb_transaction_handle *h = talloc_get_type_abort(
647 rec->private_data, struct db_ctdb_transaction_handle);
650 status = db_ctdb_transaction_store(h, rec->key, data);
655 a record delete inside a transaction
657 static NTSTATUS db_ctdb_delete_transaction(struct db_record *rec)
659 struct db_ctdb_transaction_handle *h = talloc_get_type_abort(
660 rec->private_data, struct db_ctdb_transaction_handle);
663 status = db_ctdb_transaction_store(h, rec->key, tdb_null);
668 * Fetch the db sequence number of a persistent db directly from the db.
670 static NTSTATUS db_ctdb_fetch_db_seqnum_from_db(struct db_ctdb_ctx *db,
674 const char *keyname = CTDB_DB_SEQNUM_KEY;
677 struct ctdb_ltdb_header header;
678 TALLOC_CTX *mem_ctx = talloc_stackframe();
680 if (seqnum == NULL) {
681 return NT_STATUS_INVALID_PARAMETER;
684 key.dptr = (uint8_t *)discard_const(keyname);
685 key.dsize = strlen(keyname) + 1;
687 status = db_ctdb_ltdb_fetch(db, key, &header, mem_ctx, &data);
688 if (!NT_STATUS_IS_OK(status) &&
689 !NT_STATUS_EQUAL(status, NT_STATUS_NOT_FOUND))
694 status = NT_STATUS_OK;
696 if (data.dsize != sizeof(uint64_t)) {
701 *seqnum = *(uint64_t *)data.dptr;
704 TALLOC_FREE(mem_ctx);
709 * Store the database sequence number inside a transaction.
711 static NTSTATUS db_ctdb_store_db_seqnum(struct db_ctdb_transaction_handle *h,
715 const char *keyname = CTDB_DB_SEQNUM_KEY;
719 key.dptr = (uint8_t *)discard_const(keyname);
720 key.dsize = strlen(keyname);
722 data.dptr = (uint8_t *)&seqnum;
723 data.dsize = sizeof(uint64_t);
725 status = db_ctdb_transaction_store(h, key, data);
733 static int db_ctdb_transaction_commit(struct db_context *db)
735 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
739 struct db_ctdb_transaction_handle *h = ctx->transaction;
740 uint64_t old_seqnum, new_seqnum;
744 DEBUG(0,(__location__ " transaction commit with no open transaction on db 0x%08x\n", ctx->db_id));
748 if (h->nested_cancel) {
749 db->transaction_cancel(db);
750 DEBUG(5,(__location__ " Failed transaction commit after nested cancel\n"));
754 if (h->nesting != 0) {
759 DEBUG(5,(__location__ " Commit transaction on db 0x%08x\n", ctx->db_id));
762 * As the last db action before committing, bump the database sequence
763 * number. Note that this undoes all changes to the seqnum records
764 * performed under the transaction. This record is not meant to be
765 * modified by user interaction. It is for internal use only...
767 rets = db_ctdb_fetch_db_seqnum_from_db(ctx, &old_seqnum);
768 if (!NT_STATUS_IS_OK(rets)) {
769 DEBUG(1, (__location__ " failed to fetch the db sequence number "
770 "in transaction commit on db 0x%08x\n", ctx->db_id));
775 new_seqnum = old_seqnum + 1;
777 rets = db_ctdb_store_db_seqnum(h, new_seqnum);
778 if (!NT_STATUS_IS_OK(rets)) {
779 DEBUG(1, (__location__ "failed to store the db sequence number "
780 " in transaction commit on db 0x%08x\n", ctx->db_id));
786 if (h->m_write == NULL) {
787 /* no changes were made, potentially after a retry */
791 /* tell ctdbd to commit to the other nodes */
792 rets = ctdbd_control_local(messaging_ctdbd_connection(),
793 CTDB_CONTROL_TRANS3_COMMIT,
795 db_ctdb_marshall_finish(h->m_write),
796 NULL, NULL, &status);
797 if (!NT_STATUS_IS_OK(rets) || status != 0) {
799 * The TRANS3_COMMIT control should only possibly fail when a
800 * recovery has been running concurrently. In any case, the db
801 * will be the same on all nodes, either the new copy or the
802 * old copy. This can be detected by comparing the old and new
803 * local sequence numbers.
805 rets = db_ctdb_fetch_db_seqnum_from_db(ctx, &new_seqnum);
806 if (!NT_STATUS_IS_OK(rets)) {
807 DEBUG(1, (__location__ " failed to refetch db sequence "
808 "number after failed TRANS3_COMMIT\n"));
813 if (new_seqnum == old_seqnum) {
814 /* Recovery prevented all our changes: retry. */
816 } else if (new_seqnum != (old_seqnum + 1)) {
817 DEBUG(0, (__location__ " ERROR: new_seqnum[%lu] != "
818 "old_seqnum[%lu] + (0 or 1) after failed "
819 "TRANS3_COMMIT - this should not happen!\n",
820 (unsigned long)new_seqnum,
821 (unsigned long)old_seqnum));
826 * Recovery propagated our changes to all nodes, completing
827 * our commit for us - succeed.
834 h->ctx->transaction = NULL;
843 static int db_ctdb_transaction_cancel(struct db_context *db)
845 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
847 struct db_ctdb_transaction_handle *h = ctx->transaction;
850 DEBUG(0,(__location__ " transaction cancel with no open transaction on db 0x%08x\n", ctx->db_id));
854 if (h->nesting != 0) {
856 h->nested_cancel = true;
860 DEBUG(5,(__location__ " Cancel transaction on db 0x%08x\n", ctx->db_id));
862 ctx->transaction = NULL;
868 static NTSTATUS db_ctdb_store(struct db_record *rec, TDB_DATA data, int flag)
870 struct db_ctdb_rec *crec = talloc_get_type_abort(
871 rec->private_data, struct db_ctdb_rec);
873 return db_ctdb_ltdb_store(crec->ctdb_ctx, rec->key, &(crec->header), data);
878 static NTSTATUS db_ctdb_delete(struct db_record *rec)
883 * We have to store the header with empty data. TODO: Fix the
889 return db_ctdb_store(rec, data, 0);
893 static int db_ctdb_record_destr(struct db_record* data)
895 struct db_ctdb_rec *crec = talloc_get_type_abort(
896 data->private_data, struct db_ctdb_rec);
898 DEBUG(10, (DEBUGLEVEL > 10
899 ? "Unlocking db %u key %s\n"
900 : "Unlocking db %u key %.20s\n",
901 (int)crec->ctdb_ctx->db_id,
902 hex_encode_talloc(data, (unsigned char *)data->key.dptr,
905 if (tdb_chainunlock(crec->ctdb_ctx->wtdb->tdb, data->key) != 0) {
906 DEBUG(0, ("tdb_chainunlock failed\n"));
913 static struct db_record *fetch_locked_internal(struct db_ctdb_ctx *ctx,
918 struct db_record *result;
919 struct db_ctdb_rec *crec;
922 int migrate_attempts = 0;
924 if (!(result = talloc(mem_ctx, struct db_record))) {
925 DEBUG(0, ("talloc failed\n"));
929 if (!(crec = TALLOC_ZERO_P(result, struct db_ctdb_rec))) {
930 DEBUG(0, ("talloc failed\n"));
935 result->private_data = (void *)crec;
936 crec->ctdb_ctx = ctx;
938 result->key.dsize = key.dsize;
939 result->key.dptr = (uint8 *)talloc_memdup(result, key.dptr, key.dsize);
940 if (result->key.dptr == NULL) {
941 DEBUG(0, ("talloc failed\n"));
947 * Do a blocking lock on the record
951 if (DEBUGLEVEL >= 10) {
952 char *keystr = hex_encode_talloc(result, key.dptr, key.dsize);
953 DEBUG(10, (DEBUGLEVEL > 10
954 ? "Locking db %u key %s\n"
955 : "Locking db %u key %.20s\n",
956 (int)crec->ctdb_ctx->db_id, keystr));
960 if (tdb_chainlock(ctx->wtdb->tdb, key) != 0) {
961 DEBUG(3, ("tdb_chainlock failed\n"));
966 result->store = db_ctdb_store;
967 result->delete_rec = db_ctdb_delete;
968 talloc_set_destructor(result, db_ctdb_record_destr);
970 ctdb_data = tdb_fetch(ctx->wtdb->tdb, key);
973 * See if we have a valid record and we are the dmaster. If so, we can
974 * take the shortcut and just return it.
977 if ((ctdb_data.dptr == NULL) ||
978 (ctdb_data.dsize < sizeof(struct ctdb_ltdb_header)) ||
979 ((struct ctdb_ltdb_header *)ctdb_data.dptr)->dmaster != get_my_vnn()
981 || (random() % 2 != 0)
984 SAFE_FREE(ctdb_data.dptr);
985 tdb_chainunlock(ctx->wtdb->tdb, key);
986 talloc_set_destructor(result, NULL);
988 migrate_attempts += 1;
990 DEBUG(10, ("ctdb_data.dptr = %p, dmaster = %u (%u)\n",
991 ctdb_data.dptr, ctdb_data.dptr ?
992 ((struct ctdb_ltdb_header *)ctdb_data.dptr)->dmaster : -1,
995 status = ctdbd_migrate(messaging_ctdbd_connection(),ctx->db_id, key);
996 if (!NT_STATUS_IS_OK(status)) {
997 DEBUG(5, ("ctdb_migrate failed: %s\n",
1002 /* now its migrated, try again */
1006 if (migrate_attempts > 10) {
1007 DEBUG(0, ("db_ctdb_fetch_locked needed %d attempts\n",
1011 memcpy(&crec->header, ctdb_data.dptr, sizeof(crec->header));
1013 result->value.dsize = ctdb_data.dsize - sizeof(crec->header);
1014 result->value.dptr = NULL;
1016 if ((result->value.dsize != 0)
1017 && !(result->value.dptr = (uint8 *)talloc_memdup(
1018 result, ctdb_data.dptr + sizeof(crec->header),
1019 result->value.dsize))) {
1020 DEBUG(0, ("talloc failed\n"));
1021 TALLOC_FREE(result);
1024 SAFE_FREE(ctdb_data.dptr);
1029 static struct db_record *db_ctdb_fetch_locked(struct db_context *db,
1030 TALLOC_CTX *mem_ctx,
1033 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1034 struct db_ctdb_ctx);
1036 if (ctx->transaction != NULL) {
1037 return db_ctdb_fetch_locked_transaction(ctx, mem_ctx, key);
1040 if (db->persistent) {
1041 return db_ctdb_fetch_locked_persistent(ctx, mem_ctx, key);
1044 return fetch_locked_internal(ctx, mem_ctx, key, db->persistent);
1048 fetch (unlocked, no migration) operation on ctdb
1050 static int db_ctdb_fetch(struct db_context *db, TALLOC_CTX *mem_ctx,
1051 TDB_DATA key, TDB_DATA *data)
1053 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1054 struct db_ctdb_ctx);
1058 if (ctx->transaction) {
1059 return db_ctdb_transaction_fetch(ctx, mem_ctx, key, data);
1062 /* try a direct fetch */
1063 ctdb_data = tdb_fetch(ctx->wtdb->tdb, key);
1066 * See if we have a valid record and we are the dmaster. If so, we can
1067 * take the shortcut and just return it.
1068 * we bypass the dmaster check for persistent databases
1070 if ((ctdb_data.dptr != NULL) &&
1071 (ctdb_data.dsize >= sizeof(struct ctdb_ltdb_header)) &&
1073 ((struct ctdb_ltdb_header *)ctdb_data.dptr)->dmaster == get_my_vnn())) {
1074 /* we are the dmaster - avoid the ctdb protocol op */
1076 data->dsize = ctdb_data.dsize - sizeof(struct ctdb_ltdb_header);
1077 if (data->dsize == 0) {
1078 SAFE_FREE(ctdb_data.dptr);
1083 data->dptr = (uint8 *)talloc_memdup(
1084 mem_ctx, ctdb_data.dptr+sizeof(struct ctdb_ltdb_header),
1087 SAFE_FREE(ctdb_data.dptr);
1089 if (data->dptr == NULL) {
1095 SAFE_FREE(ctdb_data.dptr);
1097 /* we weren't able to get it locally - ask ctdb to fetch it for us */
1098 status = ctdbd_fetch(messaging_ctdbd_connection(),ctx->db_id, key, mem_ctx, data);
1099 if (!NT_STATUS_IS_OK(status)) {
1100 DEBUG(5, ("ctdbd_fetch failed: %s\n", nt_errstr(status)));
1107 struct traverse_state {
1108 struct db_context *db;
1109 int (*fn)(struct db_record *rec, void *private_data);
1113 static void traverse_callback(TDB_DATA key, TDB_DATA data, void *private_data)
1115 struct traverse_state *state = (struct traverse_state *)private_data;
1116 struct db_record *rec;
1117 TALLOC_CTX *tmp_ctx = talloc_new(state->db);
1118 /* we have to give them a locked record to prevent races */
1119 rec = db_ctdb_fetch_locked(state->db, tmp_ctx, key);
1120 if (rec && rec->value.dsize > 0) {
1121 state->fn(rec, state->private_data);
1123 talloc_free(tmp_ctx);
1126 static int traverse_persistent_callback(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf,
1129 struct traverse_state *state = (struct traverse_state *)private_data;
1130 struct db_record *rec;
1131 TALLOC_CTX *tmp_ctx = talloc_new(state->db);
1133 /* we have to give them a locked record to prevent races */
1134 rec = db_ctdb_fetch_locked(state->db, tmp_ctx, kbuf);
1135 if (rec && rec->value.dsize > 0) {
1136 ret = state->fn(rec, state->private_data);
1138 talloc_free(tmp_ctx);
1142 static int db_ctdb_traverse(struct db_context *db,
1143 int (*fn)(struct db_record *rec,
1144 void *private_data),
1147 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1148 struct db_ctdb_ctx);
1149 struct traverse_state state;
1153 state.private_data = private_data;
1155 if (db->persistent) {
1156 /* for persistent databases we don't need to do a ctdb traverse,
1157 we can do a faster local traverse */
1158 return tdb_traverse(ctx->wtdb->tdb, traverse_persistent_callback, &state);
1162 ctdbd_traverse(ctx->db_id, traverse_callback, &state);
1166 static NTSTATUS db_ctdb_store_deny(struct db_record *rec, TDB_DATA data, int flag)
1168 return NT_STATUS_MEDIA_WRITE_PROTECTED;
1171 static NTSTATUS db_ctdb_delete_deny(struct db_record *rec)
1173 return NT_STATUS_MEDIA_WRITE_PROTECTED;
1176 static void traverse_read_callback(TDB_DATA key, TDB_DATA data, void *private_data)
1178 struct traverse_state *state = (struct traverse_state *)private_data;
1179 struct db_record rec;
1182 rec.store = db_ctdb_store_deny;
1183 rec.delete_rec = db_ctdb_delete_deny;
1184 rec.private_data = state->db;
1185 state->fn(&rec, state->private_data);
1188 static int traverse_persistent_callback_read(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf,
1191 struct traverse_state *state = (struct traverse_state *)private_data;
1192 struct db_record rec;
1195 rec.store = db_ctdb_store_deny;
1196 rec.delete_rec = db_ctdb_delete_deny;
1197 rec.private_data = state->db;
1199 if (rec.value.dsize <= sizeof(struct ctdb_ltdb_header)) {
1200 /* a deleted record */
1203 rec.value.dsize -= sizeof(struct ctdb_ltdb_header);
1204 rec.value.dptr += sizeof(struct ctdb_ltdb_header);
1206 return state->fn(&rec, state->private_data);
1209 static int db_ctdb_traverse_read(struct db_context *db,
1210 int (*fn)(struct db_record *rec,
1211 void *private_data),
1214 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1215 struct db_ctdb_ctx);
1216 struct traverse_state state;
1220 state.private_data = private_data;
1222 if (db->persistent) {
1223 /* for persistent databases we don't need to do a ctdb traverse,
1224 we can do a faster local traverse */
1225 return tdb_traverse_read(ctx->wtdb->tdb, traverse_persistent_callback_read, &state);
1228 ctdbd_traverse(ctx->db_id, traverse_read_callback, &state);
1232 static int db_ctdb_get_seqnum(struct db_context *db)
1234 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1235 struct db_ctdb_ctx);
1236 return tdb_get_seqnum(ctx->wtdb->tdb);
1239 static int db_ctdb_get_flags(struct db_context *db)
1241 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1242 struct db_ctdb_ctx);
1243 return tdb_get_flags(ctx->wtdb->tdb);
1246 struct db_context *db_open_ctdb(TALLOC_CTX *mem_ctx,
1248 int hash_size, int tdb_flags,
1249 int open_flags, mode_t mode)
1251 struct db_context *result;
1252 struct db_ctdb_ctx *db_ctdb;
1254 struct ctdbd_connection *conn;
1256 if (!lp_clustering()) {
1257 DEBUG(10, ("Clustering disabled -- no ctdb\n"));
1261 if (!(result = TALLOC_ZERO_P(mem_ctx, struct db_context))) {
1262 DEBUG(0, ("talloc failed\n"));
1263 TALLOC_FREE(result);
1267 if (!(db_ctdb = TALLOC_P(result, struct db_ctdb_ctx))) {
1268 DEBUG(0, ("talloc failed\n"));
1269 TALLOC_FREE(result);
1273 db_ctdb->transaction = NULL;
1274 db_ctdb->db = result;
1276 conn = messaging_ctdbd_connection();
1278 if (!NT_STATUS_IS_OK(ctdbd_db_attach(conn, name, &db_ctdb->db_id, tdb_flags))) {
1279 DEBUG(0, ("ctdbd_db_attach failed for %s\n", name));
1280 TALLOC_FREE(result);
1284 db_path = ctdbd_dbpath(conn, db_ctdb, db_ctdb->db_id);
1286 result->persistent = ((tdb_flags & TDB_CLEAR_IF_FIRST) == 0);
1288 /* only pass through specific flags */
1289 tdb_flags &= TDB_SEQNUM;
1291 /* honor permissions if user has specified O_CREAT */
1292 if (open_flags & O_CREAT) {
1293 chmod(db_path, mode);
1296 db_ctdb->wtdb = tdb_wrap_open(db_ctdb, db_path, hash_size, tdb_flags, O_RDWR, 0);
1297 if (db_ctdb->wtdb == NULL) {
1298 DEBUG(0, ("Could not open tdb %s: %s\n", db_path, strerror(errno)));
1299 TALLOC_FREE(result);
1302 talloc_free(db_path);
1304 if (result->persistent) {
1305 db_ctdb->lock_ctx = g_lock_ctx_init(db_ctdb,
1306 ctdb_conn_msg_ctx(conn));
1307 if (db_ctdb->lock_ctx == NULL) {
1308 DEBUG(0, ("g_lock_ctx_init failed\n"));
1309 TALLOC_FREE(result);
1314 result->private_data = (void *)db_ctdb;
1315 result->fetch_locked = db_ctdb_fetch_locked;
1316 result->fetch = db_ctdb_fetch;
1317 result->traverse = db_ctdb_traverse;
1318 result->traverse_read = db_ctdb_traverse_read;
1319 result->get_seqnum = db_ctdb_get_seqnum;
1320 result->get_flags = db_ctdb_get_flags;
1321 result->transaction_start = db_ctdb_transaction_start;
1322 result->transaction_commit = db_ctdb_transaction_commit;
1323 result->transaction_cancel = db_ctdb_transaction_cancel;
1325 DEBUG(3,("db_open_ctdb: opened database '%s' with dbid 0x%x\n",
1326 name, db_ctdb->db_id));