dup2 를 이용하여 키보드 입력을 프로그램에서 대신하는 코드인데요..

vlzkcbcb의 이미지

프로그램에서 키보드입력을 하려합니다.

여기서는 간단하게 echo hello 라고 입력하여 화면에 hello 라는 글자만 나오면 일단 목적은 달성이 되는데요.

컴파일때는 전혀 문제 없는데

실행하면 그냥 아무글자도 안뜨고 끝나네요 ;;

echo hello 라는 글자를 echo hello > /home/test/aaa.txt

라고 바꾸어서 실행해도..aaa.txt 라는 파일은 생기질 않습니다.

뭐가 문제일까요?

#include <fcntl.h>
#include <sys/io.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <string.h>
#include <sys/wait.h>
 
#define BUFSIZE 1024
 
int ori_stdin;
 
void stdin_to_program();
void stdin_restore();
 
int main(int argc, char **argv)
{    
    stdin_to_program();
 
    return 0;
}
 
void stdin_to_program( )
{
 
    int fd[2];
    pid_t pid;
 
    if( pipe(fd) == -1 )
        exit(1);
 
    pid = fork();
 
    // 부모는 STDIN 을 리드파이프로 바꿔주기만 함.
    if( pid>0 )
    {
        close( fd[1] );
        ori_stdin = dup( 0 );
        dup2( fd[0], 0 );
        close( fd[0] );
    }
 
    // 자식은 입력파이프에 내용을 입력하여 STDIN 에 전달 후 마치면 STDIN 복구..
    else if( pid==0 )
    {
        int n=0;
        int len;
        char buf[BUFSIZE];
        close( fd[0] );
 
        /////////////////////////////////////////////////////////////////
        //
        // 여기서부터는 프로그램이 키보드입력을 할 수 있다.
 
        n += sprintf(buf + n, "%s","echo hello");
        len = strlen(buf);
        printf("buf = [%s], len = [%d]\n",buf,len);    // 디버그용...
        write( fd[1], buf, len );
 
        // 여기까지 프로그램이 입력을 마친다.
        //
        /////////////////////////////////////////////////////////////////
 
        close( fd[1] );
        stdin_restore();
        exit(0);
    }
}
 
void stdin_restore()
{
    fflush( stdin );    
 
    close( 0 );
 
    dup2( ori_stdin, 0 );
}

위에서 디버그용으로 넣은

printf("buf = [%s], len = [%d]\n",buf,len);

의 결과는

buf = [echo hello], len = [10]

입니다..

도움 부탁드립니다.

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.