From a8890833f227d57cf092f112a2dbfc774a484c0c Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Thu, 24 Feb 2011 23:03:04 +0000 Subject: [PATCH] Don't warn about using PredefinedExprs as format string literals. These never can be a real security issue. Fixes PR 9314. llvm-svn: 126447 --- clang/lib/Sema/SemaChecking.cpp | 8 +++++++- clang/test/Sema/format-strings.c | 8 ++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp index 5c2356f54db9..97cc44e7372f 100644 --- a/clang/lib/Sema/SemaChecking.cpp +++ b/clang/lib/Sema/SemaChecking.cpp @@ -875,7 +875,7 @@ bool Sema::SemaBuiltinLongjmp(CallExpr *TheCall) { return false; } -// Handle i > 1 ? "x" : "y", recursivelly +// Handle i > 1 ? "x" : "y", recursively. bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall, bool HasVAListArg, unsigned format_idx, unsigned firstDataArg, @@ -918,6 +918,12 @@ bool Sema::SemaCheckStringLiteral(const Expr *E, const CallExpr *TheCall, } return false; + case Stmt::PredefinedExprClass: + // While __func__, etc., are technically not string literals, they + // cannot contain format specifiers and thus are not a security + // liability. + return true; + case Stmt::DeclRefExprClass: { const DeclRefExpr *DR = cast(E); diff --git a/clang/test/Sema/format-strings.c b/clang/test/Sema/format-strings.c index fe4f4567cbdb..c78095a04d7b 100644 --- a/clang/test/Sema/format-strings.c +++ b/clang/test/Sema/format-strings.c @@ -350,3 +350,11 @@ void posix_extensions() { void pr8486() { printf("%s", 1); // expected-warning{{conversion specifies type 'char *' but the argument has type 'int'}} } + +// PR9314 +// Don't warn about string literals that are PreDefinedExprs, e.g. __func__. +void pr9314() { + printf(__PRETTY_FUNCTION__); // no-warning + printf(__func__); // no-warning +} +