From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D2ACEC77B6C for ; Thu, 13 Apr 2023 02:39:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230156AbjDMCj2 (ORCPT ); Wed, 12 Apr 2023 22:39:28 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35626 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230255AbjDMCix (ORCPT ); Wed, 12 Apr 2023 22:38:53 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C95A09747; Wed, 12 Apr 2023 19:37:41 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 31EDE63AB4; Thu, 13 Apr 2023 02:37:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CE896C43444; Thu, 13 Apr 2023 02:37:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1681353442; bh=fn4c/CDgIjRRQYF9Ditvwio+s6mP6kNR2b4a0KayenQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=BRK6sLxybVxXIVUbfnK4HIErxF4z6kmcc4RXQ9Hr/FfbNnDrGQXefU4+lm8HnAOgH tL27vSbjpkm1KawRPPCZSYOkh7YJ/u3SbF/SoF8gzKcqXtvljueqvlovcI91pemgED JW7fSr+j97RbFJyeZFPNbzw1/IkSRKbYRBBK7i4U2XvIK2c210sOb2A65Zxb73Xme/ kOxYjaY5sK2YfQsTTTxurcESy3pVlvkRZOpKw4bWFHpX+5XHVd0kBG9BJl2TyFXNf/ pyRqvuRK+c6Jh7R9XX2Zsx9vXJoM7VwzdgpCWeZBBF0+qcxRrYcBPrC1dccM0WBgoR UNhAxOL58X3sQ== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: "Steven Rostedt (Google)" , Douglas RAILLARD , Masami Hiramatsu , Sasha Levin , vschneid@redhat.com, linux-trace-kernel@vger.kernel.org Subject: [PATCH AUTOSEL 6.1 15/17] tracing: Error if a trace event has an array for a __field() Date: Wed, 12 Apr 2023 22:36:43 -0400 Message-Id: <20230413023647.74661-15-sashal@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230413023647.74661-1-sashal@kernel.org> References: <20230413023647.74661-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-trace-kernel@vger.kernel.org From: "Steven Rostedt (Google)" [ Upstream commit f82e7ca019dfad3b006fd3b772f7ac569672db55 ] A __field() in the TRACE_EVENT() macro is used to set up the fields of the trace event data. It is for single storage units (word, char, int, pointer, etc) and not for complex structures or arrays. Unfortunately, there's nothing preventing the build from accepting: __field(int, arr[5]); from building. It will turn into a array value. This use to work fine, as the offset and size use to be determined by the macro using the field name, but things have changed and the offset and size are now determined by the type. So the above would only be size 4, and the next field will be located 4 bytes from it (instead of 20). The proper way to declare static arrays is to use the __array() macro. Instead of __field(int, arr[5]) it should be __array(int, arr, 5). Add some macro tricks to the building of a trace event from the TRACE_EVENT() macro such that __field(int, arr[5]) will fail to build. A comment by the failure will explain why the build failed. Link: https://lore.kernel.org/lkml/20230306122549.236561-1-douglas.raillard@arm.com/ Link: https://lore.kernel.org/linux-trace-kernel/20230309221302.642e82d9@gandalf.local.home Reported-by: Douglas RAILLARD Signed-off-by: Steven Rostedt (Google) Acked-by: Masami Hiramatsu (Google) Signed-off-by: Sasha Levin --- include/trace/stages/stage5_get_offsets.h | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/include/trace/stages/stage5_get_offsets.h b/include/trace/stages/stage5_get_offsets.h index fba4c24ed9e60..def36fbb8c5cd 100644 --- a/include/trace/stages/stage5_get_offsets.h +++ b/include/trace/stages/stage5_get_offsets.h @@ -9,17 +9,30 @@ #undef __entry #define __entry entry +/* + * Fields should never declare an array: i.e. __field(int, arr[5]) + * If they do, it will cause issues in parsing and possibly corrupt the + * events. To prevent that from happening, test the sizeof() a fictitious + * type called "struct _test_no_array_##item" which will fail if "item" + * contains array elements (like "arr[5]"). + * + * If you hit this, use __array(int, arr, 5) instead. + */ #undef __field -#define __field(type, item) +#define __field(type, item) \ + { (void)sizeof(struct _test_no_array_##item *); } #undef __field_ext -#define __field_ext(type, item, filter_type) +#define __field_ext(type, item, filter_type) \ + { (void)sizeof(struct _test_no_array_##item *); } #undef __field_struct -#define __field_struct(type, item) +#define __field_struct(type, item) \ + { (void)sizeof(struct _test_no_array_##item *); } #undef __field_struct_ext -#define __field_struct_ext(type, item, filter_type) +#define __field_struct_ext(type, item, filter_type) \ + { (void)sizeof(struct _test_no_array_##item *); } #undef __array #define __array(type, item, len) -- 2.39.2