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
83bd8ebf
Commit
83bd8ebf
authored
Oct 07, 2020
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Plain Diff
Merge tag 'mariadb-10.1.47' into 10.1
parents
1a850225
f4c85ef5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
5 deletions
+46
-5
sql/wsrep_sst.cc
sql/wsrep_sst.cc
+46
-5
No files found.
sql/wsrep_sst.cc
View file @
83bd8ebf
...
...
@@ -1667,24 +1667,65 @@ 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
;
}
wsrep_cb_status_t
wsrep_sst_donate_cb
(
void
*
app_ctx
,
void
*
recv_ctx
,
const
void
*
msg
,
size_t
msg_len
,
const
wsrep_gtid_t
*
current_gtid
,
const
char
*
state
,
size_t
state_len
,
bool
bypass
)
{
/* This will be reset when sync callback is called.
* Should we set wsrep_ready to FALSE here too? */
wsrep_config_state
.
set
(
WSREP_MEMBER_DONOR
);
const
char
*
method
=
(
char
*
)
msg
;
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
;
}
char
uuid_str
[
37
];
wsrep_uuid_print
(
&
current_gtid
->
uuid
,
uuid_str
,
sizeof
(
uuid_str
));
/* This will be reset when sync callback is called.
* Should we set wsrep_ready to FALSE here too? */
wsrep_config_state
.
set
(
WSREP_MEMBER_DONOR
);
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