]> andersk Git - openssh.git/blame - session.c
- markus@cvs.openbsd.org 2002/08/22 21:33:58
[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"
f00bab84 36RCSID("$OpenBSD: session.c,v 1.146 2002/07/30 17:03:55 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#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));
674 if (packet_connection_is_on_socket()) {
675 fromlen = sizeof(from);
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),
740 (struct sockaddr *)&from);
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
1014 snprintf(buf, sizeof buf, "%.50s %d %d",
f7342052 1015 get_remote_ipaddr(), get_remote_port(), get_local_port());
7368a6c8 1016 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1017
56b3e9ce 1018 if (s->ttyfd != -1)
1019 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1020 if (s->term)
1021 child_set_env(&env, &envsize, "TERM", s->term);
1022 if (s->display)
1023 child_set_env(&env, &envsize, "DISPLAY", s->display);
b5e300c2 1024 if (original_command)
1025 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1026 original_command);
7368a6c8 1027
1028#ifdef _AIX
4936fcee 1029 {
1030 char *cp;
1031
1032 if ((cp = getenv("AUTHSTATE")) != NULL)
1033 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1034 if ((cp = getenv("KRB5CCNAME")) != NULL)
1035 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1036 read_environment_file(&env, &envsize, "/etc/environment");
1037 }
7368a6c8 1038#endif
7368a6c8 1039#ifdef KRB4
ced49be2 1040 if (s->authctxt->krb4_ticket_file)
1041 child_set_env(&env, &envsize, "KRBTKFILE",
1042 s->authctxt->krb4_ticket_file);
1043#endif
1044#ifdef KRB5
1045 if (s->authctxt->krb5_ticket_file)
1046 child_set_env(&env, &envsize, "KRB5CCNAME",
1047 s->authctxt->krb5_ticket_file);
1048#endif
7368a6c8 1049#ifdef USE_PAM
ee48c949 1050 /*
1051 * Pull in any environment variables that may have
1052 * been set by PAM.
1053 */
1054 {
1055 char **p;
1056
1057 p = fetch_pam_environment();
1058 copy_environment(p, &env, &envsize);
1059 free_pam_environment(p);
1060 }
7368a6c8 1061#endif /* USE_PAM */
1062
149cdb60 1063 if (auth_sock_name != NULL)
7368a6c8 1064 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
149cdb60 1065 auth_sock_name);
7368a6c8 1066
1067 /* read $HOME/.ssh/environment. */
f00bab84 1068 if (options.permit_user_env && !options.use_login) {
71276795 1069 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
1070 pw->pw_dir);
7368a6c8 1071 read_environment_file(&env, &envsize, buf);
1072 }
1073 if (debug_flag) {
1074 /* dump the environment */
1075 fprintf(stderr, "Environment:\n");
1076 for (i = 0; env[i]; i++)
1077 fprintf(stderr, " %.200s\n", env[i]);
1078 }
f7342052 1079 return env;
1080}
1081
1082/*
1083 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1084 * first in this order).
1085 */
1086static void
1087do_rc_files(Session *s, const char *shell)
1088{
1089 FILE *f = NULL;
1090 char cmd[1024];
1091 int do_xauth;
1092 struct stat st;
1093
1094 do_xauth =
1095 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1096
1097 /* ignore _PATH_SSH_USER_RC for subsystems */
1098 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1099 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1100 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1101 if (debug_flag)
1102 fprintf(stderr, "Running %s\n", cmd);
1103 f = popen(cmd, "w");
1104 if (f) {
1105 if (do_xauth)
1106 fprintf(f, "%s %s\n", s->auth_proto,
1107 s->auth_data);
1108 pclose(f);
1109 } else
1110 fprintf(stderr, "Could not run %s\n",
1111 _PATH_SSH_USER_RC);
1112 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1113 if (debug_flag)
1114 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1115 _PATH_SSH_SYSTEM_RC);
1116 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1117 if (f) {
1118 if (do_xauth)
1119 fprintf(f, "%s %s\n", s->auth_proto,
1120 s->auth_data);
1121 pclose(f);
1122 } else
1123 fprintf(stderr, "Could not run %s\n",
1124 _PATH_SSH_SYSTEM_RC);
1125 } else if (do_xauth && options.xauth_location != NULL) {
1126 /* Add authority data to .Xauthority if appropriate. */
1127 if (debug_flag) {
1128 fprintf(stderr,
375e20e7 1129 "Running %.500s add "
f7342052 1130 "%.100s %.100s %.100s\n",
1131 options.xauth_location, s->auth_display,
1132 s->auth_proto, s->auth_data);
1133 }
1134 snprintf(cmd, sizeof cmd, "%s -q -",
1135 options.xauth_location);
1136 f = popen(cmd, "w");
1137 if (f) {
1138 fprintf(f, "add %s %s %s\n",
1139 s->auth_display, s->auth_proto,
1140 s->auth_data);
1141 pclose(f);
1142 } else {
1143 fprintf(stderr, "Could not run %s\n",
1144 cmd);
1145 }
1146 }
1147}
1148
1149static void
1150do_nologin(struct passwd *pw)
1151{
1152 FILE *f = NULL;
1153 char buf[1024];
1154
1155#ifdef HAVE_LOGIN_CAP
1156 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1157 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1158 _PATH_NOLOGIN), "r");
1159#else
1160 if (pw->pw_uid)
1161 f = fopen(_PATH_NOLOGIN, "r");
1162#endif
1163 if (f) {
1164 /* /etc/nologin exists. Print its contents and exit. */
1165 while (fgets(buf, sizeof(buf), f))
1166 fputs(buf, stderr);
1167 fclose(f);
1168 exit(254);
1169 }
1170}
1171
1172/* Set login name, uid, gid, and groups. */
1853d1ef 1173void
f7342052 1174do_setusercontext(struct passwd *pw)
1175{
1176#ifdef HAVE_CYGWIN
8001948f 1177 if (is_winnt) {
f7342052 1178#else /* HAVE_CYGWIN */
1179 if (getuid() == 0 || geteuid() == 0) {
1180#endif /* HAVE_CYGWIN */
8bbfc882 1181#ifdef HAVE_SETPCRED
1182 setpcred(pw->pw_name);
1183#endif /* HAVE_SETPCRED */
f7342052 1184#ifdef HAVE_LOGIN_CAP
2d199535 1185# ifdef __bsdi__
8695f9f7 1186 setpgid(0, 0);
2d199535 1187# endif
f7342052 1188 if (setusercontext(lc, pw, pw->pw_uid,
1189 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1190 perror("unable to set user context");
1191 exit(1);
1192 }
1193#else
1194# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1195 /* Sets login uid for accounting */
1196 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1197 error("setluid: %s", strerror(errno));
1198# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1199
1200 if (setlogin(pw->pw_name) < 0)
1201 error("setlogin failed: %s", strerror(errno));
1202 if (setgid(pw->pw_gid) < 0) {
1203 perror("setgid");
1204 exit(1);
1205 }
1206 /* Initialize the group list. */
1207 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1208 perror("initgroups");
1209 exit(1);
1210 }
1211 endgrent();
1212# ifdef USE_PAM
1213 /*
1214 * PAM credentials may take the form of supplementary groups.
1215 * These will have been wiped by the above initgroups() call.
1216 * Reestablish them here.
1217 */
1218 do_pam_setcred(0);
1219# endif /* USE_PAM */
1220# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1221 irix_setusercontext(pw);
1222# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
e2bc41f9 1223# ifdef _AIX
0ba40daa 1224 aix_usrinfo(pw);
e2bc41f9 1225# endif /* _AIX */
f7342052 1226 /* Permanently switch to the desired uid. */
1227 permanently_set_uid(pw);
1228#endif
1229 }
1230 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1231 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1232}
1233
51aeb639 1234static void
1853d1ef 1235launch_login(struct passwd *pw, const char *hostname)
1236{
1237 /* Launch login(1). */
1238
85cc9118 1239 execl(LOGIN_PROGRAM, "login", "-h", hostname,
1178e8db 1240#ifdef xxxLOGIN_NEEDS_TERM
875ec275 1241 (s->term ? s->term : "unknown"),
1853d1ef 1242#endif /* LOGIN_NEEDS_TERM */
a2572aa7 1243#ifdef LOGIN_NO_ENDOPT
1244 "-p", "-f", pw->pw_name, (char *)NULL);
1245#else
1853d1ef 1246 "-p", "-f", "--", pw->pw_name, (char *)NULL);
a2572aa7 1247#endif
1853d1ef 1248
1249 /* Login couldn't be executed, die. */
1250
1251 perror("login");
1252 exit(1);
1253}
1254
f7342052 1255/*
1256 * Performs common processing for the child, such as setting up the
1257 * environment, closing extra file descriptors, setting the user and group
1258 * ids, and executing the command or shell.
1259 */
1260void
1261do_child(Session *s, const char *command)
1262{
1263 extern char **environ;
1264 char **env;
1265 char *argv[10];
1266 const char *shell, *shell0, *hostname = NULL;
1267 struct passwd *pw = s->pw;
1268 u_int i;
1269
1270 /* remove hostkey from the child's memory */
1271 destroy_sensitive_data();
1272
1273 /* login(1) is only called if we execute the login shell */
1274 if (options.use_login && command != NULL)
1275 options.use_login = 0;
1276
1277 /*
1278 * Login(1) does this as well, and it needs uid 0 for the "-h"
1279 * switch, so we let login(1) to this for us.
1280 */
1281 if (!options.use_login) {
1282#ifdef HAVE_OSF_SIA
1283 session_setup_sia(pw->pw_name, s->ttyfd == -1 ? NULL : s->tty);
1284 if (!check_quietlogin(s, command))
1285 do_motd();
1286#else /* HAVE_OSF_SIA */
1287 do_nologin(pw);
1288 do_setusercontext(pw);
1289#endif /* HAVE_OSF_SIA */
1290 }
1291
1292 /*
1293 * Get the shell from the password data. An empty shell field is
1294 * legal, and means /bin/sh.
1295 */
1296 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
1297#ifdef HAVE_LOGIN_CAP
1298 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1299#endif
1300
1301 env = do_setup_env(s, shell);
1302
2e73a022 1303 /* we have to stash the hostname before we close our socket. */
1304 if (options.use_login)
46e3af7f 1305 hostname = get_remote_name_or_ip(utmp_len,
bf4c5edc 1306 options.verify_reverse_mapping);
7368a6c8 1307 /*
1308 * Close the connection descriptors; note that this is the child, and
1309 * the server will still have the socket open, and it is important
1310 * that we do not shutdown it. Note that the descriptors cannot be
1311 * closed before building the environment, as we call
1312 * get_remote_ipaddr there.
1313 */
1314 if (packet_get_connection_in() == packet_get_connection_out())
1315 close(packet_get_connection_in());
1316 else {
1317 close(packet_get_connection_in());
1318 close(packet_get_connection_out());
1319 }
1320 /*
1321 * Close all descriptors related to channels. They will still remain
1322 * open in the parent.
1323 */
1324 /* XXX better use close-on-exec? -markus */
1325 channel_close_all();
1326
1327 /*
1328 * Close any extra file descriptors. Note that there may still be
1329 * descriptors left by system functions. They will be closed later.
1330 */
1331 endpwent();
1332
1333 /*
1334 * Close any extra open file descriptors so that we don\'t have them
1335 * hanging around in clients. Note that we want to do this after
1336 * initgroups, because at least on Solaris 2.3 it leaves file
1337 * descriptors open.
1338 */
1339 for (i = 3; i < 64; i++)
1340 close(i);
1341
7368a6c8 1342 /*
2a8a6488 1343 * Must take new environment into use so that .ssh/rc,
1344 * /etc/ssh/sshrc and xauth are run in the proper environment.
7368a6c8 1345 */
1346 environ = env;
1347
6fcf67f7 1348#ifdef AFS
1349 /* Try to get AFS tokens for the local cell. */
1350 if (k_hasafs()) {
1351 char cell[64];
184eed6a 1352
6fcf67f7 1353 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1354 krb_afslog(cell, 0);
184eed6a 1355
6fcf67f7 1356 krb_afslog(0, 0);
1357 }
1358#endif /* AFS */
1359
dab89049 1360 /* Change current directory to the user\'s home directory. */
1361 if (chdir(pw->pw_dir) < 0) {
1362 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1363 pw->pw_dir, strerror(errno));
1364#ifdef HAVE_LOGIN_CAP
1365 if (login_getcapbool(lc, "requirehome", 0))
1366 exit(1);
1367#endif
1368 }
1369
f7342052 1370 if (!options.use_login)
1371 do_rc_files(s, shell);
1d3c30db 1372
1373 /* restore SIGPIPE for child */
1374 signal(SIGPIPE, SIG_DFL);
1375
f7342052 1376 if (options.use_login) {
1853d1ef 1377 launch_login(pw, hostname);
1378 /* NEVERREACHED */
f7342052 1379 }
1380
1381 /* Get the last component of the shell name. */
1382 if ((shell0 = strrchr(shell, '/')) != NULL)
1383 shell0++;
1384 else
1385 shell0 = shell;
1386
7368a6c8 1387 /*
1388 * If we have no command, execute the shell. In this case, the shell
1389 * name to be passed in argv[0] is preceded by '-' to indicate that
1390 * this is a login shell.
1391 */
1392 if (!command) {
f7342052 1393 char argv0[256];
7368a6c8 1394
f7342052 1395 /* Start the shell. Set initial character to '-'. */
1396 argv0[0] = '-';
7368a6c8 1397
f7342052 1398 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1399 >= sizeof(argv0) - 1) {
1400 errno = EINVAL;
7368a6c8 1401 perror(shell);
1402 exit(1);
f7342052 1403 }
7368a6c8 1404
f7342052 1405 /* Execute the shell. */
1406 argv[0] = argv0;
1407 argv[1] = NULL;
1408 execve(shell, argv, env);
7368a6c8 1409
f7342052 1410 /* Executing the shell failed. */
1411 perror(shell);
1412 exit(1);
7368a6c8 1413 }
1414 /*
1415 * Execute the command using the user's shell. This uses the -c
1416 * option to execute the command.
1417 */
f7342052 1418 argv[0] = (char *) shell0;
7368a6c8 1419 argv[1] = "-c";
1420 argv[2] = (char *) command;
1421 argv[3] = NULL;
1422 execve(shell, argv, env);
1423 perror(shell);
1424 exit(1);
1425}
1426
1427Session *
1428session_new(void)
1429{
1430 int i;
1431 static int did_init = 0;
1432 if (!did_init) {
1433 debug("session_new: init");
184eed6a 1434 for (i = 0; i < MAX_SESSIONS; i++) {
7368a6c8 1435 sessions[i].used = 0;
7368a6c8 1436 }
1437 did_init = 1;
1438 }
184eed6a 1439 for (i = 0; i < MAX_SESSIONS; i++) {
7368a6c8 1440 Session *s = &sessions[i];
1441 if (! s->used) {
690d0d7f 1442 memset(s, 0, sizeof(*s));
7368a6c8 1443 s->chanid = -1;
1444 s->ptyfd = -1;
1445 s->ttyfd = -1;
7368a6c8 1446 s->used = 1;
86066315 1447 s->self = i;
02323c45 1448 debug("session_new: session %d", i);
7368a6c8 1449 return s;
1450 }
1451 }
1452 return NULL;
1453}
1454
396c147e 1455static void
7368a6c8 1456session_dump(void)
1457{
1458 int i;
184eed6a 1459 for (i = 0; i < MAX_SESSIONS; i++) {
7368a6c8 1460 Session *s = &sessions[i];
c457707e 1461 debug("dump: used %d session %d %p channel %d pid %ld",
7368a6c8 1462 s->used,
1463 s->self,
1464 s,
1465 s->chanid,
c457707e 1466 (long)s->pid);
7368a6c8 1467 }
1468}
1469
e78a59f5 1470int
57156994 1471session_open(Authctxt *authctxt, int chanid)
e78a59f5 1472{
1473 Session *s = session_new();
1474 debug("session_open: channel %d", chanid);
1475 if (s == NULL) {
1476 error("no more sessions");
1477 return 0;
1478 }
57156994 1479 s->authctxt = authctxt;
1480 s->pw = authctxt->pw;
e78a59f5 1481 if (s->pw == NULL)
0725ea77 1482 fatal("no user for session %d", s->self);
0b242b12 1483 debug("session_open: session %d: link with channel %d", s->self, chanid);
1484 s->chanid = chanid;
e78a59f5 1485 return 1;
1486}
1487
1853d1ef 1488Session *
1489session_by_tty(char *tty)
1490{
1491 int i;
1492 for (i = 0; i < MAX_SESSIONS; i++) {
1493 Session *s = &sessions[i];
1494 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1495 debug("session_by_tty: session %d tty %s", i, tty);
1496 return s;
1497 }
1498 }
1499 debug("session_by_tty: unknown tty %.100s", tty);
1500 session_dump();
1501 return NULL;
1502}
1503
396c147e 1504static Session *
e78a59f5 1505session_by_channel(int id)
1506{
1507 int i;
184eed6a 1508 for (i = 0; i < MAX_SESSIONS; i++) {
e78a59f5 1509 Session *s = &sessions[i];
1510 if (s->used && s->chanid == id) {
1511 debug("session_by_channel: session %d channel %d", i, id);
1512 return s;
1513 }
1514 }
1515 debug("session_by_channel: unknown channel %d", id);
1516 session_dump();
1517 return NULL;
1518}
1519
396c147e 1520static Session *
e78a59f5 1521session_by_pid(pid_t pid)
1522{
1523 int i;
c457707e 1524 debug("session_by_pid: pid %ld", (long)pid);
184eed6a 1525 for (i = 0; i < MAX_SESSIONS; i++) {
e78a59f5 1526 Session *s = &sessions[i];
1527 if (s->used && s->pid == pid)
1528 return s;
1529 }
c457707e 1530 error("session_by_pid: unknown pid %ld", (long)pid);
e78a59f5 1531 session_dump();
1532 return NULL;
1533}
1534
396c147e 1535static int
e78a59f5 1536session_window_change_req(Session *s)
1537{
1538 s->col = packet_get_int();
1539 s->row = packet_get_int();
1540 s->xpixel = packet_get_int();
1541 s->ypixel = packet_get_int();
95500969 1542 packet_check_eom();
e78a59f5 1543 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1544 return 1;
1545}
1546
396c147e 1547static int
e78a59f5 1548session_pty_req(Session *s)
1549{
1e3b8b07 1550 u_int len;
30dcc918 1551 int n_bytes;
762715ce 1552
653d5f86 1553 if (no_pty_flag) {
1554 debug("Allocating a pty not permitted for this authentication.");
38c295d6 1555 return 0;
653d5f86 1556 }
1557 if (s->ttyfd != -1) {
1558 packet_disconnect("Protocol error: you already have a pty.");
6ae2364d 1559 return 0;
653d5f86 1560 }
ffbf7323 1561 /* Get the time and hostname when the user last logged in. */
1562 if (options.print_lastlog) {
1563 s->hostname[0] = '\0';
1564 s->last_login_time = get_last_login_time(s->pw->pw_uid,
1565 s->pw->pw_name, s->hostname, sizeof(s->hostname));
1566 }
653d5f86 1567
e78a59f5 1568 s->term = packet_get_string(&len);
653d5f86 1569
1570 if (compat20) {
1571 s->col = packet_get_int();
1572 s->row = packet_get_int();
1573 } else {
1574 s->row = packet_get_int();
1575 s->col = packet_get_int();
1576 }
e78a59f5 1577 s->xpixel = packet_get_int();
1578 s->ypixel = packet_get_int();
1579
1580 if (strcmp(s->term, "") == 0) {
1581 xfree(s->term);
1582 s->term = NULL;
1583 }
653d5f86 1584
e78a59f5 1585 /* Allocate a pty and open it. */
653d5f86 1586 debug("Allocating pty.");
1853d1ef 1587 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
653d5f86 1588 if (s->term)
1589 xfree(s->term);
e78a59f5 1590 s->term = NULL;
1591 s->ptyfd = -1;
1592 s->ttyfd = -1;
1593 error("session_pty_req: session %d alloc failed", s->self);
6ae2364d 1594 return 0;
e78a59f5 1595 }
1596 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
653d5f86 1597
1598 /* for SSH1 the tty modes length is not given */
1599 if (!compat20)
1600 n_bytes = packet_remaining();
1601 tty_parse_modes(s->ttyfd, &n_bytes);
1602
e78a59f5 1603 /*
1604 * Add a cleanup function to clear the utmp entry and record logout
1605 * time in case we call fatal() (e.g., the connection gets closed).
1606 */
86066315 1607 fatal_add_cleanup(session_pty_cleanup, (void *)s);
1853d1ef 1608 if (!use_privsep)
1609 pty_setowner(s->pw, s->tty);
653d5f86 1610
1611 /* Set window size from the packet. */
e78a59f5 1612 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1613
95500969 1614 packet_check_eom();
1d1ffb87 1615 session_proctitle(s);
e78a59f5 1616 return 1;
1617}
1618
396c147e 1619static int
0b242b12 1620session_subsystem_req(Session *s)
1621{
01855277 1622 struct stat st;
1e3b8b07 1623 u_int len;
0b242b12 1624 int success = 0;
01855277 1625 char *cmd, *subsys = packet_get_string(&len);
38c295d6 1626 int i;
0b242b12 1627
95500969 1628 packet_check_eom();
8875ca97 1629 log("subsystem request for %.100s", subsys);
0b242b12 1630
38c295d6 1631 for (i = 0; i < options.num_subsystems; i++) {
01855277 1632 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1633 cmd = options.subsystem_command[i];
1634 if (stat(cmd, &st) < 0) {
1635 error("subsystem: cannot stat %s: %s", cmd,
1636 strerror(errno));
1637 break;
1638 }
1639 debug("subsystem: exec() %s", cmd);
e5d7a405 1640 s->is_subsystem = 1;
01855277 1641 do_exec(s, cmd);
38c295d6 1642 success = 1;
24932ee9 1643 break;
38c295d6 1644 }
1645 }
1646
1647 if (!success)
8875ca97 1648 log("subsystem request for %.100s failed, subsystem not found",
01855277 1649 subsys);
38c295d6 1650
0b242b12 1651 xfree(subsys);
1652 return success;
1653}
1654
396c147e 1655static int
0b242b12 1656session_x11_req(Session *s)
1657{
8dcd9d5c 1658 int success;
0b242b12 1659
1660 s->single_connection = packet_get_char();
1661 s->auth_proto = packet_get_string(NULL);
1662 s->auth_data = packet_get_string(NULL);
1663 s->screen = packet_get_int();
95500969 1664 packet_check_eom();
0b242b12 1665
8dcd9d5c 1666 success = session_setup_x11fwd(s);
1667 if (!success) {
0b242b12 1668 xfree(s->auth_proto);
1669 xfree(s->auth_data);
1500bcdd 1670 s->auth_proto = NULL;
1671 s->auth_data = NULL;
0b242b12 1672 }
8dcd9d5c 1673 return success;
0b242b12 1674}
1675
396c147e 1676static int
38c295d6 1677session_shell_req(Session *s)
1678{
95500969 1679 packet_check_eom();
dac6753b 1680 do_exec(s, NULL);
38c295d6 1681 return 1;
1682}
1683
396c147e 1684static int
38c295d6 1685session_exec_req(Session *s)
1686{
1e3b8b07 1687 u_int len;
38c295d6 1688 char *command = packet_get_string(&len);
95500969 1689 packet_check_eom();
dac6753b 1690 do_exec(s, command);
c95add71 1691 xfree(command);
38c295d6 1692 return 1;
1693}
1694
396c147e 1695static int
fa08c86b 1696session_auth_agent_req(Session *s)
1697{
1698 static int called = 0;
95500969 1699 packet_check_eom();
d343d900 1700 if (no_agent_forwarding_flag) {
1701 debug("session_auth_agent_req: no_agent_forwarding_flag");
1702 return 0;
1703 }
fa08c86b 1704 if (called) {
1705 return 0;
1706 } else {
1707 called = 1;
1708 return auth_input_request_forwarding(s->pw);
1709 }
1710}
1711
7899c98f 1712int
1713session_input_channel_req(Channel *c, const char *rtype)
e78a59f5 1714{
e78a59f5 1715 int success = 0;
e78a59f5 1716 Session *s;
e78a59f5 1717
7899c98f 1718 if ((s = session_by_channel(c->self)) == NULL) {
1719 log("session_input_channel_req: no session %d req %.100s",
1720 c->self, rtype);
1721 return 0;
1722 }
1723 debug("session_input_channel_req: session %d req %s", s->self, rtype);
e78a59f5 1724
1725 /*
e5d7a405 1726 * a session is in LARVAL state until a shell, a command
1727 * or a subsystem is executed
e78a59f5 1728 */
1729 if (c->type == SSH_CHANNEL_LARVAL) {
1730 if (strcmp(rtype, "shell") == 0) {
38c295d6 1731 success = session_shell_req(s);
e78a59f5 1732 } else if (strcmp(rtype, "exec") == 0) {
38c295d6 1733 success = session_exec_req(s);
e78a59f5 1734 } else if (strcmp(rtype, "pty-req") == 0) {
35484284 1735 success = session_pty_req(s);
0b242b12 1736 } else if (strcmp(rtype, "x11-req") == 0) {
1737 success = session_x11_req(s);
fa08c86b 1738 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1739 success = session_auth_agent_req(s);
0b242b12 1740 } else if (strcmp(rtype, "subsystem") == 0) {
1741 success = session_subsystem_req(s);
e78a59f5 1742 }
1743 }
1744 if (strcmp(rtype, "window-change") == 0) {
1745 success = session_window_change_req(s);
1746 }
7899c98f 1747 return success;
e78a59f5 1748}
1749
1750void
1751session_set_fds(Session *s, int fdin, int fdout, int fderr)
1752{
1753 if (!compat20)
1754 fatal("session_set_fds: called for proto != 2.0");
1755 /*
1756 * now that have a child and a pipe to the child,
1757 * we can activate our channel and register the fd's
1758 */
1759 if (s->chanid == -1)
1760 fatal("no channel for session %d", s->self);
1761 channel_set_fds(s->chanid,
1762 fdout, fdin, fderr,
a22aff1f 1763 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
ea9700ba 1764 1,
1765 CHAN_SES_WINDOW_DEFAULT);
e78a59f5 1766}
1767
86066315 1768/*
1769 * Function to perform pty cleanup. Also called if we get aborted abnormally
1770 * (e.g., due to a dropped connection).
1771 */
1853d1ef 1772void
1773session_pty_cleanup2(void *session)
7368a6c8 1774{
86066315 1775 Session *s = session;
1776
1777 if (s == NULL) {
1778 error("session_pty_cleanup: no session");
1779 return;
1780 }
1781 if (s->ttyfd == -1)
7368a6c8 1782 return;
1783
0725ea77 1784 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
7368a6c8 1785
7368a6c8 1786 /* Record that the user has logged out. */
86066315 1787 if (s->pid != 0)
f3837bc6 1788 record_logout(s->pid, s->tty, s->pw->pw_name);
7368a6c8 1789
1790 /* Release the pseudo-tty. */
1853d1ef 1791 if (getuid() == 0)
1792 pty_release(s->tty);
7368a6c8 1793
1794 /*
1795 * Close the server side of the socket pairs. We must do this after
1796 * the pty cleanup, so that another process doesn't get this pty
1797 * while we're still cleaning up.
1798 */
1799 if (close(s->ptymaster) < 0)
1853d1ef 1800 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
efcc9957 1801
1802 /* unlink pty from session */
1803 s->ttyfd = -1;
7368a6c8 1804}
e78a59f5 1805
1853d1ef 1806void
1807session_pty_cleanup(void *session)
1808{
1809 PRIVSEP(session_pty_cleanup2(session));
1810}
1811
396c147e 1812static void
e78a59f5 1813session_exit_message(Session *s, int status)
1814{
1815 Channel *c;
5a4ae906 1816
1817 if ((c = channel_lookup(s->chanid)) == NULL)
86066315 1818 fatal("session_exit_message: session %d: no channel %d",
e78a59f5 1819 s->self, s->chanid);
c457707e 1820 debug("session_exit_message: session %d channel %d pid %ld",
1821 s->self, s->chanid, (long)s->pid);
e78a59f5 1822
1823 if (WIFEXITED(status)) {
5a4ae906 1824 channel_request_start(s->chanid, "exit-status", 0);
e78a59f5 1825 packet_put_int(WEXITSTATUS(status));
1826 packet_send();
1827 } else if (WIFSIGNALED(status)) {
5a4ae906 1828 channel_request_start(s->chanid, "exit-signal", 0);
e78a59f5 1829 packet_put_int(WTERMSIG(status));
a64009ad 1830#ifdef WCOREDUMP
e78a59f5 1831 packet_put_char(WCOREDUMP(status));
a64009ad 1832#else /* WCOREDUMP */
1833 packet_put_char(0);
1834#endif /* WCOREDUMP */
e78a59f5 1835 packet_put_cstring("");
1836 packet_put_cstring("");
1837 packet_send();
1838 } else {
1839 /* Some weird exit cause. Just exit. */
1840 packet_disconnect("wait returned status %04x.", status);
1841 }
1842
1843 /* disconnect channel */
1844 debug("session_exit_message: release channel %d", s->chanid);
1845 channel_cancel_cleanup(s->chanid);
9da5c3c9 1846 /*
1847 * emulate a write failure with 'chan_write_failed', nobody will be
1848 * interested in data we write.
1849 * Note that we must not call 'chan_read_failed', since there could
1850 * be some more data waiting in the pipe.
1851 */
0b242b12 1852 if (c->ostate != CHAN_OUTPUT_CLOSED)
1853 chan_write_failed(c);
e78a59f5 1854 s->chanid = -1;
1855}
1856
1853d1ef 1857void
86066315 1858session_close(Session *s)
e78a59f5 1859{
c457707e 1860 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
86066315 1861 if (s->ttyfd != -1) {
1862 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
1863 session_pty_cleanup(s);
1864 }
e78a59f5 1865 if (s->term)
1866 xfree(s->term);
1867 if (s->display)
1868 xfree(s->display);
f9314d9a 1869 if (s->auth_display)
1870 xfree(s->auth_display);
e78a59f5 1871 if (s->auth_data)
1872 xfree(s->auth_data);
1873 if (s->auth_proto)
1874 xfree(s->auth_proto);
1875 s->used = 0;
1d1ffb87 1876 session_proctitle(s);
e78a59f5 1877}
1878
1879void
1880session_close_by_pid(pid_t pid, int status)
1881{
1882 Session *s = session_by_pid(pid);
1883 if (s == NULL) {
c457707e 1884 debug("session_close_by_pid: no session for pid %ld",
1885 (long)pid);
e78a59f5 1886 return;
1887 }
1888 if (s->chanid != -1)
1889 session_exit_message(s, status);
1890 session_close(s);
1891}
1892
1893/*
1894 * this is called when a channel dies before
1895 * the session 'child' itself dies
1896 */
1897void
1898session_close_by_channel(int id, void *arg)
1899{
1900 Session *s = session_by_channel(id);
1901 if (s == NULL) {
418e724c 1902 debug("session_close_by_channel: no session for id %d", id);
e78a59f5 1903 return;
1904 }
c457707e 1905 debug("session_close_by_channel: channel %d child %ld",
1906 id, (long)s->pid);
d5f24f94 1907 if (s->pid != 0) {
418e724c 1908 debug("session_close_by_channel: channel %d: has child", id);
efcc9957 1909 /*
1910 * delay detach of session, but release pty, since
1911 * the fd's to the child are already closed
1912 */
1913 if (s->ttyfd != -1) {
1914 fatal_remove_cleanup(session_pty_cleanup, (void *)s);
1915 session_pty_cleanup(s);
1916 }
418e724c 1917 return;
e78a59f5 1918 }
418e724c 1919 /* detach by removing callback */
1920 channel_cancel_cleanup(s->chanid);
1921 s->chanid = -1;
d5f24f94 1922 session_close(s);
1923}
1924
1925void
1853d1ef 1926session_destroy_all(void (*closefunc)(Session *))
d5f24f94 1927{
1928 int i;
184eed6a 1929 for (i = 0; i < MAX_SESSIONS; i++) {
d5f24f94 1930 Session *s = &sessions[i];
1853d1ef 1931 if (s->used) {
1932 if (closefunc != NULL)
1933 closefunc(s);
1934 else
1935 session_close(s);
1936 }
d5f24f94 1937 }
e78a59f5 1938}
1939
396c147e 1940static char *
1d1ffb87 1941session_tty_list(void)
1942{
1943 static char buf[1024];
1944 int i;
1945 buf[0] = '\0';
184eed6a 1946 for (i = 0; i < MAX_SESSIONS; i++) {
1d1ffb87 1947 Session *s = &sessions[i];
1948 if (s->used && s->ttyfd != -1) {
1949 if (buf[0] != '\0')
1950 strlcat(buf, ",", sizeof buf);
1951 strlcat(buf, strrchr(s->tty, '/') + 1, sizeof buf);
1952 }
1953 }
1954 if (buf[0] == '\0')
1955 strlcpy(buf, "notty", sizeof buf);
1956 return buf;
1957}
1958
1959void
1960session_proctitle(Session *s)
1961{
1962 if (s->pw == NULL)
1963 error("no user for session %d", s->self);
1964 else
1965 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
1966}
1967
8dcd9d5c 1968int
1969session_setup_x11fwd(Session *s)
1970{
8dcd9d5c 1971 struct stat st;
c9d0ad9b 1972 char display[512], auth_display[512];
1973 char hostname[MAXHOSTNAMELEN];
8dcd9d5c 1974
1975 if (no_x11_forwarding_flag) {
1976 packet_send_debug("X11 forwarding disabled in user configuration file.");
1977 return 0;
1978 }
1979 if (!options.x11_forwarding) {
1980 debug("X11 forwarding disabled in server configuration file.");
1981 return 0;
1982 }
1983 if (!options.xauth_location ||
1984 (stat(options.xauth_location, &st) == -1)) {
1985 packet_send_debug("No xauth program; cannot forward with spoofing.");
1986 return 0;
1987 }
ff027d84 1988 if (options.use_login) {
1989 packet_send_debug("X11 forwarding disabled; "
1990 "not compatible with UseLogin=yes.");
1991 return 0;
1992 }
b44de2b1 1993 if (s->display != NULL) {
8dcd9d5c 1994 debug("X11 display already set.");
1995 return 0;
1996 }
57f228e8 1997 if (x11_create_display_inet(options.x11_display_offset,
1998 options.x11_use_localhost, s->single_connection,
1999 &s->display_number) == -1) {
b44de2b1 2000 debug("x11_create_display_inet failed.");
8dcd9d5c 2001 return 0;
2002 }
c9d0ad9b 2003
2004 /* Set up a suitable value for the DISPLAY variable. */
2005 if (gethostname(hostname, sizeof(hostname)) < 0)
2006 fatal("gethostname: %.100s", strerror(errno));
2007 /*
2008 * auth_display must be used as the displayname when the
2009 * authorization entry is added with xauth(1). This will be
2010 * different than the DISPLAY string for localhost displays.
2011 */
e6e573bd 2012 if (options.x11_use_localhost) {
57f228e8 2013 snprintf(display, sizeof display, "localhost:%u.%u",
c9d0ad9b 2014 s->display_number, s->screen);
57f228e8 2015 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
f9314d9a 2016 s->display_number, s->screen);
c9d0ad9b 2017 s->display = xstrdup(display);
f9314d9a 2018 s->auth_display = xstrdup(auth_display);
c9d0ad9b 2019 } else {
2020#ifdef IPADDR_IN_DISPLAY
2021 struct hostent *he;
2022 struct in_addr my_addr;
2023
2024 he = gethostbyname(hostname);
2025 if (he == NULL) {
2026 error("Can't get IP address for X11 DISPLAY.");
2027 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2028 return 0;
2029 }
2030 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
57f228e8 2031 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
c9d0ad9b 2032 s->display_number, s->screen);
2033#else
57f228e8 2034 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
c9d0ad9b 2035 s->display_number, s->screen);
2036#endif
2037 s->display = xstrdup(display);
f9314d9a 2038 s->auth_display = xstrdup(display);
c9d0ad9b 2039 }
2040
8dcd9d5c 2041 return 1;
2042}
2043
396c147e 2044static void
59c97189 2045do_authenticated2(Authctxt *authctxt)
e78a59f5 2046{
57156994 2047 server_loop2(authctxt);
e78a59f5 2048}
This page took 1.625673 seconds and 5 git commands to generate.