From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 107C53E008A; Tue, 21 Jul 2026 22:52:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784674333; cv=none; b=LP0Ggzh7MnPcr87A8KnBFAguxCypSJWOlrzacJVjYOlOUS46OnXoY9IreEwrfkKv5bIYta9H87HaWfDuLahLQICLMbIrtXaZoc3ZXpxfcqDcfGnRpioZT6KHKt/J6+TI823FcKs5RhB9o4kNAwWfk85ths3wIR0Fr74v8SV+NNs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784674333; c=relaxed/simple; bh=PD3rhKnfaH5Ir2NWbbk/BBxjjSt0IHoPA54T8WxqUeE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=noxM2VVNEh9501BFmqSmVJFL6g1SQ1fLPsBW1WK8SBNnRaGnXmCWTPO02cKE7a4mkcmfwSoksG9hQspIYvjgfvo3nUBgtft/ANw5s/DM0exUG6OZQ9ZPCJjisp++Jh2/luIxSYr6sM6u+aUpPcdf1crHO3pbfgAUYZm2g2OuBrA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=1Be5t9qR; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="1Be5t9qR" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0AF3E1F000E9; Tue, 21 Jul 2026 22:52:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784674331; bh=DhXafN6n2vk5gTTzUm18zaC6cIEMrSmIkFy5C4z2Rww=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=1Be5t9qRYiQNO3CCOd40fzPNd89AVNxqDpw63HUxCiIEfxvl6bzsJkCgfeu3qIzUI Ldm2HmedDLc5H8OEDLo/4hswnPWbKnG7giRa/lBCqbt6jIyzIMQ9/0MXMfOeG1MpXj PaPQCh2yP21sT23Nhjojr2+lmbzbgnGQVWpF/+aA= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Thorsten Blum , "Borislav Petkov (AMD)" Subject: [PATCH 5.10 458/699] x86/boot: Reject too long acpi_rsdp= values Date: Tue, 21 Jul 2026 17:23:37 +0200 Message-ID: <20260721152406.030161699@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152355.667394603@linuxfoundation.org> References: <20260721152355.667394603@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.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Thorsten Blum commit d130041a7b96f79cd4c7079a6c2431a6db4c9619 upstream. cmdline_find_option() returns the full length of the parsed acpi_rsdp= value. get_cmdline_acpi_rsdp() then silently truncates values which do not fit in the val[] buffer. Prevent boot_kstrtoul() from parsing a truncated value and then the kernel from silently using the wrong RSDP address, see discussion in Link:. Issue a warning so that the user is aware that s/he supplied a malformed value and can get feedback instead of silent crashes. [ bp: Make commit message more precise. ] Fixes: 3c98e71b42a7 ("x86/boot: Add "acpi_rsdp=" early parsing") Signed-off-by: Thorsten Blum Signed-off-by: Borislav Petkov (AMD) Cc: stable@vger.kernel.org Link: https://lore.kernel.org/all/20260617130417.36651-4-thorsten.blum@linux.dev Signed-off-by: Greg Kroah-Hartman --- arch/x86/boot/compressed/acpi.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) --- a/arch/x86/boot/compressed/acpi.c +++ b/arch/x86/boot/compressed/acpi.c @@ -288,10 +288,15 @@ static unsigned long get_cmdline_acpi_rs char val[MAX_ADDR_LEN] = { }; int ret; - ret = cmdline_find_option("acpi_rsdp", val, MAX_ADDR_LEN); + ret = cmdline_find_option("acpi_rsdp", val, sizeof(val)); if (ret < 0) return 0; + if (ret >= sizeof(val)) { + warn("acpi_rsdp= value too long; ignoring"); + return 0; + } + if (boot_kstrtoul(val, 16, &addr)) return 0; #endif