Home | History | Annotate | Line # | Download | only in guile
scm-safe-call.c revision 1.1.1.1
      1 /* GDB/Scheme support for safe calls into the Guile interpreter.
      2 
      3    Copyright (C) 2014-2015 Free Software Foundation, Inc.
      4 
      5    This file is part of GDB.
      6 
      7    This program is free software; you can redistribute it and/or modify
      8    it under the terms of the GNU General Public License as published by
      9    the Free Software Foundation; either version 3 of the License, or
     10    (at your option) any later version.
     11 
     12    This program is distributed in the hope that it will be useful,
     13    but WITHOUT ANY WARRANTY; without even the implied warranty of
     14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15    GNU General Public License for more details.
     16 
     17    You should have received a copy of the GNU General Public License
     18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
     19 
     20 /* See README file in this directory for implementation notes, coding
     21    conventions, et.al.  */
     22 
     23 #include "defs.h"
     24 #include "filenames.h"
     25 #include "guile-internal.h"
     26 
     27 /* Struct to marshall args to scscm_safe_call_body.  */
     28 
     29 struct c_data
     30 {
     31   void *(*func) (void *);
     32   void *data;
     33   /* An error message or NULL for success.  */
     34   void *result;
     35 };
     36 
     37 /* Struct to marshall args through gdbscm_with_catch.  */
     38 
     39 struct with_catch_data
     40 {
     41   scm_t_catch_body func;
     42   void *data;
     43   scm_t_catch_handler unwind_handler;
     44   scm_t_catch_handler pre_unwind_handler;
     45 
     46   /* If EXCP_MATCHER is non-NULL, it is an excp_matcher_func function.
     47      If the exception is recognized by it, the exception is recorded as is,
     48      without wrapping it in gdb:with-stack.  */
     49   excp_matcher_func *excp_matcher;
     50 
     51   SCM stack;
     52   SCM catch_result;
     53 };
     54 
     55 /* The "body" argument to scm_i_with_continuation_barrier.
     56    Invoke the user-supplied function.  */
     57 
     58 static SCM
     59 scscm_safe_call_body (void *d)
     60 {
     61   struct c_data *data = (struct c_data *) d;
     62 
     63   data->result = data->func (data->data);
     64 
     65   return SCM_UNSPECIFIED;
     66 }
     67 
     68 /* A "pre-unwind handler" to scm_c_catch that prints the exception
     69    according to "set guile print-stack".  */
     70 
     71 static SCM
     72 scscm_printing_pre_unwind_handler (void *data, SCM key, SCM args)
     73 {
     74   SCM stack = scm_make_stack (SCM_BOOL_T, scm_list_1 (scm_from_int (2)));
     75 
     76   gdbscm_print_exception_with_stack (SCM_BOOL_F, stack, key, args);
     77 
     78   return SCM_UNSPECIFIED;
     79 }
     80 
     81 /* A no-op unwind handler.  */
     82 
     83 static SCM
     84 scscm_nop_unwind_handler (void *data, SCM key, SCM args)
     85 {
     86   return SCM_UNSPECIFIED;
     87 }
     88 
     89 /* The "pre-unwind handler" to scm_c_catch that records the exception
     90    for possible later printing.  We do this in the pre-unwind handler because
     91    we want the stack to include point where the exception occurred.
     92 
     93    If DATA is non-NULL, it is an excp_matcher_func function.
     94    If the exception is recognized by it, the exception is recorded as is,
     95    without wrapping it in gdb:with-stack.  */
     96 
     97 static SCM
     98 scscm_recording_pre_unwind_handler (void *datap, SCM key, SCM args)
     99 {
    100   struct with_catch_data *data = datap;
    101   excp_matcher_func *matcher = data->excp_matcher;
    102 
    103   if (matcher != NULL && matcher (key))
    104     return SCM_UNSPECIFIED;
    105 
    106   /* There's no need to record the whole stack if we're not going to print it.
    107      However, convention is to still print the stack frame in which the
    108      exception occurred, even if we're not going to print a full backtrace.
    109      For now, keep it simple.  */
    110 
    111   data->stack = scm_make_stack (SCM_BOOL_T, scm_list_1 (scm_from_int (2)));
    112 
    113   /* IWBN if we could return the <gdb:exception> here and skip the unwind
    114      handler, but it doesn't work that way.  If we want to return a
    115      <gdb:exception> object from the catch it needs to come from the unwind
    116      handler.  So what we do is save the stack for later use by the unwind
    117      handler.  */
    118 
    119   return SCM_UNSPECIFIED;
    120 }
    121 
    122 /* Part two of the recording unwind handler.
    123    Here we take the stack saved from the pre-unwind handler and create
    124    the <gdb:exception> object.  */
    125 
    126 static SCM
    127 scscm_recording_unwind_handler (void *datap, SCM key, SCM args)
    128 {
    129   struct with_catch_data *data = datap;
    130 
    131   /* We need to record the stack in the exception since we're about to
    132      throw and lose the location that got the exception.  We do this by
    133      wrapping the exception + stack in a new exception.  */
    134 
    135   if (gdbscm_is_true (data->stack))
    136     return gdbscm_make_exception_with_stack (key, args, data->stack);
    137 
    138   return gdbscm_make_exception (key, args);
    139 }
    140 
    141 /* Ugh. :-(
    142    Guile doesn't export scm_i_with_continuation_barrier which is exactly
    143    what we need.  To cope, have our own wrapper around scm_c_catch and
    144    pass this as the "body" argument to scm_c_with_continuation_barrier.
    145    Darn darn darn.  */
    146 
    147 static void *
    148 gdbscm_with_catch (void *data)
    149 {
    150   struct with_catch_data *d = data;
    151 
    152   d->catch_result
    153     = scm_c_catch (SCM_BOOL_T,
    154 		   d->func, d->data,
    155 		   d->unwind_handler, d,
    156 		   d->pre_unwind_handler, d);
    157 
    158   return NULL;
    159 }
    160 
    161 /* A wrapper around scm_with_guile that prints backtraces and exceptions
    162    according to "set guile print-stack".
    163    The result if NULL if no exception occurred, otherwise it is a statically
    164    allocated error message (caller must *not* free).  */
    165 
    166 void *
    167 gdbscm_with_guile (void *(*func) (void *), void *data)
    168 {
    169   struct c_data c_data;
    170   struct with_catch_data catch_data;
    171 
    172   c_data.func = func;
    173   c_data.data = data;
    174   /* Set this now in case an exception is thrown.  */
    175   c_data.result = _("Error while executing Scheme code.");
    176 
    177   catch_data.func = scscm_safe_call_body;
    178   catch_data.data = &c_data;
    179   catch_data.unwind_handler = scscm_nop_unwind_handler;
    180   catch_data.pre_unwind_handler = scscm_printing_pre_unwind_handler;
    181   catch_data.excp_matcher = NULL;
    182   catch_data.stack = SCM_BOOL_F;
    183   catch_data.catch_result = SCM_UNSPECIFIED;
    184 
    185   scm_with_guile (gdbscm_with_catch, &catch_data);
    186 
    187   return c_data.result;
    188 }
    189 
    190 /* Another wrapper of scm_with_guile for use by the safe call/apply routines
    191    in this file, as well as for general purpose calling other functions safely.
    192    For these we want to record the exception, but leave the possible printing
    193    of it to later.  */
    194 
    195 SCM
    196 gdbscm_call_guile (SCM (*func) (void *), void *data,
    197 		   excp_matcher_func *ok_excps)
    198 {
    199   struct with_catch_data catch_data;
    200 
    201   catch_data.func = func;
    202   catch_data.data = data;
    203   catch_data.unwind_handler = scscm_recording_unwind_handler;
    204   catch_data.pre_unwind_handler = scscm_recording_pre_unwind_handler;
    205   catch_data.excp_matcher = ok_excps;
    206   catch_data.stack = SCM_BOOL_F;
    207   catch_data.catch_result = SCM_UNSPECIFIED;
    208 
    209 #if 0
    210   scm_c_with_continuation_barrier (gdbscm_with_catch, &catch_data);
    211 #else
    212   scm_with_guile (gdbscm_with_catch, &catch_data);
    213 #endif
    214 
    215   return catch_data.catch_result;
    216 }
    217 
    218 /* Utilities to safely call Scheme code, catching all exceptions, and
    220    preventing continuation capture.
    221    The result is the result of calling the function, or if an exception occurs
    222    then the result is a <gdb:exception> smob, which can be tested for with
    223    gdbscm_is_exception.  */
    224 
    225 /* Helper for gdbscm_safe_call_0.  */
    226 
    227 static SCM
    228 scscm_call_0_body (void *argsp)
    229 {
    230   SCM *args = argsp;
    231 
    232   return scm_call_0 (args[0]);
    233 }
    234 
    235 SCM
    236 gdbscm_safe_call_0 (SCM proc, excp_matcher_func *ok_excps)
    237 {
    238   SCM args[] = { proc };
    239 
    240   return gdbscm_call_guile (scscm_call_0_body, args, ok_excps);
    241 }
    242 
    243 /* Helper for gdbscm_safe_call_1.  */
    244 
    245 static SCM
    246 scscm_call_1_body (void *argsp)
    247 {
    248   SCM *args = argsp;
    249 
    250   return scm_call_1 (args[0], args[1]);
    251 }
    252 
    253 SCM
    254 gdbscm_safe_call_1 (SCM proc, SCM arg0, excp_matcher_func *ok_excps)
    255 {
    256   SCM args[] = { proc, arg0 };
    257 
    258   return gdbscm_call_guile (scscm_call_1_body, args, ok_excps);
    259 }
    260 
    261 /* Helper for gdbscm_safe_call_2.  */
    262 
    263 static SCM
    264 scscm_call_2_body (void *argsp)
    265 {
    266   SCM *args = argsp;
    267 
    268   return scm_call_2 (args[0], args[1], args[2]);
    269 }
    270 
    271 SCM
    272 gdbscm_safe_call_2 (SCM proc, SCM arg0, SCM arg1, excp_matcher_func *ok_excps)
    273 {
    274   SCM args[] = { proc, arg0, arg1 };
    275 
    276   return gdbscm_call_guile (scscm_call_2_body, args, ok_excps);
    277 }
    278 
    279 /* Helper for gdbscm_safe_call_3.  */
    280 
    281 static SCM
    282 scscm_call_3_body (void *argsp)
    283 {
    284   SCM *args = argsp;
    285 
    286   return scm_call_3 (args[0], args[1], args[2], args[3]);
    287 }
    288 
    289 SCM
    290 gdbscm_safe_call_3 (SCM proc, SCM arg1, SCM arg2, SCM arg3,
    291 		    excp_matcher_func *ok_excps)
    292 {
    293   SCM args[] = { proc, arg1, arg2, arg3 };
    294 
    295   return gdbscm_call_guile (scscm_call_3_body, args, ok_excps);
    296 }
    297 
    298 /* Helper for gdbscm_safe_call_4.  */
    299 
    300 static SCM
    301 scscm_call_4_body (void *argsp)
    302 {
    303   SCM *args = argsp;
    304 
    305   return scm_call_4 (args[0], args[1], args[2], args[3], args[4]);
    306 }
    307 
    308 SCM
    309 gdbscm_safe_call_4 (SCM proc, SCM arg1, SCM arg2, SCM arg3, SCM arg4,
    310 		    excp_matcher_func *ok_excps)
    311 {
    312   SCM args[] = { proc, arg1, arg2, arg3, arg4 };
    313 
    314   return gdbscm_call_guile (scscm_call_4_body, args, ok_excps);
    315 }
    316 
    317 /* Helper for gdbscm_safe_apply_1.  */
    318 
    319 static SCM
    320 scscm_apply_1_body (void *argsp)
    321 {
    322   SCM *args = argsp;
    323 
    324   return scm_apply_1 (args[0], args[1], args[2]);
    325 }
    326 
    327 SCM
    328 gdbscm_safe_apply_1 (SCM proc, SCM arg0, SCM rest, excp_matcher_func *ok_excps)
    329 {
    330   SCM args[] = { proc, arg0, rest };
    331 
    332   return gdbscm_call_guile (scscm_apply_1_body, args, ok_excps);
    333 }
    334 
    335 /* Utilities to call Scheme code, not catching exceptions, and
    337    not preventing continuation capture.
    338    The result is the result of calling the function.
    339    If an exception occurs then Guile is left to handle the exception,
    340    unwinding the stack as appropriate.
    341 
    342    USE THESE WITH CARE.
    343    Typically these are called from functions that implement Scheme procedures,
    344    and we don't want to catch the exception; otherwise it will get printed
    345    twice: once when first caught and once if it ends up being rethrown and the
    346    rethrow reaches the top repl, which will confuse the user.
    347 
    348    While these calls just pass the call off to the corresponding Guile
    349    procedure, all such calls are routed through these ones to:
    350    a) provide a place to put hooks or whatnot in if we need to,
    351    b) add "unsafe" to the name to alert the reader.  */
    352 
    353 SCM
    354 gdbscm_unsafe_call_1 (SCM proc, SCM arg0)
    355 {
    356   return scm_call_1 (proc, arg0);
    357 }
    358 
    359 /* Utilities for safely evaluating a Scheme expression string.  */
    361 
    362 struct eval_scheme_string_data
    363 {
    364   const char *string;
    365   int display_result;
    366 };
    367 
    368 /* Wrapper to eval a C string in the Guile interpreter.
    369    This is passed to gdbscm_with_guile.  */
    370 
    371 static void *
    372 scscm_eval_scheme_string (void *datap)
    373 {
    374   struct eval_scheme_string_data *data = datap;
    375   SCM result = scm_c_eval_string (data->string);
    376 
    377   if (data->display_result && !scm_is_eq (result, SCM_UNSPECIFIED))
    378     {
    379       SCM port = scm_current_output_port ();
    380 
    381       scm_write (result, port);
    382       scm_newline (port);
    383     }
    384 
    385   /* If we get here the eval succeeded.  */
    386   return NULL;
    387 }
    388 
    389 /* Evaluate EXPR in the Guile interpreter, catching all exceptions
    390    and preventing continuation capture.
    391    The result is NULL if no exception occurred.  Otherwise, the exception is
    392    printed according to "set guile print-stack" and the result is an error
    393    message allocated with malloc, caller must free.  */
    394 
    395 char *
    396 gdbscm_safe_eval_string (const char *string, int display_result)
    397 {
    398   struct eval_scheme_string_data data = { string, display_result };
    399   void *result;
    400 
    401   result = gdbscm_with_guile (scscm_eval_scheme_string, (void *) &data);
    402 
    403   if (result != NULL)
    404     return xstrdup (result);
    405   return NULL;
    406 }
    407 
    408 /* Utilities for safely loading Scheme scripts.  */
    410 
    411 /* Helper function for gdbscm_safe_source_scheme_script.  */
    412 
    413 static void *
    414 scscm_source_scheme_script (void *data)
    415 {
    416   const char *filename = data;
    417 
    418   /* The Guile docs don't specify what the result is.
    419      Maybe it's SCM_UNSPECIFIED, but the docs should specify that. :-) */
    420   scm_c_primitive_load_path (filename);
    421 
    422   /* If we get here the load succeeded.  */
    423   return NULL;
    424 }
    425 
    426 /* Try to load a script, catching all exceptions,
    427    and preventing continuation capture.
    428    The result is NULL if the load succeeded.  Otherwise, the exception is
    429    printed according to "set guile print-stack" and the result is an error
    430    message allocated with malloc, caller must free.  */
    431 
    432 char *
    433 gdbscm_safe_source_script (const char *filename)
    434 {
    435   /* scm_c_primitive_load_path only looks in %load-path for files with
    436      relative paths.  An alternative could be to temporarily add "." to
    437      %load-path, but we don't want %load-path to be searched.  At least not
    438      by default.  This function is invoked by the "source" GDB command which
    439      already has its own path search support.  */
    440   char *abs_filename = NULL;
    441   void *result;
    442 
    443   if (!IS_ABSOLUTE_PATH (filename))
    444     {
    445       abs_filename = gdb_realpath (filename);
    446       filename = abs_filename;
    447     }
    448 
    449   result = gdbscm_with_guile (scscm_source_scheme_script,
    450 			      (void *) filename);
    451 
    452   xfree (abs_filename);
    453   if (result != NULL)
    454     return xstrdup (result);
    455   return NULL;
    456 }
    457 
    458 /* Utility for entering an interactive Guile repl.  */
    460 
    461 void
    462 gdbscm_enter_repl (void)
    463 {
    464   /* It's unfortunate to have to resort to something like this, but
    465      scm_shell doesn't return.  :-(  I found this code on guile-user@.  */
    466   gdbscm_safe_call_1 (scm_c_public_ref ("system repl repl", "start-repl"),
    467 		      scm_from_latin1_symbol ("scheme"), NULL);
    468 }
    469