File: runpty.c

package info (click to toggle)
nmh 1.8-4
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 7,860 kB
  • sloc: ansic: 50,445; sh: 22,697; makefile: 1,138; lex: 740; perl: 509; yacc: 265
file content (195 lines) | stat: -rw-r--r-- 4,359 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/* runpty.c - Run a process under a pseudo-tty
 *
 * This code is Copyright (c) 2017, by the authors of nmh.  See the
 * COPYRIGHT file in the root directory of the nmh distribution for
 * complete copyright information.
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <fcntl.h>
#include <termios.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/select.h>
#include <time.h>
#include <errno.h>

#define COMMAND_TIMEOUT 30

static void run_command(char *argv[], int master_in, int master_out);
static int open_master_pty(const char *desc);
static void die(const char *fmt, ...)
#if __GNUC__ > 2
    __attribute__((__noreturn__))
#endif
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
    __attribute__((format(printf, 1, 2)))
#endif
    ;

int
main(int argc, char *argv[])
{
    int master_in, master_out, cc, status;
    time_t starttime, now;
    pid_t child;
    unsigned char readbuf[1024];
    FILE *output;

    if (argc < 3) {
        die("%s: too few arguments\n"
            "usage: %s output-filename command [arguments...]\n",
            *argv, *argv);
    }

    master_in = open_master_pty("input");
    master_out = open_master_pty("output");

    if ((child = fork()) == -1) {
	die("fork() failed: %s\n", strerror(errno));
    }
    if (child == 0) {
        run_command(argv + 2, master_in, master_out); /* Does not return. */
    }

    if (!(output = fopen(argv[1], "w"))) {
	die("Unable to open \"%s\" for output: %s\n", argv[1],
            strerror(errno));
    }

    starttime = time(NULL);

    for (;;) {
	fd_set readfds;
	struct timeval tv;

	FD_ZERO(&readfds);

	FD_SET(master_out, &readfds);

	/*
	 * After we get our first bit of data, close the master pty
	 * connected to standard input on our slave; that will generate
	 * an EOF.
	 */

	tv.tv_sec = starttime + COMMAND_TIMEOUT - time(NULL);
	if (tv.tv_sec < 0)
	    tv.tv_sec = 0;
	tv.tv_usec = 0;

	cc = select(master_out + 1, &readfds, NULL, NULL, &tv);

	if (cc < 0) {
	    die("select() failed: %s\n", strerror(errno));
	}

	if (cc > 0 && FD_ISSET(master_out, &readfds)) {
	    cc = read(master_out, readbuf, sizeof(readbuf));

	    if (cc <= 0)
		break;

	    fwrite(readbuf, 1, cc, output);

	    if (master_in != -1) {
		close(master_in);
		master_in = -1;
	    }
	}

        now = time(NULL);
	if (now >= starttime + COMMAND_TIMEOUT) {
	    fprintf(stderr, "Command execution timed out: %ld to %ld: %d\n",
                starttime, now, cc);
	    break;
	}
    }

    if (master_in != -1)
	close(master_in);
    close(master_out);
    fclose(output);

    waitpid(child, &status, 0);

    exit(0);
}

static void
run_command(char *argv[], int master_in, int master_out)
{
    const char *slavename;
    int slave;

    /* Open the two slave pseudo-ttys and close the masters after we are
     * done with them. */

    if (!(slavename = ptsname(master_in))) {
        die("Unable to determine name of slave pty: %s\n",
            strerror(errno));
    }

    if ((slave = open(slavename, O_RDWR)) == -1) {
        die("Unable to open slave pty \"%s\": %s\n", slavename,
            strerror(errno));
    }

    dup2(slave, STDIN_FILENO);
    close(slave);
    close(master_in);

    if (!(slavename = ptsname(master_out))) {
        die("Unable to determine name of slave pty: %s\n",
            strerror(errno));
    }

    if ((slave = open(slavename, O_RDWR | O_NOCTTY)) < 0) {
        die("Unable to open slave pty \"%s\": %s\n", slavename,
            strerror(errno));
    }

    dup2(slave, STDOUT_FILENO);
    dup2(slave, STDERR_FILENO);
    close(slave);
    close(master_out);

    execvp(*argv, argv);

    die("execvp(%s) failed: %s\n", *argv, strerror(errno));
}

static int
open_master_pty(const char *desc)
{
    int fd;

    if ((fd = posix_openpt(O_RDWR | O_NOCTTY)) == -1) {
	die("Unable to open master %s pseudo-tty: %s\n", desc, strerror(errno));
    }
    if (grantpt(fd) == -1) {
	die("Unable to grant permissions to master %s pty: %s\n", desc,
            strerror(errno));
    }
    if (unlockpt(fd) == -1) {
	die("Unable to unlock master %s pty: %s\n", desc, strerror(errno));
    }

    return fd;
}

static void
die(const char *fmt, ...)
{
    va_list args;

    va_start(args, fmt);
    vfprintf(stderr, fmt, args);
    va_end(args);

    exit(1);
}