mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
libperf: Add reference count checking macros
The macros serve as a way to debug use of a reference counted struct. The macros add a memory allocated pointer that is interposed between the reference counted original struct at a get and freed by a put. The pointer replaces the original struct, so use of the struct name via APIs remains unchanged. Signed-off-by: Ian Rogers <irogers@google.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Alexey Bayduraev <alexey.v.bayduraev@linux.intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Cc: Darren Hart <dvhart@infradead.org> Cc: Davidlohr Bueso <dave@stgolabs.net> Cc: Dmitriy Vyukov <dvyukov@google.com> Cc: Eric Dumazet <edumazet@google.com> Cc: German Gomez <german.gomez@arm.com> Cc: Hao Luo <haoluo@google.com> Cc: James Clark <james.clark@arm.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: John Garry <john.g.garry@oracle.com> Cc: Kajol Jain <kjain@linux.ibm.com> Cc: Kan Liang <kan.liang@linux.intel.com> Cc: Leo Yan <leo.yan@linaro.org> Cc: Madhavan Srinivasan <maddy@linux.ibm.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Masami Hiramatsu <mhiramat@kernel.org> Cc: Miaoqian Lin <linmq006@gmail.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Riccardo Mancini <rickyman7@gmail.com> Cc: Shunsuke Nakamura <nakamura.shun@fujitsu.com> Cc: Song Liu <song@kernel.org> Cc: Stephane Eranian <eranian@google.com> Cc: Stephen Brennan <stephen.s.brennan@oracle.com> Cc: Steven Rostedt (VMware) <rostedt@goodmis.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Thomas Richter <tmricht@linux.ibm.com> Cc: Yury Norov <yury.norov@gmail.com> Link: http://lore.kernel.org/lkml/20230407230405.2931830-2-irogers@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
4121234a32
commit
a9b867f68e
94
tools/lib/perf/include/internal/rc_check.h
Normal file
94
tools/lib/perf/include/internal/rc_check.h
Normal file
@ -0,0 +1,94 @@
|
||||
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
|
||||
#ifndef __LIBPERF_INTERNAL_RC_CHECK_H
|
||||
#define __LIBPERF_INTERNAL_RC_CHECK_H
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <linux/zalloc.h>
|
||||
|
||||
/*
|
||||
* Shared reference count checking macros.
|
||||
*
|
||||
* Reference count checking is an approach to sanitizing the use of reference
|
||||
* counted structs. It leverages address and leak sanitizers to make sure gets
|
||||
* are paired with a put. Reference count checking adds a malloc-ed layer of
|
||||
* indirection on a get, and frees it on a put. A missed put will be reported as
|
||||
* a memory leak. A double put will be reported as a double free. Accessing
|
||||
* after a put will cause a use-after-free and/or a segfault.
|
||||
*/
|
||||
|
||||
#ifndef REFCNT_CHECKING
|
||||
/* Replaces "struct foo" so that the pointer may be interposed. */
|
||||
#define DECLARE_RC_STRUCT(struct_name) \
|
||||
struct struct_name
|
||||
|
||||
/* Declare a reference counted struct variable. */
|
||||
#define RC_STRUCT(struct_name) struct struct_name
|
||||
|
||||
/*
|
||||
* Interpose the indirection. Result will hold the indirection and object is the
|
||||
* reference counted struct.
|
||||
*/
|
||||
#define ADD_RC_CHK(result, object) (result = object, object)
|
||||
|
||||
/* Strip the indirection layer. */
|
||||
#define RC_CHK_ACCESS(object) object
|
||||
|
||||
/* Frees the object and the indirection layer. */
|
||||
#define RC_CHK_FREE(object) free(object)
|
||||
|
||||
/* A get operation adding the indirection layer. */
|
||||
#define RC_CHK_GET(result, object) ADD_RC_CHK(result, object)
|
||||
|
||||
/* A put operation removing the indirection layer. */
|
||||
#define RC_CHK_PUT(object) {}
|
||||
|
||||
#else
|
||||
|
||||
/* Replaces "struct foo" so that the pointer may be interposed. */
|
||||
#define DECLARE_RC_STRUCT(struct_name) \
|
||||
struct original_##struct_name; \
|
||||
struct struct_name { \
|
||||
struct original_##struct_name *orig; \
|
||||
}; \
|
||||
struct original_##struct_name
|
||||
|
||||
/* Declare a reference counted struct variable. */
|
||||
#define RC_STRUCT(struct_name) struct original_##struct_name
|
||||
|
||||
/*
|
||||
* Interpose the indirection. Result will hold the indirection and object is the
|
||||
* reference counted struct.
|
||||
*/
|
||||
#define ADD_RC_CHK(result, object) \
|
||||
( \
|
||||
object ? (result = malloc(sizeof(*result)), \
|
||||
result ? (result->orig = object, result) \
|
||||
: (result = NULL, NULL)) \
|
||||
: (result = NULL, NULL) \
|
||||
)
|
||||
|
||||
/* Strip the indirection layer. */
|
||||
#define RC_CHK_ACCESS(object) object->orig
|
||||
|
||||
/* Frees the object and the indirection layer. */
|
||||
#define RC_CHK_FREE(object) \
|
||||
do { \
|
||||
zfree(&object->orig); \
|
||||
free(object); \
|
||||
} while(0)
|
||||
|
||||
/* A get operation adding the indirection layer. */
|
||||
#define RC_CHK_GET(result, object) ADD_RC_CHK(result, (object ? object->orig : NULL))
|
||||
|
||||
/* A put operation removing the indirection layer. */
|
||||
#define RC_CHK_PUT(object) \
|
||||
do { \
|
||||
if (object) { \
|
||||
object->orig = NULL; \
|
||||
free(object); \
|
||||
} \
|
||||
} while(0)
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* __LIBPERF_INTERNAL_RC_CHECK_H */
|
Loading…
Reference in New Issue
Block a user