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
4e9e3043
Commit
4e9e3043
authored
Feb 04, 2011
by
Dmitry Shulga
Browse files
Options
Browse Files
Download
Plain Diff
Merge from mysql-5.1 for bug#58026.
parents
9abc2aad
378091e4
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
53 additions
and
5 deletions
+53
-5
mysql-test/r/not_embedded_server.result
mysql-test/r/not_embedded_server.result
+4
-0
mysql-test/t/not_embedded_server.test
mysql-test/t/not_embedded_server.test
+10
-0
regex/my_regex.h
regex/my_regex.h
+3
-1
regex/regcomp.c
regex/regcomp.c
+13
-2
regex/reginit.c
regex/reginit.c
+5
-1
sql/mysqld.cc
sql/mysqld.cc
+18
-1
No files found.
mysql-test/r/not_embedded_server.result
View file @
4e9e3043
...
...
@@ -3,6 +3,10 @@ SHOW VARIABLES like 'slave_skip_errors';
Variable_name Value
slave_skip_errors OFF
#
# Bug#58026: massive recursion and crash in regular expression handling
#
SELECT '1' RLIKE RPAD('1', 10000, '(');
#
# WL#4284: Transactional DDL locking
#
# FLUSH PRIVILEGES should not implicitly unlock locked tables.
...
...
mysql-test/t/not_embedded_server.test
View file @
4e9e3043
...
...
@@ -14,6 +14,16 @@ call mtr.add_suppression("Can't open and lock privilege tables: Table 'host' was
SHOW
VARIABLES
like
'slave_skip_errors'
;
--
echo
#
--
echo
# Bug#58026: massive recursion and crash in regular expression handling
--
echo
#
--
disable_result_log
--
error
ER_STACK_OVERRUN_NEED_MORE
SELECT
'1'
RLIKE
RPAD
(
'1'
,
10000
,
'('
);
--
enable_result_log
# End of 5.1 tests
--
echo
#
...
...
regex/my_regex.h
View file @
4e9e3043
...
...
@@ -28,6 +28,7 @@ typedef struct {
/* === regcomp.c === */
typedef
int
(
*
my_regex_stack_check_t
)();
extern
int
my_regcomp
(
my_regex_t
*
,
const
char
*
,
int
,
CHARSET_INFO
*
charset
);
#define REG_BASIC 0000
#define REG_EXTENDED 0001
...
...
@@ -76,7 +77,8 @@ extern void my_regfree(my_regex_t *);
/* === reginit.c === */
extern
void
my_regex_init
(
CHARSET_INFO
*
cs
);
/* Should be called for multithread progs */
/* Should be called for multithread progs */
extern
void
my_regex_init
(
CHARSET_INFO
*
cs
,
my_regex_stack_check_t
func
);
extern
void
my_regex_end
(
void
);
/* If one wants a clean end */
#ifdef __cplusplus
...
...
regex/regcomp.c
View file @
4e9e3043
...
...
@@ -31,6 +31,9 @@ struct parse {
CHARSET_INFO
*
charset
;
/* for ctype things */
};
/* Check if there is enough stack space for recursion. */
my_regex_stack_check_t
my_regex_enough_mem_in_stack
=
NULL
;
#include "regcomp.ih"
static
char
nuls
[
10
];
/* place to point scanner in event of error */
...
...
@@ -117,7 +120,7 @@ CHARSET_INFO *charset;
# define GOODFLAGS(f) ((f)&~REG_DUMP)
#endif
my_regex_init
(
charset
);
/* Init cclass if neaded */
my_regex_init
(
charset
,
NULL
);
/* Init cclass if neaded */
preg
->
charset
=
charset
;
cflags
=
GOODFLAGS
(
cflags
);
if
((
cflags
&
REG_EXTENDED
)
&&
(
cflags
&
REG_NOSPEC
))
...
...
@@ -222,7 +225,15 @@ int stop; /* character this ERE should end at */
/* do a bunch of concatenated expressions */
conc
=
HERE
();
while
(
MORE
()
&&
(
c
=
PEEK
())
!=
'|'
&&
c
!=
stop
)
p_ere_exp
(
p
);
{
if
(
my_regex_enough_mem_in_stack
&&
my_regex_enough_mem_in_stack
())
{
SETERROR
(
REG_ESPACE
);
return
;
}
p_ere_exp
(
p
);
}
if
(
REQUIRE
(
HERE
()
!=
conc
,
REG_EMPTY
))
{}
/* require nonempty */
if
(
!
EAT
(
'|'
))
...
...
regex/reginit.c
View file @
4e9e3043
...
...
@@ -4,10 +4,12 @@
#include <m_ctype.h>
#include <m_string.h>
#include "cclass.h"
#include "my_regex.h"
static
my_bool
regex_inited
=
0
;
extern
my_regex_stack_check_t
my_regex_enough_mem_in_stack
;
void
my_regex_init
(
CHARSET_INFO
*
cs
)
void
my_regex_init
(
CHARSET_INFO
*
cs
,
my_regex_stack_check_t
func
)
{
char
buff
[
CCLASS_LAST
][
256
];
int
count
[
CCLASS_LAST
];
...
...
@@ -16,6 +18,7 @@ void my_regex_init(CHARSET_INFO *cs)
if
(
!
regex_inited
)
{
regex_inited
=
1
;
my_regex_enough_mem_in_stack
=
func
;
bzero
((
uchar
*
)
&
count
,
sizeof
(
count
));
for
(
i
=
1
;
i
<=
255
;
i
++
)
...
...
@@ -74,6 +77,7 @@ void my_regex_end()
int
i
;
for
(
i
=
0
;
i
<
CCLASS_LAST
;
i
++
)
free
((
char
*
)
cclasses
[
i
].
chars
);
my_regex_enough_mem_in_stack
=
NULL
;
regex_inited
=
0
;
}
}
...
...
sql/mysqld.cc
View file @
4e9e3043
...
...
@@ -2879,6 +2879,19 @@ sizeof(load_default_groups)/sizeof(load_default_groups[0]);
#endif
#ifndef EMBEDDED_LIBRARY
static
int
check_enough_stack_size
()
{
uchar
stack_top
;
return
check_stack_overrun
(
current_thd
,
STACK_MIN_SIZE
,
&
stack_top
);
}
#endif
/**
Initialize one of the global date/time format variables.
...
...
@@ -3340,7 +3353,11 @@ static int init_common_variables()
if
(
item_create_init
())
return
1
;
item_init
();
my_regex_init
(
&
my_charset_latin1
);
#ifndef EMBEDDED_LIBRARY
my_regex_init
(
&
my_charset_latin1
,
check_enough_stack_size
);
#else
my_regex_init
(
&
my_charset_latin1
,
NULL
);
#endif
/*
Process a comma-separated character set list and choose
the first available character set. This is mostly for
...
...
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