mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 13:50:11 +00:00
[clang][analyzer] Add function 'fprintf' to StreamChecker. (#77613)
[clang][analyzer] Add function 'fprintf' to StreamChecker.
This commit is contained in:
parent
a300b24037
commit
8550e8845c
@ -263,6 +263,9 @@ private:
|
||||
{{{"fputs"}, 2},
|
||||
{std::bind(&StreamChecker::preReadWrite, _1, _2, _3, _4, false),
|
||||
std::bind(&StreamChecker::evalFputx, _1, _2, _3, _4, false), 1}},
|
||||
{{{"fprintf"}},
|
||||
{std::bind(&StreamChecker::preReadWrite, _1, _2, _3, _4, false),
|
||||
std::bind(&StreamChecker::evalFprintf, _1, _2, _3, _4), 0}},
|
||||
{{{"ungetc"}, 2},
|
||||
{std::bind(&StreamChecker::preReadWrite, _1, _2, _3, _4, false),
|
||||
std::bind(&StreamChecker::evalUngetc, _1, _2, _3, _4), 1}},
|
||||
@ -339,6 +342,9 @@ private:
|
||||
void evalFputx(const FnDescription *Desc, const CallEvent &Call,
|
||||
CheckerContext &C, bool IsSingleChar) const;
|
||||
|
||||
void evalFprintf(const FnDescription *Desc, const CallEvent &Call,
|
||||
CheckerContext &C) const;
|
||||
|
||||
void evalUngetc(const FnDescription *Desc, const CallEvent &Call,
|
||||
CheckerContext &C) const;
|
||||
|
||||
@ -926,6 +932,49 @@ void StreamChecker::evalFputx(const FnDescription *Desc, const CallEvent &Call,
|
||||
C.addTransition(StateFailed);
|
||||
}
|
||||
|
||||
void StreamChecker::evalFprintf(const FnDescription *Desc,
|
||||
const CallEvent &Call,
|
||||
CheckerContext &C) const {
|
||||
ProgramStateRef State = C.getState();
|
||||
if (Call.getNumArgs() < 2)
|
||||
return;
|
||||
SymbolRef StreamSym = getStreamArg(Desc, Call).getAsSymbol();
|
||||
if (!StreamSym)
|
||||
return;
|
||||
|
||||
const CallExpr *CE = dyn_cast_or_null<CallExpr>(Call.getOriginExpr());
|
||||
if (!CE)
|
||||
return;
|
||||
|
||||
const StreamState *OldSS = State->get<StreamMap>(StreamSym);
|
||||
if (!OldSS)
|
||||
return;
|
||||
|
||||
assertStreamStateOpened(OldSS);
|
||||
|
||||
NonLoc RetVal = makeRetVal(C, CE).castAs<NonLoc>();
|
||||
State = State->BindExpr(CE, C.getLocationContext(), RetVal);
|
||||
SValBuilder &SVB = C.getSValBuilder();
|
||||
auto &ACtx = C.getASTContext();
|
||||
auto Cond = SVB.evalBinOp(State, BO_GE, RetVal, SVB.makeZeroVal(ACtx.IntTy),
|
||||
SVB.getConditionType())
|
||||
.getAs<DefinedOrUnknownSVal>();
|
||||
if (!Cond)
|
||||
return;
|
||||
ProgramStateRef StateNotFailed, StateFailed;
|
||||
std::tie(StateNotFailed, StateFailed) = State->assume(*Cond);
|
||||
|
||||
StateNotFailed =
|
||||
StateNotFailed->set<StreamMap>(StreamSym, StreamState::getOpened(Desc));
|
||||
C.addTransition(StateNotFailed);
|
||||
|
||||
// Add transition for the failed state. The resulting value of the file
|
||||
// position indicator for the stream is indeterminate.
|
||||
StateFailed = StateFailed->set<StreamMap>(
|
||||
StreamSym, StreamState::getOpened(Desc, ErrorFError, true));
|
||||
C.addTransition(StateFailed);
|
||||
}
|
||||
|
||||
void StreamChecker::evalUngetc(const FnDescription *Desc, const CallEvent &Call,
|
||||
CheckerContext &C) const {
|
||||
ProgramStateRef State = C.getState();
|
||||
|
@ -191,6 +191,23 @@ void error_fputs(void) {
|
||||
fputs("ABC", F); // expected-warning {{Stream might be already closed}}
|
||||
}
|
||||
|
||||
void error_fprintf(void) {
|
||||
FILE *F = tmpfile();
|
||||
if (!F)
|
||||
return;
|
||||
int Ret = fprintf(F, "aaa");
|
||||
if (Ret >= 0) {
|
||||
clang_analyzer_eval(feof(F) || ferror(F)); // expected-warning {{FALSE}}
|
||||
fprintf(F, "bbb"); // no-warning
|
||||
} else {
|
||||
clang_analyzer_eval(ferror(F)); // expected-warning {{TRUE}}
|
||||
clang_analyzer_eval(feof(F)); // expected-warning {{FALSE}}
|
||||
fprintf(F, "bbb"); // expected-warning {{might be 'indeterminate'}}
|
||||
}
|
||||
fclose(F);
|
||||
fprintf(F, "ccc"); // expected-warning {{Stream might be already closed}}
|
||||
}
|
||||
|
||||
void error_ungetc() {
|
||||
FILE *F = tmpfile();
|
||||
if (!F)
|
||||
|
@ -39,6 +39,12 @@ void check_fputs(void) {
|
||||
fclose(fp);
|
||||
}
|
||||
|
||||
void check_fprintf(void) {
|
||||
FILE *fp = tmpfile();
|
||||
fprintf(fp, "ABC"); // expected-warning {{Stream pointer might be NULL}}
|
||||
fclose(fp);
|
||||
}
|
||||
|
||||
void check_ungetc(void) {
|
||||
FILE *fp = tmpfile();
|
||||
ungetc('A', fp); // expected-warning {{Stream pointer might be NULL}}
|
||||
@ -271,9 +277,8 @@ void check_escape4(void) {
|
||||
return;
|
||||
fwrite("1", 1, 1, F); // may fail
|
||||
|
||||
// no escape at (non-StreamChecker-handled) system call
|
||||
// FIXME: all such calls should be handled by the checker
|
||||
fprintf(F, "0");
|
||||
// no escape at a non-StreamChecker-handled system call
|
||||
setbuf(F, "0");
|
||||
|
||||
fwrite("1", 1, 1, F); // expected-warning {{might be 'indeterminate'}}
|
||||
fclose(F);
|
||||
|
Loading…
Reference in New Issue
Block a user