summaryrefslogtreecommitdiff
path: root/source4/lib/dbwrap/dbwrap_ctdb.c
blob: f3daa7dfe5a733d7921cf705777c2d1994d81403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/* 
   Unix SMB/CIFS implementation.

   Database interface wrapper around ctdbd

   Copyright (C) Andrew Tridgell 2007
   
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "includes.h"
#include "lib/tdb/include/tdb.h"
#include "lib/dbwrap/dbwrap.h"
#include "cluster/cluster.h"
#include "cluster/ctdb/include/ctdb.h"

static NTSTATUS db_ctdb_store(struct db_record *rec, TDB_DATA data, int flag)
{
	struct ctdb_record_handle *h = talloc_get_type(rec->private_data, struct ctdb_record_handle);
	int ret;

	ret = ctdb_record_store(h, data);
	if (ret != 0) {
		return NT_STATUS_INTERNAL_DB_CORRUPTION;
	}
	return NT_STATUS_OK;
}

static NTSTATUS db_ctdb_delete(struct db_record *rec)
{
	return rec->store(rec, tdb_null, TDB_REPLACE);
}


static struct db_record *db_ctdb_fetch_locked(struct db_context *db,
					      TALLOC_CTX *mem_ctx,
					      TDB_DATA key)
{
	struct db_record *rec;
	struct ctdb_record_handle *h;
	struct ctdb_db_context *cdb = talloc_get_type(db->private_data, struct ctdb_db_context);

	rec = talloc(mem_ctx, struct db_record);
	if (!rec) return NULL;

	h = ctdb_fetch_lock(cdb, rec, key, &rec->value);
	if (h == NULL) {
		talloc_free(rec);
		return NULL;
	}

	rec->private_data = h;
	rec->store        = db_ctdb_store;
	rec->delete_rec   = db_ctdb_delete;

	return rec;
}

/*
  fetch (unlocked, no migration) operation on ctdb
 */
static int db_ctdb_fetch(struct db_context *db, TALLOC_CTX *mem_ctx,
			 TDB_DATA key, TDB_DATA *data)
{
	struct ctdb_db_context *cdb = talloc_get_type(db->private_data, struct ctdb_db_context);

	return ctdb_fetch(cdb, mem_ctx, key, data);
}

struct traverse_state {
	struct db_context *db;
	int (*fn)(struct db_record *rec, void *private_data);
	void *private_data;
};

static int traverse_callback(struct ctdb_context *ctdb, TDB_DATA key, TDB_DATA data, void *private_data)
{
	struct traverse_state *state = (struct traverse_state *)private_data;
	struct db_record *rec;
	TALLOC_CTX *tmp_ctx = talloc_new(state->db);
	/* we have to give them a locked record to prevent races */
	rec = db_ctdb_fetch_locked(state->db, tmp_ctx, key);
	if (rec && rec->value.dsize > 0) {
		state->fn(rec, state->private_data);
	}
	talloc_free(tmp_ctx);
	return 0;
}

static int db_ctdb_traverse(struct db_context *db,
			    int (*fn)(struct db_record *rec, void *private_data),
			    void *private_data)
{
	struct ctdb_db_context *cdb = talloc_get_type(db->private_data, struct ctdb_db_context);
	struct traverse_state state;

	state.db = db;
	state.fn = fn;
	state.private_data = private_data;

	ctdb_traverse(cdb, traverse_callback, &state);
	return 0;
}

static NTSTATUS db_ctdb_store_deny(struct db_record *rec, TDB_DATA data, int flag)
{
	return NT_STATUS_MEDIA_WRITE_PROTECTED;
}

static NTSTATUS db_ctdb_delete_deny(struct db_record *rec)
{
	return NT_STATUS_MEDIA_WRITE_PROTECTED;
}

static int traverse_read_callback(struct ctdb_context *ctdb, 
				  TDB_DATA key, TDB_DATA data, void *private_data)
{
	struct traverse_state *state = (struct traverse_state *)private_data;
	struct db_record rec;
	rec.key = key;
	rec.value = data;
	rec.store = db_ctdb_store_deny;
	rec.delete_rec = db_ctdb_delete_deny;
	rec.private_data = state->db;
	state->fn(&rec, state->private_data);
	return 0;
}

static int db_ctdb_traverse_read(struct db_context *db,
				 int (*fn)(struct db_record *rec,
					   void *private_data),
				 void *private_data)
{
	struct traverse_state state;
	struct ctdb_db_context *cdb = talloc_get_type(db->private_data, struct ctdb_db_context);

	state.db = db;
	state.fn = fn;
	state.private_data = private_data;

	ctdb_traverse(cdb, traverse_read_callback, &state);
	return 0;
}

static int db_ctdb_get_seqnum(struct db_context *db)
{
	DEBUG(0,("ctdb_get_seqnum not implemented\n"));
	return -1;
}

struct db_context *db_tmp_open_ctdb(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx,
				    const char *name, int tdb_flags)
{
	struct db_context *db;
	struct ctdb_context *ctdb = talloc_get_type(cluster_backend_handle(), 
						    struct ctdb_context);
	struct ctdb_db_context *cdb;

	db = talloc_zero(mem_ctx, struct db_context);
	if (db == NULL) {
		return NULL;
	}

	cdb = ctdb_attach(ctdb, name);
	if (!cdb) {
		DEBUG(0,("Failed to attach to ctdb database '%s'\n", name));
		talloc_free(db);
		return NULL;
	}

	db->private_data  = cdb;
	db->fetch_locked  = db_ctdb_fetch_locked;
	db->fetch         = db_ctdb_fetch;
	db->traverse      = db_ctdb_traverse;
	db->traverse_read = db_ctdb_traverse_read;
	db->get_seqnum    = db_ctdb_get_seqnum;

	DEBUG(3,("db_tmp_open_ctdb: opened database '%s'\n", name));

	return db;
}