]> andersk Git - openssh.git/blame - session.c
- (tim) [regress/README.regress] Document ssh-rand-helper issue. ok bal
[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"
37656beb 36RCSID("$OpenBSD: session.c,v 1.172 2004/01/30 09:48:57 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"
7368a6c8 45#include "mpaux.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{
199 if (buffer_len(&loginmsg) > 0) {
200 buffer_append(&loginmsg, "\0", 1);
201 printf("%s\n", (char *)buffer_ptr(&loginmsg));
202 buffer_clear(&loginmsg);
203 }
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) {
267 packet_send_debug("Received illegal 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) {
e5d7a405 483 session_set_fds(s, pin[1], pout[0], s->is_subsystem ? -1 : perr[0]);
e78a59f5 484 } else {
485 /* Enter the interactive session. */
486 server_loop(pid, pin[1], pout[0], perr[0]);
e5d7a405 487 /* server_loop has closed pin[1], pout[0], and perr[0]. */
e78a59f5 488 }
7368a6c8 489#else /* USE_PIPES */
490 /* We are the parent. Close the child sides of the socket pairs. */
491 close(inout[0]);
492 close(err[0]);
493
494 /*
495 * Enter the interactive session. Note: server_loop must be able to
496 * handle the case that fdin and fdout are the same.
497 */
e78a59f5 498 if (compat20) {
e5d7a405 499 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
e78a59f5 500 } else {
501 server_loop(pid, inout[1], inout[1], err[1]);
502 /* server_loop has closed inout[1] and err[1]. */
503 }
7368a6c8 504#endif /* USE_PIPES */
505}
506
507/*
508 * This is called to fork and execute a command when we have a tty. This
509 * will call do_child from the child, and server_loop from the parent after
510 * setting up file descriptors, controlling tty, updating wtmp, utmp,
511 * lastlog, and other such operations.
512 */
6ae2364d 513void
65068d16 514do_exec_pty(Session *s, const char *command)
7368a6c8 515{
7368a6c8 516 int fdout, ptyfd, ttyfd, ptymaster;
7368a6c8 517 pid_t pid;
7368a6c8 518
519 if (s == NULL)
520 fatal("do_exec_pty: no session");
521 ptyfd = s->ptyfd;
522 ttyfd = s->ttyfd;
523
b19d61d7 524#if defined(USE_PAM)
7fceb20d 525 if (options.use_pam) {
49e82bb9 526 do_pam_set_tty(s->tty);
72037bc8 527 if (!use_privsep)
528 do_pam_setcred(1);
7fceb20d 529 }
27cf96de 530#endif
266140a8 531
7368a6c8 532 /* Fork the child. */
533 if ((pid = fork()) == 0) {
2362db19 534 is_child = 1;
57156994 535
c345cf9d 536 /* Child. Reinitialize the log because the pid has changed. */
7368a6c8 537 log_init(__progname, options.log_level, options.log_facility, log_stderr);
7368a6c8 538 /* Close the master side of the pseudo tty. */
539 close(ptyfd);
540
541 /* Make the pseudo tty our controlling tty. */
542 pty_make_controlling_tty(&ttyfd, s->tty);
543
05fd093c 544 /* Redirect stdin/stdout/stderr from the pseudo tty. */
545 if (dup2(ttyfd, 0) < 0)
546 error("dup2 stdin: %s", strerror(errno));
547 if (dup2(ttyfd, 1) < 0)
548 error("dup2 stdout: %s", strerror(errno));
549 if (dup2(ttyfd, 2) < 0)
550 error("dup2 stderr: %s", strerror(errno));
7368a6c8 551
552 /* Close the extra descriptor for the pseudo tty. */
553 close(ttyfd);
554
c345cf9d 555 /* record login, etc. similar to login(1) */
c96a4aaf 556#ifndef HAVE_OSF_SIA
ef51930f 557 if (!(options.use_login && command == NULL)) {
558#ifdef _UNICOS
559 cray_init_job(s->pw); /* set up cray jid and tmpdir */
560#endif /* _UNICOS */
a22aff1f 561 do_login(s, command);
ef51930f 562 }
7e2d5fa4 563# ifdef LOGIN_NEEDS_UTMPX
564 else
565 do_pre_login(s);
566# endif
c96a4aaf 567#endif
7368a6c8 568
7368a6c8 569 /* Do common processing for the child, such as execing the command. */
56b3e9ce 570 do_child(s, command);
7368a6c8 571 /* NOTREACHED */
572 }
ef51930f 573#ifdef _UNICOS
574 signal(WJSIGNAL, cray_job_termination_handler);
575#endif /* _UNICOS */
3c62e7eb 576#ifdef HAVE_CYGWIN
577 if (is_winnt)
578 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
579#endif
7368a6c8 580 if (pid < 0)
581 packet_disconnect("fork failed: %.100s", strerror(errno));
582 s->pid = pid;
583
584 /* Parent. Close the slave side of the pseudo tty. */
585 close(ttyfd);
586
587 /*
588 * Create another descriptor of the pty master side for use as the
589 * standard input. We could use the original descriptor, but this
590 * simplifies code in server_loop. The descriptor is bidirectional.
591 */
592 fdout = dup(ptyfd);
593 if (fdout < 0)
594 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
595
596 /* we keep a reference to the pty master */
597 ptymaster = dup(ptyfd);
598 if (ptymaster < 0)
599 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
600 s->ptymaster = ptymaster;
601
602 /* Enter interactive session. */
b5c334cc 603 packet_set_interactive(1);
e78a59f5 604 if (compat20) {
605 session_set_fds(s, ptyfd, fdout, -1);
606 } else {
607 server_loop(pid, ptyfd, fdout, -1);
608 /* server_loop _has_ closed ptyfd and fdout. */
e78a59f5 609 }
7368a6c8 610}
611
7e2d5fa4 612#ifdef LOGIN_NEEDS_UTMPX
0e0144b7 613static void
7e2d5fa4 614do_pre_login(Session *s)
615{
616 socklen_t fromlen;
617 struct sockaddr_storage from;
618 pid_t pid = getpid();
619
620 /*
621 * Get IP address of client. If the connection is not a socket, let
622 * the address be 0.0.0.0.
623 */
624 memset(&from, 0, sizeof(from));
ba1566dd 625 fromlen = sizeof(from);
7e2d5fa4 626 if (packet_connection_is_on_socket()) {
7e2d5fa4 627 if (getpeername(packet_get_connection_in(),
184eed6a 628 (struct sockaddr *) & from, &fromlen) < 0) {
7e2d5fa4 629 debug("getpeername: %.100s", strerror(errno));
2362db19 630 cleanup_exit(255);
7e2d5fa4 631 }
632 }
633
634 record_utmp_only(pid, s->tty, s->pw->pw_name,
c5a7d788 635 get_remote_name_or_ip(utmp_len, options.use_dns),
d4ac26ed 636 (struct sockaddr *)&from, fromlen);
7e2d5fa4 637}
638#endif
639
dac6753b 640/*
641 * This is called to fork and execute a command. If another command is
642 * to be forced, execute that instead.
643 */
644void
645do_exec(Session *s, const char *command)
646{
647 if (forced_command) {
648 original_command = command;
649 command = forced_command;
dac6753b 650 debug("Forced command '%.900s'", command);
651 }
652
f89f8ddc 653#ifdef GSSAPI
654 if (options.gss_authentication) {
655 temporarily_use_uid(s->pw);
656 ssh_gssapi_storecreds();
657 restore_uid();
658 }
659#endif
660
dac6753b 661 if (s->ttyfd != -1)
662 do_exec_pty(s, command);
663 else
664 do_exec_no_pty(s, command);
665
c95add71 666 original_command = NULL;
dac6753b 667}
668
f7342052 669
c345cf9d 670/* administrative, login(1)-like work */
671void
a22aff1f 672do_login(Session *s, const char *command)
c345cf9d 673{
c345cf9d 674 char *time_string;
c345cf9d 675 socklen_t fromlen;
676 struct sockaddr_storage from;
c345cf9d 677 struct passwd * pw = s->pw;
678 pid_t pid = getpid();
679
680 /*
681 * Get IP address of client. If the connection is not a socket, let
682 * the address be 0.0.0.0.
683 */
684 memset(&from, 0, sizeof(from));
d4ac26ed 685 fromlen = sizeof(from);
c345cf9d 686 if (packet_connection_is_on_socket()) {
c345cf9d 687 if (getpeername(packet_get_connection_in(),
f7342052 688 (struct sockaddr *) & from, &fromlen) < 0) {
c345cf9d 689 debug("getpeername: %.100s", strerror(errno));
2362db19 690 cleanup_exit(255);
c345cf9d 691 }
692 }
693
694 /* Record that there was a login on that tty from the remote host. */
49a34e84 695 if (!use_privsep)
696 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
697 get_remote_name_or_ip(utmp_len,
c5a7d788 698 options.use_dns),
ba1566dd 699 (struct sockaddr *)&from, fromlen);
c345cf9d 700
2919e060 701#ifdef USE_PAM
702 /*
703 * If password change is needed, do it now.
704 * This needs to occur before the ~/.hushlogin check.
705 */
dd1fb864 706 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
707 display_loginmsg();
2919e060 708 do_pam_chauthtok();
dd1fb864 709 s->authctxt->force_pwchange = 0;
5b9e2464 710 /* XXX - signal [net] parent to enable forwardings */
2919e060 711 }
712#endif
713
f2c2fd71 714 if (check_quietlogin(s, command))
c345cf9d 715 return;
716
dd1fb864 717 display_loginmsg();
c345cf9d 718
ef51930f 719#ifndef NO_SSH_LASTLOG
ffbf7323 720 if (options.print_lastlog && s->last_login_time != 0) {
721 time_string = ctime(&s->last_login_time);
c345cf9d 722 if (strchr(time_string, '\n'))
723 *strchr(time_string, '\n') = 0;
ffbf7323 724 if (strcmp(s->hostname, "") == 0)
c345cf9d 725 printf("Last login: %s\r\n", time_string);
726 else
ffbf7323 727 printf("Last login: %s from %s\r\n", time_string,
728 s->hostname);
c345cf9d 729 }
ef51930f 730#endif /* NO_SSH_LASTLOG */
f2c2fd71 731
732 do_motd();
733}
734
735/*
736 * Display the message of the day.
737 */
738void
739do_motd(void)
740{
741 FILE *f;
742 char buf[256];
743
c345cf9d 744 if (options.print_motd) {
2e73a022 745#ifdef HAVE_LOGIN_CAP
746 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
747 "/etc/motd"), "r");
748#else
c345cf9d 749 f = fopen("/etc/motd", "r");
2e73a022 750#endif
c345cf9d 751 if (f) {
752 while (fgets(buf, sizeof(buf), f))
753 fputs(buf, stdout);
754 fclose(f);
755 }
756 }
757}
758
9c328529 759
760/*
761 * Check for quiet login, either .hushlogin or command given.
762 */
763int
764check_quietlogin(Session *s, const char *command)
765{
766 char buf[256];
767 struct passwd *pw = s->pw;
768 struct stat st;
769
770 /* Return 1 if .hushlogin exists or a command given. */
771 if (command != NULL)
772 return 1;
773 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
774#ifdef HAVE_LOGIN_CAP
775 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
776 return 1;
777#else
778 if (stat(buf, &st) >= 0)
779 return 1;
780#endif
781 return 0;
782}
783
7368a6c8 784/*
785 * Sets the value of the given variable in the environment. If the variable
786 * already exists, its value is overriden.
787 */
7364bd04 788void
1e3b8b07 789child_set_env(char ***envp, u_int *envsizep, const char *name,
184eed6a 790 const char *value)
7368a6c8 791{
7368a6c8 792 char **env;
c46e584f 793 u_int envsize;
794 u_int i, namelen;
7368a6c8 795
95b99395 796 /*
797 * If we're passed an uninitialized list, allocate a single null
798 * entry before continuing.
799 */
800 if (*envp == NULL && *envsizep == 0) {
801 *envp = xmalloc(sizeof(char *));
802 *envp[0] = NULL;
803 *envsizep = 1;
804 }
805
7368a6c8 806 /*
807 * Find the slot where the value should be stored. If the variable
808 * already exists, we reuse the slot; otherwise we append a new slot
809 * at the end of the array, expanding if necessary.
810 */
811 env = *envp;
812 namelen = strlen(name);
813 for (i = 0; env[i]; i++)
814 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
815 break;
816 if (env[i]) {
817 /* Reuse the slot. */
818 xfree(env[i]);
819 } else {
820 /* New variable. Expand if necessary. */
c46e584f 821 envsize = *envsizep;
822 if (i >= envsize - 1) {
823 if (envsize >= 1000)
824 fatal("child_set_env: too many env vars");
825 envsize += 50;
826 env = (*envp) = xrealloc(env, envsize * sizeof(char *));
827 *envsizep = envsize;
7368a6c8 828 }
829 /* Need to set the NULL pointer at end of array beyond the new slot. */
830 env[i + 1] = NULL;
831 }
832
833 /* Allocate space and format the variable in the appropriate slot. */
834 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
835 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
836}
837
838/*
839 * Reads environment variables from the given file and adds/overrides them
840 * into the environment. If the file does not exist, this does nothing.
841 * Otherwise, it must consist of empty lines, comments (line starts with '#')
842 * and assignments of the form name=value. No other forms are allowed.
843 */
396c147e 844static void
1e3b8b07 845read_environment_file(char ***env, u_int *envsize,
184eed6a 846 const char *filename)
7368a6c8 847{
848 FILE *f;
849 char buf[4096];
850 char *cp, *value;
66087567 851 u_int lineno = 0;
7368a6c8 852
853 f = fopen(filename, "r");
854 if (!f)
855 return;
856
857 while (fgets(buf, sizeof(buf), f)) {
66087567 858 if (++lineno > 1000)
859 fatal("Too many lines in environment file %s", filename);
7368a6c8 860 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
861 ;
862 if (!*cp || *cp == '#' || *cp == '\n')
863 continue;
864 if (strchr(cp, '\n'))
865 *strchr(cp, '\n') = '\0';
866 value = strchr(cp, '=');
867 if (value == NULL) {
66087567 868 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
869 filename);
7368a6c8 870 continue;
871 }
71276795 872 /*
873 * Replace the equals sign by nul, and advance value to
874 * the value string.
875 */
7368a6c8 876 *value = '\0';
877 value++;
878 child_set_env(env, envsize, cp, value);
879 }
880 fclose(f);
881}
882
95b99395 883#ifdef HAVE_ETC_DEFAULT_LOGIN
884/*
885 * Return named variable from specified environment, or NULL if not present.
886 */
887static char *
888child_get_env(char **env, const char *name)
889{
890 int i;
891 size_t len;
892
893 len = strlen(name);
894 for (i=0; env[i] != NULL; i++)
895 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
896 return(env[i] + len + 1);
897 return NULL;
898}
899
900/*
901 * Read /etc/default/login.
902 * We pick up the PATH (or SUPATH for root) and UMASK.
903 */
904static void
905read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
906{
907 char **tmpenv = NULL, *var;
6f99680f 908 u_int i, tmpenvsize = 0;
3a23ba0e 909 u_long mask;
95b99395 910
911 /*
912 * We don't want to copy the whole file to the child's environment,
913 * so we use a temporary environment and copy the variables we're
914 * interested in.
915 */
916 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
917
6f99680f 918 if (tmpenv == NULL)
919 return;
920
95b99395 921 if (uid == 0)
922 var = child_get_env(tmpenv, "SUPATH");
923 else
924 var = child_get_env(tmpenv, "PATH");
925 if (var != NULL)
926 child_set_env(env, envsize, "PATH", var);
b6453d99 927
95b99395 928 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
929 if (sscanf(var, "%5lo", &mask) == 1)
3a23ba0e 930 umask((mode_t)mask);
b6453d99 931
95b99395 932 for (i = 0; tmpenv[i] != NULL; i++)
933 xfree(tmpenv[i]);
934 xfree(tmpenv);
935}
936#endif /* HAVE_ETC_DEFAULT_LOGIN */
937
760b35a6 938void copy_environment(char **source, char ***env, u_int *envsize)
7368a6c8 939{
760b35a6 940 char *var_name, *var_val;
7368a6c8 941 int i;
942
760b35a6 943 if (source == NULL)
7368a6c8 944 return;
2b87da3b 945
760b35a6 946 for(i = 0; source[i] != NULL; i++) {
947 var_name = xstrdup(source[i]);
948 if ((var_val = strstr(var_name, "=")) == NULL) {
949 xfree(var_name);
7368a6c8 950 continue;
7368a6c8 951 }
760b35a6 952 *var_val++ = '\0';
7368a6c8 953
760b35a6 954 debug3("Copy environment: %s=%s", var_name, var_val);
955 child_set_env(env, envsize, var_name, var_val);
b6453d99 956
760b35a6 957 xfree(var_name);
22d89d24 958 }
959}
22d89d24 960
f7342052 961static char **
962do_setup_env(Session *s, const char *shell)
7368a6c8 963{
7368a6c8 964 char buf[256];
f7342052 965 u_int i, envsize;
95b99395 966 char **env, *laddr, *path = NULL;
f7342052 967 struct passwd *pw = s->pw;
7368a6c8 968
7368a6c8 969 /* Initialize the environment. */
970 envsize = 100;
971 env = xmalloc(envsize * sizeof(char *));
972 env[0] = NULL;
973
3c62e7eb 974#ifdef HAVE_CYGWIN
975 /*
976 * The Windows environment contains some setting which are
977 * important for a running system. They must not be dropped.
978 */
760b35a6 979 copy_environment(environ, &env, &envsize);
3c62e7eb 980#endif
981
7364bd04 982#ifdef GSSAPI
aff51935 983 /* Allow any GSSAPI methods that we've used to alter
7364bd04 984 * the childs environment as they see fit
985 */
986 ssh_gssapi_do_child(&env, &envsize);
987#endif
988
7368a6c8 989 if (!options.use_login) {
990 /* Set basic environment. */
991 child_set_env(&env, &envsize, "USER", pw->pw_name);
992 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
17ed08c5 993#ifdef _AIX
994 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
995#endif
7368a6c8 996 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
2e73a022 997#ifdef HAVE_LOGIN_CAP
97686bf9 998 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
999 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1000 else
1001 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
22d89d24 1002#else /* HAVE_LOGIN_CAP */
1003# ifndef HAVE_CYGWIN
3c62e7eb 1004 /*
1005 * There's no standard path on Windows. The path contains
1006 * important components pointing to the system directories,
1007 * needed for loading shared libraries. So the path better
1008 * remains intact here.
1009 */
95b99395 1010# ifdef HAVE_ETC_DEFAULT_LOGIN
1011 read_etc_default_login(&env, &envsize, pw->pw_uid);
1012 path = child_get_env(env, "PATH");
1013# endif /* HAVE_ETC_DEFAULT_LOGIN */
1014 if (path == NULL || *path == '\0') {
aff51935 1015 child_set_env(&env, &envsize, "PATH",
95b99395 1016 s->pw->pw_uid == 0 ?
1017 SUPERUSER_PATH : _PATH_STDPATH);
1018 }
22d89d24 1019# endif /* HAVE_CYGWIN */
1020#endif /* HAVE_LOGIN_CAP */
7368a6c8 1021
1022 snprintf(buf, sizeof buf, "%.200s/%.50s",
1023 _PATH_MAILDIR, pw->pw_name);
1024 child_set_env(&env, &envsize, "MAIL", buf);
1025
1026 /* Normal systems set SHELL by default. */
1027 child_set_env(&env, &envsize, "SHELL", shell);
1028 }
1029 if (getenv("TZ"))
1030 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1031
1032 /* Set custom environment options from RSA authentication. */
2548961d 1033 if (!options.use_login) {
1034 while (custom_environment) {
1035 struct envstring *ce = custom_environment;
7fdc56c5 1036 char *str = ce->s;
f7342052 1037
7fdc56c5 1038 for (i = 0; str[i] != '=' && str[i]; i++)
2548961d 1039 ;
7fdc56c5 1040 if (str[i] == '=') {
1041 str[i] = 0;
1042 child_set_env(&env, &envsize, str, str + i + 1);
2548961d 1043 }
1044 custom_environment = ce->next;
1045 xfree(ce->s);
1046 xfree(ce);
7368a6c8 1047 }
7368a6c8 1048 }
1049
da0561eb 1050 /* SSH_CLIENT deprecated */
7368a6c8 1051 snprintf(buf, sizeof buf, "%.50s %d %d",
f7342052 1052 get_remote_ipaddr(), get_remote_port(), get_local_port());
7368a6c8 1053 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1054
3e2f2431 1055 laddr = get_local_ipaddr(packet_get_connection_in());
da0561eb 1056 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
3e2f2431 1057 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1058 xfree(laddr);
da0561eb 1059 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1060
56b3e9ce 1061 if (s->ttyfd != -1)
1062 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1063 if (s->term)
1064 child_set_env(&env, &envsize, "TERM", s->term);
1065 if (s->display)
1066 child_set_env(&env, &envsize, "DISPLAY", s->display);
b5e300c2 1067 if (original_command)
1068 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1069 original_command);
7368a6c8 1070
ef51930f 1071#ifdef _UNICOS
1072 if (cray_tmpdir[0] != '\0')
1073 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1074#endif /* _UNICOS */
1075
7368a6c8 1076#ifdef _AIX
4936fcee 1077 {
1078 char *cp;
1079
1080 if ((cp = getenv("AUTHSTATE")) != NULL)
1081 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1082 if ((cp = getenv("KRB5CCNAME")) != NULL)
1083 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1084 read_environment_file(&env, &envsize, "/etc/environment");
1085 }
7368a6c8 1086#endif
ced49be2 1087#ifdef KRB5
1088 if (s->authctxt->krb5_ticket_file)
1089 child_set_env(&env, &envsize, "KRB5CCNAME",
1090 s->authctxt->krb5_ticket_file);
1091#endif
7368a6c8 1092#ifdef USE_PAM
ee48c949 1093 /*
1094 * Pull in any environment variables that may have
1095 * been set by PAM.
1096 */
7fceb20d 1097 if (options.use_pam) {
2212fc98 1098 char **p;
b6453d99 1099
2212fc98 1100 p = fetch_pam_child_environment();
1101 copy_environment(p, &env, &envsize);
1102 free_pam_environment(p);
ee48c949 1103
2212fc98 1104 p = fetch_pam_environment();
ee48c949 1105 copy_environment(p, &env, &envsize);
1106 free_pam_environment(p);
1107 }
7368a6c8 1108#endif /* USE_PAM */
1109
149cdb60 1110 if (auth_sock_name != NULL)
7368a6c8 1111 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
149cdb60 1112 auth_sock_name);
7368a6c8 1113
1114 /* read $HOME/.ssh/environment. */
f00bab84 1115 if (options.permit_user_env && !options.use_login) {
71276795 1116 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
e2e36358 1117 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
7368a6c8 1118 read_environment_file(&env, &envsize, buf);
1119 }
1120 if (debug_flag) {
1121 /* dump the environment */
1122 fprintf(stderr, "Environment:\n");
1123 for (i = 0; env[i]; i++)
1124 fprintf(stderr, " %.200s\n", env[i]);
1125 }
f7342052 1126 return env;
1127}
1128
1129/*
1130 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1131 * first in this order).
1132 */
1133static void
1134do_rc_files(Session *s, const char *shell)
1135{
1136 FILE *f = NULL;
1137 char cmd[1024];
1138 int do_xauth;
1139 struct stat st;
1140
1141 do_xauth =
1142 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1143
1144 /* ignore _PATH_SSH_USER_RC for subsystems */
1145 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1146 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1147 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1148 if (debug_flag)
1149 fprintf(stderr, "Running %s\n", cmd);
1150 f = popen(cmd, "w");
1151 if (f) {
1152 if (do_xauth)
1153 fprintf(f, "%s %s\n", s->auth_proto,
1154 s->auth_data);
1155 pclose(f);
1156 } else
1157 fprintf(stderr, "Could not run %s\n",
1158 _PATH_SSH_USER_RC);
1159 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1160 if (debug_flag)
1161 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1162 _PATH_SSH_SYSTEM_RC);
1163 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "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_SYSTEM_RC);
1172 } else if (do_xauth && options.xauth_location != NULL) {
1173 /* Add authority data to .Xauthority if appropriate. */
1174 if (debug_flag) {
1175 fprintf(stderr,
fe661d8f 1176 "Running %.500s remove %.100s\n",
2362db19 1177 options.xauth_location, s->auth_display);
fe661d8f 1178 fprintf(stderr,
1179 "%.500s add %.100s %.100s %.100s\n",
f7342052 1180 options.xauth_location, s->auth_display,
1181 s->auth_proto, s->auth_data);
1182 }
1183 snprintf(cmd, sizeof cmd, "%s -q -",
1184 options.xauth_location);
1185 f = popen(cmd, "w");
1186 if (f) {
fe661d8f 1187 fprintf(f, "remove %s\n",
1188 s->auth_display);
f7342052 1189 fprintf(f, "add %s %s %s\n",
1190 s->auth_display, s->auth_proto,
1191 s->auth_data);
1192 pclose(f);
1193 } else {
1194 fprintf(stderr, "Could not run %s\n",
1195 cmd);
1196 }
1197 }
1198}
1199
1200static void
1201do_nologin(struct passwd *pw)
1202{
1203 FILE *f = NULL;
1204 char buf[1024];
1205
1206#ifdef HAVE_LOGIN_CAP
1207 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1208 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1209 _PATH_NOLOGIN), "r");
1210#else
1211 if (pw->pw_uid)
1212 f = fopen(_PATH_NOLOGIN, "r");
1213#endif
1214 if (f) {
1215 /* /etc/nologin exists. Print its contents and exit. */
bbe88b6d 1216 logit("User %.100s not allowed because %s exists",
8bd4e2ae 1217 pw->pw_name, _PATH_NOLOGIN);
f7342052 1218 while (fgets(buf, sizeof(buf), f))
1219 fputs(buf, stderr);
1220 fclose(f);
99f4fb69 1221 fflush(NULL);
f7342052 1222 exit(254);
1223 }
1224}
1225
1226/* Set login name, uid, gid, and groups. */
1853d1ef 1227void
f7342052 1228do_setusercontext(struct passwd *pw)
1229{
2731632a 1230#ifndef HAVE_CYGWIN
1231 if (getuid() == 0 || geteuid() == 0)
f7342052 1232#endif /* HAVE_CYGWIN */
2731632a 1233 {
1234
8bbfc882 1235#ifdef HAVE_SETPCRED
166baacc 1236 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1237 fatal("Failed to set process credentials");
8bbfc882 1238#endif /* HAVE_SETPCRED */
f7342052 1239#ifdef HAVE_LOGIN_CAP
2d199535 1240# ifdef __bsdi__
8695f9f7 1241 setpgid(0, 0);
2d199535 1242# endif
f4eaee12 1243# ifdef USE_PAM
1244 if (options.use_pam) {
1245 do_pam_session();
1246 do_pam_setcred(0);
1247 }
1248# endif /* USE_PAM */
f7342052 1249 if (setusercontext(lc, pw, pw->pw_uid,
1250 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1251 perror("unable to set user context");
1252 exit(1);
1253 }
1254#else
1255# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1256 /* Sets login uid for accounting */
1257 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1258 error("setluid: %s", strerror(errno));
1259# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1260
1261 if (setlogin(pw->pw_name) < 0)
1262 error("setlogin failed: %s", strerror(errno));
1263 if (setgid(pw->pw_gid) < 0) {
1264 perror("setgid");
1265 exit(1);
1266 }
1267 /* Initialize the group list. */
1268 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1269 perror("initgroups");
1270 exit(1);
1271 }
1272 endgrent();
1273# ifdef USE_PAM
1274 /*
aff51935 1275 * PAM credentials may take the form of supplementary groups.
f7342052 1276 * These will have been wiped by the above initgroups() call.
1277 * Reestablish them here.
1278 */
49e82bb9 1279 if (options.use_pam) {
1280 do_pam_session();
7fceb20d 1281 do_pam_setcred(0);
49e82bb9 1282 }
f7342052 1283# endif /* USE_PAM */
1284# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1285 irix_setusercontext(pw);
1286# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
e2bc41f9 1287# ifdef _AIX
0ba40daa 1288 aix_usrinfo(pw);
e2bc41f9 1289# endif /* _AIX */
f7342052 1290 /* Permanently switch to the desired uid. */
1291 permanently_set_uid(pw);
1292#endif
1293 }
2731632a 1294
1295#ifdef HAVE_CYGWIN
1296 if (is_winnt)
1297#endif
f7342052 1298 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1299 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1300}
1301
37656beb 1302static void
1303do_pwchange(Session *s)
1304{
1305 fprintf(stderr, "WARNING: Your password has expired.\n");
1306 if (s->ttyfd != -1) {
1307 fprintf(stderr,
1308 "You must change your password now and login again!\n");
1309 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
1310 perror("passwd");
1311 } else {
1312 fprintf(stderr,
1313 "Password change required but no TTY available.\n");
1314 }
1315 exit(1);
1316}
1317
51aeb639 1318static void
1853d1ef 1319launch_login(struct passwd *pw, const char *hostname)
1320{
1321 /* Launch login(1). */
1322
85cc9118 1323 execl(LOGIN_PROGRAM, "login", "-h", hostname,
1178e8db 1324#ifdef xxxLOGIN_NEEDS_TERM
875ec275 1325 (s->term ? s->term : "unknown"),
1853d1ef 1326#endif /* LOGIN_NEEDS_TERM */
a2572aa7 1327#ifdef LOGIN_NO_ENDOPT
1328 "-p", "-f", pw->pw_name, (char *)NULL);
1329#else
1853d1ef 1330 "-p", "-f", "--", pw->pw_name, (char *)NULL);
a2572aa7 1331#endif
1853d1ef 1332
1333 /* Login couldn't be executed, die. */
1334
1335 perror("login");
1336 exit(1);
1337}
1338
37656beb 1339static void
1340child_close_fds(void)
1341{
1342 int i;
1343
1344 if (packet_get_connection_in() == packet_get_connection_out())
1345 close(packet_get_connection_in());
1346 else {
1347 close(packet_get_connection_in());
1348 close(packet_get_connection_out());
1349 }
1350 /*
1351 * Close all descriptors related to channels. They will still remain
1352 * open in the parent.
1353 */
1354 /* XXX better use close-on-exec? -markus */
1355 channel_close_all();
1356
1357 /*
1358 * Close any extra file descriptors. Note that there may still be
1359 * descriptors left by system functions. They will be closed later.
1360 */
1361 endpwent();
1362
1363 /*
1364 * Close any extra open file descriptors so that we don\'t have them
1365 * hanging around in clients. Note that we want to do this after
1366 * initgroups, because at least on Solaris 2.3 it leaves file
1367 * descriptors open.
1368 */
1369 for (i = 3; i < 64; i++)
1370 close(i);
1371}
1372
f7342052 1373/*
1374 * Performs common processing for the child, such as setting up the
1375 * environment, closing extra file descriptors, setting the user and group
1376 * ids, and executing the command or shell.
1377 */
1378void
1379do_child(Session *s, const char *command)
1380{
1381 extern char **environ;
1382 char **env;
1383 char *argv[10];
1384 const char *shell, *shell0, *hostname = NULL;
1385 struct passwd *pw = s->pw;
f7342052 1386
1387 /* remove hostkey from the child's memory */
1388 destroy_sensitive_data();
1389
37656beb 1390 /* Force a password change */
1391 if (s->authctxt->force_pwchange) {
1392 do_setusercontext(pw);
1393 child_close_fds();
1394 do_pwchange(s);
1395 exit(1);
1396 }
1397
f7342052 1398 /* login(1) is only called if we execute the login shell */
1399 if (options.use_login && command != NULL)
1400 options.use_login = 0;
1401
ef51930f 1402#ifdef _UNICOS
1403 cray_setup(pw->pw_uid, pw->pw_name, command);
1404#endif /* _UNICOS */
1405
f7342052 1406 /*
1407 * Login(1) does this as well, and it needs uid 0 for the "-h"
1408 * switch, so we let login(1) to this for us.
1409 */
1410 if (!options.use_login) {
1411#ifdef HAVE_OSF_SIA
58d0df4e 1412 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
f7342052 1413 if (!check_quietlogin(s, command))
1414 do_motd();
1415#else /* HAVE_OSF_SIA */
1416 do_nologin(pw);
1417 do_setusercontext(pw);
1418#endif /* HAVE_OSF_SIA */
1419 }
1420
1421 /*
1422 * Get the shell from the password data. An empty shell field is
1423 * legal, and means /bin/sh.
1424 */
1425 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
32214c88 1426
1427 /*
1428 * Make sure $SHELL points to the shell from the password file,
1429 * even if shell is overridden from login.conf
1430 */
1431 env = do_setup_env(s, shell);
1432
f7342052 1433#ifdef HAVE_LOGIN_CAP
1434 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1435#endif
1436
2e73a022 1437 /* we have to stash the hostname before we close our socket. */
1438 if (options.use_login)
46e3af7f 1439 hostname = get_remote_name_or_ip(utmp_len,
c5a7d788 1440 options.use_dns);
7368a6c8 1441 /*
1442 * Close the connection descriptors; note that this is the child, and
1443 * the server will still have the socket open, and it is important
1444 * that we do not shutdown it. Note that the descriptors cannot be
1445 * closed before building the environment, as we call
1446 * get_remote_ipaddr there.
1447 */
37656beb 1448 child_close_fds();
7368a6c8 1449
7368a6c8 1450 /*
2a8a6488 1451 * Must take new environment into use so that .ssh/rc,
1452 * /etc/ssh/sshrc and xauth are run in the proper environment.
7368a6c8 1453 */
1454 environ = env;
1455
bcfcc5f9 1456#if defined(KRB5) && defined(USE_AFS)
a1e30b47 1457 /*
1458 * At this point, we check to see if AFS is active and if we have
1459 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1460 * if we can (and need to) extend the ticket into an AFS token. If
1461 * we don't do this, we run into potential problems if the user's
1462 * home directory is in AFS and it's not world-readable.
1463 */
1464
1465 if (options.kerberos_get_afs_token && k_hasafs() &&
1466 (s->authctxt->krb5_ctx != NULL)) {
1467 char cell[64];
1468
1469 debug("Getting AFS token");
1470
1471 k_setpag();
1472
1473 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1474 krb5_afslog(s->authctxt->krb5_ctx,
1475 s->authctxt->krb5_fwd_ccache, cell, NULL);
1476
1477 krb5_afslog_home(s->authctxt->krb5_ctx,
1478 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1479 }
1480#endif
1481
dab89049 1482 /* Change current directory to the user\'s home directory. */
1483 if (chdir(pw->pw_dir) < 0) {
1484 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1485 pw->pw_dir, strerror(errno));
1486#ifdef HAVE_LOGIN_CAP
1487 if (login_getcapbool(lc, "requirehome", 0))
1488 exit(1);
1489#endif
1490 }
1491
f7342052 1492 if (!options.use_login)
1493 do_rc_files(s, shell);
1d3c30db 1494
1495 /* restore SIGPIPE for child */
1496 signal(SIGPIPE, SIG_DFL);
1497
f7342052 1498 if (options.use_login) {
1853d1ef 1499 launch_login(pw, hostname);
1500 /* NEVERREACHED */
f7342052 1501 }
1502
1503 /* Get the last component of the shell name. */
1504 if ((shell0 = strrchr(shell, '/')) != NULL)
1505 shell0++;
1506 else
1507 shell0 = shell;
1508
7368a6c8 1509 /*
1510 * If we have no command, execute the shell. In this case, the shell
1511 * name to be passed in argv[0] is preceded by '-' to indicate that
1512 * this is a login shell.
1513 */
1514 if (!command) {
f7342052 1515 char argv0[256];
7368a6c8 1516
f7342052 1517 /* Start the shell. Set initial character to '-'. */
1518 argv0[0] = '-';
7368a6c8 1519
f7342052 1520 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1521 >= sizeof(argv0) - 1) {
1522 errno = EINVAL;
7368a6c8 1523 perror(shell);
1524 exit(1);
f7342052 1525 }
7368a6c8 1526
f7342052 1527 /* Execute the shell. */
1528 argv[0] = argv0;
1529 argv[1] = NULL;
1530 execve(shell, argv, env);
7368a6c8 1531
f7342052 1532 /* Executing the shell failed. */
1533 perror(shell);
1534 exit(1);
7368a6c8 1535 }
1536 /*
1537 * Execute the command using the user's shell. This uses the -c
1538 * option to execute the command.
1539 */
f7342052 1540 argv[0] = (char *) shell0;
7368a6c8 1541 argv[1] = "-c";
1542 argv[2] = (char *) command;
1543 argv[3] = NULL;
1544 execve(shell, argv, env);
1545 perror(shell);
1546 exit(1);
1547}
1548
1549Session *
1550session_new(void)
1551{
1552 int i;
1553 static int did_init = 0;
1554 if (!did_init) {
1555 debug("session_new: init");
184eed6a 1556 for (i = 0; i < MAX_SESSIONS; i++) {
7368a6c8 1557 sessions[i].used = 0;
7368a6c8 1558 }
1559 did_init = 1;
1560 }
184eed6a 1561 for (i = 0; i < MAX_SESSIONS; i++) {
7368a6c8 1562 Session *s = &sessions[i];
1563 if (! s->used) {
690d0d7f 1564 memset(s, 0, sizeof(*s));
7368a6c8 1565 s->chanid = -1;
1566 s->ptyfd = -1;
1567 s->ttyfd = -1;
7368a6c8 1568 s->used = 1;
86066315 1569 s->self = i;
02323c45 1570 debug("session_new: session %d", i);
7368a6c8 1571 return s;
1572 }
1573 }
1574 return NULL;
1575}
1576
396c147e 1577static void
7368a6c8 1578session_dump(void)
1579{
1580 int i;
184eed6a 1581 for (i = 0; i < MAX_SESSIONS; i++) {
7368a6c8 1582 Session *s = &sessions[i];
c457707e 1583 debug("dump: used %d session %d %p channel %d pid %ld",
7368a6c8 1584 s->used,
1585 s->self,
1586 s,
1587 s->chanid,
c457707e 1588 (long)s->pid);
7368a6c8 1589 }
1590}
1591
e78a59f5 1592int
57156994 1593session_open(Authctxt *authctxt, int chanid)
e78a59f5 1594{
1595 Session *s = session_new();
1596 debug("session_open: channel %d", chanid);
1597 if (s == NULL) {
1598 error("no more sessions");
1599 return 0;
1600 }
57156994 1601 s->authctxt = authctxt;
1602 s->pw = authctxt->pw;
fdaef11e 1603 if (s->pw == NULL || !authctxt->valid)
0725ea77 1604 fatal("no user for session %d", s->self);
0b242b12 1605 debug("session_open: session %d: link with channel %d", s->self, chanid);
1606 s->chanid = chanid;
e78a59f5 1607 return 1;
1608}
1609
1853d1ef 1610Session *
1611session_by_tty(char *tty)
1612{
1613 int i;
1614 for (i = 0; i < MAX_SESSIONS; i++) {
1615 Session *s = &sessions[i];
1616 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1617 debug("session_by_tty: session %d tty %s", i, tty);
1618 return s;
1619 }
1620 }
1621 debug("session_by_tty: unknown tty %.100s", tty);
1622 session_dump();
1623 return NULL;
1624}
1625
396c147e 1626static Session *
e78a59f5 1627session_by_channel(int id)
1628{
1629 int i;
184eed6a 1630 for (i = 0; i < MAX_SESSIONS; i++) {
e78a59f5 1631 Session *s = &sessions[i];
1632 if (s->used && s->chanid == id) {
1633 debug("session_by_channel: session %d channel %d", i, id);
1634 return s;
1635 }
1636 }
1637 debug("session_by_channel: unknown channel %d", id);
1638 session_dump();
1639 return NULL;
1640}
1641
396c147e 1642static Session *
e78a59f5 1643session_by_pid(pid_t pid)
1644{
1645 int i;
c457707e 1646 debug("session_by_pid: pid %ld", (long)pid);
184eed6a 1647 for (i = 0; i < MAX_SESSIONS; i++) {
e78a59f5 1648 Session *s = &sessions[i];
1649 if (s->used && s->pid == pid)
1650 return s;
1651 }
c457707e 1652 error("session_by_pid: unknown pid %ld", (long)pid);
e78a59f5 1653 session_dump();
1654 return NULL;
1655}
1656
396c147e 1657static int
e78a59f5 1658session_window_change_req(Session *s)
1659{
1660 s->col = packet_get_int();
1661 s->row = packet_get_int();
1662 s->xpixel = packet_get_int();
1663 s->ypixel = packet_get_int();
95500969 1664 packet_check_eom();
e78a59f5 1665 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1666 return 1;
1667}
1668
396c147e 1669static int
e78a59f5 1670session_pty_req(Session *s)
1671{
1e3b8b07 1672 u_int len;
30dcc918 1673 int n_bytes;
762715ce 1674
653d5f86 1675 if (no_pty_flag) {
1676 debug("Allocating a pty not permitted for this authentication.");
38c295d6 1677 return 0;
653d5f86 1678 }
1679 if (s->ttyfd != -1) {
1680 packet_disconnect("Protocol error: you already have a pty.");
6ae2364d 1681 return 0;
653d5f86 1682 }
ffbf7323 1683 /* Get the time and hostname when the user last logged in. */
1684 if (options.print_lastlog) {
1685 s->hostname[0] = '\0';
1686 s->last_login_time = get_last_login_time(s->pw->pw_uid,
1687 s->pw->pw_name, s->hostname, sizeof(s->hostname));
1688 }
653d5f86 1689
e78a59f5 1690 s->term = packet_get_string(&len);
653d5f86 1691
1692 if (compat20) {
1693 s->col = packet_get_int();
1694 s->row = packet_get_int();
1695 } else {
1696 s->row = packet_get_int();
1697 s->col = packet_get_int();
1698 }
e78a59f5 1699 s->xpixel = packet_get_int();
1700 s->ypixel = packet_get_int();
1701
1702 if (strcmp(s->term, "") == 0) {
1703 xfree(s->term);
1704 s->term = NULL;
1705 }
653d5f86 1706
e78a59f5 1707 /* Allocate a pty and open it. */
653d5f86 1708 debug("Allocating pty.");
1853d1ef 1709 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
653d5f86 1710 if (s->term)
1711 xfree(s->term);
e78a59f5 1712 s->term = NULL;
1713 s->ptyfd = -1;
1714 s->ttyfd = -1;
1715 error("session_pty_req: session %d alloc failed", s->self);
6ae2364d 1716 return 0;
e78a59f5 1717 }
1718 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
653d5f86 1719
1720 /* for SSH1 the tty modes length is not given */
1721 if (!compat20)
1722 n_bytes = packet_remaining();
1723 tty_parse_modes(s->ttyfd, &n_bytes);
1724
1853d1ef 1725 if (!use_privsep)
1726 pty_setowner(s->pw, s->tty);
653d5f86 1727
1728 /* Set window size from the packet. */
e78a59f5 1729 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1730
95500969 1731 packet_check_eom();
1d1ffb87 1732 session_proctitle(s);
e78a59f5 1733 return 1;
1734}
1735
396c147e 1736static int
0b242b12 1737session_subsystem_req(Session *s)
1738{
01855277 1739 struct stat st;
1e3b8b07 1740 u_int len;
0b242b12 1741 int success = 0;
01855277 1742 char *cmd, *subsys = packet_get_string(&len);
38c295d6 1743 int i;
0b242b12 1744
95500969 1745 packet_check_eom();
bbe88b6d 1746 logit("subsystem request for %.100s", subsys);
0b242b12 1747
38c295d6 1748 for (i = 0; i < options.num_subsystems; i++) {
01855277 1749 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1750 cmd = options.subsystem_command[i];
1751 if (stat(cmd, &st) < 0) {
1752 error("subsystem: cannot stat %s: %s", cmd,
1753 strerror(errno));
1754 break;
1755 }
1756 debug("subsystem: exec() %s", cmd);
e5d7a405 1757 s->is_subsystem = 1;
01855277 1758 do_exec(s, cmd);
38c295d6 1759 success = 1;
24932ee9 1760 break;
38c295d6 1761 }
1762 }
1763
1764 if (!success)
bbe88b6d 1765 logit("subsystem request for %.100s failed, subsystem not found",
01855277 1766 subsys);
38c295d6 1767
0b242b12 1768 xfree(subsys);
1769 return success;
1770}
1771
396c147e 1772static int
0b242b12 1773session_x11_req(Session *s)
1774{
8dcd9d5c 1775 int success;
0b242b12 1776
1777 s->single_connection = packet_get_char();
1778 s->auth_proto = packet_get_string(NULL);
1779 s->auth_data = packet_get_string(NULL);
1780 s->screen = packet_get_int();
95500969 1781 packet_check_eom();
0b242b12 1782
8dcd9d5c 1783 success = session_setup_x11fwd(s);
1784 if (!success) {
0b242b12 1785 xfree(s->auth_proto);
1786 xfree(s->auth_data);
1500bcdd 1787 s->auth_proto = NULL;
1788 s->auth_data = NULL;
0b242b12 1789 }
8dcd9d5c 1790 return success;
0b242b12 1791}
1792
396c147e 1793static int
38c295d6 1794session_shell_req(Session *s)
1795{
95500969 1796 packet_check_eom();
dac6753b 1797 do_exec(s, NULL);
38c295d6 1798 return 1;
1799}
1800
396c147e 1801static int
38c295d6 1802session_exec_req(Session *s)
1803{
1e3b8b07 1804 u_int len;
38c295d6 1805 char *command = packet_get_string(&len);
95500969 1806 packet_check_eom();
dac6753b 1807 do_exec(s, command);
c95add71 1808 xfree(command);
38c295d6 1809 return 1;
1810}
1811
16a79097 1812static int
1813session_break_req(Session *s)
1814{
1815 u_int break_length;
1816
8168a86a 1817 break_length = packet_get_int(); /* ignored */
16a79097 1818 packet_check_eom();
1819
8168a86a 1820 if (s->ttyfd == -1 ||
1821 tcsendbreak(s->ttyfd, 0) < 0)
16a79097 1822 return 0;
16a79097 1823 return 1;
1824}
1825
396c147e 1826static int
fa08c86b 1827session_auth_agent_req(Session *s)
1828{
1829 static int called = 0;
95500969 1830 packet_check_eom();
d343d900 1831 if (no_agent_forwarding_flag) {
1832 debug("session_auth_agent_req: no_agent_forwarding_flag");
1833 return 0;
1834 }
fa08c86b 1835 if (called) {
1836 return 0;
1837 } else {
1838 called = 1;
1839 return auth_input_request_forwarding(s->pw);
1840 }
1841}
1842
7899c98f 1843int
1844session_input_channel_req(Channel *c, const char *rtype)
e78a59f5 1845{
e78a59f5 1846 int success = 0;
e78a59f5 1847 Session *s;
e78a59f5 1848
7899c98f 1849 if ((s = session_by_channel(c->self)) == NULL) {
bbe88b6d 1850 logit("session_input_channel_req: no session %d req %.100s",
7899c98f 1851 c->self, rtype);
1852 return 0;
1853 }
1854 debug("session_input_channel_req: session %d req %s", s->self, rtype);
e78a59f5 1855
1856 /*
e5d7a405 1857 * a session is in LARVAL state until a shell, a command
1858 * or a subsystem is executed
e78a59f5 1859 */
1860 if (c->type == SSH_CHANNEL_LARVAL) {
1861 if (strcmp(rtype, "shell") == 0) {
38c295d6 1862 success = session_shell_req(s);
e78a59f5 1863 } else if (strcmp(rtype, "exec") == 0) {
38c295d6 1864 success = session_exec_req(s);
e78a59f5 1865 } else if (strcmp(rtype, "pty-req") == 0) {
35484284 1866 success = session_pty_req(s);
0b242b12 1867 } else if (strcmp(rtype, "x11-req") == 0) {
1868 success = session_x11_req(s);
fa08c86b 1869 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1870 success = session_auth_agent_req(s);
0b242b12 1871 } else if (strcmp(rtype, "subsystem") == 0) {
1872 success = session_subsystem_req(s);
16a79097 1873 } else if (strcmp(rtype, "break") == 0) {
1874 success = session_break_req(s);
e78a59f5 1875 }
1876 }
1877 if (strcmp(rtype, "window-change") == 0) {
1878 success = session_window_change_req(s);
1879 }
7899c98f 1880 return success;
e78a59f5 1881}
1882
1883void
1884session_set_fds(Session *s, int fdin, int fdout, int fderr)
1885{
1886 if (!compat20)
1887 fatal("session_set_fds: called for proto != 2.0");
1888 /*
1889 * now that have a child and a pipe to the child,
1890 * we can activate our channel and register the fd's
1891 */
1892 if (s->chanid == -1)
1893 fatal("no channel for session %d", s->self);
1894 channel_set_fds(s->chanid,
1895 fdout, fdin, fderr,
a22aff1f 1896 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
ea9700ba 1897 1,
1898 CHAN_SES_WINDOW_DEFAULT);
e78a59f5 1899}
1900
86066315 1901/*
1902 * Function to perform pty cleanup. Also called if we get aborted abnormally
1903 * (e.g., due to a dropped connection).
1904 */
1853d1ef 1905void
2362db19 1906session_pty_cleanup2(Session *s)
7368a6c8 1907{
86066315 1908 if (s == NULL) {
1909 error("session_pty_cleanup: no session");
1910 return;
1911 }
1912 if (s->ttyfd == -1)
7368a6c8 1913 return;
1914
0725ea77 1915 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
7368a6c8 1916
7368a6c8 1917 /* Record that the user has logged out. */
86066315 1918 if (s->pid != 0)
f3837bc6 1919 record_logout(s->pid, s->tty, s->pw->pw_name);
7368a6c8 1920
1921 /* Release the pseudo-tty. */
1853d1ef 1922 if (getuid() == 0)
1923 pty_release(s->tty);
7368a6c8 1924
1925 /*
1926 * Close the server side of the socket pairs. We must do this after
1927 * the pty cleanup, so that another process doesn't get this pty
1928 * while we're still cleaning up.
1929 */
1930 if (close(s->ptymaster) < 0)
1853d1ef 1931 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
efcc9957 1932
1933 /* unlink pty from session */
1934 s->ttyfd = -1;
7368a6c8 1935}
e78a59f5 1936
1853d1ef 1937void
2362db19 1938session_pty_cleanup(Session *s)
1853d1ef 1939{
2362db19 1940 PRIVSEP(session_pty_cleanup2(s));
1853d1ef 1941}
1942
6c723e7c 1943static char *
1944sig2name(int sig)
1945{
1946#define SSH_SIG(x) if (sig == SIG ## x) return #x
1947 SSH_SIG(ABRT);
1948 SSH_SIG(ALRM);
1949 SSH_SIG(FPE);
1950 SSH_SIG(HUP);
1951 SSH_SIG(ILL);
1952 SSH_SIG(INT);
1953 SSH_SIG(KILL);
1954 SSH_SIG(PIPE);
1955 SSH_SIG(QUIT);
1956 SSH_SIG(SEGV);
1957 SSH_SIG(TERM);
1958 SSH_SIG(USR1);
1959 SSH_SIG(USR2);
1960#undef SSH_SIG
1961 return "SIG@openssh.com";
1962}
1963
396c147e 1964static void
e78a59f5 1965session_exit_message(Session *s, int status)
1966{
1967 Channel *c;
5a4ae906 1968
1969 if ((c = channel_lookup(s->chanid)) == NULL)
86066315 1970 fatal("session_exit_message: session %d: no channel %d",
e78a59f5 1971 s->self, s->chanid);
c457707e 1972 debug("session_exit_message: session %d channel %d pid %ld",
1973 s->self, s->chanid, (long)s->pid);
e78a59f5 1974
1975 if (WIFEXITED(status)) {
5a4ae906 1976 channel_request_start(s->chanid, "exit-status", 0);
e78a59f5 1977 packet_put_int(WEXITSTATUS(status));
1978 packet_send();
1979 } else if (WIFSIGNALED(status)) {
5a4ae906 1980 channel_request_start(s->chanid, "exit-signal", 0);
6c723e7c 1981 packet_put_cstring(sig2name(WTERMSIG(status)));
a64009ad 1982#ifdef WCOREDUMP
e78a59f5 1983 packet_put_char(WCOREDUMP(status));
a64009ad 1984#else /* WCOREDUMP */
1985 packet_put_char(0);
1986#endif /* WCOREDUMP */
e78a59f5 1987 packet_put_cstring("");
1988 packet_put_cstring("");
1989 packet_send();
1990 } else {
1991 /* Some weird exit cause. Just exit. */
1992 packet_disconnect("wait returned status %04x.", status);
1993 }
1994
1995 /* disconnect channel */
1996 debug("session_exit_message: release channel %d", s->chanid);
1997 channel_cancel_cleanup(s->chanid);
9da5c3c9 1998 /*
1999 * emulate a write failure with 'chan_write_failed', nobody will be
2000 * interested in data we write.
2001 * Note that we must not call 'chan_read_failed', since there could
2002 * be some more data waiting in the pipe.
2003 */
0b242b12 2004 if (c->ostate != CHAN_OUTPUT_CLOSED)
2005 chan_write_failed(c);
e78a59f5 2006 s->chanid = -1;
2007}
2008
1853d1ef 2009void
86066315 2010session_close(Session *s)
e78a59f5 2011{
c457707e 2012 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
2362db19 2013 if (s->ttyfd != -1)
86066315 2014 session_pty_cleanup(s);
e78a59f5 2015 if (s->term)
2016 xfree(s->term);
2017 if (s->display)
2018 xfree(s->display);
f9314d9a 2019 if (s->auth_display)
2020 xfree(s->auth_display);
e78a59f5 2021 if (s->auth_data)
2022 xfree(s->auth_data);
2023 if (s->auth_proto)
2024 xfree(s->auth_proto);
2025 s->used = 0;
1d1ffb87 2026 session_proctitle(s);
e78a59f5 2027}
2028
2029void
2030session_close_by_pid(pid_t pid, int status)
2031{
2032 Session *s = session_by_pid(pid);
2033 if (s == NULL) {
c457707e 2034 debug("session_close_by_pid: no session for pid %ld",
2035 (long)pid);
e78a59f5 2036 return;
2037 }
2038 if (s->chanid != -1)
2039 session_exit_message(s, status);
2040 session_close(s);
2041}
2042
2043/*
2044 * this is called when a channel dies before
2045 * the session 'child' itself dies
2046 */
2047void
2048session_close_by_channel(int id, void *arg)
2049{
2050 Session *s = session_by_channel(id);
2051 if (s == NULL) {
418e724c 2052 debug("session_close_by_channel: no session for id %d", id);
e78a59f5 2053 return;
2054 }
c457707e 2055 debug("session_close_by_channel: channel %d child %ld",
2056 id, (long)s->pid);
d5f24f94 2057 if (s->pid != 0) {
418e724c 2058 debug("session_close_by_channel: channel %d: has child", id);
efcc9957 2059 /*
2060 * delay detach of session, but release pty, since
2061 * the fd's to the child are already closed
2062 */
2362db19 2063 if (s->ttyfd != -1)
efcc9957 2064 session_pty_cleanup(s);
418e724c 2065 return;
e78a59f5 2066 }
418e724c 2067 /* detach by removing callback */
2068 channel_cancel_cleanup(s->chanid);
2069 s->chanid = -1;
d5f24f94 2070 session_close(s);
2071}
2072
2073void
1853d1ef 2074session_destroy_all(void (*closefunc)(Session *))
d5f24f94 2075{
2076 int i;
184eed6a 2077 for (i = 0; i < MAX_SESSIONS; i++) {
d5f24f94 2078 Session *s = &sessions[i];
1853d1ef 2079 if (s->used) {
2080 if (closefunc != NULL)
2081 closefunc(s);
2082 else
2083 session_close(s);
2084 }
d5f24f94 2085 }
e78a59f5 2086}
2087
396c147e 2088static char *
1d1ffb87 2089session_tty_list(void)
2090{
2091 static char buf[1024];
2092 int i;
d0104542 2093 char *cp;
2094
1d1ffb87 2095 buf[0] = '\0';
184eed6a 2096 for (i = 0; i < MAX_SESSIONS; i++) {
1d1ffb87 2097 Session *s = &sessions[i];
2098 if (s->used && s->ttyfd != -1) {
b6453d99 2099
d0104542 2100 if (strncmp(s->tty, "/dev/", 5) != 0) {
2101 cp = strrchr(s->tty, '/');
2102 cp = (cp == NULL) ? s->tty : cp + 1;
2103 } else
2104 cp = s->tty + 5;
b6453d99 2105
1d1ffb87 2106 if (buf[0] != '\0')
2107 strlcat(buf, ",", sizeof buf);
d0104542 2108 strlcat(buf, cp, sizeof buf);
1d1ffb87 2109 }
2110 }
2111 if (buf[0] == '\0')
2112 strlcpy(buf, "notty", sizeof buf);
2113 return buf;
2114}
2115
2116void
2117session_proctitle(Session *s)
2118{
2119 if (s->pw == NULL)
2120 error("no user for session %d", s->self);
2121 else
2122 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2123}
2124
8dcd9d5c 2125int
2126session_setup_x11fwd(Session *s)
2127{
8dcd9d5c 2128 struct stat st;
c9d0ad9b 2129 char display[512], auth_display[512];
2130 char hostname[MAXHOSTNAMELEN];
8dcd9d5c 2131
2132 if (no_x11_forwarding_flag) {
2133 packet_send_debug("X11 forwarding disabled in user configuration file.");
2134 return 0;
2135 }
2136 if (!options.x11_forwarding) {
2137 debug("X11 forwarding disabled in server configuration file.");
2138 return 0;
2139 }
2140 if (!options.xauth_location ||
2141 (stat(options.xauth_location, &st) == -1)) {
2142 packet_send_debug("No xauth program; cannot forward with spoofing.");
2143 return 0;
2144 }
ff027d84 2145 if (options.use_login) {
2146 packet_send_debug("X11 forwarding disabled; "
2147 "not compatible with UseLogin=yes.");
2148 return 0;
2149 }
b44de2b1 2150 if (s->display != NULL) {
8dcd9d5c 2151 debug("X11 display already set.");
2152 return 0;
2153 }
57f228e8 2154 if (x11_create_display_inet(options.x11_display_offset,
2155 options.x11_use_localhost, s->single_connection,
2156 &s->display_number) == -1) {
b44de2b1 2157 debug("x11_create_display_inet failed.");
8dcd9d5c 2158 return 0;
2159 }
c9d0ad9b 2160
2161 /* Set up a suitable value for the DISPLAY variable. */
2162 if (gethostname(hostname, sizeof(hostname)) < 0)
2163 fatal("gethostname: %.100s", strerror(errno));
2164 /*
2165 * auth_display must be used as the displayname when the
2166 * authorization entry is added with xauth(1). This will be
2167 * different than the DISPLAY string for localhost displays.
2168 */
e6e573bd 2169 if (options.x11_use_localhost) {
57f228e8 2170 snprintf(display, sizeof display, "localhost:%u.%u",
c9d0ad9b 2171 s->display_number, s->screen);
57f228e8 2172 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
f9314d9a 2173 s->display_number, s->screen);
c9d0ad9b 2174 s->display = xstrdup(display);
f9314d9a 2175 s->auth_display = xstrdup(auth_display);
c9d0ad9b 2176 } else {
2177#ifdef IPADDR_IN_DISPLAY
2178 struct hostent *he;
2179 struct in_addr my_addr;
2180
2181 he = gethostbyname(hostname);
2182 if (he == NULL) {
2183 error("Can't get IP address for X11 DISPLAY.");
2184 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2185 return 0;
2186 }
2187 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
57f228e8 2188 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
c9d0ad9b 2189 s->display_number, s->screen);
2190#else
57f228e8 2191 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
c9d0ad9b 2192 s->display_number, s->screen);
2193#endif
2194 s->display = xstrdup(display);
f9314d9a 2195 s->auth_display = xstrdup(display);
c9d0ad9b 2196 }
2197
8dcd9d5c 2198 return 1;
2199}
2200
396c147e 2201static void
59c97189 2202do_authenticated2(Authctxt *authctxt)
e78a59f5 2203{
57156994 2204 server_loop2(authctxt);
2362db19 2205}
2206
2207void
2208do_cleanup(Authctxt *authctxt)
2209{
2210 static int called = 0;
2211
2212 debug("do_cleanup");
2213
2214 /* no cleanup if we're in the child for login shell */
2215 if (is_child)
2216 return;
2217
2218 /* avoid double cleanup */
2219 if (called)
2220 return;
2221 called = 1;
2222
2223 if (authctxt == NULL)
2224 return;
2225#ifdef KRB5
2226 if (options.kerberos_ticket_cleanup &&
2227 authctxt->krb5_ctx)
2228 krb5_cleanup_proc(authctxt);
7364bd04 2229#endif
2362db19 2230
2231#ifdef GSSAPI
2232 if (compat20 && options.gss_cleanup_creds)
2233 ssh_gssapi_cleanup_creds();
2234#endif
2235
c6630044 2236#ifdef USE_PAM
2237 if (options.use_pam) {
2238 sshpam_cleanup();
2239 sshpam_thread_cleanup();
2240 }
2241#endif
2242
2362db19 2243 /* remove agent socket */
2244 auth_sock_cleanup_proc(authctxt->pw);
2245
2246 /*
2247 * Cleanup ptys/utmp only if privsep is disabled,
2248 * or if running in monitor.
2249 */
2250 if (!use_privsep || mm_is_monitor())
2251 session_destroy_all(session_pty_cleanup2);
e78a59f5 2252}
This page took 0.643456 seconds and 5 git commands to generate.