2 simple tool to test persistent databases
4 Copyright (C) Andrew Tridgell 2006-2007
5 Copyright (c) Ronnie sahlberg 2007
6 Copyright (C) Michael Adam 2009
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, see <http://www.gnu.org/licenses/>.
23 #include "system/filesys.h"
30 static struct timeval tp1
,tp2
;
32 static void start_timer(void)
34 gettimeofday(&tp1
,NULL
);
37 static double end_timer(void)
39 gettimeofday(&tp2
,NULL
);
40 return (tp2
.tv_sec
+ (tp2
.tv_usec
*1.0e-6)) -
41 (tp1
.tv_sec
+ (tp1
.tv_usec
*1.0e-6));
44 static int timelimit
= 10;
46 static int verbose
= 0;
48 static unsigned int pnn
;
50 static TDB_DATA old_data
;
52 static bool success
= false;
54 static void print_counters(void)
57 uint32_t *old_counters
;
59 printf("[%4u] Counters: ", getpid());
60 old_counters
= (uint32_t *)old_data
.dptr
;
61 for (i
=0;i
<old_data
.dsize
/sizeof(uint32_t); i
++) {
62 printf("%6u ", old_counters
[i
]);
67 static void each_second(struct event_context
*ev
, struct timed_event
*te
,
68 struct timeval t
, void *private_data
)
70 struct ctdb_context
*ctdb
= talloc_get_type(private_data
, struct ctdb_context
);
74 event_add_timed(ev
, ctdb
, timeval_current_ofs(1, 0), each_second
, ctdb
);
77 static void check_counters(struct ctdb_context
*ctdb
, TDB_DATA data
)
80 uint32_t *counters
, *old_counters
;
81 bool monotonous
= true;
83 counters
= (uint32_t *)data
.dptr
;
84 old_counters
= (uint32_t *)old_data
.dptr
;
86 /* check that all the counters are monotonic increasing */
87 for (i
=0; i
<old_data
.dsize
/sizeof(uint32_t); i
++) {
88 if (counters
[i
]<old_counters
[i
]) {
89 printf("[%4u] ERROR: counters has decreased for node %u From %u to %u\n",
90 getpid(), i
, old_counters
[i
], counters
[i
]);
95 if (old_data
.dsize
!= data
.dsize
) {
96 old_data
.dsize
= data
.dsize
;
97 old_data
.dptr
= talloc_realloc_size(ctdb
, old_data
.dptr
, old_data
.dsize
);
100 memcpy(old_data
.dptr
, data
.dptr
, data
.dsize
);
101 if (verbose
) print_counters();
103 success
= monotonous
;
107 static void do_sleep(unsigned int sec
)
110 for (i
=0; i
<sec
; i
++) {
111 if (verbose
) printf(".");
114 if (verbose
) printf("\n");
117 static void test_store_records(struct ctdb_context
*ctdb
, struct event_context
*ev
)
120 struct ctdb_db_context
*ctdb_db
;
123 ctdb_db
= ctdb_db_handle(ctdb
, "transaction.tdb");
125 key
.dptr
= discard_const("testkey");
126 key
.dsize
= strlen((const char *)key
.dptr
)+1;
129 while ((timelimit
== 0) || (end_timer() < timelimit
)) {
130 TALLOC_CTX
*tmp_ctx
= talloc_new(ctdb
);
132 struct ctdb_transaction_handle
*h
;
134 if (verbose
) DEBUG(DEBUG_ERR
, ("starting transaction\n"));
135 h
= ctdb_transaction_start(ctdb_db
, tmp_ctx
);
137 DEBUG(DEBUG_ERR
, ("Failed to start transaction on node %d\n",
138 ctdb_get_pnn(ctdb
)));
139 talloc_free(tmp_ctx
);
142 if (verbose
) DEBUG(DEBUG_ERR
, ("transaction started\n"));
145 if (verbose
) DEBUG(DEBUG_ERR
, ("calling transaction_fetch\n"));
146 ret
= ctdb_transaction_fetch(h
, tmp_ctx
, key
, &data
);
148 DEBUG(DEBUG_ERR
,("Failed to fetch record\n"));
151 if (verbose
) DEBUG(DEBUG_ERR
, ("fetched data ok\n"));
154 if (data
.dsize
< sizeof(uint32_t) * (pnn
+1)) {
155 unsigned char *ptr
= data
.dptr
;
157 data
.dptr
= talloc_zero_size(tmp_ctx
, sizeof(uint32_t) * (pnn
+1));
158 memcpy(data
.dptr
, ptr
, data
.dsize
);
161 data
.dsize
= sizeof(uint32_t) * (pnn
+1);
164 if (data
.dptr
== NULL
) {
165 DEBUG(DEBUG_ERR
, ("Failed to realloc array\n"));
166 talloc_free(tmp_ctx
);
170 counters
= (uint32_t *)data
.dptr
;
172 /* bump our counter */
175 if (verbose
) DEBUG(DEBUG_ERR
, ("calling transaction_store\n"));
176 ret
= ctdb_transaction_store(h
, key
, data
);
178 DEBUG(DEBUG_ERR
,("Failed to store record\n"));
181 if (verbose
) DEBUG(DEBUG_ERR
, ("stored data ok\n"));
184 if (verbose
) DEBUG(DEBUG_ERR
, ("calling transaction_commit\n"));
185 ret
= ctdb_transaction_commit(h
);
187 DEBUG(DEBUG_ERR
,("Failed to commit transaction\n"));
188 check_counters(ctdb
, data
);
191 if (verbose
) DEBUG(DEBUG_ERR
, ("transaction committed\n"));
193 /* store the counters and verify that they are sane */
194 if (verbose
|| (pnn
== 0)) {
195 check_counters(ctdb
, data
);
200 talloc_free(tmp_ctx
);
208 int main(int argc
, const char *argv
[])
210 struct ctdb_context
*ctdb
;
211 struct ctdb_db_context
*ctdb_db
;
212 int unsafe_writes
= 0;
213 struct poptOption popt_options
[] = {
216 { "timelimit", 't', POPT_ARG_INT
, &timelimit
, 0, "timelimit", "integer" },
217 { "delay", 'D', POPT_ARG_INT
, &delay
, 0, "delay (in seconds) between operations", "integer" },
218 { "verbose", 'v', POPT_ARG_NONE
, &verbose
, 0, "switch on verbose mode", NULL
},
219 { "unsafe-writes", 'u', POPT_ARG_NONE
, &unsafe_writes
, 0, "do not use tdb transactions when writing", NULL
},
223 const char **extra_argv
;
226 struct event_context
*ev
;
229 setbuf(stdout
, (char *)NULL
); /* don't buffer */
234 pc
= poptGetContext(argv
[0], argc
, argv
, popt_options
, POPT_CONTEXT_KEEP_FIRST
);
236 while ((opt
= poptGetNextOpt(pc
)) != -1) {
239 fprintf(stderr
, "Invalid option %s: %s\n",
240 poptBadOption(pc
, 0), poptStrerror(opt
));
245 /* setup the remaining options for the main program to use */
246 extra_argv
= poptGetArgs(pc
);
249 while (extra_argv
[extra_argc
]) extra_argc
++;
252 ev
= event_context_init(NULL
);
254 ctdb
= ctdb_cmdline_client(ev
, timeval_current_ofs(3, 0));
256 DEBUG(DEBUG_ERR
, ("Could not attach to daemon\n"));
260 /* attach to a specific database */
261 if (unsafe_writes
== 1) {
262 ctdb_db
= ctdb_attach(ctdb
, timeval_current_ofs(2, 0),
263 "transaction.tdb", true, TDB_NOSYNC
);
265 ctdb_db
= ctdb_attach(ctdb
, timeval_current_ofs(2, 0),
266 "transaction.tdb", true, 0);
270 DEBUG(DEBUG_ERR
, ("ctdb_attach failed - %s\n", ctdb_errstr(ctdb
)));
274 DEBUG(DEBUG_ERR
, ("Waiting for cluster\n"));
277 ctdb_ctrl_getrecmode(ctdb
, ctdb
, timeval_zero(), CTDB_CURRENT_NODE
, &recmode
);
278 if (recmode
== 0) break;
282 pnn
= ctdb_get_pnn(ctdb
);
283 printf("Starting test on node %u. running for %u seconds. sleep delay: %u seconds.\n", pnn
, timelimit
, delay
);
285 if (!verbose
&& (pnn
== 0)) {
286 event_add_timed(ev
, ctdb
, timeval_current_ofs(1, 0), each_second
, ctdb
);
289 test_store_records(ctdb
, ev
);
291 if (verbose
|| (pnn
== 0)) {
292 if (success
!= true) {
293 printf("The test FAILED\n");
296 printf("SUCCESS!\n");