-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRipHoodProcessListController.m
368 lines (286 loc) · 8.79 KB
/
RipHoodProcessListController.m
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
//
// RipHoodProcessListController.m
// Hood
//
// Created by Slava Karpenko on 11/26/08.
// Copyright 2008 Ripdev. All rights reserved.
//
#include <sys/types.h>
#include <sys/sysctl.h>
#include <mach/mach_traps.h>
#include <mach/mach_init.h>
#import "RipHoodProcessListController.h"
#import "RipHoodProcessListCell.h"
static int my_system(const char * argv[]);
@implementation RipHoodProcessListController
@synthesize shouldTrack;
/*
- (id)initWithStyle:(UITableViewStyle)style {
// Override initWithStyle: if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
if (self = [super initWithStyle:style]) {
}
return self;
}
*/
// Implement viewDidLoad to do additional setup after loading the view.
- (void)viewDidLoad {
processes = [[NSMutableArray alloc] initWithCapacity:0];
pidInfo = [[NSMutableDictionary alloc] initWithCapacity:0];
[super viewDidLoad];
}
- (void)_initializeHasRootPermissions
{
hasNoRootPermissionsInitialized = YES;
hasNoRootPermissions = YES;
NSString* killToolPath = [[NSBundle bundleForClass:[self class]] pathForResource:@"HoodKill" ofType:@""];
if (killToolPath)
{
NSDictionary* attributes = [[NSFileManager defaultManager] fileAttributesAtPath:killToolPath traverseLink:YES];
hasNoRootPermissions = ![[attributes fileOwnerAccountName] isEqualToString:@"root"];
}
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [processes count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"z";
NSMutableDictionary* pinfo = [pidInfo objectForKey:[processes objectAtIndex:[indexPath row]]];
RipHoodProcessListCell *cell = (RipHoodProcessListCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[RipHoodProcessListCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell
cell.processInfo = pinfo;
return cell;
}
/*
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
}
*/
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)
{
NSMutableDictionary* pinfo = [pidInfo objectForKey:[processes objectAtIndex:[indexPath row]]];
pid_t pid = [[pinfo objectForKey:@"pid"] unsignedIntValue];
if (pid)
{
// check gid
if ([[pinfo objectForKey:@"gid"] unsignedIntValue] != getuid())
{
// do warning
}
[self killPID:pid];
}
}
}
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
if (!hasNoRootPermissionsInitialized)
[self _initializeHasRootPermissions];
NSMutableDictionary* pinfo = [pidInfo objectForKey:[processes objectAtIndex:[indexPath row]]];
if (pinfo)
{
if ([[pinfo objectForKey:@"gid"] unsignedIntValue] != getuid() && hasNoRootPermissions)
return NO;
}
return YES;
}
/*
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
}
*/
/*
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
return YES;
}
*/
/*
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
}
*/
/*
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
}
*/
/*
- (void)viewWillDisappear:(BOOL)animated {
}
*/
/*
- (void)viewDidDisappear:(BOOL)animated {
}
*/
/*
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
*/
- (void)dealloc {
[processes release];
[pidInfo release];
[super dealloc];
}
#pragma mark -
- (void)grabProcessList
{
if (prTable.editing)
{
[self performSelector:@selector(grabProcessList) withObject:nil afterDelay:3.];
return;
}
if (!self.shouldTrack)
{
return;
}
[processes removeAllObjects];
int name[] = { CTL_KERN, KERN_PROC, KERN_PROC_ALL };
int res;
size_t sz = 0;
res = sysctl(name, (sizeof(name)/sizeof(int)), NULL, &sz, NULL, 0);
if (0 == res && sz > 0)
{
struct kinfo_proc* pc = (struct kinfo_proc*)malloc(sz);
if (pc)
{
res = sysctl(name, (sizeof(name)/sizeof(int)), (void*)pc, &sz, NULL, 0);
int pcCount = sz / sizeof(struct kinfo_proc);
int i;
for (i=0; i < pcCount; i++)
{
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
NSNumber* pid = [NSNumber numberWithInt:pc[i].kp_proc.p_pid];
if (![pidInfo objectForKey:pid])
{
NSMutableDictionary* pinfo = [NSMutableDictionary dictionaryWithCapacity:0];
NSString* processPath = [self nameForProcessWithPID:pc[i].kp_proc.p_pid];
if (processPath)
{
[pinfo setObject:processPath forKey:@"path"];
if ([[[processPath stringByDeletingLastPathComponent] pathExtension] isEqualToString:@"app"])
{
NSBundle* bundle = [NSBundle bundleWithPath:[processPath stringByDeletingLastPathComponent]];
if (bundle)
{
NSString* bundleName = [bundle objectForInfoDictionaryKey:@"CFBundleDisplayName"];
[pinfo setObject:bundle forKey:@"bundle"];
if (bundleName)
[pinfo setObject:bundleName forKey:@"name"];
else
[pinfo setObject:[[[processPath stringByDeletingLastPathComponent] lastPathComponent] stringByDeletingPathExtension] forKey:@"name"];
}
else
[pinfo setObject:[[[processPath stringByDeletingLastPathComponent] lastPathComponent] stringByDeletingPathExtension] forKey:@"name"];
}
else
{
[pinfo setObject:[processPath lastPathComponent] forKey:@"name"];
}
}
else
[pinfo setObject:[NSString stringWithUTF8String:pc[i].kp_proc.p_comm] forKey:@"name"];
[pinfo setObject:pid forKey:@"pid"];
[pinfo setObject:[NSNumber numberWithInt:pc[i].kp_eproc.e_pcred.p_ruid] forKey:@"gid"];
/* [pinfo setObject:[NSNumber numberWithUnsignedInt:pc[i].kp_proc.p_swtime] forKey:@"swtime"];
[pinfo setObject:[NSNumber numberWithUnsignedInt:pc[i].kp_proc.p_slptime] forKey:@"slptime"];
[pinfo setObject:[NSNumber numberWithUnsignedInt:pc[i].kp_proc.p_estcpu] forKey:@"estcpu"];
[pinfo setObject:[NSNumber numberWithUnsignedInt:pc[i].kp_proc.p_cpticks] forKey:@"cpticks"];
[pinfo setObject:[NSNumber numberWithUnsignedInt:pc[i].kp_proc.p_pctcpu] forKey:@"pctcpu"]; */
[pidInfo setObject:pinfo forKey:pid];
}
[processes addObject:pid];
[pool release];
}
// TODO: implement cleanup of dead pids from pidInfo dictionary
free(pc);
}
}
[prTable reloadData];
[self performSelector:@selector(grabProcessList) withObject:nil afterDelay:3.];
}
- (NSString*)nameForProcessWithPID:(pid_t)pidNum
{
NSString *returnString = nil;
int mib[4], numArgs = 0;
size_t size = 0;
char *stringPtr = NULL;
int res;
static char* args = NULL;
static int maxarg = 0;
// Yes, we leak KERN_ARGMAX number of bytes here, at the optimization of not calling malloc/free all the time.
if (!args)
{
mib[0] = CTL_KERN;
mib[1] = KERN_ARGMAX;
size = sizeof(maxarg);
if ( sysctl(mib, 2, &maxarg, &size, NULL, 0) == -1 )
{
return nil;
}
args = (char *)malloc(maxarg);
if (args == NULL)
{
return nil;
}
}
mib[0] = CTL_KERN;
mib[1] = KERN_PROCARGS2;
mib[2] = pidNum;
size = (size_t)maxarg;
res = sysctl(mib, 3, args, &size, NULL, 0);
if ( res == -1 )
{
// no permission
return nil;
}
memcpy( &numArgs, args, sizeof(numArgs) );
stringPtr = args + sizeof(numArgs);
returnString = [[NSString alloc] initWithUTF8String:stringPtr];
return [returnString autorelease];
}
- (void)beginTracking
{
// fetch list of processes and stuff...
[self grabProcessList];
}
#pragma mark -
- (void)killPID:(pid_t)pid
{
NSString* killToolPath = [[NSBundle bundleForClass:[self class]] pathForResource:@"HoodKill" ofType:@""];
if (killToolPath)
{
const char* argv[] = {
[[NSFileManager defaultManager] fileSystemRepresentationWithPath:killToolPath],
[[NSString stringWithFormat:@"%u", pid] UTF8String],
NULL
};
my_system(argv);
[self grabProcessList];
}
}
@end
static int my_system(const char * argv[])
{
pid_t child;
if (child = fork())
{
int exitStatus = 0;
waitpid(child, &exitStatus, 0);
return WEXITSTATUS(exitStatus);
}
else
{
// Set environment
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
unsetenv("DYLD_INSERT_LIBRARIES");
execvp(argv[0], (char *const*)argv);
[pool release];
exit(0);
}
return -1;
}