blob: 55db2ffd2818c37af333b5dd74d7ff83b0f4a3c0 [file] [log] [blame]
Damien Millerb38eff82000-04-01 11:09:21 +10001/*
2 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
3 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11004 *
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 *
Damien Millerefb4afe2000-04-12 18:45:05 +100011 * SSH2 support by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000012 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110013 *
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.
Damien Millerefb4afe2000-04-12 18:45:05 +100033 */
Damien Millerb38eff82000-04-01 11:09:21 +100034
35#include "includes.h"
Darren Tucker23bc8d02004-02-06 16:24:31 +110036RCSID("$OpenBSD: session.c,v 1.172 2004/01/30 09:48:57 markus Exp $");
Damien Millerb38eff82000-04-01 11:09:21 +100037
Damien Millerb38eff82000-04-01 11:09:21 +100038#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000039#include "ssh1.h"
40#include "ssh2.h"
41#include "xmalloc.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000042#include "sshpty.h"
Damien Millerb38eff82000-04-01 11:09:21 +100043#include "packet.h"
44#include "buffer.h"
Damien Millerb38eff82000-04-01 11:09:21 +100045#include "mpaux.h"
Damien Millerb38eff82000-04-01 11:09:21 +100046#include "uidswap.h"
47#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000048#include "channels.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100049#include "bufaux.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100050#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100051#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052#include "pathnames.h"
53#include "log.h"
54#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000055#include "sshlogin.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000056#include "serverloop.h"
57#include "canohost.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000058#include "session.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000059#include "monitor_wrap.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100060
Darren Tucker3c78c5e2004-01-23 22:03:10 +110061#if defined(KRB5) && defined(USE_AFS)
Damien Miller8f341f82004-01-21 11:00:46 +110062#include <kafs.h>
63#endif
64
Darren Tucker0efd1552003-08-26 11:49:55 +100065#ifdef GSSAPI
66#include "ssh-gss.h"
67#endif
68
Damien Millerb38eff82000-04-01 11:09:21 +100069/* func */
70
71Session *session_new(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000072void session_set_fds(Session *, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +100073void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000074void session_proctitle(Session *);
75int session_setup_x11fwd(Session *);
76void do_exec_pty(Session *, const char *);
77void do_exec_no_pty(Session *, const char *);
78void do_exec(Session *, const char *);
79void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +000080#ifdef LOGIN_NEEDS_UTMPX
81static void do_pre_login(Session *s);
82#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +000083void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +100084void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +000085int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +100086
Ben Lindstrombba81212001-06-25 05:01:22 +000087static void do_authenticated1(Authctxt *);
88static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +000089
Ben Lindstrombba81212001-06-25 05:01:22 +000090static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +000091
Damien Millerb38eff82000-04-01 11:09:21 +100092/* import */
93extern ServerOptions options;
94extern char *__progname;
95extern int log_stderr;
96extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +000097extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +100098extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +000099extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000100extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +1000101
Damien Miller7b28dc52000-09-05 13:34:53 +1100102/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000103const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100104
Damien Millerb38eff82000-04-01 11:09:21 +1000105/* data */
106#define MAX_SESSIONS 10
107Session sessions[MAX_SESSIONS];
Damien Miller15e7d4b2000-09-29 10:57:35 +1100108
Damien Millerad833b32000-08-23 10:46:23 +1000109#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000110login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000111#endif
112
Darren Tucker3e33cec2003-10-02 16:12:36 +1000113static int is_child = 0;
114
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000115/* Name and directory of socket for authentication agent forwarding. */
116static char *auth_sock_name = NULL;
117static char *auth_sock_dir = NULL;
118
119/* removes the agent forwarding socket */
120
121static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000122auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000123{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000124 if (auth_sock_name != NULL) {
125 temporarily_use_uid(pw);
126 unlink(auth_sock_name);
127 rmdir(auth_sock_dir);
128 auth_sock_name = NULL;
129 restore_uid();
130 }
131}
132
133static int
134auth_input_request_forwarding(struct passwd * pw)
135{
136 Channel *nc;
137 int sock;
138 struct sockaddr_un sunaddr;
139
140 if (auth_sock_name != NULL) {
141 error("authentication forwarding requested twice.");
142 return 0;
143 }
144
145 /* Temporarily drop privileged uid for mkdir/bind. */
146 temporarily_use_uid(pw);
147
148 /* Allocate a buffer for the socket name, and format the name. */
149 auth_sock_name = xmalloc(MAXPATHLEN);
150 auth_sock_dir = xmalloc(MAXPATHLEN);
Darren Tucker072a7b12003-10-15 16:10:25 +1000151 strlcpy(auth_sock_dir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000152
153 /* Create private directory for socket */
154 if (mkdtemp(auth_sock_dir) == NULL) {
155 packet_send_debug("Agent forwarding disabled: "
156 "mkdtemp() failed: %.100s", strerror(errno));
157 restore_uid();
158 xfree(auth_sock_name);
159 xfree(auth_sock_dir);
160 auth_sock_name = NULL;
161 auth_sock_dir = NULL;
162 return 0;
163 }
Ben Lindstromce0f6342002-06-11 16:42:49 +0000164 snprintf(auth_sock_name, MAXPATHLEN, "%s/agent.%ld",
165 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000166
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000167 /* Create the socket. */
168 sock = socket(AF_UNIX, SOCK_STREAM, 0);
169 if (sock < 0)
170 packet_disconnect("socket: %.100s", strerror(errno));
171
172 /* Bind it to the name. */
173 memset(&sunaddr, 0, sizeof(sunaddr));
174 sunaddr.sun_family = AF_UNIX;
175 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
176
177 if (bind(sock, (struct sockaddr *) & sunaddr, sizeof(sunaddr)) < 0)
178 packet_disconnect("bind: %.100s", strerror(errno));
179
180 /* Restore the privileged uid. */
181 restore_uid();
182
183 /* Start listening on the socket. */
Darren Tucker3175eb92003-12-09 19:15:11 +1100184 if (listen(sock, SSH_LISTEN_BACKLOG) < 0)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000185 packet_disconnect("listen: %.100s", strerror(errno));
186
187 /* Allocate a channel for the authentication agent socket. */
188 nc = channel_new("auth socket",
189 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
190 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000191 0, "auth socket", 1);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000192 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
193 return 1;
194}
195
Darren Tucker1921ed92004-02-10 13:23:28 +1100196static void
197display_loginmsg(void)
198{
199 if (buffer_len(&loginmsg) > 0) {
200 buffer_append(&loginmsg, "\0", 1);
201 printf("%s\n", (char *)buffer_ptr(&loginmsg));
202 buffer_clear(&loginmsg);
203 }
Darren Tuckerac7c9982004-04-07 08:04:09 +1000204 fflush(stdout);
Darren Tucker1921ed92004-02-10 13:23:28 +1100205}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000206
Ben Lindstromb31783d2001-03-22 02:02:12 +0000207void
208do_authenticated(Authctxt *authctxt)
209{
Damien Miller97f39ae2003-02-24 11:57:01 +1100210 setproctitle("%s", authctxt->pw->pw_name);
211
Ben Lindstromb31783d2001-03-22 02:02:12 +0000212 /*
213 * Cancel the alarm we set to limit the time taken for
214 * authentication.
215 */
216 alarm(0);
217 if (startup_pipe != -1) {
218 close(startup_pipe);
219 startup_pipe = -1;
220 }
Ben Lindstromb31783d2001-03-22 02:02:12 +0000221 /* 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);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000229
Darren Tucker3e33cec2003-10-02 16:12:36 +1000230 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000231}
232
Damien Millerb38eff82000-04-01 11:09:21 +1000233/*
Damien Millerb38eff82000-04-01 11:09:21 +1000234 * Prepares for an interactive session. This is called after the user has
235 * been successfully authenticated. During this message exchange, pseudo
236 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
237 * are requested, etc.
238 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000239static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000240do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000241{
242 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000243 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100244 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000245 int enable_compression_after_reply = 0;
246 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000247
248 s = session_new();
Ben Lindstromec95ed92001-07-04 04:21:14 +0000249 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000250 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000251
Damien Millerb38eff82000-04-01 11:09:21 +1000252 /*
253 * We stay in this loop until the client requests to execute a shell
254 * or a command.
255 */
256 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000257 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000258
259 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100260 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000261
262 /* Process the packet. */
263 switch (type) {
264 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000265 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100266 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000267 if (compression_level < 1 || compression_level > 9) {
268 packet_send_debug("Received illegal compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100269 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000270 break;
271 }
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000272 if (!options.compression) {
273 debug2("compression disabled");
274 break;
275 }
Damien Millerb38eff82000-04-01 11:09:21 +1000276 /* Enable compression after we have responded with SUCCESS. */
277 enable_compression_after_reply = 1;
278 success = 1;
279 break;
280
281 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000282 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000283 break;
284
285 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000286 s->auth_proto = packet_get_string(&proto_len);
287 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000288
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000289 screen_flag = packet_get_protocol_flags() &
290 SSH_PROTOFLAG_SCREEN_NUMBER;
291 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
292
293 if (packet_remaining() == 4) {
294 if (!screen_flag)
295 debug2("Buggy client: "
296 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000297 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000298 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000299 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000300 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100301 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000302 success = session_setup_x11fwd(s);
303 if (!success) {
304 xfree(s->auth_proto);
305 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000306 s->auth_proto = NULL;
307 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000308 }
Damien Millerb38eff82000-04-01 11:09:21 +1000309 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000310
311 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
312 if (no_agent_forwarding_flag || compat13) {
313 debug("Authentication agent forwarding not permitted for this authentication.");
314 break;
315 }
316 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000317 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000318 break;
319
320 case SSH_CMSG_PORT_FORWARD_REQUEST:
321 if (no_port_forwarding_flag) {
322 debug("Port forwarding not permitted for this authentication.");
323 break;
324 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100325 if (!options.allow_tcp_forwarding) {
326 debug("Port forwarding not permitted.");
327 break;
328 }
Damien Millerb38eff82000-04-01 11:09:21 +1000329 debug("Received TCP/IP port forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000330 channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
Damien Millerb38eff82000-04-01 11:09:21 +1000331 success = 1;
332 break;
333
334 case SSH_CMSG_MAX_PACKET_SIZE:
335 if (packet_set_maxsize(packet_get_int()) > 0)
336 success = 1;
337 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100338
Damien Millerb38eff82000-04-01 11:09:21 +1000339 case SSH_CMSG_EXEC_SHELL:
340 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000341 if (type == SSH_CMSG_EXEC_CMD) {
342 command = packet_get_string(&dlen);
343 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000344 do_exec(s, command);
345 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000346 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000347 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000348 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100349 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000350 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000351 return;
352
353 default:
354 /*
355 * Any unknown messages in this phase are ignored,
356 * and a failure message is returned.
357 */
Damien Miller996acd22003-04-09 20:59:48 +1000358 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000359 }
360 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
361 packet_send();
362 packet_write_wait();
363
364 /* Enable compression now that we have replied if appropriate. */
365 if (enable_compression_after_reply) {
366 enable_compression_after_reply = 0;
367 packet_start_compression(compression_level);
368 }
369 }
370}
371
372/*
373 * This is called to fork and execute a command when we have no tty. This
374 * will call do_child from the child, and server_loop from the parent after
375 * setting up file descriptors and such.
376 */
Damien Miller4af51302000-04-16 11:18:38 +1000377void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000378do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000379{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000380 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000381
382#ifdef USE_PIPES
383 int pin[2], pout[2], perr[2];
384 /* Allocate pipes for communicating with the program. */
385 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
386 packet_disconnect("Could not create pipes: %.100s",
387 strerror(errno));
388#else /* USE_PIPES */
389 int inout[2], err[2];
390 /* Uses socket pairs to communicate with the program. */
391 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
392 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
393 packet_disconnect("Could not create socket pairs: %.100s",
394 strerror(errno));
395#endif /* USE_PIPES */
396 if (s == NULL)
397 fatal("do_exec_no_pty: no session");
398
Damien Millere247cc42000-05-07 12:03:14 +1000399 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000400
Damien Millerc5946332001-02-28 11:46:11 +1100401#if defined(USE_PAM)
Darren Tucker1825f262004-02-24 00:01:27 +1100402 if (options.use_pam && !use_privsep)
Damien Miller4e448a32003-05-14 15:11:48 +1000403 do_pam_setcred(1);
Kevin Stevesff793a22001-02-21 16:36:51 +0000404#endif /* USE_PAM */
405
Damien Millerb38eff82000-04-01 11:09:21 +1000406 /* Fork the child. */
407 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000408 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000409
Damien Millerb38eff82000-04-01 11:09:21 +1000410 /* Child. Reinitialize the log since the pid has changed. */
411 log_init(__progname, options.log_level, options.log_facility, log_stderr);
412
413 /*
414 * Create a new session and process group since the 4.4BSD
415 * setlogin() affects the entire process group.
416 */
417 if (setsid() < 0)
418 error("setsid failed: %.100s", strerror(errno));
419
420#ifdef USE_PIPES
421 /*
422 * Redirect stdin. We close the parent side of the socket
423 * pair, and make the child side the standard input.
424 */
425 close(pin[1]);
426 if (dup2(pin[0], 0) < 0)
427 perror("dup2 stdin");
428 close(pin[0]);
429
430 /* Redirect stdout. */
431 close(pout[0]);
432 if (dup2(pout[1], 1) < 0)
433 perror("dup2 stdout");
434 close(pout[1]);
435
436 /* Redirect stderr. */
437 close(perr[0]);
438 if (dup2(perr[1], 2) < 0)
439 perror("dup2 stderr");
440 close(perr[1]);
441#else /* USE_PIPES */
442 /*
443 * Redirect stdin, stdout, and stderr. Stdin and stdout will
444 * use the same socket, as some programs (particularly rdist)
445 * seem to depend on it.
446 */
447 close(inout[1]);
448 close(err[1]);
449 if (dup2(inout[0], 0) < 0) /* stdin */
450 perror("dup2 stdin");
451 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
452 perror("dup2 stdout");
453 if (dup2(err[0], 2) < 0) /* stderr */
454 perror("dup2 stderr");
455#endif /* USE_PIPES */
456
Tim Rice81ed5182002-09-25 17:38:46 -0700457#ifdef _UNICOS
458 cray_init_job(s->pw); /* set up cray jid and tmpdir */
459#endif
460
Damien Millerb38eff82000-04-01 11:09:21 +1000461 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000462 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000463 /* NOTREACHED */
464 }
Tim Rice81ed5182002-09-25 17:38:46 -0700465#ifdef _UNICOS
466 signal(WJSIGNAL, cray_job_termination_handler);
467#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100468#ifdef HAVE_CYGWIN
469 if (is_winnt)
470 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
471#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000472 if (pid < 0)
473 packet_disconnect("fork failed: %.100s", strerror(errno));
474 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000475 /* Set interactive/non-interactive mode. */
476 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000477#ifdef USE_PIPES
478 /* We are the parent. Close the child sides of the pipes. */
479 close(pin[0]);
480 close(pout[1]);
481 close(perr[1]);
482
Damien Millerefb4afe2000-04-12 18:45:05 +1000483 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000484 session_set_fds(s, pin[1], pout[0], s->is_subsystem ? -1 : perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000485 } else {
486 /* Enter the interactive session. */
487 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000488 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000489 }
Damien Millerb38eff82000-04-01 11:09:21 +1000490#else /* USE_PIPES */
491 /* We are the parent. Close the child sides of the socket pairs. */
492 close(inout[0]);
493 close(err[0]);
494
495 /*
Darren Tuckerb3850592004-03-27 16:44:21 +1100496 * Clear loginmsg, since it's the child's responsibility to display
497 * it to the user, otherwise multiple sessions may accumulate
498 * multiple copies of the login messages.
499 */
500 buffer_clear(&loginmsg);
501
502 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000503 * Enter the interactive session. Note: server_loop must be able to
504 * handle the case that fdin and fdout are the same.
505 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000506 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000507 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000508 } else {
509 server_loop(pid, inout[1], inout[1], err[1]);
510 /* server_loop has closed inout[1] and err[1]. */
511 }
Damien Millerb38eff82000-04-01 11:09:21 +1000512#endif /* USE_PIPES */
513}
514
515/*
516 * This is called to fork and execute a command when we have a tty. This
517 * will call do_child from the child, and server_loop from the parent after
518 * setting up file descriptors, controlling tty, updating wtmp, utmp,
519 * lastlog, and other such operations.
520 */
Damien Miller4af51302000-04-16 11:18:38 +1000521void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000522do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000523{
Damien Millerb38eff82000-04-01 11:09:21 +1000524 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000525 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000526
527 if (s == NULL)
528 fatal("do_exec_pty: no session");
529 ptyfd = s->ptyfd;
530 ttyfd = s->ttyfd;
531
Damien Millerc5946332001-02-28 11:46:11 +1100532#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000533 if (options.use_pam) {
Damien Miller341c6e62003-09-02 23:18:52 +1000534 do_pam_set_tty(s->tty);
Darren Tuckeref3a4a22004-02-06 15:30:50 +1100535 if (!use_privsep)
536 do_pam_setcred(1);
Damien Miller4e448a32003-05-14 15:11:48 +1000537 }
Damien Miller5a761312001-02-27 09:28:23 +1100538#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000539
Damien Millerb38eff82000-04-01 11:09:21 +1000540 /* Fork the child. */
541 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000542 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000543
Damien Miller942da032000-08-18 13:59:06 +1000544 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000545 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000546 /* Close the master side of the pseudo tty. */
547 close(ptyfd);
548
549 /* Make the pseudo tty our controlling tty. */
550 pty_make_controlling_tty(&ttyfd, s->tty);
551
Damien Miller9c751422001-10-10 15:02:46 +1000552 /* Redirect stdin/stdout/stderr from the pseudo tty. */
553 if (dup2(ttyfd, 0) < 0)
554 error("dup2 stdin: %s", strerror(errno));
555 if (dup2(ttyfd, 1) < 0)
556 error("dup2 stdout: %s", strerror(errno));
557 if (dup2(ttyfd, 2) < 0)
558 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000559
560 /* Close the extra descriptor for the pseudo tty. */
561 close(ttyfd);
562
Damien Miller942da032000-08-18 13:59:06 +1000563 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000564#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700565 if (!(options.use_login && command == NULL)) {
566#ifdef _UNICOS
567 cray_init_job(s->pw); /* set up cray jid and tmpdir */
568#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100569 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700570 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000571# ifdef LOGIN_NEEDS_UTMPX
572 else
573 do_pre_login(s);
574# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000575#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000576
Damien Millerb38eff82000-04-01 11:09:21 +1000577 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000578 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000579 /* NOTREACHED */
580 }
Tim Rice81ed5182002-09-25 17:38:46 -0700581#ifdef _UNICOS
582 signal(WJSIGNAL, cray_job_termination_handler);
583#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100584#ifdef HAVE_CYGWIN
585 if (is_winnt)
586 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
587#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000588 if (pid < 0)
589 packet_disconnect("fork failed: %.100s", strerror(errno));
590 s->pid = pid;
591
592 /* Parent. Close the slave side of the pseudo tty. */
593 close(ttyfd);
594
595 /*
596 * Create another descriptor of the pty master side for use as the
597 * standard input. We could use the original descriptor, but this
598 * simplifies code in server_loop. The descriptor is bidirectional.
599 */
600 fdout = dup(ptyfd);
601 if (fdout < 0)
602 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
603
604 /* we keep a reference to the pty master */
605 ptymaster = dup(ptyfd);
606 if (ptymaster < 0)
607 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
608 s->ptymaster = ptymaster;
609
610 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000611 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000612 if (compat20) {
613 session_set_fds(s, ptyfd, fdout, -1);
614 } else {
615 server_loop(pid, ptyfd, fdout, -1);
616 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000617 }
Damien Millerb38eff82000-04-01 11:09:21 +1000618}
619
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000620#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000621static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000622do_pre_login(Session *s)
623{
624 socklen_t fromlen;
625 struct sockaddr_storage from;
626 pid_t pid = getpid();
627
628 /*
629 * Get IP address of client. If the connection is not a socket, let
630 * the address be 0.0.0.0.
631 */
632 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000633 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000634 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000635 if (getpeername(packet_get_connection_in(),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100636 (struct sockaddr *) & from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000637 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000638 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000639 }
640 }
641
642 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000643 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000644 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000645}
646#endif
647
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000648/*
649 * This is called to fork and execute a command. If another command is
650 * to be forced, execute that instead.
651 */
652void
653do_exec(Session *s, const char *command)
654{
655 if (forced_command) {
656 original_command = command;
657 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000658 debug("Forced command '%.900s'", command);
659 }
660
Damien Miller324948b2003-09-02 22:55:45 +1000661#ifdef GSSAPI
662 if (options.gss_authentication) {
663 temporarily_use_uid(s->pw);
664 ssh_gssapi_storecreds();
665 restore_uid();
666 }
667#endif
668
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000669 if (s->ttyfd != -1)
670 do_exec_pty(s, command);
671 else
672 do_exec_no_pty(s, command);
673
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000674 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000675}
676
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000677
Damien Miller942da032000-08-18 13:59:06 +1000678/* administrative, login(1)-like work */
679void
Damien Miller69b69aa2000-10-28 14:19:58 +1100680do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000681{
Damien Miller942da032000-08-18 13:59:06 +1000682 char *time_string;
Damien Miller942da032000-08-18 13:59:06 +1000683 socklen_t fromlen;
684 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000685 struct passwd * pw = s->pw;
686 pid_t pid = getpid();
687
688 /*
689 * Get IP address of client. If the connection is not a socket, let
690 * the address be 0.0.0.0.
691 */
692 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000693 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000694 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000695 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000696 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000697 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000698 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000699 }
700 }
701
702 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000703 if (!use_privsep)
704 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
705 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000706 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000707 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000708
Kevin Steves092f2ef2000-10-14 13:36:13 +0000709#ifdef USE_PAM
710 /*
711 * If password change is needed, do it now.
712 * This needs to occur before the ~/.hushlogin check.
713 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100714 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
715 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000716 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100717 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000718 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000719 }
720#endif
721
Damien Millercf205e82001-04-16 18:29:15 +1000722 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000723 return;
724
Darren Tucker1921ed92004-02-10 13:23:28 +1100725 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000726
Tim Rice81ed5182002-09-25 17:38:46 -0700727#ifndef NO_SSH_LASTLOG
Ben Lindstromc447fee2002-04-02 20:35:35 +0000728 if (options.print_lastlog && s->last_login_time != 0) {
729 time_string = ctime(&s->last_login_time);
Damien Miller942da032000-08-18 13:59:06 +1000730 if (strchr(time_string, '\n'))
731 *strchr(time_string, '\n') = 0;
Ben Lindstromc447fee2002-04-02 20:35:35 +0000732 if (strcmp(s->hostname, "") == 0)
Damien Miller942da032000-08-18 13:59:06 +1000733 printf("Last login: %s\r\n", time_string);
734 else
Ben Lindstromc447fee2002-04-02 20:35:35 +0000735 printf("Last login: %s from %s\r\n", time_string,
736 s->hostname);
Damien Miller942da032000-08-18 13:59:06 +1000737 }
Tim Rice81ed5182002-09-25 17:38:46 -0700738#endif /* NO_SSH_LASTLOG */
Damien Millercf205e82001-04-16 18:29:15 +1000739
740 do_motd();
741}
742
743/*
744 * Display the message of the day.
745 */
746void
747do_motd(void)
748{
749 FILE *f;
750 char buf[256];
751
Damien Miller942da032000-08-18 13:59:06 +1000752 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000753#ifdef HAVE_LOGIN_CAP
754 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
755 "/etc/motd"), "r");
756#else
Damien Miller942da032000-08-18 13:59:06 +1000757 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000758#endif
Damien Miller942da032000-08-18 13:59:06 +1000759 if (f) {
760 while (fgets(buf, sizeof(buf), f))
761 fputs(buf, stdout);
762 fclose(f);
763 }
764 }
765}
766
Kevin Steves8f63caa2001-07-04 18:23:02 +0000767
768/*
769 * Check for quiet login, either .hushlogin or command given.
770 */
771int
772check_quietlogin(Session *s, const char *command)
773{
774 char buf[256];
775 struct passwd *pw = s->pw;
776 struct stat st;
777
778 /* Return 1 if .hushlogin exists or a command given. */
779 if (command != NULL)
780 return 1;
781 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
782#ifdef HAVE_LOGIN_CAP
783 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
784 return 1;
785#else
786 if (stat(buf, &st) >= 0)
787 return 1;
788#endif
789 return 0;
790}
791
Damien Millerb38eff82000-04-01 11:09:21 +1000792/*
793 * Sets the value of the given variable in the environment. If the variable
794 * already exists, its value is overriden.
795 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000796void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000797child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100798 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000799{
Damien Millerb38eff82000-04-01 11:09:21 +1000800 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000801 u_int envsize;
802 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000803
804 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000805 * If we're passed an uninitialized list, allocate a single null
806 * entry before continuing.
807 */
808 if (*envp == NULL && *envsizep == 0) {
809 *envp = xmalloc(sizeof(char *));
810 *envp[0] = NULL;
811 *envsizep = 1;
812 }
813
814 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000815 * Find the slot where the value should be stored. If the variable
816 * already exists, we reuse the slot; otherwise we append a new slot
817 * at the end of the array, expanding if necessary.
818 */
819 env = *envp;
820 namelen = strlen(name);
821 for (i = 0; env[i]; i++)
822 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
823 break;
824 if (env[i]) {
825 /* Reuse the slot. */
826 xfree(env[i]);
827 } else {
828 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000829 envsize = *envsizep;
830 if (i >= envsize - 1) {
831 if (envsize >= 1000)
832 fatal("child_set_env: too many env vars");
833 envsize += 50;
834 env = (*envp) = xrealloc(env, envsize * sizeof(char *));
835 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000836 }
837 /* Need to set the NULL pointer at end of array beyond the new slot. */
838 env[i + 1] = NULL;
839 }
840
841 /* Allocate space and format the variable in the appropriate slot. */
842 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
843 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
844}
845
846/*
847 * Reads environment variables from the given file and adds/overrides them
848 * into the environment. If the file does not exist, this does nothing.
849 * Otherwise, it must consist of empty lines, comments (line starts with '#')
850 * and assignments of the form name=value. No other forms are allowed.
851 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000852static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000853read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100854 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000855{
856 FILE *f;
857 char buf[4096];
858 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000859 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000860
861 f = fopen(filename, "r");
862 if (!f)
863 return;
864
865 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000866 if (++lineno > 1000)
867 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000868 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
869 ;
870 if (!*cp || *cp == '#' || *cp == '\n')
871 continue;
872 if (strchr(cp, '\n'))
873 *strchr(cp, '\n') = '\0';
874 value = strchr(cp, '=');
875 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000876 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
877 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000878 continue;
879 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000880 /*
881 * Replace the equals sign by nul, and advance value to
882 * the value string.
883 */
Damien Millerb38eff82000-04-01 11:09:21 +1000884 *value = '\0';
885 value++;
886 child_set_env(env, envsize, cp, value);
887 }
888 fclose(f);
889}
890
Darren Tuckere1a790d2003-09-16 11:52:19 +1000891#ifdef HAVE_ETC_DEFAULT_LOGIN
892/*
893 * Return named variable from specified environment, or NULL if not present.
894 */
895static char *
896child_get_env(char **env, const char *name)
897{
898 int i;
899 size_t len;
900
901 len = strlen(name);
902 for (i=0; env[i] != NULL; i++)
903 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
904 return(env[i] + len + 1);
905 return NULL;
906}
907
908/*
909 * Read /etc/default/login.
910 * We pick up the PATH (or SUPATH for root) and UMASK.
911 */
912static void
913read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
914{
915 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000916 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +1000917 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000918
919 /*
920 * We don't want to copy the whole file to the child's environment,
921 * so we use a temporary environment and copy the variables we're
922 * interested in.
923 */
924 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
925
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000926 if (tmpenv == NULL)
927 return;
928
Darren Tuckere1a790d2003-09-16 11:52:19 +1000929 if (uid == 0)
930 var = child_get_env(tmpenv, "SUPATH");
931 else
932 var = child_get_env(tmpenv, "PATH");
933 if (var != NULL)
934 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +1100935
Darren Tuckere1a790d2003-09-16 11:52:19 +1000936 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
937 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +1000938 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +1100939
Darren Tuckere1a790d2003-09-16 11:52:19 +1000940 for (i = 0; tmpenv[i] != NULL; i++)
941 xfree(tmpenv[i]);
942 xfree(tmpenv);
943}
944#endif /* HAVE_ETC_DEFAULT_LOGIN */
945
Damien Millerbb9ffc12002-01-08 10:59:32 +1100946void copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000947{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100948 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000949 int i;
950
Damien Millerbb9ffc12002-01-08 10:59:32 +1100951 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000952 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000953
Damien Millerbb9ffc12002-01-08 10:59:32 +1100954 for(i = 0; source[i] != NULL; i++) {
955 var_name = xstrdup(source[i]);
956 if ((var_val = strstr(var_name, "=")) == NULL) {
957 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000958 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000959 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100960 *var_val++ = '\0';
961
962 debug3("Copy environment: %s=%s", var_name, var_val);
963 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +1100964
Damien Millerbb9ffc12002-01-08 10:59:32 +1100965 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000966 }
967}
Damien Millercb5e44a2000-09-29 12:12:36 +1100968
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000969static char **
970do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000971{
Damien Millerb38eff82000-04-01 11:09:21 +1000972 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000973 u_int i, envsize;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000974 char **env, *laddr, *path = NULL;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000975 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +1000976
Damien Millerb38eff82000-04-01 11:09:21 +1000977 /* Initialize the environment. */
978 envsize = 100;
979 env = xmalloc(envsize * sizeof(char *));
980 env[0] = NULL;
981
Damien Millerbac2d8a2000-09-05 16:13:06 +1100982#ifdef HAVE_CYGWIN
983 /*
984 * The Windows environment contains some setting which are
985 * important for a running system. They must not be dropped.
986 */
Damien Millerbb9ffc12002-01-08 10:59:32 +1100987 copy_environment(environ, &env, &envsize);
Damien Millerbac2d8a2000-09-05 16:13:06 +1100988#endif
989
Darren Tucker0efd1552003-08-26 11:49:55 +1000990#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +1100991 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +1000992 * the childs environment as they see fit
993 */
994 ssh_gssapi_do_child(&env, &envsize);
995#endif
996
Damien Millerb38eff82000-04-01 11:09:21 +1000997 if (!options.use_login) {
998 /* Set basic environment. */
999 child_set_env(&env, &envsize, "USER", pw->pw_name);
1000 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001001#ifdef _AIX
1002 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1003#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001004 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001005#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001006 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1007 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1008 else
1009 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001010#else /* HAVE_LOGIN_CAP */
1011# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001012 /*
1013 * There's no standard path on Windows. The path contains
1014 * important components pointing to the system directories,
1015 * needed for loading shared libraries. So the path better
1016 * remains intact here.
1017 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001018# ifdef HAVE_ETC_DEFAULT_LOGIN
1019 read_etc_default_login(&env, &envsize, pw->pw_uid);
1020 path = child_get_env(env, "PATH");
1021# endif /* HAVE_ETC_DEFAULT_LOGIN */
1022 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001023 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001024 s->pw->pw_uid == 0 ?
1025 SUPERUSER_PATH : _PATH_STDPATH);
1026 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001027# endif /* HAVE_CYGWIN */
1028#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001029
1030 snprintf(buf, sizeof buf, "%.200s/%.50s",
1031 _PATH_MAILDIR, pw->pw_name);
1032 child_set_env(&env, &envsize, "MAIL", buf);
1033
1034 /* Normal systems set SHELL by default. */
1035 child_set_env(&env, &envsize, "SHELL", shell);
1036 }
1037 if (getenv("TZ"))
1038 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1039
1040 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001041 if (!options.use_login) {
1042 while (custom_environment) {
1043 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001044 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001045
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001046 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001047 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001048 if (str[i] == '=') {
1049 str[i] = 0;
1050 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001051 }
1052 custom_environment = ce->next;
1053 xfree(ce->s);
1054 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001055 }
Damien Millerb38eff82000-04-01 11:09:21 +10001056 }
1057
Damien Millerf37e2462002-09-19 11:47:55 +10001058 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001059 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001060 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001061 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1062
Damien Miller00111382003-03-10 11:21:17 +11001063 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001064 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001065 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1066 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001067 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1068
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001069 if (s->ttyfd != -1)
1070 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1071 if (s->term)
1072 child_set_env(&env, &envsize, "TERM", s->term);
1073 if (s->display)
1074 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001075 if (original_command)
1076 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1077 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001078
Tim Rice81ed5182002-09-25 17:38:46 -07001079#ifdef _UNICOS
1080 if (cray_tmpdir[0] != '\0')
1081 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1082#endif /* _UNICOS */
1083
Damien Millerb38eff82000-04-01 11:09:21 +10001084#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001085 {
1086 char *cp;
1087
1088 if ((cp = getenv("AUTHSTATE")) != NULL)
1089 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1090 if ((cp = getenv("KRB5CCNAME")) != NULL)
1091 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1092 read_environment_file(&env, &envsize, "/etc/environment");
1093 }
Damien Millerb38eff82000-04-01 11:09:21 +10001094#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001095#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001096 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001097 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001098 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001099#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001100#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001101 /*
1102 * Pull in any environment variables that may have
1103 * been set by PAM.
1104 */
Damien Miller4e448a32003-05-14 15:11:48 +10001105 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001106 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001107
Damien Millerc756e9b2003-11-17 21:41:42 +11001108 p = fetch_pam_child_environment();
1109 copy_environment(p, &env, &envsize);
1110 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001111
Damien Millerc756e9b2003-11-17 21:41:42 +11001112 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001113 copy_environment(p, &env, &envsize);
1114 free_pam_environment(p);
1115 }
Damien Millerb38eff82000-04-01 11:09:21 +10001116#endif /* USE_PAM */
1117
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001118 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001119 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001120 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001121
1122 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001123 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001124 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001125 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001126 read_environment_file(&env, &envsize, buf);
1127 }
1128 if (debug_flag) {
1129 /* dump the environment */
1130 fprintf(stderr, "Environment:\n");
1131 for (i = 0; env[i]; i++)
1132 fprintf(stderr, " %.200s\n", env[i]);
1133 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001134 return env;
1135}
1136
1137/*
1138 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1139 * first in this order).
1140 */
1141static void
1142do_rc_files(Session *s, const char *shell)
1143{
1144 FILE *f = NULL;
1145 char cmd[1024];
1146 int do_xauth;
1147 struct stat st;
1148
1149 do_xauth =
1150 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1151
1152 /* ignore _PATH_SSH_USER_RC for subsystems */
1153 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1154 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1155 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1156 if (debug_flag)
1157 fprintf(stderr, "Running %s\n", cmd);
1158 f = popen(cmd, "w");
1159 if (f) {
1160 if (do_xauth)
1161 fprintf(f, "%s %s\n", s->auth_proto,
1162 s->auth_data);
1163 pclose(f);
1164 } else
1165 fprintf(stderr, "Could not run %s\n",
1166 _PATH_SSH_USER_RC);
1167 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1168 if (debug_flag)
1169 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1170 _PATH_SSH_SYSTEM_RC);
1171 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1172 if (f) {
1173 if (do_xauth)
1174 fprintf(f, "%s %s\n", s->auth_proto,
1175 s->auth_data);
1176 pclose(f);
1177 } else
1178 fprintf(stderr, "Could not run %s\n",
1179 _PATH_SSH_SYSTEM_RC);
1180 } else if (do_xauth && options.xauth_location != NULL) {
1181 /* Add authority data to .Xauthority if appropriate. */
1182 if (debug_flag) {
1183 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001184 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001185 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001186 fprintf(stderr,
1187 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001188 options.xauth_location, s->auth_display,
1189 s->auth_proto, s->auth_data);
1190 }
1191 snprintf(cmd, sizeof cmd, "%s -q -",
1192 options.xauth_location);
1193 f = popen(cmd, "w");
1194 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001195 fprintf(f, "remove %s\n",
1196 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001197 fprintf(f, "add %s %s %s\n",
1198 s->auth_display, s->auth_proto,
1199 s->auth_data);
1200 pclose(f);
1201 } else {
1202 fprintf(stderr, "Could not run %s\n",
1203 cmd);
1204 }
1205 }
1206}
1207
1208static void
1209do_nologin(struct passwd *pw)
1210{
1211 FILE *f = NULL;
1212 char buf[1024];
1213
1214#ifdef HAVE_LOGIN_CAP
1215 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1216 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1217 _PATH_NOLOGIN), "r");
1218#else
1219 if (pw->pw_uid)
1220 f = fopen(_PATH_NOLOGIN, "r");
1221#endif
1222 if (f) {
1223 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001224 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001225 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001226 while (fgets(buf, sizeof(buf), f))
1227 fputs(buf, stderr);
1228 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001229 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001230 exit(254);
1231 }
1232}
1233
1234/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001235void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001236do_setusercontext(struct passwd *pw)
1237{
Damien Miller1a3ccb02003-02-24 13:04:01 +11001238#ifndef HAVE_CYGWIN
1239 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001240#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001241 {
1242
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001243#ifdef HAVE_SETPCRED
Darren Tucker793e8172003-07-08 21:01:04 +10001244 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1245 fatal("Failed to set process credentials");
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001246#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001247#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001248# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001249 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001250# endif
Damien Millerd3526362004-01-23 14:16:26 +11001251# ifdef USE_PAM
1252 if (options.use_pam) {
1253 do_pam_session();
1254 do_pam_setcred(0);
1255 }
1256# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001257 if (setusercontext(lc, pw, pw->pw_uid,
1258 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1259 perror("unable to set user context");
1260 exit(1);
1261 }
1262#else
1263# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1264 /* Sets login uid for accounting */
1265 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1266 error("setluid: %s", strerror(errno));
1267# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1268
1269 if (setlogin(pw->pw_name) < 0)
1270 error("setlogin failed: %s", strerror(errno));
1271 if (setgid(pw->pw_gid) < 0) {
1272 perror("setgid");
1273 exit(1);
1274 }
1275 /* Initialize the group list. */
1276 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1277 perror("initgroups");
1278 exit(1);
1279 }
1280 endgrent();
1281# ifdef USE_PAM
1282 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001283 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001284 * These will have been wiped by the above initgroups() call.
1285 * Reestablish them here.
1286 */
Damien Miller341c6e62003-09-02 23:18:52 +10001287 if (options.use_pam) {
1288 do_pam_session();
Damien Miller4e448a32003-05-14 15:11:48 +10001289 do_pam_setcred(0);
Damien Miller341c6e62003-09-02 23:18:52 +10001290 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001291# endif /* USE_PAM */
1292# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1293 irix_setusercontext(pw);
1294# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001295# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001296 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001297# endif /* _AIX */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001298 /* Permanently switch to the desired uid. */
1299 permanently_set_uid(pw);
1300#endif
1301 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001302
1303#ifdef HAVE_CYGWIN
1304 if (is_winnt)
1305#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001306 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1307 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1308}
1309
Ben Lindstrom08105192002-03-22 02:50:06 +00001310static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001311do_pwchange(Session *s)
1312{
1313 fprintf(stderr, "WARNING: Your password has expired.\n");
1314 if (s->ttyfd != -1) {
1315 fprintf(stderr,
1316 "You must change your password now and login again!\n");
1317 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
1318 perror("passwd");
1319 } else {
1320 fprintf(stderr,
1321 "Password change required but no TTY available.\n");
1322 }
1323 exit(1);
1324}
1325
1326static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001327launch_login(struct passwd *pw, const char *hostname)
1328{
1329 /* Launch login(1). */
1330
Ben Lindstrom378a4172002-06-07 14:49:56 +00001331 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001332#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001333 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001334#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001335#ifdef LOGIN_NO_ENDOPT
1336 "-p", "-f", pw->pw_name, (char *)NULL);
1337#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001338 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001339#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001340
1341 /* Login couldn't be executed, die. */
1342
1343 perror("login");
1344 exit(1);
1345}
1346
Darren Tucker23bc8d02004-02-06 16:24:31 +11001347static void
1348child_close_fds(void)
1349{
1350 int i;
1351
1352 if (packet_get_connection_in() == packet_get_connection_out())
1353 close(packet_get_connection_in());
1354 else {
1355 close(packet_get_connection_in());
1356 close(packet_get_connection_out());
1357 }
1358 /*
1359 * Close all descriptors related to channels. They will still remain
1360 * open in the parent.
1361 */
1362 /* XXX better use close-on-exec? -markus */
1363 channel_close_all();
1364
1365 /*
1366 * Close any extra file descriptors. Note that there may still be
1367 * descriptors left by system functions. They will be closed later.
1368 */
1369 endpwent();
1370
1371 /*
1372 * Close any extra open file descriptors so that we don\'t have them
1373 * hanging around in clients. Note that we want to do this after
1374 * initgroups, because at least on Solaris 2.3 it leaves file
1375 * descriptors open.
1376 */
1377 for (i = 3; i < 64; i++)
1378 close(i);
1379}
1380
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001381/*
1382 * Performs common processing for the child, such as setting up the
1383 * environment, closing extra file descriptors, setting the user and group
1384 * ids, and executing the command or shell.
1385 */
1386void
1387do_child(Session *s, const char *command)
1388{
1389 extern char **environ;
1390 char **env;
1391 char *argv[10];
1392 const char *shell, *shell0, *hostname = NULL;
1393 struct passwd *pw = s->pw;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001394
1395 /* remove hostkey from the child's memory */
1396 destroy_sensitive_data();
1397
Darren Tucker23bc8d02004-02-06 16:24:31 +11001398 /* Force a password change */
1399 if (s->authctxt->force_pwchange) {
1400 do_setusercontext(pw);
1401 child_close_fds();
1402 do_pwchange(s);
1403 exit(1);
1404 }
1405
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001406 /* login(1) is only called if we execute the login shell */
1407 if (options.use_login && command != NULL)
1408 options.use_login = 0;
1409
Tim Rice81ed5182002-09-25 17:38:46 -07001410#ifdef _UNICOS
1411 cray_setup(pw->pw_uid, pw->pw_name, command);
1412#endif /* _UNICOS */
1413
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001414 /*
1415 * Login(1) does this as well, and it needs uid 0 for the "-h"
1416 * switch, so we let login(1) to this for us.
1417 */
1418 if (!options.use_login) {
1419#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001420 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001421 if (!check_quietlogin(s, command))
1422 do_motd();
1423#else /* HAVE_OSF_SIA */
1424 do_nologin(pw);
1425 do_setusercontext(pw);
1426#endif /* HAVE_OSF_SIA */
1427 }
1428
1429 /*
1430 * Get the shell from the password data. An empty shell field is
1431 * legal, and means /bin/sh.
1432 */
1433 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001434
1435 /*
1436 * Make sure $SHELL points to the shell from the password file,
1437 * even if shell is overridden from login.conf
1438 */
1439 env = do_setup_env(s, shell);
1440
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001441#ifdef HAVE_LOGIN_CAP
1442 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1443#endif
1444
Damien Millerad833b32000-08-23 10:46:23 +10001445 /* we have to stash the hostname before we close our socket. */
1446 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001447 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001448 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001449 /*
1450 * Close the connection descriptors; note that this is the child, and
1451 * the server will still have the socket open, and it is important
1452 * that we do not shutdown it. Note that the descriptors cannot be
1453 * closed before building the environment, as we call
1454 * get_remote_ipaddr there.
1455 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001456 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001457
Damien Millerb38eff82000-04-01 11:09:21 +10001458 /*
Damien Miller05eda432002-02-10 18:32:28 +11001459 * Must take new environment into use so that .ssh/rc,
1460 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001461 */
1462 environ = env;
1463
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001464#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001465 /*
1466 * At this point, we check to see if AFS is active and if we have
1467 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1468 * if we can (and need to) extend the ticket into an AFS token. If
1469 * we don't do this, we run into potential problems if the user's
1470 * home directory is in AFS and it's not world-readable.
1471 */
1472
1473 if (options.kerberos_get_afs_token && k_hasafs() &&
1474 (s->authctxt->krb5_ctx != NULL)) {
1475 char cell[64];
1476
1477 debug("Getting AFS token");
1478
1479 k_setpag();
1480
1481 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1482 krb5_afslog(s->authctxt->krb5_ctx,
1483 s->authctxt->krb5_fwd_ccache, cell, NULL);
1484
1485 krb5_afslog_home(s->authctxt->krb5_ctx,
1486 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1487 }
1488#endif
1489
Damien Miller139d4cd2001-10-10 15:07:44 +10001490 /* Change current directory to the user\'s home directory. */
1491 if (chdir(pw->pw_dir) < 0) {
1492 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1493 pw->pw_dir, strerror(errno));
1494#ifdef HAVE_LOGIN_CAP
1495 if (login_getcapbool(lc, "requirehome", 0))
1496 exit(1);
1497#endif
1498 }
1499
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001500 if (!options.use_login)
1501 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001502
1503 /* restore SIGPIPE for child */
1504 signal(SIGPIPE, SIG_DFL);
1505
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001506 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001507 launch_login(pw, hostname);
1508 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001509 }
1510
1511 /* Get the last component of the shell name. */
1512 if ((shell0 = strrchr(shell, '/')) != NULL)
1513 shell0++;
1514 else
1515 shell0 = shell;
1516
Damien Millerb38eff82000-04-01 11:09:21 +10001517 /*
1518 * If we have no command, execute the shell. In this case, the shell
1519 * name to be passed in argv[0] is preceded by '-' to indicate that
1520 * this is a login shell.
1521 */
1522 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001523 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001524
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001525 /* Start the shell. Set initial character to '-'. */
1526 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001527
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001528 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1529 >= sizeof(argv0) - 1) {
1530 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001531 perror(shell);
1532 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001533 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001534
1535 /* Execute the shell. */
1536 argv[0] = argv0;
1537 argv[1] = NULL;
1538 execve(shell, argv, env);
1539
1540 /* Executing the shell failed. */
1541 perror(shell);
1542 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001543 }
1544 /*
1545 * Execute the command using the user's shell. This uses the -c
1546 * option to execute the command.
1547 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001548 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001549 argv[1] = "-c";
1550 argv[2] = (char *) command;
1551 argv[3] = NULL;
1552 execve(shell, argv, env);
1553 perror(shell);
1554 exit(1);
1555}
1556
1557Session *
1558session_new(void)
1559{
1560 int i;
1561 static int did_init = 0;
1562 if (!did_init) {
1563 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001564 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001565 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001566 }
1567 did_init = 1;
1568 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001569 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001570 Session *s = &sessions[i];
1571 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001572 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001573 s->chanid = -1;
1574 s->ptyfd = -1;
1575 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001576 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001577 s->self = i;
Damien Miller15b29522000-10-14 12:33:48 +11001578 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001579 return s;
1580 }
1581 }
1582 return NULL;
1583}
1584
Ben Lindstrombba81212001-06-25 05:01:22 +00001585static void
Damien Millerb38eff82000-04-01 11:09:21 +10001586session_dump(void)
1587{
1588 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001589 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001590 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001591 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001592 s->used,
1593 s->self,
1594 s,
1595 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001596 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001597 }
1598}
1599
Damien Millerefb4afe2000-04-12 18:45:05 +10001600int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001601session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001602{
1603 Session *s = session_new();
1604 debug("session_open: channel %d", chanid);
1605 if (s == NULL) {
1606 error("no more sessions");
1607 return 0;
1608 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001609 s->authctxt = authctxt;
1610 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001611 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001612 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001613 debug("session_open: session %d: link with channel %d", s->self, chanid);
1614 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001615 return 1;
1616}
1617
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001618Session *
1619session_by_tty(char *tty)
1620{
1621 int i;
1622 for (i = 0; i < MAX_SESSIONS; i++) {
1623 Session *s = &sessions[i];
1624 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1625 debug("session_by_tty: session %d tty %s", i, tty);
1626 return s;
1627 }
1628 }
1629 debug("session_by_tty: unknown tty %.100s", tty);
1630 session_dump();
1631 return NULL;
1632}
1633
Ben Lindstrombba81212001-06-25 05:01:22 +00001634static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001635session_by_channel(int id)
1636{
1637 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001638 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001639 Session *s = &sessions[i];
1640 if (s->used && s->chanid == id) {
1641 debug("session_by_channel: session %d channel %d", i, id);
1642 return s;
1643 }
1644 }
1645 debug("session_by_channel: unknown channel %d", id);
1646 session_dump();
1647 return NULL;
1648}
1649
Ben Lindstrombba81212001-06-25 05:01:22 +00001650static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001651session_by_pid(pid_t pid)
1652{
1653 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001654 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001655 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001656 Session *s = &sessions[i];
1657 if (s->used && s->pid == pid)
1658 return s;
1659 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001660 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001661 session_dump();
1662 return NULL;
1663}
1664
Ben Lindstrombba81212001-06-25 05:01:22 +00001665static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001666session_window_change_req(Session *s)
1667{
1668 s->col = packet_get_int();
1669 s->row = packet_get_int();
1670 s->xpixel = packet_get_int();
1671 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001672 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001673 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1674 return 1;
1675}
1676
Ben Lindstrombba81212001-06-25 05:01:22 +00001677static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001678session_pty_req(Session *s)
1679{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001680 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001681 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001682
Ben Lindstrom49c12602001-06-13 04:37:36 +00001683 if (no_pty_flag) {
1684 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001685 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001686 }
1687 if (s->ttyfd != -1) {
1688 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001689 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001690 }
Ben Lindstromc447fee2002-04-02 20:35:35 +00001691 /* Get the time and hostname when the user last logged in. */
1692 if (options.print_lastlog) {
1693 s->hostname[0] = '\0';
1694 s->last_login_time = get_last_login_time(s->pw->pw_uid,
1695 s->pw->pw_name, s->hostname, sizeof(s->hostname));
1696 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001697
Damien Millerefb4afe2000-04-12 18:45:05 +10001698 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001699
1700 if (compat20) {
1701 s->col = packet_get_int();
1702 s->row = packet_get_int();
1703 } else {
1704 s->row = packet_get_int();
1705 s->col = packet_get_int();
1706 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001707 s->xpixel = packet_get_int();
1708 s->ypixel = packet_get_int();
1709
1710 if (strcmp(s->term, "") == 0) {
1711 xfree(s->term);
1712 s->term = NULL;
1713 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001714
Damien Millerefb4afe2000-04-12 18:45:05 +10001715 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001716 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001717 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001718 if (s->term)
1719 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001720 s->term = NULL;
1721 s->ptyfd = -1;
1722 s->ttyfd = -1;
1723 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001724 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001725 }
1726 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001727
1728 /* for SSH1 the tty modes length is not given */
1729 if (!compat20)
1730 n_bytes = packet_remaining();
1731 tty_parse_modes(s->ttyfd, &n_bytes);
1732
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001733 if (!use_privsep)
1734 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001735
1736 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001737 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1738
Damien Miller48b03fc2002-01-22 23:11:40 +11001739 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001740 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001741 return 1;
1742}
1743
Ben Lindstrombba81212001-06-25 05:01:22 +00001744static int
Damien Millerbd483e72000-04-30 10:00:53 +10001745session_subsystem_req(Session *s)
1746{
Damien Millerae452462001-10-10 15:08:06 +10001747 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001748 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001749 int success = 0;
Damien Millerae452462001-10-10 15:08:06 +10001750 char *cmd, *subsys = packet_get_string(&len);
Damien Millerf6d9e222000-06-18 14:50:44 +10001751 int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001752
Damien Miller48b03fc2002-01-22 23:11:40 +11001753 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10001754 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001755
Damien Millerf6d9e222000-06-18 14:50:44 +10001756 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001757 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1758 cmd = options.subsystem_command[i];
1759 if (stat(cmd, &st) < 0) {
1760 error("subsystem: cannot stat %s: %s", cmd,
1761 strerror(errno));
1762 break;
1763 }
1764 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001765 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001766 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001767 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001768 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001769 }
1770 }
1771
1772 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10001773 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001774 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001775
Damien Millerbd483e72000-04-30 10:00:53 +10001776 xfree(subsys);
1777 return success;
1778}
1779
Ben Lindstrombba81212001-06-25 05:01:22 +00001780static int
Damien Millerbd483e72000-04-30 10:00:53 +10001781session_x11_req(Session *s)
1782{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001783 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001784
1785 s->single_connection = packet_get_char();
1786 s->auth_proto = packet_get_string(NULL);
1787 s->auth_data = packet_get_string(NULL);
1788 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001789 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001790
Ben Lindstrom768176b2001-06-09 01:29:12 +00001791 success = session_setup_x11fwd(s);
1792 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001793 xfree(s->auth_proto);
1794 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001795 s->auth_proto = NULL;
1796 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001797 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001798 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001799}
1800
Ben Lindstrombba81212001-06-25 05:01:22 +00001801static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001802session_shell_req(Session *s)
1803{
Damien Miller48b03fc2002-01-22 23:11:40 +11001804 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001805 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001806 return 1;
1807}
1808
Ben Lindstrombba81212001-06-25 05:01:22 +00001809static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001810session_exec_req(Session *s)
1811{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001812 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001813 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001814 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001815 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001816 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001817 return 1;
1818}
1819
Ben Lindstrombba81212001-06-25 05:01:22 +00001820static int
Damien Miller54c45982003-05-15 10:20:13 +10001821session_break_req(Session *s)
1822{
1823 u_int break_length;
1824
Darren Tucker3bdbd842003-08-13 20:31:05 +10001825 break_length = packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10001826 packet_check_eom();
1827
Darren Tucker3bdbd842003-08-13 20:31:05 +10001828 if (s->ttyfd == -1 ||
1829 tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10001830 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10001831 return 1;
1832}
1833
1834static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001835session_auth_agent_req(Session *s)
1836{
1837 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001838 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001839 if (no_agent_forwarding_flag) {
1840 debug("session_auth_agent_req: no_agent_forwarding_flag");
1841 return 0;
1842 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001843 if (called) {
1844 return 0;
1845 } else {
1846 called = 1;
1847 return auth_input_request_forwarding(s->pw);
1848 }
1849}
1850
Damien Millerc7ef63d2002-02-05 12:21:42 +11001851int
1852session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10001853{
Damien Millerefb4afe2000-04-12 18:45:05 +10001854 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001855 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10001856
Damien Millerc7ef63d2002-02-05 12:21:42 +11001857 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10001858 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11001859 c->self, rtype);
1860 return 0;
1861 }
1862 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001863
1864 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001865 * a session is in LARVAL state until a shell, a command
1866 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001867 */
1868 if (c->type == SSH_CHANNEL_LARVAL) {
1869 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001870 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001871 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001872 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001873 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10001874 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001875 } else if (strcmp(rtype, "x11-req") == 0) {
1876 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001877 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1878 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001879 } else if (strcmp(rtype, "subsystem") == 0) {
1880 success = session_subsystem_req(s);
Damien Miller54c45982003-05-15 10:20:13 +10001881 } else if (strcmp(rtype, "break") == 0) {
1882 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001883 }
1884 }
1885 if (strcmp(rtype, "window-change") == 0) {
1886 success = session_window_change_req(s);
1887 }
Damien Millerc7ef63d2002-02-05 12:21:42 +11001888 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10001889}
1890
1891void
1892session_set_fds(Session *s, int fdin, int fdout, int fderr)
1893{
1894 if (!compat20)
1895 fatal("session_set_fds: called for proto != 2.0");
1896 /*
1897 * now that have a child and a pipe to the child,
1898 * we can activate our channel and register the fd's
1899 */
1900 if (s->chanid == -1)
1901 fatal("no channel for session %d", s->self);
1902 channel_set_fds(s->chanid,
1903 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11001904 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11001905 1,
1906 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10001907}
1908
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001909/*
1910 * Function to perform pty cleanup. Also called if we get aborted abnormally
1911 * (e.g., due to a dropped connection).
1912 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001913void
Darren Tucker3e33cec2003-10-02 16:12:36 +10001914session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10001915{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001916 if (s == NULL) {
1917 error("session_pty_cleanup: no session");
1918 return;
1919 }
1920 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10001921 return;
1922
Kevin Steves43cdef32001-02-11 14:12:08 +00001923 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001924
Damien Millerb38eff82000-04-01 11:09:21 +10001925 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001926 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08001927 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001928
1929 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001930 if (getuid() == 0)
1931 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001932
1933 /*
1934 * Close the server side of the socket pairs. We must do this after
1935 * the pty cleanup, so that another process doesn't get this pty
1936 * while we're still cleaning up.
1937 */
1938 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001939 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10001940
1941 /* unlink pty from session */
1942 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001943}
Damien Millerefb4afe2000-04-12 18:45:05 +10001944
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001945void
Darren Tucker3e33cec2003-10-02 16:12:36 +10001946session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001947{
Darren Tucker3e33cec2003-10-02 16:12:36 +10001948 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001949}
1950
Damien Miller5a80bba2002-09-04 16:39:02 +10001951static char *
1952sig2name(int sig)
1953{
1954#define SSH_SIG(x) if (sig == SIG ## x) return #x
1955 SSH_SIG(ABRT);
1956 SSH_SIG(ALRM);
1957 SSH_SIG(FPE);
1958 SSH_SIG(HUP);
1959 SSH_SIG(ILL);
1960 SSH_SIG(INT);
1961 SSH_SIG(KILL);
1962 SSH_SIG(PIPE);
1963 SSH_SIG(QUIT);
1964 SSH_SIG(SEGV);
1965 SSH_SIG(TERM);
1966 SSH_SIG(USR1);
1967 SSH_SIG(USR2);
1968#undef SSH_SIG
1969 return "SIG@openssh.com";
1970}
1971
Ben Lindstrombba81212001-06-25 05:01:22 +00001972static void
Damien Millerefb4afe2000-04-12 18:45:05 +10001973session_exit_message(Session *s, int status)
1974{
1975 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001976
1977 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001978 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10001979 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00001980 debug("session_exit_message: session %d channel %d pid %ld",
1981 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001982
1983 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001984 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10001985 packet_put_int(WEXITSTATUS(status));
1986 packet_send();
1987 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11001988 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10001989 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001990#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10001991 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10001992#else /* WCOREDUMP */
1993 packet_put_char(0);
1994#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10001995 packet_put_cstring("");
1996 packet_put_cstring("");
1997 packet_send();
1998 } else {
1999 /* Some weird exit cause. Just exit. */
2000 packet_disconnect("wait returned status %04x.", status);
2001 }
2002
2003 /* disconnect channel */
2004 debug("session_exit_message: release channel %d", s->chanid);
2005 channel_cancel_cleanup(s->chanid);
Damien Miller166fca82000-04-20 07:42:21 +10002006 /*
2007 * emulate a write failure with 'chan_write_failed', nobody will be
2008 * interested in data we write.
2009 * Note that we must not call 'chan_read_failed', since there could
2010 * be some more data waiting in the pipe.
2011 */
Damien Millerbd483e72000-04-30 10:00:53 +10002012 if (c->ostate != CHAN_OUTPUT_CLOSED)
2013 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002014 s->chanid = -1;
2015}
2016
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002017void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002018session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002019{
Ben Lindstromce0f6342002-06-11 16:42:49 +00002020 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002021 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002022 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002023 if (s->term)
2024 xfree(s->term);
2025 if (s->display)
2026 xfree(s->display);
Damien Miller512bccb2002-02-05 12:11:02 +11002027 if (s->auth_display)
2028 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002029 if (s->auth_data)
2030 xfree(s->auth_data);
2031 if (s->auth_proto)
2032 xfree(s->auth_proto);
2033 s->used = 0;
Damien Millere247cc42000-05-07 12:03:14 +10002034 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002035}
2036
2037void
2038session_close_by_pid(pid_t pid, int status)
2039{
2040 Session *s = session_by_pid(pid);
2041 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002042 debug("session_close_by_pid: no session for pid %ld",
2043 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002044 return;
2045 }
2046 if (s->chanid != -1)
2047 session_exit_message(s, status);
2048 session_close(s);
2049}
2050
2051/*
2052 * this is called when a channel dies before
2053 * the session 'child' itself dies
2054 */
2055void
2056session_close_by_channel(int id, void *arg)
2057{
2058 Session *s = session_by_channel(id);
2059 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002060 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002061 return;
2062 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002063 debug("session_close_by_channel: channel %d child %ld",
2064 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002065 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002066 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002067 /*
2068 * delay detach of session, but release pty, since
2069 * the fd's to the child are already closed
2070 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002071 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002072 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002073 return;
2074 }
2075 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002076 channel_cancel_cleanup(s->chanid);
2077 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002078 session_close(s);
2079}
2080
2081void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002082session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002083{
2084 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002085 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002086 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002087 if (s->used) {
2088 if (closefunc != NULL)
2089 closefunc(s);
2090 else
2091 session_close(s);
2092 }
Damien Miller52b77be2001-10-10 15:14:37 +10002093 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002094}
2095
Ben Lindstrombba81212001-06-25 05:01:22 +00002096static char *
Damien Millere247cc42000-05-07 12:03:14 +10002097session_tty_list(void)
2098{
2099 static char buf[1024];
2100 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002101 char *cp;
2102
Damien Millere247cc42000-05-07 12:03:14 +10002103 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002104 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002105 Session *s = &sessions[i];
2106 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002107
Damien Millera8ed44b2003-01-10 09:53:12 +11002108 if (strncmp(s->tty, "/dev/", 5) != 0) {
2109 cp = strrchr(s->tty, '/');
2110 cp = (cp == NULL) ? s->tty : cp + 1;
2111 } else
2112 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002113
Damien Millere247cc42000-05-07 12:03:14 +10002114 if (buf[0] != '\0')
2115 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002116 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002117 }
2118 }
2119 if (buf[0] == '\0')
2120 strlcpy(buf, "notty", sizeof buf);
2121 return buf;
2122}
2123
2124void
2125session_proctitle(Session *s)
2126{
2127 if (s->pw == NULL)
2128 error("no user for session %d", s->self);
2129 else
2130 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2131}
2132
Ben Lindstrom768176b2001-06-09 01:29:12 +00002133int
2134session_setup_x11fwd(Session *s)
2135{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002136 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002137 char display[512], auth_display[512];
2138 char hostname[MAXHOSTNAMELEN];
Ben Lindstrom768176b2001-06-09 01:29:12 +00002139
2140 if (no_x11_forwarding_flag) {
2141 packet_send_debug("X11 forwarding disabled in user configuration file.");
2142 return 0;
2143 }
2144 if (!options.x11_forwarding) {
2145 debug("X11 forwarding disabled in server configuration file.");
2146 return 0;
2147 }
2148 if (!options.xauth_location ||
2149 (stat(options.xauth_location, &st) == -1)) {
2150 packet_send_debug("No xauth program; cannot forward with spoofing.");
2151 return 0;
2152 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002153 if (options.use_login) {
2154 packet_send_debug("X11 forwarding disabled; "
2155 "not compatible with UseLogin=yes.");
2156 return 0;
2157 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002158 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002159 debug("X11 display already set.");
2160 return 0;
2161 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002162 if (x11_create_display_inet(options.x11_display_offset,
2163 options.x11_use_localhost, s->single_connection,
2164 &s->display_number) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002165 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002166 return 0;
2167 }
Kevin Steves366298c2001-12-19 17:58:01 +00002168
2169 /* Set up a suitable value for the DISPLAY variable. */
2170 if (gethostname(hostname, sizeof(hostname)) < 0)
2171 fatal("gethostname: %.100s", strerror(errno));
2172 /*
2173 * auth_display must be used as the displayname when the
2174 * authorization entry is added with xauth(1). This will be
2175 * different than the DISPLAY string for localhost displays.
2176 */
Damien Miller95c249f2002-02-05 12:11:34 +11002177 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002178 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002179 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002180 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002181 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002182 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002183 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002184 } else {
2185#ifdef IPADDR_IN_DISPLAY
2186 struct hostent *he;
2187 struct in_addr my_addr;
2188
2189 he = gethostbyname(hostname);
2190 if (he == NULL) {
2191 error("Can't get IP address for X11 DISPLAY.");
2192 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2193 return 0;
2194 }
2195 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002196 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002197 s->display_number, s->screen);
2198#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002199 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002200 s->display_number, s->screen);
2201#endif
2202 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002203 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002204 }
2205
Ben Lindstrom768176b2001-06-09 01:29:12 +00002206 return 1;
2207}
2208
Ben Lindstrombba81212001-06-25 05:01:22 +00002209static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002210do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002211{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002212 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002213}
2214
2215void
2216do_cleanup(Authctxt *authctxt)
2217{
2218 static int called = 0;
2219
2220 debug("do_cleanup");
2221
2222 /* no cleanup if we're in the child for login shell */
2223 if (is_child)
2224 return;
2225
2226 /* avoid double cleanup */
2227 if (called)
2228 return;
2229 called = 1;
2230
2231 if (authctxt == NULL)
2232 return;
2233#ifdef KRB5
2234 if (options.kerberos_ticket_cleanup &&
2235 authctxt->krb5_ctx)
2236 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002237#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002238
2239#ifdef GSSAPI
2240 if (compat20 && options.gss_cleanup_creds)
2241 ssh_gssapi_cleanup_creds();
2242#endif
2243
Darren Tucker8846a072003-10-07 11:30:15 +10002244#ifdef USE_PAM
2245 if (options.use_pam) {
2246 sshpam_cleanup();
2247 sshpam_thread_cleanup();
2248 }
2249#endif
2250
Darren Tucker3e33cec2003-10-02 16:12:36 +10002251 /* remove agent socket */
2252 auth_sock_cleanup_proc(authctxt->pw);
2253
2254 /*
2255 * Cleanup ptys/utmp only if privsep is disabled,
2256 * or if running in monitor.
2257 */
2258 if (!use_privsep || mm_is_monitor())
2259 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002260}