summaryrefslogtreecommitdiff
path: root/gdb/python/py-type.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-02-08 13:59:36 -0700
committerTom Tromey <tom@tromey.com>2023-02-27 15:46:31 -0700
commitf3d3bbbcdd8af6295458eee3b023447c13edabd3 (patch)
tree7f505c42452ba1c2890b2c56e278eb53dd2a1fed /gdb/python/py-type.c
parent9b955acd7f5029345e7bd8e31a4af0e6b356f0ae (diff)
downloadbinutils-gdb-f3d3bbbcdd8af6295458eee3b023447c13edabd3.tar.gz
Fix value chain use-after-free
Hannes filed a bug showing a crash, where a pretty-printer written in Python could cause a use-after-free. He sent a patch, but I thought a different approach was needed. In a much earlier patch (see bug #12533), we changed the Python code to release new values from the value chain when constructing a gdb.Value. The rationale for this is that if you write a command that does a lot of computations in a loop, all the values will be kept live by the value chain, resulting in gdb using a large amount of memory. However, suppose a value is passed to Python from some code in gdb that needs to use the value after the call into Python. In this scenario, value_to_value_object will still release the value -- and because gdb code doesn't generally keep strong references to values (a consequence of the ancient decision to use the value chain to avoid memory management), this will result in a use-after-free. This scenario can happen, as it turns out, when a value is passed to Python for pretty-printing. Now, normally this route boxes the value via value_to_value_object_no_release, avoiding the problematic release from the value chain. However, if you then call Value.cast, the underlying value API might return the same value, when is then released from the chain. This patch fixes the problem by changing how value boxing is done. value_to_value_object no longer removes a value from the chain. Instead, every spot in gdb that might construct new values uses a scoped_value_mark to ensure that the requirements of bug #12533 are met. And, because incoming values aren't ever released from the chain (the Value.cast one comes earlier on the chain than the scoped_value_mark), the bug can no longer occur. (Note that many spots in the Python layer already take this approach, so not many places needed to be touched.) In the future I think we should replace the use of raw "value *" with value_ref_ptr pretty much everywhere. This will ensure lifetime safety throughout gdb. The test case in this patch comes from Hannes' original patch. I only made a trivial ("require") change to it. However, while this fails for him, I can't make it fail on this machine; nevertheless, he tried my patch and reported the bug as being fixed. Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30044
Diffstat (limited to 'gdb/python/py-type.c')
-rw-r--r--gdb/python/py-type.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/gdb/python/py-type.c b/gdb/python/py-type.c
index 0a3787815ec..b68ec8d2c92 100644
--- a/gdb/python/py-type.c
+++ b/gdb/python/py-type.c
@@ -957,7 +957,6 @@ typy_template_argument (PyObject *self, PyObject *args)
const struct block *block = NULL;
PyObject *block_obj = NULL;
struct symbol *sym;
- struct value *val = NULL;
if (! PyArg_ParseTuple (args, "i|O", &argno, &block_obj))
return NULL;
@@ -1014,16 +1013,19 @@ typy_template_argument (PyObject *self, PyObject *args)
return NULL;
}
+ PyObject *result = nullptr;
try
{
- val = value_of_variable (sym, block);
+ scoped_value_mark free_values;
+ struct value *val = value_of_variable (sym, block);
+ result = value_to_value_object (val);
}
catch (const gdb_exception &except)
{
GDB_PY_HANDLE_EXCEPTION (except);
}
- return value_to_value_object (val);
+ return result;
}
static PyObject *
@@ -1189,6 +1191,7 @@ typy_optimized_out (PyObject *self, PyObject *args)
{
struct type *type = ((type_object *) self)->type;
+ scoped_value_mark free_values;
return value_to_value_object (value::allocate_optimized_out (type));
}