Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751568AbbFYNeX (ORCPT ); Thu, 25 Jun 2015 09:34:23 -0400 Received: from mail-wi0-f178.google.com ([209.85.212.178]:36859 "EHLO mail-wi0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751006AbbFYNeQ (ORCPT ); Thu, 25 Jun 2015 09:34:16 -0400 Message-ID: <558C0354.4080809@plumgrid.com> Date: Thu, 25 Jun 2015 06:34:12 -0700 From: Alexei Starovoitov User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Xi Wang , linux-arm-kernel@lists.infradead.org CC: linux-kernel@vger.kernel.org, Zi Shen Lim , Will Deacon Subject: Re: [PATCH] arm64: bpf: fix out-of-bounds read in bpf2a64_offset() References: <1435236459-15141-1-git-send-email-xi.wang@gmail.com> In-Reply-To: <1435236459-15141-1-git-send-email-xi.wang@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1047 Lines: 24 On 6/25/15 5:47 AM, Xi Wang wrote: > Problems occur when bpf_to or bpf_from has value prog->len - 1 (e.g., > "Very long jump backwards" in test_bpf where the last instruction is a > jump): since ctx->offset has length prog->len, ctx->offset[bpf_to + 1] > or ctx->offset[bpf_from + 1] will cause an out-of-bounds read, leading > to a bogus jump offset and kernel panic. > > This patch moves updating ctx->offset to after calling build_insn(), > and changes indexing to use bpf_to and bpf_from without + 1. > > Cc: Zi Shen Lim > Cc: Alexei Starovoitov > Cc: Will Deacon > Fixes: e54bcde3d69d ("arm64: eBPF JIT compiler") > Signed-off-by: Xi Wang Nice catch! Looks good to me. Acked-by: Alexei Starovoitov -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/