frida 17.5.2 → 17.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/releng/deps.toml +6 -6
- package/releng/machine_spec.py +1 -1
- package/releng/sync-from-upstream.py +1 -0
- package/src/frida_bindgen/__pycache__/__init__.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/__main__.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/cli.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/codegen.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/customization.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/loader.cpython-312.pyc +0 -0
- package/src/frida_bindgen/__pycache__/model.cpython-312.pyc +0 -0
- package/src/frida_bindgen/assets/codegen_helpers.c +17 -4
- package/subprojects/frida-core.wrap +1 -1
package/package.json
CHANGED
package/releng/deps.toml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[dependencies]
|
|
2
|
-
version = "
|
|
2
|
+
version = "20260121"
|
|
3
3
|
bootstrap_version = "20250801"
|
|
4
4
|
|
|
5
5
|
[ninja]
|
|
@@ -65,7 +65,7 @@ options = [
|
|
|
65
65
|
[selinux]
|
|
66
66
|
when = "machine.os == 'android'"
|
|
67
67
|
name = "SELinux Userspace"
|
|
68
|
-
version = "
|
|
68
|
+
version = "b7c8cd70d821bb3fc69500e6273149299b80b923"
|
|
69
69
|
url = "https://github.com/frida/selinux.git"
|
|
70
70
|
options = [
|
|
71
71
|
"-Dregex=disabled",
|
|
@@ -73,7 +73,7 @@ options = [
|
|
|
73
73
|
|
|
74
74
|
[glib]
|
|
75
75
|
name = "GLib"
|
|
76
|
-
version = "
|
|
76
|
+
version = "81b631758fe5c665ade9d869554148f6160fe681"
|
|
77
77
|
url = "https://github.com/frida/glib.git"
|
|
78
78
|
options = [
|
|
79
79
|
"-Dcocoa=disabled",
|
|
@@ -218,7 +218,7 @@ url = "https://github.com/frida/libusb.git"
|
|
|
218
218
|
[lwip]
|
|
219
219
|
when = "machine.os != 'none'"
|
|
220
220
|
name = "lwIP"
|
|
221
|
-
version = "
|
|
221
|
+
version = "334ebb20a22023db2f0d5017e96eb0c7798082fd"
|
|
222
222
|
url = "https://github.com/frida/lwip.git"
|
|
223
223
|
options = [
|
|
224
224
|
"-Dipv4=disabled",
|
|
@@ -370,7 +370,7 @@ url = "https://github.com/frida/tinycc.git"
|
|
|
370
370
|
[openssl]
|
|
371
371
|
when = "machine.os != 'none'"
|
|
372
372
|
name = "OpenSSL"
|
|
373
|
-
version = "
|
|
373
|
+
version = "fa60a1c8c704e4ca0cc0dcb289c3be1fea1b50ff"
|
|
374
374
|
url = "https://github.com/frida/openssl.git"
|
|
375
375
|
options = [
|
|
376
376
|
"-Dcli=disabled",
|
|
@@ -386,7 +386,7 @@ when = """ \
|
|
|
386
386
|
and machine.os not in {'none', 'qnx'} \
|
|
387
387
|
"""
|
|
388
388
|
name = "V8"
|
|
389
|
-
version = "
|
|
389
|
+
version = "a07af892420dfd873b33bd4ce4ba9d963072e1b9"
|
|
390
390
|
url = "https://github.com/frida/v8.git"
|
|
391
391
|
options = [
|
|
392
392
|
"-Ddebug=false",
|
package/releng/machine_spec.py
CHANGED
|
@@ -113,7 +113,7 @@ class MachineSpec:
|
|
|
113
113
|
def maybe_adapt_to_host(self, host_machine: MachineSpec) -> MachineSpec:
|
|
114
114
|
if self.identifier == host_machine.identifier and host_machine.triplet is not None:
|
|
115
115
|
return host_machine
|
|
116
|
-
if self.os == "windows":
|
|
116
|
+
if self.os == "windows" and host_machine.os == "windows":
|
|
117
117
|
if host_machine.arch in {"x86_64", "x86"}:
|
|
118
118
|
return host_machine
|
|
119
119
|
if self.arch == host_machine.arch:
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -633,6 +633,7 @@ fdn_variant_from_value (napi_env env,
|
|
|
633
633
|
{
|
|
634
634
|
napi_value second;
|
|
635
635
|
GVariant * val;
|
|
636
|
+
napi_value desc_prop;
|
|
636
637
|
napi_value desc;
|
|
637
638
|
gchar * type;
|
|
638
639
|
GVariant * t[2];
|
|
@@ -640,12 +641,24 @@ fdn_variant_from_value (napi_env env,
|
|
|
640
641
|
if (napi_get_element (env, value, 1, &second) != napi_ok)
|
|
641
642
|
return FALSE;
|
|
642
643
|
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
napi_coerce_to_string (env, first, &desc);
|
|
644
|
+
desc_prop = fdn_utf8_to_value (env, "description");
|
|
645
|
+
napi_get_property (env, first, desc_prop, &desc);
|
|
647
646
|
fdn_utf8_from_value (env, desc, &type);
|
|
648
647
|
|
|
648
|
+
if (strcmp (type, "uint64") == 0)
|
|
649
|
+
{
|
|
650
|
+
gint64 i;
|
|
651
|
+
|
|
652
|
+
if (!fdn_int64_from_value (env, second, &i))
|
|
653
|
+
return FALSE;
|
|
654
|
+
|
|
655
|
+
val = g_variant_new_uint64 ((guint64) i);
|
|
656
|
+
}
|
|
657
|
+
else if (!fdn_variant_from_value (env, second, &val))
|
|
658
|
+
{
|
|
659
|
+
return FALSE;
|
|
660
|
+
}
|
|
661
|
+
|
|
649
662
|
t[0] = g_variant_new_take_string (type);
|
|
650
663
|
t[1] = val;
|
|
651
664
|
|