server: add "init" event
[vlendec/samba-autobuild/.git] / ctdb / 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_dumpdb_record(struct ctdb_context *ctdb, TDB_DATA key, TDB_DATA data, void *p);
478 int ctdb_dump_db(struct ctdb_db_context *ctdb_db, FILE *f);
479
480 /*
481   get the pid of a ctdb daemon
482  */
483 int ctdb_ctrl_getpid(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t *pid);
484
485 int ctdb_ctrl_freeze(struct ctdb_context *ctdb, struct timeval timeout, 
486                         uint32_t destnode);
487 int ctdb_ctrl_freeze_priority(struct ctdb_context *ctdb, struct timeval timeout, 
488                               uint32_t destnode, uint32_t priority);
489
490 struct ctdb_client_control_state *
491 ctdb_ctrl_freeze_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, 
492                       struct timeval timeout, uint32_t destnode,
493                       uint32_t priority);
494
495 int ctdb_ctrl_freeze_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, 
496                         struct ctdb_client_control_state *state);
497
498 int ctdb_ctrl_thaw_priority(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t priority);
499 int ctdb_ctrl_thaw(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
500
501 int ctdb_ctrl_getpnn(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
502
503 int ctdb_ctrl_get_tunable(struct ctdb_context *ctdb, 
504                           struct timeval timeout, 
505                           uint32_t destnode,
506                           const char *name, uint32_t *value);
507
508 int ctdb_ctrl_set_tunable(struct ctdb_context *ctdb, 
509                           struct timeval timeout, 
510                           uint32_t destnode,
511                           const char *name, uint32_t value);
512
513 int ctdb_ctrl_list_tunables(struct ctdb_context *ctdb, 
514                             struct timeval timeout, 
515                             uint32_t destnode,
516                             TALLOC_CTX *mem_ctx,
517                             const char ***list, uint32_t *count);
518
519 int ctdb_ctrl_modflags(struct ctdb_context *ctdb, 
520                        struct timeval timeout, 
521                        uint32_t destnode, 
522                        uint32_t set, uint32_t clear);
523
524 enum ctdb_server_id_type { SERVER_TYPE_SAMBA=1 };
525
526 struct ctdb_server_id {
527         enum ctdb_server_id_type type;
528         uint32_t pnn;
529         uint32_t server_id;
530 };
531
532 struct ctdb_server_id_list {
533         uint32_t num;
534         struct ctdb_server_id server_ids[1];
535 };
536
537
538 int ctdb_ctrl_register_server_id(struct ctdb_context *ctdb,
539                 struct timeval timeout,
540                 struct ctdb_server_id *id);
541 int ctdb_ctrl_unregister_server_id(struct ctdb_context *ctdb, 
542                 struct timeval timeout, 
543                 struct ctdb_server_id *id);
544 int ctdb_ctrl_check_server_id(struct ctdb_context *ctdb,
545                 struct timeval timeout, uint32_t destnode, 
546                 struct ctdb_server_id *id, uint32_t *status);
547 int ctdb_ctrl_get_server_id_list(struct ctdb_context *ctdb,
548                 TALLOC_CTX *mem_ctx,
549                 struct timeval timeout, uint32_t destnode, 
550                 struct ctdb_server_id_list **svid_list);
551
552 struct ctdb_uptime {
553         struct timeval current_time;
554         struct timeval ctdbd_start_time;
555         struct timeval last_recovery_started;
556         struct timeval last_recovery_finished;
557 };
558
559 /*
560   definitions for different socket structures
561  */
562 typedef struct sockaddr_in ctdb_addr_in;
563 typedef struct sockaddr_in6 ctdb_addr_in6;
564 typedef union {
565         struct sockaddr sa;
566         ctdb_addr_in    ip;
567         ctdb_addr_in6   ip6;
568 } ctdb_sock_addr;
569
570 /*
571   struct for tcp_client control
572   this is an ipv4 only version of this structure used by samba
573   samba will later be migrated over to use the 
574   ctdb_control_tcp_addr structure instead
575  */
576 struct ctdb_control_tcp {
577         struct sockaddr_in src; // samba uses this
578         struct sockaddr_in dest;// samba uses this
579 };
580 /* new style structure */
581 struct ctdb_control_tcp_addr {
582         ctdb_sock_addr src;
583         ctdb_sock_addr dest;
584 };
585
586 int ctdb_socket_connect(struct ctdb_context *ctdb);
587
588 /*
589   get the uptime of a remote node
590  */
591 int ctdb_ctrl_uptime(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode, struct ctdb_uptime **uptime);
592
593 struct ctdb_client_control_state *ctdb_ctrl_uptime_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
594
595 int ctdb_ctrl_uptime_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, struct ctdb_uptime **uptime);
596
597 int ctdb_ctrl_end_recovery(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
598
599 int ctdb_ctrl_getreclock(struct ctdb_context *ctdb, 
600         struct timeval timeout, uint32_t destnode, 
601         TALLOC_CTX *mem_ctx, const char **reclock);
602 int ctdb_ctrl_setreclock(struct ctdb_context *ctdb, 
603         struct timeval timeout, uint32_t destnode, 
604         const char *reclock);
605
606
607 uint32_t *list_of_connected_nodes(struct ctdb_context *ctdb,
608                                 struct ctdb_node_map *node_map,
609                                 TALLOC_CTX *mem_ctx,
610                                 bool include_self);
611 uint32_t *list_of_active_nodes(struct ctdb_context *ctdb,
612                                 struct ctdb_node_map *node_map,
613                                 TALLOC_CTX *mem_ctx,
614                                 bool include_self);
615 uint32_t *list_of_vnnmap_nodes(struct ctdb_context *ctdb,
616                                 struct ctdb_vnn_map *vnn_map,
617                                 TALLOC_CTX *mem_ctx,
618                                 bool include_self);
619 uint32_t *list_of_active_nodes_except_pnn(struct ctdb_context *ctdb,
620                                 struct ctdb_node_map *node_map,
621                                 TALLOC_CTX *mem_ctx,
622                                 uint32_t pnn);
623
624 int ctdb_read_pnn_lock(int fd, int32_t pnn);
625
626 /*
627   get capabilities of a remote node
628  */
629 int ctdb_ctrl_getcapabilities(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t *capabilities);
630
631 struct ctdb_client_control_state *ctdb_ctrl_getcapabilities_send(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct timeval timeout, uint32_t destnode);
632
633 int ctdb_ctrl_getcapabilities_recv(struct ctdb_context *ctdb, TALLOC_CTX *mem_ctx, struct ctdb_client_control_state *state, uint32_t *capabilities);
634
635
636 int32_t ctdb_ctrl_transaction_active(struct ctdb_context *ctdb,
637                                      uint32_t destnode,
638                                      uint32_t db_id);
639
640 struct ctdb_marshall_buffer *ctdb_marshall_add(TALLOC_CTX *mem_ctx, 
641                                                struct ctdb_marshall_buffer *m,
642                                                uint64_t db_id,
643                                                uint32_t reqid,
644                                                TDB_DATA key,
645                                                struct ctdb_ltdb_header *header,
646                                                TDB_DATA data);
647 TDB_DATA ctdb_marshall_finish(struct ctdb_marshall_buffer *m);
648
649 struct ctdb_transaction_handle *ctdb_transaction_start(struct ctdb_db_context *ctdb_db,
650                                                        TALLOC_CTX *mem_ctx);
651 int ctdb_transaction_fetch(struct ctdb_transaction_handle *h, 
652                            TALLOC_CTX *mem_ctx, 
653                            TDB_DATA key, TDB_DATA *data);
654 int ctdb_transaction_store(struct ctdb_transaction_handle *h, 
655                            TDB_DATA key, TDB_DATA data);
656 int ctdb_transaction_commit(struct ctdb_transaction_handle *h);
657
658 int ctdb_ctrl_recd_ping(struct ctdb_context *ctdb);
659
660 int switch_from_server_to_client(struct ctdb_context *ctdb);
661
662 #define MONITOR_SCRIPT_OK      0
663 #define MONITOR_SCRIPT_TIMEOUT 1
664
665 #define MAX_SCRIPT_NAME 31
666 #define MAX_SCRIPT_OUTPUT 511
667 struct ctdb_script_wire {
668         char name[MAX_SCRIPT_NAME+1];
669         struct timeval start;
670         struct timeval finished;
671         int32_t status;
672         char output[MAX_SCRIPT_OUTPUT+1];
673 };
674
675 struct ctdb_scripts_wire {
676         uint32_t num_scripts;
677         struct ctdb_script_wire scripts[1];
678 };
679
680 /* different calls to event scripts. */
681 enum ctdb_eventscript_call {
682         CTDB_EVENT_INIT,                /* CTDB starting up: no args */
683         CTDB_EVENT_STARTUP,             /* CTDB starting up after initial recovery: no args. */
684         CTDB_EVENT_START_RECOVERY,      /* CTDB recovery starting: no args. */
685         CTDB_EVENT_RECOVERED,           /* CTDB recovery finished: no args. */
686         CTDB_EVENT_TAKE_IP,             /* IP taken: interface, IP address, netmask bits. */
687         CTDB_EVENT_RELEASE_IP,          /* IP released: interface, IP address, netmask bits. */
688         CTDB_EVENT_STOPPED,             /* This node is stopped: no args. */
689         CTDB_EVENT_MONITOR,             /* Please check if service is healthy: no args. */
690         CTDB_EVENT_STATUS,              /* Report service status: no args. */
691         CTDB_EVENT_SHUTDOWN,            /* CTDB shutting down: no args. */
692         CTDB_EVENT_RELOAD,              /* magic */
693         CTDB_EVENT_MAX
694 };
695
696 /* Mapping from enum to names. */
697 extern const char *ctdb_eventscript_call_names[];
698
699 int ctdb_ctrl_getscriptstatus(struct ctdb_context *ctdb, 
700                     struct timeval timeout, uint32_t destnode, 
701                     TALLOC_CTX *mem_ctx, enum ctdb_eventscript_call type,
702                     struct ctdb_scripts_wire **script_status);
703
704
705 struct debug_levels {
706         int32_t level;
707         const char *description;
708 };
709 extern struct debug_levels debug_levels[];
710
711 const char *get_debug_by_level(int32_t level);
712 int32_t get_debug_by_desc(const char *desc);
713
714 int ctdb_ctrl_stop_node(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
715 int ctdb_ctrl_continue_node(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode);
716
717 int ctdb_ctrl_setnatgwstate(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t natgwstate);
718 int ctdb_ctrl_setlmasterrole(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t lmasterrole);
719 int ctdb_ctrl_setrecmasterrole(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t recmasterrole);
720
721 int ctdb_ctrl_enablescript(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, const char *script);
722 int ctdb_ctrl_disablescript(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, const char *script);
723
724 struct ctdb_ban_time {
725         uint32_t pnn;
726         uint32_t time;
727 };
728
729 int ctdb_ctrl_set_ban(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, struct ctdb_ban_time *bantime);
730 int ctdb_ctrl_get_ban(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, TALLOC_CTX *mem_ctx, struct ctdb_ban_time **bantime);
731
732 struct ctdb_db_priority {
733         uint32_t db_id;
734         uint32_t priority;
735 };
736
737 int ctdb_ctrl_set_db_priority(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, struct ctdb_db_priority *db_prio);
738 int ctdb_ctrl_get_db_priority(struct ctdb_context *ctdb, struct timeval timeout, uint32_t destnode, uint32_t db_id, uint32_t *priority);
739
740 #endif