2 monitoring links to all other nodes to detect dead nodes
5 Copyright (C) Ronnie Sahlberg 2007
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "system/filesys.h"
23 #include "system/wait.h"
24 #include "../include/ctdb_private.h"
26 struct ctdb_monitor_state
{
27 uint32_t monitoring_mode
;
28 TALLOC_CTX
*monitor_context
;
29 uint32_t next_interval
;
32 static void ctdb_check_health(struct event_context
*ev
, struct timed_event
*te
,
33 struct timeval t
, void *private_data
);
36 setup the notification script
38 int ctdb_set_notification_script(struct ctdb_context
*ctdb
, const char *script
)
40 ctdb
->notification_script
= talloc_strdup(ctdb
, script
);
41 CTDB_NO_MEMORY(ctdb
, ctdb
->notification_script
);
45 static int ctdb_run_notification_script_child(struct ctdb_context
*ctdb
, const char *event
)
51 if (stat(ctdb
->notification_script
, &st
) != 0) {
52 DEBUG(DEBUG_ERR
,("Could not stat notification script %s. Can not send notifications.\n", ctdb
->notification_script
));
55 if (!(st
.st_mode
& S_IXUSR
)) {
56 DEBUG(DEBUG_ERR
,("Notification script %s is not executable.\n", ctdb
->notification_script
));
60 cmd
= talloc_asprintf(ctdb
, "%s %s\n", ctdb
->notification_script
, event
);
61 CTDB_NO_MEMORY(ctdb
, cmd
);
64 /* if the system() call was successful, translate ret into the
65 return code from the command
68 ret
= WEXITSTATUS(ret
);
71 DEBUG(DEBUG_ERR
,("Notification script \"%s\" failed with error %d\n", cmd
, ret
));
77 void ctdb_run_notification_script(struct ctdb_context
*ctdb
, const char *event
)
81 if (ctdb
->notification_script
== NULL
) {
85 child
= ctdb_fork(ctdb
);
86 if (child
== (pid_t
)-1) {
87 DEBUG(DEBUG_ERR
,("Failed to fork() a notification child process\n"));
93 ctdb_set_process_name("ctdb_notification");
94 debug_extra
= talloc_asprintf(NULL
, "notification-%s:", event
);
95 ret
= ctdb_run_notification_script_child(ctdb
, event
);
97 DEBUG(DEBUG_ERR
,(__location__
" Notification script failed\n"));
106 called when a health monitoring event script finishes
108 static void ctdb_health_callback(struct ctdb_context
*ctdb
, int status
, void *p
)
110 struct ctdb_node
*node
= ctdb
->nodes
[ctdb
->pnn
];
112 struct ctdb_node_flag_change c
;
113 uint32_t next_interval
;
116 struct srvid_request rd
;
117 const char *state_str
= NULL
;
120 c
.old_flags
= node
->flags
;
123 rd
.srvid
= CTDB_SRVID_TAKEOVER_RUN_RESPONSE
;
125 rddata
.dptr
= (uint8_t *)&rd
;
126 rddata
.dsize
= sizeof(rd
);
128 if (status
== -ECANCELED
) {
129 DEBUG(DEBUG_ERR
,("Monitoring event was cancelled\n"));
130 goto after_change_status
;
133 if (status
== -ETIME
) {
134 ctdb
->event_script_timeouts
++;
136 if (ctdb
->event_script_timeouts
>= ctdb
->tunable
.script_timeout_count
) {
137 DEBUG(DEBUG_ERR
, ("Maximum timeout count %u reached for eventscript. Making node unhealthy\n", ctdb
->tunable
.script_timeout_count
));
139 /* We pretend this is OK. */
140 goto after_change_status
;
144 if (status
!= 0 && !(node
->flags
& NODE_FLAGS_UNHEALTHY
)) {
145 DEBUG(DEBUG_NOTICE
,("monitor event failed - disabling node\n"));
146 node
->flags
|= NODE_FLAGS_UNHEALTHY
;
147 ctdb
->monitor
->next_interval
= 5;
149 ctdb_run_notification_script(ctdb
, "unhealthy");
150 } else if (status
== 0 && (node
->flags
& NODE_FLAGS_UNHEALTHY
)) {
151 DEBUG(DEBUG_NOTICE
,("monitor event OK - node re-enabled\n"));
152 node
->flags
&= ~NODE_FLAGS_UNHEALTHY
;
153 ctdb
->monitor
->next_interval
= 5;
155 ctdb_run_notification_script(ctdb
, "healthy");
159 next_interval
= ctdb
->monitor
->next_interval
;
161 ctdb
->monitor
->next_interval
*= 2;
162 if (ctdb
->monitor
->next_interval
> ctdb
->tunable
.monitor_interval
) {
163 ctdb
->monitor
->next_interval
= ctdb
->tunable
.monitor_interval
;
166 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
167 timeval_current_ofs(next_interval
, 0),
168 ctdb_check_health
, ctdb
);
170 if (c
.old_flags
== node
->flags
) {
174 c
.new_flags
= node
->flags
;
176 data
.dptr
= (uint8_t *)&c
;
177 data
.dsize
= sizeof(c
);
179 /* ask the recovery daemon to push these changes out to all nodes */
180 ctdb_daemon_send_message(ctdb
, ctdb
->pnn
,
181 CTDB_SRVID_PUSH_NODE_FLAGS
, data
);
183 if (c
.new_flags
& NODE_FLAGS_UNHEALTHY
) {
184 state_str
= "UNHEALTHY";
186 state_str
= "HEALTHY";
189 /* ask the recmaster to reallocate all addresses */
190 DEBUG(DEBUG_ERR
,("Node became %s. Ask recovery master %u to perform ip reallocation\n",
191 state_str
, ctdb
->recovery_master
));
192 ret
= ctdb_daemon_send_message(ctdb
, ctdb
->recovery_master
, CTDB_SRVID_TAKEOVER_RUN
, rddata
);
194 DEBUG(DEBUG_ERR
,(__location__
" Failed to send ip takeover run request message to %u\n", ctdb
->recovery_master
));
199 static void ctdb_run_startup(struct event_context
*ev
, struct timed_event
*te
,
200 struct timeval t
, void *private_data
);
202 called when the startup event script finishes
204 static void ctdb_startup_callback(struct ctdb_context
*ctdb
, int status
, void *p
)
207 DEBUG(DEBUG_ERR
,("startup event failed\n"));
208 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
209 timeval_current_ofs(5, 0),
210 ctdb_run_startup
, ctdb
);
214 DEBUG(DEBUG_NOTICE
,("startup event OK - enabling monitoring\n"));
215 ctdb_set_runstate(ctdb
, CTDB_RUNSTATE_RUNNING
);
216 ctdb
->monitor
->next_interval
= 2;
217 ctdb_run_notification_script(ctdb
, "startup");
219 ctdb
->monitor
->monitoring_mode
= CTDB_MONITORING_ACTIVE
;
221 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
222 timeval_current_ofs(ctdb
->monitor
->next_interval
, 0),
223 ctdb_check_health
, ctdb
);
226 static void ctdb_run_startup(struct event_context
*ev
, struct timed_event
*te
,
227 struct timeval t
, void *private_data
)
229 struct ctdb_context
*ctdb
= talloc_get_type(private_data
,
230 struct ctdb_context
);
233 /* This is necessary to avoid the "startup" event colliding
234 * with the "ipreallocated" event from the takeover run
235 * following the first recovery. We might as well serialise
236 * these things if we can.
238 if (ctdb
->runstate
< CTDB_RUNSTATE_STARTUP
) {
240 ("Not yet in startup runstate. Wait one more second\n"));
241 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
242 timeval_current_ofs(1, 0),
243 ctdb_run_startup
, ctdb
);
247 DEBUG(DEBUG_NOTICE
,("Running the \"startup\" event.\n"));
248 ret
= ctdb_event_script_callback(ctdb
,
249 ctdb
->monitor
->monitor_context
,
250 ctdb_startup_callback
,
251 ctdb
, CTDB_EVENT_STARTUP
, "%s", "");
254 DEBUG(DEBUG_ERR
,("Unable to launch startup event script\n"));
255 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
256 timeval_current_ofs(5, 0),
257 ctdb_run_startup
, ctdb
);
262 wait until we have finished initial recoveries before we start the
265 static void ctdb_wait_until_recovered(struct event_context
*ev
, struct timed_event
*te
,
266 struct timeval t
, void *private_data
)
268 struct ctdb_context
*ctdb
= talloc_get_type(private_data
, struct ctdb_context
);
270 static int count
= 0;
274 if (count
< 60 || count
%600 == 0) {
275 DEBUG(DEBUG_NOTICE
,("CTDB_WAIT_UNTIL_RECOVERED\n"));
276 if (ctdb
->nodes
[ctdb
->pnn
]->flags
& NODE_FLAGS_STOPPED
) {
277 DEBUG(DEBUG_NOTICE
,("Node is STOPPED. Node will NOT recover.\n"));
281 if (ctdb
->vnn_map
->generation
== INVALID_GENERATION
) {
282 ctdb
->db_persistent_startup_generation
= INVALID_GENERATION
;
284 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
285 timeval_current_ofs(1, 0),
286 ctdb_wait_until_recovered
, ctdb
);
290 if (ctdb
->recovery_mode
!= CTDB_RECOVERY_NORMAL
) {
291 ctdb
->db_persistent_startup_generation
= INVALID_GENERATION
;
293 DEBUG(DEBUG_NOTICE
,(__location__
" in recovery. Wait one more second\n"));
294 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
295 timeval_current_ofs(1, 0),
296 ctdb_wait_until_recovered
, ctdb
);
301 if (!fast_start
&& timeval_elapsed(&ctdb
->last_recovery_finished
) < (ctdb
->tunable
.rerecovery_timeout
+ 3)) {
302 ctdb
->db_persistent_startup_generation
= INVALID_GENERATION
;
304 DEBUG(DEBUG_NOTICE
,(__location__
" wait for pending recoveries to end. Wait one more second.\n"));
306 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
307 timeval_current_ofs(1, 0),
308 ctdb_wait_until_recovered
, ctdb
);
312 if (ctdb
->vnn_map
->generation
== ctdb
->db_persistent_startup_generation
) {
313 DEBUG(DEBUG_INFO
,(__location__
" skip ctdb_recheck_persistent_health() "
314 "until the next recovery\n"));
315 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
316 timeval_current_ofs(1, 0),
317 ctdb_wait_until_recovered
, ctdb
);
321 ctdb
->db_persistent_startup_generation
= ctdb
->vnn_map
->generation
;
322 ret
= ctdb_recheck_persistent_health(ctdb
);
324 ctdb
->db_persistent_check_errors
++;
325 if (ctdb
->db_persistent_check_errors
< ctdb
->max_persistent_check_errors
) {
326 DEBUG(ctdb
->db_persistent_check_errors
==1?DEBUG_ERR
:DEBUG_WARNING
,
327 (__location__
"ctdb_recheck_persistent_health() "
328 "failed (%llu of %llu times) - retry later\n",
329 (unsigned long long)ctdb
->db_persistent_check_errors
,
330 (unsigned long long)ctdb
->max_persistent_check_errors
));
331 event_add_timed(ctdb
->ev
,
332 ctdb
->monitor
->monitor_context
,
333 timeval_current_ofs(1, 0),
334 ctdb_wait_until_recovered
, ctdb
);
337 DEBUG(DEBUG_ALERT
,(__location__
338 "ctdb_recheck_persistent_health() failed (%llu times) - prepare shutdown\n",
339 (unsigned long long)ctdb
->db_persistent_check_errors
));
340 ctdb_shutdown_sequence(ctdb
, 11);
341 /* In case above returns due to duplicate shutdown */
344 ctdb
->db_persistent_check_errors
= 0;
346 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
347 timeval_current(), ctdb_run_startup
, ctdb
);
352 see if the event scripts think we are healthy
354 static void ctdb_check_health(struct event_context
*ev
, struct timed_event
*te
,
355 struct timeval t
, void *private_data
)
357 struct ctdb_context
*ctdb
= talloc_get_type(private_data
, struct ctdb_context
);
358 bool skip_monitoring
= false;
361 if (ctdb
->recovery_mode
!= CTDB_RECOVERY_NORMAL
||
362 ctdb
->monitor
->monitoring_mode
== CTDB_MONITORING_DISABLED
) {
363 skip_monitoring
= true;
366 for (i
=1; i
<=NUM_DB_PRIORITIES
; i
++) {
367 if (ctdb
->freeze_handles
[i
] != NULL
) {
369 ("Skip monitoring since databases are frozen\n"));
370 skip_monitoring
= true;
376 if (skip_monitoring
) {
377 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
378 timeval_current_ofs(ctdb
->monitor
->next_interval
, 0),
379 ctdb_check_health
, ctdb
);
383 ret
= ctdb_event_script_callback(ctdb
,
384 ctdb
->monitor
->monitor_context
,
385 ctdb_health_callback
,
386 ctdb
, CTDB_EVENT_MONITOR
, "%s", "");
388 DEBUG(DEBUG_ERR
,("Unable to launch monitor event script\n"));
389 ctdb
->monitor
->next_interval
= 5;
390 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
391 timeval_current_ofs(5, 0),
392 ctdb_check_health
, ctdb
);
397 (Temporaily) Disabling monitoring will stop the monitor event scripts
398 from running but node health checks will still occur
400 void ctdb_disable_monitoring(struct ctdb_context
*ctdb
)
402 ctdb
->monitor
->monitoring_mode
= CTDB_MONITORING_DISABLED
;
403 DEBUG(DEBUG_INFO
,("Monitoring has been disabled\n"));
407 Re-enable running monitor events after they have been disabled
409 void ctdb_enable_monitoring(struct ctdb_context
*ctdb
)
411 ctdb
->monitor
->monitoring_mode
= CTDB_MONITORING_ACTIVE
;
412 ctdb
->monitor
->next_interval
= 5;
413 DEBUG(DEBUG_INFO
,("Monitoring has been enabled\n"));
416 /* stop any monitoring
417 this should only be done when shutting down the daemon
419 void ctdb_stop_monitoring(struct ctdb_context
*ctdb
)
421 talloc_free(ctdb
->monitor
->monitor_context
);
422 ctdb
->monitor
->monitor_context
= NULL
;
424 ctdb
->monitor
->monitoring_mode
= CTDB_MONITORING_DISABLED
;
425 ctdb
->monitor
->next_interval
= 5;
426 DEBUG(DEBUG_NOTICE
,("Monitoring has been stopped\n"));
430 start watching for nodes that might be dead
432 void ctdb_wait_for_first_recovery(struct ctdb_context
*ctdb
)
434 ctdb_set_runstate(ctdb
, CTDB_RUNSTATE_FIRST_RECOVERY
);
436 ctdb
->monitor
= talloc(ctdb
, struct ctdb_monitor_state
);
437 CTDB_NO_MEMORY_FATAL(ctdb
, ctdb
->monitor
);
439 ctdb
->monitor
->monitor_context
= talloc_new(ctdb
->monitor
);
440 CTDB_NO_MEMORY_FATAL(ctdb
, ctdb
->monitor
->monitor_context
);
442 event_add_timed(ctdb
->ev
, ctdb
->monitor
->monitor_context
,
443 timeval_current_ofs(1, 0),
444 ctdb_wait_until_recovered
, ctdb
);
449 modify flags on a node
451 int32_t ctdb_control_modflags(struct ctdb_context
*ctdb
, TDB_DATA indata
)
453 struct ctdb_node_flag_change
*c
= (struct ctdb_node_flag_change
*)indata
.dptr
;
454 struct ctdb_node
*node
;
457 if (c
->pnn
>= ctdb
->num_nodes
) {
458 DEBUG(DEBUG_ERR
,(__location__
" Node %d is invalid, num_nodes :%d\n", c
->pnn
, ctdb
->num_nodes
));
462 node
= ctdb
->nodes
[c
->pnn
];
463 old_flags
= node
->flags
;
464 if (c
->pnn
!= ctdb
->pnn
) {
465 c
->old_flags
= node
->flags
;
467 node
->flags
= c
->new_flags
& ~NODE_FLAGS_DISCONNECTED
;
468 node
->flags
|= (c
->old_flags
& NODE_FLAGS_DISCONNECTED
);
470 /* we dont let other nodes modify our STOPPED status */
471 if (c
->pnn
== ctdb
->pnn
) {
472 node
->flags
&= ~NODE_FLAGS_STOPPED
;
473 if (old_flags
& NODE_FLAGS_STOPPED
) {
474 node
->flags
|= NODE_FLAGS_STOPPED
;
478 /* we dont let other nodes modify our BANNED status */
479 if (c
->pnn
== ctdb
->pnn
) {
480 node
->flags
&= ~NODE_FLAGS_BANNED
;
481 if (old_flags
& NODE_FLAGS_BANNED
) {
482 node
->flags
|= NODE_FLAGS_BANNED
;
486 if (node
->flags
== c
->old_flags
) {
487 DEBUG(DEBUG_INFO
, ("Control modflags on node %u - Unchanged - flags 0x%x\n", c
->pnn
, node
->flags
));
491 DEBUG(DEBUG_INFO
, ("Control modflags on node %u - flags now 0x%x\n", c
->pnn
, node
->flags
));
493 if (node
->flags
== 0 && ctdb
->runstate
<= CTDB_RUNSTATE_STARTUP
) {
494 DEBUG(DEBUG_ERR
, (__location__
" Node %u became healthy - force recovery for startup\n",
496 ctdb
->recovery_mode
= CTDB_RECOVERY_ACTIVE
;
499 /* tell the recovery daemon something has changed */
500 ctdb_daemon_send_message(ctdb
, ctdb
->pnn
,
501 CTDB_SRVID_SET_NODE_FLAGS
, indata
);
503 /* if we have become banned, we should go into recovery mode */
504 if ((node
->flags
& NODE_FLAGS_BANNED
) && !(c
->old_flags
& NODE_FLAGS_BANNED
) && (node
->pnn
== ctdb
->pnn
)) {
505 ctdb_local_node_got_banned(ctdb
);
512 return the monitoring mode
514 int32_t ctdb_monitoring_mode(struct ctdb_context
*ctdb
)
516 if (ctdb
->monitor
== NULL
) {
517 return CTDB_MONITORING_DISABLED
;
519 return ctdb
->monitor
->monitoring_mode
;
523 * Check if monitoring has been stopped
525 bool ctdb_stopped_monitoring(struct ctdb_context
*ctdb
)
527 return (ctdb
->monitor
->monitor_context
== NULL
? true : false);