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 9777023D290 for ; Tue, 12 May 2026 14:03:50 +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=1778594630; cv=none; b=EtNGbEGdb7l2tBWvwICk6oXdi3Ohhx5xB4wuU8u66Sdc8v3Gj2J2Wp6wrGOxotgkYVZmKqwWQ1y53jnahUhyTx6/xxEgw6XOA/+aXqJSgc5KVKkrHCC7p+XrHQBKOFw/dKQBVgvEbisPGepFZYvzQ/7rzPzNhAAEV2mET4TuDM4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778594630; c=relaxed/simple; bh=9GOhS/NchTdfcPexn2M8vmpKXjRk+3+jm+h+EcEvfLE=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=awLSdSRdVyA1gW+xVEiieuoflbNeCx629+Ga2Fr4XfKJpYBbtM/wJb5GnaDMgImV6axViLf3WDoP/37RuUOi+w2jfBw/a6GP+uwdPTmtz3iLyDYPUZ8d0aMhD9HWGXWUA+WNXt4YLzkGoLBkxT/bReX1YHfOIAzOtJncsocgYM0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=gztgvXuD; 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="gztgvXuD" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D280DC2BCF5; Tue, 12 May 2026 14:03:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778594630; bh=9GOhS/NchTdfcPexn2M8vmpKXjRk+3+jm+h+EcEvfLE=; h=Subject:To:Cc:From:Date:From; b=gztgvXuDTfEmrqbkPNBacoc+77+y5c8zeF2uTP5xqkHbodczYV8ugxiSG1c5wG/kH 89y/8ApAYq2HCrT6qZVJujwlIL24Xvq0e5txrJsQzdk9gmL2C0log9vyHPMCUGzKvO DheJYnEiQdZquUsiYDXTZFZqvPmrnsJSE247Axww= Subject: FAILED: patch "[PATCH] s390/debug: Reject zero-length input before trimming a" failed to apply to 6.12-stable tree To: pengpeng@iscas.ac.cn,agordeev@linux.ibm.com,bblock@linux.ibm.com,gor@linux.ibm.com Cc: From: Date: Tue, 12 May 2026 16:03:55 +0200 Message-ID: <2026051255-manatee-ongoing-4954@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 6.12-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.12.y git checkout FETCH_HEAD git cherry-pick -x c366a7b5ed7564e41345c380285bd3f6cb98971b # git commit -s git send-email --to '' --in-reply-to '2026051255-manatee-ongoing-4954@gregkh' --subject-prefix 'PATCH 6.12.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From c366a7b5ed7564e41345c380285bd3f6cb98971b Mon Sep 17 00:00:00 2001 From: Pengpeng Hou Date: Fri, 17 Apr 2026 15:35:30 +0800 Subject: [PATCH] s390/debug: Reject zero-length input before trimming a newline debug_get_user_string() duplicates the userspace buffer with memdup_user_nul() and then unconditionally looks at buffer[user_len - 1] to strip a trailing newline. A zero-length write reaches this helper unchanged, so the newline trim reads before the start of the allocated buffer. Reject empty writes before accessing the last input byte. Fixes: 66a464dbc8e0 ("[PATCH] s390: debug feature changes") Cc: stable@vger.kernel.org Signed-off-by: Pengpeng Hou Reviewed-by: Benjamin Block Reviewed-by: Vasily Gorbik Tested-by: Vasily Gorbik Link: https://lore.kernel.org/r/20260417073530.96002-1-pengpeng@iscas.ac.cn Signed-off-by: Vasily Gorbik Signed-off-by: Alexander Gordeev diff --git a/arch/s390/kernel/debug.c b/arch/s390/kernel/debug.c index 31430e9bcfdd..2612f634e826 100644 --- a/arch/s390/kernel/debug.c +++ b/arch/s390/kernel/debug.c @@ -1414,6 +1414,9 @@ static inline char *debug_get_user_string(const char __user *user_buf, { char *buffer; + if (!user_len) + return ERR_PTR(-EINVAL); + buffer = memdup_user_nul(user_buf, user_len); if (IS_ERR(buffer)) return buffer;