2013-10-21 22:30:52 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LIBBACKTRACE_BACKTRACE_THREAD_H
|
|
|
|
#define _LIBBACKTRACE_BACKTRACE_THREAD_H
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2014-05-07 00:23:59 +02:00
|
|
|
#include <pthread.h>
|
2014-04-29 18:35:30 +02:00
|
|
|
#include <signal.h>
|
2014-05-07 00:23:59 +02:00
|
|
|
#include <string.h>
|
2013-10-21 22:30:52 +02:00
|
|
|
#include <sys/types.h>
|
2014-05-07 00:23:59 +02:00
|
|
|
#include <ucontext.h>
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-01-23 04:21:07 +01:00
|
|
|
#include "BacktraceImpl.h"
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-04-29 18:35:30 +02:00
|
|
|
// The signal used to cause a thread to dump the stack.
|
|
|
|
#if defined(__GLIBC__)
|
|
|
|
// GLIBC reserves __SIGRTMIN signals, so use SIGRTMIN to avoid errors.
|
|
|
|
#define THREAD_SIGNAL SIGRTMIN
|
|
|
|
#else
|
|
|
|
#define THREAD_SIGNAL (__SIGRTMIN+1)
|
|
|
|
#endif
|
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
class ThreadEntry {
|
|
|
|
public:
|
|
|
|
static ThreadEntry* Get(pid_t pid, pid_t tid, bool create = true);
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
static void Remove(ThreadEntry* entry);
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
inline void CopyUcontext(ucontext_t* ucontext) {
|
|
|
|
memcpy(&ucontext_, ucontext, sizeof(ucontext_));
|
|
|
|
}
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
void Wake();
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
void Wait(int);
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
inline void Lock() {
|
|
|
|
pthread_mutex_lock(&mutex_);
|
|
|
|
// Reset the futex value in case of multiple unwinds of the same thread.
|
|
|
|
futex_ = 0;
|
|
|
|
}
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
inline void Unlock() {
|
|
|
|
pthread_mutex_unlock(&mutex_);
|
|
|
|
}
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
inline ucontext_t* GetUcontext() { return &ucontext_; }
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
private:
|
|
|
|
ThreadEntry(pid_t pid, pid_t tid);
|
|
|
|
~ThreadEntry();
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
bool Match(pid_t chk_pid, pid_t chk_tid) { return (chk_pid == pid_ && chk_tid == tid_); }
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
pid_t pid_;
|
|
|
|
pid_t tid_;
|
|
|
|
int futex_;
|
|
|
|
int ref_count_;
|
|
|
|
pthread_mutex_t mutex_;
|
|
|
|
ThreadEntry* next_;
|
|
|
|
ThreadEntry* prev_;
|
|
|
|
ucontext_t ucontext_;
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
static ThreadEntry* list_;
|
|
|
|
static pthread_mutex_t list_mutex_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class BacktraceThread : public BacktraceCurrent {
|
|
|
|
public:
|
|
|
|
BacktraceThread(BacktraceImpl* impl, pid_t tid, BacktraceMap* map);
|
|
|
|
virtual ~BacktraceThread();
|
2013-10-21 22:30:52 +02:00
|
|
|
|
2014-05-07 00:23:59 +02:00
|
|
|
virtual bool Unwind(size_t num_ignore_frames, ucontext_t* ucontext);
|
2013-10-21 22:30:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _LIBBACKTRACE_BACKTRACE_THREAD_H
|