4 Copyright (C) Andrew Tridgell 2008
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/filesys.h"
22 #include "system/network.h"
23 #include "system/syslog.h"
24 #include "system/time.h"
29 #include "lib/util/dlinklist.h"
30 #include "lib/util/debug.h"
32 #include "ctdb_private.h"
33 #include "ctdb_client.h"
35 #include "common/system.h"
36 #include "common/common.h"
37 #include "common/logging.h"
39 const char *debug_extra
= "";
41 struct ctdb_log_backend
{
42 struct ctdb_log_backend
*prev
, *next
;
44 ctdb_log_setup_fn_t setup
;
47 struct ctdb_log_state
{
52 void (*logfn
)(const char *, uint16_t, void *);
54 struct ctdb_log_backend
*backends
;
57 /* Used by ctdb_set_child_logging() */
58 static struct ctdb_log_state
*log_state
;
60 void ctdb_log_register_backend(const char *prefix
, ctdb_log_setup_fn_t setup
)
62 struct ctdb_log_backend
*b
;
64 b
= talloc_zero(log_state
, struct ctdb_log_backend
);
66 printf("Failed to register backend \"%s\" - no memory\n",
74 DLIST_ADD_END(log_state
->backends
, b
);
78 /* Initialise logging */
79 bool ctdb_logging_init(TALLOC_CTX
*mem_ctx
, const char *logging
)
81 struct ctdb_log_backend
*b
;
84 log_state
= talloc_zero(mem_ctx
, struct ctdb_log_state
);
85 if (log_state
== NULL
) {
86 printf("talloc_zero failed\n");
91 ctdb_log_init_syslog();
93 for (b
= log_state
->backends
; b
!= NULL
; b
= b
->next
) {
94 size_t l
= strlen(b
->prefix
);
95 /* Exact match with prefix or prefix followed by ':' */
96 if (strncmp(b
->prefix
, logging
, l
) == 0 &&
97 (logging
[l
] == '\0' || logging
[l
] == ':')) {
98 ret
= b
->setup(mem_ctx
, logging
, "ctdbd");
102 printf("Log init for \"%s\" failed with \"%s\"\n",
103 logging
, strerror(ret
));
108 printf("Unable to find log backend for \"%s\"\n", logging
);
112 /* Note that do_debug always uses the global log state. */
113 static void write_to_log(struct ctdb_log_state
*log
,
114 const char *buf
, unsigned int len
)
116 if (script_log_level
<= DEBUGLEVEL
) {
117 if (log
!= NULL
&& log
->prefix
!= NULL
) {
118 dbgtext("%s: %*.*s\n", log
->prefix
, len
, len
, buf
);
120 dbgtext("%*.*s\n", len
, len
, buf
);
122 /* log it in the eventsystem as well */
123 if (log
&& log
->logfn
) {
124 log
->logfn(log
->buf
, len
, log
->logfn_private
);
130 called when log data comes in from a child process
132 static void ctdb_child_log_handler(struct tevent_context
*ev
,
133 struct tevent_fd
*fde
,
134 uint16_t flags
, void *private)
136 struct ctdb_log_state
*log
= talloc_get_type(private, struct ctdb_log_state
);
140 if (!(flags
& TEVENT_FD_READ
)) {
144 n
= sys_read(log
->pfd
, &log
->buf
[log
->buf_used
],
145 sizeof(log
->buf
) - log
->buf_used
);
149 if (log
!= log_state
) {
155 while (log
->buf_used
> 0 &&
156 (p
= memchr(log
->buf
, '\n', log
->buf_used
)) != NULL
) {
157 int n1
= (p
- log
->buf
)+1;
159 /* swallow \r from child processes */
160 if (n2
> 0 && log
->buf
[n2
-1] == '\r') {
163 write_to_log(log
, log
->buf
, n2
);
164 memmove(log
->buf
, p
+1, sizeof(log
->buf
) - n1
);
168 /* the buffer could have completely filled - unfortunately we have
169 no choice but to dump it out straight away */
170 if (log
->buf_used
== sizeof(log
->buf
)) {
171 write_to_log(log
, log
->buf
, log
->buf_used
);
176 static int log_context_destructor(struct ctdb_log_state
*log
)
178 /* Flush buffer in case it wasn't \n-terminated. */
179 if (log
->buf_used
> 0) {
180 write_to_log(log
, log
->buf
, log
->buf_used
);
186 * vfork + exec, redirecting child output to logging and specified callback.
188 struct ctdb_log_state
*ctdb_vfork_with_logging(TALLOC_CTX
*mem_ctx
,
189 struct ctdb_context
*ctdb
,
190 const char *log_prefix
,
193 const char **helper_argv
,
194 void (*logfn
)(const char *, uint16_t, void *),
195 void *logfn_private
, pid_t
*pid
)
198 struct ctdb_log_state
*log
;
199 struct tevent_fd
*fde
;
203 log
= talloc_zero(mem_ctx
, struct ctdb_log_state
);
204 CTDB_NO_MEMORY_NULL(ctdb
, log
);
206 log
->prefix
= log_prefix
;
208 log
->logfn_private
= logfn_private
;
211 DEBUG(DEBUG_ERR
, (__location__
" Failed to setup pipe for child logging\n"));
215 argv
= talloc_array(mem_ctx
, char *, helper_argc
+ 2);
217 DEBUG(DEBUG_ERR
, (__location__
"Failed to allocate memory for helper\n"));
220 argv
[0] = discard_const(helper
);
221 argv
[1] = talloc_asprintf(argv
, "%d", p
[1]);
222 if (argv
[1] == NULL
) {
223 DEBUG(DEBUG_ERR
, (__location__
"Failed to allocate memory for helper\n"));
228 for (i
=0; i
<helper_argc
; i
++) {
229 argv
[i
+2] = discard_const(helper_argv
[i
]);
240 DEBUG(DEBUG_ERR
, (__location__
"vfork failed for helper process\n"));
245 ctdb_track_child(ctdb
, *pid
);
248 set_close_on_exec(log
->pfd
);
249 talloc_set_destructor(log
, log_context_destructor
);
250 fde
= tevent_add_fd(ctdb
->ev
, log
, log
->pfd
, TEVENT_FD_READ
,
251 ctdb_child_log_handler
, log
);
252 tevent_fd_set_auto_close(fde
);
263 setup for logging of child process stdout
265 int ctdb_set_child_logging(struct ctdb_context
*ctdb
)
268 int old_stdout
, old_stderr
;
269 struct tevent_fd
*fde
;
271 if (log_state
->fd
== STDOUT_FILENO
) {
272 /* not needed for stdout logging */
276 /* setup a pipe to catch IO from subprocesses */
278 DEBUG(DEBUG_ERR
,(__location__
" Failed to setup for child logging pipe\n"));
282 /* We'll fail if stderr/stdout not already open; it's simpler. */
283 old_stdout
= dup(STDOUT_FILENO
);
284 if (old_stdout
< 0) {
285 DEBUG(DEBUG_ERR
, ("Failed to dup stdout for child logging\n"));
288 old_stderr
= dup(STDERR_FILENO
);
289 if (old_stderr
< 0) {
290 DEBUG(DEBUG_ERR
, ("Failed to dup stderr for child logging\n"));
294 if (dup2(p
[1], STDOUT_FILENO
) < 0 || dup2(p
[1], STDERR_FILENO
) < 0) {
295 int saved_errno
= errno
;
296 dup2(old_stdout
, STDOUT_FILENO
);
297 dup2(old_stderr
, STDERR_FILENO
);
304 printf(__location__
" dup2 failed: %s\n",
312 fde
= tevent_add_fd(ctdb
->ev
, log_state
, p
[0], TEVENT_FD_READ
,
313 ctdb_child_log_handler
, log_state
);
314 tevent_fd_set_auto_close(fde
);
316 log_state
->pfd
= p
[0];
318 DEBUG(DEBUG_DEBUG
, (__location__
" Created PIPE FD:%d for logging\n", p
[0]));
325 * set up a log handler to catch logging from TEVENT
327 static void ctdb_tevent_logging(void *private_data
,
328 enum tevent_debug_level level
,
330 va_list ap
) PRINTF_ATTRIBUTE(3, 0);
331 static void ctdb_tevent_logging(void *private_data
,
332 enum tevent_debug_level level
,
336 enum debug_level lvl
= DEBUG_CRIT
;
339 case TEVENT_DEBUG_FATAL
:
342 case TEVENT_DEBUG_ERROR
:
345 case TEVENT_DEBUG_WARNING
:
348 case TEVENT_DEBUG_TRACE
:
353 if (lvl
<= DEBUGLEVEL
) {
358 int ctdb_init_tevent_logging(struct ctdb_context
*ctdb
)
362 ret
= tevent_set_debug(ctdb
->ev
,