summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-tidy/cert-err34-c.c
blob: e2cfc2182b3ef8ddb815a85fb6ceacedb94425f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// RUN: %check_clang_tidy %s cert-err34-c %t -- -- -std=c11

typedef __SIZE_TYPE__      size_t;
typedef signed             ptrdiff_t;
typedef long long          intmax_t;
typedef unsigned long long uintmax_t;
typedef void *             FILE;

extern FILE *stdin;

extern int fscanf(FILE * restrict stream, const char * restrict format, ...);
extern int scanf(const char * restrict format, ...);
extern int sscanf(const char * restrict s, const char * restrict format, ...);

extern double atof(const char *nptr);
extern int atoi(const char *nptr);
extern long int atol(const char *nptr);
extern long long int atoll(const char *nptr);

void f1(const char *in) {
  int i;
  long long ll;
  unsigned int ui;
  unsigned long long ull;
  intmax_t im;
  uintmax_t uim;
  float f;
  double d;
  long double ld;

  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'sscanf' used to convert a string to an integer value, but function will not report conversion errors; consider using 'strtol' instead [cert-err34-c]
  sscanf(in, "%d", &i);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'fscanf' used to convert a string to an integer value, but function will not report conversion errors; consider using 'strtoll' instead [cert-err34-c]
  fscanf(stdin, "%lld", &ll);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'sscanf' used to convert a string to an unsigned integer value, but function will not report conversion errors; consider using 'strtoul' instead [cert-err34-c]
  sscanf(in, "%u", &ui);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'fscanf' used to convert a string to an unsigned integer value, but function will not report conversion errors; consider using 'strtoull' instead [cert-err34-c]
  fscanf(stdin, "%llu", &ull);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'scanf' used to convert a string to an integer value, but function will not report conversion errors; consider using 'strtoimax' instead [cert-err34-c]
  scanf("%jd", &im);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'fscanf' used to convert a string to an unsigned integer value, but function will not report conversion errors; consider using 'strtoumax' instead [cert-err34-c]
  fscanf(stdin, "%ju", &uim);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'sscanf' used to convert a string to a floating-point value, but function will not report conversion errors; consider using 'strtof' instead [cert-err34-c]
  sscanf(in, "%f", &f); // to float
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'fscanf' used to convert a string to a floating-point value, but function will not report conversion errors; consider using 'strtod' instead [cert-err34-c]
  fscanf(stdin, "%lg", &d);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'sscanf' used to convert a string to a floating-point value, but function will not report conversion errors; consider using 'strtold' instead [cert-err34-c]
  sscanf(in, "%Le", &ld);

  // These are conversions with other modifiers
  short s;
  char c;
  size_t st;
  ptrdiff_t pt;

  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'scanf' used to convert
  scanf("%hhd", &c);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'scanf' used to convert
  scanf("%hd", &s);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'scanf' used to convert
  scanf("%zu", &st);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'scanf' used to convert
  scanf("%td", &pt);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'scanf' used to convert
  scanf("%o", ui);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'scanf' used to convert
  scanf("%X", ui);
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'scanf' used to convert
  scanf("%x", ui);
}

void f2(const char *in) {
  // CHECK-MESSAGES: :[[@LINE+1]]:11: warning: 'atoi' used to convert a string to an integer value, but function will not report conversion errors; consider using 'strtol' instead [cert-err34-c]
  int i = atoi(in); // to int
  // CHECK-MESSAGES: :[[@LINE+1]]:12: warning: 'atol' used to convert a string to an integer value, but function will not report conversion errors; consider using 'strtol' instead [cert-err34-c]
  long l = atol(in); // to long
  // CHECK-MESSAGES: :[[@LINE+1]]:18: warning: 'atoll' used to convert a string to an integer value, but function will not report conversion errors; consider using 'strtoll' instead [cert-err34-c]
  long long ll = atoll(in); // to long long
  // CHECK-MESSAGES: :[[@LINE+1]]:14: warning: 'atof' used to convert a string to a floating-point value, but function will not report conversion errors; consider using 'strtod' instead [cert-err34-c]
  double d = atof(in); // to double
}

void f3(void) {
  int i;
  unsigned int u;
  float f;
  char str[32];

  // Test that we don't report multiple infractions for a single call.
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'scanf' used to convert
  scanf("%d%u%f", &i, &u, &f);

  // Test that we still catch infractions that are not the first specifier.
  // CHECK-MESSAGES: :[[@LINE+1]]:3: warning: 'scanf' used to convert
  scanf("%s%d", str, &i);
}

void do_not_diagnose(void) {
  char str[32];

  scanf("%s", str); // Not a numerical conversion
  scanf("%*d"); // Assignment suppressed
}
OpenPOWER on IntegriCloud