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