forked from ColinIanKing/stress-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
core-interrupts.c
252 lines (217 loc) · 6.37 KB
/
core-interrupts.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/*
* Copyright (C) 2023 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"
#include "core-arch.h"
#include "core-interrupts.h"
#define MSR_SMI_COUNT (0x34)
#define COUNTERS_START (0x00)
#define COUNTERS_STOP (0x01)
typedef void (*pr_func_t)(const char *fmt, ...);
typedef struct {
const char *type; /* /proc/interrupts interrupt name */
const bool check_failure; /* check interrupt delta, flag as failure if > 0 */
const pr_func_t pr_func FORMAT(printf, 1, 2); /* logging function to use */
const char *descr; /* description of interrupt */
} stress_interrupt_info_t;
static const stress_interrupt_info_t info[] = {
{ "MCE:", true, pr_fail, "Machine Check Exception" },
{ "TRM:", false, pr_inf, "Thermal Event Interrupt" },
{ "SPU:", false, pr_warn, "Spurious Interrupt" },
#if defined(STRESS_ARCH_X86)
{ "DFR:", true, pr_fail, "Deferred Error APIC interrupt" },
{ "ERR:", true, pr_fail, "IO-APIC Bus Error" },
{ "SMI:", false, pr_warn, "System Management Interrupt" },
{ "MIS:", true, pr_fail, "IO-APIC Miscount" },
#endif
{ "Err:", true, pr_fail, "Spurious Unhandled Interrupt" }, /* ARM */
};
STRESS_ASSERT(SIZEOF_ARRAY(info) <= STRESS_INTERRUPTS_MAX)
static void stress_interrupts_counter_set(stress_interrupts_t *counters, const size_t i, const uint64_t value, const int which)
{
if (i >= SIZEOF_ARRAY(info))
return;
if (which == COUNTERS_START)
counters[i].count_start = value;
counters[i].count_stop = value;
}
/*
* stress_interrupts_count()
* count up all interrupts for all types
*/
static void stress_interrupts_count(stress_interrupts_t *counters, const int which)
{
FILE *fp;
char buffer[4096];
uint64_t count;
size_t i;
#if defined(STRESS_ARCH_X86)
/*
* Get SMI count, x86 only AND when run as root AND smi driver is installed
*/
for (i = 0; i < SIZEOF_ARRAY(info); i++) {
if (!strncmp("SMI:", info[i].type, 4)) {
unsigned int cpu;
if ((shim_getcpu(&cpu, NULL, NULL) == 0) &&
(stress_x86_smi_readmsr64(cpu, MSR_SMI_COUNT, &count) == 0))
stress_interrupts_counter_set(counters, i, count, which);
break;
}
}
#endif
fp = fopen("/proc/interrupts", "r");
if (!fp)
return;
while (fgets(buffer, sizeof(buffer), fp)) {
for (i = 0; i < SIZEOF_ARRAY(info); i++) {
const char *type = info[i].type;
char *ptr;
/* Find a match */
ptr = strstr(buffer, type);
if (ptr) {
count = 0;
ptr += strlen(type);
for (;;) {
uint64_t val = 0ULL;
/* skip spaces */
while (*ptr == ' ')
ptr++;
if (!*ptr)
break;
/* expecting number, bail otherwise */
if (!isdigit((int)*ptr))
break;
/* get count, sum it */
if (sscanf(ptr, "%" SCNu64, &val) == 1)
count += val;
/* scan over digits */
while (isdigit((int)*ptr))
ptr++;
/* bail if end of string */
if (!*ptr)
break;
}
stress_interrupts_counter_set(counters, i, count, which);
break;
}
}
}
(void)fclose(fp);
}
/*
* stress_interrupts_start()
* count interrupts at start of run
*/
void stress_interrupts_start(stress_interrupts_t *counters)
{
stress_interrupts_count(counters, COUNTERS_START);
}
/*
* stress_interrupts_start()
* count interrupts at stop of run
*/
void stress_interrupts_stop(stress_interrupts_t *counters)
{
stress_interrupts_count(counters, COUNTERS_STOP);
}
/*
* stress_interrupts_check_failure()
* set rc to EXIT_FAILURE and report a failure for failure
* specific interrupts (e.g. MCE machine check error interrupts)
*/
void stress_interrupts_check_failure(const char *name, stress_interrupts_t *counters, uint32_t instance, int *rc)
{
size_t i;
for (i = 0; i < SIZEOF_ARRAY(info); i++) {
if (info[i].check_failure) {
const int64_t delta = counters[i].count_stop - counters[i].count_start;
if (delta > 0) {
if (instance == 0) {
const char *plural = delta > 1 ? "s" : "";
pr_fail("%s: detected at least %" PRId64 " %s%s\n", name, delta, info[i].descr, plural);
}
*rc = EXIT_FAILURE;
}
}
}
}
/*
* stress_interrupt_tolower()
* yaml-ise interrupt description string, replace
* spaces with _ and force to lower case
*/
static inline void stress_interrupt_tolower(char *str)
{
while (*str) {
*str = (*str == ' ') ? '_' : tolower((int)*str);
str++;
}
}
/*
* stress_interrupts_dump()
* dump interrupts report
*/
void stress_interrupts_dump(FILE *yaml, stress_stressor_t *stressors_list)
{
stress_stressor_t *ss;
size_t i;
bool pr_heading = false;
for (ss = stressors_list; ss; ss = ss->next) {
bool pr_nl = false;
bool pr_name = false;
if (ss->ignore.run)
continue;
for (i = 0; i < SIZEOF_ARRAY(info); i++) {
uint64_t total = 0;
int count = 0;
int32_t j;
for (j = 0; j < ss->num_instances; j++) {
const int64_t delta =
ss->stats[j]->interrupts[i].count_stop -
ss->stats[j]->interrupts[i].count_start;
if (delta > 0) {
total += delta;
count++;
}
}
if ((total > 0) && (count > 0)) {
char munged[64];
const double average = round((double)total / (double)count);
const char *plural = average > 1.0 ? "s" : "";
if (!pr_heading) {
pr_yaml(yaml, "interrupts:\n");
pr_heading = true;
}
if (!pr_name) {
(void)stress_munge_underscore(munged, ss->stressor->name, sizeof(munged));
pr_inf("%s:\n", munged);
pr_yaml(yaml, " - stressor: %s\n", munged);
pr_name = true;
}
info[i].pr_func(" %7.0f %s%s%s\n", average, info[i].descr, plural,
info[i].check_failure ? " (Failure)" : "");
(void)shim_strlcpy(munged, info[i].descr, sizeof(munged));
stress_interrupt_tolower(munged);
pr_yaml(yaml, " %s%s: %.0f\n", munged, plural, average);
pr_nl = true;
}
}
if (pr_nl)
pr_yaml(yaml, "\n");
}
}