1 /* $OpenBSD: session.c,v 1.270 2014/01/31 16:39:19 tedu Exp $ */
2 /* $FreeBSD$ */
3 /*
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 *
7 * As far as I am concerned, the code I have written for this software
8 * can be used freely for any purpose. Any derived versions of this
9 * software must be clearly marked as such, and if the derived work is
10 * incompatible with the protocol description in the RFC file, it must be
11 * called by a name other than "ssh" or "Secure Shell".
12 *
13 * SSH2 support by Markus Friedl.
14 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36
37 #include "includes.h"
38 __RCSID("$FreeBSD$");
39
40 #include <sys/types.h>
41 #include <sys/param.h>
42 #ifdef HAVE_SYS_STAT_H
43 # include <sys/stat.h>
44 #endif
45 #include <sys/socket.h>
46 #include <sys/un.h>
47 #include <sys/wait.h>
48
49 #include <arpa/inet.h>
50
51 #include <errno.h>
52 #include <fcntl.h>
53 #include <grp.h>
54 #ifdef HAVE_PATHS_H
55 #include <paths.h>
56 #endif
57 #include <pwd.h>
58 #include <signal.h>
59 #include <stdarg.h>
60 #include <stdio.h>
61 #include <stdlib.h>
62 #include <string.h>
63 #include <unistd.h>
64
65 #include "openbsd-compat/sys-queue.h"
66 #include "xmalloc.h"
67 #include "ssh.h"
68 #include "ssh1.h"
69 #include "ssh2.h"
70 #include "sshpty.h"
71 #include "packet.h"
72 #include "buffer.h"
73 #include "match.h"
74 #include "uidswap.h"
75 #include "compat.h"
76 #include "channels.h"
77 #include "key.h"
78 #include "cipher.h"
79 #ifdef GSSAPI
80 #include "ssh-gss.h"
81 #endif
82 #include "hostfile.h"
83 #include "auth.h"
84 #include "auth-options.h"
85 #include "authfd.h"
86 #include "pathnames.h"
87 #include "log.h"
88 #include "servconf.h"
89 #include "sshlogin.h"
90 #include "serverloop.h"
91 #include "canohost.h"
92 #include "misc.h"
93 #include "session.h"
94 #include "kex.h"
95 #include "monitor_wrap.h"
96 #include "sftp.h"
97
98 #if defined(KRB5) && defined(USE_AFS)
99 #include <kafs.h>
100 #endif
101
102 #ifdef WITH_SELINUX
103 #include <selinux/selinux.h>
104 #endif
105
106 #define IS_INTERNAL_SFTP(c) \
107 (!strncmp(c, INTERNAL_SFTP_NAME, sizeof(INTERNAL_SFTP_NAME) - 1) && \
108 (c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\0' || \
109 c[sizeof(INTERNAL_SFTP_NAME) - 1] == ' ' || \
110 c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\t'))
111
112 /* func */
113
114 Session *session_new(void);
115 void session_set_fds(Session *, int, int, int, int, int);
116 void session_pty_cleanup(Session *);
117 void session_proctitle(Session *);
118 int session_setup_x11fwd(Session *);
119 int do_exec_pty(Session *, const char *);
120 int do_exec_no_pty(Session *, const char *);
121 int do_exec(Session *, const char *);
122 void do_login(Session *, const char *);
123 #ifdef LOGIN_NEEDS_UTMPX
124 static void do_pre_login(Session *s);
125 #endif
126 void do_child(Session *, const char *);
127 void do_motd(void);
128 int check_quietlogin(Session *, const char *);
129
130 static void do_authenticated1(Authctxt *);
131 static void do_authenticated2(Authctxt *);
132
133 static int session_pty_req(Session *);
134
135 /* import */
136 extern ServerOptions options;
137 extern char *__progname;
138 extern int log_stderr;
139 extern int debug_flag;
140 extern u_int utmp_len;
141 extern int startup_pipe;
142 extern void destroy_sensitive_data(void);
143 extern Buffer loginmsg;
144
145 /* original command from peer. */
146 const char *original_command = NULL;
147
148 /* data */
149 static int sessions_first_unused = -1;
150 static int sessions_nalloc = 0;
151 static Session *sessions = NULL;
152
153 #define SUBSYSTEM_NONE 0
154 #define SUBSYSTEM_EXT 1
155 #define SUBSYSTEM_INT_SFTP 2
156 #define SUBSYSTEM_INT_SFTP_ERROR 3
157
158 #ifdef HAVE_LOGIN_CAP
159 login_cap_t *lc;
160 #endif
161
162 static int is_child = 0;
163
164 /* Name and directory of socket for authentication agent forwarding. */
165 static char *auth_sock_name = NULL;
166 static char *auth_sock_dir = NULL;
167
168 /* removes the agent forwarding socket */
169
170 static void
auth_sock_cleanup_proc(struct passwd * pw)171 auth_sock_cleanup_proc(struct passwd *pw)
172 {
173 if (auth_sock_name != NULL) {
174 temporarily_use_uid(pw);
175 unlink(auth_sock_name);
176 rmdir(auth_sock_dir);
177 auth_sock_name = NULL;
178 restore_uid();
179 }
180 }
181
182 static int
auth_input_request_forwarding(struct passwd * pw)183 auth_input_request_forwarding(struct passwd * pw)
184 {
185 Channel *nc;
186 int sock = -1;
187 struct sockaddr_un sunaddr;
188
189 if (auth_sock_name != NULL) {
190 error("authentication forwarding requested twice.");
191 return 0;
192 }
193
194 /* Temporarily drop privileged uid for mkdir/bind. */
195 temporarily_use_uid(pw);
196
197 /* Allocate a buffer for the socket name, and format the name. */
198 auth_sock_dir = xstrdup("/tmp/ssh-XXXXXXXXXX");
199
200 /* Create private directory for socket */
201 if (mkdtemp(auth_sock_dir) == NULL) {
202 packet_send_debug("Agent forwarding disabled: "
203 "mkdtemp() failed: %.100s", strerror(errno));
204 restore_uid();
205 free(auth_sock_dir);
206 auth_sock_dir = NULL;
207 goto authsock_err;
208 }
209
210 xasprintf(&auth_sock_name, "%s/agent.%ld",
211 auth_sock_dir, (long) getpid());
212
213 /* Create the socket. */
214 sock = socket(AF_UNIX, SOCK_STREAM, 0);
215 if (sock < 0) {
216 error("socket: %.100s", strerror(errno));
217 restore_uid();
218 goto authsock_err;
219 }
220
221 /* Bind it to the name. */
222 memset(&sunaddr, 0, sizeof(sunaddr));
223 sunaddr.sun_family = AF_UNIX;
224 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
225
226 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0) {
227 error("bind: %.100s", strerror(errno));
228 restore_uid();
229 goto authsock_err;
230 }
231
232 /* Restore the privileged uid. */
233 restore_uid();
234
235 /* Start listening on the socket. */
236 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
237 error("listen: %.100s", strerror(errno));
238 goto authsock_err;
239 }
240
241 /*
242 * Allocate a channel for the authentication agent socket.
243 * Ignore HPN on that one given no improvement expected.
244 */
245 nc = channel_new("auth socket",
246 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
247 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
248 0, "auth socket", 1);
249 nc->path = xstrdup(auth_sock_name);
250 return 1;
251
252 authsock_err:
253 free(auth_sock_name);
254 if (auth_sock_dir != NULL) {
255 rmdir(auth_sock_dir);
256 free(auth_sock_dir);
257 }
258 if (sock != -1)
259 close(sock);
260 auth_sock_name = NULL;
261 auth_sock_dir = NULL;
262 return 0;
263 }
264
265 static void
display_loginmsg(void)266 display_loginmsg(void)
267 {
268 if (buffer_len(&loginmsg) > 0) {
269 buffer_append(&loginmsg, "\0", 1);
270 printf("%s", (char *)buffer_ptr(&loginmsg));
271 buffer_clear(&loginmsg);
272 }
273 }
274
275 void
do_authenticated(Authctxt * authctxt)276 do_authenticated(Authctxt *authctxt)
277 {
278 setproctitle("%s", authctxt->pw->pw_name);
279
280 /* setup the channel layer */
281 if (no_port_forwarding_flag ||
282 (options.allow_tcp_forwarding & FORWARD_LOCAL) == 0)
283 channel_disable_adm_local_opens();
284 else
285 channel_permit_all_opens();
286
287 auth_debug_send();
288
289 if (compat20)
290 do_authenticated2(authctxt);
291 else
292 do_authenticated1(authctxt);
293
294 do_cleanup(authctxt);
295 }
296
297 /*
298 * Prepares for an interactive session. This is called after the user has
299 * been successfully authenticated. During this message exchange, pseudo
300 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
301 * are requested, etc.
302 */
303 static void
do_authenticated1(Authctxt * authctxt)304 do_authenticated1(Authctxt *authctxt)
305 {
306 Session *s;
307 char *command;
308 int success, type, screen_flag;
309 int enable_compression_after_reply = 0;
310 u_int proto_len, data_len, dlen, compression_level = 0;
311
312 s = session_new();
313 if (s == NULL) {
314 error("no more sessions");
315 return;
316 }
317 s->authctxt = authctxt;
318 s->pw = authctxt->pw;
319
320 /*
321 * We stay in this loop until the client requests to execute a shell
322 * or a command.
323 */
324 for (;;) {
325 success = 0;
326
327 /* Get a packet from the client. */
328 type = packet_read();
329
330 /* Process the packet. */
331 switch (type) {
332 case SSH_CMSG_REQUEST_COMPRESSION:
333 compression_level = packet_get_int();
334 packet_check_eom();
335 if (compression_level < 1 || compression_level > 9) {
336 packet_send_debug("Received invalid compression level %d.",
337 compression_level);
338 break;
339 }
340 if (options.compression == COMP_NONE) {
341 debug2("compression disabled");
342 break;
343 }
344 /* Enable compression after we have responded with SUCCESS. */
345 enable_compression_after_reply = 1;
346 success = 1;
347 break;
348
349 case SSH_CMSG_REQUEST_PTY:
350 success = session_pty_req(s);
351 break;
352
353 case SSH_CMSG_X11_REQUEST_FORWARDING:
354 s->auth_proto = packet_get_string(&proto_len);
355 s->auth_data = packet_get_string(&data_len);
356
357 screen_flag = packet_get_protocol_flags() &
358 SSH_PROTOFLAG_SCREEN_NUMBER;
359 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
360
361 if (packet_remaining() == 4) {
362 if (!screen_flag)
363 debug2("Buggy client: "
364 "X11 screen flag missing");
365 s->screen = packet_get_int();
366 } else {
367 s->screen = 0;
368 }
369 packet_check_eom();
370 success = session_setup_x11fwd(s);
371 if (!success) {
372 free(s->auth_proto);
373 free(s->auth_data);
374 s->auth_proto = NULL;
375 s->auth_data = NULL;
376 }
377 break;
378
379 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
380 if (!options.allow_agent_forwarding ||
381 no_agent_forwarding_flag || compat13) {
382 debug("Authentication agent forwarding not permitted for this authentication.");
383 break;
384 }
385 debug("Received authentication agent forwarding request.");
386 success = auth_input_request_forwarding(s->pw);
387 break;
388
389 case SSH_CMSG_PORT_FORWARD_REQUEST:
390 if (no_port_forwarding_flag) {
391 debug("Port forwarding not permitted for this authentication.");
392 break;
393 }
394 if (!(options.allow_tcp_forwarding & FORWARD_REMOTE)) {
395 debug("Port forwarding not permitted.");
396 break;
397 }
398 debug("Received TCP/IP port forwarding request.");
399 if (channel_input_port_forward_request(s->pw->pw_uid == 0,
400 options.gateway_ports) < 0) {
401 debug("Port forwarding failed.");
402 break;
403 }
404 success = 1;
405 break;
406
407 case SSH_CMSG_MAX_PACKET_SIZE:
408 if (packet_set_maxsize(packet_get_int()) > 0)
409 success = 1;
410 break;
411
412 case SSH_CMSG_EXEC_SHELL:
413 case SSH_CMSG_EXEC_CMD:
414 if (type == SSH_CMSG_EXEC_CMD) {
415 command = packet_get_string(&dlen);
416 debug("Exec command '%.500s'", command);
417 if (do_exec(s, command) != 0)
418 packet_disconnect(
419 "command execution failed");
420 free(command);
421 } else {
422 if (do_exec(s, NULL) != 0)
423 packet_disconnect(
424 "shell execution failed");
425 }
426 packet_check_eom();
427 session_close(s);
428 return;
429
430 default:
431 /*
432 * Any unknown messages in this phase are ignored,
433 * and a failure message is returned.
434 */
435 logit("Unknown packet type received after authentication: %d", type);
436 }
437 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
438 packet_send();
439 packet_write_wait();
440
441 /* Enable compression now that we have replied if appropriate. */
442 if (enable_compression_after_reply) {
443 enable_compression_after_reply = 0;
444 packet_start_compression(compression_level);
445 }
446 }
447 }
448
449 #define USE_PIPES 1
450 /*
451 * This is called to fork and execute a command when we have no tty. This
452 * will call do_child from the child, and server_loop from the parent after
453 * setting up file descriptors and such.
454 */
455 int
do_exec_no_pty(Session * s,const char * command)456 do_exec_no_pty(Session *s, const char *command)
457 {
458 pid_t pid;
459
460 #ifdef USE_PIPES
461 int pin[2], pout[2], perr[2];
462
463 if (s == NULL)
464 fatal("do_exec_no_pty: no session");
465
466 /* Allocate pipes for communicating with the program. */
467 if (pipe(pin) < 0) {
468 error("%s: pipe in: %.100s", __func__, strerror(errno));
469 return -1;
470 }
471 if (pipe(pout) < 0) {
472 error("%s: pipe out: %.100s", __func__, strerror(errno));
473 close(pin[0]);
474 close(pin[1]);
475 return -1;
476 }
477 if (pipe(perr) < 0) {
478 error("%s: pipe err: %.100s", __func__,
479 strerror(errno));
480 close(pin[0]);
481 close(pin[1]);
482 close(pout[0]);
483 close(pout[1]);
484 return -1;
485 }
486 #else
487 int inout[2], err[2];
488
489 if (s == NULL)
490 fatal("do_exec_no_pty: no session");
491
492 /* Uses socket pairs to communicate with the program. */
493 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0) {
494 error("%s: socketpair #1: %.100s", __func__, strerror(errno));
495 return -1;
496 }
497 if (socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0) {
498 error("%s: socketpair #2: %.100s", __func__,
499 strerror(errno));
500 close(inout[0]);
501 close(inout[1]);
502 return -1;
503 }
504 #endif
505
506 session_proctitle(s);
507
508 /* Fork the child. */
509 switch ((pid = fork())) {
510 case -1:
511 error("%s: fork: %.100s", __func__, strerror(errno));
512 #ifdef USE_PIPES
513 close(pin[0]);
514 close(pin[1]);
515 close(pout[0]);
516 close(pout[1]);
517 close(perr[0]);
518 close(perr[1]);
519 #else
520 close(inout[0]);
521 close(inout[1]);
522 close(err[0]);
523 close(err[1]);
524 #endif
525 return -1;
526 case 0:
527 is_child = 1;
528
529 /* Child. Reinitialize the log since the pid has changed. */
530 log_init(__progname, options.log_level,
531 options.log_facility, log_stderr);
532
533 /*
534 * Create a new session and process group since the 4.4BSD
535 * setlogin() affects the entire process group.
536 */
537 if (setsid() < 0)
538 error("setsid failed: %.100s", strerror(errno));
539
540 #ifdef USE_PIPES
541 /*
542 * Redirect stdin. We close the parent side of the socket
543 * pair, and make the child side the standard input.
544 */
545 close(pin[1]);
546 if (dup2(pin[0], 0) < 0)
547 perror("dup2 stdin");
548 close(pin[0]);
549
550 /* Redirect stdout. */
551 close(pout[0]);
552 if (dup2(pout[1], 1) < 0)
553 perror("dup2 stdout");
554 close(pout[1]);
555
556 /* Redirect stderr. */
557 close(perr[0]);
558 if (dup2(perr[1], 2) < 0)
559 perror("dup2 stderr");
560 close(perr[1]);
561 #else
562 /*
563 * Redirect stdin, stdout, and stderr. Stdin and stdout will
564 * use the same socket, as some programs (particularly rdist)
565 * seem to depend on it.
566 */
567 close(inout[1]);
568 close(err[1]);
569 if (dup2(inout[0], 0) < 0) /* stdin */
570 perror("dup2 stdin");
571 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
572 perror("dup2 stdout");
573 close(inout[0]);
574 if (dup2(err[0], 2) < 0) /* stderr */
575 perror("dup2 stderr");
576 close(err[0]);
577 #endif
578
579
580 #ifdef _UNICOS
581 cray_init_job(s->pw); /* set up cray jid and tmpdir */
582 #endif
583
584 /* Do processing for the child (exec command etc). */
585 do_child(s, command);
586 /* NOTREACHED */
587 default:
588 break;
589 }
590
591 #ifdef _UNICOS
592 signal(WJSIGNAL, cray_job_termination_handler);
593 #endif /* _UNICOS */
594 #ifdef HAVE_CYGWIN
595 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
596 #endif
597
598 s->pid = pid;
599 /* Set interactive/non-interactive mode. */
600 packet_set_interactive(s->display != NULL,
601 options.ip_qos_interactive, options.ip_qos_bulk);
602
603 /*
604 * Clear loginmsg, since it's the child's responsibility to display
605 * it to the user, otherwise multiple sessions may accumulate
606 * multiple copies of the login messages.
607 */
608 buffer_clear(&loginmsg);
609
610 #ifdef USE_PIPES
611 /* We are the parent. Close the child sides of the pipes. */
612 close(pin[0]);
613 close(pout[1]);
614 close(perr[1]);
615
616 if (compat20) {
617 session_set_fds(s, pin[1], pout[0], perr[0],
618 s->is_subsystem, 0);
619 } else {
620 /* Enter the interactive session. */
621 server_loop(pid, pin[1], pout[0], perr[0]);
622 /* server_loop has closed pin[1], pout[0], and perr[0]. */
623 }
624 #else
625 /* We are the parent. Close the child sides of the socket pairs. */
626 close(inout[0]);
627 close(err[0]);
628
629 /*
630 * Enter the interactive session. Note: server_loop must be able to
631 * handle the case that fdin and fdout are the same.
632 */
633 if (compat20) {
634 session_set_fds(s, inout[1], inout[1], err[1],
635 s->is_subsystem, 0);
636 } else {
637 server_loop(pid, inout[1], inout[1], err[1]);
638 /* server_loop has closed inout[1] and err[1]. */
639 }
640 #endif
641 return 0;
642 }
643
644 /*
645 * This is called to fork and execute a command when we have a tty. This
646 * will call do_child from the child, and server_loop from the parent after
647 * setting up file descriptors, controlling tty, updating wtmp, utmp,
648 * lastlog, and other such operations.
649 */
650 int
do_exec_pty(Session * s,const char * command)651 do_exec_pty(Session *s, const char *command)
652 {
653 int fdout, ptyfd, ttyfd, ptymaster;
654 pid_t pid;
655
656 if (s == NULL)
657 fatal("do_exec_pty: no session");
658 ptyfd = s->ptyfd;
659 ttyfd = s->ttyfd;
660
661 /*
662 * Create another descriptor of the pty master side for use as the
663 * standard input. We could use the original descriptor, but this
664 * simplifies code in server_loop. The descriptor is bidirectional.
665 * Do this before forking (and cleanup in the child) so as to
666 * detect and gracefully fail out-of-fd conditions.
667 */
668 if ((fdout = dup(ptyfd)) < 0) {
669 error("%s: dup #1: %s", __func__, strerror(errno));
670 close(ttyfd);
671 close(ptyfd);
672 return -1;
673 }
674 /* we keep a reference to the pty master */
675 if ((ptymaster = dup(ptyfd)) < 0) {
676 error("%s: dup #2: %s", __func__, strerror(errno));
677 close(ttyfd);
678 close(ptyfd);
679 close(fdout);
680 return -1;
681 }
682
683 /* Fork the child. */
684 switch ((pid = fork())) {
685 case -1:
686 error("%s: fork: %.100s", __func__, strerror(errno));
687 close(fdout);
688 close(ptymaster);
689 close(ttyfd);
690 close(ptyfd);
691 return -1;
692 case 0:
693 is_child = 1;
694
695 close(fdout);
696 close(ptymaster);
697
698 /* Child. Reinitialize the log because the pid has changed. */
699 log_init(__progname, options.log_level,
700 options.log_facility, log_stderr);
701 /* Close the master side of the pseudo tty. */
702 close(ptyfd);
703
704 /* Make the pseudo tty our controlling tty. */
705 pty_make_controlling_tty(&ttyfd, s->tty);
706
707 /* Redirect stdin/stdout/stderr from the pseudo tty. */
708 if (dup2(ttyfd, 0) < 0)
709 error("dup2 stdin: %s", strerror(errno));
710 if (dup2(ttyfd, 1) < 0)
711 error("dup2 stdout: %s", strerror(errno));
712 if (dup2(ttyfd, 2) < 0)
713 error("dup2 stderr: %s", strerror(errno));
714
715 /* Close the extra descriptor for the pseudo tty. */
716 close(ttyfd);
717
718 /* record login, etc. similar to login(1) */
719 #ifndef HAVE_OSF_SIA
720 if (!(options.use_login && command == NULL)) {
721 #ifdef _UNICOS
722 cray_init_job(s->pw); /* set up cray jid and tmpdir */
723 #endif /* _UNICOS */
724 do_login(s, command);
725 }
726 # ifdef LOGIN_NEEDS_UTMPX
727 else
728 do_pre_login(s);
729 # endif
730 #endif
731 /*
732 * Do common processing for the child, such as execing
733 * the command.
734 */
735 do_child(s, command);
736 /* NOTREACHED */
737 default:
738 break;
739 }
740
741 #ifdef _UNICOS
742 signal(WJSIGNAL, cray_job_termination_handler);
743 #endif /* _UNICOS */
744 #ifdef HAVE_CYGWIN
745 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
746 #endif
747
748 s->pid = pid;
749
750 /* Parent. Close the slave side of the pseudo tty. */
751 close(ttyfd);
752
753 /* Enter interactive session. */
754 s->ptymaster = ptymaster;
755 packet_set_interactive(1,
756 options.ip_qos_interactive, options.ip_qos_bulk);
757 if (compat20) {
758 session_set_fds(s, ptyfd, fdout, -1, 1, 1);
759 } else {
760 server_loop(pid, ptyfd, fdout, -1);
761 /* server_loop _has_ closed ptyfd and fdout. */
762 }
763 return 0;
764 }
765
766 #ifdef LOGIN_NEEDS_UTMPX
767 static void
do_pre_login(Session * s)768 do_pre_login(Session *s)
769 {
770 socklen_t fromlen;
771 struct sockaddr_storage from;
772 pid_t pid = getpid();
773
774 /*
775 * Get IP address of client. If the connection is not a socket, let
776 * the address be 0.0.0.0.
777 */
778 memset(&from, 0, sizeof(from));
779 fromlen = sizeof(from);
780 if (packet_connection_is_on_socket()) {
781 if (getpeername(packet_get_connection_in(),
782 (struct sockaddr *)&from, &fromlen) < 0) {
783 debug("getpeername: %.100s", strerror(errno));
784 cleanup_exit(255);
785 }
786 }
787
788 record_utmp_only(pid, s->tty, s->pw->pw_name,
789 get_remote_name_or_ip(utmp_len, options.use_dns),
790 (struct sockaddr *)&from, fromlen);
791 }
792 #endif
793
794 /*
795 * This is called to fork and execute a command. If another command is
796 * to be forced, execute that instead.
797 */
798 int
do_exec(Session * s,const char * command)799 do_exec(Session *s, const char *command)
800 {
801 int ret;
802 const char *forced = NULL;
803 char session_type[1024], *tty = NULL;
804
805 if (options.adm_forced_command) {
806 original_command = command;
807 command = options.adm_forced_command;
808 forced = "(config)";
809 } else if (forced_command) {
810 original_command = command;
811 command = forced_command;
812 forced = "(key-option)";
813 }
814 if (forced != NULL) {
815 if (IS_INTERNAL_SFTP(command)) {
816 s->is_subsystem = s->is_subsystem ?
817 SUBSYSTEM_INT_SFTP : SUBSYSTEM_INT_SFTP_ERROR;
818 } else if (s->is_subsystem)
819 s->is_subsystem = SUBSYSTEM_EXT;
820 snprintf(session_type, sizeof(session_type),
821 "forced-command %s '%.900s'", forced, command);
822 } else if (s->is_subsystem) {
823 snprintf(session_type, sizeof(session_type),
824 "subsystem '%.900s'", s->subsys);
825 } else if (command == NULL) {
826 snprintf(session_type, sizeof(session_type), "shell");
827 } else {
828 /* NB. we don't log unforced commands to preserve privacy */
829 snprintf(session_type, sizeof(session_type), "command");
830 }
831
832 if (s->ttyfd != -1) {
833 tty = s->tty;
834 if (strncmp(tty, "/dev/", 5) == 0)
835 tty += 5;
836 }
837
838 verbose("Starting session: %s%s%s for %s from %.200s port %d",
839 session_type,
840 tty == NULL ? "" : " on ",
841 tty == NULL ? "" : tty,
842 s->pw->pw_name,
843 get_remote_ipaddr(),
844 get_remote_port());
845
846 #ifdef SSH_AUDIT_EVENTS
847 if (command != NULL)
848 PRIVSEP(audit_run_command(command));
849 else if (s->ttyfd == -1) {
850 char *shell = s->pw->pw_shell;
851
852 if (shell[0] == '\0') /* empty shell means /bin/sh */
853 shell =_PATH_BSHELL;
854 PRIVSEP(audit_run_command(shell));
855 }
856 #endif
857 if (s->ttyfd != -1)
858 ret = do_exec_pty(s, command);
859 else
860 ret = do_exec_no_pty(s, command);
861
862 original_command = NULL;
863
864 /*
865 * Clear loginmsg: it's the child's responsibility to display
866 * it to the user, otherwise multiple sessions may accumulate
867 * multiple copies of the login messages.
868 */
869 buffer_clear(&loginmsg);
870
871 return ret;
872 }
873
874 /* administrative, login(1)-like work */
875 void
do_login(Session * s,const char * command)876 do_login(Session *s, const char *command)
877 {
878 socklen_t fromlen;
879 struct sockaddr_storage from;
880 struct passwd * pw = s->pw;
881 pid_t pid = getpid();
882
883 /*
884 * Get IP address of client. If the connection is not a socket, let
885 * the address be 0.0.0.0.
886 */
887 memset(&from, 0, sizeof(from));
888 fromlen = sizeof(from);
889 if (packet_connection_is_on_socket()) {
890 if (getpeername(packet_get_connection_in(),
891 (struct sockaddr *)&from, &fromlen) < 0) {
892 debug("getpeername: %.100s", strerror(errno));
893 cleanup_exit(255);
894 }
895 }
896
897 /* Record that there was a login on that tty from the remote host. */
898 if (!use_privsep)
899 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
900 get_remote_name_or_ip(utmp_len,
901 options.use_dns),
902 (struct sockaddr *)&from, fromlen);
903
904 #ifdef USE_PAM
905 /*
906 * If password change is needed, do it now.
907 * This needs to occur before the ~/.hushlogin check.
908 */
909 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
910 display_loginmsg();
911 do_pam_chauthtok();
912 s->authctxt->force_pwchange = 0;
913 /* XXX - signal [net] parent to enable forwardings */
914 }
915 #endif
916
917 if (check_quietlogin(s, command))
918 return;
919
920 display_loginmsg();
921
922 do_motd();
923 }
924
925 /*
926 * Display the message of the day.
927 */
928 void
do_motd(void)929 do_motd(void)
930 {
931 FILE *f;
932 char buf[256];
933
934 if (options.print_motd) {
935 #ifdef HAVE_LOGIN_CAP
936 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
937 "/etc/motd"), "r");
938 #else
939 f = fopen("/etc/motd", "r");
940 #endif
941 if (f) {
942 while (fgets(buf, sizeof(buf), f))
943 fputs(buf, stdout);
944 fclose(f);
945 }
946 }
947 }
948
949
950 /*
951 * Check for quiet login, either .hushlogin or command given.
952 */
953 int
check_quietlogin(Session * s,const char * command)954 check_quietlogin(Session *s, const char *command)
955 {
956 char buf[256];
957 struct passwd *pw = s->pw;
958 struct stat st;
959
960 /* Return 1 if .hushlogin exists or a command given. */
961 if (command != NULL)
962 return 1;
963 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
964 #ifdef HAVE_LOGIN_CAP
965 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
966 return 1;
967 #else
968 if (stat(buf, &st) >= 0)
969 return 1;
970 #endif
971 return 0;
972 }
973
974 /*
975 * Sets the value of the given variable in the environment. If the variable
976 * already exists, its value is overridden.
977 */
978 void
child_set_env(char *** envp,u_int * envsizep,const char * name,const char * value)979 child_set_env(char ***envp, u_int *envsizep, const char *name,
980 const char *value)
981 {
982 char **env;
983 u_int envsize;
984 u_int i, namelen;
985
986 if (strchr(name, '=') != NULL) {
987 error("Invalid environment variable \"%.100s\"", name);
988 return;
989 }
990
991 /*
992 * If we're passed an uninitialized list, allocate a single null
993 * entry before continuing.
994 */
995 if (*envp == NULL && *envsizep == 0) {
996 *envp = xmalloc(sizeof(char *));
997 *envp[0] = NULL;
998 *envsizep = 1;
999 }
1000
1001 /*
1002 * Find the slot where the value should be stored. If the variable
1003 * already exists, we reuse the slot; otherwise we append a new slot
1004 * at the end of the array, expanding if necessary.
1005 */
1006 env = *envp;
1007 namelen = strlen(name);
1008 for (i = 0; env[i]; i++)
1009 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
1010 break;
1011 if (env[i]) {
1012 /* Reuse the slot. */
1013 free(env[i]);
1014 } else {
1015 /* New variable. Expand if necessary. */
1016 envsize = *envsizep;
1017 if (i >= envsize - 1) {
1018 if (envsize >= 1000)
1019 fatal("child_set_env: too many env vars");
1020 envsize += 50;
1021 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
1022 *envsizep = envsize;
1023 }
1024 /* Need to set the NULL pointer at end of array beyond the new slot. */
1025 env[i + 1] = NULL;
1026 }
1027
1028 /* Allocate space and format the variable in the appropriate slot. */
1029 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
1030 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
1031 }
1032
1033 /*
1034 * Reads environment variables from the given file and adds/overrides them
1035 * into the environment. If the file does not exist, this does nothing.
1036 * Otherwise, it must consist of empty lines, comments (line starts with '#')
1037 * and assignments of the form name=value. No other forms are allowed.
1038 */
1039 static void
read_environment_file(char *** env,u_int * envsize,const char * filename)1040 read_environment_file(char ***env, u_int *envsize,
1041 const char *filename)
1042 {
1043 FILE *f;
1044 char buf[4096];
1045 char *cp, *value;
1046 u_int lineno = 0;
1047
1048 f = fopen(filename, "r");
1049 if (!f)
1050 return;
1051
1052 while (fgets(buf, sizeof(buf), f)) {
1053 if (++lineno > 1000)
1054 fatal("Too many lines in environment file %s", filename);
1055 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
1056 ;
1057 if (!*cp || *cp == '#' || *cp == '\n')
1058 continue;
1059
1060 cp[strcspn(cp, "\n")] = '\0';
1061
1062 value = strchr(cp, '=');
1063 if (value == NULL) {
1064 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
1065 filename);
1066 continue;
1067 }
1068 /*
1069 * Replace the equals sign by nul, and advance value to
1070 * the value string.
1071 */
1072 *value = '\0';
1073 value++;
1074 child_set_env(env, envsize, cp, value);
1075 }
1076 fclose(f);
1077 }
1078
1079 #ifdef HAVE_ETC_DEFAULT_LOGIN
1080 /*
1081 * Return named variable from specified environment, or NULL if not present.
1082 */
1083 static char *
child_get_env(char ** env,const char * name)1084 child_get_env(char **env, const char *name)
1085 {
1086 int i;
1087 size_t len;
1088
1089 len = strlen(name);
1090 for (i=0; env[i] != NULL; i++)
1091 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
1092 return(env[i] + len + 1);
1093 return NULL;
1094 }
1095
1096 /*
1097 * Read /etc/default/login.
1098 * We pick up the PATH (or SUPATH for root) and UMASK.
1099 */
1100 static void
read_etc_default_login(char *** env,u_int * envsize,uid_t uid)1101 read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
1102 {
1103 char **tmpenv = NULL, *var;
1104 u_int i, tmpenvsize = 0;
1105 u_long mask;
1106
1107 /*
1108 * We don't want to copy the whole file to the child's environment,
1109 * so we use a temporary environment and copy the variables we're
1110 * interested in.
1111 */
1112 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
1113
1114 if (tmpenv == NULL)
1115 return;
1116
1117 if (uid == 0)
1118 var = child_get_env(tmpenv, "SUPATH");
1119 else
1120 var = child_get_env(tmpenv, "PATH");
1121 if (var != NULL)
1122 child_set_env(env, envsize, "PATH", var);
1123
1124 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
1125 if (sscanf(var, "%5lo", &mask) == 1)
1126 umask((mode_t)mask);
1127
1128 for (i = 0; tmpenv[i] != NULL; i++)
1129 free(tmpenv[i]);
1130 free(tmpenv);
1131 }
1132 #endif /* HAVE_ETC_DEFAULT_LOGIN */
1133
1134 void
copy_environment(char ** source,char *** env,u_int * envsize)1135 copy_environment(char **source, char ***env, u_int *envsize)
1136 {
1137 char *var_name, *var_val;
1138 int i;
1139
1140 if (source == NULL)
1141 return;
1142
1143 for(i = 0; source[i] != NULL; i++) {
1144 var_name = xstrdup(source[i]);
1145 if ((var_val = strstr(var_name, "=")) == NULL) {
1146 free(var_name);
1147 continue;
1148 }
1149 *var_val++ = '\0';
1150
1151 debug3("Copy environment: %s=%s", var_name, var_val);
1152 child_set_env(env, envsize, var_name, var_val);
1153
1154 free(var_name);
1155 }
1156 }
1157
1158 static char **
do_setup_env(Session * s,const char * shell)1159 do_setup_env(Session *s, const char *shell)
1160 {
1161 char buf[256];
1162 u_int i, envsize;
1163 char **env, *laddr;
1164 struct passwd *pw = s->pw;
1165 #if !defined (HAVE_LOGIN_CAP) && !defined (HAVE_CYGWIN)
1166 char *path = NULL;
1167 #else
1168 extern char **environ;
1169 char **senv, **var;
1170 #endif
1171
1172 /* Initialize the environment. */
1173 envsize = 100;
1174 env = xcalloc(envsize, sizeof(char *));
1175 env[0] = NULL;
1176
1177 #ifdef HAVE_CYGWIN
1178 /*
1179 * The Windows environment contains some setting which are
1180 * important for a running system. They must not be dropped.
1181 */
1182 {
1183 char **p;
1184
1185 p = fetch_windows_environment();
1186 copy_environment(p, &env, &envsize);
1187 free_windows_environment(p);
1188 }
1189 #endif
1190
1191 if (getenv("TZ"))
1192 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1193
1194 #ifdef GSSAPI
1195 /* Allow any GSSAPI methods that we've used to alter
1196 * the childs environment as they see fit
1197 */
1198 ssh_gssapi_do_child(&env, &envsize);
1199 #endif
1200
1201 if (!options.use_login) {
1202 /* Set basic environment. */
1203 for (i = 0; i < s->num_env; i++)
1204 child_set_env(&env, &envsize, s->env[i].name,
1205 s->env[i].val);
1206
1207 child_set_env(&env, &envsize, "USER", pw->pw_name);
1208 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
1209 #ifdef _AIX
1210 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1211 #endif
1212 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
1213 snprintf(buf, sizeof buf, "%.200s/%.50s",
1214 _PATH_MAILDIR, pw->pw_name);
1215 child_set_env(&env, &envsize, "MAIL", buf);
1216 #ifdef HAVE_LOGIN_CAP
1217 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1218 child_set_env(&env, &envsize, "TERM", "su");
1219 senv = environ;
1220 environ = xmalloc(sizeof(char *));
1221 *environ = NULL;
1222 (void) setusercontext(lc, pw, pw->pw_uid,
1223 LOGIN_SETENV|LOGIN_SETPATH);
1224 copy_environment(environ, &env, &envsize);
1225 for (var = environ; *var != NULL; ++var)
1226 free(*var);
1227 free(environ);
1228 environ = senv;
1229 #else /* HAVE_LOGIN_CAP */
1230 # ifndef HAVE_CYGWIN
1231 /*
1232 * There's no standard path on Windows. The path contains
1233 * important components pointing to the system directories,
1234 * needed for loading shared libraries. So the path better
1235 * remains intact here.
1236 */
1237 # ifdef HAVE_ETC_DEFAULT_LOGIN
1238 read_etc_default_login(&env, &envsize, pw->pw_uid);
1239 path = child_get_env(env, "PATH");
1240 # endif /* HAVE_ETC_DEFAULT_LOGIN */
1241 if (path == NULL || *path == '\0') {
1242 child_set_env(&env, &envsize, "PATH",
1243 s->pw->pw_uid == 0 ?
1244 SUPERUSER_PATH : _PATH_STDPATH);
1245 }
1246 # endif /* HAVE_CYGWIN */
1247 #endif /* HAVE_LOGIN_CAP */
1248
1249 /* Normal systems set SHELL by default. */
1250 child_set_env(&env, &envsize, "SHELL", shell);
1251 }
1252
1253 /* Set custom environment options from RSA authentication. */
1254 if (!options.use_login) {
1255 while (custom_environment) {
1256 struct envstring *ce = custom_environment;
1257 char *str = ce->s;
1258
1259 for (i = 0; str[i] != '=' && str[i]; i++)
1260 ;
1261 if (str[i] == '=') {
1262 str[i] = 0;
1263 child_set_env(&env, &envsize, str, str + i + 1);
1264 }
1265 custom_environment = ce->next;
1266 free(ce->s);
1267 free(ce);
1268 }
1269 }
1270
1271 /* SSH_CLIENT deprecated */
1272 snprintf(buf, sizeof buf, "%.50s %d %d",
1273 get_remote_ipaddr(), get_remote_port(), get_local_port());
1274 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1275
1276 laddr = get_local_ipaddr(packet_get_connection_in());
1277 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
1278 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1279 free(laddr);
1280 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1281
1282 if (s->ttyfd != -1)
1283 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1284 if (s->term)
1285 child_set_env(&env, &envsize, "TERM", s->term);
1286 if (s->display)
1287 child_set_env(&env, &envsize, "DISPLAY", s->display);
1288 if (original_command)
1289 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1290 original_command);
1291
1292 #ifdef _UNICOS
1293 if (cray_tmpdir[0] != '\0')
1294 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1295 #endif /* _UNICOS */
1296
1297 /*
1298 * Since we clear KRB5CCNAME at startup, if it's set now then it
1299 * must have been set by a native authentication method (eg AIX or
1300 * SIA), so copy it to the child.
1301 */
1302 {
1303 char *cp;
1304
1305 if ((cp = getenv("KRB5CCNAME")) != NULL)
1306 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1307 }
1308
1309 #ifdef _AIX
1310 {
1311 char *cp;
1312
1313 if ((cp = getenv("AUTHSTATE")) != NULL)
1314 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1315 read_environment_file(&env, &envsize, "/etc/environment");
1316 }
1317 #endif
1318 #ifdef KRB5
1319 if (s->authctxt->krb5_ccname)
1320 child_set_env(&env, &envsize, "KRB5CCNAME",
1321 s->authctxt->krb5_ccname);
1322 #endif
1323 #ifdef USE_PAM
1324 /*
1325 * Pull in any environment variables that may have
1326 * been set by PAM.
1327 */
1328 if (options.use_pam) {
1329 char **p;
1330
1331 p = fetch_pam_child_environment();
1332 copy_environment(p, &env, &envsize);
1333 free_pam_environment(p);
1334
1335 p = fetch_pam_environment();
1336 copy_environment(p, &env, &envsize);
1337 free_pam_environment(p);
1338 }
1339 #endif /* USE_PAM */
1340
1341 if (auth_sock_name != NULL)
1342 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
1343 auth_sock_name);
1344
1345 /* read $HOME/.ssh/environment. */
1346 if (options.permit_user_env && !options.use_login) {
1347 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
1348 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
1349 read_environment_file(&env, &envsize, buf);
1350 }
1351 if (debug_flag) {
1352 /* dump the environment */
1353 fprintf(stderr, "Environment:\n");
1354 for (i = 0; env[i]; i++)
1355 fprintf(stderr, " %.200s\n", env[i]);
1356 }
1357 return env;
1358 }
1359
1360 /*
1361 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1362 * first in this order).
1363 */
1364 static void
do_rc_files(Session * s,const char * shell)1365 do_rc_files(Session *s, const char *shell)
1366 {
1367 FILE *f = NULL;
1368 char cmd[1024];
1369 int do_xauth;
1370 struct stat st;
1371
1372 do_xauth =
1373 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1374
1375 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
1376 if (!s->is_subsystem && options.adm_forced_command == NULL &&
1377 !no_user_rc && stat(_PATH_SSH_USER_RC, &st) >= 0) {
1378 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1379 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1380 if (debug_flag)
1381 fprintf(stderr, "Running %s\n", cmd);
1382 f = popen(cmd, "w");
1383 if (f) {
1384 if (do_xauth)
1385 fprintf(f, "%s %s\n", s->auth_proto,
1386 s->auth_data);
1387 pclose(f);
1388 } else
1389 fprintf(stderr, "Could not run %s\n",
1390 _PATH_SSH_USER_RC);
1391 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1392 if (debug_flag)
1393 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1394 _PATH_SSH_SYSTEM_RC);
1395 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1396 if (f) {
1397 if (do_xauth)
1398 fprintf(f, "%s %s\n", s->auth_proto,
1399 s->auth_data);
1400 pclose(f);
1401 } else
1402 fprintf(stderr, "Could not run %s\n",
1403 _PATH_SSH_SYSTEM_RC);
1404 } else if (do_xauth && options.xauth_location != NULL) {
1405 /* Add authority data to .Xauthority if appropriate. */
1406 if (debug_flag) {
1407 fprintf(stderr,
1408 "Running %.500s remove %.100s\n",
1409 options.xauth_location, s->auth_display);
1410 fprintf(stderr,
1411 "%.500s add %.100s %.100s %.100s\n",
1412 options.xauth_location, s->auth_display,
1413 s->auth_proto, s->auth_data);
1414 }
1415 snprintf(cmd, sizeof cmd, "%s -q -",
1416 options.xauth_location);
1417 f = popen(cmd, "w");
1418 if (f) {
1419 fprintf(f, "remove %s\n",
1420 s->auth_display);
1421 fprintf(f, "add %s %s %s\n",
1422 s->auth_display, s->auth_proto,
1423 s->auth_data);
1424 pclose(f);
1425 } else {
1426 fprintf(stderr, "Could not run %s\n",
1427 cmd);
1428 }
1429 }
1430 }
1431
1432 static void
do_nologin(struct passwd * pw)1433 do_nologin(struct passwd *pw)
1434 {
1435 FILE *f = NULL;
1436 char buf[1024], *nl, *def_nl = _PATH_NOLOGIN;
1437 struct stat sb;
1438
1439 #ifdef HAVE_LOGIN_CAP
1440 if (login_getcapbool(lc, "ignorenologin", 0) || pw->pw_uid == 0)
1441 return;
1442 nl = login_getcapstr(lc, "nologin", def_nl, def_nl);
1443 #else
1444 if (pw->pw_uid == 0)
1445 return;
1446 nl = def_nl;
1447 #endif
1448 if (stat(nl, &sb) == -1) {
1449 if (nl != def_nl)
1450 free(nl);
1451 return;
1452 }
1453
1454 /* /etc/nologin exists. Print its contents if we can and exit. */
1455 logit("User %.100s not allowed because %s exists", pw->pw_name, nl);
1456 if ((f = fopen(nl, "r")) != NULL) {
1457 while (fgets(buf, sizeof(buf), f))
1458 fputs(buf, stderr);
1459 fclose(f);
1460 }
1461 exit(254);
1462 }
1463
1464 /*
1465 * Chroot into a directory after checking it for safety: all path components
1466 * must be root-owned directories with strict permissions.
1467 */
1468 static void
safely_chroot(const char * path,uid_t uid)1469 safely_chroot(const char *path, uid_t uid)
1470 {
1471 const char *cp;
1472 char component[MAXPATHLEN];
1473 struct stat st;
1474
1475 if (*path != '/')
1476 fatal("chroot path does not begin at root");
1477 if (strlen(path) >= sizeof(component))
1478 fatal("chroot path too long");
1479
1480 /*
1481 * Descend the path, checking that each component is a
1482 * root-owned directory with strict permissions.
1483 */
1484 for (cp = path; cp != NULL;) {
1485 if ((cp = strchr(cp, '/')) == NULL)
1486 strlcpy(component, path, sizeof(component));
1487 else {
1488 cp++;
1489 memcpy(component, path, cp - path);
1490 component[cp - path] = '\0';
1491 }
1492
1493 debug3("%s: checking '%s'", __func__, component);
1494
1495 if (stat(component, &st) != 0)
1496 fatal("%s: stat(\"%s\"): %s", __func__,
1497 component, strerror(errno));
1498 if (st.st_uid != 0 || (st.st_mode & 022) != 0)
1499 fatal("bad ownership or modes for chroot "
1500 "directory %s\"%s\"",
1501 cp == NULL ? "" : "component ", component);
1502 if (!S_ISDIR(st.st_mode))
1503 fatal("chroot path %s\"%s\" is not a directory",
1504 cp == NULL ? "" : "component ", component);
1505
1506 }
1507
1508 if (chdir(path) == -1)
1509 fatal("Unable to chdir to chroot path \"%s\": "
1510 "%s", path, strerror(errno));
1511 if (chroot(path) == -1)
1512 fatal("chroot(\"%s\"): %s", path, strerror(errno));
1513 if (chdir("/") == -1)
1514 fatal("%s: chdir(/) after chroot: %s",
1515 __func__, strerror(errno));
1516 verbose("Changed root directory to \"%s\"", path);
1517 }
1518
1519 /* Set login name, uid, gid, and groups. */
1520 void
do_setusercontext(struct passwd * pw)1521 do_setusercontext(struct passwd *pw)
1522 {
1523 char *chroot_path, *tmp;
1524
1525 platform_setusercontext(pw);
1526
1527 if (platform_privileged_uidswap()) {
1528 #ifdef HAVE_LOGIN_CAP
1529 if (setusercontext(lc, pw, pw->pw_uid,
1530 (LOGIN_SETALL & ~(LOGIN_SETENV|LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
1531 perror("unable to set user context");
1532 exit(1);
1533 }
1534 #else
1535 if (setlogin(pw->pw_name) < 0)
1536 error("setlogin failed: %s", strerror(errno));
1537 if (setgid(pw->pw_gid) < 0) {
1538 perror("setgid");
1539 exit(1);
1540 }
1541 /* Initialize the group list. */
1542 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1543 perror("initgroups");
1544 exit(1);
1545 }
1546 endgrent();
1547 #endif
1548
1549 platform_setusercontext_post_groups(pw);
1550
1551 if (options.chroot_directory != NULL &&
1552 strcasecmp(options.chroot_directory, "none") != 0) {
1553 tmp = tilde_expand_filename(options.chroot_directory,
1554 pw->pw_uid);
1555 chroot_path = percent_expand(tmp, "h", pw->pw_dir,
1556 "u", pw->pw_name, (char *)NULL);
1557 safely_chroot(chroot_path, pw->pw_uid);
1558 free(tmp);
1559 free(chroot_path);
1560 /* Make sure we don't attempt to chroot again */
1561 free(options.chroot_directory);
1562 options.chroot_directory = NULL;
1563 }
1564
1565 #ifdef HAVE_LOGIN_CAP
1566 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) {
1567 perror("unable to set user context (setuser)");
1568 exit(1);
1569 }
1570 /*
1571 * FreeBSD's setusercontext() will not apply the user's
1572 * own umask setting unless running with the user's UID.
1573 */
1574 (void) setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUMASK);
1575 #else
1576 # ifdef USE_LIBIAF
1577 if (set_id(pw->pw_name) != 0) {
1578 fatal("set_id(%s) Failed", pw->pw_name);
1579 }
1580 # endif /* USE_LIBIAF */
1581 /* Permanently switch to the desired uid. */
1582 permanently_set_uid(pw);
1583 #endif
1584 } else if (options.chroot_directory != NULL &&
1585 strcasecmp(options.chroot_directory, "none") != 0) {
1586 fatal("server lacks privileges to chroot to ChrootDirectory");
1587 }
1588
1589 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1590 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1591 }
1592
1593 static void
do_pwchange(Session * s)1594 do_pwchange(Session *s)
1595 {
1596 fflush(NULL);
1597 fprintf(stderr, "WARNING: Your password has expired.\n");
1598 if (s->ttyfd != -1) {
1599 fprintf(stderr,
1600 "You must change your password now and login again!\n");
1601 #ifdef WITH_SELINUX
1602 setexeccon(NULL);
1603 #endif
1604 #ifdef PASSWD_NEEDS_USERNAME
1605 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1606 (char *)NULL);
1607 #else
1608 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
1609 #endif
1610 perror("passwd");
1611 } else {
1612 fprintf(stderr,
1613 "Password change required but no TTY available.\n");
1614 }
1615 exit(1);
1616 }
1617
1618 static void
launch_login(struct passwd * pw,const char * hostname)1619 launch_login(struct passwd *pw, const char *hostname)
1620 {
1621 /* Launch login(1). */
1622
1623 execl(LOGIN_PROGRAM, "login", "-h", hostname,
1624 #ifdef xxxLOGIN_NEEDS_TERM
1625 (s->term ? s->term : "unknown"),
1626 #endif /* LOGIN_NEEDS_TERM */
1627 #ifdef LOGIN_NO_ENDOPT
1628 "-p", "-f", pw->pw_name, (char *)NULL);
1629 #else
1630 "-p", "-f", "--", pw->pw_name, (char *)NULL);
1631 #endif
1632
1633 /* Login couldn't be executed, die. */
1634
1635 perror("login");
1636 exit(1);
1637 }
1638
1639 static void
child_close_fds(void)1640 child_close_fds(void)
1641 {
1642 extern AuthenticationConnection *auth_conn;
1643
1644 if (auth_conn) {
1645 ssh_close_authentication_connection(auth_conn);
1646 auth_conn = NULL;
1647 }
1648
1649 if (packet_get_connection_in() == packet_get_connection_out())
1650 close(packet_get_connection_in());
1651 else {
1652 close(packet_get_connection_in());
1653 close(packet_get_connection_out());
1654 }
1655 /*
1656 * Close all descriptors related to channels. They will still remain
1657 * open in the parent.
1658 */
1659 /* XXX better use close-on-exec? -markus */
1660 channel_close_all();
1661
1662 /*
1663 * Close any extra file descriptors. Note that there may still be
1664 * descriptors left by system functions. They will be closed later.
1665 */
1666 endpwent();
1667
1668 /*
1669 * Close any extra open file descriptors so that we don't have them
1670 * hanging around in clients. Note that we want to do this after
1671 * initgroups, because at least on Solaris 2.3 it leaves file
1672 * descriptors open.
1673 */
1674 closefrom(STDERR_FILENO + 1);
1675 }
1676
1677 /*
1678 * Performs common processing for the child, such as setting up the
1679 * environment, closing extra file descriptors, setting the user and group
1680 * ids, and executing the command or shell.
1681 */
1682 #define ARGV_MAX 10
1683 void
do_child(Session * s,const char * command)1684 do_child(Session *s, const char *command)
1685 {
1686 extern char **environ;
1687 char **env;
1688 char *argv[ARGV_MAX];
1689 const char *shell, *shell0, *hostname = NULL;
1690 struct passwd *pw = s->pw;
1691 int r = 0;
1692
1693 /* remove hostkey from the child's memory */
1694 destroy_sensitive_data();
1695
1696 /* Force a password change */
1697 if (s->authctxt->force_pwchange) {
1698 do_setusercontext(pw);
1699 child_close_fds();
1700 do_pwchange(s);
1701 exit(1);
1702 }
1703
1704 /* login(1) is only called if we execute the login shell */
1705 if (options.use_login && command != NULL)
1706 options.use_login = 0;
1707
1708 #ifdef _UNICOS
1709 cray_setup(pw->pw_uid, pw->pw_name, command);
1710 #endif /* _UNICOS */
1711
1712 /*
1713 * Login(1) does this as well, and it needs uid 0 for the "-h"
1714 * switch, so we let login(1) to this for us.
1715 */
1716 if (!options.use_login) {
1717 #ifdef HAVE_OSF_SIA
1718 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
1719 if (!check_quietlogin(s, command))
1720 do_motd();
1721 #else /* HAVE_OSF_SIA */
1722 /* When PAM is enabled we rely on it to do the nologin check */
1723 if (!options.use_pam)
1724 do_nologin(pw);
1725 do_setusercontext(pw);
1726 /*
1727 * PAM session modules in do_setusercontext may have
1728 * generated messages, so if this in an interactive
1729 * login then display them too.
1730 */
1731 if (!check_quietlogin(s, command))
1732 display_loginmsg();
1733 #endif /* HAVE_OSF_SIA */
1734 }
1735
1736 #ifdef USE_PAM
1737 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1738 debug3("PAM session not opened, exiting");
1739 display_loginmsg();
1740 exit(254);
1741 }
1742 #endif
1743
1744 /*
1745 * Get the shell from the password data. An empty shell field is
1746 * legal, and means /bin/sh.
1747 */
1748 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
1749
1750 /*
1751 * Make sure $SHELL points to the shell from the password file,
1752 * even if shell is overridden from login.conf
1753 */
1754 env = do_setup_env(s, shell);
1755
1756 #ifdef HAVE_LOGIN_CAP
1757 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1758 #endif
1759
1760 /* we have to stash the hostname before we close our socket. */
1761 if (options.use_login)
1762 hostname = get_remote_name_or_ip(utmp_len,
1763 options.use_dns);
1764 /*
1765 * Close the connection descriptors; note that this is the child, and
1766 * the server will still have the socket open, and it is important
1767 * that we do not shutdown it. Note that the descriptors cannot be
1768 * closed before building the environment, as we call
1769 * get_remote_ipaddr there.
1770 */
1771 child_close_fds();
1772
1773 /*
1774 * Must take new environment into use so that .ssh/rc,
1775 * /etc/ssh/sshrc and xauth are run in the proper environment.
1776 */
1777 environ = env;
1778
1779 #if defined(KRB5) && defined(USE_AFS)
1780 /*
1781 * At this point, we check to see if AFS is active and if we have
1782 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1783 * if we can (and need to) extend the ticket into an AFS token. If
1784 * we don't do this, we run into potential problems if the user's
1785 * home directory is in AFS and it's not world-readable.
1786 */
1787
1788 if (options.kerberos_get_afs_token && k_hasafs() &&
1789 (s->authctxt->krb5_ctx != NULL)) {
1790 char cell[64];
1791
1792 debug("Getting AFS token");
1793
1794 k_setpag();
1795
1796 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1797 krb5_afslog(s->authctxt->krb5_ctx,
1798 s->authctxt->krb5_fwd_ccache, cell, NULL);
1799
1800 krb5_afslog_home(s->authctxt->krb5_ctx,
1801 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1802 }
1803 #endif
1804
1805 /* Change current directory to the user's home directory. */
1806 if (chdir(pw->pw_dir) < 0) {
1807 /* Suppress missing homedir warning for chroot case */
1808 #ifdef HAVE_LOGIN_CAP
1809 r = login_getcapbool(lc, "requirehome", 0);
1810 #endif
1811 if (r || options.chroot_directory == NULL ||
1812 strcasecmp(options.chroot_directory, "none") == 0)
1813 fprintf(stderr, "Could not chdir to home "
1814 "directory %s: %s\n", pw->pw_dir,
1815 strerror(errno));
1816 if (r)
1817 exit(1);
1818 }
1819
1820 closefrom(STDERR_FILENO + 1);
1821
1822 if (!options.use_login)
1823 do_rc_files(s, shell);
1824
1825 /* restore SIGPIPE for child */
1826 signal(SIGPIPE, SIG_DFL);
1827
1828 if (s->is_subsystem == SUBSYSTEM_INT_SFTP_ERROR) {
1829 printf("This service allows sftp connections only.\n");
1830 fflush(NULL);
1831 exit(1);
1832 } else if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
1833 extern int optind, optreset;
1834 int i;
1835 char *p, *args;
1836
1837 setproctitle("%s@%s", s->pw->pw_name, INTERNAL_SFTP_NAME);
1838 args = xstrdup(command ? command : "sftp-server");
1839 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1840 if (i < ARGV_MAX - 1)
1841 argv[i++] = p;
1842 argv[i] = NULL;
1843 optind = optreset = 1;
1844 __progname = argv[0];
1845 #ifdef WITH_SELINUX
1846 ssh_selinux_change_context("sftpd_t");
1847 #endif
1848 exit(sftp_server_main(i, argv, s->pw));
1849 }
1850
1851 fflush(NULL);
1852
1853 if (options.use_login) {
1854 launch_login(pw, hostname);
1855 /* NEVERREACHED */
1856 }
1857
1858 /* Get the last component of the shell name. */
1859 if ((shell0 = strrchr(shell, '/')) != NULL)
1860 shell0++;
1861 else
1862 shell0 = shell;
1863
1864 /*
1865 * If we have no command, execute the shell. In this case, the shell
1866 * name to be passed in argv[0] is preceded by '-' to indicate that
1867 * this is a login shell.
1868 */
1869 if (!command) {
1870 char argv0[256];
1871
1872 /* Start the shell. Set initial character to '-'. */
1873 argv0[0] = '-';
1874
1875 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1876 >= sizeof(argv0) - 1) {
1877 errno = EINVAL;
1878 perror(shell);
1879 exit(1);
1880 }
1881
1882 /* Execute the shell. */
1883 argv[0] = argv0;
1884 argv[1] = NULL;
1885 execve(shell, argv, env);
1886
1887 /* Executing the shell failed. */
1888 perror(shell);
1889 exit(1);
1890 }
1891 /*
1892 * Execute the command using the user's shell. This uses the -c
1893 * option to execute the command.
1894 */
1895 argv[0] = (char *) shell0;
1896 argv[1] = "-c";
1897 argv[2] = (char *) command;
1898 argv[3] = NULL;
1899 execve(shell, argv, env);
1900 perror(shell);
1901 exit(1);
1902 }
1903
1904 void
session_unused(int id)1905 session_unused(int id)
1906 {
1907 debug3("%s: session id %d unused", __func__, id);
1908 if (id >= options.max_sessions ||
1909 id >= sessions_nalloc) {
1910 fatal("%s: insane session id %d (max %d nalloc %d)",
1911 __func__, id, options.max_sessions, sessions_nalloc);
1912 }
1913 memset(&sessions[id], 0, sizeof(*sessions));
1914 sessions[id].self = id;
1915 sessions[id].used = 0;
1916 sessions[id].chanid = -1;
1917 sessions[id].ptyfd = -1;
1918 sessions[id].ttyfd = -1;
1919 sessions[id].ptymaster = -1;
1920 sessions[id].x11_chanids = NULL;
1921 sessions[id].next_unused = sessions_first_unused;
1922 sessions_first_unused = id;
1923 }
1924
1925 Session *
session_new(void)1926 session_new(void)
1927 {
1928 Session *s, *tmp;
1929
1930 if (sessions_first_unused == -1) {
1931 if (sessions_nalloc >= options.max_sessions)
1932 return NULL;
1933 debug2("%s: allocate (allocated %d max %d)",
1934 __func__, sessions_nalloc, options.max_sessions);
1935 tmp = xrealloc(sessions, sessions_nalloc + 1,
1936 sizeof(*sessions));
1937 if (tmp == NULL) {
1938 error("%s: cannot allocate %d sessions",
1939 __func__, sessions_nalloc + 1);
1940 return NULL;
1941 }
1942 sessions = tmp;
1943 session_unused(sessions_nalloc++);
1944 }
1945
1946 if (sessions_first_unused >= sessions_nalloc ||
1947 sessions_first_unused < 0) {
1948 fatal("%s: insane first_unused %d max %d nalloc %d",
1949 __func__, sessions_first_unused, options.max_sessions,
1950 sessions_nalloc);
1951 }
1952
1953 s = &sessions[sessions_first_unused];
1954 if (s->used) {
1955 fatal("%s: session %d already used",
1956 __func__, sessions_first_unused);
1957 }
1958 sessions_first_unused = s->next_unused;
1959 s->used = 1;
1960 s->next_unused = -1;
1961 debug("session_new: session %d", s->self);
1962
1963 return s;
1964 }
1965
1966 static void
session_dump(void)1967 session_dump(void)
1968 {
1969 int i;
1970 for (i = 0; i < sessions_nalloc; i++) {
1971 Session *s = &sessions[i];
1972
1973 debug("dump: used %d next_unused %d session %d %p "
1974 "channel %d pid %ld",
1975 s->used,
1976 s->next_unused,
1977 s->self,
1978 s,
1979 s->chanid,
1980 (long)s->pid);
1981 }
1982 }
1983
1984 int
session_open(Authctxt * authctxt,int chanid)1985 session_open(Authctxt *authctxt, int chanid)
1986 {
1987 Session *s = session_new();
1988 debug("session_open: channel %d", chanid);
1989 if (s == NULL) {
1990 error("no more sessions");
1991 return 0;
1992 }
1993 s->authctxt = authctxt;
1994 s->pw = authctxt->pw;
1995 if (s->pw == NULL || !authctxt->valid)
1996 fatal("no user for session %d", s->self);
1997 debug("session_open: session %d: link with channel %d", s->self, chanid);
1998 s->chanid = chanid;
1999 return 1;
2000 }
2001
2002 Session *
session_by_tty(char * tty)2003 session_by_tty(char *tty)
2004 {
2005 int i;
2006 for (i = 0; i < sessions_nalloc; i++) {
2007 Session *s = &sessions[i];
2008 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
2009 debug("session_by_tty: session %d tty %s", i, tty);
2010 return s;
2011 }
2012 }
2013 debug("session_by_tty: unknown tty %.100s", tty);
2014 session_dump();
2015 return NULL;
2016 }
2017
2018 static Session *
session_by_channel(int id)2019 session_by_channel(int id)
2020 {
2021 int i;
2022 for (i = 0; i < sessions_nalloc; i++) {
2023 Session *s = &sessions[i];
2024 if (s->used && s->chanid == id) {
2025 debug("session_by_channel: session %d channel %d",
2026 i, id);
2027 return s;
2028 }
2029 }
2030 debug("session_by_channel: unknown channel %d", id);
2031 session_dump();
2032 return NULL;
2033 }
2034
2035 static Session *
session_by_x11_channel(int id)2036 session_by_x11_channel(int id)
2037 {
2038 int i, j;
2039
2040 for (i = 0; i < sessions_nalloc; i++) {
2041 Session *s = &sessions[i];
2042
2043 if (s->x11_chanids == NULL || !s->used)
2044 continue;
2045 for (j = 0; s->x11_chanids[j] != -1; j++) {
2046 if (s->x11_chanids[j] == id) {
2047 debug("session_by_x11_channel: session %d "
2048 "channel %d", s->self, id);
2049 return s;
2050 }
2051 }
2052 }
2053 debug("session_by_x11_channel: unknown channel %d", id);
2054 session_dump();
2055 return NULL;
2056 }
2057
2058 static Session *
session_by_pid(pid_t pid)2059 session_by_pid(pid_t pid)
2060 {
2061 int i;
2062 debug("session_by_pid: pid %ld", (long)pid);
2063 for (i = 0; i < sessions_nalloc; i++) {
2064 Session *s = &sessions[i];
2065 if (s->used && s->pid == pid)
2066 return s;
2067 }
2068 error("session_by_pid: unknown pid %ld", (long)pid);
2069 session_dump();
2070 return NULL;
2071 }
2072
2073 static int
session_window_change_req(Session * s)2074 session_window_change_req(Session *s)
2075 {
2076 s->col = packet_get_int();
2077 s->row = packet_get_int();
2078 s->xpixel = packet_get_int();
2079 s->ypixel = packet_get_int();
2080 packet_check_eom();
2081 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2082 return 1;
2083 }
2084
2085 static int
session_pty_req(Session * s)2086 session_pty_req(Session *s)
2087 {
2088 u_int len;
2089 int n_bytes;
2090
2091 if (no_pty_flag || !options.permit_tty) {
2092 debug("Allocating a pty not permitted for this authentication.");
2093 return 0;
2094 }
2095 if (s->ttyfd != -1) {
2096 packet_disconnect("Protocol error: you already have a pty.");
2097 return 0;
2098 }
2099
2100 s->term = packet_get_string(&len);
2101
2102 if (compat20) {
2103 s->col = packet_get_int();
2104 s->row = packet_get_int();
2105 } else {
2106 s->row = packet_get_int();
2107 s->col = packet_get_int();
2108 }
2109 s->xpixel = packet_get_int();
2110 s->ypixel = packet_get_int();
2111
2112 if (strcmp(s->term, "") == 0) {
2113 free(s->term);
2114 s->term = NULL;
2115 }
2116
2117 /* Allocate a pty and open it. */
2118 debug("Allocating pty.");
2119 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
2120 sizeof(s->tty)))) {
2121 free(s->term);
2122 s->term = NULL;
2123 s->ptyfd = -1;
2124 s->ttyfd = -1;
2125 error("session_pty_req: session %d alloc failed", s->self);
2126 return 0;
2127 }
2128 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
2129
2130 /* for SSH1 the tty modes length is not given */
2131 if (!compat20)
2132 n_bytes = packet_remaining();
2133 tty_parse_modes(s->ttyfd, &n_bytes);
2134
2135 if (!use_privsep)
2136 pty_setowner(s->pw, s->tty);
2137
2138 /* Set window size from the packet. */
2139 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2140
2141 packet_check_eom();
2142 session_proctitle(s);
2143 return 1;
2144 }
2145
2146 static int
session_subsystem_req(Session * s)2147 session_subsystem_req(Session *s)
2148 {
2149 struct stat st;
2150 u_int len;
2151 int success = 0;
2152 char *prog, *cmd;
2153 u_int i;
2154
2155 s->subsys = packet_get_string(&len);
2156 packet_check_eom();
2157 debug2("subsystem request for %.100s by user %s", s->subsys,
2158 s->pw->pw_name);
2159
2160 for (i = 0; i < options.num_subsystems; i++) {
2161 if (strcmp(s->subsys, options.subsystem_name[i]) == 0) {
2162 prog = options.subsystem_command[i];
2163 cmd = options.subsystem_args[i];
2164 if (strcmp(INTERNAL_SFTP_NAME, prog) == 0) {
2165 s->is_subsystem = SUBSYSTEM_INT_SFTP;
2166 debug("subsystem: %s", prog);
2167 } else {
2168 if (stat(prog, &st) < 0)
2169 debug("subsystem: cannot stat %s: %s",
2170 prog, strerror(errno));
2171 s->is_subsystem = SUBSYSTEM_EXT;
2172 debug("subsystem: exec() %s", cmd);
2173 }
2174 success = do_exec(s, cmd) == 0;
2175 break;
2176 }
2177 }
2178
2179 if (!success)
2180 logit("subsystem request for %.100s by user %s failed, "
2181 "subsystem not found", s->subsys, s->pw->pw_name);
2182
2183 return success;
2184 }
2185
2186 static int
session_x11_req(Session * s)2187 session_x11_req(Session *s)
2188 {
2189 int success;
2190
2191 if (s->auth_proto != NULL || s->auth_data != NULL) {
2192 error("session_x11_req: session %d: "
2193 "x11 forwarding already active", s->self);
2194 return 0;
2195 }
2196 s->single_connection = packet_get_char();
2197 s->auth_proto = packet_get_string(NULL);
2198 s->auth_data = packet_get_string(NULL);
2199 s->screen = packet_get_int();
2200 packet_check_eom();
2201
2202 success = session_setup_x11fwd(s);
2203 if (!success) {
2204 free(s->auth_proto);
2205 free(s->auth_data);
2206 s->auth_proto = NULL;
2207 s->auth_data = NULL;
2208 }
2209 return success;
2210 }
2211
2212 static int
session_shell_req(Session * s)2213 session_shell_req(Session *s)
2214 {
2215 packet_check_eom();
2216 return do_exec(s, NULL) == 0;
2217 }
2218
2219 static int
session_exec_req(Session * s)2220 session_exec_req(Session *s)
2221 {
2222 u_int len, success;
2223
2224 char *command = packet_get_string(&len);
2225 packet_check_eom();
2226 success = do_exec(s, command) == 0;
2227 free(command);
2228 return success;
2229 }
2230
2231 static int
session_break_req(Session * s)2232 session_break_req(Session *s)
2233 {
2234
2235 packet_get_int(); /* ignored */
2236 packet_check_eom();
2237
2238 if (s->ptymaster == -1 || tcsendbreak(s->ptymaster, 0) < 0)
2239 return 0;
2240 return 1;
2241 }
2242
2243 static int
session_env_req(Session * s)2244 session_env_req(Session *s)
2245 {
2246 char *name, *val;
2247 u_int name_len, val_len, i;
2248
2249 name = packet_get_cstring(&name_len);
2250 val = packet_get_cstring(&val_len);
2251 packet_check_eom();
2252
2253 /* Don't set too many environment variables */
2254 if (s->num_env > 128) {
2255 debug2("Ignoring env request %s: too many env vars", name);
2256 goto fail;
2257 }
2258
2259 for (i = 0; i < options.num_accept_env; i++) {
2260 if (match_pattern(name, options.accept_env[i])) {
2261 debug2("Setting env %d: %s=%s", s->num_env, name, val);
2262 s->env = xrealloc(s->env, s->num_env + 1,
2263 sizeof(*s->env));
2264 s->env[s->num_env].name = name;
2265 s->env[s->num_env].val = val;
2266 s->num_env++;
2267 return (1);
2268 }
2269 }
2270 debug2("Ignoring env request %s: disallowed name", name);
2271
2272 fail:
2273 free(name);
2274 free(val);
2275 return (0);
2276 }
2277
2278 static int
session_auth_agent_req(Session * s)2279 session_auth_agent_req(Session *s)
2280 {
2281 static int called = 0;
2282 packet_check_eom();
2283 if (no_agent_forwarding_flag || !options.allow_agent_forwarding) {
2284 debug("session_auth_agent_req: no_agent_forwarding_flag");
2285 return 0;
2286 }
2287 if (called) {
2288 return 0;
2289 } else {
2290 called = 1;
2291 return auth_input_request_forwarding(s->pw);
2292 }
2293 }
2294
2295 int
session_input_channel_req(Channel * c,const char * rtype)2296 session_input_channel_req(Channel *c, const char *rtype)
2297 {
2298 int success = 0;
2299 Session *s;
2300
2301 if ((s = session_by_channel(c->self)) == NULL) {
2302 logit("session_input_channel_req: no session %d req %.100s",
2303 c->self, rtype);
2304 return 0;
2305 }
2306 debug("session_input_channel_req: session %d req %s", s->self, rtype);
2307
2308 /*
2309 * a session is in LARVAL state until a shell, a command
2310 * or a subsystem is executed
2311 */
2312 if (c->type == SSH_CHANNEL_LARVAL) {
2313 if (strcmp(rtype, "shell") == 0) {
2314 success = session_shell_req(s);
2315 } else if (strcmp(rtype, "exec") == 0) {
2316 success = session_exec_req(s);
2317 } else if (strcmp(rtype, "pty-req") == 0) {
2318 success = session_pty_req(s);
2319 } else if (strcmp(rtype, "x11-req") == 0) {
2320 success = session_x11_req(s);
2321 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2322 success = session_auth_agent_req(s);
2323 } else if (strcmp(rtype, "subsystem") == 0) {
2324 success = session_subsystem_req(s);
2325 } else if (strcmp(rtype, "env") == 0) {
2326 success = session_env_req(s);
2327 }
2328 }
2329 if (strcmp(rtype, "window-change") == 0) {
2330 success = session_window_change_req(s);
2331 } else if (strcmp(rtype, "break") == 0) {
2332 success = session_break_req(s);
2333 }
2334
2335 return success;
2336 }
2337
2338 void
session_set_fds(Session * s,int fdin,int fdout,int fderr,int ignore_fderr,int is_tty)2339 session_set_fds(Session *s, int fdin, int fdout, int fderr, int ignore_fderr,
2340 int is_tty)
2341 {
2342 if (!compat20)
2343 fatal("session_set_fds: called for proto != 2.0");
2344 /*
2345 * now that have a child and a pipe to the child,
2346 * we can activate our channel and register the fd's
2347 */
2348 if (s->chanid == -1)
2349 fatal("no channel for session %d", s->self);
2350 if (options.hpn_disabled)
2351 channel_set_fds(s->chanid, fdout, fdin, fderr,
2352 ignore_fderr ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
2353 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
2354 else
2355 channel_set_fds(s->chanid, fdout, fdin, fderr,
2356 ignore_fderr ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
2357 1, is_tty, options.hpn_buffer_size);
2358 }
2359
2360 /*
2361 * Function to perform pty cleanup. Also called if we get aborted abnormally
2362 * (e.g., due to a dropped connection).
2363 */
2364 void
session_pty_cleanup2(Session * s)2365 session_pty_cleanup2(Session *s)
2366 {
2367 if (s == NULL) {
2368 error("session_pty_cleanup: no session");
2369 return;
2370 }
2371 if (s->ttyfd == -1)
2372 return;
2373
2374 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
2375
2376 /* Record that the user has logged out. */
2377 if (s->pid != 0)
2378 record_logout(s->pid, s->tty, s->pw->pw_name);
2379
2380 /* Release the pseudo-tty. */
2381 if (getuid() == 0)
2382 pty_release(s->tty);
2383
2384 /*
2385 * Close the server side of the socket pairs. We must do this after
2386 * the pty cleanup, so that another process doesn't get this pty
2387 * while we're still cleaning up.
2388 */
2389 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2390 error("close(s->ptymaster/%d): %s",
2391 s->ptymaster, strerror(errno));
2392
2393 /* unlink pty from session */
2394 s->ttyfd = -1;
2395 }
2396
2397 void
session_pty_cleanup(Session * s)2398 session_pty_cleanup(Session *s)
2399 {
2400 PRIVSEP(session_pty_cleanup2(s));
2401 }
2402
2403 static char *
sig2name(int sig)2404 sig2name(int sig)
2405 {
2406 #define SSH_SIG(x) if (sig == SIG ## x) return #x
2407 SSH_SIG(ABRT);
2408 SSH_SIG(ALRM);
2409 SSH_SIG(FPE);
2410 SSH_SIG(HUP);
2411 SSH_SIG(ILL);
2412 SSH_SIG(INT);
2413 SSH_SIG(KILL);
2414 SSH_SIG(PIPE);
2415 SSH_SIG(QUIT);
2416 SSH_SIG(SEGV);
2417 SSH_SIG(TERM);
2418 SSH_SIG(USR1);
2419 SSH_SIG(USR2);
2420 #undef SSH_SIG
2421 return "SIG@openssh.com";
2422 }
2423
2424 static void
session_close_x11(int id)2425 session_close_x11(int id)
2426 {
2427 Channel *c;
2428
2429 if ((c = channel_by_id(id)) == NULL) {
2430 debug("session_close_x11: x11 channel %d missing", id);
2431 } else {
2432 /* Detach X11 listener */
2433 debug("session_close_x11: detach x11 channel %d", id);
2434 channel_cancel_cleanup(id);
2435 if (c->ostate != CHAN_OUTPUT_CLOSED)
2436 chan_mark_dead(c);
2437 }
2438 }
2439
2440 static void
session_close_single_x11(int id,void * arg)2441 session_close_single_x11(int id, void *arg)
2442 {
2443 Session *s;
2444 u_int i;
2445
2446 debug3("session_close_single_x11: channel %d", id);
2447 channel_cancel_cleanup(id);
2448 if ((s = session_by_x11_channel(id)) == NULL)
2449 fatal("session_close_single_x11: no x11 channel %d", id);
2450 for (i = 0; s->x11_chanids[i] != -1; i++) {
2451 debug("session_close_single_x11: session %d: "
2452 "closing channel %d", s->self, s->x11_chanids[i]);
2453 /*
2454 * The channel "id" is already closing, but make sure we
2455 * close all of its siblings.
2456 */
2457 if (s->x11_chanids[i] != id)
2458 session_close_x11(s->x11_chanids[i]);
2459 }
2460 free(s->x11_chanids);
2461 s->x11_chanids = NULL;
2462 free(s->display);
2463 s->display = NULL;
2464 free(s->auth_proto);
2465 s->auth_proto = NULL;
2466 free(s->auth_data);
2467 s->auth_data = NULL;
2468 free(s->auth_display);
2469 s->auth_display = NULL;
2470 }
2471
2472 static void
session_exit_message(Session * s,int status)2473 session_exit_message(Session *s, int status)
2474 {
2475 Channel *c;
2476
2477 if ((c = channel_lookup(s->chanid)) == NULL)
2478 fatal("session_exit_message: session %d: no channel %d",
2479 s->self, s->chanid);
2480 debug("session_exit_message: session %d channel %d pid %ld",
2481 s->self, s->chanid, (long)s->pid);
2482
2483 if (WIFEXITED(status)) {
2484 channel_request_start(s->chanid, "exit-status", 0);
2485 packet_put_int(WEXITSTATUS(status));
2486 packet_send();
2487 } else if (WIFSIGNALED(status)) {
2488 channel_request_start(s->chanid, "exit-signal", 0);
2489 packet_put_cstring(sig2name(WTERMSIG(status)));
2490 #ifdef WCOREDUMP
2491 packet_put_char(WCOREDUMP(status)? 1 : 0);
2492 #else /* WCOREDUMP */
2493 packet_put_char(0);
2494 #endif /* WCOREDUMP */
2495 packet_put_cstring("");
2496 packet_put_cstring("");
2497 packet_send();
2498 } else {
2499 /* Some weird exit cause. Just exit. */
2500 packet_disconnect("wait returned status %04x.", status);
2501 }
2502
2503 /* disconnect channel */
2504 debug("session_exit_message: release channel %d", s->chanid);
2505
2506 /*
2507 * Adjust cleanup callback attachment to send close messages when
2508 * the channel gets EOF. The session will be then be closed
2509 * by session_close_by_channel when the childs close their fds.
2510 */
2511 channel_register_cleanup(c->self, session_close_by_channel, 1);
2512
2513 /*
2514 * emulate a write failure with 'chan_write_failed', nobody will be
2515 * interested in data we write.
2516 * Note that we must not call 'chan_read_failed', since there could
2517 * be some more data waiting in the pipe.
2518 */
2519 if (c->ostate != CHAN_OUTPUT_CLOSED)
2520 chan_write_failed(c);
2521 }
2522
2523 void
session_close(Session * s)2524 session_close(Session *s)
2525 {
2526 u_int i;
2527
2528 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
2529 if (s->ttyfd != -1)
2530 session_pty_cleanup(s);
2531 free(s->term);
2532 free(s->display);
2533 free(s->x11_chanids);
2534 free(s->auth_display);
2535 free(s->auth_data);
2536 free(s->auth_proto);
2537 free(s->subsys);
2538 if (s->env != NULL) {
2539 for (i = 0; i < s->num_env; i++) {
2540 free(s->env[i].name);
2541 free(s->env[i].val);
2542 }
2543 free(s->env);
2544 }
2545 session_proctitle(s);
2546 session_unused(s->self);
2547 }
2548
2549 void
session_close_by_pid(pid_t pid,int status)2550 session_close_by_pid(pid_t pid, int status)
2551 {
2552 Session *s = session_by_pid(pid);
2553 if (s == NULL) {
2554 debug("session_close_by_pid: no session for pid %ld",
2555 (long)pid);
2556 return;
2557 }
2558 if (s->chanid != -1)
2559 session_exit_message(s, status);
2560 if (s->ttyfd != -1)
2561 session_pty_cleanup(s);
2562 s->pid = 0;
2563 }
2564
2565 /*
2566 * this is called when a channel dies before
2567 * the session 'child' itself dies
2568 */
2569 void
session_close_by_channel(int id,void * arg)2570 session_close_by_channel(int id, void *arg)
2571 {
2572 Session *s = session_by_channel(id);
2573 u_int i;
2574
2575 if (s == NULL) {
2576 debug("session_close_by_channel: no session for id %d", id);
2577 return;
2578 }
2579 debug("session_close_by_channel: channel %d child %ld",
2580 id, (long)s->pid);
2581 if (s->pid != 0) {
2582 debug("session_close_by_channel: channel %d: has child", id);
2583 /*
2584 * delay detach of session, but release pty, since
2585 * the fd's to the child are already closed
2586 */
2587 if (s->ttyfd != -1)
2588 session_pty_cleanup(s);
2589 return;
2590 }
2591 /* detach by removing callback */
2592 channel_cancel_cleanup(s->chanid);
2593
2594 /* Close any X11 listeners associated with this session */
2595 if (s->x11_chanids != NULL) {
2596 for (i = 0; s->x11_chanids[i] != -1; i++) {
2597 session_close_x11(s->x11_chanids[i]);
2598 s->x11_chanids[i] = -1;
2599 }
2600 }
2601
2602 s->chanid = -1;
2603 session_close(s);
2604 }
2605
2606 void
session_destroy_all(void (* closefunc)(Session *))2607 session_destroy_all(void (*closefunc)(Session *))
2608 {
2609 int i;
2610 for (i = 0; i < sessions_nalloc; i++) {
2611 Session *s = &sessions[i];
2612 if (s->used) {
2613 if (closefunc != NULL)
2614 closefunc(s);
2615 else
2616 session_close(s);
2617 }
2618 }
2619 }
2620
2621 static char *
session_tty_list(void)2622 session_tty_list(void)
2623 {
2624 static char buf[1024];
2625 int i;
2626 char *cp;
2627
2628 buf[0] = '\0';
2629 for (i = 0; i < sessions_nalloc; i++) {
2630 Session *s = &sessions[i];
2631 if (s->used && s->ttyfd != -1) {
2632
2633 if (strncmp(s->tty, "/dev/", 5) != 0) {
2634 cp = strrchr(s->tty, '/');
2635 cp = (cp == NULL) ? s->tty : cp + 1;
2636 } else
2637 cp = s->tty + 5;
2638
2639 if (buf[0] != '\0')
2640 strlcat(buf, ",", sizeof buf);
2641 strlcat(buf, cp, sizeof buf);
2642 }
2643 }
2644 if (buf[0] == '\0')
2645 strlcpy(buf, "notty", sizeof buf);
2646 return buf;
2647 }
2648
2649 void
session_proctitle(Session * s)2650 session_proctitle(Session *s)
2651 {
2652 if (s->pw == NULL)
2653 error("no user for session %d", s->self);
2654 else
2655 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2656 }
2657
2658 int
session_setup_x11fwd(Session * s)2659 session_setup_x11fwd(Session *s)
2660 {
2661 struct stat st;
2662 char display[512], auth_display[512];
2663 char hostname[MAXHOSTNAMELEN];
2664 u_int i;
2665
2666 if (no_x11_forwarding_flag) {
2667 packet_send_debug("X11 forwarding disabled in user configuration file.");
2668 return 0;
2669 }
2670 if (!options.x11_forwarding) {
2671 debug("X11 forwarding disabled in server configuration file.");
2672 return 0;
2673 }
2674 if (!options.xauth_location ||
2675 (stat(options.xauth_location, &st) == -1)) {
2676 packet_send_debug("No xauth program; cannot forward with spoofing.");
2677 return 0;
2678 }
2679 if (options.use_login) {
2680 packet_send_debug("X11 forwarding disabled; "
2681 "not compatible with UseLogin=yes.");
2682 return 0;
2683 }
2684 if (s->display != NULL) {
2685 debug("X11 display already set.");
2686 return 0;
2687 }
2688 if (x11_create_display_inet(options.x11_display_offset,
2689 options.x11_use_localhost, s->single_connection,
2690 &s->display_number, &s->x11_chanids) == -1) {
2691 debug("x11_create_display_inet failed.");
2692 return 0;
2693 }
2694 for (i = 0; s->x11_chanids[i] != -1; i++) {
2695 channel_register_cleanup(s->x11_chanids[i],
2696 session_close_single_x11, 0);
2697 }
2698
2699 /* Set up a suitable value for the DISPLAY variable. */
2700 if (gethostname(hostname, sizeof(hostname)) < 0)
2701 fatal("gethostname: %.100s", strerror(errno));
2702 /*
2703 * auth_display must be used as the displayname when the
2704 * authorization entry is added with xauth(1). This will be
2705 * different than the DISPLAY string for localhost displays.
2706 */
2707 if (options.x11_use_localhost) {
2708 snprintf(display, sizeof display, "localhost:%u.%u",
2709 s->display_number, s->screen);
2710 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
2711 s->display_number, s->screen);
2712 s->display = xstrdup(display);
2713 s->auth_display = xstrdup(auth_display);
2714 } else {
2715 #ifdef IPADDR_IN_DISPLAY
2716 struct hostent *he;
2717 struct in_addr my_addr;
2718
2719 he = gethostbyname(hostname);
2720 if (he == NULL) {
2721 error("Can't get IP address for X11 DISPLAY.");
2722 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2723 return 0;
2724 }
2725 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
2726 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
2727 s->display_number, s->screen);
2728 #else
2729 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
2730 s->display_number, s->screen);
2731 #endif
2732 s->display = xstrdup(display);
2733 s->auth_display = xstrdup(display);
2734 }
2735
2736 return 1;
2737 }
2738
2739 static void
do_authenticated2(Authctxt * authctxt)2740 do_authenticated2(Authctxt *authctxt)
2741 {
2742 server_loop2(authctxt);
2743 }
2744
2745 void
do_cleanup(Authctxt * authctxt)2746 do_cleanup(Authctxt *authctxt)
2747 {
2748 static int called = 0;
2749
2750 debug("do_cleanup");
2751
2752 /* no cleanup if we're in the child for login shell */
2753 if (is_child)
2754 return;
2755
2756 /* avoid double cleanup */
2757 if (called)
2758 return;
2759 called = 1;
2760
2761 if (authctxt == NULL)
2762 return;
2763
2764 #ifdef USE_PAM
2765 if (options.use_pam) {
2766 sshpam_cleanup();
2767 sshpam_thread_cleanup();
2768 }
2769 #endif
2770
2771 if (!authctxt->authenticated)
2772 return;
2773
2774 #ifdef KRB5
2775 if (options.kerberos_ticket_cleanup &&
2776 authctxt->krb5_ctx)
2777 krb5_cleanup_proc(authctxt);
2778 #endif
2779
2780 #ifdef GSSAPI
2781 if (compat20 && options.gss_cleanup_creds)
2782 ssh_gssapi_cleanup_creds();
2783 #endif
2784
2785 /* remove agent socket */
2786 auth_sock_cleanup_proc(authctxt->pw);
2787
2788 /*
2789 * Cleanup ptys/utmp only if privsep is disabled,
2790 * or if running in monitor.
2791 */
2792 if (!use_privsep || mm_is_monitor())
2793 session_destroy_all(session_pty_cleanup2);
2794 }
2795