All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kris Van Hees <kris.van.hees@oracle.com>
To: Nick Alcock <nick.alcock@oracle.com>
Cc: Kris Van Hees <kris.van.hees@oracle.com>,
	dtrace@lists.linux.dev, dtrace-devel@oss.oracle.com
Subject: Re: [PATCH 3/4] cg: reject clauses using return() by default
Date: Tue, 15 Jul 2025 11:37:27 -0400	[thread overview]
Message-ID: <aHZ1t2OXWlWAzLaR@oracle.com> (raw)
In-Reply-To: <878qkpwxho.fsf@esperi.org.uk>

On Tue, Jul 15, 2025 at 11:37:39AM +0100, Nick Alcock wrote:
> On 15 Jul 2025, Kris Van Hees verbalised:
> 
> > Signed-off-by: Kris Van Hees <kris.van.hees@oracle.com>
> 
> Reviewed-by: Nick Alcock <nick.alcock@oracle.com>
> 
> > ---
> >  libdtrace/dt_cg.c      | 10 +++++++++-
> >  libdtrace/dt_errtags.h |  1 +
> >  libdtrace/dtrace.h     | 19 ++++++++++---------
> >  3 files changed, 20 insertions(+), 10 deletions(-)
> >
> > diff --git a/libdtrace/dt_cg.c b/libdtrace/dt_cg.c
> > index 738597ed..0607cd4e 100644
> > --- a/libdtrace/dt_cg.c
> > +++ b/libdtrace/dt_cg.c
> > @@ -875,6 +875,10 @@ dt_cg_call_clause(dtrace_hdl_t *dtp, dtrace_stmtdesc_t *sdp, dt_clause_arg_t *ar
> >  	 */
> >  	if (prp->prov->impl->reject_clause != NULL)
> >  		prp->prov->impl->reject_clause(prp, sdp->dtsd_clauseflags);
> > +	else if (sdp->dtsd_clauseflags & DT_CLSFLAG_RETURN)
> > +		xyerror(D_ACT_RETURN, "return() not allowed for %s:%s:%s:%s\n",
> > +			prp->desc->prv, prp->desc->mod, prp->desc->fun,
> > +			prp->desc->prb);
> 
> Ah, I guess these are the "default checks" given in the previous commit,
> so you can just set up the reject_clause() if destructive mode is on,
> and not need to check here at all.

Yes, this is where the comment block should start talking about default check.
The check has to be specific to DT_CLSFLAG_RETURN because we do not want to
just reject a clause based on whetehr destructive mode is on or not.  That is
done elsewhere (but in the future could be added here - as a future change to
the -w patch Eugene posted).

> > diff --git a/libdtrace/dtrace.h b/libdtrace/dtrace.h
> > index 20672d3f..f0c1b8dc 100644
> > --- a/libdtrace/dtrace.h
> > +++ b/libdtrace/dtrace.h
> > @@ -154,15 +154,16 @@ typedef struct dtrace_stmtdesc {
> >  } dtrace_stmtdesc_t;
> >  
> >  /* dtsd clause flags */
> > -#define DT_CLSFLAG_DATAREC		1	/* data-recording */
> > -#define DT_CLSFLAG_SPECULATE		2	/* speculate */
> > -#define DT_CLSFLAG_COMMIT		4	/* commit */
> > -#define DT_CLSFLAG_COMMIT_DISCARD	8	/* commit/discard */
> > -#define DT_CLSFLAG_EXIT			16	/* exit */
> > -#define DT_CLSFLAG_DESTRUCT		32	/* destructive */
> > -#define DT_CLSFLAG_AGGREGATION		64	/* aggregation */
> > -#define DT_CLSFLAG_USDT_INCLUDE		128	/* could be used in USDT clause */
> > -#define DT_CLSFLAG_USDT_EXCLUDE		256	/* could not be used in USDT clause */
> > +#define DT_CLSFLAG_DATAREC		0x0001	/* data-recording */
> > +#define DT_CLSFLAG_SPECULATE		0x0002	/* speculate */
> > +#define DT_CLSFLAG_COMMIT		0x0004	/* commit */
> > +#define DT_CLSFLAG_COMMIT_DISCARD	0x0008	/* commit/discard */
> > +#define DT_CLSFLAG_EXIT			0x0010	/* exit */
> > +#define DT_CLSFLAG_DESTRUCT		0x0020	/* destructive */
> > +#define DT_CLSFLAG_RETURN		0x0040	/* aggregation */
> > +#define DT_CLSFLAG_AGGREGATION		0x0080	/* return action */
> > +#define DT_CLSFLAG_USDT_INCLUDE		0x0100	/* could be used in USDT clause */
> > +#define DT_CLSFLAG_USDT_EXCLUDE		0x0200	/* could not be used in USDT clause */
> 
> Oh yes please! I mean we all know our powers of two anyway, but this is
> just cleaner. (Not sure why you stuffed DT_CLSFLAG_RETURN in the middle
> like that, though.)

It just seemed like the better place, so USDT_INCLUDE and USDT_EXCLUDE are
nicely at 0x0100 and 0x0200.

      parent reply	other threads:[~2025-07-15 15:37 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-15  5:48 [PATCH 3/4] cg: reject clauses using return() by default Kris Van Hees
2025-07-15 10:37 ` Nick Alcock
2025-07-15 10:51   ` Nick Alcock
2025-07-15 15:37   ` Kris Van Hees [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aHZ1t2OXWlWAzLaR@oracle.com \
    --to=kris.van.hees@oracle.com \
    --cc=dtrace-devel@oss.oracle.com \
    --cc=dtrace@lists.linux.dev \
    --cc=nick.alcock@oracle.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.