Skip to content

Commit 61a76f5

Browse files
gamesh411NagyDonat
andauthored
[clang][analyzer][doc] Migrate ClangSA www FAQ section (#112831)
The ClangSA documentation lives in RST format, and the FAQ section of the old webpage is also migrated from HTML with this change. --------- Co-authored-by: Donát Nagy <[email protected]>
1 parent d2e7ee7 commit 61a76f5

File tree

3 files changed

+216
-239
lines changed

3 files changed

+216
-239
lines changed

clang/docs/analyzer/user-docs.rst

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ Contents:
1212
user-docs/FilingBugs
1313
user-docs/CrossTranslationUnit
1414
user-docs/TaintAnalysisConfiguration
15+
user-docs/FAQ

clang/docs/analyzer/user-docs/FAQ.rst

+208
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,208 @@
1+
FAQ and How to Deal with Common False Positives
2+
===============================================
3+
4+
.. contents::
5+
:local:
6+
7+
Custom Assertions
8+
-----------------
9+
10+
Q: How do I tell the analyzer that I do not want the bug being reported here since my custom error handler will safely end the execution before the bug is reached?
11+
12+
You can tell the analyzer that this path is unreachable by teaching it about your `custom assertion handlers <annotations.html#custom_assertions>`_. For example, you can modify the code segment as following:
13+
14+
.. code-block:: c
15+
16+
void customAssert() __attribute__((analyzer_noreturn));
17+
int foo(int *b) {
18+
if (!b)
19+
customAssert();
20+
return *b;
21+
}
22+
23+
Null Pointer Dereference
24+
------------------------
25+
26+
Q: The analyzer reports a null dereference, but I know that the pointer is never null. How can I tell the analyzer that a pointer can never be null?
27+
28+
The reason the analyzer often thinks that a pointer can be null is because the preceding code checked compared it against null. If you are absolutely sure that it cannot be null, remove the preceding check and, preferably, add an assertion as well. For example:
29+
30+
.. code-block:: c
31+
32+
void usePointer(int *b);
33+
int foo(int *b) {
34+
usePointer(b);
35+
return *b;
36+
}
37+
38+
Dead Store
39+
----------
40+
41+
Q: How do I tell the static analyzer that I don't care about a specific dead store?
42+
43+
When the analyzer sees that a value stored into a variable is never used, it's going to produce a message similar to this one:
44+
45+
.. code-block:: none
46+
47+
Value stored to 'x' is never read
48+
49+
You can use the ``(void)x;`` idiom to acknowledge that there is a dead store in your code but you do not want it to be reported in the future.
50+
51+
Unused Instance Variable
52+
------------------------
53+
54+
Q: How do I tell the static analyzer that I don't care about a specific unused instance variable in Objective-C?
55+
56+
When the analyzer sees that a value stored into a variable is never used, it is going to produce a message similar to this one:
57+
58+
.. code-block:: none
59+
60+
Instance variable 'commonName' in class 'HappyBird' is never used by the methods in its @implementation
61+
62+
You can add ``__attribute__((unused))`` to the instance variable declaration to suppress the warning.
63+
64+
Unlocalized String
65+
------------------
66+
67+
Q: How do I tell the static analyzer that I don't care about a specific unlocalized string?
68+
69+
When the analyzer sees that an unlocalized string is passed to a method that will present that string to the user, it is going to produce a message similar to this one:
70+
71+
.. code-block:: none
72+
73+
User-facing text should use localized string macro
74+
75+
If your project deliberately uses unlocalized user-facing strings (for example, in a debugging UI that is never shown to users), you can suppress the analyzer warnings (and document your intent) with a function that just returns its input but is annotated to return a localized string:
76+
77+
.. code-block:: objc
78+
79+
__attribute__((annotate("returns_localized_nsstring")))
80+
static inline NSString *LocalizationNotNeeded(NSString *s) {
81+
return s;
82+
}
83+
84+
You can then call this function when creating your debugging UI:
85+
86+
.. code-block:: objc
87+
88+
[field setStringValue:LocalizationNotNeeded(@"Debug")];
89+
90+
Some projects may also find it useful to use NSLocalizedString but add "DNL" or "Do Not Localize" to the string contents as a convention:
91+
92+
.. code-block:: objc
93+
94+
UILabel *testLabel = [[UILabel alloc] init];
95+
NSString *s = NSLocalizedString(@"Hello <Do Not Localize>", @"For debug purposes");
96+
[testLabel setText:s];
97+
98+
Dealloc in Manual Retain/Release
99+
--------------------------------
100+
101+
Q: How do I tell the analyzer that my instance variable does not need to be released in -dealloc under Manual Retain/Release?
102+
103+
If your class only uses an instance variable for part of its lifetime, it may maintain an invariant guaranteeing that the instance variable is always released before -dealloc. In this case, you can silence a warning about a missing release by either adding ``assert(_ivar == nil)`` or an explicit release ``[_ivar release]`` (which will be a no-op when the variable is nil) in -dealloc.
104+
105+
Deciding Nullability
106+
--------------------
107+
108+
Q: How do I decide whether a method's return type should be _Nullable or _Nonnull?
109+
110+
Depending on the implementation of the method, this puts you in one of five situations:
111+
112+
1. You actually never return nil.
113+
2. You do return nil sometimes, and callers are supposed to handle that. This includes cases where your method is documented to return nil given certain inputs.
114+
3. You return nil based on some external condition (such as an out-of-memory error), but the client can't do anything about it either.
115+
4. You return nil only when the caller passes input documented to be invalid. That means it's the client's fault.
116+
5. You return nil in some totally undocumented case.
117+
118+
In (1) you should annotate the method as returning a ``_Nonnull`` object.
119+
120+
In (2) the method should be marked ``_Nullable``.
121+
122+
In (3) you should probably annotate the method ``_Nonnull``. Why? Because no callers will actually check for nil, given that they can't do anything about the situation and don't know what went wrong. At this point things have gone so poorly that there's basically no way to recover.
123+
124+
The least happy case is (4) because the resulting program will almost certainly either crash or just silently do the wrong thing. If this is a new method or you control the callers, you can use ``NSParameterAssert()`` (or the equivalent) to check the precondition and remove the nil return. But if you don't control the callers and they rely on this behavior, you should return mark the method ``_Nonnull`` and return nil cast to _Nonnull anyway.
125+
126+
If you're in (5), document it, then figure out if you're now in (2), (3), or (4).
127+
128+
Intentional Nullability Violation
129+
---------------------------------
130+
131+
Q: How do I tell the analyzer that I am intentionally violating nullability?
132+
133+
In some cases, it may make sense for methods to intentionally violate nullability. For example, your method may — for reasons of backward compatibility — chose to return nil and log an error message in a method with a non-null return type when the client violated a documented precondition rather than check the precondition with ``NSAssert()``. In these cases, you can suppress the analyzer warning with a cast:
134+
135+
.. code-block:: objc
136+
137+
return (id _Nonnull)nil;
138+
139+
Note that this cast does not affect code generation.
140+
141+
Ensuring Loop Body Execution
142+
----------------------------
143+
144+
Q: The analyzer assumes that a loop body is never entered. How can I tell it that the loop body will be entered at least once?
145+
146+
In cases where you know that a loop will always be entered at least once, you can use assertions to inform the analyzer. For example:
147+
148+
.. code-block:: c
149+
150+
int foo(int length) {
151+
int x = 0;
152+
assert(length > 0);
153+
for (int i = 0; i < length; i++)
154+
x += 1;
155+
return length/x;
156+
}
157+
158+
By adding ``assert(length > 0)`` in the beginning of the function, you tell the analyzer that your code is never expecting a zero or a negative value, so it won't need to test the correctness of those paths.
159+
160+
Suppressing Specific Warnings
161+
-----------------------------
162+
163+
Q: How can I suppress a specific analyzer warning?
164+
165+
When you encounter an analyzer bug/false positive, check if it's one of the issues discussed above or if the analyzer `annotations <annotations.html#custom_assertions>`_ can resolve the issue by helping the static analyzer understand the code better. Second, please `report it <filing_bugs.html>`_ to help us improve user experience.
166+
167+
Sometimes there's really no "good" way to eliminate the issue. In such cases you can "silence" it directly by annotating the problematic line of code with the help of Clang attribute 'suppress':
168+
169+
.. code-block:: c
170+
171+
int foo() {
172+
int *x = nullptr;
173+
...
174+
[[clang::suppress]] {
175+
// all warnings in this scope are suppressed
176+
int y = *x;
177+
}
178+
179+
// null pointer dereference warning suppressed on the next line
180+
[[clang::suppress]]
181+
return *x
182+
}
183+
184+
int bar(bool coin_flip) {
185+
// suppress all memory leak warnings about this allocation
186+
[[clang::suppress]]
187+
int *result = (int *)malloc(sizeof(int));
188+
189+
if (coin_flip)
190+
return 0; // including this leak path
191+
192+
return *result; // as well as this leak path
193+
}
194+
195+
Excluding Code from Analysis
196+
----------------------------
197+
198+
Q: How can I selectively exclude code the analyzer examines?
199+
200+
When the static analyzer is using clang to parse source files, it implicitly defines the preprocessor macro ``__clang_analyzer__``. One can use this macro to selectively exclude code the analyzer examines. Here is an example:
201+
202+
.. code-block:: c
203+
204+
#ifndef __clang_analyzer__
205+
// Code not to be analyzed
206+
#endif
207+
208+
This usage is discouraged because it makes the code dead to the analyzer from now on. Instead, we prefer that users file bugs against the analyzer when it flags false positives.

0 commit comments

Comments
 (0)