2012-08-25 04:39:55 +08:00
|
|
|
// RUN: %clang_cc1 -verify -analyze -analyzer-checker=core,alpha.security.ArrayBound -analyzer-store=region %s
|
2009-01-30 08:08:43 +08:00
|
|
|
|
|
|
|
struct tea_cheese { unsigned magic; };
|
|
|
|
typedef struct tea_cheese kernel_tea_cheese_t;
|
|
|
|
extern kernel_tea_cheese_t _wonky_gesticulate_cheese;
|
|
|
|
|
|
|
|
// This test case exercises the ElementRegion::getRValueType() logic.
|
|
|
|
|
2009-11-12 01:17:06 +08:00
|
|
|
void test1( void ) {
|
2009-01-30 08:08:43 +08:00
|
|
|
kernel_tea_cheese_t *wonky = &_wonky_gesticulate_cheese;
|
|
|
|
struct load_wine *cmd = (void*) &wonky[1];
|
2010-08-25 05:09:07 +08:00
|
|
|
cmd = cmd;
|
2009-01-30 08:08:43 +08:00
|
|
|
char *p = (void*) &wonky[1];
|
2009-05-06 16:08:27 +08:00
|
|
|
kernel_tea_cheese_t *q = &wonky[1];
|
2009-08-01 13:59:39 +08:00
|
|
|
// This test case tests both the RegionStore logic (doesn't crash) and
|
|
|
|
// the out-of-bounds checking. We don't expect the warning for now since
|
|
|
|
// out-of-bound checking is temporarily disabled.
|
2009-11-11 20:33:27 +08:00
|
|
|
kernel_tea_cheese_t r = *q; // expected-warning{{Access out-of-bound array element (buffer overflow)}}
|
2009-01-30 08:08:43 +08:00
|
|
|
}
|
2009-11-12 01:17:06 +08:00
|
|
|
|
|
|
|
void test1_b( void ) {
|
|
|
|
kernel_tea_cheese_t *wonky = &_wonky_gesticulate_cheese;
|
|
|
|
struct load_wine *cmd = (void*) &wonky[1];
|
2010-08-25 05:09:07 +08:00
|
|
|
cmd = cmd;
|
2009-11-12 01:17:06 +08:00
|
|
|
char *p = (void*) &wonky[1];
|
|
|
|
*p = 1; // expected-warning{{Access out-of-bound array element (buffer overflow)}}
|
|
|
|
}
|