50321e2e66
This change provides __restore/__restore_rt on x86 and __restore_rt on x86_64 with unwinding information to be able to unwind through signal frame via libgcc provided unwinding interface. See comments inlined for more details. Also remove the test that had a dependency on __attribute__((cleanup(foo_cleanup))). It doesn't provide us with any better test coverage than we have from the newer tests, and it doesn't work well across a variety architectures (presumably because no one uses this attribute in the real world). Tested this on host via bionic-unit-tests-run-on-host on both x86 and x86-64. Bug: 17436734 Change-Id: I2f06814e82c8faa732cb4f5648868dc0fd2e5fe4 Signed-off-by: Pavel Chupin <pavel.v.chupin@intel.com>
105 lines
2.9 KiB
C++
105 lines
2.9 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
/*
|
|
* Contributed by: Intel Corporation
|
|
*/
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <dlfcn.h>
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
#include <unwind.h>
|
|
|
|
#include "ScopedSignalHandler.h"
|
|
|
|
#define noinline __attribute__((__noinline__))
|
|
#define __unused __attribute__((__unused__))
|
|
|
|
static _Unwind_Reason_Code FrameCounter(_Unwind_Context* ctx __unused, void* arg) {
|
|
int* count_ptr = reinterpret_cast<int*>(arg);
|
|
|
|
#if SHOW_FRAME_LOCATIONS
|
|
void* ip = reinterpret_cast<void*>(_Unwind_GetIP(ctx));
|
|
|
|
const char* symbol = "<unknown>";
|
|
int offset = 0;
|
|
|
|
Dl_info info;
|
|
memset(&info, 0, sizeof(info));
|
|
if (dladdr(ip, &info) != 0) {
|
|
symbol = info.dli_sname;
|
|
if (info.dli_saddr != nullptr) {
|
|
offset = static_cast<int>(reinterpret_cast<char*>(ip) - reinterpret_cast<char*>(info.dli_saddr));
|
|
}
|
|
}
|
|
|
|
fprintf(stderr, " #%02d %p %s%+d (%s)\n", *count_ptr, ip, symbol, offset, info.dli_fname ? info.dli_fname : "??");
|
|
fflush(stderr);
|
|
#endif
|
|
|
|
++*count_ptr;
|
|
return _URC_NO_REASON;
|
|
}
|
|
|
|
static int noinline unwind_one_frame_deeper() {
|
|
int count = 0;
|
|
_Unwind_Backtrace(FrameCounter, &count);
|
|
return count;
|
|
}
|
|
|
|
TEST(stack_unwinding, easy) {
|
|
int count = 0;
|
|
_Unwind_Backtrace(FrameCounter, &count);
|
|
int deeper_count = unwind_one_frame_deeper();
|
|
ASSERT_EQ(count + 1, deeper_count);
|
|
}
|
|
|
|
static int killer_count = 0;
|
|
static int handler_count = 0;
|
|
static int handler_one_deeper_count = 0;
|
|
|
|
static void noinline UnwindSignalHandler(int) {
|
|
_Unwind_Backtrace(FrameCounter, &handler_count);
|
|
ASSERT_GT(handler_count, killer_count);
|
|
|
|
handler_one_deeper_count = unwind_one_frame_deeper();
|
|
ASSERT_EQ(handler_count + 1, handler_one_deeper_count);
|
|
}
|
|
|
|
TEST(stack_unwinding, unwind_through_signal_frame) {
|
|
killer_count = handler_count = handler_one_deeper_count = 0;
|
|
ScopedSignalHandler ssh(SIGUSR1, UnwindSignalHandler);
|
|
|
|
_Unwind_Backtrace(FrameCounter, &killer_count);
|
|
|
|
ASSERT_EQ(0, kill(getpid(), SIGUSR1));
|
|
}
|
|
|
|
// On LP32, the SA_SIGINFO flag gets you __restore_rt instead of __restore.
|
|
TEST(stack_unwinding, unwind_through_signal_frame_SA_SIGINFO) {
|
|
killer_count = handler_count = handler_one_deeper_count = 0;
|
|
ScopedSignalHandler ssh(SIGUSR1, UnwindSignalHandler, SA_SIGINFO);
|
|
|
|
_Unwind_Backtrace(FrameCounter, &killer_count);
|
|
|
|
ASSERT_EQ(0, kill(getpid(), SIGUSR1));
|
|
}
|