[Lldb-commits] [PATCH] D143012: Add a bit of error checking to SBProcess::ReadMemory to check if a nullptr destination buffer was provided, return error
Jason Molenda via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Feb 7 13:46:45 PST 2023
jasonmolenda updated this revision to Diff 495634.
jasonmolenda added a comment.
Update patch for Jonas' suggestions.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D143012/new/
https://reviews.llvm.org/D143012
Files:
lldb/source/API/SBProcess.cpp
lldb/test/API/python_api/process/TestProcessAPI.py
Index: lldb/test/API/python_api/process/TestProcessAPI.py
===================================================================
--- lldb/test/API/python_api/process/TestProcessAPI.py
+++ lldb/test/API/python_api/process/TestProcessAPI.py
@@ -72,6 +72,20 @@
exe=False,
startstr=b'x')
+ # Try to read an impossibly large amount of memory; swig
+ # will try to malloc it and fail, we should get an error
+ # result.
+ error = lldb.SBError()
+ content = process.ReadMemory(
+ val.AddressOf().GetValueAsUnsigned(),
+ 0xffffffffffffffe8, error)
+ if error.Success():
+ self.assertFalse(error.Success(), "SBProcessReadMemory claims to have "
+ "successfully read 0xffffffffffffffe8 bytes")
+ if self.TraceOn():
+ print("Tried to read 0xffffffffffffffe8 bytes, got error message: ",
+ error.GetCString())
+
# Read (char *)my_char_ptr.
val = frame.FindValue("my_char_ptr", lldb.eValueTypeVariableGlobal)
self.DebugSBValue(val)
Index: lldb/source/API/SBProcess.cpp
===================================================================
--- lldb/source/API/SBProcess.cpp
+++ lldb/source/API/SBProcess.cpp
@@ -802,8 +802,13 @@
SBError &sb_error) {
LLDB_INSTRUMENT_VA(this, addr, dst, dst_len, sb_error);
- size_t bytes_read = 0;
+ if (!dst) {
+ sb_error.SetErrorStringWithFormat(
+ "no buffer provided to read %zu bytes into", dst_len);
+ return 0;
+ }
+ size_t bytes_read = 0;
ProcessSP process_sp(GetSP());
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D143012.495634.patch
Type: text/x-patch
Size: 1649 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230207/8c475735/attachment.bin>
More information about the lldb-commits
mailing list