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
4b3d2b08
Commit
4b3d2b08
authored
May 22, 2017
by
4ast
Committed by
GitHub
May 22, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1193 from palmtenor/cppleak
Fix bcc_resolve_symname memory leak in C++ API
parents
0feb40e6
c34a99a6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
12 deletions
+25
-12
src/cc/BPF.cc
src/cc/BPF.cc
+22
-11
src/cc/BPF.h
src/cc/BPF.h
+3
-1
No files found.
src/cc/BPF.cc
View file @
4b3d2b08
...
@@ -184,11 +184,11 @@ StatusTuple BPF::attach_uprobe(const std::string& binary_path,
...
@@ -184,11 +184,11 @@ StatusTuple BPF::attach_uprobe(const std::string& binary_path,
bpf_probe_attach_type
attach_type
,
bpf_probe_attach_type
attach_type
,
pid_t
pid
,
int
cpu
,
int
group_fd
,
pid_t
pid
,
int
cpu
,
int
group_fd
,
perf_reader_cb
cb
,
void
*
cb_cookie
)
{
perf_reader_cb
cb
,
void
*
cb_cookie
)
{
bcc_symbol
sym
=
bcc_symbol
();
std
::
string
module
;
TRY2
(
check_binary_symbol
(
binary_path
,
symbol
,
symbol_addr
,
&
sym
));
uint64_t
offset
;
TRY2
(
check_binary_symbol
(
binary_path
,
symbol
,
symbol_addr
,
module
,
offset
));
std
::
string
probe_event
=
std
::
string
probe_event
=
get_uprobe_event
(
module
,
offset
,
attach_type
);
get_uprobe_event
(
sym
.
module
,
sym
.
offset
,
attach_type
);
if
(
uprobes_
.
find
(
probe_event
)
!=
uprobes_
.
end
())
if
(
uprobes_
.
find
(
probe_event
)
!=
uprobes_
.
end
())
return
StatusTuple
(
-
1
,
"uprobe %s already attached"
,
probe_event
.
c_str
());
return
StatusTuple
(
-
1
,
"uprobe %s already attached"
,
probe_event
.
c_str
());
...
@@ -197,7 +197,7 @@ StatusTuple BPF::attach_uprobe(const std::string& binary_path,
...
@@ -197,7 +197,7 @@ StatusTuple BPF::attach_uprobe(const std::string& binary_path,
void
*
res
=
void
*
res
=
bpf_attach_uprobe
(
probe_fd
,
attach_type
,
probe_event
.
c_str
(),
binary_path
.
c_str
(),
bpf_attach_uprobe
(
probe_fd
,
attach_type
,
probe_event
.
c_str
(),
binary_path
.
c_str
(),
sym
.
offset
,
pid
,
cpu
,
group_fd
,
cb
,
cb_cookie
);
offset
,
pid
,
cpu
,
group_fd
,
cb
,
cb_cookie
);
if
(
!
res
)
{
if
(
!
res
)
{
TRY2
(
unload_func
(
probe_func
));
TRY2
(
unload_func
(
probe_func
));
...
@@ -337,10 +337,11 @@ StatusTuple BPF::detach_kprobe(const std::string& kernel_func,
...
@@ -337,10 +337,11 @@ StatusTuple BPF::detach_kprobe(const std::string& kernel_func,
StatusTuple
BPF
::
detach_uprobe
(
const
std
::
string
&
binary_path
,
StatusTuple
BPF
::
detach_uprobe
(
const
std
::
string
&
binary_path
,
const
std
::
string
&
symbol
,
uint64_t
symbol_addr
,
const
std
::
string
&
symbol
,
uint64_t
symbol_addr
,
bpf_probe_attach_type
attach_type
)
{
bpf_probe_attach_type
attach_type
)
{
bcc_symbol
sym
=
bcc_symbol
();
std
::
string
module
;
TRY2
(
check_binary_symbol
(
binary_path
,
symbol
,
symbol_addr
,
&
sym
));
uint64_t
offset
;
TRY2
(
check_binary_symbol
(
binary_path
,
symbol
,
symbol_addr
,
module
,
offset
));
std
::
string
event
=
get_uprobe_event
(
sym
.
module
,
sym
.
offset
,
attach_type
);
std
::
string
event
=
get_uprobe_event
(
module
,
offset
,
attach_type
);
auto
it
=
uprobes_
.
find
(
event
);
auto
it
=
uprobes_
.
find
(
event
);
if
(
it
==
uprobes_
.
end
())
if
(
it
==
uprobes_
.
end
())
return
StatusTuple
(
-
1
,
"No open %suprobe for binary %s symbol %s addr %lx"
,
return
StatusTuple
(
-
1
,
"No open %suprobe for binary %s symbol %s addr %lx"
,
...
@@ -468,14 +469,24 @@ StatusTuple BPF::unload_func(const std::string& func_name) {
...
@@ -468,14 +469,24 @@ StatusTuple BPF::unload_func(const std::string& func_name) {
StatusTuple
BPF
::
check_binary_symbol
(
const
std
::
string
&
binary_path
,
StatusTuple
BPF
::
check_binary_symbol
(
const
std
::
string
&
binary_path
,
const
std
::
string
&
symbol
,
const
std
::
string
&
symbol
,
uint64_t
symbol_addr
,
bcc_symbol
*
output
)
{
uint64_t
symbol_addr
,
// TODO: Fix output.module memory leak here
std
::
string
&
module_res
,
uint64_t
&
offset_res
)
{
bcc_symbol
output
;
int
res
=
bcc_resolve_symname
(
binary_path
.
c_str
(),
symbol
.
c_str
(),
int
res
=
bcc_resolve_symname
(
binary_path
.
c_str
(),
symbol
.
c_str
(),
symbol_addr
,
0
,
nullptr
,
output
);
symbol_addr
,
-
1
,
nullptr
,
&
output
);
if
(
res
<
0
)
if
(
res
<
0
)
return
StatusTuple
(
return
StatusTuple
(
-
1
,
"Unable to find offset for binary %s symbol %s address %lx"
,
-
1
,
"Unable to find offset for binary %s symbol %s address %lx"
,
binary_path
.
c_str
(),
symbol
.
c_str
(),
symbol_addr
);
binary_path
.
c_str
(),
symbol
.
c_str
(),
symbol_addr
);
if
(
output
.
module
)
{
module_res
=
output
.
module
;
::
free
(
const_cast
<
char
*>
(
output
.
module
));
}
else
{
module_res
=
""
;
}
offset_res
=
output
.
offset
;
return
StatusTuple
(
0
);
return
StatusTuple
(
0
);
}
}
...
...
src/cc/BPF.h
View file @
4b3d2b08
...
@@ -171,7 +171,9 @@ private:
...
@@ -171,7 +171,9 @@ private:
StatusTuple
check_binary_symbol
(
const
std
::
string
&
binary_path
,
StatusTuple
check_binary_symbol
(
const
std
::
string
&
binary_path
,
const
std
::
string
&
symbol
,
const
std
::
string
&
symbol
,
uint64_t
symbol_addr
,
bcc_symbol
*
output
);
uint64_t
symbol_addr
,
std
::
string
&
module_res
,
uint64_t
&
offset_res
);
std
::
unique_ptr
<
BPFModule
>
bpf_module_
;
std
::
unique_ptr
<
BPFModule
>
bpf_module_
;
...
...
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