]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'bpf_get_ns_current_pid_tgid'
authorAlexei Starovoitov <ast@kernel.org>
Fri, 13 Mar 2020 00:33:12 +0000 (17:33 -0700)
committerAlexei Starovoitov <ast@kernel.org>
Fri, 13 Mar 2020 00:41:02 +0000 (17:41 -0700)
commit71d8974e9c72cb0f6f36b1cc935f45e36f049013
tree9b5177a264a126a0e5d9178d7b1585b596528145
parent6dc4822b3c1938168495c50040f3b27435a48b4d
parent38d19245c3fce6987aa40730b298311dc10d7d1b
Merge branch 'bpf_get_ns_current_pid_tgid'

Carlos Neira says:

====================
Currently bpf_get_current_pid_tgid(), is used to do pid filtering in bcc's
scripts but this helper returns the pid as seen by the root namespace which is
fine when a bcc script is not executed inside a container.
When the process of interest is inside a container, pid filtering will not work
if bpf_get_current_pid_tgid() is used.
This helper addresses this limitation returning the pid as it's seen by the current
namespace where the script is executing.

In the future different pid_ns files may belong to different devices, according to the
discussion between Eric Biederman and Yonghong in 2017 Linux plumbers conference.
To address that situation the helper requires inum and dev_t from /proc/self/ns/pid.
This helper has the same use cases as bpf_get_current_pid_tgid() as it can be
used to do pid filtering even inside a container.
====================

Signed-off-by: Alexei Starovoitov <ast@kernel.org>