From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 361EBC33CA2 for ; Fri, 10 Jan 2020 12:34:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1216A20721 for ; Fri, 10 Jan 2020 12:34:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728239AbgAJMeq (ORCPT ); Fri, 10 Jan 2020 07:34:46 -0500 Received: from foss.arm.com ([217.140.110.172]:44046 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728094AbgAJMeq (ORCPT ); Fri, 10 Jan 2020 07:34:46 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 8D0921063; Fri, 10 Jan 2020 04:34:45 -0800 (PST) Received: from arrakis.emea.arm.com (arrakis.cambridge.arm.com [10.1.197.42]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 3E2E03F534; Fri, 10 Jan 2020 04:34:44 -0800 (PST) Date: Fri, 10 Jan 2020 12:34:42 +0000 From: Catalin Marinas To: Suzuki K Poulose Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, will@kernel.org, maz@kernel.org, mark.rutland@arm.com, dave.martin@arm.com, ard.biesheuvel@linaro.org, christoffer.dall@arm.com, Will Deacon Subject: Re: [PATCH v2 6/7] arm64: signal: nofpsimd: Handle fp/simd context for signal frames Message-ID: <20200110123441.GB8786@arrakis.emea.arm.com> References: <20191217183402.2259904-1-suzuki.poulose@arm.com> <20191217183402.2259904-7-suzuki.poulose@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191217183402.2259904-7-suzuki.poulose@arm.com> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Dec 17, 2019 at 06:34:01PM +0000, Suzuki K Poulose wrote: > diff --git a/arch/arm64/kernel/signal.c b/arch/arm64/kernel/signal.c > index dd2cdc0d5be2..c648f7627035 100644 > --- a/arch/arm64/kernel/signal.c > +++ b/arch/arm64/kernel/signal.c > @@ -173,6 +173,10 @@ static int preserve_fpsimd_context(struct fpsimd_context __user *ctx) > ¤t->thread.uw.fpsimd_state; > int err; > > + /* This must not be called when FP/SIMD support is missing */ > + if (WARN_ON(!system_supports_fpsimd())) > + return -EINVAL; I'd drop this, see below. > @@ -191,6 +195,10 @@ static int restore_fpsimd_context(struct fpsimd_context __user *ctx) > __u32 magic, size; > int err = 0; > > + /* This must not be called when FP/SIMD support is missing */ > + if (WARN_ON(!system_supports_fpsimd())) > + return -EINVAL; > + > /* check the magic/size information */ > __get_user_error(magic, &ctx->head.magic, err); > __get_user_error(size, &ctx->head.size, err); > @@ -261,6 +269,9 @@ static int restore_sve_fpsimd_context(struct user_ctxs *user) > struct user_fpsimd_state fpsimd; > struct sve_context sve; > > + if (WARN_ON(!system_supports_fpsimd())) > + return -EINVAL; > + > if (__copy_from_user(&sve, user->sve, sizeof(sve))) > return -EFAULT; > > @@ -371,6 +382,8 @@ static int parse_user_sigframe(struct user_ctxs *user, > goto done; > > case FPSIMD_MAGIC: > + if (!system_supports_fpsimd()) > + goto invalid; > if (user->fpsimd) > goto invalid; > > @@ -506,7 +519,7 @@ static int restore_sigframe(struct pt_regs *regs, > if (err == 0) > err = parse_user_sigframe(&user, sf); > > - if (err == 0) { > + if (err == 0 && system_supports_fpsimd()) { > if (!user.fpsimd) > return -EINVAL; I don't think we need to be over paranoid here and add three/four checks and two warnings in static functions. parse_user_sigframe() already returns -EINVAL if SVE or FPSIMD is missing (the latter with your check above). We don't need this additional check in restore_sigframe() and restore_{sve_,}fpsimd_context(), the call paths are simple enough. > > @@ -623,7 +636,7 @@ static int setup_sigframe(struct rt_sigframe_user_layout *user, > > err |= __copy_to_user(&sf->uc.uc_sigmask, set, sizeof(*set)); > > - if (err == 0) { > + if (err == 0 && system_supports_fpsimd()) { > struct fpsimd_context __user *fpsimd_ctx = > apply_user_offset(user, user->fpsimd_offset); > err |= preserve_fpsimd_context(fpsimd_ctx); This check is also sufficient for a static function not to have the WARN_ON. > diff --git a/arch/arm64/kernel/signal32.c b/arch/arm64/kernel/signal32.c > index 12a585386c2f..97ace6919bc2 100644 > --- a/arch/arm64/kernel/signal32.c > +++ b/arch/arm64/kernel/signal32.c > @@ -100,6 +100,9 @@ static int compat_preserve_vfp_context(struct compat_vfp_sigframe __user *frame) > compat_ulong_t fpscr, fpexc; > int i, err = 0; > > + /* This must not be called when the FP/SIMD is missing */ > + if (WARN_ON(!system_supports_fpsimd())) > + return -EINVAL; > /* > * Save the hardware registers to the fpsimd_state structure. > * Note that this also saves V16-31, which aren't visible > @@ -149,6 +152,10 @@ static int compat_restore_vfp_context(struct compat_vfp_sigframe __user *frame) > compat_ulong_t fpscr; > int i, err = 0; > > + /* This must not be called when the FP/SIMD is missing */ > + if (WARN_ON(!system_supports_fpsimd())) > + return -EINVAL; > + > __get_user_error(magic, &frame->magic, err); > __get_user_error(size, &frame->size, err); > > @@ -223,7 +230,7 @@ static int compat_restore_sigframe(struct pt_regs *regs, > err |= !valid_user_regs(®s->user_regs, current); > > aux = (struct compat_aux_sigframe __user *) sf->uc.uc_regspace; > - if (err == 0) > + if (err == 0 && system_supports_fpsimd()) > err |= compat_restore_vfp_context(&aux->vfp); > > return err; > @@ -419,7 +426,7 @@ static int compat_setup_sigframe(struct compat_sigframe __user *sf, > > aux = (struct compat_aux_sigframe __user *) sf->uc.uc_regspace; > > - if (err == 0) > + if (err == 0 && system_supports_fpsimd()) > err |= compat_preserve_vfp_context(&aux->vfp); > __put_user_error(0, &aux->end_magic, err); Same comments as for the native signals. -- Catalin From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8F8B5C33CA2 for ; Fri, 10 Jan 2020 12:35:00 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 3BE3220721 for ; Fri, 10 Jan 2020 12:35:00 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="oDXgMnn/" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 3BE3220721 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=88B/E4W7OMmpUqyDrMKZIJeLT0N18ygtdvmbnmx2t0M=; b=oDXgMnn/u6IXnh YkGMGOl9+Ngh22cgBY3IZ7hhjMd41h4fvk7CckyM36gWX3Z+3/Ghg/32l7bysekgC8GBSs+QihkUi WoLkT8QqrKvX+2wTIxiEHvywc5Y9ZKnnOF8Cmaz8WkxZ0W4un6TfEedM7GR0EK24p2//CDNpFdOSc Omv+Ln1u154yawGWKL6oP6xDQx1zgFKQd4Bws52+nrCHPPC6QP2EXmVbOSLlach3kWAXWsiok/nVk IA7iuK2Qj618wr7NYsHKTQ8bB8fCGeabpNAIhqh+F+wsQTfTj9jDcGfaJQGJkWlzSDG2RoWSBs/XP XhLx73b9J6BqFsA+h4Bg==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1iptV4-0004BF-I6; Fri, 10 Jan 2020 12:34:50 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1iptV1-0004A9-EC for linux-arm-kernel@lists.infradead.org; Fri, 10 Jan 2020 12:34:49 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 8D0921063; Fri, 10 Jan 2020 04:34:45 -0800 (PST) Received: from arrakis.emea.arm.com (arrakis.cambridge.arm.com [10.1.197.42]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 3E2E03F534; Fri, 10 Jan 2020 04:34:44 -0800 (PST) Date: Fri, 10 Jan 2020 12:34:42 +0000 From: Catalin Marinas To: Suzuki K Poulose Subject: Re: [PATCH v2 6/7] arm64: signal: nofpsimd: Handle fp/simd context for signal frames Message-ID: <20200110123441.GB8786@arrakis.emea.arm.com> References: <20191217183402.2259904-1-suzuki.poulose@arm.com> <20191217183402.2259904-7-suzuki.poulose@arm.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20191217183402.2259904-7-suzuki.poulose@arm.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200110_043447_563567_0DD97409 X-CRM114-Status: GOOD ( 16.29 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: mark.rutland@arm.com, ard.biesheuvel@linaro.org, maz@kernel.org, Will Deacon , linux-kernel@vger.kernel.org, christoffer.dall@arm.com, will@kernel.org, dave.martin@arm.com, linux-arm-kernel@lists.infradead.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Tue, Dec 17, 2019 at 06:34:01PM +0000, Suzuki K Poulose wrote: > diff --git a/arch/arm64/kernel/signal.c b/arch/arm64/kernel/signal.c > index dd2cdc0d5be2..c648f7627035 100644 > --- a/arch/arm64/kernel/signal.c > +++ b/arch/arm64/kernel/signal.c > @@ -173,6 +173,10 @@ static int preserve_fpsimd_context(struct fpsimd_context __user *ctx) > ¤t->thread.uw.fpsimd_state; > int err; > > + /* This must not be called when FP/SIMD support is missing */ > + if (WARN_ON(!system_supports_fpsimd())) > + return -EINVAL; I'd drop this, see below. > @@ -191,6 +195,10 @@ static int restore_fpsimd_context(struct fpsimd_context __user *ctx) > __u32 magic, size; > int err = 0; > > + /* This must not be called when FP/SIMD support is missing */ > + if (WARN_ON(!system_supports_fpsimd())) > + return -EINVAL; > + > /* check the magic/size information */ > __get_user_error(magic, &ctx->head.magic, err); > __get_user_error(size, &ctx->head.size, err); > @@ -261,6 +269,9 @@ static int restore_sve_fpsimd_context(struct user_ctxs *user) > struct user_fpsimd_state fpsimd; > struct sve_context sve; > > + if (WARN_ON(!system_supports_fpsimd())) > + return -EINVAL; > + > if (__copy_from_user(&sve, user->sve, sizeof(sve))) > return -EFAULT; > > @@ -371,6 +382,8 @@ static int parse_user_sigframe(struct user_ctxs *user, > goto done; > > case FPSIMD_MAGIC: > + if (!system_supports_fpsimd()) > + goto invalid; > if (user->fpsimd) > goto invalid; > > @@ -506,7 +519,7 @@ static int restore_sigframe(struct pt_regs *regs, > if (err == 0) > err = parse_user_sigframe(&user, sf); > > - if (err == 0) { > + if (err == 0 && system_supports_fpsimd()) { > if (!user.fpsimd) > return -EINVAL; I don't think we need to be over paranoid here and add three/four checks and two warnings in static functions. parse_user_sigframe() already returns -EINVAL if SVE or FPSIMD is missing (the latter with your check above). We don't need this additional check in restore_sigframe() and restore_{sve_,}fpsimd_context(), the call paths are simple enough. > > @@ -623,7 +636,7 @@ static int setup_sigframe(struct rt_sigframe_user_layout *user, > > err |= __copy_to_user(&sf->uc.uc_sigmask, set, sizeof(*set)); > > - if (err == 0) { > + if (err == 0 && system_supports_fpsimd()) { > struct fpsimd_context __user *fpsimd_ctx = > apply_user_offset(user, user->fpsimd_offset); > err |= preserve_fpsimd_context(fpsimd_ctx); This check is also sufficient for a static function not to have the WARN_ON. > diff --git a/arch/arm64/kernel/signal32.c b/arch/arm64/kernel/signal32.c > index 12a585386c2f..97ace6919bc2 100644 > --- a/arch/arm64/kernel/signal32.c > +++ b/arch/arm64/kernel/signal32.c > @@ -100,6 +100,9 @@ static int compat_preserve_vfp_context(struct compat_vfp_sigframe __user *frame) > compat_ulong_t fpscr, fpexc; > int i, err = 0; > > + /* This must not be called when the FP/SIMD is missing */ > + if (WARN_ON(!system_supports_fpsimd())) > + return -EINVAL; > /* > * Save the hardware registers to the fpsimd_state structure. > * Note that this also saves V16-31, which aren't visible > @@ -149,6 +152,10 @@ static int compat_restore_vfp_context(struct compat_vfp_sigframe __user *frame) > compat_ulong_t fpscr; > int i, err = 0; > > + /* This must not be called when the FP/SIMD is missing */ > + if (WARN_ON(!system_supports_fpsimd())) > + return -EINVAL; > + > __get_user_error(magic, &frame->magic, err); > __get_user_error(size, &frame->size, err); > > @@ -223,7 +230,7 @@ static int compat_restore_sigframe(struct pt_regs *regs, > err |= !valid_user_regs(®s->user_regs, current); > > aux = (struct compat_aux_sigframe __user *) sf->uc.uc_regspace; > - if (err == 0) > + if (err == 0 && system_supports_fpsimd()) > err |= compat_restore_vfp_context(&aux->vfp); > > return err; > @@ -419,7 +426,7 @@ static int compat_setup_sigframe(struct compat_sigframe __user *sf, > > aux = (struct compat_aux_sigframe __user *) sf->uc.uc_regspace; > > - if (err == 0) > + if (err == 0 && system_supports_fpsimd()) > err |= compat_preserve_vfp_context(&aux->vfp); > __put_user_error(0, &aux->end_magic, err); Same comments as for the native signals. -- Catalin _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel