Reviewed By: dulmarod Differential Revision: D3340811 fbshipit-source-id: 70fbbcfmaster
parent
1a98bc6492
commit
daf043bff1
@ -0,0 +1,65 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2016 - present Facebook, Inc.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the BSD style license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree. An additional grant
|
||||||
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||||||
|
*/
|
||||||
|
|
||||||
|
struct data {
|
||||||
|
int flag;
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct data d;
|
||||||
|
|
||||||
|
int f(int x) {
|
||||||
|
struct data* p = x ? &d : 0;
|
||||||
|
return (p && p->flag);
|
||||||
|
}
|
||||||
|
|
||||||
|
int f_error(int x) {
|
||||||
|
struct data* p = x ? &d : 0;
|
||||||
|
return p->flag && p; // NULL_DEREF
|
||||||
|
}
|
||||||
|
|
||||||
|
int g(int x) {
|
||||||
|
struct data* p = x ? &d : 0;
|
||||||
|
return !(p && p->flag); // OK
|
||||||
|
}
|
||||||
|
|
||||||
|
int h(int x) {
|
||||||
|
struct data* p = x ? &d : 0;
|
||||||
|
return !(p && p->flag); // OK
|
||||||
|
}
|
||||||
|
|
||||||
|
int g_error(int x) {
|
||||||
|
struct data* p = x ? &d : 0;
|
||||||
|
return !(p->flag && p); // NULL_DEREF
|
||||||
|
}
|
||||||
|
|
||||||
|
int k(int x) {
|
||||||
|
struct data* p = x ? &d : 0;
|
||||||
|
return !(p && p->flag); // OK
|
||||||
|
}
|
||||||
|
|
||||||
|
int l(int x) {
|
||||||
|
struct data* p = x ? &d : 0;
|
||||||
|
return !p || p->flag; // OK
|
||||||
|
}
|
||||||
|
|
||||||
|
int l_error(int x) {
|
||||||
|
struct data* p = x ? &d : 0;
|
||||||
|
return p || p->flag; // NULL_DEREF
|
||||||
|
}
|
||||||
|
|
||||||
|
int m(int x) {
|
||||||
|
struct data* p = x ? &d : 0;
|
||||||
|
return (!p || p->flag) && !(p && p->flag);
|
||||||
|
; // OK
|
||||||
|
}
|
||||||
|
|
||||||
|
int n(int x) {
|
||||||
|
struct data* p = x ? &d : 0;
|
||||||
|
return p && (p->flag || !(p->flag)); // OK
|
||||||
|
}
|
@ -0,0 +1,58 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2013 - present Facebook, Inc.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the BSD style license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree. An additional grant
|
||||||
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package endtoend.c;
|
||||||
|
|
||||||
|
import static org.hamcrest.MatcherAssert.assertThat;
|
||||||
|
import static utils.matchers.ResultContainsExactly.containsExactly;
|
||||||
|
|
||||||
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
import utils.InferException;
|
||||||
|
import utils.InferResults;
|
||||||
|
|
||||||
|
public class NullDereferenceShortCircuitTest {
|
||||||
|
|
||||||
|
public static final String SOURCE_FILE =
|
||||||
|
"null_dereference/short.c";
|
||||||
|
|
||||||
|
|
||||||
|
public static final String NULL_DEREFERENCE = "NULL_DEREFERENCE";
|
||||||
|
|
||||||
|
private static InferResults inferResults;
|
||||||
|
|
||||||
|
@BeforeClass
|
||||||
|
public static void runInfer() throws InterruptedException, IOException {
|
||||||
|
inferResults = InferResults.loadCInferResults(
|
||||||
|
NullDereferenceShortCircuitTest.class,
|
||||||
|
SOURCE_FILE);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void nullDereferenceTest() throws InterruptedException, IOException, InferException {
|
||||||
|
String[] procedures = {
|
||||||
|
"f_error",
|
||||||
|
"g_error",
|
||||||
|
"l_error"
|
||||||
|
};
|
||||||
|
System.out.println(inferResults.toString());
|
||||||
|
assertThat(
|
||||||
|
"Results should contain null pointer dereference error",
|
||||||
|
inferResults,
|
||||||
|
containsExactly(
|
||||||
|
NULL_DEREFERENCE,
|
||||||
|
SOURCE_FILE,
|
||||||
|
procedures
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue