使用管道在C语言中写入openssl的stdio

时间:2017-02-24 10:42:25

标签: c linux openssl pipe exec

我正在尝试将一些数据传递给openssl,如下所示:

int fd[2];
char buff[MAXBUFF];
pid_t childpid;
pipe(fd);

childpid = fork();

if (childpid == 0){
  dup2(0, fd[0]);
  close(fd[1]);
  execlp("openssl", "s_client", "-connect", "imap.gmail.com:993", "-crlf", NULL);
}
else {
  close(fd[0]);
  dosomething(buff);
  write(fd[1], buff, strlen(buff) + 1);
  sleep(4);
}

但似乎openssl没有从buff获取数据,它只是挂起等待我认为的一些输入。 如果我用bash做同样的事情

a.sh:

.
.
.
echo $data
sleep 3
.
.
.

b.sh:

openssl s_client -connect imap.gmail.com:993 -crlf

./ a.sh | ./b.sh

一切正常。

1 个答案:

答案 0 :(得分:0)

您切换了dup2()

的参数

原型是:

int dup2(int oldfd, int newfd);

所以你应该做

dup2(fd[0], 0);

fd[0]设置为子进程的stdin。然后它应该按预期工作。