From bb279f4f305649c99dabdbcc0f45fc42c9be8e7e Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 23 May 2019 09:37:04 +0000 Subject: xapcmd: do not reset %SIG until last Xtmpdir is done To properly handle compact tmpdir cleanup in single process situations, we need to carefully account for Xtmpdir not being a singleton and ensuring we don't clobber signal handlers which belong to other Xtmpdirs. --- lib/PublicInbox/Xapcmd.pm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/PublicInbox/Xapcmd.pm b/lib/PublicInbox/Xapcmd.pm index a294d539..999819c7 100644 --- a/lib/PublicInbox/Xapcmd.pm +++ b/lib/PublicInbox/Xapcmd.pm @@ -22,6 +22,8 @@ sub commit_changes ($$$) { my $im = $ibx->importer(0); $im->lock_acquire if !$opt->{-coarse_lock}; + $SIG{INT} or die 'BUG: $SIG{INT} not handled'; + while (my ($old, $new) = each %$tmp) { my @st = stat($old) or die "failed to stat($old): $!\n"; @@ -346,7 +348,12 @@ sub new { sub done { my ($self) = @_; delete $owner{"$self"}; - $SIG{INT} = $SIG{HUP} = $SIG{PIPE} = $SIG{TERM} = 'DEFAULT'; + + my %known_pids; + $known_pids{$_}++ foreach values %owner; + if (!$known_pids{$$}) { + $SIG{INT} = $SIG{HUP} = $SIG{PIPE} = $SIG{TERM} = 'DEFAULT'; + } %$self = (); } @@ -357,7 +364,7 @@ sub DESTROY { foreach my $new (values %$self) { remove_tree($new) unless -d "$new/old"; } - $SIG{INT} = $SIG{HUP} = $SIG{PIPE} = $SIG{TERM} = 'DEFAULT'; + done($self); } 1; -- cgit v1.2.3-24-ge0c7