forked from strace/strace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
count.c
220 lines (190 loc) · 5.61 KB
/
count.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
/*
* Copyright (c) 1991, 1992 Paul Kranenburg <[email protected]>
* Copyright (c) 1993 Branko Lankester <[email protected]>
* Copyright (c) 1993, 1994, 1995, 1996 Rick Sladkey <[email protected]>
* Copyright (c) 1996-1999 Wichert Akkerman <[email protected]>
* Copyright (c) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
* Linux for s390 port by D.J. Barrow
* Copyright (c) 2004 Roland McGrath <[email protected]>
* Copyright (c) 2006 Dmitry V. Levin <[email protected]>
* Copyright (c) 2006-2018 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "defs.h"
/* Per-syscall stats structure */
struct call_counts {
/* time may be total latency or system time */
struct timespec time;
unsigned int calls, errors;
};
static struct call_counts *countv[SUPPORTED_PERSONALITIES];
#define counts (countv[current_personality])
static const struct timespec zero_ts;
static struct timespec overhead;
void
count_syscall(struct tcb *tcp, const struct timespec *syscall_exiting_ts)
{
if (!scno_in_range(tcp->scno))
return;
if (!counts)
counts = xcalloc(nsyscalls, sizeof(*counts));
struct call_counts *cc = &counts[tcp->scno];
cc->calls++;
if (syserror(tcp))
cc->errors++;
struct timespec wts;
if (count_wallclock) {
/* wall clock time spent while in syscall */
ts_sub(&wts, syscall_exiting_ts, &tcp->etime);
} else {
/* system CPU time spent while in syscall */
ts_sub(&wts, &tcp->stime, &tcp->ltime);
}
ts_sub(&wts, &wts, &overhead);
ts_add(&cc->time, &cc->time, ts_max(&wts, &zero_ts));
}
static int
time_cmp(const void *a, const void *b)
{
const unsigned int *a_int = a;
const unsigned int *b_int = b;
return -ts_cmp(&counts[*a_int].time, &counts[*b_int].time);
}
static int
syscall_cmp(const void *a, const void *b)
{
const unsigned int *a_int = a;
const unsigned int *b_int = b;
const char *a_name = sysent[*a_int].sys_name;
const char *b_name = sysent[*b_int].sys_name;
return strcmp(a_name ? a_name : "", b_name ? b_name : "");
}
static int
count_cmp(const void *a, const void *b)
{
const unsigned int *a_int = a;
const unsigned int *b_int = b;
unsigned int m = counts[*a_int].calls;
unsigned int n = counts[*b_int].calls;
return (m < n) ? 1 : (m > n) ? -1 : 0;
}
static int
error_cmp(const void *a, const void *b)
{
const unsigned int *a_int = a;
const unsigned int *b_int = b;
unsigned int m = counts[*a_int].errors;
unsigned int n = counts[*b_int].errors;
return (m < n) ? 1 : (m > n) ? -1 : 0;
}
static int (*sortfun)(const void *, const void *);
void
set_sortby(const char *sortby)
{
static const struct {
int (*fn)(const void *, const void *);
const char *name;
} sort_fns[] = {
{ time_cmp, "time" },
{ time_cmp, "time_total" },
{ time_cmp, "total_time" },
{ count_cmp, "calls" },
{ count_cmp, "count" },
{ error_cmp, "error" },
{ error_cmp, "errors" },
{ syscall_cmp, "name" },
{ syscall_cmp, "syscall" },
{ syscall_cmp, "syscall_name" },
{ NULL, "none" },
{ NULL, "nothing" },
};
for (size_t i = 0; i < ARRAY_SIZE(sort_fns); ++i) {
if (!strcmp(sort_fns[i].name, sortby)) {
sortfun = sort_fns[i].fn;
return;
}
}
error_msg_and_help("invalid sortby: '%s'", sortby);
}
int
set_overhead(const char *str)
{
return parse_ts(str, &overhead);
}
static void
call_summary_pers(FILE *outf)
{
static const char dashes[] = "----------------";
static const char header[] = "%6.6s %11.11s %11.11s %9.9s %9.9s %s\n";
static const char data[] = "%6.2f %11.6f %11lu %9u %9.u %s\n";
static const char summary[] = "%6.6s %11.6f %11.11s %9u %9.u %s\n";
unsigned int i;
unsigned int call_cum, error_cum;
struct timespec tv_cum, dtv;
double float_tv_cum;
double percent;
unsigned int *sorted_count;
fprintf(outf, header,
"% time", "seconds", "usecs/call",
"calls", "errors", "syscall");
fprintf(outf, header, dashes, dashes, dashes, dashes, dashes, dashes);
sorted_count = xcalloc(sizeof(sorted_count[0]), nsyscalls);
call_cum = error_cum = tv_cum.tv_sec = tv_cum.tv_nsec = 0;
for (i = 0; i < nsyscalls; i++) {
sorted_count[i] = i;
if (counts == NULL || counts[i].calls == 0)
continue;
call_cum += counts[i].calls;
error_cum += counts[i].errors;
ts_add(&tv_cum, &tv_cum, &counts[i].time);
}
float_tv_cum = ts_float(&tv_cum);
if (counts) {
if (sortfun)
qsort((void *) sorted_count, nsyscalls,
sizeof(sorted_count[0]), sortfun);
for (i = 0; i < nsyscalls; i++) {
double float_syscall_time;
unsigned int idx = sorted_count[i];
struct call_counts *cc = &counts[idx];
if (cc->calls == 0)
continue;
ts_div(&dtv, &cc->time, cc->calls);
float_syscall_time = ts_float(&cc->time);
percent = (100.0 * float_syscall_time);
if (percent != 0.0)
percent /= float_tv_cum;
/* else: float_tv_cum can be 0.0 too and we get 0/0 = NAN */
fprintf(outf, data,
percent, float_syscall_time,
(long) (1000000 * dtv.tv_sec + dtv.tv_nsec / 1000),
cc->calls, cc->errors, sysent[idx].sys_name);
}
}
free(sorted_count);
fprintf(outf, header, dashes, dashes, dashes, dashes, dashes, dashes);
fprintf(outf, summary,
"100.00", float_tv_cum, "",
call_cum, error_cum, "total");
}
void
call_summary(FILE *outf)
{
unsigned int i, old_pers = current_personality;
for (i = 0; i < SUPPORTED_PERSONALITIES; ++i) {
if (!countv[i])
continue;
if (current_personality != i)
set_personality(i);
if (i)
fprintf(outf,
"System call usage summary for %s mode:\n",
personality_names[i]);
call_summary_pers(outf);
}
if (old_pers != current_personality)
set_personality(old_pers);
}