* Copyright (c) 2022-2024 Huawei Device Co., Ltd.
* 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.
*/
#include "backtrace_local_thread.h"
#include <securec.h>
#include <unistd.h>
#include "dfx_define.h"
#include "dfx_log.h"
#include "procinfo.h"
namespace OHOS {
namespace HiviewDFX {
namespace {
#undef LOG_DOMAIN
#undef LOG_TAG
#define LOG_DOMAIN 0xD002D11
#define LOG_TAG "DfxBacktraceLocal"
constexpr int MAX_WAIT_MUTEX_SEC = 3;
}
std::string GetThreadHead(int32_t tid)
{
std::string threadName;
if (tid == BACKTRACE_CURRENT_THREAD) {
tid = gettid();
}
ReadThreadName(tid, threadName);
std::string threadHead = "Tid:" + std::to_string(tid) + ", Name:" + threadName + "\n";
return threadHead;
}
bool BacktraceLocalThread::Unwind(Unwinder& unwinder, bool fast, size_t maxFrameNum, size_t skipFrameNum)
{
static std::timed_mutex mutex;
std::unique_lock<std::timed_mutex> lock(mutex, std::defer_lock);
auto timeout = std::chrono::system_clock::now() + std::chrono::seconds(MAX_WAIT_MUTEX_SEC);
if (!lock.try_lock_until(timeout)) {
DFXLOGW("%{public}s :: Unwind try_lock_until timeout", __func__);
return false;
}
bool ret = false;
if (tid_ < BACKTRACE_CURRENT_THREAD) {
return ret;
}
if (tid_ == BACKTRACE_CURRENT_THREAD) {
ret = unwinder.UnwindLocal(false, fast, maxFrameNum, skipFrameNum + 1);
#if (defined(__aarch64__) || defined(__x86_64__))
if (fast) {
Unwinder::GetLocalFramesByPcs(frames_, unwinder.GetPcs());
}
#endif
if (frames_.empty()) {
frames_ = unwinder.GetFrames();
}
return ret;
}
ret = unwinder.UnwindLocalWithTid(tid_, maxFrameNum, skipFrameNum);
#if (defined(__aarch64__) || defined(__x86_64__))
Unwinder::GetLocalFramesByPcs(frames_, unwinder.GetPcs());
#else
frames_ = unwinder.GetFrames();
#endif
return ret;
}
void BacktraceLocalThread::SetFrames(const std::vector<DfxFrame>& frames)
{
frames_ = frames;
}
const std::vector<DfxFrame>& BacktraceLocalThread::GetFrames() const
{
return frames_;
}
std::string BacktraceLocalThread::GetFormattedStr(int32_t tid,
const std::vector<DfxFrame>& frames,
bool withThreadName,
bool includeThreadInfo)
{
std::string str;
if (withThreadName && (tid > 0)) {
std::string threadName;
ReadThreadName(tid, threadName);
str = "Tid:" + std::to_string(tid) + ", Name:" + threadName + "\n";
}
if (includeThreadInfo) {
ProcessInfo info;
if (ParseProcInfo(tid, info)) {
str += FomatProcessInfoToString(info) + "\n";
}
}
str += Unwinder::GetFramesStr(frames);
return str;
}
std::string BacktraceLocalThread::GetFormattedStr(bool withThreadName)
{
if (frames_.empty()) {
return "";
}
return GetFormattedStr(tid_, frames_, withThreadName, includeThreadInfo_);
}
bool BacktraceLocalThread::UnwindOtherThreadMix(Unwinder& unwinder, bool fast, size_t maxFrameNum, size_t skipFrameNum)
{
static std::timed_mutex mutex;
std::unique_lock<std::timed_mutex> lock(mutex, std::defer_lock);
auto timeout = std::chrono::system_clock::now() + std::chrono::seconds(MAX_WAIT_MUTEX_SEC);
if (!lock.try_lock_until(timeout)) {
DFXLOGW("%{public}s :: Unwind try_lock_until timeout", __func__);
return false;
}
bool ret = false;
if (tid_ < BACKTRACE_CURRENT_THREAD) {
return ret;
}
if (tid_ == BACKTRACE_CURRENT_THREAD || tid_ == gettid()) {
ret = unwinder.UnwindLocal(false, fast, maxFrameNum, skipFrameNum + 1, true);
} else {
ret = unwinder.UnwindLocalByOtherTid(tid_, fast, maxFrameNum, skipFrameNum + 1);
}
#if (defined(__aarch64__) || defined(__x86_64__))
if (ret && fast) {
unwinder.GetFramesByPcs(frames_, unwinder.GetPcs());
}
#endif
if (frames_.empty()) {
frames_ = unwinder.GetFrames();
}
return ret;
}
}
}