From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Borkmann Subject: Re: [PATCH bpf-next] bpf: fix verifier GPF in kmalloc failure path Date: Mon, 8 Jan 2018 18:33:21 +0100 Message-ID: <039f10d5-e625-1926-a2bf-0bb9313d2c37@iogearbox.net> References: <20180108155117.2203858-1-ast@kernel.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, kernel-team@fb.com To: Alexei Starovoitov , davem@davemloft.net Return-path: Received: from www62.your-server.de ([213.133.104.62]:52407 "EHLO www62.your-server.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754231AbeAHRd1 (ORCPT ); Mon, 8 Jan 2018 12:33:27 -0500 In-Reply-To: <20180108155117.2203858-1-ast@kernel.org> Content-Language: en-US Sender: netdev-owner@vger.kernel.org List-ID: On 01/08/2018 04:51 PM, Alexei Starovoitov wrote: > From: Alexei Starovoitov > > syzbot reported the following panic in the verifier triggered > by kmalloc error injection: > > kasan: GPF could be caused by NULL-ptr deref or user memory access > RIP: 0010:copy_func_state kernel/bpf/verifier.c:403 [inline] > RIP: 0010:copy_verifier_state+0x364/0x590 kernel/bpf/verifier.c:431 > Call Trace: > pop_stack+0x8c/0x270 kernel/bpf/verifier.c:449 > push_stack kernel/bpf/verifier.c:491 [inline] > check_cond_jmp_op kernel/bpf/verifier.c:3598 [inline] > do_check+0x4b60/0xa050 kernel/bpf/verifier.c:4731 > bpf_check+0x3296/0x58c0 kernel/bpf/verifier.c:5489 > bpf_prog_load+0xa2a/0x1b00 kernel/bpf/syscall.c:1198 > SYSC_bpf kernel/bpf/syscall.c:1807 [inline] > SyS_bpf+0x1044/0x4420 kernel/bpf/syscall.c:1769 > > when copy_verifier_state() aborts in the middle due to kmalloc failure > some of the frames could have been partially copied while > current free_verifier_state() loop > for (i = 0; i <= state->curframe; i++) > assumed that all frames are non-null. > Simply fix it by adding 'if (!state)' to free_func_state(). > Also avoid stressing copy frame logic more if kzalloc fails > in push_stack() free env->cur_state right away. > > Reported-by: syzbot+32ac5a3e473f2e01cfc7@syzkaller.appspotmail.com > Reported-by: syzbot+fa99e24f3c29d269a7d5@syzkaller.appspotmail.com > Signed-off-by: Alexei Starovoitov Applied to bpf-next with Fixes tags, thanks Alexei!