Browse Source

Improve format string parsing.

tags/1.1.0
Vsevolod Stakhov 8 years ago
parent
commit
613265222d
1 changed files with 14 additions and 1 deletions
  1. 14
    1
      clang-plugin/printf_check.cc

+ 14
- 1
clang-plugin/printf_check.cc View File

@@ -29,6 +29,7 @@
#include "clang/AST/ASTConsumer.h"
#include "clang/AST/RecursiveASTVisitor.h"
#include <unordered_map>
#include <unordered_set>
#include <vector>
#include <sstream>
#include <ctype.h>
@@ -137,6 +138,7 @@ namespace rspamd {

class PrintfCheckVisitor::impl {
std::unordered_map<std::string, unsigned int> printf_functions;
std::unordered_set<char> format_specs;
ASTContext *pcontext;
CompilerInstance *ci;

@@ -278,7 +280,13 @@ namespace rspamd {
}
break;
case read_arg:
if (!isalpha (c)) {
auto found = format_specs.find (c);
if (found != format_specs.end () || !isalpha (c)) {

if (isalpha (c)) {
flags.push_back (c);
}
auto handler = parseFlags (flags, e);

if (handler) {
@@ -333,6 +341,11 @@ namespace rspamd {
{"rspamd_snprintf", 2},
{"rspamd_fprintf", 1}
};

format_specs = {
's', 'd', 'l', 'L', 'v', 'V', 'f', 'F', 'g', 'G',
'T', 'z', 'D', 'c', 'p', 'P', 'e'
};
};

bool VisitCallExpr (CallExpr *E)

Loading…
Cancel
Save