1 //===-- MachThreadList.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 //  Created by Greg Clayton on 6/19/07.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "MachThreadList.h"
15 
16 #include <sys/sysctl.h>
17 
18 #include "DNBLog.h"
19 #include "DNBThreadResumeActions.h"
20 #include "MachProcess.h"
21 
22 MachThreadList::MachThreadList() :
23     m_threads(),
24     m_threads_mutex(PTHREAD_MUTEX_RECURSIVE)
25 {
26 }
27 
28 MachThreadList::~MachThreadList()
29 {
30 }
31 
32 nub_state_t
33 MachThreadList::GetState(thread_t tid)
34 {
35     MachThreadSP thread_sp (GetThreadByID (tid));
36     if (thread_sp)
37         return thread_sp->GetState();
38     return eStateInvalid;
39 }
40 
41 const char *
42 MachThreadList::GetName (thread_t tid)
43 {
44     MachThreadSP thread_sp (GetThreadByID (tid));
45     if (thread_sp)
46         return thread_sp->GetName();
47     return NULL;
48 }
49 
50 nub_thread_t
51 MachThreadList::SetCurrentThread(thread_t tid)
52 {
53     MachThreadSP thread_sp (GetThreadByID (tid));
54     if (thread_sp)
55     {
56         m_current_thread = thread_sp;
57         return tid;
58     }
59     return INVALID_NUB_THREAD;
60 }
61 
62 
63 bool
64 MachThreadList::GetThreadStoppedReason(nub_thread_t tid, struct DNBThreadStopInfo *stop_info) const
65 {
66     MachThreadSP thread_sp (GetThreadByID (tid));
67     if (thread_sp)
68         return thread_sp->GetStopException().GetStopInfo(stop_info);
69     return false;
70 }
71 
72 bool
73 MachThreadList::GetIdentifierInfo (nub_thread_t tid, thread_identifier_info_data_t *ident_info)
74 {
75     mach_msg_type_number_t count = THREAD_IDENTIFIER_INFO_COUNT;
76     return ::thread_info (tid, THREAD_IDENTIFIER_INFO, (thread_info_t)ident_info, &count) == KERN_SUCCESS;
77 }
78 
79 void
80 MachThreadList::DumpThreadStoppedReason (nub_thread_t tid) const
81 {
82     MachThreadSP thread_sp (GetThreadByID (tid));
83     if (thread_sp)
84         thread_sp->GetStopException().DumpStopReason();
85 }
86 
87 const char *
88 MachThreadList::GetThreadInfo (nub_thread_t tid) const
89 {
90     MachThreadSP thread_sp (GetThreadByID (tid));
91     if (thread_sp)
92         return thread_sp->GetBasicInfoAsString();
93     return NULL;
94 }
95 
96 MachThreadSP
97 MachThreadList::GetThreadByID (nub_thread_t tid) const
98 {
99     PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
100     MachThreadSP thread_sp;
101     const size_t num_threads = m_threads.size();
102     for (size_t idx = 0; idx < num_threads; ++idx)
103     {
104         if (m_threads[idx]->ThreadID() == tid)
105         {
106             thread_sp = m_threads[idx];
107             break;
108         }
109     }
110     return thread_sp;
111 }
112 
113 bool
114 MachThreadList::GetRegisterValue ( nub_thread_t tid, uint32_t reg_set_idx, uint32_t reg_idx, DNBRegisterValue *reg_value ) const
115 {
116     MachThreadSP thread_sp (GetThreadByID (tid));
117     if (thread_sp)
118         return thread_sp->GetRegisterValue(reg_set_idx, reg_idx, reg_value);
119 
120     return false;
121 }
122 
123 bool
124 MachThreadList::SetRegisterValue ( nub_thread_t tid, uint32_t reg_set_idx, uint32_t reg_idx, const DNBRegisterValue *reg_value ) const
125 {
126     MachThreadSP thread_sp (GetThreadByID (tid));
127     if (thread_sp)
128         return thread_sp->SetRegisterValue(reg_set_idx, reg_idx, reg_value);
129 
130     return false;
131 }
132 
133 nub_size_t
134 MachThreadList::GetRegisterContext (nub_thread_t tid, void *buf, size_t buf_len)
135 {
136     MachThreadSP thread_sp (GetThreadByID (tid));
137     if (thread_sp)
138         return thread_sp->GetRegisterContext (buf, buf_len);
139     return 0;
140 }
141 
142 nub_size_t
143 MachThreadList::SetRegisterContext (nub_thread_t tid, const void *buf, size_t buf_len)
144 {
145     MachThreadSP thread_sp (GetThreadByID (tid));
146     if (thread_sp)
147         return thread_sp->SetRegisterContext (buf, buf_len);
148     return 0;
149 }
150 
151 nub_size_t
152 MachThreadList::NumThreads () const
153 {
154     PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
155     return m_threads.size();
156 }
157 
158 nub_thread_t
159 MachThreadList::ThreadIDAtIndex (nub_size_t idx) const
160 {
161     PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
162     if (idx < m_threads.size())
163         return m_threads[idx]->ThreadID();
164     return INVALID_NUB_THREAD;
165 }
166 
167 nub_thread_t
168 MachThreadList::CurrentThreadID ( )
169 {
170     MachThreadSP thread_sp;
171     CurrentThread(thread_sp);
172     if (thread_sp.get())
173         return thread_sp->ThreadID();
174     return INVALID_NUB_THREAD;
175 }
176 
177 bool
178 MachThreadList::NotifyException(MachException::Data& exc)
179 {
180     MachThreadSP thread_sp (GetThreadByID (exc.thread_port));
181     if (thread_sp)
182     {
183         thread_sp->NotifyException(exc);
184         return true;
185     }
186     return false;
187 }
188 
189 void
190 MachThreadList::Clear()
191 {
192     PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
193     m_threads.clear();
194 }
195 
196 uint32_t
197 MachThreadList::UpdateThreadList(MachProcess *process, bool update, MachThreadList::collection *new_threads)
198 {
199     // locker will keep a mutex locked until it goes out of scope
200     DNBLogThreadedIf (LOG_THREAD, "MachThreadList::UpdateThreadList (pid = %4.4x, update = %u) process stop count = %u", process->ProcessID(), update, process->StopCount());
201     PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
202 
203 #if defined (__i386__) || defined (__x86_64__)
204     if (process->StopCount() == 0)
205     {
206         int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, process->ProcessID() };
207         struct kinfo_proc processInfo;
208         size_t bufsize = sizeof(processInfo);
209         bool is_64_bit = false;
210         if (sysctl(mib, (unsigned)(sizeof(mib)/sizeof(int)), &processInfo, &bufsize, NULL, 0) == 0 && bufsize > 0)
211         {
212             if (processInfo.kp_proc.p_flag & P_LP64)
213                 is_64_bit = true;
214         }
215         if (is_64_bit)
216             DNBArchProtocol::SetArchitecture(CPU_TYPE_X86_64);
217         else
218             DNBArchProtocol::SetArchitecture(CPU_TYPE_I386);
219     }
220 #endif
221 
222     if (m_threads.empty() || update)
223     {
224         thread_array_t thread_list = NULL;
225         mach_msg_type_number_t thread_list_count = 0;
226         task_t task = process->Task().TaskPort();
227         DNBError err(::task_threads (task, &thread_list, &thread_list_count), DNBError::MachKernel);
228 
229         if (DNBLogCheckLogBit(LOG_THREAD) || err.Fail())
230             err.LogThreaded("::task_threads ( task = 0x%4.4x, thread_list => %p, thread_list_count => %u )", task, thread_list, thread_list_count);
231 
232         if (err.Error() == KERN_SUCCESS && thread_list_count > 0)
233         {
234             MachThreadList::collection currThreads;
235             size_t idx;
236             // Iterator through the current thread list and see which threads
237             // we already have in our list (keep them), which ones we don't
238             // (add them), and which ones are not around anymore (remove them).
239             for (idx = 0; idx < thread_list_count; ++idx)
240             {
241                 const thread_t tid = thread_list[idx];
242 
243                 MachThreadSP thread_sp (GetThreadByID (tid));
244                 if (thread_sp)
245                 {
246                     // Keep the existing thread class
247                     currThreads.push_back(thread_sp);
248                 }
249                 else
250                 {
251                     // We don't have this thread, lets add it.
252                     thread_sp.reset(new MachThread(process, tid));
253 
254                     // Add the new thread regardless of its is user ready state...
255                     // Make sure the thread is ready to be displayed and shown to users
256                     // before we add this thread to our list...
257                     if (thread_sp->IsUserReady())
258                     {
259                         if (new_threads)
260                             new_threads->push_back(thread_sp);
261 
262                         currThreads.push_back(thread_sp);
263                     }
264                 }
265             }
266 
267             m_threads.swap(currThreads);
268             m_current_thread.reset();
269 
270             // Free the vm memory given to us by ::task_threads()
271             vm_size_t thread_list_size = (vm_size_t) (thread_list_count * sizeof (thread_t));
272             ::vm_deallocate (::mach_task_self(),
273                              (vm_address_t)thread_list,
274                              thread_list_size);
275         }
276     }
277     return m_threads.size();
278 }
279 
280 
281 void
282 MachThreadList::CurrentThread (MachThreadSP& thread_sp)
283 {
284     // locker will keep a mutex locked until it goes out of scope
285     PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
286     if (m_current_thread.get() == NULL)
287     {
288         // Figure out which thread is going to be our current thread.
289         // This is currently done by finding the first thread in the list
290         // that has a valid exception.
291         const uint32_t num_threads = m_threads.size();
292         for (uint32_t idx = 0; idx < num_threads; ++idx)
293         {
294             if (m_threads[idx]->GetStopException().IsValid())
295             {
296                 m_current_thread = m_threads[idx];
297                 break;
298             }
299         }
300     }
301     thread_sp = m_current_thread;
302 }
303 
304 void
305 MachThreadList::Dump() const
306 {
307     PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
308     const uint32_t num_threads = m_threads.size();
309     for (uint32_t idx = 0; idx < num_threads; ++idx)
310     {
311         m_threads[idx]->Dump(idx);
312     }
313 }
314 
315 
316 void
317 MachThreadList::ProcessWillResume(MachProcess *process, const DNBThreadResumeActions &thread_actions)
318 {
319     PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
320 
321     // Update our thread list, because sometimes libdispatch or the kernel
322     // will spawn threads while a task is suspended.
323     MachThreadList::collection new_threads;
324 
325     UpdateThreadList(process, true, &new_threads);
326 
327     DNBThreadResumeAction resume_new_threads = { -1, eStateRunning, 0, INVALID_NUB_ADDRESS };
328 
329     const uint32_t num_new_threads = new_threads.size();
330     const uint32_t num_threads = m_threads.size();
331     for (uint32_t idx = 0; idx < num_threads; ++idx)
332     {
333         MachThread *thread = m_threads[idx].get();
334         bool handled = false;
335         for (uint32_t new_idx = 0; new_idx < num_new_threads; ++new_idx)
336         {
337             if (thread == new_threads[new_idx].get())
338             {
339                 thread->ThreadWillResume(&resume_new_threads);
340                 handled = true;
341                 break;
342             }
343         }
344 
345         if (!handled)
346         {
347             const DNBThreadResumeAction *thread_action = thread_actions.GetActionForThread (thread->ThreadID(), true);
348             // There must always be a thread action for every thread.
349             assert (thread_action);
350             thread->ThreadWillResume (thread_action);
351         }
352     }
353 
354     if (new_threads.size())
355     {
356         for (uint32_t idx = 0; idx < num_new_threads; ++idx)
357         {
358             DNBLogThreadedIf (LOG_THREAD, "MachThreadList::ProcessWillResume (pid = %4.4x) stop-id=%u, resuming newly discovered thread: 0x%4.4x, thread-is-user-ready=%i)",
359                               process->ProcessID(),
360                               process->StopCount(),
361                               new_threads[idx]->ThreadID(),
362                               new_threads[idx]->IsUserReady());
363         }
364     }
365 }
366 
367 uint32_t
368 MachThreadList::ProcessDidStop(MachProcess *process)
369 {
370     PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
371     // Update our thread list
372     const uint32_t num_threads = UpdateThreadList(process, true);
373     for (uint32_t idx = 0; idx < num_threads; ++idx)
374     {
375         m_threads[idx]->ThreadDidStop();
376     }
377     return num_threads;
378 }
379 
380 //----------------------------------------------------------------------
381 // Check each thread in our thread list to see if we should notify our
382 // client of the current halt in execution.
383 //
384 // Breakpoints can have callback functions associated with them than
385 // can return true to stop, or false to continue executing the inferior.
386 //
387 // RETURNS
388 //    true if we should stop and notify our clients
389 //    false if we should resume our child process and skip notification
390 //----------------------------------------------------------------------
391 bool
392 MachThreadList::ShouldStop(bool &step_more)
393 {
394     PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
395     uint32_t should_stop = false;
396     const uint32_t num_threads = m_threads.size();
397     for (uint32_t idx = 0; !should_stop && idx < num_threads; ++idx)
398     {
399         should_stop = m_threads[idx]->ShouldStop(step_more);
400     }
401     return should_stop;
402 }
403 
404 
405 void
406 MachThreadList::NotifyBreakpointChanged (const DNBBreakpoint *bp)
407 {
408     PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
409     const uint32_t num_threads = m_threads.size();
410     for (uint32_t idx = 0; idx < num_threads; ++idx)
411     {
412         m_threads[idx]->NotifyBreakpointChanged(bp);
413     }
414 }
415 
416 
417 uint32_t
418 MachThreadList::EnableHardwareBreakpoint (const DNBBreakpoint* bp) const
419 {
420     if (bp != NULL)
421     {
422         MachThreadSP thread_sp (GetThreadByID (bp->ThreadID()));
423         if (thread_sp)
424             return thread_sp->EnableHardwareBreakpoint(bp);
425     }
426     return INVALID_NUB_HW_INDEX;
427 }
428 
429 bool
430 MachThreadList::DisableHardwareBreakpoint (const DNBBreakpoint* bp) const
431 {
432     if (bp != NULL)
433     {
434         MachThreadSP thread_sp (GetThreadByID (bp->ThreadID()));
435         if (thread_sp)
436             return thread_sp->DisableHardwareBreakpoint(bp);
437     }
438     return false;
439 }
440 
441 uint32_t
442 MachThreadList::EnableHardwareWatchpoint (const DNBBreakpoint* wp) const
443 {
444     if (wp != NULL)
445     {
446         MachThreadSP thread_sp (GetThreadByID (wp->ThreadID()));
447         if (thread_sp)
448             return thread_sp->EnableHardwareWatchpoint(wp);
449     }
450     return INVALID_NUB_HW_INDEX;
451 }
452 
453 bool
454 MachThreadList::DisableHardwareWatchpoint (const DNBBreakpoint* wp) const
455 {
456     if (wp != NULL)
457     {
458         MachThreadSP thread_sp (GetThreadByID (wp->ThreadID()));
459         if (thread_sp)
460             return thread_sp->DisableHardwareWatchpoint(wp);
461     }
462     return false;
463 }
464 
465 uint32_t
466 MachThreadList::GetThreadIndexForThreadStoppedWithSignal (const int signo) const
467 {
468     PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
469     uint32_t should_stop = false;
470     const uint32_t num_threads = m_threads.size();
471     for (uint32_t idx = 0; !should_stop && idx < num_threads; ++idx)
472     {
473         if (m_threads[idx]->GetStopException().SoftSignal () == signo)
474             return idx;
475     }
476     return UINT32_MAX;
477 }
478 
479