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
96483d48
Commit
96483d48
authored
Aug 24, 2016
by
Brenden Blanco
Committed by
GitHub
Aug 24, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #670 from iamkafai/perf_submit_skb
Add perf_submit_skb
parents
a47a3b15
bdad3840
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
103 additions
and
1 deletion
+103
-1
examples/networking/CMakeLists.txt
examples/networking/CMakeLists.txt
+1
-0
examples/networking/tc_perf_event.py
examples/networking/tc_perf_event.py
+85
-0
src/cc/export/helpers.h
src/cc/export/helpers.h
+2
-1
src/cc/frontends/clang/b_frontend_action.cc
src/cc/frontends/clang/b_frontend_action.cc
+15
-0
No files found.
examples/networking/CMakeLists.txt
View file @
96483d48
set
(
EXAMPLE_FILES simulation.py
)
set
(
EXAMPLE_PROGRAMS simple_tc.py
)
set
(
EXAMPLE_PROGRAMS tc_perf_event.py
)
install
(
FILES
${
EXAMPLE_FILES
}
DESTINATION share/bcc/examples/networking
)
install
(
PROGRAMS
${
EXAMPLE_PROGRAMS
}
DESTINATION share/bcc/examples/networking
)
...
...
examples/networking/tc_perf_event.py
0 → 100755
View file @
96483d48
#!/usr/bin/env python
#
# tc_perf_event.py Output skb and meta data through perf event
#
# Copyright (c) 2016-present, Facebook, Inc.
# Licensed under the Apache License, Version 2.0 (the "License")
from
bcc
import
BPF
import
ctypes
as
ct
import
pyroute2
import
socket
bpf_txt
=
"""
#include <uapi/linux/if_ether.h>
#include <uapi/linux/in6.h>
#include <uapi/linux/ipv6.h>
#include <uapi/linux/pkt_cls.h>
#include <uapi/linux/bpf.h>
BPF_PERF_OUTPUT(skb_events);
struct eth_hdr {
unsigned char h_dest[ETH_ALEN];
unsigned char h_source[ETH_ALEN];
unsigned short h_proto;
};
int handle_egress(struct __sk_buff *skb)
{
void *data = (void *)(long)skb->data;
void *data_end = (void *)(long)skb->data_end;
struct eth_hdr *eth = data;
struct ipv6hdr *ip6h = data + sizeof(*eth);
u32 magic = 0xfaceb00c;
/* single length check */
if (data + sizeof(*eth) + sizeof(*ip6h) > data_end)
return TC_ACT_OK;
if (eth->h_proto == htons(ETH_P_IPV6) &&
ip6h->nexthdr == IPPROTO_ICMPV6)
skb_events.perf_submit_skb(skb, skb->len, &magic, sizeof(magic));
return TC_ACT_OK;
}"""
def
print_skb_event
(
cpu
,
data
,
size
):
class
SkbEvent
(
ct
.
Structure
):
_fields_
=
[
(
"magic"
,
ct
.
c_uint32
),
(
"raw"
,
ct
.
c_ubyte
*
(
size
-
ct
.
sizeof
(
ct
.
c_uint32
)))
]
skb_event
=
ct
.
cast
(
data
,
ct
.
POINTER
(
SkbEvent
)).
contents
icmp_type
=
int
(
skb_event
.
raw
[
54
])
# Only print for echo request
if
icmp_type
==
128
:
src_ip
=
bytes
(
skb_event
.
raw
[
22
:
38
])
dst_ip
=
bytes
(
skb_event
.
raw
[
38
:
54
])
print
(
"%-3s %-32s %-12s 0x%08x"
%
(
cpu
,
socket
.
inet_ntop
(
socket
.
AF_INET6
,
src_ip
),
socket
.
inet_ntop
(
socket
.
AF_INET6
,
dst_ip
),
skb_event
.
magic
))
try
:
b
=
BPF
(
text
=
bpf_txt
)
fn
=
b
.
load_func
(
"handle_egress"
,
BPF
.
SCHED_CLS
)
ipr
=
pyroute2
.
IPRoute
()
ipr
.
link
(
"add"
,
ifname
=
"me"
,
kind
=
"veth"
,
peer
=
"you"
)
me
=
ipr
.
link_lookup
(
ifname
=
"me"
)[
0
]
you
=
ipr
.
link_lookup
(
ifname
=
"you"
)[
0
]
for
idx
in
(
me
,
you
):
ipr
.
link
(
'set'
,
index
=
idx
,
state
=
'up'
)
ipr
.
tc
(
"add"
,
"clsact"
,
me
)
ipr
.
tc
(
"add-filter"
,
"bpf"
,
me
,
":1"
,
fd
=
fn
.
fd
,
name
=
fn
.
name
,
parent
=
"ffff:fff3"
,
classid
=
1
,
direct_action
=
True
)
b
[
"skb_events"
].
open_perf_buffer
(
print_skb_event
)
print
(
'Try: "ping -6 ff02::1%me"
\
n
'
)
print
(
"%-3s %-32s %-12s %-10s"
%
(
"CPU"
,
"SRC IP"
,
"DST IP"
,
"Magic"
))
while
True
:
b
.
kprobe_poll
()
finally
:
if
"me"
in
locals
():
ipr
.
link
(
"del"
,
index
=
me
)
src/cc/export/helpers.h
View file @
96483d48
...
...
@@ -67,6 +67,7 @@ struct _name##_table_t { \
u32 leaf; \
/* map.perf_submit(ctx, data, data_size) */ \
int (*perf_submit) (void *, void *, u32); \
int (*perf_submit_skb) (void *, u32, void *, u32); \
u32 data[0]; \
}; \
__attribute__((section("
maps
/
perf_output
"))) \
...
...
@@ -171,7 +172,7 @@ static int (*bpf_redirect)(int ifindex, u32 flags) =
(void *) BPF_FUNC_redirect;
static u32 (*bpf_get_route_realm)(void *ctx) =
(void *) BPF_FUNC_get_route_realm;
static int (*bpf_perf_event_output)(void *ctx, void *map, u
32
index, void *data, u32 size) =
static int (*bpf_perf_event_output)(void *ctx, void *map, u
64
index, void *data, u32 size) =
(void *) BPF_FUNC_perf_event_output;
static int (*bpf_skb_load_bytes)(void *ctx, int offset, void *to, u32 len) =
(void *) BPF_FUNC_skb_load_bytes;
...
...
src/cc/frontends/clang/b_frontend_action.cc
View file @
96483d48
...
...
@@ -396,6 +396,21 @@ bool BTypeVisitor::VisitCallExpr(CallExpr *Call) {
Call
->
getArg
(
2
)
->
getLocEnd
()));
txt
=
"bpf_perf_event_output("
+
arg0
+
", bpf_pseudo_fd(1, "
+
fd
+
")"
;
txt
+=
", bpf_get_smp_processor_id(), "
+
args_other
+
")"
;
}
else
if
(
memb_name
==
"perf_submit_skb"
)
{
string
skb
=
rewriter_
.
getRewrittenText
(
SourceRange
(
Call
->
getArg
(
0
)
->
getLocStart
(),
Call
->
getArg
(
0
)
->
getLocEnd
()));
string
skb_len
=
rewriter_
.
getRewrittenText
(
SourceRange
(
Call
->
getArg
(
1
)
->
getLocStart
(),
Call
->
getArg
(
1
)
->
getLocEnd
()));
string
meta
=
rewriter_
.
getRewrittenText
(
SourceRange
(
Call
->
getArg
(
2
)
->
getLocStart
(),
Call
->
getArg
(
2
)
->
getLocEnd
()));
string
meta_len
=
rewriter_
.
getRewrittenText
(
SourceRange
(
Call
->
getArg
(
3
)
->
getLocStart
(),
Call
->
getArg
(
3
)
->
getLocEnd
()));
txt
=
"bpf_perf_event_output("
+
skb
+
", "
+
"bpf_pseudo_fd(1, "
+
fd
+
"), "
+
"((__u64)"
+
skb_len
+
" << 32) | BPF_F_CURRENT_CPU, "
+
meta
+
", "
+
meta_len
+
");"
;
}
else
if
(
memb_name
==
"get_stackid"
)
{
if
(
table_it
->
type
==
BPF_MAP_TYPE_STACK_TRACE
)
{
string
arg0
=
rewriter_
.
getRewrittenText
(
SourceRange
(
Call
->
getArg
(
0
)
->
getLocStart
(),
...
...
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