| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you 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. |
| * |
| */ |
| |
| #pragma once |
| |
| #include <signal.h> |
| |
| #include <cpptrace/cpptrace.hpp> |
| #include <cstddef> |
| #include <iomanip> |
| #include <sstream> |
| |
| #include "logging.h" |
| #include "version_util.h" |
| |
| extern "C" inline void SegvHandler(int sig, [[maybe_unused]] siginfo_t *info, [[maybe_unused]] void *secret) { |
| ERROR("Ooops! Apache Kvrocks {} got signal: {} ({})", PrintVersion(), strsignal(sig), sig); |
| auto trace = cpptrace::generate_trace(); |
| |
| std::string trace_str; |
| std::ostringstream os(trace_str); |
| trace.print(os); |
| |
| ERROR("{}", os.str()); |
| ERROR( |
| "It would be greatly appreciated if you could submit this crash to https://github.com/apache/kvrocks/issues " |
| "along with the stacktrace above, logs and any relevant information."); |
| |
| struct sigaction act; |
| /* Make sure we exit with the right signal at the end. So for instance |
| * the core will be dumped if enabled. |
| */ |
| sigemptyset(&act.sa_mask); |
| /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction |
| * is used. Otherwise, sa_handler is used |
| */ |
| act.sa_flags = SA_NODEFER | SA_ONSTACK | SA_RESETHAND; |
| act.sa_handler = SIG_DFL; |
| sigaction(sig, &act, nullptr); |
| kill(getpid(), sig); |
| } |
| |
| inline void SetupSigSegvAction(void (*handler)(int)) { |
| struct sigaction act; |
| |
| sigemptyset(&act.sa_mask); |
| /* When the SA_SIGINFO flag is set in sa_flags then sa_sigaction |
| * is used. Otherwise, sa_handler is used */ |
| act.sa_flags = SA_NODEFER | SA_ONSTACK | SA_RESETHAND | SA_SIGINFO; |
| act.sa_sigaction = SegvHandler; |
| sigaction(SIGSEGV, &act, nullptr); |
| sigaction(SIGBUS, &act, nullptr); |
| sigaction(SIGFPE, &act, nullptr); |
| sigaction(SIGILL, &act, nullptr); |
| sigaction(SIGABRT, &act, nullptr); |
| |
| act.sa_flags = SA_NODEFER | SA_ONSTACK | SA_RESETHAND; |
| act.sa_handler = handler; |
| sigaction(SIGTERM, &act, nullptr); |
| sigaction(SIGINT, &act, nullptr); |
| } |