winbindd_cm: Pass cm_open_connection the need_rw_dc flag
[Samba.git] / ctdb / common / ctdb_util.c
blob72358ca7e729ebe6b4812e75f91a378a6929411f
1 /*
2 ctdb utility code
4 Copyright (C) Andrew Tridgell 2006
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.
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.
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/>.
20 #include "replace.h"
21 #include "system/network.h"
22 #include "system/filesys.h"
23 #include "system/wait.h"
25 #include <tdb.h>
27 #include "lib/util/debug.h"
28 #include "lib/util/samba_util.h"
30 #include "ctdb_private.h"
32 #include "common/reqid.h"
33 #include "common/system.h"
34 #include "common/common.h"
35 #include "common/logging.h"
38 return error string for last error
40 const char *ctdb_errstr(struct ctdb_context *ctdb)
42 return ctdb->err_msg;
47 remember an error message
49 void ctdb_set_error(struct ctdb_context *ctdb, const char *fmt, ...)
51 va_list ap;
52 talloc_free(ctdb->err_msg);
53 va_start(ap, fmt);
54 ctdb->err_msg = talloc_vasprintf(ctdb, fmt, ap);
55 DEBUG(DEBUG_ERR,("ctdb error: %s\n", ctdb->err_msg));
56 va_end(ap);
60 a fatal internal error occurred - no hope for recovery
62 void ctdb_fatal(struct ctdb_context *ctdb, const char *msg)
64 DEBUG(DEBUG_ALERT,("ctdb fatal error: %s\n", msg));
65 abort();
69 like ctdb_fatal() but a core/backtrace would not be useful
71 void ctdb_die(struct ctdb_context *ctdb, const char *msg)
73 DEBUG(DEBUG_ALERT,("ctdb exiting with error: %s\n", msg));
74 exit(1);
77 /* Set the path of a helper program from envvar, falling back to
78 * dir/file if envvar unset. type is a string to print in log
79 * messages. helper is assumed to point to a statically allocated
80 * array of size bytes, initialised to "". If file is NULL don't fall
81 * back if envvar is unset. If dir is NULL and envvar is unset (but
82 * file is not NULL) then this is an error. Returns true if helper is
83 * set, either previously or this time. */
84 bool ctdb_set_helper(const char *type, char *helper, size_t size,
85 const char *envvar,
86 const char *dir, const char *file)
88 const char *t;
89 struct stat st;
91 if (helper[0] != '\0') {
92 /* Already set */
93 return true;
96 t = getenv(envvar);
97 if (t != NULL) {
98 if (strlen(t) >= size) {
99 DEBUG(DEBUG_ERR,
100 ("Unable to set %s - path too long\n", type));
101 return false;
104 strncpy(helper, t, size);
105 } else if (file == NULL) {
106 return false;
107 } else if (dir == NULL) {
108 DEBUG(DEBUG_ERR,
109 ("Unable to set %s - dir is NULL\n", type));
110 return false;
111 } else {
112 if (snprintf(helper, size, "%s/%s", dir, file) >= size) {
113 DEBUG(DEBUG_ERR,
114 ("Unable to set %s - path too long\n", type));
115 return false;
119 if (stat(helper, &st) != 0) {
120 DEBUG(DEBUG_ERR,
121 ("Unable to set %s \"%s\" - %s\n",
122 type, helper, strerror(errno)));
123 return false;
125 if (!(st.st_mode & S_IXUSR)) {
126 DEBUG(DEBUG_ERR,
127 ("Unable to set %s \"%s\" - not executable\n",
128 type, helper));
129 return false;
132 DEBUG(DEBUG_NOTICE,
133 ("Set %s to \"%s\"\n", type, helper));
134 return true;
137 /* Invoke an external program to do some sort of tracing on the CTDB
138 * process. This might block for a little while. The external
139 * program is specified by the environment variable
140 * CTDB_EXTERNAL_TRACE. This program should take one argument: the
141 * pid of the process to trace. Commonly, the program would be a
142 * wrapper script around gcore.
144 void ctdb_external_trace(void)
146 int ret;
147 static char external_trace[PATH_MAX+1] = "";
148 char * cmd;
150 if (!ctdb_set_helper("external trace handler",
151 external_trace, sizeof(external_trace),
152 "CTDB_EXTERNAL_TRACE", NULL, NULL)) {
153 return;
156 cmd = talloc_asprintf(NULL, "%s %lu", external_trace, (unsigned long) getpid());
157 DEBUG(DEBUG_WARNING,("begin external trace: %s\n", cmd));
158 ret = system(cmd);
159 if (ret == -1) {
160 DEBUG(DEBUG_ERR,
161 ("external trace command \"%s\" failed\n", cmd));
163 DEBUG(DEBUG_WARNING,("end external trace: %s\n", cmd));
164 talloc_free(cmd);
168 parse a IP:port pair
170 int ctdb_parse_address(TALLOC_CTX *mem_ctx, const char *str,
171 ctdb_sock_addr *address)
173 struct servent *se;
174 int port;
176 setservent(0);
177 se = getservbyname("ctdb", "tcp");
178 endservent();
180 if (se == NULL) {
181 port = CTDB_PORT;
182 } else {
183 port = ntohs(se->s_port);
186 if (! parse_ip(str, NULL, port, address)) {
187 return -1;
190 return 0;
195 check if two addresses are the same
197 bool ctdb_same_address(ctdb_sock_addr *a1, ctdb_sock_addr *a2)
199 return ctdb_same_ip(a1, a2) &&
200 ctdb_addr_to_port(a1) == ctdb_addr_to_port(a2);
205 hash function for mapping data to a VNN - taken from tdb
207 uint32_t ctdb_hash(const TDB_DATA *key)
209 return tdb_jenkins_hash(discard_const(key));
213 static uint32_t ctdb_marshall_record_size(TDB_DATA key,
214 struct ctdb_ltdb_header *header,
215 TDB_DATA data)
217 return offsetof(struct ctdb_rec_data_old, data) + key.dsize +
218 data.dsize + (header ? sizeof(*header) : 0);
221 static void ctdb_marshall_record_copy(struct ctdb_rec_data_old *rec,
222 uint32_t reqid,
223 TDB_DATA key,
224 struct ctdb_ltdb_header *header,
225 TDB_DATA data,
226 uint32_t length)
228 uint32_t offset;
230 rec->length = length;
231 rec->reqid = reqid;
232 rec->keylen = key.dsize;
233 memcpy(&rec->data[0], key.dptr, key.dsize);
234 offset = key.dsize;
236 if (header) {
237 rec->datalen = data.dsize + sizeof(*header);
238 memcpy(&rec->data[offset], header, sizeof(*header));
239 offset += sizeof(*header);
240 } else {
241 rec->datalen = data.dsize;
243 memcpy(&rec->data[offset], data.dptr, data.dsize);
247 form a ctdb_rec_data record from a key/data pair
249 note that header may be NULL. If not NULL then it is included in the data portion
250 of the record
252 struct ctdb_rec_data_old *ctdb_marshall_record(TALLOC_CTX *mem_ctx,
253 uint32_t reqid,
254 TDB_DATA key,
255 struct ctdb_ltdb_header *header,
256 TDB_DATA data)
258 size_t length;
259 struct ctdb_rec_data_old *d;
261 length = ctdb_marshall_record_size(key, header, data);
263 d = (struct ctdb_rec_data_old *)talloc_size(mem_ctx, length);
264 if (d == NULL) {
265 return NULL;
268 ctdb_marshall_record_copy(d, reqid, key, header, data, length);
269 return d;
273 /* helper function for marshalling multiple records */
274 struct ctdb_marshall_buffer *ctdb_marshall_add(TALLOC_CTX *mem_ctx,
275 struct ctdb_marshall_buffer *m,
276 uint32_t db_id,
277 uint32_t reqid,
278 TDB_DATA key,
279 struct ctdb_ltdb_header *header,
280 TDB_DATA data)
282 struct ctdb_rec_data_old *r;
283 struct ctdb_marshall_buffer *m2;
284 uint32_t length, offset;
286 length = ctdb_marshall_record_size(key, header, data);
288 if (m == NULL) {
289 offset = offsetof(struct ctdb_marshall_buffer, data);
290 m2 = talloc_zero_size(mem_ctx, offset + length);
291 } else {
292 offset = talloc_get_size(m);
293 m2 = talloc_realloc_size(mem_ctx, m, offset + length);
295 if (m2 == NULL) {
296 TALLOC_FREE(m);
297 return NULL;
300 if (m == NULL) {
301 m2->db_id = db_id;
304 r = (struct ctdb_rec_data_old *)((uint8_t *)m2 + offset);
305 ctdb_marshall_record_copy(r, reqid, key, header, data, length);
306 m2->count++;
308 return m2;
311 /* we've finished marshalling, return a data blob with the marshalled records */
312 TDB_DATA ctdb_marshall_finish(struct ctdb_marshall_buffer *m)
314 TDB_DATA data;
315 data.dptr = (uint8_t *)m;
316 data.dsize = talloc_get_size(m);
317 return data;
321 loop over a marshalling buffer
323 - pass r==NULL to start
324 - loop the number of times indicated by m->count
326 struct ctdb_rec_data_old *ctdb_marshall_loop_next(
327 struct ctdb_marshall_buffer *m,
328 struct ctdb_rec_data_old *r,
329 uint32_t *reqid,
330 struct ctdb_ltdb_header *header,
331 TDB_DATA *key, TDB_DATA *data)
333 if (r == NULL) {
334 r = (struct ctdb_rec_data_old *)&m->data[0];
335 } else {
336 r = (struct ctdb_rec_data_old *)(r->length + (uint8_t *)r);
339 if (reqid != NULL) {
340 *reqid = r->reqid;
343 if (key != NULL) {
344 key->dptr = &r->data[0];
345 key->dsize = r->keylen;
347 if (data != NULL) {
348 data->dptr = &r->data[r->keylen];
349 data->dsize = r->datalen;
350 if (header != NULL) {
351 data->dptr += sizeof(*header);
352 data->dsize -= sizeof(*header);
356 if (header != NULL) {
357 if (r->datalen < sizeof(*header)) {
358 return NULL;
360 memcpy(header, &r->data[r->keylen], sizeof(*header));
363 return r;
367 This is used to canonicalize a ctdb_sock_addr structure.
369 void ctdb_canonicalize_ip(const ctdb_sock_addr *ip, ctdb_sock_addr *cip)
371 char prefix[12] = { 0,0,0,0,0,0,0,0,0,0,0xff,0xff };
373 memcpy(cip, ip, sizeof (*cip));
375 if ( (ip->sa.sa_family == AF_INET6)
376 && !memcmp(&ip->ip6.sin6_addr, prefix, 12)) {
377 memset(cip, 0, sizeof(*cip));
378 #ifdef HAVE_SOCK_SIN_LEN
379 cip->ip.sin_len = sizeof(*cip);
380 #endif
381 cip->ip.sin_family = AF_INET;
382 cip->ip.sin_port = ip->ip6.sin6_port;
383 memcpy(&cip->ip.sin_addr, &ip->ip6.sin6_addr.s6_addr[12], 4);
387 bool ctdb_same_ip(const ctdb_sock_addr *tip1, const ctdb_sock_addr *tip2)
389 ctdb_sock_addr ip1, ip2;
391 ctdb_canonicalize_ip(tip1, &ip1);
392 ctdb_canonicalize_ip(tip2, &ip2);
394 if (ip1.sa.sa_family != ip2.sa.sa_family) {
395 return false;
398 switch (ip1.sa.sa_family) {
399 case AF_INET:
400 return ip1.ip.sin_addr.s_addr == ip2.ip.sin_addr.s_addr;
401 case AF_INET6:
402 return !memcmp(&ip1.ip6.sin6_addr.s6_addr[0],
403 &ip2.ip6.sin6_addr.s6_addr[0],
404 16);
405 default:
406 DEBUG(DEBUG_ERR, (__location__ " CRITICAL Can not compare sockaddr structures of type %u\n", ip1.sa.sa_family));
407 return false;
410 return true;
414 compare two ctdb_sock_addr structures
416 bool ctdb_same_sockaddr(const ctdb_sock_addr *ip1, const ctdb_sock_addr *ip2)
418 return ctdb_same_ip(ip1, ip2) && ip1->ip.sin_port == ip2->ip.sin_port;
421 char *ctdb_addr_to_str(ctdb_sock_addr *addr)
423 static char cip[128] = "";
425 switch (addr->sa.sa_family) {
426 case AF_INET:
427 inet_ntop(addr->ip.sin_family, &addr->ip.sin_addr, cip, sizeof(cip));
428 break;
429 case AF_INET6:
430 inet_ntop(addr->ip6.sin6_family, &addr->ip6.sin6_addr, cip, sizeof(cip));
431 break;
432 default:
433 DEBUG(DEBUG_ERR, (__location__ " ERROR, unknown family %u\n", addr->sa.sa_family));
434 ctdb_external_trace();
437 return cip;
440 unsigned ctdb_addr_to_port(ctdb_sock_addr *addr)
442 switch (addr->sa.sa_family) {
443 case AF_INET:
444 return ntohs(addr->ip.sin_port);
445 break;
446 case AF_INET6:
447 return ntohs(addr->ip6.sin6_port);
448 break;
449 default:
450 DEBUG(DEBUG_ERR, (__location__ " ERROR, unknown family %u\n", addr->sa.sa_family));
453 return 0;
456 /* Add a node to a node map with given address and flags */
457 static bool node_map_add(TALLOC_CTX *mem_ctx,
458 const char *nstr, uint32_t flags,
459 struct ctdb_node_map_old **node_map)
461 ctdb_sock_addr addr;
462 uint32_t num;
463 size_t s;
464 struct ctdb_node_and_flags *n;
466 /* Might as well do this before trying to allocate memory */
467 if (ctdb_parse_address(mem_ctx, nstr, &addr) == -1) {
468 return false;
471 num = (*node_map)->num + 1;
472 s = offsetof(struct ctdb_node_map_old, nodes) +
473 num * sizeof(struct ctdb_node_and_flags);
474 *node_map = talloc_realloc_size(mem_ctx, *node_map, s);
475 if (*node_map == NULL) {
476 DEBUG(DEBUG_ERR, (__location__ " Out of memory\n"));
477 return false;
480 n = &(*node_map)->nodes[(*node_map)->num];
481 n->addr = addr;
482 n->pnn = (*node_map)->num;
483 n->flags = flags;
485 (*node_map)->num++;
487 return true;
490 /* Read a nodes file into a node map */
491 struct ctdb_node_map_old *ctdb_read_nodes_file(TALLOC_CTX *mem_ctx,
492 const char *nlist)
494 char **lines;
495 int nlines;
496 int i;
497 struct ctdb_node_map_old *ret;
499 /* Allocate node map header */
500 ret = talloc_zero_size(mem_ctx, offsetof(struct ctdb_node_map_old, nodes));
501 if (ret == NULL) {
502 DEBUG(DEBUG_ERR, (__location__ " Out of memory\n"));
503 return false;
506 lines = file_lines_load(nlist, &nlines, 0, mem_ctx);
507 if (lines == NULL) {
508 DEBUG(DEBUG_ERR, ("Failed to read nodes file \"%s\"\n", nlist));
509 return false;
511 while (nlines > 0 && strcmp(lines[nlines-1], "") == 0) {
512 nlines--;
515 for (i=0; i < nlines; i++) {
516 char *node;
517 uint32_t flags;
518 size_t len;
520 node = lines[i];
521 /* strip leading spaces */
522 while((*node == ' ') || (*node == '\t')) {
523 node++;
526 len = strlen(node);
528 while ((len > 1) &&
529 ((node[len-1] == ' ') || (node[len-1] == '\t')))
531 node[len-1] = '\0';
532 len--;
535 if (len == 0) {
536 continue;
538 if (*node == '#') {
539 /* A "deleted" node is a node that is
540 commented out in the nodes file. This is
541 used instead of removing a line, which
542 would cause subsequent nodes to change
543 their PNN. */
544 flags = NODE_FLAGS_DELETED;
545 node = discard_const("0.0.0.0");
546 } else {
547 flags = 0;
549 if (!node_map_add(mem_ctx, node, flags, &ret)) {
550 talloc_free(lines);
551 TALLOC_FREE(ret);
552 return NULL;
556 talloc_free(lines);
557 return ret;
560 struct ctdb_node_map_old *
561 ctdb_node_list_to_map(struct ctdb_node **nodes, uint32_t num_nodes,
562 TALLOC_CTX *mem_ctx)
564 uint32_t i;
565 size_t size;
566 struct ctdb_node_map_old *node_map;
568 size = offsetof(struct ctdb_node_map_old, nodes) +
569 num_nodes * sizeof(struct ctdb_node_and_flags);
570 node_map = (struct ctdb_node_map_old *)talloc_zero_size(mem_ctx, size);
571 if (node_map == NULL) {
572 DEBUG(DEBUG_ERR,
573 (__location__ " Failed to allocate nodemap array\n"));
574 return NULL;
577 node_map->num = num_nodes;
578 for (i=0; i<num_nodes; i++) {
579 node_map->nodes[i].addr = nodes[i]->address;
580 node_map->nodes[i].pnn = nodes[i]->pnn;
581 node_map->nodes[i].flags = nodes[i]->flags;
584 return node_map;
587 const char *ctdb_eventscript_call_names[] = {
588 "init",
589 "setup",
590 "startup",
591 "startrecovery",
592 "recovered",
593 "takeip",
594 "releaseip",
595 "stopped",
596 "monitor",
597 "status",
598 "shutdown",
599 "reload",
600 "updateip",
601 "ipreallocated"
604 /* Runstate handling */
605 static struct {
606 enum ctdb_runstate runstate;
607 const char * label;
608 } runstate_map[] = {
609 { CTDB_RUNSTATE_UNKNOWN, "UNKNOWN" },
610 { CTDB_RUNSTATE_INIT, "INIT" },
611 { CTDB_RUNSTATE_SETUP, "SETUP" },
612 { CTDB_RUNSTATE_FIRST_RECOVERY, "FIRST_RECOVERY" },
613 { CTDB_RUNSTATE_STARTUP, "STARTUP" },
614 { CTDB_RUNSTATE_RUNNING, "RUNNING" },
615 { CTDB_RUNSTATE_SHUTDOWN, "SHUTDOWN" },
616 { -1, NULL },
619 const char *runstate_to_string(enum ctdb_runstate runstate)
621 int i;
622 for (i=0; runstate_map[i].label != NULL ; i++) {
623 if (runstate_map[i].runstate == runstate) {
624 return runstate_map[i].label;
628 return runstate_map[0].label;
631 enum ctdb_runstate runstate_from_string(const char *label)
633 int i;
634 for (i=0; runstate_map[i].label != NULL; i++) {
635 if (strcasecmp(runstate_map[i].label, label) == 0) {
636 return runstate_map[i].runstate;
640 return CTDB_RUNSTATE_UNKNOWN;
643 void ctdb_set_runstate(struct ctdb_context *ctdb, enum ctdb_runstate runstate)
645 DEBUG(DEBUG_NOTICE,("Set runstate to %s (%d)\n",
646 runstate_to_string(runstate), runstate));
648 if (runstate <= ctdb->runstate) {
649 ctdb_fatal(ctdb, "runstate must always increase");
652 ctdb->runstate = runstate;
655 /* Convert arbitrary data to 4-byte boundary padded uint32 array */
656 uint32_t *ctdb_key_to_idkey(TALLOC_CTX *mem_ctx, TDB_DATA key)
658 uint32_t idkey_size, *k;
660 idkey_size = 1 + (key.dsize + sizeof(uint32_t)-1) / sizeof(uint32_t);
662 k = talloc_zero_array(mem_ctx, uint32_t, idkey_size);
663 if (k == NULL) {
664 return NULL;
667 k[0] = idkey_size;
668 memcpy(&k[1], key.dptr, key.dsize);
670 return k;