Remove some ui_out-related cleanups from Python
[deliverable/binutils-gdb.git] / gdb / python / py-inferior.c
CommitLineData
595939de
PM
1/* Python interface to inferiors.
2
61baf725 3 Copyright (C) 2009-2017 Free Software Foundation, Inc.
595939de
PM
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"
595939de
PM
21#include "gdbcore.h"
22#include "gdbthread.h"
23#include "inferior.h"
20c168b5 24#include "objfiles.h"
595939de
PM
25#include "observer.h"
26#include "python-internal.h"
27#include "arch-utils.h"
28#include "language.h"
505500db
SW
29#include "gdb_signals.h"
30#include "py-event.h"
31#include "py-stopevent.h"
595939de
PM
32
33struct threadlist_entry {
34 thread_object *thread_obj;
35 struct threadlist_entry *next;
36};
37
38typedef struct
39{
40 PyObject_HEAD
41
42 /* The inferior we represent. */
43 struct inferior *inferior;
44
45 /* thread_object instances under this inferior. This list owns a
46 reference to each object it contains. */
47 struct threadlist_entry *threads;
48
49 /* Number of threads in the list. */
50 int nthreads;
51} inferior_object;
52
e36122e9 53extern PyTypeObject inferior_object_type
62eec1a5 54 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("inferior_object");
595939de
PM
55
56static const struct inferior_data *infpy_inf_data_key;
57
58typedef struct {
59 PyObject_HEAD
60 void *buffer;
61
62 /* These are kept just for mbpy_str. */
63 CORE_ADDR addr;
64 CORE_ADDR length;
65} membuf_object;
66
e36122e9 67extern PyTypeObject membuf_object_type
62eec1a5 68 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("membuf_object");
595939de
PM
69
70/* Require that INFERIOR be a valid inferior ID. */
71#define INFPY_REQUIRE_VALID(Inferior) \
72 do { \
73 if (!Inferior->inferior) \
74 { \
75 PyErr_SetString (PyExc_RuntimeError, \
76 _("Inferior no longer exists.")); \
77 return NULL; \
78 } \
79 } while (0)
80
505500db
SW
81static void
82python_on_normal_stop (struct bpstats *bs, int print_frame)
83{
2ea28649 84 enum gdb_signal stop_signal;
505500db 85
0646da15
TT
86 if (!gdb_python_initialized)
87 return;
88
505500db
SW
89 if (!find_thread_ptid (inferior_ptid))
90 return;
91
92 stop_signal = inferior_thread ()->suspend.stop_signal;
93
07bc7329 94 gdbpy_enter enter_py (get_current_arch (), current_language);
505500db
SW
95
96 if (emit_stop_event (bs, stop_signal) < 0)
97 gdbpy_print_stack ();
505500db
SW
98}
99
100static void
101python_on_resume (ptid_t ptid)
102{
0646da15
TT
103 if (!gdb_python_initialized)
104 return;
105
07bc7329 106 gdbpy_enter enter_py (target_gdbarch (), current_language);
505500db
SW
107
108 if (emit_continue_event (ptid) < 0)
109 gdbpy_print_stack ();
505500db
SW
110}
111
162078c8
NB
112/* Callback, registered as an observer, that notifies Python listeners
113 when an inferior function call is about to be made. */
114
115static void
116python_on_inferior_call_pre (ptid_t thread, CORE_ADDR address)
117{
07bc7329 118 gdbpy_enter enter_py (target_gdbarch (), current_language);
162078c8
NB
119
120 if (emit_inferior_call_event (INFERIOR_CALL_PRE, thread, address) < 0)
121 gdbpy_print_stack ();
162078c8
NB
122}
123
124/* Callback, registered as an observer, that notifies Python listeners
125 when an inferior function call has completed. */
126
127static void
128python_on_inferior_call_post (ptid_t thread, CORE_ADDR address)
129{
07bc7329 130 gdbpy_enter enter_py (target_gdbarch (), current_language);
162078c8
NB
131
132 if (emit_inferior_call_event (INFERIOR_CALL_POST, thread, address) < 0)
133 gdbpy_print_stack ();
162078c8
NB
134}
135
136/* Callback, registered as an observer, that notifies Python listeners
137 when a part of memory has been modified by user action (eg via a
138 'set' command). */
139
140static void
141python_on_memory_change (struct inferior *inferior, CORE_ADDR addr, ssize_t len, const bfd_byte *data)
142{
07bc7329 143 gdbpy_enter enter_py (target_gdbarch (), current_language);
162078c8
NB
144
145 if (emit_memory_changed_event (addr, len) < 0)
146 gdbpy_print_stack ();
162078c8
NB
147}
148
149/* Callback, registered as an observer, that notifies Python listeners
150 when a register has been modified by user action (eg via a 'set'
151 command). */
152
153static void
154python_on_register_change (struct frame_info *frame, int regnum)
155{
07bc7329 156 gdbpy_enter enter_py (target_gdbarch (), current_language);
162078c8
NB
157
158 if (emit_register_changed_event (frame, regnum) < 0)
159 gdbpy_print_stack ();
162078c8
NB
160}
161
505500db
SW
162static void
163python_inferior_exit (struct inferior *inf)
164{
8cf64490 165 const LONGEST *exit_code = NULL;
505500db 166
0646da15
TT
167 if (!gdb_python_initialized)
168 return;
169
07bc7329 170 gdbpy_enter enter_py (target_gdbarch (), current_language);
505500db 171
8cf64490
TT
172 if (inf->has_exit_code)
173 exit_code = &inf->exit_code;
505500db 174
cb6be26b 175 if (emit_exited_event (exit_code, inf) < 0)
505500db 176 gdbpy_print_stack ();
505500db
SW
177}
178
20c168b5 179/* Callback used to notify Python listeners about new objfiles loaded in the
4ffbba72
DE
180 inferior. OBJFILE may be NULL which means that the objfile list has been
181 cleared (emptied). */
20c168b5
KP
182
183static void
184python_new_objfile (struct objfile *objfile)
185{
0646da15
TT
186 if (!gdb_python_initialized)
187 return;
188
07bc7329
TT
189 gdbpy_enter enter_py (objfile != NULL
190 ? get_objfile_arch (objfile)
191 : target_gdbarch (),
192 current_language);
20c168b5 193
4ffbba72
DE
194 if (objfile == NULL)
195 {
196 if (emit_clear_objfiles_event () < 0)
197 gdbpy_print_stack ();
198 }
199 else
200 {
201 if (emit_new_objfile_event (objfile) < 0)
202 gdbpy_print_stack ();
203 }
20c168b5
KP
204}
205
754eadd1 206/* Return a reference to the Python object of type Inferior
595939de 207 representing INFERIOR. If the object has already been created,
754eadd1
PM
208 return it and increment the reference count, otherwise, create it.
209 Return NULL on failure. */
595939de
PM
210PyObject *
211inferior_to_inferior_object (struct inferior *inferior)
212{
213 inferior_object *inf_obj;
214
19ba03f4 215 inf_obj = (inferior_object *) inferior_data (inferior, infpy_inf_data_key);
595939de
PM
216 if (!inf_obj)
217 {
595939de
PM
218 inf_obj = PyObject_New (inferior_object, &inferior_object_type);
219 if (!inf_obj)
595939de 220 return NULL;
595939de
PM
221
222 inf_obj->inferior = inferior;
223 inf_obj->threads = NULL;
224 inf_obj->nthreads = 0;
225
226 set_inferior_data (inferior, infpy_inf_data_key, inf_obj);
227
595939de 228 }
754eadd1
PM
229 else
230 Py_INCREF ((PyObject *)inf_obj);
595939de
PM
231
232 return (PyObject *) inf_obj;
233}
234
235/* Finds the Python Inferior object for the given PID. Returns a
754eadd1 236 reference, or NULL if PID does not match any inferior object. */
505500db 237
595939de
PM
238PyObject *
239find_inferior_object (int pid)
240{
595939de
PM
241 struct inferior *inf = find_inferior_pid (pid);
242
243 if (inf)
244 return inferior_to_inferior_object (inf);
245
246 return NULL;
247}
248
249thread_object *
250find_thread_object (ptid_t ptid)
251{
252 int pid;
253 struct threadlist_entry *thread;
595939de 254
dfd4cc63 255 pid = ptid_get_pid (ptid);
ea976c60
PM
256 if (pid == 0)
257 return NULL;
258
9205649a
TT
259 gdbpy_ref inf_obj (find_inferior_object (pid));
260 if (inf_obj == NULL)
754eadd1
PM
261 return NULL;
262
9205649a 263 for (thread = ((inferior_object *)(inf_obj.get ()))->threads; thread;
754eadd1
PM
264 thread = thread->next)
265 if (ptid_equal (thread->thread_obj->thread->ptid, ptid))
60685cd0 266 return thread->thread_obj;
595939de
PM
267
268 return NULL;
269}
270
271static void
272add_thread_object (struct thread_info *tp)
273{
595939de
PM
274 thread_object *thread_obj;
275 inferior_object *inf_obj;
276 struct threadlist_entry *entry;
277
0646da15
TT
278 if (!gdb_python_initialized)
279 return;
280
07bc7329 281 gdbpy_enter enter_py (python_gdbarch, python_language);
595939de
PM
282
283 thread_obj = create_thread_object (tp);
284 if (!thread_obj)
285 {
286 gdbpy_print_stack ();
595939de
PM
287 return;
288 }
289
290 inf_obj = (inferior_object *) thread_obj->inf_obj;
291
8d749320 292 entry = XNEW (struct threadlist_entry);
595939de
PM
293 entry->thread_obj = thread_obj;
294 entry->next = inf_obj->threads;
295
296 inf_obj->threads = entry;
297 inf_obj->nthreads++;
595939de
PM
298}
299
300static void
301delete_thread_object (struct thread_info *tp, int ignore)
302{
595939de 303 inferior_object *inf_obj;
595939de 304 struct threadlist_entry **entry, *tmp;
256458bc 305
0646da15
TT
306 if (!gdb_python_initialized)
307 return;
308
07bc7329 309 gdbpy_enter enter_py (python_gdbarch, python_language);
595939de 310
dfd4cc63
LM
311 inf_obj
312 = (inferior_object *) find_inferior_object (ptid_get_pid (tp->ptid));
595939de 313 if (!inf_obj)
07bc7329 314 return;
595939de
PM
315
316 /* Find thread entry in its inferior's thread_list. */
317 for (entry = &inf_obj->threads; *entry != NULL; entry =
318 &(*entry)->next)
319 if ((*entry)->thread_obj->thread == tp)
320 break;
321
322 if (!*entry)
754eadd1
PM
323 {
324 Py_DECREF (inf_obj);
325 return;
326 }
595939de 327
595939de
PM
328 tmp = *entry;
329 tmp->thread_obj->thread = NULL;
330
331 *entry = (*entry)->next;
332 inf_obj->nthreads--;
333
334 Py_DECREF (tmp->thread_obj);
754eadd1 335 Py_DECREF (inf_obj);
595939de 336 xfree (tmp);
595939de
PM
337}
338
339static PyObject *
340infpy_threads (PyObject *self, PyObject *args)
341{
342 int i;
343 struct threadlist_entry *entry;
344 inferior_object *inf_obj = (inferior_object *) self;
345 PyObject *tuple;
346
347 INFPY_REQUIRE_VALID (inf_obj);
348
492d29ea
PA
349 TRY
350 {
351 update_thread_list ();
352 }
353 CATCH (except, RETURN_MASK_ALL)
354 {
355 GDB_PY_HANDLE_EXCEPTION (except);
356 }
357 END_CATCH
f66713d2 358
595939de
PM
359 tuple = PyTuple_New (inf_obj->nthreads);
360 if (!tuple)
361 return NULL;
362
363 for (i = 0, entry = inf_obj->threads; i < inf_obj->nthreads;
364 i++, entry = entry->next)
365 {
366 Py_INCREF (entry->thread_obj);
367 PyTuple_SET_ITEM (tuple, i, (PyObject *) entry->thread_obj);
368 }
369
370 return tuple;
371}
372
373static PyObject *
374infpy_get_num (PyObject *self, void *closure)
375{
376 inferior_object *inf = (inferior_object *) self;
377
378 INFPY_REQUIRE_VALID (inf);
379
380 return PyLong_FromLong (inf->inferior->num);
381}
382
383static PyObject *
384infpy_get_pid (PyObject *self, void *closure)
385{
386 inferior_object *inf = (inferior_object *) self;
387
388 INFPY_REQUIRE_VALID (inf);
389
390 return PyLong_FromLong (inf->inferior->pid);
391}
392
393static PyObject *
394infpy_get_was_attached (PyObject *self, void *closure)
395{
396 inferior_object *inf = (inferior_object *) self;
397
398 INFPY_REQUIRE_VALID (inf);
399 if (inf->inferior->attach_flag)
400 Py_RETURN_TRUE;
401 Py_RETURN_FALSE;
402}
403
404static int
405build_inferior_list (struct inferior *inf, void *arg)
406{
19ba03f4 407 PyObject *list = (PyObject *) arg;
9205649a 408 gdbpy_ref inferior (inferior_to_inferior_object (inf));
754eadd1 409
9205649a 410 if (inferior == NULL)
754eadd1
PM
411 return 0;
412
9205649a 413 return PyList_Append (list, inferior.get ()) ? 1 : 0;
595939de
PM
414}
415
416/* Implementation of gdb.inferiors () -> (gdb.Inferior, ...).
417 Returns a tuple of all inferiors. */
418PyObject *
419gdbpy_inferiors (PyObject *unused, PyObject *unused2)
420{
f59fe7f8
TT
421 gdbpy_ref list (PyList_New (0));
422 if (list == NULL)
595939de
PM
423 return NULL;
424
f59fe7f8
TT
425 if (iterate_over_inferiors (build_inferior_list, list.get ()))
426 return NULL;
27ca1a5b 427
f59fe7f8 428 return PyList_AsTuple (list.get ());
595939de
PM
429}
430
431/* Membuf and memory manipulation. */
432
2678e2af 433/* Implementation of Inferior.read_memory (address, length).
595939de 434 Returns a Python buffer object with LENGTH bytes of the inferior's
8dc78533
JK
435 memory at ADDRESS. Both arguments are integers. Returns NULL on error,
436 with a python exception set. */
595939de
PM
437static PyObject *
438infpy_read_memory (PyObject *self, PyObject *args, PyObject *kw)
439{
595939de 440 CORE_ADDR addr, length;
7c543f7b 441 gdb_byte *buffer = NULL;
595939de 442 membuf_object *membuf_obj;
cc0265cd 443 PyObject *addr_obj, *length_obj, *result;
595939de
PM
444 static char *keywords[] = { "address", "length", NULL };
445
446 if (! PyArg_ParseTupleAndKeywords (args, kw, "OO", keywords,
447 &addr_obj, &length_obj))
448 return NULL;
449
b86af38a
TT
450 if (get_addr_from_python (addr_obj, &addr) < 0
451 || get_addr_from_python (length_obj, &length) < 0)
452 return NULL;
453
492d29ea 454 TRY
595939de 455 {
7c543f7b 456 buffer = (gdb_byte *) xmalloc (length);
595939de
PM
457
458 read_memory (addr, buffer, length);
459 }
492d29ea 460 CATCH (except, RETURN_MASK_ALL)
595939de 461 {
cc0265cd 462 xfree (buffer);
595939de
PM
463 GDB_PY_HANDLE_EXCEPTION (except);
464 }
492d29ea 465 END_CATCH
595939de 466
595939de
PM
467 membuf_obj = PyObject_New (membuf_object, &membuf_object_type);
468 if (membuf_obj == NULL)
469 {
cc0265cd 470 xfree (buffer);
595939de
PM
471 return NULL;
472 }
473
595939de
PM
474 membuf_obj->buffer = buffer;
475 membuf_obj->addr = addr;
476 membuf_obj->length = length;
477
9a27f2c6
PK
478#ifdef IS_PY3K
479 result = PyMemoryView_FromObject ((PyObject *) membuf_obj);
480#else
cc0265cd
TT
481 result = PyBuffer_FromReadWriteObject ((PyObject *) membuf_obj, 0,
482 Py_END_OF_BUFFER);
9a27f2c6 483#endif
cc0265cd 484 Py_DECREF (membuf_obj);
9a27f2c6 485
cc0265cd 486 return result;
595939de
PM
487}
488
2678e2af 489/* Implementation of Inferior.write_memory (address, buffer [, length]).
595939de
PM
490 Writes the contents of BUFFER (a Python object supporting the read
491 buffer protocol) at ADDRESS in the inferior's memory. Write LENGTH
492 bytes from BUFFER, or its entire contents if the argument is not
8dc78533
JK
493 provided. The function returns nothing. Returns NULL on error, with
494 a python exception set. */
595939de
PM
495static PyObject *
496infpy_write_memory (PyObject *self, PyObject *args, PyObject *kw)
497{
492d29ea 498 struct gdb_exception except = exception_none;
ddd49eee 499 Py_ssize_t buf_len;
7c543f7b 500 const gdb_byte *buffer;
595939de
PM
501 CORE_ADDR addr, length;
502 PyObject *addr_obj, *length_obj = NULL;
595939de 503 static char *keywords[] = { "address", "buffer", "length", NULL };
9a27f2c6
PK
504#ifdef IS_PY3K
505 Py_buffer pybuf;
595939de 506
9a27f2c6
PK
507 if (! PyArg_ParseTupleAndKeywords (args, kw, "Os*|O", keywords,
508 &addr_obj, &pybuf,
509 &length_obj))
510 return NULL;
595939de 511
7c543f7b 512 buffer = (const gdb_byte *) pybuf.buf;
9a27f2c6
PK
513 buf_len = pybuf.len;
514#else
595939de
PM
515 if (! PyArg_ParseTupleAndKeywords (args, kw, "Os#|O", keywords,
516 &addr_obj, &buffer, &buf_len,
517 &length_obj))
518 return NULL;
7c543f7b
SM
519
520 buffer = (const gdb_byte *) buffer;
9a27f2c6 521#endif
595939de 522
b86af38a
TT
523 if (get_addr_from_python (addr_obj, &addr) < 0)
524 goto fail;
525
526 if (!length_obj)
527 length = buf_len;
528 else if (get_addr_from_python (length_obj, &length) < 0)
529 goto fail;
530
492d29ea 531 TRY
595939de 532 {
7c543f7b 533 write_memory_with_notification (addr, buffer, length);
595939de 534 }
492d29ea
PA
535 CATCH (ex, RETURN_MASK_ALL)
536 {
537 except = ex;
538 }
539 END_CATCH
540
9a27f2c6
PK
541#ifdef IS_PY3K
542 PyBuffer_Release (&pybuf);
543#endif
595939de
PM
544 GDB_PY_HANDLE_EXCEPTION (except);
545
595939de 546 Py_RETURN_NONE;
b86af38a
TT
547
548 fail:
549#ifdef IS_PY3K
550 PyBuffer_Release (&pybuf);
551#endif
552 return NULL;
595939de
PM
553}
554
555/* Destructor of Membuf objects. */
556static void
557mbpy_dealloc (PyObject *self)
558{
559 xfree (((membuf_object *) self)->buffer);
9a27f2c6 560 Py_TYPE (self)->tp_free (self);
595939de
PM
561}
562
563/* Return a description of the Membuf object. */
564static PyObject *
565mbpy_str (PyObject *self)
566{
567 membuf_object *membuf_obj = (membuf_object *) self;
568
569 return PyString_FromFormat (_("Memory buffer for address %s, \
570which is %s bytes long."),
571 paddress (python_gdbarch, membuf_obj->addr),
572 pulongest (membuf_obj->length));
573}
574
9a27f2c6
PK
575#ifdef IS_PY3K
576
577static int
578get_buffer (PyObject *self, Py_buffer *buf, int flags)
579{
580 membuf_object *membuf_obj = (membuf_object *) self;
581 int ret;
256458bc 582
9a27f2c6 583 ret = PyBuffer_FillInfo (buf, self, membuf_obj->buffer,
256458bc 584 membuf_obj->length, 0,
9a27f2c6
PK
585 PyBUF_CONTIG);
586 buf->format = "c";
587
588 return ret;
589}
590
591#else
592
595939de
PM
593static Py_ssize_t
594get_read_buffer (PyObject *self, Py_ssize_t segment, void **ptrptr)
595{
596 membuf_object *membuf_obj = (membuf_object *) self;
597
598 if (segment)
599 {
600 PyErr_SetString (PyExc_SystemError,
601 _("The memory buffer supports only one segment."));
602 return -1;
603 }
604
605 *ptrptr = membuf_obj->buffer;
606
607 return membuf_obj->length;
608}
609
610static Py_ssize_t
611get_write_buffer (PyObject *self, Py_ssize_t segment, void **ptrptr)
612{
613 return get_read_buffer (self, segment, ptrptr);
614}
615
616static Py_ssize_t
617get_seg_count (PyObject *self, Py_ssize_t *lenp)
618{
619 if (lenp)
620 *lenp = ((membuf_object *) self)->length;
621
622 return 1;
623}
624
625static Py_ssize_t
626get_char_buffer (PyObject *self, Py_ssize_t segment, char **ptrptr)
627{
628 void *ptr = NULL;
629 Py_ssize_t ret;
630
631 ret = get_read_buffer (self, segment, &ptr);
632 *ptrptr = (char *) ptr;
633
634 return ret;
635}
636
9a27f2c6
PK
637#endif /* IS_PY3K */
638
595939de
PM
639/* Implementation of
640 gdb.search_memory (address, length, pattern). ADDRESS is the
641 address to start the search. LENGTH specifies the scope of the
642 search from ADDRESS. PATTERN is the pattern to search for (and
643 must be a Python object supporting the buffer protocol).
644 Returns a Python Long object holding the address where the pattern
8dc78533
JK
645 was located, or if the pattern was not found, returns None. Returns NULL
646 on error, with a python exception set. */
595939de
PM
647static PyObject *
648infpy_search_memory (PyObject *self, PyObject *args, PyObject *kw)
649{
492d29ea 650 struct gdb_exception except = exception_none;
595939de
PM
651 CORE_ADDR start_addr, length;
652 static char *keywords[] = { "address", "length", "pattern", NULL };
9a27f2c6 653 PyObject *start_addr_obj, *length_obj;
595939de 654 Py_ssize_t pattern_size;
7c543f7b 655 const gdb_byte *buffer;
595939de
PM
656 CORE_ADDR found_addr;
657 int found = 0;
9a27f2c6
PK
658#ifdef IS_PY3K
659 Py_buffer pybuf;
595939de 660
9a27f2c6 661 if (! PyArg_ParseTupleAndKeywords (args, kw, "OOs*", keywords,
595939de 662 &start_addr_obj, &length_obj,
9a27f2c6
PK
663 &pybuf))
664 return NULL;
665
7c543f7b 666 buffer = (const gdb_byte *) pybuf.buf;
9a27f2c6
PK
667 pattern_size = pybuf.len;
668#else
669 PyObject *pattern;
7c543f7b 670 const void *vbuffer;
256458bc 671
9a27f2c6
PK
672 if (! PyArg_ParseTupleAndKeywords (args, kw, "OOO", keywords,
673 &start_addr_obj, &length_obj,
595939de 674 &pattern))
9a27f2c6
PK
675 return NULL;
676
677 if (!PyObject_CheckReadBuffer (pattern))
678 {
679 PyErr_SetString (PyExc_RuntimeError,
680 _("The pattern is not a Python buffer."));
681
682 return NULL;
683 }
684
7c543f7b 685 if (PyObject_AsReadBuffer (pattern, &vbuffer, &pattern_size) == -1)
595939de 686 return NULL;
7c543f7b
SM
687
688 buffer = (const gdb_byte *) vbuffer;
9a27f2c6 689#endif
595939de 690
b86af38a
TT
691 if (get_addr_from_python (start_addr_obj, &start_addr) < 0)
692 goto fail;
256458bc 693
b86af38a
TT
694 if (get_addr_from_python (length_obj, &length) < 0)
695 goto fail;
9a27f2c6 696
b86af38a
TT
697 if (!length)
698 {
699 PyErr_SetString (PyExc_ValueError,
700 _("Search range is empty."));
701 goto fail;
702 }
703 /* Watch for overflows. */
704 else if (length > CORE_ADDR_MAX
705 || (start_addr + length - 1) < start_addr)
706 {
707 PyErr_SetString (PyExc_ValueError,
708 _("The search range is too large."));
709 goto fail;
595939de 710 }
595939de 711
492d29ea 712 TRY
595939de
PM
713 {
714 found = target_search_memory (start_addr, length,
715 buffer, pattern_size,
716 &found_addr);
717 }
492d29ea
PA
718 CATCH (ex, RETURN_MASK_ALL)
719 {
720 except = ex;
721 }
722 END_CATCH
723
9a27f2c6
PK
724#ifdef IS_PY3K
725 PyBuffer_Release (&pybuf);
726#endif
b86af38a 727 GDB_PY_HANDLE_EXCEPTION (except);
9a27f2c6 728
595939de
PM
729 if (found)
730 return PyLong_FromLong (found_addr);
731 else
732 Py_RETURN_NONE;
b86af38a
TT
733
734 fail:
735#ifdef IS_PY3K
736 PyBuffer_Release (&pybuf);
737#endif
738 return NULL;
595939de
PM
739}
740
29703da4
PM
741/* Implementation of gdb.Inferior.is_valid (self) -> Boolean.
742 Returns True if this inferior object still exists in GDB. */
743
744static PyObject *
745infpy_is_valid (PyObject *self, PyObject *args)
746{
747 inferior_object *inf = (inferior_object *) self;
748
749 if (! inf->inferior)
750 Py_RETURN_FALSE;
751
752 Py_RETURN_TRUE;
753}
754
754eadd1
PM
755static void
756infpy_dealloc (PyObject *obj)
757{
758 inferior_object *inf_obj = (inferior_object *) obj;
759 struct inferior *inf = inf_obj->inferior;
760
761 if (! inf)
762 return;
763
764 set_inferior_data (inf, infpy_inf_data_key, NULL);
765}
595939de
PM
766
767/* Clear the INFERIOR pointer in an Inferior object and clear the
768 thread list. */
769static void
770py_free_inferior (struct inferior *inf, void *datum)
771{
19ba03f4 772 inferior_object *inf_obj = (inferior_object *) datum;
595939de
PM
773 struct threadlist_entry *th_entry, *th_tmp;
774
0646da15
TT
775 if (!gdb_python_initialized)
776 return;
777
07bc7329 778 gdbpy_enter enter_py (python_gdbarch, python_language);
595939de
PM
779
780 inf_obj->inferior = NULL;
781
782 /* Deallocate threads list. */
783 for (th_entry = inf_obj->threads; th_entry != NULL;)
784 {
785 Py_DECREF (th_entry->thread_obj);
786
787 th_tmp = th_entry;
788 th_entry = th_entry->next;
789 xfree (th_tmp);
790 }
791
792 inf_obj->nthreads = 0;
793
794 Py_DECREF ((PyObject *) inf_obj);
595939de
PM
795}
796
2aa48337
KP
797/* Implementation of gdb.selected_inferior() -> gdb.Inferior.
798 Returns the current inferior object. */
799
800PyObject *
801gdbpy_selected_inferior (PyObject *self, PyObject *args)
802{
2d57700b 803 return inferior_to_inferior_object (current_inferior ());
2aa48337
KP
804}
805
999633ed 806int
595939de
PM
807gdbpy_initialize_inferior (void)
808{
809 if (PyType_Ready (&inferior_object_type) < 0)
999633ed 810 return -1;
595939de 811
aa36459a
TT
812 if (gdb_pymodule_addobject (gdb_module, "Inferior",
813 (PyObject *) &inferior_object_type) < 0)
999633ed 814 return -1;
595939de
PM
815
816 infpy_inf_data_key =
8e260fc0 817 register_inferior_data_with_cleanup (NULL, py_free_inferior);
595939de
PM
818
819 observer_attach_new_thread (add_thread_object);
820 observer_attach_thread_exit (delete_thread_object);
505500db
SW
821 observer_attach_normal_stop (python_on_normal_stop);
822 observer_attach_target_resumed (python_on_resume);
162078c8
NB
823 observer_attach_inferior_call_pre (python_on_inferior_call_pre);
824 observer_attach_inferior_call_post (python_on_inferior_call_post);
825 observer_attach_memory_changed (python_on_memory_change);
826 observer_attach_register_changed (python_on_register_change);
505500db 827 observer_attach_inferior_exit (python_inferior_exit);
20c168b5 828 observer_attach_new_objfile (python_new_objfile);
595939de 829
6a1b1664 830 membuf_object_type.tp_new = PyType_GenericNew;
595939de 831 if (PyType_Ready (&membuf_object_type) < 0)
999633ed 832 return -1;
595939de 833
aa36459a
TT
834 return gdb_pymodule_addobject (gdb_module, "Membuf", (PyObject *)
835 &membuf_object_type);
595939de
PM
836}
837
838static PyGetSetDef inferior_object_getset[] =
839{
840 { "num", infpy_get_num, NULL, "ID of inferior, as assigned by GDB.", NULL },
841 { "pid", infpy_get_pid, NULL, "PID of inferior, as assigned by the OS.",
842 NULL },
843 { "was_attached", infpy_get_was_attached, NULL,
844 "True if the inferior was created using 'attach'.", NULL },
845 { NULL }
846};
847
848static PyMethodDef inferior_object_methods[] =
849{
29703da4
PM
850 { "is_valid", infpy_is_valid, METH_NOARGS,
851 "is_valid () -> Boolean.\n\
852Return true if this inferior is valid, false if not." },
595939de
PM
853 { "threads", infpy_threads, METH_NOARGS,
854 "Return all the threads of this inferior." },
855 { "read_memory", (PyCFunction) infpy_read_memory,
856 METH_VARARGS | METH_KEYWORDS,
857 "read_memory (address, length) -> buffer\n\
858Return a buffer object for reading from the inferior's memory." },
859 { "write_memory", (PyCFunction) infpy_write_memory,
860 METH_VARARGS | METH_KEYWORDS,
861 "write_memory (address, buffer [, length])\n\
862Write the given buffer object to the inferior's memory." },
863 { "search_memory", (PyCFunction) infpy_search_memory,
864 METH_VARARGS | METH_KEYWORDS,
865 "search_memory (address, length, pattern) -> long\n\
866Return a long with the address of a match, or None." },
867 { NULL }
868};
869
e36122e9 870PyTypeObject inferior_object_type =
595939de 871{
9a27f2c6 872 PyVarObject_HEAD_INIT (NULL, 0)
595939de
PM
873 "gdb.Inferior", /* tp_name */
874 sizeof (inferior_object), /* tp_basicsize */
875 0, /* tp_itemsize */
754eadd1 876 infpy_dealloc, /* tp_dealloc */
595939de
PM
877 0, /* tp_print */
878 0, /* tp_getattr */
879 0, /* tp_setattr */
880 0, /* tp_compare */
881 0, /* tp_repr */
882 0, /* tp_as_number */
883 0, /* tp_as_sequence */
884 0, /* tp_as_mapping */
885 0, /* tp_hash */
886 0, /* tp_call */
887 0, /* tp_str */
888 0, /* tp_getattro */
889 0, /* tp_setattro */
890 0, /* tp_as_buffer */
891 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_ITER, /* tp_flags */
892 "GDB inferior object", /* tp_doc */
893 0, /* tp_traverse */
894 0, /* tp_clear */
895 0, /* tp_richcompare */
896 0, /* tp_weaklistoffset */
897 0, /* tp_iter */
898 0, /* tp_iternext */
899 inferior_object_methods, /* tp_methods */
900 0, /* tp_members */
901 inferior_object_getset, /* tp_getset */
902 0, /* tp_base */
903 0, /* tp_dict */
904 0, /* tp_descr_get */
905 0, /* tp_descr_set */
906 0, /* tp_dictoffset */
907 0, /* tp_init */
908 0 /* tp_alloc */
909};
910
9a27f2c6
PK
911#ifdef IS_PY3K
912
913static PyBufferProcs buffer_procs =
914{
915 get_buffer
916};
917
918#else
919
595939de
PM
920/* Python doesn't provide a decent way to get compatibility here. */
921#if HAVE_LIBPYTHON2_4
922#define CHARBUFFERPROC_NAME getcharbufferproc
923#else
924#define CHARBUFFERPROC_NAME charbufferproc
925#endif
926
927static PyBufferProcs buffer_procs = {
928 get_read_buffer,
929 get_write_buffer,
930 get_seg_count,
931 /* The cast here works around a difference between Python 2.4 and
932 Python 2.5. */
933 (CHARBUFFERPROC_NAME) get_char_buffer
934};
9a27f2c6 935#endif /* IS_PY3K */
595939de 936
e36122e9 937PyTypeObject membuf_object_type = {
9a27f2c6 938 PyVarObject_HEAD_INIT (NULL, 0)
595939de
PM
939 "gdb.Membuf", /*tp_name*/
940 sizeof (membuf_object), /*tp_basicsize*/
941 0, /*tp_itemsize*/
942 mbpy_dealloc, /*tp_dealloc*/
943 0, /*tp_print*/
944 0, /*tp_getattr*/
945 0, /*tp_setattr*/
946 0, /*tp_compare*/
947 0, /*tp_repr*/
948 0, /*tp_as_number*/
949 0, /*tp_as_sequence*/
950 0, /*tp_as_mapping*/
951 0, /*tp_hash */
952 0, /*tp_call*/
953 mbpy_str, /*tp_str*/
954 0, /*tp_getattro*/
955 0, /*tp_setattro*/
956 &buffer_procs, /*tp_as_buffer*/
957 Py_TPFLAGS_DEFAULT, /*tp_flags*/
958 "GDB memory buffer object", /*tp_doc*/
959 0, /* tp_traverse */
960 0, /* tp_clear */
961 0, /* tp_richcompare */
962 0, /* tp_weaklistoffset */
963 0, /* tp_iter */
964 0, /* tp_iternext */
965 0, /* tp_methods */
966 0, /* tp_members */
967 0, /* tp_getset */
968 0, /* tp_base */
969 0, /* tp_dict */
970 0, /* tp_descr_get */
971 0, /* tp_descr_set */
972 0, /* tp_dictoffset */
973 0, /* tp_init */
974 0, /* tp_alloc */
595939de 975};
This page took 0.703862 seconds and 4 git commands to generate.