forked from Tert-butyllithium/syscord
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproc-filter.h
70 lines (59 loc) · 1.66 KB
/
proc-filter.h
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
#ifndef _SYSCORD_PROC_FILTER_H
#define _SYSCORD_PROC_FILTER_H
#include <linux/sched.h>
const size_t MAX_STR_LENGTH = 15;
char* get_process_name(void);
unsigned check_proc_exclusive(char*);
u8 check_proc_pid(int pid) { return pid == current->pid; }
u8 check_proc_ppid(int ppid) {
if (unlikely(!current->parent)) {
return 0;
}
return ppid == current->parent->pid;
}
// only get first 15 characters
char* get_process_name() { return current->comm; }
u8 check_proc_name(char* proc_name) {
char* cur_proc_name = get_process_name();
// if(check_proc_exclusive(cur_proc_name)){
// return 0;
// }
int cmp_max_len = min(strlen(proc_name), MAX_STR_LENGTH);
return strncmp(cur_proc_name, proc_name, cmp_max_len) == 0;
}
u8 check_parent_proc_name(char* proc_name) {
char* cur_proc_name;
int cmp_max_len;
if (unlikely(!current->pid)) {
return 0;
}
cur_proc_name = current->parent->comm;
cmp_max_len = min(strlen(proc_name), MAX_STR_LENGTH);
return strncmp(cur_proc_name, proc_name, cmp_max_len) == 0;
}
u8 check_proc(int pid, char* proc_name, int ppid, char* parent_proc_name) {
if (pid) {
return check_proc_pid(pid);
}
if (strcmp(proc_name, "")) {
return check_proc_name(proc_name);
}
if (ppid) {
return check_proc_ppid(ppid);
}
if (strcmp(parent_proc_name, "")) {
return check_parent_proc_name(parent_proc_name);
}
return 1;
}
// const char* NAME_ECLUSIVE[] = {"dmesg", NULL};
// unsigned check_proc_exclusive(char* name) {
// unsigned i;
// for (i = 0; NAME_ECLUSIVE[i]; i++) {
// if (strncmp(NAME_ECLUSIVE[i], name, strlen(NAME_ECLUSIVE[i])) == 0) {
// return 1;
// }
// }
// return 0;
// }
#endif