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