Microsoft MVP성태의 닷넷 이야기
.NET Framework: 602. Process.Start의 cmd.exe에서 stdin만 redirect 하는 방법 [링크 복사], [링크+제목 복사]
조회: 19270
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 1개 있습니다.)

Process.Start의 cmd.exe에서 stdin만 redirect 하는 방법

다음의 질문이 있군요.

System.Diagnostics.Process 를 이용해서 CMD(콘솔창)을 외부에서 컨트롤 하려고 합니다
; https://social.msdn.microsoft.com/Forums/ko-KR/aff886b6-7d34-4890-bc86-474d3f6d832b/systemdiagnosticsprocess-cmd-?forum=visualcsharpko

실제로 아래의 코드를 Windows Forms 응용 프로그램에서 실행해 보면,

private void Form1_Load(object sender, EventArgs e)
{
    Process pr = new Process();
    ProcessStartInfo pw = new ProcessStartInfo();

    pw.FileName = @"cmd.exe";
    pw.UseShellExecute = false;
    pw.RedirectStandardInput = true;
    pw.RedirectStandardOutput = true;

    pr.StartInfo = pw;

    pr.Start();
    pr.StandardInput.WriteLine(@"dir");
    pr.StandardInput.Close();

    string output = pr.StandardOutput.ReadToEnd();

    MessageBox.Show(output);

    pr.WaitForExit();
    pr.Close();
}

cmd.exe 실행 창이 뜨자마자 pr.StandardInput.Close();의 호출로 닫히면서 output 변수 값에는 cmd.exe 창에 출력되었을 내용들이 담겨 있습니다.

그런데, StandardInput만 redirect하고 StandardOutput을 cmd.exe 창으로 나타내고 싶다면 어떻게 해야 할까요? 즉, Windows Forms 응용 프로그램에서 cmd.exe 창에 실행되는 명령을 전달하고 출력을 cmd.exe 창 내에서 보고 싶은 것입니다.

이를 위해 다음과 같이 단순히 StandardOutput 쪽을 주석 처리해봤습니다.

private void Form1_Load(object sender, EventArgs e)
{
    Process pr = new Process();
    ProcessStartInfo pw = new ProcessStartInfo();

    pw.FileName = @"cmd.exe";
    pw.UseShellExecute = false;
    pw.RedirectStandardInput = true;
    // pw.RedirectStandardOutput = true;

    pr.StartInfo = pw;

    pr.Start();
    pr.StandardInput.WriteLine(@"dir");
    
    // pr.StandardInput.Close();
    // string output = pr.StandardOutput.ReadToEnd();
    // MessageBox.Show(output);

    pr.WaitForExit();
    pr.Close();
}

그랬더니, Input은 분명 redirect되었겠지만 StandardOutput을 변경하지 않았음에도 불구하고 화면에는 아무런 내용도 출력되지 않았습니다. 검색해 보면 다음의 문제가 바로 이에 해당합니다.

How can I start a process with stdin redirected, but not stdout?
; http://stackoverflow.com/questions/15547168/how-can-i-start-a-process-with-stdin-redirected-but-not-stdout

위의 질문을 했던 사람은 STARTF_USESTDHANDLES 옵션을 직접 지정해 주면 될 거라 생각하고 있는데,

STARTUPINFO structure- STARTF_USESTDHANDLES
; https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/ns-processthreadsapi-startupinfoa

과연 그럴까요? ^^

.NET Reflector를 이용해 Process.Start를 보면,

public bool Start()
{
    this.Close();
    ProcessStartInfo startInfo = this.StartInfo;
    if (startInfo.FileName.Length == 0)
    {
        throw new InvalidOperationException(SR.GetString("FileNameMissing"));
    }
    if (startInfo.UseShellExecute)
    {
        return this.StartWithShellExecuteEx(startInfo);
    }
    return this.StartWithCreateProcess(startInfo);
}

우리의 상황에서는 UseShellExecute == false이기 때문에 StartWithCreateProcess를 호출하는 것을 볼 수 있습니다.

private bool StartWithCreateProcess(ProcessStartInfo startInfo)
{
    // ...[생략]...
    lock (obj2)
    {
        try
        {
            bool flag;
            if ((startInfo.RedirectStandardInput || startInfo.RedirectStandardOutput) || startInfo.RedirectStandardError)
            {
                if (startInfo.RedirectStandardInput)
                {
                    this.CreatePipe(out parentHandle, out lpStartupInfo.hStdInput, true);
                }
                else
                {
                    lpStartupInfo.hStdInput = new SafeFileHandle(Microsoft.Win32.NativeMethods.GetStdHandle(-10), false);
                }
                if (startInfo.RedirectStandardOutput)
                {
                    this.CreatePipe(out handle4, out lpStartupInfo.hStdOutput, false);
                }
                else
                {
                    lpStartupInfo.hStdOutput = new SafeFileHandle(Microsoft.Win32.NativeMethods.GetStdHandle(-11), false);
                }
                if (startInfo.RedirectStandardError)
                {
                    this.CreatePipe(out handle5, out lpStartupInfo.hStdError, false);
                }
                else
                {
                    lpStartupInfo.hStdError = new SafeFileHandle(Microsoft.Win32.NativeMethods.GetStdHandle(-12), false);
                }
                lpStartupInfo.dwFlags = 0x100;
            }

            // ...[생략]...
        }
        finally
        {
            if (handle6.IsAllocated)
            {
                handle6.Free();
            }
            lpStartupInfo.Dispose();
        }
    }

    // ...[생략]...

    return flag2;
}

