-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Expand file tree
/
Copy patharginfo_zpp_mismatch.phpt
More file actions
118 lines (107 loc) · 2.84 KB
/
Copy patharginfo_zpp_mismatch.phpt
File metadata and controls
118 lines (107 loc) · 2.84 KB
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
--TEST--
Test that there is no arginfo/zpp mismatch
--SKIPIF--
<?php
if (getenv('SKIP_ASAN')) die("skip Intermittently crashes lsan");
if (getenv('SKIP_MSAN')) die("skip msan misses interceptors for some functions");
?>
--FILE--
<?php
require __DIR__ . "/arginfo_zpp_mismatch.inc";
function testWeakSysvIpcFunction($function): bool {
if (!in_array($function, ['msg_queue_exists', 'msg_get_queue', 'sem_get', 'shm_attach'], true)) {
return false;
}
for ($argumentCount = 0; $argumentCount <= 8; $argumentCount++) {
$arguments = array_fill(0, $argumentCount, null);
if ($function === 'msg_queue_exists' && $argumentCount >= 1) {
$arguments[0] = 1;
}
if (($function === 'sem_get' || $function === 'shm_attach') && $argumentCount >= 3) {
$arguments[2] = 0600;
}
try {
$result = @$function(...$arguments);
if ($result instanceof SysvMessageQueue) {
msg_remove_queue($result);
} elseif ($result instanceof SysvSemaphore) {
sem_remove($result);
} elseif ($result instanceof SysvSharedMemory) {
shm_remove($result);
}
} catch (Throwable) {
}
}
return true;
}
function test($function) {
if (skipFunction($function)) {
return;
}
ob_start();
if (is_string($function)) {
echo "Testing $function\n";
} else {
echo "Testing " . get_class($function[0]) . "::$function[1]\n";
}
if (testWeakSysvIpcFunction($function)) {
ob_end_clean();
return;
}
try {
@$function();
} catch (Throwable) {
}
try {
@$function(null);
} catch (Throwable) {
}
try {
@$function(null, null);
} catch (Throwable) {
}
try {
@$function(null, null, null);
} catch (Throwable) {
}
try {
@$function(null, null, null, null);
} catch (Throwable) {
}
try {
@$function(null, null, null, null, null);
} catch (Throwable) {
}
try {
@$function(null, null, null, null, null, null);
} catch (Throwable) {
}
try {
@$function(null, null, null, null, null, null, null);
} catch (Throwable) {
}
try {
@$function(null, null, null, null, null, null, null, null);
} catch (Throwable) {
}
ob_end_clean();
}
foreach (get_defined_functions()["internal"] as $function) {
test($function);
}
foreach (get_declared_classes() as $class) {
try {
$rc = new ReflectionClass($class);
$obj = $rc->newInstanceWithoutConstructor();
} catch (Throwable) {
continue;
}
foreach (get_class_methods($class) as $method) {
test([$obj, $method]);
}
}
// var_dump() and debug_zval_dump() print all arguments
?>
===DONE===
--EXPECT--
===DONE===