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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
73e1ffdc
Commit
73e1ffdc
authored
Oct 23, 2018
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#27919254 MYSQL USER ESCALATES ITS PRIVILEGE BY PLACING ARBITRARY PIDS INTO ITS PID FILES
parent
98f15dac
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
12 deletions
+19
-12
support-files/mysql.server.sh
support-files/mysql.server.sh
+19
-12
No files found.
support-files/mysql.server.sh
View file @
73e1ffdc
...
...
@@ -128,8 +128,9 @@ esac
parse_server_arguments
()
{
for
arg
do
val
=
`
echo
"
$arg
"
|
sed
-e
's/^[^=]*=//'
`
case
"
$arg
"
in
--basedir
=
*
)
basedir
=
`
echo
"
$arg
"
|
sed
-e
's/^[^=]*=//'
`
--basedir
=
*
)
basedir
=
"
$val
"
bindir
=
"
$basedir
/bin"
if
test
-z
"
$datadir_set
"
;
then
datadir
=
"
$basedir
/data"
...
...
@@ -143,14 +144,15 @@ parse_server_arguments() {
fi
libexecdir
=
"
$basedir
/libexec"
;;
--datadir
=
*
)
datadir
=
`
echo
"
$arg
"
|
sed
-e
's/^[^=]*=//'
`
--datadir
=
*
)
datadir
=
"
$val
"
datadir_set
=
1
;;
--log-basename
=
*
|
--hostname
=
*
|
--loose-log-basename
=
*
)
mysqld_pid_file_path
=
`
echo
"
$arg
.pid"
|
sed
-e
's/^[^=]*=//'
`
mysqld_pid_file_path
=
"
$val
.pid"
;;
--pid-file
=
*
)
mysqld_pid_file_path
=
`
echo
"
$arg
"
|
sed
-e
's/^[^=]*=//'
`
;;
--service-startup-timeout
=
*
)
service_startup_timeout
=
`
echo
"
$arg
"
|
sed
-e
's/^[^=]*=//'
`
;;
--pid-file
=
*
)
mysqld_pid_file_path
=
"
$val
"
;;
--service-startup-timeout
=
*
)
service_startup_timeout
=
"
$val
"
;;
--user
=
*
)
user
=
"
$val
"
;
;;
esac
done
}
...
...
@@ -182,6 +184,12 @@ else
test
-z
"
$print_defaults
"
&&
print_defaults
=
"my_print_defaults"
fi
user
=
'@MYSQLD_USER@'
su_kill
()
{
su -
$user
-s
/bin/sh
-c
"kill
$*
"
>
/dev/null 2>&1
}
#
# Read defaults file from 'basedir'. If there is no defaults file there
# check if it's in the old (depricated) place (datadir) and read it from there
...
...
@@ -210,7 +218,7 @@ wait_for_gone () {
while
test
$i
-ne
$service_startup_timeout
;
do
if
kill
-0
"
$pid
"
2>/dev/null
;
then
if
su_kill
-0
"
$pid
"
;
then
:
# the server still runs
else
if
test
!
-s
"
$pid_file_path
"
;
then
...
...
@@ -250,7 +258,7 @@ wait_for_ready () {
if
$bindir
/mysqladmin ping
>
/dev/null 2>&1
;
then
log_success_msg
return
0
elif
kill
-0
$!
2>/dev/null
;
then
elif
kill
-0
$!
;
then
:
# mysqld_safe is still running
else
# mysqld_safe is no longer running, abort the wait loop
...
...
@@ -319,10 +327,9 @@ case "$mode" in
then
mysqld_pid
=
`
cat
"
$mysqld_pid_file_path
"
`
if
(
kill
-0
$mysqld_pid
2>/dev/null
)
then
if
su_kill
-0
$mysqld_pid
;
then
echo
$echo_n
"Shutting down MariaDB"
kill
$mysqld_pid
su_
kill
$mysqld_pid
# mysqld should remove the pid file when it exits, so wait for it.
wait_for_gone
$mysqld_pid
"
$mysqld_pid_file_path
"
;
return_value
=
$?
else
...
...
@@ -355,7 +362,7 @@ case "$mode" in
'reload'
|
'force-reload'
)
if
test
-s
"
$mysqld_pid_file_path
"
;
then
read
mysqld_pid <
"
$mysqld_pid_file_path
"
kill
-HUP
$mysqld_pid
&&
log_success_msg
"Reloading service MariaDB"
su_
kill
-HUP
$mysqld_pid
&&
log_success_msg
"Reloading service MariaDB"
touch
"
$mysqld_pid_file_path
"
else
log_failure_msg
"MariaDB PID file could not be found!"
...
...
@@ -366,7 +373,7 @@ case "$mode" in
# First, check to see if pid file exists
if
test
-s
"
$mysqld_pid_file_path
"
;
then
read
mysqld_pid <
"
$mysqld_pid_file_path
"
if
kill
-0
$mysqld_pid
2>/dev/null
;
then
if
su_kill
-0
$mysqld_pid
;
then
log_success_msg
"MariaDB running (
$mysqld_pid
)"
exit
0
else
...
...
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