Extension Language API
[external/binutils.git] / gdb / python / python.c
1 /* General python/gdb code
2
3    Copyright (C) 2008-2014 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 #include "defs.h"
21 #include "arch-utils.h"
22 #include "command.h"
23 #include "ui-out.h"
24 #include "cli/cli-script.h"
25 #include "gdbcmd.h"
26 #include "progspace.h"
27 #include "objfiles.h"
28 #include "value.h"
29 #include "language.h"
30 #include "exceptions.h"
31 #include "event-loop.h"
32 #include "serial.h"
33 #include "readline/tilde.h"
34 #include "python.h"
35 #include "extension-priv.h"
36 #include "cli/cli-utils.h"
37 #include <ctype.h>
38
39 /* Declared constants and enum for python stack printing.  */
40 static const char python_excp_none[] = "none";
41 static const char python_excp_full[] = "full";
42 static const char python_excp_message[] = "message";
43
44 /* "set python print-stack" choices.  */
45 static const char *const python_excp_enums[] =
46   {
47     python_excp_none,
48     python_excp_full,
49     python_excp_message,
50     NULL
51   };
52
53 /* The exception printing variable.  'full' if we want to print the
54    error message and stack, 'none' if we want to print nothing, and
55    'message' if we only want to print the error message.  'message' is
56    the default.  */
57 static const char *gdbpy_should_print_stack = python_excp_message;
58
59 #ifdef HAVE_PYTHON
60 /* Forward decls, these are defined later.  */
61 static const struct extension_language_script_ops python_extension_script_ops;
62 static const struct extension_language_ops python_extension_ops;
63 #endif
64
65 /* The main struct describing GDB's interface to the Python
66    extension language.  */
67 const struct extension_language_defn extension_language_python =
68 {
69   EXT_LANG_PYTHON,
70   "python",
71   "Python",
72
73   ".py",
74   "-gdb.py",
75
76   python_control,
77
78 #ifdef HAVE_PYTHON
79   &python_extension_script_ops,
80   &python_extension_ops
81 #else
82   NULL,
83   NULL
84 #endif
85 };
86 \f
87 #ifdef HAVE_PYTHON
88
89 #include "libiberty.h"
90 #include "cli/cli-decode.h"
91 #include "charset.h"
92 #include "top.h"
93 #include "solib.h"
94 #include "python-internal.h"
95 #include "linespec.h"
96 #include "source.h"
97 #include "version.h"
98 #include "target.h"
99 #include "gdbthread.h"
100 #include "interps.h"
101 #include "event-top.h"
102
103 /* True if Python has been successfully initialized, false
104    otherwise.  */
105
106 int gdb_python_initialized;
107
108 static PyMethodDef GdbMethods[];
109
110 #ifdef IS_PY3K
111 static struct PyModuleDef GdbModuleDef;
112 #endif
113
114 PyObject *gdb_module;
115 PyObject *gdb_python_module;
116
117 /* Some string constants we may wish to use.  */
118 PyObject *gdbpy_to_string_cst;
119 PyObject *gdbpy_children_cst;
120 PyObject *gdbpy_display_hint_cst;
121 PyObject *gdbpy_doc_cst;
122 PyObject *gdbpy_enabled_cst;
123 PyObject *gdbpy_value_cst;
124
125 /* The GdbError exception.  */
126 PyObject *gdbpy_gdberror_exc;
127
128 /* The `gdb.error' base class.  */
129 PyObject *gdbpy_gdb_error;
130
131 /* The `gdb.MemoryError' exception.  */
132 PyObject *gdbpy_gdb_memory_error;
133
134 static script_sourcer_func gdbpy_source_script;
135 static objfile_script_sourcer_func gdbpy_source_objfile_script;
136 static void gdbpy_finish_initialization
137   (const struct extension_language_defn *);
138 static int gdbpy_initialized (const struct extension_language_defn *);
139 static void gdbpy_eval_from_control_command
140   (const struct extension_language_defn *, struct command_line *cmd);
141 static void gdbpy_start_type_printers (const struct extension_language_defn *,
142                                        struct ext_lang_type_printers *);
143 static enum ext_lang_rc gdbpy_apply_type_printers
144   (const struct extension_language_defn *,
145    const struct ext_lang_type_printers *, struct type *, char **);
146 static void gdbpy_free_type_printers (const struct extension_language_defn *,
147                                       struct ext_lang_type_printers *);
148 static void gdbpy_clear_quit_flag (const struct extension_language_defn *);
149 static void gdbpy_set_quit_flag (const struct extension_language_defn *);
150 static int gdbpy_check_quit_flag (const struct extension_language_defn *);
151 static enum ext_lang_rc gdbpy_before_prompt_hook
152   (const struct extension_language_defn *, const char *current_gdb_prompt);
153
154 /* The interface between gdb proper and loading of python scripts.  */
155
156 static const struct extension_language_script_ops python_extension_script_ops =
157 {
158   gdbpy_source_script,
159   gdbpy_source_objfile_script,
160   gdbpy_auto_load_enabled
161 };
162
163 /* The interface between gdb proper and python extensions.  */
164
165 static const struct extension_language_ops python_extension_ops =
166 {
167   gdbpy_finish_initialization,
168   gdbpy_initialized,
169
170   gdbpy_eval_from_control_command,
171
172   gdbpy_start_type_printers,
173   gdbpy_apply_type_printers,
174   gdbpy_free_type_printers,
175
176   gdbpy_apply_val_pretty_printer,
177
178   gdbpy_apply_frame_filter,
179
180   gdbpy_preserve_values,
181
182   gdbpy_breakpoint_has_cond,
183   gdbpy_breakpoint_cond_says_stop,
184
185   gdbpy_clear_quit_flag,
186   gdbpy_set_quit_flag,
187   gdbpy_check_quit_flag,
188
189   gdbpy_before_prompt_hook
190 };
191
192 /* Architecture and language to be used in callbacks from
193    the Python interpreter.  */
194 struct gdbarch *python_gdbarch;
195 const struct language_defn *python_language;
196
197 /* Restore global language and architecture and Python GIL state
198    when leaving the Python interpreter.  */
199
200 struct python_env
201 {
202   struct active_ext_lang_state *previous_active;
203   PyGILState_STATE state;
204   struct gdbarch *gdbarch;
205   const struct language_defn *language;
206   PyObject *error_type, *error_value, *error_traceback;
207 };
208
209 static void
210 restore_python_env (void *p)
211 {
212   struct python_env *env = (struct python_env *)p;
213
214   /* Leftover Python error is forbidden by Python Exception Handling.  */
215   if (PyErr_Occurred ())
216     {
217       /* This order is similar to the one calling error afterwards. */
218       gdbpy_print_stack ();
219       warning (_("internal error: Unhandled Python exception"));
220     }
221
222   PyErr_Restore (env->error_type, env->error_value, env->error_traceback);
223
224   PyGILState_Release (env->state);
225   python_gdbarch = env->gdbarch;
226   python_language = env->language;
227
228   restore_active_ext_lang (env->previous_active);
229
230   xfree (env);
231 }
232
233 /* Called before entering the Python interpreter to install the
234    current language and architecture to be used for Python values.
235    Also set the active extension language for GDB so that SIGINT's
236    are directed our way, and if necessary install the right SIGINT
237    handler.  */
238
239 struct cleanup *
240 ensure_python_env (struct gdbarch *gdbarch,
241                    const struct language_defn *language)
242 {
243   struct python_env *env = xmalloc (sizeof *env);
244
245   /* We should not ever enter Python unless initialized.  */
246   if (!gdb_python_initialized)
247     error (_("Python not initialized"));
248
249   env->previous_active = set_active_ext_lang (&extension_language_python);
250
251   env->state = PyGILState_Ensure ();
252   env->gdbarch = python_gdbarch;
253   env->language = python_language;
254
255   python_gdbarch = gdbarch;
256   python_language = language;
257
258   /* Save it and ensure ! PyErr_Occurred () afterwards.  */
259   PyErr_Fetch (&env->error_type, &env->error_value, &env->error_traceback);
260
261   return make_cleanup (restore_python_env, env);
262 }
263
264 /* Clear the quit flag.  */
265
266 static void
267 gdbpy_clear_quit_flag (const struct extension_language_defn *extlang)
268 {
269   /* This clears the flag as a side effect.  */
270   PyOS_InterruptOccurred ();
271 }
272
273 /* Set the quit flag.  */
274
275 static void
276 gdbpy_set_quit_flag (const struct extension_language_defn *extlang)
277 {
278   PyErr_SetInterrupt ();
279 }
280
281 /* Return true if the quit flag has been set, false otherwise.  */
282
283 static int
284 gdbpy_check_quit_flag (const struct extension_language_defn *extlang)
285 {
286   return PyOS_InterruptOccurred ();
287 }
288
289 /* Evaluate a Python command like PyRun_SimpleString, but uses
290    Py_single_input which prints the result of expressions, and does
291    not automatically print the stack on errors.  */
292
293 static int
294 eval_python_command (const char *command)
295 {
296   PyObject *m, *d, *v;
297
298   m = PyImport_AddModule ("__main__");
299   if (m == NULL)
300     return -1;
301
302   d = PyModule_GetDict (m);
303   if (d == NULL)
304     return -1;
305   v = PyRun_StringFlags (command, Py_single_input, d, d, NULL);
306   if (v == NULL)
307     return -1;
308
309   Py_DECREF (v);
310 #ifndef IS_PY3K
311   if (Py_FlushLine ())
312     PyErr_Clear ();
313 #endif
314
315   return 0;
316 }
317
318 /* Implementation of the gdb "python-interactive" command.  */
319
320 static void
321 python_interactive_command (char *arg, int from_tty)
322 {
323   struct cleanup *cleanup;
324   int err;
325
326   cleanup = make_cleanup_restore_integer (&interpreter_async);
327   interpreter_async = 0;
328
329   arg = skip_spaces (arg);
330
331   ensure_python_env (get_current_arch (), current_language);
332
333   if (arg && *arg)
334     {
335       int len = strlen (arg);
336       char *script = xmalloc (len + 2);
337
338       strcpy (script, arg);
339       script[len] = '\n';
340       script[len + 1] = '\0';
341       err = eval_python_command (script);
342       xfree (script);
343     }
344   else
345     {
346       err = PyRun_InteractiveLoop (instream, "<stdin>");
347       dont_repeat ();
348     }
349
350   if (err)
351     {
352       gdbpy_print_stack ();
353       error (_("Error while executing Python code."));
354     }
355
356   do_cleanups (cleanup);
357 }
358
359 /* A wrapper around PyRun_SimpleFile.  FILE is the Python script to run
360    named FILENAME.
361
362    On Windows hosts few users would build Python themselves (this is no
363    trivial task on this platform), and thus use binaries built by
364    someone else instead.  There may happen situation where the Python
365    library and GDB are using two different versions of the C runtime
366    library.  Python, being built with VC, would use one version of the
367    msvcr DLL (Eg. msvcr100.dll), while MinGW uses msvcrt.dll.
368    A FILE * from one runtime does not necessarily operate correctly in
369    the other runtime.
370
371    To work around this potential issue, we create on Windows hosts the
372    FILE object using Python routines, thus making sure that it is
373    compatible with the Python library.  */
374
375 static void
376 python_run_simple_file (FILE *file, const char *filename)
377 {
378 #ifndef _WIN32
379
380   PyRun_SimpleFile (file, filename);
381
382 #else /* _WIN32 */
383
384   char *full_path;
385   PyObject *python_file;
386   struct cleanup *cleanup;
387
388   /* Because we have a string for a filename, and are using Python to
389      open the file, we need to expand any tilde in the path first.  */
390   full_path = tilde_expand (filename);
391   cleanup = make_cleanup (xfree, full_path);
392   python_file = PyFile_FromString (full_path, "r");
393   if (! python_file)
394     {
395       do_cleanups (cleanup);
396       gdbpy_print_stack ();
397       error (_("Error while opening file: %s"), full_path);
398     }
399
400   make_cleanup_py_decref (python_file);
401   PyRun_SimpleFile (PyFile_AsFile (python_file), filename);
402   do_cleanups (cleanup);
403
404 #endif /* _WIN32 */
405 }
406
407 /* Given a command_line, return a command string suitable for passing
408    to Python.  Lines in the string are separated by newlines.  The
409    return value is allocated using xmalloc and the caller is
410    responsible for freeing it.  */
411
412 static char *
413 compute_python_string (struct command_line *l)
414 {
415   struct command_line *iter;
416   char *script = NULL;
417   int size = 0;
418   int here;
419
420   for (iter = l; iter; iter = iter->next)
421     size += strlen (iter->line) + 1;
422
423   script = xmalloc (size + 1);
424   here = 0;
425   for (iter = l; iter; iter = iter->next)
426     {
427       int len = strlen (iter->line);
428
429       strcpy (&script[here], iter->line);
430       here += len;
431       script[here++] = '\n';
432     }
433   script[here] = '\0';
434   return script;
435 }
436
437 /* Take a command line structure representing a 'python' command, and
438    evaluate its body using the Python interpreter.  */
439
440 static void
441 gdbpy_eval_from_control_command (const struct extension_language_defn *extlang,
442                                  struct command_line *cmd)
443 {
444   int ret;
445   char *script;
446   struct cleanup *cleanup;
447
448   if (cmd->body_count != 1)
449     error (_("Invalid \"python\" block structure."));
450
451   cleanup = ensure_python_env (get_current_arch (), current_language);
452
453   script = compute_python_string (cmd->body_list[0]);
454   ret = PyRun_SimpleString (script);
455   xfree (script);
456   if (ret)
457     error (_("Error while executing Python code."));
458
459   do_cleanups (cleanup);
460 }
461
462 /* Implementation of the gdb "python" command.  */
463
464 static void
465 python_command (char *arg, int from_tty)
466 {
467   struct cleanup *cleanup;
468
469   cleanup = ensure_python_env (get_current_arch (), current_language);
470
471   make_cleanup_restore_integer (&interpreter_async);
472   interpreter_async = 0;
473
474   arg = skip_spaces (arg);
475   if (arg && *arg)
476     {
477       if (PyRun_SimpleString (arg))
478         error (_("Error while executing Python code."));
479     }
480   else
481     {
482       struct command_line *l = get_command_line (python_control, "");
483
484       make_cleanup_free_command_lines (&l);
485       execute_control_command_untraced (l);
486     }
487
488   do_cleanups (cleanup);
489 }
490
491 \f
492
493 /* Transform a gdb parameters's value into a Python value.  May return
494    NULL (and set a Python exception) on error.  Helper function for
495    get_parameter.  */
496 PyObject *
497 gdbpy_parameter_value (enum var_types type, void *var)
498 {
499   switch (type)
500     {
501     case var_string:
502     case var_string_noescape:
503     case var_optional_filename:
504     case var_filename:
505     case var_enum:
506       {
507         char *str = * (char **) var;
508
509         if (! str)
510           str = "";
511         return PyString_Decode (str, strlen (str), host_charset (), NULL);
512       }
513
514     case var_boolean:
515       {
516         if (* (int *) var)
517           Py_RETURN_TRUE;
518         else
519           Py_RETURN_FALSE;
520       }
521
522     case var_auto_boolean:
523       {
524         enum auto_boolean ab = * (enum auto_boolean *) var;
525
526         if (ab == AUTO_BOOLEAN_TRUE)
527           Py_RETURN_TRUE;
528         else if (ab == AUTO_BOOLEAN_FALSE)
529           Py_RETURN_FALSE;
530         else
531           Py_RETURN_NONE;
532       }
533
534     case var_integer:
535       if ((* (int *) var) == INT_MAX)
536         Py_RETURN_NONE;
537       /* Fall through.  */
538     case var_zinteger:
539       return PyLong_FromLong (* (int *) var);
540
541     case var_uinteger:
542       {
543         unsigned int val = * (unsigned int *) var;
544
545         if (val == UINT_MAX)
546           Py_RETURN_NONE;
547         return PyLong_FromUnsignedLong (val);
548       }
549     }
550
551   return PyErr_Format (PyExc_RuntimeError,
552                        _("Programmer error: unhandled type."));
553 }
554
555 /* A Python function which returns a gdb parameter's value as a Python
556    value.  */
557
558 PyObject *
559 gdbpy_parameter (PyObject *self, PyObject *args)
560 {
561   struct cmd_list_element *alias, *prefix, *cmd;
562   const char *arg;
563   char *newarg;
564   int found = -1;
565   volatile struct gdb_exception except;
566
567   if (! PyArg_ParseTuple (args, "s", &arg))
568     return NULL;
569
570   newarg = concat ("show ", arg, (char *) NULL);
571
572   TRY_CATCH (except, RETURN_MASK_ALL)
573     {
574       found = lookup_cmd_composition (newarg, &alias, &prefix, &cmd);
575     }
576   xfree (newarg);
577   GDB_PY_HANDLE_EXCEPTION (except);
578   if (!found)
579     return PyErr_Format (PyExc_RuntimeError,
580                          _("Could not find parameter `%s'."), arg);
581
582   if (! cmd->var)
583     return PyErr_Format (PyExc_RuntimeError,
584                          _("`%s' is not a parameter."), arg);
585   return gdbpy_parameter_value (cmd->var_type, cmd->var);
586 }
587
588 /* Wrapper for target_charset.  */
589
590 static PyObject *
591 gdbpy_target_charset (PyObject *self, PyObject *args)
592 {
593   const char *cset = target_charset (python_gdbarch);
594
595   return PyUnicode_Decode (cset, strlen (cset), host_charset (), NULL);
596 }
597
598 /* Wrapper for target_wide_charset.  */
599
600 static PyObject *
601 gdbpy_target_wide_charset (PyObject *self, PyObject *args)
602 {
603   const char *cset = target_wide_charset (python_gdbarch);
604
605   return PyUnicode_Decode (cset, strlen (cset), host_charset (), NULL);
606 }
607
608 /* A Python function which evaluates a string using the gdb CLI.  */
609
610 static PyObject *
611 execute_gdb_command (PyObject *self, PyObject *args, PyObject *kw)
612 {
613   const char *arg;
614   PyObject *from_tty_obj = NULL, *to_string_obj = NULL;
615   int from_tty, to_string;
616   volatile struct gdb_exception except;
617   static char *keywords[] = {"command", "from_tty", "to_string", NULL };
618   char *result = NULL;
619
620   if (! PyArg_ParseTupleAndKeywords (args, kw, "s|O!O!", keywords, &arg,
621                                      &PyBool_Type, &from_tty_obj,
622                                      &PyBool_Type, &to_string_obj))
623     return NULL;
624
625   from_tty = 0;
626   if (from_tty_obj)
627     {
628       int cmp = PyObject_IsTrue (from_tty_obj);
629       if (cmp < 0)
630         return NULL;
631       from_tty = cmp;
632     }
633
634   to_string = 0;
635   if (to_string_obj)
636     {
637       int cmp = PyObject_IsTrue (to_string_obj);
638       if (cmp < 0)
639         return NULL;
640       to_string = cmp;
641     }
642
643   TRY_CATCH (except, RETURN_MASK_ALL)
644     {
645       /* Copy the argument text in case the command modifies it.  */
646       char *copy = xstrdup (arg);
647       struct cleanup *cleanup = make_cleanup (xfree, copy);
648
649       make_cleanup_restore_integer (&interpreter_async);
650       interpreter_async = 0;
651
652       prevent_dont_repeat ();
653       if (to_string)
654         result = execute_command_to_string (copy, from_tty);
655       else
656         {
657           result = NULL;
658           execute_command (copy, from_tty);
659         }
660
661       do_cleanups (cleanup);
662     }
663   GDB_PY_HANDLE_EXCEPTION (except);
664
665   /* Do any commands attached to breakpoint we stopped at.  */
666   bpstat_do_actions ();
667
668   if (result)
669     {
670       PyObject *r = PyString_FromString (result);
671       xfree (result);
672       return r;
673     }
674   Py_RETURN_NONE;
675 }
676
677 /* Implementation of gdb.solib_name (Long) -> String.
678    Returns the name of the shared library holding a given address, or None.  */
679
680 static PyObject *
681 gdbpy_solib_name (PyObject *self, PyObject *args)
682 {
683   char *soname;
684   PyObject *str_obj;
685   gdb_py_longest pc;
686
687   if (!PyArg_ParseTuple (args, GDB_PY_LL_ARG, &pc))
688     return NULL;
689
690   soname = solib_name_from_address (current_program_space, pc);
691   if (soname)
692     str_obj = PyString_Decode (soname, strlen (soname), host_charset (), NULL);
693   else
694     {
695       str_obj = Py_None;
696       Py_INCREF (Py_None);
697     }
698
699   return str_obj;
700 }
701
702 /* A Python function which is a wrapper for decode_line_1.  */
703
704 static PyObject *
705 gdbpy_decode_line (PyObject *self, PyObject *args)
706 {
707   struct symtabs_and_lines sals = { NULL, 0 }; /* Initialize to
708                                                   appease gcc.  */
709   struct symtab_and_line sal;
710   const char *arg = NULL;
711   char *copy_to_free = NULL, *copy = NULL;
712   struct cleanup *cleanups;
713   PyObject *result = NULL;
714   PyObject *return_result = NULL;
715   PyObject *unparsed = NULL;
716   volatile struct gdb_exception except;
717
718   if (! PyArg_ParseTuple (args, "|s", &arg))
719     return NULL;
720
721   cleanups = make_cleanup (null_cleanup, NULL);
722
723   sals.sals = NULL;
724   TRY_CATCH (except, RETURN_MASK_ALL)
725     {
726       if (arg)
727         {
728           copy = xstrdup (arg);
729           copy_to_free = copy;
730           sals = decode_line_1 (&copy, 0, 0, 0);
731         }
732       else
733         {
734           set_default_source_symtab_and_line ();
735           sal = get_current_source_symtab_and_line ();
736           sals.sals = &sal;
737           sals.nelts = 1;
738         }
739     }
740
741   if (sals.sals != NULL && sals.sals != &sal)
742     {
743       make_cleanup (xfree, copy_to_free);
744       make_cleanup (xfree, sals.sals);
745     }
746
747   if (except.reason < 0)
748     {
749       do_cleanups (cleanups);
750       /* We know this will always throw.  */
751       gdbpy_convert_exception (except);
752       return NULL;
753     }
754
755   if (sals.nelts)
756     {
757       int i;
758
759       result = PyTuple_New (sals.nelts);
760       if (! result)
761         goto error;
762       for (i = 0; i < sals.nelts; ++i)
763         {
764           PyObject *obj;
765
766           obj = symtab_and_line_to_sal_object (sals.sals[i]);
767           if (! obj)
768             {
769               Py_DECREF (result);
770               goto error;
771             }
772
773           PyTuple_SetItem (result, i, obj);
774         }
775     }
776   else
777     {
778       result = Py_None;
779       Py_INCREF (Py_None);
780     }
781
782   return_result = PyTuple_New (2);
783   if (! return_result)
784     {
785       Py_DECREF (result);
786       goto error;
787     }
788
789   if (copy && strlen (copy) > 0)
790     {
791       unparsed = PyString_FromString (copy);
792       if (unparsed == NULL)
793         {
794           Py_DECREF (result);
795           Py_DECREF (return_result);
796           return_result = NULL;
797           goto error;
798         }
799     }
800   else
801     {
802       unparsed = Py_None;
803       Py_INCREF (Py_None);
804     }
805
806   PyTuple_SetItem (return_result, 0, unparsed);
807   PyTuple_SetItem (return_result, 1, result);
808
809  error:
810   do_cleanups (cleanups);
811
812   return return_result;
813 }
814
815 /* Parse a string and evaluate it as an expression.  */
816 static PyObject *
817 gdbpy_parse_and_eval (PyObject *self, PyObject *args)
818 {
819   const char *expr_str;
820   struct value *result = NULL;
821   volatile struct gdb_exception except;
822
823   if (!PyArg_ParseTuple (args, "s", &expr_str))
824     return NULL;
825
826   TRY_CATCH (except, RETURN_MASK_ALL)
827     {
828       result = parse_and_eval (expr_str);
829     }
830   GDB_PY_HANDLE_EXCEPTION (except);
831
832   return value_to_value_object (result);
833 }
834
835 /* Implementation of gdb.find_pc_line function.
836    Returns the gdb.Symtab_and_line object corresponding to a PC value.  */
837
838 static PyObject *
839 gdbpy_find_pc_line (PyObject *self, PyObject *args)
840 {
841   gdb_py_ulongest pc_llu;
842   volatile struct gdb_exception except;
843   PyObject *result = NULL; /* init for gcc -Wall */
844
845   if (!PyArg_ParseTuple (args, GDB_PY_LLU_ARG, &pc_llu))
846     return NULL;
847
848   TRY_CATCH (except, RETURN_MASK_ALL)
849     {
850       struct symtab_and_line sal;
851       CORE_ADDR pc;
852
853       pc = (CORE_ADDR) pc_llu;
854       sal = find_pc_line (pc, 0);
855       result = symtab_and_line_to_sal_object (sal);
856     }
857   GDB_PY_HANDLE_EXCEPTION (except);
858
859   return result;
860 }
861
862 /* Read a file as Python code.
863    This is the extension_language_script_ops.script_sourcer "method".
864    FILE is the file to load.  FILENAME is name of the file FILE.
865    This does not throw any errors.  If an exception occurs python will print
866    the traceback and clear the error indicator.  */
867
868 static void
869 gdbpy_source_script (const struct extension_language_defn *extlang,
870                      FILE *file, const char *filename)
871 {
872   struct cleanup *cleanup;
873
874   cleanup = ensure_python_env (get_current_arch (), current_language);
875   python_run_simple_file (file, filename);
876   do_cleanups (cleanup);
877 }
878
879 \f
880
881 /* Posting and handling events.  */
882
883 /* A single event.  */
884 struct gdbpy_event
885 {
886   /* The Python event.  This is just a callable object.  */
887   PyObject *event;
888   /* The next event.  */
889   struct gdbpy_event *next;
890 };
891
892 /* All pending events.  */
893 static struct gdbpy_event *gdbpy_event_list;
894 /* The final link of the event list.  */
895 static struct gdbpy_event **gdbpy_event_list_end;
896
897 /* We use a file handler, and not an async handler, so that we can
898    wake up the main thread even when it is blocked in poll().  */
899 static struct serial *gdbpy_event_fds[2];
900
901 /* The file handler callback.  This reads from the internal pipe, and
902    then processes the Python event queue.  This will always be run in
903    the main gdb thread.  */
904
905 static void
906 gdbpy_run_events (struct serial *scb, void *context)
907 {
908   struct cleanup *cleanup;
909
910   cleanup = ensure_python_env (get_current_arch (), current_language);
911
912   /* Flush the fd.  Do this before flushing the events list, so that
913      any new event post afterwards is sure to re-awake the event
914      loop.  */
915   while (serial_readchar (gdbpy_event_fds[0], 0) >= 0)
916     ;
917
918   while (gdbpy_event_list)
919     {
920       PyObject *call_result;
921
922       /* Dispatching the event might push a new element onto the event
923          loop, so we update here "atomically enough".  */
924       struct gdbpy_event *item = gdbpy_event_list;
925       gdbpy_event_list = gdbpy_event_list->next;
926       if (gdbpy_event_list == NULL)
927         gdbpy_event_list_end = &gdbpy_event_list;
928
929       /* Ignore errors.  */
930       call_result = PyObject_CallObject (item->event, NULL);
931       if (call_result == NULL)
932         PyErr_Clear ();
933
934       Py_XDECREF (call_result);
935       Py_DECREF (item->event);
936       xfree (item);
937     }
938
939   do_cleanups (cleanup);
940 }
941
942 /* Submit an event to the gdb thread.  */
943 static PyObject *
944 gdbpy_post_event (PyObject *self, PyObject *args)
945 {
946   struct gdbpy_event *event;
947   PyObject *func;
948   int wakeup;
949
950   if (!PyArg_ParseTuple (args, "O", &func))
951     return NULL;
952
953   if (!PyCallable_Check (func))
954     {
955       PyErr_SetString (PyExc_RuntimeError,
956                        _("Posted event is not callable"));
957       return NULL;
958     }
959
960   Py_INCREF (func);
961
962   /* From here until the end of the function, we have the GIL, so we
963      can operate on our global data structures without worrying.  */
964   wakeup = gdbpy_event_list == NULL;
965
966   event = XNEW (struct gdbpy_event);
967   event->event = func;
968   event->next = NULL;
969   *gdbpy_event_list_end = event;
970   gdbpy_event_list_end = &event->next;
971
972   /* Wake up gdb when needed.  */
973   if (wakeup)
974     {
975       char c = 'q';             /* Anything. */
976
977       if (serial_write (gdbpy_event_fds[1], &c, 1))
978         return PyErr_SetFromErrno (PyExc_IOError);
979     }
980
981   Py_RETURN_NONE;
982 }
983
984 /* Initialize the Python event handler.  */
985 static int
986 gdbpy_initialize_events (void)
987 {
988   if (serial_pipe (gdbpy_event_fds) == 0)
989     {
990       gdbpy_event_list_end = &gdbpy_event_list;
991       serial_async (gdbpy_event_fds[0], gdbpy_run_events, NULL);
992     }
993
994   return 0;
995 }
996
997 \f
998
999 /* This is the extension_language_ops.before_prompt "method".  */
1000
1001 static enum ext_lang_rc
1002 gdbpy_before_prompt_hook (const struct extension_language_defn *extlang,
1003                           const char *current_gdb_prompt)
1004 {
1005   struct cleanup *cleanup;
1006   char *prompt = NULL;
1007
1008   if (!gdb_python_initialized)
1009     return EXT_LANG_RC_NOP;
1010
1011   cleanup = ensure_python_env (get_current_arch (), current_language);
1012
1013   if (gdb_python_module
1014       && PyObject_HasAttrString (gdb_python_module, "prompt_hook"))
1015     {
1016       PyObject *hook;
1017
1018       hook = PyObject_GetAttrString (gdb_python_module, "prompt_hook");
1019       if (hook == NULL)
1020         goto fail;
1021
1022       make_cleanup_py_decref (hook);
1023
1024       if (PyCallable_Check (hook))
1025         {
1026           PyObject *result;
1027           PyObject *current_prompt;
1028
1029           current_prompt = PyString_FromString (current_gdb_prompt);
1030           if (current_prompt == NULL)
1031             goto fail;
1032
1033           result = PyObject_CallFunctionObjArgs (hook, current_prompt, NULL);
1034
1035           Py_DECREF (current_prompt);
1036
1037           if (result == NULL)
1038             goto fail;
1039
1040           make_cleanup_py_decref (result);
1041
1042           /* Return type should be None, or a String.  If it is None,
1043              fall through, we will not set a prompt.  If it is a
1044              string, set  PROMPT.  Anything else, set an exception.  */
1045           if (result != Py_None && ! PyString_Check (result))
1046             {
1047               PyErr_Format (PyExc_RuntimeError,
1048                             _("Return from prompt_hook must " \
1049                               "be either a Python string, or None"));
1050               goto fail;
1051             }
1052
1053           if (result != Py_None)
1054             {
1055               prompt = python_string_to_host_string (result);
1056
1057               if (prompt == NULL)
1058                 goto fail;
1059               else
1060                 make_cleanup (xfree, prompt);
1061             }
1062         }
1063     }
1064
1065   /* If a prompt has been set, PROMPT will not be NULL.  If it is
1066      NULL, do not set the prompt.  */
1067   if (prompt != NULL)
1068     set_prompt (prompt);
1069
1070   do_cleanups (cleanup);
1071   return prompt != NULL ? EXT_LANG_RC_OK : EXT_LANG_RC_NOP;
1072
1073  fail:
1074   gdbpy_print_stack ();
1075   do_cleanups (cleanup);
1076   return EXT_LANG_RC_ERROR;
1077 }
1078
1079 \f
1080
1081 /* Printing.  */
1082
1083 /* A python function to write a single string using gdb's filtered
1084    output stream .  The optional keyword STREAM can be used to write
1085    to a particular stream.  The default stream is to gdb_stdout.  */
1086
1087 static PyObject *
1088 gdbpy_write (PyObject *self, PyObject *args, PyObject *kw)
1089 {
1090   const char *arg;
1091   static char *keywords[] = {"text", "stream", NULL };
1092   int stream_type = 0;
1093   volatile struct gdb_exception except;
1094
1095   if (! PyArg_ParseTupleAndKeywords (args, kw, "s|i", keywords, &arg,
1096                                      &stream_type))
1097     return NULL;
1098
1099   TRY_CATCH (except, RETURN_MASK_ALL)
1100     {
1101       switch (stream_type)
1102         {
1103         case 1:
1104           {
1105             fprintf_filtered (gdb_stderr, "%s", arg);
1106             break;
1107           }
1108         case 2:
1109           {
1110             fprintf_filtered (gdb_stdlog, "%s", arg);
1111             break;
1112           }
1113         default:
1114           fprintf_filtered (gdb_stdout, "%s", arg);
1115         }
1116     }
1117   GDB_PY_HANDLE_EXCEPTION (except);
1118
1119   Py_RETURN_NONE;
1120 }
1121
1122 /* A python function to flush a gdb stream.  The optional keyword
1123    STREAM can be used to flush a particular stream.  The default stream
1124    is gdb_stdout.  */
1125
1126 static PyObject *
1127 gdbpy_flush (PyObject *self, PyObject *args, PyObject *kw)
1128 {
1129   static char *keywords[] = {"stream", NULL };
1130   int stream_type = 0;
1131
1132   if (! PyArg_ParseTupleAndKeywords (args, kw, "|i", keywords,
1133                                      &stream_type))
1134     return NULL;
1135
1136   switch (stream_type)
1137     {
1138     case 1:
1139       {
1140         gdb_flush (gdb_stderr);
1141         break;
1142       }
1143     case 2:
1144       {
1145         gdb_flush (gdb_stdlog);
1146         break;
1147       }
1148     default:
1149       gdb_flush (gdb_stdout);
1150     }
1151
1152   Py_RETURN_NONE;
1153 }
1154
1155 /* Print a python exception trace, print just a message, or print
1156    nothing and clear the python exception, depending on
1157    gdbpy_should_print_stack.  Only call this if a python exception is
1158    set.  */
1159 void
1160 gdbpy_print_stack (void)
1161 {
1162   volatile struct gdb_exception except;
1163
1164   /* Print "none", just clear exception.  */
1165   if (gdbpy_should_print_stack == python_excp_none)
1166     {
1167       PyErr_Clear ();
1168     }
1169   /* Print "full" message and backtrace.  */
1170   else if (gdbpy_should_print_stack == python_excp_full)
1171     {
1172       PyErr_Print ();
1173       /* PyErr_Print doesn't necessarily end output with a newline.
1174          This works because Python's stdout/stderr is fed through
1175          printf_filtered.  */
1176       TRY_CATCH (except, RETURN_MASK_ALL)
1177         {
1178           begin_line ();
1179         }
1180     }
1181   /* Print "message", just error print message.  */
1182   else
1183     {
1184       PyObject *ptype, *pvalue, *ptraceback;
1185       char *msg = NULL, *type = NULL;
1186
1187       PyErr_Fetch (&ptype, &pvalue, &ptraceback);
1188
1189       /* Fetch the error message contained within ptype, pvalue.  */
1190       msg = gdbpy_exception_to_string (ptype, pvalue);
1191       type = gdbpy_obj_to_string (ptype);
1192
1193       TRY_CATCH (except, RETURN_MASK_ALL)
1194         {
1195           if (msg == NULL)
1196             {
1197               /* An error occurred computing the string representation of the
1198                  error message.  */
1199               fprintf_filtered (gdb_stderr,
1200                                 _("Error occurred computing Python error" \
1201                                   "message.\n"));
1202             }
1203           else
1204             fprintf_filtered (gdb_stderr, "Python Exception %s %s: \n",
1205                               type, msg);
1206         }
1207
1208       Py_XDECREF (ptype);
1209       Py_XDECREF (pvalue);
1210       Py_XDECREF (ptraceback);
1211       xfree (msg);
1212     }
1213 }
1214
1215 \f
1216
1217 /* Return the current Progspace.
1218    There always is one.  */
1219
1220 static PyObject *
1221 gdbpy_get_current_progspace (PyObject *unused1, PyObject *unused2)
1222 {
1223   PyObject *result;
1224
1225   result = pspace_to_pspace_object (current_program_space);
1226   if (result)
1227     Py_INCREF (result);
1228   return result;
1229 }
1230
1231 /* Return a sequence holding all the Progspaces.  */
1232
1233 static PyObject *
1234 gdbpy_progspaces (PyObject *unused1, PyObject *unused2)
1235 {
1236   struct program_space *ps;
1237   PyObject *list;
1238
1239   list = PyList_New (0);
1240   if (!list)
1241     return NULL;
1242
1243   ALL_PSPACES (ps)
1244   {
1245     PyObject *item = pspace_to_pspace_object (ps);
1246
1247     if (!item || PyList_Append (list, item) == -1)
1248       {
1249         Py_DECREF (list);
1250         return NULL;
1251       }
1252   }
1253
1254   return list;
1255 }
1256
1257 \f
1258
1259 /* The "current" objfile.  This is set when gdb detects that a new
1260    objfile has been loaded.  It is only set for the duration of a call to
1261    gdbpy_source_objfile_script; it is NULL at other times.  */
1262 static struct objfile *gdbpy_current_objfile;
1263
1264 /* Set the current objfile to OBJFILE and then read FILE named FILENAME
1265    as Python code.  This does not throw any errors.  If an exception
1266    occurs python will print the traceback and clear the error indicator.
1267    This is the extension_language_script_ops.objfile_script_sourcer
1268    "method".  */
1269
1270 static void
1271 gdbpy_source_objfile_script (const struct extension_language_defn *extlang,
1272                              struct objfile *objfile, FILE *file,
1273                              const char *filename)
1274 {
1275   struct cleanup *cleanups;
1276
1277   if (!gdb_python_initialized)
1278     return;
1279
1280   cleanups = ensure_python_env (get_objfile_arch (objfile), current_language);
1281   gdbpy_current_objfile = objfile;
1282
1283   python_run_simple_file (file, filename);
1284
1285   do_cleanups (cleanups);
1286   gdbpy_current_objfile = NULL;
1287 }
1288
1289 /* Return the current Objfile, or None if there isn't one.  */
1290
1291 static PyObject *
1292 gdbpy_get_current_objfile (PyObject *unused1, PyObject *unused2)
1293 {
1294   PyObject *result;
1295
1296   if (! gdbpy_current_objfile)
1297     Py_RETURN_NONE;
1298
1299   result = objfile_to_objfile_object (gdbpy_current_objfile);
1300   if (result)
1301     Py_INCREF (result);
1302   return result;
1303 }
1304
1305 /* Return a sequence holding all the Objfiles.  */
1306
1307 static PyObject *
1308 gdbpy_objfiles (PyObject *unused1, PyObject *unused2)
1309 {
1310   struct objfile *objf;
1311   PyObject *list;
1312
1313   list = PyList_New (0);
1314   if (!list)
1315     return NULL;
1316
1317   ALL_OBJFILES (objf)
1318   {
1319     PyObject *item = objfile_to_objfile_object (objf);
1320
1321     if (!item || PyList_Append (list, item) == -1)
1322       {
1323         Py_DECREF (list);
1324         return NULL;
1325       }
1326   }
1327
1328   return list;
1329 }
1330
1331 /* Compute the list of active python type printers and store them in
1332    EXT_PRINTERS->py_type_printers.  The product of this function is used by
1333    gdbpy_apply_type_printers, and freed by gdbpy_free_type_printers.
1334    This is the extension_language_ops.start_type_printers "method".  */
1335
1336 static void
1337 gdbpy_start_type_printers (const struct extension_language_defn *extlang,
1338                            struct ext_lang_type_printers *ext_printers)
1339 {
1340   struct cleanup *cleanups;
1341   PyObject *type_module, *func = NULL, *printers_obj = NULL;
1342
1343   if (!gdb_python_initialized)
1344     return;
1345
1346   cleanups = ensure_python_env (get_current_arch (), current_language);
1347
1348   type_module = PyImport_ImportModule ("gdb.types");
1349   if (type_module == NULL)
1350     {
1351       gdbpy_print_stack ();
1352       goto done;
1353     }
1354
1355   func = PyObject_GetAttrString (type_module, "get_type_recognizers");
1356   if (func == NULL)
1357     {
1358       gdbpy_print_stack ();
1359       goto done;
1360     }
1361
1362   printers_obj = PyObject_CallFunctionObjArgs (func, (char *) NULL);
1363   if (printers_obj == NULL)
1364     gdbpy_print_stack ();
1365   else
1366     ext_printers->py_type_printers = printers_obj;
1367
1368  done:
1369   Py_XDECREF (type_module);
1370   Py_XDECREF (func);
1371   do_cleanups (cleanups);
1372 }
1373
1374 /* If TYPE is recognized by some type printer, store in *PRETTIED_TYPE
1375    a newly allocated string holding the type's replacement name, and return
1376    EXT_LANG_RC_OK.  The caller is responsible for freeing the string.
1377    If there's a Python error return EXT_LANG_RC_ERROR.
1378    Otherwise, return EXT_LANG_RC_NOP.
1379    This is the extension_language_ops.apply_type_printers "method".  */
1380
1381 static enum ext_lang_rc
1382 gdbpy_apply_type_printers (const struct extension_language_defn *extlang,
1383                            const struct ext_lang_type_printers *ext_printers,
1384                            struct type *type, char **prettied_type)
1385 {
1386   struct cleanup *cleanups;
1387   PyObject *type_obj, *type_module = NULL, *func = NULL;
1388   PyObject *result_obj = NULL;
1389   PyObject *printers_obj = ext_printers->py_type_printers;
1390   char *result = NULL;
1391
1392   if (printers_obj == NULL)
1393     return EXT_LANG_RC_NOP;
1394
1395   if (!gdb_python_initialized)
1396     return EXT_LANG_RC_NOP;
1397
1398   cleanups = ensure_python_env (get_current_arch (), current_language);
1399
1400   type_obj = type_to_type_object (type);
1401   if (type_obj == NULL)
1402     {
1403       gdbpy_print_stack ();
1404       goto done;
1405     }
1406
1407   type_module = PyImport_ImportModule ("gdb.types");
1408   if (type_module == NULL)
1409     {
1410       gdbpy_print_stack ();
1411       goto done;
1412     }
1413
1414   func = PyObject_GetAttrString (type_module, "apply_type_recognizers");
1415   if (func == NULL)
1416     {
1417       gdbpy_print_stack ();
1418       goto done;
1419     }
1420
1421   result_obj = PyObject_CallFunctionObjArgs (func, printers_obj,
1422                                              type_obj, (char *) NULL);
1423   if (result_obj == NULL)
1424     {
1425       gdbpy_print_stack ();
1426       goto done;
1427     }
1428
1429   if (result_obj != Py_None)
1430     {
1431       result = python_string_to_host_string (result_obj);
1432       if (result == NULL)
1433         gdbpy_print_stack ();
1434     }
1435
1436  done:
1437   Py_XDECREF (type_obj);
1438   Py_XDECREF (type_module);
1439   Py_XDECREF (func);
1440   Py_XDECREF (result_obj);
1441   do_cleanups (cleanups);
1442   if (result != NULL)
1443     *prettied_type = result;
1444   return result != NULL ? EXT_LANG_RC_OK : EXT_LANG_RC_ERROR;
1445 }
1446
1447 /* Free the result of start_type_printers.
1448    This is the extension_language_ops.free_type_printers "method".  */
1449
1450 static void
1451 gdbpy_free_type_printers (const struct extension_language_defn *extlang,
1452                           struct ext_lang_type_printers *ext_printers)
1453 {
1454   struct cleanup *cleanups;
1455   PyObject *printers = ext_printers->py_type_printers;
1456
1457   if (printers == NULL)
1458     return;
1459
1460   if (!gdb_python_initialized)
1461     return;
1462
1463   cleanups = ensure_python_env (get_current_arch (), current_language);
1464   Py_DECREF (printers);
1465   do_cleanups (cleanups);
1466 }
1467
1468 #else /* HAVE_PYTHON */
1469
1470 /* Dummy implementation of the gdb "python-interactive" and "python"
1471    command. */
1472
1473 static void
1474 python_interactive_command (char *arg, int from_tty)
1475 {
1476   arg = skip_spaces (arg);
1477   if (arg && *arg)
1478     error (_("Python scripting is not supported in this copy of GDB."));
1479   else
1480     {
1481       struct command_line *l = get_command_line (python_control, "");
1482       struct cleanup *cleanups = make_cleanup_free_command_lines (&l);
1483
1484       execute_control_command_untraced (l);
1485       do_cleanups (cleanups);
1486     }
1487 }
1488
1489 static void
1490 python_command (char *arg, int from_tty)
1491 {
1492   python_interactive_command (arg, from_tty);
1493 }
1494
1495 #endif /* HAVE_PYTHON */
1496
1497 \f
1498
1499 /* Lists for 'set python' commands.  */
1500
1501 static struct cmd_list_element *user_set_python_list;
1502 static struct cmd_list_element *user_show_python_list;
1503
1504 /* Function for use by 'set python' prefix command.  */
1505
1506 static void
1507 user_set_python (char *args, int from_tty)
1508 {
1509   help_list (user_set_python_list, "set python ", all_commands,
1510              gdb_stdout);
1511 }
1512
1513 /* Function for use by 'show python' prefix command.  */
1514
1515 static void
1516 user_show_python (char *args, int from_tty)
1517 {
1518   cmd_show_list (user_show_python_list, from_tty, "");
1519 }
1520
1521 /* Initialize the Python code.  */
1522
1523 #ifdef HAVE_PYTHON
1524
1525 /* This is installed as a final cleanup and cleans up the
1526    interpreter.  This lets Python's 'atexit' work.  */
1527
1528 static void
1529 finalize_python (void *ignore)
1530 {
1531   struct active_ext_lang_state *previous_active;
1532
1533   /* We don't use ensure_python_env here because if we ever ran the
1534      cleanup, gdb would crash -- because the cleanup calls into the
1535      Python interpreter, which we are about to destroy.  It seems
1536      clearer to make the needed calls explicitly here than to create a
1537      cleanup and then mysteriously discard it.  */
1538
1539   /* This is only called as a final cleanup so we can assume the active
1540      SIGINT handler is gdb's.  We still need to tell it to notify Python.  */
1541   previous_active = set_active_ext_lang (&extension_language_python);
1542
1543   (void) PyGILState_Ensure ();
1544   python_gdbarch = target_gdbarch ();
1545   python_language = current_language;
1546
1547   Py_Finalize ();
1548
1549   restore_active_ext_lang (previous_active);
1550 }
1551 #endif
1552
1553 /* Provide a prototype to silence -Wmissing-prototypes.  */
1554 extern initialize_file_ftype _initialize_python;
1555
1556 void
1557 _initialize_python (void)
1558 {
1559   char *progname;
1560 #ifdef IS_PY3K
1561   int i;
1562   size_t progsize, count;
1563   char *oldloc;
1564   wchar_t *progname_copy;
1565 #endif
1566
1567   add_com ("python-interactive", class_obscure,
1568            python_interactive_command,
1569 #ifdef HAVE_PYTHON
1570            _("\
1571 Start an interactive Python prompt.\n\
1572 \n\
1573 To return to GDB, type the EOF character (e.g., Ctrl-D on an empty\n\
1574 prompt).\n\
1575 \n\
1576 Alternatively, a single-line Python command can be given as an\n\
1577 argument, and if the command is an expression, the result will be\n\
1578 printed.  For example:\n\
1579 \n\
1580     (gdb) python-interactive 2 + 3\n\
1581     5\n\
1582 ")
1583 #else /* HAVE_PYTHON */
1584            _("\
1585 Start a Python interactive prompt.\n\
1586 \n\
1587 Python scripting is not supported in this copy of GDB.\n\
1588 This command is only a placeholder.")
1589 #endif /* HAVE_PYTHON */
1590            );
1591   add_com_alias ("pi", "python-interactive", class_obscure, 1);
1592
1593   add_com ("python", class_obscure, python_command,
1594 #ifdef HAVE_PYTHON
1595            _("\
1596 Evaluate a Python command.\n\
1597 \n\
1598 The command can be given as an argument, for instance:\n\
1599 \n\
1600     python print 23\n\
1601 \n\
1602 If no argument is given, the following lines are read and used\n\
1603 as the Python commands.  Type a line containing \"end\" to indicate\n\
1604 the end of the command.")
1605 #else /* HAVE_PYTHON */
1606            _("\
1607 Evaluate a Python command.\n\
1608 \n\
1609 Python scripting is not supported in this copy of GDB.\n\
1610 This command is only a placeholder.")
1611 #endif /* HAVE_PYTHON */
1612            );
1613   add_com_alias ("py", "python", class_obscure, 1);
1614
1615   /* Add set/show python print-stack.  */
1616   add_prefix_cmd ("python", no_class, user_show_python,
1617                   _("Prefix command for python preference settings."),
1618                   &user_show_python_list, "show python ", 0,
1619                   &showlist);
1620
1621   add_prefix_cmd ("python", no_class, user_set_python,
1622                   _("Prefix command for python preference settings."),
1623                   &user_set_python_list, "set python ", 0,
1624                   &setlist);
1625
1626   add_setshow_enum_cmd ("print-stack", no_class, python_excp_enums,
1627                         &gdbpy_should_print_stack, _("\
1628 Set mode for Python stack dump on error."), _("\
1629 Show the mode of Python stack printing on error."), _("\
1630 none  == no stack or message will be printed.\n\
1631 full == a message and a stack will be printed.\n\
1632 message == an error message without a stack will be printed."),
1633                         NULL, NULL,
1634                         &user_set_python_list,
1635                         &user_show_python_list);
1636
1637 #ifdef HAVE_PYTHON
1638 #ifdef WITH_PYTHON_PATH
1639   /* Work around problem where python gets confused about where it is,
1640      and then can't find its libraries, etc.
1641      NOTE: Python assumes the following layout:
1642      /foo/bin/python
1643      /foo/lib/pythonX.Y/...
1644      This must be done before calling Py_Initialize.  */
1645   progname = concat (ldirname (python_libdir), SLASH_STRING, "bin",
1646                      SLASH_STRING, "python", NULL);
1647 #ifdef IS_PY3K
1648   oldloc = setlocale (LC_ALL, NULL);
1649   setlocale (LC_ALL, "");
1650   progsize = strlen (progname);
1651   if (progsize == (size_t) -1)
1652     {
1653       fprintf (stderr, "Could not convert python path to string\n");
1654       return;
1655     }
1656   progname_copy = PyMem_Malloc ((progsize + 1) * sizeof (wchar_t));
1657   if (!progname_copy)
1658     {
1659       fprintf (stderr, "out of memory\n");
1660       return;
1661     }
1662   count = mbstowcs (progname_copy, progname, progsize + 1);
1663   if (count == (size_t) -1)
1664     {
1665       fprintf (stderr, "Could not convert python path to string\n");
1666       return;
1667     }
1668   setlocale (LC_ALL, oldloc);
1669
1670   /* Note that Py_SetProgramName expects the string it is passed to
1671      remain alive for the duration of the program's execution, so
1672      it is not freed after this call.  */
1673   Py_SetProgramName (progname_copy);
1674 #else
1675   Py_SetProgramName (progname);
1676 #endif
1677 #endif
1678
1679   Py_Initialize ();
1680   PyEval_InitThreads ();
1681
1682 #ifdef IS_PY3K
1683   gdb_module = PyModule_Create (&GdbModuleDef);
1684   /* Add _gdb module to the list of known built-in modules.  */
1685   _PyImport_FixupBuiltin (gdb_module, "_gdb");
1686 #else
1687   gdb_module = Py_InitModule ("_gdb", GdbMethods);
1688 #endif
1689   if (gdb_module == NULL)
1690     goto fail;
1691
1692   /* The casts to (char*) are for python 2.4.  */
1693   if (PyModule_AddStringConstant (gdb_module, "VERSION", (char*) version) < 0
1694       || PyModule_AddStringConstant (gdb_module, "HOST_CONFIG",
1695                                      (char*) host_name) < 0
1696       || PyModule_AddStringConstant (gdb_module, "TARGET_CONFIG",
1697                                      (char*) target_name) < 0)
1698     goto fail;
1699
1700   /* Add stream constants.  */
1701   if (PyModule_AddIntConstant (gdb_module, "STDOUT", 0) < 0
1702       || PyModule_AddIntConstant (gdb_module, "STDERR", 1) < 0
1703       || PyModule_AddIntConstant (gdb_module, "STDLOG", 2) < 0)
1704     goto fail;
1705
1706   gdbpy_gdb_error = PyErr_NewException ("gdb.error", PyExc_RuntimeError, NULL);
1707   if (gdbpy_gdb_error == NULL
1708       || gdb_pymodule_addobject (gdb_module, "error", gdbpy_gdb_error) < 0)
1709     goto fail;
1710
1711   gdbpy_gdb_memory_error = PyErr_NewException ("gdb.MemoryError",
1712                                                gdbpy_gdb_error, NULL);
1713   if (gdbpy_gdb_memory_error == NULL
1714       || gdb_pymodule_addobject (gdb_module, "MemoryError",
1715                                  gdbpy_gdb_memory_error) < 0)
1716     goto fail;
1717
1718   gdbpy_gdberror_exc = PyErr_NewException ("gdb.GdbError", NULL, NULL);
1719   if (gdbpy_gdberror_exc == NULL
1720       || gdb_pymodule_addobject (gdb_module, "GdbError",
1721                                  gdbpy_gdberror_exc) < 0)
1722     goto fail;
1723
1724   gdbpy_initialize_gdb_readline ();
1725
1726   if (gdbpy_initialize_auto_load () < 0
1727       || gdbpy_initialize_values () < 0
1728       || gdbpy_initialize_frames () < 0
1729       || gdbpy_initialize_commands () < 0
1730       || gdbpy_initialize_symbols () < 0
1731       || gdbpy_initialize_symtabs () < 0
1732       || gdbpy_initialize_blocks () < 0
1733       || gdbpy_initialize_functions () < 0
1734       || gdbpy_initialize_parameters () < 0
1735       || gdbpy_initialize_types () < 0
1736       || gdbpy_initialize_pspace () < 0
1737       || gdbpy_initialize_objfile () < 0
1738       || gdbpy_initialize_breakpoints () < 0
1739       || gdbpy_initialize_finishbreakpoints () < 0
1740       || gdbpy_initialize_lazy_string () < 0
1741       || gdbpy_initialize_linetable () < 0
1742       || gdbpy_initialize_thread () < 0
1743       || gdbpy_initialize_inferior () < 0
1744       || gdbpy_initialize_events () < 0
1745       || gdbpy_initialize_eventregistry () < 0
1746       || gdbpy_initialize_py_events () < 0
1747       || gdbpy_initialize_event () < 0
1748       || gdbpy_initialize_stop_event () < 0
1749       || gdbpy_initialize_signal_event () < 0
1750       || gdbpy_initialize_breakpoint_event () < 0
1751       || gdbpy_initialize_continue_event () < 0
1752       || gdbpy_initialize_exited_event () < 0
1753       || gdbpy_initialize_thread_event () < 0
1754       || gdbpy_initialize_new_objfile_event ()  < 0
1755       || gdbpy_initialize_arch () < 0)
1756     goto fail;
1757
1758   gdbpy_to_string_cst = PyString_FromString ("to_string");
1759   if (gdbpy_to_string_cst == NULL)
1760     goto fail;
1761   gdbpy_children_cst = PyString_FromString ("children");
1762   if (gdbpy_children_cst == NULL)
1763     goto fail;
1764   gdbpy_display_hint_cst = PyString_FromString ("display_hint");
1765   if (gdbpy_display_hint_cst == NULL)
1766     goto fail;
1767   gdbpy_doc_cst = PyString_FromString ("__doc__");
1768   if (gdbpy_doc_cst == NULL)
1769     goto fail;
1770   gdbpy_enabled_cst = PyString_FromString ("enabled");
1771   if (gdbpy_enabled_cst == NULL)
1772     goto fail;
1773   gdbpy_value_cst = PyString_FromString ("value");
1774   if (gdbpy_value_cst == NULL)
1775     goto fail;
1776
1777   /* Release the GIL while gdb runs.  */
1778   PyThreadState_Swap (NULL);
1779   PyEval_ReleaseLock ();
1780
1781   make_final_cleanup (finalize_python, NULL);
1782
1783   gdb_python_initialized = 1;
1784   return;
1785
1786  fail:
1787   gdbpy_print_stack ();
1788   /* Do not set 'gdb_python_initialized'.  */
1789   return;
1790
1791 #endif /* HAVE_PYTHON */
1792 }
1793
1794 #ifdef HAVE_PYTHON
1795
1796 /* Perform the remaining python initializations.
1797    These must be done after GDB is at least mostly initialized.
1798    E.g., The "info pretty-printer" command needs the "info" prefix
1799    command installed.
1800    This is the extension_language_ops.finish_initialization "method".  */
1801
1802 static void
1803 gdbpy_finish_initialization (const struct extension_language_defn *extlang)
1804 {
1805   PyObject *m;
1806   char *gdb_pythondir;
1807   PyObject *sys_path;
1808   struct cleanup *cleanup;
1809
1810   cleanup = ensure_python_env (get_current_arch (), current_language);
1811
1812   /* Add the initial data-directory to sys.path.  */
1813
1814   gdb_pythondir = concat (gdb_datadir, SLASH_STRING, "python", NULL);
1815   make_cleanup (xfree, gdb_pythondir);
1816
1817   sys_path = PySys_GetObject ("path");
1818
1819   /* If sys.path is not defined yet, define it first.  */
1820   if (!(sys_path && PyList_Check (sys_path)))
1821     {
1822 #ifdef IS_PY3K
1823       PySys_SetPath (L"");
1824 #else
1825       PySys_SetPath ("");
1826 #endif
1827       sys_path = PySys_GetObject ("path");
1828     }
1829   if (sys_path && PyList_Check (sys_path))
1830     {
1831       PyObject *pythondir;
1832       int err;
1833
1834       pythondir = PyString_FromString (gdb_pythondir);
1835       if (pythondir == NULL)
1836         goto fail;
1837
1838       err = PyList_Insert (sys_path, 0, pythondir);
1839       Py_DECREF (pythondir);
1840       if (err)
1841         goto fail;
1842     }
1843   else
1844     goto fail;
1845
1846   /* Import the gdb module to finish the initialization, and
1847      add it to __main__ for convenience.  */
1848   m = PyImport_AddModule ("__main__");
1849   if (m == NULL)
1850     goto fail;
1851
1852   gdb_python_module = PyImport_ImportModule ("gdb");
1853   if (gdb_python_module == NULL)
1854     {
1855       gdbpy_print_stack ();
1856       /* This is passed in one call to warning so that blank lines aren't
1857          inserted between each line of text.  */
1858       warning (_("\n"
1859                  "Could not load the Python gdb module from `%s'.\n"
1860                  "Limited Python support is available from the _gdb module.\n"
1861                  "Suggest passing --data-directory=/path/to/gdb/data-directory.\n"),
1862                  gdb_pythondir);
1863       do_cleanups (cleanup);
1864       return;
1865     }
1866
1867   if (gdb_pymodule_addobject (m, "gdb", gdb_python_module) < 0)
1868     goto fail;
1869
1870   /* Keep the reference to gdb_python_module since it is in a global
1871      variable.  */
1872
1873   do_cleanups (cleanup);
1874   return;
1875
1876  fail:
1877   gdbpy_print_stack ();
1878   warning (_("internal error: Unhandled Python exception"));
1879   do_cleanups (cleanup);
1880 }
1881
1882 /* Return non-zero if Python has successfully initialized.
1883    This is the extension_languages_ops.initialized "method".  */
1884
1885 static int
1886 gdbpy_initialized (const struct extension_language_defn *extlang)
1887 {
1888   return gdb_python_initialized;
1889 }
1890
1891 #endif /* HAVE_PYTHON */
1892
1893 \f
1894
1895 #ifdef HAVE_PYTHON
1896
1897 static PyMethodDef GdbMethods[] =
1898 {
1899   { "history", gdbpy_history, METH_VARARGS,
1900     "Get a value from history" },
1901   { "execute", (PyCFunction) execute_gdb_command, METH_VARARGS | METH_KEYWORDS,
1902     "execute (command [, from_tty] [, to_string]) -> [String]\n\
1903 Evaluate command, a string, as a gdb CLI command.  Optionally returns\n\
1904 a Python String containing the output of the command if to_string is\n\
1905 set to True." },
1906   { "parameter", gdbpy_parameter, METH_VARARGS,
1907     "Return a gdb parameter's value" },
1908
1909   { "breakpoints", gdbpy_breakpoints, METH_NOARGS,
1910     "Return a tuple of all breakpoint objects" },
1911
1912   { "default_visualizer", gdbpy_default_visualizer, METH_VARARGS,
1913     "Find the default visualizer for a Value." },
1914
1915   { "current_progspace", gdbpy_get_current_progspace, METH_NOARGS,
1916     "Return the current Progspace." },
1917   { "progspaces", gdbpy_progspaces, METH_NOARGS,
1918     "Return a sequence of all progspaces." },
1919
1920   { "current_objfile", gdbpy_get_current_objfile, METH_NOARGS,
1921     "Return the current Objfile being loaded, or None." },
1922   { "objfiles", gdbpy_objfiles, METH_NOARGS,
1923     "Return a sequence of all loaded objfiles." },
1924
1925   { "newest_frame", gdbpy_newest_frame, METH_NOARGS,
1926     "newest_frame () -> gdb.Frame.\n\
1927 Return the newest frame object." },
1928   { "selected_frame", gdbpy_selected_frame, METH_NOARGS,
1929     "selected_frame () -> gdb.Frame.\n\
1930 Return the selected frame object." },
1931   { "frame_stop_reason_string", gdbpy_frame_stop_reason_string, METH_VARARGS,
1932     "stop_reason_string (Integer) -> String.\n\
1933 Return a string explaining unwind stop reason." },
1934
1935   { "lookup_type", (PyCFunction) gdbpy_lookup_type,
1936     METH_VARARGS | METH_KEYWORDS,
1937     "lookup_type (name [, block]) -> type\n\
1938 Return a Type corresponding to the given name." },
1939   { "lookup_symbol", (PyCFunction) gdbpy_lookup_symbol,
1940     METH_VARARGS | METH_KEYWORDS,
1941     "lookup_symbol (name [, block] [, domain]) -> (symbol, is_field_of_this)\n\
1942 Return a tuple with the symbol corresponding to the given name (or None) and\n\
1943 a boolean indicating if name is a field of the current implied argument\n\
1944 `this' (when the current language is object-oriented)." },
1945   { "lookup_global_symbol", (PyCFunction) gdbpy_lookup_global_symbol,
1946     METH_VARARGS | METH_KEYWORDS,
1947     "lookup_global_symbol (name [, domain]) -> symbol\n\
1948 Return the symbol corresponding to the given name (or None)." },
1949   { "block_for_pc", gdbpy_block_for_pc, METH_VARARGS,
1950     "Return the block containing the given pc value, or None." },
1951   { "solib_name", gdbpy_solib_name, METH_VARARGS,
1952     "solib_name (Long) -> String.\n\
1953 Return the name of the shared library holding a given address, or None." },
1954   { "decode_line", gdbpy_decode_line, METH_VARARGS,
1955     "decode_line (String) -> Tuple.  Decode a string argument the way\n\
1956 that 'break' or 'edit' does.  Return a tuple containing two elements.\n\
1957 The first element contains any unparsed portion of the String parameter\n\
1958 (or None if the string was fully parsed).  The second element contains\n\
1959 a tuple that contains all the locations that match, represented as\n\
1960 gdb.Symtab_and_line objects (or None)."},
1961   { "parse_and_eval", gdbpy_parse_and_eval, METH_VARARGS,
1962     "parse_and_eval (String) -> Value.\n\
1963 Parse String as an expression, evaluate it, and return the result as a Value."
1964   },
1965   { "find_pc_line", gdbpy_find_pc_line, METH_VARARGS,
1966     "find_pc_line (pc) -> Symtab_and_line.\n\
1967 Return the gdb.Symtab_and_line object corresponding to the pc value." },
1968
1969   { "post_event", gdbpy_post_event, METH_VARARGS,
1970     "Post an event into gdb's event loop." },
1971
1972   { "target_charset", gdbpy_target_charset, METH_NOARGS,
1973     "target_charset () -> string.\n\
1974 Return the name of the current target charset." },
1975   { "target_wide_charset", gdbpy_target_wide_charset, METH_NOARGS,
1976     "target_wide_charset () -> string.\n\
1977 Return the name of the current target wide charset." },
1978
1979   { "string_to_argv", gdbpy_string_to_argv, METH_VARARGS,
1980     "string_to_argv (String) -> Array.\n\
1981 Parse String and return an argv-like array.\n\
1982 Arguments are separate by spaces and may be quoted."
1983   },
1984   { "write", (PyCFunction)gdbpy_write, METH_VARARGS | METH_KEYWORDS,
1985     "Write a string using gdb's filtered stream." },
1986   { "flush", (PyCFunction)gdbpy_flush, METH_VARARGS | METH_KEYWORDS,
1987     "Flush gdb's filtered stdout stream." },
1988   { "selected_thread", gdbpy_selected_thread, METH_NOARGS,
1989     "selected_thread () -> gdb.InferiorThread.\n\
1990 Return the selected thread object." },
1991   { "selected_inferior", gdbpy_selected_inferior, METH_NOARGS,
1992     "selected_inferior () -> gdb.Inferior.\n\
1993 Return the selected inferior object." },
1994   { "inferiors", gdbpy_inferiors, METH_NOARGS,
1995     "inferiors () -> (gdb.Inferior, ...).\n\
1996 Return a tuple containing all inferiors." },
1997   {NULL, NULL, 0, NULL}
1998 };
1999
2000 #ifdef IS_PY3K
2001 static struct PyModuleDef GdbModuleDef =
2002 {
2003   PyModuleDef_HEAD_INIT,
2004   "_gdb",
2005   NULL,
2006   -1,
2007   GdbMethods,
2008   NULL,
2009   NULL,
2010   NULL,
2011   NULL
2012 };
2013 #endif
2014 #endif /* HAVE_PYTHON */