1 /* UIKit Tools - command-line utilities for UIKit
2 * Copyright (C) 2008-2012 Jay Freeman (saurik)
5 /* Modified BSD License {{{ */
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
11 * 1. Redistributions of source code must retain the
12 * above copyright notice, this list of conditions
13 * and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the
15 * above copyright notice, this list of conditions
16 * and the following disclaimer in the documentation
17 * and/or other materials provided with the
19 * 3. The name of the author may not be used to endorse
20 * or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
25 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #import <Foundation/Foundation.h>
43 #include <sys/types.h>
48 #include "csstore.hpp"
50 @interface NSObject (Cydia)
51 - (NSDictionary *) dictionaryOfInfoDictionaries;
54 @implementation NSObject (Cydia)
56 - (NSDictionary *) dictionaryOfInfoDictionaries {
62 @interface NSArray (Cydia)
63 - (NSDictionary *) dictionaryOfInfoDictionaries;
66 @implementation NSArray (Cydia)
68 - (NSDictionary *) dictionaryOfInfoDictionaries {
75 @interface NSDictionary (Cydia)
76 - (NSDictionary *) dictionaryOfInfoDictionaries;
79 @implementation NSDictionary (Cydia)
81 - (NSDictionary *) dictionaryOfInfoDictionaries {
87 bool FinishCydia(const char *finish) {
91 const char *cydia(getenv("CYDIA"));
95 int fd([[[[NSString stringWithUTF8String:cydia] componentsSeparatedByString:@" "] objectAtIndex:0] intValue]);
96 FILE *fout(fdopen(fd, "w"));
97 fprintf(fout, "finish:%s\n", finish);
102 void FixCache(NSString *home, NSString *plist) {
103 printf("attempting to fix weather app issue, please wait...\n");
105 DeleteCSStores([home UTF8String]);
106 unlink([plist UTF8String]);
108 bool succeeded(false);
110 if (void *MobileInstallation$ = dlopen("/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation", RTLD_GLOBAL | RTLD_LAZY)) {
111 int (*MobileInstallation$_MobileInstallationRebuildMap)(CFBooleanRef, CFBooleanRef, CFBooleanRef);
112 MobileInstallation$_MobileInstallationRebuildMap = reinterpret_cast<int (*)(CFBooleanRef, CFBooleanRef, CFBooleanRef)>(dlsym(MobileInstallation$, "_MobileInstallationRebuildMap"));
113 if (MobileInstallation$_MobileInstallationRebuildMap != NULL) {
114 if (int error = MobileInstallation$_MobileInstallationRebuildMap(kCFBooleanTrue, kCFBooleanTrue, kCFBooleanTrue))
115 printf("failed to rebuild cache (but we gave it a good try); error #%d\n", error);
117 printf("successfully rebuilt application information cache.\n");
121 printf("unable to find _MobileInstallationRebuildMap symbol.\n");
123 printf("unable to load MobileInstallation library.\n");
126 printf("this is not a problem: it will be regenerated as the device boots\n");
128 if (!FinishCydia("reboot"))
129 printf("you must reboot to finalize your cache.\n");
132 int main(int argc, const char *argv[]) {
134 strcmp(argv[1], "install") != 0 &&
135 strcmp(argv[1], "upgrade") != 0 &&
138 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
140 if (kCFCoreFoundationVersionNumber >= 700) { // XXX: iOS 6.x
141 NSString *home(@"/var/mobile");
142 NSString *plist([NSString stringWithFormat:@"%@/Library/Caches/com.apple.mobile.installation.plist", home]);
143 NSDictionary *cache([NSDictionary dictionaryWithContentsOfFile:plist]);
145 NSArray *cached([cache objectForKey:@"MICachedKeys"]);
146 if (cached != nil && [cached containsObject:@"Container"]) {
147 NSObject *system([cache objectForKey:@"System"]);
148 NSDictionary *dictionary([system dictionaryOfInfoDictionaries]);
149 NSDictionary *weather([dictionary objectForKey:@"com.apple.weather"]);
151 if (weather != nil && [weather objectForKey:@"Container"] == nil)
152 FixCache(home, plist);