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