ctdb-common: No need to save previous scheduler priority
[Samba/wip.git] / ctdb / common / ctdb_util.c
blob82c4764ef8d54d22adb257d2b2e3afe597da6231
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 "system/shmem.h"
26 #include "../include/ctdb_private.h"
28 int LogLevel = DEBUG_NOTICE;
29 int this_log_level = 0;
32 return error string for last error
34 const char *ctdb_errstr(struct ctdb_context *ctdb)
36 return ctdb->err_msg;
41 remember an error message
43 void ctdb_set_error(struct ctdb_context *ctdb, const char *fmt, ...)
45 va_list ap;
46 talloc_free(ctdb->err_msg);
47 va_start(ap, fmt);
48 ctdb->err_msg = talloc_vasprintf(ctdb, fmt, ap);
49 DEBUG(DEBUG_ERR,("ctdb error: %s\n", ctdb->err_msg));
50 va_end(ap);
54 a fatal internal error occurred - no hope for recovery
56 void ctdb_fatal(struct ctdb_context *ctdb, const char *msg)
58 DEBUG(DEBUG_ALERT,("ctdb fatal error: %s\n", msg));
59 abort();
63 like ctdb_fatal() but a core/backtrace would not be useful
65 void ctdb_die(struct ctdb_context *ctdb, const char *msg)
67 DEBUG(DEBUG_ALERT,("ctdb exiting with error: %s\n", msg));
68 exit(1);
71 /* Invoke an external program to do some sort of tracing on the CTDB
72 * process. This might block for a little while. The external
73 * program is specified by the environment variable
74 * CTDB_EXTERNAL_TRACE. This program should take one argument: the
75 * pid of the process to trace. Commonly, the program would be a
76 * wrapper script around gcore.
78 void ctdb_external_trace(void)
81 const char * t = getenv("CTDB_EXTERNAL_TRACE");
82 char * cmd;
84 if (t == NULL) {
85 return;
88 cmd = talloc_asprintf(NULL, "%s %lu", t, (unsigned long) getpid());
89 DEBUG(DEBUG_WARNING,("begin external trace: %s\n", cmd));
90 system(cmd);
91 DEBUG(DEBUG_WARNING,("end external trace: %s\n", cmd));
92 talloc_free(cmd);
96 parse a IP:port pair
98 int ctdb_parse_address(struct ctdb_context *ctdb,
99 TALLOC_CTX *mem_ctx, const char *str,
100 struct ctdb_address *address)
102 struct servent *se;
104 setservent(0);
105 se = getservbyname("ctdb", "tcp");
106 endservent();
108 address->address = talloc_strdup(mem_ctx, str);
109 CTDB_NO_MEMORY(ctdb, address->address);
111 if (se == NULL) {
112 address->port = CTDB_PORT;
113 } else {
114 address->port = ntohs(se->s_port);
116 return 0;
121 check if two addresses are the same
123 bool ctdb_same_address(struct ctdb_address *a1, struct ctdb_address *a2)
125 return strcmp(a1->address, a2->address) == 0 && a1->port == a2->port;
130 hash function for mapping data to a VNN - taken from tdb
132 uint32_t ctdb_hash(const TDB_DATA *key)
134 return tdb_jenkins_hash(discard_const(key));
138 a type checking varient of idr_find
140 static void *_idr_find_type(struct idr_context *idp, int id, const char *type, const char *location)
142 void *p = idr_find(idp, id);
143 if (p && talloc_check_name(p, type) == NULL) {
144 DEBUG(DEBUG_ERR,("%s idr_find_type expected type %s but got %s\n",
145 location, type, talloc_get_name(p)));
146 return NULL;
148 return p;
151 uint32_t ctdb_reqid_new(struct ctdb_context *ctdb, void *state)
153 int id = idr_get_new_above(ctdb->idr, state, ctdb->lastid+1, INT_MAX);
154 if (id < 0) {
155 DEBUG(DEBUG_DEBUG, ("Reqid wrap!\n"));
156 id = idr_get_new(ctdb->idr, state, INT_MAX);
158 ctdb->lastid = id;
159 return id;
162 void *_ctdb_reqid_find(struct ctdb_context *ctdb, uint32_t reqid, const char *type, const char *location)
164 void *p;
166 p = _idr_find_type(ctdb->idr, reqid, type, location);
167 if (p == NULL) {
168 DEBUG(DEBUG_WARNING, ("Could not find idr:%u\n",reqid));
171 return p;
175 void ctdb_reqid_remove(struct ctdb_context *ctdb, uint32_t reqid)
177 int ret;
179 ret = idr_remove(ctdb->idr, reqid);
180 if (ret != 0) {
181 DEBUG(DEBUG_ERR, ("Removing idr that does not exist\n"));
187 form a ctdb_rec_data record from a key/data pair
189 note that header may be NULL. If not NULL then it is included in the data portion
190 of the record
192 struct ctdb_rec_data *ctdb_marshall_record(TALLOC_CTX *mem_ctx, uint32_t reqid,
193 TDB_DATA key,
194 struct ctdb_ltdb_header *header,
195 TDB_DATA data)
197 size_t length;
198 struct ctdb_rec_data *d;
200 length = offsetof(struct ctdb_rec_data, data) + key.dsize +
201 data.dsize + (header?sizeof(*header):0);
202 d = (struct ctdb_rec_data *)talloc_size(mem_ctx, length);
203 if (d == NULL) {
204 return NULL;
206 d->length = length;
207 d->reqid = reqid;
208 d->keylen = key.dsize;
209 memcpy(&d->data[0], key.dptr, key.dsize);
210 if (header) {
211 d->datalen = data.dsize + sizeof(*header);
212 memcpy(&d->data[key.dsize], header, sizeof(*header));
213 memcpy(&d->data[key.dsize+sizeof(*header)], data.dptr, data.dsize);
214 } else {
215 d->datalen = data.dsize;
216 memcpy(&d->data[key.dsize], data.dptr, data.dsize);
218 return d;
222 /* helper function for marshalling multiple records */
223 struct ctdb_marshall_buffer *ctdb_marshall_add(TALLOC_CTX *mem_ctx,
224 struct ctdb_marshall_buffer *m,
225 uint64_t db_id,
226 uint32_t reqid,
227 TDB_DATA key,
228 struct ctdb_ltdb_header *header,
229 TDB_DATA data)
231 struct ctdb_rec_data *r;
232 size_t m_size, r_size;
233 struct ctdb_marshall_buffer *m2;
235 r = ctdb_marshall_record(mem_ctx, reqid, key, header, data);
236 if (r == NULL) {
237 talloc_free(m);
238 return NULL;
241 if (m == NULL) {
242 m = talloc_zero_size(mem_ctx, offsetof(struct ctdb_marshall_buffer, data));
243 if (m == NULL) {
244 return NULL;
246 m->db_id = db_id;
249 m_size = talloc_get_size(m);
250 r_size = talloc_get_size(r);
252 m2 = talloc_realloc_size(mem_ctx, m, m_size + r_size);
253 if (m2 == NULL) {
254 talloc_free(m);
255 return NULL;
258 memcpy(m_size + (uint8_t *)m2, r, r_size);
260 talloc_free(r);
262 m2->count++;
264 return m2;
267 /* we've finished marshalling, return a data blob with the marshalled records */
268 TDB_DATA ctdb_marshall_finish(struct ctdb_marshall_buffer *m)
270 TDB_DATA data;
271 data.dptr = (uint8_t *)m;
272 data.dsize = talloc_get_size(m);
273 return data;
277 loop over a marshalling buffer
279 - pass r==NULL to start
280 - loop the number of times indicated by m->count
282 struct ctdb_rec_data *ctdb_marshall_loop_next(struct ctdb_marshall_buffer *m, struct ctdb_rec_data *r,
283 uint32_t *reqid,
284 struct ctdb_ltdb_header *header,
285 TDB_DATA *key, TDB_DATA *data)
287 if (r == NULL) {
288 r = (struct ctdb_rec_data *)&m->data[0];
289 } else {
290 r = (struct ctdb_rec_data *)(r->length + (uint8_t *)r);
293 if (reqid != NULL) {
294 *reqid = r->reqid;
297 if (key != NULL) {
298 key->dptr = &r->data[0];
299 key->dsize = r->keylen;
301 if (data != NULL) {
302 data->dptr = &r->data[r->keylen];
303 data->dsize = r->datalen;
304 if (header != NULL) {
305 data->dptr += sizeof(*header);
306 data->dsize -= sizeof(*header);
310 if (header != NULL) {
311 if (r->datalen < sizeof(*header)) {
312 return NULL;
314 *header = *(struct ctdb_ltdb_header *)&r->data[r->keylen];
317 return r;
321 #if HAVE_SCHED_H
322 #include <sched.h>
323 #endif
325 #if HAVE_PROCINFO_H
326 #include <procinfo.h>
327 #endif
330 if possible, make this task real time
332 void ctdb_set_scheduler(struct ctdb_context *ctdb)
334 #ifdef _AIX_
335 #if HAVE_THREAD_SETSCHED
336 struct thrdentry64 te;
337 tid64_t ti;
339 ti = 0ULL;
340 if (getthrds64(getpid(), &te, sizeof(te), &ti, 1) != 1) {
341 DEBUG(DEBUG_ERR, ("Unable to get thread information\n"));
342 return;
345 if (thread_setsched(te.ti_tid, 0, SCHED_RR) == -1) {
346 DEBUG(DEBUG_ERR, ("Unable to set scheduler to SCHED_RR (%s)\n",
347 strerror(errno)));
348 } else {
349 DEBUG(DEBUG_NOTICE, ("Set scheduler to SCHED_RR\n"));
351 #endif
352 #else /* no AIX */
353 #if HAVE_SCHED_SETSCHEDULER
354 struct sched_param p;
356 p.sched_priority = 1;
358 if (sched_setscheduler(0, SCHED_FIFO, &p) == -1) {
359 DEBUG(DEBUG_CRIT,("Unable to set scheduler to SCHED_FIFO (%s)\n",
360 strerror(errno)));
361 } else {
362 DEBUG(DEBUG_NOTICE,("Set scheduler to SCHED_FIFO\n"));
364 #endif
365 #endif
369 restore previous scheduler parameters
371 void ctdb_restore_scheduler(struct ctdb_context *ctdb)
373 #ifdef _AIX_
374 #if HAVE_THREAD_SETSCHED
375 struct thrdentry64 te;
376 tid64_t ti;
378 ti = 0ULL;
379 if (getthrds64(getpid(), &te, sizeof(te), &ti, 1) != 1) {
380 ctdb_fatal(ctdb, "Unable to get thread information\n");
382 if (thread_setsched(te.ti_tid, 0, SCHED_OTHER) == -1) {
383 ctdb_fatal(ctdb, "Unable to set scheduler to SCHED_OTHER\n");
385 #endif
386 #else /* no AIX */
387 #if HAVE_SCHED_SETSCHEDULER
388 struct sched_param p;
390 p.sched_priority = 0;
391 if (sched_setscheduler(0, SCHED_OTHER, &p) == -1) {
392 ctdb_fatal(ctdb, "Unable to set scheduler to SCHED_OTHER\n");
394 #endif
395 #endif
398 void set_nonblocking(int fd)
400 int v;
402 v = fcntl(fd, F_GETFL, 0);
403 if (v == -1) {
404 DEBUG(DEBUG_WARNING, ("Failed to get file status flags - %s\n",
405 strerror(errno)));
406 return;
408 if (fcntl(fd, F_SETFL, v | O_NONBLOCK) == -1) {
409 DEBUG(DEBUG_WARNING, ("Failed to set non_blocking on fd - %s\n",
410 strerror(errno)));
414 void set_close_on_exec(int fd)
416 int v;
418 v = fcntl(fd, F_GETFD, 0);
419 if (v == -1) {
420 DEBUG(DEBUG_WARNING, ("Failed to get file descriptor flags - %s\n",
421 strerror(errno)));
422 return;
424 if (fcntl(fd, F_SETFD, v | FD_CLOEXEC) != 0) {
425 DEBUG(DEBUG_WARNING, ("Failed to set close_on_exec on fd - %s\n",
426 strerror(errno)));
431 bool parse_ipv4(const char *s, unsigned port, struct sockaddr_in *sin)
433 sin->sin_family = AF_INET;
434 sin->sin_port = htons(port);
436 if (inet_pton(AF_INET, s, &sin->sin_addr) != 1) {
437 DEBUG(DEBUG_ERR, (__location__ " Failed to translate %s into sin_addr\n", s));
438 return false;
441 return true;
444 static bool parse_ipv6(const char *s, const char *ifaces, unsigned port, ctdb_sock_addr *saddr)
446 saddr->ip6.sin6_family = AF_INET6;
447 saddr->ip6.sin6_port = htons(port);
448 saddr->ip6.sin6_flowinfo = 0;
449 saddr->ip6.sin6_scope_id = 0;
451 if (inet_pton(AF_INET6, s, &saddr->ip6.sin6_addr) != 1) {
452 DEBUG(DEBUG_ERR, (__location__ " Failed to translate %s into sin6_addr\n", s));
453 return false;
456 if (ifaces && IN6_IS_ADDR_LINKLOCAL(&saddr->ip6.sin6_addr)) {
457 if (strchr(ifaces, ',')) {
458 DEBUG(DEBUG_ERR, (__location__ " Link local address %s "
459 "is specified for multiple ifaces %s\n",
460 s, ifaces));
461 return false;
463 saddr->ip6.sin6_scope_id = if_nametoindex(ifaces);
466 return true;
469 parse a ip:port pair
471 bool parse_ip_port(const char *addr, ctdb_sock_addr *saddr)
473 TALLOC_CTX *tmp_ctx = talloc_new(NULL);
474 char *s, *p;
475 unsigned port;
476 char *endp = NULL;
477 bool ret;
479 s = talloc_strdup(tmp_ctx, addr);
480 if (s == NULL) {
481 DEBUG(DEBUG_ERR, (__location__ " Failed strdup()\n"));
482 talloc_free(tmp_ctx);
483 return false;
486 p = rindex(s, ':');
487 if (p == NULL) {
488 DEBUG(DEBUG_ERR, (__location__ " This addr: %s does not contain a port number\n", s));
489 talloc_free(tmp_ctx);
490 return false;
493 port = strtoul(p+1, &endp, 10);
494 if (endp == NULL || *endp != 0) {
495 /* trailing garbage */
496 DEBUG(DEBUG_ERR, (__location__ " Trailing garbage after the port in %s\n", s));
497 talloc_free(tmp_ctx);
498 return false;
500 *p = 0;
503 /* now is this a ipv4 or ipv6 address ?*/
504 ret = parse_ip(s, NULL, port, saddr);
506 talloc_free(tmp_ctx);
507 return ret;
511 parse an ip
513 bool parse_ip(const char *addr, const char *ifaces, unsigned port, ctdb_sock_addr *saddr)
515 char *p;
516 bool ret;
518 ZERO_STRUCTP(saddr); /* valgrind :-) */
520 /* now is this a ipv4 or ipv6 address ?*/
521 p = index(addr, ':');
522 if (p == NULL) {
523 ret = parse_ipv4(addr, port, &saddr->ip);
524 } else {
525 ret = parse_ipv6(addr, ifaces, port, saddr);
528 return ret;
532 parse a ip/mask pair
534 bool parse_ip_mask(const char *str, const char *ifaces, ctdb_sock_addr *addr, unsigned *mask)
536 TALLOC_CTX *tmp_ctx = talloc_new(NULL);
537 char *s, *p;
538 char *endp = NULL;
539 bool ret;
541 ZERO_STRUCT(*addr);
542 s = talloc_strdup(tmp_ctx, str);
543 if (s == NULL) {
544 DEBUG(DEBUG_ERR, (__location__ " Failed strdup()\n"));
545 talloc_free(tmp_ctx);
546 return false;
549 p = rindex(s, '/');
550 if (p == NULL) {
551 DEBUG(DEBUG_ERR, (__location__ " This addr: %s does not contain a mask\n", s));
552 talloc_free(tmp_ctx);
553 return false;
556 *mask = strtoul(p+1, &endp, 10);
557 if (endp == NULL || *endp != 0) {
558 /* trailing garbage */
559 DEBUG(DEBUG_ERR, (__location__ " Trailing garbage after the mask in %s\n", s));
560 talloc_free(tmp_ctx);
561 return false;
563 *p = 0;
566 /* now is this a ipv4 or ipv6 address ?*/
567 ret = parse_ip(s, ifaces, 0, addr);
569 talloc_free(tmp_ctx);
570 return ret;
574 This is used to canonicalize a ctdb_sock_addr structure.
576 void ctdb_canonicalize_ip(const ctdb_sock_addr *ip, ctdb_sock_addr *cip)
578 char prefix[12] = { 0,0,0,0,0,0,0,0,0,0,0xff,0xff };
580 memcpy(cip, ip, sizeof (*cip));
582 if ( (ip->sa.sa_family == AF_INET6)
583 && !memcmp(&ip->ip6.sin6_addr, prefix, 12)) {
584 memset(cip, 0, sizeof(*cip));
585 #ifdef HAVE_SOCK_SIN_LEN
586 cip->ip.sin_len = sizeof(*cip);
587 #endif
588 cip->ip.sin_family = AF_INET;
589 cip->ip.sin_port = ip->ip6.sin6_port;
590 memcpy(&cip->ip.sin_addr, &ip->ip6.sin6_addr.s6_addr[12], 4);
594 bool ctdb_same_ip(const ctdb_sock_addr *tip1, const ctdb_sock_addr *tip2)
596 ctdb_sock_addr ip1, ip2;
598 ctdb_canonicalize_ip(tip1, &ip1);
599 ctdb_canonicalize_ip(tip2, &ip2);
601 if (ip1.sa.sa_family != ip2.sa.sa_family) {
602 return false;
605 switch (ip1.sa.sa_family) {
606 case AF_INET:
607 return ip1.ip.sin_addr.s_addr == ip2.ip.sin_addr.s_addr;
608 case AF_INET6:
609 return !memcmp(&ip1.ip6.sin6_addr.s6_addr[0],
610 &ip2.ip6.sin6_addr.s6_addr[0],
611 16);
612 default:
613 DEBUG(DEBUG_ERR, (__location__ " CRITICAL Can not compare sockaddr structures of type %u\n", ip1.sa.sa_family));
614 return false;
617 return true;
621 compare two ctdb_sock_addr structures
623 bool ctdb_same_sockaddr(const ctdb_sock_addr *ip1, const ctdb_sock_addr *ip2)
625 return ctdb_same_ip(ip1, ip2) && ip1->ip.sin_port == ip2->ip.sin_port;
628 char *ctdb_addr_to_str(ctdb_sock_addr *addr)
630 static char cip[128] = "";
632 switch (addr->sa.sa_family) {
633 case AF_INET:
634 inet_ntop(addr->ip.sin_family, &addr->ip.sin_addr, cip, sizeof(cip));
635 break;
636 case AF_INET6:
637 inet_ntop(addr->ip6.sin6_family, &addr->ip6.sin6_addr, cip, sizeof(cip));
638 break;
639 default:
640 DEBUG(DEBUG_ERR, (__location__ " ERROR, unknown family %u\n", addr->sa.sa_family));
641 ctdb_external_trace();
644 return cip;
647 unsigned ctdb_addr_to_port(ctdb_sock_addr *addr)
649 switch (addr->sa.sa_family) {
650 case AF_INET:
651 return ntohs(addr->ip.sin_port);
652 break;
653 case AF_INET6:
654 return ntohs(addr->ip6.sin6_port);
655 break;
656 default:
657 DEBUG(DEBUG_ERR, (__location__ " ERROR, unknown family %u\n", addr->sa.sa_family));
660 return 0;
663 void ctdb_block_signal(int signum)
665 sigset_t set;
666 sigemptyset(&set);
667 sigaddset(&set,signum);
668 sigprocmask(SIG_BLOCK,&set,NULL);
671 void ctdb_unblock_signal(int signum)
673 sigset_t set;
674 sigemptyset(&set);
675 sigaddset(&set,signum);
676 sigprocmask(SIG_UNBLOCK,&set,NULL);
679 struct debug_levels debug_levels[] = {
680 {DEBUG_EMERG, "EMERG"},
681 {DEBUG_ALERT, "ALERT"},
682 {DEBUG_CRIT, "CRIT"},
683 {DEBUG_ERR, "ERR"},
684 {DEBUG_WARNING, "WARNING"},
685 {DEBUG_NOTICE, "NOTICE"},
686 {DEBUG_INFO, "INFO"},
687 {DEBUG_DEBUG, "DEBUG"},
688 {0, NULL}
691 const char *get_debug_by_level(int32_t level)
693 int i;
695 for (i=0; debug_levels[i].description != NULL; i++) {
696 if (debug_levels[i].level == level) {
697 return debug_levels[i].description;
700 return "Unknown";
703 int32_t get_debug_by_desc(const char *desc)
705 int i;
707 for (i=0; debug_levels[i].description != NULL; i++) {
708 if (!strcasecmp(debug_levels[i].description, desc)) {
709 return debug_levels[i].level;
713 return DEBUG_ERR;
716 /* we don't lock future pages here; it would increase the chance that
717 * we'd fail to mmap later on. */
718 void ctdb_lockdown_memory(struct ctdb_context *ctdb)
720 #if defined(HAVE_MLOCKALL) && !defined(_AIX_)
721 /* Extra stack, please! */
722 char dummy[10000];
723 memset(dummy, 0, sizeof(dummy));
725 if (ctdb->valgrinding) {
726 return;
729 /* Ignore when running in local daemons mode */
730 if (getuid() != 0) {
731 return;
734 /* Avoid compiler optimizing out dummy. */
735 mlock(dummy, sizeof(dummy));
736 if (mlockall(MCL_CURRENT) != 0) {
737 DEBUG(DEBUG_WARNING,("Failed to lockdown memory: %s'\n",
738 strerror(errno)));
740 #endif
743 const char *ctdb_eventscript_call_names[] = {
744 "init",
745 "setup",
746 "startup",
747 "startrecovery",
748 "recovered",
749 "takeip",
750 "releaseip",
751 "stopped",
752 "monitor",
753 "status",
754 "shutdown",
755 "reload",
756 "updateip",
757 "ipreallocated"
760 /* Runstate handling */
761 static struct {
762 enum ctdb_runstate runstate;
763 const char * label;
764 } runstate_map[] = {
765 { CTDB_RUNSTATE_UNKNOWN, "UNKNOWN" },
766 { CTDB_RUNSTATE_INIT, "INIT" },
767 { CTDB_RUNSTATE_SETUP, "SETUP" },
768 { CTDB_RUNSTATE_FIRST_RECOVERY, "FIRST_RECOVERY" },
769 { CTDB_RUNSTATE_STARTUP, "STARTUP" },
770 { CTDB_RUNSTATE_RUNNING, "RUNNING" },
771 { CTDB_RUNSTATE_SHUTDOWN, "SHUTDOWN" },
772 { -1, NULL },
775 const char *runstate_to_string(enum ctdb_runstate runstate)
777 int i;
778 for (i=0; runstate_map[i].label != NULL ; i++) {
779 if (runstate_map[i].runstate == runstate) {
780 return runstate_map[i].label;
784 return runstate_map[0].label;
787 enum ctdb_runstate runstate_from_string(const char *label)
789 int i;
790 for (i=0; runstate_map[i].label != NULL; i++) {
791 if (strcasecmp(runstate_map[i].label, label) == 0) {
792 return runstate_map[i].runstate;
796 return CTDB_RUNSTATE_UNKNOWN;
799 void ctdb_set_runstate(struct ctdb_context *ctdb, enum ctdb_runstate runstate)
801 if (runstate <= ctdb->runstate) {
802 ctdb_fatal(ctdb, "runstate must always increase");
805 DEBUG(DEBUG_NOTICE,("Set runstate to %s (%d)\n",
806 runstate_to_string(runstate), runstate));
807 ctdb->runstate = runstate;
810 void ctdb_mkdir_p_or_die(struct ctdb_context *ctdb, const char *dir, int mode)
812 int ret;
814 ret = mkdir_p(dir, mode);
815 if (ret != 0) {
816 DEBUG(DEBUG_ALERT,
817 ("ctdb exiting with error: "
818 "failed to create directory \"%s\" (%s)\n",
819 dir, strerror(errno)));
820 exit(1);