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
|
// RUN: %clang_analyze_cc1 -analyzer-checker=core,unix,alpha.unix.cstring,debug.ExprInspection -verify %s
// Test functions that are called "memcpy" but aren't the memcpy
// we're looking for. Unfortunately, this test cannot be put into
// a namespace. The out-of-class weird memcpy needs to be recognized
// as a normal C function for the test to make sense.
typedef __typeof(sizeof(int)) size_t;
void *memcpy(void *, const void *, size_t);
size_t strlen(const char *s);
int sprintf(char *str, const char *format, ...);
int snprintf(char *str, size_t size, const char *format, ...);
void clang_analyzer_warnIfReached();
struct S {
static S s1, s2;
// A weird overload within the class that accepts a structure reference
// instead of a pointer.
void memcpy(void *, const S &, size_t);
void test_in_class_weird_memcpy() {
memcpy(this, s2, 1); // no-crash
}
};
// A similarly weird overload outside of the class.
void *memcpy(void *, const S &, size_t);
void test_out_of_class_weird_memcpy() {
memcpy(&S::s1, S::s2, 1); // no-crash
}
template<typename... Args>
void log(const char* fmt, const Args&... args) {
char buf[100] = {};
auto f = snprintf;
auto g = sprintf;
int n = 0;
n += f(buf, 99, fmt, args...); // no-crash: The CalleeDecl is a VarDecl, but it's okay.
n += g(buf, fmt, args...); // no-crash: Same.
(void)n;
clang_analyzer_warnIfReached(); // expected-warning {{REACHABLE}}
}
void test_gh_74269_no_crash() {
log("%d", 1);
}
struct TestNotNullTerm {
void test1() {
TestNotNullTerm * const &x = this;
strlen((char *)&x); // expected-warning{{Argument to string length function is not a null-terminated string}}
}
};
void test_notcstring_tempobject() {
// FIXME: This warning from cstring.NotNullTerminated is a false positive.
// Handling of similar cases is not perfect in other cstring checkers.
// The fix would be a larger change in CStringChecker and affect multiple checkers.
strlen((char[]){'a', 0}); // expected-warning{{Argument to string length function is a C++ temp object of type char[2], which is not a null-terminated string}}
}
|