2009-04-29 20:03:59 +04:00
|
|
|
// RUN: clang-cc -arch i386 -analyze -checker-cfref -analyzer-store=basic -analyzer-constraints=basic -verify %s &&
|
|
|
|
// RUN: clang-cc -arch i386 -analyze -checker-cfref -analyzer-store=basic -analyzer-constraints=range -verify %s
|
2009-04-11 04:11:10 +04:00
|
|
|
|
|
|
|
|
2009-04-29 20:03:59 +04:00
|
|
|
// NOTWORK: clang-cc -arch i386 -analyze -checker-cfref -analyzer-store=region -analyzer-constraints=basic -verify %s &&
|
|
|
|
// NOTWORK: clang-cc -arch i386 -analyze -checker-cfref -analyzer-store=region -analyzer-constraints=range -verify %s
|
2008-06-17 00:37:30 +04:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// The following code is reduced using delta-debugging from
|
|
|
|
// Foundation.h (Mac OS X).
|
|
|
|
//
|
|
|
|
// It includes the basic definitions for the test cases below.
|
|
|
|
// Not directly including Foundation.h directly makes this test case
|
|
|
|
// both svelte and portable to non-Mac platforms.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-04-29 20:03:59 +04:00
|
|
|
typedef int int32_t;
|
2008-06-17 00:37:30 +04:00
|
|
|
typedef const void * CFTypeRef;
|
|
|
|
typedef const struct __CFString * CFStringRef;
|
|
|
|
typedef const struct __CFAllocator * CFAllocatorRef;
|
|
|
|
extern const CFAllocatorRef kCFAllocatorDefault;
|
|
|
|
extern CFTypeRef CFRetain(CFTypeRef cf);
|
2009-04-22 00:01:03 +04:00
|
|
|
void CFRelease(CFTypeRef cf);
|
2008-06-17 00:37:30 +04:00
|
|
|
typedef const struct __CFDictionary * CFDictionaryRef;
|
2008-12-18 00:50:35 +03:00
|
|
|
const void *CFDictionaryGetValue(CFDictionaryRef theDict, const void *key);
|
2008-06-17 00:37:30 +04:00
|
|
|
extern CFStringRef CFStringCreateWithFormat(CFAllocatorRef alloc, CFDictionaryRef formatOptions, CFStringRef format, ...);
|
|
|
|
typedef signed char BOOL;
|
|
|
|
typedef int NSInteger;
|
|
|
|
typedef unsigned int NSUInteger;
|
|
|
|
@class NSString, Protocol;
|
|
|
|
extern void NSLog(NSString *format, ...) __attribute__((format(__NSString__, 1, 2)));
|
|
|
|
typedef NSInteger NSComparisonResult;
|
|
|
|
typedef struct _NSZone NSZone;
|
|
|
|
@class NSInvocation, NSMethodSignature, NSCoder, NSString, NSEnumerator;
|
|
|
|
@protocol NSObject
|
|
|
|
- (BOOL)isEqual:(id)object;
|
|
|
|
- (oneway void)release;
|
2008-12-18 00:50:35 +03:00
|
|
|
- (id)retain;
|
2008-06-17 00:37:30 +04:00
|
|
|
@end
|
|
|
|
@protocol NSCopying
|
|
|
|
- (id)copyWithZone:(NSZone *)zone;
|
|
|
|
@end
|
|
|
|
@protocol NSMutableCopying
|
|
|
|
- (id)mutableCopyWithZone:(NSZone *)zone;
|
|
|
|
@end
|
|
|
|
@protocol NSCoding
|
|
|
|
- (void)encodeWithCoder:(NSCoder *)aCoder;
|
|
|
|
@end
|
|
|
|
@interface NSObject <NSObject> {}
|
|
|
|
- (id)init;
|
|
|
|
+ (id)alloc;
|
|
|
|
@end
|
|
|
|
extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
|
|
|
|
typedef struct {} NSFastEnumerationState;
|
|
|
|
@protocol NSFastEnumeration
|
|
|
|
- (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
|
|
|
|
@end
|
|
|
|
@class NSString;
|
|
|
|
typedef struct _NSRange {} NSRange;
|
|
|
|
@interface NSArray : NSObject <NSCopying, NSMutableCopying, NSCoding, NSFastEnumeration>
|
|
|
|
- (NSUInteger)count;
|
|
|
|
@end
|
|
|
|
@interface NSMutableArray : NSArray
|
|
|
|
- (void)addObject:(id)anObject;
|
|
|
|
- (id)initWithCapacity:(NSUInteger)numItems;
|
|
|
|
@end
|
|
|
|
typedef unsigned short unichar;
|
|
|
|
@class NSData, NSArray, NSDictionary, NSCharacterSet, NSData, NSURL, NSError, NSLocale;
|
|
|
|
typedef NSUInteger NSStringCompareOptions;
|
|
|
|
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSCoding> - (NSUInteger)length;
|
|
|
|
- (NSComparisonResult)compare:(NSString *)string;
|
|
|
|
- (NSComparisonResult)compare:(NSString *)string options:(NSStringCompareOptions)mask;
|
|
|
|
- (NSComparisonResult)compare:(NSString *)string options:(NSStringCompareOptions)mask range:(NSRange)compareRange;
|
|
|
|
- (NSComparisonResult)compare:(NSString *)string options:(NSStringCompareOptions)mask range:(NSRange)compareRange locale:(id)locale;
|
|
|
|
- (NSComparisonResult)caseInsensitiveCompare:(NSString *)string;
|
|
|
|
- (NSArray *)componentsSeparatedByCharactersInSet:(NSCharacterSet *)separator;
|
2009-04-23 23:11:35 +04:00
|
|
|
+ (id)stringWithFormat:(NSString *)format, ... __attribute__((format(__NSString__, 1, 2)));
|
2008-06-17 00:37:30 +04:00
|
|
|
@end
|
|
|
|
@interface NSSimpleCString : NSString {} @end
|
|
|
|
@interface NSConstantString : NSSimpleCString @end
|
|
|
|
extern void *_NSConstantStringClassReference;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Test cases.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
NSComparisonResult f1(NSString* s) {
|
|
|
|
NSString *aString = 0;
|
|
|
|
return [s compare:aString]; // expected-warning {{Argument to 'NSString' method 'compare:' cannot be nil.}}
|
|
|
|
}
|
|
|
|
|
|
|
|
NSComparisonResult f2(NSString* s) {
|
|
|
|
NSString *aString = 0;
|
|
|
|
return [s caseInsensitiveCompare:aString]; // expected-warning {{Argument to 'NSString' method 'caseInsensitiveCompare:' cannot be nil.}}
|
|
|
|
}
|
|
|
|
|
|
|
|
NSComparisonResult f3(NSString* s, NSStringCompareOptions op) {
|
|
|
|
NSString *aString = 0;
|
|
|
|
return [s compare:aString options:op]; // expected-warning {{Argument to 'NSString' method 'compare:options:' cannot be nil.}}
|
|
|
|
}
|
|
|
|
|
|
|
|
NSComparisonResult f4(NSString* s, NSStringCompareOptions op, NSRange R) {
|
|
|
|
NSString *aString = 0;
|
|
|
|
return [s compare:aString options:op range:R]; // expected-warning {{Argument to 'NSString' method 'compare:options:range:' cannot be nil.}}
|
|
|
|
}
|
|
|
|
|
|
|
|
NSComparisonResult f5(NSString* s, NSStringCompareOptions op, NSRange R) {
|
|
|
|
NSString *aString = 0;
|
|
|
|
return [s compare:aString options:op range:R locale:0]; // expected-warning {{Argument to 'NSString' method 'compare:options:range:locale:' cannot be nil.}}
|
|
|
|
}
|
|
|
|
|
2008-08-05 04:07:51 +04:00
|
|
|
NSArray *f6(NSString* s) {
|
2008-06-17 00:37:30 +04:00
|
|
|
return [s componentsSeparatedByCharactersInSet:0]; // expected-warning {{Argument to 'NSString' method 'componentsSeparatedByCharactersInSet:' cannot be nil.}}
|
|
|
|
}
|
|
|
|
|
|
|
|
NSString* f7(NSString* s1, NSString* s2, NSString* s3) {
|
|
|
|
|
2008-08-05 04:07:51 +04:00
|
|
|
NSString* s4 = (NSString*)
|
2009-02-05 02:49:09 +03:00
|
|
|
CFStringCreateWithFormat(kCFAllocatorDefault, 0, // expected-warning{{leak}}
|
2008-08-05 04:07:51 +04:00
|
|
|
(CFStringRef) __builtin___CFStringMakeConstantString("%@ %@ (%@)"),
|
|
|
|
s1, s2, s3);
|
2008-06-17 00:37:30 +04:00
|
|
|
|
|
|
|
CFRetain(s4);
|
2009-02-05 02:49:09 +03:00
|
|
|
return s4;
|
2008-06-17 00:37:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NSMutableArray* f8() {
|
|
|
|
|
|
|
|
NSString* s = [[NSString alloc] init];
|
|
|
|
NSMutableArray* a = [[NSMutableArray alloc] initWithCapacity:2];
|
|
|
|
[a addObject:s];
|
|
|
|
[s release]; // no-warning
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
void f9() {
|
|
|
|
|
|
|
|
NSString* s = [[NSString alloc] init];
|
|
|
|
NSString* q = s;
|
|
|
|
[s release];
|
|
|
|
[q release]; // expected-warning {{used after it is released}}
|
|
|
|
}
|
|
|
|
|
|
|
|
NSString* f10() {
|
|
|
|
static NSString* s = 0;
|
|
|
|
if (!s) s = [[NSString alloc] init];
|
|
|
|
return s; // no-warning
|
|
|
|
}
|
|
|
|
|
2008-12-18 00:50:35 +03:00
|
|
|
// Test case for regression reported in <rdar://problem/6452745>.
|
|
|
|
// Essentially 's' should not be considered allocated on the false branch.
|
|
|
|
// This exercises the 'EvalAssume' logic in GRTransferFuncs (CFRefCount.cpp).
|
|
|
|
NSString* f11(CFDictionaryRef dict, const char* key) {
|
|
|
|
NSString* s = (NSString*) CFDictionaryGetValue(dict, key);
|
|
|
|
[s retain];
|
|
|
|
if (s) {
|
|
|
|
[s release];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-19 02:40:58 +03:00
|
|
|
// Test case for passing a tracked object by-reference to a function we
|
2009-04-22 00:01:03 +04:00
|
|
|
// don't understand.
|
2008-12-19 02:40:58 +03:00
|
|
|
void unknown_function_f12(NSString** s);
|
|
|
|
void f12() {
|
|
|
|
NSString *string = [[NSString alloc] init];
|
|
|
|
unknown_function_f12(&string); // no-warning
|
|
|
|
}
|
|
|
|
|
2009-04-22 00:01:03 +04:00
|
|
|
// Test double release of CFString (PR 4014).
|
|
|
|
void f13(void) {
|
|
|
|
CFStringRef ref = CFStringCreateWithFormat(kCFAllocatorDefault, ((void*)0), ((CFStringRef) __builtin___CFStringMakeConstantString ("" "%d" "")), 100);
|
|
|
|
CFRelease(ref);
|
|
|
|
CFRelease(ref); // expected-warning{{Reference-counted object is used after it is released}}
|
|
|
|
}
|
2008-12-19 02:40:58 +03:00
|
|
|
|
2008-06-17 00:37:30 +04:00
|
|
|
@interface C1 : NSObject {}
|
|
|
|
- (NSString*) getShared;
|
|
|
|
+ (C1*) sharedInstance;
|
|
|
|
@end
|
2008-07-03 19:37:02 +04:00
|
|
|
@implementation C1 : NSObject {}
|
2008-06-17 00:37:30 +04:00
|
|
|
- (NSString*) getShared {
|
|
|
|
static NSString* s = 0;
|
|
|
|
if (!s) s = [[NSString alloc] init];
|
|
|
|
return s; // no-warning
|
|
|
|
}
|
|
|
|
+ (C1 *)sharedInstance {
|
|
|
|
static C1 *sharedInstance = 0;
|
|
|
|
if (!sharedInstance) {
|
|
|
|
sharedInstance = [[C1 alloc] init];
|
|
|
|
}
|
|
|
|
return sharedInstance; // no-warning
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface SharedClass : NSObject
|
|
|
|
+ (id)sharedInstance;
|
2009-01-07 03:39:56 +03:00
|
|
|
- (id)notShared;
|
2008-06-17 00:37:30 +04:00
|
|
|
@end
|
2009-01-07 03:39:56 +03:00
|
|
|
|
2008-07-03 19:37:02 +04:00
|
|
|
@implementation SharedClass
|
2008-06-17 00:37:30 +04:00
|
|
|
|
|
|
|
- (id)_init {
|
|
|
|
if ((self = [super init])) {
|
|
|
|
NSLog(@"Bar");
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2009-01-07 03:39:56 +03:00
|
|
|
- (id)notShared {
|
2009-02-08 01:55:48 +03:00
|
|
|
return [[SharedClass alloc] _init]; // expected-warning{{leak}}
|
2009-01-07 03:39:56 +03:00
|
|
|
}
|
|
|
|
|
2008-06-17 00:37:30 +04:00
|
|
|
+ (id)sharedInstance {
|
|
|
|
static SharedClass *_sharedInstance = 0;
|
|
|
|
if (!_sharedInstance) {
|
|
|
|
_sharedInstance = [[SharedClass alloc] _init];
|
|
|
|
}
|
|
|
|
return _sharedInstance; // no-warning
|
|
|
|
}
|
|
|
|
@end
|
2009-01-07 03:39:56 +03:00
|
|
|
|
|
|
|
id testSharedClassFromFunction() {
|
|
|
|
return [[SharedClass alloc] _init]; // no-warning
|
|
|
|
}
|
|
|
|
|
2009-04-11 04:11:10 +04:00
|
|
|
// Test OSCompareAndSwap
|
|
|
|
_Bool OSAtomicCompareAndSwapPtr( void *__oldValue, void *__newValue, void * volatile *__theValue );
|
2009-05-01 21:37:31 +04:00
|
|
|
_Bool OSAtomicCompareAndSwap32Barrier( int32_t __oldValue, int32_t __newValue, volatile int32_t *__theValue );
|
2009-04-11 04:54:13 +04:00
|
|
|
extern BOOL objc_atomicCompareAndSwapPtr(id predicate, id replacement, volatile id *objectLocation);
|
2009-04-11 04:11:10 +04:00
|
|
|
|
|
|
|
void testOSCompareAndSwap() {
|
|
|
|
NSString *old = 0;
|
2009-04-11 04:54:13 +04:00
|
|
|
NSString *s = [[NSString alloc] init]; // no-warning
|
2009-04-11 04:11:10 +04:00
|
|
|
if (!OSAtomicCompareAndSwapPtr(0, s, (void**) &old))
|
|
|
|
[s release];
|
|
|
|
else
|
|
|
|
[old release];
|
|
|
|
}
|
|
|
|
|
2009-04-29 20:03:59 +04:00
|
|
|
void testOSCompareAndSwap32Barrier() {
|
|
|
|
NSString *old = 0;
|
|
|
|
NSString *s = [[NSString alloc] init]; // no-warning
|
|
|
|
if (!OSAtomicCompareAndSwap32Barrier((int32_t) 0, (int32_t) s, (int32_t*) &old))
|
|
|
|
[s release];
|
|
|
|
else
|
|
|
|
[old release];
|
|
|
|
}
|
|
|
|
|
2009-04-11 04:54:13 +04:00
|
|
|
void test_objc_atomicCompareAndSwap() {
|
|
|
|
NSString *old = 0;
|
|
|
|
NSString *s = [[NSString alloc] init]; // no-warning
|
|
|
|
if (!objc_atomicCompareAndSwapPtr(0, s, &old))
|
|
|
|
[s release];
|
|
|
|
else
|
|
|
|
[old release];
|
|
|
|
}
|
|
|
|
|
2009-04-23 23:11:35 +04:00
|
|
|
// Test stringWithFormat (<rdar://problem/6815234>)
|
|
|
|
void test_stringWithFormat() {
|
|
|
|
NSString *string = [[NSString stringWithFormat:@"%ld", (long) 100] retain];
|
|
|
|
[string release];
|
2009-04-24 01:25:57 +04:00
|
|
|
[string release]; // expected-warning{{Incorrect decrement of the reference count}}
|
2009-04-23 23:11:35 +04:00
|
|
|
}
|
|
|
|
|
2009-05-03 10:08:32 +04:00
|
|
|
// Test isTrackedObjectType().
|
2009-04-24 02:11:07 +04:00
|
|
|
typedef NSString* WonkyTypedef;
|
|
|
|
@interface TestIsTracked
|
|
|
|
+ (WonkyTypedef)newString;
|
|
|
|
@end
|
|
|
|
|
|
|
|
void test_isTrackedObjectType(void) {
|
|
|
|
NSString *str = [TestIsTracked newString]; // expected-warning{{Potential leak}}
|
|
|
|
}
|
2009-05-02 05:49:13 +04:00
|
|
|
|
2009-05-03 10:08:32 +04:00
|
|
|
// Test isTrackedCFObjectType().
|
|
|
|
@interface TestIsCFTracked
|
|
|
|
+ (CFStringRef) badNewCFString;
|
|
|
|
+ (CFStringRef) newCFString;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation TestIsCFTracked
|
|
|
|
+ (CFStringRef) newCFString {
|
|
|
|
return CFStringCreateWithFormat(kCFAllocatorDefault, ((void*)0), ((CFStringRef) __builtin___CFStringMakeConstantString ("" "%d" "")), 100); // no-warning
|
|
|
|
}
|
|
|
|
+ (CFStringRef) badNewCFString {
|
|
|
|
return CFStringCreateWithFormat(kCFAllocatorDefault, ((void*)0), ((CFStringRef) __builtin___CFStringMakeConstantString ("" "%d" "")), 100); // expected-warning{{leak}}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-05-02 05:49:13 +04:00
|
|
|
// Test @synchronized
|
|
|
|
void test_synchronized(id x) {
|
|
|
|
@synchronized(x) {
|
|
|
|
NSString *string = [[NSString stringWithFormat:@"%ld", (long) 100] retain]; // expected-warning {{leak}}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-03 10:08:32 +04:00
|
|
|
// Test return from method starting with 'new' or 'copy'
|