私は自分のシンプルなシェルをcで書くつもりです。 シェルにコマンド(例えばls)を入力すると、セグメンテーションフォルト(コアダンプ)が発生します。 問題はメインの議論にあるのでしょうか?自分自身のシェルのセグメンテーションフォールト(コアダンプされた)
問題のある場所が見つかりません。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
#include <unistd.h>
#define BUFFER_SIZE 512
char *readline(void){
char* line;
if(!fgets(line, BUFFER_SIZE, stdin)){
exit;
}
size_t length=strlen(line);
if (line[length-1]== '\n'){
line[length-1]='\0';
}
if(strcmp(line, "exit") ==0){
exit;
}
return line;
}
char **split_line(char *line){
char* tokens[100];
char* token;
int i=0;
token=strtok(line," ");
while(token !=NULL){
tokens[i] = token;
token=strtok(NULL, " ");
}
tokens[i]=NULL;
return tokens;
}
int exec_line(char **args){
pid_t pid, wpid;
char path[40];
int status;
strcpy(path, "/bin/");
strcat(path, args[0]);
pid=fork();
if(pid==0){
if (execvp(path, args)== -1){
printf("Child process could not do execvp \n");
}
exit(EXIT_FAILURE);
}else{
do{
wpid=waitpid(pid, &status, WUNTRACED);
}while (!WIFEXITED(status) && !WIFSIGNALED(status));
}
return 1;
}
void lloop(void){
char *line;
char **args;
int status;
do{
printf("my_shell> ");
line=readline();
args=split_line(line);
status=exec_line(args);
free(line);
free(args);
}while(status);
}
int main(){
lloop();
return EXIT_SUCCESS;
}
'char * line; if(!fgets(line、BUFFER_SIZE、stdin))... 'no memory allocated ...クラッシュ。 –
[正しいC書式設定](// prohackr112.tk/pcf)を調べてください。または、コードを徹底的に難読化する方法を学んでください(// prohackr112.tk/guide/coding/proper-c-obfuscation)。 –
BTW 'exit;'は構文エラーです。それは 'exit(EXIT_FAILURE);のようなものでなければなりません。 –