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