dbwrap: Use tdb_null in db_ctdb_delete
[Samba/bjacke.git] / source3 / lib / dbwrap / dbwrap_ctdb.c
blob399c8503d933b9fe9a1fb038a7c80d4ba665fdd0
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);
91 struct db_ctdb_ltdb_parse_state {
92 void (*parser)(TDB_DATA key, struct ctdb_ltdb_header *header,
93 TDB_DATA data, void *private_data);
94 void *private_data;
97 static int db_ctdb_ltdb_parser(TDB_DATA key, TDB_DATA data,
98 void *private_data)
100 struct db_ctdb_ltdb_parse_state *state =
101 (struct db_ctdb_ltdb_parse_state *)private_data;
103 if (data.dsize < sizeof(struct ctdb_ltdb_header)) {
104 return -1;
106 state->parser(
107 key, (struct ctdb_ltdb_header *)data.dptr,
108 make_tdb_data(data.dptr + sizeof(struct ctdb_ltdb_header),
109 data.dsize - sizeof(struct ctdb_ltdb_header)),
110 state->private_data);
111 return 0;
114 static NTSTATUS db_ctdb_ltdb_parse(
115 struct db_ctdb_ctx *db, TDB_DATA key,
116 void (*parser)(TDB_DATA key, struct ctdb_ltdb_header *header,
117 TDB_DATA data, void *private_data),
118 void *private_data)
120 struct db_ctdb_ltdb_parse_state state;
121 int ret;
123 state.parser = parser;
124 state.private_data = private_data;
126 ret = tdb_parse_record(db->wtdb->tdb, key, db_ctdb_ltdb_parser,
127 &state);
128 if (ret == -1) {
129 return NT_STATUS_NOT_FOUND;
131 return 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,
139 TDB_DATA key,
140 struct ctdb_ltdb_header *header,
141 TDB_DATA data)
143 TALLOC_CTX *tmp_ctx = talloc_stackframe();
144 TDB_DATA rec;
145 int ret;
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 static struct ctdb_rec_data *db_ctdb_marshall_record(TALLOC_CTX *mem_ctx, uint32_t reqid,
171 TDB_DATA key,
172 struct ctdb_ltdb_header *header,
173 TDB_DATA data)
175 size_t length;
176 struct ctdb_rec_data *d;
178 length = offsetof(struct ctdb_rec_data, data) + key.dsize +
179 data.dsize + sizeof(*header);
180 d = (struct ctdb_rec_data *)talloc_size(mem_ctx, length);
181 if (d == NULL) {
182 return NULL;
184 d->length = length;
185 d->reqid = reqid;
186 d->keylen = key.dsize;
187 memcpy(&d->data[0], key.dptr, key.dsize);
189 d->datalen = data.dsize + sizeof(*header);
190 memcpy(&d->data[key.dsize], header, sizeof(*header));
191 memcpy(&d->data[key.dsize+sizeof(*header)], data.dptr, data.dsize);
192 return d;
196 /* helper function for marshalling multiple records */
197 static struct ctdb_marshall_buffer *db_ctdb_marshall_add(TALLOC_CTX *mem_ctx,
198 struct ctdb_marshall_buffer *m,
199 uint64_t db_id,
200 uint32_t reqid,
201 TDB_DATA key,
202 struct ctdb_ltdb_header *header,
203 TDB_DATA data)
205 struct ctdb_rec_data *r;
206 size_t m_size, r_size;
207 struct ctdb_marshall_buffer *m2 = NULL;
209 r = db_ctdb_marshall_record(talloc_tos(), reqid, key, header, data);
210 if (r == NULL) {
211 talloc_free(m);
212 return NULL;
215 if (m == NULL) {
216 m = (struct ctdb_marshall_buffer *)talloc_zero_size(
217 mem_ctx, offsetof(struct ctdb_marshall_buffer, data));
218 if (m == NULL) {
219 goto done;
221 m->db_id = db_id;
224 m_size = talloc_get_size(m);
225 r_size = talloc_get_size(r);
227 m2 = (struct ctdb_marshall_buffer *)talloc_realloc_size(
228 mem_ctx, m, m_size + r_size);
229 if (m2 == NULL) {
230 talloc_free(m);
231 goto done;
234 memcpy(m_size + (uint8_t *)m2, r, r_size);
236 m2->count++;
238 done:
239 talloc_free(r);
240 return m2;
243 /* we've finished marshalling, return a data blob with the marshalled records */
244 static TDB_DATA db_ctdb_marshall_finish(struct ctdb_marshall_buffer *m)
246 TDB_DATA data;
247 data.dptr = (uint8_t *)m;
248 data.dsize = talloc_get_size(m);
249 return data;
253 loop over a marshalling buffer
255 - pass r==NULL to start
256 - loop the number of times indicated by m->count
258 static struct ctdb_rec_data *db_ctdb_marshall_loop_next_key(
259 struct ctdb_marshall_buffer *m, struct ctdb_rec_data *r, TDB_DATA *key)
261 if (r == NULL) {
262 r = (struct ctdb_rec_data *)&m->data[0];
263 } else {
264 r = (struct ctdb_rec_data *)(r->length + (uint8_t *)r);
267 key->dptr = &r->data[0];
268 key->dsize = r->keylen;
269 return r;
272 static bool db_ctdb_marshall_buf_parse(
273 struct ctdb_rec_data *r, uint32_t *reqid,
274 struct ctdb_ltdb_header **header, TDB_DATA *data)
276 if (r->datalen < sizeof(struct ctdb_ltdb_header)) {
277 return false;
280 *reqid = r->reqid;
282 data->dptr = &r->data[r->keylen] + sizeof(struct ctdb_ltdb_header);
283 data->dsize = r->datalen - sizeof(struct ctdb_ltdb_header);
285 *header = (struct ctdb_ltdb_header *)&r->data[r->keylen];
287 return true;
291 * CTDB transaction destructor
293 static int db_ctdb_transaction_destructor(struct db_ctdb_transaction_handle *h)
295 NTSTATUS status;
297 status = g_lock_unlock(h->ctx->lock_ctx, h->lock_name);
298 if (!NT_STATUS_IS_OK(status)) {
299 DEBUG(0, ("g_lock_unlock failed for %s: %s\n", h->lock_name,
300 nt_errstr(status)));
301 return -1;
303 return 0;
307 * CTDB dbwrap API: transaction_start function
308 * starts a transaction on a persistent database
310 static int db_ctdb_transaction_start(struct db_context *db)
312 struct db_ctdb_transaction_handle *h;
313 NTSTATUS status;
314 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
315 struct db_ctdb_ctx);
317 if (!db->persistent) {
318 DEBUG(0,("transactions not supported on non-persistent database 0x%08x\n",
319 ctx->db_id));
320 return -1;
323 if (ctx->transaction) {
324 ctx->transaction->nesting++;
325 DEBUG(5, (__location__ " transaction start on db 0x%08x: nesting %d -> %d\n",
326 ctx->db_id, ctx->transaction->nesting - 1, ctx->transaction->nesting));
327 return 0;
330 h = talloc_zero(db, struct db_ctdb_transaction_handle);
331 if (h == NULL) {
332 DEBUG(0,(__location__ " oom for transaction handle\n"));
333 return -1;
336 h->ctx = ctx;
338 h->lock_name = talloc_asprintf(h, "transaction_db_0x%08x",
339 (unsigned int)ctx->db_id);
340 if (h->lock_name == NULL) {
341 DEBUG(0, ("talloc_asprintf failed\n"));
342 TALLOC_FREE(h);
343 return -1;
347 * Wait a day, i.e. forever...
349 status = g_lock_lock(ctx->lock_ctx, h->lock_name, G_LOCK_WRITE,
350 timeval_set(86400, 0));
351 if (!NT_STATUS_IS_OK(status)) {
352 DEBUG(0, ("g_lock_lock failed: %s\n", nt_errstr(status)));
353 TALLOC_FREE(h);
354 return -1;
357 talloc_set_destructor(h, db_ctdb_transaction_destructor);
359 ctx->transaction = h;
361 DEBUG(5,(__location__ " transaction started on db 0x%08x\n", ctx->db_id));
363 return 0;
366 static bool parse_newest_in_marshall_buffer(
367 struct ctdb_marshall_buffer *buf, TDB_DATA key,
368 void (*parser)(TDB_DATA key, struct ctdb_ltdb_header *header,
369 TDB_DATA data, void *private_data),
370 void *private_data)
372 struct ctdb_rec_data *rec = NULL;
373 struct ctdb_ltdb_header *h = NULL;
374 TDB_DATA data;
375 int i;
377 if (buf == NULL) {
378 return false;
382 * Walk the list of records written during this
383 * transaction. If we want to read one we have already
384 * written, return the last written sample. Thus we do not do
385 * a "break;" for the first hit, this record might have been
386 * overwritten later.
389 for (i=0; i<buf->count; i++) {
390 TDB_DATA tkey;
391 uint32_t reqid;
393 rec = db_ctdb_marshall_loop_next_key(buf, rec, &tkey);
394 if (rec == NULL) {
395 return false;
398 if (!tdb_data_equal(key, tkey)) {
399 continue;
402 if (!db_ctdb_marshall_buf_parse(rec, &reqid, &h, &data)) {
403 return false;
407 if (h == NULL) {
408 return false;
411 parser(key, h, data, private_data);
413 return true;
416 struct pull_newest_from_marshall_buffer_state {
417 struct ctdb_ltdb_header *pheader;
418 TALLOC_CTX *mem_ctx;
419 TDB_DATA *pdata;
422 static void pull_newest_from_marshall_buffer_parser(
423 TDB_DATA key, struct ctdb_ltdb_header *header,
424 TDB_DATA data, void *private_data)
426 struct pull_newest_from_marshall_buffer_state *state =
427 (struct pull_newest_from_marshall_buffer_state *)private_data;
429 if (state->pheader != NULL) {
430 memcpy(state->pheader, header, sizeof(*state->pheader));
432 if (state->pdata != NULL) {
433 state->pdata->dsize = data.dsize;
434 state->pdata->dptr = (uint8_t *)talloc_memdup(
435 state->mem_ctx, data.dptr, data.dsize);
439 static bool pull_newest_from_marshall_buffer(struct ctdb_marshall_buffer *buf,
440 TDB_DATA key,
441 struct ctdb_ltdb_header *pheader,
442 TALLOC_CTX *mem_ctx,
443 TDB_DATA *pdata)
445 struct pull_newest_from_marshall_buffer_state state;
447 state.pheader = pheader;
448 state.mem_ctx = mem_ctx;
449 state.pdata = pdata;
451 if (!parse_newest_in_marshall_buffer(
452 buf, key, pull_newest_from_marshall_buffer_parser,
453 &state)) {
454 return false;
456 if ((pdata != NULL) && (pdata->dsize != 0) && (pdata->dptr == NULL)) {
457 /* ENOMEM */
458 return false;
460 return true;
463 static NTSTATUS db_ctdb_store_transaction(struct db_record *rec, TDB_DATA data, int flag);
464 static NTSTATUS db_ctdb_delete_transaction(struct db_record *rec);
466 static struct db_record *db_ctdb_fetch_locked_transaction(struct db_ctdb_ctx *ctx,
467 TALLOC_CTX *mem_ctx,
468 TDB_DATA key)
470 struct db_record *result;
471 TDB_DATA ctdb_data;
473 if (!(result = talloc(mem_ctx, struct db_record))) {
474 DEBUG(0, ("talloc failed\n"));
475 return NULL;
478 result->db = ctx->db;
479 result->private_data = ctx->transaction;
481 result->key.dsize = key.dsize;
482 result->key.dptr = (uint8_t *)talloc_memdup(result, key.dptr,
483 key.dsize);
484 if (result->key.dptr == NULL) {
485 DEBUG(0, ("talloc failed\n"));
486 TALLOC_FREE(result);
487 return NULL;
490 result->store = db_ctdb_store_transaction;
491 result->delete_rec = db_ctdb_delete_transaction;
493 if (pull_newest_from_marshall_buffer(ctx->transaction->m_write, key,
494 NULL, result, &result->value)) {
495 return result;
498 ctdb_data = tdb_fetch_compat(ctx->wtdb->tdb, key);
499 if (ctdb_data.dptr == NULL) {
500 /* create the record */
501 result->value = tdb_null;
502 return result;
505 result->value.dsize = ctdb_data.dsize - sizeof(struct ctdb_ltdb_header);
506 result->value.dptr = NULL;
508 if ((result->value.dsize != 0)
509 && !(result->value.dptr = (uint8_t *)talloc_memdup(
510 result, ctdb_data.dptr + sizeof(struct ctdb_ltdb_header),
511 result->value.dsize))) {
512 DEBUG(0, ("talloc failed\n"));
513 TALLOC_FREE(result);
516 SAFE_FREE(ctdb_data.dptr);
518 return result;
521 static int db_ctdb_record_destructor(struct db_record **recp)
523 struct db_record *rec = talloc_get_type_abort(*recp, struct db_record);
524 struct db_ctdb_transaction_handle *h = talloc_get_type_abort(
525 rec->private_data, struct db_ctdb_transaction_handle);
526 int ret = h->ctx->db->transaction_commit(h->ctx->db);
527 if (ret != 0) {
528 DEBUG(0,(__location__ " transaction_commit failed\n"));
530 return 0;
534 auto-create a transaction for persistent databases
536 static struct db_record *db_ctdb_fetch_locked_persistent(struct db_ctdb_ctx *ctx,
537 TALLOC_CTX *mem_ctx,
538 TDB_DATA key)
540 int res;
541 struct db_record *rec, **recp;
543 res = db_ctdb_transaction_start(ctx->db);
544 if (res == -1) {
545 return NULL;
548 rec = db_ctdb_fetch_locked_transaction(ctx, mem_ctx, key);
549 if (rec == NULL) {
550 ctx->db->transaction_cancel(ctx->db);
551 return NULL;
554 /* destroy this transaction when we release the lock */
555 recp = talloc(rec, struct db_record *);
556 if (recp == NULL) {
557 ctx->db->transaction_cancel(ctx->db);
558 talloc_free(rec);
559 return NULL;
561 *recp = rec;
562 talloc_set_destructor(recp, db_ctdb_record_destructor);
563 return rec;
568 stores a record inside a transaction
570 static NTSTATUS db_ctdb_transaction_store(struct db_ctdb_transaction_handle *h,
571 TDB_DATA key, TDB_DATA data)
573 TALLOC_CTX *tmp_ctx = talloc_new(h);
574 TDB_DATA rec;
575 struct ctdb_ltdb_header header;
577 ZERO_STRUCT(header);
579 /* we need the header so we can update the RSN */
581 if (!pull_newest_from_marshall_buffer(h->m_write, key, &header,
582 NULL, NULL)) {
584 rec = tdb_fetch_compat(h->ctx->wtdb->tdb, key);
586 if (rec.dptr != NULL) {
587 memcpy(&header, rec.dptr,
588 sizeof(struct ctdb_ltdb_header));
589 rec.dsize -= sizeof(struct ctdb_ltdb_header);
592 * a special case, we are writing the same
593 * data that is there now
595 if (data.dsize == rec.dsize &&
596 memcmp(data.dptr,
597 rec.dptr + sizeof(struct ctdb_ltdb_header),
598 data.dsize) == 0) {
599 SAFE_FREE(rec.dptr);
600 talloc_free(tmp_ctx);
601 return NT_STATUS_OK;
604 SAFE_FREE(rec.dptr);
607 header.dmaster = get_my_vnn();
608 header.rsn++;
610 h->m_write = db_ctdb_marshall_add(h, h->m_write, h->ctx->db_id, 0, key, &header, data);
611 if (h->m_write == NULL) {
612 DEBUG(0,(__location__ " Failed to add to marshalling record\n"));
613 talloc_free(tmp_ctx);
614 return NT_STATUS_NO_MEMORY;
617 talloc_free(tmp_ctx);
618 return NT_STATUS_OK;
623 a record store inside a transaction
625 static NTSTATUS db_ctdb_store_transaction(struct db_record *rec, TDB_DATA data, int flag)
627 struct db_ctdb_transaction_handle *h = talloc_get_type_abort(
628 rec->private_data, struct db_ctdb_transaction_handle);
629 NTSTATUS status;
631 status = db_ctdb_transaction_store(h, rec->key, data);
632 return status;
636 a record delete inside a transaction
638 static NTSTATUS db_ctdb_delete_transaction(struct db_record *rec)
640 struct db_ctdb_transaction_handle *h = talloc_get_type_abort(
641 rec->private_data, struct db_ctdb_transaction_handle);
642 NTSTATUS status;
644 status = db_ctdb_transaction_store(h, rec->key, tdb_null);
645 return status;
648 static void db_ctdb_fetch_db_seqnum_parser(
649 TDB_DATA key, struct ctdb_ltdb_header *header,
650 TDB_DATA data, void *private_data)
652 uint64_t *seqnum = (uint64_t *)private_data;
654 if (data.dsize != sizeof(uint64_t)) {
655 *seqnum = 0;
656 return;
658 memcpy(seqnum, data.dptr, sizeof(*seqnum));
662 * Fetch the db sequence number of a persistent db directly from the db.
664 static NTSTATUS db_ctdb_fetch_db_seqnum_from_db(struct db_ctdb_ctx *db,
665 uint64_t *seqnum)
667 NTSTATUS status;
668 TDB_DATA key;
670 if (seqnum == NULL) {
671 return NT_STATUS_INVALID_PARAMETER;
674 key = string_term_tdb_data(CTDB_DB_SEQNUM_KEY);
676 status = db_ctdb_ltdb_parse(
677 db, key, db_ctdb_fetch_db_seqnum_parser, seqnum);
679 if (NT_STATUS_IS_OK(status)) {
680 return NT_STATUS_OK;
682 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_FOUND)) {
683 *seqnum = 0;
684 return NT_STATUS_OK;
686 return status;
690 * Store the database sequence number inside a transaction.
692 static NTSTATUS db_ctdb_store_db_seqnum(struct db_ctdb_transaction_handle *h,
693 uint64_t seqnum)
695 NTSTATUS status;
696 const char *keyname = CTDB_DB_SEQNUM_KEY;
697 TDB_DATA key;
698 TDB_DATA data;
700 key = string_term_tdb_data(keyname);
702 data.dptr = (uint8_t *)&seqnum;
703 data.dsize = sizeof(uint64_t);
705 status = db_ctdb_transaction_store(h, key, data);
707 return status;
711 commit a transaction
713 static int db_ctdb_transaction_commit(struct db_context *db)
715 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
716 struct db_ctdb_ctx);
717 NTSTATUS rets;
718 int status;
719 struct db_ctdb_transaction_handle *h = ctx->transaction;
720 uint64_t old_seqnum, new_seqnum;
721 int ret;
723 if (h == NULL) {
724 DEBUG(0,(__location__ " transaction commit with no open transaction on db 0x%08x\n", ctx->db_id));
725 return -1;
728 if (h->nested_cancel) {
729 db->transaction_cancel(db);
730 DEBUG(5,(__location__ " Failed transaction commit after nested cancel\n"));
731 return -1;
734 if (h->nesting != 0) {
735 h->nesting--;
736 DEBUG(5, (__location__ " transaction commit on db 0x%08x: nesting %d -> %d\n",
737 ctx->db_id, ctx->transaction->nesting + 1, ctx->transaction->nesting));
738 return 0;
741 if (h->m_write == NULL) {
743 * No changes were made, so don't change the seqnum,
744 * don't push to other node, just exit with success.
746 ret = 0;
747 goto done;
750 DEBUG(5,(__location__ " transaction commit on db 0x%08x\n", ctx->db_id));
753 * As the last db action before committing, bump the database sequence
754 * number. Note that this undoes all changes to the seqnum records
755 * performed under the transaction. This record is not meant to be
756 * modified by user interaction. It is for internal use only...
758 rets = db_ctdb_fetch_db_seqnum_from_db(ctx, &old_seqnum);
759 if (!NT_STATUS_IS_OK(rets)) {
760 DEBUG(1, (__location__ " failed to fetch the db sequence number "
761 "in transaction commit on db 0x%08x\n", ctx->db_id));
762 ret = -1;
763 goto done;
766 new_seqnum = old_seqnum + 1;
768 rets = db_ctdb_store_db_seqnum(h, new_seqnum);
769 if (!NT_STATUS_IS_OK(rets)) {
770 DEBUG(1, (__location__ "failed to store the db sequence number "
771 " in transaction commit on db 0x%08x\n", ctx->db_id));
772 ret = -1;
773 goto done;
776 again:
777 /* tell ctdbd to commit to the other nodes */
778 rets = ctdbd_control_local(messaging_ctdbd_connection(),
779 CTDB_CONTROL_TRANS3_COMMIT,
780 h->ctx->db_id, 0,
781 db_ctdb_marshall_finish(h->m_write),
782 NULL, NULL, &status);
783 if (!NT_STATUS_IS_OK(rets) || status != 0) {
785 * The TRANS3_COMMIT control should only possibly fail when a
786 * recovery has been running concurrently. In any case, the db
787 * will be the same on all nodes, either the new copy or the
788 * old copy. This can be detected by comparing the old and new
789 * local sequence numbers.
791 rets = db_ctdb_fetch_db_seqnum_from_db(ctx, &new_seqnum);
792 if (!NT_STATUS_IS_OK(rets)) {
793 DEBUG(1, (__location__ " failed to refetch db sequence "
794 "number after failed TRANS3_COMMIT\n"));
795 ret = -1;
796 goto done;
799 if (new_seqnum == old_seqnum) {
800 /* Recovery prevented all our changes: retry. */
801 goto again;
803 if (new_seqnum != (old_seqnum + 1)) {
804 DEBUG(0, (__location__ " ERROR: new_seqnum[%lu] != "
805 "old_seqnum[%lu] + (0 or 1) after failed "
806 "TRANS3_COMMIT - this should not happen!\n",
807 (unsigned long)new_seqnum,
808 (unsigned long)old_seqnum));
809 ret = -1;
810 goto done;
813 * Recovery propagated our changes to all nodes, completing
814 * our commit for us - succeed.
818 ret = 0;
820 done:
821 h->ctx->transaction = NULL;
822 talloc_free(h);
823 return ret;
828 cancel a transaction
830 static int db_ctdb_transaction_cancel(struct db_context *db)
832 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
833 struct db_ctdb_ctx);
834 struct db_ctdb_transaction_handle *h = ctx->transaction;
836 if (h == NULL) {
837 DEBUG(0,(__location__ " transaction cancel with no open transaction on db 0x%08x\n", ctx->db_id));
838 return -1;
841 if (h->nesting != 0) {
842 h->nesting--;
843 h->nested_cancel = true;
844 DEBUG(5, (__location__ " transaction cancel on db 0x%08x: nesting %d -> %d\n",
845 ctx->db_id, ctx->transaction->nesting + 1, ctx->transaction->nesting));
846 return 0;
849 DEBUG(5,(__location__ " Cancel transaction on db 0x%08x\n", ctx->db_id));
851 ctx->transaction = NULL;
852 talloc_free(h);
853 return 0;
857 static NTSTATUS db_ctdb_store(struct db_record *rec, TDB_DATA data, int flag)
859 struct db_ctdb_rec *crec = talloc_get_type_abort(
860 rec->private_data, struct db_ctdb_rec);
862 return db_ctdb_ltdb_store(crec->ctdb_ctx, rec->key, &(crec->header), data);
867 #ifdef HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL
868 static NTSTATUS db_ctdb_send_schedule_for_deletion(struct db_record *rec)
870 NTSTATUS status;
871 struct ctdb_control_schedule_for_deletion *dd;
872 TDB_DATA indata;
873 int cstatus;
874 struct db_ctdb_rec *crec = talloc_get_type_abort(
875 rec->private_data, struct db_ctdb_rec);
877 indata.dsize = offsetof(struct ctdb_control_schedule_for_deletion, key) + rec->key.dsize;
878 indata.dptr = talloc_zero_array(crec, uint8_t, indata.dsize);
879 if (indata.dptr == NULL) {
880 DEBUG(0, (__location__ " talloc failed!\n"));
881 return NT_STATUS_NO_MEMORY;
884 dd = (struct ctdb_control_schedule_for_deletion *)(void *)indata.dptr;
885 dd->db_id = crec->ctdb_ctx->db_id;
886 dd->hdr = crec->header;
887 dd->keylen = rec->key.dsize;
888 memcpy(dd->key, rec->key.dptr, rec->key.dsize);
890 status = ctdbd_control_local(messaging_ctdbd_connection(),
891 CTDB_CONTROL_SCHEDULE_FOR_DELETION,
892 crec->ctdb_ctx->db_id,
893 CTDB_CTRL_FLAG_NOREPLY, /* flags */
894 indata,
895 NULL, /* outdata */
896 NULL, /* errmsg */
897 &cstatus);
898 talloc_free(indata.dptr);
900 if (!NT_STATUS_IS_OK(status) || cstatus != 0) {
901 DEBUG(1, (__location__ " Error sending local control "
902 "SCHEDULE_FOR_DELETION: %s, cstatus = %d\n",
903 nt_errstr(status), cstatus));
904 if (NT_STATUS_IS_OK(status)) {
905 status = NT_STATUS_UNSUCCESSFUL;
909 return status;
911 #endif
913 static NTSTATUS db_ctdb_delete(struct db_record *rec)
915 NTSTATUS status;
918 * We have to store the header with empty data. TODO: Fix the
919 * tdb-level cleanup
922 status = db_ctdb_store(rec, tdb_null, 0);
923 if (!NT_STATUS_IS_OK(status)) {
924 return status;
927 #ifdef HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL
928 status = db_ctdb_send_schedule_for_deletion(rec);
929 #endif
931 return status;
934 static int db_ctdb_record_destr(struct db_record* data)
936 struct db_ctdb_rec *crec = talloc_get_type_abort(
937 data->private_data, struct db_ctdb_rec);
938 int threshold;
940 DEBUG(10, (DEBUGLEVEL > 10
941 ? "Unlocking db %u key %s\n"
942 : "Unlocking db %u key %.20s\n",
943 (int)crec->ctdb_ctx->db_id,
944 hex_encode_talloc(data, (unsigned char *)data->key.dptr,
945 data->key.dsize)));
947 tdb_chainunlock(crec->ctdb_ctx->wtdb->tdb, data->key);
949 threshold = lp_ctdb_locktime_warn_threshold();
950 if (threshold != 0) {
951 double timediff = timeval_elapsed(&crec->lock_time);
952 if ((timediff * 1000) > threshold) {
953 const char *key;
955 key = hex_encode_talloc(data,
956 (unsigned char *)data->key.dptr,
957 data->key.dsize);
958 DEBUG(0, ("Held tdb lock on db %s, key %s %f seconds\n",
959 tdb_name(crec->ctdb_ctx->wtdb->tdb), key,
960 timediff));
964 return 0;
968 * Check whether we have a valid local copy of the given record,
969 * either for reading or for writing.
971 static bool db_ctdb_can_use_local_hdr(const struct ctdb_ltdb_header *hdr,
972 bool read_only)
974 #ifdef HAVE_CTDB_WANT_READONLY_DECL
975 if (hdr->dmaster != get_my_vnn()) {
976 /* If we're not dmaster, it must be r/o copy. */
977 return read_only && (hdr->flags & CTDB_REC_RO_HAVE_READONLY);
981 * If we want write access, no one may have r/o copies.
983 return read_only || !(hdr->flags & CTDB_REC_RO_HAVE_DELEGATIONS);
984 #else
985 return (hdr->dmaster == get_my_vnn());
986 #endif
989 static bool db_ctdb_can_use_local_copy(TDB_DATA ctdb_data, bool read_only)
991 if (ctdb_data.dptr == NULL)
992 return false;
994 if (ctdb_data.dsize < sizeof(struct ctdb_ltdb_header))
995 return false;
997 return db_ctdb_can_use_local_hdr(
998 (struct ctdb_ltdb_header *)ctdb_data.dptr, read_only);
1001 static struct db_record *fetch_locked_internal(struct db_ctdb_ctx *ctx,
1002 TALLOC_CTX *mem_ctx,
1003 TDB_DATA key,
1004 bool tryonly)
1006 struct db_record *result;
1007 struct db_ctdb_rec *crec;
1008 NTSTATUS status;
1009 TDB_DATA ctdb_data;
1010 int migrate_attempts = 0;
1011 int lockret;
1013 if (!(result = talloc(mem_ctx, struct db_record))) {
1014 DEBUG(0, ("talloc failed\n"));
1015 return NULL;
1018 if (!(crec = talloc_zero(result, struct db_ctdb_rec))) {
1019 DEBUG(0, ("talloc failed\n"));
1020 TALLOC_FREE(result);
1021 return NULL;
1024 result->db = ctx->db;
1025 result->private_data = (void *)crec;
1026 crec->ctdb_ctx = ctx;
1028 result->key.dsize = key.dsize;
1029 result->key.dptr = (uint8_t *)talloc_memdup(result, key.dptr,
1030 key.dsize);
1031 if (result->key.dptr == NULL) {
1032 DEBUG(0, ("talloc failed\n"));
1033 TALLOC_FREE(result);
1034 return NULL;
1038 * Do a blocking lock on the record
1040 again:
1042 if (DEBUGLEVEL >= 10) {
1043 char *keystr = hex_encode_talloc(result, key.dptr, key.dsize);
1044 DEBUG(10, (DEBUGLEVEL > 10
1045 ? "Locking db %u key %s\n"
1046 : "Locking db %u key %.20s\n",
1047 (int)crec->ctdb_ctx->db_id, keystr));
1048 TALLOC_FREE(keystr);
1051 lockret = tryonly
1052 ? tdb_chainlock_nonblock(ctx->wtdb->tdb, key)
1053 : tdb_chainlock(ctx->wtdb->tdb, key);
1054 if (lockret != 0) {
1055 DEBUG(3, ("tdb_chainlock failed\n"));
1056 TALLOC_FREE(result);
1057 return NULL;
1060 result->store = db_ctdb_store;
1061 result->delete_rec = db_ctdb_delete;
1062 talloc_set_destructor(result, db_ctdb_record_destr);
1064 ctdb_data = tdb_fetch_compat(ctx->wtdb->tdb, key);
1067 * See if we have a valid record and we are the dmaster. If so, we can
1068 * take the shortcut and just return it.
1071 if (!db_ctdb_can_use_local_copy(ctdb_data, false)) {
1072 SAFE_FREE(ctdb_data.dptr);
1073 tdb_chainunlock(ctx->wtdb->tdb, key);
1074 talloc_set_destructor(result, NULL);
1076 if (tryonly && (migrate_attempts != 0)) {
1077 DEBUG(5, ("record migrated away again\n"));
1078 TALLOC_FREE(result);
1079 return NULL;
1082 migrate_attempts += 1;
1084 DEBUG(10, ("ctdb_data.dptr = %p, dmaster = %u (%u) %u\n",
1085 ctdb_data.dptr, ctdb_data.dptr ?
1086 ((struct ctdb_ltdb_header *)ctdb_data.dptr)->dmaster : -1,
1087 get_my_vnn(),
1088 ctdb_data.dptr ?
1089 ((struct ctdb_ltdb_header *)ctdb_data.dptr)->flags : 0));
1091 status = ctdbd_migrate(messaging_ctdbd_connection(), ctx->db_id,
1092 key);
1093 if (!NT_STATUS_IS_OK(status)) {
1094 DEBUG(5, ("ctdb_migrate failed: %s\n",
1095 nt_errstr(status)));
1096 TALLOC_FREE(result);
1097 return NULL;
1099 /* now its migrated, try again */
1100 goto again;
1103 if (migrate_attempts > 10) {
1104 DEBUG(0, ("db_ctdb_fetch_locked for %s key %s needed %d "
1105 "attempts\n", tdb_name(ctx->wtdb->tdb),
1106 hex_encode_talloc(talloc_tos(),
1107 (unsigned char *)key.dptr,
1108 key.dsize),
1109 migrate_attempts));
1112 GetTimeOfDay(&crec->lock_time);
1114 memcpy(&crec->header, ctdb_data.dptr, sizeof(crec->header));
1116 result->value.dsize = ctdb_data.dsize - sizeof(crec->header);
1117 result->value.dptr = NULL;
1119 if ((result->value.dsize != 0)
1120 && !(result->value.dptr = (uint8_t *)talloc_memdup(
1121 result, ctdb_data.dptr + sizeof(crec->header),
1122 result->value.dsize))) {
1123 DEBUG(0, ("talloc failed\n"));
1124 TALLOC_FREE(result);
1127 SAFE_FREE(ctdb_data.dptr);
1129 return result;
1132 static struct db_record *db_ctdb_fetch_locked(struct db_context *db,
1133 TALLOC_CTX *mem_ctx,
1134 TDB_DATA key)
1136 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1137 struct db_ctdb_ctx);
1139 if (ctx->transaction != NULL) {
1140 return db_ctdb_fetch_locked_transaction(ctx, mem_ctx, key);
1143 if (db->persistent) {
1144 return db_ctdb_fetch_locked_persistent(ctx, mem_ctx, key);
1147 return fetch_locked_internal(ctx, mem_ctx, key, false);
1150 static struct db_record *db_ctdb_try_fetch_locked(struct db_context *db,
1151 TALLOC_CTX *mem_ctx,
1152 TDB_DATA key)
1154 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1155 struct db_ctdb_ctx);
1157 if (ctx->transaction != NULL) {
1158 return db_ctdb_fetch_locked_transaction(ctx, mem_ctx, key);
1161 if (db->persistent) {
1162 return db_ctdb_fetch_locked_persistent(ctx, mem_ctx, key);
1165 return fetch_locked_internal(ctx, mem_ctx, key, true);
1168 struct db_ctdb_parse_record_state {
1169 void (*parser)(TDB_DATA key, TDB_DATA data, void *private_data);
1170 void *private_data;
1171 bool ask_for_readonly_copy;
1172 bool done;
1175 static void db_ctdb_parse_record_parser(
1176 TDB_DATA key, struct ctdb_ltdb_header *header,
1177 TDB_DATA data, void *private_data)
1179 struct db_ctdb_parse_record_state *state =
1180 (struct db_ctdb_parse_record_state *)private_data;
1181 state->parser(key, data, state->private_data);
1184 static void db_ctdb_parse_record_parser_nonpersistent(
1185 TDB_DATA key, struct ctdb_ltdb_header *header,
1186 TDB_DATA data, void *private_data)
1188 struct db_ctdb_parse_record_state *state =
1189 (struct db_ctdb_parse_record_state *)private_data;
1191 if (db_ctdb_can_use_local_hdr(header, true)) {
1192 state->parser(key, data, state->private_data);
1193 state->done = true;
1194 } else {
1196 * We found something in the db, so it seems that this record,
1197 * while not usable locally right now, is popular. Ask for a
1198 * R/O copy.
1200 state->ask_for_readonly_copy = true;
1204 static NTSTATUS db_ctdb_parse_record(struct db_context *db, TDB_DATA key,
1205 void (*parser)(TDB_DATA key,
1206 TDB_DATA data,
1207 void *private_data),
1208 void *private_data)
1210 struct db_ctdb_ctx *ctx = talloc_get_type_abort(
1211 db->private_data, struct db_ctdb_ctx);
1212 struct db_ctdb_parse_record_state state;
1213 NTSTATUS status;
1214 TDB_DATA data;
1216 state.parser = parser;
1217 state.private_data = private_data;
1219 if (ctx->transaction != NULL) {
1220 struct db_ctdb_transaction_handle *h = ctx->transaction;
1221 bool found;
1224 * Transactions only happen for persistent db's.
1227 found = parse_newest_in_marshall_buffer(
1228 h->m_write, key, db_ctdb_parse_record_parser, &state);
1230 if (found) {
1231 return NT_STATUS_OK;
1235 if (db->persistent) {
1237 * Persistent db, but not found in the transaction buffer
1239 return db_ctdb_ltdb_parse(
1240 ctx, key, db_ctdb_parse_record_parser, &state);
1243 state.done = false;
1244 state.ask_for_readonly_copy = false;
1246 status = db_ctdb_ltdb_parse(
1247 ctx, key, db_ctdb_parse_record_parser_nonpersistent, &state);
1248 if (NT_STATUS_IS_OK(status) && state.done) {
1249 return NT_STATUS_OK;
1252 status = ctdbd_fetch(messaging_ctdbd_connection(), ctx->db_id, key,
1253 talloc_tos(), &data, state.ask_for_readonly_copy);
1254 if (!NT_STATUS_IS_OK(status)) {
1255 return status;
1257 parser(key, data, private_data);
1258 TALLOC_FREE(data.dptr);
1259 return NT_STATUS_OK;
1262 struct traverse_state {
1263 struct db_context *db;
1264 int (*fn)(struct db_record *rec, void *private_data);
1265 void *private_data;
1266 int count;
1269 static void traverse_callback(TDB_DATA key, TDB_DATA data, void *private_data)
1271 struct traverse_state *state = (struct traverse_state *)private_data;
1272 struct db_record *rec;
1273 TALLOC_CTX *tmp_ctx = talloc_new(state->db);
1274 /* we have to give them a locked record to prevent races */
1275 rec = db_ctdb_fetch_locked(state->db, tmp_ctx, key);
1276 if (rec && rec->value.dsize > 0) {
1277 state->fn(rec, state->private_data);
1279 talloc_free(tmp_ctx);
1282 static int traverse_persistent_callback(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf,
1283 void *private_data)
1285 struct traverse_state *state = (struct traverse_state *)private_data;
1286 struct db_record *rec;
1287 TALLOC_CTX *tmp_ctx = talloc_new(state->db);
1288 int ret = 0;
1291 * Skip the __db_sequence_number__ key:
1292 * This is used for persistent transactions internally.
1294 if (kbuf.dsize == strlen(CTDB_DB_SEQNUM_KEY) + 1 &&
1295 strcmp((const char*)kbuf.dptr, CTDB_DB_SEQNUM_KEY) == 0)
1297 goto done;
1300 /* we have to give them a locked record to prevent races */
1301 rec = db_ctdb_fetch_locked(state->db, tmp_ctx, kbuf);
1302 if (rec && rec->value.dsize > 0) {
1303 ret = state->fn(rec, state->private_data);
1306 done:
1307 talloc_free(tmp_ctx);
1308 return ret;
1311 /* wrapper to use traverse_persistent_callback with dbwrap */
1312 static int traverse_persistent_callback_dbwrap(struct db_record *rec, void* data)
1314 return traverse_persistent_callback(NULL, rec->key, rec->value, data);
1318 static int db_ctdb_traverse(struct db_context *db,
1319 int (*fn)(struct db_record *rec,
1320 void *private_data),
1321 void *private_data)
1323 NTSTATUS status;
1324 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1325 struct db_ctdb_ctx);
1326 struct traverse_state state;
1328 state.db = db;
1329 state.fn = fn;
1330 state.private_data = private_data;
1331 state.count = 0;
1333 if (db->persistent) {
1334 struct tdb_context *ltdb = ctx->wtdb->tdb;
1335 int ret;
1337 /* for persistent databases we don't need to do a ctdb traverse,
1338 we can do a faster local traverse */
1339 ret = tdb_traverse(ltdb, traverse_persistent_callback, &state);
1340 if (ret < 0) {
1341 return ret;
1343 if (ctx->transaction && ctx->transaction->m_write) {
1345 * we now have to handle keys not yet
1346 * present at transaction start
1348 struct db_context *newkeys = db_open_rbt(talloc_tos());
1349 struct ctdb_marshall_buffer *mbuf = ctx->transaction->m_write;
1350 struct ctdb_rec_data *rec=NULL;
1351 int i;
1352 int count = 0;
1354 if (newkeys == NULL) {
1355 return -1;
1358 for (i=0; i<mbuf->count; i++) {
1359 TDB_DATA key;
1360 rec = db_ctdb_marshall_loop_next_key(
1361 mbuf, rec, &key);
1362 SMB_ASSERT(rec != NULL);
1364 if (!tdb_exists(ltdb, key)) {
1365 dbwrap_store(newkeys, key, tdb_null, 0);
1368 status = dbwrap_traverse(newkeys,
1369 traverse_persistent_callback_dbwrap,
1370 &state,
1371 &count);
1372 talloc_free(newkeys);
1373 if (!NT_STATUS_IS_OK(status)) {
1374 return -1;
1376 ret += count;
1378 return ret;
1381 status = ctdbd_traverse(ctx->db_id, traverse_callback, &state);
1382 if (!NT_STATUS_IS_OK(status)) {
1383 return -1;
1385 return state.count;
1388 static NTSTATUS db_ctdb_store_deny(struct db_record *rec, TDB_DATA data, int flag)
1390 return NT_STATUS_MEDIA_WRITE_PROTECTED;
1393 static NTSTATUS db_ctdb_delete_deny(struct db_record *rec)
1395 return NT_STATUS_MEDIA_WRITE_PROTECTED;
1398 static void traverse_read_callback(TDB_DATA key, TDB_DATA data, void *private_data)
1400 struct traverse_state *state = (struct traverse_state *)private_data;
1401 struct db_record rec;
1403 ZERO_STRUCT(rec);
1404 rec.db = state->db;
1405 rec.key = key;
1406 rec.value = data;
1407 rec.store = db_ctdb_store_deny;
1408 rec.delete_rec = db_ctdb_delete_deny;
1409 rec.private_data = NULL;
1410 state->fn(&rec, state->private_data);
1411 state->count++;
1414 static int traverse_persistent_callback_read(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf,
1415 void *private_data)
1417 struct traverse_state *state = (struct traverse_state *)private_data;
1418 struct db_record rec;
1421 * Skip the __db_sequence_number__ key:
1422 * This is used for persistent transactions internally.
1424 if (kbuf.dsize == strlen(CTDB_DB_SEQNUM_KEY) + 1 &&
1425 strcmp((const char*)kbuf.dptr, CTDB_DB_SEQNUM_KEY) == 0)
1427 return 0;
1430 ZERO_STRUCT(rec);
1431 rec.db = state->db;
1432 rec.key = kbuf;
1433 rec.value = dbuf;
1434 rec.store = db_ctdb_store_deny;
1435 rec.delete_rec = db_ctdb_delete_deny;
1436 rec.private_data = NULL;
1438 if (rec.value.dsize <= sizeof(struct ctdb_ltdb_header)) {
1439 /* a deleted record */
1440 return 0;
1442 rec.value.dsize -= sizeof(struct ctdb_ltdb_header);
1443 rec.value.dptr += sizeof(struct ctdb_ltdb_header);
1445 state->count++;
1446 return state->fn(&rec, state->private_data);
1449 static int db_ctdb_traverse_read(struct db_context *db,
1450 int (*fn)(struct db_record *rec,
1451 void *private_data),
1452 void *private_data)
1454 NTSTATUS status;
1455 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1456 struct db_ctdb_ctx);
1457 struct traverse_state state;
1459 state.db = db;
1460 state.fn = fn;
1461 state.private_data = private_data;
1462 state.count = 0;
1464 if (db->persistent) {
1465 /* for persistent databases we don't need to do a ctdb traverse,
1466 we can do a faster local traverse */
1467 return tdb_traverse_read(ctx->wtdb->tdb, traverse_persistent_callback_read, &state);
1470 status = ctdbd_traverse(ctx->db_id, traverse_read_callback, &state);
1471 if (!NT_STATUS_IS_OK(status)) {
1472 return -1;
1474 return state.count;
1477 static int db_ctdb_get_seqnum(struct db_context *db)
1479 struct db_ctdb_ctx *ctx = talloc_get_type_abort(db->private_data,
1480 struct db_ctdb_ctx);
1481 return tdb_get_seqnum(ctx->wtdb->tdb);
1484 static void db_ctdb_id(struct db_context *db, const uint8_t **id,
1485 size_t *idlen)
1487 struct db_ctdb_ctx *ctx = talloc_get_type_abort(
1488 db->private_data, struct db_ctdb_ctx);
1490 *id = (uint8_t *)&ctx->db_id;
1491 *idlen = sizeof(ctx->db_id);
1494 struct db_context *db_open_ctdb(TALLOC_CTX *mem_ctx,
1495 const char *name,
1496 int hash_size, int tdb_flags,
1497 int open_flags, mode_t mode,
1498 enum dbwrap_lock_order lock_order)
1500 struct db_context *result;
1501 struct db_ctdb_ctx *db_ctdb;
1502 char *db_path;
1503 struct ctdbd_connection *conn;
1504 struct loadparm_context *lp_ctx;
1505 struct ctdb_db_priority prio;
1506 NTSTATUS status;
1507 int cstatus;
1509 if (!lp_clustering()) {
1510 DEBUG(10, ("Clustering disabled -- no ctdb\n"));
1511 return NULL;
1514 if (!(result = talloc_zero(mem_ctx, struct db_context))) {
1515 DEBUG(0, ("talloc failed\n"));
1516 TALLOC_FREE(result);
1517 return NULL;
1520 if (!(db_ctdb = talloc(result, struct db_ctdb_ctx))) {
1521 DEBUG(0, ("talloc failed\n"));
1522 TALLOC_FREE(result);
1523 return NULL;
1526 result->name = talloc_strdup(result, name);
1527 if (result->name == NULL) {
1528 DEBUG(0, ("talloc failed\n"));
1529 TALLOC_FREE(result);
1530 return NULL;
1533 db_ctdb->transaction = NULL;
1534 db_ctdb->db = result;
1536 conn = messaging_ctdbd_connection();
1537 if (conn == NULL) {
1538 DEBUG(1, ("Could not connect to ctdb\n"));
1539 TALLOC_FREE(result);
1540 return NULL;
1543 if (!NT_STATUS_IS_OK(ctdbd_db_attach(conn, name, &db_ctdb->db_id, tdb_flags))) {
1544 DEBUG(0, ("ctdbd_db_attach failed for %s\n", name));
1545 TALLOC_FREE(result);
1546 return NULL;
1549 db_path = ctdbd_dbpath(conn, db_ctdb, db_ctdb->db_id);
1551 result->persistent = ((tdb_flags & TDB_CLEAR_IF_FIRST) == 0);
1552 result->lock_order = lock_order;
1554 /* only pass through specific flags */
1555 tdb_flags &= TDB_SEQNUM;
1557 /* honor permissions if user has specified O_CREAT */
1558 if (open_flags & O_CREAT) {
1559 chmod(db_path, mode);
1562 prio.db_id = db_ctdb->db_id;
1563 prio.priority = lock_order;
1565 status = ctdbd_control_local(
1566 conn, CTDB_CONTROL_SET_DB_PRIORITY, 0, 0,
1567 make_tdb_data((uint8_t *)&prio, sizeof(prio)),
1568 NULL, NULL, &cstatus);
1570 if (!NT_STATUS_IS_OK(status) || (cstatus != 0)) {
1571 DEBUG(1, ("CTDB_CONTROL_SET_DB_PRIORITY failed: %s, %d\n",
1572 nt_errstr(status), cstatus));
1573 TALLOC_FREE(result);
1574 return NULL;
1577 lp_ctx = loadparm_init_s3(db_path, loadparm_s3_helpers());
1579 db_ctdb->wtdb = tdb_wrap_open(db_ctdb, db_path, hash_size, tdb_flags,
1580 O_RDWR, 0, lp_ctx);
1581 talloc_unlink(db_path, lp_ctx);
1582 if (db_ctdb->wtdb == NULL) {
1583 DEBUG(0, ("Could not open tdb %s: %s\n", db_path, strerror(errno)));
1584 TALLOC_FREE(result);
1585 return NULL;
1587 talloc_free(db_path);
1589 if (result->persistent) {
1590 db_ctdb->lock_ctx = g_lock_ctx_init(db_ctdb,
1591 ctdb_conn_msg_ctx(conn));
1592 if (db_ctdb->lock_ctx == NULL) {
1593 DEBUG(0, ("g_lock_ctx_init failed\n"));
1594 TALLOC_FREE(result);
1595 return NULL;
1599 result->private_data = (void *)db_ctdb;
1600 result->fetch_locked = db_ctdb_fetch_locked;
1601 result->try_fetch_locked = db_ctdb_try_fetch_locked;
1602 result->parse_record = db_ctdb_parse_record;
1603 result->traverse = db_ctdb_traverse;
1604 result->traverse_read = db_ctdb_traverse_read;
1605 result->get_seqnum = db_ctdb_get_seqnum;
1606 result->transaction_start = db_ctdb_transaction_start;
1607 result->transaction_commit = db_ctdb_transaction_commit;
1608 result->transaction_cancel = db_ctdb_transaction_cancel;
1609 result->id = db_ctdb_id;
1610 result->stored_callback = NULL;
1612 DEBUG(3,("db_open_ctdb: opened database '%s' with dbid 0x%x\n",
1613 name, db_ctdb->db_id));
1615 return result;
1618 #else /* CLUSTER_SUPPORT */
1620 struct db_context *db_open_ctdb(TALLOC_CTX *mem_ctx,
1621 const char *name,
1622 int hash_size, int tdb_flags,
1623 int open_flags, mode_t mode,
1624 enum dbwrap_lock_order lock_order)
1626 DEBUG(3, ("db_open_ctdb: no cluster support!\n"));
1627 errno = ENOSYS;
1628 return NULL;
1631 #endif