Remove LACOUNT and LACCESSOR and migrate the records immediately.
[sahlberg/ctdb.git] / include / ctdb_client.h
1 /*
2    ctdb database library: old client interface
3
4    Copyright (C) Andrew Tridgell  2006
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef _CTDB_CLIENT_H
21 #define _CTDB_CLIENT_H
22 #include <ctdb_protocol.h>
23
24 enum control_state {CTDB_CONTROL_WAIT, CTDB_CONTROL_DONE, CTDB_CONTROL_ERROR, CTDB_CONTROL_TIMEOUT};
25
26 struct ctdb_client_control_state {
27         struct ctdb_context *ctdb;
28         uint32_t reqid;
29         int32_t status;
30         TDB_DATA outdata;
31         enum control_state state;
32         char *errormsg;
33         struct ctdb_req_control *c;
34
35         /* if we have a callback registered for the completion (or failure) of
36            this control
37            if a callback is used, it MUST talloc_free the cb_data passed to it
38         */
39         struct {
40                 void (*fn)(struct ctdb_client_control_state *);
41                 void *private_data;
42         } async;
43 };
44
45 struct ctdb_client_notify_register {
46         uint64_t srvid;
47         uint32_t len;
48         uint8_t notify_data[1];
49 };
50
51 struct ctdb_client_notify_deregister {
52         uint64_t srvid;
53 };
54
55 struct tevent_context;
56
57 /*
58   initialise ctdb subsystem
59 */
60 struct ctdb_context *ctdb_init(struct tevent_context *ev);
61
62 /*
63   choose the transport
64 */
65 int ctdb_set_transport(struct ctdb_context *ctdb, const char *transport);
66
67 /*
68   set the directory for the local databases
69 */
70 int ctdb_set_tdb_dir(struct ctdb_context *ctdb, const char *dir);
71 int ctdb_set_tdb_dir_persistent(struct ctdb_context *ctdb, const char *dir);
72 int ctdb_set_tdb_dir_state(struct ctdb_context *ctdb, const char *dir);
73
74 /*
75   set some flags
76 */
77 void ctdb_set_flags(struct ctdb_context *ctdb, unsigned flags);
78
79 /*
80   tell ctdb what address to listen on, in transport specific format
81 */
82 int ctdb_set_address(struct ctdb_context *ctdb, const char *address);
83
84 int ctdb_set_socketname(struct ctdb_context *ctdb, const char *socketname);
85 const char *ctdb_get_socketname(struct ctdb_context *ctdb);
86
87 /*
88   tell ctdb what nodes are available. This takes a filename, which will contain
89   1 node address per line, in a transport specific format
90 */
91 int ctdb_set_nlist(struct ctdb_context *ctdb, const char *nlist);
92
93 /*
94   Check that a specific ip address exists in the node list and returns
95   the id for the node or -1
96 */
97 int ctdb_ip_to_nodeid(struct ctdb_context *ctdb, const char *nodeip);
98
99 /*
100   start the ctdb protocol
101 */
102 int ctdb_start(struct ctdb_context *ctdb);
103 int ctdb_start_daemon(struct ctdb_context *ctdb, bool do_fork, bool use_syslog, const char *public_address_list);
104
105 /*
106   attach to a ctdb database
107 */
108 struct ctdb_db_context *ctdb_attach(struct ctdb_context *ctdb, const char *name, bool persistent, uint32_t tdb_flags);
109
110 /*
111   find an attached ctdb_db handle given a name
112  */
113 struct ctdb_db_context *ctdb_db_handle(struct ctdb_context *ctdb, const char *name);
114
115 /*
116   error string for last ctdb error
117 */
118 const char *ctdb_errstr(struct ctdb_context *);
119
120 /* a ctdb call function */
121 typedef int (*ctdb_fn_t)(struct ctdb_call_info *);
122
123 /*
124   setup a ctdb call function
125 */
126 int ctdb_set_call(struct ctdb_db_context *ctdb_db, ctdb_fn_t fn, uint32_t id);
127
128
129
130 /*
131   make a ctdb call. The associated ctdb call function will be called on the DMASTER
132   for the given record
133 */
134 int ctdb_call(struct ctdb_db_context *ctdb_db, struct ctdb_call *call);
135
136 /*
137   initiate an ordered ctdb cluster shutdown
138   this function will never return
139 */
140 void ctdb_shutdown(struct ctdb_context *ctdb);
141
142 /* return pnn of this node */
143 uint32_t ctdb_get_pnn(struct ctdb_context *ctdb);
144
145 /*
146   return the number of nodes
147 */
148 uint32_t ctdb_get_num_nodes(struct ctdb_context *ctdb);
149
150 /* setup a handler for ctdb messages */
151 typedef void (*ctdb_msg_fn_t)(struct ctdb_context *, uint64_t srvid,
152                                   TDB_DATA data, void *);
153 int ctdb_client_set_message_handler(struct ctdb_context *ctdb, uint64_t srvid,
154                              ctdb_msg_fn_t handler,
155                              void *private_data);
156 int ctdb_client_remove_message_handler(struct ctdb_context *ctdb,
157                                        uint64_t srvid, void *private_data);
158
159
160 int ctdb_call(struct ctdb_db_context *ctdb_db, struct ctdb_call *call);
161 struct ctdb_client_call_state *ctdb_call_send(struct ctdb_db_context *ctdb_db, struct ctdb_call *call);
162 int ctdb_call_recv(struct ctdb_client_call_state *state, struct ctdb_call *call);
163
164 /* send a ctdb message */
165 int ctdb_client_send_message(struct ctdb_context *ctdb, uint32_t pnn,
166                       uint64_t srvid, TDB_DATA data);
167
168
169 /*
170    Fetch a ctdb record from a remote node
171  . Underneath this will force the
172    dmaster for the record to be moved to the local node.
173 */
174 struct ctdb_record_handle *ctdb_fetch_lock(struct ctdb_db_context *ctdb_db, TALLOC_CTX *mem_ctx,
175                                            TDB_DATA key, TDB_DATA *data);
176
177 int ctdb_record_store(struct ctdb_record_handle *h, TDB_DATA data);
178
179 int ctdb_fetch(struct ctdb_db_context *ctdb_db, TALLOC_CTX *mem_ctx,
180                TDB_DATA key, TDB_DATA *data);
181
182 int ctdb_register_message_handler(struct ctdb_context *ctdb,
183                                   TALLOC_CTX *mem_ctx,
184                                   uint64_t srvid,
185                                   ctdb_msg_fn_t handler,
186                                   void *private_data);
187
188 struct ctdb_db_context *find_ctdb_db(struct ctdb_context *ctdb, uint32_t id);
189
190
191 struct ctdb_context *ctdb_cmdline_client(struct tevent_context *ev);
192
193 struct ctdb_statistics;
194 int ctdb_ctrl_statistics(struct ctdb_context *ctdb, uint32_t destnode, struct ctdb_statistics *status);
195
196 int ctdb_ctrl_shutdown(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
197
198 struct ctdb_vnn_map;
199 int ctdb_ctrl_getvnnmap(struct ctdb_context *ctdb,
200                 struct timeval timeout, uint32_t destnode,
201                 TALLOC_CTX *mem_ctx, struct ctdb_vnn_map **vnnmap);
202 int ctdb_ctrl_setvnnmap(struct ctdb_context *ctdb,
203                 struct timeval timeout, uint32_t destnode,
204                 TALLOC_CTX *mem_ctx, struct ctdb_vnn_map *vnnmap);
205
206 /* table that contains a list of all dbids on a node
207  */
208 struct ctdb_dbid_map {
209         uint32_t num;
210         struct ctdb_dbid {
211                 uint32_t dbid;
212                 bool persistent;
213         } dbs[1];
214 };
215 int ctdb_ctrl_getdbmap(struct ctdb_context *ctdb,
216         struct timeval timeout, uint32_t destnode,
217         TALLOC_CTX *mem_ctx, struct ctdb_dbid_map **dbmap);
218
219
220 struct ctdb_node_map;
221
222 int ctdb_ctrl_getnodemap(struct ctdb_context *ctdb,
223                     struct timeval timeout, uint32_t destnode,
224                     TALLOC_CTX *mem_ctx, struct ctdb_node_map **nodemap);
225
226 int ctdb_ctrl_getnodemapv4(struct ctdb_context *ctdb,
227                     struct timeval timeout, uint32_t destnode,
228                     TALLOC_CTX *mem_ctx, struct ctdb_node_map **nodemap);
229
230 int ctdb_ctrl_reload_nodes_file(struct ctdb_context *ctdb,
231                     struct timeval timeout, uint32_t destnode);
232
233 struct ctdb_key_list {
234         uint32_t dbid;
235         uint32_t num;
236         TDB_DATA *keys;
237         struct ctdb_ltdb_header *headers;
238         TDB_DATA *data;
239 };
240
241 int ctdb_ctrl_pulldb(
242        struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid,
243        uint32_t lmaster, TALLOC_CTX *mem_ctx,
244        struct timeval timeout, TDB_DATA *outdata);
245
246 struct ctdb_client_control_state *ctdb_ctrl_pulldb_send(
247        struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid,
248        uint32_t lmaster, TALLOC_CTX *mem_ctx, struct timeval timeout);
249
250 int ctdb_ctrl_pulldb_recv(
251        struct ctdb_context *ctdb,
252        TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state,
253        TDB_DATA *outdata);
254
255 int ctdb_ctrl_pushdb(
256        struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid,
257        TALLOC_CTX *mem_ctx,
258        struct timeval timeout, TDB_DATA indata);
259
260 struct ctdb_client_control_state *ctdb_ctrl_pushdb_send(
261        struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid,
262        TALLOC_CTX *mem_ctx, struct timeval timeout,
263        TDB_DATA indata);
264
265 int ctdb_ctrl_pushdb_recv(
266        struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx,
267        struct ctdb_client_control_state *state);
268
269
270 int ctdb_ctrl_copydb(struct ctdb_context *ctdb,
271         struct timeval timeout, uint32_t sourcenode,
272         uint32_t destnode, uint32_t dbid, uint32_t lmaster,
273         TALLOC_CTX *mem_ctx);
274
275 int ctdb_ctrl_getdbpath(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t dbid, TALLOC_CTX *mem_ctx, const char **path);
276 int ctdb_ctrl_getdbname(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t dbid, TALLOC_CTX *mem_ctx, const char **name);
277 int ctdb_ctrl_getdbhealth(struct ctdb_context *ctdb,
278                           struct timeval timeout,
279                           uint32_t destnode,
280                           uint32_t dbid, TALLOC_CTX *mem_ctx,
281                           const char **reason);
282 int ctdb_ctrl_createdb(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, TALLOC_CTX *mem_ctx, const char *name, bool persistent);
283
284 int ctdb_ctrl_process_exists(struct ctdb_context *ctdb, uint32_t destnode, pid_t pid);
285
286 int ctdb_ctrl_ping(struct ctdb_context *ctdb, uint32_t destnode);
287
288 int ctdb_ctrl_get_config(struct ctdb_context *ctdb);
289
290 int ctdb_ctrl_get_debuglevel(struct ctdb_context *ctdb, uint32_t destnode, int32_t *level);
291 int ctdb_ctrl_set_debuglevel(struct ctdb_context *ctdb, uint32_t destnode, int32_t level);
292
293 /*
294   change dmaster for all keys in the database to the new value
295  */
296 int ctdb_ctrl_setdmaster(struct ctdb_context *ctdb,
297         struct timeval timeout, uint32_t destnode,
298         TALLOC_CTX *mem_ctx, uint32_t dbid, uint32_t dmaster);
299
300 /*
301   write a record on a specific db (this implicitely updates dmaster of the record to locally be the vnn of the node where the control is executed on)
302  */
303 int ctdb_ctrl_write_record(struct ctdb_context *ctdb, uint32_t destnode, TALLOC_CTX *mem_ctx, uint32_t dbid, TDB_DATA key, TDB_DATA data);
304
305 #define CTDB_RECOVERY_NORMAL            0
306 #define CTDB_RECOVERY_ACTIVE            1
307
308 /*
309   get the recovery mode of a remote node
310  */
311 int ctdb_ctrl_getrecmode(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode, uint32_t *recmode);
312
313 struct ctdb_client_control_state *ctdb_ctrl_getrecmode_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
314
315 int ctdb_ctrl_getrecmode_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, uint32_t *recmode);
316
317
318 /*
319   set the recovery mode of a remote node
320  */
321 int ctdb_ctrl_setrecmode(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t recmode);
322 /*
323   get the monitoring mode of a remote node
324  */
325 int ctdb_ctrl_getmonmode(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t *monmode);
326
327 /*
328   set the monitoring mode of a remote node to active
329  */
330 int ctdb_ctrl_enable_monmode(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
331
332 /*
333   set the monitoring mode of a remote node to disabled
334  */
335 int ctdb_ctrl_disable_monmode(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
336
337
338 /*
339   get the recovery master of a remote node
340  */
341 int ctdb_ctrl_getrecmaster(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode, uint32_t *recmaster);
342
343 struct ctdb_client_control_state *ctdb_ctrl_getrecmaster_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
344
345 int ctdb_ctrl_getrecmaster_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, uint32_t *recmaster);
346
347
348
349 /*
350   set the recovery master of a remote node
351  */
352 int ctdb_ctrl_setrecmaster(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t recmaster);
353
354 uint32_t *ctdb_get_connected_nodes(struct ctdb_context *ctdb,
355                                    struct timeval timeout,
356                                    TALLOC_CTX *mem_ctx,
357                                    uint32_t *num_nodes);
358
359 int ctdb_statistics_reset(struct ctdb_context *ctdb, uint32_t destnode);
360
361 int ctdb_set_logfile(struct ctdb_context *ctdb, const char *logfile, bool use_syslog);
362
363 typedef int (*ctdb_traverse_func)(struct ctdb_context *, TDB_DATA, TDB_DATA, void *);
364 int ctdb_traverse(struct ctdb_db_context *ctdb_db, ctdb_traverse_func fn, void *private_data);
365
366 int ctdb_dumpdb_record(struct ctdb_context *ctdb, TDB_DATA key, TDB_DATA data, void *p);
367 int ctdb_dump_db(struct ctdb_db_context *ctdb_db, FILE *f);
368
369 /*
370   get the pid of a ctdb daemon
371  */
372 int ctdb_ctrl_getpid(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t *pid);
373
374 int ctdb_ctrl_freeze(struct ctdb_context *ctdb, struct timeval timeout,
375                         uint32_t destnode);
376 int ctdb_ctrl_freeze_priority(struct ctdb_context *ctdb, struct timeval timeout,
377                               uint32_t destnode, uint32_t priority);
378
379 struct ctdb_client_control_state *
380 ctdb_ctrl_freeze_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx,
381                       struct timeval timeout, uint32_t destnode,
382                       uint32_t priority);
383
384 int ctdb_ctrl_freeze_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx,
385                         struct ctdb_client_control_state *state);
386
387 int ctdb_ctrl_thaw_priority(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t priority);
388 int ctdb_ctrl_thaw(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
389
390 int ctdb_ctrl_getpnn(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
391
392 int ctdb_ctrl_get_tunable(struct ctdb_context *ctdb,
393                           struct timeval timeout,
394                           uint32_t destnode,
395                           const char *name, uint32_t *value);
396
397 int ctdb_ctrl_set_tunable(struct ctdb_context *ctdb,
398                           struct timeval timeout,
399                           uint32_t destnode,
400                           const char *name, uint32_t value);
401
402 int ctdb_ctrl_list_tunables(struct ctdb_context *ctdb,
403                             struct timeval timeout,
404                             uint32_t destnode,
405                             TALLOC_CTX *mem_ctx,
406                             const char ***list, uint32_t *count);
407
408 int ctdb_ctrl_modflags(struct ctdb_context *ctdb,
409                        struct timeval timeout,
410                        uint32_t destnode,
411                        uint32_t set, uint32_t clear);
412
413 enum ctdb_server_id_type {
414         SERVER_TYPE_SAMBA=1,
415         SERVER_TYPE_NFSD=2,
416         SERVER_TYPE_ISCSID=3
417 };
418
419 struct ctdb_server_id {
420         enum ctdb_server_id_type type;
421         uint32_t pnn;
422         uint32_t server_id;
423 };
424
425 struct ctdb_server_id_list {
426         uint32_t num;
427         struct ctdb_server_id server_ids[1];
428 };
429
430
431 int ctdb_ctrl_register_server_id(struct ctdb_context *ctdb,
432                 struct timeval timeout,
433                 struct ctdb_server_id *id);
434 int ctdb_ctrl_unregister_server_id(struct ctdb_context *ctdb,
435                 struct timeval timeout,
436                 struct ctdb_server_id *id);
437 int ctdb_ctrl_check_server_id(struct ctdb_context *ctdb,
438                 struct timeval timeout, uint32_t destnode,
439                 struct ctdb_server_id *id, uint32_t *status);
440 int ctdb_ctrl_get_server_id_list(struct ctdb_context *ctdb,
441                 TALLOC_CTX *mem_ctx,
442                 struct timeval timeout, uint32_t destnode,
443                 struct ctdb_server_id_list **svid_list);
444
445 struct ctdb_uptime {
446         struct timeval current_time;
447         struct timeval ctdbd_start_time;
448         struct timeval last_recovery_started;
449         struct timeval last_recovery_finished;
450 };
451
452 /*
453   struct for tcp_client control
454   this is an ipv4 only version of this structure used by samba
455   samba will later be migrated over to use the
456   ctdb_control_tcp_addr structure instead
457  */
458 struct ctdb_control_tcp {
459         struct sockaddr_in src; // samba uses this
460         struct sockaddr_in dest;// samba uses this
461 };
462 /* new style structure */
463 struct ctdb_control_tcp_addr {
464         ctdb_sock_addr src;
465         ctdb_sock_addr dest;
466 };
467
468 int ctdb_socket_connect(struct ctdb_context *ctdb);
469
470 /*
471   get the uptime of a remote node
472  */
473 int ctdb_ctrl_uptime(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode, struct ctdb_uptime **uptime);
474
475 struct ctdb_client_control_state *ctdb_ctrl_uptime_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
476
477 int ctdb_ctrl_uptime_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, struct ctdb_uptime **uptime);
478
479 int ctdb_ctrl_end_recovery(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
480
481 int ctdb_ctrl_getreclock(struct ctdb_context *ctdb,
482         struct timeval timeout, uint32_t destnode,
483         TALLOC_CTX *mem_ctx, const char **reclock);
484 int ctdb_ctrl_setreclock(struct ctdb_context *ctdb,
485         struct timeval timeout, uint32_t destnode,
486         const char *reclock);
487
488
489 uint32_t *list_of_connected_nodes(struct ctdb_context *ctdb,
490                                 struct ctdb_node_map *node_map,
491                                 TALLOC_CTX *mem_ctx,
492                                 bool include_self);
493 uint32_t *list_of_active_nodes(struct ctdb_context *ctdb,
494                                 struct ctdb_node_map *node_map,
495                                 TALLOC_CTX *mem_ctx,
496                                 bool include_self);
497 uint32_t *list_of_vnnmap_nodes(struct ctdb_context *ctdb,
498                                 struct ctdb_vnn_map *vnn_map,
499                                 TALLOC_CTX *mem_ctx,
500                                 bool include_self);
501 uint32_t *list_of_active_nodes_except_pnn(struct ctdb_context *ctdb,
502                                 struct ctdb_node_map *node_map,
503                                 TALLOC_CTX *mem_ctx,
504                                 uint32_t pnn);
505
506 int ctdb_read_pnn_lock(int fd, int32_t pnn);
507
508 /*
509   get capabilities of a remote node
510  */
511 int ctdb_ctrl_getcapabilities(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t *capabilities);
512
513 struct ctdb_client_control_state *ctdb_ctrl_getcapabilities_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
514
515 int ctdb_ctrl_getcapabilities_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, uint32_t *capabilities);
516
517
518 int32_t ctdb_ctrl_transaction_active(struct ctdb_context *ctdb,
519                                      uint32_t destnode,
520                                      uint32_t db_id);
521
522 struct ctdb_marshall_buffer *ctdb_marshall_add(TALLOC_CTX *mem_ctx,
523                                                struct ctdb_marshall_buffer *m,
524                                                uint64_t db_id,
525                                                uint32_t reqid,
526                                                TDB_DATA key,
527                                                struct ctdb_ltdb_header *header,
528                                                TDB_DATA data);
529 TDB_DATA ctdb_marshall_finish(struct ctdb_marshall_buffer *m);
530
531 struct ctdb_transaction_handle *ctdb_transaction_start(struct ctdb_db_context *ctdb_db,
532                                                        TALLOC_CTX *mem_ctx);
533 int ctdb_transaction_fetch(struct ctdb_transaction_handle *h,
534                            TALLOC_CTX *mem_ctx,
535                            TDB_DATA key, TDB_DATA *data);
536 int ctdb_transaction_store(struct ctdb_transaction_handle *h,
537                            TDB_DATA key, TDB_DATA data);
538 int ctdb_transaction_commit(struct ctdb_transaction_handle *h);
539
540 int ctdb_ctrl_recd_ping(struct ctdb_context *ctdb);
541
542 int switch_from_server_to_client(struct ctdb_context *ctdb, const char *fmt,
543                                  ...);
544
545 int ctdb_ctrl_getscriptstatus(struct ctdb_context *ctdb,
546                     struct timeval timeout, uint32_t destnode,
547                     TALLOC_CTX *mem_ctx, enum ctdb_eventscript_call type,
548                     struct ctdb_scripts_wire **script_status);
549
550
551 struct debug_levels {
552         int32_t level;
553         const char *description;
554 };
555 extern struct debug_levels debug_levels[];
556
557 const char *get_debug_by_level(int32_t level);
558 int32_t get_debug_by_desc(const char *desc);
559
560 int ctdb_ctrl_stop_node(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
561 int ctdb_ctrl_continue_node(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
562
563 int ctdb_ctrl_setnatgwstate(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t natgwstate);
564 int ctdb_ctrl_setlmasterrole(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t lmasterrole);
565 int ctdb_ctrl_setrecmasterrole(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t recmasterrole);
566
567 int ctdb_ctrl_enablescript(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, const char *script);
568 int ctdb_ctrl_disablescript(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, const char *script);
569
570 struct ctdb_ban_time {
571         uint32_t pnn;
572         uint32_t time;
573 };
574
575 int ctdb_ctrl_set_ban(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, struct ctdb_ban_time *bantime);
576 int ctdb_ctrl_get_ban(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, TALLOC_CTX *mem_ctx, struct ctdb_ban_time **bantime);
577
578 struct ctdb_db_priority {
579         uint32_t db_id;
580         uint32_t priority;
581 };
582
583 int ctdb_ctrl_set_db_priority(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, struct ctdb_db_priority *db_prio);
584 int ctdb_ctrl_get_db_priority(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t db_id, uint32_t *priority);
585
586 int ctdb_ctrl_getstathistory(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, TALLOC_CTX *mem_ctx, struct ctdb_statistics_wire **stats);
587
588
589 #endif /* _CTDB_CLIENT_H */