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