我正在为编程课做一个作业。
程序应该:
从命令行接收字符串。
打开当前目录并循环查看其条目,
只有当他们的名字以
我从CMD传递的字符串。
如果这些条目是常规文件,
我需要计算除空格以外的所有字符,
并计算以a/a开头的单词数。
这是密码。

int main(int argc,char* argv[])
{
    if(argc!=2) //ensures at least an argument is passed.
    {
        puts("enter one argument.");
        exit(EXIT_FAILURE);
    }

    DIR* folder; //folder abstraction
    struct dirent* entry; //entry abstraction
    struct stat info; //file's i node info

    FILE* file;
    int total=0,first=0;
    char temp[100];

    int res;

    folder=opendir("."); //i open the directory

    while((entry=readdir(folder))!=NULL) //i cicle through every entry
    {

        res=strncmp(entry->d_name,argv[1],strlen(argv[1]));
        if(res==0) //if entry name begins with string i continue
        {

            lstat(entry->d_name,&info); //i take file info
            if(S_ISREG(info.st_mode)) //i check if it's a regular file
            {
                file=fopen(entry->d_name,"r"); //i open it
                //printf("%s\n",entry->d_name);
                while((fscanf(file,"%s",temp))!=EOF) //i parse it
                {
                    if(temp[0]=='a'|| temp[0]=='A')
                    {
                        first++;
                    }
                    total+=strlen(temp);
                }
                //now i close the file and print all info
                fclose(file);
                printf("%s\nthe number words that start with a/A: %i\n",entry->d_name,first);
                printf("the amount of characters except spaces is %i\n",total);
                total=0;
                first=0;
            }

        }
        //now the process will be repeated for the remaining entries
    }
    return 0;
}

问题是,程序得到的第一个条目以我从CMD传递的模式开始,计算正确,但是
当在第二个条目上调用stat时,它会导致seg fault 11。
如果我注释掉lstat,所有符合条件的条目都会被识别,即使没有计算,我也无法测试它是否是没有lstat的常规文件。。。
是什么导致了这个问题,我已经试了两个小时了,请帮帮我,谢谢!
编辑:
我发现了问题,基本上我工作的目录中有可执行文件的二进制文件。
原来二进制文件被认为是常规文件,所以当程序打开它进行解析时,它解析了一个长字符串,导致临时变量上的缓冲区溢出。我以为那些文件是二进制的,和普通的分开了。

最佳答案

lstat函数引起的意外seg故障
由于代码其他部分的行为未定义,我们不知道seg故障是由lstat引起的。包含lstat确实揭示了一个问题,但真正的原因可能在其他地方。
代码有问题,但在不同的地方缺少错误检查。@Weather Vane
检查函数返回值

folder=opendir(".");
if (folder == NULL) {
  perror("opendir failed);
  exit (EXIT_FAILURE);
}


// lstat(entry->d_name,&info);
if (lstat(entry->d_name,&info)) {
  perror("lstat failed);
  exit (EXIT_FAILURE);
}

file=fopen(entry->d_name,"r");
if (file == NULL) {
  fprintf(stderr, "Unable to open <%s> for reading\n", entry->d_name);
  exit (EXIT_FAILURE);
}

限制宽度
// while((fscanf(file,"%s",temp))!=EOF)
while(fscanf(file,"%99s",temp) == 1) {
  if (strlen(temp) == 99) {
    fprintf(stderr, "Maximum length word read, longer ones might exist\n");
    exit (EXIT_FAILURE);
  }

当然,CAB不是退出,而是以其他方式处理错误。
小调:我用宽度类型来计算字符数。

关于c - lstat函数引起的意外段错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53161204/

10-11 06:29
查看更多