-
Notifications
You must be signed in to change notification settings - Fork 2
/
quark-mon.c
261 lines (228 loc) · 5.62 KB
/
quark-mon.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
253
254
255
256
257
258
259
260
261
// SPDX-License-Identifier: Apache-2.0
/* Copyright (c) 2024 Elastic NV */
#include <err.h>
#include <errno.h>
#include <grp.h>
#include <pwd.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <unistd.h>
#include <sys/wait.h>
#include "quark.h"
#define MAN_QUARK_MON
#include "manpages.h"
static int gotsigint;
static void
dump_stats(struct quark_queue *qq)
{
struct quark_queue_stats s;
quark_queue_get_stats(qq, &s);
printf("%8llu insertions %8llu removals %8llu aggregations "
"%8llu non-aggregations %8llu lost\n",
s.insertions, s.removals, s.aggregations,
s.non_aggregations, s.lost);
}
static const char *
fetch_backend(struct quark_queue *qq)
{
struct quark_queue_stats s;
quark_queue_get_stats(qq, &s);
return (s.backend == QQ_EBPF ? "ebpf" :
s.backend == QQ_KPROBE ? "kprobe" :
"invalid");
}
static void
sigint_handler(int sig)
{
gotsigint = 1;
}
static void
priv_drop(void)
{
#ifdef NO_PRIVDROP
err(1, "built with NO_PRIVDROP");
#else
struct passwd *pw;
/* getpwnam_r is too painful for a demo */
if ((pw = getpwnam("nobody")) == NULL)
err(1, "getpwnam");
/* chroot */
if (chroot("/var/empty") == -1)
err(1, "chroot");
if (chdir("/") == -1)
err(1, "chdir");
/* setproctitle would be here */
/* become the weakling */
if (setgroups(1, &pw->pw_gid) ||
setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) ||
setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid))
err(1, "error dropping privileges");
#endif
}
static void
display_version(void)
{
printf("%s-%s\n", program_invocation_short_name, QUARK_VERSION);
printf("License: Apache-2.0\n");
printf("Copyright (c) 2024 Elastic NV\n");
exit(0);
}
static void
usage(void)
{
fprintf(stderr, "usage: %s -h\n", program_invocation_short_name);
fprintf(stderr, "usage: %s [-bDefkstv] "
"[-C filename ] [-l maxlength] [-m maxnodes]\n",
program_invocation_short_name);
fprintf(stderr, "usage: %s -V\n", program_invocation_short_name);
exit(1);
}
int
main(int argc, char *argv[])
{
int ch, maxnodes, n, i;
int do_priv_drop, nqevs;
struct quark_queue *qq;
struct quark_queue_attr qa;
struct quark_event *qev, *qevs;
struct sigaction sigact;
FILE *graph_by_time, *graph_by_pidtime, *graph_cache;
quark_queue_default_attr(&qa);
qa.flags &= ~QQ_ALL_BACKENDS;
maxnodes = -1;
do_priv_drop = 0;
nqevs = 32;
graph_by_time = graph_by_pidtime = graph_cache = NULL;
while ((ch = getopt(argc, argv, "bC:Deghklm:tsvV")) != -1) {
const char *errstr;
switch (ch) {
case 'b':
qa.flags |= QQ_EBPF;
break;
case 'C':
graph_cache = fopen(optarg, "w");
if (graph_cache == NULL)
err(1, "fopen %s", optarg);
break;
case 'D':
do_priv_drop = 1;
break;
case 'e':
qa.flags |= QQ_ENTRY_LEADER;
break;
case 'g':
qa.flags |= QQ_MIN_AGG;
break;
case 'h':
if (isatty(STDOUT_FILENO))
display_man();
else
usage();
break; /* NOTREACHED */
case 'k':
qa.flags |= QQ_KPROBE;
break;
case 'l':
if (optarg == NULL)
usage();
qa.max_length = strtonum(optarg, 1, INTMAX_MAX,
&errstr);
if (errstr != NULL)
errx(1, "invalid max length: %s", errstr);
break;
case 'm':
if (optarg == NULL)
usage();
maxnodes = strtonum(optarg, 1, 2000000, &errstr);
if (errstr != NULL)
errx(1, "invalid maxnodes: %s", errstr);
/* open graphviz files before priv_drop */
graph_by_time = fopen("quark_by_time.dot", "w");
if (graph_by_time == NULL)
err(1, "fopen");
graph_by_pidtime = fopen("quark_by_pidtime.dot", "w");
if (graph_by_pidtime == NULL)
err(1, "fopen");
break;
case 's':
qa.flags |= QQ_NO_SNAPSHOT;
break;
case 't':
qa.flags |= QQ_THREAD_EVENTS;
break;
case 'v':
quark_verbose++;
break;
case 'V':
display_version();
break;
default:
usage();
}
}
if ((qa.flags & QQ_ALL_BACKENDS) == 0)
qa.flags |= QQ_ALL_BACKENDS;
bzero(&sigact, sizeof(sigact));
sigact.sa_flags = SA_RESTART | SA_RESETHAND;
sigact.sa_handler = &sigint_handler;
if (sigaction(SIGINT, &sigact, NULL) == -1)
err(1, "sigaction");
if ((qq = calloc(1, sizeof(*qq))) == NULL)
err(1, "calloc");
if (quark_queue_open(qq, &qa) != 0)
err(1, "quark_queue_open");
if ((qevs = calloc(nqevs, sizeof(*qevs))) == NULL)
err(1, "calloc");
if (quark_verbose)
printf("using %s for backend\n", fetch_backend(qq));
/* From now on we will be nobody */
if (do_priv_drop)
priv_drop();
/*
* Debug mode, let the tree grow to >= maxnodes and bail, without
* popping nodes
*/
while (!gotsigint && maxnodes != -1 && qq->length < maxnodes) {
quark_queue_populate(qq);
quark_queue_block(qq);
}
/*
* Normal mode, collect, pop and dump elements until we get a sigint
*/
while (!gotsigint && maxnodes == -1) {
n = quark_queue_get_events(qq, qevs, nqevs);
if (n == -1)
err(1, "quark_queue_get_events");
/* Scan each event */
for (i = 0, qev = qevs; i < n; i++, qev++)
quark_event_dump(qev, stdout);
/* No events, just block */
if (n == 0) {
if (quark_queue_block(qq) == -1 && errno != EINTR)
err(1, "quark_queue_block");
continue;
}
}
if (graph_by_pidtime != NULL && graph_by_time != NULL) {
if (quark_dump_raw_event_graph(qq, graph_by_time,
graph_by_pidtime) == -1)
warn("quark_dump_raw_event_graph");
fclose(graph_by_time);
fclose(graph_by_pidtime);
graph_by_time = graph_by_pidtime = NULL;
}
if (graph_cache != NULL) {
if (quark_dump_process_cache_graph(qq, graph_cache) == -1)
warn("quark_dump_event_cache_graph");
fclose(graph_cache);
graph_cache = NULL;
}
free(qevs);
dump_stats(qq);
quark_queue_close(qq);
free(qq);
return (0);
}