-
Notifications
You must be signed in to change notification settings - Fork 158
/
kill.c
570 lines (503 loc) · 17.6 KB
/
kill.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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
// SPDX-License-Identifier: MIT
/* Kill the most memory-hungy process */
#include <ctype.h>
#include <dirent.h>
#include <errno.h>
#include <limits.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/syscall.h> /* Definition of SYS_* constants */
#include <time.h>
#include <unistd.h>
#include "globals.h"
#include "kill.h"
#include "meminfo.h"
#include "msg.h"
// Processes matching "--prefer REGEX" get OOM_SCORE_PREFER added to their oom_score
#define OOM_SCORE_PREFER 300
// Processes matching "--avoid REGEX" get OOM_SCORE_AVOID added to their oom_score
#define OOM_SCORE_AVOID -300
// Processes matching "--prefer REGEX" get VMRSS_PREFER added to their VmRSSkiB
#define VMRSS_PREFER 3145728
// Processes matching "--avoid REGEX" get VMRSS_AVOID added to their VmRSSkiB
#define VMRSS_AVOID -3145728
// Buffer size for UID/GID/PID string conversion
#define UID_BUFSIZ 128
// At most 1 notification per second when --dryrun is active
#define NOTIFY_RATELIMIT 1
static bool isnumeric(char* str)
{
int i = 0;
// Empty string is not numeric
if (str[0] == 0)
return false;
while (1) {
if (str[i] == 0) // End of string
return true;
if (isdigit(str[i]) == 0)
return false;
i++;
}
}
static void notify_dbus(const char* summary, const char* body)
{
int pid = fork();
if (pid > 0) {
// parent
return;
}
char summary2[1024] = { 0 };
snprintf(summary2, sizeof(summary2), "string:%s", summary);
char body2[1024] = "string:";
if (body != NULL) {
snprintf(body2, sizeof(body2), "string:%s", body);
}
// Complete command line looks like this:
// dbus-send --system / net.nuetzlich.SystemNotifications.Notify 'string:summary text' 'string:and body text'
execl("/usr/bin/dbus-send", "dbus-send", "--system", "/", "net.nuetzlich.SystemNotifications.Notify",
summary2, body2, NULL);
warn("%s: exec failed: %s\n", __func__, strerror(errno));
exit(1);
}
static void notify_ext(const char* script, const procinfo_t* victim)
{
pid_t pid1 = fork();
if (pid1 == -1) {
warn("notify_ext: fork() returned -1: %s\n", strerror(errno));
return;
} else if (pid1 != 0) {
return;
}
char pid_str[UID_BUFSIZ] = { 0 };
char uid_str[UID_BUFSIZ] = { 0 };
snprintf(pid_str, UID_BUFSIZ, "%d", victim->pid);
snprintf(uid_str, UID_BUFSIZ, "%d", victim->uid);
setenv("EARLYOOM_PID", pid_str, 1);
setenv("EARLYOOM_UID", uid_str, 1);
setenv("EARLYOOM_NAME", victim->name, 1);
setenv("EARLYOOM_CMDLINE", victim->cmdline, 1);
execl(script, script, NULL);
warn("%s: exec %s failed: %s\n", __func__, script, strerror(errno));
exit(1);
}
static void notify_process_killed(const poll_loop_args_t* args, const procinfo_t* victim)
{
// Dry run can cause the notify function to be called on each poll as
// nothing is immediately done to change the situation we don't know how
// heavy the notify script is so avoid spamming it
if (args->dryrun) {
static struct timespec prev_notify = { 0 };
struct timespec cur_time = { 0 };
int ret = clock_gettime(CLOCK_MONOTONIC, &cur_time);
if (ret == -1) {
warn("%s: clock_gettime failed: %s\n", __func__, strerror(errno));
return;
}
// Ignores nanoseconds, but good enough here
if (cur_time.tv_sec - prev_notify.tv_sec < NOTIFY_RATELIMIT) {
// Too soon
debug("%s: rate limit hit, skipping notifications this time\n", __func__);
return;
}
prev_notify = cur_time;
}
if (args->notify) {
char notif_args[PATH_MAX + 1000];
snprintf(notif_args, sizeof(notif_args),
"Low memory! Killing process %d %s", victim->pid, victim->name);
notify_dbus("earlyoom", notif_args);
}
if (args->notify_ext) {
notify_ext(args->notify_ext, victim);
}
}
#if defined(__NR_pidfd_open) && defined(__NR_process_mrelease)
#define HAVE_MRELEASE
#else
#warning process_mrelease is not supported. earlyoom will still work but with degraded performance.
#endif
// kill_release kills a process and calls process_mrelease to
// release the memory as quickly as possible.
//
// See https://lwn.net/Articles/864184/ for details on process_mrelease.
int kill_release(const pid_t pid, const int pidfd, const int sig)
{
int res = kill(pid, sig);
if (res != 0) {
return res;
}
// Can't do process_mrelease without a pidfd.
if (pidfd < 0) {
return 0;
}
#if defined(HAVE_MRELEASE)
res = (int)syscall(__NR_process_mrelease, pidfd, 0);
if (res != 0) {
warn("%s: pid=%d: process_mrelease pidfd=%d failed: %s\n", __func__, pid, pidfd, strerror(errno));
} else {
info("%s: pid=%d: process_mrelease pidfd=%d success\n", __func__, pid, pidfd);
}
#endif
// Return 0 regardless of process_mrelease outcome
return 0;
}
/*
* Send the selected signal to "pid" and wait for the process to exit
* (max 10 seconds)
*/
int kill_wait(const poll_loop_args_t* args, pid_t pid, int sig)
{
const unsigned poll_ms = 100;
int pidfd = -1;
if (args->dryrun && sig != 0) {
warn("dryrun, not actually sending any signal\n");
return 0;
}
if (args->kill_process_group) {
int res = getpgid(pid);
if (res < 0) {
return res;
}
pid = -res;
warn("killing whole process group %d (-g flag is active)\n", res);
}
#if defined(HAVE_MRELEASE)
// Open the pidfd *before* calling kill().
if (!args->kill_process_group && sig != 0) {
pidfd = (int)syscall(__NR_pidfd_open, pid, 0);
if (pidfd < 0) {
warn("%s pid %d: error opening pidfd: %s\n", __func__, pid, strerror(errno));
}
}
#else
warn("%s pid %d: system does not support process_mrelease, skipping\n", __func__, pid);
#endif
int res = kill_release(pid, pidfd, sig);
if (res != 0) {
goto out_close;
}
/* signal 0 does not kill the process. Don't wait for it to exit */
if (sig == 0) {
goto out_close;
}
struct timespec t0 = { 0 };
clock_gettime(CLOCK_MONOTONIC, &t0);
for (unsigned i = 0; i < 100; i++) {
struct timespec t1 = { 0 };
clock_gettime(CLOCK_MONOTONIC, &t1);
float secs = (float)(t1.tv_sec - t0.tv_sec) + (float)(t1.tv_nsec - t0.tv_nsec) / (float)1e9;
// We have sent SIGTERM but now have dropped below SIGKILL limits.
// Escalate to SIGKILL.
if (sig != SIGKILL) {
meminfo_t m = parse_meminfo();
print_mem_stats(debug, m);
if (m.MemAvailablePercent <= args->mem_kill_percent && m.SwapFreePercent <= args->swap_kill_percent) {
sig = SIGKILL;
warn("escalating to SIGKILL after %.3f seconds\n", secs);
res = kill_release(pid, pidfd, sig);
if (res != 0) {
goto out_close;
}
}
} else if (enable_debug) {
meminfo_t m = parse_meminfo();
print_mem_stats(info, m);
}
if (!is_alive(pid)) {
warn("process %d exited after %.3f seconds\n", pid, secs);
goto out_close;
}
struct timespec req = { .tv_sec = (time_t)(poll_ms / 1000), .tv_nsec = (poll_ms % 1000) * 1000000 };
nanosleep(&req, NULL);
}
res = -1;
errno = ETIME;
warn("process %d did not exit\n", pid);
out_close:
if (pidfd >= 0) {
int saved_errno = errno;
if (close(pidfd)) {
warn("%s pid %d: error closing pidfd %d: %s\n", __func__, pid, pidfd, strerror(errno));
}
errno = saved_errno;
}
return res;
}
// is_larger finds out if the process with pid `cur->pid` uses more memory
// than our current `victim`.
// In the process, it fills the `cur` structure. It does so lazily, meaning
// it only fills the fields it needs to make a decision.
bool is_larger(const poll_loop_args_t* args, const procinfo_t* victim, procinfo_t* cur)
{
if (cur->pid <= 2) {
// Let's not kill init or kthreadd.
return false;
}
// Ignore processes owned by root user?
if (args->ignore_root_user) {
int res = get_uid(cur->pid);
if (res < 0) {
debug("%s: pid %d: error reading uid: %s\n", __func__, cur->pid, strerror(-res));
return false;
}
cur->uid = res;
if (cur->uid == 0) {
return false;
}
}
{
bool res = parse_proc_pid_stat(&cur->stat, cur->pid);
if (!res) {
debug("%s: pid %d: error reading stat\n", __func__, cur->pid);
return false;
}
const long page_size = sysconf(_SC_PAGESIZE);
cur->VmRSSkiB = cur->stat.rss * page_size / 1024;
}
// A pid is a kernel thread if it's pid or ppid is 2.
// At least that's what procs does:
// https://github.com/warmchang/procps/blob/d173f5d6db746e3f252a6182aa1906a292fc200f/library/readproc.c#L1325
//
// The check for pid == 2 has already been done at the top.
if (cur->stat.ppid == 2) {
return false;
}
{
int res = get_oom_score(cur->pid);
if (res < 0) {
debug("%s: pid %d: error reading oom_score: %s\n", __func__, cur->pid, strerror(-res));
return false;
}
cur->oom_score = res;
}
if ((args->prefer_regex || args->avoid_regex || args->ignore_regex)) {
int res = get_comm(cur->pid, cur->name, sizeof(cur->name));
if (res < 0) {
debug("%s: pid %d: error reading process name: %s\n", __func__, cur->pid, strerror(-res));
return false;
}
if (args->prefer_regex && regexec(args->prefer_regex, cur->name, (size_t)0, NULL, 0) == 0) {
if (args->sort_by_rss) {
cur->VmRSSkiB += VMRSS_PREFER;
} else {
cur->oom_score += OOM_SCORE_PREFER;
}
}
if (args->avoid_regex && regexec(args->avoid_regex, cur->name, (size_t)0, NULL, 0) == 0) {
if (args->sort_by_rss) {
cur->VmRSSkiB += VMRSS_AVOID;
} else {
cur->oom_score += OOM_SCORE_AVOID;
}
}
if (args->ignore_regex && regexec(args->ignore_regex, cur->name, (size_t)0, NULL, 0) == 0) {
return false;
}
}
// find process with the largest rss
if (args->sort_by_rss) {
// Case 1: neither victim nor cur have rss=0 (zombie main thread).
// This is the usual case.
if (cur->VmRSSkiB > 0 && victim->VmRSSkiB > 0) {
if (cur->VmRSSkiB < victim->VmRSSkiB) {
return false;
}
if (cur->VmRSSkiB == victim->VmRSSkiB && cur->oom_score <= victim->oom_score) {
return false;
}
}
// Case 2: one (or both) have rss=0 (zombie main thread)
else {
if (cur->VmRSSkiB == 0) {
// only print the warning when the zombie is first seen, i.e. as "cur"
get_comm(cur->pid, cur->name, sizeof(cur->name));
warn("%s: pid %d \"%s\": rss=0 but oom_score=%d. Zombie main thread? Using oom_score for this process.\n",
__func__, cur->pid, cur->name, cur->oom_score);
}
if (cur->oom_score < victim->oom_score) {
return false;
}
if (cur->oom_score == victim->oom_score && cur->VmRSSkiB <= victim->VmRSSkiB) {
return false;
}
}
} else {
/* find process with the largest oom_score */
if (cur->oom_score < victim->oom_score) {
return false;
}
if (cur->oom_score == victim->oom_score && cur->VmRSSkiB <= victim->VmRSSkiB) {
return false;
}
}
// Skip processes with oom_score_adj = -1000, like the
// kernel oom killer would.
{
int res = get_oom_score_adj(cur->pid, &cur->oom_score_adj);
if (res < 0) {
debug("%s: pid %d: error reading oom_score_adj: %s\n", __func__, cur->pid, strerror(-res));
return false;
}
if (cur->oom_score_adj == -1000) {
return false;
}
}
return true;
}
// Fill the fields in `cur` that are not required for the kill decision.
// Used to log details about the selected process.
void fill_informative_fields(procinfo_t* cur)
{
if (strlen(cur->name) == 0) {
int res = get_comm(cur->pid, cur->name, sizeof(cur->name));
if (res < 0) {
debug("%s: pid %d: error reading process name: %s\n", __func__, cur->pid, strerror(-res));
}
}
if (strlen(cur->cmdline) == 0) {
int res = get_cmdline(cur->pid, cur->cmdline, sizeof(cur->cmdline));
if (res < 0) {
debug("%s: pid %d: error reading process cmdline: %s\n", __func__, cur->pid, strerror(-res));
}
}
if (cur->uid == PROCINFO_FIELD_NOT_SET) {
int res = get_uid(cur->pid);
if (res < 0) {
debug("%s: pid %d: error reading uid: %s\n", __func__, cur->pid, strerror(-res));
} else {
cur->uid = res;
}
}
}
// debug_print_procinfo pretty-prints the process information in `cur`.
void debug_print_procinfo(procinfo_t* cur)
{
if (!enable_debug) {
return;
}
fill_informative_fields(cur);
debug("%5d %9d %7lld %5d %13d \"%s\"",
cur->pid, cur->oom_score, cur->VmRSSkiB, cur->uid, cur->oom_score_adj, cur->name);
}
void debug_print_procinfo_header()
{
debug(" PID OOM_SCORE RSSkiB UID OOM_SCORE_ADJ COMM\n");
}
/*
* Find the process with the largest oom_score or rss(when flag --sort-by-rss is set).
*/
procinfo_t find_largest_process(const poll_loop_args_t* args)
{
DIR* procdir = opendir(procdir_path);
if (procdir == NULL) {
fatal(5, "%s: could not open /proc: %s", __func__, strerror(errno));
}
struct timespec t0 = { 0 }, t1 = { 0 };
if (enable_debug) {
clock_gettime(CLOCK_MONOTONIC, &t0);
}
debug_print_procinfo_header();
const procinfo_t empty_procinfo = {
.pid = PROCINFO_FIELD_NOT_SET,
.uid = PROCINFO_FIELD_NOT_SET,
.oom_score = PROCINFO_FIELD_NOT_SET,
.oom_score_adj = PROCINFO_FIELD_NOT_SET,
.VmRSSkiB = PROCINFO_FIELD_NOT_SET,
/* omitted fields are set to zero */
};
procinfo_t victim = empty_procinfo;
while (1) {
errno = 0;
struct dirent* d = readdir(procdir);
if (d == NULL) {
if (errno != 0)
warn("%s: readdir error: %s", __func__, strerror(errno));
break;
}
// proc contains lots of directories not related to processes,
// skip them
if (!isnumeric(d->d_name))
continue;
procinfo_t cur = empty_procinfo;
cur.pid = (int)strtol(d->d_name, NULL, 10);
bool larger = is_larger(args, &victim, &cur);
debug_print_procinfo(&cur);
if (larger) {
debug(" <--- new victim\n");
victim = cur;
} else {
debug("\n");
}
}
closedir(procdir);
if (enable_debug) {
clock_gettime(CLOCK_MONOTONIC, &t1);
long delta = (t1.tv_sec - t0.tv_sec) * 1000000 + (t1.tv_nsec - t0.tv_nsec) / 1000;
debug("selecting victim took %ld.%03ld ms\n", delta / 1000, delta % 1000);
}
if (victim.pid == getpid()) {
warn("%s: selected myself (pid %d). Do you use hidpid? See https://github.com/rfjakob/earlyoom/wiki/proc-hidepid\n",
__func__, victim.pid);
// zero victim struct
victim = (const procinfo_t) { 0 };
}
if (victim.pid >= 0) {
// We will pretty-print the victim later, so get all the info.
fill_informative_fields(&victim);
}
return victim;
}
/*
* Kill the victim process, wait for it to exit, send a gui notification
* (if enabled).
*/
void kill_process(const poll_loop_args_t* args, int sig, const procinfo_t* victim)
{
if (victim->pid <= 0) {
warn("Could not find a process to kill. Sleeping 1 second.\n");
if (args->notify) {
notify_dbus("earlyoom", "Error: Could not find a process to kill. Sleeping 1 second.");
}
sleep(1);
return;
}
char* sig_name = "?";
if (sig == SIGTERM) {
sig_name = "SIGTERM";
} else if (sig == SIGKILL) {
sig_name = "SIGKILL";
} else if (sig == 0) {
sig_name = "0 (no-op signal)";
}
// sig == 0 is used as a self-test during startup. Don't notify the user.
if (sig != 0 || enable_debug) {
warn("sending %s to process %d uid %d \"%s\": oom_score %d, VmRSS %lld MiB, cmdline \"%s\"\n",
sig_name, victim->pid, victim->uid, victim->name, victim->oom_score, victim->VmRSSkiB / 1024,
victim->cmdline);
}
int res = kill_wait(args, victim->pid, sig);
int saved_errno = errno;
// Send the GUI notification AFTER killing a process. This makes it more likely
// that there is enough memory to spawn the notification helper.
if (sig != 0) {
notify_process_killed(args, victim);
}
if (sig == 0) {
return;
}
if (res != 0) {
warn("kill failed: %s\n", strerror(saved_errno));
if (args->notify) {
notify_dbus("earlyoom", "Error: Failed to kill process");
}
// Killing the process may have failed because we are not running as root.
// In that case, trying again in 100ms will just yield the same error.
// Throttle ourselves to not spam the log.
if (saved_errno == EPERM) {
warn("sleeping 1 second\n");
sleep(1);
}
}
}