-
Notifications
You must be signed in to change notification settings - Fork 303
/
test.h
197 lines (195 loc) · 5.24 KB
/
test.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
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
#ifndef TEST_H_
#define TEST_H_
#include "phy_mem.h"
#include "proc_maps.h"
#include "proc_list.h"
#include "proc_cmdline.h"
#include "proc_rss.h"
#include "ver_control.h"
//
//MY_STATIC void test1(void) {
// size_t phy_addr;
// struct file * pFile = open_pagemap(14861);
// printk(KERN_INFO "open_pagemap %d\n", pFile);
// if (pFile) {
// phy_addr = get_pagemap_phy_addr(pFile, 0x10106000);
// printk(KERN_INFO "pagemap phy_addr 0x%llx\n", phy_addr);
//
// char buf[4];
// size_t ret;
// memset(buf, 0, 4);
// read_ram_physical_addr(&ret, phy_addr, buf, true, 4);
// if (ret) {
// int i;
// for (i = 0; i < 4; i++) {
// printk(KERN_INFO "[%d]0x%x ", i, buf[i]);
// }
// }
// close_pagemap(pFile);
// }
//}
//
///*
//MY_STATIC void test2(void)
//{
// struct pid * proc_pid_struct = get_proc_pid_struct(14861);
// int map_count = get_proc_map_count(proc_pid_struct);
// printk(KERN_INFO "map_count:%d\n", map_count);
//
// char test[8 + 8 + 4 + 4096] = { 0 };
// get_proc_maps_list(proc_pid_struct, 4096, &test,sizeof(test), true, NULL);
//
// printk("start:0x%lx,end:0x%lx,flags:%x%x%x%x,name:%s\n",
// *(unsigned long*)&test[0],
// *(unsigned long*)&test[8],
// *(unsigned char*)&test[16],
// *(unsigned char*)&test[17],
// *(unsigned char*)&test[18],
// *(unsigned char*)&test[19],
// &test[20]);
//
//
// release_proc_pid_struct(proc_pid_struct);
//
//}
//*/
//
//MY_STATIC void test3(void) {
// struct pid * proc_pid_struct = get_proc_pid_struct(14861);
// printk(KERN_INFO "test3 get_proc_pid_struct:%ld\n", proc_pid_struct);
// if (proc_pid_struct) {
// size_t phy_addr = 0;
// pte_t *pte;
// get_proc_phy_addr(&phy_addr, proc_pid_struct, 0x10106000, &pte);
// printk(KERN_INFO "calc phy_addr:0x%llx\n", phy_addr);
//
// release_proc_pid_struct(proc_pid_struct);
// }
//
//}
//
//
//MY_STATIC void test4(void) {
// struct pid * proc_pid_struct = get_proc_pid_struct(23948);
// printk(KERN_INFO "test4 get_proc_pid_struct:%ld\n", proc_pid_struct);
// if (proc_pid_struct) {
// size_t arg_start = 0, arg_end = 0;
// int res = get_proc_cmdline_addr(proc_pid_struct, -8, &arg_start, &arg_end);
// printk(KERN_INFO "test4 get_proc_cmdline_addr arg_start:0x%llx arg_end:0x%llx\n", arg_start, arg_end);
//
//
// int i = -32;
// for (; i <= 32; i += 4) {
// size_t accurate_offset = get_proc_cmdline_maybe_addr(proc_pid_struct, i, &arg_start);
//
//
// size_t phy_addr = get_proc_phy_addr(proc_pid_struct, arg_start);
// char name[100] = { 0 };
//
// if (phy_addr) {
// read_ram_physical_addr_to_kernel(phy_addr, &name, sizeof(name));
// }
// printk(KERN_INFO "test4 get_proc_cmdline_maybe_addr arg_start:0x%llx 0x%llx %s\n", arg_start, phy_addr, name);
// }
//
//
// release_proc_pid_struct(proc_pid_struct);
// }
//
//}
//
//
//MY_STATIC void test5(void) {
// int *pid = kmalloc(sizeof(int) * 100, GFP_KERNEL);
// int i = 0;
// int count = get_proc_pid_list(false, (char*)pid, sizeof(int) * 100, true);
// printk(KERN_INFO "test5 count:%d\n", count);
//
// for (i = 0; i < 100; i++) {
// if (!!pid[i]) {
// printk(KERN_INFO "test5 pid[%d]:%d\n", i, pid[i]);
// }
// }
//
//
// kfree(pid);
//
//}
//
//MY_STATIC void test6(void) {
// int ret = 0;
// struct pid * proc_pid_struct = get_proc_pid_struct(17597);
//
// printk(KERN_INFO "test6 get_proc_pid_struct:%ld\n", proc_pid_struct);
//
// ret = set_proc_root(proc_pid_struct);
//
// printk(KERN_INFO "test6 ret:%d\n", ret);
//
// release_proc_pid_struct(proc_pid_struct);
//
//}
//
//MY_STATIC void test7(void) {
// struct pid * proc_pid_struct = get_proc_pid_struct(11533);
// size_t ret = read_proc_rss_size(proc_pid_struct);
//
// printk(KERN_INFO "test7 get_proc_pid_struct:%ld, ret:%zu\n", proc_pid_struct, ret);
//
// release_proc_pid_struct(proc_pid_struct);
//
//}
//
//MY_STATIC void test8(void) {
// struct pid * proc_pid_struct = get_proc_pid_struct(17597);
// printk(KERN_INFO "test8 get_proc_pid_struct:%ld\n", proc_pid_struct);
// if (proc_pid_struct) {
// size_t arg_start = 0, arg_end = 0;
// int res = get_proc_cmdline_addr(proc_pid_struct, &arg_start, &arg_end);
// printk(KERN_INFO "test8 get_proc_cmdline_addr arg_start:0x%llx arg_end:0x%llx\n", arg_start, arg_end);
// release_proc_pid_struct(proc_pid_struct);
// }
//
//}
//
//MY_STATIC void test9(void) {
// struct pid * proc_pid_struct = get_proc_pid_struct(14861);
// printk(KERN_INFO "test9 get_proc_pid_struct:%ld\n", proc_pid_struct);
// if (proc_pid_struct) {
// size_t nOutUID = 0;
// size_t nOutSUID = 0;
// size_t nOutEUID = 0;
// size_t nOutFSUID = 0;
// size_t nOutGID = 0;
// size_t nOutSGID = 0;
// size_t nOutEGID = 0;
// size_t nOutFSGID = 0;
// int res = get_proc_group(
// proc_pid_struct,
// &nOutUID,
// &nOutSUID,
// &nOutEUID,
// &nOutFSUID,
// &nOutGID,
// &nOutSGID,
// &nOutEGID,
// &nOutFSGID);
//
// printk(KERN_INFO "test9 get_proc_group nOutUID:%d,nOutSUID:%d,nOutEUID:%d,nOutFSUID:%d,nOutGID:%d,nOutSGID:%d,nOutEGID:%d,nOutFSGID:%d\n",
// nOutUID,
// nOutSUID,
// nOutEUID,
// nOutFSUID,
// nOutGID,
// nOutSGID,
// nOutEGID,
// nOutFSGID
// );
//
// //set_proc_root(proc_pid_struct);
//
// release_proc_pid_struct(proc_pid_struct);
// }
//
//}
#endif /* TEST_H_ */