소스 검색

[analyzer] Don't crash if malloc() has an unexpected function prototype.

Patch by Daniel Fahlgren!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@217258 91177308-0d34-0410-b5e6-96231b3b80d8
Jordan Rose 11 년 전
부모
커밋
3e4e598ffc
2개의 변경된 파일21개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      lib/StaticAnalyzer/Checkers/MallocChecker.cpp
  2. 17 0
      test/Analysis/malloc-protoype.c

+ 4 - 4
lib/StaticAnalyzer/Checkers/MallocChecker.cpp

@@ -901,6 +901,10 @@ ProgramStateRef MallocChecker::MallocMemAux(CheckerContext &C,
                                            ProgramStateRef State,
                                            ProgramStateRef State,
                                            AllocationFamily Family) {
                                            AllocationFamily Family) {
 
 
+  // We expect the malloc functions to return a pointer.
+  if (!Loc::isLocType(CE->getType()))
+    return nullptr;
+
   // Bind the return value to the symbolic value from the heap region.
   // Bind the return value to the symbolic value from the heap region.
   // TODO: We could rewrite post visit to eval call; 'malloc' does not have
   // TODO: We could rewrite post visit to eval call; 'malloc' does not have
   // side effects other than what we model here.
   // side effects other than what we model here.
@@ -911,10 +915,6 @@ ProgramStateRef MallocChecker::MallocMemAux(CheckerContext &C,
       .castAs<DefinedSVal>();
       .castAs<DefinedSVal>();
   State = State->BindExpr(CE, C.getLocationContext(), RetVal);
   State = State->BindExpr(CE, C.getLocationContext(), RetVal);
 
 
-  // We expect the malloc functions to return a pointer.
-  if (!RetVal.getAs<Loc>())
-    return nullptr;
-
   // Fill the region with the initialization value.
   // Fill the region with the initialization value.
   State = State->bindDefault(RetVal, Init);
   State = State->bindDefault(RetVal, Init);
 
 

+ 17 - 0
test/Analysis/malloc-protoype.c

@@ -0,0 +1,17 @@
+// RUN: %clang_cc1 -w -analyze -analyzer-checker=core,unix.Malloc -verify %s
+// expected-no-diagnostics
+
+// Test that strange prototypes doesn't crash the analyzer
+
+void malloc(int i);
+void valloc(int i);
+
+void test1()
+{
+  malloc(1);
+}
+
+void test2()
+{
+  valloc(1);
+}