ctdb-protocol: Add new controls DB_PULL and DB_PUSH_START/DB_PUSH_CONFIRM
[kai/samba-autobuild/.git] / ctdb / protocol / protocol.h
1 /*
2    CTDB protocol marshalling
3
4    Copyright (C) Amitay Isaacs  2015
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 #include <tdb.h>
24
25 #define CTDB_MAGIC      0x43544442 /* CTDB */
26 #define CTDB_PROTOCOL   1
27
28 enum ctdb_operation {
29         CTDB_REQ_CALL           = 0,
30         CTDB_REPLY_CALL         = 1,
31         CTDB_REQ_DMASTER        = 2,
32         CTDB_REPLY_DMASTER      = 3,
33         CTDB_REPLY_ERROR        = 4,
34         CTDB_REQ_MESSAGE        = 5,
35         /* #6 removed */
36         CTDB_REQ_CONTROL        = 7,
37         CTDB_REPLY_CONTROL      = 8,
38         CTDB_REQ_KEEPALIVE      = 9,
39 };
40
41 /* used on the domain socket, send a pdu to the local daemon */
42 #define CTDB_CURRENT_NODE     0xF0000001
43 /* send a broadcast to all nodes in the cluster, active or not */
44 #define CTDB_BROADCAST_ALL    0xF0000002
45 /* send a broadcast to all nodes in the current vnn map */
46 #define CTDB_BROADCAST_VNNMAP 0xF0000003
47 /* send a broadcast to all connected nodes */
48 #define CTDB_BROADCAST_CONNECTED 0xF0000004
49 /* send a broadcast to selected connected nodes */
50 #define CTDB_MULTICAST 0xF0000005
51
52 #define CTDB_UNKNOWN_PNN        0xFFFFFFFF
53
54 /* the key used to store persistent db sequence number */
55 #define CTDB_DB_SEQNUM_KEY "__db_sequence_number__"
56
57 struct ctdb_req_header {
58         uint32_t length;
59         uint32_t ctdb_magic;
60         uint32_t ctdb_version;
61         uint32_t generation;
62         uint32_t operation;
63         uint32_t destnode;
64         uint32_t srcnode;
65         uint32_t reqid;
66 };
67
68 struct ctdb_req_call {
69         uint32_t flags;
70         uint32_t db_id;
71         uint32_t callid;
72         uint32_t hopcount;
73         TDB_DATA key;
74         TDB_DATA calldata;
75 };
76
77 struct ctdb_reply_call {
78         int32_t status;
79         TDB_DATA data;
80 };
81
82 struct ctdb_reply_error {
83         int32_t status;
84         TDB_DATA msg;
85 };
86
87 struct ctdb_req_dmaster {
88         uint32_t db_id;
89         uint64_t rsn;
90         uint32_t dmaster;
91         TDB_DATA key;
92         TDB_DATA data;
93 };
94
95 struct ctdb_reply_dmaster {
96         uint32_t db_id;
97         uint64_t rsn;
98         TDB_DATA key;
99         TDB_DATA data;
100 };
101
102 #define CTDB_NULL_FUNC                  0xFF000001
103 #define CTDB_FETCH_FUNC                 0xFF000002
104 #define CTDB_FETCH_WITH_HEADER_FUNC     0xFF000003
105
106 struct ctdb_call {
107         int call_id;
108         TDB_DATA key;
109         TDB_DATA call_data;
110         TDB_DATA reply_data;
111         uint32_t status;
112 #define CTDB_IMMEDIATE_MIGRATION                0x00000001
113 #define CTDB_CALL_FLAG_VACUUM_MIGRATION         0x00000002
114 #define CTDB_WANT_READONLY                      0x00000004
115         uint32_t flags;
116 };
117
118 /* SRVID to catch all messages */
119 #define CTDB_SRVID_ALL (~(uint64_t)0)
120
121 /* SRVID prefix used by CTDB */
122 #define CTDB_SRVID_PREFIX       0xF000000000000000LL
123
124 /* SRVID to inform of election data */
125 #define CTDB_SRVID_ELECTION     0xF100000000000000LL
126
127 /* SRVID to inform clients that the cluster has been reconfigured */
128 #define CTDB_SRVID_RECONFIGURE 0xF200000000000000LL
129
130 /* SRVID to inform clients an IP address has been released */
131 #define CTDB_SRVID_RELEASE_IP 0xF300000000000000LL
132
133 /* SRVID to inform clients that an IP address has been taken over */
134 #define CTDB_SRVID_TAKE_IP 0xF301000000000000LL
135
136 /* SRVID to inform recovery daemon of the node flags */
137 #define CTDB_SRVID_SET_NODE_FLAGS 0xF400000000000000LL
138
139 /* SRVID to inform recovery daemon to update public ip assignment */
140 #define CTDB_SRVID_RECD_UPDATE_IP 0xF500000000000000LL
141
142 /* SRVID to inform recovery daemon to migrate a set of records */
143 #define CTDB_SRVID_VACUUM_FETCH 0xF700000000000000LL
144
145 /* SRVID to inform recovery daemon to detach a database */
146 #define CTDB_SRVID_DETACH_DATABASE 0xF701000000000000LL
147
148 /* SRVID to inform recovery daemon to dump talloc memdump to the log */
149 #define CTDB_SRVID_MEM_DUMP 0xF800000000000000LL
150
151 /* SRVID to inform recovery daemon to send logs */
152 #define CTDB_SRVID_GETLOG  0xF801000000000000LL
153
154 /* SRVID to inform recovery daemon to clear logs */
155 #define CTDB_SRVID_CLEARLOG  0xF802000000000000LL
156
157 /* SRVID to inform recovery daemon to push the node flags to other nodes */
158 #define CTDB_SRVID_PUSH_NODE_FLAGS 0xF900000000000000LL
159
160 /* SRVID to inform recovery daemon to reload the nodes file */
161 #define CTDB_SRVID_RELOAD_NODES 0xFA00000000000000LL
162
163 /* SRVID to inform recovery daemon to perform a takeover run */
164 #define CTDB_SRVID_TAKEOVER_RUN 0xFB00000000000000LL
165
166 /* SRVID to inform recovery daemon to rebalance ips for a node.  */
167 #define CTDB_SRVID_REBALANCE_NODE 0xFB01000000000000LL
168
169 /* SRVID to inform recovery daemon to stop takeover runs from occurring */
170 #define CTDB_SRVID_DISABLE_TAKEOVER_RUNS 0xFB03000000000000LL
171
172 /* SRVID to inform recovery daemon to stop recoveries from occurring */
173 #define CTDB_SRVID_DISABLE_RECOVERIES 0xFB04000000000000LL
174
175 /* SRVID to inform recovery daemon to disable the public ip checks */
176 #define CTDB_SRVID_DISABLE_IP_CHECK  0xFC00000000000000LL
177
178 /* SRVID to inform recovery daemon of ipreallocate resposnes from ctdbd */
179 #define CTDB_SRVID_TAKEOVER_RUN_RESPONSE  0xFD00000000000000LL
180
181 /* A range of ports reserved for registering a PID (top 8 bits)
182  * All ports matching the 8 top bits are reserved for exclusive use by
183  * registering a SRVID that matches the process-id of the requesting process
184  */
185 #define CTDB_SRVID_PID_RANGE   0x0000000000000000LL
186
187 /* A range of ports reserved for samba (top 8 bits)
188  * All ports matching the 8 top bits are reserved for exclusive use by
189  * CIFS server
190  */
191 #define CTDB_SRVID_SAMBA_NOTIFY  0xFE00000000000000LL
192 #define CTDB_SRVID_SAMBA_RANGE   0xFE00000000000000LL
193
194 /* A range of ports reserved for a CTDB NFS server (top 8 bits)
195  * All ports matching the 8 top bits are reserved for exclusive use by
196  * NFS server
197  */
198 #define CTDB_SRVID_NFSD_RANGE  0xEE00000000000000LL
199
200 /* A range of ports reserved for a CTDB ISCSI server (top 8 bits)
201  * All ports matching the 8 top bits are reserved for exclusive use by
202  * ISCSI server
203  */
204 #define CTDB_SRVID_ISCSID_RANGE  0xDE00000000000000LL
205
206 /* A range of ports reserved for testing (top 8 bits)
207  * All ports matching the 8 top bits are reserved for exclusive use by
208  * test applications
209  */
210 #define CTDB_SRVID_TEST_RANGE  0xCE00000000000000LL
211
212 /* Range of ports reserved for traversals */
213 #define CTDB_SRVID_TRAVERSE_RANGE  0xBE00000000000000LL
214
215
216 enum ctdb_controls {CTDB_CONTROL_PROCESS_EXISTS          = 0,
217                     CTDB_CONTROL_STATISTICS              = 1,
218                     /* #2 removed */
219                     CTDB_CONTROL_PING                    = 3,
220                     CTDB_CONTROL_GETDBPATH               = 4,
221                     CTDB_CONTROL_GETVNNMAP               = 5,
222                     CTDB_CONTROL_SETVNNMAP               = 6,
223                     CTDB_CONTROL_GET_DEBUG               = 7,
224                     CTDB_CONTROL_SET_DEBUG               = 8,
225                     CTDB_CONTROL_GET_DBMAP               = 9,
226                     CTDB_CONTROL_GET_NODEMAPv4           = 10, /* obsolete */
227                     CTDB_CONTROL_SET_DMASTER             = 11, /* obsolete */
228                     /* #12 removed */
229                     CTDB_CONTROL_PULL_DB                 = 13,
230                     CTDB_CONTROL_PUSH_DB                 = 14,
231                     CTDB_CONTROL_GET_RECMODE             = 15,
232                     CTDB_CONTROL_SET_RECMODE             = 16,
233                     CTDB_CONTROL_STATISTICS_RESET        = 17,
234                     CTDB_CONTROL_DB_ATTACH               = 18,
235                     CTDB_CONTROL_SET_CALL                = 19, /* obsolete */
236                     CTDB_CONTROL_TRAVERSE_START          = 20,
237                     CTDB_CONTROL_TRAVERSE_ALL            = 21,
238                     CTDB_CONTROL_TRAVERSE_DATA           = 22,
239                     CTDB_CONTROL_REGISTER_SRVID          = 23,
240                     CTDB_CONTROL_DEREGISTER_SRVID        = 24,
241                     CTDB_CONTROL_GET_DBNAME              = 25,
242                     CTDB_CONTROL_ENABLE_SEQNUM           = 26,
243                     CTDB_CONTROL_UPDATE_SEQNUM           = 27,
244                     /* #28 removed */
245                     CTDB_CONTROL_DUMP_MEMORY             = 29,
246                     CTDB_CONTROL_GET_PID                 = 30,
247                     CTDB_CONTROL_GET_RECMASTER           = 31,
248                     CTDB_CONTROL_SET_RECMASTER           = 32,
249                     CTDB_CONTROL_FREEZE                  = 33,
250                     CTDB_CONTROL_THAW                    = 34,
251                     CTDB_CONTROL_GET_PNN                 = 35,
252                     CTDB_CONTROL_SHUTDOWN                = 36,
253                     CTDB_CONTROL_GET_MONMODE             = 37,
254                     /* #38 removed */
255                     /* #39 removed */
256                     /* #40 removed */
257                     /* #41 removed */
258                     CTDB_CONTROL_TAKEOVER_IPv4           = 42, /* obsolete */
259                     CTDB_CONTROL_RELEASE_IPv4            = 43, /* obsolete */
260                     CTDB_CONTROL_TCP_CLIENT              = 44,
261                     CTDB_CONTROL_TCP_ADD                 = 45,
262                     CTDB_CONTROL_TCP_REMOVE              = 46,
263                     CTDB_CONTROL_STARTUP                 = 47,
264                     CTDB_CONTROL_SET_TUNABLE             = 48,
265                     CTDB_CONTROL_GET_TUNABLE             = 49,
266                     CTDB_CONTROL_LIST_TUNABLES           = 50,
267                     CTDB_CONTROL_GET_PUBLIC_IPSv4        = 51, /* obsolete */
268                     CTDB_CONTROL_MODIFY_FLAGS            = 52,
269                     CTDB_CONTROL_GET_ALL_TUNABLES        = 53,
270                     CTDB_CONTROL_KILL_TCP                = 54,
271                     CTDB_CONTROL_GET_TCP_TICKLE_LIST     = 55,
272                     CTDB_CONTROL_SET_TCP_TICKLE_LIST     = 56,
273                     CTDB_CONTROL_REGISTER_SERVER_ID      = 57,
274                     CTDB_CONTROL_UNREGISTER_SERVER_ID    = 58,
275                     CTDB_CONTROL_CHECK_SERVER_ID         = 59,
276                     CTDB_CONTROL_GET_SERVER_ID_LIST      = 60,
277                     CTDB_CONTROL_DB_ATTACH_PERSISTENT    = 61,
278                     CTDB_CONTROL_PERSISTENT_STORE        = 62, /* obsolete */
279                     CTDB_CONTROL_UPDATE_RECORD           = 63,
280                     CTDB_CONTROL_SEND_GRATUITOUS_ARP     = 64,
281                     CTDB_CONTROL_TRANSACTION_START       = 65,
282                     CTDB_CONTROL_TRANSACTION_COMMIT      = 66,
283                     CTDB_CONTROL_WIPE_DATABASE           = 67,
284                     /* #68 removed */
285                     CTDB_CONTROL_UPTIME                  = 69,
286                     CTDB_CONTROL_START_RECOVERY          = 70,
287                     CTDB_CONTROL_END_RECOVERY            = 71,
288                     CTDB_CONTROL_RELOAD_NODES_FILE       = 72,
289                     /* #73 removed */
290                     CTDB_CONTROL_TRY_DELETE_RECORDS      = 74,
291                     CTDB_CONTROL_ENABLE_MONITOR          = 75,
292                     CTDB_CONTROL_DISABLE_MONITOR         = 76,
293                     CTDB_CONTROL_ADD_PUBLIC_IP           = 77,
294                     CTDB_CONTROL_DEL_PUBLIC_IP           = 78,
295                     CTDB_CONTROL_RUN_EVENTSCRIPTS        = 79,
296                     CTDB_CONTROL_GET_CAPABILITIES        = 80,
297                     CTDB_CONTROL_START_PERSISTENT_UPDATE = 81, /* obsolete */
298                     CTDB_CONTROL_CANCEL_PERSISTENT_UPDATE= 82, /* obsolete */
299                     CTDB_CONTROL_TRANS2_COMMIT           = 83, /* obsolete */
300                     CTDB_CONTROL_TRANS2_FINISHED         = 84, /* obsolete */
301                     CTDB_CONTROL_TRANS2_ERROR            = 85, /* obsolete */
302                     CTDB_CONTROL_TRANS2_COMMIT_RETRY     = 86, /* obsolete */
303                     CTDB_CONTROL_RECD_PING               = 87,
304                     CTDB_CONTROL_RELEASE_IP              = 88,
305                     CTDB_CONTROL_TAKEOVER_IP             = 89,
306                     CTDB_CONTROL_GET_PUBLIC_IPS          = 90,
307                     CTDB_CONTROL_GET_NODEMAP             = 91,
308                     /* missing */
309                     CTDB_CONTROL_GET_EVENT_SCRIPT_STATUS = 96,
310                     CTDB_CONTROL_TRAVERSE_KILL           = 97,
311                     CTDB_CONTROL_RECD_RECLOCK_LATENCY    = 98,
312                     CTDB_CONTROL_GET_RECLOCK_FILE        = 99,
313                     CTDB_CONTROL_SET_RECLOCK_FILE        = 100,
314                     CTDB_CONTROL_STOP_NODE               = 101,
315                     CTDB_CONTROL_CONTINUE_NODE           = 102,
316                     CTDB_CONTROL_SET_NATGWSTATE          = 103, /* obsolete */
317                     CTDB_CONTROL_SET_LMASTERROLE         = 104,
318                     CTDB_CONTROL_SET_RECMASTERROLE       = 105,
319                     CTDB_CONTROL_ENABLE_SCRIPT           = 107,
320                     CTDB_CONTROL_DISABLE_SCRIPT          = 108,
321                     CTDB_CONTROL_SET_BAN_STATE           = 109,
322                     CTDB_CONTROL_GET_BAN_STATE           = 110,
323                     CTDB_CONTROL_SET_DB_PRIORITY         = 111,
324                     CTDB_CONTROL_GET_DB_PRIORITY         = 112,
325                     CTDB_CONTROL_TRANSACTION_CANCEL      = 113,
326                     CTDB_CONTROL_REGISTER_NOTIFY         = 114,
327                     CTDB_CONTROL_DEREGISTER_NOTIFY       = 115,
328                     CTDB_CONTROL_TRANS2_ACTIVE           = 116, /* obsolete */
329                     CTDB_CONTROL_GET_LOG                 = 117, /* obsolete */
330                     CTDB_CONTROL_CLEAR_LOG               = 118, /* obsolete */
331                     CTDB_CONTROL_TRANS3_COMMIT           = 119,
332                     CTDB_CONTROL_GET_DB_SEQNUM           = 120,
333                     CTDB_CONTROL_DB_SET_HEALTHY          = 121,
334                     CTDB_CONTROL_DB_GET_HEALTH           = 122,
335                     CTDB_CONTROL_GET_PUBLIC_IP_INFO      = 123,
336                     CTDB_CONTROL_GET_IFACES              = 124,
337                     CTDB_CONTROL_SET_IFACE_LINK_STATE    = 125,
338                     CTDB_CONTROL_TCP_ADD_DELAYED_UPDATE  = 126,
339                     CTDB_CONTROL_GET_STAT_HISTORY        = 127,
340                     CTDB_CONTROL_SCHEDULE_FOR_DELETION   = 128,
341                     CTDB_CONTROL_SET_DB_READONLY         = 129,
342                     CTDB_CONTROL_CHECK_SRVIDS            = 130,
343                     CTDB_CONTROL_TRAVERSE_START_EXT      = 131,
344                     CTDB_CONTROL_GET_DB_STATISTICS       = 132,
345                     CTDB_CONTROL_SET_DB_STICKY           = 133,
346                     CTDB_CONTROL_RELOAD_PUBLIC_IPS       = 134,
347                     CTDB_CONTROL_TRAVERSE_ALL_EXT        = 135,
348                     CTDB_CONTROL_RECEIVE_RECORDS         = 136,
349                     CTDB_CONTROL_IPREALLOCATED           = 137,
350                     CTDB_CONTROL_GET_RUNSTATE            = 138,
351                     CTDB_CONTROL_DB_DETACH               = 139,
352                     CTDB_CONTROL_GET_NODES_FILE          = 140,
353                     CTDB_CONTROL_DB_FREEZE               = 141,
354                     CTDB_CONTROL_DB_THAW                 = 142,
355                     CTDB_CONTROL_DB_TRANSACTION_START    = 143,
356                     CTDB_CONTROL_DB_TRANSACTION_COMMIT   = 144,
357                     CTDB_CONTROL_DB_TRANSACTION_CANCEL   = 145,
358                     CTDB_CONTROL_DB_PULL                 = 146,
359                     CTDB_CONTROL_DB_PUSH_START           = 147,
360                     CTDB_CONTROL_DB_PUSH_CONFIRM         = 148,
361 };
362
363 #define CTDB_MONITORING_ACTIVE          0
364 #define CTDB_MONITORING_DISABLED        1
365
366 #define MAX_COUNT_BUCKETS 16
367 #define MAX_HOT_KEYS      10
368
369 struct ctdb_latency_counter {
370         int num;
371         double min;
372         double max;
373         double total;
374 };
375
376 struct ctdb_statistics {
377         uint32_t num_clients;
378         uint32_t frozen;
379         uint32_t recovering;
380         uint32_t client_packets_sent;
381         uint32_t client_packets_recv;
382         uint32_t node_packets_sent;
383         uint32_t node_packets_recv;
384         uint32_t keepalive_packets_sent;
385         uint32_t keepalive_packets_recv;
386         struct {
387                 uint32_t req_call;
388                 uint32_t reply_call;
389                 uint32_t req_dmaster;
390                 uint32_t reply_dmaster;
391                 uint32_t reply_error;
392                 uint32_t req_message;
393                 uint32_t req_control;
394                 uint32_t reply_control;
395         } node;
396         struct {
397                 uint32_t req_call;
398                 uint32_t req_message;
399                 uint32_t req_control;
400         } client;
401         struct {
402                 uint32_t call;
403                 uint32_t control;
404                 uint32_t traverse;
405         } timeouts;
406         struct {
407                 struct ctdb_latency_counter ctdbd;
408                 struct ctdb_latency_counter recd;
409         } reclock;
410         struct {
411                 uint32_t num_calls;
412                 uint32_t num_current;
413                 uint32_t num_pending;
414                 uint32_t num_failed;
415                 struct ctdb_latency_counter latency;
416                 uint32_t buckets[MAX_COUNT_BUCKETS];
417         } locks;
418         uint32_t total_calls;
419         uint32_t pending_calls;
420         uint32_t childwrite_calls;
421         uint32_t pending_childwrite_calls;
422         uint32_t memory_used;
423         uint32_t __last_counter; /* hack */
424         uint32_t max_hop_count;
425         uint32_t hop_count_bucket[MAX_COUNT_BUCKETS];
426         struct ctdb_latency_counter call_latency;
427         struct ctdb_latency_counter childwrite_latency;
428         uint32_t num_recoveries;
429         struct timeval statistics_start_time;
430         struct timeval statistics_current_time;
431         uint32_t total_ro_delegations;
432         uint32_t total_ro_revokes;
433 };
434
435 #define INVALID_GENERATION 1
436 /* table that contains the mapping between a hash value and lmaster
437  */
438 struct ctdb_vnn_map {
439         uint32_t generation;
440         uint32_t size;
441         uint32_t *map;
442 };
443
444 struct ctdb_dbid {
445         uint32_t db_id;
446 #define CTDB_DB_FLAGS_PERSISTENT        0x01
447 #define CTDB_DB_FLAGS_READONLY          0x02
448 #define CTDB_DB_FLAGS_STICKY            0x04
449         uint8_t flags;
450 };
451
452 struct ctdb_dbid_map {
453         uint32_t num;
454         struct ctdb_dbid *dbs;
455 };
456
457 struct ctdb_pulldb {
458         uint32_t db_id;
459 #define CTDB_LMASTER_ANY        0xffffffff
460         uint32_t lmaster;
461 };
462
463 struct ctdb_pulldb_ext {
464         uint32_t db_id;
465         uint32_t lmaster;
466         uint64_t srvid;
467 };
468
469 #define CTDB_RECOVERY_NORMAL            0
470 #define CTDB_RECOVERY_ACTIVE            1
471
472 #define CTDB_NUM_DB_PRIORITIES          3
473
474 /*
475   the extended header for records in the ltdb
476 */
477 struct ctdb_ltdb_header {
478         uint64_t rsn;
479         uint32_t dmaster;
480         uint32_t reserved1;
481 #define CTDB_REC_FLAG_DEFAULT                   0x00000000
482 #define CTDB_REC_FLAG_MIGRATED_WITH_DATA        0x00010000
483 #define CTDB_REC_FLAG_VACUUM_MIGRATED           0x00020000
484 #define CTDB_REC_FLAG_AUTOMATIC                 0x00040000
485 #define CTDB_REC_RO_HAVE_DELEGATIONS            0x01000000
486 #define CTDB_REC_RO_HAVE_READONLY               0x02000000
487 #define CTDB_REC_RO_REVOKING_READONLY           0x04000000
488 #define CTDB_REC_RO_REVOKE_COMPLETE             0x08000000
489 #define CTDB_REC_RO_FLAGS                       (CTDB_REC_RO_HAVE_DELEGATIONS|\
490                                                  CTDB_REC_RO_HAVE_READONLY|\
491                                                  CTDB_REC_RO_REVOKING_READONLY|\
492                                                  CTDB_REC_RO_REVOKE_COMPLETE)
493         uint32_t flags;
494 };
495
496 struct ctdb_rec_data {
497         uint32_t reqid;
498         struct ctdb_ltdb_header *header;
499         TDB_DATA key, data;
500 };
501
502 struct ctdb_rec_buffer {
503         uint32_t db_id;
504         uint32_t count;
505         uint8_t *buf;
506         size_t buflen;
507 };
508
509 typedef int (*ctdb_rec_parser_func_t)(uint32_t reqid,
510                                       struct ctdb_ltdb_header *header,
511                                       TDB_DATA key, TDB_DATA data,
512                                       void *private_data);
513
514 struct ctdb_traverse_start {
515         uint32_t db_id;
516         uint32_t reqid;
517         uint64_t srvid;
518 };
519
520 struct ctdb_traverse_all {
521         uint32_t db_id;
522         uint32_t reqid;
523         uint32_t pnn;
524         uint32_t client_reqid;
525         uint64_t srvid;
526 };
527
528 struct ctdb_traverse_start_ext {
529         uint32_t db_id;
530         uint32_t reqid;
531         uint64_t srvid;
532         bool withemptyrecords;
533 };
534
535 struct ctdb_traverse_all_ext {
536         uint32_t db_id;
537         uint32_t reqid;
538         uint32_t pnn;
539         uint32_t client_reqid;
540         uint64_t srvid;
541         bool withemptyrecords;
542 };
543
544 typedef union {
545         struct sockaddr sa;
546         struct sockaddr_in ip;
547         struct sockaddr_in6 ip6;
548 } ctdb_sock_addr;
549
550 struct ctdb_connection {
551         ctdb_sock_addr src;
552         ctdb_sock_addr dst;
553 };
554
555 struct ctdb_tunable {
556         const char *name;
557         uint32_t value;
558 };
559
560 struct ctdb_var_list {
561         int count;
562         const char **var;
563 };
564
565 struct ctdb_node_flag_change {
566         uint32_t pnn;
567         uint32_t new_flags;
568         uint32_t old_flags;
569 };
570
571 /* all tunable variables go in here */
572 struct ctdb_tunable_list {
573         uint32_t max_redirect_count;
574         uint32_t seqnum_interval; /* unit is ms */
575         uint32_t control_timeout;
576         uint32_t traverse_timeout;
577         uint32_t keepalive_interval;
578         uint32_t keepalive_limit;
579         uint32_t recover_timeout;
580         uint32_t recover_interval;
581         uint32_t election_timeout;
582         uint32_t takeover_timeout;
583         uint32_t monitor_interval;
584         uint32_t tickle_update_interval;
585         uint32_t script_timeout;
586         uint32_t monitor_timeout_count; /* allow dodgy scripts to hang this many times in a row before we mark the node unhealthy */
587         uint32_t script_unhealthy_on_timeout; /* obsolete */
588         uint32_t recovery_grace_period;
589         uint32_t recovery_ban_period;
590         uint32_t database_hash_size;
591         uint32_t database_max_dead;
592         uint32_t rerecovery_timeout;
593         uint32_t enable_bans;
594         uint32_t deterministic_public_ips;
595         uint32_t reclock_ping_period;
596         uint32_t no_ip_failback;
597         uint32_t disable_ip_failover;
598         uint32_t verbose_memory_names;
599         uint32_t recd_ping_timeout;
600         uint32_t recd_ping_failcount;
601         uint32_t log_latency_ms;
602         uint32_t reclock_latency_ms;
603         uint32_t recovery_drop_all_ips;
604         uint32_t verify_recovery_lock;
605         uint32_t vacuum_interval;
606         uint32_t vacuum_max_run_time;
607         uint32_t repack_limit;
608         uint32_t vacuum_limit;
609         uint32_t max_queue_depth_drop_msg;
610         uint32_t allow_unhealthy_db_read;
611         uint32_t stat_history_interval;
612         uint32_t deferred_attach_timeout;
613         uint32_t vacuum_fast_path_count;
614         uint32_t lcp2_public_ip_assignment;
615         uint32_t allow_client_db_attach;
616         uint32_t recover_pdb_by_seqnum;
617         uint32_t deferred_rebalance_on_node_add;
618         uint32_t fetch_collapse;
619         uint32_t hopcount_make_sticky;
620         uint32_t sticky_duration;
621         uint32_t sticky_pindown;
622         uint32_t no_ip_takeover;
623         uint32_t db_record_count_warn;
624         uint32_t db_record_size_warn;
625         uint32_t db_size_warn;
626         uint32_t pulldb_preallocation_size;
627         uint32_t no_ip_host_on_all_disabled;
628         uint32_t samba3_hack;
629         uint32_t mutex_enabled;
630         uint32_t lock_processes_per_db;
631         uint32_t rec_buffer_size_limit;
632 };
633
634 struct ctdb_tickle_list {
635         ctdb_sock_addr addr;
636         uint32_t num;
637         struct ctdb_connection *conn;
638 };
639
640 enum ctdb_client_type {
641         SERVER_TYPE_CTDB = 0,
642         SERVER_TYPE_SAMBA = 1,
643         SERVER_TYPE_NFSD = 2,
644         SERVER_TYPE_ISCSID = 3
645 };
646
647 struct ctdb_client_id {
648         enum ctdb_client_type type;
649         uint32_t pnn;
650         uint32_t server_id;
651 };
652
653 struct ctdb_client_id_list {
654         uint32_t num;
655         struct ctdb_client_id *cid;
656 };
657
658 struct ctdb_client_id_map {
659         int count;
660         struct ctdb_client_id_list *list;
661 };
662
663 struct ctdb_addr_info {
664         ctdb_sock_addr addr;
665         uint32_t mask;
666         const char *iface;
667 };
668
669 struct ctdb_transdb {
670         uint32_t db_id;
671         uint32_t tid;
672 };
673
674 struct ctdb_uptime {
675         struct timeval current_time;
676         struct timeval ctdbd_start_time;
677         struct timeval last_recovery_started;
678         struct timeval last_recovery_finished;
679 };
680
681 struct ctdb_public_ip {
682         uint32_t pnn;
683         ctdb_sock_addr addr;
684 };
685
686 struct ctdb_public_ip_list {
687         uint32_t num;
688         struct ctdb_public_ip *ip;
689 };
690
691 /*
692  * Node flags
693  */
694 #define NODE_FLAGS_DISCONNECTED         0x00000001 /* node isn't connected */
695 #define NODE_FLAGS_UNHEALTHY            0x00000002 /* monitoring says node is unhealthy */
696 #define NODE_FLAGS_PERMANENTLY_DISABLED 0x00000004 /* administrator has disabled node */
697 #define NODE_FLAGS_BANNED               0x00000008 /* recovery daemon has banned the node */
698 #define NODE_FLAGS_DELETED              0x00000010 /* this node has been deleted */
699 #define NODE_FLAGS_STOPPED              0x00000020 /* this node has been stopped */
700 #define NODE_FLAGS_DISABLED             (NODE_FLAGS_UNHEALTHY|NODE_FLAGS_PERMANENTLY_DISABLED)
701 #define NODE_FLAGS_INACTIVE             (NODE_FLAGS_DELETED|NODE_FLAGS_DISCONNECTED|NODE_FLAGS_BANNED|NODE_FLAGS_STOPPED)
702
703 /*
704  * Node capabilities
705  */
706 #define CTDB_CAP_RECMASTER              0x00000001
707 #define CTDB_CAP_LMASTER                0x00000002
708 /* This capability is set if CTDB_LVS_PUBLIC_IP is set */
709 #define CTDB_CAP_LVS                    0x00000004
710 #define CTDB_CAP_NATGW                  0x00000008 /* obsolete */
711
712 /*
713  * Node features
714  */
715 #define CTDB_CAP_PARALLEL_RECOVERY      0x00010000
716
717 #define CTDB_CAP_FEATURES               (CTDB_CAP_PARALLEL_RECOVERY)
718
719 #define CTDB_CAP_DEFAULT                (CTDB_CAP_RECMASTER | \
720                                          CTDB_CAP_LMASTER   | \
721                                          CTDB_CAP_FEATURES)
722
723 struct ctdb_node_and_flags {
724         uint32_t pnn;
725         uint32_t flags;
726         ctdb_sock_addr addr;
727 };
728
729 struct ctdb_node_map {
730         uint32_t num;
731         struct ctdb_node_and_flags *node;
732 };
733
734 enum ctdb_event {
735         CTDB_EVENT_INIT,                /* CTDB starting up: no args */
736         CTDB_EVENT_SETUP,               /* CTDB starting up after transport is readdy: no args. */
737         CTDB_EVENT_STARTUP,             /* CTDB starting up after initial recovery: no args. */
738         CTDB_EVENT_START_RECOVERY,      /* CTDB recovery starting: no args. */
739         CTDB_EVENT_RECOVERED,           /* CTDB recovery finished: no args. */
740         CTDB_EVENT_TAKE_IP,             /* IP taken: interface, IP address, netmask bits. */
741         CTDB_EVENT_RELEASE_IP,          /* IP released: interface, IP address, netmask bits. */
742         CTDB_EVENT_STOPPED,             /* Deprecated, do not use. */
743         CTDB_EVENT_MONITOR,             /* Please check if service is healthy: no args. */
744         CTDB_EVENT_STATUS,              /* Deprecated, do not use. */
745         CTDB_EVENT_SHUTDOWN,            /* CTDB shutting down: no args. */
746         CTDB_EVENT_RELOAD,              /* Deprecated, do not use */
747         CTDB_EVENT_UPDATE_IP,           /* IP updating: old interface, new interface, IP address, netmask bits. */
748         CTDB_EVENT_IPREALLOCATED,       /* when a takeover_run() completes */
749         CTDB_EVENT_MAX
750 };
751
752 #define MAX_SCRIPT_NAME 31
753 #define MAX_SCRIPT_OUTPUT 511
754
755 struct ctdb_script {
756         char name[MAX_SCRIPT_NAME+1];
757         struct timeval start;
758         struct timeval finished;
759         int32_t status;
760         char output[MAX_SCRIPT_OUTPUT+1];
761 };
762
763 struct ctdb_script_list {
764         uint32_t num_scripts;
765         struct ctdb_script *script;
766 };
767
768 struct ctdb_ban_state {
769         uint32_t pnn;
770         uint32_t time;
771 };
772
773 struct ctdb_db_priority {
774         uint32_t db_id;
775         uint32_t priority;
776 };
777
778 struct ctdb_notify_data {
779         uint64_t srvid;
780         TDB_DATA data;
781 };
782
783 #ifdef IFNAMSIZ
784 #define CTDB_IFACE_SIZE IFNAMSIZ
785 #else
786 #define CTDB_IFACE_SIZE 16
787 #endif
788
789 struct ctdb_iface {
790         char name[CTDB_IFACE_SIZE+2];
791         uint16_t link_state;
792         uint32_t references;
793 };
794
795 struct ctdb_iface_list {
796         uint32_t num;
797         struct ctdb_iface *iface;
798 };
799
800 struct ctdb_public_ip_info {
801         struct ctdb_public_ip ip;
802         uint32_t active_idx;
803         struct ctdb_iface_list *ifaces;
804 };
805
806 struct ctdb_statistics_list {
807         int num;
808         struct ctdb_statistics *stats;
809 };
810
811 struct ctdb_key_data {
812         uint32_t db_id;
813         struct ctdb_ltdb_header header;
814         TDB_DATA key;
815 };
816
817 struct ctdb_uint8_array {
818         int num;
819         uint8_t *val;
820 };
821
822 struct ctdb_uint64_array {
823         int num;
824         uint64_t *val;
825 };
826
827 struct ctdb_db_statistics {
828         struct {
829                 uint32_t num_calls;
830                 uint32_t num_current;
831                 uint32_t num_pending;
832                 uint32_t num_failed;
833                 struct ctdb_latency_counter latency;
834                 uint32_t buckets[MAX_COUNT_BUCKETS];
835         } locks;
836         struct {
837                 struct ctdb_latency_counter latency;
838         } vacuum;
839         uint32_t db_ro_delegations;
840         uint32_t db_ro_revokes;
841         uint32_t hop_count_bucket[MAX_COUNT_BUCKETS];
842         uint32_t num_hot_keys;
843         struct {
844                 uint32_t count;
845                 TDB_DATA key;
846         } hot_keys[MAX_HOT_KEYS];
847 };
848
849 enum ctdb_runstate {
850         CTDB_RUNSTATE_UNKNOWN,
851         CTDB_RUNSTATE_INIT,
852         CTDB_RUNSTATE_SETUP,
853         CTDB_RUNSTATE_FIRST_RECOVERY,
854         CTDB_RUNSTATE_STARTUP,
855         CTDB_RUNSTATE_RUNNING,
856         CTDB_RUNSTATE_SHUTDOWN,
857 };
858
859 struct ctdb_req_control_data {
860         uint32_t opcode;
861         union {
862                 pid_t pid;
863                 uint32_t db_id;
864                 struct ctdb_vnn_map *vnnmap;
865                 uint32_t loglevel;
866                 struct ctdb_pulldb *pulldb;
867                 struct ctdb_pulldb_ext *pulldb_ext;
868                 struct ctdb_rec_buffer *recbuf;
869                 uint32_t recmode;
870                 const char *db_name;
871                 struct ctdb_traverse_start *traverse_start;
872                 struct ctdb_traverse_all *traverse_all;
873                 struct ctdb_rec_data *rec_data;
874                 uint32_t recmaster;
875                 struct ctdb_connection *conn;
876                 struct ctdb_tunable *tunable;
877                 const char *tun_var;
878                 struct ctdb_node_flag_change *flag_change;
879                 ctdb_sock_addr *addr;
880                 struct ctdb_tickle_list *tickles;
881                 struct ctdb_client_id *cid;
882                 struct ctdb_addr_info *addr_info;
883                 uint32_t tid;
884                 struct ctdb_transdb *transdb;
885                 const char *event_str;
886                 struct ctdb_public_ip *pubip;
887                 enum ctdb_event event;
888                 double reclock_latency;
889                 const char *reclock_file;
890                 uint32_t role;
891                 const char *script;
892                 struct ctdb_ban_state *ban_state;
893                 struct ctdb_db_priority *db_prio;
894                 struct ctdb_notify_data *notify;
895                 uint64_t srvid;
896                 struct ctdb_iface *iface;
897                 struct ctdb_key_data *key;
898                 struct ctdb_uint64_array *u64_array;
899                 struct ctdb_traverse_start_ext *traverse_start_ext;
900                 struct ctdb_traverse_all_ext *traverse_all_ext;
901         } data;
902 };
903
904 struct ctdb_reply_control_data {
905         uint32_t opcode;
906         union {
907                 struct ctdb_statistics *stats;
908                 const char *db_path;
909                 struct ctdb_vnn_map *vnnmap;
910                 uint32_t loglevel;
911                 struct ctdb_dbid_map *dbmap;
912                 struct ctdb_rec_buffer *recbuf;
913                 uint32_t db_id;
914                 const char *db_name;
915                 const char *mem_str;
916                 uint32_t tun_value;
917                 struct ctdb_var_list *tun_var_list;
918                 struct ctdb_tunable_list *tun_list;
919                 struct ctdb_tickle_list *tickles;
920                 struct ctdb_client_id_map *cid_map;
921                 struct ctdb_uptime *uptime;
922                 uint32_t caps;
923                 struct ctdb_public_ip_list *pubip_list;
924                 struct ctdb_node_map *nodemap;
925                 struct ctdb_script_list *script_list;
926                 const char *reclock_file;
927                 struct ctdb_ban_state *ban_state;
928                 uint64_t seqnum;
929                 const char *reason;
930                 struct ctdb_public_ip_info *ipinfo;
931                 struct ctdb_iface_list *iface_list;
932                 struct ctdb_statistics_list *stats_list;
933                 struct ctdb_uint8_array *u8_array;
934                 struct ctdb_db_statistics *dbstats;
935                 enum ctdb_runstate runstate;
936                 uint32_t num_records;
937         } data;
938 };
939
940 struct ctdb_req_control {
941         uint32_t opcode;
942         uint32_t pad;
943         uint64_t srvid;
944         uint32_t client_id;
945 #define CTDB_CTRL_FLAG_NOREPLY   1
946 #define CTDB_CTRL_FLAG_OPCODE_SPECIFIC   0xFFFF0000
947         uint32_t flags;
948         struct ctdb_req_control_data rdata;
949 };
950
951 struct ctdb_reply_control {
952         int32_t status;
953         const char *errmsg;
954         struct ctdb_reply_control_data rdata;
955 };
956
957 struct ctdb_election_message {
958         uint32_t num_connected;
959         struct timeval priority_time;
960         uint32_t pnn;
961         uint32_t node_flags;
962 };
963
964 struct ctdb_srvid_message {
965         uint32_t pnn;
966         uint64_t srvid;
967 };
968
969 struct ctdb_disable_message {
970         uint32_t pnn;
971         uint64_t srvid;
972         uint32_t timeout;
973 };
974
975 union ctdb_message_data {
976         /* SRVID_ELECTION */
977         struct ctdb_election_message *election;
978         /* SRVID_RELEASE_IP, SRVID_TAKE_IP */
979         const char *ipaddr;
980         /* SRVID_SET_NODE_FLAGS, SERVID_PUSH_NODE_FLAGS */
981         struct ctdb_node_flag_change *flag_change;
982         /* SRVID_RECD_UPDATE_IP */
983         struct ctdb_public_ip *pubip;
984         /* SRVID_VACUUM_FETCH */
985         struct ctdb_rec_buffer *recbuf;
986         /* SRVID_DETACH_DATABASE */
987         uint32_t db_id;
988         /* SRVID_MEM_DUMP, SRVID_TAKEOVER_RUN */
989         struct ctdb_srvid_message *msg;
990         /* SRVID_REBALANCE_NODE */
991         uint32_t pnn;
992         /* SRVID_DISABLE_TAKEOVER_RUNS, SRVID_DISABLE_RECOVERIES */
993         struct ctdb_disable_message *disable;
994         /* SRVID_DISABLE_IP_CHECK */
995         uint32_t timeout;
996         /* Other */
997         TDB_DATA data;
998 };
999
1000 struct ctdb_req_message {
1001         uint64_t srvid;
1002         union ctdb_message_data data;
1003 };
1004
1005 struct ctdb_req_message_data {
1006         uint64_t srvid;
1007         TDB_DATA data;
1008 };
1009
1010 /* This is equivalent to server_id */
1011 struct ctdb_server_id {
1012         uint64_t pid;
1013         uint32_t task_id;
1014         uint32_t vnn;
1015         uint64_t unique_id;
1016 };
1017
1018 enum ctdb_g_lock_type {
1019         CTDB_G_LOCK_READ = 0,
1020         CTDB_G_LOCK_WRITE = 1,
1021 };
1022
1023 struct ctdb_g_lock {
1024         enum ctdb_g_lock_type type;
1025         struct ctdb_server_id sid;
1026 };
1027
1028 struct ctdb_g_lock_list {
1029         unsigned int num;
1030         struct ctdb_g_lock *lock;
1031 };
1032
1033 #endif /* __CTDB_PROTOCOL_H__ */