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