1

我现在已经将其缩减为一个最小的测试用例。到目前为止,我已经能够确定这是与 ssh 管道出现的伪终端有关的问题。在 ssh 调用中添加“-t -t”可以改善问题,因为现在需要再次调用 fgets() 才能导致问题。我怀疑 ssh 命令的 stderr 输出以某种方式解决了这个问题,现在我已将 stderr 重定向到 ssh 代码中的 stdout 以执行。我确实想知道“tcgetattr:无效参数”错误是否是问题的一部分,但我不确定如何摆脱它。它似乎来自存在的 -t -t 。我相信 -t -t 正朝着正确的方向发展,但我必须以某种方式为 stderr 设置伪终端,也许测试会正常工作?

生成文件:

test:
    gcc -g -DBUILD_MACHINE='"$(shell hostname)"' -c -o test.o test.c
    gcc -g -o test test.o

.PHONY: clean
clean:
    rm -rf test.o test

test.c 源文件:

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

int
main(int argc, char *argv[])
{
  const unsigned int bufSize = 32;
  char buf1[bufSize];
  char buf2[bufSize];
  int ssh = argv[1][0] == 'y';
  const char *cmd = ssh ? "ssh -t -t " BUILD_MACHINE " \"ls\" 2>&1" : "ls";

  FILE *fPtr = popen(cmd, "r");

  if (fPtr == NULL) {
    fprintf(stderr,"Unable to spawn command.\n");
        perror("popen(3)");
        exit(1);
  }
  printf("Command: %s\n", cmd);
  if (feof(fPtr) == 0 && fgets(buf2, bufSize, fPtr) != NULL) {
    printf("First result: %s\n", buf2);
    if (feof(fPtr) == 0 && fgets(buf2, bufSize, fPtr) != NULL) {
      printf("Second result: %s\n", buf2);
      int nRead = read(fileno(stdin), buf1, bufSize);

      if (nRead == 0) {
        printf("???? popen() of ssh consumed the beginning of stdin ????\n");
      } else if (nRead > 0) {
        if (strncmp("The quick brown fox jumped", buf1, 26) != 0) {
          printf("??? Failed ???\n");
        } else {
          printf("!!!!!!!   Without ssh popen() did not consume stdin   !!!!!!!\n");
        }
      }
    }
  }
}

这表明它正在运行:

> echo "The quick brown fox jumped" | ./test n
Command: ls
First result: ARCH.linux_26_i86

Second result: Makefile

!!!!!!!   Without ssh popen() did not consume stdin   !!!!!!!

这表明它以失败的方式运行:

> echo "The quick brown fox jumped" | ./test y
Command: ssh -t -t hostname "ls" 2>&1
First result: tcgetattr: Invalid argument

Second result: %backup%~              gmon.out

???? popen() of ssh consumed the beginning of stdin ????
4

1 回答 1

1

好的,我终于完成了这项工作。秘诀是从上面的测试用例中提供 /dev/null 作为我的 ssh 命令的输入,如下所示:

      const char *cmd
        = ssh ? "ssh -t -t " BUILD_MACHINE " \"ls\" 2>&1 < /dev/null" : "ls";

但是,虽然代码正常工作,但我收到一条令人讨厌的消息,显然我可以出于我的目的忽略它(尽管我想让消息消失):

tcgetattr: Inappropriate ioctl for device
于 2009-09-19T17:35:23.047 回答