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=-8.5 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,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 34C30C32792 for ; Mon, 30 Sep 2019 15:34:37 +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 06B9A20815 for ; Mon, 30 Sep 2019 15:34:37 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="aCoKkVBh" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 06B9A20815 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=4HVKYzjH19uofaBNRZ54xaGRVb1A7nRGLbotjlU+Jpo=; b=aCoKkVBhloC9l5 eu9YI0w4IipRdX7XlyIJI1Vw8UZT5RV7+cozilrAbf4Qj4WA4neTZI7wugFQQvMSNk45tj201Sf6+ rtAHBmlTw0b+eM0DIn6fxhRIxhOVx9EIW0gSES7nASLKinbXJjRm+4jcLmsSiK/gXibAOcEt3K63V Qh5Us1hbqDO+nUI+hSslsWhfSN6v1P2IegQYWNCRdmkFibw31yoBkXbnX/0xVokDhj0ySClfRf0uv b3IqWQRs90///fGyNaxIXNqL7+94QISHg+Ruyhxagzq5xGXpQuS4YXq8xLJtpcmH5ws9XHogTOlat b2zYwPEPD6X+Bof+C26Q==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.2 #3 (Red Hat Linux)) id 1iExh1-00077k-BW; Mon, 30 Sep 2019 15:34:31 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.92.2 #3 (Red Hat Linux)) id 1iExgw-00074x-U8 for linux-arm-kernel@lists.infradead.org; Mon, 30 Sep 2019 15:34:28 +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 565E21000; Mon, 30 Sep 2019 08:34:26 -0700 (PDT) Received: from arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 5267A3F706; Mon, 30 Sep 2019 08:34:25 -0700 (PDT) Date: Mon, 30 Sep 2019 16:34:23 +0100 From: Dave Martin To: Masayoshi Mizuma Subject: Re: [PATCH v2] arm64/sve: Fix wrong free for task->thread.sve_state Message-ID: <20190930153422.GU27757@arm.com> References: <20190927153949.29870-1-msys.mizuma@gmail.com> <20190930130244.GT27757@arm.com> <20190930142952.7zwbucjvh2wxbzis@gabell> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20190930142952.7zwbucjvh2wxbzis@gabell> User-Agent: Mutt/1.5.23 (2014-03-12) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20190930_083427_065856_B5426F2F X-CRM114-Status: GOOD ( 37.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: Masayoshi Mizuma , Catalin Marinas , linux-kernel@vger.kernel.org, Julien Grall , Will Deacon , 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 Mon, Sep 30, 2019 at 10:29:53AM -0400, Masayoshi Mizuma wrote: > Hi Julien and Dave, > > On Mon, Sep 30, 2019 at 02:02:46PM +0100, Dave Martin wrote: > > On Mon, Sep 30, 2019 at 01:23:18PM +0100, Julien Grall wrote: > > > Hi, > > > > > > On 27/09/2019 16:39, Masayoshi Mizuma wrote: > > > >From: Masayoshi Mizuma > > > > > > > >The system which has SVE feature crashed because of > > > >the memory pointed by task->thread.sve_state was destroyed > > > >by someone. > > > > > > > >That is because sve_state is freed while the forking the > > > >child process. The child process has the pointer of sve_state > > > >which is same as the parent's because the child's task_struct > > > >is copied from the parent's one. If the copy_process() > > > >fails as an error on somewhere, for example, copy_creds(), > > > >then the sve_state is freed even if the parent is alive. > > > >The flow is as follows. > > > > > > > >copy_process > > > > p = dup_task_struct > > > > => arch_dup_task_struct > > > > *dst = *src; // copy the entire region. > > > >: > > > > retval = copy_creds > > > > if (retval < 0) > > > > goto bad_fork_free; > > > >: > > > >bad_fork_free: > > > >... > > > > delayed_free_task(p); > > > > => free_task > > > > => arch_release_task_struct > > > > => fpsimd_release_task > > > > => __sve_free > > > > => kfree(task->thread.sve_state); > > > > // free the parent's sve_state > > > > > > > >Move child's sve_state = NULL and clearing TIF_SVE flag > > > >to arch_dup_task_struct() so that the child doesn't free the > > > >parent's one. > > > > > > > >Cc: stable@vger.kernel.org > > > >Fixes: bc0ee4760364 ("arm64/sve: Core task context handling") > > > > > > Looking at the log, it looks like THREAD_INFO_IN_TASK was selected before > > > the bc0ee4760364. So it should be fine to backport for all the Linux tree > > > contain this commit. > > I think this patch is needed for the kernel has SVE support. > I'll add the Cc tag as Dave said: > > Cc: stable@vger.kernel.org # 4.15+ Based on running git log --grep='stable@vger.*#.*-', the most common syntax for this situation seems to be Cc: # 4.15.x- > So, I suppose this patch will be backported to stables 5.3.X, > 5.2.X and longterm 4.19.X. > Does this make sense? Yes, I think so. It's up to the stable maintainers to decide which trees the patch actually gets applied too. > > > >Signed-off-by: Masayoshi Mizuma > > > >Reported-by: Hidetoshi Seto > > > >Suggested-by: Dave Martin > > > > > > I have tested the patch and can confirm that double-free disappeared after > > > the patch is applied: > > > > > > Tested-by: Julien Grall > > Thank you so much! > > > > > Good to have that confirmed -- thanks for verifying. > > > > [...] > > > > > >--- > > > > arch/arm64/kernel/process.c | 21 ++++----------------- > > > > 1 file changed, 4 insertions(+), 17 deletions(-) > > > > > > > >diff --git a/arch/arm64/kernel/process.c b/arch/arm64/kernel/process.c > > > >index f674f28df..6937f5935 100644 > > > >--- a/arch/arm64/kernel/process.c > > > >+++ b/arch/arm64/kernel/process.c > > > >@@ -323,22 +323,16 @@ void arch_release_task_struct(struct task_struct *tsk) > > > > fpsimd_release_task(tsk); > > > > } > > > >-/* > > > >- * src and dst may temporarily have aliased sve_state after task_struct > > > >- * is copied. We cannot fix this properly here, because src may have > > > >- * live SVE state and dst's thread_info may not exist yet, so tweaking > > > >- * either src's or dst's TIF_SVE is not safe. > > > >- * > > > >- * The unaliasing is done in copy_thread() instead. This works because > > > >- * dst is not schedulable or traceable until both of these functions > > > >- * have been called. > > > >- */ > > > > > > It would be good to explain in the commit message why tweaking "dst" in > > > arch_dup_task_struct() is fine. > > > > > > From my understanding, Arm64 used to have thread_info on the stack. So it > > > would not be possible to clear TIF_SVE until the stack is initialized. > > > > > > Now that the thread_info is part of the task, it should be valid to modify > > > the flag from arch_dup_task_struct(). > > > > > > Note that technically, TIF_SVE does not need to be cleared from > > > arch_dup_task_struct(). It could also be done from copy_thread(). But it is > > > easier to keep the both changes together. > > Thanks, let me add some comments to the commit log. > > > > > > > > int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src) > > > > { > > > > if (current->mm) > > > > fpsimd_preserve_current_state(); > > > > *dst = *src; > > > > Ack, some more explanation would be a good idea here. > > > > Maybe the following comments are sufficient? > > > > /* We rely on the above assingment to initialise dst's thread_flags: */ > > Thanks, I'll add this comment. > > > > > > >+ BUILD_BUG_ON(!IS_ENABLED(CONFIG_THREAD_INFO_IN_TASK)); > > > > > > > and > > > > /* > > * Detach src's sve_state (if any) from dst so that it does not > > * get erroneously used or freed prematurely. dst's sve_state > > * will be allocated on demand later on if dst uses SVE. > > * For consistency, also clear TIF_SVE here: this could be done > > * later in copy_process(), but to avoid tripping up future > > * maintainers it is best not to leave TIF_SVE and sve_state in > > * an inconsistent state, even temporarily. > > */ > > I'll add this comments. OK, if these make sense to you, feel free to add them. [...] Cheers ---Dave _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel