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
fa39b2a3
Commit
fa39b2a3
authored
Jul 05, 2013
by
Yoni Fogel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refs Tokutek/ft-index#28 Add function to attach gdb to the running process and extract information.
parent
9d1d1470
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
223 additions
and
3 deletions
+223
-3
buildheader/make_tdb.cc
buildheader/make_tdb.cc
+1
-0
portability/CMakeLists.txt
portability/CMakeLists.txt
+1
-0
portability/toku_assert.cc
portability/toku_assert.cc
+6
-3
portability/toku_crash.cc
portability/toku_crash.cc
+205
-0
portability/toku_crash.h
portability/toku_crash.h
+2
-0
src/export.map
src/export.map
+1
-0
src/ydb_env_func.cc
src/ydb_env_func.cc
+4
-0
toku_include/toku_assert.h
toku_include/toku_assert.h
+1
-0
toku_include/toku_portability.h
toku_include/toku_portability.h
+1
-0
toku_include/toku_race_tools.h
toku_include/toku_race_tools.h
+1
-0
No files found.
buildheader/make_tdb.cc
View file @
fa39b2a3
...
@@ -820,6 +820,7 @@ int main (int argc, char *const argv[] __attribute__((__unused__))) {
...
@@ -820,6 +820,7 @@ int main (int argc, char *const argv[] __attribute__((__unused__))) {
printf
(
"void db_env_set_flusher_thread_callback (void (*)(int, void*), void*) %s;
\n
"
,
VISIBLE
);
printf
(
"void db_env_set_flusher_thread_callback (void (*)(int, void*), void*) %s;
\n
"
,
VISIBLE
);
printf
(
"void db_env_set_num_bucket_mutexes(uint32_t) %s;
\n
"
,
VISIBLE
);
printf
(
"void db_env_set_num_bucket_mutexes(uint32_t) %s;
\n
"
,
VISIBLE
);
printf
(
"int db_env_set_toku_product_name(const char*) %s;
\n
"
,
VISIBLE
);
printf
(
"int db_env_set_toku_product_name(const char*) %s;
\n
"
,
VISIBLE
);
printf
(
"void db_env_try_gdb_stack_trace(const char *gdb_path) %s;
\n
"
,
VISIBLE
);
printf
(
"#if defined(__cplusplus) || defined(__cilkplusplus)
\n
}
\n
#endif
\n
"
);
printf
(
"#if defined(__cplusplus) || defined(__cilkplusplus)
\n
}
\n
#endif
\n
"
);
printf
(
"#endif
\n
"
);
printf
(
"#endif
\n
"
);
...
...
portability/CMakeLists.txt
View file @
fa39b2a3
...
@@ -7,6 +7,7 @@ set(tokuportability_srcs
...
@@ -7,6 +7,7 @@ set(tokuportability_srcs
os_malloc
os_malloc
portability
portability
toku_assert
toku_assert
toku_crash
toku_fair_rwlock
toku_fair_rwlock
toku_path
toku_path
toku_pthread
toku_pthread
...
...
portability/toku_assert.cc
View file @
fa39b2a3
...
@@ -134,6 +134,7 @@ void toku_assert_set_fpointers(int (*toku_maybe_get_engine_status_text_pointer)(
...
@@ -134,6 +134,7 @@ void toku_assert_set_fpointers(int (*toku_maybe_get_engine_status_text_pointer)(
engine_status_num_rows
=
num_rows
;
engine_status_num_rows
=
num_rows
;
}
}
bool
toku_gdb_dump_on_assert
=
false
;
void
(
*
do_assert_hook
)(
void
)
=
NULL
;
void
(
*
do_assert_hook
)(
void
)
=
NULL
;
static
void
toku_do_backtrace_abort
(
void
)
__attribute__
((
noreturn
));
static
void
toku_do_backtrace_abort
(
void
)
__attribute__
((
noreturn
));
...
@@ -164,7 +165,11 @@ toku_do_backtrace_abort(void) {
...
@@ -164,7 +165,11 @@ toku_do_backtrace_abort(void) {
malloc_stats_f
();
malloc_stats_f
();
}
}
fflush
(
stderr
);
fflush
(
stderr
);
if
(
do_assert_hook
)
do_assert_hook
();
if
(
toku_gdb_dump_on_assert
)
{
toku_try_gdb_stack_trace
(
nullptr
);
}
#if TOKU_WINDOWS
#if TOKU_WINDOWS
//Following commented methods will not always end the process (could hang).
//Following commented methods will not always end the process (could hang).
...
@@ -182,8 +187,6 @@ toku_do_backtrace_abort(void) {
...
@@ -182,8 +187,6 @@ toku_do_backtrace_abort(void) {
//Terminate the process
//Terminate the process
#endif
#endif
if
(
do_assert_hook
)
do_assert_hook
();
abort
();
abort
();
}
}
...
...
portability/toku_crash.cc
0 → 100644
View file @
fa39b2a3
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
#ident "$Id$"
/*
COPYING CONDITIONS NOTICE:
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as
published by the Free Software Foundation, and provided that the
following conditions are met:
* Redistributions of source code must retain this COPYING
CONDITIONS NOTICE, the COPYRIGHT NOTICE (below), the
DISCLAIMER (below), the UNIVERSITY PATENT NOTICE (below), the
PATENT MARKING NOTICE (below), and the PATENT RIGHTS
GRANT (below).
* Redistributions in binary form must reproduce this COPYING
CONDITIONS NOTICE, the COPYRIGHT NOTICE (below), the
DISCLAIMER (below), the UNIVERSITY PATENT NOTICE (below), the
PATENT MARKING NOTICE (below), and the PATENT RIGHTS
GRANT (below) in the documentation and/or other materials
provided with the distribution.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
COPYRIGHT NOTICE:
TokuDB, Tokutek Fractal Tree Indexing Library.
Copyright (C) 2007-2013 Tokutek, Inc.
DISCLAIMER:
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
UNIVERSITY PATENT NOTICE:
The technology is licensed by the Massachusetts Institute of
Technology, Rutgers State University of New Jersey, and the Research
Foundation of State University of New York at Stony Brook under
United States of America Serial No. 11/760379 and to the patents
and/or patent applications resulting from it.
PATENT MARKING NOTICE:
This software is covered by US Patent No. 8,185,551.
PATENT RIGHTS GRANT:
"THIS IMPLEMENTATION" means the copyrightable works distributed by
Tokutek as part of the Fractal Tree project.
"PATENT CLAIMS" means the claims of patents that are owned or
licensable by Tokutek, both currently or in the future; and that in
the absence of this license would be infringed by THIS
IMPLEMENTATION or by using or running THIS IMPLEMENTATION.
"PATENT CHALLENGE" shall mean a challenge to the validity,
patentability, enforceability and/or non-infringement of any of the
PATENT CLAIMS or otherwise opposing any of the PATENT CLAIMS.
Tokutek hereby grants to you, for the term and geographical scope of
the PATENT CLAIMS, a non-exclusive, no-charge, royalty-free,
irrevocable (except as stated in this section) patent license to
make, have made, use, offer to sell, sell, import, transfer, and
otherwise run, modify, and propagate the contents of THIS
IMPLEMENTATION, where such license applies only to the PATENT
CLAIMS. This grant does not include claims that would be infringed
only as a consequence of further modifications of THIS
IMPLEMENTATION. If you or your agent or licensee institute or order
or agree to the institution of patent litigation against any entity
(including a cross-claim or counterclaim in a lawsuit) alleging that
THIS IMPLEMENTATION constitutes direct or contributory patent
infringement, or inducement of patent infringement, then any rights
granted to you under this License shall terminate as of the date
such litigation is filed. If you or your agent or exclusive
licensee institute or order or agree to the institution of a PATENT
CHALLENGE, then Tokutek may terminate any rights granted to you
under this License.
*/
#ident "Copyright (c) 2007-2013 Tokutek Inc. All rights reserved."
#include <unistd.h>
#include <sys/prctl.h>
//#include <sys/types.h>
#include <sys/wait.h>
#include <toku_race_tools.h>
#include "toku_crash.h"
#include "toku_atomic.h"
enum
{
MAX_GDB_ARGS
=
128
};
static
void
run_gdb
(
pid_t
parent_pid
,
const
char
*
gdb_path
)
{
// 3 bytes per intbyte, null byte
char
pid_buf
[
sizeof
(
pid_t
)
*
3
+
1
];
char
exe_buf
[
sizeof
(
pid_buf
)
+
sizeof
(
"/proc//exe"
)];
// Get pid and path to executable.
int
n
;
n
=
snprintf
(
pid_buf
,
sizeof
(
pid_buf
),
"%d"
,
parent_pid
);
paranoid_invariant
(
n
>=
0
&&
n
<
(
int
)
sizeof
(
pid_buf
));
n
=
snprintf
(
exe_buf
,
sizeof
(
exe_buf
),
"/proc/%d/exe"
,
parent_pid
);
paranoid_invariant
(
n
>=
0
&&
n
<
(
int
)
sizeof
(
exe_buf
));
dup2
(
2
,
1
);
// redirect output to stderr
// Arguments are not dynamic due to possible security holes.
execlp
(
gdb_path
,
gdb_path
,
"--batch"
,
"-n"
,
"-ex"
,
"thread"
,
"-ex"
,
"bt"
,
"-ex"
,
"bt full"
,
"-ex"
,
"thread apply all bt"
,
"-ex"
,
"thread apply all bt full"
,
exe_buf
,
pid_buf
,
NULL
);
}
static
void
intermediate_process
(
pid_t
parent_pid
,
const
char
*
gdb_path
)
{
// Disable generating of core dumps
prctl
(
PR_SET_DUMPABLE
,
0
,
0
,
0
);
pid_t
worker_pid
=
fork
();
if
(
worker_pid
<
0
)
{
perror
(
"spawn gdb fork: "
);
goto
failure
;
}
if
(
worker_pid
==
0
)
{
// Child (debugger)
run_gdb
(
parent_pid
,
gdb_path
);
// Normally run_gdb will not return.
// In case it does, kill the process.
goto
failure
;
}
else
{
pid_t
timeout_pid
=
fork
();
if
(
timeout_pid
<
0
)
{
perror
(
"spawn timeout fork: "
);
kill
(
worker_pid
,
SIGKILL
);
goto
failure
;
}
if
(
timeout_pid
==
0
)
{
sleep
(
5
);
// Timeout of 5 seconds
goto
success
;
}
else
{
pid_t
exited_pid
=
wait
(
NULL
);
// Wait for first child to exit
if
(
exited_pid
==
worker_pid
)
{
// Kill slower child
kill
(
timeout_pid
,
SIGKILL
);
goto
success
;
}
else
if
(
exited_pid
==
timeout_pid
)
{
// Kill slower child
kill
(
worker_pid
,
SIGKILL
);
goto
failure
;
// Timed out.
}
else
{
perror
(
"error while waiting for gdb or timer to end: "
);
//Some failure. Kill everything.
kill
(
timeout_pid
,
SIGKILL
);
kill
(
worker_pid
,
SIGKILL
);
goto
failure
;
}
}
}
success:
_exit
(
EXIT_SUCCESS
);
failure:
_exit
(
EXIT_FAILURE
);
}
static
void
spawn_gdb
(
const
char
*
gdb_path
)
{
pid_t
parent_pid
=
getpid
();
// Give permission for this process and (more importantly) all its children to debug this process.
prctl
(
PR_SET_PTRACER
,
parent_pid
,
0
,
0
,
0
);
fprintf
(
stderr
,
"Attempting to use gdb @[%s] on pid[%d]
\n
"
,
gdb_path
,
parent_pid
);
fflush
(
stderr
);
int
intermediate_pid
=
fork
();
if
(
intermediate_pid
<
0
)
{
perror
(
"spawn_gdb intermediate process fork: "
);
}
else
if
(
intermediate_pid
==
0
)
{
intermediate_process
(
parent_pid
,
gdb_path
);
}
else
{
waitpid
(
intermediate_pid
,
NULL
,
0
);
}
}
void
toku_try_gdb_stack_trace
(
const
char
*
gdb_path
)
{
char
default_gdb_path
[]
=
"/usr/bin/gdb"
;
static
bool
started
=
false
;
if
(
RUNNING_ON_VALGRIND
)
{
fprintf
(
stderr
,
"gdb stack trace skipped due to running under valgrind
\n
"
);
fflush
(
stderr
);
}
else
if
(
toku_sync_bool_compare_and_swap
(
&
started
,
false
,
true
))
{
spawn_gdb
(
gdb_path
?
gdb_path
:
default_gdb_path
);
}
}
portability/toku_crash.h
View file @
fa39b2a3
...
@@ -197,4 +197,6 @@ toku_crash_and_dump_core_on_purpose(void) {
...
@@ -197,4 +197,6 @@ toku_crash_and_dump_core_on_purpose(void) {
}
}
}
}
void
toku_try_gdb_stack_trace
(
const
char
*
gdb_path
);
#endif // PORTABILITY_TOKU_CRASH_H
#endif // PORTABILITY_TOKU_CRASH_H
src/export.map
View file @
fa39b2a3
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
db_env_set_flusher_thread_callback;
db_env_set_flusher_thread_callback;
db_env_set_num_bucket_mutexes;
db_env_set_num_bucket_mutexes;
db_env_set_toku_product_name;
db_env_set_toku_product_name;
db_env_try_gdb_stack_trace;
read_partitioned_counter;
read_partitioned_counter;
...
...
src/ydb_env_func.cc
View file @
fa39b2a3
...
@@ -226,3 +226,7 @@ db_env_set_num_bucket_mutexes(uint32_t num_mutexes) {
...
@@ -226,3 +226,7 @@ db_env_set_num_bucket_mutexes(uint32_t num_mutexes) {
toku_pair_list_set_lock_size
(
num_mutexes
);
toku_pair_list_set_lock_size
(
num_mutexes
);
}
}
void
db_env_try_gdb_stack_trace
(
const
char
*
gdb_path
)
{
toku_try_gdb_stack_trace
(
gdb_path
);
}
toku_include/toku_assert.h
View file @
fa39b2a3
...
@@ -191,5 +191,6 @@ get_error_errno(void)
...
@@ -191,5 +191,6 @@ get_error_errno(void)
return
errno
;
return
errno
;
}
}
extern
bool
toku_gdb_dump_on_assert
;
#endif
#endif
toku_include/toku_portability.h
View file @
fa39b2a3
...
@@ -224,6 +224,7 @@ typedef int64_t toku_off_t;
...
@@ -224,6 +224,7 @@ typedef int64_t toku_off_t;
#include "toku_os.h"
#include "toku_os.h"
#include "toku_htod.h"
#include "toku_htod.h"
#include "toku_assert.h"
#include "toku_assert.h"
#include "toku_crash.h"
#define UU(x) x __attribute__((__unused__))
#define UU(x) x __attribute__((__unused__))
...
...
toku_include/toku_race_tools.h
View file @
fa39b2a3
...
@@ -134,6 +134,7 @@ PATENT RIGHTS GRANT:
...
@@ -134,6 +134,7 @@ PATENT RIGHTS GRANT:
# define TOKU_DRD_IGNORE_VAR(v)
# define TOKU_DRD_IGNORE_VAR(v)
# define TOKU_DRD_STOP_IGNORING_VAR(v)
# define TOKU_DRD_STOP_IGNORING_VAR(v)
# define TOKU_VALGRIND_RESET_MUTEX_ORDERING_INFO(mutex)
# define TOKU_VALGRIND_RESET_MUTEX_ORDERING_INFO(mutex)
# define RUNNING_ON_VALGRIND (0U)
#endif
#endif
...
...
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