diff options
author | Tom de Vries <tdevries@suse.de> | 2024-04-16 15:53:47 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2024-04-16 15:53:47 +0200 |
commit | 06e967dbc9b75a4a3c1b15b54360cf1abbf9c2bd (patch) | |
tree | 6e4a4137a7b51c19937e94038188b55abf29ccc3 /gdb/python/py-inferior.c | |
parent | 2d4c39a885d4d12325d0a9be9e014e75a295fb25 (diff) | |
download | binutils-06e967dbc9b75a4a3c1b15b54360cf1abbf9c2bd.zip binutils-06e967dbc9b75a4a3c1b15b54360cf1abbf9c2bd.tar.gz binutils-06e967dbc9b75a4a3c1b15b54360cf1abbf9c2bd.tar.bz2 |
[gdb/python] Throw MemoryError in inferior.read_memory if malloc fails
PR python/31631 reports a gdb internal error when doing:
...
(gdb) python gdb.selected_inferior().read_memory (0, 0xffffffffffffffff)
utils.c:709: internal-error: virtual memory exhausted.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
...
Fix this by throwing a python MemoryError, such that we have instead:
...
(gdb) python gdb.selected_inferior().read_memory (0, 0xffffffffffffffff)
Python Exception <class 'MemoryError'>:
Error occurred in Python.
(gdb)
...
Likewise for DAP.
Tested on x86_64-linux.
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31631
Diffstat (limited to 'gdb/python/py-inferior.c')
-rw-r--r-- | gdb/python/py-inferior.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gdb/python/py-inferior.c b/gdb/python/py-inferior.c index 795ac65..a1042ee 100644 --- a/gdb/python/py-inferior.c +++ b/gdb/python/py-inferior.c @@ -555,6 +555,18 @@ infpy_read_memory (PyObject *self, PyObject *args, PyObject *kw) || get_addr_from_python (length_obj, &length) < 0) return NULL; + if (length == 0) + { + PyErr_SetString (PyExc_ValueError, + _("Argument 'count' should be greater than zero")); + return NULL; + } + + void *p = malloc (length); + if (p == nullptr) + return PyErr_NoMemory (); + buffer.reset ((gdb_byte *) p); + try { /* Use this scoped-restore because we want to be able to read @@ -562,8 +574,6 @@ infpy_read_memory (PyObject *self, PyObject *args, PyObject *kw) scoped_restore_current_inferior_for_memory restore_inferior (inf->inferior); - buffer.reset ((gdb_byte *) xmalloc (length)); - read_memory (addr, buffer.get (), length); } catch (const gdb_exception &except) |