]> git.baikalelectronics.ru Git - kernel.git/commit
x86: bpf_jit_comp: secure bpf jit against spraying attacks
authorEric Dumazet <edumazet@google.com>
Fri, 17 May 2013 16:37:03 +0000 (16:37 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 20 May 2013 06:55:41 +0000 (23:55 -0700)
commitdc28aa385fa33447bc0b4aeb3255c8b546db7077
treec73c7e79c25024f6865f8e349789ac62d66776b8
parente0344be648c26ad284d9174499ed084e14607bdc
x86: bpf_jit_comp: secure bpf jit against spraying attacks

hpa bringed into my attention some security related issues
with BPF JIT on x86.

This patch makes sure the bpf generated code is marked read only,
as other kernel text sections.

It also splits the unused space (we vmalloc() and only use a fraction of
the page) in two parts, so that the generated bpf code not starts at a
known offset in the page, but a pseudo random one.

Refs:
http://mainisusuallyafunction.blogspot.com/2012/11/attacking-hardened-linux-systems-with.html

Reported-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Daniel Borkmann <dborkman@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/x86/net/bpf_jit_comp.c