[완료]pipe 관련 질문입니다.

longfin의 이미지

머리 싸매고 혼자 고민해봐도 잘 모르겠어서 질문글 올립니다.

int main(void){
  int fd1[2];
  int fd2[2];
  pid_t pid[3];
  int stat[3];
  int i=0;
 
  pipe(fd1);
  //pipe(fd2);
 
 
  pid[0] = fork();
  if(pid[0] == 0){
    dup2(fd1[1],STDOUT_FILENO);
    close(fd1[0]);
    close(fd1[1]);
 
    execl("/bin/ls", "/bin/ls", NULL);
    perror("test:");
    exit(1);
  }
  pid[1] = fork();
  if(pid[1] == 0){ 
    char buf[16];
    dup2(fd1[0], STDIN_FILENO);
    dup2(fd1[1], STDOUT_FILENO);
    close(fd1[0]);
    close(fd1[1]);
 
    execl("/bin/grep", "/bin/grep", "Make", NULL); 
    perror("test:"); 
    exit(1);
  }
  pid[2] = fork();
 
  if(pid[2] == 0){
    char buf[16];
    dup2(fd1[0], STDIN_FILENO);
    close(fd1[1]);
    close(fd1[0]);
 
    execl("/usr/bin/wc", "/usr/bin/wc", "-l",  NULL); 
    perror("test:"); 
    exit(1);
  }
  for(i=0;i<3;i++){
    waitpid(pid[i], &stat[i], 0);
  }
}

ls | grep Make | wc -l을 시험해보는 코드인데 grep을 실행하는 child에서 blocking되었는지 멈춰버립니다.[pwd로 바꿔서 실행할땐 blocking되지 않는것으로 봐서 pipe의 buffer 문제가 아닐까 추측하곤 있습니다만.]

원래 이런식으로 pipe를 이어서 stdin/out을 리다이렉션하는게 아닌가요?;

rhheo의 이미지

타이밍상의 문제가 발생하지 않을까요?
예를 들어서...
첫번째 fork()후 자식1이 ls를 실행하기 전에
두번째 fork()후 자식2가 grep를 실행할 가능성이라던지요.

longfin의 이미지

ls가 실행되서 pipe에 write하기 전엔 block 되어있는 것 같습니다.;

3번째 wc를 안돌리고 ls | grep Make에서 grep의 출력을 리다이렉션 시키지 않은 상태에서 출력은 된채로 멈춰버리는 걸로 봐서요;

rhheo의 이미지

파이프를 두개로 했습니다.
헷갈렸네요 -.-;;
grep의 입력 -> grep 자신의 출력으로 루프도네요;;;

[geshifilter-code]&#10;#include &lt;unistd.h&gt;&#10;#include &lt;stdio.h&gt;&#10;&#10;int main(void){&#10;  int fd1[2];&#10;  int fd2[2];&#10;  pid_t pid[3];&#10;  int stat[3];&#10;  int i=0;&#10;&#10;  pipe(fd1);&#10;&#10;  pid[0] = fork();&#10;  if(pid[0] == 0){&#10;    dup2(fd1[1],STDOUT_FILENO);&#10;    close(fd1[0]);&#10;    // close(fd1[1]);&#10;    &#10;&#10;    execl(&quot;/bin/ls&quot;, &quot;/bin/ls&quot;, &quot;/home/xxxx&quot;, NULL);&#10;    perror(&quot;test:&quot;);&#10;    exit(1);&#10;  } &#10;&#10;  close(fd1[1]);&#10;  pipe(fd2);&#10;&#10;  pid[1] = fork();&#10;  if(pid[1] == 0){ &#10;    char buf[16];&#10;    dup2(fd1[0], STDIN_FILENO);&#10;    dup2(fd2[1], STDOUT_FILENO);&#10;    close(fd2[0]);&#10;&#10;    execl(&quot;/bin/grep&quot;, &quot;/bin/grep&quot;, &quot;Make&quot;, NULL); &#10;    perror(&quot;test:&quot;); &#10;    exit(1);&#10;  }&#10;&#10;  close(fd2[1]);&#10;&#10;  pid[2] = fork();&#10;  if(pid[2] == 0){&#10;    char buf[16];&#10;    dup2(fd2[0], STDIN_FILENO);&#10;&#10;    execl(&quot;/usr/bin/wc&quot;, &quot;/usr/bin/wc&quot;, &quot;-l&quot;,  NULL); &#10;    perror(&quot;test:&quot;); &#10;    exit(1);&#10;  }&#10;&#10;  for(i=0;i&lt;3;i++){&#10;    waitpid(pid[i], &amp;stat[i], 0);&#10;  }&#10;}&#10;
[/geshifilter-code]
longfin의 이미지

정말 감사합니다.:)

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.