/* libunwind - a platform-independent unwind library Copyright (C) 2019 Brock York This file is part of libunwind. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include #include #include #include #ifdef HAVE_SYS_PTRACE_H #include #endif #define UNW_LOCAL_ONLY #include /* * unwind in the signal handler checking the backtrace is correct * after a bad jump. */ void handle_sigsegv(int signal, siginfo_t *info, void *ucontext) { /* * 0 = success * !0 = general failure * 77 = test skipped * 99 = complete failure */ int test_status = 0; unw_cursor_t cursor; unw_context_t uc; unw_word_t ip, sp, offset; char name[1000]; int found_signal_frame = 0; int i = 0; char *names[] = { "", "main", }; int names_count = sizeof(names) / sizeof(*names); unw_getcontext(&uc); unw_init_local(&cursor, &uc); while (unw_step(&cursor) > 0 && !test_status) { if (unw_is_signal_frame(&cursor)) { found_signal_frame = 1; } if (found_signal_frame) { unw_get_reg(&cursor, UNW_REG_IP, &ip); unw_get_reg(&cursor, UNW_REG_SP, &sp); memset(name, 0, sizeof(char) * 1000); unw_get_proc_name(&cursor, name, sizeof(char) * 1000, &offset); printf("ip = %lx, sp = %lx offset = %lx name = %s\n", (long) ip, (long) sp, (long) offset, name); if (i < names_count) { if (strcmp(names[i], name) != 0) { test_status = 1; printf("frame %s doesn't match expected frame %s\n", name, names[i]); } else { i += 1; } } } } if (i != names_count) //Make sure we found all the frames! { printf("Failed to find all frames i:%d != names_count:%d\n", i, names_count); test_status = 1; } /*return test_status to test harness*/ exit(test_status); } void (*invalid_function)() = (void*)1; int main(int argc, char *argv[]) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = handle_sigsegv; sa.sa_flags = SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); invalid_function(); /* * 99 is the hard error exit status for automake tests: * https://www.gnu.org/software/automake/manual/html_node/Scripts_002dbased-Testsuites.html#Scripts_002dbased-Testsuites * If we dont end up in the signal handler something went horribly wrong. */ return 99; }