bpf: fix oops on allocation failure
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 25 Aug 2017 20:27:14 +0000 (23:27 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Aug 2017 22:23:34 +0000 (15:23 -0700)
commitf740c34ee5cf62e1fff5ebec6d0e63efcc3cdfe9
treedae07d94d1213f22effa1425da4a05e286dd56ea
parenta8e3bb347d8c32c25830af55466e08979df4e2be
bpf: fix oops on allocation failure

"err" is set to zero if bpf_map_area_alloc() fails so it means we return
ERR_PTR(0) which is NULL.  The caller, find_and_alloc_map(), is not
expecting NULL returns and will oops.

Fixes: 174a79ff9515 ("bpf: sockmap with sk redirect support")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: John Fastabend <john.fastabend@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
kernel/bpf/sockmap.c