-
Notifications
You must be signed in to change notification settings - Fork 63
/
mach-o.h
135 lines (106 loc) · 3.48 KB
/
mach-o.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
// Copyright 2011 Shinichiro Hamaji. 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.
//
// THIS SOFTWARE IS PROVIDED BY Shinichiro Hamaji ``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 Shinichiro Hamaji 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.
#ifndef MACH_O_H_
#define MACH_O_H_
#include <stdint.h>
#include <string>
#include <vector>
#include "mach-o/loader.h"
using namespace std;
class MachO {
public:
struct Rebase {
uint64_t vmaddr;
uint8_t type;
};
struct Bind {
uint64_t vmaddr;
const char* name;
union {
int64_t addend;
uint64_t value;
};
uint8_t type;
uint8_t ordinal;
bool is_weak;
bool is_classic;
};
struct Export {
string name;
uint64_t addr;
uint32_t flag;
};
struct Symbol {
string name;
uint64_t addr;
};
static MachO* read(const char* path, const char* arch,
bool need_exports = true);
virtual ~MachO() {}
virtual void close() = 0;
const string& filename() const { return filename_; }
const vector<segment_command_64*>& segments64() const {
return segments64_;
}
const vector<segment_command*>& segments() const {
return segments_;
}
const vector<const char*>& dylibs() const { return dylibs_; }
const vector<Rebase*>& rebases() const { return rebases_; }
const vector<Bind*>& binds() const { return binds_; }
const vector<Export*>& exports() const { return exports_; }
const vector<Symbol>& symbols() const { return symbols_; }
const char* base() const { return base_; }
uint64_t entry() const { return entry_; }
uint64_t text_base() const { return text_base_; }
bool is_lc_main_entry() const { return is_lc_main_entry_; }
const vector<uint64_t>& init_funcs() const { return init_funcs_; }
uint64_t dyld_data() const { return dyld_data_; }
bool is64() const { return is64_; }
int fd() const { return fd_; }
size_t offset() const { return offset_; }
protected:
string filename_;
vector<segment_command_64*> segments64_;
vector<segment_command*> segments_;
vector<const char*> dylibs_;
vector<Rebase*> rebases_;
vector<Bind*> binds_;
vector<Export*> exports_;
vector<Symbol> symbols_;
const char* base_;
uint64_t entry_;
vector<uint64_t> init_funcs_;
uint64_t dyld_data_;
bool is64_;
int ptrsize_;
int fd_;
size_t offset_;
uint64_t text_base_;
bool is_lc_main_entry_;
};
#endif // MACH_O_H_