forked from frida/frida-gum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson.build
366 lines (312 loc) · 8.07 KB
/
meson.build
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
project('frida-gum', 'c', 'cpp',
version: '1.0.0',
meson_version: '>=0.54.0',
default_options: [
'c_std=gnu99',
'cpp_std=c++14',
'cpp_eh=none',
'cpp_rtti=false',
],
)
gum_version = meson.project_version()
api_version = '1.0'
host_os = host_machine.system()
if host_os == 'android'
host_os_family = 'linux'
else
host_os_family = host_os
endif
if host_machine.cpu_family() == 'arm'
host_arch = 'arm'
host_abi = 'arm'
elif host_machine.cpu_family() == 'aarch64'
host_arch = 'arm64'
host_abi = 'arm64'
elif host_machine.cpu_family() == 'mips'
host_arch = 'mips'
if host_machine.endian() == 'little'
host_abi = 'mipsel'
else
host_abi = 'mips'
endif
else
host_arch = host_machine.cpu_family()
host_abi = host_arch
endif
languages = ['c', 'cpp']
if host_os_family == 'darwin'
languages += ['objc', 'objcpp']
add_languages('objc', 'objcpp', native: false)
endif
cc = meson.get_compiler('c')
frida_component_cflags = []
ndebug = get_option('b_ndebug')
if ndebug == 'true' or (ndebug == 'if-release' and not get_option('debug'))
frida_component_cflags += [
'-DG_DISABLE_ASSERT',
'-DG_DISABLE_CHECKS',
'-DG_DISABLE_CAST_CHECKS',
]
endif
if host_arch == 'arm'
is_hardfloat_src = '''
#ifndef __ARM_PCS_VFP
# error Not hardfloat
#endif
'''
if cc.compiles(is_hardfloat_src, name: 'hardfloat ABI')
host_abi = 'armhf'
endif
endif
have_ptrauth_src = '''#ifdef __clang__
# if __has_feature (ptrauth_calls)
# define HAVE_PTRAUTH 1
# endif
#endif
#ifndef HAVE_PTRAUTH
# error Pointer authentication not supported
#endif
'''
have_ptrauth = cc.compiles(have_ptrauth_src, name: 'pointer authentication')
target_conditionals_prefix = '#include <TargetConditionals.h>'
is_macos_src = target_conditionals_prefix + '''
#if !TARGET_OS_OSX
# error Not macOS
#endif
'''
if cc.compiles(is_macos_src, name: 'compiling for macOS')
host_os = 'macos'
endif
is_ios_src = target_conditionals_prefix + '''
#if !TARGET_OS_IOS
# error Not iOS
#endif
'''
if cc.compiles(is_ios_src, name: 'compiling for iOS')
host_os = 'ios'
endif
if cc.has_header('android/api-level.h')
host_os = 'android'
endif
if host_arch == 'arm64' and have_ptrauth
host_abi = 'arm64e'
endif
cdata = configuration_data()
cdata.set('HAVE_' + host_os_family.to_upper(), 1)
if host_os != host_os_family
cdata.set('HAVE_' + host_os.to_upper(), 1)
endif
cpu_defines = [
['x86', 'HAVE_I386'],
['x86_64', 'HAVE_I386'],
['arm', 'HAVE_ARM'],
['arm64', 'HAVE_ARM64'],
['mips', 'HAVE_MIPS'],
]
foreach d : cpu_defines
if d.get(0) == host_arch
cdata.set(d.get(1), 1)
endif
endforeach
if have_ptrauth
cdata.set('HAVE_PTRAUTH', 1)
endif
headers = [
'elf.h',
'link.h',
'stdint.h',
'sys/auxv.h',
'sys/elf.h',
'asm/ptrace.h',
'sys/user.h',
]
foreach h : headers
if cc.has_header(h)
cdata.set('HAVE_' + h.underscorify().to_upper(), 1)
endif
endforeach
if cc.compiles('#include <asm/prctl.h>', name: 'asm/prctl.h is available')
cdata.set('HAVE_ASM_PRCTL_H', 1)
endif
types = [
'long double',
'long long int',
'unsigned long long int'
]
foreach t : types
if cc.has_type(t)
cdata.set('HAVE_' + t.underscorify().to_upper(), 1)
endif
endforeach
glibc_src = '''
#include <features.h>
#if defined (__GLIBC__) && !defined (__UCLIBC__)
#else
# error Not glibc
#endif
'''
if cc.compiles(glibc_src, name: 'compiling for glibc')
cdata.set('HAVE_GLIBC', 1)
endif
if cc.has_member('struct mallinfo', 'arena', prefix: '#include <malloc.h>')
cdata.set('HAVE_LIBC_MALLINFO', 1)
endif
if get_option('b_sanitize') == 'address'
cdata.set('HAVE_ASAN', 1)
endif
glib_dep = dependency('glib-2.0', version: '>=2.56')
gobject_dep = dependency('gobject-2.0')
gio_dep = dependency('gio-2.0')
capstone_dep = dependency('capstone')
ffi_dep = dependency('libffi')
lzma_dep = dependency('liblzma')
extra_deps = []
extra_requires_private = []
extra_libs_private = []
extra_gir_args_private = []
glib_flavor_src = '''
#include <glib.h>
#ifdef GLIB_STATIC_COMPILATION
# error GLib is static
#endif
'''
have_shared_glib = cc.compiles(glib_flavor_src, name: 'compiling with shared GLib', dependencies: [glib_dep])
if have_shared_glib
gir = find_program('g-ir-scanner')
else
gir = disabler()
endif
if cc.has_function('g_thread_set_callbacks', dependencies: [glib_dep])
cdata.set('HAVE_FRIDA_GLIB', 1)
endif
if cc.has_function('ffi_set_mem_callbacks', dependencies: [ffi_dep])
cdata.set('HAVE_FRIDA_LIBFFI', 1)
endif
if host_os == 'android'
extra_libs_private += ['-llog']
endif
unwind_dep = dependency('libunwind', required: false)
unwind_requires = []
if unwind_dep.found()
cdata.set('HAVE_LIBUNWIND', 1)
extra_deps += [unwind_dep]
extra_requires_private += ['libunwind']
elif host_os_family == 'linux' or host_os_family == 'qnx'
error('libunwind is required')
endif
if host_os_family == 'linux' or host_os_family == 'qnx'
elf_dep = dependency('libelf')
extra_deps += [elf_dep]
have_libdwarf = cc.has_header('libdwarf.h')
if not have_libdwarf
error('libdwarf is required')
endif
if host_os_family == 'linux'
extra_libs_private += ['-ldwarf', '-ldl', '-lz']
extra_gir_args_private += ['--extra-library=dwarf']
else
extra_libs_private += ['-ldwarf', '-lz']
endif
else
have_libdwarf = false
endif
if host_os == 'android'
minizip_dep = dependency('minizip', required: false)
if minizip_dep.found()
cdata.set('HAVE_MINIZIP', 1)
extra_deps += [minizip_dep]
extra_requires_private += ['minizip']
endif
endif
tls_provider_dep = dependency('gioopenssl', required: false)
if tls_provider_dep.found()
cdata.set('HAVE_GIOOPENSSL', 1)
endif
have_gumpp = not get_option('gumpp').disabled()
if have_gumpp
cdata.set('HAVE_GUMPP', 1)
endif
have_gumjs = not get_option('gumjs').disabled()
gumjs_extra_requires = []
if have_gumjs
cdata.set('HAVE_GUMJS', 1)
quickjs_dep = dependency('quickjs',
required: get_option('quickjs'),
)
cdata.set('HAVE_QUICKJS', quickjs_dep.found())
if quickjs_dep.found()
gumjs_extra_requires += 'quickjs'
quickjs_dep_native = dependency('quickjs', native: true)
endif
v8_dep = dependency('v8-8.0',
version: '>=8.8.273',
required: get_option('v8'),
)
cdata.set('HAVE_V8', v8_dep.found())
if v8_dep.found()
gumjs_extra_requires += 'v8-8.0'
endif
if not (quickjs_dep.found() or v8_dep.found())
error('Cannot build JavaScript bindings without any runtimes enabled')
endif
if host_os_family == 'windows'
gio_os_package_name = 'gio-windows-2.0'
else
gio_os_package_name = 'gio-unix-2.0'
endif
gio_os_package_dep = dependency(gio_os_package_name)
gumjs_extra_requires += [gio_os_package_name]
json_glib_dep = dependency('json-glib-1.0')
libtcc_dep = dependency('libtcc',
required: host_arch != 'mips',
)
cdata.set('HAVE_TINYCC', libtcc_dep.found())
sqlite_dep = dependency('sqlite3')
libsoup_dep = dependency('libsoup-2.4')
endif
configure_file(input: 'config.h.in',
output: 'config.h',
configuration: cdata)
add_project_arguments(
'-include', 'config.h',
'-DG_LOG_DOMAIN="Frida"',
'-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_56',
'-DG_DISABLE_DEPRECATED',
language: languages)
if host_os_family == 'linux'
add_project_arguments('-D_GNU_SOURCE=1', language: languages)
endif
if host_os_family == 'qnx'
add_project_arguments('-D_QNX_SOURCE=1', language: languages)
endif
gum_incdirs = [
include_directories('.'),
include_directories('gum'),
include_directories('gum/arch-x86'),
include_directories('gum/arch-arm'),
include_directories('gum/arch-arm64'),
include_directories('gum/arch-mips'),
include_directories('libs'),
include_directories('libs/gum/heap'),
include_directories('libs/gum/prof'),
]
if host_os_family == 'darwin'
gum_incdirs += [
include_directories('gum/backend-darwin'),
]
endif
if host_os_family == 'linux' or host_os_family == 'qnx'
gum_incdirs += [
include_directories('gum/backend-elf'),
]
endif
install_header_basedir = 'frida-' + api_version
install_header_subdir = install_header_basedir + '/gum'
subdir('gum')
subdir('libs')
subdir('bindings')
subdir('vapi')
subdir('tools')
if get_option('tests')
subdir('tests')
endif