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