Patch from Brad Smith to use posix_openpt() instead of
[sgt/putty] / unix / uxpty.c
CommitLineData
28d00fe4 1/*
2 * Pseudo-tty backend for pterm.
28d00fe4 3 */
4
74aca06d 5#define _GNU_SOURCE
054d8535 6
1709795f 7#include <stdio.h>
8#include <stdlib.h>
054d8535 9#include <string.h>
10#include <unistd.h>
a0e16eb1 11#include <signal.h>
2916fa14 12#include <assert.h>
054d8535 13#include <fcntl.h>
88e6b9ca 14#include <termios.h>
be4f86de 15#include <grp.h>
755a6d84 16#include <utmp.h>
17#include <pwd.h>
18#include <time.h>
a0e16eb1 19#include <sys/types.h>
d4e1d591 20#include <sys/stat.h>
a0e16eb1 21#include <sys/wait.h>
88e6b9ca 22#include <sys/ioctl.h>
0f33f9d1 23#include <errno.h>
1709795f 24
25#include "putty.h"
d6fa1947 26#include "tree234.h"
1709795f 27
0b1df797 28#ifndef OMIT_UTMP
bea25c48 29#include <utmpx.h>
30#endif
31
1709795f 32#ifndef FALSE
33#define FALSE 0
34#endif
35#ifndef TRUE
36#define TRUE 1
37#endif
38
bea25c48 39/* updwtmpx() needs the name of the wtmp file. Try to find it. */
40#ifndef WTMPX_FILE
41#ifdef _PATH_WTMPX
42#define WTMPX_FILE _PATH_WTMPX
43#else
44#define WTMPX_FILE "/var/log/wtmpx"
755a6d84 45#endif
755a6d84 46#endif
bea25c48 47
755a6d84 48#ifndef LASTLOG_FILE
49#ifdef _PATH_LASTLOG
50#define LASTLOG_FILE _PATH_LASTLOG
51#else
52#define LASTLOG_FILE "/var/log/lastlog"
53#endif
54#endif
55
f51dc031 56/*
57 * Set up a default for vaguely sane systems. The idea is that if
58 * OMIT_UTMP is not defined, then at least one of the symbols which
59 * enable particular forms of utmp processing should be, if only so
60 * that a link error can warn you that you should have defined
61 * OMIT_UTMP if you didn't want any. Currently HAVE_PUTUTLINE is
62 * the only such symbol.
63 */
64#ifndef OMIT_UTMP
65#if !defined HAVE_PUTUTLINE
66#define HAVE_PUTUTLINE
67#endif
68#endif
69
d6fa1947 70typedef struct pty_tag *Pty;
71
72/*
73 * The pty_signal_pipe, along with the SIGCHLD handler, must be
74 * process-global rather than session-specific.
75 */
76static int pty_signal_pipe[2] = { -1, -1 }; /* obviously bogus initial val */
77
78struct pty_tag {
4a693cfc 79 Conf *conf;
d6fa1947 80 int master_fd, slave_fd;
81 void *frontend;
82 char name[FILENAME_MAX];
115393d8 83 pid_t child_pid;
d6fa1947 84 int term_width, term_height;
85 int child_dead, finished;
86 int exit_code;
2916fa14 87 bufchain output_data;
d6fa1947 88};
89
90/*
91 * We store our pty backends in a tree sorted by master fd, so that
92 * when we get an uxsel notification we know which backend instance
93 * is the owner of the pty that caused it.
94 */
95static int pty_compare_by_fd(void *av, void *bv)
96{
97 Pty a = (Pty)av;
98 Pty b = (Pty)bv;
99
100 if (a->master_fd < b->master_fd)
101 return -1;
102 else if (a->master_fd > b->master_fd)
103 return +1;
104 return 0;
105}
106
107static int pty_find_by_fd(void *av, void *bv)
108{
109 int a = *(int *)av;
110 Pty b = (Pty)bv;
111
112 if (a < b->master_fd)
113 return -1;
114 else if (a > b->master_fd)
115 return +1;
116 return 0;
117}
054d8535 118
d6fa1947 119static tree234 *ptys_by_fd = NULL;
120
121/*
122 * We also have a tree sorted by child pid, so that when we wait()
123 * in response to the signal we know which backend instance is the
124 * owner of the process that caused the signal.
125 */
126static int pty_compare_by_pid(void *av, void *bv)
127{
128 Pty a = (Pty)av;
129 Pty b = (Pty)bv;
130
131 if (a->child_pid < b->child_pid)
132 return -1;
133 else if (a->child_pid > b->child_pid)
134 return +1;
135 return 0;
136}
137
138static int pty_find_by_pid(void *av, void *bv)
139{
115393d8 140 pid_t a = *(pid_t *)av;
d6fa1947 141 Pty b = (Pty)bv;
142
143 if (a < b->child_pid)
144 return -1;
145 else if (a > b->child_pid)
146 return +1;
147 return 0;
148}
149
150static tree234 *ptys_by_pid = NULL;
151
152/*
153 * If we are using pty_pre_init(), it will need to have already
154 * allocated a pty structure, which we must then return from
155 * pty_init() rather than allocating a new one. Here we store that
156 * structure between allocation and use.
157 *
158 * Note that although most of this module is entirely capable of
159 * handling multiple ptys in a single process, pty_pre_init() is
160 * fundamentally _dependent_ on there being at most one pty per
161 * process, so the normal static-data constraints don't apply.
162 *
163 * Likewise, since utmp is only used via pty_pre_init, it too must
164 * be single-instance, so we can declare utmp-related variables
165 * here.
166 */
167static Pty single_pty = NULL;
74aca06d 168
d4e1d591 169#ifndef OMIT_UTMP
dd5517cb 170static pid_t pty_utmp_helper_pid = -1;
171static int pty_utmp_helper_pipe = -1;
d6fa1947 172static int pty_stamped_utmp;
bea25c48 173static struct utmpx utmp_entry;
d6fa1947 174#endif
175
176/*
177 * pty_argv is a grievous hack to allow a proper argv to be passed
178 * through from the Unix command line. Again, it doesn't really
179 * make sense outside a one-pty-per-process setup.
180 */
181char **pty_argv;
d6fa1947 182
183static void pty_close(Pty pty);
2916fa14 184static void pty_try_write(Pty pty);
d4e1d591 185
d6fa1947 186#ifndef OMIT_UTMP
95c47834 187static void setup_utmp(char *ttyname, char *location)
755a6d84 188{
755a6d84 189#ifdef HAVE_LASTLOG
190 struct lastlog lastlog_entry;
191 FILE *lastlog;
192#endif
193 struct passwd *pw;
bea25c48 194 struct timeval tv;
755a6d84 195
196 pw = getpwuid(getuid());
197 memset(&utmp_entry, 0, sizeof(utmp_entry));
198 utmp_entry.ut_type = USER_PROCESS;
199 utmp_entry.ut_pid = getpid();
200 strncpy(utmp_entry.ut_line, ttyname+5, lenof(utmp_entry.ut_line));
201 strncpy(utmp_entry.ut_id, ttyname+8, lenof(utmp_entry.ut_id));
202 strncpy(utmp_entry.ut_user, pw->pw_name, lenof(utmp_entry.ut_user));
203 strncpy(utmp_entry.ut_host, location, lenof(utmp_entry.ut_host));
bea25c48 204 /*
205 * Apparently there are some architectures where (struct
206 * utmpx).ut_tv is not essentially struct timeval (e.g. Linux
207 * amd64). Hence the temporary.
208 */
209 gettimeofday(&tv, NULL);
210 utmp_entry.ut_tv.tv_sec = tv.tv_sec;
211 utmp_entry.ut_tv.tv_usec = tv.tv_usec;
755a6d84 212
bea25c48 213 setutxent();
214 pututxline(&utmp_entry);
215 endutxent();
216
217 updwtmpx(WTMPX_FILE, &utmp_entry);
755a6d84 218
219#ifdef HAVE_LASTLOG
220 memset(&lastlog_entry, 0, sizeof(lastlog_entry));
221 strncpy(lastlog_entry.ll_line, ttyname+5, lenof(lastlog_entry.ll_line));
222 strncpy(lastlog_entry.ll_host, location, lenof(lastlog_entry.ll_host));
223 time(&lastlog_entry.ll_time);
224 if ((lastlog = fopen(LASTLOG_FILE, "r+")) != NULL) {
225 fseek(lastlog, sizeof(lastlog_entry) * getuid(), SEEK_SET);
226 fwrite(&lastlog_entry, 1, sizeof(lastlog_entry), lastlog);
227 fclose(lastlog);
228 }
229#endif
230
f51dc031 231 pty_stamped_utmp = 1;
232
755a6d84 233}
234
235static void cleanup_utmp(void)
236{
bea25c48 237 struct timeval tv;
755a6d84 238
95c47834 239 if (!pty_stamped_utmp)
f51dc031 240 return;
241
755a6d84 242 utmp_entry.ut_type = DEAD_PROCESS;
243 memset(utmp_entry.ut_user, 0, lenof(utmp_entry.ut_user));
bea25c48 244 gettimeofday(&tv, NULL);
245 utmp_entry.ut_tv.tv_sec = tv.tv_sec;
246 utmp_entry.ut_tv.tv_usec = tv.tv_usec;
755a6d84 247
bea25c48 248 updwtmpx(WTMPX_FILE, &utmp_entry);
755a6d84 249
250 memset(utmp_entry.ut_line, 0, lenof(utmp_entry.ut_line));
bea25c48 251 utmp_entry.ut_tv.tv_sec = 0;
252 utmp_entry.ut_tv.tv_usec = 0;
755a6d84 253
bea25c48 254 setutxent();
255 pututxline(&utmp_entry);
256 endutxent();
755a6d84 257
f51dc031 258 pty_stamped_utmp = 0; /* ensure we never double-cleanup */
755a6d84 259}
d4e1d591 260#endif
755a6d84 261
a0e16eb1 262static void sigchld_handler(int signum)
263{
ecb25722 264 if (write(pty_signal_pipe[1], "x", 1) <= 0)
265 /* not much we can do about it */;
a0e16eb1 266}
267
d4e1d591 268#ifndef OMIT_UTMP
755a6d84 269static void fatal_sig_handler(int signum)
270{
0f33f9d1 271 putty_signal(signum, SIG_DFL);
755a6d84 272 cleanup_utmp();
273 setuid(getuid());
274 raise(signum);
275}
d4e1d591 276#endif
755a6d84 277
d6fa1947 278static int pty_open_slave(Pty pty)
270d2e8d 279{
89e97516 280 if (pty->slave_fd < 0) {
d6fa1947 281 pty->slave_fd = open(pty->name, O_RDWR);
db9b7dce 282 cloexec(pty->slave_fd);
89e97516 283 }
270d2e8d 284
d6fa1947 285 return pty->slave_fd;
270d2e8d 286}
287
d6fa1947 288static void pty_open_master(Pty pty)
1709795f 289{
be4f86de 290#ifdef BSD_PTYS
95c47834 291 const char chars1[] = "pqrstuvwxyz";
292 const char chars2[] = "0123456789abcdef";
293 const char *p1, *p2;
294 char master_name[20];
295 struct group *gp;
296
297 for (p1 = chars1; *p1; p1++)
298 for (p2 = chars2; *p2; p2++) {
299 sprintf(master_name, "/dev/pty%c%c", *p1, *p2);
d6fa1947 300 pty->master_fd = open(master_name, O_RDWR);
301 if (pty->master_fd >= 0) {
95c47834 302 if (geteuid() == 0 ||
270d2e8d 303 access(master_name, R_OK | W_OK) == 0) {
304 /*
305 * We must also check at this point that we are
306 * able to open the slave side of the pty. We
307 * wouldn't want to allocate the wrong master,
308 * get all the way down to forking, and _then_
309 * find we're unable to open the slave.
310 */
d6fa1947 311 strcpy(pty->name, master_name);
312 pty->name[5] = 't'; /* /dev/ptyXX -> /dev/ttyXX */
270d2e8d 313
db9b7dce 314 cloexec(pty->master_fd);
89e97516 315
d6fa1947 316 if (pty_open_slave(pty) >= 0 &&
317 access(pty->name, R_OK | W_OK) == 0)
270d2e8d 318 goto got_one;
d6fa1947 319 if (pty->slave_fd > 0)
320 close(pty->slave_fd);
321 pty->slave_fd = -1;
270d2e8d 322 }
d6fa1947 323 close(pty->master_fd);
be4f86de 324 }
95c47834 325 }
be4f86de 326
95c47834 327 /* If we get here, we couldn't get a tty at all. */
328 fprintf(stderr, "pterm: unable to open a pseudo-terminal device\n");
329 exit(1);
be4f86de 330
95c47834 331 got_one:
95c47834 332
333 /* We need to chown/chmod the /dev/ttyXX device. */
334 gp = getgrnam("tty");
d6fa1947 335 chown(pty->name, getuid(), gp ? gp->gr_gid : -1);
336 chmod(pty->name, 0600);
be4f86de 337#else
193c8d4a 338
339 const int flags = O_RDWR
340#ifdef O_NOCTTY
341 | O_NOCTTY
342#endif
343 ;
344
32f8db2c 345#ifdef HAVE_POSIX_OPENPT
346 pty->master_fd = posix_openpt(flags);
347
348 if (pty->master_fd < 0) {
349 perror("posix_openpt");
350 exit(1);
351 }
352#else
193c8d4a 353 pty->master_fd = open("/dev/ptmx", flags);
054d8535 354
d6fa1947 355 if (pty->master_fd < 0) {
054d8535 356 perror("/dev/ptmx: open");
357 exit(1);
358 }
32f8db2c 359#endif
054d8535 360
d6fa1947 361 if (grantpt(pty->master_fd) < 0) {
054d8535 362 perror("grantpt");
363 exit(1);
364 }
365
d6fa1947 366 if (unlockpt(pty->master_fd) < 0) {
054d8535 367 perror("unlockpt");
368 exit(1);
369 }
370
db9b7dce 371 cloexec(pty->master_fd);
89e97516 372
d6fa1947 373 pty->name[FILENAME_MAX-1] = '\0';
374 strncpy(pty->name, ptsname(pty->master_fd), FILENAME_MAX-1);
be4f86de 375#endif
d6fa1947 376
2916fa14 377 {
378 /*
379 * Set the pty master into non-blocking mode.
380 */
f98b8260 381 int fl;
382 fl = fcntl(pty->master_fd, F_GETFL);
383 if (fl != -1 && !(fl & O_NONBLOCK))
384 fcntl(pty->master_fd, F_SETFL, fl | O_NONBLOCK);
2916fa14 385 }
386
d6fa1947 387 if (!ptys_by_fd)
388 ptys_by_fd = newtree234(pty_compare_by_fd);
389 add234(ptys_by_fd, pty);
95c47834 390}
054d8535 391
95c47834 392/*
393 * Pre-initialisation. This is here to get around the fact that GTK
394 * doesn't like being run in setuid/setgid programs (probably
395 * sensibly). So before we initialise GTK - and therefore before we
396 * even process the command line - we check to see if we're running
397 * set[ug]id. If so, we open our pty master _now_, chown it as
398 * necessary, and drop privileges. We can always close it again
399 * later. If we're potentially going to be doing utmp as well, we
400 * also fork off a utmp helper process and communicate with it by
401 * means of a pipe; the utmp helper will keep privileges in order
402 * to clean up utmp when we exit (i.e. when its end of our pipe
403 * closes).
404 */
405void pty_pre_init(void)
406{
d6fa1947 407 Pty pty;
408
d4e1d591 409#ifndef OMIT_UTMP
95c47834 410 pid_t pid;
411 int pipefd[2];
d4e1d591 412#endif
95c47834 413
d6fa1947 414 pty = single_pty = snew(struct pty_tag);
2916fa14 415 bufchain_init(&pty->output_data);
d6fa1947 416
0f33f9d1 417 /* set the child signal handler straight away; it needs to be set
418 * before we ever fork. */
419 putty_signal(SIGCHLD, sigchld_handler);
d6fa1947 420 pty->master_fd = pty->slave_fd = -1;
421#ifndef OMIT_UTMP
422 pty_stamped_utmp = FALSE;
423#endif
95c47834 424
425 if (geteuid() != getuid() || getegid() != getgid()) {
d6fa1947 426 pty_open_master(pty);
39baeaa4 427
95c47834 428#ifndef OMIT_UTMP
dd5517cb 429 /*
430 * Fork off the utmp helper.
431 */
432 if (pipe(pipefd) < 0) {
433 perror("pterm: pipe");
434 exit(1);
435 }
436 cloexec(pipefd[0]);
437 cloexec(pipefd[1]);
438 pid = fork();
439 if (pid < 0) {
440 perror("pterm: fork");
441 exit(1);
442 } else if (pid == 0) {
443 char display[128], buffer[128];
444 int dlen, ret;
445
446 close(pipefd[1]);
447 /*
448 * Now sit here until we receive a display name from the
449 * other end of the pipe, and then stamp utmp. Unstamp utmp
450 * again, and exit, when the pipe closes.
451 */
95c47834 452
dd5517cb 453 dlen = 0;
454 while (1) {
95c47834 455
dd5517cb 456 ret = read(pipefd[0], buffer, lenof(buffer));
457 if (ret <= 0) {
458 cleanup_utmp();
459 _exit(0);
460 } else if (!pty_stamped_utmp) {
461 if (dlen < lenof(display))
462 memcpy(display+dlen, buffer,
463 min(ret, lenof(display)-dlen));
464 if (buffer[ret-1] == '\0') {
465 /*
466 * Now we have a display name. NUL-terminate
467 * it, and stamp utmp.
468 */
469 display[lenof(display)-1] = '\0';
470 /*
471 * Trap as many fatal signals as we can in the
472 * hope of having the best possible chance to
473 * clean up utmp before termination. We are
474 * unfortunately unprotected against SIGKILL,
475 * but that's life.
476 */
477 putty_signal(SIGHUP, fatal_sig_handler);
478 putty_signal(SIGINT, fatal_sig_handler);
479 putty_signal(SIGQUIT, fatal_sig_handler);
480 putty_signal(SIGILL, fatal_sig_handler);
481 putty_signal(SIGABRT, fatal_sig_handler);
482 putty_signal(SIGFPE, fatal_sig_handler);
483 putty_signal(SIGPIPE, fatal_sig_handler);
484 putty_signal(SIGALRM, fatal_sig_handler);
485 putty_signal(SIGTERM, fatal_sig_handler);
486 putty_signal(SIGSEGV, fatal_sig_handler);
487 putty_signal(SIGUSR1, fatal_sig_handler);
488 putty_signal(SIGUSR2, fatal_sig_handler);
755a6d84 489#ifdef SIGBUS
dd5517cb 490 putty_signal(SIGBUS, fatal_sig_handler);
755a6d84 491#endif
492#ifdef SIGPOLL
dd5517cb 493 putty_signal(SIGPOLL, fatal_sig_handler);
755a6d84 494#endif
495#ifdef SIGPROF
dd5517cb 496 putty_signal(SIGPROF, fatal_sig_handler);
755a6d84 497#endif
498#ifdef SIGSYS
dd5517cb 499 putty_signal(SIGSYS, fatal_sig_handler);
755a6d84 500#endif
501#ifdef SIGTRAP
dd5517cb 502 putty_signal(SIGTRAP, fatal_sig_handler);
755a6d84 503#endif
504#ifdef SIGVTALRM
dd5517cb 505 putty_signal(SIGVTALRM, fatal_sig_handler);
755a6d84 506#endif
507#ifdef SIGXCPU
dd5517cb 508 putty_signal(SIGXCPU, fatal_sig_handler);
755a6d84 509#endif
510#ifdef SIGXFSZ
dd5517cb 511 putty_signal(SIGXFSZ, fatal_sig_handler);
755a6d84 512#endif
513#ifdef SIGIO
dd5517cb 514 putty_signal(SIGIO, fatal_sig_handler);
515#endif
516 setup_utmp(pty->name, display);
517 }
518 }
519 }
520 } else {
521 close(pipefd[0]);
522 pty_utmp_helper_pid = pid;
523 pty_utmp_helper_pipe = pipefd[1];
524 }
95c47834 525#endif
95c47834 526 }
95c47834 527
528 /* Drop privs. */
529 {
95c47834 530#ifndef HAVE_NO_SETRESUID
d4e1d591 531 int gid = getgid(), uid = getuid();
95c47834 532 int setresgid(gid_t, gid_t, gid_t);
533 int setresuid(uid_t, uid_t, uid_t);
534 setresgid(gid, gid, gid);
535 setresuid(uid, uid, uid);
536#else
537 setgid(getgid());
538 setuid(getuid());
539#endif
540 }
541}
542
d6fa1947 543int pty_real_select_result(Pty pty, int event, int status)
74aca06d 544{
545 char buf[4096];
546 int ret;
547 int finished = FALSE;
548
d6fa1947 549 if (event < 0) {
74aca06d 550 /*
d6fa1947 551 * We've been called because our child process did
552 * something. `status' tells us what.
74aca06d 553 */
d6fa1947 554 if ((WIFEXITED(status) || WIFSIGNALED(status))) {
74aca06d 555 /*
d6fa1947 556 * The primary child process died. We could keep
557 * the terminal open for remaining subprocesses to
558 * output to, but conventional wisdom seems to feel
559 * that that's the Wrong Thing for an xterm-alike,
560 * so we bail out now (though we don't necessarily
561 * _close_ the window, depending on the state of
562 * Close On Exit). This would be easy enough to
563 * change or make configurable if necessary.
74aca06d 564 */
d6fa1947 565 pty->exit_code = status;
566 pty->child_dead = TRUE;
567 del234(ptys_by_pid, pty);
74aca06d 568 finished = TRUE;
74aca06d 569 }
d6fa1947 570 } else {
571 if (event == 1) {
74aca06d 572
d6fa1947 573 ret = read(pty->master_fd, buf, sizeof(buf));
74aca06d 574
d6fa1947 575 /*
576 * Clean termination condition is that either ret == 0, or ret
577 * < 0 and errno == EIO. Not sure why the latter, but it seems
578 * to happen. Boo.
579 */
580 if (ret == 0 || (ret < 0 && errno == EIO)) {
74aca06d 581 /*
d6fa1947 582 * We assume a clean exit if the pty has closed but the
583 * actual child process hasn't. The only way I can
584 * imagine this happening is if it detaches itself from
585 * the pty and goes daemonic - in which case the
586 * expected usage model would precisely _not_ be for
587 * the pterm window to hang around!
74aca06d 588 */
74aca06d 589 finished = TRUE;
d6fa1947 590 if (!pty->child_dead)
591 pty->exit_code = 0;
592 } else if (ret < 0) {
593 perror("read pty master");
594 exit(1);
595 } else if (ret > 0) {
596 from_backend(pty->frontend, 0, buf, ret);
74aca06d 597 }
2916fa14 598 } else if (event == 2) {
599 /*
600 * Attempt to send data down the pty.
601 */
602 pty_try_write(pty);
603 }
74aca06d 604 }
605
d6fa1947 606 if (finished && !pty->finished) {
4a693cfc 607 int close_on_exit;
608
d6fa1947 609 uxsel_del(pty->master_fd);
610 pty_close(pty);
611 pty->master_fd = -1;
74aca06d 612
d6fa1947 613 pty->finished = TRUE;
74aca06d 614
615 /*
616 * This is a slight layering-violation sort of hack: only
617 * if we're not closing on exit (COE is set to Never, or to
618 * Only On Clean and it wasn't a clean exit) do we output a
619 * `terminated' message.
620 */
4a693cfc 621 close_on_exit = conf_get_int(pty->conf, CONF_close_on_exit);
622 if (close_on_exit == FORCE_OFF ||
623 (close_on_exit == AUTO && pty->exit_code != 0)) {
74aca06d 624 char message[512];
d6fa1947 625 if (WIFEXITED(pty->exit_code))
74aca06d 626 sprintf(message, "\r\n[pterm: process terminated with exit"
d6fa1947 627 " code %d]\r\n", WEXITSTATUS(pty->exit_code));
628 else if (WIFSIGNALED(pty->exit_code))
74aca06d 629#ifdef HAVE_NO_STRSIGNAL
630 sprintf(message, "\r\n[pterm: process terminated on signal"
d6fa1947 631 " %d]\r\n", WTERMSIG(pty->exit_code));
74aca06d 632#else
633 sprintf(message, "\r\n[pterm: process terminated on signal"
d6fa1947 634 " %d (%.400s)]\r\n", WTERMSIG(pty->exit_code),
635 strsignal(WTERMSIG(pty->exit_code)));
74aca06d 636#endif
d6fa1947 637 from_backend(pty->frontend, 0, message, strlen(message));
74aca06d 638 }
39934deb 639
d6fa1947 640 notify_remote_exit(pty->frontend);
74aca06d 641 }
d6fa1947 642
74aca06d 643 return !finished;
644}
645
d6fa1947 646int pty_select_result(int fd, int event)
74aca06d 647{
d6fa1947 648 int ret = TRUE;
649 Pty pty;
650
651 if (fd == pty_signal_pipe[0]) {
652 pid_t pid;
d6fa1947 653 int status;
654 char c[1];
655
ecb25722 656 if (read(pty_signal_pipe[0], c, 1) <= 0)
657 /* ignore error */;
658 /* ignore its value; it'll be `x' */
d6fa1947 659
660 do {
661 pid = waitpid(-1, &status, WNOHANG);
662
d6fa1947 663 pty = find234(ptys_by_pid, &pid, pty_find_by_pid);
664
665 if (pty)
666 ret = ret && pty_real_select_result(pty, -1, status);
667 } while (pid > 0);
668 } else {
669 pty = find234(ptys_by_fd, &fd, pty_find_by_fd);
670
671 if (pty)
672 ret = ret && pty_real_select_result(pty, event, 0);
673 }
674
675 return ret;
676}
677
678static void pty_uxsel_setup(Pty pty)
679{
2916fa14 680 int rwx;
681
682 rwx = 1; /* always want to read from pty */
683 if (bufchain_size(&pty->output_data))
684 rwx |= 2; /* might also want to write to it */
685 uxsel_set(pty->master_fd, rwx, pty_select_result);
d6fa1947 686
687 /*
688 * In principle this only needs calling once for all pty
689 * backend instances, but it's simplest just to call it every
690 * time; uxsel won't mind.
691 */
74aca06d 692 uxsel_set(pty_signal_pipe[0], 1, pty_select_result);
693}
694
95c47834 695/*
696 * Called to set up the pty.
697 *
698 * Returns an error message, or NULL on success.
699 *
700 * Also places the canonical host name into `realhost'. It must be
701 * freed by the caller.
702 */
4a693cfc 703static const char *pty_init(void *frontend, void **backend_handle, Conf *conf,
79bf227b 704 char *host, int port, char **realhost, int nodelay,
705 int keepalive)
95c47834 706{
707 int slavefd;
708 pid_t pid, pgrp;
c13772b1 709#ifndef NOT_X_WINDOWS /* for Mac OS X native compilation */
7af753e6 710 long windowid;
c13772b1 711#endif
d6fa1947 712 Pty pty;
95c47834 713
d6fa1947 714 if (single_pty) {
715 pty = single_pty;
716 } else {
717 pty = snew(struct pty_tag);
718 pty->master_fd = pty->slave_fd = -1;
719#ifndef OMIT_UTMP
720 pty_stamped_utmp = FALSE;
721#endif
722 }
723
724 pty->frontend = frontend;
28d00fe4 725 *backend_handle = NULL; /* we can't sensibly use this, sadly */
726
4a693cfc 727 pty->conf = conf_copy(conf);
728 pty->term_width = conf_get_int(conf, CONF_width);
729 pty->term_height = conf_get_int(conf, CONF_height);
f278d6f8 730
d6fa1947 731 if (pty->master_fd < 0)
732 pty_open_master(pty);
95c47834 733
734 /*
735 * Set the backspace character to be whichever of ^H and ^? is
736 * specified by bksp_is_delete.
737 */
738 {
739 struct termios attrs;
d6fa1947 740 tcgetattr(pty->master_fd, &attrs);
4a693cfc 741 attrs.c_cc[VERASE] = conf_get_int(conf, CONF_bksp_is_delete)
742 ? '\177' : '\010';
d6fa1947 743 tcsetattr(pty->master_fd, TCSANOW, &attrs);
95c47834 744 }
745
d4e1d591 746#ifndef OMIT_UTMP
95c47834 747 /*
748 * Stamp utmp (that is, tell the utmp helper process to do so),
749 * or not.
750 */
4a693cfc 751 if (!conf_get_int(conf, CONF_stamp_utmp)) {
95c47834 752 close(pty_utmp_helper_pipe); /* just let the child process die */
58dcb876 753 pty_utmp_helper_pipe = -1;
dd5517cb 754 } else if (pty_utmp_helper_pipe >= 0) {
d6fa1947 755 char *location = get_x_display(pty->frontend);
95c47834 756 int len = strlen(location)+1, pos = 0; /* +1 to include NUL */
757 while (pos < len) {
758 int ret = write(pty_utmp_helper_pipe, location+pos, len - pos);
759 if (ret < 0) {
760 perror("pterm: writing to utmp helper process");
761 close(pty_utmp_helper_pipe); /* arrgh, just give up */
58dcb876 762 pty_utmp_helper_pipe = -1;
95c47834 763 break;
764 }
765 pos += ret;
766 }
767 }
d4e1d591 768#endif
755a6d84 769
c13772b1 770#ifndef NOT_X_WINDOWS /* for Mac OS X native compilation */
d6fa1947 771 windowid = get_windowid(pty->frontend);
c13772b1 772#endif
7af753e6 773
755a6d84 774 /*
054d8535 775 * Fork and execute the command.
776 */
777 pid = fork();
778 if (pid < 0) {
779 perror("fork");
88e6b9ca 780 exit(1);
054d8535 781 }
782
783 if (pid == 0) {
054d8535 784 /*
785 * We are the child.
786 */
d37c2d81 787
d6fa1947 788 slavefd = pty_open_slave(pty);
d37c2d81 789 if (slavefd < 0) {
790 perror("slave pty: open");
0f33f9d1 791 _exit(1);
d37c2d81 792 }
793
d6fa1947 794 close(pty->master_fd);
054d8535 795 fcntl(slavefd, F_SETFD, 0); /* don't close on exec */
796 dup2(slavefd, 0);
797 dup2(slavefd, 1);
798 dup2(slavefd, 2);
90f2ed42 799 close(slavefd);
054d8535 800 setsid();
bbaa7993 801#ifdef TIOCSCTTY
211b4228 802 ioctl(0, TIOCSCTTY, 1);
bbaa7993 803#endif
d37c2d81 804 pgrp = getpid();
3a7c6b9e 805 tcsetpgrp(0, pgrp);
ea0716c6 806 setpgid(pgrp, pgrp);
d6fa1947 807 close(open(pty->name, O_WRONLY, 0));
ea0716c6 808 setpgid(pgrp, pgrp);
fe9548aa 809 {
4a693cfc 810 char *term_env_var = dupprintf("TERM=%s",
811 conf_get_str(conf, CONF_termtype));
fe9548aa 812 putenv(term_env_var);
30d1257c 813 /* We mustn't free term_env_var, as putenv links it into the
814 * environment in place.
815 */
fe9548aa 816 }
c13772b1 817#ifndef NOT_X_WINDOWS /* for Mac OS X native compilation */
7af753e6 818 {
30d1257c 819 char *windowid_env_var = dupprintf("WINDOWID=%ld", windowid);
7af753e6 820 putenv(windowid_env_var);
30d1257c 821 /* We mustn't free windowid_env_var, as putenv links it into the
822 * environment in place.
823 */
7af753e6 824 }
c13772b1 825#endif
73feed4f 826 {
4a693cfc 827 char *key, *val;
828
829 for (val = conf_get_str_strs(conf, CONF_environmt, NULL, &key);
830 val != NULL;
831 val = conf_get_str_strs(conf, CONF_environmt, key, &key)) {
832 char *varval = dupcat(key, "=", val, NULL);
73feed4f 833 putenv(varval);
834 /*
835 * We must not free varval, since putenv links it
836 * into the environment _in place_. Weird, but
837 * there we go. Memory usage will be rationalised
838 * as soon as we exec anyway.
839 */
840 }
841 }
842
8bf5c419 843 /*
203abf9e 844 * SIGINT, SIGQUIT and SIGPIPE may have been set to ignored by
845 * our parent, particularly by things like sh -c 'pterm &' and
846 * some window or session managers. SIGCHLD, meanwhile, was
847 * blocked during pt_main() startup. Reverse all this for our
848 * child process.
8bf5c419 849 */
0f33f9d1 850 putty_signal(SIGINT, SIG_DFL);
851 putty_signal(SIGQUIT, SIG_DFL);
203abf9e 852 putty_signal(SIGPIPE, SIG_DFL);
15b5d988 853 block_signal(SIGCHLD, 0);
34826e4a 854 if (pty_argv) {
855 /*
856 * Exec the exact argument list we were given.
857 */
6169c758 858 execvp(pty_argv[0], pty_argv);
34826e4a 859 /*
860 * If that fails, and if we had exactly one argument, pass
861 * that argument to $SHELL -c.
862 *
863 * This arranges that we can _either_ follow 'pterm -e'
864 * with a list of argv elements to be fed directly to
865 * exec, _or_ with a single argument containing a command
866 * to be parsed by a shell (but, in cases of doubt, the
867 * former is more reliable).
868 *
869 * A quick survey of other terminal emulators' -e options
870 * (as of Debian squeeze) suggests that:
871 *
872 * - xterm supports both modes, more or less like this
873 * - gnome-terminal will only accept a one-string shell command
874 * - Eterm, kterm and rxvt will only accept a list of
875 * argv elements (as did older versions of pterm).
876 *
877 * It therefore seems important to support both usage
878 * modes in order to be a drop-in replacement for either
879 * xterm or gnome-terminal, and hence for anyone's
880 * plausible uses of the Debian-style alias
881 * 'x-terminal-emulator'...
882 */
883 if (pty_argv[1] == NULL) {
884 char *shell = getenv("SHELL");
885 if (shell)
886 execl(shell, shell, "-c", pty_argv[0], (void *)NULL);
887 }
888 } else {
c8ee61b9 889 char *shell = getenv("SHELL");
890 char *shellname;
4a693cfc 891 if (conf_get_int(conf, CONF_login_shell)) {
c8ee61b9 892 char *p = strrchr(shell, '/');
3d88e64d 893 shellname = snewn(2+strlen(shell), char);
c8ee61b9 894 p = p ? p+1 : shell;
895 sprintf(shellname, "-%s", p);
896 } else
897 shellname = shell;
30264db9 898 execl(getenv("SHELL"), shellname, (void *)NULL);
c8ee61b9 899 }
900
054d8535 901 /*
902 * If we're here, exec has gone badly foom.
903 */
904 perror("exec");
0f33f9d1 905 _exit(127);
054d8535 906 } else {
d6fa1947 907 pty->child_pid = pid;
908 pty->child_dead = FALSE;
909 pty->finished = FALSE;
910 if (pty->slave_fd > 0)
911 close(pty->slave_fd);
912 if (!ptys_by_pid)
913 ptys_by_pid = newtree234(pty_compare_by_pid);
914 add234(ptys_by_pid, pty);
270d2e8d 915 }
054d8535 916
90f2ed42 917 if (pty_signal_pipe[0] < 0) {
918 if (pipe(pty_signal_pipe) < 0) {
919 perror("pipe");
920 exit(1);
921 }
922 cloexec(pty_signal_pipe[0]);
923 cloexec(pty_signal_pipe[1]);
74aca06d 924 }
d6fa1947 925 pty_uxsel_setup(pty);
926
927 *backend_handle = pty;
74aca06d 928
5617c1e6 929 *realhost = dupprintf("\0");
930
1709795f 931 return NULL;
932}
933
4a693cfc 934static void pty_reconfig(void *handle, Conf *conf)
86916870 935{
d6fa1947 936 Pty pty = (Pty)handle;
6b0eeb4e 937 /*
938 * We don't have much need to reconfigure this backend, but
939 * unfortunately we do need to pick up the setting of Close On
940 * Exit so we know whether to give a `terminated' message.
941 */
4a693cfc 942 conf_copy_into(pty->conf, conf);
86916870 943}
944
945/*
6b0eeb4e 946 * Stub routine (never called in pterm).
cb60dcb3 947 */
948static void pty_free(void *handle)
949{
d6fa1947 950 Pty pty = (Pty)handle;
951
952 /* Either of these may fail `not found'. That's fine with us. */
953 del234(ptys_by_pid, pty);
954 del234(ptys_by_fd, pty);
955
956 sfree(pty);
cb60dcb3 957}
958
2916fa14 959static void pty_try_write(Pty pty)
960{
961 void *data;
962 int len, ret;
963
964 assert(pty->master_fd >= 0);
965
966 while (bufchain_size(&pty->output_data) > 0) {
967 bufchain_prefix(&pty->output_data, &data, &len);
968 ret = write(pty->master_fd, data, len);
969
970 if (ret < 0 && (errno == EWOULDBLOCK)) {
971 /*
972 * We've sent all we can for the moment.
973 */
974 break;
975 }
976 if (ret < 0) {
977 perror("write pty master");
978 exit(1);
979 }
980 bufchain_consume(&pty->output_data, ret);
981 }
982
983 pty_uxsel_setup(pty);
984}
985
cb60dcb3 986/*
1709795f 987 * Called to send data down the pty.
988 */
28d00fe4 989static int pty_send(void *handle, char *buf, int len)
1709795f 990{
d6fa1947 991 Pty pty = (Pty)handle;
992
993 if (pty->master_fd < 0)
2916fa14 994 return 0; /* ignore all writes if fd closed */
90cfd8f4 995
2916fa14 996 bufchain_add(&pty->output_data, buf, len);
997 pty_try_write(pty);
998
999 return bufchain_size(&pty->output_data);
1709795f 1000}
1001
d6fa1947 1002static void pty_close(Pty pty)
90cfd8f4 1003{
d6fa1947 1004 if (pty->master_fd >= 0) {
1005 close(pty->master_fd);
1006 pty->master_fd = -1;
90cfd8f4 1007 }
d4e1d591 1008#ifndef OMIT_UTMP
58dcb876 1009 if (pty_utmp_helper_pipe >= 0) {
1010 close(pty_utmp_helper_pipe); /* this causes utmp to be cleaned up */
1011 pty_utmp_helper_pipe = -1;
1012 }
d4e1d591 1013#endif
90cfd8f4 1014}
1015
1709795f 1016/*
1017 * Called to query the current socket sendability status.
1018 */
28d00fe4 1019static int pty_sendbuffer(void *handle)
1709795f 1020{
d6fa1947 1021 /* Pty pty = (Pty)handle; */
1709795f 1022 return 0;
1023}
1024
1025/*
1026 * Called to set the size of the window
1027 */
28d00fe4 1028static void pty_size(void *handle, int width, int height)
1709795f 1029{
d6fa1947 1030 Pty pty = (Pty)handle;
88e6b9ca 1031 struct winsize size;
1032
d6fa1947 1033 pty->term_width = width;
1034 pty->term_height = height;
f278d6f8 1035
d6fa1947 1036 size.ws_row = (unsigned short)pty->term_height;
1037 size.ws_col = (unsigned short)pty->term_width;
1038 size.ws_xpixel = (unsigned short) pty->term_width *
1039 font_dimension(pty->frontend, 0);
1040 size.ws_ypixel = (unsigned short) pty->term_height *
1041 font_dimension(pty->frontend, 1);
1042 ioctl(pty->master_fd, TIOCSWINSZ, (void *)&size);
1709795f 1043 return;
1044}
1045
1046/*
1047 * Send special codes.
1048 */
28d00fe4 1049static void pty_special(void *handle, Telnet_Special code)
1709795f 1050{
d6fa1947 1051 /* Pty pty = (Pty)handle; */
1709795f 1052 /* Do nothing! */
1053 return;
1054}
1055
125105d1 1056/*
1057 * Return a list of the special codes that make sense in this
1058 * protocol.
1059 */
1060static const struct telnet_special *pty_get_specials(void *handle)
1061{
d6fa1947 1062 /* Pty pty = (Pty)handle; */
125105d1 1063 /*
1064 * Hmm. When I get round to having this actually usable, it
1065 * might be quite nice to have the ability to deliver a few
1066 * well chosen signals to the child process - SIGINT, SIGTERM,
1067 * SIGKILL at least.
1068 */
1069 return NULL;
1070}
1071
6226c939 1072static int pty_connected(void *handle)
1709795f 1073{
d6fa1947 1074 /* Pty pty = (Pty)handle; */
6226c939 1075 return TRUE;
1709795f 1076}
1077
28d00fe4 1078static int pty_sendok(void *handle)
1709795f 1079{
d6fa1947 1080 /* Pty pty = (Pty)handle; */
1709795f 1081 return 1;
1082}
1083
28d00fe4 1084static void pty_unthrottle(void *handle, int backlog)
1709795f 1085{
d6fa1947 1086 /* Pty pty = (Pty)handle; */
1709795f 1087 /* do nothing */
1088}
1089
28d00fe4 1090static int pty_ldisc(void *handle, int option)
1709795f 1091{
d6fa1947 1092 /* Pty pty = (Pty)handle; */
1709795f 1093 return 0; /* neither editing nor echoing */
1094}
1095
b9d7bcad 1096static void pty_provide_ldisc(void *handle, void *ldisc)
1097{
d6fa1947 1098 /* Pty pty = (Pty)handle; */
b9d7bcad 1099 /* This is a stub. */
1100}
1101
a8327734 1102static void pty_provide_logctx(void *handle, void *logctx)
1103{
d6fa1947 1104 /* Pty pty = (Pty)handle; */
a8327734 1105 /* This is a stub. */
1106}
1107
28d00fe4 1108static int pty_exitcode(void *handle)
1709795f 1109{
d6fa1947 1110 Pty pty = (Pty)handle;
1111 if (!pty->finished)
90cfd8f4 1112 return -1; /* not dead yet */
1113 else
d6fa1947 1114 return pty->exit_code;
1709795f 1115}
1116
f89c3294 1117static int pty_cfg_info(void *handle)
1118{
d6fa1947 1119 /* Pty pty = (Pty)handle; */
f89c3294 1120 return 0;
1121}
1122
1709795f 1123Backend pty_backend = {
1124 pty_init,
cb60dcb3 1125 pty_free,
86916870 1126 pty_reconfig,
1709795f 1127 pty_send,
1128 pty_sendbuffer,
1129 pty_size,
1130 pty_special,
125105d1 1131 pty_get_specials,
6226c939 1132 pty_connected,
1709795f 1133 pty_exitcode,
1134 pty_sendok,
1135 pty_ldisc,
b9d7bcad 1136 pty_provide_ldisc,
a8327734 1137 pty_provide_logctx,
1709795f 1138 pty_unthrottle,
f89c3294 1139 pty_cfg_info,
9e164d82 1140 "pty",
1141 -1,
a4451dd1 1142 0
1709795f 1143};