show/hide this revision's text 12 Rework question completely based on progress thus far

Calling fgets() on pipe popen() of ssh 'ssh' is flushing the beginning of stdin of the calling process (ptty issue)

See below for revised minimal test case, the first part is my original posting.

Hello,

I have the following test code:

const int bufSize = 4096; char buf[bufSize]; int nRead = read(STDIN_FILENO, buf, bufSize); if (strncmp("beginning of stdin compare value here", buf, 29) != 0) { cerr << "Failed!\n"; } else { cout << "Seems to have worked!\n";char buf2[4096];FILE *fPtr = ::popen("myAppHere -arg1 etc", "r");// Calling testIt() works here.::fgets(buf2, 4096, fPtr);// Calling testIt() fails here, stdin is now advanced beyond start of datawhittled this down to a minimal test case.

It seems stdin has Thus far I have been read and buffered, for something like cin and now stdin able to determine that this is pointing beyond an issue related to pseudo-terminals which come about with the start pipe of the data once fgets() has been calledssh.

I ran strace and got Adding the following result for '-t -t' to the ssh call improved things, in that now, it takes a second call to the offending fgets() which shows to cause the pipe is opened on File Descriptor 4:

fstat64(4, {st_mode=S_IFIFO|0600, st_size=0, issue.  ..}) = 0mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7ffe000read(4, "served (Serve server, v2.2.1) Co"..., 4096) = 81I also wonder if this might be a bug in the Linux Centos 4 operating system?  I tried suspect that the same test on Centos 5 and it fails too in stderr output of the same way.  For my actual program, ssh command somehow works into the stdin being supplied is a tar file that is 20,408,320 bytes long, when I read it on Centos 4 or 5issue, for now I only get have redirected stderr to stdout in the last 20,244,480 bytesssh code to execute.  The number of bytes lost in hex is 0x28000, which makes me think I lost one buffer's full allotment do wonder if the "tcgetattr: Invalid argument" error is part of bytesthe problem, it being a small multiple of an even power of 2.

Please suggest what is going wrong and but am not sure how I might resolve thisto get rid of that.

ThanksIt seems to come from the -t -t being present. I believe the -Williamt -t is moving in the right direction, but I have now whittled this down to a minimal set up the pseudo terminal for stderr somehow and perhaps the test case:will work properly?

const unsigned int bufSize = 12832; const char *cmd = ssh ? "ssh -t -t " BUILD_MACHINE " \"ls\"" "ls\" 2>&1" : "ls"; 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); printf("Second result: %s\n", buf2);

Here }

This shows it running first the failing way and then the successful passing way:

???? nCommand: lsFirst result: ARCH.linux_26_i86Second result: Makefile!!!!!!! Without ssh popen() of ssh consumed the beginning of did not consume stdin ????

This shows it running the failing way:

!!!!!!! Without yCommand: ssh -t -t hostname "ls" 2>&1First result: tcgetattr: Invalid argumentSecond result: %backup%~ gmon.out???? popen() did not consume of ssh consumed the beginning of stdin !!!!!!!
show/hide this revision's text 11 Add more header files to testcase.

See below for revised minimal test case, the first part is my original posting.


Hello,

I have the following test code:

void
testIt()
{
  const int bufSize = 4096;
  char buf[bufSize];

  int nRead = read(STDIN_FILENO, buf, bufSize);

  if (strncmp("beginning of stdin compare value here", buf, 29) != 0) {
    cerr << "Failed!\n";
  } else {
    cout << "Seems to have worked!\n";
  }
}

char buf2[4096];
FILE *fPtr = ::popen("myAppHere -arg1 etc", "r");

// Calling testIt() works here.
::fgets(buf2, 4096, fPtr);
// Calling testIt() fails here, stdin is now advanced beyond start of data.

It seems stdin has been read and buffered, for something like cin and now stdin is pointing beyond the start of the data once fgets() has been called.

I ran strace and got the following result for the call to the offending fgets() which shows the pipe is opened on File Descriptor 4:

fstat64(4, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7ffe000
read(4, "served (Serve server, v2.2.1) Co"..., 4096) = 81

I also wonder if this might be a bug in the Linux Centos 4 operating system? I tried the same test on Centos 5 and it fails too in the same way. For my actual program, the stdin being supplied is a tar file that is 20,408,320 bytes long, when I read it on Centos 4 or 5, I only get the last 20,244,480 bytes. The number of bytes lost in hex is 0x28000, which makes me think I lost one buffer's full allotment of bytes, it being a small multiple of an even power of 2.

Please suggest what is going wrong and how I might resolve this.

Thanks.

-William


I have now whittled this down to a minimal test case:

The Makefile:

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

The test.c source file:

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

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

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

  if (feof(fPtr) == 0 && fgets(buf2, bufSize, fPtr) != NULL) {
    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");
      }
    }
  }
}

Here shows it running first the failing way and then the successful way:

> echo "The quick brown fox jumped" | ./test y
???? popen() of ssh consumed the beginning of stdin ????

> echo "The quick brown fox jumped" | ./test n
!!!!!!!   Without ssh popen() did not consume stdin   !!!!!!!
show/hide this revision's text 10 Call out new info at bottom; [made Community Wiki]

Calling fgets() on pipe file descriptor 4 of ssh is flushing the beginning of stdin (FD 0)of the calling process

See below for revised minimal test case, the first part is my original posting.

I have now whittled this down to a minimal test case:

The Makefile:

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

The test.c source file:

#include <stdio.h>main(int argc, char *argv[])  const unsigned int bufSize = 128;  char buf1[bufSize];  char buf2[bufSize];  int ssh = argv[1][0] == 'y';  const char *cmd = ssh ? "ssh " BUILD_MACHINE " \"ls\"" : "ls";  FILE *fPtr = popen(cmd, "r");  if (feof(fPtr) == 0 && fgets(buf2, bufSize, fPtr) != NULL) {    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");

Here shows it running first the failing way and then the successful way:

> echo "The quick brown fox jumped" | ./test y???? popen() of ssh consumed the beginning of stdin ????> echo "The quick brown fox jumped" | ./test n!!!!!!!   Without ssh popen() did not consume stdin   !!!!!!!
        
show/hide this revision's text 9 added 156 characters in body; added 20 characters in body
show/hide this revision's text 8 Note bytes read variation
show/hide this revision's text 7 edited tags
show/hide this revision's text 6 Clarify example.
show/hide this revision's text 5 added 80 characters in body
show/hide this revision's text 4 Simplify testcase
show/hide this revision's text 3 added 301 characters in body; edited body
show/hide this revision's text 2 edited title
show/hide this revision's text 1