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