X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=vsyssh%2Fvsyssh.c;h=bfb68d7a83eeaf408a426c3fa932f3ab98e1ce59;hb=08f81807b0c4b0f53c33818e0727e97ccfc943af;hp=889e41a11882c810997951443db250b9d456fcd4;hpb=7e6d4cb025ff03b9fee5337b0d87f6849bf1f21c;p=vsys.git diff --git a/vsyssh/vsyssh.c b/vsyssh/vsyssh.c index 889e41a..bfb68d7 100644 --- a/vsyssh/vsyssh.c +++ b/vsyssh/vsyssh.c @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include @@ -22,6 +23,10 @@ #include #include +void pipe_handler (int sig) { + printf("SIGPIPE"); +} + int main(int argc, char **argv, char **envp) { if (argc<2) { @@ -33,6 +38,7 @@ int main(int argc, char **argv, char **envp) char *inf,*outf; struct timeval tv; + signal(SIGPIPE,pipe_handler); inf=(char *)malloc(strlen(argv[1])+3); outf=(char *)malloc(strlen(argv[1])+4); strcpy(inf,argv[1]); @@ -40,38 +46,50 @@ int main(int argc, char **argv, char **envp) strcat(inf,".in"); strcat(outf,".out"); - vfd1 = open(inf,O_WRONLY|O_NONBLOCK); vfd0 = open(outf,O_RDONLY|O_NONBLOCK); + vfd1 = open(inf,O_WRONLY); if (vfd0==-1 || vfd1 == -1) { - printf("Error opening vsys entry %s\n", argv[1]); + printf("Error opening vsys entry %s (%s)\n", argv[1],strerror(errno)); + exit(1); + } + + if (fcntl(vfd0, F_SETFL, O_RDONLY) == -1) { + printf("Error making pipe blocking: %m\n"); exit(1); } if (argc<3) { fd_set set; - FD_ZERO(&set); - FD_SET(0, &set); - FD_SET(vfd0, &set); + char do_input = 1, do_output = 1; - while (1) { + while (1) + { int ret; printf("vsys>");fflush(stdout); - FD_SET(0, &set); - FD_SET(vfd0, &set); + FD_ZERO(&set); + if (do_input) + FD_SET(0, &set); + if (do_output) + FD_SET(vfd0, &set); ret = select(vfd0+1, &set, NULL, NULL, NULL); if (FD_ISSET(0,&set)) { char lineread[2048]; int ret; ret=read(0,lineread,2048); + if (ret == 0) + do_input = 0; + lineread[ret]='\0'; + printf ("writing %s\n",lineread); write(vfd1,lineread,ret); - FD_CLR(0,&set); - } if (FD_ISSET(vfd0,&set)) { + } + if (FD_ISSET(vfd0,&set)) { char lineread[2048]; int ret; - ret=read(vfd0,lineread,2048); + ret = read(vfd0,lineread,2048); + if (ret == 0) + break; write(1,lineread,ret); - FD_CLR(vfd0,&set); } } @@ -82,10 +100,10 @@ int main(int argc, char **argv, char **envp) dup2(vfd0,0); dup2(vfd1,1); - execve(argv[3],argv+3,envp); + execve(argv[2],argv+2,envp); } } - return; + return -1; }