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