-
Notifications
You must be signed in to change notification settings - Fork 28
/
CDLCPreboundDylib.m
49 lines (37 loc) · 1.26 KB
/
CDLCPreboundDylib.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 "CDLCPreboundDylib.h"
#import "CDFatFile.h"
#import "CDMachOFile.h"
@implementation CDLCPreboundDylib
{
struct prebound_dylib_command _preboundDylibCommand;
}
- (id)initWithDataCursor:(CDMachOFileDataCursor *)cursor;
{
if ((self = [super initWithDataCursor:cursor])) {
//NSLog(@"current offset: %u", [cursor offset]);
_preboundDylibCommand.cmd = [cursor readInt32];
_preboundDylibCommand.cmdsize = [cursor readInt32];
//NSLog(@"cmdsize: %u", preboundDylibCommand.cmdsize);
_preboundDylibCommand.name.offset = [cursor readInt32];
_preboundDylibCommand.nmodules = [cursor readInt32];
_preboundDylibCommand.linked_modules.offset = [cursor readInt32];
if (_preboundDylibCommand.cmdsize > 20) {
// Don't need this info right now.
[cursor advanceByLength:_preboundDylibCommand.cmdsize - 20];
}
}
return self;
}
#pragma mark -
- (uint32_t)cmd;
{
return _preboundDylibCommand.cmd;
}
- (uint32_t)cmdsize;
{
return _preboundDylibCommand.cmdsize;
}
@end