forked from sveinbjornt/Sloth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLsofTask.m
420 lines (359 loc) · 16.5 KB
/
LsofTask.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
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
/*
Copyright (c) 2004-2023, Sveinbjorn Thordarson <[email protected]>
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or other
materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may
be used to endorse or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#import "LsofTask.h"
#import "Common.h"
#import "STPrivilegedTask.h"
#import "Item.h"
#import "FSUtils.h"
#import "IconUtils.h"
#import "ProcessUtils.h"
@implementation LsofTask
- (NSMutableArray<Item *> *)launch:(AuthorizationRef)authRef numFiles:(int *)numFiles {
return [self parse:[self run:authRef] numFiles:numFiles];
}
- (NSString *)run:(AuthorizationRef)authRef {
DLog(@"Running lsof task");
NSData *outputData;
if (authRef) {
STPrivilegedTask *task = [[STPrivilegedTask alloc] init];
[task setLaunchPath:LSOF_PATH];
[task setArguments:[self args]];
[task launchWithAuthorization:authRef];
outputData = [[task outputFileHandle] readDataToEndOfFile];
} else {
NSTask *lsof = [[NSTask alloc] init];
[lsof setLaunchPath:LSOF_PATH];
[lsof setArguments:[self args]];
NSPipe *pipe = [NSPipe pipe];
[lsof setStandardOutput:pipe];
[lsof setStandardError:[NSFileHandle fileHandleWithNullDevice]];
[lsof setStandardInput:[NSFileHandle fileHandleWithNullDevice]];
[lsof launch];
outputData = [[pipe fileHandleForReading] readDataToEndOfFile];
}
return [[NSString alloc] initWithData:outputData encoding:NSUTF8StringEncoding];
}
- (NSMutableArray<Item *> *)parse:(NSString *)outputString numFiles:(int *)numFiles {
// Parse-friendly lsof output has the following format:
//
// p113 // PROCESS INFO STARTS (pid)
// cloginwindow // name
// u501 // uid
// fcwd // FILE INFO STARTS (file descriptor)
// a // access mode
// tDIR // type
// n/path/to/directory // name / path
// f0 // FILE INFO STARTS (file descriptor)
// au // access mode
// tCHR // type
// n/dev/null // name / path
// etc...
//
// We parse this into an array of processes, each of which has children.
// Each child is a dictionary containing file/socket info.
DLog(@"Parsing lsof output");
NSMutableArray *processList = [NSMutableArray new];
*numFiles = 0;
if (![outputString length]) {
DLog(@"Empty lsof output!");
return processList;
}
// Get info about mounted filesystems
NSDictionary *fileSystems = [FSUtils mountedFileSystems];
// Maps device character codes to items. Used to find socket/pipe endpoints.
NSMutableDictionary *devCharCodeMap = [NSMutableDictionary dictionary];
Item *currentProcess;
Item *currentFile;
BOOL skip = FALSE;
// Parse each line
for (NSString *line in [outputString componentsSeparatedByString:@"\n"]) {
if ([line length] == 0) {
continue;
}
unichar prefix = [line characterAtIndex:0];
NSString *value = [line substringFromIndex:1];
switch (prefix) {
// PID - First line of output for new process
case 'p':
{
// Add last item
if (currentProcess && currentFile && !skip) {
[currentProcess[@"children"] addObject:currentFile];
currentFile = nil;
}
// Set up new process dict
currentProcess = [Item new];
currentProcess[@"pid"] = value;
currentProcess[@"type"] = @"Process";
currentProcess[@"children"] = [NSMutableArray array];
[processList addObject:currentProcess];
}
break;
// Process name
case 'c':
currentProcess[@"name"] = value;
currentProcess[@"displayname"] = value;
break;
// Process UID
case 'u':
currentProcess[@"userid"] = value;
break;
// Parent process ID
case 'R':
{
NSString *parentProcIDStr = value;
currentProcess[@"parentid"] = @([parentProcIDStr integerValue]);
}
break;
// File descriptor - First line of output for a file
case 'f':
{
if (currentFile && !skip) {
[currentProcess[@"children"] addObject:currentFile];
currentFile = nil;
}
// New file info starting, create new file dict
currentFile = [Item new];
NSString *fd = value;
currentFile[@"fd"] = fd;
if ([fd isEqualToString:@"err"]) {
currentFile[@"type"] = @"Error";
currentFile[@"image"] = [IconUtils imageNamed:@"Error"];
}
currentFile[@"pname"] = currentProcess[@"name"];
currentFile[@"pid"] = currentProcess[@"pid"];
currentFile[@"puserid"] = currentProcess[@"userid"];
// txt files are program code, such as the application binary itself or a shared library
if ([fd isEqualToString:@"txt"] && ![DEFAULTS boolForKey:@"showProcessBinaries"]) {
skip = TRUE;
}
// cwd and twd are current working directory and thread working directory, respectively
else if (([fd isEqualToString:@"cwd"] || [fd isEqualToString:@"twd"]) && ![DEFAULTS boolForKey:@"showCurrentWorkingDirectories"]) {
skip = TRUE;
}
else {
skip = FALSE;
}
}
break;
// File access mode
case 'a':
currentFile[@"accessmode"] = value;
break;
// File type
case 't':
{
NSString *ftype = value;
if ([ftype isEqualToString:@"VREG"] || [ftype isEqualToString:@"REG"]) {
currentFile[@"type"] = @"File";
}
else if ([ftype isEqualToString:@"VDIR"] || [ftype isEqualToString:@"DIR"]) {
currentFile[@"type"] = @"Directory";
}
else if ([ftype isEqualToString:@"IPv6"] || [ftype isEqualToString:@"IPv4"]) {
currentFile[@"type"] = @"IP Socket";
currentFile[@"ipversion"] = ftype;
}
else if ([ftype isEqualToString:@"unix"]) {
currentFile[@"type"] = @"Unix Domain Socket";
}
else if ([ftype isEqualToString:@"VCHR"] || [ftype isEqualToString:@"CHR"]) {
currentFile[@"type"] = @"Character Device";
}
else if ([ftype isEqualToString:@"PIPE"]) {
currentFile[@"type"] = @"Pipe";
}
else {
//DLog(@"Unrecognized file type: %@ : %@", ftype, [currentFile description]);
skip = TRUE;
}
if (currentFile[@"type"]) {
NSImage *img = [IconUtils imageNamed:currentFile[@"type"]];
if (img) {
currentFile[@"image"] = img;
}
}
}
break;
// File name / path
case 'n':
{
currentFile[@"name"] = value;
currentFile[@"displayname"] = [currentFile[@"name"] length] ? currentFile[@"name"] : @"Unnamed";
// Some files when running in root mode have no type listed
// and are only reported with the name "(revoked)". Skip those.
if (!currentFile[@"type"] && [currentFile[@"name"] isEqualToString:@"(revoked)"]) {
skip = TRUE;
}
if ([value hasSuffix:@"Operation not permitted"]) {
currentFile[@"type"] = @"Error";
currentFile[@"image"] = [IconUtils imageNamed:@"Error"];
}
if ([currentFile[@"name"] hasPrefix:@"unknown file type:"]) {
currentFile[@"image"] = [IconUtils imageNamed:@"QuestionMark"];
}
}
break;
// Protocol (IP sockets only)
case 'P':
currentFile[@"protocol"] = value;
break;
// TCP socket info (IP sockets only)
case 'T':
{
NSString *socketInfo = value;
if ([socketInfo hasPrefix:@"ST="]) {
currentFile[@"socketstate"] = [socketInfo substringFromIndex:3];
}
currentFile[@"displayname"] = [NSString stringWithFormat:@"%@ (%@)",
currentFile[@"name"], currentFile[@"socketstate"]];
}
break;
// Device character code
case 'd':
{
NSString *devCharCode = value;
currentFile[@"devcharcode"] = devCharCode;
if (devCharCodeMap[devCharCode] == nil) {
devCharCodeMap[devCharCode] = [NSMutableArray new];
}
[devCharCodeMap[devCharCode] addObject:currentFile];
}
break;
// File's major/minor device number (0x<hexadecimal>)
case 'D':
{
unsigned int deviceID;
NSString *deviceIDStr = value;
NSScanner *scanner = [NSScanner scannerWithString:deviceIDStr];
[scanner scanHexInt:&deviceID];
// Use device number to add file system info to file
currentFile[@"device"] = fileSystems[@(deviceID)] ? fileSystems[@(deviceID)] : @{ @"devid": @(deviceID) };
}
break;
// File inode number
case 'i':
{
NSString *inodeNumStr = value;
currentFile[@"inode"] = @([inodeNumStr integerValue]);
}
break;
}
}
// Add the one remaining output item
if (currentProcess && currentFile && !skip) {
[currentProcess[@"children"] addObject:currentFile];
}
// Get additional info about the processes, count total number of files
for (NSMutableDictionary *process in processList) {
[LsofTask updateProcessInfo:process];
*numFiles += [process[@"children"] count];
// Iterate over the process's children, map sockets and pipes to their endpoint
for (NSMutableDictionary *f in process[@"children"]) {
if (![f[@"type"] isEqualToString:@"Unix Domain Socket"] && ![f[@"type"] isEqualToString:@"Pipe"]) {
continue;
}
// Identifiable pipes and sockets should have names in the format "->[NAME]"
if ([f[@"name"] length] < 3) {
continue;
}
NSString *name = [f[@"name"] substringFromIndex:2];
// If we know which process owns the other end of the pipe/socket
// Needs to run with root privileges for successful lookup of the
// endpoints of system process pipes/sockets such as syslogd.
if (devCharCodeMap[name]) {
NSArray *endPoints = devCharCodeMap[name];
NSMutableArray *epItems = [NSMutableArray new];
NSDictionary *first = devCharCodeMap[name][0];
f[@"displayname"] = [NSString stringWithFormat:@"%@ (%@%@)",
f[@"displayname"], first[@"pname"],
[endPoints count] > 1 ? @" ..." : @""];
for (NSDictionary *e in endPoints) {
NSString *i = [NSString stringWithFormat:@"%@ (%@)", e[@"pname"], e[@"pid"]];
[epItems addObject:i];
}
f[@"endpoints"] = epItems;
}
}
}
return processList;
}
// Get additional info about process and
// add it to the process info dictionary
+ (void)updateProcessInfo:(NSMutableDictionary *)p {
if (p[@"image"] == nil) {
pid_t pid = [p[@"pid"] intValue];
NSRunningApplication *app = [ProcessUtils appForPID:pid];
if (app) {
p[@"bundle"] = @YES;
NSString *bundlePath = [[app bundleURL] path];
if (bundlePath) {
p[@"path"] = bundlePath;
}
p[@"image"] = [WORKSPACE iconForFile:p[@"path"]];
p[@"app"] = @([ProcessUtils isAppProcess:p[@"path"]]);
p[@"identifier"] = [ProcessUtils identifierForBundleAtPath:p[@"path"]];
} else {
p[@"image"] = [IconUtils imageNamed:@"GenericExecutable"];
p[@"bundle"] = @NO;
p[@"app"] = @NO;
p[@"path"] = [ProcessUtils executablePathForPID:pid];
}
// if ([p[@"bundle"] boolValue]) {
// p[@"identifier"] = [ProcessUtils identifierForBundleAtPath:p[@"path"]];
// }
p[@"psn"] = [ProcessUtils carbonProcessSerialNumberForPID:pid];
// On macOS, lsof truncates process names that are longer than
// 32 characters since it uses libproc. We can do better than that.
if ([DEFAULTS boolForKey:@"friendlyProcessNames"]) {
p[@"pname"] = [ProcessUtils macProcessNameForPID:pid];
}
if (!p[@"pname"]) {
p[@"pname"] = [ProcessUtils fullKernelProcessNameForPID:pid];
}
if (!p[@"pname"]) {
p[@"pname"] = [ProcessUtils procNameForPID:pid];
}
if (!p[@"pname"]) {
p[@"pname"] = p[@"name"];
}
// Set process icon for all children (i.e. files, sockets, etc.)
for (NSMutableDictionary *item in p[@"children"]) {
item[@"pimage"] = p[@"image"];
item[@"pname"] = p[@"pname"];
}
}
// Update display name to show number of open files for process
p[@"displayname"] = [NSString stringWithFormat:@"%@ (%d)", p[@"pname"], (int)[p[@"children"] count]];
}
- (NSMutableArray *)args {
NSMutableArray *arguments = [LSOF_ARGS mutableCopy];
if ([DEFAULTS boolForKey:@"dnsLookup"] == NO) {
// Add arguments to disable dns and port name lookup
[arguments addObjectsFromArray:LSOF_NO_DNS_ARGS];
}
return arguments;
}
@end