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
403991aa
Commit
403991aa
authored
Jul 08, 2013
by
Yoni Fogel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refs Tokutek/ft-index#28 Use prctl (on any linux) even if it is too old for PR_SET_PTRACER.
Ignore any error caused by this
parent
53a9e3fa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
+16
-2
cmake_modules/TokuFeatureDetection.cmake
cmake_modules/TokuFeatureDetection.cmake
+1
-0
portability/toku_crash.cc
portability/toku_crash.cc
+2
-2
toku_include/toku_portability.h
toku_include/toku_portability.h
+13
-0
No files found.
cmake_modules/TokuFeatureDetection.cmake
View file @
403991aa
...
@@ -62,6 +62,7 @@ check_symbol_exists(O_DIRECT "fcntl.h" HAVE_O_DIRECT)
...
@@ -62,6 +62,7 @@ check_symbol_exists(O_DIRECT "fcntl.h" HAVE_O_DIRECT)
check_symbol_exists
(
F_NOCACHE
"fcntl.h"
HAVE_F_NOCACHE
)
check_symbol_exists
(
F_NOCACHE
"fcntl.h"
HAVE_F_NOCACHE
)
check_symbol_exists
(
MAP_ANONYMOUS
"sys/mman.h"
HAVE_MAP_ANONYMOUS
)
check_symbol_exists
(
MAP_ANONYMOUS
"sys/mman.h"
HAVE_MAP_ANONYMOUS
)
check_symbol_exists
(
PR_SET_PTRACER
"sys/prctl.h"
HAVE_PR_SET_PTRACER
)
check_symbol_exists
(
PR_SET_PTRACER
"sys/prctl.h"
HAVE_PR_SET_PTRACER
)
check_symbol_exists
(
PR_SET_PTRACER_ANY
"sys/prctl.h"
HAVE_PR_SET_PTRACER_ANY
)
include
(
CheckFunctionExists
)
include
(
CheckFunctionExists
)
...
...
portability/toku_crash.cc
View file @
403991aa
...
@@ -127,7 +127,7 @@ run_gdb(pid_t parent_pid, const char *gdb_path) {
...
@@ -127,7 +127,7 @@ run_gdb(pid_t parent_pid, const char *gdb_path) {
static
void
static
void
intermediate_process
(
pid_t
parent_pid
,
const
char
*
gdb_path
)
{
intermediate_process
(
pid_t
parent_pid
,
const
char
*
gdb_path
)
{
// Disable generating of core dumps
// Disable generating of core dumps
#if defined(HAVE_SYS_PRCTL_H)
&& defined(HAVE_PR_SET_PTRACER)
#if defined(HAVE_SYS_PRCTL_H)
prctl
(
PR_SET_DUMPABLE
,
0
,
0
,
0
);
prctl
(
PR_SET_DUMPABLE
,
0
,
0
,
0
);
#endif
#endif
pid_t
worker_pid
=
fork
();
pid_t
worker_pid
=
fork
();
...
@@ -180,7 +180,7 @@ failure:
...
@@ -180,7 +180,7 @@ failure:
static
void
static
void
spawn_gdb
(
const
char
*
gdb_path
)
{
spawn_gdb
(
const
char
*
gdb_path
)
{
pid_t
parent_pid
=
getpid
();
pid_t
parent_pid
=
getpid
();
#if defined(HAVE_SYS_PRCTL_H)
&& defined(HAVE_PR_SET_PTRACER)
#if defined(HAVE_SYS_PRCTL_H)
// On systems that require permission for the same user to ptrace,
// On systems that require permission for the same user to ptrace,
// give permission for this process and (more importantly) all its children to debug this process.
// give permission for this process and (more importantly) all its children to debug this process.
prctl
(
PR_SET_PTRACER
,
parent_pid
,
0
,
0
,
0
);
prctl
(
PR_SET_PTRACER
,
parent_pid
,
0
,
0
,
0
);
...
...
toku_include/toku_portability.h
View file @
403991aa
...
@@ -208,6 +208,19 @@ typedef int64_t toku_off_t;
...
@@ -208,6 +208,19 @@ typedef int64_t toku_off_t;
#endif
#endif
// Define some constants for Yama in case the build-machine's software is too old.
#if !defined(HAVE_PR_SET_PTRACER)
/*
* Set specific pid that is allowed to ptrace the current task.
* A value of 0 mean "no process".
*/
// Well defined ("Yama" in ascii)
#define PR_SET_PTRACER 0x59616d61
#endif
#if !defined(HAVE_PR_SET_PTRACER_ANY)
#define PR_SET_PTRACER_ANY ((unsigned long)-1)
#endif
#if defined(__cplusplus)
#if defined(__cplusplus)
// decltype() here gives a reference-to-pointer instead of just a pointer,
// decltype() here gives a reference-to-pointer instead of just a pointer,
// just use __typeof__
// just use __typeof__
...
...
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