Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
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
bcc
Commits
b58a0d7e
Commit
b58a0d7e
authored
Jul 18, 2017
by
4ast
Committed by
GitHub
Jul 18, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1261 from iovisor/yhs_dev
generate proper usdt code to prevent llvm meddling with ctx->#fields
parents
5f7035e4
8206f547
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
src/cc/usdt.h
src/cc/usdt.h
+3
-0
src/cc/usdt_args.cc
src/cc/usdt_args.cc
+11
-4
No files found.
src/cc/usdt.h
View file @
b58a0d7e
...
...
@@ -35,6 +35,9 @@ class ArgumentParser;
static
const
std
::
string
USDT_PROGRAM_HEADER
=
"#include <uapi/linux/ptrace.h>
\n
"
;
static
const
std
::
string
COMPILER_BARRIER
=
"__asm__ __volatile__(
\"\"
: : :
\"
memory
\"
);"
;
class
Argument
{
private:
optional
<
int
>
arg_size_
;
...
...
src/cc/usdt_args.cc
View file @
b58a0d7e
...
...
@@ -67,20 +67,27 @@ bool Argument::assign_to_local(std::ostream &stream,
}
if
(
!
deref_offset_
)
{
tfm
::
format
(
stream
,
"%s = *(volatile %s *)&ctx->%s;"
,
local_name
,
ctype
(),
*
base_register_name_
);
tfm
::
format
(
stream
,
"%s = ctx->%s;"
,
local_name
,
*
base_register_name_
);
// Put a compiler barrier to prevent optimization
// like llvm SimplifyCFG SinkThenElseCodeToEnd
// Volatile marking is not sufficient to prevent such optimization.
tfm
::
format
(
stream
,
" %s"
,
COMPILER_BARRIER
);
return
true
;
}
if
(
deref_offset_
&&
!
deref_ident_
)
{
tfm
::
format
(
stream
,
"{ u64 __addr =
(*(volatile u64 *)&ctx->%s) + (%d)
"
,
tfm
::
format
(
stream
,
"{ u64 __addr =
ctx->%s + %d
"
,
*
base_register_name_
,
*
deref_offset_
);
if
(
index_register_name_
)
{
int
scale
=
scale_
.
value_or
(
1
);
tfm
::
format
(
stream
,
" + (
(*(volatile u64 *)&ctx->%s)
* %d);"
,
*
index_register_name_
,
scale
);
tfm
::
format
(
stream
,
" + (
ctx->%s
* %d);"
,
*
index_register_name_
,
scale
);
}
else
{
tfm
::
format
(
stream
,
";"
);
}
// Theoretically, llvm SimplifyCFG SinkThenElseCodeToEnd may still
// sink bpf_probe_read call, so put a barrier here to prevent sinking
// of ctx->#fields.
tfm
::
format
(
stream
,
" %s "
,
COMPILER_BARRIER
);
tfm
::
format
(
stream
,
"%s __res = 0x0; "
"bpf_probe_read(&__res, sizeof(__res), (void *)__addr); "
...
...
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