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