30

Linux システムの C 言語で、シンプルで馬鹿げた X ターミナル エミュレータを作成したいと考えています。

最初は、シェルを開いてその出力を表示する必要があると思っていました。xterm と rxvt のコードを調べたところ、もう少し複雑に見えます。

まず、openpty で疑似端末を開く必要があります。そこで、man ページを見て、openpty がマスターとスレーブの 2 つのファイル記述子を埋めていることを確認します。xterm と rxvt のコードはどちらも、これらの特殊ファイルがシステムに依存しているため、厄介です。

私はtermiosのことを理解しています:それは端末のエスケープコードに関する情報の集まりです。私が本当に得られないのは、マスター/スレーブファイル記述子で何をすべきかということです。

ターミナルを開いてログインし、シェルで「ls」を実行するサンプルプログラムは素晴らしいでしょう。

(英語は私の母国語ではありません。私の最終的な間違いを許してください)

編集:これが私が思いついたサンプルコードです:

#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <pty.h>
#include <utmp.h>
#include <ctype.h>

void
safe_print (char* s)
{
    while(*s) { 
        if(*s == '\n')
            putchar("\n");
        else if(iscntrl(*s))
            printf("\\e(%d)", *s);
        else
            putchar(*s);
        s++;
    }
}


int
main (int argc, char** argv)
{
    char buf[BUFSIZ] = {0};
    int master;
    int ret = forkpty(&master, NULL, NULL, NULL);

    if(ret == -1)
        puts("no fork"), exit(0);

    if(!ret) { 
        execl("/bin/sh", "sh", NULL);
        exit(0);
    }

    sleep(1); /* let the shell run */


    if(argc >= 2) {
        write(master, argv[1], strlen(argv[1]));
        write(master, "\n", 1);
    } else {
        write(master, "date\n", sizeof "date\n");
    }


    while(1) {
        switch(ret = read(master, buf, BUFSIZ)) {
        case -1:
            puts("error!"); 
            exit(1);
            break;
        case 0:
            puts("nothing.."), sleep(1);
            break;
        default:
            buf[ret] = '\0';
            safe_print(buf);

        }
    }

    close(master);

    return 0;
}    
4

2 に答える 2

26

質問のマスター/スレーブ部分に関しては、pty(4)のマニュアルページ (私のシステムの openpty(3) のマニュアルページから参照されています) から:

擬似端末は、マスター デバイスとスレーブ デバイスのペアのキャラクタ デバイスです。スレーブデバイスは、tty(4) で説明されているものと同じインターフェースをプロセスに提供します。ただし、tty(4) で説明されているインタフェースを提供する他のすべてのデバイスは、背後にある種のハードウェアデバイスを持っていますが、スレーブデバイスには、代わりに、擬似端末の半分のマスターを介してそれを操作する別のプロセスがあります。 つまり、マスターデバイスに書き込まれたものはすべてスレーブデバイスに入力として与えられ、スレーブデバイスに書き込まれたものはすべてマスターデバイスに入力として提示されます。

マニュアルページはあなたの友達です。

于 2009-01-25T00:56:22.967 に答える
6

このチュートリアルにある例を試してみましたが、私にとっては非常にうまく機能し、問題の興味深い出発点だと思います。

編集: チュートリアルでは、疑似端末機能について簡単に説明しています。説明は段階的に行われ、その後に例が続きます。

次の例は、新しい疑似端末を作成し、プロセスを 2 つの部分にフォークする方法を示しています。1 つは疑似端末のマスター側で書き込み、もう 1 つは疑似端末のスレーブ側から読み取ります。

#define _XOPEN_SOURCE 600 
#include <stdlib.h> 
#include <fcntl.h> 
#include <errno.h> 
#include <unistd.h> 
#include <stdio.h> 
#define __USE_BSD 
#include <termios.h> 


int main(void) 
{ 
int fdm, fds, rc; 
char input[150]; 

fdm = posix_openpt(O_RDWR); 
if (fdm < 0) 
{ 
fprintf(stderr, "Error %d on posix_openpt()\n", errno); 
return 1; 
} 

rc = grantpt(fdm); 
if (rc != 0) 
{ 
fprintf(stderr, "Error %d on grantpt()\n", errno); 
return 1; 
} 

rc = unlockpt(fdm); 
if (rc != 0) 
{ 
fprintf(stderr, "Error %d on unlockpt()\n", errno); 
return 1; 
} 

// Open the slave PTY
fds = open(ptsname(fdm), O_RDWR); 
printf("Virtual interface configured\n");
printf("The master side is named : %s\n", ptsname(fdm));

// Creation of a child process
if (fork()) 
{ 
  // Father
 
  // Close the slave side of the PTY 
  close(fds); 
  while (1) 
  { 
    // Operator's entry (standard input = terminal) 
    write(1, "Input : ", sizeof("Input : ")); 
    rc = read(0, input, sizeof(input)); 
    if (rc > 0) 
    {
      // Send the input to the child process through the PTY 
      write(fdm, input, rc); 

      // Get the child's answer through the PTY 
      rc = read(fdm, input, sizeof(input) - 1); 
      if (rc > 0) 
      { 
        // Make the answer NUL terminated to display it as a string
        input[rc] = '\0'; 

        fprintf(stderr, "%s", input); 
      } 
      else 
      { 
        break; 
      } 
    } 
    else 
    { 
      break; 
    } 
  } // End while 
} 
else 
{ 
struct termios slave_orig_term_settings; // Saved terminal settings 
struct termios new_term_settings; // Current terminal settings 

  // Child

  // Close the master side of the PTY 
  close(fdm); 

  // Save the default parameters of the slave side of the PTY 
  rc = tcgetattr(fds, &slave_orig_term_settings); 

  // Set raw mode on the slave side of the PTY
  new_term_settings = slave_orig_term_settings; 
  cfmakeraw (&new_term_settings); 
  tcsetattr (fds, TCSANOW, &new_term_settings); 

  // The slave side of the PTY becomes the standard input and outputs of the child process 
  close(0); // Close standard input (current terminal) 
  close(1); // Close standard output (current terminal) 
  close(2); // Close standard error (current terminal) 

  dup(fds); // PTY becomes standard input (0) 
  dup(fds); // PTY becomes standard output (1) 
  dup(fds); // PTY becomes standard error (2) 

  while (1) 
  { 
    rc = read(fds, input, sizeof(input) - 1); 

    if (rc > 0) 
    { 
      // Replace the terminating \n by a NUL to display it as a string
      input[rc - 1] = '\0'; 

      printf("Child received : '%s'\n", input); 
    } 
    else 
    { 
      break; 
    } 
  } // End while 
} 

return 0; 
} // main
于 2016-06-14T12:42:43.117 に答える