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 1DBF82E8DEC; Mon, 17 Aug 2026 15:13:17 +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=1786979599; cv=none; b=HaxKqND+qEbfHRsaie0DfTDW6Ciq7kxOq+XivY4JcEfhD+JbFkhsBv6CsNELd8ZK9qpokJ7dDv9oyD2wlTZRLNBekgT9C9FyCvAaKKtkWlI4uTwAzEHlpdd0a5mzCM01duUADS+Ev4LVd3lz/vr62FBtzm01tajUT3FLEQifn3Q= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786979599; c=relaxed/simple; bh=XnTg0FQaRi2nRXNtVkwnHeAuOIcixIwmvI3cjTan0ns=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=kEH9UjI4IrwbtmjFRfo9oE4cJtZbFkg5idpIK+XVYS00yKRtVBgRx4LrvsInr09L7F185FTcEyWjp7jRATu3LsqmXkXhhR+TWb3f/fogZrJATitslB2TnB8ifTZJuGiLwYNuA7EfQVK9c1L5pA7bNAsyXpOT6tihMBoer5H3dnk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=mZjapfh1; 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="mZjapfh1" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 658C31F00A3A; Mon, 17 Aug 2026 15:13:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786979597; bh=dbHr6bQyyq9QK1MfGCzqZCaE+qGE1vkJGKSdHMxcadk=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=mZjapfh19OrVCTv3VKOtVbzelMIjVZ1JAFmrSXRxhYJIkIMywJIX1fPdhlfIXFQ8D U8Ccvid52pQaEiqhXJ1O0gYyURdd0kfHlQzyM8mvnCeECwuLyFfzFl32UJqVangyT0 ZacFvrzWLFiLh07U3usKdccFv8MSf5QRCQcQR6s4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, "Masami Hiramatsu (Google)" Subject: [PATCH 6.1 241/609] tracing/probes: Avoid temporary buffer truncation in trace_probe_match_command_args() Date: Mon, 17 Aug 2026 15:28:57 +0200 Message-ID: <20260817132552.140085322@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260817132543.039278408@linuxfoundation.org> References: <20260817132543.039278408@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 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Masami Hiramatsu (Google) commit 15f197856d68882af9416fc97516bb55079b7677 upstream. In trace_probe_match_command_args(), a stack buffer buf[MAX_ARGSTR_LEN + 1] (256 bytes) is used to format "=". However, since name can be up to 32 bytes (MAX_ARG_NAME_LEN) and comm up to 255 bytes (MAX_ARGSTR_LEN), the formatted string can exceed 256 bytes and get truncated by snprintf(), causing spurious argument matching failures. Instead of formatting into a temporary buffer on stack, compare the argument name, the '=' delimiter, and the comm expression directly. Link: https://lore.kernel.org/all/178454233010.290363.10428767141343428804.stgit@devnote2/ Fixes: eb5bf81330a7 ("tracing/kprobe: Add per-probe delete from event") Cc: stable@vger.kernel.org Assisted-by: Antigravity:gemini-3.5-flash Signed-off-by: Masami Hiramatsu (Google) Signed-off-by: Greg Kroah-Hartman --- kernel/trace/trace_probe.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) --- a/kernel/trace/trace_probe.c +++ b/kernel/trace/trace_probe.c @@ -1215,16 +1215,17 @@ int trace_probe_compare_arg_type(struct bool trace_probe_match_command_args(struct trace_probe *tp, int argc, const char **argv) { - char buf[MAX_ARGSTR_LEN + 1]; int i; if (tp->nr_args < argc) return false; for (i = 0; i < argc; i++) { - snprintf(buf, sizeof(buf), "%s=%s", - tp->args[i].name, tp->args[i].comm); - if (strcmp(buf, argv[i])) + int len = strlen(tp->args[i].name); + + if (strncmp(argv[i], tp->args[i].name, len) || + argv[i][len] != '=' || + strcmp(argv[i] + len + 1, tp->args[i].comm)) return false; } return true;