Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
0e01efc0
Commit
0e01efc0
authored
Nov 26, 2012
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #14757120 - SAFE_PROCESS.CC/SAFE_PROCESS.PL SHOULD NOT KILL MYSQLD ON SIGSTOP/SIGCONT
parent
c257dbe6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
172 deletions
+12
-172
mysql-test/Makefile.am
mysql-test/Makefile.am
+1
-2
mysql-test/lib/My/SafeProcess/safe_process.cc
mysql-test/lib/My/SafeProcess/safe_process.cc
+11
-4
mysql-test/lib/My/SafeProcess/safe_process.pl
mysql-test/lib/My/SafeProcess/safe_process.pl
+0
-166
No files found.
mysql-test/Makefile.am
View file @
0e01efc0
...
...
@@ -63,8 +63,7 @@ nobase_test_DATA = \
lib/My/File/Path.pm
\
lib/My/SysInfo.pm
\
lib/My/CoreDump.pm
\
lib/My/SafeProcess/Base.pm
\
lib/My/SafeProcess/safe_process.pl
lib/My/SafeProcess/Base.pm
SUBDIRS
=
lib/My/SafeProcess
...
...
mysql-test/lib/My/SafeProcess/safe_process.cc
View file @
0e01efc0
...
...
@@ -153,12 +153,19 @@ int main(int argc, char* const argv[] )
pid_t
own_pid
=
getpid
();
pid_t
parent_pid
=
getppid
();
bool
nocore
=
false
;
struct
sigaction
sa
,
sa_abort
;
sa
.
sa_handler
=
handle_signal
;
sa
.
sa_flags
=
SA_NOCLDSTOP
;
sigemptyset
(
&
sa
.
sa_mask
);
sa_abort
.
sa_handler
=
handle_abort
;
sigemptyset
(
&
sa_abort
.
sa_mask
);
/* Install signal handlers */
sig
nal
(
SIGTERM
,
handle_signal
);
sig
nal
(
SIGINT
,
handle_signal
);
sig
nal
(
SIGCHLD
,
handle_signal
);
sig
nal
(
SIGABRT
,
handle_abort
);
sig
action
(
SIGTERM
,
&
sa
,
NULL
);
sig
action
(
SIGINT
,
&
sa
,
NULL
);
sig
action
(
SIGCHLD
,
&
sa
,
NULL
);
sig
action
(
SIGABRT
,
&
sa_abort
,
NULL
);
sprintf
(
safe_process_name
,
"safe_process[%ld]"
,
(
long
)
own_pid
);
...
...
mysql-test/lib/My/SafeProcess/safe_process.pl
deleted
100644 → 0
View file @
c257dbe6
#!/usr/bin/perl
# -*- cperl -*-
# Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
use
strict
;
use
warnings
;
use
lib
'
lib
';
use
My::SafeProcess::
Base
;
use
POSIX
qw(WNOHANG)
;
###########################################################################
# Util functions
###########################################################################
#
#Print message to stderr
#
my
$verbose
=
0
;
sub
message
{
if
(
$verbose
>
0
){
use
Time::
localtime
;
my
$tm
=
localtime
();
my
$timestamp
=
sprintf
("
%02d%02d%02d %2d:%02d:%02d
",
$tm
->
year
%
100
,
$tm
->
mon
+
1
,
$tm
->
mday
,
$tm
->
hour
,
$tm
->
min
,
$tm
->
sec
);
print
STDERR
$timestamp
,
"
monitor[$$]:
",
@_
,
"
\n
";
}
}
###########################################################################
# Main program
###########################################################################
my
$terminated
=
0
;
# Protect against being killed in the middle
# of child creation, just set the terminated flag
# to make sure the child will be killed off
# when program is ready to do that
$SIG
{
TERM
}
=
sub
{
message
("
!Got signal
@_
");
$terminated
=
1
;
};
$SIG
{
INT
}
=
sub
{
message
("
!Got signal
@_
");
$terminated
=
1
;
};
my
$parent_pid
=
getppid
();
my
$found_double_dash
=
0
;
while
(
my
$arg
=
shift
(
@ARGV
)){
if
(
$arg
=~
/^--$/
){
$found_double_dash
=
1
;
last
;
}
elsif
(
$arg
=~
/^--verbose$/
){
$verbose
=
1
;
}
else
{
die
"
Unknown option:
$arg
";
}
}
my
$path
=
shift
(
@ARGV
);
# Executable
die
"
usage:
\n
"
.
"
safe_process.pl [opts] -- <path> [<args> [...<args_n>]]
"
unless
defined
$path
||
$found_double_dash
;
message
("
started
");
#message("path: '$path'");
message
("
parent:
$parent_pid
");
# Start process to monitor
my
$child_pid
=
create_process
(
path
=>
$path
,
args
=>
\
@ARGV
,
setpgrp
=>
1
,
);
message
("
Started child
$child_pid
");
eval
{
sub
handle_signal
{
$terminated
=
1
;
message
("
Got signal
@_
");
# Ignore all signals
foreach
my
$name
(
keys
%
SIG
){
$SIG
{
$name
}
=
'
IGNORE
';
}
die
"
signaled
\n
";
};
local
$SIG
{
TERM
}
=
\&
handle_signal
;
local
$SIG
{
INT
}
=
\&
handle_signal
;
local
$SIG
{
CHLD
}
=
sub
{
message
("
Got signal
@_
");
kill
('
KILL
',
-
$child_pid
);
my
$ret
=
waitpid
(
$child_pid
,
0
);
if
(
$?
&
127
){
exit
(
65
);
# Killed by signal
}
exit
(
$?
>>
8
);
};
# Monitoring loop
while
(
!
$terminated
)
{
# Check if parent is still alive
if
(
kill
(
0
,
$parent_pid
)
<
1
){
message
("
Parent is not alive anymore
");
last
;
}
# Wait for child to terminate but wakeup every
# second to also check that parent is still alive
my
$ret_pid
;
$ret_pid
=
waitpid
(
$child_pid
,
&
WNOHANG
);
if
(
$ret_pid
==
$child_pid
)
{
# Process has exited, collect return status
my
$ret_code
=
$?
>>
8
;
message
("
Child exit:
$ret_code
");
# Exit with exit status of the child
exit
(
$ret_code
);
}
sleep
(
1
);
}
};
if
(
$@
)
{
# The monitoring loop should have been
# broken by handle_signal
warn
"
Unexpected: $@
"
unless
(
$@
=~
/signaled/
);
}
# Use negative pid in order to kill the whole
# process group
#
my
$ret
=
kill
('
KILL
',
-
$child_pid
);
message
("
Killed child:
$child_pid
, ret:
$ret
");
if
(
$ret
>
0
)
{
message
("
Killed child:
$child_pid
");
# Wait blocking for the child to return
my
$ret_pid
=
waitpid
(
$child_pid
,
0
);
if
(
$ret_pid
!=
$child_pid
){
message
("
unexpected pid
$ret_pid
returned from waitpid(
$child_pid
)
");
}
}
message
("
DONE!
");
exit
(
1
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment