* [PATCH v2] Guard against inserting the same provider twice
@ 2026-01-16 20:38 eugene.loh
2026-01-16 21:53 ` Kris Van Hees
0 siblings, 1 reply; 2+ messages in thread
From: eugene.loh @ 2026-01-16 20:38 UTC (permalink / raw)
To: dtrace, dtrace-devel
From: Eugene Loh <eugene.loh@oracle.com>
Add a safety net to dt_provider_create(), to check if a specified
provider has already been inserted.
This also requires a corresponding change in dt_provider_lookup(), so
that it will work even if no providers have yet been inserted.
Signed-off-by: Eugene Loh <eugene.loh@oracle.com>
---
libdtrace/dt_provider.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/libdtrace/dt_provider.c b/libdtrace/dt_provider.c
index 848fdc132..e073e1f2d 100644
--- a/libdtrace/dt_provider.c
+++ b/libdtrace/dt_provider.c
@@ -1,6 +1,6 @@
/*
* Oracle Linux DTrace.
- * Copyright (c) 2006, 2025, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2006, 2026, Oracle and/or its affiliates. All rights reserved.
* Licensed under the Universal Permissive License v 1.0 as shown at
* http://oss.oracle.com/licenses/upl.
*/
@@ -110,6 +110,9 @@ dt_provider_lookup(dtrace_hdl_t *dtp, const char *name)
{
dt_provider_t tmpl;
+ if (dtp->dt_provs == NULL)
+ return NULL;
+
if ((strlen(name) + 1) > sizeof(tmpl.desc.dtvd_name))
return NULL;
@@ -124,6 +127,10 @@ dt_provider_create(dtrace_hdl_t *dtp, const char *name,
{
dt_provider_t *pvp;
+ pvp = dt_provider_lookup(dtp, name);
+ if (pvp)
+ return pvp;
+
if ((pvp = dt_zalloc(dtp, sizeof(dt_provider_t))) == NULL)
goto nomem;
--
2.47.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] Guard against inserting the same provider twice
2026-01-16 20:38 [PATCH v2] Guard against inserting the same provider twice eugene.loh
@ 2026-01-16 21:53 ` Kris Van Hees
0 siblings, 0 replies; 2+ messages in thread
From: Kris Van Hees @ 2026-01-16 21:53 UTC (permalink / raw)
To: eugene.loh; +Cc: dtrace, dtrace-devel
On Fri, Jan 16, 2026 at 03:38:12PM -0500, eugene.loh@oracle.com wrote:
> From: Eugene Loh <eugene.loh@oracle.com>
>
> Add a safety net to dt_provider_create(), to check if a specified
> provider has already been inserted.
>
> This also requires a corresponding change in dt_provider_lookup(), so
> that it will work even if no providers have yet been inserted.
>
> Signed-off-by: Eugene Loh <eugene.loh@oracle.com>
Reviewed-by: Kris Van Hees <kris.van.hees@oracle.com>
> ---
> libdtrace/dt_provider.c | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/libdtrace/dt_provider.c b/libdtrace/dt_provider.c
> index 848fdc132..e073e1f2d 100644
> --- a/libdtrace/dt_provider.c
> +++ b/libdtrace/dt_provider.c
> @@ -1,6 +1,6 @@
> /*
> * Oracle Linux DTrace.
> - * Copyright (c) 2006, 2025, Oracle and/or its affiliates. All rights reserved.
> + * Copyright (c) 2006, 2026, Oracle and/or its affiliates. All rights reserved.
> * Licensed under the Universal Permissive License v 1.0 as shown at
> * http://oss.oracle.com/licenses/upl.
> */
> @@ -110,6 +110,9 @@ dt_provider_lookup(dtrace_hdl_t *dtp, const char *name)
> {
> dt_provider_t tmpl;
>
> + if (dtp->dt_provs == NULL)
> + return NULL;
> +
> if ((strlen(name) + 1) > sizeof(tmpl.desc.dtvd_name))
> return NULL;
>
> @@ -124,6 +127,10 @@ dt_provider_create(dtrace_hdl_t *dtp, const char *name,
> {
> dt_provider_t *pvp;
>
> + pvp = dt_provider_lookup(dtp, name);
> + if (pvp)
> + return pvp;
> +
> if ((pvp = dt_zalloc(dtp, sizeof(dt_provider_t))) == NULL)
> goto nomem;
>
> --
> 2.47.3
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-01-16 21:53 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-16 20:38 [PATCH v2] Guard against inserting the same provider twice eugene.loh
2026-01-16 21:53 ` Kris Van Hees
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox