From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D7A7030595C; Tue, 30 Sep 2025 15:09:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759244941; cv=none; b=HO0zR0SW+TZJWcfDGw6uinTkYRNmC5cAzMAJX2BeWMpzaYtEMKJP4H3esIh8CTtt4nCkTWIr0UEBVlAuqDLCOgGPl6wy++E1+W///zQJamf7IlFqrI/tOQoxyaSrNrXa1XTJxv5qqmefjWSewJBnOJUY4J4LV1Vus2Bs3reTiXs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759244941; c=relaxed/simple; bh=rggnYdwocH3XaxN4ASJ3ZI84uMCnaN1E1KaX4PrPUoA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=pB3XKdAC1Ss2bCugLllxm4QZWwLMRge71//9cBRX37jfqC3wCwWyXzwvA8wb7hom/SFzctuY4x8iaXNHKeYeRG8qpdFXEMQbJ3FyKLhgstf/ePDRjuFqPiPEZgPAMXKqkFyrvkZFJt4sO4atbrESt/ADjVvqO1HkqUFdmqflJUw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ckoxWOS1; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ckoxWOS1" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 431D7C116B1; Tue, 30 Sep 2025 15:09:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1759244941; bh=rggnYdwocH3XaxN4ASJ3ZI84uMCnaN1E1KaX4PrPUoA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ckoxWOS1zEH9XZX1nvfrcQtOzt1OLwT0jiHaV5rkFZ3zFvzZJRuEvPJ/ghf+wwCqQ XW0QVkMWqYT6CKhrEmFqSClF6RnQVGLwBE6AAWxHprI5K1DbavzSV8/UyCj16fe9sE zt4W/QPbpMxEAkJd7GLYADJebRJbg093WJMWbAG4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Yeoreum Yun , Alexander Potapenko , Andrey Konovalov , Andrey Ryabinin , Dmitriy Vyukov , Vincenzo Frascino , Andrew Morton Subject: [PATCH 5.15 003/151] kunit: kasan_test: disable fortify string checker on kasan_strings() test Date: Tue, 30 Sep 2025 16:45:33 +0200 Message-ID: <20250930143827.724145165@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250930143827.587035735@linuxfoundation.org> References: <20250930143827.587035735@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Yeoreum Yun commit 7a19afee6fb39df63ddea7ce78976d8c521178c6 upstream. Similar to commit 09c6304e38e4 ("kasan: test: fix compatibility with FORTIFY_SOURCE") the kernel is panicing in kasan_string(). This is due to the `src` and `ptr` not being hidden from the optimizer which would disable the runtime fortify string checker. Call trace: __fortify_panic+0x10/0x20 (P) kasan_strings+0x980/0x9b0 kunit_try_run_case+0x68/0x190 kunit_generic_run_threadfn_adapter+0x34/0x68 kthread+0x1c4/0x228 ret_from_fork+0x10/0x20 Code: d503233f a9bf7bfd 910003fd 9424b243 (d4210000) ---[ end trace 0000000000000000 ]--- note: kunit_try_catch[128] exited with irqs disabled note: kunit_try_catch[128] exited with preempt_count 1 # kasan_strings: try faulted: last ** replaying previous printk message ** # kasan_strings: try faulted: last line seen mm/kasan/kasan_test_c.c:1600 # kasan_strings: internal error occurred preventing test case from running: -4 Link: https://lkml.kernel.org/r/20250801120236.2962642-1-yeoreum.yun@arm.com Fixes: 73228c7ecc5e ("KASAN: port KASAN Tests to KUnit") Signed-off-by: Yeoreum Yun Cc: Alexander Potapenko Cc: Andrey Konovalov Cc: Andrey Ryabinin Cc: Dmitriy Vyukov Cc: Vincenzo Frascino Cc: Signed-off-by: Andrew Morton Signed-off-by: Yeoreum Yun Signed-off-by: Greg Kroah-Hartman --- lib/test_kasan.c | 1 + 1 file changed, 1 insertion(+) --- a/lib/test_kasan.c +++ b/lib/test_kasan.c @@ -917,6 +917,7 @@ static void kasan_strings(struct kunit * ptr = kmalloc(size, GFP_KERNEL | __GFP_ZERO); KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr); + OPTIMIZER_HIDE_VAR(ptr); kfree(ptr);