Add a configuration option for TCP keepalives (SO_KEEPALIVE), default off.
[u/mdw/putty] / unix / pty.c
1 /*
2 * Pseudo-tty backend for pterm.
3 *
4 * Unlike the other backends, data for this one is not neatly
5 * encapsulated into a data structure, because it wouldn't make
6 * sense to do so - the utmp stuff has to be done before a backend
7 * is initialised, and starting a second pterm from the same
8 * process would therefore be infeasible because privileges would
9 * already have been dropped. Hence, I haven't bothered to keep the
10 * data dynamically allocated: instead, the backend handle is just
11 * a null pointer and ignored everywhere.
12 */
13
14 #define _XOPEN_SOURCE
15 #define _XOPEN_SOURCE_EXTENDED
16 #define _GNU_SOURCE
17 #include <features.h>
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <unistd.h>
23 #include <signal.h>
24 #include <fcntl.h>
25 #include <termios.h>
26 #include <grp.h>
27 #include <utmp.h>
28 #include <pwd.h>
29 #include <time.h>
30 #include <sys/types.h>
31 #include <sys/wait.h>
32 #include <sys/ioctl.h>
33 #include <errno.h>
34
35 #include "putty.h"
36
37 #ifndef FALSE
38 #define FALSE 0
39 #endif
40 #ifndef TRUE
41 #define TRUE 1
42 #endif
43
44 #ifndef UTMP_FILE
45 #define UTMP_FILE "/var/run/utmp"
46 #endif
47 #ifndef WTMP_FILE
48 #define WTMP_FILE "/var/log/wtmp"
49 #endif
50 #ifndef LASTLOG_FILE
51 #ifdef _PATH_LASTLOG
52 #define LASTLOG_FILE _PATH_LASTLOG
53 #else
54 #define LASTLOG_FILE "/var/log/lastlog"
55 #endif
56 #endif
57
58 /*
59 * Set up a default for vaguely sane systems. The idea is that if
60 * OMIT_UTMP is not defined, then at least one of the symbols which
61 * enable particular forms of utmp processing should be, if only so
62 * that a link error can warn you that you should have defined
63 * OMIT_UTMP if you didn't want any. Currently HAVE_PUTUTLINE is
64 * the only such symbol.
65 */
66 #ifndef OMIT_UTMP
67 #if !defined HAVE_PUTUTLINE
68 #define HAVE_PUTUTLINE
69 #endif
70 #endif
71
72 static Config pty_cfg;
73 static int pty_master_fd;
74 static void *pty_frontend;
75 static char pty_name[FILENAME_MAX];
76 static int pty_signal_pipe[2];
77 static int pty_stamped_utmp = 0;
78 static int pty_child_pid;
79 static int pty_utmp_helper_pid, pty_utmp_helper_pipe;
80 static int pty_term_width, pty_term_height;
81 static int pty_child_dead, pty_finished;
82 static int pty_exit_code;
83 #ifndef OMIT_UTMP
84 static struct utmp utmp_entry;
85 #endif
86 char **pty_argv;
87 int use_pty_argv = TRUE;
88
89 static void pty_close(void);
90
91 static void setup_utmp(char *ttyname, char *location)
92 {
93 #ifndef OMIT_UTMP
94 #ifdef HAVE_LASTLOG
95 struct lastlog lastlog_entry;
96 FILE *lastlog;
97 #endif
98 struct passwd *pw;
99 FILE *wtmp;
100
101 pw = getpwuid(getuid());
102 memset(&utmp_entry, 0, sizeof(utmp_entry));
103 utmp_entry.ut_type = USER_PROCESS;
104 utmp_entry.ut_pid = getpid();
105 strncpy(utmp_entry.ut_line, ttyname+5, lenof(utmp_entry.ut_line));
106 strncpy(utmp_entry.ut_id, ttyname+8, lenof(utmp_entry.ut_id));
107 strncpy(utmp_entry.ut_user, pw->pw_name, lenof(utmp_entry.ut_user));
108 strncpy(utmp_entry.ut_host, location, lenof(utmp_entry.ut_host));
109 time(&utmp_entry.ut_time);
110
111 #if defined HAVE_PUTUTLINE
112 utmpname(UTMP_FILE);
113 setutent();
114 pututline(&utmp_entry);
115 endutent();
116 #endif
117
118 if ((wtmp = fopen(WTMP_FILE, "a")) != NULL) {
119 fwrite(&utmp_entry, 1, sizeof(utmp_entry), wtmp);
120 fclose(wtmp);
121 }
122
123 #ifdef HAVE_LASTLOG
124 memset(&lastlog_entry, 0, sizeof(lastlog_entry));
125 strncpy(lastlog_entry.ll_line, ttyname+5, lenof(lastlog_entry.ll_line));
126 strncpy(lastlog_entry.ll_host, location, lenof(lastlog_entry.ll_host));
127 time(&lastlog_entry.ll_time);
128 if ((lastlog = fopen(LASTLOG_FILE, "r+")) != NULL) {
129 fseek(lastlog, sizeof(lastlog_entry) * getuid(), SEEK_SET);
130 fwrite(&lastlog_entry, 1, sizeof(lastlog_entry), lastlog);
131 fclose(lastlog);
132 }
133 #endif
134
135 pty_stamped_utmp = 1;
136
137 #endif
138 }
139
140 static void cleanup_utmp(void)
141 {
142 #ifndef OMIT_UTMP
143 FILE *wtmp;
144
145 if (!pty_stamped_utmp)
146 return;
147
148 utmp_entry.ut_type = DEAD_PROCESS;
149 memset(utmp_entry.ut_user, 0, lenof(utmp_entry.ut_user));
150 time(&utmp_entry.ut_time);
151
152 if ((wtmp = fopen(WTMP_FILE, "a")) != NULL) {
153 fwrite(&utmp_entry, 1, sizeof(utmp_entry), wtmp);
154 fclose(wtmp);
155 }
156
157 memset(utmp_entry.ut_line, 0, lenof(utmp_entry.ut_line));
158 utmp_entry.ut_time = 0;
159
160 #if defined HAVE_PUTUTLINE
161 utmpname(UTMP_FILE);
162 setutent();
163 pututline(&utmp_entry);
164 endutent();
165 #endif
166
167 pty_stamped_utmp = 0; /* ensure we never double-cleanup */
168 #endif
169 }
170
171 static void sigchld_handler(int signum)
172 {
173 write(pty_signal_pipe[1], "x", 1);
174 }
175
176 static void fatal_sig_handler(int signum)
177 {
178 putty_signal(signum, SIG_DFL);
179 cleanup_utmp();
180 setuid(getuid());
181 raise(signum);
182 }
183
184 static void pty_open_master(void)
185 {
186 #ifdef BSD_PTYS
187 const char chars1[] = "pqrstuvwxyz";
188 const char chars2[] = "0123456789abcdef";
189 const char *p1, *p2;
190 char master_name[20];
191 struct group *gp;
192
193 for (p1 = chars1; *p1; p1++)
194 for (p2 = chars2; *p2; p2++) {
195 sprintf(master_name, "/dev/pty%c%c", *p1, *p2);
196 pty_master_fd = open(master_name, O_RDWR);
197 if (pty_master_fd >= 0) {
198 if (geteuid() == 0 ||
199 access(master_name, R_OK | W_OK) == 0)
200 goto got_one;
201 close(pty_master_fd);
202 }
203 }
204
205 /* If we get here, we couldn't get a tty at all. */
206 fprintf(stderr, "pterm: unable to open a pseudo-terminal device\n");
207 exit(1);
208
209 got_one:
210 strcpy(pty_name, master_name);
211 pty_name[5] = 't'; /* /dev/ptyXX -> /dev/ttyXX */
212
213 /* We need to chown/chmod the /dev/ttyXX device. */
214 gp = getgrnam("tty");
215 chown(pty_name, getuid(), gp ? gp->gr_gid : -1);
216 chmod(pty_name, 0600);
217 #else
218 pty_master_fd = open("/dev/ptmx", O_RDWR);
219
220 if (pty_master_fd < 0) {
221 perror("/dev/ptmx: open");
222 exit(1);
223 }
224
225 if (grantpt(pty_master_fd) < 0) {
226 perror("grantpt");
227 exit(1);
228 }
229
230 if (unlockpt(pty_master_fd) < 0) {
231 perror("unlockpt");
232 exit(1);
233 }
234
235 pty_name[FILENAME_MAX-1] = '\0';
236 strncpy(pty_name, ptsname(pty_master_fd), FILENAME_MAX-1);
237 #endif
238 }
239
240 /*
241 * Pre-initialisation. This is here to get around the fact that GTK
242 * doesn't like being run in setuid/setgid programs (probably
243 * sensibly). So before we initialise GTK - and therefore before we
244 * even process the command line - we check to see if we're running
245 * set[ug]id. If so, we open our pty master _now_, chown it as
246 * necessary, and drop privileges. We can always close it again
247 * later. If we're potentially going to be doing utmp as well, we
248 * also fork off a utmp helper process and communicate with it by
249 * means of a pipe; the utmp helper will keep privileges in order
250 * to clean up utmp when we exit (i.e. when its end of our pipe
251 * closes).
252 */
253 void pty_pre_init(void)
254 {
255 pid_t pid;
256 int pipefd[2];
257
258 /* set the child signal handler straight away; it needs to be set
259 * before we ever fork. */
260 putty_signal(SIGCHLD, sigchld_handler);
261 pty_master_fd = -1;
262
263 if (geteuid() != getuid() || getegid() != getgid()) {
264 pty_open_master();
265 }
266
267 #ifndef OMIT_UTMP
268 /*
269 * Fork off the utmp helper.
270 */
271 if (pipe(pipefd) < 0) {
272 perror("pterm: pipe");
273 exit(1);
274 }
275 pid = fork();
276 if (pid < 0) {
277 perror("pterm: fork");
278 exit(1);
279 } else if (pid == 0) {
280 char display[128], buffer[128];
281 int dlen, ret;
282
283 close(pipefd[1]);
284 /*
285 * Now sit here until we receive a display name from the
286 * other end of the pipe, and then stamp utmp. Unstamp utmp
287 * again, and exit, when the pipe closes.
288 */
289
290 dlen = 0;
291 while (1) {
292
293 ret = read(pipefd[0], buffer, lenof(buffer));
294 if (ret <= 0) {
295 cleanup_utmp();
296 _exit(0);
297 } else if (!pty_stamped_utmp) {
298 if (dlen < lenof(display))
299 memcpy(display+dlen, buffer,
300 min(ret, lenof(display)-dlen));
301 if (buffer[ret-1] == '\0') {
302 /*
303 * Now we have a display name. NUL-terminate
304 * it, and stamp utmp.
305 */
306 display[lenof(display)-1] = '\0';
307 /*
308 * Trap as many fatal signals as we can in the
309 * hope of having the best possible chance to
310 * clean up utmp before termination. We are
311 * unfortunately unprotected against SIGKILL,
312 * but that's life.
313 */
314 putty_signal(SIGHUP, fatal_sig_handler);
315 putty_signal(SIGINT, fatal_sig_handler);
316 putty_signal(SIGQUIT, fatal_sig_handler);
317 putty_signal(SIGILL, fatal_sig_handler);
318 putty_signal(SIGABRT, fatal_sig_handler);
319 putty_signal(SIGFPE, fatal_sig_handler);
320 putty_signal(SIGPIPE, fatal_sig_handler);
321 putty_signal(SIGALRM, fatal_sig_handler);
322 putty_signal(SIGTERM, fatal_sig_handler);
323 putty_signal(SIGSEGV, fatal_sig_handler);
324 putty_signal(SIGUSR1, fatal_sig_handler);
325 putty_signal(SIGUSR2, fatal_sig_handler);
326 #ifdef SIGBUS
327 putty_signal(SIGBUS, fatal_sig_handler);
328 #endif
329 #ifdef SIGPOLL
330 putty_signal(SIGPOLL, fatal_sig_handler);
331 #endif
332 #ifdef SIGPROF
333 putty_signal(SIGPROF, fatal_sig_handler);
334 #endif
335 #ifdef SIGSYS
336 putty_signal(SIGSYS, fatal_sig_handler);
337 #endif
338 #ifdef SIGTRAP
339 putty_signal(SIGTRAP, fatal_sig_handler);
340 #endif
341 #ifdef SIGVTALRM
342 putty_signal(SIGVTALRM, fatal_sig_handler);
343 #endif
344 #ifdef SIGXCPU
345 putty_signal(SIGXCPU, fatal_sig_handler);
346 #endif
347 #ifdef SIGXFSZ
348 putty_signal(SIGXFSZ, fatal_sig_handler);
349 #endif
350 #ifdef SIGIO
351 putty_signal(SIGIO, fatal_sig_handler);
352 #endif
353 setup_utmp(pty_name, display);
354 }
355 }
356 }
357 } else {
358 close(pipefd[0]);
359 pty_utmp_helper_pid = pid;
360 pty_utmp_helper_pipe = pipefd[1];
361 }
362 #endif
363
364 /* Drop privs. */
365 {
366 int gid = getgid(), uid = getuid();
367 #ifndef HAVE_NO_SETRESUID
368 int setresgid(gid_t, gid_t, gid_t);
369 int setresuid(uid_t, uid_t, uid_t);
370 setresgid(gid, gid, gid);
371 setresuid(uid, uid, uid);
372 #else
373 setgid(getgid());
374 setuid(getuid());
375 #endif
376 }
377 }
378
379 int pty_select_result(int fd, int event)
380 {
381 char buf[4096];
382 int ret;
383 int finished = FALSE;
384
385 if (fd == pty_master_fd && event == 1) {
386
387 ret = read(pty_master_fd, buf, sizeof(buf));
388
389 /*
390 * Clean termination condition is that either ret == 0, or ret
391 * < 0 and errno == EIO. Not sure why the latter, but it seems
392 * to happen. Boo.
393 */
394 if (ret == 0 || (ret < 0 && errno == EIO)) {
395 /*
396 * We assume a clean exit if the pty has closed but the
397 * actual child process hasn't. The only way I can
398 * imagine this happening is if it detaches itself from
399 * the pty and goes daemonic - in which case the
400 * expected usage model would precisely _not_ be for
401 * the pterm window to hang around!
402 */
403 finished = TRUE;
404 if (!pty_child_dead)
405 pty_exit_code = 0;
406 } else if (ret < 0) {
407 perror("read pty master");
408 exit(1);
409 } else if (ret > 0) {
410 from_backend(pty_frontend, 0, buf, ret);
411 }
412 } else if (fd == pty_signal_pipe[0]) {
413 pid_t pid;
414 int status;
415 char c[1];
416
417 read(pty_signal_pipe[0], c, 1); /* ignore its value; it'll be `x' */
418
419 do {
420 pid = waitpid(-1, &status, WNOHANG);
421 if (pid == pty_child_pid &&
422 (WIFEXITED(status) || WIFSIGNALED(status))) {
423 /*
424 * The primary child process died. We could keep
425 * the terminal open for remaining subprocesses to
426 * output to, but conventional wisdom seems to feel
427 * that that's the Wrong Thing for an xterm-alike,
428 * so we bail out now (though we don't necessarily
429 * _close_ the window, depending on the state of
430 * Close On Exit). This would be easy enough to
431 * change or make configurable if necessary.
432 */
433 pty_exit_code = status;
434 pty_child_dead = TRUE;
435 finished = TRUE;
436 }
437 } while(pid > 0);
438 }
439
440 if (finished && !pty_finished) {
441 uxsel_del(pty_master_fd);
442 pty_close();
443 pty_master_fd = -1;
444
445 pty_finished = TRUE;
446
447 /*
448 * This is a slight layering-violation sort of hack: only
449 * if we're not closing on exit (COE is set to Never, or to
450 * Only On Clean and it wasn't a clean exit) do we output a
451 * `terminated' message.
452 */
453 if (pty_cfg.close_on_exit == FORCE_OFF ||
454 (pty_cfg.close_on_exit == AUTO && pty_exit_code != 0)) {
455 char message[512];
456 if (WIFEXITED(pty_exit_code))
457 sprintf(message, "\r\n[pterm: process terminated with exit"
458 " code %d]\r\n", WEXITSTATUS(pty_exit_code));
459 else if (WIFSIGNALED(pty_exit_code))
460 #ifdef HAVE_NO_STRSIGNAL
461 sprintf(message, "\r\n[pterm: process terminated on signal"
462 " %d]\r\n", WTERMSIG(pty_exit_code));
463 #else
464 sprintf(message, "\r\n[pterm: process terminated on signal"
465 " %d (%.400s)]\r\n", WTERMSIG(pty_exit_code),
466 strsignal(WTERMSIG(pty_exit_code)));
467 #endif
468 from_backend(pty_frontend, 0, message, strlen(message));
469 }
470 }
471 return !finished;
472 }
473
474 static void pty_uxsel_setup(void)
475 {
476 uxsel_set(pty_master_fd, 1, pty_select_result);
477 uxsel_set(pty_signal_pipe[0], 1, pty_select_result);
478 }
479
480 /*
481 * Called to set up the pty.
482 *
483 * Returns an error message, or NULL on success.
484 *
485 * Also places the canonical host name into `realhost'. It must be
486 * freed by the caller.
487 */
488 static const char *pty_init(void *frontend, void **backend_handle, Config *cfg,
489 char *host, int port, char **realhost, int nodelay,
490 int keepalive)
491 {
492 int slavefd;
493 pid_t pid, pgrp;
494 long windowid;
495
496 pty_frontend = frontend;
497 *backend_handle = NULL; /* we can't sensibly use this, sadly */
498
499 pty_cfg = *cfg; /* structure copy */
500 pty_term_width = cfg->width;
501 pty_term_height = cfg->height;
502
503 if (pty_master_fd < 0)
504 pty_open_master();
505
506 /*
507 * Set the backspace character to be whichever of ^H and ^? is
508 * specified by bksp_is_delete.
509 */
510 {
511 struct termios attrs;
512 tcgetattr(pty_master_fd, &attrs);
513 attrs.c_cc[VERASE] = cfg->bksp_is_delete ? '\177' : '\010';
514 tcsetattr(pty_master_fd, TCSANOW, &attrs);
515 }
516
517 /*
518 * Stamp utmp (that is, tell the utmp helper process to do so),
519 * or not.
520 */
521 if (!cfg->stamp_utmp) {
522 close(pty_utmp_helper_pipe); /* just let the child process die */
523 pty_utmp_helper_pipe = -1;
524 } else {
525 char *location = get_x_display(pty_frontend);
526 int len = strlen(location)+1, pos = 0; /* +1 to include NUL */
527 while (pos < len) {
528 int ret = write(pty_utmp_helper_pipe, location+pos, len - pos);
529 if (ret < 0) {
530 perror("pterm: writing to utmp helper process");
531 close(pty_utmp_helper_pipe); /* arrgh, just give up */
532 pty_utmp_helper_pipe = -1;
533 break;
534 }
535 pos += ret;
536 }
537 }
538
539 windowid = get_windowid(pty_frontend);
540
541 /*
542 * Fork and execute the command.
543 */
544 pid = fork();
545 if (pid < 0) {
546 perror("fork");
547 exit(1);
548 }
549
550 if (pid == 0) {
551 int i;
552 /*
553 * We are the child.
554 */
555
556 slavefd = open(pty_name, O_RDWR);
557 if (slavefd < 0) {
558 perror("slave pty: open");
559 _exit(1);
560 }
561
562 close(pty_master_fd);
563 fcntl(slavefd, F_SETFD, 0); /* don't close on exec */
564 dup2(slavefd, 0);
565 dup2(slavefd, 1);
566 dup2(slavefd, 2);
567 setsid();
568 ioctl(slavefd, TIOCSCTTY, 1);
569 pgrp = getpid();
570 tcsetpgrp(slavefd, pgrp);
571 setpgrp();
572 close(open(pty_name, O_WRONLY, 0));
573 setpgrp();
574 /* Close everything _else_, for tidiness. */
575 for (i = 3; i < 1024; i++)
576 close(i);
577 {
578 char term_env_var[10 + sizeof(cfg->termtype)];
579 sprintf(term_env_var, "TERM=%s", cfg->termtype);
580 putenv(term_env_var);
581 }
582 {
583 char windowid_env_var[40];
584 sprintf(windowid_env_var, "WINDOWID=%ld", windowid);
585 putenv(windowid_env_var);
586 }
587 /*
588 * SIGINT and SIGQUIT may have been set to ignored by our
589 * parent, particularly by things like sh -c 'pterm &' and
590 * some window managers. Reverse this for our child process.
591 */
592 putty_signal(SIGINT, SIG_DFL);
593 putty_signal(SIGQUIT, SIG_DFL);
594 if (pty_argv)
595 execvp(pty_argv[0], pty_argv);
596 else {
597 char *shell = getenv("SHELL");
598 char *shellname;
599 if (cfg->login_shell) {
600 char *p = strrchr(shell, '/');
601 shellname = snewn(2+strlen(shell), char);
602 p = p ? p+1 : shell;
603 sprintf(shellname, "-%s", p);
604 } else
605 shellname = shell;
606 execl(getenv("SHELL"), shellname, NULL);
607 }
608
609 /*
610 * If we're here, exec has gone badly foom.
611 */
612 perror("exec");
613 _exit(127);
614 } else {
615 pty_child_pid = pid;
616 pty_child_dead = FALSE;
617 pty_finished = FALSE;
618 }
619
620 if (pipe(pty_signal_pipe) < 0) {
621 perror("pipe");
622 exit(1);
623 }
624 pty_uxsel_setup();
625
626 return NULL;
627 }
628
629 static void pty_reconfig(void *handle, Config *cfg)
630 {
631 /*
632 * We don't have much need to reconfigure this backend, but
633 * unfortunately we do need to pick up the setting of Close On
634 * Exit so we know whether to give a `terminated' message.
635 */
636 pty_cfg = *cfg; /* structure copy */
637 }
638
639 /*
640 * Stub routine (never called in pterm).
641 */
642 static void pty_free(void *handle)
643 {
644 }
645
646 /*
647 * Called to send data down the pty.
648 */
649 static int pty_send(void *handle, char *buf, int len)
650 {
651 if (pty_master_fd < 0)
652 return 0; /* ignore all writes if fd closed */
653
654 while (len > 0) {
655 int ret = write(pty_master_fd, buf, len);
656 if (ret < 0) {
657 perror("write pty master");
658 exit(1);
659 }
660 buf += ret;
661 len -= ret;
662 }
663 return 0;
664 }
665
666 static void pty_close(void)
667 {
668 if (pty_master_fd >= 0) {
669 close(pty_master_fd);
670 pty_master_fd = -1;
671 }
672 if (pty_utmp_helper_pipe >= 0) {
673 close(pty_utmp_helper_pipe); /* this causes utmp to be cleaned up */
674 pty_utmp_helper_pipe = -1;
675 }
676 }
677
678 /*
679 * Called to query the current socket sendability status.
680 */
681 static int pty_sendbuffer(void *handle)
682 {
683 return 0;
684 }
685
686 /*
687 * Called to set the size of the window
688 */
689 static void pty_size(void *handle, int width, int height)
690 {
691 struct winsize size;
692
693 pty_term_width = width;
694 pty_term_height = height;
695
696 size.ws_row = (unsigned short)pty_term_height;
697 size.ws_col = (unsigned short)pty_term_width;
698 size.ws_xpixel = (unsigned short) pty_term_width *
699 font_dimension(pty_frontend, 0);
700 size.ws_ypixel = (unsigned short) pty_term_height *
701 font_dimension(pty_frontend, 1);
702 ioctl(pty_master_fd, TIOCSWINSZ, (void *)&size);
703 return;
704 }
705
706 /*
707 * Send special codes.
708 */
709 static void pty_special(void *handle, Telnet_Special code)
710 {
711 /* Do nothing! */
712 return;
713 }
714
715 /*
716 * Return a list of the special codes that make sense in this
717 * protocol.
718 */
719 static const struct telnet_special *pty_get_specials(void *handle)
720 {
721 /*
722 * Hmm. When I get round to having this actually usable, it
723 * might be quite nice to have the ability to deliver a few
724 * well chosen signals to the child process - SIGINT, SIGTERM,
725 * SIGKILL at least.
726 */
727 return NULL;
728 }
729
730 static Socket pty_socket(void *handle)
731 {
732 return NULL; /* shouldn't ever be needed */
733 }
734
735 static int pty_sendok(void *handle)
736 {
737 return 1;
738 }
739
740 static void pty_unthrottle(void *handle, int backlog)
741 {
742 /* do nothing */
743 }
744
745 static int pty_ldisc(void *handle, int option)
746 {
747 return 0; /* neither editing nor echoing */
748 }
749
750 static void pty_provide_ldisc(void *handle, void *ldisc)
751 {
752 /* This is a stub. */
753 }
754
755 static void pty_provide_logctx(void *handle, void *logctx)
756 {
757 /* This is a stub. */
758 }
759
760 static int pty_exitcode(void *handle)
761 {
762 if (!pty_finished)
763 return -1; /* not dead yet */
764 else
765 return pty_exit_code;
766 }
767
768 Backend pty_backend = {
769 pty_init,
770 pty_free,
771 pty_reconfig,
772 pty_send,
773 pty_sendbuffer,
774 pty_size,
775 pty_special,
776 pty_get_specials,
777 pty_socket,
778 pty_exitcode,
779 pty_sendok,
780 pty_ldisc,
781 pty_provide_ldisc,
782 pty_provide_logctx,
783 pty_unthrottle,
784 1
785 };