gpt4 book ai didi

c - 将 memcpy 与 mmap 一起使用的问题

转载 作者:IT王子 更新时间:2023-10-29 00:39:48 52 4
gpt4 key购买 nike

尝试使用这些函数复制文件时,一切正常,直到程序遇到 memcpy 函数,该函数给出总线错误并终止进程。

void copy_mmap(char* in, char* out){

int input_fd, output_fd;

input_fd = open (in, O_RDONLY);
if (input_fd == -1) {
printf("Error opening input file.\n");
exit(2);
}

output_fd = open(out, O_RDWR | O_CREAT, S_IWUSR | S_IRUSR);
if(output_fd == -1){
printf("Error opening output file.\n");
exit(3);
}

struct stat st;
fstat(input_fd, &st);

char* target;
target=mmap(0, st.st_size+1, PROT_READ, MAP_SHARED, input_fd, 0);
if (target==(void*) -1){
printf("Error mapping target with errno: %d.\n", errno);
exit(6);
}


char* destination;
destination=mmap(0, st.st_size+1, PROT_READ | PROT_WRITE, MAP_SHARED, output_fd, 0);
if (destination==(void*) -1){
printf("Error mapping destination with errno: %d.\n", errno);
exit(5);
}

memcpy(destination, target, st.st_size);
munmap(destination, st.st_size);



}

未能找出问题所在,因为“总线错误”不是描述性错误消息,并且互联网上没有太多关于此问题的资料。

最佳答案

当您将目标文件创建为新文件时,其大小为 0 字节。 memcpy 崩溃,因为它试图写入超出文件末尾的数据。

您可以在使用 mmap() 之前将目标文件的大小预先调整为源文件的大小(使用 ftruncate())。

此外,您应该将 st.st_size 作为第二个参数传递给 mmap,而不是 st.st_size+1st.st_size+1 尝试映射大于文件大小的范围,这是无效的。

关于c - 将 memcpy 与 mmap 一起使用的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14242231/

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