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/>.
21 #include "system/network.h"
22 #include "system/filesys.h"
23 #include "system/wait.h"
24 #include "lib/util/util_file.h"
28 #include "lib/util/debug.h"
29 #include "lib/util/samba_util.h"
31 #include "ctdb_private.h"
33 #include "protocol/protocol_util.h"
35 #include "common/reqid.h"
36 #include "common/system.h"
37 #include "common/common.h"
38 #include "common/logging.h"
41 return error string for last error
43 const char *ctdb_errstr(struct ctdb_context
*ctdb
)
50 remember an error message
52 void ctdb_set_error(struct ctdb_context
*ctdb
, const char *fmt
, ...)
55 talloc_free(ctdb
->err_msg
);
57 ctdb
->err_msg
= talloc_vasprintf(ctdb
, fmt
, ap
);
58 DEBUG(DEBUG_ERR
,("ctdb error: %s\n", ctdb
->err_msg
));
63 a fatal internal error occurred - no hope for recovery
65 void ctdb_fatal(struct ctdb_context
*ctdb
, const char *msg
)
67 DEBUG(DEBUG_ALERT
,("ctdb fatal error: %s\n", msg
));
72 like ctdb_fatal() but a core/backtrace would not be useful
74 void ctdb_die(struct ctdb_context
*ctdb
, const char *msg
)
76 DEBUG(DEBUG_ALERT
,("ctdb exiting with error: %s\n", msg
));
80 /* Set the path of a helper program from envvar, falling back to
81 * dir/file if envvar unset. type is a string to print in log
82 * messages. helper is assumed to point to a statically allocated
83 * array of size bytes, initialised to "". If file is NULL don't fall
84 * back if envvar is unset. If dir is NULL and envvar is unset (but
85 * file is not NULL) then this is an error. Returns true if helper is
86 * set, either previously or this time. */
87 bool ctdb_set_helper(const char *type
, char *helper
, size_t size
,
89 const char *dir
, const char *file
)
94 if (helper
[0] != '\0') {
101 if (strlen(t
) >= size
) {
103 ("Unable to set %s - path too long\n", type
));
107 strncpy(helper
, t
, size
);
108 } else if (file
== NULL
) {
110 } else if (dir
== NULL
) {
112 ("Unable to set %s - dir is NULL\n", type
));
117 ret
= snprintf(helper
, size
, "%s/%s", dir
, file
);
118 if (ret
< 0 || (size_t)ret
>= size
) {
120 ("Unable to set %s - path too long\n", type
));
125 if (stat(helper
, &st
) != 0) {
127 ("Unable to set %s \"%s\" - %s\n",
128 type
, helper
, strerror(errno
)));
131 if (!(st
.st_mode
& S_IXUSR
)) {
133 ("Unable to set %s \"%s\" - not executable\n",
139 ("Set %s to \"%s\"\n", type
, helper
));
144 check if two addresses are the same
146 bool ctdb_same_address(ctdb_sock_addr
*a1
, ctdb_sock_addr
*a2
)
148 return ctdb_same_ip(a1
, a2
) &&
149 ctdb_addr_to_port(a1
) == ctdb_addr_to_port(a2
);
154 hash function for mapping data to a VNN - taken from tdb
156 uint32_t ctdb_hash(const TDB_DATA
*key
)
158 return tdb_jenkins_hash(discard_const(key
));
162 static uint32_t ctdb_marshall_record_size(TDB_DATA key
,
163 struct ctdb_ltdb_header
*header
,
166 return offsetof(struct ctdb_rec_data_old
, data
) + key
.dsize
+
167 data
.dsize
+ (header
? sizeof(*header
) : 0);
170 static void ctdb_marshall_record_copy(struct ctdb_rec_data_old
*rec
,
173 struct ctdb_ltdb_header
*header
,
179 rec
->length
= length
;
181 rec
->keylen
= key
.dsize
;
182 memcpy(&rec
->data
[0], key
.dptr
, key
.dsize
);
186 rec
->datalen
= data
.dsize
+ sizeof(*header
);
187 memcpy(&rec
->data
[offset
], header
, sizeof(*header
));
188 offset
+= sizeof(*header
);
190 rec
->datalen
= data
.dsize
;
192 memcpy(&rec
->data
[offset
], data
.dptr
, data
.dsize
);
196 form a ctdb_rec_data record from a key/data pair
198 note that header may be NULL. If not NULL then it is included in the data portion
201 struct ctdb_rec_data_old
*ctdb_marshall_record(TALLOC_CTX
*mem_ctx
,
204 struct ctdb_ltdb_header
*header
,
208 struct ctdb_rec_data_old
*d
;
210 length
= ctdb_marshall_record_size(key
, header
, data
);
212 d
= (struct ctdb_rec_data_old
*)talloc_size(mem_ctx
, length
);
217 ctdb_marshall_record_copy(d
, reqid
, key
, header
, data
, length
);
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
,
228 struct ctdb_ltdb_header
*header
,
231 struct ctdb_rec_data_old
*r
;
232 struct ctdb_marshall_buffer
*m2
;
233 uint32_t length
, offset
;
235 length
= ctdb_marshall_record_size(key
, header
, data
);
238 offset
= offsetof(struct ctdb_marshall_buffer
, data
);
239 m2
= talloc_zero_size(mem_ctx
, offset
+ length
);
241 offset
= talloc_get_size(m
);
242 m2
= talloc_realloc_size(mem_ctx
, m
, offset
+ length
);
253 r
= (struct ctdb_rec_data_old
*)((uint8_t *)m2
+ offset
);
254 ctdb_marshall_record_copy(r
, reqid
, key
, header
, data
, length
);
260 /* we've finished marshalling, return a data blob with the marshalled records */
261 TDB_DATA
ctdb_marshall_finish(struct ctdb_marshall_buffer
*m
)
264 data
.dptr
= (uint8_t *)m
;
265 data
.dsize
= talloc_get_size(m
);
270 loop over a marshalling buffer
272 - pass r==NULL to start
273 - loop the number of times indicated by m->count
275 struct ctdb_rec_data_old
*ctdb_marshall_loop_next(
276 struct ctdb_marshall_buffer
*m
,
277 struct ctdb_rec_data_old
*r
,
279 struct ctdb_ltdb_header
*header
,
280 TDB_DATA
*key
, TDB_DATA
*data
)
283 r
= (struct ctdb_rec_data_old
*)&m
->data
[0];
285 r
= (struct ctdb_rec_data_old
*)(r
->length
+ (uint8_t *)r
);
293 key
->dptr
= &r
->data
[0];
294 key
->dsize
= r
->keylen
;
297 data
->dptr
= &r
->data
[r
->keylen
];
298 data
->dsize
= r
->datalen
;
299 if (header
!= NULL
) {
300 data
->dptr
+= sizeof(*header
);
301 data
->dsize
-= sizeof(*header
);
305 if (header
!= NULL
) {
306 if (r
->datalen
< sizeof(*header
)) {
309 memcpy(header
, &r
->data
[r
->keylen
], sizeof(*header
));
316 This is used to canonicalize a ctdb_sock_addr structure.
318 void ctdb_canonicalize_ip(const ctdb_sock_addr
*ip
, ctdb_sock_addr
*cip
)
322 if (ip
->sa
.sa_family
== AF_INET6
) {
323 const char prefix
[12] = { 0,0,0,0,0,0,0,0,0,0,0xff,0xff };
324 if (memcmp(&ip
->ip6
.sin6_addr
, prefix
, sizeof(prefix
)) == 0) {
325 /* Copy IPv4-mapped IPv6 addresses as IPv4 */
326 cip
->ip
.sin_family
= AF_INET
;
327 #ifdef HAVE_SOCK_SIN_LEN
328 cip
->ip
.sin_len
= sizeof(ctdb_sock_addr
);
330 cip
->ip
.sin_port
= ip
->ip6
.sin6_port
;
331 memcpy(&cip
->ip
.sin_addr
,
332 &ip
->ip6
.sin6_addr
.s6_addr
[12],
333 sizeof(cip
->ip
.sin_addr
));
335 cip
->ip6
.sin6_family
= AF_INET6
;
336 #ifdef HAVE_SOCK_SIN6_LEN
337 cip
->ip6
.sin6_len
= sizeof(ctdb_sock_addr
);
339 cip
->ip6
.sin6_port
= ip
->ip6
.sin6_port
;
340 memcpy(&cip
->ip6
.sin6_addr
,
342 sizeof(cip
->ip6
.sin6_addr
));
348 if (ip
->sa
.sa_family
== AF_INET
) {
349 cip
->ip
.sin_family
= AF_INET
;
350 #ifdef HAVE_SOCK_SIN_LEN
351 cip
->ip
.sin_len
= sizeof(ctdb_sock_addr
);
353 cip
->ip
.sin_port
= ip
->ip
.sin_port
;
354 memcpy(&cip
->ip
.sin_addr
,
356 sizeof(ip
->ip
.sin_addr
));
362 void ctdb_canonicalize_ip_inplace(ctdb_sock_addr
*ip
)
365 ctdb_canonicalize_ip(ip
, &tmp
);
366 memcpy(ip
, &tmp
, sizeof(tmp
));
369 bool ctdb_same_ip(const ctdb_sock_addr
*tip1
, const ctdb_sock_addr
*tip2
)
371 ctdb_sock_addr ip1
, ip2
;
373 ctdb_canonicalize_ip(tip1
, &ip1
);
374 ctdb_canonicalize_ip(tip2
, &ip2
);
376 if (ip1
.sa
.sa_family
!= ip2
.sa
.sa_family
) {
380 switch (ip1
.sa
.sa_family
) {
382 return ip1
.ip
.sin_addr
.s_addr
== ip2
.ip
.sin_addr
.s_addr
;
384 return !memcmp(&ip1
.ip6
.sin6_addr
.s6_addr
[0],
385 &ip2
.ip6
.sin6_addr
.s6_addr
[0],
388 DEBUG(DEBUG_ERR
, (__location__
" CRITICAL Can not compare sockaddr structures of type %u\n", ip1
.sa
.sa_family
));
396 compare two ctdb_sock_addr structures
398 bool ctdb_same_sockaddr(const ctdb_sock_addr
*ip1
, const ctdb_sock_addr
*ip2
)
400 return ctdb_same_ip(ip1
, ip2
) && ip1
->ip
.sin_port
== ip2
->ip
.sin_port
;
403 char *ctdb_addr_to_str(ctdb_sock_addr
*addr
)
405 static char cip
[128] = "";
407 switch (addr
->sa
.sa_family
) {
409 inet_ntop(addr
->ip
.sin_family
, &addr
->ip
.sin_addr
, cip
, sizeof(cip
));
412 inet_ntop(addr
->ip6
.sin6_family
, &addr
->ip6
.sin6_addr
, cip
, sizeof(cip
));
415 DEBUG(DEBUG_ERR
, (__location__
" ERROR, unknown family %u\n", addr
->sa
.sa_family
));
421 unsigned ctdb_addr_to_port(ctdb_sock_addr
*addr
)
423 switch (addr
->sa
.sa_family
) {
425 return ntohs(addr
->ip
.sin_port
);
428 return ntohs(addr
->ip6
.sin6_port
);
431 DEBUG(DEBUG_ERR
, (__location__
" ERROR, unknown family %u\n", addr
->sa
.sa_family
));
437 struct ctdb_node_map_old
*
438 ctdb_node_list_to_map(struct ctdb_node
**nodes
, uint32_t num_nodes
,
443 struct ctdb_node_map_old
*node_map
;
445 size
= offsetof(struct ctdb_node_map_old
, nodes
) +
446 num_nodes
* sizeof(struct ctdb_node_and_flags
);
447 node_map
= (struct ctdb_node_map_old
*)talloc_zero_size(mem_ctx
, size
);
448 if (node_map
== NULL
) {
450 (__location__
" Failed to allocate nodemap array\n"));
454 node_map
->num
= num_nodes
;
455 for (i
=0; i
<num_nodes
; i
++) {
456 node_map
->nodes
[i
].addr
= nodes
[i
]->address
;
457 node_map
->nodes
[i
].pnn
= nodes
[i
]->pnn
;
458 node_map
->nodes
[i
].flags
= nodes
[i
]->flags
;
464 /* Runstate handling */
465 void ctdb_set_runstate(struct ctdb_context
*ctdb
, enum ctdb_runstate runstate
)
467 DEBUG(DEBUG_NOTICE
,("Set runstate to %s (%d)\n",
468 ctdb_runstate_to_string(runstate
), runstate
));
470 if (runstate
<= ctdb
->runstate
) {
471 ctdb_fatal(ctdb
, "runstate must always increase");
474 ctdb
->runstate
= runstate
;
477 /* Convert arbitrary data to 4-byte boundary padded uint32 array */
478 uint32_t *ctdb_key_to_idkey(TALLOC_CTX
*mem_ctx
, TDB_DATA key
)
480 uint32_t idkey_size
, *k
;
482 idkey_size
= 1 + (key
.dsize
+ sizeof(uint32_t)-1) / sizeof(uint32_t);
484 k
= talloc_zero_array(mem_ctx
, uint32_t, idkey_size
);
490 memcpy(&k
[1], key
.dptr
, key
.dsize
);