FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cppcheck/lib/ctu.cpp at main · cppcheck-opensource/cppcheck · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
cppcheck-opensource
/
cppcheck
Public
Notifications
You must be signed in to change notification settings
Fork
1.6k
Star
6.7k
Code
Pull requests
201
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
cppcheck
/
lib
/
ctu.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
622 lines (560 loc) · 27.5 KB
Breadcrumbs
cppcheck
/
lib
/
ctu.cpp
Copy path
File metadata and controls
622 lines (560 loc) · 27.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
/*
* Cppcheck - A tool for static C/C++ code analysis
* Copyright (C) 2007-2026 Cppcheck team.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//
---------------------------------------------------------------------------
#
include
"
ctu.h
"
#
include
"
astutils.h
"
#
include
"
errortypes.h
"
#
include
"
symboldatabase.h
"
#
include
"
token.h
"
#
include
"
tokenize.h
"
#
include
"
tokenlist.h
"
#
include
"
utils.h
"
#
include
<
algorithm
>
#
include
<
cstdint
>
#
include
<
cstring
>
#
include
<
iterator
>
//
back_inserter
#
include
<
sstream
>
#
include
<
utility
>
#
include
"
xml.h
"
//
---------------------------------------------------------------------------
static
constexpr
char
ATTR_CALL_ID
[] =
"
call-id
"
;
static
constexpr
char
ATTR_CALL_FUNCNAME
[] =
"
call-funcname
"
;
static
constexpr
char
ATTR_CALL_ARGNR
[] =
"
call-argnr
"
;
static
constexpr
char
ATTR_CALL_ARGEXPR
[] =
"
call-argexpr
"
;
static
constexpr
char
ATTR_CALL_ARGVALUETYPE
[] =
"
call-argvaluetype
"
;
static
constexpr
char
ATTR_CALL_ARGVALUE
[] =
"
call-argvalue
"
;
static
constexpr
char
ATTR_CALL_UNKNOWN_FUNCTION_RETURN
[] =
"
call-argvalue-ufr
"
;
static
constexpr
char
ATTR_WARNING
[] =
"
warning
"
;
static
constexpr
char
ATTR_LOC_FILENAME
[] =
"
file
"
;
static
constexpr
char
ATTR_LOC_LINENR
[] =
"
line
"
;
static
constexpr
char
ATTR_LOC_COLUMN
[] =
"
col
"
;
static
constexpr
char
ATTR_INFO
[] =
"
info
"
;
static
constexpr
char
ATTR_MY_ID
[] =
"
my-id
"
;
static
constexpr
char
ATTR_MY_ARGNR
[] =
"
my-argnr
"
;
static
constexpr
char
ATTR_MY_ARGNAME
[] =
"
my-argname
"
;
static
constexpr
char
ATTR_VALUE
[] =
"
value
"
;
std::string
CTU::getFunctionId
(
const
Tokenizer &tokenizer,
const
Function *function)
{
return
tokenizer.
list
.
file
(function->
tokenDef
) +
'
:
'
+
std::to_string
(function->
tokenDef
->
linenr
()) +
'
:
'
+
std::to_string
(function->
tokenDef
->
column
());
}
CTU
::FileInfo::Location::Location(
const
Tokenizer &tokenizer,
const
Token *tok)
: fileName(tokenizer.list.file(tok))
, lineNumber(tok->
linenr
())
, column(tok->
column
())
{}
std::string
CTU::FileInfo::toString
()
const
{
std::ostringstream out;
//
Function calls..
for
(
const
CTU
::FileInfo::FunctionCall &functionCall : functionCalls) {
out << functionCall.
toXmlString
();
}
//
Nested calls..
for
(
const
CTU
::FileInfo::NestedCall &nestedCall : nestedCalls) {
out << nestedCall.
toXmlString
() <<
"
\n
"
;
}
return
out.
str
();
}
std::string
CTU::FileInfo::CallBase::toBaseXmlString
()
const
{
std::ostringstream out;
out <<
"
"
<<
ATTR_CALL_ID
<<
"
=
\"
"
<< callId <<
"
\"
"
<<
"
"
<<
ATTR_CALL_FUNCNAME
<<
"
=
\"
"
<<
ErrorLogger::toxml
(callFunctionName) <<
"
\"
"
<<
"
"
<<
ATTR_CALL_ARGNR
<<
"
=
\"
"
<< callArgNr <<
"
\"
"
<<
"
"
<<
ATTR_LOC_FILENAME
<<
"
=
\"
"
<<
ErrorLogger::toxml
(location.
fileName
) <<
"
\"
"
<<
"
"
<<
ATTR_LOC_LINENR
<<
"
=
\"
"
<< location.
lineNumber
<<
"
\"
"
<<
"
"
<<
ATTR_LOC_COLUMN
<<
"
=
\"
"
<< location.
column
<<
"
\"
"
;
return
out.
str
();
}
std::string
CTU::FileInfo::FunctionCall::toXmlString
()
const
{
std::ostringstream out;
out <<
"
<function-call
"
<<
toBaseXmlString
()
<<
"
"
<<
ATTR_CALL_ARGEXPR
<<
"
=
\"
"
<<
ErrorLogger::toxml
(callArgumentExpression) <<
"
\"
"
<<
"
"
<<
ATTR_CALL_ARGVALUETYPE
<<
"
=
\"
"
<<
static_cast
<
int
>(callValueType) <<
"
\"
"
<<
"
"
<<
ATTR_CALL_ARGVALUE
<<
"
=
\"
"
<< callArgValue.
value
<<
"
\"
"
<<
"
"
<<
ATTR_CALL_UNKNOWN_FUNCTION_RETURN
<<
"
=
\"
"
<<
static_cast
<
int
>(callArgValue.
unknownFunctionReturn
) <<
"
\"
"
;
if
(warning)
out <<
"
"
<<
ATTR_WARNING
<<
"
=
\"
true
\"
"
;
if
(callValuePath.
empty
())
out <<
"
/>
"
;
else
{
out <<
"
>
\n
"
;
for
(
const
ErrorMessage::FileLocation &loc : callValuePath)
out <<
"
<path
"
<<
"
"
<<
ATTR_LOC_FILENAME
<<
"
=
\"
"
<<
ErrorLogger::toxml
(loc.
getfile
(
false
)) <<
"
\"
"
<<
"
"
<<
ATTR_LOC_LINENR
<<
"
=
\"
"
<< loc.
line
<<
"
\"
"
<<
"
"
<<
ATTR_LOC_COLUMN
<<
"
=
\"
"
<< loc.
column
<<
"
\"
"
<<
"
"
<<
ATTR_INFO
<<
"
=
\"
"
<<
ErrorLogger::toxml
(loc.
getinfo
()) <<
"
\"
/>
\n
"
;
out <<
"
</function-call>
"
;
}
return
out.
str
();
}
std::string
CTU::FileInfo::NestedCall::toXmlString
()
const
{
std::ostringstream out;
out <<
"
<function-call
"
<<
toBaseXmlString
()
<<
"
"
<<
ATTR_MY_ID
<<
"
=
\"
"
<< myId <<
"
\"
"
<<
"
"
<<
ATTR_MY_ARGNR
<<
"
=
\"
"
<< myArgNr <<
"
\"
"
<<
"
/>
"
;
return
out.
str
();
}
std::string
CTU::FileInfo::UnsafeUsage::toString
()
const
{
std::ostringstream out;
out <<
"
<unsafe-usage
"
<<
"
"
<<
ATTR_MY_ID
<<
"
=
\"
"
<< myId <<
'
\"
'
<<
"
"
<<
ATTR_MY_ARGNR
<<
"
=
\"
"
<< myArgNr <<
'
\"
'
<<
"
"
<<
ATTR_MY_ARGNAME
<<
"
=
\"
"
<< myArgumentName <<
'
\"
'
<<
"
"
<<
ATTR_LOC_FILENAME
<<
"
=
\"
"
<<
ErrorLogger::toxml
(location.
fileName
) <<
'
\"
'
<<
"
"
<<
ATTR_LOC_LINENR
<<
"
=
\"
"
<< location.
lineNumber
<<
'
\"
'
<<
"
"
<<
ATTR_LOC_COLUMN
<<
"
=
\"
"
<< location.
column
<<
'
\"
'
<<
"
"
<<
ATTR_VALUE
<<
"
=
\"
"
<< value <<
"
\"
"
<<
"
/>
\n
"
;
return
out.
str
();
}
std::string
CTU::toString
(
const
std::list<
CTU
::FileInfo::UnsafeUsage> &unsafeUsage)
{
std::ostringstream ret;
for
(
const
CTU
::FileInfo::UnsafeUsage &u : unsafeUsage)
ret << u.
toString
();
return
ret.
str
();
}
CTU
::FileInfo::CallBase::CallBase(
const
Tokenizer &tokenizer,
const
Token *callToken)
: callId(getFunctionId(tokenizer, callToken->
function
()))
, callFunctionName(callToken->
next
()->astOperand1()->expressionString())
, location(
CTU
::FileInfo::Location(tokenizer, callToken))
{}
CTU
::FileInfo::NestedCall::NestedCall(
const
Tokenizer &tokenizer,
const
Function *myFunction,
const
Token *callToken)
: CallBase(tokenizer, callToken)
, myId(getFunctionId(tokenizer, myFunction))
{}
static
std::string
readAttrString
(
const
tinyxml2::XMLElement *e,
const
char
*attr,
bool
*error)
{
const
char
*value = e->
Attribute
(attr);
if
(!value && error)
*error =
true
;
return
empty_if_null
(value);
}
static
long
long
readAttrInt
(
const
tinyxml2::XMLElement *e,
const
char
*attr,
bool
*error)
{
int64_t
value =
0
;
const
bool
err = (e->
QueryInt64Attribute
(attr, &value) != tinyxml2::
XML_SUCCESS
);
if
(error)
*error = err;
return
value;
}
bool
CTU::FileInfo::CallBase::loadBaseFromXml
(
const
tinyxml2::XMLElement *xmlElement)
{
bool
error =
false
;
callId =
readAttrString
(xmlElement,
ATTR_CALL_ID
, &error);
callFunctionName =
readAttrString
(xmlElement,
ATTR_CALL_FUNCNAME
, &error);
callArgNr =
readAttrInt
(xmlElement,
ATTR_CALL_ARGNR
, &error);
location.
fileName
=
readAttrString
(xmlElement,
ATTR_LOC_FILENAME
, &error);
location.
lineNumber
=
readAttrInt
(xmlElement,
ATTR_LOC_LINENR
, &error);
location.
column
=
readAttrInt
(xmlElement,
ATTR_LOC_COLUMN
, &error);
return
!error;
}
bool
CTU::FileInfo::FunctionCall::loadFromXml
(
const
tinyxml2::XMLElement *xmlElement)
{
if
(!
loadBaseFromXml
(xmlElement))
return
false
;
bool
error=
false
;
callArgumentExpression =
readAttrString
(xmlElement,
ATTR_CALL_ARGEXPR
, &error);
callValueType =
static_cast
<ValueFlow::Value::ValueType>(
readAttrInt
(xmlElement,
ATTR_CALL_ARGVALUETYPE
, &error));
callArgValue.
value
=
readAttrInt
(xmlElement,
ATTR_CALL_ARGVALUE
, &error);
const
auto
ufr =
readAttrInt
(xmlElement,
ATTR_CALL_UNKNOWN_FUNCTION_RETURN
, &error);
//
NOLINTNEXTLINE(clang-analyzer-optin.core.EnumCastOutOfRange) - TODO: fix this - #13726
callArgValue.
unknownFunctionReturn
=
static_cast
<ValueFlow::Value::UnknownFunctionReturn>(ufr>=
0
&& ufr <=
0xff
? ufr :
0xff
);
const
char
*w = xmlElement->
Attribute
(
ATTR_WARNING
);
warning = w &&
std::strcmp
(w,
"
true
"
) ==
0
;
for
(
const
tinyxml2::XMLElement *
e2
= xmlElement->
FirstChildElement
(); !error &&
e2
;
e2
=
e2
->
NextSiblingElement
()) {
if
(
std::strcmp
(
e2
->
Name
(),
"
path
"
) !=
0
)
continue
;
std::string file =
readAttrString
(
e2
,
ATTR_LOC_FILENAME
, &error);
std::string info =
readAttrString
(
e2
,
ATTR_INFO
, &error);
const
int
line =
readAttrInt
(
e2
,
ATTR_LOC_LINENR
, &error);
const
int
column =
readAttrInt
(
e2
,
ATTR_LOC_COLUMN
, &error);
ErrorMessage::FileLocation
loc
(file,
std::move
(info), line, column);
callValuePath.
emplace_back
(
std::move
(loc));
}
return
!error;
}
bool
CTU::FileInfo::NestedCall::loadFromXml
(
const
tinyxml2::XMLElement *xmlElement)
{
if
(!
loadBaseFromXml
(xmlElement))
return
false
;
bool
error =
false
;
myId =
readAttrString
(xmlElement,
ATTR_MY_ID
, &error);
myArgNr =
readAttrInt
(xmlElement,
ATTR_MY_ARGNR
, &error);
return
!error;
}
//
TODO: bail out on unexpected data
void
CTU::FileInfo::loadFromXml
(
const
tinyxml2::XMLElement *xmlElement)
{
for
(
const
tinyxml2::XMLElement *e = xmlElement->
FirstChildElement
(); e; e = e->
NextSiblingElement
()) {
const
char
* name = e->
Name
();
if
(
std::strcmp
(name,
"
function-call
"
) ==
0
) {
FunctionCall functionCall;
if
(functionCall.
loadFromXml
(e))
functionCalls.
push_back
(
std::move
(functionCall));
}
else
if
(
std::strcmp
(name,
"
nested-call
"
) ==
0
) {
NestedCall nestedCall;
if
(nestedCall.
loadFromXml
(e))
nestedCalls.
push_back
(
std::move
(nestedCall));
}
}
}
std::map<std::string, std::list<
const
CTU
::FileInfo::CallBase *>>
CTU::FileInfo::getCallsMap
()
const
{
std::map<std::string, std::list<
const
CTU
::FileInfo::CallBase *>> ret;
for
(
const
CTU
::FileInfo::NestedCall &nc : nestedCalls)
ret[nc.
callId
].
push_back
(&nc);
for
(
const
CTU
::FileInfo::FunctionCall &fc : functionCalls)
ret[fc.
callId
].
push_back
(&fc);
return
ret;
}
std::list<
CTU
::FileInfo::UnsafeUsage>
CTU::loadUnsafeUsageListFromXml
(
const
tinyxml2::XMLElement *xmlElement)
{
std::list<
CTU
::FileInfo::UnsafeUsage> ret;
for
(
const
tinyxml2::XMLElement *e = xmlElement->
FirstChildElement
(); e; e = e->
NextSiblingElement
()) {
if
(
std::strcmp
(e->
Name
(),
"
unsafe-usage
"
) !=
0
)
continue
;
bool
error =
false
;
FileInfo::UnsafeUsage unsafeUsage;
unsafeUsage.
myId
=
readAttrString
(e,
ATTR_MY_ID
, &error);
unsafeUsage.
myArgNr
=
readAttrInt
(e,
ATTR_MY_ARGNR
, &error);
unsafeUsage.
myArgumentName
=
readAttrString
(e,
ATTR_MY_ARGNAME
, &error);
unsafeUsage.
location
.
fileName
=
readAttrString
(e,
ATTR_LOC_FILENAME
, &error);
unsafeUsage.
location
.
lineNumber
=
readAttrInt
(e,
ATTR_LOC_LINENR
, &error);
unsafeUsage.
location
.
column
=
readAttrInt
(e,
ATTR_LOC_COLUMN
, &error);
unsafeUsage.
value
=
readAttrInt
(e,
ATTR_VALUE
, &error);
if
(!error)
ret.
push_back
(
std::move
(unsafeUsage));
}
return
ret;
}
static
size_t
isCallFunction
(
const
Scope *scope,
size_t
argnr,
const
Token *&tok)
{
const
Variable *
const
argvar = scope->
function
->
getArgumentVar
(argnr);
if
(!argvar->
isPointer
())
return
0
;
for
(
const
Token *tok2 = scope->
bodyStart
; tok2 != scope->
bodyEnd
; tok2 = tok2->
next
()) {
if
(tok2->
variable
() != argvar)
continue
;
if
(!
Token::Match
(tok2->
previous
(),
"
[(,] %var% [,)]
"
))
break
;
int
argnr2 =
1
;
const
Token *prev = tok2;
while
(prev && prev->
str
() !=
"
(
"
) {
if
(
Token::Match
(prev,
"
]|)
"
))
prev = prev->
link
();
else
if
(prev->
str
() ==
"
,
"
)
++argnr2;
prev = prev->
previous
();
}
if
(!prev || !
Token::Match
(prev->
previous
(),
"
%name% (
"
))
break
;
if
(!prev->
astOperand1
() || !prev->
astOperand1
()->
function
())
break
;
tok = prev->
previous
();
return
argnr2;
}
return
0
;
}
const
CTU
::FileInfo *
CTU
::getFileInfo(
const
Tokenizer &tokenizer)
{
const
SymbolDatabase *
const
symbolDatabase = tokenizer.
getSymbolDatabase
();
auto
*fileInfo =
new
FileInfo;
//
Parse all functions in TU
for
(
const
Scope &scope : symbolDatabase->
scopeList
) {
if
(!scope.
isExecutable
() || scope.
type
!= ScopeType::eFunction || !scope.
function
)
continue
;
const
Function *
const
scopeFunction = scope.
function
;
//
source function calls
for
(
const
Token *tok = scope.
bodyStart
; tok != scope.
bodyEnd
; tok = tok->
next
()) {
if
(tok->
str
() !=
"
(
"
|| !tok->
astOperand1
() || !tok->
astOperand2
())
continue
;
const
Function* tokFunction = tok->
astOperand1
()->
function
();
if
(!tokFunction)
continue
;
const
std::vector<
const
Token *>
args
(
getArguments
(tok->
previous
()));
for
(
size_t
argnr =
0
; argnr < args.
size
(); ++argnr) {
const
Token *argtok = args[argnr];
if
(!argtok)
continue
;
for
(
const
ValueFlow::Value &value : argtok->
values
()) {
if
((!value.
isIntValue
() || value.
intvalue
!=
0
|| value.
isInconclusive
()) && !value.
isBufferSizeValue
())
continue
;
//
Skip impossible values since they cannot be represented
if
(value.
isImpossible
())
continue
;
FileInfo::FunctionCall functionCall;
functionCall.
callValueType
= value.
valueType
;
functionCall.
callId
=
getFunctionId
(tokenizer, tokFunction);
functionCall.
callFunctionName
= tok->
astOperand1
()->
expressionString
();
functionCall.
location
=
FileInfo::Location
(tokenizer,tok);
functionCall.
callArgNr
= argnr +
1
;
functionCall.
callArgumentExpression
= argtok->
expressionString
();
functionCall.
callArgValue
= value;
functionCall.
warning
= !value.
errorSeverity
();
for
(
const
ErrorPathItem &i : value.
errorPath
) {
const
std::string& file = tokenizer.
list
.
file
(i.
first
);
const
std::string& info = i.
second
;
const
int
line = i.
first
->
linenr
();
const
int
column = i.
first
->
column
();
ErrorMessage::FileLocation
loc
(file, info, line, column);
functionCall.
callValuePath
.
push_back
(
std::move
(loc));
}
fileInfo->
functionCalls
.
push_back
(
std::move
(functionCall));
}
//
array
if
(argtok->
variable
() && argtok->
variable
()->
isArray
() && argtok->
variable
()->
dimensions
().
size
() ==
1
&& argtok->
variable
()->
dimensionKnown
(
0
)) {
FileInfo::FunctionCall functionCall;
functionCall.
callValueType
= ValueFlow::Value::ValueType::
BUFFER_SIZE
;
functionCall.
callId
=
getFunctionId
(tokenizer, tokFunction);
functionCall.
callFunctionName
= tok->
astOperand1
()->
expressionString
();
functionCall.
location
=
FileInfo::Location
(tokenizer, tok);
functionCall.
callArgNr
= argnr +
1
;
functionCall.
callArgumentExpression
= argtok->
expressionString
();
const
auto
typeSize = argtok->
valueType
()->
getSizeOf
(tokenizer.
getSettings
(), ValueType::Accuracy::ExactOrZero, ValueType::SizeOf::Pointee);
functionCall.
callArgValue
.
value
= typeSize >
0
? argtok->
variable
()->
dimension
(
0
) * typeSize : -
1
;
functionCall.
warning
=
false
;
fileInfo->
functionCalls
.
push_back
(
std::move
(functionCall));
}
//
&var => buffer
if
(argtok->
isUnaryOp
(
"
&
"
) && argtok->
astOperand1
()->
variable
() && argtok->
astOperand1
()->
valueType
() && !argtok->
astOperand1
()->
variable
()->
isArray
()) {
FileInfo::FunctionCall functionCall;
functionCall.
callValueType
= ValueFlow::Value::ValueType::
BUFFER_SIZE
;
functionCall.
callId
=
getFunctionId
(tokenizer, tokFunction);
functionCall.
callFunctionName
= tok->
astOperand1
()->
expressionString
();
functionCall.
location
=
FileInfo::Location
(tokenizer, tok);
functionCall.
callArgNr
= argnr +
1
;
functionCall.
callArgumentExpression
= argtok->
expressionString
();
functionCall.
callArgValue
.
value
= argtok->
astOperand1
()->
valueType
()->
getSizeOf
(tokenizer.
getSettings
(), ValueType::Accuracy::ExactOrZero, ValueType::SizeOf::Pointee);
functionCall.
warning
=
false
;
fileInfo->
functionCalls
.
push_back
(
std::move
(functionCall));
}
//
pointer/reference to uninitialized data
auto
isAddressOfArg = [](
const
Token* argtok) ->
const
Token* {
if
(!argtok->
isUnaryOp
(
"
&
"
))
return
nullptr
;
argtok = argtok->
astOperand1
();
if
(!argtok || !argtok->
valueType
() || argtok->
valueType
()->
pointer
!=
0
)
return
nullptr
;
return
argtok;
};
auto
isReferenceArg = [&](
const
Token* argtok) ->
const
Token* {
const
Variable* argvar = tokFunction->
getArgumentVar
(argnr);
if
(!argvar || !argvar->
valueType
() || argvar->
valueType
()->
reference
== Reference::None)
return
nullptr
;
return
argtok;
};
const
Token* addr =
isAddressOfArg
(argtok);
argtok = addr ? addr :
isReferenceArg
(argtok);
if
(!argtok || argtok->
values
().
size
() !=
1U
)
continue
;
if
(argtok->
variable
() && argtok->
variable
()->
isClass
())
continue
;
const
ValueFlow::Value &v = argtok->
values
().
front
();
if
(v.
valueType
== ValueFlow::Value::ValueType::
UNINIT
&& !v.
isInconclusive
()) {
FileInfo::FunctionCall functionCall;
functionCall.
callValueType
= ValueFlow::Value::ValueType::
UNINIT
;
functionCall.
callId
=
getFunctionId
(tokenizer, tokFunction);
functionCall.
callFunctionName
= tok->
astOperand1
()->
expressionString
();
functionCall.
location
=
FileInfo::Location
(tokenizer, tok);
functionCall.
callArgNr
= argnr +
1
;
functionCall.
callArgValue
= v;
functionCall.
callArgValue
.
value
=
0
;
functionCall.
callArgumentExpression
= argtok->
expressionString
();
functionCall.
warning
=
false
;
fileInfo->
functionCalls
.
push_back
(
std::move
(functionCall));
continue
;
}
}
}
//
Nested function calls
for
(
size_t
argnr =
0
; argnr < scopeFunction->
argCount
(); ++argnr) {
const
Token *tok;
const
size_t
argnr2 =
isCallFunction
(&scope, argnr, tok);
if
(argnr2 >
0
) {
FileInfo::NestedCall
nestedCall
(tokenizer, scopeFunction, tok);
nestedCall.
myArgNr
= argnr +
1
;
nestedCall.
callArgNr
= argnr2;
fileInfo->
nestedCalls
.
push_back
(
std::move
(nestedCall));
}
}
}
return
fileInfo;
}
static
std::vector<std::pair<
const
Token *,
CTU
::FileInfo::Value>>
getUnsafeFunction
(
const
Settings &settings,
const
Scope *scope,
size_t
argnr,
bool
(*isUnsafeUsage)(
const
Settings &settings,
const
Token *argtok,
CTU
::FileInfo::Value *value))
{
std::vector<std::pair<
const
Token *,
CTU
::FileInfo::Value>> ret;
const
Variable *
const
argvar = scope->
function
->
getArgumentVar
(argnr);
if
(!argvar->
isArrayOrPointer
() && !argvar->
isReference
())
return
ret;
for
(
const
Token *tok2 = scope->
bodyStart
; tok2 != scope->
bodyEnd
; tok2 = tok2->
next
()) {
if
(
Token::Match
(tok2,
"
)|else {
"
)) {
tok2 = tok2->
linkAt
(
1
);
if
(
Token::findmatch
(tok2->
link
(),
"
return|throw
"
, tok2))
return
ret;
int
indirect =
0
;
if
(argvar->
valueType
())
indirect = argvar->
valueType
()->
pointer
;
if
(
isVariableChanged
(tok2->
link
(), tok2, indirect, argvar->
declarationId
(),
false
, settings))
return
ret;
}
if
(
Token::Match
(tok2,
"
%oror%|&&|?
"
)) {
tok2 = tok2->
findExpressionStartEndTokens
().
second
;
continue
;
}
if
(tok2->
variable
() != argvar)
continue
;
CTU
::FileInfo::Value value;
if
(!
isUnsafeUsage
(settings, tok2, &value))
return
ret;
//
TODO: Is this a read? then continue..
ret.
emplace_back
(tok2, value);
return
ret;
}
return
ret;
}
std::list<
CTU
::FileInfo::UnsafeUsage>
CTU::getUnsafeUsage
(
const
Tokenizer &tokenizer,
const
Settings &settings,
bool
(*isUnsafeUsage)(
const
Settings &settings,
const
Token *argtok,
CTU
::FileInfo::Value *value))
{
std::list<
CTU
::FileInfo::UnsafeUsage> unsafeUsage;
//
Parse all functions in TU
const
SymbolDatabase *
const
symbolDatabase = tokenizer.
getSymbolDatabase
();
for
(
const
Scope &scope : symbolDatabase->
scopeList
) {
if
(!scope.
isExecutable
() || scope.
type
!= ScopeType::eFunction || !scope.
function
)
continue
;
const
Function *
const
function = scope.
function
;
//
"Unsafe" functions unconditionally reads data before it is written..
for
(
size_t
argnr =
0
; argnr < function->
argCount
(); ++argnr) {
for
(
const
std::pair<
const
Token *,
CTU
::FileInfo::Value> &v :
getUnsafeFunction
(settings, &scope, argnr, isUnsafeUsage)) {
const
Token *tok = v.
first
;
const
MathLib::bigint val = v.
second
.
value
;
unsafeUsage.
emplace_back
(
CTU::getFunctionId
(tokenizer, function), argnr+
1
, tok->
str
(),
CTU::FileInfo::Location
(tokenizer,tok), val);
}
}
}
return
unsafeUsage;
}
static
bool
findPath
(
const
std::string &callId,
size_t
callArgNr,
MathLib::bigint unsafeValue,
CTU
::FileInfo::InvalidValueType invalidValue,
const
std::map<std::string, std::list<
const
CTU
::FileInfo::CallBase *>> &callsMap,
const
CTU
::FileInfo::CallBase *path[
10
],
int
index,
bool
warning,
int
maxCtuDepth)
{
if
(index >= maxCtuDepth)
return
false
;
//
TODO: add bailout message?
const
auto
it = callsMap.
find
(callId);
if
(it == callsMap.
end
())
return
false
;
for
(
const
CTU
::FileInfo::CallBase *c : it->
second
) {
if
(c->
callArgNr
!= callArgNr)
continue
;
const
auto
*functionCall =
dynamic_cast
<
const
CTU
::FileInfo::FunctionCall *>(c);
if
(functionCall) {
if
(!warning && functionCall->
warning
)
continue
;
if
(!warning && functionCall->
callArgValue
.
unknownFunctionReturn
!= ValueFlow::Value::UnknownFunctionReturn::no)
continue
;
switch
(invalidValue) {
case
CTU
::FileInfo::InvalidValueType::null:
if
(functionCall->
callValueType
!= ValueFlow::Value::ValueType::
INT
|| functionCall->
callArgValue
.
value
!=
0
)
continue
;
break
;
case
CTU
::FileInfo::InvalidValueType::uninit:
if
(functionCall->
callValueType
!= ValueFlow::Value::ValueType::
UNINIT
)
continue
;
break
;
case
CTU
::FileInfo::InvalidValueType::bufferOverflow:
if
(functionCall->
callValueType
!= ValueFlow::Value::ValueType::
BUFFER_SIZE
)
continue
;
if
(unsafeValue <
0
|| (unsafeValue >= functionCall->
callArgValue
.
value
&& functionCall->
callArgValue
.
value
>=
0
))
break
;
continue
;
}
path[index] = functionCall;
return
true
;
}
const
auto
*nestedCall =
dynamic_cast
<
const
CTU
::FileInfo::NestedCall *>(c);
if
(!nestedCall)
continue
;
if
(
findPath
(nestedCall->
myId
, nestedCall->
myArgNr
, unsafeValue, invalidValue, callsMap, path, index +
1
, warning, maxCtuDepth)) {
path[index] = nestedCall;
return
true
;
}
}
return
false
;
}
static
std::string
getInvalidValueString
(
CTU
::FileInfo::InvalidValueType invalidValue)
{
using
InvalidValueType =
CTU
::FileInfo::InvalidValueType;
switch
(invalidValue) {
case
InvalidValueType::null:
return
"
null
"
;
case
InvalidValueType::uninit:
return
"
uninitialized
"
;
case
InvalidValueType::bufferOverflow:
return
"
accessed out of bounds
"
;
}
cppcheck::unreachable
();
}
std::list<ErrorMessage::FileLocation>
CTU::FileInfo::getErrorPath
(InvalidValueType invalidValue,
const
CTU
::FileInfo::UnsafeUsage &unsafeUsage,
const
std::map<std::string, std::list<
const
CTU
::FileInfo::CallBase *>> &callsMap,
const
char
info[],
const
FunctionCall **
const
functionCallPtr,
bool
warning,
int
maxCtuDepth,
ValueFlow::Value::UnknownFunctionReturn *unknownFunctionReturn)
{
const
CTU
::FileInfo::CallBase *path[
10
] = {
nullptr
};
if
(!
findPath
(unsafeUsage.
myId
, unsafeUsage.
myArgNr
, unsafeUsage.
value
, invalidValue, callsMap, path,
0
, warning, maxCtuDepth))
return
{};
if
(unknownFunctionReturn && path[
0
]) {
const
auto
* functionCall =
dynamic_cast
<
const
CTU
::FileInfo::FunctionCall *>(path[
0
]);
if
(functionCall)
*unknownFunctionReturn = functionCall->
callArgValue
.
unknownFunctionReturn
;
}
std::list<ErrorMessage::FileLocation> locationList;
const
std::string value1 =
getInvalidValueString
(invalidValue);
for
(
int
index =
9
; index >=
0
; index--) {
if
(!path[index])
continue
;
const
auto
*functionCall =
dynamic_cast
<
const
CTU
::FileInfo::FunctionCall *>(path[index]);
if
(functionCall) {
if
(functionCallPtr)
*functionCallPtr = functionCall;
std::copy
(functionCall->
callValuePath
.
cbegin
(), functionCall->
callValuePath
.
cend
(),
std::back_inserter
(locationList));
}
std::string info_s =
"
Calling function
"
+ path[index]->
callFunctionName
+
"
,
"
+
std::to_string
(path[index]->
callArgNr
) +
getOrdinalText
(path[index]->
callArgNr
) +
"
argument is
"
+ value1;
ErrorMessage::FileLocation
fileLoc
(path[index]->
location
.
fileName
,
std::move
(info_s), path[index]->
location
.
lineNumber
, path[index]->
location
.
column
);
locationList.
push_back
(
std::move
(fileLoc));
}
std::string info_s =
replaceStr
(info,
"
ARG
"
, unsafeUsage.
myArgumentName
);
ErrorMessage::FileLocation
fileLoc2
(unsafeUsage.
location
.
fileName
,
std::move
(info_s), unsafeUsage.
location
.
lineNumber
, unsafeUsage.
location
.
column
);
locationList.
push_back
(
std::move
(fileLoc2));
return
locationList;
}
Back
|
FazBrowse Home
|
New Git URL