-
-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathNonExecutableCodeSniff.php
More file actions
308 lines (265 loc) · 11.6 KB
/
NonExecutableCodeSniff.php
File metadata and controls
308 lines (265 loc) · 11.6 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
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
<?php
/**
* Warns about code that can never been executed.
*
* @author Greg Sherwood <gsherwood@squiz.net>
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
* @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
namespace PHP_CodeSniffer\Standards\Squiz\Sniffs\PHP;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Sniffs\Sniff;
use PHP_CodeSniffer\Util\Tokens;
class NonExecutableCodeSniff implements Sniff
{
/**
* Tokens for terminating expressions, which can be used inline.
*
* This is in contrast to terminating statements, which cannot be used inline
* and would result in a parse error (which is not the concern of this sniff).
*
* `throw` can be used as an expression since PHP 8.0.
* {@link https://wiki.php.net/rfc/throw_expression}
*
* @var array
*/
private $expressionTokens = [
T_EXIT => T_EXIT,
T_THROW => T_THROW,
];
/**
* Returns an array of tokens this test wants to listen for.
*
* @return array<int|string>
*/
public function register()
{
return [
T_BREAK,
T_CONTINUE,
T_RETURN,
T_THROW,
T_EXIT,
T_GOTO,
];
}//end register()
/**
* Processes this test, when one of its tokens is encountered.
*
* @param \PHP_CodeSniffer\Files\File $phpcsFile The file being scanned.
* @param int $stackPtr The position of the current token in
* the stack passed in $tokens.
*
* @return void
*/
public function process(File $phpcsFile, $stackPtr)
{
$tokens = $phpcsFile->getTokens();
$prev = $phpcsFile->findPrevious(Tokens::$emptyTokens, ($stackPtr - 1), null, true);
// Allow for PHP 8.4+ fully qualified use of exit/die.
if ($tokens[$stackPtr]['code'] === \T_EXIT && $tokens[$prev]['code'] === \T_NS_SEPARATOR) {
$prev = $phpcsFile->findPrevious(Tokens::$emptyTokens, ($prev - 1), null, true);
}
// Tokens which can be used in inline expressions need special handling.
if (isset($this->expressionTokens[$tokens[$stackPtr]['code']]) === true) {
// If this token is preceded by a logical operator, it only relates to one line
// and should be ignored. For example: fopen() or die().
// Note: There is one exception: throw expressions can not be used with xor.
if (isset(Tokens::$booleanOperators[$tokens[$prev]['code']]) === true
&& ($tokens[$stackPtr]['code'] === T_THROW && $tokens[$prev]['code'] === T_LOGICAL_XOR) === false
) {
return;
}
// Expressions are allowed in the `else` clause of ternaries.
if ($tokens[$prev]['code'] === T_INLINE_THEN || $tokens[$prev]['code'] === T_INLINE_ELSE) {
return;
}
// Expressions are allowed with PHP 7.0+ null coalesce and PHP 7.4+ null coalesce equals.
if ($tokens[$prev]['code'] === T_COALESCE || $tokens[$prev]['code'] === T_COALESCE_EQUAL) {
return;
}
// Expressions are allowed in arrow functions.
if ($tokens[$prev]['code'] === T_FN_ARROW) {
return;
}
}//end if
// This token may be part of an inline condition.
// If we find a closing parenthesis that belongs to a condition,
// or an "else", we should ignore this token.
if ($tokens[$prev]['code'] === T_ELSE
|| (isset($tokens[$prev]['parenthesis_owner']) === true
&& ($tokens[$tokens[$prev]['parenthesis_owner']]['code'] === T_IF
|| $tokens[$tokens[$prev]['parenthesis_owner']]['code'] === T_ELSEIF))
) {
return;
}
if ($tokens[$stackPtr]['code'] === T_RETURN) {
$next = $phpcsFile->findNext(Tokens::$emptyTokens, ($stackPtr + 1), null, true);
if ($tokens[$next]['code'] === T_SEMICOLON) {
$next = $phpcsFile->findNext(Tokens::$emptyTokens, ($next + 1), null, true);
if ($tokens[$next]['code'] === T_CLOSE_CURLY_BRACKET) {
// If this is the closing brace of a function
// then this return statement doesn't return anything
// and is not required anyway.
$owner = $tokens[$next]['scope_condition'];
if ($tokens[$owner]['code'] === T_FUNCTION
|| $tokens[$owner]['code'] === T_CLOSURE
) {
$warning = 'Empty return statement not required here';
$phpcsFile->addWarning($warning, $stackPtr, 'ReturnNotRequired');
return;
}
}
}
}
if (isset($tokens[$stackPtr]['scope_opener']) === true) {
$owner = $tokens[$stackPtr]['scope_condition'];
if ($tokens[$owner]['code'] === T_CASE || $tokens[$owner]['code'] === T_DEFAULT) {
// This token closes the scope of a CASE or DEFAULT statement
// so any code between this statement and the next CASE, DEFAULT or
// end of SWITCH token will not be executable.
$end = $phpcsFile->findEndOfStatement($stackPtr);
$next = $phpcsFile->findNext(
[
T_CASE,
T_DEFAULT,
T_CLOSE_CURLY_BRACKET,
T_ENDSWITCH,
],
($end + 1)
);
if ($next !== false) {
$lastLine = $tokens[$end]['line'];
for ($i = ($stackPtr + 1); $i < $next; $i++) {
if (isset(Tokens::$emptyTokens[$tokens[$i]['code']]) === true) {
continue;
}
$line = $tokens[$i]['line'];
if ($line > $lastLine) {
$type = substr($tokens[$stackPtr]['type'], 2);
$warning = 'Code after the %s statement on line %s cannot be executed';
$data = [
$type,
$tokens[$stackPtr]['line'],
];
$phpcsFile->addWarning($warning, $i, 'Unreachable', $data);
$lastLine = $line;
}
}
}//end if
// That's all we have to check for these types of statements.
return;
}//end if
}//end if
$ourConditions = array_keys($tokens[$stackPtr]['conditions']);
if (empty($ourConditions) === false) {
$condition = array_pop($ourConditions);
if (isset($tokens[$condition]['scope_closer']) === false) {
return;
}
// Special case for BREAK statements sitting directly inside SWITCH
// statements. If we get to this point, we know the BREAK is not being
// used to close a CASE statement, so it is most likely non-executable
// code itself (as is the case when you put return; break; at the end of
// a case). So we need to ignore this token.
if ($tokens[$condition]['code'] === T_SWITCH
&& $tokens[$stackPtr]['code'] === T_BREAK
) {
return;
}
$closer = $tokens[$condition]['scope_closer'];
// If the closer for our condition is shared with other openers,
// we will need to throw errors from this token to the next
// shared opener (if there is one), not to the scope closer.
$nextOpener = null;
for ($i = ($stackPtr + 1); $i < $closer; $i++) {
if (isset($tokens[$i]['scope_closer']) === true) {
if ($tokens[$i]['scope_closer'] === $closer) {
// We found an opener that shares the same
// closing token as us.
$nextOpener = $i;
break;
}
}
}//end for
if ($nextOpener === null) {
$end = $closer;
} else {
$end = ($nextOpener - 1);
}
} else {
// This token is in the global scope.
if ($tokens[$stackPtr]['code'] === T_BREAK) {
return;
}
// Throw an error for all lines until the end of the file.
$end = ($phpcsFile->numTokens - 1);
}//end if
// Find the semicolon or closing PHP tag that ends this statement,
// skipping nested statements like FOR loops and closures.
for ($start = ($stackPtr + 1); $start < $phpcsFile->numTokens; $start++) {
if ($start === $end) {
break;
}
if (isset($tokens[$start]['parenthesis_closer']) === true
&& $tokens[$start]['code'] === T_OPEN_PARENTHESIS
) {
$start = $tokens[$start]['parenthesis_closer'];
continue;
}
if (isset($tokens[$start]['bracket_closer']) === true
&& $tokens[$start]['code'] === T_OPEN_CURLY_BRACKET
) {
$start = $tokens[$start]['bracket_closer'];
continue;
}
if ($tokens[$start]['code'] === T_SEMICOLON || $tokens[$start]['code'] === T_CLOSE_TAG) {
break;
}
}//end for
if (isset($tokens[$start]) === false) {
return;
}
$lastLine = $tokens[$start]['line'];
for ($i = ($start + 1); $i < $end; $i++) {
if (isset(Tokens::$emptyTokens[$tokens[$i]['code']]) === true
|| isset(Tokens::$bracketTokens[$tokens[$i]['code']]) === true
|| $tokens[$i]['code'] === T_SEMICOLON
) {
continue;
}
// Skip whole functions and classes/interfaces because they are not
// technically executed code, but rather declarations that may be used.
if (isset(Tokens::$ooScopeTokens[$tokens[$i]['code']]) === true
|| $tokens[$i]['code'] === T_FUNCTION
|| $tokens[$i]['code'] === T_CLOSURE
) {
if (isset($tokens[$i]['scope_closer']) === false) {
// Parse error/Live coding.
return;
}
$i = $tokens[$i]['scope_closer'];
continue;
}
// Skip HTML whitespace.
if ($tokens[$i]['code'] === T_INLINE_HTML && trim($tokens[$i]['content']) === '') {
continue;
}
// Skip PHP re-open tag (eg, after inline HTML).
if ($tokens[$i]['code'] === T_OPEN_TAG) {
continue;
}
$line = $tokens[$i]['line'];
if ($line > $lastLine) {
$type = substr($tokens[$stackPtr]['type'], 2);
$warning = 'Code after the %s statement on line %s cannot be executed';
$data = [
$type,
$tokens[$stackPtr]['line'],
];
$phpcsFile->addWarning($warning, $i, 'Unreachable', $data);
$lastLine = $line;
}
}//end for
}//end process()
}//end class