StartWithCreateProcess를 보면, RedirectStandardInput, RedirectStandardOutput, RedirectStandardError 중에서 어느 하나라도 redirect하라고 되어 있으면 새롭게 lpStartupInfo의 hStdInput, hStdOutput, hStdError 핸들을 모두 생성해 버립니다. 단지, 명시적으로 redirect 플래그가 true인 경우에는 CreatePipe로 Stream을 생성하고, false면 GetStdHandle로 받아온 -10, -11, -12를 대응시켜 생성합니다.

각각의 상수의 의미는 다음과 같습니다.

GetStdHandle function
; https://learn.microsoft.com/en-us/windows/console/getstdhandle

STD_INPUT_HANDLE == (DWORD)-10
STD_OUTPUT_HANDLE == (DWORD)-11
STD_ERROR_HANDLE == (DWORD)-12

소스 코드를 보고 나니, 왠지 RedirectStandardOutput == false인 경우라면 STD_OUTPUT_HANDLE이 지정되는 것이므로 더더욱 cmd.exe의 실행 창에 나타나야 하는 것이 맞지 않나 생각됩니다.

그런데, 한번 더 생각해 봐야 합니다. Process.Start 코드를 실행하는 프로세스는 Windows Forms 응용 프로그램이기 때문에 그 프로세스 내에서 GetStdHandle을 호출했다면 아직 뜨지 않은 cmd.exe가 아닌 Windows Forms 응용 프로그램의 표준 출력에 대한 핸들 값을 구해간 것입니다. 즉, cmd.exe의 표준 출력은 있지도 않은 Windows Forms의 STD_OUTPUT_HANDLE로 전송되었기 때문에 cmd.exe 창에는 아무것도 뜨지 않은 것입니다.

이렇게 해서 출력이 안되는 이유는 알았지만, 그런데 어떻게 자식 프로세스의 표준 출력을 부모 프로세스의 표준 출력으로 우회시키는 것이 가능한 걸까요? 원래 EXE 프로세스 간에는 격리가 되었으므로 Windows Forms 응용 프로그램의 HANDLE 값을 별도의 cmd.exe 프로세스에서 사용하는 것은 불가능합니다. 이쯤에서 StartWithCreateProcess 메서드의 lpStartupInfo.dwFlags = 0x100; 코드를 주목해 볼 필요가 있습니다.

dwFlags에 지정된 0x100은 STARTF_USESTDHANDLES 값입니다. 그렇습니다. "How can I start a process with stdin redirected, but not stdout?" 글의 질문자는 저 값을 일부러 지정하고 싶어 했지만 실제로는 RedirectStandardInput, RedirectStandardOutput, RedirectStandardError 중의 하나가 true 값이 되기만 하면 자동으로 지정되므로 별도 설정이 필요치 않은 것입니다.

그런데 이 플래그의 의미가 뭘까요?

STARTF_USESTDHANDLES - 0x00000100

The hStdInput, hStdOutput, and hStdError members contain additional information.
If this flag is specified when calling one of the process creation functions, the handles must be inheritable and the function's bInheritHandles parameter must be set to TRUE. For more information, see Handle Inheritance.


즉, STARTF_USESTDHANDLES 플래그를 지정하면 CreateProcess Win32 API 호출 시 bInheritHandles를 TRUE로 지정해서 실행하기 때문에 자식 프로세스에서 부모 프로세스의 표준 출력 핸들 값을 접근할 수 있었던 것입니다.




문제는 파악이 되었는데, 그럼 이 상황을 어떻게 해야 할까요?

간단합니다. Windows Forms 응용 프로그램에 표준 출력을 만들어주면 됩니다.

using System;
using System.Diagnostics;
using System.Windows.Forms;

using System.Runtime.InteropServices;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        [DllImport("kernel32.dll", SetLastError = true)]
        [return: MarshalAs(UnmanagedType.Bool)]
        static extern bool AllocConsole();

        public Form1()
        {
            InitializeComponent();
        }

        Process pr = new Process();

        private void Form1_Load(object sender, EventArgs e)
        {
            AllocConsole();
            ProcessStartInfo pw = new ProcessStartInfo();

            pw.FileName = @"cmd.exe";

            pw.UseShellExecute = false;
            pw.RedirectStandardInput = true;

            pr.StartInfo = pw;

            pr.Start();
            pr.StandardInput.WriteLine(@"dir");
        }

        private void button1_Click(object sender, EventArgs e)
        {
            pr.StandardInput.WriteLine(this.textBox1.Text);
        }
    }
}

