forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstress-sigabrt.c
153 lines (132 loc) · 4.14 KB
/
stress-sigabrt.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
* Copyright (C) 2013-2021 Canonical, Ltd.
* Copyright (C) 2022 Colin Ian King.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "stress-ng.h"
static const stress_help_t help[] = {
{ NULL, "sigabrt N", "start N workers generating segmentation faults" },
{ NULL, "sigabrt-ops N", "stop after N bogo segmentation faults" },
{ NULL, NULL, NULL }
};
typedef struct {
volatile bool handler_enabled; /* True if using a SIGABRT handler */
volatile bool signalled; /* True if handler handled SIGABRT */
} stress_sigabrt_info_t;
static volatile stress_sigabrt_info_t *sigabrt_info;
static void MLOCKED_TEXT stress_sigabrt_handler(int num)
{
(void)num;
if (sigabrt_info) /* Should always be not null */
sigabrt_info->signalled = true;
}
/*
* stress_sigabrt
* stress by generating segmentation faults by
* writing to a read only page
*/
static int stress_sigabrt(const stress_args_t *args)
{
void *sigabrt_mapping;
if (stress_sighandler(args->name, SIGABRT, stress_sigabrt_handler, NULL) < 0)
return EXIT_NO_RESOURCE;
sigabrt_mapping = mmap(NULL, args->page_size,
PROT_READ | PROT_WRITE,
MAP_SHARED | MAP_ANONYMOUS,
-1, 0);
if (sigabrt_mapping == MAP_FAILED) {
pr_inf("%s: failed to mmap shared page, errno=%d (%s)\n",
args->name, errno, strerror(errno));
return EXIT_NO_RESOURCE;
}
sigabrt_info = (stress_sigabrt_info_t *)sigabrt_mapping;
stress_set_proc_state(args->name, STRESS_STATE_RUN);
do {
pid_t pid;
(void)stress_mwc32();
sigabrt_info->signalled = false;
sigabrt_info->handler_enabled = stress_mwc1();
again:
pid = fork();
if (pid < 0) {
if (stress_redo_fork(errno))
goto again;
if (!keep_stressing(args))
goto finish;
pr_fail("%s: fork failed: %d (%s)\n",
args->name, errno, strerror(errno));
return EXIT_FAILURE;
} else if (pid == 0) {
/* Randomly select death by abort or SIGABRT */
if (sigabrt_info->handler_enabled) {
VOID_RET(int, stress_sighandler(args->name, SIGABRT, stress_sigabrt_handler, NULL));
/*
* Aborting with a handler will call the handler, the handler will
* then be disabled and a second SIGABRT will occur causing the
* abort.
*/
abort();
/* Should never get here */
} else {
(void)stress_sighandler_default(SIGABRT);
/* Raising SIGABRT without an handler will abort */
raise(SIGABRT);
}
_exit(EXIT_FAILURE);
} else {
int ret, status;
rewait:
ret = shim_waitpid(pid, &status, 0);
if (ret < 0) {
if (errno == EINTR) {
goto rewait;
}
pr_fail("%s: waitpid failed: %d (%s)\n",
args->name, errno, strerror(errno));
} else {
if (WIFSIGNALED(status) &&
(WTERMSIG(status) == SIGABRT)) {
if (sigabrt_info->handler_enabled) {
if (sigabrt_info->signalled == false) {
pr_fail("%s SIGABORT signal handler did not get called\n",
args->name);
}
} else {
if (sigabrt_info->signalled == true) {
pr_fail("%s SIGABORT signal handler was unexpectedly called\n",
args->name);
}
}
inc_counter(args);
} else if (WIFEXITED(status)) {
pr_fail("%s: child did not abort as expected\n",
args->name);
}
}
}
} while (keep_stressing(args));
finish:
stress_set_proc_state(args->name, STRESS_STATE_DEINIT);
(void)munmap((void *)sigabrt_mapping, args->page_size);
return EXIT_SUCCESS;
}
stressor_info_t stress_sigabrt_info = {
.stressor = stress_sigabrt,
.class = CLASS_INTERRUPT | CLASS_OS,
.verify = VERIFY_ALWAYS,
.help = help
};