This source file includes following definitions.
- subdaemon_path
- pcmkd_cluster_connected
- check_next_subdaemon
- escalate_shutdown
- pcmk_child_exit
- pcmk_process_exit
- pcmk_shutdown_worker
- start_child
- child_liveness
- find_and_track_existing_processes
- init_children_processes
- pcmk_shutdown
- restart_cluster_subdaemons
- stop_child
1
2
3
4
5
6
7
8
9
10 #include <crm_internal.h>
11 #include "pacemakerd.h"
12
13 #if SUPPORT_COROSYNC
14 #include "pcmkd_corosync.h"
15 #endif
16
17 #include <errno.h>
18 #include <grp.h>
19 #include <signal.h>
20 #include <stdbool.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <sys/types.h>
25 #include <time.h>
26 #include <unistd.h>
27
28 #include <crm/cluster.h>
29 #include <crm/common/xml.h>
30
31 enum child_daemon_flags {
32 child_none = 0,
33 child_respawn = 1 << 0,
34 child_needs_cluster = 1 << 1,
35 child_needs_retry = 1 << 2,
36 child_active_before_startup = 1 << 3,
37 };
38
39 typedef struct pcmk_child_s {
40 enum pcmk_ipc_server server;
41 pid_t pid;
42 int respawn_count;
43 const char *uid;
44 int check_count;
45 uint32_t flags;
46 } pcmk_child_t;
47
48 #define PCMK_PROCESS_CHECK_INTERVAL 1000
49 #define PCMK_PROCESS_CHECK_RETRIES 5
50 #define SHUTDOWN_ESCALATION_PERIOD 180000
51
52
53 #define PCMK_CHILD_CONTROLD 5
54
55 static pcmk_child_t pcmk_children[] = {
56 {
57 pcmk_ipc_based, 0, 0, CRM_DAEMON_USER,
58 0, child_respawn | child_needs_cluster
59 },
60 {
61 pcmk_ipc_fenced, 0, 0, NULL,
62 0, child_respawn | child_needs_cluster
63 },
64 {
65 pcmk_ipc_execd, 0, 0, NULL,
66 0, child_respawn
67 },
68 {
69 pcmk_ipc_attrd, 0, 0, CRM_DAEMON_USER,
70 0, child_respawn | child_needs_cluster
71 },
72 {
73 pcmk_ipc_schedulerd, 0, 0, CRM_DAEMON_USER,
74 0, child_respawn
75 },
76 {
77 pcmk_ipc_controld, 0, 0, CRM_DAEMON_USER,
78 0, child_respawn | child_needs_cluster
79 },
80 };
81
82 static char *opts_default[] = { NULL, NULL };
83 static char *opts_vgrind[] = { NULL, NULL, NULL, NULL, NULL };
84
85 crm_trigger_t *shutdown_trigger = NULL;
86 crm_trigger_t *startup_trigger = NULL;
87 time_t subdaemon_check_progress = 0;
88
89
90 static bool need_root_group = true;
91
92
93
94
95
96
97
98
99
100
101
102 unsigned int shutdown_complete_state_reported_to = 0;
103 gboolean shutdown_complete_state_reported_client_closed = FALSE;
104
105
106 const char *pacemakerd_state = PCMK__VALUE_INIT;
107 gboolean running_with_sbd = FALSE;
108
109 GMainLoop *mainloop = NULL;
110
111 static gboolean fatal_error = FALSE;
112
113 static int child_liveness(pcmk_child_t *child);
114 static gboolean escalate_shutdown(gpointer data);
115 static int start_child(pcmk_child_t * child);
116 static void pcmk_child_exit(mainloop_child_t * p, pid_t pid, int core, int signo, int exitcode);
117 static void pcmk_process_exit(pcmk_child_t * child);
118 static gboolean pcmk_shutdown_worker(gpointer user_data);
119 static gboolean stop_child(pcmk_child_t * child, int signal);
120
121
122
123
124
125
126
127
128
129
130 static inline char *
131 subdaemon_path(pcmk_child_t *subdaemon)
132 {
133 return crm_strdup_printf(CRM_DAEMON_DIR "/%s",
134 pcmk__server_name(subdaemon->server));
135 }
136
137 static bool
138 pcmkd_cluster_connected(void)
139 {
140 #if SUPPORT_COROSYNC
141 return pcmkd_corosync_connected();
142 #else
143 return true;
144 #endif
145 }
146
147 static gboolean
148 check_next_subdaemon(gpointer user_data)
149 {
150 static int next_child = 0;
151
152 pcmk_child_t *child = &(pcmk_children[next_child]);
153 const char *name = pcmk__server_name(child->server);
154 const long long pid = PCMK__SPECIAL_PID_AS_0(child->pid);
155 int rc = child_liveness(child);
156
157 crm_trace("Checked subdaemon %s[%lld]: %s (%d)",
158 name, pid, pcmk_rc_str(rc), rc);
159
160 switch (rc) {
161 case pcmk_rc_ok:
162 child->check_count = 0;
163 subdaemon_check_progress = time(NULL);
164 break;
165
166 case pcmk_rc_ipc_pid_only:
167 if (++(child->check_count) >= PCMK_PROCESS_CHECK_RETRIES) {
168
169 crm_crit("Subdaemon %s[%lld] is unresponsive to IPC "
170 "after %d attempt%s and will now be killed",
171 name, pid, child->check_count,
172 pcmk__plural_s(child->check_count));
173 stop_child(child, SIGKILL);
174 if (pcmk_is_set(child->flags, child_respawn)) {
175
176 child->check_count = 0;
177 }
178 } else {
179 crm_notice("Subdaemon %s[%lld] is unresponsive to IPC "
180 "after %d attempt%s (will recheck later)",
181 name, pid, child->check_count,
182 pcmk__plural_s(child->check_count));
183 if (pcmk_is_set(child->flags, child_respawn)) {
184
185
186
187
188
189 subdaemon_check_progress = time(NULL);
190 }
191 }
192
193
194
195 break;
196 case pcmk_rc_ipc_unresponsive:
197 if (!pcmk_is_set(child->flags, child_respawn)) {
198
199
200
201
202
203
204 if (child->respawn_count <= MAX_RESPAWN) {
205 subdaemon_check_progress = time(NULL);
206 }
207 }
208 if (!pcmk_is_set(child->flags, child_active_before_startup)) {
209 crm_trace("Subdaemon %s[%lld] terminated", name, pid);
210 break;
211 }
212 if (pcmk_is_set(child->flags, child_respawn)) {
213
214 crm_err("Subdaemon %s[%lld] terminated", name, pid);
215 } else {
216
217 crm_notice("Subdaemon %s[%lld] terminated", name, pid);
218 }
219 pcmk_process_exit(child);
220 break;
221 default:
222 crm_exit(CRM_EX_FATAL);
223 break;
224 }
225
226 if (++next_child >= PCMK__NELEM(pcmk_children)) {
227 next_child = 0;
228 }
229
230 return G_SOURCE_CONTINUE;
231 }
232
233 static gboolean
234 escalate_shutdown(gpointer data)
235 {
236 pcmk_child_t *child = data;
237
238 if (child->pid == PCMK__SPECIAL_PID) {
239 pcmk_process_exit(child);
240
241 } else if (child->pid != 0) {
242
243 crm_err("Subdaemon %s not terminating in a timely manner, forcing",
244 pcmk__server_name(child->server));
245 stop_child(child, SIGSEGV);
246 }
247 return FALSE;
248 }
249
250 static void
251 pcmk_child_exit(mainloop_child_t * p, pid_t pid, int core, int signo, int exitcode)
252 {
253 pcmk_child_t *child = mainloop_child_userdata(p);
254 const char *name = mainloop_child_name(p);
255
256 if (signo) {
257
258 do_crm_log(((signo == SIGKILL)? LOG_WARNING : LOG_ERR),
259 "%s[%d] terminated with signal %d (%s)%s",
260 name, pid, signo, strsignal(signo),
261 (core? " and dumped core" : ""));
262
263 } else {
264 switch(exitcode) {
265 case CRM_EX_OK:
266 crm_info("%s[%d] exited with status %d (%s)",
267 name, pid, exitcode, crm_exit_str(exitcode));
268 break;
269
270 case CRM_EX_FATAL:
271 crm_warn("Shutting cluster down because %s[%d] had fatal failure",
272 name, pid);
273 child->flags &= ~child_respawn;
274 fatal_error = TRUE;
275 pcmk_shutdown(SIGTERM);
276 break;
277
278 case CRM_EX_PANIC:
279 {
280 char *msg = NULL;
281
282 child->flags &= ~child_respawn;
283 fatal_error = TRUE;
284 msg = crm_strdup_printf("Subdaemon %s[%d] requested panic",
285 name, pid);
286 pcmk__panic(msg);
287
288
289 free(msg);
290 pcmk_shutdown(SIGTERM);
291 }
292 break;
293
294 default:
295
296 crm_err("%s[%d] exited with status %d (%s)",
297 name, pid, exitcode, crm_exit_str(exitcode));
298 break;
299 }
300 }
301
302 pcmk_process_exit(child);
303 }
304
305 static void
306 pcmk_process_exit(pcmk_child_t * child)
307 {
308 const char *name = pcmk__server_name(child->server);
309 child->pid = 0;
310 child->flags &= ~child_active_before_startup;
311 child->check_count = 0;
312
313 child->respawn_count += 1;
314 if (child->respawn_count > MAX_RESPAWN) {
315 crm_err("Subdaemon %s exceeded maximum respawn count", name);
316 child->flags &= ~child_respawn;
317 }
318
319 if (shutdown_trigger) {
320
321 mainloop_set_trigger(shutdown_trigger);
322
323 } else if (!pcmk_is_set(child->flags, child_respawn)) {
324
325
326 } else if (crm_is_true(pcmk__env_option(PCMK__ENV_FAIL_FAST))) {
327 pcmk__panic("Subdaemon failed");
328
329 } else if (child_liveness(child) == pcmk_rc_ok) {
330 crm_warn("Not respawning subdaemon %s because IPC endpoint %s is OK",
331 name, pcmk__server_ipc_name(child->server));
332
333 } else if (pcmk_is_set(child->flags, child_needs_cluster) && !pcmkd_cluster_connected()) {
334 crm_notice("Not respawning subdaemon %s until cluster returns", name);
335 child->flags |= child_needs_retry;
336
337 } else {
338
339 crm_notice("Respawning subdaemon %s after unexpected exit", name);
340 start_child(child);
341 }
342 }
343
344 static gboolean
345 pcmk_shutdown_worker(gpointer user_data)
346 {
347 static int phase = PCMK__NELEM(pcmk_children) - 1;
348 static time_t next_log = 0;
349
350 if (phase == PCMK__NELEM(pcmk_children) - 1) {
351 crm_notice("Shutting down Pacemaker");
352 pacemakerd_state = PCMK__VALUE_SHUTTING_DOWN;
353 }
354
355 for (; phase >= 0; phase--) {
356 pcmk_child_t *child = &(pcmk_children[phase]);
357 const char *name = pcmk__server_name(child->server);
358
359 if (child->pid != 0) {
360 time_t now = time(NULL);
361
362 if (pcmk_is_set(child->flags, child_respawn)) {
363 if (child->pid == PCMK__SPECIAL_PID) {
364 crm_warn("Subdaemon %s cannot be terminated (shutdown "
365 "will be escalated after %ld seconds if it does "
366 "not terminate on its own; set PCMK_"
367 PCMK__ENV_FAIL_FAST "=1 to exit immediately "
368 "instead)",
369 name, (long) SHUTDOWN_ESCALATION_PERIOD);
370 }
371 next_log = now + 30;
372 child->flags &= ~child_respawn;
373 stop_child(child, SIGTERM);
374 if (phase < PCMK_CHILD_CONTROLD) {
375 pcmk__create_timer(SHUTDOWN_ESCALATION_PERIOD,
376 escalate_shutdown, child);
377 }
378
379 } else if (now >= next_log) {
380 next_log = now + 30;
381 crm_notice("Still waiting for subdaemon %s to terminate "
382 QB_XS " pid=%lld", name, (long long) child->pid);
383 }
384 return TRUE;
385 }
386
387
388 crm_debug("Subdaemon %s confirmed stopped", name);
389 child->pid = 0;
390 }
391
392 crm_notice("Shutdown complete");
393 pacemakerd_state = PCMK__VALUE_SHUTDOWN_COMPLETE;
394 if (!fatal_error && running_with_sbd &&
395 pcmk__get_sbd_sync_resource_startup() &&
396 !shutdown_complete_state_reported_client_closed) {
397 crm_notice("Waiting for SBD to pick up shutdown-complete-state.");
398 return TRUE;
399 }
400
401 g_main_loop_quit(mainloop);
402
403 if (fatal_error) {
404 crm_notice("Shutting down and staying down after fatal error");
405 #if SUPPORT_COROSYNC
406 pcmkd_shutdown_corosync();
407 #endif
408 crm_exit(CRM_EX_FATAL);
409 }
410
411 return TRUE;
412 }
413
414
415
416
417
418
419
420 static int
421 start_child(pcmk_child_t * child)
422 {
423 uid_t uid = 0;
424 gid_t gid = 0;
425 gboolean use_valgrind = FALSE;
426 gboolean use_callgrind = FALSE;
427 const char *name = pcmk__server_name(child->server);
428 const char *env_valgrind = pcmk__env_option(PCMK__ENV_VALGRIND_ENABLED);
429 const char *env_callgrind = pcmk__env_option(PCMK__ENV_CALLGRIND_ENABLED);
430
431 child->flags &= ~child_active_before_startup;
432 child->check_count = 0;
433
434 if (env_callgrind != NULL && crm_is_true(env_callgrind)) {
435 use_callgrind = TRUE;
436 use_valgrind = TRUE;
437
438 } else if ((env_callgrind != NULL)
439 && (strstr(env_callgrind, name) != NULL)) {
440 use_callgrind = TRUE;
441 use_valgrind = TRUE;
442
443 } else if (env_valgrind != NULL && crm_is_true(env_valgrind)) {
444 use_valgrind = TRUE;
445
446 } else if ((env_valgrind != NULL)
447 && (strstr(env_valgrind, name) != NULL)) {
448 use_valgrind = TRUE;
449 }
450
451 if (use_valgrind && strlen(PCMK__VALGRIND_EXEC) == 0) {
452 crm_warn("Cannot enable valgrind for subdaemon %s: valgrind not found",
453 name);
454 use_valgrind = FALSE;
455 }
456
457 if ((child->uid != NULL) && (crm_user_lookup(child->uid, &uid, &gid) < 0)) {
458 crm_err("Invalid user (%s) for subdaemon %s: not found",
459 child->uid, name);
460 return EACCES;
461 }
462
463 child->pid = fork();
464 pcmk__assert(child->pid != -1);
465
466 if (child->pid > 0) {
467
468 mainloop_child_add(child->pid, 0, name, child, pcmk_child_exit);
469
470 crm_info("Forked process %lld using user %lu (%s) and group %lu "
471 "for subdaemon %s%s",
472 (long long) child->pid, (unsigned long) uid,
473 pcmk__s(child->uid, "root"), (unsigned long) gid, name,
474 use_valgrind ? " (valgrind enabled: " PCMK__VALGRIND_EXEC ")" : "");
475 return pcmk_rc_ok;
476
477 } else {
478
479 (void)setsid();
480
481
482 opts_vgrind[0] = pcmk__str_copy(PCMK__VALGRIND_EXEC);
483 if (use_callgrind) {
484 opts_vgrind[1] = pcmk__str_copy("--tool=callgrind");
485 opts_vgrind[2] = pcmk__str_copy("--callgrind-out-file="
486 CRM_STATE_DIR "/callgrind.out.%p");
487 opts_vgrind[3] = subdaemon_path(child);
488 opts_vgrind[4] = NULL;
489 } else {
490 opts_vgrind[1] = subdaemon_path(child);
491 opts_vgrind[2] = NULL;
492 opts_vgrind[3] = NULL;
493 opts_vgrind[4] = NULL;
494 }
495 opts_default[0] = subdaemon_path(child);
496
497 if(gid) {
498
499 if (!need_root_group && (setgid(gid) < 0)) {
500 crm_warn("Could not set subdaemon %s group to %lu: %s",
501 name, (unsigned long) gid, strerror(errno));
502 }
503
504
505
506
507 if (initgroups(child->uid, gid) < 0) {
508 crm_err("Cannot initialize system groups for subdaemon %s: %s "
509 QB_XS " errno=%d",
510 name, pcmk_rc_str(errno), errno);
511 }
512 }
513
514 if (uid && setuid(uid) < 0) {
515 crm_warn("Could not set subdaemon %s user to %s: %s "
516 QB_XS " uid=%lu errno=%d",
517 name, strerror(errno), child->uid, (unsigned long) uid,
518 errno);
519 }
520
521 pcmk__close_fds_in_child(true);
522
523 pcmk__open_devnull(O_RDONLY);
524 pcmk__open_devnull(O_WRONLY);
525 pcmk__open_devnull(O_WRONLY);
526
527 if (use_valgrind) {
528 (void)execvp(PCMK__VALGRIND_EXEC, opts_vgrind);
529 } else {
530 char *path = subdaemon_path(child);
531
532 (void) execvp(path, opts_default);
533 free(path);
534 }
535 crm_crit("Could not execute subdaemon %s: %s", name, strerror(errno));
536 crm_exit(CRM_EX_FATAL);
537 }
538 return pcmk_rc_ok;
539 }
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559 static int
560 child_liveness(pcmk_child_t *child)
561 {
562 uid_t cl_uid = 0;
563 gid_t cl_gid = 0;
564 const uid_t root_uid = 0;
565 const gid_t root_gid = 0;
566 const uid_t *ref_uid;
567 const gid_t *ref_gid;
568 const char *name = pcmk__server_name(child->server);
569 int rc = pcmk_rc_ipc_unresponsive;
570 int legacy_rc = pcmk_ok;
571 pid_t ipc_pid = 0;
572
573 if (child->uid == NULL) {
574 ref_uid = &root_uid;
575 ref_gid = &root_gid;
576 } else {
577 ref_uid = &cl_uid;
578 ref_gid = &cl_gid;
579 legacy_rc = pcmk_daemon_user(&cl_uid, &cl_gid);
580 }
581
582 if (legacy_rc < 0) {
583 rc = pcmk_legacy2rc(legacy_rc);
584 crm_err("Could not find user and group IDs for user %s: %s "
585 QB_XS " rc=%d", CRM_DAEMON_USER, pcmk_rc_str(rc), rc);
586 } else {
587 const char *ipc_name = pcmk__server_ipc_name(child->server);
588
589 rc = pcmk__ipc_is_authentic_process_active(ipc_name,
590 *ref_uid, *ref_gid,
591 &ipc_pid);
592 if ((rc == pcmk_rc_ok) || (rc == pcmk_rc_ipc_unresponsive)) {
593 if (child->pid <= 0) {
594
595
596
597
598
599 child->pid = ipc_pid;
600 } else if ((ipc_pid != 0) && (child->pid != ipc_pid)) {
601
602
603
604 rc = pcmk_rc_ipc_unresponsive;
605 }
606 }
607 }
608
609 if (rc == pcmk_rc_ipc_unresponsive) {
610
611
612
613
614
615
616 int ret = pcmk__pid_active(child->pid, name);
617
618 if (ipc_pid && ((ret != pcmk_rc_ok)
619 || ipc_pid == PCMK__SPECIAL_PID
620 || (pcmk__pid_active(ipc_pid, name) == pcmk_rc_ok))) {
621
622
623
624
625
626 if (ret == pcmk_rc_ok) {
627
628
629
630
631
632
633
634
635 stop_child(child, SIGKILL);
636 }
637 rc = pcmk_rc_ok;
638 child->pid = ipc_pid;
639 } else if (ret == pcmk_rc_ok) {
640
641 rc = pcmk_rc_ipc_pid_only;
642 } else if ((child->pid == 0) && (ret == EINVAL)) {
643
644 rc = pcmk_rc_ipc_unresponsive;
645 } else {
646 switch (ret) {
647 case EACCES:
648 rc = pcmk_rc_ipc_unauthorized;
649 break;
650 case ESRCH:
651 rc = pcmk_rc_ipc_unresponsive;
652 break;
653 default:
654 rc = ret;
655 break;
656 }
657 }
658 }
659 return rc;
660 }
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689 #define WAIT_TRIES 4
690 int
691 find_and_track_existing_processes(void)
692 {
693 bool wait_in_progress;
694 int rc;
695 size_t i, rounds;
696
697 for (rounds = 1; rounds <= WAIT_TRIES; rounds++) {
698 wait_in_progress = false;
699 for (i = 0; i < PCMK__NELEM(pcmk_children); i++) {
700 const char *name = pcmk__server_name(pcmk_children[i].server);
701 const char *ipc_name = NULL;
702
703 if (pcmk_children[i].respawn_count < 0) {
704 continue;
705 }
706
707 rc = child_liveness(&pcmk_children[i]);
708 if (rc == pcmk_rc_ipc_unresponsive) {
709
710
711
712
713 continue;
714 }
715
716
717 ipc_name = pcmk__server_ipc_name(pcmk_children[i].server);
718 pcmk_children[i].respawn_count = rounds;
719 switch (rc) {
720 case pcmk_rc_ok:
721 if (pcmk_children[i].pid == PCMK__SPECIAL_PID) {
722 if (crm_is_true(pcmk__env_option(PCMK__ENV_FAIL_FAST))) {
723 crm_crit("Cannot reliably track pre-existing"
724 " authentic process behind %s IPC on this"
725 " platform and PCMK_" PCMK__ENV_FAIL_FAST
726 " requested", ipc_name);
727 return EOPNOTSUPP;
728 } else if (pcmk_children[i].respawn_count == WAIT_TRIES) {
729 crm_notice("Assuming pre-existing authentic, though"
730 " on this platform untrackable, process"
731 " behind %s IPC is stable (was in %d"
732 " previous samples) so rather than"
733 " bailing out (PCMK_" PCMK__ENV_FAIL_FAST
734 " not requested), we just switch to a"
735 " less optimal IPC liveness monitoring"
736 " (not very suitable for heavy load)",
737 name, WAIT_TRIES - 1);
738 crm_warn("The process behind %s IPC cannot be"
739 " terminated, so the overall shutdown"
740 " will get delayed implicitly (%ld s),"
741 " which serves as a graceful period for"
742 " its native termination if it vitally"
743 " depends on some other daemons going"
744 " down in a controlled way already",
745 name, (long) SHUTDOWN_ESCALATION_PERIOD);
746 } else {
747 wait_in_progress = true;
748 crm_warn("Cannot reliably track pre-existing"
749 " authentic process behind %s IPC on this"
750 " platform, can still disappear in %d"
751 " attempt(s)", ipc_name,
752 WAIT_TRIES - pcmk_children[i].respawn_count);
753 continue;
754 }
755 }
756 crm_notice("Tracking existing %s process (pid=%lld)",
757 name,
758 (long long) PCMK__SPECIAL_PID_AS_0(
759 pcmk_children[i].pid));
760 pcmk_children[i].respawn_count = -1;
761 pcmk_children[i].flags |= child_active_before_startup;
762 break;
763 case pcmk_rc_ipc_pid_only:
764 if (pcmk_children[i].respawn_count == WAIT_TRIES) {
765 crm_crit("%s IPC endpoint for existing authentic"
766 " process %lld did not (re)appear",
767 ipc_name,
768 (long long) PCMK__SPECIAL_PID_AS_0(
769 pcmk_children[i].pid));
770 return rc;
771 }
772 wait_in_progress = true;
773 crm_warn("Cannot find %s IPC endpoint for existing"
774 " authentic process %lld, can still (re)appear"
775 " in %d attempts (?)",
776 ipc_name,
777 (long long) PCMK__SPECIAL_PID_AS_0(
778 pcmk_children[i].pid),
779 WAIT_TRIES - pcmk_children[i].respawn_count);
780 continue;
781 default:
782 crm_crit("Checked liveness of %s: %s " QB_XS " rc=%d",
783 name, pcmk_rc_str(rc), rc);
784 return rc;
785 }
786 }
787 if (!wait_in_progress) {
788 break;
789 }
790 pcmk__sleep_ms(250);
791 }
792 for (i = 0; i < PCMK__NELEM(pcmk_children); i++) {
793 pcmk_children[i].respawn_count = 0;
794 }
795
796 pcmk__create_timer(PCMK_PROCESS_CHECK_INTERVAL, check_next_subdaemon,
797 NULL);
798 return pcmk_rc_ok;
799 }
800
801 gboolean
802 init_children_processes(void *user_data)
803 {
804 if (pcmk_get_cluster_layer() == pcmk_cluster_layer_corosync) {
805
806
807
808
809 need_root_group = false;
810 }
811
812
813 for (int i = 0; i < PCMK__NELEM(pcmk_children); i++) {
814 if (pcmk_children[i].pid != 0) {
815
816 continue;
817 }
818
819 start_child(&(pcmk_children[i]));
820 }
821
822
823
824
825
826
827 pcmk__set_env_option(PCMK__ENV_RESPAWNED, PCMK_VALUE_TRUE, false);
828 pacemakerd_state = PCMK__VALUE_RUNNING;
829 return TRUE;
830 }
831
832 void
833 pcmk_shutdown(int nsig)
834 {
835 if (shutdown_trigger == NULL) {
836 shutdown_trigger = mainloop_add_trigger(G_PRIORITY_HIGH, pcmk_shutdown_worker, NULL);
837 }
838 mainloop_set_trigger(shutdown_trigger);
839 }
840
841 void
842 restart_cluster_subdaemons(void)
843 {
844 for (int i = 0; i < PCMK__NELEM(pcmk_children); i++) {
845 if (!pcmk_is_set(pcmk_children[i].flags, child_needs_retry) || pcmk_children[i].pid != 0) {
846 continue;
847 }
848
849 crm_notice("Respawning cluster-based subdaemon %s",
850 pcmk__server_name(pcmk_children[i].server));
851 if (start_child(&pcmk_children[i])) {
852 pcmk_children[i].flags &= ~child_needs_retry;
853 }
854 }
855 }
856
857 static gboolean
858 stop_child(pcmk_child_t * child, int signal)
859 {
860 const char *name = pcmk__server_name(child->server);
861
862 if (signal == 0) {
863 signal = SIGTERM;
864 }
865
866
867
868
869
870 if (child->pid == PCMK__SPECIAL_PID) {
871 crm_debug("Nothing to do to stop subdaemon %s[%lld]",
872 name, (long long) PCMK__SPECIAL_PID_AS_0(child->pid));
873 return TRUE;
874 }
875
876 if (child->pid <= 0) {
877 crm_trace("Nothing to do to stop subdaemon %s: Not running", name);
878 return TRUE;
879 }
880
881 errno = 0;
882 if (kill(child->pid, signal) == 0) {
883 crm_notice("Stopping subdaemon %s "
884 QB_XS " via signal %d to process %lld",
885 name, signal, (long long) child->pid);
886 } else {
887 crm_err("Could not stop subdaemon %s[%lld] with signal %d: %s",
888 name, (long long) child->pid, signal, strerror(errno));
889 }
890
891 return TRUE;
892 }