forked from frida/frida-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmeson.build
431 lines (379 loc) · 10.5 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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
project('frida-core', 'vala', 'c', 'cpp',
version: '1.0.0',
meson_version: '>=0.58.0',
default_options: ['c_std=gnu99', 'cpp_std=c++11'],
)
api_version = '1.0'
header_install_dir = get_option('includedir') / 'frida-' + api_version
build_os = build_machine.system()
if build_os == 'android'
build_os_family = 'linux'
else
build_os_family = build_os
endif
host_os = host_machine.system()
if host_os == 'android'
host_os_family = 'linux'
else
host_os_family = host_os
endif
host_is_64bit = host_machine.cpu_family().endswith('64')
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
elif host_machine.cpu_family() == 'mips64'
host_arch = 'mips'
if host_machine.endian() == 'little'
host_abi = 'mips64el'
else
host_abi = 'mips64'
endif
else
host_arch = host_machine.cpu_family()
host_abi = host_arch
endif
host_toolchain = (host_os_family == 'darwin') ? 'apple' : 'gnu'
gumjs_archs = {
'x86': 'ia32',
'x86_64': 'x64',
}
host_arch_gumjs = gumjs_archs.get(host_arch, host_arch)
c_languages = ['c', 'cpp']
if host_os_family == 'darwin'
c_languages += ['objc', 'objcpp']
add_languages('objc', 'objcpp', native: false)
endif
cc = meson.get_compiler('c')
vala_flags = []
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
if host_os_family == 'darwin'
apple_os_flavors = [
['macOS', 'OSX'],
['iOS', 'IOS'],
['watchOS', 'WATCH'],
['tvOS', 'TV'],
]
foreach candidate : apple_os_flavors
name = candidate[0]
constant = candidate[1]
if cc.compiles('''
#include <TargetConditionals.h>
#if !TARGET_OS_@0@
# error Nope
#endif
'''.format(constant),
name: f'compiling for @name@')
host_os = name.to_lower()
break
endif
endforeach
if host_os == 'darwin'
error('Unable to detect Apple OS flavor')
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')
if host_arch == 'arm64' and have_ptrauth
host_abi = 'arm64e'
endif
endif
if host_os_family == 'linux' and cc.has_header('android/api-level.h')
host_os = 'android'
endif
if cc.sizeof('void *') == 8
host_cpu_mode = '64'
else
host_cpu_mode = '32'
endif
cdata = configuration_data()
if cc.get_define('FRIDA_VERSION') == ''
version = meson.project_version()
tokens = version.split('.')
cdata.set_quoted('FRIDA_VERSION', version)
cdata.set('FRIDA_MAJOR_VERSION', tokens[0].to_int())
cdata.set('FRIDA_MINOR_VERSION', tokens[1].to_int())
cdata.set('FRIDA_MICRO_VERSION', tokens[2].to_int())
cdata.set('FRIDA_NANO_VERSION', 0)
endif
cdata.set_quoted('FRIDA_PREFIX', get_option('prefix'))
exe_suffix = (host_os_family == 'windows') ? '.exe' : ''
if host_os_family == 'windows'
shlib_suffix = '.dll'
elif host_os_family == 'darwin'
shlib_suffix = '.dylib'
else
shlib_suffix = '.so'
endif
helper_name = 'frida-helper' + exe_suffix
agent_name = 'frida-agent' + shlib_suffix
gadget_name = 'frida-gadget' + shlib_suffix
if host_os_family == 'darwin'
asset_dir = get_option('libdir') / 'frida'
default_asset_path_template = get_option('prefix') / get_option('libdir') / 'frida'
else
asset_dir = get_option('libdir') / 'frida' / host_cpu_mode
default_asset_path_template = get_option('prefix') / get_option('libdir') / 'frida' / '<arch>'
endif
asset_path_template = get_option('asset_path_template')
if asset_path_template == ''
asset_path_template = default_asset_path_template
endif
if get_option('assets') == 'embedded'
vala_flags += '--define=HAVE_EMBEDDED_ASSETS'
else
cdata.set_quoted('FRIDA_HELPER_PATH', asset_path_template / helper_name)
cdata.set_quoted('FRIDA_AGENT_PATH', asset_path_template / agent_name)
endif
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
headers = [
'locale.h',
'xlocale.h',
'sys/user.h',
]
foreach h : headers
if cc.has_header(h)
cdata.set('HAVE_' + h.underscorify().to_upper(), 1)
endif
endforeach
if host_os == 'linux'
glibc_src = '''
#include <features.h>
#if defined (__GLIBC__) && !defined (__UCLIBC__)
#else
# error Not glibc
#endif
'''
uclibc_src = '''
#include <features.h>
#if !defined (__UCLIBC__)
# error Not uClibc
#endif
'''
if cc.compiles(glibc_src, name: 'compiling for glibc')
cdata.set('HAVE_GLIBC', 1)
elif cc.compiles(uclibc_src, name: 'compiling for uClibc')
cdata.set('HAVE_UCLIBC', 1)
else
cdata.set('HAVE_MUSL', 1)
endif
endif
if get_option('b_sanitize') == 'address'
cdata.set('HAVE_ASAN', 1)
endif
glib_dep = dependency('glib-2.0', version: '>=2.74')
gobject_dep = dependency('gobject-2.0')
gmodule_dep = dependency('gmodule-2.0')
gio_dep = dependency('gio-2.0')
gee_dep = dependency('gee-0.8')
json_glib_dep = dependency('json-glib-1.0')
libsoup_dep = dependency('libsoup-3.0')
gum_dep = dependency('frida-gum-1.0')
gumjs_dep = dependency('frida-gumjs-1.0')
gumjs_inspector_dep = dependency('frida-gumjs-inspector-1.0')
quickjs_dep = dependency('quickjs', required: false)
brotlidec_dep = dependency('libbrotlidec')
have_v8 = gumjs_dep.get_variable('gumjs_v8') == 'enabled'
if have_v8
vala_flags += ['--define=HAVE_V8']
v8_mksnapshot = find_program('v8-mksnapshot-@0@-@1@'.format(host_os, host_abi), required: false)
if not v8_mksnapshot.found()
v8_mksnapshot = ''
endif
else
v8_mksnapshot = ''
endif
native_glib_dep = dependency('glib-2.0', version: '>=2.74', native: true)
native_gio_dep = dependency('gio-2.0', native: true)
native_gee_dep = dependency('gee-0.8', native: true)
native_brotlienc_dep = dependency('libbrotlienc', native: true)
if host_os_family == 'windows'
gio_windows_dep = dependency('gio-windows-2.0')
else
gio_unix_dep = dependency('gio-unix-2.0')
endif
backend_deps_private = []
backend_libs_private = []
if quickjs_dep.found()
backend_deps_private += quickjs_dep
endif
if host_os_family == 'linux' and cc.has_function('openpty', prefix: '#include <pty.h>')
vala_flags += '--define=HAVE_OPENPTY'
endif
if host_os == 'android'
libselinux_dep = dependency('libselinux', version: '>=3.0')
libsepol_dep = dependency('libsepol', version: '>=3.0')
backend_deps_private += [libselinux_dep, libsepol_dep]
endif
tls_provider_dep = dependency('gioopenssl', required: get_option('connectivity'))
if tls_provider_dep.found()
cdata.set('HAVE_GIOOPENSSL', 1)
vala_flags += ['--define=HAVE_GIOOPENSSL']
backend_deps_private += tls_provider_dep
endif
nice_dep = dependency('nice', required: get_option('connectivity'))
if nice_dep.found()
openssl_dep = dependency('openssl')
usrsctp_dep = dependency('usrsctp')
cdata.set('HAVE_NICE', 1)
vala_flags += ['--define=HAVE_NICE']
backend_deps_private += [nice_dep, openssl_dep, usrsctp_dep]
if cc.has_member('struct sockaddr_conn', 'sconn_len',
dependencies: [usrsctp_dep],
prefix: '#include <usrsctp.h>')
cdata.set('HAVE_SCONN_LEN', 1)
endif
else
openssl_dep = []
usrsctp_dep = []
endif
if host_os_family == 'windows'
backend_libs_private += ['-lsetupapi']
endif
if host_os_family == 'darwin'
backend_libs_private += ['-Wl,-framework,Foundation', '-lbsm']
endif
if host_os == 'macos'
backend_libs_private += ['-Wl,-framework,AppKit']
endif
if host_os in ['ios', 'tvos']
backend_libs_private += ['-Wl,-framework,CoreGraphics', '-Wl,-framework,UIKit']
endif
ar = find_program('ar')
nm = find_program('nm')
if host_os_family != 'windows'
if host_os_family == 'darwin'
readelf = ''
otool = find_program('otool')
libtool = find_program('libtool')
else
readelf = find_program('readelf')
otool = ''
libtool = ''
endif
else
readelf = ''
otool = ''
libtool = ''
endif
strip = find_program('strip')
if host_os_family == 'darwin'
install_name_tool = find_program('install_name_tool')
lipo = find_program('lipo')
codesign = find_program('codesign')
else
install_name_tool = ''
lipo = ''
codesign = ''
endif
modulate = files('tools/modulate.py')
post_process_module = [
files('tools/post-process-module.sh'),
host_os,
'>>>', strip, '<<<',
get_option('strip').to_string(),
install_name_tool,
codesign,
]
mapper_opt = get_option('mapper')
if mapper_opt.auto()
have_mapper = host_os_family == 'darwin'
else
have_mapper = mapper_opt.enabled()
endif
if have_mapper
cdata.set('HAVE_MAPPER', 1)
endif
configure_file(
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: c_languages)
if host_os_family == 'linux'
add_project_arguments('-D_GNU_SOURCE=1', language: c_languages)
endif
vala_flags += [
'--vapidir=' + meson.current_source_dir() / 'vapi',
'--pkg', 'config',
]
vala_flags += ['--define=' + host_os_family.to_upper()]
if host_os != host_os_family
vala_flags += ['--define=' + host_os.to_upper()]
endif
vala_flags += ['--define=' + host_arch.to_upper()]
if host_abi != host_arch
vala_flags += ['--define=' + host_abi.to_upper()]
endif
if get_option('agent_legacy') != ''
vala_flags += ['--define=CROSS_ARCH']
endif
add_project_arguments(vala_flags, language: ['vala'])
native_vala_flags = [
'--vapidir=' + meson.current_source_dir() / 'vapi',
]
add_project_arguments(native_vala_flags, language: ['vala'], native: true)
subdir('tools')
subdir('lib')
subdir('src')
if host_os != 'watchos'
subdir('server')
subdir('portal')
subdir('inject')
if get_option('tests')
subdir('tests')
endif
endif