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
a6e451dc
Commit
a6e451dc
authored
Oct 05, 2020
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '10.3' into 10.4
parents
ddffcad6
a707c7f0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
1 deletion
+43
-1
VERSION
VERSION
+1
-1
sql/wsrep_sst.cc
sql/wsrep_sst.cc
+42
-0
No files found.
VERSION
View file @
a6e451dc
MYSQL_VERSION_MAJOR=10
MYSQL_VERSION_MINOR=4
MYSQL_VERSION_PATCH=1
4
MYSQL_VERSION_PATCH=1
5
SERVER_MATURITY=stable
sql/wsrep_sst.cc
View file @
a6e451dc
...
...
@@ -1822,6 +1822,35 @@ static int sst_donate_other (const char* method,
return
arg
.
err
;
}
/* return true if character can be a part of a filename */
static
bool
filename_char
(
int
const
c
)
{
return
isalnum
(
c
)
||
(
c
==
'-'
)
||
(
c
==
'_'
)
||
(
c
==
'.'
);
}
/* return true if character can be a part of an address string */
static
bool
address_char
(
int
const
c
)
{
return
filename_char
(
c
)
||
(
c
==
':'
)
||
(
c
==
'['
)
||
(
c
==
']'
)
||
(
c
==
'/'
);
}
static
bool
check_request_str
(
const
char
*
const
str
,
bool
(
*
check
)
(
int
c
))
{
for
(
size_t
i
(
0
);
str
[
i
]
!=
'\0'
;
++
i
)
{
if
(
!
check
(
str
[
i
]))
{
WSREP_WARN
(
"Illegal character in state transfer request: %i (%c)."
,
str
[
i
],
str
[
i
]);
return
true
;
}
}
return
false
;
}
int
wsrep_sst_donate
(
const
std
::
string
&
msg
,
const
wsrep
::
gtid
&
current_gtid
,
const
bool
bypass
)
...
...
@@ -1833,8 +1862,21 @@ int wsrep_sst_donate(const std::string& msg,
const
char
*
method
=
msg
.
data
();
size_t
method_len
=
strlen
(
method
);
if
(
check_request_str
(
method
,
filename_char
))
{
WSREP_ERROR
(
"Bad SST method name. SST canceled."
);
return
WSREP_CB_FAILURE
;
}
const
char
*
data
=
method
+
method_len
+
1
;
if
(
check_request_str
(
data
,
address_char
))
{
WSREP_ERROR
(
"Bad SST address string. SST canceled."
);
return
WSREP_CB_FAILURE
;
}
wsp
::
env
env
(
NULL
);
if
(
env
.
error
())
{
...
...
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