Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
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
linux
Commits
4e608675
Commit
4e608675
authored
Jun 23, 2020
by
Alexei Starovoitov
Browse files
Options
Browse Files
Download
Plain Diff
Merge up to bpf_probe_read_kernel_str() fix into bpf-next
parents
9d9d8cc2
02553b91
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
24 deletions
+11
-24
include/uapi/linux/bpf.h
include/uapi/linux/bpf.h
+1
-1
kernel/trace/bpf_trace.c
kernel/trace/bpf_trace.c
+1
-1
samples/bpf/xdp_monitor_user.c
samples/bpf/xdp_monitor_user.c
+2
-6
samples/bpf/xdp_redirect_cpu_user.c
samples/bpf/xdp_redirect_cpu_user.c
+2
-5
samples/bpf/xdp_rxq_info_user.c
samples/bpf/xdp_rxq_info_user.c
+3
-10
tools/bpf/bpftool/map.c
tools/bpf/bpftool/map.c
+1
-0
tools/include/uapi/linux/bpf.h
tools/include/uapi/linux/bpf.h
+1
-1
No files found.
include/uapi/linux/bpf.h
View file @
4e608675
...
@@ -3168,7 +3168,7 @@ union bpf_attr {
...
@@ -3168,7 +3168,7 @@ union bpf_attr {
* Return
* Return
* The id is returned or 0 in case the id could not be retrieved.
* The id is returned or 0 in case the id could not be retrieved.
*
*
*
void *
bpf_ringbuf_output(void *ringbuf, void *data, u64 size, u64 flags)
*
int
bpf_ringbuf_output(void *ringbuf, void *data, u64 size, u64 flags)
* Description
* Description
* Copy *size* bytes from *data* into a ring buffer *ringbuf*.
* Copy *size* bytes from *data* into a ring buffer *ringbuf*.
* If BPF_RB_NO_WAKEUP is specified in *flags*, no notification of
* If BPF_RB_NO_WAKEUP is specified in *flags*, no notification of
...
...
kernel/trace/bpf_trace.c
View file @
4e608675
...
@@ -241,7 +241,7 @@ bpf_probe_read_kernel_str_common(void *dst, u32 size, const void *unsafe_ptr)
...
@@ -241,7 +241,7 @@ bpf_probe_read_kernel_str_common(void *dst, u32 size, const void *unsafe_ptr)
if
(
unlikely
(
ret
<
0
))
if
(
unlikely
(
ret
<
0
))
goto
fail
;
goto
fail
;
return
0
;
return
ret
;
fail:
fail:
memset
(
dst
,
0
,
size
);
memset
(
dst
,
0
,
size
);
return
ret
;
return
ret
;
...
...
samples/bpf/xdp_monitor_user.c
View file @
4e608675
...
@@ -509,11 +509,8 @@ static void *alloc_rec_per_cpu(int record_size)
...
@@ -509,11 +509,8 @@ static void *alloc_rec_per_cpu(int record_size)
{
{
unsigned
int
nr_cpus
=
bpf_num_possible_cpus
();
unsigned
int
nr_cpus
=
bpf_num_possible_cpus
();
void
*
array
;
void
*
array
;
size_t
size
;
size
=
record_size
*
nr_cpus
;
array
=
calloc
(
nr_cpus
,
record_size
);
array
=
malloc
(
size
);
memset
(
array
,
0
,
size
);
if
(
!
array
)
{
if
(
!
array
)
{
fprintf
(
stderr
,
"Mem alloc error (nr_cpus:%u)
\n
"
,
nr_cpus
);
fprintf
(
stderr
,
"Mem alloc error (nr_cpus:%u)
\n
"
,
nr_cpus
);
exit
(
EXIT_FAIL_MEM
);
exit
(
EXIT_FAIL_MEM
);
...
@@ -528,8 +525,7 @@ static struct stats_record *alloc_stats_record(void)
...
@@ -528,8 +525,7 @@ static struct stats_record *alloc_stats_record(void)
int
i
;
int
i
;
/* Alloc main stats_record structure */
/* Alloc main stats_record structure */
rec
=
malloc
(
sizeof
(
*
rec
));
rec
=
calloc
(
1
,
sizeof
(
*
rec
));
memset
(
rec
,
0
,
sizeof
(
*
rec
));
if
(
!
rec
)
{
if
(
!
rec
)
{
fprintf
(
stderr
,
"Mem alloc error
\n
"
);
fprintf
(
stderr
,
"Mem alloc error
\n
"
);
exit
(
EXIT_FAIL_MEM
);
exit
(
EXIT_FAIL_MEM
);
...
...
samples/bpf/xdp_redirect_cpu_user.c
View file @
4e608675
...
@@ -207,11 +207,8 @@ static struct datarec *alloc_record_per_cpu(void)
...
@@ -207,11 +207,8 @@ static struct datarec *alloc_record_per_cpu(void)
{
{
unsigned
int
nr_cpus
=
bpf_num_possible_cpus
();
unsigned
int
nr_cpus
=
bpf_num_possible_cpus
();
struct
datarec
*
array
;
struct
datarec
*
array
;
size_t
size
;
size
=
sizeof
(
struct
datarec
)
*
nr_cpus
;
array
=
calloc
(
nr_cpus
,
sizeof
(
struct
datarec
));
array
=
malloc
(
size
);
memset
(
array
,
0
,
size
);
if
(
!
array
)
{
if
(
!
array
)
{
fprintf
(
stderr
,
"Mem alloc error (nr_cpus:%u)
\n
"
,
nr_cpus
);
fprintf
(
stderr
,
"Mem alloc error (nr_cpus:%u)
\n
"
,
nr_cpus
);
exit
(
EXIT_FAIL_MEM
);
exit
(
EXIT_FAIL_MEM
);
...
@@ -226,11 +223,11 @@ static struct stats_record *alloc_stats_record(void)
...
@@ -226,11 +223,11 @@ static struct stats_record *alloc_stats_record(void)
size
=
sizeof
(
*
rec
)
+
n_cpus
*
sizeof
(
struct
record
);
size
=
sizeof
(
*
rec
)
+
n_cpus
*
sizeof
(
struct
record
);
rec
=
malloc
(
size
);
rec
=
malloc
(
size
);
memset
(
rec
,
0
,
size
);
if
(
!
rec
)
{
if
(
!
rec
)
{
fprintf
(
stderr
,
"Mem alloc error
\n
"
);
fprintf
(
stderr
,
"Mem alloc error
\n
"
);
exit
(
EXIT_FAIL_MEM
);
exit
(
EXIT_FAIL_MEM
);
}
}
memset
(
rec
,
0
,
size
);
rec
->
rx_cnt
.
cpu
=
alloc_record_per_cpu
();
rec
->
rx_cnt
.
cpu
=
alloc_record_per_cpu
();
rec
->
redir_err
.
cpu
=
alloc_record_per_cpu
();
rec
->
redir_err
.
cpu
=
alloc_record_per_cpu
();
rec
->
kthread
.
cpu
=
alloc_record_per_cpu
();
rec
->
kthread
.
cpu
=
alloc_record_per_cpu
();
...
...
samples/bpf/xdp_rxq_info_user.c
View file @
4e608675
...
@@ -198,11 +198,8 @@ static struct datarec *alloc_record_per_cpu(void)
...
@@ -198,11 +198,8 @@ static struct datarec *alloc_record_per_cpu(void)
{
{
unsigned
int
nr_cpus
=
bpf_num_possible_cpus
();
unsigned
int
nr_cpus
=
bpf_num_possible_cpus
();
struct
datarec
*
array
;
struct
datarec
*
array
;
size_t
size
;
size
=
sizeof
(
struct
datarec
)
*
nr_cpus
;
array
=
calloc
(
nr_cpus
,
sizeof
(
struct
datarec
));
array
=
malloc
(
size
);
memset
(
array
,
0
,
size
);
if
(
!
array
)
{
if
(
!
array
)
{
fprintf
(
stderr
,
"Mem alloc error (nr_cpus:%u)
\n
"
,
nr_cpus
);
fprintf
(
stderr
,
"Mem alloc error (nr_cpus:%u)
\n
"
,
nr_cpus
);
exit
(
EXIT_FAIL_MEM
);
exit
(
EXIT_FAIL_MEM
);
...
@@ -214,11 +211,8 @@ static struct record *alloc_record_per_rxq(void)
...
@@ -214,11 +211,8 @@ static struct record *alloc_record_per_rxq(void)
{
{
unsigned
int
nr_rxqs
=
bpf_map__def
(
rx_queue_index_map
)
->
max_entries
;
unsigned
int
nr_rxqs
=
bpf_map__def
(
rx_queue_index_map
)
->
max_entries
;
struct
record
*
array
;
struct
record
*
array
;
size_t
size
;
size
=
sizeof
(
struct
record
)
*
nr_rxqs
;
array
=
calloc
(
nr_rxqs
,
sizeof
(
struct
record
));
array
=
malloc
(
size
);
memset
(
array
,
0
,
size
);
if
(
!
array
)
{
if
(
!
array
)
{
fprintf
(
stderr
,
"Mem alloc error (nr_rxqs:%u)
\n
"
,
nr_rxqs
);
fprintf
(
stderr
,
"Mem alloc error (nr_rxqs:%u)
\n
"
,
nr_rxqs
);
exit
(
EXIT_FAIL_MEM
);
exit
(
EXIT_FAIL_MEM
);
...
@@ -232,8 +226,7 @@ static struct stats_record *alloc_stats_record(void)
...
@@ -232,8 +226,7 @@ static struct stats_record *alloc_stats_record(void)
struct
stats_record
*
rec
;
struct
stats_record
*
rec
;
int
i
;
int
i
;
rec
=
malloc
(
sizeof
(
*
rec
));
rec
=
calloc
(
1
,
sizeof
(
struct
stats_record
));
memset
(
rec
,
0
,
sizeof
(
*
rec
));
if
(
!
rec
)
{
if
(
!
rec
)
{
fprintf
(
stderr
,
"Mem alloc error
\n
"
);
fprintf
(
stderr
,
"Mem alloc error
\n
"
);
exit
(
EXIT_FAIL_MEM
);
exit
(
EXIT_FAIL_MEM
);
...
...
tools/bpf/bpftool/map.c
View file @
4e608675
...
@@ -49,6 +49,7 @@ const char * const map_type_name[] = {
...
@@ -49,6 +49,7 @@ const char * const map_type_name[] = {
[
BPF_MAP_TYPE_STACK
]
=
"stack"
,
[
BPF_MAP_TYPE_STACK
]
=
"stack"
,
[
BPF_MAP_TYPE_SK_STORAGE
]
=
"sk_storage"
,
[
BPF_MAP_TYPE_SK_STORAGE
]
=
"sk_storage"
,
[
BPF_MAP_TYPE_STRUCT_OPS
]
=
"struct_ops"
,
[
BPF_MAP_TYPE_STRUCT_OPS
]
=
"struct_ops"
,
[
BPF_MAP_TYPE_RINGBUF
]
=
"ringbuf"
,
};
};
const
size_t
map_type_name_size
=
ARRAY_SIZE
(
map_type_name
);
const
size_t
map_type_name_size
=
ARRAY_SIZE
(
map_type_name
);
...
...
tools/include/uapi/linux/bpf.h
View file @
4e608675
...
@@ -3168,7 +3168,7 @@ union bpf_attr {
...
@@ -3168,7 +3168,7 @@ union bpf_attr {
* Return
* Return
* The id is returned or 0 in case the id could not be retrieved.
* The id is returned or 0 in case the id could not be retrieved.
*
*
*
void *
bpf_ringbuf_output(void *ringbuf, void *data, u64 size, u64 flags)
*
int
bpf_ringbuf_output(void *ringbuf, void *data, u64 size, u64 flags)
* Description
* Description
* Copy *size* bytes from *data* into a ring buffer *ringbuf*.
* Copy *size* bytes from *data* into a ring buffer *ringbuf*.
* If BPF_RB_NO_WAKEUP is specified in *flags*, no notification of
* If BPF_RB_NO_WAKEUP is specified in *flags*, no notification of
...
...
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