6

我正在为越狱的 iPhone 构建一个守护程序应用程序,并遵循 stackoverflow 上的几个问题和答案中描述的指南,当然还有 Chris Alvares 的网页http://chrisalvares.com/blog/38/creating-an-iphone-守护进程-part-4/

Xcode 和项目由 Jailcoder 修补以使其在我的设备上运行。

这里的一篇文章指出,现在不再需要使用开放工具链模板。将应用程序上传到 /Applications 目录并在 /System/Library/LaunchDaemons 中添加 plist 文件就足够了。

我已经执行了上述步骤,但是守护程序没有启动,或者至少在我检查时没有运行。在 Xcode 管理器中可用的设备日志中,在任何地方都找不到应用程序的名称或其捆绑包 ID。我至少会期望一个错误,原因是它无法启动。

将plist文件的内容复制到/System/Library/LaunchDaemons:

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>dmn.NoUIDaemon.plist</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
            <string>/Applications/NoUIDaemon.app/NoUIDaemon</string>
            <string></string>
            <string></string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
    </dict>
    </plist>

问题:有没有办法调试为什么它不会启动守护程序应用程序?或者,除了将应用程序上传到 /Applications 并将 plist 文件添加到 LaunchDaemons 目录之外,我可能错过了一步吗?

编辑:

我的主要程序的内容:

int main(int argc, char *argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
    }
}

启动 /Applications/NoUIDaemon.app/NoUIDaemon 时出错:

R-iPod:/ root# /Applications/NoUIDaemon.app/NoUIDaemon
-sh: /Applications/NoUIDaemon.app/NoUIDaemon: Bad CPU type in executable

请注意,当我从 Xcode 在我的设备上运行该应用程序时,它确实可以正常工作。

尽管无法手动启动守护程序,但 Nate 的问题的答案:

1)LaunchDaemons中的plist文件确实命名为dmn.NoUIDaemon.plist

2)我犯了忘记标签内容中的 .plist 部分的“错误”,所以我尝试了两个值,最后有和没有 .plist,当然没有区别。

3) 在使用 reboot 命令安装了应用程序和 plist 文件后,我重新启动了设备

4) 我确保所有权限都相同 (0775)

5) 将在 Bad CPU 问题解决但仍无法正常工作时尝试此操作

最终编辑:

要在跳板上隐藏 Daemon 应用程序图标,请将以下内容添加到 .app 中的 Info.plist:

<key>SBAppTags</key>
<array>
    <string>hidden</string>
</array>
4

1 回答 1

7

正如我在评论中所说,首先尝试确保您的守护程序可执行文件是可运行的:

  1. 登录到您的设备root,通过ssh
  2. /Applications/NoUIDameon.app/NoUIDaemon在命令行执行命令
  3. 检查它是否正在运行ps -Aef | grep NoUIDaemon

如果它没有运行,我会检查以确保您的构建过程是伪造的代码签名NoUIDaemon可执行文件。越狱手机不需要有效签名,但仍然需要签名。此外,如果它没有运行(或保持运行),它可能有助于您从守护程序的主程序(例如 main.m)发布代码:

int main(int argc, char *argv[]) {
   // what's in here?
}

如果这确实有效,并且在您手动启动它时运行(但不是自动),请检查:

  1. 上面的 plist 文件是命名的dmn.NoUIDaemon.plist吗?
  2. 我认为这实际上是 Chris 博客中的一个错误,但Label您的 plist 中的值应该是<string>dmn.NoUIDaemon</string>,而不是<string>dmn.NoUIDaemon.plist</string>. 我认为这不会阻止您的守护程序运行,我认为它只是与系统启动守护程序的命名约定一致。
  3. 我不认为仅仅安装 plist 文件/System/Library/LaunchDaemons就足以启动守护进程。您可能需要重新启动手机,或手动启动守护程序launchctl load -w /System/Library/LaunchDaemons/dmn.NoUIDaemon.plist
  4. 检查以确保您的 dmn.NoUIDaemon.plist 的文件权限和所有权与/System/Library/LaunchDaemons.
  5. 我不确定这是否有必要,但我认为守护进程Label的名称(plist 文件的名称和名称)应该与您的 NoUIDaemon-Info.plist 文件中指定的包 ID 匹配。所以,Info.plist 应该有:
    <key>CFBundleExecutable</key>
    <string>NoUIDaemon</string>
    <key>CFBundleIdentifier</key>
    <string>dmn.${PRODUCT_NAME:rfc1034identifier}</string>

或者

    <key>CFBundleExecutable</key>
    <string>NoUIDaemon</string>
    <key>CFBundleIdentifier</key>
    <string>dmn.NoUIDaemon</string>

更新:

另外,我认为你的守护进程的主程序不应该调用UIApplicationMain. 它不应该是 UIApplication。应该是后台进程吧?如果您查看Chris 博客的第 1 页,它会显示一个示例。这是我的一个例子:

int main(int argc, char *argv[]) {
   @autoreleasepool {
      SignalMonitor* daemon = [[SignalMonitor alloc] init];

      // start a timer so that the process does not exit.
      NSTimer* timer = [[NSTimer alloc] initWithFireDate: [NSDate date]
                                                interval: 1.0
                                                  target: daemon
                                                selector: @selector(setup:)
                                                userInfo: nil
                                                 repeats: NO];

      NSRunLoop* runLoop = [NSRunLoop currentRunLoop];
      [runLoop addTimer: timer forMode: NSDefaultRunLoopMode];
      [runLoop run];
   }

   return 0;
}

此外,这是我的守护进程的 plist 文件 (Info.plist) 的副本,其中包含您的守护进程名称:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
        <key>CFBundleDevelopmentRegion</key>
        <string>English</string>
        <key>CFBundleExecutable</key>
        <string>NoUIDaemon</string>
        <key>CFBundleIdentifier</key>
        <string>dmn.NoUIDaemon</string>
        <key>CFBundleInfoDictionaryVersion</key>
        <string>6.0</string>
        <key>CFBundleName</key>
        <string>${PRODUCT_NAME}</string>
        <key>CFBundlePackageType</key>
        <string>APPL</string>
        <key>CFBundleShortVersionString</key>
        <string>1.0</string>
        <key>CFBundleSignature</key>
        <string>????</string>
        <key>CFBundleVersion</key>
        <string>1.0-0</string>
        <key>LSRequiresIPhoneOS</key>
        <true/>
        <key>LSApplicationCategoryType</key>
        <string></string>
</dict>
</plist>
于 2012-11-13T12:12:29.860 回答