blob: d9d2eaf6fef992aea8e2f9985139e7b89b103b78 [file] [log] [blame]
Dave Allisonf4b80bc2014-05-14 15:41:25 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Bilyan Borisovbb661c02016-04-04 16:27:32 +010017#ifdef ART_TARGET_ANDROID
Dave Allisonf4b80bc2014-05-14 15:41:25 -070018#include <android/log.h>
Dave Allison69dfe512014-07-11 17:11:58 +000019#else
20#include <stdarg.h>
21#include <iostream>
22#endif
23
Dave Allisonf4b80bc2014-05-14 15:41:25 -070024#include <dlfcn.h>
25#include <signal.h>
26#include <stdio.h>
27#include <stdlib.h>
Josh Gao85a78cf2017-03-20 16:26:42 -070028
29#include <utility>
Dave Allisonf4b80bc2014-05-14 15:41:25 -070030
Dave Allisoncefcea82014-09-16 10:01:01 -070031#include "sigchain.h"
32
Dave Allison69dfe512014-07-11 17:11:58 +000033#if defined(__APPLE__)
34#define _NSIG NSIG
Dave Allison38680092014-08-29 12:29:34 -070035#define sighandler_t sig_t
Josh Gaodd241ae2017-03-20 14:17:23 -070036
37// Darwin has an #error when ucontext.h is included without _XOPEN_SOURCE defined.
38#define _XOPEN_SOURCE
Dave Allison69dfe512014-07-11 17:11:58 +000039#endif
40
Josh Gaodd241ae2017-03-20 14:17:23 -070041#include <ucontext.h>
42
Josh Gao85a78cf2017-03-20 16:26:42 -070043// libsigchain provides an interception layer for signal handlers, to allow ART and others to give
44// their signal handlers the first stab at handling signals before passing them on to user code.
45//
46// It implements wrapper functions for signal, sigaction, and sigprocmask, and a handler that
47// forwards signals appropriately.
48//
49// In our handler, we start off with all signals blocked, fetch the original signal mask from the
50// passed in ucontext, and then adjust our signal mask appropriately for the user handler.
51//
52// It's somewhat tricky for us to properly handle some flag cases:
53// SA_NOCLDSTOP and SA_NOCLDWAIT: shouldn't matter, we don't have special handlers for SIGCHLD.
54// SA_NODEFER: unimplemented, we can manually change the signal mask appropriately.
55// ~SA_ONSTACK: always silently enable this
56// SA_RESETHAND: unimplemented, but we can probably do this?
57// ~SA_RESTART: unimplemented, maybe we can reserve an RT signal, register an empty handler that
58// doesn't have SA_RESTART, and raise the signal to avoid restarting syscalls that are
59// expected to be interrupted?
Dave Allisonf4b80bc2014-05-14 15:41:25 -070060
Dave Allisonf4b80bc2014-05-14 15:41:25 -070061
62static void log(const char* format, ...) {
63 char buf[256];
64 va_list ap;
65 va_start(ap, format);
66 vsnprintf(buf, sizeof(buf), format, ap);
Bilyan Borisovbb661c02016-04-04 16:27:32 +010067#ifdef ART_TARGET_ANDROID
Dave Allisonf4b80bc2014-05-14 15:41:25 -070068 __android_log_write(ANDROID_LOG_ERROR, "libsigchain", buf);
Dave Allison69dfe512014-07-11 17:11:58 +000069#else
70 std::cout << buf << "\n";
71#endif
Dave Allisonf4b80bc2014-05-14 15:41:25 -070072 va_end(ap);
73}
74
Josh Gao85a78cf2017-03-20 16:26:42 -070075#define fatal(...) log(__VA_ARGS__); abort()
Josh Gao7600fa92017-03-15 17:40:42 -070076
Josh Gao85a78cf2017-03-20 16:26:42 -070077static int sigorset(sigset_t* dest, sigset_t* left, sigset_t* right) {
78 sigemptyset(dest);
79 for (size_t i = 0; i < sizeof(sigset_t) * CHAR_BIT; ++i) {
80 if (sigismember(left, i) == 1 || sigismember(right, i) == 1) {
81 sigaddset(dest, i);
Dave Allisonf4b80bc2014-05-14 15:41:25 -070082 }
Josh Gao85a78cf2017-03-20 16:26:42 -070083 }
84 return 0;
85}
86
87namespace art {
88
89static decltype(&sigaction) linked_sigaction;
90static decltype(&sigprocmask) linked_sigprocmask;
91__thread bool handling_signal;
92
93class SignalChain {
94 public:
95 SignalChain() : claimed_(false) {
Jin Qian33dca562017-03-18 02:51:37 +000096 }
97
Josh Gao85a78cf2017-03-20 16:26:42 -070098 bool IsClaimed() {
99 return claimed_;
100 }
101
102 void Claim(int signo) {
103 if (!claimed_) {
104 Register(signo);
105 claimed_ = true;
Jin Qian33dca562017-03-18 02:51:37 +0000106 }
Josh Gao85a78cf2017-03-20 16:26:42 -0700107 }
108
109 // Register the signal chain with the kernel if needed.
110 void Register(int signo) {
111 struct sigaction handler_action = {};
112 handler_action.sa_sigaction = SignalChain::Handler;
113 handler_action.sa_flags = SA_RESTART | SA_SIGINFO | SA_ONSTACK;
114 sigfillset(&handler_action.sa_mask);
115 linked_sigaction(signo, &handler_action, &action_);
116 }
117
118 void SetAction(const struct sigaction* action) {
119 action_ = *action;
120 }
121
122 struct sigaction GetAction() {
123 return action_;
124 }
125
126 void AddSpecialHandler(SpecialSignalHandlerFn fn) {
127 for (SpecialSignalHandlerFn& slot : special_handlers_) {
128 if (slot == nullptr) {
129 slot = fn;
130 return;
131 }
132 }
133
134 fatal("too many special signal handlers");
135 }
136
137 void RemoveSpecialHandler(SpecialSignalHandlerFn fn) {
138 // This isn't thread safe, but it's unlikely to be a real problem.
139 size_t len = sizeof(special_handlers_)/sizeof(*special_handlers_);
140 for (size_t i = 0; i < len; ++i) {
141 if (special_handlers_[i] == fn) {
142 for (size_t j = i; j < len - 1; ++j) {
143 special_handlers_[j] = special_handlers_[j + 1];
144 }
145 special_handlers_[len - 1] = nullptr;
146 return;
147 }
148 }
149
150 fatal("failed to find special handler to remove");
151 }
152
153
154 static void Handler(int signo, siginfo_t* siginfo, void*);
155
156 private:
157 bool claimed_;
158 struct sigaction action_;
159 SpecialSignalHandlerFn special_handlers_[2];
160};
161
162static SignalChain chains[_NSIG];
163
164class ScopedFlagSetter {
165 public:
166 explicit ScopedFlagSetter(bool* flag) : flag_(flag) {
167 *flag_ = true;
168 }
169
170 ~ScopedFlagSetter() {
171 *flag_ = false;
172 }
173
174 private:
175 bool* flag_;
176};
177
178class ScopedSignalUnblocker {
179 public:
180 explicit ScopedSignalUnblocker(const std::initializer_list<int>& signals) {
181 sigset_t new_mask;
182 sigemptyset(&new_mask);
183 for (int signal : signals) {
184 sigaddset(&new_mask, signal);
185 }
186 if (sigprocmask(SIG_UNBLOCK, &new_mask, &previous_mask_) != 0) {
187 fatal("failed to unblock signals: %s", strerror(errno));
188 }
189 }
190
191 ~ScopedSignalUnblocker() {
192 if (sigprocmask(SIG_SETMASK, &previous_mask_, nullptr) != 0) {
193 fatal("failed to unblock signals: %s", strerror(errno));
194 }
195 }
196
197 private:
198 sigset_t previous_mask_;
199};
200
201
202void SignalChain::Handler(int signo, siginfo_t* siginfo, void* ucontext_raw) {
203 // Try the special handlers first.
204 // If one of them crashes, we'll reenter this handler and pass that crash onto the user handler.
205 if (!handling_signal) {
206 ScopedFlagSetter flag(&handling_signal);
207 ScopedSignalUnblocker unblocked { SIGABRT, SIGSEGV, SIGBUS }; // NOLINT
208
209 for (const auto& handler : chains[signo].special_handlers_) {
210 if (handler != nullptr && handler(signo, siginfo, ucontext_raw)) {
211 return;
212 }
213 }
214 }
215
216 // Forward to the user's signal handler.
217 int handler_flags = chains[signo].action_.sa_flags;
218 ucontext_t* ucontext = static_cast<ucontext_t*>(ucontext_raw);
219 sigset_t mask;
220 sigorset(&mask, &ucontext->uc_sigmask, &chains[signo].action_.sa_mask);
221 if ((handler_flags & SA_NODEFER)) {
222 sigdelset(&mask, signo);
223 }
224 sigprocmask(SIG_SETMASK, &mask, nullptr);
225
226 if ((handler_flags & SA_SIGINFO)) {
227 chains[signo].action_.sa_sigaction(signo, siginfo, ucontext_raw);
Jin Qian33dca562017-03-18 02:51:37 +0000228 } else {
Josh Gao85a78cf2017-03-20 16:26:42 -0700229 auto handler = chains[signo].action_.sa_handler;
230 if (handler == SIG_IGN) {
231 return;
232 } else if (handler == SIG_DFL) {
233 raise(signo);
Jin Qian33dca562017-03-18 02:51:37 +0000234 } else {
Josh Gao85a78cf2017-03-20 16:26:42 -0700235 handler(signo);
Jin Qian33dca562017-03-18 02:51:37 +0000236 }
237 }
238}
239
Dmitriy Ivanovf57874d2014-10-07 13:43:23 -0700240extern "C" int sigaction(int signal, const struct sigaction* new_action, struct sigaction* old_action) {
Dave Allisonf4b80bc2014-05-14 15:41:25 -0700241 // If this signal has been claimed as a signal chain, record the user's
242 // action but don't pass it on to the kernel.
243 // Note that we check that the signal number is in range here. An out of range signal
244 // number should behave exactly as the libc sigaction.
Josh Gao85a78cf2017-03-20 16:26:42 -0700245 if (signal < 0 || signal >= _NSIG) {
246 errno = EINVAL;
247 return -1;
248 }
249
250 if (chains[signal].IsClaimed() && new_action != nullptr) {
251 struct sigaction saved_action = chains[signal].GetAction();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700252 if (new_action != nullptr) {
Josh Gao85a78cf2017-03-20 16:26:42 -0700253 chains[signal].SetAction(new_action);
Dave Allisonf4b80bc2014-05-14 15:41:25 -0700254 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700255 if (old_action != nullptr) {
Dmitriy Ivanovc01683b2015-01-06 14:55:26 -0800256 *old_action = saved_action;
257 }
Dave Allisonf4b80bc2014-05-14 15:41:25 -0700258 return 0;
259 }
260
261 // Will only get here if the signal chain has not been claimed. We want
262 // to pass the sigaction on to the kernel via the real sigaction in libc.
Josh Gao85a78cf2017-03-20 16:26:42 -0700263 InitializeSignalChain();
Dave Allisonf4b80bc2014-05-14 15:41:25 -0700264 return linked_sigaction(signal, new_action, old_action);
265}
266
Josh Gao85a78cf2017-03-20 16:26:42 -0700267extern "C" sighandler_t signal(int signo, sighandler_t handler) {
268 if (signo < 0 || signo > _NSIG) {
269 errno = EINVAL;
270 return SIG_ERR;
271 }
272
273 struct sigaction sa = {};
Dave Allison91a83662014-08-28 16:12:40 -0700274 sigemptyset(&sa.sa_mask);
275 sa.sa_handler = handler;
Josh Gao85a78cf2017-03-20 16:26:42 -0700276 sa.sa_flags = SA_RESTART | SA_ONSTACK;
Dave Allison91a83662014-08-28 16:12:40 -0700277 sighandler_t oldhandler;
278
279 // If this signal has been claimed as a signal chain, record the user's
280 // action but don't pass it on to the kernel.
Josh Gao85a78cf2017-03-20 16:26:42 -0700281 if (chains[signo].IsClaimed()) {
282 oldhandler = reinterpret_cast<sighandler_t>(chains[signo].GetAction().sa_handler);
283 chains[signo].SetAction(&sa);
Dave Allison91a83662014-08-28 16:12:40 -0700284 return oldhandler;
285 }
286
287 // Will only get here if the signal chain has not been claimed. We want
288 // to pass the sigaction on to the kernel via the real sigaction in libc.
Josh Gao85a78cf2017-03-20 16:26:42 -0700289 InitializeSignalChain();
290 if (linked_sigaction(signo, &sa, &sa) == -1) {
Dave Allison91a83662014-08-28 16:12:40 -0700291 return SIG_ERR;
292 }
293
294 return reinterpret_cast<sighandler_t>(sa.sa_handler);
295}
296
Dimitry Ivanov82b67b92016-08-01 11:19:03 -0700297#if !defined(__LP64__)
Josh Gao85a78cf2017-03-20 16:26:42 -0700298extern "C" sighandler_t bsd_signal(int signo, sighandler_t handler) {
299 return signal(signo, handler);
Dimitry Ivanov82b67b92016-08-01 11:19:03 -0700300}
301#endif
302
Dmitriy Ivanovf57874d2014-10-07 13:43:23 -0700303extern "C" int sigprocmask(int how, const sigset_t* bionic_new_set, sigset_t* bionic_old_set) {
Dave Allisonf4b80bc2014-05-14 15:41:25 -0700304 const sigset_t* new_set_ptr = bionic_new_set;
305 sigset_t tmpset;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700306 if (bionic_new_set != nullptr) {
Dave Allisonf4b80bc2014-05-14 15:41:25 -0700307 tmpset = *bionic_new_set;
308
309 if (how == SIG_BLOCK) {
310 // Don't allow claimed signals in the mask. If a signal chain has been claimed
311 // we can't allow the user to block that signal.
312 for (int i = 0 ; i < _NSIG; ++i) {
Josh Gao85a78cf2017-03-20 16:26:42 -0700313 if (chains[i].IsClaimed() && sigismember(&tmpset, i)) {
Dmitriy Ivanova3164b92015-04-01 11:08:45 -0700314 sigdelset(&tmpset, i);
Dave Allisonf4b80bc2014-05-14 15:41:25 -0700315 }
316 }
317 }
318 new_set_ptr = &tmpset;
319 }
320
Josh Gao85a78cf2017-03-20 16:26:42 -0700321 InitializeSignalChain();
Dave Allisonf4b80bc2014-05-14 15:41:25 -0700322 return linked_sigprocmask(how, new_set_ptr, bionic_old_set);
323}
Dave Allisoncefcea82014-09-16 10:01:01 -0700324
Dmitriy Ivanovf57874d2014-10-07 13:43:23 -0700325extern "C" void InitializeSignalChain() {
Dave Allisoncefcea82014-09-16 10:01:01 -0700326 // Warning.
327 // Don't call this from within a signal context as it makes calls to
328 // dlsym. Calling into the dynamic linker will result in locks being
329 // taken and if it so happens that a signal occurs while one of these
330 // locks is already taken, dlsym will block trying to reenter a
331 // mutex and we will never get out of it.
Josh Gao85a78cf2017-03-20 16:26:42 -0700332 static bool initialized = false;
Dave Allisoncefcea82014-09-16 10:01:01 -0700333 if (initialized) {
334 // Don't initialize twice.
335 return;
336 }
Josh Gao85a78cf2017-03-20 16:26:42 -0700337
338 void* linked_sigaction_sym = dlsym(RTLD_NEXT, "sigaction");
Dave Allisoncefcea82014-09-16 10:01:01 -0700339 if (linked_sigaction_sym == nullptr) {
340 linked_sigaction_sym = dlsym(RTLD_DEFAULT, "sigaction");
341 if (linked_sigaction_sym == nullptr ||
Dmitriy Ivanova3164b92015-04-01 11:08:45 -0700342 linked_sigaction_sym == reinterpret_cast<void*>(sigaction)) {
Josh Gao85a78cf2017-03-20 16:26:42 -0700343 fatal("Unable to find next sigaction in signal chain");
Dave Allisoncefcea82014-09-16 10:01:01 -0700344 }
345 }
346
Josh Gao85a78cf2017-03-20 16:26:42 -0700347 void* linked_sigprocmask_sym = dlsym(RTLD_NEXT, "sigprocmask");
Dave Allisoncefcea82014-09-16 10:01:01 -0700348 if (linked_sigprocmask_sym == nullptr) {
349 linked_sigprocmask_sym = dlsym(RTLD_DEFAULT, "sigprocmask");
350 if (linked_sigprocmask_sym == nullptr ||
351 linked_sigprocmask_sym == reinterpret_cast<void*>(sigprocmask)) {
Josh Gao85a78cf2017-03-20 16:26:42 -0700352 fatal("Unable to find next sigprocmask in signal chain");
Dave Allisoncefcea82014-09-16 10:01:01 -0700353 }
354 }
Josh Gao85a78cf2017-03-20 16:26:42 -0700355
356 linked_sigaction = reinterpret_cast<decltype(linked_sigaction)>(linked_sigaction_sym);
357 linked_sigprocmask = reinterpret_cast<decltype(linked_sigprocmask)>(linked_sigprocmask_sym);
Dave Allisoncefcea82014-09-16 10:01:01 -0700358 initialized = true;
359}
Mathieu Chartierd0004802014-10-15 16:59:47 -0700360
Josh Gao85a78cf2017-03-20 16:26:42 -0700361extern "C" void AddSpecialSignalHandlerFn(int signal, SpecialSignalHandlerFn fn) {
362 if (signal <= 0 || signal >= _NSIG) {
363 fatal("Invalid signal %d", signal);
364 }
Andreas Gampe03c2cc82015-05-22 18:31:50 -0700365
366 // Set the managed_handler.
Josh Gao85a78cf2017-03-20 16:26:42 -0700367 chains[signal].AddSpecialHandler(fn);
368 chains[signal].Claim(signal);
369}
Andreas Gampe03c2cc82015-05-22 18:31:50 -0700370
Josh Gao85a78cf2017-03-20 16:26:42 -0700371extern "C" void RemoveSpecialSignalHandlerFn(int signal, SpecialSignalHandlerFn fn) {
372 if (signal <= 0 || signal >= _NSIG) {
373 fatal("Invalid signal %d", signal);
374 }
375
376 chains[signal].RemoveSpecialHandler(fn);
377}
378
379extern "C" void EnsureFrontOfChain(int signal) {
380 if (signal <= 0 || signal >= _NSIG) {
381 fatal("Invalid signal %d", signal);
382 }
383
384 // Read the current action without looking at the chain, it should be the expected action.
385 struct sigaction current_action;
386 InitializeSignalChain();
387 linked_sigaction(signal, nullptr, &current_action);
388 // If the sigactions don't match then we put the current action on the chain and make ourself as
389 // the main action.
390 if (current_action.sa_sigaction != SignalChain::Handler) {
391 log("Warning: Unexpected sigaction action found %p\n", current_action.sa_sigaction);
392 chains[signal].Register(signal);
Andreas Gampe03c2cc82015-05-22 18:31:50 -0700393 }
394}
395
Dave Allisonf4b80bc2014-05-14 15:41:25 -0700396} // namespace art
397