gpt4 book ai didi

c - 使用 strtok() 和 strcmp() 出现段错误

转载 作者:行者123 更新时间:2023-11-30 15:28:33 25 4
gpt4 key购买 nike

我正在尝试编写简单的 C 程序,该程序逐行检查 Linux 密码文件,搜索以命令行参数提供的用户名开头的行。每行由几个由冒号分隔的标记组成。第一个 token 是用户名,第二个无关紧要,第三个 token 是需要打印的用户ID(UID)号,第四个 token 是也需要打印的组ID号(GID)。

使用一些打印测试并在线搜索解决方案,我认为我的 token 变量在将其分配给我的第一个 strtok 调用后仍然为 NULL(此时 token 的 printf 不打印任何内容)。然后,使用 strcmp 将 NULL 标记与产生段错误的用户名进行比较。如果到目前为止我的分析是正确的(很可能不是,因为我是 C 新手),我该如何避免/解决这个问题以及为什么会发生这种情况?

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

int main(int argc, char **argv)
{
FILE *pwfile;
char *userName;
char buf[1024];
const char s[2] = ":";
char *token;
int ch, number_of_lines = 0;
int i;

if(argc != 2)
{
perror("must supply a user name");

return -1;
}

pwfile = fopen("/home/c2467/passwd", "r");

if( pwfile == NULL)
{
perror( "error opening password file" );

return -1;
}

userName = argv[1];

do//loop to determine number of lines in the file
{
ch = fgetc(pwfile);
if(ch == '\n')
number_of_lines++;
} while (ch != EOF);

if(ch != '\n' && number_of_lines != 0)
{
number_of_lines++;
}

for (i = 0; i <= number_of_lines; i++)//iterates through lines of file
{

fgets(buf, 1024, pwfile);//stores line into buf

if (ferror(pwfile) != 0)//tests error indicator for given stream
{
perror("fgets error");
return 1;
}

if (feof(pwfile) == 0)//checks if at end of file
{
break;
}

token = strtok( buf, s);//stores first token of current line in file

if( strcmp(token, userName) == 0 )//compares token to user name entered
{
token = strtok( NULL, s);//Jumps to 2nd token in line, which is irrelevant so do nothing
token = strtok( NULL, s);//Jumps to 3rd token which is UID number
printf( "UID: %s\n", token );
token = strtok( NULL, s);//Jumps to 4th token which is GID number
printf( "GID: %s\n", token );
break;
}

}
fclose(pwfile);

return 0;
}

最佳答案

您从头到尾读取文件以获取新行数。

但是,您会再次开始阅读,而不会回到开头。这会导致您的 fget 失败(在 EOF 之后读取)。

你必须这样称呼:

fseek(pwfile, 0 , SEEK_SET);

您还可以从 for on (feof(pwfile) == 0) 中打破,如果文件不在文件末尾,这就是正确的,这意味着即使在倒带之后,您将在处理第一行之前停止。

您应该将其更改为:

if (feof(pwfile))

否则它看起来工作得很好并且正确。 (不过,我个人很讨厌strtok)

关于c - 使用 strtok() 和 strcmp() 出现段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26542613/

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