ctdb: Accept the key in hex format for the pstore command
[Samba.git] / ctdb / common / ctdb_util.c
blob709c7a15b6b246a66c642e72dd57dedf53c810ef
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 "includes.h"
21 #include "tdb.h"
22 #include "system/network.h"
23 #include "system/filesys.h"
24 #include "system/wait.h"
25 #include "../include/ctdb_private.h"
28 return error string for last error
30 const char *ctdb_errstr(struct ctdb_context *ctdb)
32 return ctdb->err_msg;
37 remember an error message
39 void ctdb_set_error(struct ctdb_context *ctdb, const char *fmt, ...)
41 va_list ap;
42 talloc_free(ctdb->err_msg);
43 va_start(ap, fmt);
44 ctdb->err_msg = talloc_vasprintf(ctdb, fmt, ap);
45 DEBUG(DEBUG_ERR,("ctdb error: %s\n", ctdb->err_msg));
46 va_end(ap);
50 a fatal internal error occurred - no hope for recovery
52 void ctdb_fatal(struct ctdb_context *ctdb, const char *msg)
54 DEBUG(DEBUG_ALERT,("ctdb fatal error: %s\n", msg));
55 abort();
59 like ctdb_fatal() but a core/backtrace would not be useful
61 void ctdb_die(struct ctdb_context *ctdb, const char *msg)
63 DEBUG(DEBUG_ALERT,("ctdb exiting with error: %s\n", msg));
64 exit(1);
67 /* Set the path of a helper program from envvar, falling back to
68 * dir/file if envvar unset. type is a string to print in log
69 * messages. helper is assumed to point to a statically allocated
70 * array of size bytes, initialised to "". If file is NULL don't fall
71 * back if envvar is unset. If dir is NULL and envvar is unset (but
72 * file is not NULL) then this is an error. Returns true if helper is
73 * set, either previously or this time. */
74 bool ctdb_set_helper(const char *type, char *helper, size_t size,
75 const char *envvar,
76 const char *dir, const char *file)
78 const char *t;
79 struct stat st;
81 if (helper[0] != '\0') {
82 /* Already set */
83 return true;
86 t = getenv(envvar);
87 if (t != NULL) {
88 if (strlen(t) >= size) {
89 DEBUG(DEBUG_ERR,
90 ("Unable to set %s - path too long\n", type));
91 return false;
94 strncpy(helper, t, size);
95 } else if (file == NULL) {
96 return false;
97 } else if (dir == NULL) {
98 DEBUG(DEBUG_ERR,
99 ("Unable to set %s - dir is NULL\n", type));
100 return false;
101 } else {
102 if (snprintf(helper, size, "%s/%s", dir, file) >= size) {
103 DEBUG(DEBUG_ERR,
104 ("Unable to set %s - path too long\n", type));
105 return false;
109 if (stat(helper, &st) != 0) {
110 DEBUG(DEBUG_ERR,
111 ("Unable to set %s \"%s\" - %s\n",
112 type, helper, strerror(errno)));
113 return false;
115 if (!(st.st_mode & S_IXUSR)) {
116 DEBUG(DEBUG_ERR,
117 ("Unable to set %s \"%s\" - not executable\n",
118 type, helper));
119 return false;
122 DEBUG(DEBUG_NOTICE,
123 ("Set %s to \"%s\"\n", type, helper));
124 return true;
127 /* Invoke an external program to do some sort of tracing on the CTDB
128 * process. This might block for a little while. The external
129 * program is specified by the environment variable
130 * CTDB_EXTERNAL_TRACE. This program should take one argument: the
131 * pid of the process to trace. Commonly, the program would be a
132 * wrapper script around gcore.
134 void ctdb_external_trace(void)
136 int ret;
137 static char external_trace[PATH_MAX+1] = "";
138 char * cmd;
140 if (!ctdb_set_helper("external trace handler",
141 external_trace, sizeof(external_trace),
142 "CTDB_EXTERNAL_TRACE", NULL, NULL)) {
143 return;
146 cmd = talloc_asprintf(NULL, "%s %lu", external_trace, (unsigned long) getpid());
147 DEBUG(DEBUG_WARNING,("begin external trace: %s\n", cmd));
148 ret = system(cmd);
149 if (ret == -1) {
150 DEBUG(DEBUG_ERR,
151 ("external trace command \"%s\" failed\n", cmd));
153 DEBUG(DEBUG_WARNING,("end external trace: %s\n", cmd));
154 talloc_free(cmd);
158 parse a IP:port pair
160 int ctdb_parse_address(TALLOC_CTX *mem_ctx, const char *str,
161 ctdb_sock_addr *address)
163 struct servent *se;
164 int port;
166 setservent(0);
167 se = getservbyname("ctdb", "tcp");
168 endservent();
170 if (se == NULL) {
171 port = CTDB_PORT;
172 } else {
173 port = ntohs(se->s_port);
176 if (! parse_ip(str, NULL, port, address)) {
177 return -1;
180 return 0;
185 check if two addresses are the same
187 bool ctdb_same_address(ctdb_sock_addr *a1, ctdb_sock_addr *a2)
189 return ctdb_same_ip(a1, a2) &&
190 ctdb_addr_to_port(a1) == ctdb_addr_to_port(a2);
195 hash function for mapping data to a VNN - taken from tdb
197 uint32_t ctdb_hash(const TDB_DATA *key)
199 return tdb_jenkins_hash(discard_const(key));
203 a type checking varient of idr_find
205 static void *_idr_find_type(struct idr_context *idp, int id, const char *type, const char *location)
207 void *p = idr_find(idp, id);
208 if (p && talloc_check_name(p, type) == NULL) {
209 DEBUG(DEBUG_ERR,("%s idr_find_type expected type %s but got %s\n",
210 location, type, talloc_get_name(p)));
211 return NULL;
213 return p;
216 uint32_t ctdb_reqid_new(struct ctdb_context *ctdb, void *state)
218 int id = idr_get_new_above(ctdb->idr, state, ctdb->lastid+1, INT_MAX);
219 if (id < 0) {
220 DEBUG(DEBUG_DEBUG, ("Reqid wrap!\n"));
221 id = idr_get_new(ctdb->idr, state, INT_MAX);
223 ctdb->lastid = id;
224 return id;
227 void *_ctdb_reqid_find(struct ctdb_context *ctdb, uint32_t reqid, const char *type, const char *location)
229 void *p;
231 p = _idr_find_type(ctdb->idr, reqid, type, location);
232 if (p == NULL) {
233 DEBUG(DEBUG_WARNING, ("Could not find idr:%u\n",reqid));
236 return p;
240 void ctdb_reqid_remove(struct ctdb_context *ctdb, uint32_t reqid)
242 int ret;
244 ret = idr_remove(ctdb->idr, reqid);
245 if (ret != 0) {
246 DEBUG(DEBUG_ERR, ("Removing idr that does not exist\n"));
251 static uint32_t ctdb_marshall_record_size(TDB_DATA key,
252 struct ctdb_ltdb_header *header,
253 TDB_DATA data)
255 return offsetof(struct ctdb_rec_data, data) + key.dsize +
256 data.dsize + (header ? sizeof(*header) : 0);
259 static void ctdb_marshall_record_copy(struct ctdb_rec_data *rec,
260 uint32_t reqid,
261 TDB_DATA key,
262 struct ctdb_ltdb_header *header,
263 TDB_DATA data,
264 uint32_t length)
266 uint32_t offset;
268 rec->length = length;
269 rec->reqid = reqid;
270 rec->keylen = key.dsize;
271 memcpy(&rec->data[0], key.dptr, key.dsize);
272 offset = key.dsize;
274 if (header) {
275 rec->datalen = data.dsize + sizeof(*header);
276 memcpy(&rec->data[offset], header, sizeof(*header));
277 offset += sizeof(*header);
278 } else {
279 rec->datalen = data.dsize;
281 memcpy(&rec->data[offset], data.dptr, data.dsize);
285 form a ctdb_rec_data record from a key/data pair
287 note that header may be NULL. If not NULL then it is included in the data portion
288 of the record
290 struct ctdb_rec_data *ctdb_marshall_record(TALLOC_CTX *mem_ctx, uint32_t reqid,
291 TDB_DATA key,
292 struct ctdb_ltdb_header *header,
293 TDB_DATA data)
295 size_t length;
296 struct ctdb_rec_data *d;
298 length = ctdb_marshall_record_size(key, header, data);
300 d = (struct ctdb_rec_data *)talloc_size(mem_ctx, length);
301 if (d == NULL) {
302 return NULL;
305 ctdb_marshall_record_copy(d, reqid, key, header, data, length);
306 return d;
310 /* helper function for marshalling multiple records */
311 struct ctdb_marshall_buffer *ctdb_marshall_add(TALLOC_CTX *mem_ctx,
312 struct ctdb_marshall_buffer *m,
313 uint64_t db_id,
314 uint32_t reqid,
315 TDB_DATA key,
316 struct ctdb_ltdb_header *header,
317 TDB_DATA data)
319 struct ctdb_rec_data *r;
320 struct ctdb_marshall_buffer *m2;
321 uint32_t length, offset;
323 length = ctdb_marshall_record_size(key, header, data);
325 if (m == NULL) {
326 offset = offsetof(struct ctdb_marshall_buffer, data);
327 m2 = talloc_zero_size(mem_ctx, offset + length);
328 } else {
329 offset = talloc_get_size(m);
330 m2 = talloc_realloc_size(mem_ctx, m, offset + length);
332 if (m2 == NULL) {
333 TALLOC_FREE(m);
334 return NULL;
337 if (m == NULL) {
338 m2->db_id = db_id;
341 r = (struct ctdb_rec_data *)((uint8_t *)m2 + offset);
342 ctdb_marshall_record_copy(r, reqid, key, header, data, length);
343 m2->count++;
345 return m2;
348 /* we've finished marshalling, return a data blob with the marshalled records */
349 TDB_DATA ctdb_marshall_finish(struct ctdb_marshall_buffer *m)
351 TDB_DATA data;
352 data.dptr = (uint8_t *)m;
353 data.dsize = talloc_get_size(m);
354 return data;
358 loop over a marshalling buffer
360 - pass r==NULL to start
361 - loop the number of times indicated by m->count
363 struct ctdb_rec_data *ctdb_marshall_loop_next(struct ctdb_marshall_buffer *m, struct ctdb_rec_data *r,
364 uint32_t *reqid,
365 struct ctdb_ltdb_header *header,
366 TDB_DATA *key, TDB_DATA *data)
368 if (r == NULL) {
369 r = (struct ctdb_rec_data *)&m->data[0];
370 } else {
371 r = (struct ctdb_rec_data *)(r->length + (uint8_t *)r);
374 if (reqid != NULL) {
375 *reqid = r->reqid;
378 if (key != NULL) {
379 key->dptr = &r->data[0];
380 key->dsize = r->keylen;
382 if (data != NULL) {
383 data->dptr = &r->data[r->keylen];
384 data->dsize = r->datalen;
385 if (header != NULL) {
386 data->dptr += sizeof(*header);
387 data->dsize -= sizeof(*header);
391 if (header != NULL) {
392 if (r->datalen < sizeof(*header)) {
393 return NULL;
395 memcpy(header, &r->data[r->keylen], sizeof(*header));
398 return r;
402 This is used to canonicalize a ctdb_sock_addr structure.
404 void ctdb_canonicalize_ip(const ctdb_sock_addr *ip, ctdb_sock_addr *cip)
406 char prefix[12] = { 0,0,0,0,0,0,0,0,0,0,0xff,0xff };
408 memcpy(cip, ip, sizeof (*cip));
410 if ( (ip->sa.sa_family == AF_INET6)
411 && !memcmp(&ip->ip6.sin6_addr, prefix, 12)) {
412 memset(cip, 0, sizeof(*cip));
413 #ifdef HAVE_SOCK_SIN_LEN
414 cip->ip.sin_len = sizeof(*cip);
415 #endif
416 cip->ip.sin_family = AF_INET;
417 cip->ip.sin_port = ip->ip6.sin6_port;
418 memcpy(&cip->ip.sin_addr, &ip->ip6.sin6_addr.s6_addr[12], 4);
422 bool ctdb_same_ip(const ctdb_sock_addr *tip1, const ctdb_sock_addr *tip2)
424 ctdb_sock_addr ip1, ip2;
426 ctdb_canonicalize_ip(tip1, &ip1);
427 ctdb_canonicalize_ip(tip2, &ip2);
429 if (ip1.sa.sa_family != ip2.sa.sa_family) {
430 return false;
433 switch (ip1.sa.sa_family) {
434 case AF_INET:
435 return ip1.ip.sin_addr.s_addr == ip2.ip.sin_addr.s_addr;
436 case AF_INET6:
437 return !memcmp(&ip1.ip6.sin6_addr.s6_addr[0],
438 &ip2.ip6.sin6_addr.s6_addr[0],
439 16);
440 default:
441 DEBUG(DEBUG_ERR, (__location__ " CRITICAL Can not compare sockaddr structures of type %u\n", ip1.sa.sa_family));
442 return false;
445 return true;
449 compare two ctdb_sock_addr structures
451 bool ctdb_same_sockaddr(const ctdb_sock_addr *ip1, const ctdb_sock_addr *ip2)
453 return ctdb_same_ip(ip1, ip2) && ip1->ip.sin_port == ip2->ip.sin_port;
456 char *ctdb_addr_to_str(ctdb_sock_addr *addr)
458 static char cip[128] = "";
460 switch (addr->sa.sa_family) {
461 case AF_INET:
462 inet_ntop(addr->ip.sin_family, &addr->ip.sin_addr, cip, sizeof(cip));
463 break;
464 case AF_INET6:
465 inet_ntop(addr->ip6.sin6_family, &addr->ip6.sin6_addr, cip, sizeof(cip));
466 break;
467 default:
468 DEBUG(DEBUG_ERR, (__location__ " ERROR, unknown family %u\n", addr->sa.sa_family));
469 ctdb_external_trace();
472 return cip;
475 unsigned ctdb_addr_to_port(ctdb_sock_addr *addr)
477 switch (addr->sa.sa_family) {
478 case AF_INET:
479 return ntohs(addr->ip.sin_port);
480 break;
481 case AF_INET6:
482 return ntohs(addr->ip6.sin6_port);
483 break;
484 default:
485 DEBUG(DEBUG_ERR, (__location__ " ERROR, unknown family %u\n", addr->sa.sa_family));
488 return 0;
491 /* Add a node to a node map with given address and flags */
492 static bool node_map_add(TALLOC_CTX *mem_ctx,
493 const char *nstr, uint32_t flags,
494 struct ctdb_node_map **node_map)
496 ctdb_sock_addr addr;
497 uint32_t num;
498 size_t s;
499 struct ctdb_node_and_flags *n;
501 /* Might as well do this before trying to allocate memory */
502 if (ctdb_parse_address(mem_ctx, nstr, &addr) == -1) {
503 return false;
506 num = (*node_map)->num + 1;
507 s = offsetof(struct ctdb_node_map, nodes) +
508 num * sizeof(struct ctdb_node_and_flags);
509 *node_map = talloc_realloc_size(mem_ctx, *node_map, s);
510 if (*node_map == NULL) {
511 DEBUG(DEBUG_ERR, (__location__ " Out of memory\n"));
512 return false;
515 n = &(*node_map)->nodes[(*node_map)->num];
516 n->addr = addr;
517 n->pnn = (*node_map)->num;
518 n->flags = flags;
520 (*node_map)->num++;
522 return true;
525 /* Read a nodes file into a node map */
526 struct ctdb_node_map *ctdb_read_nodes_file(TALLOC_CTX *mem_ctx,
527 const char *nlist)
529 char **lines;
530 int nlines;
531 int i;
532 struct ctdb_node_map *ret;
534 /* Allocate node map header */
535 ret = talloc_zero_size(mem_ctx, offsetof(struct ctdb_node_map, nodes));
536 if (ret == NULL) {
537 DEBUG(DEBUG_ERR, (__location__ " Out of memory\n"));
538 return false;
541 lines = file_lines_load(nlist, &nlines, 0, mem_ctx);
542 if (lines == NULL) {
543 DEBUG(DEBUG_ERR, ("Failed to read nodes file \"%s\"\n", nlist));
544 return false;
546 while (nlines > 0 && strcmp(lines[nlines-1], "") == 0) {
547 nlines--;
550 for (i=0; i < nlines; i++) {
551 char *node;
552 uint32_t flags;
553 size_t len;
555 node = lines[i];
556 /* strip leading spaces */
557 while((*node == ' ') || (*node == '\t')) {
558 node++;
561 len = strlen(node);
563 while ((len > 1) &&
564 ((node[len-1] == ' ') || (node[len-1] == '\t')))
566 node[len-1] = '\0';
567 len--;
570 if (len == 0) {
571 continue;
573 if (*node == '#') {
574 /* A "deleted" node is a node that is
575 commented out in the nodes file. This is
576 used instead of removing a line, which
577 would cause subsequent nodes to change
578 their PNN. */
579 flags = NODE_FLAGS_DELETED;
580 node = discard_const("0.0.0.0");
581 } else {
582 flags = 0;
584 if (!node_map_add(mem_ctx, node, flags, &ret)) {
585 talloc_free(lines);
586 TALLOC_FREE(ret);
587 return NULL;
591 talloc_free(lines);
592 return ret;
595 struct ctdb_node_map *
596 ctdb_node_list_to_map(struct ctdb_node **nodes, uint32_t num_nodes,
597 TALLOC_CTX *mem_ctx)
599 uint32_t i;
600 size_t size;
601 struct ctdb_node_map *node_map;
603 size = offsetof(struct ctdb_node_map, nodes) +
604 num_nodes * sizeof(struct ctdb_node_and_flags);
605 node_map = (struct ctdb_node_map *)talloc_zero_size(mem_ctx, size);
606 if (node_map == NULL) {
607 DEBUG(DEBUG_ERR,
608 (__location__ " Failed to allocate nodemap array\n"));
609 return NULL;
612 node_map->num = num_nodes;
613 for (i=0; i<num_nodes; i++) {
614 node_map->nodes[i].addr = nodes[i]->address;
615 node_map->nodes[i].pnn = nodes[i]->pnn;
616 node_map->nodes[i].flags = nodes[i]->flags;
619 return node_map;
622 const char *ctdb_eventscript_call_names[] = {
623 "init",
624 "setup",
625 "startup",
626 "startrecovery",
627 "recovered",
628 "takeip",
629 "releaseip",
630 "stopped",
631 "monitor",
632 "status",
633 "shutdown",
634 "reload",
635 "updateip",
636 "ipreallocated"
639 /* Runstate handling */
640 static struct {
641 enum ctdb_runstate runstate;
642 const char * label;
643 } runstate_map[] = {
644 { CTDB_RUNSTATE_UNKNOWN, "UNKNOWN" },
645 { CTDB_RUNSTATE_INIT, "INIT" },
646 { CTDB_RUNSTATE_SETUP, "SETUP" },
647 { CTDB_RUNSTATE_FIRST_RECOVERY, "FIRST_RECOVERY" },
648 { CTDB_RUNSTATE_STARTUP, "STARTUP" },
649 { CTDB_RUNSTATE_RUNNING, "RUNNING" },
650 { CTDB_RUNSTATE_SHUTDOWN, "SHUTDOWN" },
651 { -1, NULL },
654 const char *runstate_to_string(enum ctdb_runstate runstate)
656 int i;
657 for (i=0; runstate_map[i].label != NULL ; i++) {
658 if (runstate_map[i].runstate == runstate) {
659 return runstate_map[i].label;
663 return runstate_map[0].label;
666 enum ctdb_runstate runstate_from_string(const char *label)
668 int i;
669 for (i=0; runstate_map[i].label != NULL; i++) {
670 if (strcasecmp(runstate_map[i].label, label) == 0) {
671 return runstate_map[i].runstate;
675 return CTDB_RUNSTATE_UNKNOWN;
678 void ctdb_set_runstate(struct ctdb_context *ctdb, enum ctdb_runstate runstate)
680 if (runstate <= ctdb->runstate) {
681 ctdb_fatal(ctdb, "runstate must always increase");
684 DEBUG(DEBUG_NOTICE,("Set runstate to %s (%d)\n",
685 runstate_to_string(runstate), runstate));
686 ctdb->runstate = runstate;
689 /* Convert arbitrary data to 4-byte boundary padded uint32 array */
690 uint32_t *ctdb_key_to_idkey(TALLOC_CTX *mem_ctx, TDB_DATA key)
692 uint32_t idkey_size, *k;
694 idkey_size = 1 + (key.dsize + sizeof(uint32_t)-1) / sizeof(uint32_t);
696 k = talloc_zero_array(mem_ctx, uint32_t, idkey_size);
697 if (k == NULL) {
698 return NULL;
701 k[0] = idkey_size;
702 memcpy(&k[1], key.dptr, key.dsize);
704 return k;