public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] guile: stop procedures on invalid breakpoints
@ 2021-05-19 23:28 George Barrett
  2021-05-20 10:32 ` Andrew Burgess
  2021-06-08 19:59 ` [PING] " George Barrett
  0 siblings, 2 replies; 6+ messages in thread
From: George Barrett @ 2021-05-19 23:28 UTC (permalink / raw)
  To: gdb-patches; +Cc: George Barrett

Stop procedures on <gdb:breakpoint> objects are independent of the
breakpoints in GDB core: the only reference made to the GDB breakpoint
pointer in either of `breakpoint-stop' or `set-breakpoint-stop!' is in
the latter checking to ensure that there hasn't already been a stop
condition attached from elsewhere. This check is not applicable to
not-yet-registered <gdb:breakpoint> objects allocated from Scheme.

This commit changes the above-mentioned procedures to accept invalid
<gdb:breakpoint> objects originating from Scheme; this allows the
decoupling of the creation of a specific breakpoint object from its
registration (as well as making the interface less restrictive than it
needs to be).

gdb/ChangeLog:

2021-05-20  George Barrett  <bob@bob131.so>

	* guile/scm-breakpoint.c
	(bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe): Add
	helper function.
	(gdbscm_breakpoint_stop): Use
	bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe.
	(gdbscm_set_breakpoint_stop_x): Likewise.  Check that bp is
	non-NULL before doing condition string tests.

gdb/doc/ChangeLog:

2021-05-20  George Barrett  <bob@bob131.so>

	* guile.texi (Breakpoints In Guile): Add note that
	breakpoint-stop and set-breakpoint-stop! may be used on
	invalid <gdb:breakpoint> objects if they originated from
	Scheme.

gdb/testsuite/ChangeLog:

2021-05-20  George Barrett  <bob@bob131.so>

	* gdb.guile/scm-breakpoint.exp (test_bkpt_eval_funcs): Add
	tests for stop procedure manipulation on invalid
	<gdb:breakpoint> objects originating from Scheme.
	Add tests for stop procedure manipulation on valid and invalid
	<gdb:breakpoint> objects originating from GDB core.
---
 gdb/doc/guile.texi                         | 10 ++++++
 gdb/guile/scm-breakpoint.c                 | 31 +++++++++++++++---
 gdb/testsuite/gdb.guile/scm-breakpoint.exp | 37 +++++++++++++++++++++-
 3 files changed, 73 insertions(+), 5 deletions(-)

diff --git a/gdb/doc/guile.texi b/gdb/doc/guile.texi
index c7e43c8d63a..84590eb19bf 100644
--- a/gdb/doc/guile.texi
+++ b/gdb/doc/guile.texi
@@ -3182,6 +3182,11 @@ becomes unconditional.
 @deffn {Scheme Procedure} breakpoint-stop breakpoint
 Return the stop predicate of @var{breakpoint}.
 See @code{set-breakpoint-stop!} below in this section.
