The back ends now contain their own copies of the Config structure,
[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 #include <features.h>
17
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <unistd.h>
22 #include <signal.h>
23 #include <fcntl.h>
24 #include <termios.h>
25 #include <grp.h>
26 #include <utmp.h>
27 #include <pwd.h>
28 #include <time.h>
29 #include <sys/types.h>
30 #include <sys/wait.h>
31 #include <sys/ioctl.h>
32 #include <errno.h>
33
34 #include "putty.h"
35
36 #ifndef FALSE
37 #define FALSE 0
38 #endif
39 #ifndef TRUE
40 #define TRUE 1
41 #endif
42
43 #ifndef UTMP_FILE
44 #define UTMP_FILE "/var/run/utmp"
45 #endif
46 #ifndef WTMP_FILE
47 #define WTMP_FILE "/var/log/wtmp"
48 #endif
49 #ifndef LASTLOG_FILE
50 #ifdef _PATH_LASTLOG
51 #define LASTLOG_FILE _PATH_LASTLOG
52 #else
53 #define LASTLOG_FILE "/var/log/lastlog"
54 #endif
55 #endif
56
57 /*
58 * Set up a default for vaguely sane systems. The idea is that if
59 * OMIT_UTMP is not defined, then at least one of the symbols which
60 * enable particular forms of utmp processing should be, if only so
61 * that a link error can warn you that you should have defined
62 * OMIT_UTMP if you didn't want any. Currently HAVE_PUTUTLINE is
63 * the only such symbol.
64 */
65 #ifndef OMIT_UTMP
66 #if !defined HAVE_PUTUTLINE
67 #define HAVE_PUTUTLINE
68 #endif
69 #endif
70
71 int pty_master_fd;
72 static void *pty_frontend;
73 static char pty_name[FILENAME_MAX];
74 static int pty_stamped_utmp = 0;
75 static int pty_child_pid;
76 static int pty_utmp_helper_pid, pty_utmp_helper_pipe;
77 static int pty_term_width, pty_term_height;
78 static volatile sig_atomic_t pty_child_dead;
79 static volatile int pty_exit_code;
80 #ifndef OMIT_UTMP
81 static struct utmp utmp_entry;
82 #endif
83 char **pty_argv;
84
85 static void setup_utmp(char *ttyname, char *location)
86 {
87 #ifndef OMIT_UTMP
88 #ifdef HAVE_LASTLOG
89 struct lastlog lastlog_entry;
90 FILE *lastlog;
91 #endif
92 struct passwd *pw;
93 FILE *wtmp;
94
95 pw = getpwuid(getuid());
96 memset(&utmp_entry, 0, sizeof(utmp_entry));
97 utmp_entry.ut_type = USER_PROCESS;
98 utmp_entry.ut_pid = getpid();
99 strncpy(utmp_entry.ut_line, ttyname+5, lenof(utmp_entry.ut_line));
100 strncpy(utmp_entry.ut_id, ttyname+8, lenof(utmp_entry.ut_id));
101 strncpy(utmp_entry.ut_user, pw->pw_name, lenof(utmp_entry.ut_user));
102 strncpy(utmp_entry.ut_host, location, lenof(utmp_entry.ut_host));
103 time(&utmp_entry.ut_time);
104
105 #if defined HAVE_PUTUTLINE
106 utmpname(UTMP_FILE);
107 setutent();
108 pututline(&utmp_entry);
109 endutent();
110 #endif
111
112 if ((wtmp = fopen(WTMP_FILE, "a")) != NULL) {
113 fwrite(&utmp_entry, 1, sizeof(utmp_entry), wtmp);
114 fclose(wtmp);
115 }
116
117 #ifdef HAVE_LASTLOG
118 memset(&lastlog_entry, 0, sizeof(lastlog_entry));
119 strncpy(lastlog_entry.ll_line, ttyname+5, lenof(lastlog_entry.ll_line));
120 strncpy(lastlog_entry.ll_host, location, lenof(lastlog_entry.ll_host));
121 time(&lastlog_entry.ll_time);
122 if ((lastlog = fopen(LASTLOG_FILE, "r+")) != NULL) {
123 fseek(lastlog, sizeof(lastlog_entry) * getuid(), SEEK_SET);
124 fwrite(&lastlog_entry, 1, sizeof(lastlog_entry), lastlog);
125 fclose(lastlog);
126 }
127 #endif
128
129 pty_stamped_utmp = 1;
130
131 #endif
132 }
133
134 static void cleanup_utmp(void)
135 {
136 #ifndef OMIT_UTMP
137 FILE *wtmp;
138
139 if (!pty_stamped_utmp)
140 return;
141
142 utmp_entry.ut_type = DEAD_PROCESS;
143 memset(utmp_entry.ut_user, 0, lenof(utmp_entry.ut_user));
144 time(&utmp_entry.ut_time);
145
146 if ((wtmp = fopen(WTMP_FILE, "a")) != NULL) {
147 fwrite(&utmp_entry, 1, sizeof(utmp_entry), wtmp);
148 fclose(wtmp);
149 }
150
151 memset(utmp_entry.ut_line, 0, lenof(utmp_entry.ut_line));
152 utmp_entry.ut_time = 0;
153
154 #if defined HAVE_PUTUTLINE
155 utmpname(UTMP_FILE);
156 setutent();
157 pututline(&utmp_entry);
158 endutent();
159 #endif
160
161 pty_stamped_utmp = 0; /* ensure we never double-cleanup */
162 #endif
163 }
164
165 static void sigchld_handler(int signum)
166 {
167 int save_errno = errno;
168 pid_t pid;
169 int status;
170
171 do {
172 pid = waitpid(-1, &status, WNOHANG);
173 if (pid == pty_child_pid && (WIFEXITED(status) || WIFSIGNALED(status))) {
174 pty_exit_code = status;
175 pty_child_dead = TRUE;
176 }
177 } while(pid > 0);
178 errno = save_errno;
179 }
180
181 static void fatal_sig_handler(int signum)
182 {
183 putty_signal(signum, SIG_DFL);
184 cleanup_utmp();
185 setuid(getuid());
186 raise(signum);
187 }
188
189 static void pty_open_master(void)
190 {
191 #ifdef BSD_PTYS
192 const char chars1[] = "pqrstuvwxyz";
193 const char chars2[] = "0123456789abcdef";
194 const char *p1, *p2;
195 char master_name[20];
196 struct group *gp;
197
198 for (p1 = chars1; *p1; p1++)
199 for (p2 = chars2; *p2; p2++) {
200 sprintf(master_name, "/dev/pty%c%c", *p1, *p2);
201 pty_master_fd = open(master_name, O_RDWR);
202 if (pty_master_fd >= 0) {
203 if (geteuid() == 0 ||
204 access(master_name, R_OK | W_OK) == 0)
205 goto got_one;
206 close(pty_master_fd);
207 }
208 }
209
210 /* If we get here, we couldn't get a tty at all. */
211 fprintf(stderr, "pterm: unable to open a pseudo-terminal device\n");
212 exit(1);
213
214 got_one:
215 strcpy(pty_name, master_name);
216 pty_name[5] = 't'; /* /dev/ptyXX -> /dev/ttyXX */
217
218 /* We need to chown/chmod the /dev/ttyXX device. */
219 gp = getgrnam("tty");
220 chown(pty_name, getuid(), gp ? gp->gr_gid : -1);
221 chmod(pty_name, 0600);
222 #else
223 pty_master_fd = open("/dev/ptmx", O_RDWR);
224
225 if (pty_master_fd < 0) {
226 perror("/dev/ptmx: open");
227 exit(1);
228 }
229
230 if (grantpt(pty_master_fd) < 0) {
231 perror("grantpt");
232 exit(1);
233 }
234
235 if (unlockpt(pty_master_fd) < 0) {
236 perror("unlockpt");
237 exit(1);
238 }
239
240 pty_name[FILENAME_MAX-1] = '\0';
241 strncpy(pty_name, ptsname(pty_master_fd), FILENAME_MAX-1);
242 #endif
243 }
244
245 /*
246 * Pre-initialisation. This is here to get around the fact that GTK
247 * doesn't like being run in setuid/setgid programs (probably
248 * sensibly). So before we initialise GTK - and therefore before we
249 * even process the command line - we check to see if we're running
250 * set[ug]id. If so, we open our pty master _now_, chown it as
251 * necessary, and drop privileges. We can always close it again
252 * later. If we're potentially going to be doing utmp as well, we
253 * also fork off a utmp helper process and communicate with it by
254 * means of a pipe; the utmp helper will keep privileges in order
255 * to clean up utmp when we exit (i.e. when its end of our pipe
256 * closes).
257 */
258 void pty_pre_init(void)
259 {
260 pid_t pid;
261 int pipefd[2];
262
263 /* set the child signal handler straight away; it needs to be set
264 * before we ever fork. */
265 putty_signal(SIGCHLD, sigchld_handler);
266 pty_master_fd = -1;
267
268 if (geteuid() != getuid() || getegid() != getgid()) {
269 pty_open_master();
270 }
271
272 #ifndef OMIT_UTMP
273 /*
274 * Fork off the utmp helper.
275 */
276 if (pipe(pipefd) < 0) {
277 perror("pterm: pipe");
278 exit(1);
279 }
280 pid = fork();
281 if (pid < 0) {
282 perror("pterm: fork");
283 exit(1);
284 } else if (pid == 0) {
285 char display[128], buffer[128];
286 int dlen, ret;
287
288 close(pipefd[1]);
289 /*
290 * Now sit here until we receive a display name from the
291 * other end of the pipe, and then stamp utmp. Unstamp utmp
292 * again, and exit, when the pipe closes.
293 */
294
295 dlen = 0;
296 while (1) {
297
298 ret = read(pipefd[0], buffer, lenof(buffer));
299 if (ret <= 0) {
300 cleanup_utmp();
301 _exit(0);
302 } else if (!pty_stamped_utmp) {
303 if (dlen < lenof(display))
304 memcpy(display+dlen, buffer,
305 min(ret, lenof(display)-dlen));
306 if (buffer[ret-1] == '\0') {
307 /*
308 * Now we have a display name. NUL-terminate
309 * it, and stamp utmp.
310 */
311 display[lenof(display)-1] = '\0';
312 /*
313 * Trap as many fatal signals as we can in the
314 * hope of having the best possible chance to
315 * clean up utmp before termination. We are
316 * unfortunately unprotected against SIGKILL,
317 * but that's life.
318 */
319 putty_signal(SIGHUP, fatal_sig_handler);
320 putty_signal(SIGINT, fatal_sig_handler);
321 putty_signal(SIGQUIT, fatal_sig_handler);
322 putty_signal(SIGILL, fatal_sig_handler);
323 putty_signal(SIGABRT, fatal_sig_handler);
324 putty_signal(SIGFPE, fatal_sig_handler);
325 putty_signal(SIGPIPE, fatal_sig_handler);
326 putty_signal(SIGALRM, fatal_sig_handler);
327 putty_signal(SIGTERM, fatal_sig_handler);
328 putty_signal(SIGSEGV, fatal_sig_handler);
329 putty_signal(SIGUSR1, fatal_sig_handler);
330 putty_signal(SIGUSR2, fatal_sig_handler);
331 #ifdef SIGBUS
332 putty_signal(SIGBUS, fatal_sig_handler);
333 #endif
334 #ifdef SIGPOLL
335 putty_signal(SIGPOLL, fatal_sig_handler);
336 #endif
337 #ifdef SIGPROF
338 putty_signal(SIGPROF, fatal_sig_handler);
339 #endif
340 #ifdef SIGSYS
341 putty_signal(SIGSYS, fatal_sig_handler);
342 #endif
343 #ifdef SIGTRAP
344 putty_signal(SIGTRAP, fatal_sig_handler);
345 #endif
346 #ifdef SIGVTALRM
347 putty_signal(SIGVTALRM, fatal_sig_handler);
348 #endif
349 #ifdef SIGXCPU
350 putty_signal(SIGXCPU, fatal_sig_handler);
351 #endif
352 #ifdef SIGXFSZ
353 putty_signal(SIGXFSZ, fatal_sig_handler);
354 #endif
355 #ifdef SIGIO
356 putty_signal(SIGIO, fatal_sig_handler);
357 #endif
358 setup_utmp(pty_name, display);
359 }
360 }
361 }
362 } else {
363 close(pipefd[0]);
364 pty_utmp_helper_pid = pid;
365 pty_utmp_helper_pipe = pipefd[1];
366 }
367 #endif
368
369 /* Drop privs. */
370 {
371 int gid = getgid(), uid = getuid();
372 #ifndef HAVE_NO_SETRESUID
373 int setresgid(gid_t, gid_t, gid_t);
374 int setresuid(uid_t, uid_t, uid_t);
375 setresgid(gid, gid, gid);
376 setresuid(uid, uid, uid);
377 #else
378 setgid(getgid());
379 setuid(getuid());
380 #endif
381 }
382 }
383
384 /*
385 * Called to set up the pty.
386 *
387 * Returns an error message, or NULL on success.
388 *
389 * Also places the canonical host name into `realhost'. It must be
390 * freed by the caller.
391 */
392 static char *pty_init(void *frontend, void **backend_handle, Config *cfg,
393 char *host, int port, char **realhost, int nodelay)
394 {
395 int slavefd;
396 pid_t pid, pgrp;
397
398 pty_frontend = frontend;
399 *backend_handle = NULL; /* we can't sensibly use this, sadly */
400
401 pty_term_width = cfg->width;
402 pty_term_height = cfg->height;
403
404 if (pty_master_fd < 0)
405 pty_open_master();
406
407 /*
408 * Set the backspace character to be whichever of ^H and ^? is
409 * specified by bksp_is_delete.
410 */
411 {
412 struct termios attrs;
413 tcgetattr(pty_master_fd, &attrs);
414 attrs.c_cc[VERASE] = cfg->bksp_is_delete ? '\177' : '\010';
415 tcsetattr(pty_master_fd, TCSANOW, &attrs);
416 }
417
418 /*
419 * Stamp utmp (that is, tell the utmp helper process to do so),
420 * or not.
421 */
422 if (!cfg->stamp_utmp)
423 close(pty_utmp_helper_pipe); /* just let the child process die */
424 else {
425 char *location = get_x_display(pty_frontend);
426 int len = strlen(location)+1, pos = 0; /* +1 to include NUL */
427 while (pos < len) {
428 int ret = write(pty_utmp_helper_pipe, location+pos, len - pos);
429 if (ret < 0) {
430 perror("pterm: writing to utmp helper process");
431 close(pty_utmp_helper_pipe); /* arrgh, just give up */
432 break;
433 }
434 pos += ret;
435 }
436 }
437
438 /*
439 * Fork and execute the command.
440 */
441 pid = fork();
442 if (pid < 0) {
443 perror("fork");
444 exit(1);
445 }
446
447 if (pid == 0) {
448 int i;
449 /*
450 * We are the child.
451 */
452
453 slavefd = open(pty_name, O_RDWR);
454 if (slavefd < 0) {
455 perror("slave pty: open");
456 _exit(1);
457 }
458
459 close(pty_master_fd);
460 fcntl(slavefd, F_SETFD, 0); /* don't close on exec */
461 dup2(slavefd, 0);
462 dup2(slavefd, 1);
463 dup2(slavefd, 2);
464 setsid();
465 ioctl(slavefd, TIOCSCTTY, 1);
466 pgrp = getpid();
467 tcsetpgrp(slavefd, pgrp);
468 setpgrp();
469 close(open(pty_name, O_WRONLY, 0));
470 setpgrp();
471 /* Close everything _else_, for tidiness. */
472 for (i = 3; i < 1024; i++)
473 close(i);
474 {
475 char term_env_var[10 + sizeof(cfg->termtype)];
476 sprintf(term_env_var, "TERM=%s", cfg->termtype);
477 putenv(term_env_var);
478 }
479 /*
480 * SIGINT and SIGQUIT may have been set to ignored by our
481 * parent, particularly by things like sh -c 'pterm &' and
482 * some window managers. Reverse this for our child process.
483 */
484 putty_signal(SIGINT, SIG_DFL);
485 putty_signal(SIGQUIT, SIG_DFL);
486 if (pty_argv)
487 execvp(pty_argv[0], pty_argv);
488 else {
489 char *shell = getenv("SHELL");
490 char *shellname;
491 if (cfg->login_shell) {
492 char *p = strrchr(shell, '/');
493 shellname = smalloc(2+strlen(shell));
494 p = p ? p+1 : shell;
495 sprintf(shellname, "-%s", p);
496 } else
497 shellname = shell;
498 execl(getenv("SHELL"), shellname, NULL);
499 }
500
501 /*
502 * If we're here, exec has gone badly foom.
503 */
504 perror("exec");
505 _exit(127);
506 } else {
507 pty_child_pid = pid;
508 pty_child_dead = FALSE;
509 }
510
511 return NULL;
512 }
513
514 /*
515 * Stub routine (we don't have any need to reconfigure this backend).
516 */
517 static void pty_reconfig(void *handle, Config *cfg)
518 {
519 }
520
521 /*
522 * Called to send data down the pty.
523 */
524 static int pty_send(void *handle, char *buf, int len)
525 {
526 if (pty_master_fd < 0)
527 return 0; /* ignore all writes if fd closed */
528
529 while (len > 0) {
530 int ret = write(pty_master_fd, buf, len);
531 if (ret < 0) {
532 perror("write pty master");
533 exit(1);
534 }
535 buf += ret;
536 len -= ret;
537 }
538 return 0;
539 }
540
541 void pty_close(void)
542 {
543 if (pty_master_fd >= 0) {
544 close(pty_master_fd);
545 pty_master_fd = -1;
546 }
547 close(pty_utmp_helper_pipe); /* this causes utmp to be cleaned up */
548 }
549
550 /*
551 * Called to query the current socket sendability status.
552 */
553 static int pty_sendbuffer(void *handle)
554 {
555 return 0;
556 }
557
558 /*
559 * Called to set the size of the window
560 */
561 static void pty_size(void *handle, int width, int height)
562 {
563 struct winsize size;
564
565 pty_term_width = width;
566 pty_term_height = height;
567
568 size.ws_row = (unsigned short)pty_term_height;
569 size.ws_col = (unsigned short)pty_term_width;
570 size.ws_xpixel = (unsigned short) pty_term_width *
571 font_dimension(pty_frontend, 0);
572 size.ws_ypixel = (unsigned short) pty_term_height *
573 font_dimension(pty_frontend, 1);
574 ioctl(pty_master_fd, TIOCSWINSZ, (void *)&size);
575 return;
576 }
577
578 /*
579 * Send special codes.
580 */
581 static void pty_special(void *handle, Telnet_Special code)
582 {
583 /* Do nothing! */
584 return;
585 }
586
587 static Socket pty_socket(void *handle)
588 {
589 return NULL; /* shouldn't ever be needed */
590 }
591
592 static int pty_sendok(void *handle)
593 {
594 return 1;
595 }
596
597 static void pty_unthrottle(void *handle, int backlog)
598 {
599 /* do nothing */
600 }
601
602 static int pty_ldisc(void *handle, int option)
603 {
604 return 0; /* neither editing nor echoing */
605 }
606
607 static void pty_provide_ldisc(void *handle, void *ldisc)
608 {
609 /* This is a stub. */
610 }
611
612 static void pty_provide_logctx(void *handle, void *logctx)
613 {
614 /* This is a stub. */
615 }
616
617 static int pty_exitcode(void *handle)
618 {
619 if (!pty_child_dead)
620 return -1; /* not dead yet */
621 else
622 return pty_exit_code;
623 }
624
625 Backend pty_backend = {
626 pty_init,
627 pty_reconfig,
628 pty_send,
629 pty_sendbuffer,
630 pty_size,
631 pty_special,
632 pty_socket,
633 pty_exitcode,
634 pty_sendok,
635 pty_ldisc,
636 pty_provide_ldisc,
637 pty_provide_logctx,
638 pty_unthrottle,
639 1
640 };