Add target method for converting thread handle to thread_info struct pointer
[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
72bc1d24
SM
226 /* PyObject_New initializes the new object with a refcount of 1. This
227 counts for the reference we are keeping in the inferior data. */
595939de
PM
228 set_inferior_data (inferior, infpy_inf_data_key, inf_obj);
229
595939de 230 }
72bc1d24
SM
231
232 /* We are returning a new reference. */
233 Py_INCREF ((PyObject *)inf_obj);
595939de
PM
234
235 return (PyObject *) inf_obj;
236}
237
7c96f8c1
TT
238/* Called when a new inferior is created. Notifies any Python event
239 listeners. */
240static void
241python_new_inferior (struct inferior *inf)
242{
243 if (!gdb_python_initialized)
244 return;
245
246 gdbpy_enter enter_py (python_gdbarch, python_language);
247
248 if (evregpy_no_listeners_p (gdb_py_events.new_inferior))
249 return;
250
251 gdbpy_ref<> inf_obj (inferior_to_inferior_object (inf));
252 if (inf_obj == NULL)
253 {
254 gdbpy_print_stack ();
255 return;
256 }
257
258 gdbpy_ref<> event (create_event_object (&new_inferior_event_object_type));
259 if (event == NULL
260 || evpy_add_attribute (event.get (), "inferior", inf_obj.get ()) < 0
261 || evpy_emit_event (event.get (), gdb_py_events.new_inferior) < 0)
262 gdbpy_print_stack ();
263}
264
265/* Called when an inferior is removed. Notifies any Python event
266 listeners. */
267static void
268python_inferior_deleted (struct inferior *inf)
269{
270 if (!gdb_python_initialized)
271 return;
272
273 gdbpy_enter enter_py (python_gdbarch, python_language);
274
275 if (evregpy_no_listeners_p (gdb_py_events.inferior_deleted))
276 return;
277
278 gdbpy_ref<> inf_obj (inferior_to_inferior_object (inf));
279 if (inf_obj == NULL)
280 {
281 gdbpy_print_stack ();
282 return;
283 }
284
285 gdbpy_ref<> event (create_event_object (&inferior_deleted_event_object_type));
286 if (event == NULL
287 || evpy_add_attribute (event.get (), "inferior", inf_obj.get ()) < 0
288 || evpy_emit_event (event.get (), gdb_py_events.inferior_deleted) < 0)
289 gdbpy_print_stack ();
290}
291
595939de 292/* Finds the Python Inferior object for the given PID. Returns a
754eadd1 293 reference, or NULL if PID does not match any inferior object. */
505500db 294
595939de
PM
295PyObject *
296find_inferior_object (int pid)
297{
595939de
PM
298 struct inferior *inf = find_inferior_pid (pid);
299
300 if (inf)
301 return inferior_to_inferior_object (inf);
302
303 return NULL;
304}
305
306thread_object *
307find_thread_object (ptid_t ptid)
308{
309 int pid;
310 struct threadlist_entry *thread;
595939de 311
dfd4cc63 312 pid = ptid_get_pid (ptid);
ea976c60
PM
313 if (pid == 0)
314 return NULL;
315
7780f186 316 gdbpy_ref<> inf_obj (find_inferior_object (pid));
9205649a 317 if (inf_obj == NULL)
754eadd1
PM
318 return NULL;
319
9205649a 320 for (thread = ((inferior_object *)(inf_obj.get ()))->threads; thread;
754eadd1
PM
321 thread = thread->next)
322 if (ptid_equal (thread->thread_obj->thread->ptid, ptid))
60685cd0 323 return thread->thread_obj;
595939de
PM
324
325 return NULL;
326}
327
328static void
329add_thread_object (struct thread_info *tp)
330{
595939de
PM
331 thread_object *thread_obj;
332 inferior_object *inf_obj;
333 struct threadlist_entry *entry;
334
0646da15
TT
335 if (!gdb_python_initialized)
336 return;
337
07bc7329 338 gdbpy_enter enter_py (python_gdbarch, python_language);
595939de
PM
339
340 thread_obj = create_thread_object (tp);
341 if (!thread_obj)
342 {
343 gdbpy_print_stack ();
595939de
PM
344 return;
345 }
346
347 inf_obj = (inferior_object *) thread_obj->inf_obj;
348
8d749320 349 entry = XNEW (struct threadlist_entry);
595939de
PM
350 entry->thread_obj = thread_obj;
351 entry->next = inf_obj->threads;
352
353 inf_obj->threads = entry;
354 inf_obj->nthreads++;
7c96f8c1
TT
355
356 if (evregpy_no_listeners_p (gdb_py_events.new_thread))
357 return;
358
359 gdbpy_ref<> event (create_thread_event_object (&new_thread_event_object_type,
360 (PyObject *) thread_obj));
361 if (event == NULL
362 || evpy_emit_event (event.get (), gdb_py_events.new_thread) < 0)
363 gdbpy_print_stack ();
595939de
PM
364}
365
366static void
367delete_thread_object (struct thread_info *tp, int ignore)
368{
595939de 369 struct threadlist_entry **entry, *tmp;
256458bc 370
0646da15
TT
371 if (!gdb_python_initialized)
372 return;
373
07bc7329 374 gdbpy_enter enter_py (python_gdbarch, python_language);
595939de 375
88b6faea
TT
376 gdbpy_ref<inferior_object> inf_obj
377 ((inferior_object *) find_inferior_object (ptid_get_pid (tp->ptid)));
378 if (inf_obj == NULL)
07bc7329 379 return;
595939de
PM
380
381 /* Find thread entry in its inferior's thread_list. */
382 for (entry = &inf_obj->threads; *entry != NULL; entry =
383 &(*entry)->next)
384 if ((*entry)->thread_obj->thread == tp)
385 break;
386
387 if (!*entry)
88b6faea 388 return;
595939de 389
595939de
PM
390 tmp = *entry;
391 tmp->thread_obj->thread = NULL;
392
393 *entry = (*entry)->next;
394 inf_obj->nthreads--;
395
396 Py_DECREF (tmp->thread_obj);
397 xfree (tmp);
595939de
PM
398}
399
400static PyObject *
401infpy_threads (PyObject *self, PyObject *args)
402{
403 int i;
404 struct threadlist_entry *entry;
405 inferior_object *inf_obj = (inferior_object *) self;
406 PyObject *tuple;
407
408 INFPY_REQUIRE_VALID (inf_obj);
409
492d29ea
PA
410 TRY
411 {
412 update_thread_list ();
413 }
414 CATCH (except, RETURN_MASK_ALL)
415 {
416 GDB_PY_HANDLE_EXCEPTION (except);
417 }
418 END_CATCH
f66713d2 419
595939de
PM
420 tuple = PyTuple_New (inf_obj->nthreads);
421 if (!tuple)
422 return NULL;
423
424 for (i = 0, entry = inf_obj->threads; i < inf_obj->nthreads;
425 i++, entry = entry->next)
426 {
427 Py_INCREF (entry->thread_obj);
428 PyTuple_SET_ITEM (tuple, i, (PyObject *) entry->thread_obj);
429 }
430
431 return tuple;
432}
433
434static PyObject *
435infpy_get_num (PyObject *self, void *closure)
436{
437 inferior_object *inf = (inferior_object *) self;
438
439 INFPY_REQUIRE_VALID (inf);
440
441 return PyLong_FromLong (inf->inferior->num);
442}
443
444static PyObject *
445infpy_get_pid (PyObject *self, void *closure)
446{
447 inferior_object *inf = (inferior_object *) self;
448
449 INFPY_REQUIRE_VALID (inf);
450
451 return PyLong_FromLong (inf->inferior->pid);
452}
453
454static PyObject *
455infpy_get_was_attached (PyObject *self, void *closure)
456{
457 inferior_object *inf = (inferior_object *) self;
458
459 INFPY_REQUIRE_VALID (inf);
460 if (inf->inferior->attach_flag)
461 Py_RETURN_TRUE;
462 Py_RETURN_FALSE;
463}
464
465static int
466build_inferior_list (struct inferior *inf, void *arg)
467{
19ba03f4 468 PyObject *list = (PyObject *) arg;
7780f186 469 gdbpy_ref<> inferior (inferior_to_inferior_object (inf));
754eadd1 470
9205649a 471 if (inferior == NULL)
754eadd1
PM
472 return 0;
473
9205649a 474 return PyList_Append (list, inferior.get ()) ? 1 : 0;
595939de
PM
475}
476
477/* Implementation of gdb.inferiors () -> (gdb.Inferior, ...).
478 Returns a tuple of all inferiors. */
479PyObject *
480gdbpy_inferiors (PyObject *unused, PyObject *unused2)
481{
7780f186 482 gdbpy_ref<> list (PyList_New (0));
f59fe7f8 483 if (list == NULL)
595939de
PM
484 return NULL;
485
f59fe7f8
TT
486 if (iterate_over_inferiors (build_inferior_list, list.get ()))
487 return NULL;
27ca1a5b 488
f59fe7f8 489 return PyList_AsTuple (list.get ());
595939de
PM
490}
491
492/* Membuf and memory manipulation. */
493
2678e2af 494/* Implementation of Inferior.read_memory (address, length).
595939de 495 Returns a Python buffer object with LENGTH bytes of the inferior's
8dc78533
JK
496 memory at ADDRESS. Both arguments are integers. Returns NULL on error,
497 with a python exception set. */
595939de
PM
498static PyObject *
499infpy_read_memory (PyObject *self, PyObject *args, PyObject *kw)
500{
595939de 501 CORE_ADDR addr, length;
7c543f7b 502 gdb_byte *buffer = NULL;
cc0265cd 503 PyObject *addr_obj, *length_obj, *result;
2adadf51 504 static const char *keywords[] = { "address", "length", NULL };
595939de 505
2adadf51
PA
506 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "OO", keywords,
507 &addr_obj, &length_obj))
595939de
PM
508 return NULL;
509
b86af38a
TT
510 if (get_addr_from_python (addr_obj, &addr) < 0
511 || get_addr_from_python (length_obj, &length) < 0)
512 return NULL;
513
492d29ea 514 TRY
595939de 515 {
7c543f7b 516 buffer = (gdb_byte *) xmalloc (length);
595939de
PM
517
518 read_memory (addr, buffer, length);
519 }
492d29ea 520 CATCH (except, RETURN_MASK_ALL)
595939de 521 {
cc0265cd 522 xfree (buffer);
595939de
PM
523 GDB_PY_HANDLE_EXCEPTION (except);
524 }
492d29ea 525 END_CATCH
595939de 526
88b6faea
TT
527 gdbpy_ref<membuf_object> membuf_obj (PyObject_New (membuf_object,
528 &membuf_object_type));
595939de
PM
529 if (membuf_obj == NULL)
530 {
cc0265cd 531 xfree (buffer);
595939de
PM
532 return NULL;
533 }
534
595939de
PM
535 membuf_obj->buffer = buffer;
536 membuf_obj->addr = addr;
537 membuf_obj->length = length;
538
9a27f2c6 539#ifdef IS_PY3K
88b6faea 540 result = PyMemoryView_FromObject ((PyObject *) membuf_obj.get ());
9a27f2c6 541#else
88b6faea 542 result = PyBuffer_FromReadWriteObject ((PyObject *) membuf_obj.get (), 0,
cc0265cd 543 Py_END_OF_BUFFER);
9a27f2c6 544#endif
9a27f2c6 545
cc0265cd 546 return result;
595939de
PM
547}
548
2678e2af 549/* Implementation of Inferior.write_memory (address, buffer [, length]).
595939de
PM
550 Writes the contents of BUFFER (a Python object supporting the read
551 buffer protocol) at ADDRESS in the inferior's memory. Write LENGTH
552 bytes from BUFFER, or its entire contents if the argument is not
8dc78533
JK
553 provided. The function returns nothing. Returns NULL on error, with
554 a python exception set. */
595939de
PM
555static PyObject *
556infpy_write_memory (PyObject *self, PyObject *args, PyObject *kw)
557{
492d29ea 558 struct gdb_exception except = exception_none;
ddd49eee 559 Py_ssize_t buf_len;
7c543f7b 560 const gdb_byte *buffer;
595939de
PM
561 CORE_ADDR addr, length;
562 PyObject *addr_obj, *length_obj = NULL;
2adadf51 563 static const char *keywords[] = { "address", "buffer", "length", NULL };
9a27f2c6
PK
564#ifdef IS_PY3K
565 Py_buffer pybuf;
595939de 566
2adadf51
PA
567 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "Os*|O", keywords,
568 &addr_obj, &pybuf, &length_obj))
9a27f2c6 569 return NULL;
595939de 570
7c543f7b 571 buffer = (const gdb_byte *) pybuf.buf;
9a27f2c6
PK
572 buf_len = pybuf.len;
573#else
2adadf51
PA
574 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "Os#|O", keywords,
575 &addr_obj, &buffer, &buf_len,
576 &length_obj))
595939de 577 return NULL;
7c543f7b
SM
578
579 buffer = (const gdb_byte *) buffer;
9a27f2c6 580#endif
595939de 581
b86af38a
TT
582 if (get_addr_from_python (addr_obj, &addr) < 0)
583 goto fail;
584
585 if (!length_obj)
586 length = buf_len;
587 else if (get_addr_from_python (length_obj, &length) < 0)
588 goto fail;
589
492d29ea 590 TRY
595939de 591 {
7c543f7b 592 write_memory_with_notification (addr, buffer, length);
595939de 593 }
492d29ea
PA
594 CATCH (ex, RETURN_MASK_ALL)
595 {
596 except = ex;
597 }
598 END_CATCH
599
9a27f2c6
PK
600#ifdef IS_PY3K
601 PyBuffer_Release (&pybuf);
602#endif
595939de
PM
603 GDB_PY_HANDLE_EXCEPTION (except);
604
595939de 605 Py_RETURN_NONE;
b86af38a
TT
606
607 fail:
608#ifdef IS_PY3K
609 PyBuffer_Release (&pybuf);
610#endif
611 return NULL;
595939de
PM
612}
613
614/* Destructor of Membuf objects. */
615static void
616mbpy_dealloc (PyObject *self)
617{
618 xfree (((membuf_object *) self)->buffer);
9a27f2c6 619 Py_TYPE (self)->tp_free (self);
595939de
PM
620}
621
622/* Return a description of the Membuf object. */
623static PyObject *
624mbpy_str (PyObject *self)
625{
626 membuf_object *membuf_obj = (membuf_object *) self;
627
628 return PyString_FromFormat (_("Memory buffer for address %s, \
629which is %s bytes long."),
630 paddress (python_gdbarch, membuf_obj->addr),
631 pulongest (membuf_obj->length));
632}
633
9a27f2c6
PK
634#ifdef IS_PY3K
635
636static int
637get_buffer (PyObject *self, Py_buffer *buf, int flags)
638{
639 membuf_object *membuf_obj = (membuf_object *) self;
640 int ret;
256458bc 641
9a27f2c6 642 ret = PyBuffer_FillInfo (buf, self, membuf_obj->buffer,
256458bc 643 membuf_obj->length, 0,
9a27f2c6 644 PyBUF_CONTIG);
a121b7c1
PA
645
646 /* Despite the documentation saying this field is a "const char *",
647 in Python 3.4 at least, it's really a "char *". */
648 buf->format = (char *) "c";
9a27f2c6
PK
649
650 return ret;
651}
652
653#else
654
595939de
PM
655static Py_ssize_t
656get_read_buffer (PyObject *self, Py_ssize_t segment, void **ptrptr)
657{
658 membuf_object *membuf_obj = (membuf_object *) self;
659
660 if (segment)
661 {
662 PyErr_SetString (PyExc_SystemError,
663 _("The memory buffer supports only one segment."));
664 return -1;
665 }
666
667 *ptrptr = membuf_obj->buffer;
668
669 return membuf_obj->length;
670}
671
672static Py_ssize_t
673get_write_buffer (PyObject *self, Py_ssize_t segment, void **ptrptr)
674{
675 return get_read_buffer (self, segment, ptrptr);
676}
677
678static Py_ssize_t
679get_seg_count (PyObject *self, Py_ssize_t *lenp)
680{
681 if (lenp)
682 *lenp = ((membuf_object *) self)->length;
683
684 return 1;
685}
686
687static Py_ssize_t
688get_char_buffer (PyObject *self, Py_ssize_t segment, char **ptrptr)
689{
690 void *ptr = NULL;
691 Py_ssize_t ret;
692
693 ret = get_read_buffer (self, segment, &ptr);
694 *ptrptr = (char *) ptr;
695
696 return ret;
697}
698
9a27f2c6
PK
699#endif /* IS_PY3K */
700
595939de
PM
701/* Implementation of
702 gdb.search_memory (address, length, pattern). ADDRESS is the
703 address to start the search. LENGTH specifies the scope of the
704 search from ADDRESS. PATTERN is the pattern to search for (and
705 must be a Python object supporting the buffer protocol).
706 Returns a Python Long object holding the address where the pattern
8dc78533
JK
707 was located, or if the pattern was not found, returns None. Returns NULL
708 on error, with a python exception set. */
595939de
PM
709static PyObject *
710infpy_search_memory (PyObject *self, PyObject *args, PyObject *kw)
711{
492d29ea 712 struct gdb_exception except = exception_none;
595939de 713 CORE_ADDR start_addr, length;
2adadf51 714 static const char *keywords[] = { "address", "length", "pattern", NULL };
9a27f2c6 715 PyObject *start_addr_obj, *length_obj;
595939de 716 Py_ssize_t pattern_size;
7c543f7b 717 const gdb_byte *buffer;
595939de
PM
718 CORE_ADDR found_addr;
719 int found = 0;
9a27f2c6
PK
720#ifdef IS_PY3K
721 Py_buffer pybuf;
595939de 722
2adadf51
PA
723 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "OOs*", keywords,
724 &start_addr_obj, &length_obj,
725 &pybuf))
9a27f2c6
PK
726 return NULL;
727
7c543f7b 728 buffer = (const gdb_byte *) pybuf.buf;
9a27f2c6
PK
729 pattern_size = pybuf.len;
730#else
731 PyObject *pattern;
7c543f7b 732 const void *vbuffer;
256458bc 733
2adadf51
PA
734 if (!gdb_PyArg_ParseTupleAndKeywords (args, kw, "OOO", keywords,
735 &start_addr_obj, &length_obj,
736 &pattern))
9a27f2c6
PK
737 return NULL;
738
739 if (!PyObject_CheckReadBuffer (pattern))
740 {
741 PyErr_SetString (PyExc_RuntimeError,
742 _("The pattern is not a Python buffer."));
743
744 return NULL;
745 }
746
7c543f7b 747 if (PyObject_AsReadBuffer (pattern, &vbuffer, &pattern_size) == -1)
595939de 748 return NULL;
7c543f7b
SM
749
750 buffer = (const gdb_byte *) vbuffer;
9a27f2c6 751#endif
595939de 752
b86af38a
TT
753 if (get_addr_from_python (start_addr_obj, &start_addr) < 0)
754 goto fail;
256458bc 755
b86af38a
TT
756 if (get_addr_from_python (length_obj, &length) < 0)
757 goto fail;
9a27f2c6 758
b86af38a
TT
759 if (!length)
760 {
761 PyErr_SetString (PyExc_ValueError,
762 _("Search range is empty."));
763 goto fail;
764 }
765 /* Watch for overflows. */
766 else if (length > CORE_ADDR_MAX
767 || (start_addr + length - 1) < start_addr)
768 {
769 PyErr_SetString (PyExc_ValueError,
770 _("The search range is too large."));
771 goto fail;
595939de 772 }
595939de 773
492d29ea 774 TRY
595939de
PM
775 {
776 found = target_search_memory (start_addr, length,
777 buffer, pattern_size,
778 &found_addr);
779 }
492d29ea
PA
780 CATCH (ex, RETURN_MASK_ALL)
781 {
782 except = ex;
783 }
784 END_CATCH
785
9a27f2c6
PK
786#ifdef IS_PY3K
787 PyBuffer_Release (&pybuf);
788#endif
b86af38a 789 GDB_PY_HANDLE_EXCEPTION (except);
9a27f2c6 790
595939de
PM
791 if (found)
792 return PyLong_FromLong (found_addr);
793 else
794 Py_RETURN_NONE;
b86af38a
TT
795
796 fail:
797#ifdef IS_PY3K
798 PyBuffer_Release (&pybuf);
799#endif
800 return NULL;
595939de
PM
801}
802
29703da4
PM
803/* Implementation of gdb.Inferior.is_valid (self) -> Boolean.
804 Returns True if this inferior object still exists in GDB. */
805
806static PyObject *
807infpy_is_valid (PyObject *self, PyObject *args)
808{
809 inferior_object *inf = (inferior_object *) self;
810
811 if (! inf->inferior)
812 Py_RETURN_FALSE;
813
814 Py_RETURN_TRUE;
815}
816
754eadd1
PM
817static void
818infpy_dealloc (PyObject *obj)
819{
820 inferior_object *inf_obj = (inferior_object *) obj;
821 struct inferior *inf = inf_obj->inferior;
822
823 if (! inf)
824 return;
825
826 set_inferior_data (inf, infpy_inf_data_key, NULL);
827}
595939de
PM
828
829/* Clear the INFERIOR pointer in an Inferior object and clear the
830 thread list. */
831static void
832py_free_inferior (struct inferior *inf, void *datum)
833{
88b6faea 834 gdbpy_ref<inferior_object> inf_obj ((inferior_object *) datum);
595939de
PM
835 struct threadlist_entry *th_entry, *th_tmp;
836
0646da15
TT
837 if (!gdb_python_initialized)
838 return;
839
07bc7329 840 gdbpy_enter enter_py (python_gdbarch, python_language);
595939de
PM
841
842 inf_obj->inferior = NULL;
843
844 /* Deallocate threads list. */
845 for (th_entry = inf_obj->threads; th_entry != NULL;)
846 {
847 Py_DECREF (th_entry->thread_obj);
848
849 th_tmp = th_entry;
850 th_entry = th_entry->next;
851 xfree (th_tmp);
852 }
853
854 inf_obj->nthreads = 0;
595939de
PM
855}
856
2aa48337
KP
857/* Implementation of gdb.selected_inferior() -> gdb.Inferior.
858 Returns the current inferior object. */
859
860PyObject *
861gdbpy_selected_inferior (PyObject *self, PyObject *args)
862{
2d57700b 863 return inferior_to_inferior_object (current_inferior ());
2aa48337
KP
864}
865
999633ed 866int
595939de
PM
867gdbpy_initialize_inferior (void)
868{
869 if (PyType_Ready (&inferior_object_type) < 0)
999633ed 870 return -1;
595939de 871
aa36459a
TT
872 if (gdb_pymodule_addobject (gdb_module, "Inferior",
873 (PyObject *) &inferior_object_type) < 0)
999633ed 874 return -1;
595939de
PM
875
876 infpy_inf_data_key =
8e260fc0 877 register_inferior_data_with_cleanup (NULL, py_free_inferior);
595939de
PM
878
879 observer_attach_new_thread (add_thread_object);
880 observer_attach_thread_exit (delete_thread_object);
505500db
SW
881 observer_attach_normal_stop (python_on_normal_stop);
882 observer_attach_target_resumed (python_on_resume);
162078c8
NB
883 observer_attach_inferior_call_pre (python_on_inferior_call_pre);
884 observer_attach_inferior_call_post (python_on_inferior_call_post);
885 observer_attach_memory_changed (python_on_memory_change);
886 observer_attach_register_changed (python_on_register_change);
505500db 887 observer_attach_inferior_exit (python_inferior_exit);
20c168b5 888 observer_attach_new_objfile (python_new_objfile);
7c96f8c1
TT
889 observer_attach_inferior_added (python_new_inferior);
890 observer_attach_inferior_removed (python_inferior_deleted);
595939de 891
6a1b1664 892 membuf_object_type.tp_new = PyType_GenericNew;
595939de 893 if (PyType_Ready (&membuf_object_type) < 0)
999633ed 894 return -1;
595939de 895
aa36459a
TT
896 return gdb_pymodule_addobject (gdb_module, "Membuf", (PyObject *)
897 &membuf_object_type);
595939de
PM
898}
899
0d1f4ceb 900static gdb_PyGetSetDef inferior_object_getset[] =
595939de
PM
901{
902 { "num", infpy_get_num, NULL, "ID of inferior, as assigned by GDB.", NULL },
903 { "pid", infpy_get_pid, NULL, "PID of inferior, as assigned by the OS.",
904 NULL },
905 { "was_attached", infpy_get_was_attached, NULL,
906 "True if the inferior was created using 'attach'.", NULL },
907 { NULL }
908};
909
910static PyMethodDef inferior_object_methods[] =
911{
29703da4
PM
912 { "is_valid", infpy_is_valid, METH_NOARGS,
913 "is_valid () -> Boolean.\n\
914Return true if this inferior is valid, false if not." },
595939de
PM
915 { "threads", infpy_threads, METH_NOARGS,
916 "Return all the threads of this inferior." },
917 { "read_memory", (PyCFunction) infpy_read_memory,
918 METH_VARARGS | METH_KEYWORDS,
919 "read_memory (address, length) -> buffer\n\
920Return a buffer object for reading from the inferior's memory." },
921 { "write_memory", (PyCFunction) infpy_write_memory,
922 METH_VARARGS | METH_KEYWORDS,
923 "write_memory (address, buffer [, length])\n\
924Write the given buffer object to the inferior's memory." },
925 { "search_memory", (PyCFunction) infpy_search_memory,
926 METH_VARARGS | METH_KEYWORDS,
927 "search_memory (address, length, pattern) -> long\n\
928Return a long with the address of a match, or None." },
929 { NULL }
930};
931
e36122e9 932PyTypeObject inferior_object_type =
595939de 933{
9a27f2c6 934 PyVarObject_HEAD_INIT (NULL, 0)
595939de
PM
935 "gdb.Inferior", /* tp_name */
936 sizeof (inferior_object), /* tp_basicsize */
937 0, /* tp_itemsize */
754eadd1 938 infpy_dealloc, /* tp_dealloc */
595939de
PM
939 0, /* tp_print */
940 0, /* tp_getattr */
941 0, /* tp_setattr */
942 0, /* tp_compare */
943 0, /* tp_repr */
944 0, /* tp_as_number */
945 0, /* tp_as_sequence */
946 0, /* tp_as_mapping */
947 0, /* tp_hash */
948 0, /* tp_call */
949 0, /* tp_str */
950 0, /* tp_getattro */
951 0, /* tp_setattro */
952 0, /* tp_as_buffer */
953 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_ITER, /* tp_flags */
954 "GDB inferior object", /* tp_doc */
955 0, /* tp_traverse */
956 0, /* tp_clear */
957 0, /* tp_richcompare */
958 0, /* tp_weaklistoffset */
959 0, /* tp_iter */
960 0, /* tp_iternext */
961 inferior_object_methods, /* tp_methods */
962 0, /* tp_members */
963 inferior_object_getset, /* tp_getset */
964 0, /* tp_base */
965 0, /* tp_dict */
966 0, /* tp_descr_get */
967 0, /* tp_descr_set */
968 0, /* tp_dictoffset */
969 0, /* tp_init */
970 0 /* tp_alloc */
971};
972
9a27f2c6
PK
973#ifdef IS_PY3K
974
975static PyBufferProcs buffer_procs =
976{
977 get_buffer
978};
979
980#else
981
595939de
PM
982/* Python doesn't provide a decent way to get compatibility here. */
983#if HAVE_LIBPYTHON2_4
984#define CHARBUFFERPROC_NAME getcharbufferproc
985#else
986#define CHARBUFFERPROC_NAME charbufferproc
987#endif
988
989static PyBufferProcs buffer_procs = {
990 get_read_buffer,
991 get_write_buffer,
992 get_seg_count,
993 /* The cast here works around a difference between Python 2.4 and
994 Python 2.5. */
995 (CHARBUFFERPROC_NAME) get_char_buffer
996};
9a27f2c6 997#endif /* IS_PY3K */
595939de 998
e36122e9 999PyTypeObject membuf_object_type = {
9a27f2c6 1000 PyVarObject_HEAD_INIT (NULL, 0)
595939de
PM
1001 "gdb.Membuf", /*tp_name*/
1002 sizeof (membuf_object), /*tp_basicsize*/
1003 0, /*tp_itemsize*/
1004 mbpy_dealloc, /*tp_dealloc*/
1005 0, /*tp_print*/
1006 0, /*tp_getattr*/
1007 0, /*tp_setattr*/
1008 0, /*tp_compare*/
1009 0, /*tp_repr*/
1010 0, /*tp_as_number*/
1011 0, /*tp_as_sequence*/
1012 0, /*tp_as_mapping*/
1013 0, /*tp_hash */
1014 0, /*tp_call*/
1015 mbpy_str, /*tp_str*/
1016 0, /*tp_getattro*/
1017 0, /*tp_setattro*/
1018 &buffer_procs, /*tp_as_buffer*/
1019 Py_TPFLAGS_DEFAULT, /*tp_flags*/
1020 "GDB memory buffer object", /*tp_doc*/
1021 0, /* tp_traverse */
1022 0, /* tp_clear */
1023 0, /* tp_richcompare */
1024 0, /* tp_weaklistoffset */
1025 0, /* tp_iter */
1026 0, /* tp_iternext */
1027 0, /* tp_methods */
1028 0, /* tp_members */
1029 0, /* tp_getset */
1030 0, /* tp_base */
1031 0, /* tp_dict */
1032 0, /* tp_descr_get */
1033 0, /* tp_descr_set */
1034 0, /* tp_dictoffset */
1035 0, /* tp_init */
1036 0, /* tp_alloc */
595939de 1037};
This page took 0.732347 seconds and 4 git commands to generate.