+
+If @var{breakpoint} was created using @code{make-breakpoint}, this
+procedure may be used even if @code{breakpoint-valid?} would return
+@code{#f}.  In that case it returns the stop procedure that will be used
+by @var{breakpoint} once the breakpoint has been registered.
 @end deffn
 
 @deffn {Scheme Procedure} set-breakpoint-stop! breakpoint procedure|#f
@@ -3215,6 +3220,11 @@ Example @code{stop} implementation:
 (register-breakpoint! bkpt)
 (set-breakpoint-stop! bkpt my-stop?)
 @end smallexample
+
+If @var{breakpoint} was created using @code{make-breakpoint}, this
+procedure may be used even if @code{breakpoint-valid?} would return
+@code{#f}.  In that case @var{procedure} will be the stop procedure for
+@var{breakpoint} when the breakpoint is registered.
 @end deffn
 
 @deffn {Scheme Procedure} breakpoint-commands breakpoint
diff --git a/gdb/guile/scm-breakpoint.c b/gdb/guile/scm-breakpoint.c
index 826dfa9b0a3..4215736ebfe 100644
--- a/gdb/guile/scm-breakpoint.c
+++ b/gdb/guile/scm-breakpoint.c
@@ -326,6 +326,27 @@ bpscm_get_valid_breakpoint_smob_arg_unsafe (SCM self, int arg_pos,
 
   return bp_smob;
 }
+
+/* Returns the breakpoint smob in SELF, verifying it's either valid or
+   originates from Scheme.
+   Throws an exception if SELF is not a <gdb:breakpoint> object,
+   or is invalid and not allocated from Scheme.  */
+
+static breakpoint_smob *
+bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe (SCM self, int arg_pos,
+						   const char *func_name)
+{
+  breakpoint_smob *bp_smob
+    = bpscm_get_breakpoint_smob_arg_unsafe (self, arg_pos, func_name);
+
+  if (!bpscm_is_valid (bp_smob) && !bp_smob->is_scheme_bkpt)
+    {
+      gdbscm_invalid_object_error (func_name, arg_pos, self,
+				   _("<gdb:breakpoint>"));
+    }
+
+  return bp_smob;
+}
 \f
 /* Breakpoint methods.  */
 
@@ -918,7 +939,8 @@ static SCM
 gdbscm_breakpoint_stop (SCM self)
 {
   breakpoint_smob *bp_smob
-    = bpscm_get_valid_breakpoint_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
+    = bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe (self, SCM_ARG1,
+							 FUNC_NAME);
 
   return bp_smob->stop;
 }
@@ -930,7 +952,8 @@ static SCM
 gdbscm_set_breakpoint_stop_x (SCM self, SCM newvalue)
 {
   breakpoint_smob *bp_smob
-    = bpscm_get_valid_breakpoint_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
+    = bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe (self, SCM_ARG1,
+							 FUNC_NAME);
   const struct extension_language_defn *extlang = NULL;
 
   SCM_ASSERT_TYPE (gdbscm_is_procedure (newvalue)
@@ -938,9 +961,9 @@ gdbscm_set_breakpoint_stop_x (SCM self, SCM newvalue)
 		   newvalue, SCM_ARG2, FUNC_NAME,
 		   _("procedure or #f"));
 
-  if (bp_smob->bp->cond_string != NULL)
+  if (bp_smob->bp != NULL && bp_smob->bp->cond_string != NULL)
     extlang = get_ext_lang_defn (EXT_LANG_GDB);
-  if (extlang == NULL)
+  if (bp_smob->bp != NULL && extlang == NULL)
     extlang = get_breakpoint_cond_ext_lang (bp_smob->bp, EXT_LANG_GUILE);
   if (extlang != NULL)
     {
diff --git a/gdb/testsuite/gdb.guile/scm-breakpoint.exp b/gdb/testsuite/gdb.guile/scm-breakpoint.exp
index 56058942e64..1739793465c 100644
--- a/gdb/testsuite/gdb.guile/scm-breakpoint.exp
+++ b/gdb/testsuite/gdb.guile/scm-breakpoint.exp
@@ -376,10 +376,45 @@ proc_with_prefix test_bkpt_eval_funcs { } {
 	"= 4" \
 	"check non firing same-location breakpoint eval function was also called at each stop 2"
 
+    # Check that stop funcs can be manipulated on invalid Scheme-created
+    # breakpoints.
+
+    delete_breakpoints
+    gdb_test "guile (print (breakpoint-valid? eval-bp1))" "= #f" \
+	"check Scheme-created breakpoint is invalid"
+    gdb_scm_test_silent_cmd "guile (set-breakpoint-stop! eval-bp1 (const 'test!))" \
+	"check setting stop procedure on invalid Scheme-created breakpoint"
+    gdb_test "guile (print ((breakpoint-stop eval-bp1)))" "= test!" \
+	"check stop procedure on invalid Scheme-created breakpoint was successfully set"
+
+    # Check that stop funcs can be manipulated on breakpoint wrappers.
+
+    gdb_breakpoint "main"
+    gdb_scm_test_silent_cmd "guile (define bp-wrapper (car (breakpoints)))" \
+	"get breakpoint wrapper"
+    gdb_test "guile (print (breakpoint-valid? bp-wrapper))" "= #t" \
+	"check breakpoint wrapper is valid"
+    gdb_scm_test_silent_cmd "guile (set-breakpoint-stop! bp-wrapper (const 'test!))" \
+	"check setting stop procedure on breakpoit wrapper"
+    gdb_test "guile (print ((breakpoint-stop bp-wrapper)))" "= test!" \
+	"check stop procedure on breakpoint wrapper was successfully set"
+
+    # Check that stop funcs cannot be manipulated on invalid breakpoint
+    # wrappers.
+
+    delete_breakpoints
+    gdb_test "guile (print (breakpoint-valid? bp-wrapper))" "= #f" \
+	"check breakpoint wrapper is invalid"
+    gdb_test "guile (set-breakpoint-stop! bp-wrapper (const 'test!))" \
+	"ERROR:.*Invalid object: <gdb:breakpoint>.*" \
+	"check stop procedure cannot be set on invalid breakpoint wrapper"
+    gdb_test "guile (breakpoint-stop bp-wrapper)" \
+	"ERROR:.*Invalid object: <gdb:breakpoint>.*" \
+	"check stop procedure cannot be retrieved from invalid breakpoint wrapper"
+
     # Check we cannot assign a condition to a breakpoint with a stop-func,
     # and cannot assign a stop-func to a breakpoint with a condition.
 
-    delete_breakpoints
     set cond_bp [gdb_get_line_number "Break at multiply."]
     gdb_scm_test_silent_cmd  "guile (define eval-bp1 (make-bp-eval \"$cond_bp\"))" \
 	"create eval-bp1 breakpoint 2"
-- 
2.31.1

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] guile: stop procedures on invalid breakpoints
  2021-05-19 23:28 [PATCH] guile: stop procedures on invalid breakpoints George Barrett
@ 2021-05-20 10:32 ` Andrew Burgess
  2021-05-20 14:52   ` George Barrett
  2021-06-08 19:59 ` [PING] " George Barrett
  1 sibling, 1 reply; 6+ messages in thread
From: Andrew Burgess @ 2021-05-20 10:32 UTC (permalink / raw)
  To: George Barrett; +Cc: gdb-patches

* George Barrett via Gdb-patches <gdb-patches@sourceware.org> [2021-05-20 09:28:28 +1000]:

> Stop procedures on <gdb:breakpoint> objects are independent of the
> breakpoints in GDB core: the only reference made to the GDB breakpoint
> pointer in either of `breakpoint-stop' or `set-breakpoint-stop!' is in
> the latter checking to ensure that there hasn't already been a stop
> condition attached from elsewhere. This check is not applicable to
> not-yet-registered <gdb:breakpoint> objects allocated from Scheme.
> 
> This commit changes the above-mentioned procedures to accept invalid
> <gdb:breakpoint> objects originating from Scheme; this allows the
> decoupling of the creation of a specific breakpoint object from its
> registration (as well as making the interface less restrictive than it
> needs to be).

Thanks for doing this.

> 
> gdb/ChangeLog:
> 
> 2021-05-20  George Barrett  <bob@bob131.so>
> 
> 	* guile/scm-breakpoint.c
> 	(bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe): Add
> 	helper function.
> 	(gdbscm_breakpoint_stop): Use
> 	bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe.
> 	(gdbscm_set_breakpoint_stop_x): Likewise.  Check that bp is
> 	non-NULL before doing condition string tests.
> 
> gdb/doc/ChangeLog:
> 
> 2021-05-20  George Barrett  <bob@bob131.so>
> 
> 	* guile.texi (Breakpoints In Guile): Add note that
> 	breakpoint-stop and set-breakpoint-stop! may be used on
> 	invalid <gdb:breakpoint> objects if they originated from
> 	Scheme.

Eli will review the doc parts.

> 
> gdb/testsuite/ChangeLog:
> 
> 2021-05-20  George Barrett  <bob@bob131.so>
> 
> 	* gdb.guile/scm-breakpoint.exp (test_bkpt_eval_funcs): Add
> 	tests for stop procedure manipulation on invalid
> 	<gdb:breakpoint> objects originating from Scheme.
> 	Add tests for stop procedure manipulation on valid and invalid
> 	<gdb:breakpoint> objects originating from GDB core.
> ---
>  gdb/doc/guile.texi                         | 10 ++++++
>  gdb/guile/scm-breakpoint.c                 | 31 +++++++++++++++---
>  gdb/testsuite/gdb.guile/scm-breakpoint.exp | 37 +++++++++++++++++++++-
>  3 files changed, 73 insertions(+), 5 deletions(-)
> 
> diff --git a/gdb/doc/guile.texi b/gdb/doc/guile.texi
> index c7e43c8d63a..84590eb19bf 100644
> --- a/gdb/doc/guile.texi
> +++ b/gdb/doc/guile.texi
> @@ -3182,6 +3182,11 @@ becomes unconditional.
>  @deffn {Scheme Procedure} breakpoint-stop breakpoint
>  Return the stop predicate of @var{breakpoint}.
>  See @code{set-breakpoint-stop!} below in this section.
> +
> +If @var{breakpoint} was created using @code{make-breakpoint}, this
> +procedure may be used even if @code{breakpoint-valid?} would return
> +@code{#f}.  In that case it returns the stop procedure that will be used
> +by @var{breakpoint} once the breakpoint has been registered.
>  @end deffn
>  
>  @deffn {Scheme Procedure} set-breakpoint-stop! breakpoint procedure|#f
> @@ -3215,6 +3220,11 @@ Example @code{stop} implementation:
>  (register-breakpoint! bkpt)
>  (set-breakpoint-stop! bkpt my-stop?)
>  @end smallexample
> +
> +If @var{breakpoint} was created using @code{make-breakpoint}, this
> +procedure may be used even if @code{breakpoint-valid?} would return
> +@code{#f}.  In that case @var{procedure} will be the stop procedure for
> +@var{breakpoint} when the breakpoint is registered.
>  @end deffn
>  
>  @deffn {Scheme Procedure} breakpoint-commands breakpoint
> diff --git a/gdb/guile/scm-breakpoint.c b/gdb/guile/scm-breakpoint.c
> index 826dfa9b0a3..4215736ebfe 100644
> --- a/gdb/guile/scm-breakpoint.c
> +++ b/gdb/guile/scm-breakpoint.c
> @@ -326,6 +326,27 @@ bpscm_get_valid_breakpoint_smob_arg_unsafe (SCM self, int arg_pos,
>  
>    return bp_smob;
>  }
> +
> +/* Returns the breakpoint smob in SELF, verifying it's either valid or
> +   originates from Scheme.
> +   Throws an exception if SELF is not a <gdb:breakpoint> object,
> +   or is invalid and not allocated from Scheme.  */
> +
> +static breakpoint_smob *
> +bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe (SCM self, int arg_pos,
> +						   const char *func_name)
> +{
> +  breakpoint_smob *bp_smob
> +    = bpscm_get_breakpoint_smob_arg_unsafe (self, arg_pos, func_name);
> +
> +  if (!bpscm_is_valid (bp_smob) && !bp_smob->is_scheme_bkpt)
> +    {
> +      gdbscm_invalid_object_error (func_name, arg_pos, self,
> +				   _("<gdb:breakpoint>"));
> +    }

The { ... } should be removed for single statement blocks.

> +
> +  return bp_smob;
> +}
>  \f
>  /* Breakpoint methods.  */
>  
> @@ -918,7 +939,8 @@ static SCM
>  gdbscm_breakpoint_stop (SCM self)
>  {
>    breakpoint_smob *bp_smob
> -    = bpscm_get_valid_breakpoint_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
> +    = bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe (self, SCM_ARG1,
> +							 FUNC_NAME);
>  
>    return bp_smob->stop;
>  }
> @@ -930,7 +952,8 @@ static SCM
>  gdbscm_set_breakpoint_stop_x (SCM self, SCM newvalue)
>  {
>    breakpoint_smob *bp_smob
> -    = bpscm_get_valid_breakpoint_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
> +    = bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe (self, SCM_ARG1,
> +							 FUNC_NAME);
>    const struct extension_language_defn *extlang = NULL;
>  
>    SCM_ASSERT_TYPE (gdbscm_is_procedure (newvalue)
> @@ -938,9 +961,9 @@ gdbscm_set_breakpoint_stop_x (SCM self, SCM newvalue)
>  		   newvalue, SCM_ARG2, FUNC_NAME,
>  		   _("procedure or #f"));
>  
> -  if (bp_smob->bp->cond_string != NULL)
> +  if (bp_smob->bp != NULL && bp_smob->bp->cond_string != NULL)
>      extlang = get_ext_lang_defn (EXT_LANG_GDB);
> -  if (extlang == NULL)
> +  if (bp_smob->bp != NULL && extlang == NULL)
>      extlang = get_breakpoint_cond_ext_lang (bp_smob->bp, EXT_LANG_GUILE);

I guess it's just me, but I'd prefer to see the 'bp_smob->bp != NULL'
factored out of these two checks like:

  if (bp_smob->bp != nullptr)
    {
      if (bp_smob->bp->cond_string != nullptr)
        ...
      if (extlang == nullptr)
        ...
    }

though this is not a requirement, if you feel strongly that your way
is better then that's fine.

But I think you should s/NULL/nullptr/ on these lines (and given there
are only 2 other uses of NULL in this function, maybe replace them
too?)

Otherwise, this looks great.

Thanks,
Andrew


>    if (extlang != NULL)
>      {
> diff --git a/gdb/testsuite/gdb.guile/scm-breakpoint.exp b/gdb/testsuite/gdb.guile/scm-breakpoint.exp
> index 56058942e64..1739793465c 100644
> --- a/gdb/testsuite/gdb.guile/scm-breakpoint.exp
> +++ b/gdb/testsuite/gdb.guile/scm-breakpoint.exp
> @@ -376,10 +376,45 @@ proc_with_prefix test_bkpt_eval_funcs { } {
>  	"= 4" \
>  	"check non firing same-location breakpoint eval function was also called at each stop 2"
>  
> +    # Check that stop funcs can be manipulated on invalid Scheme-created
> +    # breakpoints.
> +
> +    delete_breakpoints
> +    gdb_test "guile (print (breakpoint-valid? eval-bp1))" "= #f" \
> +	"check Scheme-created breakpoint is invalid"
> +    gdb_scm_test_silent_cmd "guile (set-breakpoint-stop! eval-bp1 (const 'test!))" \
> +	"check setting stop procedure on invalid Scheme-created breakpoint"
> +    gdb_test "guile (print ((breakpoint-stop eval-bp1)))" "= test!" \
> +	"check stop procedure on invalid Scheme-created breakpoint was successfully set"
> +
> +    # Check that stop funcs can be manipulated on breakpoint wrappers.
> +
> +    gdb_breakpoint "main"
> +    gdb_scm_test_silent_cmd "guile (define bp-wrapper (car (breakpoints)))" \
> +	"get breakpoint wrapper"
> +    gdb_test "guile (print (breakpoint-valid? bp-wrapper))" "= #t" \
> +	"check breakpoint wrapper is valid"
> +    gdb_scm_test_silent_cmd "guile (set-breakpoint-stop! bp-wrapper (const 'test!))" \
> +	"check setting stop procedure on breakpoit wrapper"
> +    gdb_test "guile (print ((breakpoint-stop bp-wrapper)))" "= test!" \
> +	"check stop procedure on breakpoint wrapper was successfully set"
> +
> +    # Check that stop funcs cannot be manipulated on invalid breakpoint
> +    # wrappers.
> +
> +    delete_breakpoints
> +    gdb_test "guile (print (breakpoint-valid? bp-wrapper))" "= #f" \
> +	"check breakpoint wrapper is invalid"
> +    gdb_test "guile (set-breakpoint-stop! bp-wrapper (const 'test!))" \
> +	"ERROR:.*Invalid object: <gdb:breakpoint>.*" \
> +	"check stop procedure cannot be set on invalid breakpoint wrapper"
> +    gdb_test "guile (breakpoint-stop bp-wrapper)" \
> +	"ERROR:.*Invalid object: <gdb:breakpoint>.*" \
> +	"check stop procedure cannot be retrieved from invalid breakpoint wrapper"
> +
>      # Check we cannot assign a condition to a breakpoint with a stop-func,
>      # and cannot assign a stop-func to a breakpoint with a condition.
>  
> -    delete_breakpoints
>      set cond_bp [gdb_get_line_number "Break at multiply."]
>      gdb_scm_test_silent_cmd  "guile (define eval-bp1 (make-bp-eval \"$cond_bp\"))" \
>  	"create eval-bp1 breakpoint 2"
> -- 
> 2.31.1

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] guile: stop procedures on invalid breakpoints
  2021-05-20 10:32 ` Andrew Burgess
@ 2021-05-20 14:52   ` George Barrett
  0 siblings, 0 replies; 6+ messages in thread
From: George Barrett @ 2021-05-20 14:52 UTC (permalink / raw)
  To: Andrew Burgess; +Cc: gdb-patches

On Thu, May 20, 2021 at 11:32:57AM +0100, Andrew Burgess wrote:
> Thanks for doing this.

No worries. Thanks for having a look.

> The { ... } should be removed for single statement blocks.

Ack.

> I guess it's just me, but I'd prefer to see the 'bp_smob->bp != NULL'
> factored out of these two checks like:
> 
>   if (bp_smob->bp != nullptr)
>     {
>       if (bp_smob->bp->cond_string != nullptr)
>         ...
>       if (extlang == nullptr)
>         ...
>     }
> 
> though this is not a requirement, if you feel strongly that your way
> is better then that's fine.

Not at all, ack.

> But I think you should s/NULL/nullptr/ on these lines (and given there
> are only 2 other uses of NULL in this function, maybe replace them
> too?)

Ack.

> Otherwise, this looks great.
> 
> Thanks,
> Andrew

I might wait until the doc review before rolling a v2, to reduce the amount of
spam ;)

Thanks

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PING] [PATCH] guile: stop procedures on invalid breakpoints
  2021-05-19 23:28 [PATCH] guile: stop procedures on invalid breakpoints George Barrett
  2021-05-20 10:32 ` Andrew Burgess
@ 2021-06-08 19:59 ` George Barrett
  2021-06-09 11:43   ` Eli Zaretskii
  1 sibling, 1 reply; 6+ messages in thread
From: George Barrett @ 2021-06-08 19:59 UTC (permalink / raw)
  To: gdb-patches

Pinging for a review of the documentation changes.

On Thu, May 20, 2021 at 09:28:28AM +1000, George Barrett wrote:
> Stop procedures on <gdb:breakpoint> objects are independent of the
> breakpoints in GDB core: the only reference made to the GDB breakpoint
> pointer in either of `breakpoint-stop' or `set-breakpoint-stop!' is in
> the latter checking to ensure that there hasn't already been a stop
> condition attached from elsewhere. This check is not applicable to
> not-yet-registered <gdb:breakpoint> objects allocated from Scheme.
> 
> This commit changes the above-mentioned procedures to accept invalid
> <gdb:breakpoint> objects originating from Scheme; this allows the
> decoupling of the creation of a specific breakpoint object from its
> registration (as well as making the interface less restrictive than it
> needs to be).
> 
> gdb/ChangeLog:
> 
> 2021-05-20  George Barrett  <bob@bob131.so>
> 
> 	* guile/scm-breakpoint.c
> 	(bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe): Add
> 	helper function.
> 	(gdbscm_breakpoint_stop): Use
> 	bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe.
> 	(gdbscm_set_breakpoint_stop_x): Likewise.  Check that bp is
> 	non-NULL before doing condition string tests.
> 
> gdb/doc/ChangeLog:
> 
> 2021-05-20  George Barrett  <bob@bob131.so>
> 
> 	* guile.texi (Breakpoints In Guile): Add note that
> 	breakpoint-stop and set-breakpoint-stop! may be used on
> 	invalid <gdb:breakpoint> objects if they originated from
> 	Scheme.
> 
> gdb/testsuite/ChangeLog:
> 
> 2021-05-20  George Barrett  <bob@bob131.so>
> 
> 	* gdb.guile/scm-breakpoint.exp (test_bkpt_eval_funcs): Add
> 	tests for stop procedure manipulation on invalid
> 	<gdb:breakpoint> objects originating from Scheme.
> 	Add tests for stop procedure manipulation on valid and invalid
> 	<gdb:breakpoint> objects originating from GDB core.
> ---
>  gdb/doc/guile.texi                         | 10 ++++++
>  gdb/guile/scm-breakpoint.c                 | 31 +++++++++++++++---
>  gdb/testsuite/gdb.guile/scm-breakpoint.exp | 37 +++++++++++++++++++++-
>  3 files changed, 73 insertions(+), 5 deletions(-)
> 
> diff --git a/gdb/doc/guile.texi b/gdb/doc/guile.texi
> index c7e43c8d63a..84590eb19bf 100644
> --- a/gdb/doc/guile.texi
> +++ b/gdb/doc/guile.texi
> @@ -3182,6 +3182,11 @@ becomes unconditional.
>  @deffn {Scheme Procedure} breakpoint-stop breakpoint
>  Return the stop predicate of @var{breakpoint}.
>  See @code{set-breakpoint-stop!} below in this section.
> +
> +If @var{breakpoint} was created using @code{make-breakpoint}, this
> +procedure may be used even if @code{breakpoint-valid?} would return
> +@code{#f}.  In that case it returns the stop procedure that will be used
> +by @var{breakpoint} once the breakpoint has been registered.
>  @end deffn
>  
>  @deffn {Scheme Procedure} set-breakpoint-stop! breakpoint procedure|#f
> @@ -3215,6 +3220,11 @@ Example @code{stop} implementation:
>  (register-breakpoint! bkpt)
>  (set-breakpoint-stop! bkpt my-stop?)
>  @end smallexample
> +
> +If @var{breakpoint} was created using @code{make-breakpoint}, this
> +procedure may be used even if @code{breakpoint-valid?} would return
> +@code{#f}.  In that case @var{procedure} will be the stop procedure for
> +@var{breakpoint} when the breakpoint is registered.
>  @end deffn
>  
>  @deffn {Scheme Procedure} breakpoint-commands breakpoint
> diff --git a/gdb/guile/scm-breakpoint.c b/gdb/guile/scm-breakpoint.c
> index 826dfa9b0a3..4215736ebfe 100644
> --- a/gdb/guile/scm-breakpoint.c
> +++ b/gdb/guile/scm-breakpoint.c
> @@ -326,6 +326,27 @@ bpscm_get_valid_breakpoint_smob_arg_unsafe (SCM self, int arg_pos,
>  
>    return bp_smob;
>  }
> +
> +/* Returns the breakpoint smob in SELF, verifying it's either valid or
> +   originates from Scheme.
> +   Throws an exception if SELF is not a <gdb:breakpoint> object,
> +   or is invalid and not allocated from Scheme.  */
> +
> +static breakpoint_smob *
> +bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe (SCM self, int arg_pos,
> +						   const char *func_name)
> +{
> +  breakpoint_smob *bp_smob
> +    = bpscm_get_breakpoint_smob_arg_unsafe (self, arg_pos, func_name);
> +
> +  if (!bpscm_is_valid (bp_smob) && !bp_smob->is_scheme_bkpt)
> +    {
> +      gdbscm_invalid_object_error (func_name, arg_pos, self,
> +				   _("<gdb:breakpoint>"));
> +    }
> +
> +  return bp_smob;
> +}
>  \f
>  /* Breakpoint methods.  */
>  
> @@ -918,7 +939,8 @@ static SCM
>  gdbscm_breakpoint_stop (SCM self)
>  {
>    breakpoint_smob *bp_smob
> -    = bpscm_get_valid_breakpoint_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
> +    = bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe (self, SCM_ARG1,
> +							 FUNC_NAME);
>  
>    return bp_smob->stop;
>  }
> @@ -930,7 +952,8 @@ static SCM
>  gdbscm_set_breakpoint_stop_x (SCM self, SCM newvalue)
>  {
>    breakpoint_smob *bp_smob
> -    = bpscm_get_valid_breakpoint_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
> +    = bpscm_get_valid_or_scm_breakpoint_smob_arg_unsafe (self, SCM_ARG1,
> +							 FUNC_NAME);
>    const struct extension_language_defn *extlang = NULL;
>  
>    SCM_ASSERT_TYPE (gdbscm_is_procedure (newvalue)
> @@ -938,9 +961,9 @@ gdbscm_set_breakpoint_stop_x (SCM self, SCM newvalue)
>  		   newvalue, SCM_ARG2, FUNC_NAME,
>  		   _("procedure or #f"));
>  
> -  if (bp_smob->bp->cond_string != NULL)
> +  if (bp_smob->bp != NULL && bp_smob->bp->cond_string != NULL)
>      extlang = get_ext_lang_defn (EXT_LANG_GDB);
> -  if (extlang == NULL)
> +  if (bp_smob->bp != NULL && extlang == NULL)
>      extlang = get_breakpoint_cond_ext_lang (bp_smob->bp, EXT_LANG_GUILE);
>    if (extlang != NULL)
>      {
> diff --git a/gdb/testsuite/gdb.guile/scm-breakpoint.exp b/gdb/testsuite/gdb.guile/scm-breakpoint.exp
> index 56058942e64..1739793465c 100644
> --- a/gdb/testsuite/gdb.guile/scm-breakpoint.exp
> +++ b/gdb/testsuite/gdb.guile/scm-breakpoint.exp
> @@ -376,10 +376,45 @@ proc_with_prefix test_bkpt_eval_funcs { } {
>  	"= 4" \
>  	"check non firing same-location breakpoint eval function was also called at each stop 2"
>  
> +    # Check that stop funcs can be manipulated on invalid Scheme-created
> +    # breakpoints.
> +
> +    delete_breakpoints
> +    gdb_test "guile (print (breakpoint-valid? eval-bp1))" "= #f" \
> +	"check Scheme-created breakpoint is invalid"
> +    gdb_scm_test_silent_cmd "guile (set-breakpoint-stop! eval-bp1 (const 'test!))" \
> +	"check setting stop procedure on invalid Scheme-created breakpoint"
> +    gdb_test "guile (print ((breakpoint-stop eval-bp1)))" "= test!" \
> +	"check stop procedure on invalid Scheme-created breakpoint was successfully set"
> +
> +    # Check that stop funcs can be manipulated on breakpoint wrappers.
> +
> +    gdb_breakpoint "main"
> +    gdb_scm_test_silent_cmd "guile (define bp-wrapper (car (breakpoints)))" \
> +	"get breakpoint wrapper"
> +    gdb_test "guile (print (breakpoint-valid? bp-wrapper))" "= #t" \
> +	"check breakpoint wrapper is valid"
> +    gdb_scm_test_silent_cmd "guile (set-breakpoint-stop! bp-wrapper (const 'test!))" \
> +	"check setting stop procedure on breakpoit wrapper"
> +    gdb_test "guile (print ((breakpoint-stop bp-wrapper)))" "= test!" \
> +	"check stop procedure on breakpoint wrapper was successfully set"
> +
> +    # Check that stop funcs cannot be manipulated on invalid breakpoint
> +    # wrappers.
> +
> +    delete_breakpoints
> +    gdb_test "guile (print (breakpoint-valid? bp-wrapper))" "= #f" \
> +	"check breakpoint wrapper is invalid"
> +    gdb_test "guile (set-breakpoint-stop! bp-wrapper (const 'test!))" \
> +	"ERROR:.*Invalid object: <gdb:breakpoint>.*" \
> +	"check stop procedure cannot be set on invalid breakpoint wrapper"
> +    gdb_test "guile (breakpoint-stop bp-wrapper)" \
> +	"ERROR:.*Invalid object: <gdb:breakpoint>.*" \
> +	"check stop procedure cannot be retrieved from invalid breakpoint wrapper"
> +
>      # Check we cannot assign a condition to a breakpoint with a stop-func,
>      # and cannot assign a stop-func to a breakpoint with a condition.
>  
> -    delete_breakpoints
>      set cond_bp [gdb_get_line_number "Break at multiply."]
>      gdb_scm_test_silent_cmd  "guile (define eval-bp1 (make-bp-eval \"$cond_bp\"))" \
>  	"create eval-bp1 breakpoint 2"
> -- 
> 2.31.1

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PING] [PATCH] guile: stop procedures on invalid breakpoints
  2021-06-08 19:59 ` [PING] " George Barrett
@ 2021-06-09 11:43   ` Eli Zaretskii
  2021-06-09 13:51     ` George Barrett
  0 siblings, 1 reply; 6+ messages in thread
From: Eli Zaretskii @ 2021-06-09 11:43 UTC (permalink / raw)
  To: George Barrett; +Cc: gdb-patches

> Date: Wed, 09 Jun 2021 05:59:51 +1000
> From: George Barrett via Gdb-patches <gdb-patches@sourceware.org>
> 
> Pinging for a review of the documentation changes.

Sorry for missing this.  The documentation part is OK.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PING] [PATCH] guile: stop procedures on invalid breakpoints
  2021-06-09 11:43   ` Eli Zaretskii
@ 2021-06-09 13:51     ` George Barrett
  0 siblings, 0 replies; 6+ messages in thread
From: George Barrett @ 2021-06-09 13:51 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: gdb-patches

On Wed, Jun 09, 2021 at 02:43:51PM +0300, Eli Zaretskii wrote:
> Sorry for missing this.  The documentation part is OK.

No worries, thanks for having a look.

I'll do a v2 addressing the other comments in a moment.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-06-09 13:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-19 23:28 [PATCH] guile: stop procedures on invalid breakpoints George Barrett
2021-05-20 10:32 ` Andrew Burgess
2021-05-20 14:52   ` George Barrett
2021-06-08 19:59 ` [PING] " George Barrett
2021-06-09 11:43   ` Eli Zaretskii
2021-06-09 13:51     ` George Barrett

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).