s3:dbwrap_ctdb: expand the comment for the db_ctdb_can_use_local_copy() function
[Samba/gebeck_regimport.git] / source3 / lib / dbwrap / dbwrap_ctdb.c
blob7ea8e9347c4465686ca2551e793a661344eca25f
1 /*
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/>.
21 #include "includes.h"
22 #include "system/filesys.h"
23 #include "lib/tdb_wrap/tdb_wrap.h"
24 #include "util_tdb.h"
25 #include "dbwrap/dbwrap.h"
26 #include "dbwrap/dbwrap_ctdb.h"
27 #include "dbwrap/dbwrap_rbt.h"
28 #include "lib/param/param.h"
30 #ifdef CLUSTER_SUPPORT
33 * It is not possible to include ctdb.h and tdb_compat.h (included via
34 * some other include above) without warnings. This fixes those
35 * warnings.
38 #ifdef typesafe_cb
39 #undef typesafe_cb
40 #endif
42 #ifdef typesafe_cb_preargs
43 #undef typesafe_cb_preargs
44 #endif
46 #ifdef typesafe_cb_postargs
47 #undef typesafe_cb_postargs
48 #endif
50 #include "ctdb.h"
51 #include "ctdb_private.h"
52 #include "ctdbd_conn.h"
53 #include "dbwrap/dbwrap.h"
54 #include "dbwrap/dbwrap_private.h"
55 #include "dbwrap/dbwrap_ctdb.h"
56 #include "g_lock.h"
57 #include "messages.h"
59 struct db_ctdb_transaction_handle {
60 struct db_ctdb_ctx *ctx;
62 * we store the writes done under a transaction:
64 struct ctdb_marshall_buffer *m_write;
65 uint32_t nesting;
66 bool nested_cancel;
67 char *lock_name;
70 struct db_ctdb_ctx {
71 struct db_context *db;
72 struct tdb_wrap *wtdb;
73 uint32_t db_id;
74 struct db_ctdb_transaction_handle *transaction;
75 struct g_lock_ctx *lock_ctx;
78 struct db_ctdb_rec {
79 struct db_ctdb_ctx *ctdb_ctx;
80 struct ctdb_ltdb_header header;
81 struct timeval lock_time;
84 static NTSTATUS tdb_error_to_ntstatus(struct tdb_context *tdb)
86 enum TDB_ERROR tret = tdb_error(tdb);
88 return map_nt_error_from_tdb(tret);
92 /**
93 * fetch a record from the tdb, separating out the header
94 * information and returning the body of the record.
96 static NTSTATUS db_ctdb_ltdb_fetch(struct db_ctdb_ctx *db,
97 TDB_DATA key,
98 struct ctdb_ltdb_header *header,
99 TALLOC_CTX *mem_ctx,
100 TDB_DATA *data)
102 TDB_DATA rec;
103 NTSTATUS status;
105 rec = tdb_fetch_compat(db->wtdb->tdb, key);
106 if (rec.dsize < sizeof(struct ctdb_ltdb_header)) {
107 status = NT_STATUS_NOT_FOUND;
108 if (data) {
109 ZERO_STRUCTP(data);
111 if (header) {
112 header->dmaster = (uint32_t)-1;
113 header->rsn = 0;
115 goto done;
118 if (header) {
119 *header = *(struct ctdb_ltdb_header *)rec.dptr;
122 if (data) {
123 data->dsize = rec.dsize - sizeof(struct ctdb_ltdb_header);
124 if (data->dsize == 0) {
125 data->dptr = NULL;
126 } else {
127 data->dptr = (unsigned char *)talloc_memdup(mem_ctx,
128 rec.dptr
129 + sizeof(struct ctdb_ltdb_header),
130 data->dsize);
131 if (data->dptr == NULL) {
132 status = NT_STATUS_NO_MEMORY;
133 goto done;
138 status = NT_STATUS_OK;
140 done:
141 SAFE_FREE(rec.dptr);
142 return status;
146 * Store a record together with the ctdb record header
147 * in the local copy of the database.
149 static NTSTATUS db_ctdb_ltdb_store(struct db_ctdb_ctx *db,
150 TDB_DATA key,
151 struct ctdb_ltdb_header *header,
152 TDB_DATA data)
154 TALLOC_CTX *tmp_ctx = talloc_stackframe();
155 TDB_DATA rec;
156 int ret;
158 rec.dsize = data.dsize + sizeof(struct ctdb_ltdb_header);
159 rec.dptr = (uint8_t *)talloc_size(tmp_ctx, rec.dsize);
161 if (rec.dptr == NULL) {
162 talloc_free(tmp_ctx);
163 return NT_STATUS_NO_MEMORY;
166 memcpy(rec.dptr, header, sizeof(struct ctdb_ltdb_header));
167 memcpy(sizeof(struct ctdb_ltdb_header) + (uint8_t *)rec.dptr, data.dptr, data.dsize);
169 ret = tdb_store(db->wtdb->tdb, key, rec, TDB_REPLACE);
171 talloc_free(tmp_ctx);
173 return (ret == 0) ? NT_STATUS_OK
174 : tdb_error_to_ntstatus(db->wtdb->tdb);
179 form a ctdb_rec_data record from a key/data pair
181 note that header may be NULL. If not NULL then it is included in the data portion
182 of the record
184 static struct ctdb_rec_data *db_ctdb_marshall_record(TALLOC_CTX *mem_ctx, uint32_t reqid,
185 TDB_DATA key,
186 struct ctdb_ltdb_header *header,
187 TDB_DATA data)
189 size_t length;
190 struct ctdb_rec_data *d;
192 length = offsetof(struct ctdb_rec_data, data) + key.dsize +
193 data.dsize + (header?sizeof(*header):0);
194 d = (struct ctdb_rec_data *)talloc_size(mem_ctx, length);
195 if (d == NULL) {
196 return NULL;
198 d->length = length;
199 d->reqid = reqid;
200 d->keylen = key.dsize;
201 memcpy(&d->data[0], key.dptr, key.dsize);
202 if (header) {
203 d->datalen = data.dsize + sizeof(*header);
204 memcpy(&d->data[key.dsize], header, sizeof(*header));
205 memcpy(&d->data[key.dsize+sizeof(*header)], data.dptr, data.dsize);
206 } else {
207 d->datalen = data.dsize;
208 memcpy(&d->data[key.dsize], data.dptr, data.dsize);
210 return d;
214 /* helper function for marshalling multiple records */
215 static struct ctdb_marshall_buffer *db_ctdb_marshall_add(TALLOC_CTX *mem_ctx,
216 struct ctdb_marshall_buffer *m,
217 uint64_t db_id,
218 uint32_t reqid,
219 TDB_DATA key,
220 struct ctdb_ltdb_header *header,
221 TDB_DATA data)
223 struct ctdb_rec_data *r;
224 size_t m_size, r_size;
225 struct ctdb_marshall_buffer *m2 = NULL;
227 r = db_ctdb_marshall_record(talloc_tos(), reqid, key, header, data);
228 if (r == NULL) {
229 talloc_free(m);
230 return NULL;
233 if (m == NULL) {
234 m = (struct ctdb_marshall_buffer *)talloc_zero_size(
235 mem_ctx, offsetof(struct ctdb_marshall_buffer, data));
236 if (m == NULL) {
237 goto done;
239 m->db_id = db_id;
242 m_size = talloc_get_size(m);
243 r_size = talloc_get_size(r);
245 m2 = (struct ctdb_marshall_buffer *)talloc_realloc_size(
246 mem_ctx, m, m_size + r_size);
247 if (m2 == NULL) {
248 talloc_free(m);
249 goto done;
252 memcpy(m_size + (uint8_t *)m2, r, r_size);
254 m2->count++;
256 done:
257 talloc_free(r);
258 return m2;
261 /* we've finished marshalling, return a data blob with the marshalled records */
262 static TDB_DATA db_ctdb_marshall_finish(struct ctdb_marshall_buffer *m)
264 TDB_DATA data;
265 data.dptr = (uint8_t *)m;
266 data.dsize = talloc_get_size(m);
267 return data;
271 loop over a marshalling buffer
273 - pass r==NULL to start
274 - loop the number of times indicated by m->count
276 static struct ctdb_rec_data *db_ctdb_marshall_loop_next(struct ctdb_marshall_buffer *m, struct ctdb_rec_data *r,
277 uint32_t *reqid,
278 struct ctdb_ltdb_header *header,
279 TDB_DATA *key, TDB_DATA *data)
281 if (r == NULL) {
282 r = (struct ctdb_rec_data *)&m->data[0];
283 } else {
284 r = (struct ctdb_rec_data *)(r->length + (uint8_t *)r);
287 if (reqid != NULL) {
288 *reqid = r->reqid;
291 if (key != NULL) {
292 key->dptr = &r->data[0];
293 key->dsize = r->keylen;
295 if (data != NULL) {
296 data->dptr = &r->data[r->keylen];
297 data->dsize = r->datalen;
298 if (header != NULL) {
299 data->dptr += sizeof(*header);
300 data->dsize -= sizeof(*header);
304 if (header != NULL) {
305 if (r->datalen < sizeof(*header)) {
306 return NULL;
308 *header = *(struct ctdb_ltdb_header *)&r->data[r->keylen];
311 return r;
315 * CTDB transaction destructor
317 static int db_ctdb_transaction_destructor(struct db_ctdb_transaction_handle *h)
319 NTSTATUS status;
321 status = g_lock_unlock(h->ctx->lock_ctx, h->lock_name);
322 if (!NT_STATUS_IS_OK(status)) {
323 DEBUG(0, ("g_lock_unlock failed for %s: %s\n", h->lock_name,
324 nt_errstr(status)));
325 return -1;
327 return 0;
331 * CTDB dbwrap API: transaction_start function
332 * starts a transaction on a persistent database
334 static int db_ctdb_transaction_start(struct db_context *db)
336 struct db_ctdb_transaction_handle *h;
337 NTSTATUS status;
338 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
339 struct db_ctdb_ctx);
341 if (!db->persistent) {
342 DEBUG(0,("transactions not supported on non-persistent database 0x%08x\n",
343 ctx->db_id));
344 return -1;
347 if (ctx->transaction) {
348 ctx->transaction->nesting++;
349 DEBUG(5, (__location__ " transaction start on db 0x%08x: nesting %d -> %d\n",
350 ctx->db_id, ctx->transaction->nesting - 1, ctx->transaction->nesting));
351 return 0;
354 h = talloc_zero(db, struct db_ctdb_transaction_handle);
355 if (h == NULL) {
356 DEBUG(0,(__location__ " oom for transaction handle\n"));
357 return -1;
360 h->ctx = ctx;
362 h->lock_name = talloc_asprintf(h, "transaction_db_0x%08x",
363 (unsigned int)ctx->db_id);
364 if (h->lock_name == NULL) {
365 DEBUG(0, ("talloc_asprintf failed\n"));
366 TALLOC_FREE(h);
367 return -1;
371 * Wait a day, i.e. forever...
373 status = g_lock_lock(ctx->lock_ctx, h->lock_name, G_LOCK_WRITE,
374 timeval_set(86400, 0));
375 if (!NT_STATUS_IS_OK(status)) {
376 DEBUG(0, ("g_lock_lock failed: %s\n", nt_errstr(status)));
377 TALLOC_FREE(h);
378 return -1;
381 talloc_set_destructor(h, db_ctdb_transaction_destructor);
383 ctx->transaction = h;
385 DEBUG(5,(__location__ " transaction started on db 0x%08x\n", ctx->db_id));
387 return 0;
390 static bool pull_newest_from_marshall_buffer(struct ctdb_marshall_buffer *buf,
391 TDB_DATA key,
392 struct ctdb_ltdb_header *pheader,
393 TALLOC_CTX *mem_ctx,
394 TDB_DATA *pdata)
396 struct ctdb_rec_data *rec = NULL;
397 struct ctdb_ltdb_header h;
398 bool found = false;
399 TDB_DATA data;
400 int i;
402 if (buf == NULL) {
403 return false;
406 ZERO_STRUCT(h);
407 ZERO_STRUCT(data);
410 * Walk the list of records written during this
411 * transaction. If we want to read one we have already
412 * written, return the last written sample. Thus we do not do
413 * a "break;" for the first hit, this record might have been
414 * overwritten later.
417 for (i=0; i<buf->count; i++) {
418 TDB_DATA tkey, tdata;
419 uint32_t reqid;
420 struct ctdb_ltdb_header hdr;
422 ZERO_STRUCT(hdr);
424 rec = db_ctdb_marshall_loop_next(buf, rec, &reqid, &hdr, &tkey,
425 &tdata);
426 if (rec == NULL) {
427 return false;
430 if (tdb_data_equal(key, tkey)) {
431 found = true;
432 data = tdata;
433 h = hdr;
437 if (!found) {
438 return false;
441 if (pdata != NULL) {
442 data.dptr = (uint8_t *)talloc_memdup(mem_ctx, data.dptr,
443 data.dsize);
444 if ((data.dsize != 0) && (data.dptr == NULL)) {
445 return false;
447 *pdata = data;
450 if (pheader != NULL) {
451 *pheader = h;
454 return true;
458 fetch a record inside a transaction
460 static NTSTATUS db_ctdb_transaction_fetch(struct db_ctdb_ctx *db,
461 TALLOC_CTX *mem_ctx,
462 TDB_DATA key, TDB_DATA *data)
464 struct db_ctdb_transaction_handle *h = db->transaction;
465 NTSTATUS status;
466 bool found;
468 found = pull_newest_from_marshall_buffer(h->m_write, key, NULL,
469 mem_ctx, data);
470 if (found) {
471 return NT_STATUS_OK;
474 status = db_ctdb_ltdb_fetch(h->ctx, key, NULL, mem_ctx, data);
476 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_FOUND)) {
477 *data = tdb_null;
480 return status;
484 * Fetch a record from a persistent database
485 * without record locking and without an active transaction.
487 * This just fetches from the local database copy.
488 * Since the databases are kept in syc cluster-wide,
489 * there is no point in doing a ctdb call to fetch the
490 * record from the lmaster. It does even harm since migration
491 * of records bump their RSN and hence render the persistent
492 * database inconsistent.
494 static NTSTATUS db_ctdb_fetch_persistent(struct db_ctdb_ctx *db,
495 TALLOC_CTX *mem_ctx,
496 TDB_DATA key, TDB_DATA *data)
498 NTSTATUS status;
500 status = db_ctdb_ltdb_fetch(db, key, NULL, mem_ctx, data);
502 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_FOUND)) {
503 *data = tdb_null;
506 return status;
509 static NTSTATUS db_ctdb_store_transaction(struct db_record *rec, TDB_DATA data, int flag);
510 static NTSTATUS db_ctdb_delete_transaction(struct db_record *rec);
512 static struct db_record *db_ctdb_fetch_locked_transaction(struct db_ctdb_ctx *ctx,
513 TALLOC_CTX *mem_ctx,
514 TDB_DATA key)
516 struct db_record *result;
517 TDB_DATA ctdb_data;
519 if (!(result = talloc(mem_ctx, struct db_record))) {
520 DEBUG(0, ("talloc failed\n"));
521 return NULL;
524 result->private_data = ctx->transaction;
526 result->key.dsize = key.dsize;
527 result->key.dptr = (uint8_t *)talloc_memdup(result, key.dptr,
528 key.dsize);
529 if (result->key.dptr == NULL) {
530 DEBUG(0, ("talloc failed\n"));
531 TALLOC_FREE(result);
532 return NULL;
535 result->store = db_ctdb_store_transaction;
536 result->delete_rec = db_ctdb_delete_transaction;
538 if (pull_newest_from_marshall_buffer(ctx->transaction->m_write, key,
539 NULL, result, &result->value)) {
540 return result;
543 ctdb_data = tdb_fetch_compat(ctx->wtdb->tdb, key);
544 if (ctdb_data.dptr == NULL) {
545 /* create the record */
546 result->value = tdb_null;
547 return result;
550 result->value.dsize = ctdb_data.dsize - sizeof(struct ctdb_ltdb_header);
551 result->value.dptr = NULL;
553 if ((result->value.dsize != 0)
554 && !(result->value.dptr = (uint8_t *)talloc_memdup(
555 result, ctdb_data.dptr + sizeof(struct ctdb_ltdb_header),
556 result->value.dsize))) {
557 DEBUG(0, ("talloc failed\n"));
558 TALLOC_FREE(result);
561 SAFE_FREE(ctdb_data.dptr);
563 return result;
566 static int db_ctdb_record_destructor(struct db_record **recp)
568 struct db_record *rec = talloc_get_type_abort(*recp, struct db_record);
569 struct db_ctdb_transaction_handle *h = talloc_get_type_abort(
570 rec->private_data, struct db_ctdb_transaction_handle);
571 int ret = h->ctx->db->transaction_commit(h->ctx->db);
572 if (ret != 0) {
573 DEBUG(0,(__location__ " transaction_commit failed\n"));
575 return 0;
579 auto-create a transaction for persistent databases
581 static struct db_record *db_ctdb_fetch_locked_persistent(struct db_ctdb_ctx *ctx,
582 TALLOC_CTX *mem_ctx,
583 TDB_DATA key)
585 int res;
586 struct db_record *rec, **recp;
588 res = db_ctdb_transaction_start(ctx->db);
589 if (res == -1) {
590 return NULL;
593 rec = db_ctdb_fetch_locked_transaction(ctx, mem_ctx, key);
594 if (rec == NULL) {
595 ctx->db->transaction_cancel(ctx->db);
596 return NULL;
599 /* destroy this transaction when we release the lock */
600 recp = talloc(rec, struct db_record *);
601 if (recp == NULL) {
602 ctx->db->transaction_cancel(ctx->db);
603 talloc_free(rec);
604 return NULL;
606 *recp = rec;
607 talloc_set_destructor(recp, db_ctdb_record_destructor);
608 return rec;
613 stores a record inside a transaction
615 static NTSTATUS db_ctdb_transaction_store(struct db_ctdb_transaction_handle *h,
616 TDB_DATA key, TDB_DATA data)
618 TALLOC_CTX *tmp_ctx = talloc_new(h);
619 TDB_DATA rec;
620 struct ctdb_ltdb_header header;
622 ZERO_STRUCT(header);
624 /* we need the header so we can update the RSN */
626 if (!pull_newest_from_marshall_buffer(h->m_write, key, &header,
627 NULL, NULL)) {
629 rec = tdb_fetch_compat(h->ctx->wtdb->tdb, key);
631 if (rec.dptr != NULL) {
632 memcpy(&header, rec.dptr,
633 sizeof(struct ctdb_ltdb_header));
634 rec.dsize -= sizeof(struct ctdb_ltdb_header);
637 * a special case, we are writing the same
638 * data that is there now
640 if (data.dsize == rec.dsize &&
641 memcmp(data.dptr,
642 rec.dptr + sizeof(struct ctdb_ltdb_header),
643 data.dsize) == 0) {
644 SAFE_FREE(rec.dptr);
645 talloc_free(tmp_ctx);
646 return NT_STATUS_OK;
649 SAFE_FREE(rec.dptr);
652 header.dmaster = get_my_vnn();
653 header.rsn++;
655 h->m_write = db_ctdb_marshall_add(h, h->m_write, h->ctx->db_id, 0, key, &header, data);
656 if (h->m_write == NULL) {
657 DEBUG(0,(__location__ " Failed to add to marshalling record\n"));
658 talloc_free(tmp_ctx);
659 return NT_STATUS_NO_MEMORY;
662 talloc_free(tmp_ctx);
663 return NT_STATUS_OK;
668 a record store inside a transaction
670 static NTSTATUS db_ctdb_store_transaction(struct db_record *rec, TDB_DATA data, int flag)
672 struct db_ctdb_transaction_handle *h = talloc_get_type_abort(
673 rec->private_data, struct db_ctdb_transaction_handle);
674 NTSTATUS status;
676 status = db_ctdb_transaction_store(h, rec->key, data);
677 return status;
681 a record delete inside a transaction
683 static NTSTATUS db_ctdb_delete_transaction(struct db_record *rec)
685 struct db_ctdb_transaction_handle *h = talloc_get_type_abort(
686 rec->private_data, struct db_ctdb_transaction_handle);
687 NTSTATUS status;
689 status = db_ctdb_transaction_store(h, rec->key, tdb_null);
690 return status;
694 * Fetch the db sequence number of a persistent db directly from the db.
696 static NTSTATUS db_ctdb_fetch_db_seqnum_from_db(struct db_ctdb_ctx *db,
697 uint64_t *seqnum)
699 NTSTATUS status;
700 const char *keyname = CTDB_DB_SEQNUM_KEY;
701 TDB_DATA key;
702 TDB_DATA data;
703 struct ctdb_ltdb_header header;
704 TALLOC_CTX *mem_ctx = talloc_stackframe();
706 if (seqnum == NULL) {
707 return NT_STATUS_INVALID_PARAMETER;
710 key = string_term_tdb_data(keyname);
712 status = db_ctdb_ltdb_fetch(db, key, &header, mem_ctx, &data);
713 if (!NT_STATUS_IS_OK(status) &&
714 !NT_STATUS_EQUAL(status, NT_STATUS_NOT_FOUND))
716 goto done;
719 status = NT_STATUS_OK;
721 if (data.dsize != sizeof(uint64_t)) {
722 *seqnum = 0;
723 goto done;
726 *seqnum = *(uint64_t *)data.dptr;
728 done:
729 TALLOC_FREE(mem_ctx);
730 return status;
734 * Store the database sequence number inside a transaction.
736 static NTSTATUS db_ctdb_store_db_seqnum(struct db_ctdb_transaction_handle *h,
737 uint64_t seqnum)
739 NTSTATUS status;
740 const char *keyname = CTDB_DB_SEQNUM_KEY;
741 TDB_DATA key;
742 TDB_DATA data;
744 key = string_term_tdb_data(keyname);
746 data.dptr = (uint8_t *)&seqnum;
747 data.dsize = sizeof(uint64_t);
749 status = db_ctdb_transaction_store(h, key, data);
751 return status;
755 commit a transaction
757 static int db_ctdb_transaction_commit(struct db_context *db)
759 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
760 struct db_ctdb_ctx);
761 NTSTATUS rets;
762 int status;
763 struct db_ctdb_transaction_handle *h = ctx->transaction;
764 uint64_t old_seqnum, new_seqnum;
765 int ret;
767 if (h == NULL) {
768 DEBUG(0,(__location__ " transaction commit with no open transaction on db 0x%08x\n", ctx->db_id));
769 return -1;
772 if (h->nested_cancel) {
773 db->transaction_cancel(db);
774 DEBUG(5,(__location__ " Failed transaction commit after nested cancel\n"));
775 return -1;
778 if (h->nesting != 0) {
779 h->nesting--;
780 DEBUG(5, (__location__ " transaction commit on db 0x%08x: nesting %d -> %d\n",
781 ctx->db_id, ctx->transaction->nesting + 1, ctx->transaction->nesting));
782 return 0;
785 if (h->m_write == NULL) {
787 * No changes were made, so don't change the seqnum,
788 * don't push to other node, just exit with success.
790 ret = 0;
791 goto done;
794 DEBUG(5,(__location__ " transaction commit on db 0x%08x\n", ctx->db_id));
797 * As the last db action before committing, bump the database sequence
798 * number. Note that this undoes all changes to the seqnum records
799 * performed under the transaction. This record is not meant to be
800 * modified by user interaction. It is for internal use only...
802 rets = db_ctdb_fetch_db_seqnum_from_db(ctx, &old_seqnum);
803 if (!NT_STATUS_IS_OK(rets)) {
804 DEBUG(1, (__location__ " failed to fetch the db sequence number "
805 "in transaction commit on db 0x%08x\n", ctx->db_id));
806 ret = -1;
807 goto done;
810 new_seqnum = old_seqnum + 1;
812 rets = db_ctdb_store_db_seqnum(h, new_seqnum);
813 if (!NT_STATUS_IS_OK(rets)) {
814 DEBUG(1, (__location__ "failed to store the db sequence number "
815 " in transaction commit on db 0x%08x\n", ctx->db_id));
816 ret = -1;
817 goto done;
820 again:
821 /* tell ctdbd to commit to the other nodes */
822 rets = ctdbd_control_local(messaging_ctdbd_connection(),
823 CTDB_CONTROL_TRANS3_COMMIT,
824 h->ctx->db_id, 0,
825 db_ctdb_marshall_finish(h->m_write),
826 NULL, NULL, &status);
827 if (!NT_STATUS_IS_OK(rets) || status != 0) {
829 * The TRANS3_COMMIT control should only possibly fail when a
830 * recovery has been running concurrently. In any case, the db
831 * will be the same on all nodes, either the new copy or the
832 * old copy. This can be detected by comparing the old and new
833 * local sequence numbers.
835 rets = db_ctdb_fetch_db_seqnum_from_db(ctx, &new_seqnum);
836 if (!NT_STATUS_IS_OK(rets)) {
837 DEBUG(1, (__location__ " failed to refetch db sequence "
838 "number after failed TRANS3_COMMIT\n"));
839 ret = -1;
840 goto done;
843 if (new_seqnum == old_seqnum) {
844 /* Recovery prevented all our changes: retry. */
845 goto again;
846 } else if (new_seqnum != (old_seqnum + 1)) {
847 DEBUG(0, (__location__ " ERROR: new_seqnum[%lu] != "
848 "old_seqnum[%lu] + (0 or 1) after failed "
849 "TRANS3_COMMIT - this should not happen!\n",
850 (unsigned long)new_seqnum,
851 (unsigned long)old_seqnum));
852 ret = -1;
853 goto done;
856 * Recovery propagated our changes to all nodes, completing
857 * our commit for us - succeed.
861 ret = 0;
863 done:
864 h->ctx->transaction = NULL;
865 talloc_free(h);
866 return ret;
871 cancel a transaction
873 static int db_ctdb_transaction_cancel(struct db_context *db)
875 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
876 struct db_ctdb_ctx);
877 struct db_ctdb_transaction_handle *h = ctx->transaction;
879 if (h == NULL) {
880 DEBUG(0,(__location__ " transaction cancel with no open transaction on db 0x%08x\n", ctx->db_id));
881 return -1;
884 if (h->nesting != 0) {
885 h->nesting--;
886 h->nested_cancel = true;
887 DEBUG(5, (__location__ " transaction cancel on db 0x%08x: nesting %d -> %d\n",
888 ctx->db_id, ctx->transaction->nesting + 1, ctx->transaction->nesting));
889 return 0;
892 DEBUG(5,(__location__ " Cancel transaction on db 0x%08x\n", ctx->db_id));
894 ctx->transaction = NULL;
895 talloc_free(h);
896 return 0;
900 static NTSTATUS db_ctdb_store(struct db_record *rec, TDB_DATA data, int flag)
902 struct db_ctdb_rec *crec = talloc_get_type_abort(
903 rec->private_data, struct db_ctdb_rec);
905 return db_ctdb_ltdb_store(crec->ctdb_ctx, rec->key, &(crec->header), data);
910 #ifdef HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL
911 static NTSTATUS db_ctdb_send_schedule_for_deletion(struct db_record *rec)
913 NTSTATUS status;
914 struct ctdb_control_schedule_for_deletion *dd;
915 TDB_DATA indata;
916 int cstatus;
917 struct db_ctdb_rec *crec = talloc_get_type_abort(
918 rec->private_data, struct db_ctdb_rec);
920 indata.dsize = offsetof(struct ctdb_control_schedule_for_deletion, key) + rec->key.dsize;
921 indata.dptr = talloc_zero_array(crec, uint8_t, indata.dsize);
922 if (indata.dptr == NULL) {
923 DEBUG(0, (__location__ " talloc failed!\n"));
924 return NT_STATUS_NO_MEMORY;
927 dd = (struct ctdb_control_schedule_for_deletion *)(void *)indata.dptr;
928 dd->db_id = crec->ctdb_ctx->db_id;
929 dd->hdr = crec->header;
930 dd->keylen = rec->key.dsize;
931 memcpy(dd->key, rec->key.dptr, rec->key.dsize);
933 status = ctdbd_control_local(messaging_ctdbd_connection(),
934 CTDB_CONTROL_SCHEDULE_FOR_DELETION,
935 crec->ctdb_ctx->db_id,
936 CTDB_CTRL_FLAG_NOREPLY, /* flags */
937 indata,
938 NULL, /* outdata */
939 NULL, /* errmsg */
940 &cstatus);
941 talloc_free(indata.dptr);
943 if (!NT_STATUS_IS_OK(status) || cstatus != 0) {
944 DEBUG(1, (__location__ " Error sending local control "
945 "SCHEDULE_FOR_DELETION: %s, cstatus = %d\n",
946 nt_errstr(status), cstatus));
947 if (NT_STATUS_IS_OK(status)) {
948 status = NT_STATUS_UNSUCCESSFUL;
952 return status;
954 #endif
956 static NTSTATUS db_ctdb_delete(struct db_record *rec)
958 TDB_DATA data;
959 NTSTATUS status;
962 * We have to store the header with empty data. TODO: Fix the
963 * tdb-level cleanup
966 ZERO_STRUCT(data);
968 status = db_ctdb_store(rec, data, 0);
969 if (!NT_STATUS_IS_OK(status)) {
970 return status;
973 #ifdef HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL
974 status = db_ctdb_send_schedule_for_deletion(rec);
975 #endif
977 return status;
980 static int db_ctdb_record_destr(struct db_record* data)
982 struct db_ctdb_rec *crec = talloc_get_type_abort(
983 data->private_data, struct db_ctdb_rec);
984 int threshold;
986 DEBUG(10, (DEBUGLEVEL > 10
987 ? "Unlocking db %u key %s\n"
988 : "Unlocking db %u key %.20s\n",
989 (int)crec->ctdb_ctx->db_id,
990 hex_encode_talloc(data, (unsigned char *)data->key.dptr,
991 data->key.dsize)));
993 tdb_chainunlock(crec->ctdb_ctx->wtdb->tdb, data->key);
995 threshold = lp_ctdb_locktime_warn_threshold();
996 if (threshold != 0) {
997 double timediff = timeval_elapsed(&crec->lock_time);
998 if ((timediff * 1000) > threshold) {
999 DEBUG(0, ("Held tdb lock %f seconds\n", timediff));
1003 return 0;
1007 * Check whether we have a valid local copy of the given record,
1008 * either for reading or for writing.
1010 static bool db_ctdb_can_use_local_copy(TDB_DATA ctdb_data, bool read_only)
1012 struct ctdb_ltdb_header *hdr;
1014 if (ctdb_data.dptr == NULL)
1015 return false;
1017 if (ctdb_data.dsize < sizeof(struct ctdb_ltdb_header))
1018 return false;
1020 hdr = (struct ctdb_ltdb_header *)ctdb_data.dptr;
1022 #ifdef HAVE_CTDB_WANT_READONLY_DECL
1023 if (hdr->dmaster != get_my_vnn()) {
1024 /* If we're not dmaster, it must be r/o copy. */
1025 return read_only && (hdr->flags & CTDB_REC_RO_HAVE_READONLY);
1028 /* If we want write access, noone can have r/o copies. */
1029 return read_only || !(hdr->flags & CTDB_REC_RO_HAVE_DELEGATIONS);
1030 #else
1031 return (hdr->dmaster == get_my_vnn());
1032 #endif
1035 static struct db_record *fetch_locked_internal(struct db_ctdb_ctx *ctx,
1036 TALLOC_CTX *mem_ctx,
1037 TDB_DATA key,
1038 bool tryonly)
1040 struct db_record *result;
1041 struct db_ctdb_rec *crec;
1042 NTSTATUS status;
1043 TDB_DATA ctdb_data;
1044 int migrate_attempts = 0;
1045 int lockret;
1047 if (!(result = talloc(mem_ctx, struct db_record))) {
1048 DEBUG(0, ("talloc failed\n"));
1049 return NULL;
1052 if (!(crec = talloc_zero(result, struct db_ctdb_rec))) {
1053 DEBUG(0, ("talloc failed\n"));
1054 TALLOC_FREE(result);
1055 return NULL;
1058 result->private_data = (void *)crec;
1059 crec->ctdb_ctx = ctx;
1061 result->key.dsize = key.dsize;
1062 result->key.dptr = (uint8_t *)talloc_memdup(result, key.dptr,
1063 key.dsize);
1064 if (result->key.dptr == NULL) {
1065 DEBUG(0, ("talloc failed\n"));
1066 TALLOC_FREE(result);
1067 return NULL;
1071 * Do a blocking lock on the record
1073 again:
1075 if (DEBUGLEVEL >= 10) {
1076 char *keystr = hex_encode_talloc(result, key.dptr, key.dsize);
1077 DEBUG(10, (DEBUGLEVEL > 10
1078 ? "Locking db %u key %s\n"
1079 : "Locking db %u key %.20s\n",
1080 (int)crec->ctdb_ctx->db_id, keystr));
1081 TALLOC_FREE(keystr);
1084 lockret = tryonly
1085 ? tdb_chainlock_nonblock(ctx->wtdb->tdb, key)
1086 : tdb_chainlock(ctx->wtdb->tdb, key);
1087 if (lockret != 0) {
1088 DEBUG(3, ("tdb_chainlock failed\n"));
1089 TALLOC_FREE(result);
1090 return NULL;
1093 result->store = db_ctdb_store;
1094 result->delete_rec = db_ctdb_delete;
1095 talloc_set_destructor(result, db_ctdb_record_destr);
1097 ctdb_data = tdb_fetch_compat(ctx->wtdb->tdb, key);
1100 * See if we have a valid record and we are the dmaster. If so, we can
1101 * take the shortcut and just return it.
1104 if (!db_ctdb_can_use_local_copy(ctdb_data, false)) {
1105 SAFE_FREE(ctdb_data.dptr);
1106 tdb_chainunlock(ctx->wtdb->tdb, key);
1107 talloc_set_destructor(result, NULL);
1109 if (tryonly && (migrate_attempts != 0)) {
1110 DEBUG(5, ("record migrated away again\n"));
1111 TALLOC_FREE(result);
1112 return NULL;
1115 migrate_attempts += 1;
1117 DEBUG(10, ("ctdb_data.dptr = %p, dmaster = %u (%u) %u\n",
1118 ctdb_data.dptr, ctdb_data.dptr ?
1119 ((struct ctdb_ltdb_header *)ctdb_data.dptr)->dmaster : -1,
1120 get_my_vnn(),
1121 ctdb_data.dptr ?
1122 ((struct ctdb_ltdb_header *)ctdb_data.dptr)->flags : 0));
1124 status = ctdbd_migrate(messaging_ctdbd_connection(), ctx->db_id,
1125 key);
1126 if (!NT_STATUS_IS_OK(status)) {
1127 DEBUG(5, ("ctdb_migrate failed: %s\n",
1128 nt_errstr(status)));
1129 TALLOC_FREE(result);
1130 return NULL;
1132 /* now its migrated, try again */
1133 goto again;
1136 if (migrate_attempts > 10) {
1137 DEBUG(0, ("db_ctdb_fetch_locked for %s key %s needed %d "
1138 "attempts\n", tdb_name(ctx->wtdb->tdb),
1139 hex_encode_talloc(talloc_tos(),
1140 (unsigned char *)key.dptr,
1141 key.dsize),
1142 migrate_attempts));
1145 GetTimeOfDay(&crec->lock_time);
1147 memcpy(&crec->header, ctdb_data.dptr, sizeof(crec->header));
1149 result->value.dsize = ctdb_data.dsize - sizeof(crec->header);
1150 result->value.dptr = NULL;
1152 if ((result->value.dsize != 0)
1153 && !(result->value.dptr = (uint8_t *)talloc_memdup(
1154 result, ctdb_data.dptr + sizeof(crec->header),
1155 result->value.dsize))) {
1156 DEBUG(0, ("talloc failed\n"));
1157 TALLOC_FREE(result);
1160 SAFE_FREE(ctdb_data.dptr);
1162 return result;
1165 static struct db_record *db_ctdb_fetch_locked(struct db_context *db,
1166 TALLOC_CTX *mem_ctx,
1167 TDB_DATA key)
1169 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1170 struct db_ctdb_ctx);
1172 if (ctx->transaction != NULL) {
1173 return db_ctdb_fetch_locked_transaction(ctx, mem_ctx, key);
1176 if (db->persistent) {
1177 return db_ctdb_fetch_locked_persistent(ctx, mem_ctx, key);
1180 return fetch_locked_internal(ctx, mem_ctx, key, false);
1183 static struct db_record *db_ctdb_try_fetch_locked(struct db_context *db,
1184 TALLOC_CTX *mem_ctx,
1185 TDB_DATA key)
1187 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1188 struct db_ctdb_ctx);
1190 if (ctx->transaction != NULL) {
1191 return db_ctdb_fetch_locked_transaction(ctx, mem_ctx, key);
1194 if (db->persistent) {
1195 return db_ctdb_fetch_locked_persistent(ctx, mem_ctx, key);
1198 return fetch_locked_internal(ctx, mem_ctx, key, true);
1202 fetch (unlocked, no migration) operation on ctdb
1204 static NTSTATUS db_ctdb_fetch(struct db_context *db, TALLOC_CTX *mem_ctx,
1205 TDB_DATA key, TDB_DATA *data)
1207 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1208 struct db_ctdb_ctx);
1209 NTSTATUS status;
1210 TDB_DATA ctdb_data;
1212 if (ctx->transaction) {
1213 return db_ctdb_transaction_fetch(ctx, mem_ctx, key, data);
1216 if (db->persistent) {
1217 return db_ctdb_fetch_persistent(ctx, mem_ctx, key, data);
1220 /* try a direct fetch */
1221 ctdb_data = tdb_fetch_compat(ctx->wtdb->tdb, key);
1224 * See if we have a valid record and we are the dmaster. If so, we can
1225 * take the shortcut and just return it.
1226 * we bypass the dmaster check for persistent databases
1228 if (db_ctdb_can_use_local_copy(ctdb_data, true)) {
1229 /* we are the dmaster - avoid the ctdb protocol op */
1231 data->dsize = ctdb_data.dsize - sizeof(struct ctdb_ltdb_header);
1233 data->dptr = (uint8_t *)talloc_memdup(
1234 mem_ctx, ctdb_data.dptr+sizeof(struct ctdb_ltdb_header),
1235 data->dsize);
1237 SAFE_FREE(ctdb_data.dptr);
1239 if (data->dptr == NULL) {
1240 return NT_STATUS_NO_MEMORY;
1242 return NT_STATUS_OK;
1245 SAFE_FREE(ctdb_data.dptr);
1248 * We weren't able to get it locally - ask ctdb to fetch it for us.
1249 * If we already had *something*, it's probably worth making a local
1250 * read-only copy.
1252 status = ctdbd_fetch(messaging_ctdbd_connection(), ctx->db_id, key,
1253 mem_ctx, data,
1254 ctdb_data.dsize >= sizeof(struct ctdb_ltdb_header));
1255 if (!NT_STATUS_IS_OK(status)) {
1256 DEBUG(5, ("ctdbd_fetch failed: %s\n", nt_errstr(status)));
1259 return status;
1262 static NTSTATUS db_ctdb_parse_record(struct db_context *db, TDB_DATA key,
1263 void (*parser)(TDB_DATA key,
1264 TDB_DATA data,
1265 void *private_data),
1266 void *private_data)
1268 NTSTATUS status;
1269 TDB_DATA data;
1271 status = db_ctdb_fetch(db, talloc_tos(), key, &data);
1272 if (!NT_STATUS_IS_OK(status)) {
1273 return status;
1275 parser(key, data, private_data);
1276 TALLOC_FREE(data.dptr);
1277 return NT_STATUS_OK;
1280 struct traverse_state {
1281 struct db_context *db;
1282 int (*fn)(struct db_record *rec, void *private_data);
1283 void *private_data;
1284 int count;
1287 static void traverse_callback(TDB_DATA key, TDB_DATA data, void *private_data)
1289 struct traverse_state *state = (struct traverse_state *)private_data;
1290 struct db_record *rec;
1291 TALLOC_CTX *tmp_ctx = talloc_new(state->db);
1292 /* we have to give them a locked record to prevent races */
1293 rec = db_ctdb_fetch_locked(state->db, tmp_ctx, key);
1294 if (rec && rec->value.dsize > 0) {
1295 state->fn(rec, state->private_data);
1297 talloc_free(tmp_ctx);
1300 static int traverse_persistent_callback(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf,
1301 void *private_data)
1303 struct traverse_state *state = (struct traverse_state *)private_data;
1304 struct db_record *rec;
1305 TALLOC_CTX *tmp_ctx = talloc_new(state->db);
1306 int ret = 0;
1309 * Skip the __db_sequence_number__ key:
1310 * This is used for persistent transactions internally.
1312 if (kbuf.dsize == strlen(CTDB_DB_SEQNUM_KEY) + 1 &&
1313 strcmp((const char*)kbuf.dptr, CTDB_DB_SEQNUM_KEY) == 0)
1315 goto done;
1318 /* we have to give them a locked record to prevent races */
1319 rec = db_ctdb_fetch_locked(state->db, tmp_ctx, kbuf);
1320 if (rec && rec->value.dsize > 0) {
1321 ret = state->fn(rec, state->private_data);
1324 done:
1325 talloc_free(tmp_ctx);
1326 return ret;
1329 /* wrapper to use traverse_persistent_callback with dbwrap */
1330 static int traverse_persistent_callback_dbwrap(struct db_record *rec, void* data)
1332 return traverse_persistent_callback(NULL, rec->key, rec->value, data);
1336 static int db_ctdb_traverse(struct db_context *db,
1337 int (*fn)(struct db_record *rec,
1338 void *private_data),
1339 void *private_data)
1341 NTSTATUS status;
1342 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1343 struct db_ctdb_ctx);
1344 struct traverse_state state;
1346 state.db = db;
1347 state.fn = fn;
1348 state.private_data = private_data;
1349 state.count = 0;
1351 if (db->persistent) {
1352 struct tdb_context *ltdb = ctx->wtdb->tdb;
1353 int ret;
1355 /* for persistent databases we don't need to do a ctdb traverse,
1356 we can do a faster local traverse */
1357 ret = tdb_traverse(ltdb, traverse_persistent_callback, &state);
1358 if (ret < 0) {
1359 return ret;
1361 if (ctx->transaction && ctx->transaction->m_write) {
1363 * we now have to handle keys not yet
1364 * present at transaction start
1366 struct db_context *newkeys = db_open_rbt(talloc_tos());
1367 struct ctdb_marshall_buffer *mbuf = ctx->transaction->m_write;
1368 struct ctdb_rec_data *rec=NULL;
1369 int i;
1370 int count = 0;
1372 if (newkeys == NULL) {
1373 return -1;
1376 for (i=0; i<mbuf->count; i++) {
1377 TDB_DATA key;
1378 rec =db_ctdb_marshall_loop_next(mbuf, rec,
1379 NULL, NULL,
1380 &key, NULL);
1381 SMB_ASSERT(rec != NULL);
1383 if (!tdb_exists(ltdb, key)) {
1384 dbwrap_store(newkeys, key, tdb_null, 0);
1387 status = dbwrap_traverse(newkeys,
1388 traverse_persistent_callback_dbwrap,
1389 &state,
1390 &count);
1391 talloc_free(newkeys);
1392 if (!NT_STATUS_IS_OK(status)) {
1393 return -1;
1395 ret += count;
1397 return ret;
1400 status = ctdbd_traverse(ctx->db_id, traverse_callback, &state);
1401 if (!NT_STATUS_IS_OK(status)) {
1402 return -1;
1404 return state.count;
1407 static NTSTATUS db_ctdb_store_deny(struct db_record *rec, TDB_DATA data, int flag)
1409 return NT_STATUS_MEDIA_WRITE_PROTECTED;
1412 static NTSTATUS db_ctdb_delete_deny(struct db_record *rec)
1414 return NT_STATUS_MEDIA_WRITE_PROTECTED;
1417 static void traverse_read_callback(TDB_DATA key, TDB_DATA data, void *private_data)
1419 struct traverse_state *state = (struct traverse_state *)private_data;
1420 struct db_record rec;
1421 rec.key = key;
1422 rec.value = data;
1423 rec.store = db_ctdb_store_deny;
1424 rec.delete_rec = db_ctdb_delete_deny;
1425 rec.private_data = state->db;
1426 state->fn(&rec, state->private_data);
1427 state->count++;
1430 static int traverse_persistent_callback_read(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf,
1431 void *private_data)
1433 struct traverse_state *state = (struct traverse_state *)private_data;
1434 struct db_record rec;
1437 * Skip the __db_sequence_number__ key:
1438 * This is used for persistent transactions internally.
1440 if (kbuf.dsize == strlen(CTDB_DB_SEQNUM_KEY) + 1 &&
1441 strcmp((const char*)kbuf.dptr, CTDB_DB_SEQNUM_KEY) == 0)
1443 return 0;
1446 rec.key = kbuf;
1447 rec.value = dbuf;
1448 rec.store = db_ctdb_store_deny;
1449 rec.delete_rec = db_ctdb_delete_deny;
1450 rec.private_data = state->db;
1452 if (rec.value.dsize <= sizeof(struct ctdb_ltdb_header)) {
1453 /* a deleted record */
1454 return 0;
1456 rec.value.dsize -= sizeof(struct ctdb_ltdb_header);
1457 rec.value.dptr += sizeof(struct ctdb_ltdb_header);
1459 state->count++;
1460 return state->fn(&rec, state->private_data);
1463 static int db_ctdb_traverse_read(struct db_context *db,
1464 int (*fn)(struct db_record *rec,
1465 void *private_data),
1466 void *private_data)
1468 NTSTATUS status;
1469 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1470 struct db_ctdb_ctx);
1471 struct traverse_state state;
1473 state.db = db;
1474 state.fn = fn;
1475 state.private_data = private_data;
1476 state.count = 0;
1478 if (db->persistent) {
1479 /* for persistent databases we don't need to do a ctdb traverse,
1480 we can do a faster local traverse */
1481 return tdb_traverse_read(ctx->wtdb->tdb, traverse_persistent_callback_read, &state);
1484 status = ctdbd_traverse(ctx->db_id, traverse_read_callback, &state);
1485 if (!NT_STATUS_IS_OK(status)) {
1486 return -1;
1488 return state.count;
1491 static int db_ctdb_get_seqnum(struct db_context *db)
1493 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1494 struct db_ctdb_ctx);
1495 return tdb_get_seqnum(ctx->wtdb->tdb);
1498 static void db_ctdb_id(struct db_context *db, const uint8_t **id,
1499 size_t *idlen)
1501 struct db_ctdb_ctx *ctx = talloc_get_type_abort(
1502 db->private_data, struct db_ctdb_ctx);
1504 *id = (uint8_t *)&ctx->db_id;
1505 *idlen = sizeof(ctx->db_id);
1508 struct db_context *db_open_ctdb(TALLOC_CTX *mem_ctx,
1509 const char *name,
1510 int hash_size, int tdb_flags,
1511 int open_flags, mode_t mode,
1512 enum dbwrap_lock_order lock_order)
1514 struct db_context *result;
1515 struct db_ctdb_ctx *db_ctdb;
1516 char *db_path;
1517 struct ctdbd_connection *conn;
1518 struct loadparm_context *lp_ctx;
1519 struct ctdb_db_priority prio;
1520 NTSTATUS status;
1521 int cstatus;
1523 if (!lp_clustering()) {
1524 DEBUG(10, ("Clustering disabled -- no ctdb\n"));
1525 return NULL;
1528 if (!(result = talloc_zero(mem_ctx, struct db_context))) {
1529 DEBUG(0, ("talloc failed\n"));
1530 TALLOC_FREE(result);
1531 return NULL;
1534 if (!(db_ctdb = talloc(result, struct db_ctdb_ctx))) {
1535 DEBUG(0, ("talloc failed\n"));
1536 TALLOC_FREE(result);
1537 return NULL;
1540 db_ctdb->transaction = NULL;
1541 db_ctdb->db = result;
1543 conn = messaging_ctdbd_connection();
1544 if (conn == NULL) {
1545 DEBUG(1, ("Could not connect to ctdb\n"));
1546 TALLOC_FREE(result);
1547 return NULL;
1550 if (!NT_STATUS_IS_OK(ctdbd_db_attach(conn, name, &db_ctdb->db_id, tdb_flags))) {
1551 DEBUG(0, ("ctdbd_db_attach failed for %s\n", name));
1552 TALLOC_FREE(result);
1553 return NULL;
1556 db_path = ctdbd_dbpath(conn, db_ctdb, db_ctdb->db_id);
1558 result->persistent = ((tdb_flags & TDB_CLEAR_IF_FIRST) == 0);
1559 result->lock_order = lock_order;
1561 /* only pass through specific flags */
1562 tdb_flags &= TDB_SEQNUM;
1564 /* honor permissions if user has specified O_CREAT */
1565 if (open_flags & O_CREAT) {
1566 chmod(db_path, mode);
1569 prio.db_id = db_ctdb->db_id;
1570 prio.priority = lock_order;
1572 status = ctdbd_control_local(
1573 conn, CTDB_CONTROL_SET_DB_PRIORITY, 0, 0,
1574 make_tdb_data((uint8_t *)&prio, sizeof(prio)),
1575 NULL, NULL, &cstatus);
1577 if (!NT_STATUS_IS_OK(status) || (cstatus != 0)) {
1578 DEBUG(1, ("CTDB_CONTROL_SET_DB_PRIORITY failed: %s, %d\n",
1579 nt_errstr(status), cstatus));
1580 TALLOC_FREE(result);
1581 return NULL;
1584 lp_ctx = loadparm_init_s3(db_path, loadparm_s3_helpers());
1586 db_ctdb->wtdb = tdb_wrap_open(db_ctdb, db_path, hash_size, tdb_flags,
1587 O_RDWR, 0, lp_ctx);
1588 talloc_unlink(db_path, lp_ctx);
1589 if (db_ctdb->wtdb == NULL) {
1590 DEBUG(0, ("Could not open tdb %s: %s\n", db_path, strerror(errno)));
1591 TALLOC_FREE(result);
1592 return NULL;
1594 talloc_free(db_path);
1596 if (result->persistent) {
1597 db_ctdb->lock_ctx = g_lock_ctx_init(db_ctdb,
1598 ctdb_conn_msg_ctx(conn));
1599 if (db_ctdb->lock_ctx == NULL) {
1600 DEBUG(0, ("g_lock_ctx_init failed\n"));
1601 TALLOC_FREE(result);
1602 return NULL;
1606 result->private_data = (void *)db_ctdb;
1607 result->fetch_locked = db_ctdb_fetch_locked;
1608 result->try_fetch_locked = db_ctdb_try_fetch_locked;
1609 result->parse_record = db_ctdb_parse_record;
1610 result->traverse = db_ctdb_traverse;
1611 result->traverse_read = db_ctdb_traverse_read;
1612 result->get_seqnum = db_ctdb_get_seqnum;
1613 result->transaction_start = db_ctdb_transaction_start;
1614 result->transaction_commit = db_ctdb_transaction_commit;
1615 result->transaction_cancel = db_ctdb_transaction_cancel;
1616 result->id = db_ctdb_id;
1617 result->stored_callback = NULL;
1619 DEBUG(3,("db_open_ctdb: opened database '%s' with dbid 0x%x\n",
1620 name, db_ctdb->db_id));
1622 return result;
1625 #else /* CLUSTER_SUPPORT */
1627 struct db_context *db_open_ctdb(TALLOC_CTX *mem_ctx,
1628 const char *name,
1629 int hash_size, int tdb_flags,
1630 int open_flags, mode_t mode,
1631 enum dbwrap_lock_order lock_order)
1633 DEBUG(3, ("db_open_ctdb: no cluster support!\n"));
1634 return NULL;
1637 #endif