-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathquark-mon.c
313 lines (274 loc) · 6.44 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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
// 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);
putchar('\n');
printf(
"%14s"
"%14s"
"%14s"
"%14s"
"%14s"
"%14s",
"insertions",
"removals",
"aggs",
"non-aggs",
"lost",
"gc-cols"
);
putchar('\n');
printf(
"%14llu"
"%14llu"
"%14llu"
"%14llu"
"%14llu"
"%14llu",
s.insertions, s.removals, s.aggregations,
s.non_aggregations, s.lost, s.garbage_collections);
putchar('\n');
}
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 [-bDefkSstv] "
"[-C filename ] [-l maxlength] [-m maxnodes] [-P ppid]\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;
int do_priv_drop;
u32 filter_ppid, do_snap;
struct quark_queue *qq;
struct quark_queue_attr qa;
const struct quark_event *qev;
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;
filter_ppid = 0;
do_snap = 1;
graph_by_time = graph_by_pidtime = graph_cache = NULL;
while ((ch = getopt(argc, argv, "bC:Deghklm:P:tSsvV")) != -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 'P':
if (optarg == NULL)
usage();
filter_ppid = strtonum(optarg, 1, UINT32_MAX, &errstr);
if (errstr != NULL)
errx(1, "invalid ppid: %s", errstr);
break;
case 's':
do_snap = 0;
break;
case 'S':
qa.flags |= QQ_SOCK_CONN;
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 (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);
}
/*
* Should we print all processes learned through scraping
*/
if (do_snap) {
struct quark_process_iter qi;
struct quark_event fake_ev;
bzero(&fake_ev, sizeof(fake_ev));
quark_process_iter_init(&qi, qq);
while ((fake_ev.process = quark_process_iter_next(&qi)) != NULL)
quark_event_dump(&fake_ev, stdout);
}
/*
* Normal mode, collect, pop and dump elements until we get a sigint
*/
while (!gotsigint && maxnodes == -1) {
qev = quark_queue_get_event(qq);
/* No events, just block */
if (qev == NULL) {
if (quark_queue_block(qq) == -1 && errno != EINTR)
err(1, "quark_queue_block");
continue;
}
/*
* Filter out processes by parent pid if set.
*/
if (filter_ppid &&
qev->process != NULL &&
(qev->process->flags & QUARK_F_PROC) &&
filter_ppid != qev->process->proc_ppid)
continue;
quark_event_dump(qev, stdout);
}
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;
}
dump_stats(qq);
quark_queue_close(qq);
free(qq);
return (0);
}