Received: by 2002:a5b:505:0:0:0:0:0 with SMTP id o5csp7389046ybp; Wed, 16 Oct 2019 08:00:12 -0700 (PDT) X-Google-Smtp-Source: APXvYqzkSaYdUsj4sIY19gdgFlminEWMUc/1SobNcRUNrWcBX7Ypil9cRmhfNiIZzLhrJbFXxemk X-Received: by 2002:a05:6402:6c6:: with SMTP id n6mr40060234edy.292.1571238012384; Wed, 16 Oct 2019 08:00:12 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1571238012; cv=none; d=google.com; s=arc-20160816; b=VC4fTAbHtQpz20Sysvfi2ss/WKeLIMXdh59gQdR77DZGQ95fjIUfXan+nGz9+Y2kqq yx5athkNX/OTvtK5DRisj/UB1isVfJzvhGvM1nOQ5vpzlAYP19+KFsBOXA6SAXtCrVWW 6a14pVbddvLqb9J9u4t/23XwKWiEJzSs55qXeT9i1dYuMxae2IXihoorhaTIXfhwgq4g DbnyZWgWzQEmU/1k8jNHQ0MQjVRTQ5iWHe1X1ciVNAjdXUNvQsVDl1W0qKUvAj4nurDa CJoL08jjPYiplD+ns2sZjlk9DuokDs0wotGH1Kd/aY7/KyETIviN1vdsPVguGvRXxr8y tXGA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=kwsd2iGX16BVo0vpnvmsPQTvK8aB7/2w/aRDacJHoak=; b=yinScUrT/2sf2v27fiEAPhZqRsf6z7BqMn/+RqdRlM8uvWNvY1mcBs9QC4WokpixJu WWAhE9nP5qzE03yoo5hAzx9HDQdNqSpylPJVeHnpi+8BjnOKRvmAlbNOOcC3IeU6IT/0 8B9DEIxd2V9YtGaJlolrZCP6x09Yt56NUsoyHYxC9co8qvohxMG5n/DkeIJQpSrhOfGs fYHUqsQEX0GpccF52mPViUNSuirUa2hhtArI6z366A0du4LCP+MAQnrwet7bE54tY5as nW8VBP2+6t+nIgnAxcv6u+HGA8Xt5T3Vv9P+F96Eu+4h7+3mf2FsLeFmvPpfumdHIHLh CiOA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id u8si15456548edq.84.2019.10.16.07.59.48; Wed, 16 Oct 2019 08:00:12 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2392720AbfJPLTV (ORCPT + 99 others); Wed, 16 Oct 2019 07:19:21 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:40230 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389063AbfJPLTU (ORCPT ); Wed, 16 Oct 2019 07:19:20 -0400 Received: from [213.220.153.21] (helo=localhost.localdomain) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1iKhKo-0003tb-DZ; Wed, 16 Oct 2019 11:19:18 +0000 From: Christian Brauner To: christian.brauner@ubuntu.com Cc: ast@kernel.org, bpf@vger.kernel.org, daniel@iogearbox.net, kafai@fb.com, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, songliubraving@fb.com, yhs@fb.com, Aleksa Sarai Subject: [PATCH bpf-next v4 1/3] bpf: use check_zeroed_user() in bpf_check_uarg_tail_zero() Date: Wed, 16 Oct 2019 13:18:08 +0200 Message-Id: <20191016111810.1799-2-christian.brauner@ubuntu.com> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20191016111810.1799-1-christian.brauner@ubuntu.com> References: <20191016034432.4418-1-christian.brauner@ubuntu.com> <20191016111810.1799-1-christian.brauner@ubuntu.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org In v5.4-rc2 we added a new helper (cf. [1]) check_zeroed_user() which does what bpf_check_uarg_tail_zero() is doing generically. We're slowly switching such codepaths over to use check_zeroed_user() instead of using their own hand-rolled version. [1]: f5a1a536fa14 ("lib: introduce copy_struct_from_user() helper") Cc: Alexei Starovoitov Cc: Daniel Borkmann Cc: Aleksa Sarai Cc: bpf@vger.kernel.org Signed-off-by: Christian Brauner --- /* v1 */ Link: https://lore.kernel.org/r/20191009160907.10981-2-christian.brauner@ubuntu.com /* v2 */ Link: https://lore.kernel.org/r/20191016004138.24845-2-christian.brauner@ubuntu.com - Alexei Starovoitov : - Add a comment in bpf_check_uarg_tail_zero() to clarify that copy_struct_from_user() should be used whenever possible instead. /* v3 */ Link: https://lore.kernel.org/r/20191016034432.4418-2-christian.brauner@ubuntu.com - Christian Brauner : - use correct checks for check_zeroed_user() /* v4 */ - Alexei Starovoitov : - remove unnecessary min() and max() calls --- kernel/bpf/syscall.c | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c index 82eabd4e38ad..8d112bc069c0 100644 --- a/kernel/bpf/syscall.c +++ b/kernel/bpf/syscall.c @@ -58,35 +58,26 @@ static const struct bpf_map_ops * const bpf_map_types[] = { * There is a ToCToU between this function call and the following * copy_from_user() call. However, this is not a concern since this function is * meant to be a future-proofing of bits. + * + * Note, instead of using bpf_check_uarg_tail_zero() followed by + * copy_from_user() use the dedicated copy_struct_from_user() helper which + * performs both tasks whenever possible. */ int bpf_check_uarg_tail_zero(void __user *uaddr, size_t expected_size, size_t actual_size) { - unsigned char __user *addr; - unsigned char __user *end; - unsigned char val; int err; if (unlikely(actual_size > PAGE_SIZE)) /* silly large */ return -E2BIG; - if (unlikely(!access_ok(uaddr, actual_size))) - return -EFAULT; - if (actual_size <= expected_size) return 0; - addr = uaddr + expected_size; - end = uaddr + actual_size; - - for (; addr < end; addr++) { - err = get_user(val, addr); - if (err) - return err; - if (val) - return -E2BIG; - } + err = check_zeroed_user(uaddr + expected_size, actual_size - expected_size); + if (err <= 0) + return err ?: -E2BIG; return 0; } -- 2.23.0