Merge remote branch 'ddiss/master_pmda_namespace'
[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,
109                                     struct timeval timeout,
110                                     const char *name,
111                                     bool persistent,
112                                     uint32_t tdb_flags);
113
114
115 /*
116   find an attached ctdb_db handle given a name
117  */
118 struct ctdb_db_context *ctdb_db_handle(struct ctdb_context *ctdb, const char *name);
119
120 /*
121   error string for last ctdb error
122 */
123 const char *ctdb_errstr(struct ctdb_context *);
124
125 /* a ctdb call function */
126 typedef int (*ctdb_fn_t)(struct ctdb_call_info *);
127
128 /*
129   setup a ctdb call function
130 */
131 int ctdb_set_call(struct ctdb_db_context *ctdb_db, ctdb_fn_t fn, uint32_t id);
132
133
134
135 /*
136   make a ctdb call. The associated ctdb call function will be called on the DMASTER
137   for the given record
138 */
139 int ctdb_call(struct ctdb_db_context *ctdb_db, struct ctdb_call *call);
140
141 /*
142   initiate an ordered ctdb cluster shutdown
143   this function will never return
144 */
145 void ctdb_shutdown(struct ctdb_context *ctdb);
146
147 /* return pnn of this node */
148 uint32_t ctdb_get_pnn(struct ctdb_context *ctdb);
149
150 /*
151   return the number of nodes
152 */
153 uint32_t ctdb_get_num_nodes(struct ctdb_context *ctdb);
154
155 /* setup a handler for ctdb messages */
156 typedef void (*ctdb_msg_fn_t)(struct ctdb_context *, uint64_t srvid,
157                                   TDB_DATA data, void *);
158 int ctdb_client_set_message_handler(struct ctdb_context *ctdb, uint64_t srvid,
159                              ctdb_msg_fn_t handler,
160                              void *private_data);
161 int ctdb_client_remove_message_handler(struct ctdb_context *ctdb,
162                                        uint64_t srvid, void *private_data);
163
164
165 int ctdb_call(struct ctdb_db_context *ctdb_db, struct ctdb_call *call);
166 struct ctdb_client_call_state *ctdb_call_send(struct ctdb_db_context *ctdb_db, struct ctdb_call *call);
167 int ctdb_call_recv(struct ctdb_client_call_state *state, struct ctdb_call *call);
168
169 /* send a ctdb message */
170 int ctdb_client_send_message(struct ctdb_context *ctdb, uint32_t pnn,
171                       uint64_t srvid, TDB_DATA data);
172
173
174 /*
175    Fetch a ctdb record from a remote node
176  . Underneath this will force the
177    dmaster for the record to be moved to the local node.
178 */
179 struct ctdb_record_handle *ctdb_fetch_lock(struct ctdb_db_context *ctdb_db, TALLOC_CTX *mem_ctx,
180                                            TDB_DATA key, TDB_DATA *data);
181
182 struct ctdb_record_handle *ctdb_fetch_readonly_lock(struct ctdb_db_context *ctdb_db, TALLOC_CTX *mem_ctx, TDB_DATA key, TDB_DATA *data, int read_only);
183
184 int ctdb_record_store(struct ctdb_record_handle *h, TDB_DATA data);
185
186 int ctdb_fetch(struct ctdb_db_context *ctdb_db, TALLOC_CTX *mem_ctx,
187                TDB_DATA key, TDB_DATA *data);
188
189 int ctdb_register_message_handler(struct ctdb_context *ctdb,
190                                   TALLOC_CTX *mem_ctx,
191                                   uint64_t srvid,
192                                   ctdb_msg_fn_t handler,
193                                   void *private_data);
194
195 struct ctdb_db_context *find_ctdb_db(struct ctdb_context *ctdb, uint32_t id);
196
197
198 struct ctdb_context *ctdb_cmdline_client(struct tevent_context *ev,
199                                          struct timeval req_timeout);
200
201 struct ctdb_statistics;
202 int ctdb_ctrl_statistics(struct ctdb_context *ctdb, uint32_t destnode, struct ctdb_statistics *status);
203
204 int ctdb_ctrl_shutdown(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
205
206 struct ctdb_vnn_map;
207 int ctdb_ctrl_getvnnmap(struct ctdb_context *ctdb,
208                 struct timeval timeout, uint32_t destnode,
209                 TALLOC_CTX *mem_ctx, struct ctdb_vnn_map **vnnmap);
210 int ctdb_ctrl_setvnnmap(struct ctdb_context *ctdb,
211                 struct timeval timeout, uint32_t destnode,
212                 TALLOC_CTX *mem_ctx, struct ctdb_vnn_map *vnnmap);
213
214 /* table that contains a list of all dbids on a node
215  */
216 struct ctdb_dbid_map {
217         uint32_t num;
218         struct ctdb_dbid {
219                 uint32_t dbid;
220 #define CTDB_DB_FLAGS_PERSISTENT        0x01
221 #define CTDB_DB_FLAGS_READONLY          0x02
222                 uint8_t flags;
223         } dbs[1];
224 };
225 int ctdb_ctrl_getdbmap(struct ctdb_context *ctdb,
226         struct timeval timeout, uint32_t destnode,
227         TALLOC_CTX *mem_ctx, struct ctdb_dbid_map **dbmap);
228
229
230 struct ctdb_node_map;
231
232 int ctdb_ctrl_getnodemap(struct ctdb_context *ctdb,
233                     struct timeval timeout, uint32_t destnode,
234                     TALLOC_CTX *mem_ctx, struct ctdb_node_map **nodemap);
235
236 int ctdb_ctrl_getnodemapv4(struct ctdb_context *ctdb,
237                     struct timeval timeout, uint32_t destnode,
238                     TALLOC_CTX *mem_ctx, struct ctdb_node_map **nodemap);
239
240 int ctdb_ctrl_reload_nodes_file(struct ctdb_context *ctdb,
241                     struct timeval timeout, uint32_t destnode);
242
243 struct ctdb_key_list {
244         uint32_t dbid;
245         uint32_t num;
246         TDB_DATA *keys;
247         struct ctdb_ltdb_header *headers;
248         TDB_DATA *data;
249 };
250
251 int ctdb_ctrl_pulldb(
252        struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid,
253        uint32_t lmaster, TALLOC_CTX *mem_ctx,
254        struct timeval timeout, TDB_DATA *outdata);
255
256 struct ctdb_client_control_state *ctdb_ctrl_pulldb_send(
257        struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid,
258        uint32_t lmaster, TALLOC_CTX *mem_ctx, struct timeval timeout);
259
260 int ctdb_ctrl_pulldb_recv(
261        struct ctdb_context *ctdb,
262        TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state,
263        TDB_DATA *outdata);
264
265 int ctdb_ctrl_pushdb(
266        struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid,
267        TALLOC_CTX *mem_ctx,
268        struct timeval timeout, TDB_DATA indata);
269
270 struct ctdb_client_control_state *ctdb_ctrl_pushdb_send(
271        struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid,
272        TALLOC_CTX *mem_ctx, struct timeval timeout,
273        TDB_DATA indata);
274
275 int ctdb_ctrl_pushdb_recv(
276        struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx,
277        struct ctdb_client_control_state *state);
278
279
280 int ctdb_ctrl_copydb(struct ctdb_context *ctdb,
281         struct timeval timeout, uint32_t sourcenode,
282         uint32_t destnode, uint32_t dbid, uint32_t lmaster,
283         TALLOC_CTX *mem_ctx);
284
285 int ctdb_ctrl_getdbpath(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t dbid, TALLOC_CTX *mem_ctx, const char **path);
286 int ctdb_ctrl_getdbname(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t dbid, TALLOC_CTX *mem_ctx, const char **name);
287 int ctdb_ctrl_getdbhealth(struct ctdb_context *ctdb,
288                           struct timeval timeout,
289                           uint32_t destnode,
290                           uint32_t dbid, TALLOC_CTX *mem_ctx,
291                           const char **reason);
292 int ctdb_ctrl_createdb(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, TALLOC_CTX *mem_ctx, const char *name, bool persistent);
293
294 int ctdb_ctrl_process_exists(struct ctdb_context *ctdb, uint32_t destnode, pid_t pid);
295
296 int ctdb_ctrl_ping(struct ctdb_context *ctdb, uint32_t destnode);
297
298 int ctdb_ctrl_get_config(struct ctdb_context *ctdb);
299
300 int ctdb_ctrl_get_debuglevel(struct ctdb_context *ctdb, uint32_t destnode, int32_t *level);
301 int ctdb_ctrl_set_debuglevel(struct ctdb_context *ctdb, uint32_t destnode, int32_t level);
302
303 /*
304   change dmaster for all keys in the database to the new value
305  */
306 int ctdb_ctrl_setdmaster(struct ctdb_context *ctdb,
307         struct timeval timeout, uint32_t destnode,
308         TALLOC_CTX *mem_ctx, uint32_t dbid, uint32_t dmaster);
309
310 /*
311   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)
312  */
313 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);
314
315 #define CTDB_RECOVERY_NORMAL            0
316 #define CTDB_RECOVERY_ACTIVE            1
317
318 /*
319   get the recovery mode of a remote node
320  */
321 int ctdb_ctrl_getrecmode(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode, uint32_t *recmode);
322
323 struct ctdb_client_control_state *ctdb_ctrl_getrecmode_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
324
325 int ctdb_ctrl_getrecmode_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, uint32_t *recmode);
326
327
328 /*
329   set the recovery mode of a remote node
330  */
331 int ctdb_ctrl_setrecmode(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t recmode);
332 /*
333   get the monitoring mode of a remote node
334  */
335 int ctdb_ctrl_getmonmode(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t *monmode);
336
337 /*
338   set the monitoring mode of a remote node to active
339  */
340 int ctdb_ctrl_enable_monmode(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
341
342 /*
343   set the monitoring mode of a remote node to disabled
344  */
345 int ctdb_ctrl_disable_monmode(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
346
347
348 /*
349   get the recovery master of a remote node
350  */
351 int ctdb_ctrl_getrecmaster(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode, uint32_t *recmaster);
352
353 struct ctdb_client_control_state *ctdb_ctrl_getrecmaster_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
354
355 int ctdb_ctrl_getrecmaster_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, uint32_t *recmaster);
356
357
358
359 /*
360   set the recovery master of a remote node
361  */
362 int ctdb_ctrl_setrecmaster(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t recmaster);
363
364 uint32_t *ctdb_get_connected_nodes(struct ctdb_context *ctdb,
365                                    struct timeval timeout,
366                                    TALLOC_CTX *mem_ctx,
367                                    uint32_t *num_nodes);
368
369 int ctdb_statistics_reset(struct ctdb_context *ctdb, uint32_t destnode);
370
371 int ctdb_set_logfile(struct ctdb_context *ctdb, const char *logfile, bool use_syslog);
372
373 typedef int (*ctdb_traverse_func)(struct ctdb_context *, TDB_DATA, TDB_DATA, void *);
374 int ctdb_traverse(struct ctdb_db_context *ctdb_db, ctdb_traverse_func fn, void *private_data);
375
376 int ctdb_dumpdb_record(struct ctdb_context *ctdb, TDB_DATA key, TDB_DATA data, void *p);
377 int ctdb_dump_db(struct ctdb_db_context *ctdb_db, FILE *f);
378
379 /*
380   get the pid of a ctdb daemon
381  */
382 int ctdb_ctrl_getpid(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t *pid);
383
384 int ctdb_ctrl_freeze(struct ctdb_context *ctdb, struct timeval timeout,
385                         uint32_t destnode);
386 int ctdb_ctrl_freeze_priority(struct ctdb_context *ctdb, struct timeval timeout,
387                               uint32_t destnode, uint32_t priority);
388
389 struct ctdb_client_control_state *
390 ctdb_ctrl_freeze_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx,
391                       struct timeval timeout, uint32_t destnode,
392                       uint32_t priority);
393
394 int ctdb_ctrl_freeze_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx,
395                         struct ctdb_client_control_state *state);
396
397 int ctdb_ctrl_thaw_priority(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t priority);
398 int ctdb_ctrl_thaw(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
399
400 int ctdb_ctrl_getpnn(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
401
402 int ctdb_ctrl_get_tunable(struct ctdb_context *ctdb,
403                           struct timeval timeout,
404                           uint32_t destnode,
405                           const char *name, uint32_t *value);
406
407 int ctdb_ctrl_set_tunable(struct ctdb_context *ctdb,
408                           struct timeval timeout,
409                           uint32_t destnode,
410                           const char *name, uint32_t value);
411
412 int ctdb_ctrl_list_tunables(struct ctdb_context *ctdb,
413                             struct timeval timeout,
414                             uint32_t destnode,
415                             TALLOC_CTX *mem_ctx,
416                             const char ***list, uint32_t *count);
417
418 int ctdb_ctrl_modflags(struct ctdb_context *ctdb,
419                        struct timeval timeout,
420                        uint32_t destnode,
421                        uint32_t set, uint32_t clear);
422
423 enum ctdb_server_id_type {
424         SERVER_TYPE_SAMBA=1,
425         SERVER_TYPE_NFSD=2,
426         SERVER_TYPE_ISCSID=3
427 };
428
429 struct ctdb_server_id {
430         enum ctdb_server_id_type type;
431         uint32_t pnn;
432         uint32_t server_id;
433 };
434
435 struct ctdb_server_id_list {
436         uint32_t num;
437         struct ctdb_server_id server_ids[1];
438 };
439
440
441 int ctdb_ctrl_register_server_id(struct ctdb_context *ctdb,
442                 struct timeval timeout,
443                 struct ctdb_server_id *id);
444 int ctdb_ctrl_unregister_server_id(struct ctdb_context *ctdb,
445                 struct timeval timeout,
446                 struct ctdb_server_id *id);
447 int ctdb_ctrl_check_server_id(struct ctdb_context *ctdb,
448                 struct timeval timeout, uint32_t destnode,
449                 struct ctdb_server_id *id, uint32_t *status);
450 int ctdb_ctrl_get_server_id_list(struct ctdb_context *ctdb,
451                 TALLOC_CTX *mem_ctx,
452                 struct timeval timeout, uint32_t destnode,
453                 struct ctdb_server_id_list **svid_list);
454
455 struct ctdb_uptime {
456         struct timeval current_time;
457         struct timeval ctdbd_start_time;
458         struct timeval last_recovery_started;
459         struct timeval last_recovery_finished;
460 };
461
462 /*
463   struct for tcp_client control
464   this is an ipv4 only version of this structure used by samba
465   samba will later be migrated over to use the
466   ctdb_control_tcp_addr structure instead
467  */
468 struct ctdb_control_tcp {
469         struct sockaddr_in src; // samba uses this
470         struct sockaddr_in dest;// samba uses this
471 };
472 /* new style structure */
473 struct ctdb_control_tcp_addr {
474         ctdb_sock_addr src;
475         ctdb_sock_addr dest;
476 };
477
478 int ctdb_socket_connect(struct ctdb_context *ctdb);
479
480 /*
481   get the uptime of a remote node
482  */
483 int ctdb_ctrl_uptime(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode, struct ctdb_uptime **uptime);
484
485 struct ctdb_client_control_state *ctdb_ctrl_uptime_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
486
487 int ctdb_ctrl_uptime_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, struct ctdb_uptime **uptime);
488
489 int ctdb_ctrl_end_recovery(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
490
491 int ctdb_ctrl_getreclock(struct ctdb_context *ctdb,
492         struct timeval timeout, uint32_t destnode,
493         TALLOC_CTX *mem_ctx, const char **reclock);
494 int ctdb_ctrl_setreclock(struct ctdb_context *ctdb,
495         struct timeval timeout, uint32_t destnode,
496         const char *reclock);
497
498
499 uint32_t *list_of_connected_nodes(struct ctdb_context *ctdb,
500                                 struct ctdb_node_map *node_map,
501                                 TALLOC_CTX *mem_ctx,
502                                 bool include_self);
503 uint32_t *list_of_active_nodes(struct ctdb_context *ctdb,
504                                 struct ctdb_node_map *node_map,
505                                 TALLOC_CTX *mem_ctx,
506                                 bool include_self);
507 uint32_t *list_of_vnnmap_nodes(struct ctdb_context *ctdb,
508                                 struct ctdb_vnn_map *vnn_map,
509                                 TALLOC_CTX *mem_ctx,
510                                 bool include_self);
511 uint32_t *list_of_active_nodes_except_pnn(struct ctdb_context *ctdb,
512                                 struct ctdb_node_map *node_map,
513                                 TALLOC_CTX *mem_ctx,
514                                 uint32_t pnn);
515
516 int ctdb_read_pnn_lock(int fd, int32_t pnn);
517
518 /*
519   get capabilities of a remote node
520  */
521 int ctdb_ctrl_getcapabilities(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t *capabilities);
522
523 struct ctdb_client_control_state *ctdb_ctrl_getcapabilities_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
524
525 int ctdb_ctrl_getcapabilities_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, uint32_t *capabilities);
526
527
528 int32_t ctdb_ctrl_transaction_active(struct ctdb_context *ctdb,
529                                      uint32_t destnode,
530                                      uint32_t db_id);
531
532 struct ctdb_marshall_buffer *ctdb_marshall_add(TALLOC_CTX *mem_ctx,
533                                                struct ctdb_marshall_buffer *m,
534                                                uint64_t db_id,
535                                                uint32_t reqid,
536                                                TDB_DATA key,
537                                                struct ctdb_ltdb_header *header,
538                                                TDB_DATA data);
539 TDB_DATA ctdb_marshall_finish(struct ctdb_marshall_buffer *m);
540
541 struct ctdb_transaction_handle *ctdb_transaction_start(struct ctdb_db_context *ctdb_db,
542                                                        TALLOC_CTX *mem_ctx);
543 int ctdb_transaction_fetch(struct ctdb_transaction_handle *h,
544                            TALLOC_CTX *mem_ctx,
545                            TDB_DATA key, TDB_DATA *data);
546 int ctdb_transaction_store(struct ctdb_transaction_handle *h,
547                            TDB_DATA key, TDB_DATA data);
548 int ctdb_transaction_commit(struct ctdb_transaction_handle *h);
549
550 int ctdb_ctrl_recd_ping(struct ctdb_context *ctdb);
551
552 int switch_from_server_to_client(struct ctdb_context *ctdb, const char *fmt,
553                                  ...);
554
555 int ctdb_ctrl_getscriptstatus(struct ctdb_context *ctdb,
556                     struct timeval timeout, uint32_t destnode,
557                     TALLOC_CTX *mem_ctx, enum ctdb_eventscript_call type,
558                     struct ctdb_scripts_wire **script_status);
559
560
561 struct debug_levels {
562         int32_t level;
563         const char *description;
564 };
565 extern struct debug_levels debug_levels[];
566
567 const char *get_debug_by_level(int32_t level);
568 int32_t get_debug_by_desc(const char *desc);
569
570 int ctdb_ctrl_stop_node(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
571 int ctdb_ctrl_continue_node(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
572
573 int ctdb_ctrl_setnatgwstate(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t natgwstate);
574 int ctdb_ctrl_setlmasterrole(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t lmasterrole);
575 int ctdb_ctrl_setrecmasterrole(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t recmasterrole);
576
577 int ctdb_ctrl_enablescript(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, const char *script);
578 int ctdb_ctrl_disablescript(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, const char *script);
579
580 struct ctdb_ban_time {
581         uint32_t pnn;
582         uint32_t time;
583 };
584
585 int ctdb_ctrl_set_ban(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, struct ctdb_ban_time *bantime);
586 int ctdb_ctrl_get_ban(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, TALLOC_CTX *mem_ctx, struct ctdb_ban_time **bantime);
587
588 struct ctdb_db_priority {
589         uint32_t db_id;
590         uint32_t priority;
591 };
592
593 int ctdb_ctrl_set_db_priority(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, struct ctdb_db_priority *db_prio);
594 int ctdb_ctrl_get_db_priority(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t db_id, uint32_t *priority);
595
596 int ctdb_ctrl_getstathistory(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, TALLOC_CTX *mem_ctx, struct ctdb_statistics_wire **stats);
597
598
599
600 struct ctdb_client_control_state *
601 ctdb_ctrl_updaterecord_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode, struct ctdb_db_context *ctdb_db, TDB_DATA key, struct ctdb_ltdb_header *header, TDB_DATA data);
602
603 int ctdb_ctrl_updaterecord_recv(struct ctdb_context *ctdb, struct ctdb_client_control_state *state);
604
605 int
606 ctdb_ctrl_updaterecord(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode, struct ctdb_db_context *ctdb_db, TDB_DATA key, struct ctdb_ltdb_header *header, TDB_DATA data);
607
608
609 struct ctdb_client_control_state *
610 ctdb_ctrl_set_db_readonly_send(struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid);
611 int ctdb_ctrl_set_db_readonly_recv(struct ctdb_context *ctdb, struct ctdb_client_control_state *state);
612 int ctdb_ctrl_set_db_readonly(struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid);
613
614 #endif /* _CTDB_CLIENT_H */