Skip to content

Commit 12a11d8

Browse files
authored
Merge pull request #697 from github/michaelrfairhurst/fix-A1-1-2-suppress-individual-warnings-flag
Fix #689, false negatives for A1-1-2 thinking -Wno-foo is compliant.
2 parents a5c743c + 55e7fdd commit 12a11d8

18 files changed

+75
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- `A1-1-2` - `CompilerWarningLevelNotInCompliance.ql`:
2+
- Fixes #689 false negatives where '-Wno-foo' was treated as enabling, rather than disabling warnings.

cpp/autosar/src/rules/A1-1-2/CompilerWarningLevelNotInCompliance.ql

+45-3
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,56 @@
1818
import cpp
1919
import codingstandards.cpp.autosar
2020

21+
predicate hasResponseFileArgument(Compilation c) { c.getAnArgument().matches("@%") }
22+
2123
class CompilationWithNoWarnings extends Compilation {
2224
CompilationWithNoWarnings() {
23-
getAnArgument() = "-w" or
24-
not getAnArgument().regexpMatch("-W[\\w=-]+")
25+
getAnArgument() = "-w"
26+
or
27+
not exists(EnableWarningFlag enableFlag |
28+
this.getAnArgument() = enableFlag and
29+
not exists(DisableWarningFlag disableFlag |
30+
this.getAnArgument() = disableFlag and
31+
enableFlag.getWarningType() = disableFlag.getWarningType()
32+
)
33+
)
2534
}
2635
}
2736

28-
predicate hasResponseFileArgument(Compilation c) { c.getAnArgument().matches("@%") }
37+
class CompilationArgument extends string {
38+
Compilation compilation;
39+
40+
CompilationArgument() { this = compilation.getAnArgument() }
41+
}
42+
43+
/**
44+
* Compiler flags of type -Wfoo or -Wfoo=bar, which enables the `foo` warning.
45+
*/
46+
class EnableWarningFlag extends CompilationArgument {
47+
string warningType;
48+
49+
EnableWarningFlag() {
50+
warningType = regexpCapture("^-W([\\w-]+)(=.*)?$", 1) and
51+
not this instanceof DisableWarningFlag
52+
}
53+
54+
string getWarningType() { result = warningType }
55+
}
56+
57+
/**
58+
* Compiler flags of type -Wno-foo or -Wfoo=0, which disables the `foo` warning
59+
* and overrules -Wfoo.
60+
*/
61+
class DisableWarningFlag extends CompilationArgument {
62+
string warningType;
63+
64+
DisableWarningFlag() {
65+
warningType = regexpCapture("^-Wno-([\\w-]+)", 1) or
66+
warningType = regexpCapture("^-W([\\w-]+)=0", 1)
67+
}
68+
69+
string getWarningType() { result = warningType }
70+
}
2971

3072
from File f
3173
where
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
| Wformat=0-Wno-format-security.cpp:0:0:0:0 | Wformat=0-Wno-format-security.cpp | No warning-level options were used in the compilation of 'Wformat=0-Wno-format-security.cpp'. |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rules/A1-1-2/CompilerWarningLevelNotInCompliance.ql
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// semmle-extractor-options: --clang -std=c++14 -Wformat=0 -Wno-format-security
2+
// NON_COMPLIANT
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Wformat=0 -Wno-format-security
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Wformat=0 -Wno-format-security
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Wno-format -Wno-format-security
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
| Wall-Wno-format.cpp:0:0:0:0 | Wall-Wno-format.cpp | No warning-level options were used in the compilation of 'Wall-Wno-format.cpp'. |

cpp/autosar/test/rules/A1-1-2.5/CompilerWarningLevelNotInCompliance.expected.clang

Whitespace-only changes.

cpp/autosar/test/rules/A1-1-2.5/CompilerWarningLevelNotInCompliance.expected.gcc

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
| Wall-Wno-format.cpp:0:0:0:0 | Wall-Wno-format.cpp | No warning-level options were used in the compilation of 'Wall-Wno-format.cpp'. |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rules/A1-1-2/CompilerWarningLevelNotInCompliance.ql
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// semmle-extractor-options: --clang -std=c++14 -Wall -Wno-format
2+
// COMPLIANT
3+
4+
// NOTE: When tested with `codeql test run`, the test extractor provides `-w`
5+
// which overrides `-Wcast-function-type` and causes this test case to be
6+
// non-compliant.
7+
//
8+
// However, when tested with our compiler matrix tests, this test db is built
9+
// via `codeql database create --command="..."`, and the `-w` flag will NOT be
10+
// used. This means the `-Wcast-function-type` flag is active and the test case
11+
// is compliant.
12+
//
13+
// Therefore, the .expected file for this test expects non-compliance, and the
14+
// .expected.gcc and .expected.clang files expect this test to be compliant.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Wall -Wno-format
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Wall -Wno-format
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Wall -Wno-format
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
| Wall.cpp:0:0:0:0 | Wall.cpp | No warning-level options were used in the compilation of 'Wall.cpp'. |
1+
| Wall.cpp:0:0:0:0 | Wall.cpp | No warning-level options were used in the compilation of 'Wall.cpp'. |

0 commit comments

Comments
 (0)