Skip to content

Commit 3ef95aa

Browse files
committed
initial commit
0 parents  commit 3ef95aa

32 files changed

+11477
-0
lines changed

.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
*.DS_Store
2+
.AppleDouble
3+
.LSOverride
4+
5+
# Precompiled headers
6+
*.gch
7+
8+
*.pyc
9+
10+
# Icon must end with two \r
11+
Icon
12+
13+
xcuserdata/
14+
*.xcuserstate
15+
16+
# Thumbnails
17+
._*
18+
19+
# Files that might appear in the root of a volume
20+
.DocumentRevisions-V100
21+
.fseventsd
22+
.Spotlight-V100
23+
.TemporaryItems
24+
.Trashes
25+
.VolumeIcon.icns
26+
.com.apple.timemachine.donotpresent
27+
28+
# Directories potentially created on remote AFP share
29+
.AppleDB
30+
.AppleDesktop
31+
Network Trash Folder
32+
Temporary Items
33+
.apdisk
34+
35+
*.swp

OSXFuzz.xcodeproj/project.pbxproj

Lines changed: 280 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,280 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
8A0ED50A1DAE5D7200FF2998 /* Hypervisor.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A0ED5091DAE5D7200FF2998 /* Hypervisor.framework */; };
11+
8A3C75191D508DC4007EDF70 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = 8A3C75181D508DC4007EDF70 /* main.c */; };
12+
FAF552CC1D841FDD00918B1C /* start_bughunt.py in CopyFiles */ = {isa = PBXBuildFile; fileRef = FAF552CB1D841FBA00918B1C /* start_bughunt.py */; };
13+
/* End PBXBuildFile section */
14+
15+
/* Begin PBXCopyFilesBuildPhase section */
16+
8A3C75131D508DC3007EDF70 /* CopyFiles */ = {
17+
isa = PBXCopyFilesBuildPhase;
18+
buildActionMask = 12;
19+
dstPath = "";
20+
dstSubfolderSpec = 16;
21+
files = (
22+
FAF552CC1D841FDD00918B1C /* start_bughunt.py in CopyFiles */,
23+
);
24+
runOnlyForDeploymentPostprocessing = 0;
25+
};
26+
/* End PBXCopyFilesBuildPhase section */
27+
28+
/* Begin PBXFileReference section */
29+
8A0E4B661D5A32E60089E176 /* logger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = logger.h; sourceTree = "<group>"; };
30+
8A0ED5091DAE5D7200FF2998 /* Hypervisor.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Hypervisor.framework; path = System/Library/Frameworks/Hypervisor.framework; sourceTree = SDKROOT; };
31+
8A1F14261D5B3453001A181F /* object_database.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = object_database.h; sourceTree = "<group>"; };
32+
8A3C75151D508DC4007EDF70 /* OSXFuzz */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = OSXFuzz; sourceTree = BUILT_PRODUCTS_DIR; };
33+
8A3C75181D508DC4007EDF70 /* main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = "<group>"; };
34+
FA7486B31D801D3600933690 /* bughunt_syscalls.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bughunt_syscalls.h; sourceTree = "<group>"; };
35+
FAB3BCCE1D65C29E003E633E /* library_calls */ = {isa = PBXFileReference; lastKnownFileType = folder; path = library_calls; sourceTree = "<group>"; };
36+
FAB3BCCF1D65C38F003E633E /* library_calls.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = library_calls.h; sourceTree = "<group>"; };
37+
FAB3BCD01D65D672003E633E /* bughunt_thread.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bughunt_thread.h; sourceTree = "<group>"; };
38+
FAB3BCD11D65D781003E633E /* bughunt.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bughunt.h; sourceTree = "<group>"; };
39+
FAB3BCD21D65EE67003E633E /* helpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = helpers.h; sourceTree = "<group>"; };
40+
FAF552CB1D841FBA00918B1C /* start_bughunt.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = start_bughunt.py; sourceTree = "<group>"; };
41+
/* End PBXFileReference section */
42+
43+
/* Begin PBXFrameworksBuildPhase section */
44+
8A3C75121D508DC3007EDF70 /* Frameworks */ = {
45+
isa = PBXFrameworksBuildPhase;
46+
buildActionMask = 2147483647;
47+
files = (
48+
8A0ED50A1DAE5D7200FF2998 /* Hypervisor.framework in Frameworks */,
49+
);
50+
runOnlyForDeploymentPostprocessing = 0;
51+
};
52+
/* End PBXFrameworksBuildPhase section */
53+
54+
/* Begin PBXGroup section */
55+
8A3C750C1D508DC3007EDF70 = {
56+
isa = PBXGroup;
57+
children = (
58+
8A0ED5091DAE5D7200FF2998 /* Hypervisor.framework */,
59+
8A3C75171D508DC4007EDF70 /* OSXFuzz */,
60+
8A3C75161D508DC4007EDF70 /* Products */,
61+
);
62+
sourceTree = "<group>";
63+
};
64+
8A3C75161D508DC4007EDF70 /* Products */ = {
65+
isa = PBXGroup;
66+
children = (
67+
8A3C75151D508DC4007EDF70 /* OSXFuzz */,
68+
);
69+
name = Products;
70+
sourceTree = "<group>";
71+
};
72+
8A3C75171D508DC4007EDF70 /* OSXFuzz */ = {
73+
isa = PBXGroup;
74+
children = (
75+
FAF552CB1D841FBA00918B1C /* start_bughunt.py */,
76+
FAB3BCCE1D65C29E003E633E /* library_calls */,
77+
8A3C75181D508DC4007EDF70 /* main.c */,
78+
8A0E4B661D5A32E60089E176 /* logger.h */,
79+
8A1F14261D5B3453001A181F /* object_database.h */,
80+
FAB3BCCF1D65C38F003E633E /* library_calls.h */,
81+
FAB3BCD01D65D672003E633E /* bughunt_thread.h */,
82+
FAB3BCD11D65D781003E633E /* bughunt.h */,
83+
FAB3BCD21D65EE67003E633E /* helpers.h */,
84+
FA7486B31D801D3600933690 /* bughunt_syscalls.h */,
85+
);
86+
path = OSXFuzz;
87+
sourceTree = "<group>";
88+
};
89+
/* End PBXGroup section */
90+
91+
/* Begin PBXNativeTarget section */
92+
8A3C75141D508DC3007EDF70 /* OSXFuzz */ = {
93+
isa = PBXNativeTarget;
94+
buildConfigurationList = 8A3C751C1D508DC4007EDF70 /* Build configuration list for PBXNativeTarget "OSXFuzz" */;
95+
buildPhases = (
96+
8A3C75111D508DC3007EDF70 /* Sources */,
97+
8A3C75121D508DC3007EDF70 /* Frameworks */,
98+
8A3C75131D508DC3007EDF70 /* CopyFiles */,
99+
);
100+
buildRules = (
101+
);
102+
dependencies = (
103+
);
104+
name = OSXFuzz;
105+
productName = OSXFuzz;
106+
productReference = 8A3C75151D508DC4007EDF70 /* OSXFuzz */;
107+
productType = "com.apple.product-type.tool";
108+
};
109+
/* End PBXNativeTarget section */
110+
111+
/* Begin PBXProject section */
112+
8A3C750D1D508DC3007EDF70 /* Project object */ = {
113+
isa = PBXProject;
114+
attributes = {
115+
LastUpgradeCheck = 0800;
116+
ORGANIZATIONNAME = "";
117+
TargetAttributes = {
118+
8A3C75141D508DC3007EDF70 = {
119+
CreatedOnToolsVersion = 8.0;
120+
DevelopmentTeam = A5KXYC7AK6;
121+
DevelopmentTeamName = "Alex Plaskett (Personal Team)";
122+
ProvisioningStyle = Automatic;
123+
};
124+
};
125+
};
126+
buildConfigurationList = 8A3C75101D508DC3007EDF70 /* Build configuration list for PBXProject "OSXFuzz" */;
127+
compatibilityVersion = "Xcode 3.2";
128+
developmentRegion = English;
129+
hasScannedForEncodings = 0;
130+
knownRegions = (
131+
en,
132+
);
133+
mainGroup = 8A3C750C1D508DC3007EDF70;
134+
productRefGroup = 8A3C75161D508DC4007EDF70 /* Products */;
135+
projectDirPath = "";
136+
projectRoot = "";
137+
targets = (
138+
8A3C75141D508DC3007EDF70 /* OSXFuzz */,
139+
);
140+
};
141+
/* End PBXProject section */
142+
143+
/* Begin PBXSourcesBuildPhase section */
144+
8A3C75111D508DC3007EDF70 /* Sources */ = {
145+
isa = PBXSourcesBuildPhase;
146+
buildActionMask = 2147483647;
147+
files = (
148+
8A3C75191D508DC4007EDF70 /* main.c in Sources */,
149+
);
150+
runOnlyForDeploymentPostprocessing = 0;
151+
};
152+
/* End PBXSourcesBuildPhase section */
153+
154+
/* Begin XCBuildConfiguration section */
155+
8A3C751A1D508DC4007EDF70 /* Debug */ = {
156+
isa = XCBuildConfiguration;
157+
buildSettings = {
158+
ALWAYS_SEARCH_USER_PATHS = NO;
159+
CLANG_ANALYZER_NONNULL = YES;
160+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
161+
CLANG_CXX_LIBRARY = "libc++";
162+
CLANG_ENABLE_MODULES = YES;
163+
CLANG_ENABLE_OBJC_ARC = YES;
164+
CLANG_WARN_BOOL_CONVERSION = YES;
165+
CLANG_WARN_CONSTANT_CONVERSION = YES;
166+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
167+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
168+
CLANG_WARN_EMPTY_BODY = YES;
169+
CLANG_WARN_ENUM_CONVERSION = YES;
170+
CLANG_WARN_INT_CONVERSION = YES;
171+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
172+
CLANG_WARN_UNREACHABLE_CODE = YES;
173+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
174+
CODE_SIGN_IDENTITY = "-";
175+
COPY_PHASE_STRIP = NO;
176+
DEBUG_INFORMATION_FORMAT = dwarf;
177+
ENABLE_STRICT_OBJC_MSGSEND = YES;
178+
ENABLE_TESTABILITY = YES;
179+
GCC_C_LANGUAGE_STANDARD = gnu99;
180+
GCC_DYNAMIC_NO_PIC = NO;
181+
GCC_NO_COMMON_BLOCKS = YES;
182+
GCC_OPTIMIZATION_LEVEL = 0;
183+
GCC_PREPROCESSOR_DEFINITIONS = (
184+
"DEBUG=1",
185+
"$(inherited)",
186+
);
187+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
188+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
189+
GCC_WARN_UNDECLARED_SELECTOR = YES;
190+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
191+
GCC_WARN_UNUSED_FUNCTION = YES;
192+
GCC_WARN_UNUSED_VARIABLE = YES;
193+
MACOSX_DEPLOYMENT_TARGET = 10.12;
194+
MTL_ENABLE_DEBUG_INFO = YES;
195+
ONLY_ACTIVE_ARCH = YES;
196+
SDKROOT = macosx;
197+
};
198+
name = Debug;
199+
};
200+
8A3C751B1D508DC4007EDF70 /* Release */ = {
201+
isa = XCBuildConfiguration;
202+
buildSettings = {
203+
ALWAYS_SEARCH_USER_PATHS = NO;
204+
CLANG_ANALYZER_NONNULL = YES;
205+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
206+
CLANG_CXX_LIBRARY = "libc++";
207+
CLANG_ENABLE_MODULES = YES;
208+
CLANG_ENABLE_OBJC_ARC = YES;
209+
CLANG_WARN_BOOL_CONVERSION = YES;
210+
CLANG_WARN_CONSTANT_CONVERSION = YES;
211+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
212+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
213+
CLANG_WARN_EMPTY_BODY = YES;
214+
CLANG_WARN_ENUM_CONVERSION = YES;
215+
CLANG_WARN_INT_CONVERSION = YES;
216+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
217+
CLANG_WARN_UNREACHABLE_CODE = YES;
218+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
219+
CODE_SIGN_IDENTITY = "-";
220+
COPY_PHASE_STRIP = NO;
221+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
222+
ENABLE_NS_ASSERTIONS = NO;
223+
ENABLE_STRICT_OBJC_MSGSEND = YES;
224+
GCC_C_LANGUAGE_STANDARD = gnu99;
225+
GCC_NO_COMMON_BLOCKS = YES;
226+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
227+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
228+
GCC_WARN_UNDECLARED_SELECTOR = YES;
229+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
230+
GCC_WARN_UNUSED_FUNCTION = YES;
231+
GCC_WARN_UNUSED_VARIABLE = YES;
232+
MACOSX_DEPLOYMENT_TARGET = 10.12;
233+
MTL_ENABLE_DEBUG_INFO = NO;
234+
SDKROOT = macosx;
235+
};
236+
name = Release;
237+
};
238+
8A3C751D1D508DC4007EDF70 /* Debug */ = {
239+
isa = XCBuildConfiguration;
240+
buildSettings = {
241+
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
242+
OTHER_LDFLAGS = "";
243+
PRODUCT_NAME = "$(TARGET_NAME)";
244+
};
245+
name = Debug;
246+
};
247+
8A3C751E1D508DC4007EDF70 /* Release */ = {
248+
isa = XCBuildConfiguration;
249+
buildSettings = {
250+
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
251+
OTHER_LDFLAGS = "";
252+
PRODUCT_NAME = "$(TARGET_NAME)";
253+
};
254+
name = Release;
255+
};
256+
/* End XCBuildConfiguration section */
257+
258+
/* Begin XCConfigurationList section */
259+
8A3C75101D508DC3007EDF70 /* Build configuration list for PBXProject "OSXFuzz" */ = {
260+
isa = XCConfigurationList;
261+
buildConfigurations = (
262+
8A3C751A1D508DC4007EDF70 /* Debug */,
263+
8A3C751B1D508DC4007EDF70 /* Release */,
264+
);
265+
defaultConfigurationIsVisible = 0;
266+
defaultConfigurationName = Release;
267+
};
268+
8A3C751C1D508DC4007EDF70 /* Build configuration list for PBXNativeTarget "OSXFuzz" */ = {
269+
isa = XCConfigurationList;
270+
buildConfigurations = (
271+
8A3C751D1D508DC4007EDF70 /* Debug */,
272+
8A3C751E1D508DC4007EDF70 /* Release */,
273+
);
274+
defaultConfigurationIsVisible = 0;
275+
defaultConfigurationName = Release;
276+
};
277+
/* End XCConfigurationList section */
278+
};
279+
rootObject = 8A3C750D1D508DC3007EDF70 /* Project object */;
280+
}

OSXFuzz.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)