client: add ctdb_ctrl_getdbhealth()
[metze/ctdb/wip.git] / include / ctdb.h
1 /* 
2    ctdb database library
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_H
21 #define _CTDB_H
22
23 #define CTDB_IMMEDIATE_MIGRATION        0x00000001
24 struct ctdb_call {
25         int call_id;
26         TDB_DATA key;
27         TDB_DATA call_data;
28         TDB_DATA reply_data;
29         uint32_t status;
30         uint32_t flags;
31 };
32
33 /*
34   structure passed to a ctdb call backend function
35 */
36 struct ctdb_call_info {
37         TDB_DATA key;          /* record key */
38         TDB_DATA record_data;  /* current data in the record */
39         TDB_DATA *new_data;    /* optionally updated record data */
40         TDB_DATA *call_data;   /* optionally passed from caller */
41         TDB_DATA *reply_data;  /* optionally returned by function */
42         uint32_t status;       /* optional reply status - defaults to zero */
43 };
44
45 #define CTDB_ERR_INVALID 1
46 #define CTDB_ERR_NOMEM 2
47
48 /*
49   ctdb flags
50 */
51 #define CTDB_FLAG_TORTURE      (1<<1)
52
53 /* 
54    a message handler ID meaning "give me all messages"
55  */
56 #define CTDB_SRVID_ALL (~(uint64_t)0)
57
58 /*
59   srvid type : RECOVERY
60 */
61 #define CTDB_SRVID_RECOVERY     0xF100000000000000LL
62
63 /* 
64    a message handler ID meaning that the cluster has been reconfigured
65  */
66 #define CTDB_SRVID_RECONFIGURE 0xF200000000000000LL
67
68 /* 
69    a message handler ID meaning that an IP address has been released
70  */
71 #define CTDB_SRVID_RELEASE_IP 0xF300000000000000LL
72
73 /* 
74    a message ID to set the node flags in the recovery daemon
75  */
76 #define CTDB_SRVID_SET_NODE_FLAGS 0xF400000000000000LL
77
78 /*
79   a message to tell the recovery daemon to fetch a set of records
80  */
81 #define CTDB_SRVID_VACUUM_FETCH 0xF700000000000000LL
82
83 /*
84   a message to tell the recovery daemon to write a talloc memdump
85   to the log
86  */
87 #define CTDB_SRVID_MEM_DUMP 0xF800000000000000LL
88
89 /* 
90    a message ID to get the recovery daemon to push the node flags out
91  */
92 #define CTDB_SRVID_PUSH_NODE_FLAGS 0xF900000000000000LL
93
94 /* 
95    a message ID to get the recovery daemon to reload the nodes file
96  */
97 #define CTDB_SRVID_RELOAD_NODES 0xFA00000000000000LL
98
99 /* 
100    a message ID to get the recovery daemon to perform a takeover run
101  */
102 #define CTDB_SRVID_TAKEOVER_RUN 0xFB00000000000000LL
103
104 /* A message id to ask the recovery daemon to temporarily disable the
105    public ip checks
106 */
107 #define CTDB_SRVID_DISABLE_IP_CHECK  0xFC00000000000000LL
108
109 /* A dummy port used for sending back ipreallocate resposnes to the main
110    daemon
111 */
112 #define CTDB_SRVID_TAKEOVER_RUN_RESPONSE  0xFD00000000000000LL
113
114 /* A port reserved for samba (top 32 bits)
115  */
116 #define CTDB_SRVID_SAMBA_NOTIFY  0xFE00000000000000LL
117
118 /* used on the domain socket, send a pdu to the local daemon */
119 #define CTDB_CURRENT_NODE     0xF0000001
120 /* send a broadcast to all nodes in the cluster, active or not */
121 #define CTDB_BROADCAST_ALL    0xF0000002
122 /* send a broadcast to all nodes in the current vnn map */
123 #define CTDB_BROADCAST_VNNMAP 0xF0000003
124 /* send a broadcast to all connected nodes */
125 #define CTDB_BROADCAST_CONNECTED 0xF0000004
126
127 /* the key used for transaction locking on persistent databases */
128 #define CTDB_TRANSACTION_LOCK_KEY "__transaction_lock__"
129
130 /* the key used to store persistent db sequence number */
131 #define CTDB_DB_SEQNUM_KEY "__db_sequence_number__"
132
133 enum control_state {CTDB_CONTROL_WAIT, CTDB_CONTROL_DONE, CTDB_CONTROL_ERROR, CTDB_CONTROL_TIMEOUT};
134
135 struct ctdb_client_control_state {
136         struct ctdb_context *ctdb;
137         uint32_t reqid;
138         int32_t status;
139         TDB_DATA outdata;
140         enum control_state state;
141         char *errormsg;
142         struct ctdb_req_control *c;
143
144         /* if we have a callback registered for the completion (or failure) of
145            this control
146            if a callback is used, it MUST talloc_free the cb_data passed to it
147         */
148         struct {
149                 void (*fn)(struct ctdb_client_control_state *);
150                 void *private_data;
151         } async;        
152 };
153
154 struct ctdb_client_notify_register {
155         uint64_t srvid;
156         uint32_t len;
157         uint8_t notify_data[1];
158 };
159
160 struct ctdb_client_notify_deregister {
161         uint64_t srvid;
162 };
163
164 struct event_context;
165
166 /*
167   initialise ctdb subsystem
168 */
169 struct ctdb_context *ctdb_init(struct event_context *ev);
170
171 /*
172   choose the transport
173 */
174 int ctdb_set_transport(struct ctdb_context *ctdb, const char *transport);
175
176 /*
177   set the directory for the local databases
178 */
179 int ctdb_set_tdb_dir(struct ctdb_context *ctdb, const char *dir);
180 int ctdb_set_tdb_dir_persistent(struct ctdb_context *ctdb, const char *dir);
181 int ctdb_set_tdb_dir_state(struct ctdb_context *ctdb, const char *dir);
182
183 /*
184   set some flags
185 */
186 void ctdb_set_flags(struct ctdb_context *ctdb, unsigned flags);
187
188 /*
189   set max acess count before a dmaster migration
190 */
191 void ctdb_set_max_lacount(struct ctdb_context *ctdb, unsigned count);
192
193 /*
194   tell ctdb what address to listen on, in transport specific format
195 */
196 int ctdb_set_address(struct ctdb_context *ctdb, const char *address);
197
198 int ctdb_set_socketname(struct ctdb_context *ctdb, const char *socketname);
199
200 /*
201   tell ctdb what nodes are available. This takes a filename, which will contain
202   1 node address per line, in a transport specific format
203 */
204 int ctdb_set_nlist(struct ctdb_context *ctdb, const char *nlist);
205
206 /*
207   Check that a specific ip address exists in the node list and returns
208   the id for the node or -1
209 */
210 int ctdb_ip_to_nodeid(struct ctdb_context *ctdb, const char *nodeip);
211
212 /*
213   start the ctdb protocol
214 */
215 int ctdb_start(struct ctdb_context *ctdb);
216 int ctdb_start_daemon(struct ctdb_context *ctdb, bool do_fork, bool use_syslog);
217
218 /*
219   attach to a ctdb database
220 */
221 struct ctdb_db_context *ctdb_attach(struct ctdb_context *ctdb, const char *name, bool persistent, uint32_t tdb_flags);
222
223 /*
224   find an attached ctdb_db handle given a name
225  */
226 struct ctdb_db_context *ctdb_db_handle(struct ctdb_context *ctdb, const char *name);
227
228 /*
229   error string for last ctdb error
230 */
231 const char *ctdb_errstr(struct ctdb_context *);
232
233 /* a ctdb call function */
234 typedef int (*ctdb_fn_t)(struct ctdb_call_info *);
235
236 /*
237   setup a ctdb call function
238 */
239 int ctdb_set_call(struct ctdb_db_context *ctdb_db, ctdb_fn_t fn, uint32_t id);
240
241
242
243 /*
244   make a ctdb call. The associated ctdb call function will be called on the DMASTER
245   for the given record
246 */
247 int ctdb_call(struct ctdb_db_context *ctdb_db, struct ctdb_call *call);
248
249 /*
250   initiate an ordered ctdb cluster shutdown
251   this function will never return
252 */
253 void ctdb_shutdown(struct ctdb_context *ctdb);
254
255 /* return pnn of this node */
256 uint32_t ctdb_get_pnn(struct ctdb_context *ctdb);
257
258 /*
259   return the number of nodes
260 */
261 uint32_t ctdb_get_num_nodes(struct ctdb_context *ctdb);
262
263 /* setup a handler for ctdb messages */
264 typedef void (*ctdb_message_fn_t)(struct ctdb_context *, uint64_t srvid, 
265                                   TDB_DATA data, void *);
266 int ctdb_set_message_handler(struct ctdb_context *ctdb, uint64_t srvid, 
267                              ctdb_message_fn_t handler,
268                              void *private_data);
269
270
271 int ctdb_call(struct ctdb_db_context *ctdb_db, struct ctdb_call *call);
272 struct ctdb_client_call_state *ctdb_call_send(struct ctdb_db_context *ctdb_db, struct ctdb_call *call);
273 int ctdb_call_recv(struct ctdb_client_call_state *state, struct ctdb_call *call);
274
275 /* send a ctdb message */
276 int ctdb_send_message(struct ctdb_context *ctdb, uint32_t pnn,
277                       uint64_t srvid, TDB_DATA data);
278
279
280 /* 
281    Fetch a ctdb record from a remote node
282  . Underneath this will force the
283    dmaster for the record to be moved to the local node. 
284 */
285 struct ctdb_record_handle *ctdb_fetch_lock(struct ctdb_db_context *ctdb_db, TALLOC_CTX *mem_ctx, 
286                                            TDB_DATA key, TDB_DATA *data);
287
288 int ctdb_record_store(struct ctdb_record_handle *h, TDB_DATA data);
289
290 int ctdb_fetch(struct ctdb_db_context *ctdb_db, TALLOC_CTX *mem_ctx, 
291                TDB_DATA key, TDB_DATA *data);
292
293 int ctdb_register_message_handler(struct ctdb_context *ctdb, 
294                                   TALLOC_CTX *mem_ctx,
295                                   uint64_t srvid,
296                                   ctdb_message_fn_t handler,
297                                   void *private_data);
298
299 struct ctdb_db_context *find_ctdb_db(struct ctdb_context *ctdb, uint32_t id);
300
301
302 struct ctdb_context *ctdb_cmdline_client(struct event_context *ev);
303
304 struct ctdb_statistics;
305 int ctdb_ctrl_statistics(struct ctdb_context *ctdb, uint32_t destnode, struct ctdb_statistics *status);
306
307 int ctdb_ctrl_shutdown(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
308
309 struct ctdb_vnn_map;
310 int ctdb_ctrl_getvnnmap(struct ctdb_context *ctdb, 
311                 struct timeval timeout, uint32_t destnode, 
312                 TALLOC_CTX *mem_ctx, struct ctdb_vnn_map **vnnmap);
313 int ctdb_ctrl_setvnnmap(struct ctdb_context *ctdb,
314                 struct timeval timeout, uint32_t destnode, 
315                 TALLOC_CTX *mem_ctx, struct ctdb_vnn_map *vnnmap);
316
317 /* table that contains a list of all dbids on a node
318  */
319 struct ctdb_dbid_map {
320         uint32_t num;
321         struct ctdb_dbid {
322                 uint32_t dbid;
323                 bool persistent;
324         } dbs[1];
325 };
326 int ctdb_ctrl_getdbmap(struct ctdb_context *ctdb, 
327         struct timeval timeout, uint32_t destnode, 
328         TALLOC_CTX *mem_ctx, struct ctdb_dbid_map **dbmap);
329
330
331 struct ctdb_node_map;
332
333 int ctdb_ctrl_getnodemap(struct ctdb_context *ctdb, 
334                     struct timeval timeout, uint32_t destnode, 
335                     TALLOC_CTX *mem_ctx, struct ctdb_node_map **nodemap);
336
337 int ctdb_ctrl_getnodemapv4(struct ctdb_context *ctdb, 
338                     struct timeval timeout, uint32_t destnode, 
339                     TALLOC_CTX *mem_ctx, struct ctdb_node_map **nodemap);
340
341 int ctdb_ctrl_reload_nodes_file(struct ctdb_context *ctdb, 
342                     struct timeval timeout, uint32_t destnode);
343
344 struct ctdb_key_list {
345         uint32_t dbid;
346         uint32_t num;
347         TDB_DATA *keys;
348         struct ctdb_ltdb_header *headers;
349         TDB_DATA *data;
350 };
351
352 int ctdb_ctrl_pulldb(
353        struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid,
354        uint32_t lmaster, TALLOC_CTX *mem_ctx,
355        struct timeval timeout, TDB_DATA *outdata);
356
357 struct ctdb_client_control_state *ctdb_ctrl_pulldb_send(
358        struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid,
359        uint32_t lmaster, TALLOC_CTX *mem_ctx, struct timeval timeout);
360
361 int ctdb_ctrl_pulldb_recv(
362        struct ctdb_context *ctdb,
363        TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state,
364        TDB_DATA *outdata);
365
366 int ctdb_ctrl_pushdb(
367        struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid,
368        TALLOC_CTX *mem_ctx,
369        struct timeval timeout, TDB_DATA indata);
370
371 struct ctdb_client_control_state *ctdb_ctrl_pushdb_send(
372        struct ctdb_context *ctdb, uint32_t destnode, uint32_t dbid,
373        TALLOC_CTX *mem_ctx, struct timeval timeout,
374        TDB_DATA indata);
375
376 int ctdb_ctrl_pushdb_recv(
377        struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx,
378        struct ctdb_client_control_state *state);
379
380
381 int ctdb_ctrl_copydb(struct ctdb_context *ctdb, 
382         struct timeval timeout, uint32_t sourcenode, 
383         uint32_t destnode, uint32_t dbid, uint32_t lmaster, 
384         TALLOC_CTX *mem_ctx);
385
386 int ctdb_ctrl_getdbpath(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t dbid, TALLOC_CTX *mem_ctx, const char **path);
387 int ctdb_ctrl_getdbname(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t dbid, TALLOC_CTX *mem_ctx, const char **name);
388 int ctdb_ctrl_getdbhealth(struct ctdb_context *ctdb,
389                           struct timeval timeout,
390                           uint32_t destnode,
391                           uint32_t dbid, TALLOC_CTX *mem_ctx,
392                           const char **reason);
393 int ctdb_ctrl_createdb(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, TALLOC_CTX *mem_ctx, const char *name, bool persistent);
394
395 int ctdb_ctrl_process_exists(struct ctdb_context *ctdb, uint32_t destnode, pid_t pid);
396
397 int ctdb_ctrl_ping(struct ctdb_context *ctdb, uint32_t destnode);
398
399 int ctdb_ctrl_get_config(struct ctdb_context *ctdb);
400
401 int ctdb_ctrl_get_debuglevel(struct ctdb_context *ctdb, uint32_t destnode, int32_t *level);
402 int ctdb_ctrl_set_debuglevel(struct ctdb_context *ctdb, uint32_t destnode, int32_t level);
403
404 /*
405   change dmaster for all keys in the database to the new value
406  */
407 int ctdb_ctrl_setdmaster(struct ctdb_context *ctdb, 
408         struct timeval timeout, uint32_t destnode, 
409         TALLOC_CTX *mem_ctx, uint32_t dbid, uint32_t dmaster);
410
411 /*
412   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)
413  */
414 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);
415
416 #define CTDB_RECOVERY_NORMAL            0
417 #define CTDB_RECOVERY_ACTIVE            1
418
419 /*
420   get the recovery mode of a remote node
421  */
422 int ctdb_ctrl_getrecmode(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode, uint32_t *recmode);
423
424 struct ctdb_client_control_state *ctdb_ctrl_getrecmode_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
425
426 int ctdb_ctrl_getrecmode_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, uint32_t *recmode);
427
428
429 /*
430   set the recovery mode of a remote node
431  */
432 int ctdb_ctrl_setrecmode(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t recmode);
433 /*
434   get the monitoring mode of a remote node
435  */
436 int ctdb_ctrl_getmonmode(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t *monmode);
437
438 /*
439   set the monitoring mode of a remote node to active
440  */
441 int ctdb_ctrl_enable_monmode(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
442
443 /*
444   set the monitoring mode of a remote node to disabled
445  */
446 int ctdb_ctrl_disable_monmode(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
447
448
449 /*
450   get the recovery master of a remote node
451  */
452 int ctdb_ctrl_getrecmaster(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode, uint32_t *recmaster);
453
454 struct ctdb_client_control_state *ctdb_ctrl_getrecmaster_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
455
456 int ctdb_ctrl_getrecmaster_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, uint32_t *recmaster);
457
458
459
460 /*
461   set the recovery master of a remote node
462  */
463 int ctdb_ctrl_setrecmaster(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t recmaster);
464
465 uint32_t *ctdb_get_connected_nodes(struct ctdb_context *ctdb, 
466                                    struct timeval timeout, 
467                                    TALLOC_CTX *mem_ctx,
468                                    uint32_t *num_nodes);
469
470 int ctdb_statistics_reset(struct ctdb_context *ctdb, uint32_t destnode);
471
472 int ctdb_set_logfile(struct ctdb_context *ctdb, const char *logfile, bool use_syslog);
473
474 typedef int (*ctdb_traverse_func)(struct ctdb_context *, TDB_DATA, TDB_DATA, void *);
475 int ctdb_traverse(struct ctdb_db_context *ctdb_db, ctdb_traverse_func fn, void *private_data);
476
477 int ctdb_dump_db(struct ctdb_db_context *ctdb_db, FILE *f);
478
479 /*
480   get the pid of a ctdb daemon
481  */
482 int ctdb_ctrl_getpid(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t *pid);
483
484 int ctdb_ctrl_freeze(struct ctdb_context *ctdb, struct timeval timeout, 
485                         uint32_t destnode);
486 int ctdb_ctrl_freeze_priority(struct ctdb_context *ctdb, struct timeval timeout, 
487                               uint32_t destnode, uint32_t priority);
488
489 struct ctdb_client_control_state *
490 ctdb_ctrl_freeze_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, 
491                       struct timeval timeout, uint32_t destnode,
492                       uint32_t priority);
493
494 int ctdb_ctrl_freeze_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, 
495                         struct ctdb_client_control_state *state);
496
497 int ctdb_ctrl_thaw_priority(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t priority);
498 int ctdb_ctrl_thaw(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
499
500 int ctdb_ctrl_getpnn(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
501
502 int ctdb_ctrl_get_tunable(struct ctdb_context *ctdb, 
503                           struct timeval timeout, 
504                           uint32_t destnode,
505                           const char *name, uint32_t *value);
506
507 int ctdb_ctrl_set_tunable(struct ctdb_context *ctdb, 
508                           struct timeval timeout, 
509                           uint32_t destnode,
510                           const char *name, uint32_t value);
511
512 int ctdb_ctrl_list_tunables(struct ctdb_context *ctdb, 
513                             struct timeval timeout, 
514                             uint32_t destnode,
515                             TALLOC_CTX *mem_ctx,
516                             const char ***list, uint32_t *count);
517
518 int ctdb_ctrl_modflags(struct ctdb_context *ctdb, 
519                        struct timeval timeout, 
520                        uint32_t destnode, 
521                        uint32_t set, uint32_t clear);
522
523 enum ctdb_server_id_type { SERVER_TYPE_SAMBA=1 };
524
525 struct ctdb_server_id {
526         enum ctdb_server_id_type type;
527         uint32_t pnn;
528         uint32_t server_id;
529 };
530
531 struct ctdb_server_id_list {
532         uint32_t num;
533         struct ctdb_server_id server_ids[1];
534 };
535
536
537 int ctdb_ctrl_register_server_id(struct ctdb_context *ctdb,
538                 struct timeval timeout,
539                 struct ctdb_server_id *id);
540 int ctdb_ctrl_unregister_server_id(struct ctdb_context *ctdb, 
541                 struct timeval timeout, 
542                 struct ctdb_server_id *id);
543 int ctdb_ctrl_check_server_id(struct ctdb_context *ctdb,
544                 struct timeval timeout, uint32_t destnode, 
545                 struct ctdb_server_id *id, uint32_t *status);
546 int ctdb_ctrl_get_server_id_list(struct ctdb_context *ctdb,
547                 TALLOC_CTX *mem_ctx,
548                 struct timeval timeout, uint32_t destnode, 
549                 struct ctdb_server_id_list **svid_list);
550
551 struct ctdb_uptime {
552         struct timeval current_time;
553         struct timeval ctdbd_start_time;
554         struct timeval last_recovery_started;
555         struct timeval last_recovery_finished;
556 };
557
558 /*
559   definitions for different socket structures
560  */
561 typedef struct sockaddr_in ctdb_addr_in;
562 typedef struct sockaddr_in6 ctdb_addr_in6;
563 typedef union {
564         struct sockaddr sa;
565         ctdb_addr_in    ip;
566         ctdb_addr_in6   ip6;
567 } ctdb_sock_addr;
568
569 /*
570   struct for tcp_client control
571   this is an ipv4 only version of this structure used by samba
572   samba will later be migrated over to use the 
573   ctdb_control_tcp_addr structure instead
574  */
575 struct ctdb_control_tcp {
576         struct sockaddr_in src; // samba uses this
577         struct sockaddr_in dest;// samba uses this
578 };
579 /* new style structure */
580 struct ctdb_control_tcp_addr {
581         ctdb_sock_addr src;
582         ctdb_sock_addr dest;
583 };
584
585 int ctdb_socket_connect(struct ctdb_context *ctdb);
586
587 /*
588   get the uptime of a remote node
589  */
590 int ctdb_ctrl_uptime(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode, struct ctdb_uptime **uptime);
591
592 struct ctdb_client_control_state *ctdb_ctrl_uptime_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
593
594 int ctdb_ctrl_uptime_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, struct ctdb_uptime **uptime);
595
596 int ctdb_ctrl_end_recovery(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
597
598 int ctdb_ctrl_getreclock(struct ctdb_context *ctdb, 
599         struct timeval timeout, uint32_t destnode, 
600         TALLOC_CTX *mem_ctx, const char **reclock);
601 int ctdb_ctrl_setreclock(struct ctdb_context *ctdb, 
602         struct timeval timeout, uint32_t destnode, 
603         const char *reclock);
604
605
606 uint32_t *list_of_connected_nodes(struct ctdb_context *ctdb,
607                                 struct ctdb_node_map *node_map,
608                                 TALLOC_CTX *mem_ctx,
609                                 bool include_self);
610 uint32_t *list_of_active_nodes(struct ctdb_context *ctdb,
611                                 struct ctdb_node_map *node_map,
612                                 TALLOC_CTX *mem_ctx,
613                                 bool include_self);
614 uint32_t *list_of_vnnmap_nodes(struct ctdb_context *ctdb,
615                                 struct ctdb_vnn_map *vnn_map,
616                                 TALLOC_CTX *mem_ctx,
617                                 bool include_self);
618 uint32_t *list_of_active_nodes_except_pnn(struct ctdb_context *ctdb,
619                                 struct ctdb_node_map *node_map,
620                                 TALLOC_CTX *mem_ctx,
621                                 uint32_t pnn);
622
623 int ctdb_read_pnn_lock(int fd, int32_t pnn);
624
625 /*
626   get capabilities of a remote node
627  */
628 int ctdb_ctrl_getcapabilities(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t *capabilities);
629
630 struct ctdb_client_control_state *ctdb_ctrl_getcapabilities_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
631
632 int ctdb_ctrl_getcapabilities_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, uint32_t *capabilities);
633
634
635 int32_t ctdb_ctrl_transaction_active(struct ctdb_context *ctdb,
636                                      uint32_t destnode,
637                                      uint32_t db_id);
638
639 struct ctdb_marshall_buffer *ctdb_marshall_add(TALLOC_CTX *mem_ctx, 
640                                                struct ctdb_marshall_buffer *m,
641                                                uint64_t db_id,
642                                                uint32_t reqid,
643                                                TDB_DATA key,
644                                                struct ctdb_ltdb_header *header,
645                                                TDB_DATA data);
646 TDB_DATA ctdb_marshall_finish(struct ctdb_marshall_buffer *m);
647
648 struct ctdb_transaction_handle *ctdb_transaction_start(struct ctdb_db_context *ctdb_db,
649                                                        TALLOC_CTX *mem_ctx);
650 int ctdb_transaction_fetch(struct ctdb_transaction_handle *h, 
651                            TALLOC_CTX *mem_ctx, 
652                            TDB_DATA key, TDB_DATA *data);
653 int ctdb_transaction_store(struct ctdb_transaction_handle *h, 
654                            TDB_DATA key, TDB_DATA data);
655 int ctdb_transaction_commit(struct ctdb_transaction_handle *h);
656
657 int ctdb_ctrl_recd_ping(struct ctdb_context *ctdb);
658
659 int switch_from_server_to_client(struct ctdb_context *ctdb);
660
661 #define MONITOR_SCRIPT_OK      0
662 #define MONITOR_SCRIPT_TIMEOUT 1
663
664 #define MAX_SCRIPT_NAME 31
665 #define MAX_SCRIPT_OUTPUT 511
666 struct ctdb_script_wire {
667         char name[MAX_SCRIPT_NAME+1];
668         struct timeval start;
669         struct timeval finished;
670         int32_t status;
671         char output[MAX_SCRIPT_OUTPUT+1];
672 };
673
674 struct ctdb_scripts_wire {
675         uint32_t num_scripts;
676         struct ctdb_script_wire scripts[1];
677 };
678
679 /* different calls to event scripts. */
680 enum ctdb_eventscript_call {
681         CTDB_EVENT_STARTUP,             /* CTDB starting up: no args. */
682         CTDB_EVENT_START_RECOVERY,      /* CTDB recovery starting: no args. */
683         CTDB_EVENT_RECOVERED,           /* CTDB recovery finished: no args. */
684         CTDB_EVENT_TAKE_IP,             /* IP taken: interface, IP address, netmask bits. */
685         CTDB_EVENT_RELEASE_IP,          /* IP released: interface, IP address, netmask bits. */
686         CTDB_EVENT_STOPPED,             /* This node is stopped: no args. */
687         CTDB_EVENT_MONITOR,             /* Please check if service is healthy: no args. */
688         CTDB_EVENT_STATUS,              /* Report service status: no args. */
689         CTDB_EVENT_SHUTDOWN,            /* CTDB shutting down: no args. */
690         CTDB_EVENT_RELOAD,              /* magic */
691         CTDB_EVENT_MAX
692 };
693
694 /* Mapping from enum to names. */
695 extern const char *ctdb_eventscript_call_names[];
696
697 int ctdb_ctrl_getscriptstatus(struct ctdb_context *ctdb, 
698                     struct timeval timeout, uint32_t destnode, 
699                     TALLOC_CTX *mem_ctx, enum ctdb_eventscript_call type,
700                     struct ctdb_scripts_wire **script_status);
701
702
703 struct debug_levels {
704         int32_t level;
705         const char *description;
706 };
707 extern struct debug_levels debug_levels[];
708
709 const char *get_debug_by_level(int32_t level);
710 int32_t get_debug_by_desc(const char *desc);
711
712 int ctdb_ctrl_stop_node(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
713 int ctdb_ctrl_continue_node(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
714
715 int ctdb_ctrl_setnatgwstate(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t natgwstate);
716 int ctdb_ctrl_setlmasterrole(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t lmasterrole);
717 int ctdb_ctrl_setrecmasterrole(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t recmasterrole);
718
719 int ctdb_ctrl_enablescript(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, const char *script);
720 int ctdb_ctrl_disablescript(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, const char *script);
721
722 struct ctdb_ban_time {
723         uint32_t pnn;
724         uint32_t time;
725 };
726
727 int ctdb_ctrl_set_ban(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, struct ctdb_ban_time *bantime);
728 int ctdb_ctrl_get_ban(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, TALLOC_CTX *mem_ctx, struct ctdb_ban_time **bantime);
729
730 struct ctdb_db_priority {
731         uint32_t db_id;
732         uint32_t priority;
733 };
734
735 int ctdb_ctrl_set_db_priority(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, struct ctdb_db_priority *db_prio);
736 int ctdb_ctrl_get_db_priority(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t db_id, uint32_t *priority);
737
738 #endif