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 CF0E43AA9D9 for ; Tue, 12 May 2026 14:04:03 +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=1778594643; cv=none; b=NUrzlvZB4tTbwYiSOoNzlJiLr/pNqy1o465hsjbbMSM+cb0mqEt6eY80jl7ZTvME4jsaJccfzzKEU/EMK83EP5r+Xo/d66XrSdKfLEWMFNUmEEyGizxLrpy6xvAJELQaB36fpmWPZXO9cQepz3ooqfehjcJYotPcw30Rm1W6yHs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778594643; c=relaxed/simple; bh=HJe8f+Sd5vKve+1BUt6k6OB7F9/07FEMn9DtxXgXHFc=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=FjjjS71Ot8LTHqKPQrg7Rn8tWFDoamU+7Ea3fbm5g50UYJpAZUeS3Z6gZ5bwHOzidAqNsLtfgxOivOx2dzrn/bO61COrvDUBkFXBdMO8eNTy2c3gSTwTzlm4B5eyQZE+vSsUtRTNWVBU7pFpp9Z9uyF5cT/DliOX014RttcIasA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=PBI0kUT2; 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="PBI0kUT2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4BB11C2BCF5; Tue, 12 May 2026 14:04:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778594643; bh=HJe8f+Sd5vKve+1BUt6k6OB7F9/07FEMn9DtxXgXHFc=; h=Subject:To:Cc:From:Date:From; b=PBI0kUT2KRvJB0pyEGoQ1y3cBgZzJ34lqn48lP427cTmaPg34xxdq2iOeOlR3qqNp pn23FCDyBCxhXD0Nb0IiVdTCObKubTNVyqE4qMPj3gfKG847ay+yPKDJHecd529rMa ylyNQoSGll1yr83vIvqbFxPYCAqraN+gfYYIrF7o= Subject: FAILED: patch "[PATCH] s390/debug: Reject zero-length input before trimming a" failed to apply to 5.10-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:56 +0200 Message-ID: <2026051256-navy-magician-f324@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 5.10-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-5.10.y git checkout FETCH_HEAD git cherry-pick -x c366a7b5ed7564e41345c380285bd3f6cb98971b # git commit -s git send-email --to '' --in-reply-to '2026051256-navy-magician-f324@gregkh' --subject-prefix 'PATCH 5.10.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;