popen实施中的分段错误

时间:2015-11-05 22:00:26

标签: c unix segmentation-fault popen

我已经编写了这个用于实现popen()的C程序。我在运行代码时遇到分段错误。 我尝试使用execl()而不是execv(),但得到相同的错误。 请帮忙

#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <sys/wait.h>



#include <sys/syscall.h>
FILE *popen(const char *command,const char* mode)
{
        FILE *fp;
        int pipe_fd[2];
        pid_t pid;
                        /* Assume child is writing. */
        pipe(pipe_fd);

    if ((pid = vfork()) == 0) {     /* Child of vfork... */
            if (mode[0] == 'r') {
                    dup2(pipe_fd[1],1);
            }
            else if(mode[0] == 'w')
                    dup2(pipe_fd[0],0);
            close(pipe_fd[0]);
            close(pipe_fd[1]);



            execv(command,"");
            _exit(127);
    }
    if(mode[0] == 'r'){
            close(pipe_fd[1]);
            fp = fdopen(pipe_fd[0],mode);
    }
    else if(mode[0] == 'w'){
            close(pipe_fd[0]);
            fp = fdopen(pipe_fd[1],mode);
    }
    return fp;

}

int main(){
        File*fp;
        fp = popen("ls",'r');
}

1 个答案:

答案 0 :(得分:0)

编译器应警告您此代码execv(command,"");, execv不接受指向char的指针作为第二个参数,只需读取即可 man execv