From: Sandipan Das <hidden> Date: 2017-11-03 06:58:47
For added security, the layout of some structures can be
randomized by enabling CONFIG_GCC_PLUGIN_RANDSTRUCT. One
such structure is task_struct. To build BPF programs, we
use Clang which does not support this feature. So, if we
attempt to read a field of a structure with a randomized
layout within a BPF program, we do not get the expected
value because of incorrect offsets. To observe this, it
is not mandatory to have CONFIG_GCC_PLUGIN_RANDSTRUCT
enabled because the structure annotations/members added
for this purpose are enough to cause this. So, all kernel
builds are affected.
For example, considering samples/bpf/offwaketime_kern.c,
if we try to print the values of pid and comm inside the
task_struct passed to waker() by adding the following
lines of code at the appropriate place
char fmt[] = "waker(): p->pid = %u, p->comm = %s\n";
bpf_trace_printk(fmt, sizeof(fmt), _(p->pid), _(p->comm));
it is seen that upon rebuilding and running this sample
followed by inspecting /sys/kernel/debug/tracing/trace,
the output looks like the following
_-----=> irqs-off
/ _----=> need-resched
| / _---=> hardirq/softirq
|| / _--=> preempt-depth
||| / delay
TASK-PID CPU# |||| TIMESTAMP FUNCTION
| | | |||| | |
<idle>-0 [007] d.s. 1883.443594: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [018] d.s. 1883.453588: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [007] d.s. 1883.463584: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [009] d.s. 1883.483586: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [005] d.s. 1883.493583: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [009] d.s. 1883.503583: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [018] d.s. 1883.513578: 0x00000001: waker(): p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627660: 0x00000001: waker(): p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627704: 0x00000001: waker(): p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627723: 0x00000001: waker(): p->pid = 0, p->comm =
To avoid this, we add new BPF helpers that read the
correct values for some of the important task_struct
members such as pid, tgid, comm and flags which are
extensively used in BPF-based analysis tools such as
bcc. Since these helpers are built with GCC, they use
the correct offsets when referencing a member.
Signed-off-by: Sandipan Das <redacted>
---
include/linux/bpf.h | 3 ++
include/uapi/linux/bpf.h | 13 ++++++
kernel/bpf/core.c | 3 ++
kernel/bpf/helpers.c | 75 +++++++++++++++++++++++++++++++
kernel/trace/bpf_trace.c | 6 +++
tools/testing/selftests/bpf/bpf_helpers.h | 9 ++++
6 files changed, 109 insertions(+)
@@ -1,6 +1,8 @@#ifndef __BPF_HELPERS_H#define __BPF_HELPERS_H+structtask_struct;+/* helper macro to place programs, maps, license in*differentsectionsinelf_bpffile.Sectionnames*areinterpretedbyelf_bpfloader
@@ -31,6 +33,13 @@ static unsigned long long (*bpf_get_current_uid_gid)(void) =(void*)BPF_FUNC_get_current_uid_gid;staticint(*bpf_get_current_comm)(void*buf,intbuf_size)=(void*)BPF_FUNC_get_current_comm;+staticunsignedlonglong(*bpf_get_task_pid_tgid)(structtask_struct*task)=+(void*)BPF_FUNC_get_task_pid_tgid;+staticint(*bpf_get_task_comm)(structtask_struct*task,+void*buf,intbuf_size)=+(void*)BPF_FUNC_get_task_comm;+staticunsignedint(*bpf_get_task_flags)(structtask_struct*task)=+(void*)BPF_FUNC_get_task_flags;staticunsignedlonglong(*bpf_perf_event_read)(void*map,unsignedlonglongflags)=(void*)BPF_FUNC_perf_event_read;
For added security, the layout of some structures can be
randomized by enabling CONFIG_GCC_PLUGIN_RANDSTRUCT. One
such structure is task_struct. To build BPF programs, we
use Clang which does not support this feature. So, if we
attempt to read a field of a structure with a randomized
layout within a BPF program, we do not get the expected
value because of incorrect offsets. To observe this, it
is not mandatory to have CONFIG_GCC_PLUGIN_RANDSTRUCT
enabled because the structure annotations/members added
for this purpose are enough to cause this. So, all kernel
builds are affected.
For example, considering samples/bpf/offwaketime_kern.c,
if we try to print the values of pid and comm inside the
task_struct passed to waker() by adding the following
lines of code at the appropriate place
char fmt[] = "waker(): p->pid = %u, p->comm = %s\n";
bpf_trace_printk(fmt, sizeof(fmt), _(p->pid), _(p->comm));
it is seen that upon rebuilding and running this sample
followed by inspecting /sys/kernel/debug/tracing/trace,
the output looks like the following
_-----=> irqs-off
/ _----=> need-resched
| / _---=> hardirq/softirq
|| / _--=> preempt-depth
||| / delay
TASK-PID CPU# |||| TIMESTAMP FUNCTION
| | | |||| | |
<idle>-0 [007] d.s. 1883.443594: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [018] d.s. 1883.453588: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [007] d.s. 1883.463584: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [009] d.s. 1883.483586: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [005] d.s. 1883.493583: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [009] d.s. 1883.503583: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [018] d.s. 1883.513578: 0x00000001: waker(): p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627660: 0x00000001: waker(): p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627704: 0x00000001: waker(): p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627723: 0x00000001: waker(): p->pid = 0, p->comm =
To avoid this, we add new BPF helpers that read the
correct values for some of the important task_struct
members such as pid, tgid, comm and flags which are
extensively used in BPF-based analysis tools such as
bcc. Since these helpers are built with GCC, they use
the correct offsets when referencing a member.
Signed-off-by: Sandipan Das <redacted>
@@ -338,6 +338,16 @@ union bpf_attr {*@skb:pointertoskb*Return:classidif!=0*+*u64bpf_get_task_pid_tgid(structtask_struct*task)+*Return:task->tgid<<32|task->pid+*+*intbpf_get_task_comm(structtask_struct*task)+*Storestask->commintobuf+*Return:0onsuccessornegativeerror+*+*u32bpf_get_task_flags(structtask_struct*task)+*Return:task->flags+*
I don't think it's a solution.
Tracing scripts read other fields too.
Making it work for these 3 fields is a drop in a bucket.
If randomization is used I think we have to accept
that existing bpf scripts won't be usable.
Long term solution is to support 'BPF Type Format' or BTF
(which is old C-Type Format) for kernel data structures,
so bcc scripts wouldn't need to use kernel headers and clang.
The proper offsets will be described in BTF.
We were planning to use it initially to describe map key/value,
but it applies for this case as well.
There will be a tool that will take dwarf from vmlinux and
compress it into BTF. Kernel will also be able to verify
that BTF is a valid BTF.
I'm assuming that gcc randomization plugin produces dwarf
with correct offsets, if not, it would have to be fixed.
From: Naveen N. Rao <hidden> Date: 2017-11-04 17:31:24
Hi Alexei,
Alexei Starovoitov wrote:
On 11/3/17 3:58 PM, Sandipan Das wrote:
quoted
For added security, the layout of some structures can be
randomized by enabling CONFIG_GCC_PLUGIN_RANDSTRUCT. One
such structure is task_struct. To build BPF programs, we
use Clang which does not support this feature. So, if we
attempt to read a field of a structure with a randomized
layout within a BPF program, we do not get the expected
value because of incorrect offsets. To observe this, it
is not mandatory to have CONFIG_GCC_PLUGIN_RANDSTRUCT
enabled because the structure annotations/members added
for this purpose are enough to cause this. So, all kernel
builds are affected.
For example, considering samples/bpf/offwaketime_kern.c,
if we try to print the values of pid and comm inside the
task_struct passed to waker() by adding the following
lines of code at the appropriate place
char fmt[] = "waker(): p->pid = %u, p->comm = %s\n";
bpf_trace_printk(fmt, sizeof(fmt), _(p->pid), _(p->comm));
it is seen that upon rebuilding and running this sample
followed by inspecting /sys/kernel/debug/tracing/trace,
the output looks like the following
_-----=> irqs-off
/ _----=> need-resched
| / _---=> hardirq/softirq
|| / _--=> preempt-depth
||| / delay
TASK-PID CPU# |||| TIMESTAMP FUNCTION
| | | |||| | |
<idle>-0 [007] d.s. 1883.443594: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [018] d.s. 1883.453588: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [007] d.s. 1883.463584: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [009] d.s. 1883.483586: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [005] d.s. 1883.493583: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [009] d.s. 1883.503583: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [018] d.s. 1883.513578: 0x00000001: waker(): p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627660: 0x00000001: waker():
p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627704: 0x00000001: waker():
p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627723: 0x00000001: waker():
p->pid = 0, p->comm =
To avoid this, we add new BPF helpers that read the
correct values for some of the important task_struct
members such as pid, tgid, comm and flags which are
extensively used in BPF-based analysis tools such as
bcc. Since these helpers are built with GCC, they use
the correct offsets when referencing a member.
Signed-off-by: Sandipan Das <redacted>
@@ -338,6 +338,16 @@ union bpf_attr {*@skb:pointertoskb*Return:classidif!=0*+*u64bpf_get_task_pid_tgid(structtask_struct*task)+*Return:task->tgid<<32|task->pid+*+*intbpf_get_task_comm(structtask_struct*task)+*Storestask->commintobuf+*Return:0onsuccessornegativeerror+*+*u32bpf_get_task_flags(structtask_struct*task)+*Return:task->flags+*
I don't think it's a solution.
Tracing scripts read other fields too.
Making it work for these 3 fields is a drop in a bucket.
Indeed. However...
If randomization is used I think we have to accept
that existing bpf scripts won't be usable.
... the actual issue is that randomization isn't necessary for this to
show up. The annotations added to mark off the structure members results
in some structure members being moved into an anonymous structure, which
would then get padded differently. So, *all* kernels since v4.13 are
affected, afaict.
As such, we wanted to propose this as a short term solution, but I do
agree that this doesn't solve the real issue.
Long term solution is to support 'BPF Type Format' or BTF
(which is old C-Type Format) for kernel data structures,
so bcc scripts wouldn't need to use kernel headers and clang.
The proper offsets will be described in BTF.
We were planning to use it initially to describe map key/value,
but it applies for this case as well.
There will be a tool that will take dwarf from vmlinux and
compress it into BTF. Kernel will also be able to verify
that BTF is a valid BTF.
This is the first that I've heard about BTF. Can you share more details
about it, or point me to some place where it has been discussed?
We considered having tools derive the structure offsets from debuginfo,
but debuginfo may not always be present on production systems. So, it
isn't clear if having that dependency is fine. I'm not sure how BTF will
be different.
I'm assuming that gcc randomization plugin produces dwarf
with correct offsets, if not, it would have to be fixed.
I think the offsets described in dwarf were incorrect with
CONFIG_GCC_PLUGIN_RANDSTRUCT, but I'll let Sandipan confirm that.
- Naveen
For added security, the layout of some structures can be
randomized by enabling CONFIG_GCC_PLUGIN_RANDSTRUCT. One
such structure is task_struct. To build BPF programs, we
use Clang which does not support this feature. So, if we
attempt to read a field of a structure with a randomized
layout within a BPF program, we do not get the expected
value because of incorrect offsets. To observe this, it
is not mandatory to have CONFIG_GCC_PLUGIN_RANDSTRUCT
enabled because the structure annotations/members added
for this purpose are enough to cause this. So, all kernel
builds are affected.
For example, considering samples/bpf/offwaketime_kern.c,
if we try to print the values of pid and comm inside the
task_struct passed to waker() by adding the following
lines of code at the appropriate place
char fmt[] = "waker(): p->pid = %u, p->comm = %s\n";
bpf_trace_printk(fmt, sizeof(fmt), _(p->pid), _(p->comm));
it is seen that upon rebuilding and running this sample
followed by inspecting /sys/kernel/debug/tracing/trace,
the output looks like the following
_-----=> irqs-off
/ _----=> need-resched
| / _---=> hardirq/softirq
|| / _--=> preempt-depth
||| / delay
TASK-PID CPU# |||| TIMESTAMP FUNCTION
| | | |||| | |
<idle>-0 [007] d.s. 1883.443594: 0x00000001: waker():
p->pid = 0, p->comm =
<idle>-0 [018] d.s. 1883.453588: 0x00000001: waker():
p->pid = 0, p->comm =
<idle>-0 [007] d.s. 1883.463584: 0x00000001: waker():
p->pid = 0, p->comm =
<idle>-0 [009] d.s. 1883.483586: 0x00000001: waker():
p->pid = 0, p->comm =
<idle>-0 [005] d.s. 1883.493583: 0x00000001: waker():
p->pid = 0, p->comm =
<idle>-0 [009] d.s. 1883.503583: 0x00000001: waker():
p->pid = 0, p->comm =
<idle>-0 [018] d.s. 1883.513578: 0x00000001: waker():
p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627660: 0x00000001: waker():
p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627704: 0x00000001: waker():
p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627723: 0x00000001: waker():
p->pid = 0, p->comm =
To avoid this, we add new BPF helpers that read the
correct values for some of the important task_struct
members such as pid, tgid, comm and flags which are
extensively used in BPF-based analysis tools such as
bcc. Since these helpers are built with GCC, they use
the correct offsets when referencing a member.
Signed-off-by: Sandipan Das <redacted>
@@ -338,6 +338,16 @@ union bpf_attr {*@skb:pointertoskb*Return:classidif!=0*+*u64bpf_get_task_pid_tgid(structtask_struct*task)+*Return:task->tgid<<32|task->pid+*+*intbpf_get_task_comm(structtask_struct*task)+*Storestask->commintobuf+*Return:0onsuccessornegativeerror+*+*u32bpf_get_task_flags(structtask_struct*task)+*Return:task->flags+*
I don't think it's a solution.
Tracing scripts read other fields too.
Making it work for these 3 fields is a drop in a bucket.
Indeed. However...
quoted
If randomization is used I think we have to accept
that existing bpf scripts won't be usable.
... the actual issue is that randomization isn't necessary for this to
show up. The annotations added to mark off the structure members results
in some structure members being moved into an anonymous structure, which
would then get padded differently. So, *all* kernels since v4.13 are
affected, afaict.
hmm. why would all 4.13+ be affected?
It's just an anonymous struct inside task_struct.
Are you saying that due to clang not adding this 'struct { };' treatment
to task_struct?
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
As such, we wanted to propose this as a short term solution, but I do
agree that this doesn't solve the real issue.
quoted
Long term solution is to support 'BPF Type Format' or BTF
(which is old C-Type Format) for kernel data structures,
so bcc scripts wouldn't need to use kernel headers and clang.
The proper offsets will be described in BTF.
We were planning to use it initially to describe map key/value,
but it applies for this case as well.
There will be a tool that will take dwarf from vmlinux and
compress it into BTF. Kernel will also be able to verify
that BTF is a valid BTF.
This is the first that I've heard about BTF. Can you share more details
about it, or point me to some place where it has been discussed?
We considered having tools derive the structure offsets from debuginfo,
but debuginfo may not always be present on production systems. So, it
isn't clear if having that dependency is fine. I'm not sure how BTF will
be different.
It was discussed at this year plumbers:
https://lwn.net/Articles/734453/
btw the name BTF is work in progress. We started with CTF, but
it conflicts with all other meanings of this abbreviation.
Likely we will call it something different at the end.
Initial goal was to describe key/map values of bpf maps to
make debugging easier, but now we want to use this compressed
type format for tracing as well, since installing kernel headers
everywhere doesn't scale well while CTF can be embedded in vmlinux
We were also thinking to improve verifier with CTF knowledge too.
Like if CTF describes that map value is two u32, but bpf program
is doing 8-byte access then something is wrong and either warn
or reject such program.
From: Sandipan Das <hidden> Date: 2017-11-06 05:16:56
Hi Alexei, Naveen,
On 11/04/2017 11:01 PM, Naveen N. Rao wrote:
I think the offsets described in dwarf were incorrect with CONFIG_GCC_PLUGIN_RANDSTRUCT, but I'll let Sandipan confirm that.
I think that the offsets described in dwarf are probably incorrect when
CONFIG_GCC_PLUGIN_RANDSTRUCT is enabled. To verify this, I used perf
to attach a probe to try_to_wake_up() which is the also the function to
which waker() is attached in the previously mentioned kernel sample. So,
if the run the following:
# perf probe "try_to_wake_up" "p->pid"
# perf record -a -e probe:try_to_wake_up
# perf script
The value of p->pid is reported as 0. Similarly, if I try to read
p->comm, it is reported to be an empty string. The same problem is
seen with systemtap as well.
Also, if I do a printk with offsetof(struct task_struct, pid) and
offsetof(struct task_struct, comm) inside the kernel code and then
compare the values with the offsets reported by pahole, they are
completely different.
- Sandipan
From: Naveen N. Rao <hidden> Date: 2017-11-06 15:55:56
Alexei Starovoitov wrote:
On 11/5/17 2:31 AM, Naveen N. Rao wrote:
quoted
Hi Alexei,
Alexei Starovoitov wrote:
quoted
On 11/3/17 3:58 PM, Sandipan Das wrote:
quoted
For added security, the layout of some structures can be
randomized by enabling CONFIG_GCC_PLUGIN_RANDSTRUCT. One
such structure is task_struct. To build BPF programs, we
use Clang which does not support this feature. So, if we
attempt to read a field of a structure with a randomized
layout within a BPF program, we do not get the expected
value because of incorrect offsets. To observe this, it
is not mandatory to have CONFIG_GCC_PLUGIN_RANDSTRUCT
enabled because the structure annotations/members added
for this purpose are enough to cause this. So, all kernel
builds are affected.
@@ -338,6 +338,16 @@ union bpf_attr {*@skb:pointertoskb*Return:classidif!=0*+*u64bpf_get_task_pid_tgid(structtask_struct*task)+*Return:task->tgid<<32|task->pid+*+*intbpf_get_task_comm(structtask_struct*task)+*Storestask->commintobuf+*Return:0onsuccessornegativeerror+*+*u32bpf_get_task_flags(structtask_struct*task)+*Return:task->flags+*
I don't think it's a solution.
Tracing scripts read other fields too.
Making it work for these 3 fields is a drop in a bucket.
Indeed. However...
quoted
If randomization is used I think we have to accept
that existing bpf scripts won't be usable.
... the actual issue is that randomization isn't necessary for this to
show up. The annotations added to mark off the structure members results
in some structure members being moved into an anonymous structure, which
would then get padded differently. So, *all* kernels since v4.13 are
affected, afaict.
hmm. why would all 4.13+ be affected?
It's just an anonymous struct inside task_struct.
Are you saying that due to clang not adding this 'struct { };' treatment
to task_struct?
Yes, that's what it looked like.
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
We considered that, but it looked to be very dependent on the version of
gcc used to build the kernel. But, this may be a simpler approach for
the shorter term.
quoted
As such, we wanted to propose this as a short term solution, but I do
agree that this doesn't solve the real issue.
quoted
Long term solution is to support 'BPF Type Format' or BTF
(which is old C-Type Format) for kernel data structures,
so bcc scripts wouldn't need to use kernel headers and clang.
The proper offsets will be described in BTF.
We were planning to use it initially to describe map key/value,
but it applies for this case as well.
There will be a tool that will take dwarf from vmlinux and
compress it into BTF. Kernel will also be able to verify
that BTF is a valid BTF.
This is the first that I've heard about BTF. Can you share more details
about it, or point me to some place where it has been discussed?
We considered having tools derive the structure offsets from debuginfo,
but debuginfo may not always be present on production systems. So, it
isn't clear if having that dependency is fine. I'm not sure how BTF will
be different.
It was discussed at this year plumbers:
https://lwn.net/Articles/734453/
btw the name BTF is work in progress. We started with CTF, but
it conflicts with all other meanings of this abbreviation.
Likely we will call it something different at the end.
Initial goal was to describe key/map values of bpf maps to
make debugging easier, but now we want to use this compressed
type format for tracing as well, since installing kernel headers
everywhere doesn't scale well while CTF can be embedded in vmlinux
Makes sense, though I'm curious on how you're planning to have this work
without the kernel headers :)
We were also thinking to improve verifier with CTF knowledge too.
Like if CTF describes that map value is two u32, but bpf program
is doing 8-byte access then something is wrong and either warn
or reject such program.
Sounds good. I look forward to more details/patches on this front once
you're ready to share more.
Thanks,
- Naveen
From: Tushar Dave <hidden> Date: 2017-11-07 00:16:57
On 11/02/2017 11:58 PM, Sandipan Das wrote:
For added security, the layout of some structures can be
randomized by enabling CONFIG_GCC_PLUGIN_RANDSTRUCT. One
such structure is task_struct. To build BPF programs, we
use Clang which does not support this feature. So, if we
attempt to read a field of a structure with a randomized
layout within a BPF program, we do not get the expected
value because of incorrect offsets. To observe this, it
is not mandatory to have CONFIG_GCC_PLUGIN_RANDSTRUCT
enabled because the structure annotations/members added
for this purpose are enough to cause this. So, all kernel
builds are affected.
For example, considering samples/bpf/offwaketime_kern.c,
if we try to print the values of pid and comm inside the
task_struct passed to waker() by adding the following
lines of code at the appropriate place
char fmt[] = "waker(): p->pid = %u, p->comm = %s\n";
bpf_trace_printk(fmt, sizeof(fmt), _(p->pid), _(p->comm));
it is seen that upon rebuilding and running this sample
followed by inspecting /sys/kernel/debug/tracing/trace,
the output looks like the following
_-----=> irqs-off
/ _----=> need-resched
| / _---=> hardirq/softirq
|| / _--=> preempt-depth
||| / delay
TASK-PID CPU# |||| TIMESTAMP FUNCTION
| | | |||| | |
<idle>-0 [007] d.s. 1883.443594: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [018] d.s. 1883.453588: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [007] d.s. 1883.463584: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [009] d.s. 1883.483586: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [005] d.s. 1883.493583: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [009] d.s. 1883.503583: 0x00000001: waker(): p->pid = 0, p->comm =
<idle>-0 [018] d.s. 1883.513578: 0x00000001: waker(): p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627660: 0x00000001: waker(): p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627704: 0x00000001: waker(): p->pid = 0, p->comm =
systemd-journal-3140 [003] d... 1883.627723: 0x00000001: waker(): p->pid = 0, p->comm =
To avoid this, we add new BPF helpers that read the
correct values for some of the important task_struct
members such as pid, tgid, comm and flags which are
extensively used in BPF-based analysis tools such as
bcc. Since these helpers are built with GCC, they use
the correct offsets when referencing a member.
Just to add that we were seeing the same issue (but had no clue until
looked at this patch , thanks). Its easy to reproduce by running bcc
example task_switch.py where pid (prev_pid) is retrieved from struct
task_struct and that is always zero. we tried printing other task_struct
members such as 'comm' and see that as empty string as well.
-Tushar
@@ -1,6 +1,8 @@#ifndef __BPF_HELPERS_H#define __BPF_HELPERS_H+structtask_struct;+/* helper macro to place programs, maps, license in*differentsectionsinelf_bpffile.Sectionnames*areinterpretedbyelf_bpfloader
@@ -31,6 +33,13 @@ static unsigned long long (*bpf_get_current_uid_gid)(void) =(void*)BPF_FUNC_get_current_uid_gid;staticint(*bpf_get_current_comm)(void*buf,intbuf_size)=(void*)BPF_FUNC_get_current_comm;+staticunsignedlonglong(*bpf_get_task_pid_tgid)(structtask_struct*task)=+(void*)BPF_FUNC_get_task_pid_tgid;+staticint(*bpf_get_task_comm)(structtask_struct*task,+void*buf,intbuf_size)=+(void*)BPF_FUNC_get_task_comm;+staticunsignedint(*bpf_get_task_flags)(structtask_struct*task)=+(void*)BPF_FUNC_get_task_flags;staticunsignedlonglong(*bpf_perf_event_read)(void*map,unsignedlonglongflags)=(void*)BPF_FUNC_perf_event_read;
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
We considered that, but it looked to be very dependent on the version of
gcc used to build the kernel. But, this may be a simpler approach for
the shorter term.
why it would depend on version of gcc?
We just need this, no?
From: Naveen N. Rao <hidden> Date: 2017-11-07 08:37:44
Alexei Starovoitov wrote:
On 11/7/17 12:55 AM, Naveen N. Rao wrote:
quoted
quoted
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
We considered that, but it looked to be very dependent on the version of
gcc used to build the kernel. But, this may be a simpler approach for
the shorter term.
why it would depend on version of gcc?
From what I can see, randomized_struct_fields_start is defined only for
gcc >= 4.6. For older versions, it does not get mapped to an anonymous
structure. We may not care for older gcc versions, but..
The other issue was that __randomize_layout maps to __designated_init
when randstruct plugin is not enabled, which is in turn an attribute on
gcc >= v5.1, but not otherwise.
On Tue, Nov 7, 2017 at 12:37 AM, Naveen N. Rao
[off-list ref] wrote:
Alexei Starovoitov wrote:
quoted
On 11/7/17 12:55 AM, Naveen N. Rao wrote:
quoted
quoted
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
We considered that, but it looked to be very dependent on the version of
gcc used to build the kernel. But, this may be a simpler approach for
the shorter term.
why it would depend on version of gcc?
From what I can see, randomized_struct_fields_start is defined only for gcc
quoted
= 4.6. For older versions, it does not get mapped to an anonymous
structure. We may not care for older gcc versions, but..
The other issue was that __randomize_layout maps to __designated_init when
randstruct plugin is not enabled, which is in turn an attribute on gcc >=
v5.1, but not otherwise.
quoted
We just need this, no?
diff --git a/include/linux/compiler-clang.h
b/include/linux/compiler-clang.h
index de179993e039..4e29ab6187cb 100644
__COUNTER__)
+
+#define randomized_struct_fields_start struct {
+#define randomized_struct_fields_end };
since offsets are mandated by C standard.
Yes, this is what we're testing with and is probably sufficient for our
purposes.
Just tested this with bcc. bcc actually complains. the rewriter
is not able to rewrite prev->pid where prev is "struct task_struct *prev".
I will change bcc rewriter to see whether the field value is correct or not.
Not sure my understanding is correct or not, but I am afraid that
the above approach for clang compiler change may not work.
If clang calculates the field offset based on header file, the offset
may not be the same as kernel one....
I verified that the drawf info with randomized structure config does not
match randomized structure member offset. Specifically, I tried
linux/proc_ns.h struct proc_ns_operations,
dwarf says:
field name: offset 0
field real_ns_name: offset 8
But if you print out the real offset at runtime, you get 40 and 16 respectively.
On Tue, Nov 7, 2017 at 12:37 AM, Naveen N. Rao
[off-list ref] wrote:
quoted
Alexei Starovoitov wrote:
quoted
On 11/7/17 12:55 AM, Naveen N. Rao wrote:
quoted
quoted
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
We considered that, but it looked to be very dependent on the version of
gcc used to build the kernel. But, this may be a simpler approach for
the shorter term.
why it would depend on version of gcc?
From what I can see, randomized_struct_fields_start is defined only for gcc
quoted
= 4.6. For older versions, it does not get mapped to an anonymous
structure. We may not care for older gcc versions, but..
The other issue was that __randomize_layout maps to __designated_init when
randstruct plugin is not enabled, which is in turn an attribute on gcc >=
v5.1, but not otherwise.
quoted
We just need this, no?
diff --git a/include/linux/compiler-clang.h
b/include/linux/compiler-clang.h
index de179993e039..4e29ab6187cb 100644
__COUNTER__)
+
+#define randomized_struct_fields_start struct {
+#define randomized_struct_fields_end };
since offsets are mandated by C standard.
Yes, this is what we're testing with and is probably sufficient for our
purposes.
Just tested this with bcc. bcc actually complains. the rewriter
is not able to rewrite prev->pid where prev is "struct task_struct *prev".
I will change bcc rewriter to see whether the field value is correct or not.
Not sure my understanding is correct or not, but I am afraid that
the above approach for clang compiler change may not work.
If clang calculates the field offset based on header file, the offset
may not be the same as kernel one....
I verified that the drawf info with randomized structure config does not
match randomized structure member offset. Specifically, I tried
linux/proc_ns.h struct proc_ns_operations,
dwarf says:
field name: offset 0
field real_ns_name: offset 8
But if you print out the real offset at runtime, you get 40 and 16 respectively.
I am also trying to get it work with bcc as any python scripts that
access task_struct gives wrong output (task_switch.py, runqlen.py). I
recompiled my kernel (4.14-rc7 & bcc) with the patch.
I am seeing following error.
# ./task_switch.py
/virtual/main.c:17:18: warning: implicit declaration of function
'bpf_get_task_pid_tgid' is invalid in C99
[-Wimplicit-function-declaration]
key.prev_pid = bpf_get_task_pid_tgid(prev);
^
1 warning generated.
LLVM ERROR: Program used external function 'bpf_get_task_pid_tgid' which
could not be resolved!
Are you also seeing the same issue or something else ?
Regards,
Atish
On Tue, Nov 7, 2017 at 12:37 AM, Naveen N. Rao
[off-list ref] wrote:
quoted
Alexei Starovoitov wrote:
quoted
On 11/7/17 12:55 AM, Naveen N. Rao wrote:
quoted
quoted
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
We considered that, but it looked to be very dependent on the version of
gcc used to build the kernel. But, this may be a simpler approach for
the shorter term.
why it would depend on version of gcc?
From what I can see, randomized_struct_fields_start is defined only for gcc
quoted
= 4.6. For older versions, it does not get mapped to an anonymous
structure. We may not care for older gcc versions, but..
The other issue was that __randomize_layout maps to __designated_init when
randstruct plugin is not enabled, which is in turn an attribute on gcc >=
v5.1, but not otherwise.
quoted
We just need this, no?
diff --git a/include/linux/compiler-clang.h
b/include/linux/compiler-clang.h
index de179993e039..4e29ab6187cb 100644
__COUNTER__)
+
+#define randomized_struct_fields_start struct {
+#define randomized_struct_fields_end };
since offsets are mandated by C standard.
Yes, this is what we're testing with and is probably sufficient for our
purposes.
Just tested this with bcc. bcc actually complains. the rewriter
is not able to rewrite prev->pid where prev is "struct task_struct *prev".
I will change bcc rewriter to see whether the field value is correct or not.
Not sure my understanding is correct or not, but I am afraid that
the above approach for clang compiler change may not work.
If clang calculates the field offset based on header file, the offset
may not be the same as kernel one....
why is that?
When randomization is off both gcc and clang must generate the same
offsets, since it's C standard.
bcc rewriter issue is odd. I suspect it was broken from day one.
Meaning that bcc didn't support poking into anonymous union and structs.
I verified that the drawf info with randomized structure config does not
match randomized structure member offset. Specifically, I tried
linux/proc_ns.h struct proc_ns_operations,
dwarf says:
field name: offset 0
field real_ns_name: offset 8
But if you print out the real offset at runtime, you get 40 and 16 respectively.
thanks for confirming. It means that gcc randomization plugin is broken
and has to be fixed with regard to adjusting debug info while
randomizing the fields.
On Tue, Nov 7, 2017 at 1:31 PM, Atish Patra [off-list ref] wrote:
On 11/07/2017 03:14 PM, Y Song wrote:
quoted
On Tue, Nov 7, 2017 at 12:37 AM, Naveen N. Rao
[off-list ref] wrote:
quoted
Alexei Starovoitov wrote:
quoted
On 11/7/17 12:55 AM, Naveen N. Rao wrote:
quoted
quoted
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
We considered that, but it looked to be very dependent on the version
of
gcc used to build the kernel. But, this may be a simpler approach for
the shorter term.
why it would depend on version of gcc?
From what I can see, randomized_struct_fields_start is defined only for
gcc
quoted
= 4.6. For older versions, it does not get mapped to an anonymous
structure. We may not care for older gcc versions, but..
The other issue was that __randomize_layout maps to __designated_init
when
randstruct plugin is not enabled, which is in turn an attribute on gcc >=
v5.1, but not otherwise.
quoted
We just need this, no?
diff --git a/include/linux/compiler-clang.h
b/include/linux/compiler-clang.h
index de179993e039..4e29ab6187cb 100644
__COUNTER__)
+
+#define randomized_struct_fields_start struct {
+#define randomized_struct_fields_end };
since offsets are mandated by C standard.
Yes, this is what we're testing with and is probably sufficient for our
purposes.
Just tested this with bcc. bcc actually complains. the rewriter
is not able to rewrite prev->pid where prev is "struct task_struct *prev".
I will change bcc rewriter to see whether the field value is correct or
not.
BTypeConsumer::HandleTranslationUnit(ASTContext &Context) {
*/
for (it = DC->decls_begin(); it != DC->decls_end(); it++) {
Decl *D = *it;
+#if 0
if (FunctionDecl *F = dyn_cast<FunctionDecl>(D)) {
if (fe_.is_rewritable_ext_func(F)) {
for (auto arg : F->parameters()) {
@@ -836,6 +837,7 @@ void
BTypeConsumer::HandleTranslationUnit(ASTContext &Context) {
probe_visitor_.TraverseDecl(D);
}
}
+#endif
Basically, explicitly using bpf_probe_read instead of letting rewriter
to change it.
Also disable probe rewriting part in the frontend.
I confirmed that value of prev->pid is always 0 (wrong).
The linux patch I have is:
Therefore, getting bpf program to access randomized structure
through either BTF or fixed dwarfinfo may be the best option.
I know dwarfinfo is too big so smaller BTF is more desirable.
quoted
Not sure my understanding is correct or not, but I am afraid that
the above approach for clang compiler change may not work.
If clang calculates the field offset based on header file, the offset
may not be the same as kernel one....
I verified that the drawf info with randomized structure config does not
match randomized structure member offset. Specifically, I tried
linux/proc_ns.h struct proc_ns_operations,
dwarf says:
field name: offset 0
field real_ns_name: offset 8
But if you print out the real offset at runtime, you get 40 and 16
respectively.
I am also trying to get it work with bcc as any python scripts that access
task_struct gives wrong output (task_switch.py, runqlen.py). I recompiled my
kernel (4.14-rc7 & bcc) with the patch.
I am seeing following error.
# ./task_switch.py
/virtual/main.c:17:18: warning: implicit declaration of function
'bpf_get_task_pid_tgid' is invalid in C99
[-Wimplicit-function-declaration]
key.prev_pid = bpf_get_task_pid_tgid(prev);
^
1 warning generated.
LLVM ERROR: Program used external function 'bpf_get_task_pid_tgid' which
could not be resolved!
Are you also seeing the same issue or something else ?
I did not apply the patch so I did not use bpf_get_task_pid_tgid helper.
When applying the above compiler-clang.h patch, I got:
[yhs@localhost tracing]$ sudo ./task_switch.py
/virtual/main.c:16:18: error: internal error: opLoc is invalid while
preparing probe rewrite
key.prev_pid = prev->pid;
^
1 error generated.
Traceback (most recent call last):
File "./task_switch.py", line 29, in <module>
""")
File "/usr/lib/python2.7/site-packages/bcc/__init__.py", line 296, in __init__
raise Exception("Failed to compile BPF module %s" % src_file)
Exception: Failed to compile BPF module
I just hacked bcc with the above patch and the issue is going away.
On Tue, Nov 7, 2017 at 1:39 PM, Alexei Starovoitov [off-list ref] wrote:
On 11/8/17 6:14 AM, Y Song wrote:
quoted
On Tue, Nov 7, 2017 at 12:37 AM, Naveen N. Rao
[off-list ref] wrote:
quoted
Alexei Starovoitov wrote:
quoted
On 11/7/17 12:55 AM, Naveen N. Rao wrote:
quoted
quoted
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
We considered that, but it looked to be very dependent on the version
of
gcc used to build the kernel. But, this may be a simpler approach for
the shorter term.
why it would depend on version of gcc?
From what I can see, randomized_struct_fields_start is defined only for
gcc
quoted
= 4.6. For older versions, it does not get mapped to an anonymous
structure. We may not care for older gcc versions, but..
The other issue was that __randomize_layout maps to __designated_init
when
randstruct plugin is not enabled, which is in turn an attribute on gcc >=
v5.1, but not otherwise.
quoted
We just need this, no?
diff --git a/include/linux/compiler-clang.h
b/include/linux/compiler-clang.h
index de179993e039..4e29ab6187cb 100644
__COUNTER__)
+
+#define randomized_struct_fields_start struct {
+#define randomized_struct_fields_end };
since offsets are mandated by C standard.
Yes, this is what we're testing with and is probably sufficient for our
purposes.
Just tested this with bcc. bcc actually complains. the rewriter
is not able to rewrite prev->pid where prev is "struct task_struct *prev".
I will change bcc rewriter to see whether the field value is correct or
not.
Not sure my understanding is correct or not, but I am afraid that
the above approach for clang compiler change may not work.
If clang calculates the field offset based on header file, the offset
may not be the same as kernel one....
why is that?
When randomization is off both gcc and clang must generate the same
offsets, since it's C standard.
The patch changed compiler-clang.h, so gcc still do randomization.
bcc rewriter issue is odd. I suspect it was broken from day one.
Meaning that bcc didn't support poking into anonymous union and structs.
This seems right.
quoted
I verified that the drawf info with randomized structure config does not
match randomized structure member offset. Specifically, I tried
linux/proc_ns.h struct proc_ns_operations,
dwarf says:
field name: offset 0
field real_ns_name: offset 8
But if you print out the real offset at runtime, you get 40 and 16
respectively.
thanks for confirming. It means that gcc randomization plugin is broken
and has to be fixed with regard to adjusting debug info while
randomizing the fields.
On Tue, Nov 7, 2017 at 1:39 PM, Alexei Starovoitov [off-list ref] wrote:
quoted
On 11/8/17 6:14 AM, Y Song wrote:
quoted
On Tue, Nov 7, 2017 at 12:37 AM, Naveen N. Rao
[off-list ref] wrote:
quoted
Alexei Starovoitov wrote:
quoted
On 11/7/17 12:55 AM, Naveen N. Rao wrote:
quoted
quoted
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
We considered that, but it looked to be very dependent on the version
of
gcc used to build the kernel. But, this may be a simpler approach for
the shorter term.
why it would depend on version of gcc?
From what I can see, randomized_struct_fields_start is defined only for
gcc
quoted
= 4.6. For older versions, it does not get mapped to an anonymous
structure. We may not care for older gcc versions, but..
The other issue was that __randomize_layout maps to __designated_init
when
randstruct plugin is not enabled, which is in turn an attribute on gcc >=
v5.1, but not otherwise.
quoted
We just need this, no?
diff --git a/include/linux/compiler-clang.h
b/include/linux/compiler-clang.h
index de179993e039..4e29ab6187cb 100644
__COUNTER__)
+
+#define randomized_struct_fields_start struct {
+#define randomized_struct_fields_end };
since offsets are mandated by C standard.
Yes, this is what we're testing with and is probably sufficient for our
purposes.
Just tested this with bcc. bcc actually complains. the rewriter
is not able to rewrite prev->pid where prev is "struct task_struct *prev".
I will change bcc rewriter to see whether the field value is correct or
not.
Not sure my understanding is correct or not, but I am afraid that
the above approach for clang compiler change may not work.
If clang calculates the field offset based on header file, the offset
may not be the same as kernel one....
why is that?
When randomization is off both gcc and clang must generate the same
offsets, since it's C standard.
The patch changed compiler-clang.h, so gcc still do randomization.
gcc_plugins are off by default and randomization will not be
turned on for any sane distro or datacenter that cares about
performance and stability.
So imo above compiler-clang.h patch together with bcc fix would
be enough.
On Tue, Nov 7, 2017 at 2:04 PM, Alexei Starovoitov [off-list ref] wrote:
On 11/8/17 6:47 AM, Y Song wrote:
quoted
On Tue, Nov 7, 2017 at 1:39 PM, Alexei Starovoitov [off-list ref] wrote:
quoted
On 11/8/17 6:14 AM, Y Song wrote:
quoted
On Tue, Nov 7, 2017 at 12:37 AM, Naveen N. Rao
[off-list ref] wrote:
quoted
Alexei Starovoitov wrote:
quoted
On 11/7/17 12:55 AM, Naveen N. Rao wrote:
quoted
quoted
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
We considered that, but it looked to be very dependent on the version
of
gcc used to build the kernel. But, this may be a simpler approach for
the shorter term.
why it would depend on version of gcc?
From what I can see, randomized_struct_fields_start is defined only for
gcc
quoted
= 4.6. For older versions, it does not get mapped to an anonymous
structure. We may not care for older gcc versions, but..
The other issue was that __randomize_layout maps to __designated_init
when
randstruct plugin is not enabled, which is in turn an attribute on gcc
quoted
=
v5.1, but not otherwise.
quoted
We just need this, no?
diff --git a/include/linux/compiler-clang.h
b/include/linux/compiler-clang.h
index de179993e039..4e29ab6187cb 100644
__COUNTER__)
+
+#define randomized_struct_fields_start struct {
+#define randomized_struct_fields_end };
since offsets are mandated by C standard.
Yes, this is what we're testing with and is probably sufficient for our
purposes.
Just tested this with bcc. bcc actually complains. the rewriter
is not able to rewrite prev->pid where prev is "struct task_struct
*prev".
I will change bcc rewriter to see whether the field value is correct or
not.
Not sure my understanding is correct or not, but I am afraid that
the above approach for clang compiler change may not work.
If clang calculates the field offset based on header file, the offset
may not be the same as kernel one....
why is that?
When randomization is off both gcc and clang must generate the same
offsets, since it's C standard.
The patch changed compiler-clang.h, so gcc still do randomization.
gcc_plugins are off by default and randomization will not be
turned on for any sane distro or datacenter that cares about
performance and stability.
So imo above compiler-clang.h patch together with bcc fix would
be enough.
Agree that short time the suggested fix should be enough.
Long time, disto could become "insane" someday :-)
On Tue, Nov 7, 2017 at 2:04 PM, Alexei Starovoitov [off-list ref] wrote:
quoted
On 11/8/17 6:47 AM, Y Song wrote:
quoted
On Tue, Nov 7, 2017 at 1:39 PM, Alexei Starovoitov [off-list ref] wrote:
quoted
On 11/8/17 6:14 AM, Y Song wrote:
quoted
On Tue, Nov 7, 2017 at 12:37 AM, Naveen N. Rao
[off-list ref] wrote:
quoted
Alexei Starovoitov wrote:
quoted
On 11/7/17 12:55 AM, Naveen N. Rao wrote:
quoted
quoted
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
We considered that, but it looked to be very dependent on the version
of
gcc used to build the kernel. But, this may be a simpler approach for
the shorter term.
why it would depend on version of gcc?
From what I can see, randomized_struct_fields_start is defined only for
gcc
quoted
= 4.6. For older versions, it does not get mapped to an anonymous
structure. We may not care for older gcc versions, but..
The other issue was that __randomize_layout maps to __designated_init
when
randstruct plugin is not enabled, which is in turn an attribute on gcc
quoted
=
v5.1, but not otherwise.
quoted
We just need this, no?
diff --git a/include/linux/compiler-clang.h
b/include/linux/compiler-clang.h
index de179993e039..4e29ab6187cb 100644
__COUNTER__)
+
+#define randomized_struct_fields_start struct {
+#define randomized_struct_fields_end };
since offsets are mandated by C standard.
Yes, this is what we're testing with and is probably sufficient for our
purposes.
Just tested this with bcc. bcc actually complains. the rewriter
is not able to rewrite prev->pid where prev is "struct task_struct
*prev".
I will change bcc rewriter to see whether the field value is correct or
not.
Not sure my understanding is correct or not, but I am afraid that
the above approach for clang compiler change may not work.
If clang calculates the field offset based on header file, the offset
may not be the same as kernel one....
why is that?
When randomization is off both gcc and clang must generate the same
offsets, since it's C standard.
The patch changed compiler-clang.h, so gcc still do randomization.
gcc_plugins are off by default and randomization will not be
turned on for any sane distro or datacenter that cares about
performance and stability.
So imo above compiler-clang.h patch together with bcc fix would
be enough.
Agree that short time the suggested fix should be enough.
Long time, disto could become "insane" someday :-)
Yup it works with clang compiler & bcc hack. Thanks :).
I verified it with task_switch.py & runqlat.py.
Are you going to push the bcc hacks to github repo ?
Regards,
Atish
On Tue, Nov 7, 2017 at 4:29 PM, Atish Patra [off-list ref] wrote:
On 11/07/2017 04:42 PM, Y Song wrote:
quoted
On Tue, Nov 7, 2017 at 2:04 PM, Alexei Starovoitov [off-list ref] wrote:
quoted
On 11/8/17 6:47 AM, Y Song wrote:
quoted
On Tue, Nov 7, 2017 at 1:39 PM, Alexei Starovoitov [off-list ref] wrote:
quoted
On 11/8/17 6:14 AM, Y Song wrote:
quoted
On Tue, Nov 7, 2017 at 12:37 AM, Naveen N. Rao
[off-list ref] wrote:
quoted
Alexei Starovoitov wrote:
quoted
On 11/7/17 12:55 AM, Naveen N. Rao wrote:
quoted
quoted
I thought such struct shouldn't change layout.
If it is we need to fix include/linux/compiler-clang.h to do that
anon struct as well.
We considered that, but it looked to be very dependent on the
version
of
gcc used to build the kernel. But, this may be a simpler approach
for
the shorter term.
why it would depend on version of gcc?
From what I can see, randomized_struct_fields_start is defined only
for
gcc
quoted
= 4.6. For older versions, it does not get mapped to an anonymous
structure. We may not care for older gcc versions, but..
The other issue was that __randomize_layout maps to __designated_init
when
randstruct plugin is not enabled, which is in turn an attribute on
gcc
quoted
=
v5.1, but not otherwise.
quoted
We just need this, no?
diff --git a/include/linux/compiler-clang.h
b/include/linux/compiler-clang.h
index de179993e039..4e29ab6187cb 100644
__COUNTER__)
+
+#define randomized_struct_fields_start struct {
+#define randomized_struct_fields_end };
since offsets are mandated by C standard.
Yes, this is what we're testing with and is probably sufficient for
our
purposes.
Just tested this with bcc. bcc actually complains. the rewriter
is not able to rewrite prev->pid where prev is "struct task_struct
*prev".
I will change bcc rewriter to see whether the field value is correct
or
not.
Not sure my understanding is correct or not, but I am afraid that
the above approach for clang compiler change may not work.
If clang calculates the field offset based on header file, the offset
may not be the same as kernel one....
why is that?
When randomization is off both gcc and clang must generate the same
offsets, since it's C standard.
The patch changed compiler-clang.h, so gcc still do randomization.
gcc_plugins are off by default and randomization will not be
turned on for any sane distro or datacenter that cares about
performance and stability.
So imo above compiler-clang.h patch together with bcc fix would
be enough.
Agree that short time the suggested fix should be enough.
Long time, disto could become "insane" someday :-)
Yup it works with clang compiler & bcc hack. Thanks :).
I verified it with task_switch.py & runqlat.py.
Are you going to push the bcc hacks to github repo ?
I will need to have proper implementation than a hack. Yes, once done, will
push into bcc repo. Should be done soon.