위와 같이 AllocConsole로 콘솔 기능을 만들어 주면 cmd.exe는 그 콘솔 창을 빌려 기능을 수행하게 됩니다. 주의할 것은 위의 프로그램을 Visual Studio 내에서 F5 디버깅으로 실행하면 안 된다는 점입니다. Visual Studio는 표준 출력을 자신의 디버깅 창으로 대체하기 때문에 cmd.exe의 출력이 "Output" 창에 나오게 됩니다.

따라서 Ctrl + F5 (Start Without Debugging)으로 실행하면 다음과 같이 Windows Forms에 입력한 명령을 cmd.exe에 전달하고 그 출력을 콘솔로 출력할 수 있습니다.

process_start_cmd_pipe_1.png

(첨부 파일은 이 글의 예제 코드를 포함합니다.)





[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 3/22/2023]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2016-09-20 01시56분
[송기태] 와..ㅠㅠ 제질문에 선생님이 직접 달아주시니 정말 너무 감사합니다ㅠㅠ
[guest]

1  2  3  4  5  6  7  8  9  [10]  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13382정성태6/25/20233478.NET Framework: 2130. C# - Win32 API를 이용한 윈도우 계정 정보 (예: 마지막 로그온 시간)파일 다운로드1
13381정성태6/25/20233868오류 유형: 869. Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
13380정성태6/24/20233301스크립트: 52. 파이썬 3.x에서의 동적 함수 추가
13379정성태6/23/20233309스크립트: 51. 파이썬 2.x에서의 동적 함수 추가
13378정성태6/22/20233207오류 유형: 868. docker - build 시 "CANCELED ..." 뜨는 문제
13377정성태6/22/20237079오류 유형: 867. 파이썬 mysqlclient 2.2.x 설치 시 "Specify MYSQLCLIENT_CFLAGS and MYSQLCLIENT_LDFLAGS env vars manually" 오류
13376정성태6/21/20233428.NET Framework: 2129. C# - Polly를 이용한 클라이언트 측의 요청 재시도파일 다운로드1
13375정성태6/20/20233108스크립트: 50. Transformers (신경망 언어모델 라이브러리) 강좌 - 2장 코드 실행 결과
13374정성태6/20/20233215오류 유형: 866. 파이썬 - <class 'AttributeError'> module 'flask.json' has no attribute 'JSONEncoder'
13373정성태6/19/20234533오류 유형: 865. 파이썬 - pymssql 설치 관련 오류 정리
13372정성태6/15/20233210개발 환경 구성: 682. SQL Server TLS 통신을 위해 사용되는 키 길이 확인 방법
13371정성태6/15/20233244개발 환경 구성: 681. openssl - 인증서 버전(V1 / V3)
13370정성태6/14/20233414개발 환경 구성: 680. C# - Ubuntu + Microsoft.Data.SqlClient + SQL Server 2008 R2 연결 방법 - TLS 1.2 지원
13369정성태6/13/20233237개발 환경 구성: 679. PyCharm(을 비롯해 JetBrains에 속한 여타) IDE에서 내부 Window들의 탭이 없어진 경우
13368정성태6/13/20233369개발 환경 구성: 678. openssl로 생성한 인증서를 SQL Server의 암호화 인증서로 설정하는 방법
13367정성태6/10/20233503오류 유형: 864. openssl로 만든 pfx 인증서를 Windows Server 2016 이하에서 등록 시 "The password you entered is incorrect" 오류 발생
13366정성태6/10/20233282.NET Framework: 2128. C# - 윈도우 시스템에서 지원하는 암호화 목록(Cipher Suites) 나열파일 다운로드1
13365정성태6/8/20233021오류 유형: 863. MODIFY FILE encountered operating system error 112(failed to retrieve text for this error. Reason: 15105)
13364정성태6/8/20233814.NET Framework: 2127. C# - Ubuntu + Microsoft.Data.SqlClient + SQL Server 2008 R2 연결 방법 [1]
13363정성태6/7/20233377스크립트: 49. 파이썬 - "Transformers (신경망 언어모델 라이브러리) 강좌" - 1장 2절 코드 실행 결과
13362정성태6/1/20233321.NET Framework: 2126. C# - 서버 측의 요청 제어 (Microsoft.AspNetCore.RateLimiting)파일 다운로드1
13361정성태5/31/20233746오류 유형: 862. Facebook - ASP.NET/WebClient 사용 시 graph.facebook.com/me 호출에 대해 403 Forbidden 오류
13360정성태5/31/20233134오류 유형: 861. WSL/docker - failed to start shim: start failed: io.containerd.runc.v2: create new shim socket
13359정성태5/19/20233465오류 유형: 860. Docker Desktop - k8s 초기화 무한 반복한다면?
13358정성태5/17/20233795.NET Framework: 2125. C# - Semantic Kernel의 Semantic Memory 사용 예제 [1]파일 다운로드1
13357정성태5/16/20233575.NET Framework: 2124. C# - Semantic Kernel의 Planner 사용 예제파일 다운로드1
1  2  3  4  5  6  7  8  9  [10]  11  12  13  14  15  ...