MachThreadList.cpp revision 61468e816e879874ee8499ce5a1b4f1d6759b026
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
22MachThreadList::MachThreadList() :
23    m_threads(),
24    m_threads_mutex(PTHREAD_MUTEX_RECURSIVE)
25{
26}
27
28MachThreadList::~MachThreadList()
29{
30}
31
32nub_state_t
33MachThreadList::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
41const char *
42MachThreadList::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
50nub_thread_t
51MachThreadList::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
63bool
64MachThreadList::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
72bool
73MachThreadList::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
79void
80MachThreadList::DumpThreadStoppedReason (nub_thread_t tid) const
81{
82    MachThreadSP thread_sp (GetThreadByID (tid));
83    if (thread_sp)
84        thread_sp->GetStopException().DumpStopReason();
85}
86
87const char *
88MachThreadList::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
96MachThreadSP
97MachThreadList::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
113bool
114MachThreadList::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
123bool
124MachThreadList::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
133nub_size_t
134MachThreadList::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
142nub_size_t
143MachThreadList::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
151nub_size_t
152MachThreadList::NumThreads () const
153{
154    PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
155    return m_threads.size();
156}
157
158nub_thread_t
159MachThreadList::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
167nub_thread_t
168MachThreadList::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
177bool
178MachThreadList::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
189void
190MachThreadList::Clear()
191{
192    PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
193    m_threads.clear();
194}
195
196uint32_t
197MachThreadList::UpdateThreadList(MachProcess *process, bool update)
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                    // Make sure the thread is ready to be displayed and shown to users
254                    // before we add this thread to our list...
255                    if (thread_sp->IsUserReady())
256                        currThreads.push_back(thread_sp);
257                }
258            }
259
260            m_threads.swap(currThreads);
261            m_current_thread.reset();
262
263            // Free the vm memory given to us by ::task_threads()
264            vm_size_t thread_list_size = (vm_size_t) (thread_list_count * sizeof (thread_t));
265            ::vm_deallocate (::mach_task_self(),
266                             (vm_address_t)thread_list,
267                             thread_list_size);
268        }
269    }
270    return m_threads.size();
271}
272
273
274void
275MachThreadList::CurrentThread (MachThreadSP& thread_sp)
276{
277    // locker will keep a mutex locked until it goes out of scope
278    PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
279    if (m_current_thread.get() == NULL)
280    {
281        // Figure out which thread is going to be our current thread.
282        // This is currently done by finding the first thread in the list
283        // that has a valid exception.
284        const uint32_t num_threads = m_threads.size();
285        for (uint32_t idx = 0; idx < num_threads; ++idx)
286        {
287            if (m_threads[idx]->GetStopException().IsValid())
288            {
289                m_current_thread = m_threads[idx];
290                break;
291            }
292        }
293    }
294    thread_sp = m_current_thread;
295}
296
297void
298MachThreadList::Dump() const
299{
300    PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
301    const uint32_t num_threads = m_threads.size();
302    for (uint32_t idx = 0; idx < num_threads; ++idx)
303    {
304        m_threads[idx]->Dump(idx);
305    }
306}
307
308
309void
310MachThreadList::ProcessWillResume(MachProcess *process, const DNBThreadResumeActions &thread_actions)
311{
312    PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
313    const uint32_t num_threads = m_threads.size();
314    for (uint32_t idx = 0; idx < num_threads; ++idx)
315    {
316        MachThread *thread = m_threads[idx].get();
317
318        const DNBThreadResumeAction *thread_action = thread_actions.GetActionForThread (thread->ThreadID(), true);
319        // There must always be a thread action for every thread.
320        assert (thread_action);
321        thread->ThreadWillResume (thread_action);
322    }
323}
324
325uint32_t
326MachThreadList::ProcessDidStop(MachProcess *process)
327{
328    PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
329    // Update our thread list
330    const uint32_t num_threads = UpdateThreadList(process, true);
331    for (uint32_t idx = 0; idx < num_threads; ++idx)
332    {
333        m_threads[idx]->ThreadDidStop();
334    }
335    return num_threads;
336}
337
338//----------------------------------------------------------------------
339// Check each thread in our thread list to see if we should notify our
340// client of the current halt in execution.
341//
342// Breakpoints can have callback functions associated with them than
343// can return true to stop, or false to continue executing the inferior.
344//
345// RETURNS
346//    true if we should stop and notify our clients
347//    false if we should resume our child process and skip notification
348//----------------------------------------------------------------------
349bool
350MachThreadList::ShouldStop(bool &step_more)
351{
352    PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
353    uint32_t should_stop = false;
354    const uint32_t num_threads = m_threads.size();
355    for (uint32_t idx = 0; !should_stop && idx < num_threads; ++idx)
356    {
357        should_stop = m_threads[idx]->ShouldStop(step_more);
358    }
359    return should_stop;
360}
361
362
363void
364MachThreadList::NotifyBreakpointChanged (const DNBBreakpoint *bp)
365{
366    PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
367    const uint32_t num_threads = m_threads.size();
368    for (uint32_t idx = 0; idx < num_threads; ++idx)
369    {
370        m_threads[idx]->NotifyBreakpointChanged(bp);
371    }
372}
373
374
375uint32_t
376MachThreadList::EnableHardwareBreakpoint (const DNBBreakpoint* bp) const
377{
378    if (bp != NULL)
379    {
380        MachThreadSP thread_sp (GetThreadByID (bp->ThreadID()));
381        if (thread_sp)
382            return thread_sp->EnableHardwareBreakpoint(bp);
383    }
384    return INVALID_NUB_HW_INDEX;
385}
386
387bool
388MachThreadList::DisableHardwareBreakpoint (const DNBBreakpoint* bp) const
389{
390    if (bp != NULL)
391    {
392        MachThreadSP thread_sp (GetThreadByID (bp->ThreadID()));
393        if (thread_sp)
394            return thread_sp->DisableHardwareBreakpoint(bp);
395    }
396    return false;
397}
398
399uint32_t
400MachThreadList::EnableHardwareWatchpoint (const DNBBreakpoint* wp) const
401{
402    if (wp != NULL)
403    {
404        MachThreadSP thread_sp (GetThreadByID (wp->ThreadID()));
405        if (thread_sp)
406            return thread_sp->EnableHardwareWatchpoint(wp);
407    }
408    return INVALID_NUB_HW_INDEX;
409}
410
411bool
412MachThreadList::DisableHardwareWatchpoint (const DNBBreakpoint* wp) const
413{
414    if (wp != NULL)
415    {
416        MachThreadSP thread_sp (GetThreadByID (wp->ThreadID()));
417        if (thread_sp)
418            return thread_sp->DisableHardwareWatchpoint(wp);
419    }
420    return false;
421}
422
423uint32_t
424MachThreadList::GetThreadIndexForThreadStoppedWithSignal (const int signo) const
425{
426    PTHREAD_MUTEX_LOCKER (locker, m_threads_mutex);
427    uint32_t should_stop = false;
428    const uint32_t num_threads = m_threads.size();
429    for (uint32_t idx = 0; !should_stop && idx < num_threads; ++idx)
430    {
431        if (m_threads[idx]->GetStopException().SoftSignal () == signo)
432            return idx;
433    }
434    return UINT32_MAX;
435}
436
437