-
Notifications
You must be signed in to change notification settings - Fork 7
/
stress-clock.c
241 lines (220 loc) · 6.45 KB
/
stress-clock.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
/*
* Copyright (C) 2013-2018 Canonical, Ltd.
*
* 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.
*
* This code is a complete clean re-write of the stress tool by
* Colin Ian King <colin.king@canonical.com> and attempts to be
* backwardly compatible with the stress tool by Amos Waterland
* <apw@rossby.metr.ou.edu> but has more stress tests and more
* functionality.
*
*/
#include "stress-ng.h"
#if defined(HAVE_LIB_RT) && (_POSIX_C_SOURCE >= 199309L)
typedef struct {
const int id; /* Clock ID */
const char *name; /* Clock name */
} clock_info_t;
#define CLOCK_INFO(x) { x, #x }
static const clock_info_t clocks[] = {
#if defined(CLOCK_REALTIME)
CLOCK_INFO(CLOCK_REALTIME),
#endif
#if defined(CLOCK_REALTIME_COARSE)
CLOCK_INFO(CLOCK_REALTIME_COARSE),
#endif
#if defined(CLOCK_MONOTONIC)
CLOCK_INFO(CLOCK_MONOTONIC),
#endif
#if defined(CLOCK_MONOTONIC_RAW)
CLOCK_INFO(CLOCK_MONOTONIC_RAW),
#endif
#if defined(CLOCK_BOOTTIME)
CLOCK_INFO(CLOCK_BOOTTIME),
#endif
#if defined(CLOCK_PROCESS_CPUTIME_ID)
CLOCK_INFO(CLOCK_PROCESS_CPUTIME_ID),
#endif
#if defined(CLOCK_THREAD_CPUTIME_ID)
CLOCK_INFO(CLOCK_THREAD_CPUTIME_ID)
#endif
};
#if (_XOPEN_SOURCE >= 600 || _POSIX_C_SOURCE >= 200112L)
static const int clocks_nanosleep[] = {
#if defined(CLOCK_REALTIME)
CLOCK_REALTIME,
#endif
#if defined(CLOCK_MONOTONIC)
CLOCK_MONOTONIC,
#endif
#if defined(CLOCK_THREAD_CPUTIME_ID)
CLOCK_THREAD_CPUTIME_ID
#endif
};
#endif
#if _POSIX_C_SOURCE >= 199309L && defined(__linux__)
static const int timers[] = {
#if defined(CLOCK_REALTIME)
CLOCK_REALTIME,
#endif
#if defined(CLOCK_MONOTONIC)
CLOCK_MONOTONIC,
#endif
#if defined(CLOCK_THREAD_CPUTIME_ID)
CLOCK_THREAD_CPUTIME_ID
#endif
};
#endif
/*
* stress_clock_name()
* clock id to name
*/
static const char *stress_clock_name(int id)
{
size_t i;
for (i = 0; i < SIZEOF_ARRAY(clocks); i++) {
if (clocks[i].id == id)
return clocks[i].name;
}
return "(unknown clock)";
}
/*
* stress_clock()
* stress system by rapid clocking system calls
*/
int stress_clock(const args_t *args)
{
do {
size_t i;
struct timespec t;
int ret;
#if defined(CLOCK_THREAD_CPUTIME_ID) && defined(__linux__) && (_POSIX_C_SOURCE >= 199309L)
/*
* Exercise setting local thread CPU timer
*/
ret = clock_gettime(CLOCK_THREAD_CPUTIME_ID, &t);
if ((ret < 0) && (g_opt_flags & OPT_FLAGS_VERIFY))
pr_fail("%s: clock_gettime failed for "
"timer 'CLOCK_THREAD_CPUTIME_ID', errno=%d (%s)\n",
args->name, errno, strerror(errno));
/*
* According to clock_settime(2), setting the timer
* CLOCK_THREAD_CPUTIME_ID is not possible on Linux.
* Try to set it and ignore the result because it will
* currently return -EINVAL, but it may not do so in the
* future.
*/
ret = clock_settime(CLOCK_THREAD_CPUTIME_ID, &t);
(void)ret;
#endif
/*
* Exercise clock_getres and clock_gettime for each clock
*/
for (i = 0; i < SIZEOF_ARRAY(clocks); i++) {
ret = clock_getres(clocks[i].id, &t);
if ((ret < 0) && (g_opt_flags & OPT_FLAGS_VERIFY))
pr_fail("%s: clock_getres failed for "
"timer '%s', errno=%d (%s)\n",
args->name, clocks[i].name, errno, strerror(errno));
ret = clock_gettime(clocks[i].id, &t);
if ((ret < 0) && (g_opt_flags & OPT_FLAGS_VERIFY))
pr_fail("%s: clock_gettime failed for "
"timer '%s', errno=%d (%s)\n",
args->name, clocks[i].name, errno, strerror(errno));
}
#if (_XOPEN_SOURCE >= 600 || _POSIX_C_SOURCE >= 200112L)
/*
* Exercise clock_nanosleep for each clock
*/
for (i = 0; i < SIZEOF_ARRAY(clocks_nanosleep); i++) {
t.tv_sec = 0;
t.tv_nsec = 25000;
/*
* Calling with TIMER_ABSTIME will force
* clock_nanosleep() to return immediately
*/
ret = clock_nanosleep(clocks_nanosleep[i], TIMER_ABSTIME, &t, NULL);
if ((ret < 0) && (g_opt_flags & OPT_FLAGS_VERIFY))
pr_fail("%s: clock_nanosleep failed for timer '%s', "
"errno=%d (%s)\n", args->name,
stress_clock_name(clocks_nanosleep[i]),
errno, strerror(errno));
}
#endif
#if _POSIX_C_SOURCE >= 199309L && defined(__linux__)
/*
* Stress the timers
*/
for (i = 0; i < SIZEOF_ARRAY(timers); i++) {
timer_t timer_id;
struct itimerspec its;
struct sigevent sevp;
int64_t loops = 1000000;
(void)memset(&sevp, 0, sizeof(sevp));
sevp.sigev_notify = SIGEV_NONE;
ret = timer_create(timers[i], &sevp, &timer_id);
if ((ret < 0) && (g_opt_flags & OPT_FLAGS_VERIFY)) {
pr_fail("%s: timer_create failed for timer '%s', "
"errno=%d (%s)\n", args->name,
stress_clock_name(timers[i]),
errno, strerror(errno));
continue;
}
/* One shot mode, for 50000 ns */
its.it_value.tv_sec = 0;
its.it_value.tv_nsec = 50000;
its.it_interval.tv_sec = 0;
its.it_interval.tv_nsec = 0;
ret = timer_settime(timer_id, 0, &its, NULL);
if ((ret < 0) && (g_opt_flags & OPT_FLAGS_VERIFY)) {
pr_fail("%s: timer_settime failed for timer '%s', "
"errno=%d (%s)\n", args->name,
stress_clock_name(timers[i]),
errno, strerror(errno));
goto timer_delete;
}
do {
ret = timer_gettime(timer_id, &its);
if ((ret < 0) && (g_opt_flags & OPT_FLAGS_VERIFY)) {
pr_fail("%s: timer_gettime failed for timer '%s', "
"errno=%d (%s)\n", args->name,
stress_clock_name(timers[i]),
errno, strerror(errno));
goto timer_delete;
}
loops--;
} while ((loops > 0) && g_keep_stressing_flag && (its.it_value.tv_nsec != 0));
timer_delete:
ret = timer_delete(timer_id);
if ((ret < 0) && (g_opt_flags & OPT_FLAGS_VERIFY)) {
pr_fail("%s: timer_delete failed for timer '%s', "
"errno=%d (%s)\n", args->name,
stress_clock_name(timers[i]),
errno, strerror(errno));
break;
}
}
#endif
inc_counter(args);
} while (keep_stressing());
return EXIT_SUCCESS;
}
#else
int stress_clock(const args_t *args)
{
return stress_not_implemented(args);
}
#endif