summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2010-05-21 11:09:11 +0200
committerStephen Gallagher <sgallagh@redhat.com>2010-05-23 12:15:59 -0400
commit209e37c000d1a236263af6dc89ca63909d1b8a45 (patch)
tree212467d22a3d009ca1c606c71d471be5725aeecd
parentf60b2658390f612fffce74f6916abf6b0854ea4e (diff)
downloadsssd_unused-209e37c000d1a236263af6dc89ca63909d1b8a45.tar.gz
sssd_unused-209e37c000d1a236263af6dc89ca63909d1b8a45.tar.xz
sssd_unused-209e37c000d1a236263af6dc89ca63909d1b8a45.zip
Remove signal event if child was terminated by a signal
-rw-r--r--src/providers/child_common.c26
-rw-r--r--src/providers/ipa/ipa_dyndns.c9
2 files changed, 29 insertions, 6 deletions
diff --git a/src/providers/child_common.c b/src/providers/child_common.c
index a8a4e040..a242338a 100644
--- a/src/providers/child_common.c
+++ b/src/providers/child_common.c
@@ -319,12 +319,28 @@ void child_sig_handler(struct tevent_context *ev,
DEBUG(1, ("waitpid failed [%d][%s].\n", err, strerror(err)));
} else if (ret == 0) {
DEBUG(1, ("waitpid did not found a child with changed status.\n"));
- } else if WIFEXITED(child_ctx->child_status) {
- if (WEXITSTATUS(child_ctx->child_status) != 0) {
- DEBUG(1, ("child [%d] failed with status [%d].\n", ret,
- child_ctx->child_status));
+ } else {
+ if WIFEXITED(child_ctx->child_status) {
+ if (WEXITSTATUS(child_ctx->child_status) != 0) {
+ DEBUG(1, ("child [%d] failed with status [%d].\n", ret,
+ WEXITSTATUS(child_ctx->child_status)));
+ } else {
+ DEBUG(4, ("child [%d] finished successfully.\n", ret));
+ }
+ } else if WIFSIGNALED(child_ctx->child_status) {
+ DEBUG(1, ("child [%d] was terminated by signal [%d].\n", ret,
+ WTERMSIG(child_ctx->child_status)));
} else {
- DEBUG(4, ("child [%d] finished successfully.\n", ret));
+ if WIFSTOPPED(child_ctx->child_status) {
+ DEBUG(7, ("child [%d] was stopped by signal [%d].\n", ret,
+ WSTOPSIG(child_ctx->child_status)));
+ }
+ if WIFCONTINUED(child_ctx->child_status) {
+ DEBUG(7, ("child [%d] was resumed by delivery of SIGCONT.\n",
+ ret));
+ }
+
+ return;
}
/* Invoke the callback in a tevent_immediate handler
diff --git a/src/providers/ipa/ipa_dyndns.c b/src/providers/ipa/ipa_dyndns.c
index b1edc194..a86c6968 100644
--- a/src/providers/ipa/ipa_dyndns.c
+++ b/src/providers/ipa/ipa_dyndns.c
@@ -514,13 +514,20 @@ static void ipa_dyndns_child_handler(int child_status,
{
struct tevent_req *req = talloc_get_type(pvt, struct tevent_req);
- if (WEXITSTATUS(child_status) != 0) {
+ if (WIFEXITED(child_status) && WEXITSTATUS(child_status) != 0) {
DEBUG(1, ("Dynamic DNS child failed with status [%d]\n",
child_status));
tevent_req_error(req, EIO);
return;
}
+ if WIFSIGNALED(child_status) {
+ DEBUG(1, ("Dynamic DNS child was terminated by signal [%d]\n",
+ WTERMSIG(child_status)));
+ tevent_req_error(req, EIO);
+ return;
+ }
+
tevent_req_done(req);
}