blob: 0633748bfbcb69548731650c6e8a59d437ed6507 [file] [log] [blame]
Elliott Hughesc7e9b232013-10-16 22:27:54 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29#include <signal.h>
30
Elliott Hughes7dc2b7b2014-09-10 15:20:40 -070031extern "C" void __restore_rt(void);
32extern "C" void __restore(void);
33
Elliott Hughese5e61a02014-09-16 15:49:50 -070034#if defined(__LP64__)
35
Elliott Hughesc7e9b232013-10-16 22:27:54 -070036extern "C" int __rt_sigaction(int, const struct __kernel_sigaction*, struct __kernel_sigaction*, size_t);
Elliott Hughesc7e9b232013-10-16 22:27:54 -070037
38int sigaction(int signal, const struct sigaction* bionic_new_action, struct sigaction* bionic_old_action) {
Elliott Hughesc7e9b232013-10-16 22:27:54 -070039 __kernel_sigaction kernel_new_action;
40 if (bionic_new_action != NULL) {
41 kernel_new_action.sa_flags = bionic_new_action->sa_flags;
42 kernel_new_action.sa_handler = bionic_new_action->sa_handler;
43 kernel_new_action.sa_mask = bionic_new_action->sa_mask;
Elliott Hughese5e61a02014-09-16 15:49:50 -070044#if defined(SA_RESTORER)
Elliott Hughesc7e9b232013-10-16 22:27:54 -070045 kernel_new_action.sa_restorer = bionic_new_action->sa_restorer;
Elliott Hughese5e61a02014-09-16 15:49:50 -070046#if defined(__aarch64__)
47 // arm64 has sa_restorer, but unwinding works best if you just let the
48 // kernel supply the default restorer from [vdso]. gdb doesn't care, but
49 // libgcc needs the nop that the kernel includes before the actual code.
50 // (We could add that ourselves, but why bother?)
51#else
Elliott Hughesc7e9b232013-10-16 22:27:54 -070052 if (!(kernel_new_action.sa_flags & SA_RESTORER)) {
53 kernel_new_action.sa_flags |= SA_RESTORER;
Elliott Hughes7dc2b7b2014-09-10 15:20:40 -070054 kernel_new_action.sa_restorer = &__restore_rt;
Elliott Hughesc7e9b232013-10-16 22:27:54 -070055 }
Chris Dearman46f3db62014-01-30 20:01:19 -080056#endif
Elliott Hughese5e61a02014-09-16 15:49:50 -070057#endif
Elliott Hughesc7e9b232013-10-16 22:27:54 -070058 }
59
60 __kernel_sigaction kernel_old_action;
61 int result = __rt_sigaction(signal,
62 (bionic_new_action != NULL) ? &kernel_new_action : NULL,
63 (bionic_old_action != NULL) ? &kernel_old_action : NULL,
64 sizeof(sigset_t));
65
66 if (bionic_old_action != NULL) {
67 bionic_old_action->sa_flags = kernel_old_action.sa_flags;
68 bionic_old_action->sa_handler = kernel_old_action.sa_handler;
69 bionic_old_action->sa_mask = kernel_old_action.sa_mask;
Elliott Hughese5e61a02014-09-16 15:49:50 -070070#if defined(SA_RESTORER)
Elliott Hughesc7e9b232013-10-16 22:27:54 -070071 bionic_old_action->sa_restorer = kernel_old_action.sa_restorer;
Chris Dearman46f3db62014-01-30 20:01:19 -080072#endif
Elliott Hughesc7e9b232013-10-16 22:27:54 -070073 }
74
75 return result;
Elliott Hughese5e61a02014-09-16 15:49:50 -070076}
77
Elliott Hughesc7e9b232013-10-16 22:27:54 -070078#else
Elliott Hughese5e61a02014-09-16 15:49:50 -070079
80extern "C" int __sigaction(int, const struct sigaction*, struct sigaction*);
81
82int sigaction(int signal, const struct sigaction* bionic_new_action, struct sigaction* bionic_old_action) {
83 // The 32-bit ABI is broken. struct sigaction includes a too-small sigset_t,
84 // so we have to use sigaction(2) rather than rt_sigaction(2).
Elliott Hughes7dc2b7b2014-09-10 15:20:40 -070085 struct sigaction kernel_new_action;
86 if (bionic_new_action != NULL) {
87 kernel_new_action.sa_flags = bionic_new_action->sa_flags;
88 kernel_new_action.sa_handler = bionic_new_action->sa_handler;
89 kernel_new_action.sa_mask = bionic_new_action->sa_mask;
Elliott Hughese5e61a02014-09-16 15:49:50 -070090#if defined(SA_RESTORER)
Elliott Hughes7dc2b7b2014-09-10 15:20:40 -070091 kernel_new_action.sa_restorer = bionic_new_action->sa_restorer;
92
93 if (!(kernel_new_action.sa_flags & SA_RESTORER)) {
94 kernel_new_action.sa_flags |= SA_RESTORER;
95 kernel_new_action.sa_restorer = (kernel_new_action.sa_flags & SA_SIGINFO) ? &__restore_rt : &__restore;
96 }
97#endif
98 }
99 return __sigaction(signal, (bionic_new_action != NULL) ? &kernel_new_action : NULL, bionic_old_action);
Elliott Hughesc7e9b232013-10-16 22:27:54 -0700100}
Elliott Hughese5e61a02014-09-16 15:49:50 -0700101
102#endif