gpt4 book ai didi

c - 为什么会出现段错误?我正在使用 stat、mmap、nftw 和 memcmp 等

转载 作者:太空宇宙 更新时间:2023-11-04 01:35:07 25 4
gpt4 key购买 nike

这是我的代码。我假设这与指针使用不当有关,或者我没有正确映射和取消映射我的内存。

谁能给我一些关于这个问题的见解?

#define _XOPEN_SOURCE 500
#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <ftw.h>
#include <sys/stat.h>
#include <string.h>

int size;
int map1, map2;
void *tar, *temp;

int callback(const char *filename,
const struct stat *sb2,
int filetype,
struct FTW *ftw)
{
printf("test");
if(sb2->st_size == sb1->st_size){
temp = mmap(NULL, sb2->st_size, PROT_NONE, 0, map2, 0);
int cmp = memcmp(tar, temp, sb2->st_size);
printf("%d\n", cmp);
if(cmp == 0){
printf("%s\n", filename);
}
if(munmap(temp,sb2->st_size) == -1){
fprintf(stderr, "Error in unmapping in callback function");
exit(EXIT_FAILURE);
}
}

return 0; //continue to walk the tree
}

int main(int argc, char *argv[])
{
//check for correct arguments
if (argc == 1 || argc > 3) {
fprintf(stderr, "Syntax: %s filename dirname\n", argv[0]);
exit(EXIT_FAILURE);
}


//use stat to get size of filename
struct stat sb1;
if(stat(argv[1],&sb1) != 0){
fprintf(stderr, "Error in stat().");
exit(EXIT_FAILURE);
}
size = sb1.st_size;

//fd = mmap filename
tar = mmap(NULL,sb1->st_size, PROT_WRITE, MAP_SHARED, map1, 0);
if(tar == 0){
fprintf(stderr, "Main() mmap failed");
exit(EXIT_FAILURE);
}


//walk through the directory with callback function
nftw(argv[2], callback, 20, 0);

// use munmap to clear fd
if (munmap(tar,sb1->st_size) == -1) {
fprintf(stderr, "Error in unmapping");
exit(EXIT_FAILURE);
}
}

编辑

我现在在使用 stat 函数之前声明我的 struct stat sb1。这样做之后,我再次收到段错误。然后我注释掉我的 nftw() 调用并打印出大小变量(它有一个合理的数字,所以我相信这是有效的)。新的错误是:

取消映射时出错。

最佳答案

您声明:

struct stat *sb1;

您使用:

stat(argv[1],sb1);

你崩溃了,因为 sb1 是一个空指针(因为变量是在文件范围内定义的,所以它被初始化为 0)。

您需要声明(在文件范围内):

struct stat sb1;

然后在 main() 中你可以使用:

if (stat(argv[1], &sb1) != 0)
...oops...

您必须查看 sb1 的所有使用,以修复从指针到对象的状态更改,在必要时添加 &,并更改 -> 必要时。

mmap() 示例

这是我编写的一个函数的轻微编辑版本,它使用 mmap() 将文件映射到内存中:

/* Map named file into memory and validate that it is a MSG file */
static int msg_mapfile(const char *file)
{
int fd;
void *vp;
struct stat sb;

if (file == 0)
return(MSG_NOMSGFILE);
if ((fd = open(file, O_RDONLY, 0)) < 0)
return(MSG_OPENFAIL);
if (fstat(fd, &sb) != 0)
{
close(fd);
return(MSG_STATFAIL);
}
vp = mmap(0, sb.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
close(fd);
if (vp == MAP_FAILED)
return(MSG_MMAPFAIL);

MSG_xxxx 常量是适用于它来自的程序的不同错误编号。它只需要读取文件,因此 PROT_READ;我想你也可以接受。

关于c - 为什么会出现段错误?我正在使用 stat、mmap、nftw 和 memcmp 等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15755937/

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