-
Notifications
You must be signed in to change notification settings - Fork 28
/
CDLCUnknown.m
49 lines (37 loc) · 1.1 KB
/
CDLCUnknown.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
// -*- mode: ObjC -*-
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
// Copyright (C) 1997-2019 Steve Nygard.
#import "CDLCUnknown.h"
static BOOL debug = NO;
@implementation CDLCUnknown
{
struct load_command _loadCommand;
NSData *_commandData;
}
- (id)initWithDataCursor:(CDMachOFileDataCursor *)cursor;
{
if ((self = [super initWithDataCursor:cursor])) {
if (debug) NSLog(@"offset: %lu", [cursor offset]);
_loadCommand.cmd = [cursor readInt32];
_loadCommand.cmdsize = [cursor readInt32];
if (debug) NSLog(@"cmdsize: %u", _loadCommand.cmdsize);
if (_loadCommand.cmdsize > 8) {
NSMutableData *commandData = [[NSMutableData alloc] init];
[cursor appendBytesOfLength:_loadCommand.cmdsize - 8 intoData:commandData];
_commandData = [commandData copy];
} else {
_commandData = nil;
}
}
return self;
}
#pragma mark -
- (uint32_t)cmd;
{
return _loadCommand.cmd;
}
- (uint32_t)cmdsize;
{
return _loadCommand.cmdsize;
}
@end