]> git.saurik.com Git - patcyh.git/commitdiff
Ensure moved applications are found in canOpenURL. v1.1.0
authorJay Freeman (saurik) <saurik@saurik.com>
Sat, 24 Oct 2015 13:06:28 +0000 (06:06 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Sat, 24 Oct 2015 13:06:28 +0000 (06:06 -0700)
extrainst_.mm
makefile
patch.hpp
patcyh.mm
postrm.mm

index 45e70b5059852cd1057294ede01b9060bd27343b..3aa841ea776cafe0ec0299f9dbe893e79c79f476 100644 (file)
@@ -37,9 +37,10 @@ int main(int argc, const char *argv[]) {
 
     NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
 
+    if (!PatchLaunch(false, false))
+        return 1;
     if (!PatchInstall(false, false))
         return 1;
-    system("launchctl stop com.apple.mobile.installd");
 
     [pool release];
     return 0;
index f30dc74d3f20e2c74b91eab4052b9c0040637398..dca5f8ed4f5664f2b606b05cdba535c6159d0735 100644 (file)
--- a/makefile
+++ b/makefile
@@ -12,6 +12,7 @@ clean:
 flags := -Os -Werror
 flags += -framework CoreFoundation
 flags += -framework Foundation
+flags += -marm
 
 lib%.dylib: %.mm
        cycc -i2.0 -o$@ -- -dynamiclib $(flags) $(filter-out %.hpp,$^) $($@) -lobjc
index 658333e8e0ceef509bb46e0ba03d9ed7680e4eaf..e108eb44ca7185580d88264ed7d4e0085c2b239d 100644 (file)
--- a/patch.hpp
+++ b/patch.hpp
@@ -22,6 +22,8 @@
 #ifndef PATCH_HPP
 #define PATCH_HPP
 
+#include <string>
+
 #include <dlfcn.h>
 
 #include <sys/mman.h>
@@ -30,7 +32,6 @@
 
 #include <mach-o/loader.h>
 
-#define INSTALLD "/usr/libexec/installd"
 #define LIBUICACHE "/usr/lib/libpatcyh.dylib"
 
 static void *(*$memmem)(const void *, size_t, const void *, size_t) = reinterpret_cast<void *(*)(const void *, size_t, const void *, size_t)>(dlsym(RTLD_DEFAULT, "memmem"));
@@ -100,13 +101,13 @@ static bool PatchInstall(bool uninstall, void *data) {
     return true;
 }
 
-static bool PatchInstall(bool uninstall, bool abort) {
+static bool Patch(const std::string &path, const std::string &service, bool uninstall, bool abort) {
     if (!abort && system("ldid --") != 0) {
         fprintf(stderr, "this package requires ldid to be installed\n");
         return false;
     }
 
-    int fd(open(INSTALLD, O_RDWR));
+    int fd(open(path.c_str(), O_RDWR));
     if (fd == -1)
         return false;
 
@@ -139,12 +140,22 @@ static bool PatchInstall(bool uninstall, bool abort) {
     munmap(data, size);
 
     if (changed) {
-        system("ldid -s "INSTALLD"");
-        system("cp -af "INSTALLD" "INSTALLD"_");
-        system("mv -f "INSTALLD"_ "INSTALLD"");
+        system(("ldid -s " + path + "").c_str());
+        system(("cp -af " + path + " " + path + "_").c_str());
+        system(("mv -f " + path + "_ " + path + "").c_str());
+        system(("launchctl stop " + service + "").c_str());
     }
 
     return true;
 }
 
+
+static bool PatchInstall(bool uninstall, bool abort) {
+    return Patch("/usr/libexec/installd", "com.apple.mobile.installd", uninstall, abort);
+}
+
+static bool PatchLaunch(bool uninstall, bool abort) {
+    return Patch("/usr/libexec/lsd", "com.apple.lsd", uninstall, abort);
+}
+
 #endif//PATCH_HPP
index 85ddfe47bd59839aded4d2049e8c58626ba504b5..a2c5039165b5634b1f81f33e0f26e5f4e116497f 100644 (file)
--- a/patcyh.mm
+++ b/patcyh.mm
@@ -45,14 +45,73 @@ static NSArray *$MIFileManager$urlsForItemsInDirectoryAtURL$ignoringSymlinks$err
         [items addObject:[NSURL fileURLWithPathComponents:[prefix arrayByAddingObjectsFromArray:[components subarrayWithRange:NSMakeRange(skip, [components count] - skip)]]]];
     }
 
+    NSLog(@"items = %@", items);
     return items;
 }
 
+static NSString *(*_NSURL$path)(NSURL *self, SEL _cmd);
+
+static NSString *$NSURL$path(NSURL *self, SEL _cmd) {
+    return [[_NSURL$path(self, _cmd) mutableCopy] autorelease];
+}
+
+static NSRange (*_NSString$rangeOfString$options$)(NSString *self, SEL _cmd, NSString *value, NSStringCompareOptions options);
+
+static NSRange $NSString$rangeOfString$options$(NSString *self, SEL _cmd, NSString *value, NSStringCompareOptions options) {
+    if ([value isEqualToString:@".app/"]) do {
+        char *real(realpath("/Applications", NULL));
+        NSString *destiny([NSString stringWithUTF8String:real]);
+        free(real);
+
+        if ([destiny isEqualToString:@"/Applications"])
+            break;
+
+        destiny = [destiny stringByAppendingString:@"/"];
+        if (![self hasPrefix:destiny])
+            break;
+
+        if (![self hasSuffix:@".app"])
+            break;
+
+        BOOL directory;
+        if (![[NSFileManager defaultManager] fileExistsAtPath:self isDirectory:&directory])
+            break;
+        if (!directory)
+            break;
+
+        NSLog(@"path = %@", self);
+        // the trailing / allows lsd to "restart" its verification attempt
+        [(NSMutableString *) self setString:[NSString stringWithFormat:@"/Applications/%@/", [self substringFromIndex:[destiny length]]]];
+    } while (false);
+
+    return _NSString$rangeOfString$options$(self, _cmd, value, options);
+}
+
 __attribute__((__constructor__))
 static void initialize() {
     $MIFileManager = objc_getClass("MIFileManager");
-    SEL sel(@selector(urlsForItemsInDirectoryAtURL:ignoringSymlinks:error:));
-    Method method(class_getInstanceMethod($MIFileManager, sel));
-    _MIFileManager$urlsForItemsInDirectoryAtURL$ignoringSymlinks$error$ = reinterpret_cast<NSArray *(*)(MIFileManager *, SEL, NSURL *, BOOL, NSError *)>(method_getImplementation(method));
-    method_setImplementation(method, reinterpret_cast<IMP>(&$MIFileManager$urlsForItemsInDirectoryAtURL$ignoringSymlinks$error$));
+
+    if ($MIFileManager != Nil) {
+        SEL sel(@selector(urlsForItemsInDirectoryAtURL:ignoringSymlinks:error:));
+        if (Method method = class_getInstanceMethod($MIFileManager, sel)) {
+            _MIFileManager$urlsForItemsInDirectoryAtURL$ignoringSymlinks$error$ = reinterpret_cast<NSArray *(*)(MIFileManager *, SEL, NSURL *, BOOL, NSError *)>(method_getImplementation(method));
+            method_setImplementation(method, reinterpret_cast<IMP>(&$MIFileManager$urlsForItemsInDirectoryAtURL$ignoringSymlinks$error$));
+        }
+    }
+
+    if (Class $NSURL = objc_getClass("NSURL")) {
+        SEL sel(@selector(path));
+        if (Method method = class_getInstanceMethod($NSURL, sel)) {
+            _NSURL$path = reinterpret_cast<NSString *(*)(NSURL *, SEL)>(method_getImplementation(method));
+            method_setImplementation(method, reinterpret_cast<IMP>(&$NSURL$path));
+        }
+    }
+
+    if (Class $NSString = objc_getClass("NSString")) {
+        SEL sel(@selector(rangeOfString:options:));
+        if (Method method = class_getInstanceMethod($NSString, sel)) {
+            _NSString$rangeOfString$options$ = reinterpret_cast<NSRange (*)(NSString *, SEL, NSString *, NSStringCompareOptions)>(method_getImplementation(method));
+            method_setImplementation(method, reinterpret_cast<IMP>(&$NSString$rangeOfString$options$));
+        }
+    }
 }
index 57f18ebdc79a110b4308d405cba985c73b1225ab..faa1dbc1237942ede0e40d0921de0b8d0ac3a833 100644 (file)
--- a/postrm.mm
+++ b/postrm.mm
@@ -35,7 +35,8 @@ int main(int argc, const char *argv[]) {
 
     if (!PatchInstall(true, abort))
         return 1;
-    system("launchctl stop com.apple.mobile.installd");
+    if (!PatchLaunch(true, abort))
+        return 1;
 
     [pool release];
     return 0;