gpt4 book ai didi

objective-c - 以编程方式从 .kext 目录获取 KEXT 的捆绑标识符

转载 作者:太空宇宙 更新时间:2023-11-03 23:38:48 26 4
gpt4 key购买 nike

我正在构建内核扩展并为其创建一个 .kext 目录。从另一个库 API,我正在使用 KextManager APIs将这个 kext 加载到内核中。

一切看起来都很好,这是我加载 kext 的代码片段:

CFStringRef path = CFStringCreateWithCString(kCFAllocatorDefault, "awesome.kext", kCFStringEncodingUTF8);
CFURLRef url = CFURLCreateWithFileSystemPath(kCFAllocatorDefault, path, kCFURLPOSIXPathStyle, true);
OSReturn result = KextManagerLoadKextWithURL(url, NULL);

效果很好,但是我需要知道我的包标识符才能控制套接字连接,并且可能稍后使用 KextManagerUnloadKextWithIdentifier(kextId) API 卸载 kext。

所以我知道 XXX.kext/Contents/Info.plist 包含带有包标识符的 CFBundleIdentifier 键,但我需要一些方法以编程方式获取它(一些API?)而不是读取 Info.plist 文件并解析它。

我也尝试用其他东西替换 CFBundleIdentifier 字符串值并加载到内核中,它仍然工作正常,所以看起来 Info.plist 无论如何都不可靠。

有什么相关的吗?有什么建议么?谢谢! :)

最佳答案

我最近发现了 2 个有用的方法,都基于 KextManagerCopyLoadedKextInfo API。

void handle_kext(const void* key, const void* value, void* context)
{
// OSBundlePath - CFString (this is merely a hint stored in the kernel; the kext is not guaranteed to be at this path)
CFStringRef bundle_path_key = CFStringCreateWithCString(kCFAllocatorDefault, "OSBundlePath", kCFStringEncodingUTF8);

const char* bundle_id_cstring = CFStringGetCStringPtr(key, kCFStringEncodingUTF8);
const char* bundle_path_cstring = CFStringGetCStringPtr(CFDictionaryGetValue(value, bundle_path_key, kCFStringEncodingUTF8);

// #1 Approach: Compare your 'I-Want-This-BundleID' with loaded kext path
// #2 Approach: Compare your 'I-Want-This-BundlePath' with loaded kext ID
}

void some_func()
{
CFDictionaryRef loaded_kexts = KextManagerCopyLoadedKextInfo(NULL, NULL);
CFDictionaryApplyFunction(loaded_kexts, handle_kext, NULL);
}

关于objective-c - 以编程方式从 .kext 目录获取 KEXT 的捆绑标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51218143/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com