[analyzer] Fix handle leak false positive when the handle dies too early

Differential Revision: https://reviews.llvm.org/D73151
This commit is contained in:
Gabor Horvath 2020-01-21 17:26:11 -08:00
parent fc90222a91
commit c98d98ba9b
2 changed files with 31 additions and 1 deletions

View file

@ -149,6 +149,10 @@ public:
CASE(Kind::Released)
CASE(Kind::Escaped)
}
if (ErrorSym) {
OS << " ErrorSym: ";
ErrorSym->dumpToStream(OS);
}
}
LLVM_DUMP_METHOD void dump() const { dump(llvm::errs()); }
@ -401,7 +405,13 @@ void FuchsiaHandleChecker::checkDeadSymbols(SymbolReaper &SymReaper,
SmallVector<SymbolRef, 2> LeakedSyms;
HStateMapTy TrackedHandles = State->get<HStateMap>();
for (auto &CurItem : TrackedHandles) {
if (!SymReaper.isDead(CurItem.first))
SymbolRef ErrorSym = CurItem.second.getErrorSym();
// Keeping zombie handle symbols. In case the error symbol is dying later
// than the handle symbol we might produce spurious leak warnings (in case
// we find out later from the status code that the handle allocation failed
// in the first place).
if (!SymReaper.isDead(CurItem.first) ||
(ErrorSym && !SymReaper.isDead(ErrorSym)))
continue;
if (CurItem.second.isAllocated() || CurItem.second.maybeAllocated())
LeakedSyms.push_back(CurItem.first);

View file

@ -66,6 +66,26 @@ void checkInvalidHandle2() {
zx_handle_close(sa);
}
void handleDieBeforeErrorSymbol01() {
zx_handle_t sa, sb;
zx_status_t status = zx_channel_create(0, &sa, &sb);
if (status < 0)
return;
__builtin_trap();
}
void handleDieBeforeErrorSymbol02() {
zx_handle_t sa, sb;
zx_status_t status = zx_channel_create(0, &sa, &sb);
// expected-note@-1 {{Handle allocated through 2nd parameter}}
if (status == 0) { // expected-note {{Assuming 'status' is equal to 0}}
// expected-note@-1 {{Taking true branch}}
return; // expected-warning {{Potential leak of handle}}
// expected-note@-1 {{Potential leak of handle}}
}
__builtin_trap();
}
void checkNoCrash01() {
zx_handle_t sa, sb;
zx_channel_create(0, &sa, &sb);