Index: clang-tidy/bugprone/MisplacedOperatorInStrlenInAllocCheck.cpp =================================================================== --- clang-tidy/bugprone/MisplacedOperatorInStrlenInAllocCheck.cpp +++ clang-tidy/bugprone/MisplacedOperatorInStrlenInAllocCheck.cpp @@ -49,10 +49,23 @@ functionDecl(anyOf(hasName("::calloc"), hasName("std::calloc"), hasName("::realloc"), hasName("std::realloc"))); - Finder->addMatcher( - callExpr(callee(Alloc0Func), hasArgument(0, BadArg)).bind("Alloc"), this); - Finder->addMatcher( - callExpr(callee(Alloc1Func), hasArgument(1, BadArg)).bind("Alloc"), this); + const auto Alloc0FuncPtr = + varDecl(hasType(isConstQualified()), + hasInitializer(ignoringParenImpCasts( + declRefExpr(hasDeclaration(Alloc0Func))))); + const auto Alloc1FuncPtr = + varDecl(hasType(isConstQualified()), + hasInitializer(ignoringParenImpCasts( + declRefExpr(hasDeclaration(Alloc1Func))))); + + Finder->addMatcher(callExpr(callee(decl(anyOf(Alloc0Func, Alloc0FuncPtr))), + hasArgument(0, BadArg)) + .bind("Alloc"), + this); + Finder->addMatcher(callExpr(callee(decl(anyOf(Alloc1Func, Alloc1FuncPtr))), + hasArgument(1, BadArg)) + .bind("Alloc"), + this); } void MisplacedOperatorInStrlenInAllocCheck::check( Index: docs/clang-tidy/checks/bugprone-misplaced-operator-in-strlen-in-alloc.rst =================================================================== --- docs/clang-tidy/checks/bugprone-misplaced-operator-in-strlen-in-alloc.rst +++ docs/clang-tidy/checks/bugprone-misplaced-operator-in-strlen-in-alloc.rst @@ -7,9 +7,10 @@ ``strnlen()``, ``strnlen_s()``, ``wcslen()``, ``wcsnlen()`` and ``wcsnlen_s()`` functions instead of to the result and use its return value as an argument of a memory allocation function (``malloc()``, ``calloc()``, ``realloc()``, -``alloca()``). Cases where ``1`` is added both to the parameter and the result -of the ``strlen()``-like function are ignored, as are cases where the whole -addition is surrounded by extra parentheses. +``alloca()``). The check detects error cases even if one of these functions is +called by a constant function pointer. Cases where ``1`` is added both to the +parameter and the result of the ``strlen()``-like function are ignored, as are +cases where the whole addition is surrounded by extra parentheses. Example code: Index: test/clang-tidy/bugprone-misplaced-operator-in-strlen-in-alloc.c =================================================================== --- test/clang-tidy/bugprone-misplaced-operator-in-strlen-in-alloc.c +++ test/clang-tidy/bugprone-misplaced-operator-in-strlen-in-alloc.c @@ -76,3 +76,11 @@ // If expression is in extra parentheses, consider it as intentional } +void (*(*const alloc_ptr)(size_t)) = malloc; + +void bad_indirect_alloc(char *name) { + char *new_name = (char*) alloc_ptr(strlen(name + 1)); + // CHECK-MESSAGES: :[[@LINE-1]]:28: warning: Addition operator is applied to the argument of strlen + // CHECK-FIXES: {{^ char \*new_name = \(char\*\) alloc_ptr\(}}strlen(name) + 1{{\);$}} +} +