Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.5
Description
After update to latest GCC 10, I see the aforementioned test failing. I use -flto that enables cross module inlining and I investigated that stack overflow detection does not work in `check_stack_overrun` function in sql_parse.cc. It's very likely caused by optimized out the allocation of buf argument of the function, which is a stack variable in a caller frame.
I'm suggesting the following patch:
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc
|
index a8e66d2a..9cbf23d7 100644 |
--- a/sql/sql_parse.cc
|
+++ b/sql/sql_parse.cc
|
@@ -7229,10 +7229,14 @@ long max_stack_used; |
corresponding exec. (Thus we only have to check in fix_fields.)
|
- Passing to check_stack_overrun() prevents the compiler from removing it.
|
*/
|
-bool check_stack_overrun(THD *thd, long margin, |
- uchar *buf __attribute__((unused)))
|
+bool check_stack_overrun(THD *thd, long margin, uchar *buf) |
{
|
long stack_used; |
+ /* |
+ Take address of the buf argument in order to prevent
|
+ the stack allocation made this function caller.
|
+ */
|
+ static volatile uchar *buf_ptr = buf; |
DBUG_ASSERT(thd == current_thd);
|
if ((stack_used= available_stack_size(thd->thread_stack, &stack_used)) >= |
(long) (my_thread_stack_size - margin)) |
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Description |
After update to latest GCC 10, I see the aforementioned test failing. I use -flto that enables cross module inlining and I investigated that stack overflow detection does not work in `check_stack_overrun` function in `sql_parse.cc`. It's very likely caused by optimized out the allocation of `buf` argument of the function, which is a stack variable in a caller frame.
I'm suggesting the following patch: ```patch diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index a8e66d2a..9cbf23d7 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -7229,10 +7229,14 @@ long max_stack_used; corresponding exec. (Thus we only have to check in fix_fields.) - Passing to check_stack_overrun() prevents the compiler from removing it. */ -bool check_stack_overrun(THD *thd, long margin, - uchar *buf __attribute__((unused))) +bool check_stack_overrun(THD *thd, long margin, uchar *buf) { long stack_used; + /* + Take address of the buf argument in order to prevent + the stack allocation made this function caller. + */ + static volatile uchar *buf_ptr = buf; DBUG_ASSERT(thd == current_thd); if ((stack_used= available_stack_size(thd->thread_stack, &stack_used)) >= (long) (my_thread_stack_size - margin)) ``` |
After update to latest GCC 10, I see the aforementioned test failing. I use -flto that enables cross module inlining and I investigated that stack overflow detection does not work in `check_stack_overrun` function in `sql_parse.cc`. It's very likely caused by optimized out the allocation of `buf` argument of the function, which is a stack variable in a caller frame.
I'm suggesting the following patch: {{diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index a8e66d2a..9cbf23d7 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -7229,10 +7229,14 @@ long max_stack_used; corresponding exec. (Thus we only have to check in fix_fields.) - Passing to check_stack_overrun() prevents the compiler from removing it. */ -bool check_stack_overrun(THD *thd, long margin, - uchar *buf __attribute__((unused))) +bool check_stack_overrun(THD *thd, long margin, uchar *buf) { long stack_used; + /* + Take address of the buf argument in order to prevent + the stack allocation made this function caller. + */ + static volatile uchar *buf_ptr = buf; DBUG_ASSERT(thd == current_thd); if ((stack_used= available_stack_size(thd->thread_stack, &stack_used)) >= (long) (my_thread_stack_size - margin)) }} |
Description |
After update to latest GCC 10, I see the aforementioned test failing. I use -flto that enables cross module inlining and I investigated that stack overflow detection does not work in `check_stack_overrun` function in `sql_parse.cc`. It's very likely caused by optimized out the allocation of `buf` argument of the function, which is a stack variable in a caller frame.
I'm suggesting the following patch: {{diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index a8e66d2a..9cbf23d7 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -7229,10 +7229,14 @@ long max_stack_used; corresponding exec. (Thus we only have to check in fix_fields.) - Passing to check_stack_overrun() prevents the compiler from removing it. */ -bool check_stack_overrun(THD *thd, long margin, - uchar *buf __attribute__((unused))) +bool check_stack_overrun(THD *thd, long margin, uchar *buf) { long stack_used; + /* + Take address of the buf argument in order to prevent + the stack allocation made this function caller. + */ + static volatile uchar *buf_ptr = buf; DBUG_ASSERT(thd == current_thd); if ((stack_used= available_stack_size(thd->thread_stack, &stack_used)) >= (long) (my_thread_stack_size - margin)) }} |
{{monospaced text}}After update to latest GCC 10, I see the aforementioned test failing. I use -flto that enables cross module inlining and I investigated that stack overflow detection does not work in `check_stack_overrun` function in `sql_parse.cc`. It's very likely caused by optimized out the allocation of `buf` argument of the function, which is a stack variable in a caller frame.
I'm suggesting the following patch: {{diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index a8e66d2a..9cbf23d7 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -7229,10 +7229,14 @@ long max_stack_used; corresponding exec. (Thus we only have to check in fix_fields.) - Passing to check_stack_overrun() prevents the compiler from removing it. */ -bool check_stack_overrun(THD *thd, long margin, - uchar *buf __attribute__((unused))) +bool check_stack_overrun(THD *thd, long margin, uchar *buf) { long stack_used; + /* + Take address of the buf argument in order to prevent + the stack allocation made this function caller. + */ + static volatile uchar *buf_ptr = buf; DBUG_ASSERT(thd == current_thd); if ((stack_used= available_stack_size(thd->thread_stack, &stack_used)) >= (long) (my_thread_stack_size - margin)) }} |
Description |
{{monospaced text}}After update to latest GCC 10, I see the aforementioned test failing. I use -flto that enables cross module inlining and I investigated that stack overflow detection does not work in `check_stack_overrun` function in `sql_parse.cc`. It's very likely caused by optimized out the allocation of `buf` argument of the function, which is a stack variable in a caller frame.
I'm suggesting the following patch: {{diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index a8e66d2a..9cbf23d7 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -7229,10 +7229,14 @@ long max_stack_used; corresponding exec. (Thus we only have to check in fix_fields.) - Passing to check_stack_overrun() prevents the compiler from removing it. */ -bool check_stack_overrun(THD *thd, long margin, - uchar *buf __attribute__((unused))) +bool check_stack_overrun(THD *thd, long margin, uchar *buf) { long stack_used; + /* + Take address of the buf argument in order to prevent + the stack allocation made this function caller. + */ + static volatile uchar *buf_ptr = buf; DBUG_ASSERT(thd == current_thd); if ((stack_used= available_stack_size(thd->thread_stack, &stack_used)) >= (long) (my_thread_stack_size - margin)) }} |
After update to latest GCC 10, I see the aforementioned test failing. I use -flto that enables cross module inlining and I investigated that stack overflow detection does not work in `check_stack_overrun` function in {{sql_parse.cc}}. It's very likely caused by optimized out the allocation of {{buf}} argument of the function, which is a stack variable in a caller frame.
I'm suggesting the following patch: {code:java} diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index a8e66d2a..9cbf23d7 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -7229,10 +7229,14 @@ long max_stack_used; corresponding exec. (Thus we only have to check in fix_fields.) - Passing to check_stack_overrun() prevents the compiler from removing it. */ -bool check_stack_overrun(THD *thd, long margin, - uchar *buf __attribute__((unused))) +bool check_stack_overrun(THD *thd, long margin, uchar *buf) { long stack_used; + /* + Take address of the buf argument in order to prevent + the stack allocation made this function caller. + */ + static volatile uchar *buf_ptr = buf; DBUG_ASSERT(thd == current_thd); if ((stack_used= available_stack_size(thd->thread_stack, &stack_used)) >= (long) (my_thread_stack_size - margin)) {code} |
Attachment | mariadb_log.txt.bz2 [ 49624 ] |
Component/s | Server [ 13907 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Affects Version/s | 10.5 [ 23123 ] | |
Assignee | Sergey Vojtovich [ svoj ] | |
Labels | contribution |
Assignee | Sergey Vojtovich [ svoj ] | Anel Husakovic [ anel ] |
Fix Version/s | 10.5.1 [ 24029 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Workflow | MariaDB v3 [ 101723 ] | MariaDB v4 [ 157065 ] |
Hi Martin!
Thank you for your patch. Actually, we receive patches via Github Pull Requests: https://github.com/mariadb/server/pulls/
As for the patch itself, well. When I tried gcc 9.2 with -flto A LOT of tests failed. MariaDB doesn't not work for me with LTO. Nobody uses it. I've tried clang with -flto=thin and that worked for me.
Please, share your experience with LTO. Did it work for you on gcc 9? Do you use MariaDB + LTO in production?