gpt4 book ai didi

macos - 从 getectbyname 读取字节时发生崩溃

转载 作者:行者123 更新时间:2023-12-02 00:56:50 27 4
gpt4 key购买 nike

更新:感谢格雷格·帕克的指点,回答下面的问题......

我在这里上传了一个示例项目,但我也会对其进行描述:https://github.com/tewha/getsectbyname-crash

我的可执行文件(仅限 64 位)崩溃了,但从 Xcode 运行时却没有崩溃。但是,如果我从终端仪器运行它,它就会崩溃。

不是调试与发布配置问题;在终端中运行调试可执行文件也会崩溃。从 Xcode 运行 Release 可执行文件是可行的。

我正在尝试从 Mach-O 可执行文件中读取造成部分,该可执行文件通过 CREATE_INFOPLIST_SECTION_IN_BINARY = YES 链接到应用程序。

const struct section_64 *plistSection = getsectbyname("__TEXT", "__info_plist");
NSLog(@"Found a section %s, %s", plistSection->segname, plistSection->sectname);
void *ptr = ((void *)plistSection->addr);
uint64_t size = plistSection->size;

NSLog(@"It has %zd bytes at %tx", size, plistSection->addr);
NSLog(@"Allocating %zd bytes", size);
void *buffer = malloc(size);
NSLog(@"Moving %zd bytes", size);
NSLog(@"(Crashes when doing the memmove.)");
memmove(buffer, ptr, size);
NSLog(@"Freeing %zd bytes", size);
free(buffer);

输出看起来像这样(我对此进行了一些简化以删除日期/时间戳、进程 ID):

bash-4.3$ ./getsectbyname 
getsectbyname Found a section __TEXT, __info_plist
getsectbyname It has 658 bytes at 100000d07
getsectbyname Allocating 658 bytes
getsectbyname Moving 658 bytes
getsectbyname (Crashes when doing the memmove.)
Segmentation fault: 11

谁能告诉我如何解决这个问题?

答案:

#import <Foundation/Foundation.h>

#include <mach-o/getsect.h>
#include <mach-o/ldsyms.h>

int main(int argc, const char * argv[]) {
@autoreleasepool {
NSError *e;
unsigned long size;
void *ptr = getsectiondata(&_mh_execute_header, "__TEXT",
"__info_plist", &size);
NSData *plistData = [NSData dataWithBytesNoCopy:ptr length:size
freeWhenDone:NO];
NSPropertyListFormat format;
NSDictionary *infoPlistContents =
[NSPropertyListSerialization propertyListWithData:plistData
options:NSPropertyListImmutable format:&format error:&e];
NSLog(@"The value for Key is %@", infoPlistContents[@"Key"]);
}
return 0;
}

最佳答案

getsectbyname() 不会调整 ASLR 的节地址。如果您的部署目标允许(我认为首先在 OS X 10.7 中实现),您应该使用 getsectiondata()

关于macos - 从 getectbyname 读取字节时发生崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28978788/

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