blob: 8fdd2c9c56b2b00373e1bb99b4f891835f022f11 [file] [log] [blame]
Alexei Starovoitove3edfde2016-04-06 18:43:31 -07001/* Copyright (c) 2016 Facebook
2 *
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
6 */
7#include <linux/version.h>
8#include <linux/ptrace.h>
Yafang Shaod0681442022-01-19 18:08:33 -08009#include <linux/sched.h>
Alexei Starovoitove3edfde2016-04-06 18:43:31 -070010#include <uapi/linux/bpf.h>
Toke Høiland-Jørgensen7cf245a2020-01-20 14:06:49 +010011#include <bpf/bpf_helpers.h>
12#include <bpf/bpf_tracing.h>
Alexei Starovoitove3edfde2016-04-06 18:43:31 -070013
Ilya Leoshkeviche4d9c232020-07-20 13:48:06 +020014#define _(P) \
15 ({ \
16 typeof(P) val = 0; \
17 bpf_probe_read_kernel(&val, sizeof(val), &(P)); \
18 val; \
19 })
Alexei Starovoitove3edfde2016-04-06 18:43:31 -070020
21SEC("kprobe/__set_task_comm")
22int prog(struct pt_regs *ctx)
23{
24 struct signal_struct *signal;
25 struct task_struct *tsk;
Yafang Shaod0681442022-01-19 18:08:33 -080026 char oldcomm[TASK_COMM_LEN] = {};
27 char newcomm[TASK_COMM_LEN] = {};
Alexei Starovoitove3edfde2016-04-06 18:43:31 -070028 u16 oom_score_adj;
29 u32 pid;
30
31 tsk = (void *)PT_REGS_PARM1(ctx);
32
33 pid = _(tsk->pid);
Yafang Shaod0681442022-01-19 18:08:33 -080034 bpf_probe_read_kernel_str(oldcomm, sizeof(oldcomm), &tsk->comm);
35 bpf_probe_read_kernel_str(newcomm, sizeof(newcomm),
36 (void *)PT_REGS_PARM2(ctx));
Alexei Starovoitove3edfde2016-04-06 18:43:31 -070037 signal = _(tsk->signal);
38 oom_score_adj = _(signal->oom_score_adj);
39 return 0;
40}
41
42SEC("kprobe/urandom_read")
43int prog2(struct pt_regs *ctx)
44{
45 return 0;
46}
47
48char _license[] SEC("license") = "GPL";
49u32 _version SEC("version") = LINUX_VERSION_CODE;