我一直在研究一些C代码,以提供类似于shell的功能。到目前为止,它可以运行大多数命令,如cat,ls,ls | grep ...等。在编写代码来实现函数“cd”,“pwd”,“pushd”和“popd”之后,我一直在测试它。如果我写“cd ..”或“cd anydir”它将运行“chdir(anydir)”并返回我的脚本命令提示符。在“cd”之后输入任何命令后,它将返回错误:
*** Error in `./smshv4': corrupted double-linked list: 0x00000000018d5190 ***
我在不相关的变量中重新分配内存时,将此错误隔离开来。我评论了在以下期间产生错误的行:
char * next_cmd(char *prompt, FILE *fp){
fprintf(stderr,"in next_cmd\n");
char *buf ;
int bufspace = 0;
int pos = 0;
int c;
printf("%s", prompt);
while( ( c = getc(fp)) != EOF ) {
if( pos+1 >= bufspace ){
if ( bufspace == 0 ){
buf = emalloc(BUFSIZ); //Error occurs while calling this function
} else {
buf = erealloc(buf,bufspace+BUFSIZ);
}
bufspace += BUFSIZ;
}
/* end of command? */
if ( c == '\n' )
break;
/* no, add to buffer */
buf[pos++] = c;
}
if ( c == EOF && pos == 0 )
return NULL;
buf[pos] = '\0';
return buf;
}
只有在使用chdir运行任何函数后才会出现此错误。这是我作为输入提供CD时如何调用chdir的示例:
if(strcmp(cmdStruct.commandTemp[0],"cd") == 0){
if(cmdStruct.commandTemp[1] != NULL){
if(chdir(cmdStruct.commandTemp[1]) == -1){
perror("chdir");
return -1;
}
} else {
fprintf(stderr,"cd failed. No directory given\n");
return -1;
}
}
此cd命令无效,因为无论何时运行它,下次输入命令时都会显示给出的错误。如果我cd到另一个目录,运行任何东西来接收错误,然后运行“pwd”(这是工作),它将显示原始目录(错误似乎在输入一个命令后自行排序)。
如何解决损坏的双链表问题?感谢。
编辑:我调用命令提示符,如下所示:
while ( (cmdline = next_cmd(prompt, stdin)) != NULL ){ //command prompt function is run
//if & sign detected, fork. otherwise run command as usual
if(hasBackgroundSign(cmdline) == 1){
pid = fork();
if(pid == 0){
if ( (arglist = splitline(cmdline)) != NULL ){
result = execute(arglist);
freelist(arglist);
}
free(cmdline);
kill(getpid(), SIGKILL);
} else {
printf("%d\n",pid);
}
} else {
//if no & sign detected, run command as usual without forking
if ( (arglist = splitline(cmdline)) != NULL ){
result = execute(arglist); //execute function contains the chdir calls
freelist(arglist);
}
free(cmdline);
}
}
答案 0 :(得分:1)
通过使用Valgrind找到损坏的内存位置来解决。 Valgrind称“无效写入大小为8”。解决这个问题后,问题就消失了。 感谢Leon提出上述建议。