blob: 266e461a8a40a7ba39fd05557ae8b78168633b0e [file] [log] [blame]
Jason Molenda2fd83352014-02-05 05:44:54 +00001//===-- AppleGetThreadItemInfoHandler.cpp -------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "AppleGetThreadItemInfoHandler.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
16
Jason Molenda2fd83352014-02-05 05:44:54 +000017#include "lldb/Core/ConstString.h"
18#include "lldb/Core/Log.h"
19#include "lldb/Core/Module.h"
20#include "lldb/Core/StreamString.h"
21#include "lldb/Core/Value.h"
Sean Callanan579e70c2016-03-19 00:03:59 +000022#include "lldb/Expression/DiagnosticManager.h"
Jim Ingham151c0322015-09-15 21:13:50 +000023#include "lldb/Expression/Expression.h"
24#include "lldb/Expression/FunctionCaller.h"
25#include "lldb/Expression/UtilityFunction.h"
Jason Molenda2fd83352014-02-05 05:44:54 +000026#include "lldb/Symbol/ClangASTContext.h"
27#include "lldb/Symbol/Symbol.h"
28#include "lldb/Target/ExecutionContext.h"
29#include "lldb/Target/Process.h"
Jim Ingham151c0322015-09-15 21:13:50 +000030#include "lldb/Target/StackFrame.h"
Jason Molenda2fd83352014-02-05 05:44:54 +000031#include "lldb/Target/Target.h"
32#include "lldb/Target/Thread.h"
Sean Callanan579e70c2016-03-19 00:03:59 +000033#include "lldb/lldb-private.h"
Jason Molenda2fd83352014-02-05 05:44:54 +000034
35using namespace lldb;
36using namespace lldb_private;
37
38const char *AppleGetThreadItemInfoHandler::g_get_thread_item_info_function_name = "__lldb_backtrace_recording_get_thread_item_info";
39const char *AppleGetThreadItemInfoHandler::g_get_thread_item_info_function_code = " \n\
40extern \"C\" \n\
41{ \n\
42 /* \n\
43 * mach defines \n\
44 */ \n\
45 \n\
46 typedef unsigned int uint32_t; \n\
47 typedef unsigned long long uint64_t; \n\
48 typedef uint32_t mach_port_t; \n\
49 typedef mach_port_t vm_map_t; \n\
50 typedef int kern_return_t; \n\
51 typedef uint64_t mach_vm_address_t; \n\
52 typedef uint64_t mach_vm_size_t; \n\
53 \n\
54 mach_port_t mach_task_self (); \n\
55 kern_return_t mach_vm_deallocate (vm_map_t target, mach_vm_address_t address, mach_vm_size_t size); \n\
56 \n\
57 typedef void *pthread_t; \n\
58 extern int printf(const char *format, ...); \n\
59 extern pthread_t pthread_self(void); \n\
60 \n\
61 /* \n\
62 * libBacktraceRecording defines \n\
63 */ \n\
64 \n\
65 typedef uint32_t queue_list_scope_t; \n\
66 typedef void *dispatch_queue_t; \n\
67 typedef void *introspection_dispatch_queue_info_t; \n\
68 typedef void *introspection_dispatch_item_info_ref; \n\
69 \n\
Jason Molendada276f92014-02-11 00:36:18 +000070 extern void __introspection_dispatch_thread_get_item_info (uint64_t thread_id, \n\
Jason Molenda2fd83352014-02-05 05:44:54 +000071 introspection_dispatch_item_info_ref *returned_queues_buffer, \n\
72 uint64_t *returned_queues_buffer_size); \n\
73 \n\
74 /* \n\
75 * return type define \n\
76 */ \n\
77 \n\
78 struct get_thread_item_info_return_values \n\
79 { \n\
80 uint64_t item_info_buffer_ptr; /* the address of the items buffer from libBacktraceRecording */ \n\
81 uint64_t item_info_buffer_size; /* the size of the items buffer from libBacktraceRecording */ \n\
82 }; \n\
83 \n\
84 void __lldb_backtrace_recording_get_thread_item_info \n\
85 (struct get_thread_item_info_return_values *return_buffer, \n\
86 int debug, \n\
Jason Molendada276f92014-02-11 00:36:18 +000087 uint64_t thread_id, \n\
Jason Molenda2fd83352014-02-05 05:44:54 +000088 void *page_to_free, \n\
89 uint64_t page_to_free_size) \n\
90{ \n\
91 void *pthread_id = pthread_self (); \n\
92 if (debug) \n\
Jason Molendada276f92014-02-11 00:36:18 +000093 printf (\"entering get_thread_item_info with args return_buffer == %p, debug == %d, thread id == 0x%llx, page_to_free == %p, page_to_free_size == 0x%llx\\n\", return_buffer, debug, (uint64_t) thread_id, page_to_free, page_to_free_size); \n\
Jason Molenda2fd83352014-02-05 05:44:54 +000094 if (page_to_free != 0) \n\
95 { \n\
96 mach_vm_deallocate (mach_task_self(), (mach_vm_address_t) page_to_free, (mach_vm_size_t) page_to_free_size); \n\
97 } \n\
98 \n\
Jason Molendada276f92014-02-11 00:36:18 +000099 __introspection_dispatch_thread_get_item_info (thread_id, \n\
Jason Molenda2fd83352014-02-05 05:44:54 +0000100 (void**)&return_buffer->item_info_buffer_ptr, \n\
101 &return_buffer->item_info_buffer_size); \n\
102} \n\
103} \n\
104";
105
106AppleGetThreadItemInfoHandler::AppleGetThreadItemInfoHandler (Process *process) :
107 m_process (process),
Jason Molenda2fd83352014-02-05 05:44:54 +0000108 m_get_thread_item_info_impl_code (),
109 m_get_thread_item_info_function_mutex(),
110 m_get_thread_item_info_return_buffer_addr (LLDB_INVALID_ADDRESS),
111 m_get_thread_item_info_retbuffer_mutex()
112{
113}
114
115AppleGetThreadItemInfoHandler::~AppleGetThreadItemInfoHandler ()
116{
117}
118
119void
120AppleGetThreadItemInfoHandler::Detach ()
121{
122
123 if (m_process && m_process->IsAlive() && m_get_thread_item_info_return_buffer_addr != LLDB_INVALID_ADDRESS)
124 {
125 Mutex::Locker locker;
126 locker.TryLock (m_get_thread_item_info_retbuffer_mutex); // Even if we don't get the lock, deallocate the buffer
127 m_process->DeallocateMemory (m_get_thread_item_info_return_buffer_addr);
128 }
129}
130
131// Compile our __lldb_backtrace_recording_get_thread_item_info() function (from the
132// source above in g_get_thread_item_info_function_code) if we don't find that function in the inferior
133// already with USE_BUILTIN_FUNCTION defined. (e.g. this would be the case for testing.)
134//
135// Insert the __lldb_backtrace_recording_get_thread_item_info into the inferior process if needed.
136//
137// Write the get_thread_item_info_arglist into the inferior's memory space to prepare for the call.
138//
139// Returns the address of the arguments written down in the inferior process, which can be used to
140// make the function call.
141
142lldb::addr_t
143AppleGetThreadItemInfoHandler::SetupGetThreadItemInfoFunction (Thread &thread, ValueList &get_thread_item_info_arglist)
144{
Jim Ingham6896b352016-03-21 19:21:13 +0000145 ThreadSP thread_sp(thread.shared_from_this());
146 ExecutionContext exe_ctx (thread_sp);
Jason Molenda2fd83352014-02-05 05:44:54 +0000147 Address impl_code_address;
Sean Callanan579e70c2016-03-19 00:03:59 +0000148 DiagnosticManager diagnostics;
149 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_SYSTEM_RUNTIME));
Jason Molenda2fd83352014-02-05 05:44:54 +0000150 lldb::addr_t args_addr = LLDB_INVALID_ADDRESS;
Jim Ingham151c0322015-09-15 21:13:50 +0000151 FunctionCaller *get_thread_item_info_caller = nullptr;
Jason Molenda2fd83352014-02-05 05:44:54 +0000152
153 // Scope for mutex locker:
154 {
155 Mutex::Locker locker(m_get_thread_item_info_function_mutex);
156
157 // First stage is to make the ClangUtility to hold our injected function:
158
Jim Ingham151c0322015-09-15 21:13:50 +0000159 if (!m_get_thread_item_info_impl_code.get())
Jason Molenda2fd83352014-02-05 05:44:54 +0000160 {
Jim Ingham151c0322015-09-15 21:13:50 +0000161 Error error;
Jason Molenda2fd83352014-02-05 05:44:54 +0000162 if (g_get_thread_item_info_function_code != NULL)
163 {
Jim Ingham151c0322015-09-15 21:13:50 +0000164 m_get_thread_item_info_impl_code.reset (exe_ctx.GetTargetRef().GetUtilityFunctionForLanguage (g_get_thread_item_info_function_code,
165 eLanguageTypeC,
166 g_get_thread_item_info_function_name,
167 error));
168 if (error.Fail())
169 {
170 if (log)
171 log->Printf ("Failed to get UtilityFunction for get-thread-item-info introspection: %s.",
172 error.AsCString());
173 m_get_thread_item_info_impl_code.reset();
174 return args_addr;
175 }
Sean Callanan579e70c2016-03-19 00:03:59 +0000176
177 if (!m_get_thread_item_info_impl_code->Install(diagnostics, exe_ctx))
Jason Molenda2fd83352014-02-05 05:44:54 +0000178 {
179 if (log)
Sean Callanan579e70c2016-03-19 00:03:59 +0000180 {
181 log->Printf("Failed to install get-thread-item-info introspection.");
182 diagnostics.Dump(log);
183 }
184
Jason Molenda2fd83352014-02-05 05:44:54 +0000185 m_get_thread_item_info_impl_code.reset();
186 return args_addr;
187 }
188 }
189 else
190 {
191 if (log)
192 log->Printf("No get-thread-item-info introspection code found.");
Jason Molenda2fd83352014-02-05 05:44:54 +0000193 return LLDB_INVALID_ADDRESS;
194 }
Sean Callanan579e70c2016-03-19 00:03:59 +0000195
Jim Ingham151c0322015-09-15 21:13:50 +0000196 // Also make the FunctionCaller for this UtilityFunction:
197
198 ClangASTContext *clang_ast_context = thread.GetProcess()->GetTarget().GetScratchClangASTContext();
199 CompilerType get_thread_item_info_return_type = clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType();
200
201 get_thread_item_info_caller = m_get_thread_item_info_impl_code->MakeFunctionCaller (get_thread_item_info_return_type,
202 get_thread_item_info_arglist,
Jim Ingham6896b352016-03-21 19:21:13 +0000203 thread_sp,
Jim Ingham151c0322015-09-15 21:13:50 +0000204 error);
205 if (error.Fail())
206 {
207 if (log)
208 log->Printf ("Failed to install get-thread-item-info introspection caller: %s.", error.AsCString());
209 m_get_thread_item_info_impl_code.reset();
210 return args_addr;
211 }
212
Jason Molenda2fd83352014-02-05 05:44:54 +0000213 }
214 else
215 {
Jim Ingham151c0322015-09-15 21:13:50 +0000216 get_thread_item_info_caller = m_get_thread_item_info_impl_code->GetFunctionCaller();
Jason Molenda2fd83352014-02-05 05:44:54 +0000217 }
218 }
Sean Callanan579e70c2016-03-19 00:03:59 +0000219
220 diagnostics.Clear();
221
Jason Molenda2fd83352014-02-05 05:44:54 +0000222 // Now write down the argument values for this particular call. This looks like it might be a race condition
223 // if other threads were calling into here, but actually it isn't because we allocate a new args structure for
224 // this call by passing args_addr = LLDB_INVALID_ADDRESS...
225
Sean Callanan579e70c2016-03-19 00:03:59 +0000226 if (!get_thread_item_info_caller->WriteFunctionArguments(exe_ctx, args_addr, get_thread_item_info_arglist,
227 diagnostics))
Jason Molenda2fd83352014-02-05 05:44:54 +0000228 {
229 if (log)
Sean Callanan579e70c2016-03-19 00:03:59 +0000230 {
231 log->Printf("Error writing get-thread-item-info function arguments");
232 diagnostics.Dump(log);
233 }
Jason Molenda2fd83352014-02-05 05:44:54 +0000234 return args_addr;
235 }
Sean Callanan579e70c2016-03-19 00:03:59 +0000236
Jason Molenda2fd83352014-02-05 05:44:54 +0000237 return args_addr;
238}
239
240AppleGetThreadItemInfoHandler::GetThreadItemInfoReturnInfo
Jason Molendada276f92014-02-11 00:36:18 +0000241AppleGetThreadItemInfoHandler::GetThreadItemInfo (Thread &thread, tid_t thread_id, addr_t page_to_free, uint64_t page_to_free_size, Error &error)
Jason Molenda2fd83352014-02-05 05:44:54 +0000242{
243 lldb::StackFrameSP thread_cur_frame = thread.GetStackFrameAtIndex(0);
244 ProcessSP process_sp (thread.CalculateProcess());
245 TargetSP target_sp (thread.CalculateTarget());
246 ClangASTContext *clang_ast_context = target_sp->GetScratchClangASTContext();
247 Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_SYSTEM_RUNTIME));
248
249 GetThreadItemInfoReturnInfo return_value;
250 return_value.item_buffer_ptr = LLDB_INVALID_ADDRESS;
251 return_value.item_buffer_size = 0;
252
253 error.Clear();
254
Jason Molendab4892cd2014-05-13 22:02:48 +0000255 if (thread.SafeToCallFunctions() == false)
256 {
257 if (log)
258 log->Printf ("Not safe to call functions on thread 0x%" PRIx64, thread.GetID());
259 error.SetErrorString ("Not safe to call functions on this thread.");
260 return return_value;
261 }
262
Jason Molenda2fd83352014-02-05 05:44:54 +0000263 // Set up the arguments for a call to
264
265 // struct get_thread_item_info_return_values
266 // {
267 // uint64_t item_info_buffer_ptr; /* the address of the items buffer from libBacktraceRecording */
268 // uint64_t item_info_buffer_size; /* the size of the items buffer from libBacktraceRecording */
269 // };
270 //
271 // void __lldb_backtrace_recording_get_thread_item_info
272 // (struct get_thread_item_info_return_values *return_buffer,
273 // int debug,
274 // void *page_to_free,
275 // uint64_t page_to_free_size)
276
277 // Where the return_buffer argument points to a 24 byte region of memory already allocated by lldb in
278 // the inferior process.
279
Greg Claytona1e5dc82015-08-11 22:53:00 +0000280 CompilerType clang_void_ptr_type = clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType();
Jason Molenda2fd83352014-02-05 05:44:54 +0000281 Value return_buffer_ptr_value;
282 return_buffer_ptr_value.SetValueType (Value::eValueTypeScalar);
Greg Clayton99558cc42015-08-24 23:46:31 +0000283 return_buffer_ptr_value.SetCompilerType (clang_void_ptr_type);
Jason Molenda2fd83352014-02-05 05:44:54 +0000284
Greg Claytona1e5dc82015-08-11 22:53:00 +0000285 CompilerType clang_int_type = clang_ast_context->GetBasicType(eBasicTypeInt);
Jason Molenda2fd83352014-02-05 05:44:54 +0000286 Value debug_value;
287 debug_value.SetValueType (Value::eValueTypeScalar);
Greg Clayton99558cc42015-08-24 23:46:31 +0000288 debug_value.SetCompilerType (clang_int_type);
Jason Molenda2fd83352014-02-05 05:44:54 +0000289
Greg Claytona1e5dc82015-08-11 22:53:00 +0000290 CompilerType clang_uint64_type = clang_ast_context->GetBasicType(eBasicTypeUnsignedLongLong);
Jason Molendada276f92014-02-11 00:36:18 +0000291 Value thread_id_value;
292 thread_id_value.SetValueType (Value::eValueTypeScalar);
Greg Clayton99558cc42015-08-24 23:46:31 +0000293 thread_id_value.SetCompilerType (clang_uint64_type);
Jason Molendada276f92014-02-11 00:36:18 +0000294
Jason Molenda2fd83352014-02-05 05:44:54 +0000295 Value page_to_free_value;
296 page_to_free_value.SetValueType (Value::eValueTypeScalar);
Greg Clayton99558cc42015-08-24 23:46:31 +0000297 page_to_free_value.SetCompilerType (clang_void_ptr_type);
Jason Molenda2fd83352014-02-05 05:44:54 +0000298
Jason Molenda2fd83352014-02-05 05:44:54 +0000299 Value page_to_free_size_value;
300 page_to_free_size_value.SetValueType (Value::eValueTypeScalar);
Greg Clayton99558cc42015-08-24 23:46:31 +0000301 page_to_free_size_value.SetCompilerType (clang_uint64_type);
Jason Molenda2fd83352014-02-05 05:44:54 +0000302
303
304 Mutex::Locker locker(m_get_thread_item_info_retbuffer_mutex);
305 if (m_get_thread_item_info_return_buffer_addr == LLDB_INVALID_ADDRESS)
306 {
307 addr_t bufaddr = process_sp->AllocateMemory (32, ePermissionsReadable | ePermissionsWritable, error);
308 if (!error.Success() || bufaddr == LLDB_INVALID_ADDRESS)
309 {
310 if (log)
311 log->Printf ("Failed to allocate memory for return buffer for get current queues func call");
312 return return_value;
313 }
314 m_get_thread_item_info_return_buffer_addr = bufaddr;
315 }
316
317 ValueList argument_values;
318
319 return_buffer_ptr_value.GetScalar() = m_get_thread_item_info_return_buffer_addr;
320 argument_values.PushValue (return_buffer_ptr_value);
321
322 debug_value.GetScalar() = 0;
323 argument_values.PushValue (debug_value);
324
Jason Molendada276f92014-02-11 00:36:18 +0000325 thread_id_value.GetScalar() = thread_id;
326 argument_values.PushValue (thread_id_value);
327
Jason Molenda2fd83352014-02-05 05:44:54 +0000328 if (page_to_free != LLDB_INVALID_ADDRESS)
329 page_to_free_value.GetScalar() = page_to_free;
330 else
331 page_to_free_value.GetScalar() = 0;
332 argument_values.PushValue (page_to_free_value);
333
334 page_to_free_size_value.GetScalar() = page_to_free_size;
335 argument_values.PushValue (page_to_free_size_value);
336
Sean Callanan579e70c2016-03-19 00:03:59 +0000337 addr_t args_addr = SetupGetThreadItemInfoFunction(thread, argument_values);
Jason Molenda2fd83352014-02-05 05:44:54 +0000338
Sean Callanan579e70c2016-03-19 00:03:59 +0000339 DiagnosticManager diagnostics;
Jason Molenda2fd83352014-02-05 05:44:54 +0000340 ExecutionContext exe_ctx;
341 EvaluateExpressionOptions options;
Jim Ingham151c0322015-09-15 21:13:50 +0000342 FunctionCaller *get_thread_item_info_caller = nullptr;
Sean Callanan579e70c2016-03-19 00:03:59 +0000343
Jason Molenda2fd83352014-02-05 05:44:54 +0000344 options.SetUnwindOnError (true);
345 options.SetIgnoreBreakpoints (true);
346 options.SetStopOthers (true);
Jason Molendaa0560152014-04-25 00:06:26 +0000347 options.SetTimeoutUsec(500000);
348 options.SetTryAllThreads (false);
Jason Molenda2fd83352014-02-05 05:44:54 +0000349 thread.CalculateExecutionContext (exe_ctx);
350
Jim Ingham151c0322015-09-15 21:13:50 +0000351 if (!m_get_thread_item_info_impl_code)
Jason Molenda2fd83352014-02-05 05:44:54 +0000352 {
353 error.SetErrorString ("Unable to compile function to call __introspection_dispatch_thread_get_item_info");
354 return return_value;
355 }
356
Jim Ingham151c0322015-09-15 21:13:50 +0000357 get_thread_item_info_caller = m_get_thread_item_info_impl_code->GetFunctionCaller();
358
359 if (!get_thread_item_info_caller)
360 {
361 error.SetErrorString ("Unable to compile function caller for __introspection_dispatch_thread_get_item_info");
362 return return_value;
363 }
Jason Molenda2fd83352014-02-05 05:44:54 +0000364
Jim Ingham1624a2d2014-05-05 02:26:40 +0000365 ExpressionResults func_call_ret;
Jason Molenda2fd83352014-02-05 05:44:54 +0000366 Value results;
Sean Callanan579e70c2016-03-19 00:03:59 +0000367 func_call_ret = get_thread_item_info_caller->ExecuteFunction(exe_ctx, &args_addr, options, diagnostics, results);
Jim Ingham8646d3c2014-05-05 02:47:44 +0000368 if (func_call_ret != eExpressionCompleted || !error.Success())
Jason Molenda2fd83352014-02-05 05:44:54 +0000369 {
370 if (log)
Jim Ingham1624a2d2014-05-05 02:26:40 +0000371 log->Printf ("Unable to call __introspection_dispatch_thread_get_item_info(), got ExpressionResults %d, error contains %s", func_call_ret, error.AsCString(""));
Jason Molenda2fd83352014-02-05 05:44:54 +0000372 error.SetErrorString ("Unable to call __introspection_dispatch_thread_get_item_info() for list of queues");
373 return return_value;
374 }
375
376 return_value.item_buffer_ptr = m_process->ReadUnsignedIntegerFromMemory (m_get_thread_item_info_return_buffer_addr, 8, LLDB_INVALID_ADDRESS, error);
377 if (!error.Success() || return_value.item_buffer_ptr == LLDB_INVALID_ADDRESS)
378 {
379 return_value.item_buffer_ptr = LLDB_INVALID_ADDRESS;
380 return return_value;
381 }
382
383 return_value.item_buffer_size = m_process->ReadUnsignedIntegerFromMemory (m_get_thread_item_info_return_buffer_addr + 8, 8, 0, error);
384
385 if (!error.Success())
386 {
387 return_value.item_buffer_ptr = LLDB_INVALID_ADDRESS;
388 return return_value;
389 }
390
Jason Molenda2a6c2522014-02-15 00:20:40 +0000391 if (log)
392 log->Printf ("AppleGetThreadItemInfoHandler called __introspection_dispatch_thread_get_item_info (page_to_free == 0x%" PRIx64 ", size = %" PRId64 "), returned page is at 0x%" PRIx64 ", size %" PRId64, page_to_free, page_to_free_size, return_value.item_buffer_ptr, return_value.item_buffer_size);
393
Jason Molenda2fd83352014-02-05 05:44:54 +0000394 return return_value;
395}