aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/kcm.h
diff options
context:
space:
mode:
authorAlexei Starovoitov <ast@fb.com>2016-03-09 20:02:33 -0800
committerDavid S. Miller <davem@davemloft.net>2016-03-09 23:27:30 -0500
commitcdc4e47da8f4c32eeb6b2061a8a834f4362a12b7 (patch)
treed66e39c8dccee7e5cf1662305a102c6235d315be /include/net/kcm.h
parentbpf: bpf_stackmap_copy depends on CONFIG_PERF_EVENTS (diff)
downloadlinux-dev-cdc4e47da8f4c32eeb6b2061a8a834f4362a12b7.tar.xz
linux-dev-cdc4e47da8f4c32eeb6b2061a8a834f4362a12b7.zip
bpf: avoid copying junk bytes in bpf_get_current_comm()
Lots of places in the kernel use memcpy(buf, comm, TASK_COMM_LEN); but the result is typically passed to print("%s", buf) and extra bytes after zero don't cause any harm. In bpf the result of bpf_get_current_comm() is used as the part of map key and was causing spurious hash map mismatches. Use strlcpy() to guarantee zero-terminated string. bpf verifier checks that output buffer is zero-initialized, so even for short task names the output buffer don't have junk bytes. Note it's not a security concern, since kprobe+bpf is root only. Fixes: ffeedafbf023 ("bpf: introduce current->pid, tgid, uid, gid, comm accessors") Reported-by: Tobias Waldekranz <tobias@waldekranz.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/kcm.h')
0 files changed, 0 insertions, 0 deletions