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
a112514c
Commit
a112514c
authored
Jan 31, 2017
by
Derek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
undo rebase
parent
be0d60b4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
13 deletions
+11
-13
tools/argdist.py
tools/argdist.py
+10
-12
tools/cpudist.py
tools/cpudist.py
+1
-1
No files found.
tools/argdist.py
View file @
a112514c
...
@@ -20,7 +20,7 @@ import sys
...
@@ -20,7 +20,7 @@ import sys
class
Probe
(
object
):
class
Probe
(
object
):
next_probe_index
=
0
next_probe_index
=
0
streq_index
=
0
streq_index
=
0
aliases
=
{
"$PID"
:
"
(bpf_get_current_pid_tgid() >> 32
)"
}
aliases
=
{
"$PID"
:
"
bpf_get_current_pid_tgid(
)"
}
def
_substitute_aliases
(
self
,
expr
):
def
_substitute_aliases
(
self
,
expr
):
if
expr
is
None
:
if
expr
is
None
:
...
@@ -47,9 +47,7 @@ class Probe(object):
...
@@ -47,9 +47,7 @@ class Probe(object):
text
=
"""
text
=
"""
int PROBENAME(struct pt_regs *ctx SIGNATURE)
int PROBENAME(struct pt_regs *ctx SIGNATURE)
{
{
u64 __pid_tgid = bpf_get_current_pid_tgid();
u32 pid = bpf_get_current_pid_tgid();
u32 __pid = __pid_tgid; // lower 32 bits
u32 __tgid = __pid_tgid >> 32; // upper 32 bits
PID_FILTER
PID_FILTER
COLLECT
COLLECT
return 0;
return 0;
...
@@ -58,17 +56,19 @@ int PROBENAME(struct pt_regs *ctx SIGNATURE)
...
@@ -58,17 +56,19 @@ int PROBENAME(struct pt_regs *ctx SIGNATURE)
text
=
text
.
replace
(
"PROBENAME"
,
self
.
entry_probe_func
)
text
=
text
.
replace
(
"PROBENAME"
,
self
.
entry_probe_func
)
text
=
text
.
replace
(
"SIGNATURE"
,
text
=
text
.
replace
(
"SIGNATURE"
,
""
if
len
(
self
.
signature
)
==
0
else
", "
+
self
.
signature
)
""
if
len
(
self
.
signature
)
==
0
else
", "
+
self
.
signature
)
text
=
text
.
replace
(
"PID_FILTER"
,
self
.
_generate_pid_filter
())
pid_filter
=
""
if
self
.
is_user
or
self
.
pid
is
None
\
else
"if (pid != %d) { return 0; }"
%
self
.
pid
text
=
text
.
replace
(
"PID_FILTER"
,
pid_filter
)
collect
=
""
collect
=
""
for
pname
in
self
.
args_to_probe
:
for
pname
in
self
.
args_to_probe
:
param_hash
=
self
.
hashname_prefix
+
pname
param_hash
=
self
.
hashname_prefix
+
pname
if
pname
==
"__latency"
:
if
pname
==
"__latency"
:
collect
+=
"""
collect
+=
"""
u64 __time = bpf_ktime_get_ns();
u64 __time = bpf_ktime_get_ns();
%s.update(&
__
pid, &__time);
%s.update(&pid, &__time);
"""
%
param_hash
"""
%
param_hash
else
:
else
:
collect
+=
"%s.update(&
__
pid, &%s);
\
n
"
%
\
collect
+=
"%s.update(&pid, &%s);
\
n
"
%
\
(
param_hash
,
pname
)
(
param_hash
,
pname
)
text
=
text
.
replace
(
"COLLECT"
,
collect
)
text
=
text
.
replace
(
"COLLECT"
,
collect
)
return
text
return
text
...
@@ -108,7 +108,7 @@ u64 __time = bpf_ktime_get_ns();
...
@@ -108,7 +108,7 @@ u64 __time = bpf_ktime_get_ns();
# argument we needed to probe using $entry(name), and they all
# argument we needed to probe using $entry(name), and they all
# have values (which isn't necessarily the case if we missed
# have values (which isn't necessarily the case if we missed
# the method entry probe).
# the method entry probe).
text = ""
text = "
u32
__pid
=
bpf_get_current_pid_tgid
();
\
n
"
self.param_val_names = {}
self.param_val_names = {}
for pname in self.args_to_probe:
for pname in self.args_to_probe:
val_name = "
__
%
s_val
" % pname
val_name = "
__
%
s_val
" % pname
...
@@ -345,7 +345,8 @@ static inline bool %s(char const *ignored, char const *str) {
...
@@ -345,7 +345,8 @@ static inline bool %s(char const *ignored, char const *str) {
# Kernel probes need to explicitly filter pid, because the
# Kernel probes need to explicitly filter pid, because the
# attach interface doesn't support pid filtering
# attach interface doesn't support pid filtering
if
self
.
pid
is
not
None
and
not
self
.
is_user
:
if
self
.
pid
is
not
None
and
not
self
.
is_user
:
return
"if (__tgid != %d) { return 0; }"
%
self
.
pid
return
"u32 pid = bpf_get_current_pid_tgid();
\
n
"
+
\
"if (pid != %d) { return 0; }"
%
self
.
pid
else
:
else
:
return
""
return
""
...
@@ -359,9 +360,6 @@ DATA_DECL
...
@@ -359,9 +360,6 @@ DATA_DECL
if
self
.
probe_type
==
"t"
if
self
.
probe_type
==
"t"
else
"int PROBENAME(struct pt_regs *ctx SIGNATURE)"
)
+
"""
else
"int PROBENAME(struct pt_regs *ctx SIGNATURE)"
)
+
"""
{
{
u64 __pid_tgid = bpf_get_current_pid_tgid();
u32 __pid = __pid_tgid; // lower 32 bits
u32 __tgid = __pid_tgid >> 32; // upper 32 bits
PID_FILTER
PID_FILTER
PREFIX
PREFIX
if (!(FILTER)) return 0;
if (!(FILTER)) return 0;
...
...
tools/cpudist.py
View file @
a112514c
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
# Licensed under the Apache License, Version 2.0 (the "License")
# Licensed under the Apache License, Version 2.0 (the "License")
from
__future__
import
print_function
from
__future__
import
print_function
from
bcc
import
BPF
from
bcc
import
BPF
,
Tracepoint
from
time
import
sleep
,
strftime
from
time
import
sleep
,
strftime
import
argparse
import
argparse
...
...
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