blob: 6844720d410d97f5ea58ba9585597e3089b4834b [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 Tucker5cb30ad2004-08-12 22:40:24 +100036RCSID("$OpenBSD: session.c,v 1.180 2004/07/28 09:40:29 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"
Darren Tucker46bc0752004-05-02 22:11:30 +100045#include "match.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{
Darren Tucker09991742004-07-17 17:05:14 +1000199 if (buffer_len(&loginmsg) > 0) {
200 buffer_append(&loginmsg, "\0", 1);
201 printf("%s", (char *)buffer_ptr(&loginmsg));
202 buffer_clear(&loginmsg);
203 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100204}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000205
Ben Lindstromb31783d2001-03-22 02:02:12 +0000206void
207do_authenticated(Authctxt *authctxt)
208{
Damien Miller97f39ae2003-02-24 11:57:01 +1100209 setproctitle("%s", authctxt->pw->pw_name);
210
Ben Lindstromb31783d2001-03-22 02:02:12 +0000211 /*
212 * Cancel the alarm we set to limit the time taken for
213 * authentication.
214 */
215 alarm(0);
216 if (startup_pipe != -1) {
217 close(startup_pipe);
218 startup_pipe = -1;
219 }
Ben Lindstromb31783d2001-03-22 02:02:12 +0000220 /* setup the channel layer */
221 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
222 channel_permit_all_opens();
223
224 if (compat20)
225 do_authenticated2(authctxt);
226 else
227 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000228
Darren Tucker3e33cec2003-10-02 16:12:36 +1000229 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000230}
231
Damien Millerb38eff82000-04-01 11:09:21 +1000232/*
Damien Millerb38eff82000-04-01 11:09:21 +1000233 * Prepares for an interactive session. This is called after the user has
234 * been successfully authenticated. During this message exchange, pseudo
235 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
236 * are requested, etc.
237 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000238static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000239do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000240{
241 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000242 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100243 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000244 int enable_compression_after_reply = 0;
245 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000246
247 s = session_new();
Ben Lindstromec95ed92001-07-04 04:21:14 +0000248 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000249 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000250
Damien Millerb38eff82000-04-01 11:09:21 +1000251 /*
252 * We stay in this loop until the client requests to execute a shell
253 * or a command.
254 */
255 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000256 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000257
258 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100259 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000260
261 /* Process the packet. */
262 switch (type) {
263 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000264 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100265 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000266 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000267 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100268 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000269 break;
270 }
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000271 if (!options.compression) {
272 debug2("compression disabled");
273 break;
274 }
Damien Millerb38eff82000-04-01 11:09:21 +1000275 /* Enable compression after we have responded with SUCCESS. */
276 enable_compression_after_reply = 1;
277 success = 1;
278 break;
279
280 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000281 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000282 break;
283
284 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000285 s->auth_proto = packet_get_string(&proto_len);
286 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000287
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000288 screen_flag = packet_get_protocol_flags() &
289 SSH_PROTOFLAG_SCREEN_NUMBER;
290 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
291
292 if (packet_remaining() == 4) {
293 if (!screen_flag)
294 debug2("Buggy client: "
295 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000296 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000297 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000298 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000299 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100300 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000301 success = session_setup_x11fwd(s);
302 if (!success) {
303 xfree(s->auth_proto);
304 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000305 s->auth_proto = NULL;
306 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000307 }
Damien Millerb38eff82000-04-01 11:09:21 +1000308 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000309
310 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
311 if (no_agent_forwarding_flag || compat13) {
312 debug("Authentication agent forwarding not permitted for this authentication.");
313 break;
314 }
315 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000316 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000317 break;
318
319 case SSH_CMSG_PORT_FORWARD_REQUEST:
320 if (no_port_forwarding_flag) {
321 debug("Port forwarding not permitted for this authentication.");
322 break;
323 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100324 if (!options.allow_tcp_forwarding) {
325 debug("Port forwarding not permitted.");
326 break;
327 }
Damien Millerb38eff82000-04-01 11:09:21 +1000328 debug("Received TCP/IP port forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000329 channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
Damien Millerb38eff82000-04-01 11:09:21 +1000330 success = 1;
331 break;
332
333 case SSH_CMSG_MAX_PACKET_SIZE:
334 if (packet_set_maxsize(packet_get_int()) > 0)
335 success = 1;
336 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100337
Damien Millerb38eff82000-04-01 11:09:21 +1000338 case SSH_CMSG_EXEC_SHELL:
339 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000340 if (type == SSH_CMSG_EXEC_CMD) {
341 command = packet_get_string(&dlen);
342 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000343 do_exec(s, command);
344 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000345 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000346 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000347 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100348 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000349 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000350 return;
351
352 default:
353 /*
354 * Any unknown messages in this phase are ignored,
355 * and a failure message is returned.
356 */
Damien Miller996acd22003-04-09 20:59:48 +1000357 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000358 }
359 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
360 packet_send();
361 packet_write_wait();
362
363 /* Enable compression now that we have replied if appropriate. */
364 if (enable_compression_after_reply) {
365 enable_compression_after_reply = 0;
366 packet_start_compression(compression_level);
367 }
368 }
369}
370
371/*
372 * This is called to fork and execute a command when we have no tty. This
373 * will call do_child from the child, and server_loop from the parent after
374 * setting up file descriptors and such.
375 */
Damien Miller4af51302000-04-16 11:18:38 +1000376void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000377do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000378{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000379 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000380
381#ifdef USE_PIPES
382 int pin[2], pout[2], perr[2];
383 /* Allocate pipes for communicating with the program. */
384 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
385 packet_disconnect("Could not create pipes: %.100s",
386 strerror(errno));
387#else /* USE_PIPES */
388 int inout[2], err[2];
389 /* Uses socket pairs to communicate with the program. */
390 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
391 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
392 packet_disconnect("Could not create socket pairs: %.100s",
393 strerror(errno));
394#endif /* USE_PIPES */
395 if (s == NULL)
396 fatal("do_exec_no_pty: no session");
397
Damien Millere247cc42000-05-07 12:03:14 +1000398 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000399
Damien Millerc5946332001-02-28 11:46:11 +1100400#if defined(USE_PAM)
Darren Tucker1825f262004-02-24 00:01:27 +1100401 if (options.use_pam && !use_privsep)
Damien Miller4e448a32003-05-14 15:11:48 +1000402 do_pam_setcred(1);
Kevin Stevesff793a22001-02-21 16:36:51 +0000403#endif /* USE_PAM */
404
Damien Millerb38eff82000-04-01 11:09:21 +1000405 /* Fork the child. */
406 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000407 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000408
Damien Millerb38eff82000-04-01 11:09:21 +1000409 /* Child. Reinitialize the log since the pid has changed. */
410 log_init(__progname, options.log_level, options.log_facility, log_stderr);
411
412 /*
413 * Create a new session and process group since the 4.4BSD
414 * setlogin() affects the entire process group.
415 */
416 if (setsid() < 0)
417 error("setsid failed: %.100s", strerror(errno));
418
419#ifdef USE_PIPES
420 /*
421 * Redirect stdin. We close the parent side of the socket
422 * pair, and make the child side the standard input.
423 */
424 close(pin[1]);
425 if (dup2(pin[0], 0) < 0)
426 perror("dup2 stdin");
427 close(pin[0]);
428
429 /* Redirect stdout. */
430 close(pout[0]);
431 if (dup2(pout[1], 1) < 0)
432 perror("dup2 stdout");
433 close(pout[1]);
434
435 /* Redirect stderr. */
436 close(perr[0]);
437 if (dup2(perr[1], 2) < 0)
438 perror("dup2 stderr");
439 close(perr[1]);
440#else /* USE_PIPES */
441 /*
442 * Redirect stdin, stdout, and stderr. Stdin and stdout will
443 * use the same socket, as some programs (particularly rdist)
444 * seem to depend on it.
445 */
446 close(inout[1]);
447 close(err[1]);
448 if (dup2(inout[0], 0) < 0) /* stdin */
449 perror("dup2 stdin");
450 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
451 perror("dup2 stdout");
452 if (dup2(err[0], 2) < 0) /* stderr */
453 perror("dup2 stderr");
454#endif /* USE_PIPES */
455
Tim Rice81ed5182002-09-25 17:38:46 -0700456#ifdef _UNICOS
457 cray_init_job(s->pw); /* set up cray jid and tmpdir */
458#endif
459
Damien Millerb38eff82000-04-01 11:09:21 +1000460 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000461 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000462 /* NOTREACHED */
463 }
Tim Rice81ed5182002-09-25 17:38:46 -0700464#ifdef _UNICOS
465 signal(WJSIGNAL, cray_job_termination_handler);
466#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100467#ifdef HAVE_CYGWIN
468 if (is_winnt)
469 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
470#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000471 if (pid < 0)
472 packet_disconnect("fork failed: %.100s", strerror(errno));
473 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000474 /* Set interactive/non-interactive mode. */
475 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000476#ifdef USE_PIPES
477 /* We are the parent. Close the child sides of the pipes. */
478 close(pin[0]);
479 close(pout[1]);
480 close(perr[1]);
481
Damien Millerefb4afe2000-04-12 18:45:05 +1000482 if (compat20) {
Darren Tucker723e9452004-06-22 12:57:08 +1000483 if (s->is_subsystem) {
484 close(perr[0]);
485 perr[0] = -1;
486 }
487 session_set_fds(s, pin[1], pout[0], perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000488 } else {
489 /* Enter the interactive session. */
490 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000491 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000492 }
Damien Millerb38eff82000-04-01 11:09:21 +1000493#else /* USE_PIPES */
494 /* We are the parent. Close the child sides of the socket pairs. */
495 close(inout[0]);
496 close(err[0]);
497
498 /*
Darren Tuckerb3850592004-03-27 16:44:21 +1100499 * Clear loginmsg, since it's the child's responsibility to display
500 * it to the user, otherwise multiple sessions may accumulate
501 * multiple copies of the login messages.
502 */
503 buffer_clear(&loginmsg);
504
505 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000506 * Enter the interactive session. Note: server_loop must be able to
507 * handle the case that fdin and fdout are the same.
508 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000509 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000510 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000511 } else {
512 server_loop(pid, inout[1], inout[1], err[1]);
513 /* server_loop has closed inout[1] and err[1]. */
514 }
Damien Millerb38eff82000-04-01 11:09:21 +1000515#endif /* USE_PIPES */
516}
517
518/*
519 * This is called to fork and execute a command when we have a tty. This
520 * will call do_child from the child, and server_loop from the parent after
521 * setting up file descriptors, controlling tty, updating wtmp, utmp,
522 * lastlog, and other such operations.
523 */
Damien Miller4af51302000-04-16 11:18:38 +1000524void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000525do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000526{
Damien Millerb38eff82000-04-01 11:09:21 +1000527 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000528 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000529
530 if (s == NULL)
531 fatal("do_exec_pty: no session");
532 ptyfd = s->ptyfd;
533 ttyfd = s->ttyfd;
534
Damien Millerc5946332001-02-28 11:46:11 +1100535#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000536 if (options.use_pam) {
Damien Miller341c6e62003-09-02 23:18:52 +1000537 do_pam_set_tty(s->tty);
Darren Tuckeref3a4a22004-02-06 15:30:50 +1100538 if (!use_privsep)
539 do_pam_setcred(1);
Damien Miller4e448a32003-05-14 15:11:48 +1000540 }
Damien Miller5a761312001-02-27 09:28:23 +1100541#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000542
Damien Millerb38eff82000-04-01 11:09:21 +1000543 /* Fork the child. */
544 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000545 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000546
Damien Miller942da032000-08-18 13:59:06 +1000547 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000548 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000549 /* Close the master side of the pseudo tty. */
550 close(ptyfd);
551
552 /* Make the pseudo tty our controlling tty. */
553 pty_make_controlling_tty(&ttyfd, s->tty);
554
Damien Miller9c751422001-10-10 15:02:46 +1000555 /* Redirect stdin/stdout/stderr from the pseudo tty. */
556 if (dup2(ttyfd, 0) < 0)
557 error("dup2 stdin: %s", strerror(errno));
558 if (dup2(ttyfd, 1) < 0)
559 error("dup2 stdout: %s", strerror(errno));
560 if (dup2(ttyfd, 2) < 0)
561 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000562
563 /* Close the extra descriptor for the pseudo tty. */
564 close(ttyfd);
565
Damien Miller942da032000-08-18 13:59:06 +1000566 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000567#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700568 if (!(options.use_login && command == NULL)) {
569#ifdef _UNICOS
570 cray_init_job(s->pw); /* set up cray jid and tmpdir */
571#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100572 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700573 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000574# ifdef LOGIN_NEEDS_UTMPX
575 else
576 do_pre_login(s);
577# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000578#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000579
Damien Millerb38eff82000-04-01 11:09:21 +1000580 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000581 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000582 /* NOTREACHED */
583 }
Tim Rice81ed5182002-09-25 17:38:46 -0700584#ifdef _UNICOS
585 signal(WJSIGNAL, cray_job_termination_handler);
586#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100587#ifdef HAVE_CYGWIN
588 if (is_winnt)
589 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
590#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000591 if (pid < 0)
592 packet_disconnect("fork failed: %.100s", strerror(errno));
593 s->pid = pid;
594
595 /* Parent. Close the slave side of the pseudo tty. */
596 close(ttyfd);
597
598 /*
599 * Create another descriptor of the pty master side for use as the
600 * standard input. We could use the original descriptor, but this
601 * simplifies code in server_loop. The descriptor is bidirectional.
602 */
603 fdout = dup(ptyfd);
604 if (fdout < 0)
605 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
606
607 /* we keep a reference to the pty master */
608 ptymaster = dup(ptyfd);
609 if (ptymaster < 0)
610 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
611 s->ptymaster = ptymaster;
612
613 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000614 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000615 if (compat20) {
616 session_set_fds(s, ptyfd, fdout, -1);
617 } else {
618 server_loop(pid, ptyfd, fdout, -1);
619 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000620 }
Damien Millerb38eff82000-04-01 11:09:21 +1000621}
622
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000623#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000624static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000625do_pre_login(Session *s)
626{
627 socklen_t fromlen;
628 struct sockaddr_storage from;
629 pid_t pid = getpid();
630
631 /*
632 * Get IP address of client. If the connection is not a socket, let
633 * the address be 0.0.0.0.
634 */
635 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000636 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000637 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000638 if (getpeername(packet_get_connection_in(),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100639 (struct sockaddr *) & from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000640 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000641 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000642 }
643 }
644
645 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000646 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000647 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000648}
649#endif
650
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000651/*
652 * This is called to fork and execute a command. If another command is
653 * to be forced, execute that instead.
654 */
655void
656do_exec(Session *s, const char *command)
657{
658 if (forced_command) {
659 original_command = command;
660 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000661 debug("Forced command '%.900s'", command);
662 }
663
Damien Miller324948b2003-09-02 22:55:45 +1000664#ifdef GSSAPI
665 if (options.gss_authentication) {
666 temporarily_use_uid(s->pw);
667 ssh_gssapi_storecreds();
668 restore_uid();
669 }
670#endif
671
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000672 if (s->ttyfd != -1)
673 do_exec_pty(s, command);
674 else
675 do_exec_no_pty(s, command);
676
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000677 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000678
Darren Tucker09991742004-07-17 17:05:14 +1000679 /*
680 * Clear loginmsg: it's the child's responsibility to display
681 * it to the user, otherwise multiple sessions may accumulate
682 * multiple copies of the login messages.
683 */
684 buffer_clear(&loginmsg);
685}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000686
Damien Miller942da032000-08-18 13:59:06 +1000687/* administrative, login(1)-like work */
688void
Damien Miller69b69aa2000-10-28 14:19:58 +1100689do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000690{
Damien Miller942da032000-08-18 13:59:06 +1000691 socklen_t fromlen;
692 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000693 struct passwd * pw = s->pw;
694 pid_t pid = getpid();
695
696 /*
697 * Get IP address of client. If the connection is not a socket, let
698 * the address be 0.0.0.0.
699 */
700 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000701 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000702 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000703 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000704 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000705 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000706 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000707 }
708 }
709
710 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000711 if (!use_privsep)
712 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
713 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000714 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000715 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000716
Kevin Steves092f2ef2000-10-14 13:36:13 +0000717#ifdef USE_PAM
718 /*
719 * If password change is needed, do it now.
720 * This needs to occur before the ~/.hushlogin check.
721 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100722 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
723 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000724 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100725 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000726 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000727 }
728#endif
729
Damien Millercf205e82001-04-16 18:29:15 +1000730 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000731 return;
732
Darren Tucker1921ed92004-02-10 13:23:28 +1100733 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000734
Damien Millercf205e82001-04-16 18:29:15 +1000735 do_motd();
736}
737
738/*
739 * Display the message of the day.
740 */
741void
742do_motd(void)
743{
744 FILE *f;
745 char buf[256];
746
Damien Miller942da032000-08-18 13:59:06 +1000747 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000748#ifdef HAVE_LOGIN_CAP
749 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
750 "/etc/motd"), "r");
751#else
Damien Miller942da032000-08-18 13:59:06 +1000752 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000753#endif
Damien Miller942da032000-08-18 13:59:06 +1000754 if (f) {
755 while (fgets(buf, sizeof(buf), f))
756 fputs(buf, stdout);
757 fclose(f);
758 }
759 }
760}
761
Kevin Steves8f63caa2001-07-04 18:23:02 +0000762
763/*
764 * Check for quiet login, either .hushlogin or command given.
765 */
766int
767check_quietlogin(Session *s, const char *command)
768{
769 char buf[256];
770 struct passwd *pw = s->pw;
771 struct stat st;
772
773 /* Return 1 if .hushlogin exists or a command given. */
774 if (command != NULL)
775 return 1;
776 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
777#ifdef HAVE_LOGIN_CAP
778 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
779 return 1;
780#else
781 if (stat(buf, &st) >= 0)
782 return 1;
783#endif
784 return 0;
785}
786
Damien Millerb38eff82000-04-01 11:09:21 +1000787/*
788 * Sets the value of the given variable in the environment. If the variable
789 * already exists, its value is overriden.
790 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000791void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000792child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100793 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000794{
Damien Millerb38eff82000-04-01 11:09:21 +1000795 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000796 u_int envsize;
797 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000798
799 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000800 * If we're passed an uninitialized list, allocate a single null
801 * entry before continuing.
802 */
803 if (*envp == NULL && *envsizep == 0) {
804 *envp = xmalloc(sizeof(char *));
805 *envp[0] = NULL;
806 *envsizep = 1;
807 }
808
809 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000810 * Find the slot where the value should be stored. If the variable
811 * already exists, we reuse the slot; otherwise we append a new slot
812 * at the end of the array, expanding if necessary.
813 */
814 env = *envp;
815 namelen = strlen(name);
816 for (i = 0; env[i]; i++)
817 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
818 break;
819 if (env[i]) {
820 /* Reuse the slot. */
821 xfree(env[i]);
822 } else {
823 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000824 envsize = *envsizep;
825 if (i >= envsize - 1) {
826 if (envsize >= 1000)
827 fatal("child_set_env: too many env vars");
828 envsize += 50;
829 env = (*envp) = xrealloc(env, envsize * sizeof(char *));
830 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000831 }
832 /* Need to set the NULL pointer at end of array beyond the new slot. */
833 env[i + 1] = NULL;
834 }
835
836 /* Allocate space and format the variable in the appropriate slot. */
837 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
838 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
839}
840
841/*
842 * Reads environment variables from the given file and adds/overrides them
843 * into the environment. If the file does not exist, this does nothing.
844 * Otherwise, it must consist of empty lines, comments (line starts with '#')
845 * and assignments of the form name=value. No other forms are allowed.
846 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000847static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000848read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100849 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000850{
851 FILE *f;
852 char buf[4096];
853 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000854 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000855
856 f = fopen(filename, "r");
857 if (!f)
858 return;
859
860 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000861 if (++lineno > 1000)
862 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000863 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
864 ;
865 if (!*cp || *cp == '#' || *cp == '\n')
866 continue;
867 if (strchr(cp, '\n'))
868 *strchr(cp, '\n') = '\0';
869 value = strchr(cp, '=');
870 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000871 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
872 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000873 continue;
874 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000875 /*
876 * Replace the equals sign by nul, and advance value to
877 * the value string.
878 */
Damien Millerb38eff82000-04-01 11:09:21 +1000879 *value = '\0';
880 value++;
881 child_set_env(env, envsize, cp, value);
882 }
883 fclose(f);
884}
885
Darren Tuckere1a790d2003-09-16 11:52:19 +1000886#ifdef HAVE_ETC_DEFAULT_LOGIN
887/*
888 * Return named variable from specified environment, or NULL if not present.
889 */
890static char *
891child_get_env(char **env, const char *name)
892{
893 int i;
894 size_t len;
895
896 len = strlen(name);
897 for (i=0; env[i] != NULL; i++)
898 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
899 return(env[i] + len + 1);
900 return NULL;
901}
902
903/*
904 * Read /etc/default/login.
905 * We pick up the PATH (or SUPATH for root) and UMASK.
906 */
907static void
908read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
909{
910 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000911 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +1000912 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000913
914 /*
915 * We don't want to copy the whole file to the child's environment,
916 * so we use a temporary environment and copy the variables we're
917 * interested in.
918 */
919 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
920
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000921 if (tmpenv == NULL)
922 return;
923
Darren Tuckere1a790d2003-09-16 11:52:19 +1000924 if (uid == 0)
925 var = child_get_env(tmpenv, "SUPATH");
926 else
927 var = child_get_env(tmpenv, "PATH");
928 if (var != NULL)
929 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +1100930
Darren Tuckere1a790d2003-09-16 11:52:19 +1000931 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
932 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +1000933 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +1100934
Darren Tuckere1a790d2003-09-16 11:52:19 +1000935 for (i = 0; tmpenv[i] != NULL; i++)
936 xfree(tmpenv[i]);
937 xfree(tmpenv);
938}
939#endif /* HAVE_ETC_DEFAULT_LOGIN */
940
Damien Millerbb9ffc12002-01-08 10:59:32 +1100941void copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000942{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100943 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000944 int i;
945
Damien Millerbb9ffc12002-01-08 10:59:32 +1100946 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000947 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000948
Damien Millerbb9ffc12002-01-08 10:59:32 +1100949 for(i = 0; source[i] != NULL; i++) {
950 var_name = xstrdup(source[i]);
951 if ((var_val = strstr(var_name, "=")) == NULL) {
952 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000953 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000954 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100955 *var_val++ = '\0';
956
957 debug3("Copy environment: %s=%s", var_name, var_val);
958 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +1100959
Damien Millerbb9ffc12002-01-08 10:59:32 +1100960 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000961 }
962}
Damien Millercb5e44a2000-09-29 12:12:36 +1100963
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000964static char **
965do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000966{
Damien Millerb38eff82000-04-01 11:09:21 +1000967 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000968 u_int i, envsize;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000969 char **env, *laddr, *path = NULL;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000970 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +1000971
Damien Millerb38eff82000-04-01 11:09:21 +1000972 /* Initialize the environment. */
973 envsize = 100;
974 env = xmalloc(envsize * sizeof(char *));
975 env[0] = NULL;
976
Damien Millerbac2d8a2000-09-05 16:13:06 +1100977#ifdef HAVE_CYGWIN
978 /*
979 * The Windows environment contains some setting which are
980 * important for a running system. They must not be dropped.
981 */
Darren Tucker14c372d2004-08-30 20:42:08 +1000982 {
983 char **p;
984
985 p = fetch_windows_environment();
986 copy_environment(p, &env, &envsize);
987 free_windows_environment(p);
988 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100989#endif
990
Darren Tucker0efd1552003-08-26 11:49:55 +1000991#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +1100992 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +1000993 * the childs environment as they see fit
994 */
995 ssh_gssapi_do_child(&env, &envsize);
996#endif
997
Damien Millerb38eff82000-04-01 11:09:21 +1000998 if (!options.use_login) {
999 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001000 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001001 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001002 s->env[i].val);
1003
Damien Millerb38eff82000-04-01 11:09:21 +10001004 child_set_env(&env, &envsize, "USER", pw->pw_name);
1005 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001006#ifdef _AIX
1007 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1008#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001009 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001010#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001011 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1012 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1013 else
1014 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001015#else /* HAVE_LOGIN_CAP */
1016# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001017 /*
1018 * There's no standard path on Windows. The path contains
1019 * important components pointing to the system directories,
1020 * needed for loading shared libraries. So the path better
1021 * remains intact here.
1022 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001023# ifdef HAVE_ETC_DEFAULT_LOGIN
1024 read_etc_default_login(&env, &envsize, pw->pw_uid);
1025 path = child_get_env(env, "PATH");
1026# endif /* HAVE_ETC_DEFAULT_LOGIN */
1027 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001028 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001029 s->pw->pw_uid == 0 ?
1030 SUPERUSER_PATH : _PATH_STDPATH);
1031 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001032# endif /* HAVE_CYGWIN */
1033#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001034
1035 snprintf(buf, sizeof buf, "%.200s/%.50s",
1036 _PATH_MAILDIR, pw->pw_name);
1037 child_set_env(&env, &envsize, "MAIL", buf);
1038
1039 /* Normal systems set SHELL by default. */
1040 child_set_env(&env, &envsize, "SHELL", shell);
1041 }
1042 if (getenv("TZ"))
1043 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1044
1045 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001046 if (!options.use_login) {
1047 while (custom_environment) {
1048 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001049 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001050
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001051 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001052 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001053 if (str[i] == '=') {
1054 str[i] = 0;
1055 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001056 }
1057 custom_environment = ce->next;
1058 xfree(ce->s);
1059 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001060 }
Damien Millerb38eff82000-04-01 11:09:21 +10001061 }
1062
Damien Millerf37e2462002-09-19 11:47:55 +10001063 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001064 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001065 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001066 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1067
Damien Miller00111382003-03-10 11:21:17 +11001068 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001069 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001070 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1071 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001072 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1073
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001074 if (s->ttyfd != -1)
1075 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1076 if (s->term)
1077 child_set_env(&env, &envsize, "TERM", s->term);
1078 if (s->display)
1079 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001080 if (original_command)
1081 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1082 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001083
Tim Rice81ed5182002-09-25 17:38:46 -07001084#ifdef _UNICOS
1085 if (cray_tmpdir[0] != '\0')
1086 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1087#endif /* _UNICOS */
1088
Damien Millerb38eff82000-04-01 11:09:21 +10001089#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001090 {
1091 char *cp;
1092
1093 if ((cp = getenv("AUTHSTATE")) != NULL)
1094 child_set_env(&env, &envsize, "AUTHSTATE", cp);
1095 if ((cp = getenv("KRB5CCNAME")) != NULL)
1096 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1097 read_environment_file(&env, &envsize, "/etc/environment");
1098 }
Damien Millerb38eff82000-04-01 11:09:21 +10001099#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001100#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001101 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001102 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001103 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001104#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001105#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001106 /*
1107 * Pull in any environment variables that may have
1108 * been set by PAM.
1109 */
Damien Miller4e448a32003-05-14 15:11:48 +10001110 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001111 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001112
Damien Millerc756e9b2003-11-17 21:41:42 +11001113 p = fetch_pam_child_environment();
1114 copy_environment(p, &env, &envsize);
1115 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001116
Damien Millerc756e9b2003-11-17 21:41:42 +11001117 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001118 copy_environment(p, &env, &envsize);
1119 free_pam_environment(p);
1120 }
Damien Millerb38eff82000-04-01 11:09:21 +10001121#endif /* USE_PAM */
1122
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001123 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001124 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001125 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001126
1127 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001128 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001129 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001130 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001131 read_environment_file(&env, &envsize, buf);
1132 }
1133 if (debug_flag) {
1134 /* dump the environment */
1135 fprintf(stderr, "Environment:\n");
1136 for (i = 0; env[i]; i++)
1137 fprintf(stderr, " %.200s\n", env[i]);
1138 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001139 return env;
1140}
1141
1142/*
1143 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1144 * first in this order).
1145 */
1146static void
1147do_rc_files(Session *s, const char *shell)
1148{
1149 FILE *f = NULL;
1150 char cmd[1024];
1151 int do_xauth;
1152 struct stat st;
1153
1154 do_xauth =
1155 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1156
1157 /* ignore _PATH_SSH_USER_RC for subsystems */
1158 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1159 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1160 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1161 if (debug_flag)
1162 fprintf(stderr, "Running %s\n", cmd);
1163 f = popen(cmd, "w");
1164 if (f) {
1165 if (do_xauth)
1166 fprintf(f, "%s %s\n", s->auth_proto,
1167 s->auth_data);
1168 pclose(f);
1169 } else
1170 fprintf(stderr, "Could not run %s\n",
1171 _PATH_SSH_USER_RC);
1172 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1173 if (debug_flag)
1174 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1175 _PATH_SSH_SYSTEM_RC);
1176 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1177 if (f) {
1178 if (do_xauth)
1179 fprintf(f, "%s %s\n", s->auth_proto,
1180 s->auth_data);
1181 pclose(f);
1182 } else
1183 fprintf(stderr, "Could not run %s\n",
1184 _PATH_SSH_SYSTEM_RC);
1185 } else if (do_xauth && options.xauth_location != NULL) {
1186 /* Add authority data to .Xauthority if appropriate. */
1187 if (debug_flag) {
1188 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001189 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001190 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001191 fprintf(stderr,
1192 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001193 options.xauth_location, s->auth_display,
1194 s->auth_proto, s->auth_data);
1195 }
1196 snprintf(cmd, sizeof cmd, "%s -q -",
1197 options.xauth_location);
1198 f = popen(cmd, "w");
1199 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001200 fprintf(f, "remove %s\n",
1201 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001202 fprintf(f, "add %s %s %s\n",
1203 s->auth_display, s->auth_proto,
1204 s->auth_data);
1205 pclose(f);
1206 } else {
1207 fprintf(stderr, "Could not run %s\n",
1208 cmd);
1209 }
1210 }
1211}
1212
1213static void
1214do_nologin(struct passwd *pw)
1215{
1216 FILE *f = NULL;
1217 char buf[1024];
1218
1219#ifdef HAVE_LOGIN_CAP
1220 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1221 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1222 _PATH_NOLOGIN), "r");
1223#else
1224 if (pw->pw_uid)
1225 f = fopen(_PATH_NOLOGIN, "r");
1226#endif
1227 if (f) {
1228 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001229 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001230 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001231 while (fgets(buf, sizeof(buf), f))
1232 fputs(buf, stderr);
1233 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001234 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001235 exit(254);
1236 }
1237}
1238
1239/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001240void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001241do_setusercontext(struct passwd *pw)
1242{
Damien Miller1a3ccb02003-02-24 13:04:01 +11001243#ifndef HAVE_CYGWIN
1244 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001245#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001246 {
1247
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001248#ifdef HAVE_SETPCRED
Darren Tucker793e8172003-07-08 21:01:04 +10001249 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1250 fatal("Failed to set process credentials");
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001251#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001252#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001253# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001254 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001255# endif
Damien Millerd3526362004-01-23 14:16:26 +11001256# ifdef USE_PAM
1257 if (options.use_pam) {
1258 do_pam_session();
1259 do_pam_setcred(0);
1260 }
1261# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001262 if (setusercontext(lc, pw, pw->pw_uid,
1263 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1264 perror("unable to set user context");
1265 exit(1);
1266 }
1267#else
1268# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1269 /* Sets login uid for accounting */
1270 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1271 error("setluid: %s", strerror(errno));
1272# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1273
1274 if (setlogin(pw->pw_name) < 0)
1275 error("setlogin failed: %s", strerror(errno));
1276 if (setgid(pw->pw_gid) < 0) {
1277 perror("setgid");
1278 exit(1);
1279 }
1280 /* Initialize the group list. */
1281 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1282 perror("initgroups");
1283 exit(1);
1284 }
1285 endgrent();
1286# ifdef USE_PAM
1287 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001288 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001289 * These will have been wiped by the above initgroups() call.
1290 * Reestablish them here.
1291 */
Damien Miller341c6e62003-09-02 23:18:52 +10001292 if (options.use_pam) {
1293 do_pam_session();
Damien Miller4e448a32003-05-14 15:11:48 +10001294 do_pam_setcred(0);
Damien Miller341c6e62003-09-02 23:18:52 +10001295 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001296# endif /* USE_PAM */
1297# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1298 irix_setusercontext(pw);
1299# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001300# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001301 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001302# endif /* _AIX */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001303 /* Permanently switch to the desired uid. */
1304 permanently_set_uid(pw);
1305#endif
1306 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001307
1308#ifdef HAVE_CYGWIN
1309 if (is_winnt)
1310#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001311 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1312 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1313}
1314
Ben Lindstrom08105192002-03-22 02:50:06 +00001315static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001316do_pwchange(Session *s)
1317{
Darren Tucker09991742004-07-17 17:05:14 +10001318 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001319 fprintf(stderr, "WARNING: Your password has expired.\n");
1320 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001321 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001322 "You must change your password now and login again!\n");
1323 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
1324 perror("passwd");
1325 } else {
1326 fprintf(stderr,
1327 "Password change required but no TTY available.\n");
1328 }
1329 exit(1);
1330}
1331
1332static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001333launch_login(struct passwd *pw, const char *hostname)
1334{
1335 /* Launch login(1). */
1336
Ben Lindstrom378a4172002-06-07 14:49:56 +00001337 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001338#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001339 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001340#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001341#ifdef LOGIN_NO_ENDOPT
1342 "-p", "-f", pw->pw_name, (char *)NULL);
1343#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001344 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001345#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001346
1347 /* Login couldn't be executed, die. */
1348
1349 perror("login");
1350 exit(1);
1351}
1352
Darren Tucker23bc8d02004-02-06 16:24:31 +11001353static void
1354child_close_fds(void)
1355{
1356 int i;
1357
1358 if (packet_get_connection_in() == packet_get_connection_out())
1359 close(packet_get_connection_in());
1360 else {
1361 close(packet_get_connection_in());
1362 close(packet_get_connection_out());
1363 }
1364 /*
1365 * Close all descriptors related to channels. They will still remain
1366 * open in the parent.
1367 */
1368 /* XXX better use close-on-exec? -markus */
1369 channel_close_all();
1370
1371 /*
1372 * Close any extra file descriptors. Note that there may still be
1373 * descriptors left by system functions. They will be closed later.
1374 */
1375 endpwent();
1376
1377 /*
1378 * Close any extra open file descriptors so that we don\'t have them
1379 * hanging around in clients. Note that we want to do this after
1380 * initgroups, because at least on Solaris 2.3 it leaves file
1381 * descriptors open.
1382 */
1383 for (i = 3; i < 64; i++)
1384 close(i);
1385}
1386
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001387/*
1388 * Performs common processing for the child, such as setting up the
1389 * environment, closing extra file descriptors, setting the user and group
1390 * ids, and executing the command or shell.
1391 */
1392void
1393do_child(Session *s, const char *command)
1394{
1395 extern char **environ;
1396 char **env;
1397 char *argv[10];
1398 const char *shell, *shell0, *hostname = NULL;
1399 struct passwd *pw = s->pw;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001400
1401 /* remove hostkey from the child's memory */
1402 destroy_sensitive_data();
1403
Darren Tucker23bc8d02004-02-06 16:24:31 +11001404 /* Force a password change */
1405 if (s->authctxt->force_pwchange) {
1406 do_setusercontext(pw);
1407 child_close_fds();
1408 do_pwchange(s);
1409 exit(1);
1410 }
1411
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001412 /* login(1) is only called if we execute the login shell */
1413 if (options.use_login && command != NULL)
1414 options.use_login = 0;
1415
Tim Rice81ed5182002-09-25 17:38:46 -07001416#ifdef _UNICOS
1417 cray_setup(pw->pw_uid, pw->pw_name, command);
1418#endif /* _UNICOS */
1419
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001420 /*
1421 * Login(1) does this as well, and it needs uid 0 for the "-h"
1422 * switch, so we let login(1) to this for us.
1423 */
1424 if (!options.use_login) {
1425#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001426 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001427 if (!check_quietlogin(s, command))
1428 do_motd();
1429#else /* HAVE_OSF_SIA */
1430 do_nologin(pw);
1431 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001432 /*
1433 * PAM session modules in do_setusercontext may have
1434 * generated messages, so if this in an interactive
1435 * login then display them too.
1436 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001437 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001438 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001439#endif /* HAVE_OSF_SIA */
1440 }
1441
Darren Tucker69687f42004-09-11 22:17:26 +10001442#ifdef USE_PAM
1443 if (options.use_pam && !is_pam_session_open()) {
1444 display_loginmsg();
1445 exit(254);
1446 }
1447#endif
1448
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001449 /*
1450 * Get the shell from the password data. An empty shell field is
1451 * legal, and means /bin/sh.
1452 */
1453 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001454
1455 /*
1456 * Make sure $SHELL points to the shell from the password file,
1457 * even if shell is overridden from login.conf
1458 */
1459 env = do_setup_env(s, shell);
1460
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001461#ifdef HAVE_LOGIN_CAP
1462 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1463#endif
1464
Damien Millerad833b32000-08-23 10:46:23 +10001465 /* we have to stash the hostname before we close our socket. */
1466 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001467 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001468 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001469 /*
1470 * Close the connection descriptors; note that this is the child, and
1471 * the server will still have the socket open, and it is important
1472 * that we do not shutdown it. Note that the descriptors cannot be
1473 * closed before building the environment, as we call
1474 * get_remote_ipaddr there.
1475 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001476 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001477
Damien Millerb38eff82000-04-01 11:09:21 +10001478 /*
Damien Miller05eda432002-02-10 18:32:28 +11001479 * Must take new environment into use so that .ssh/rc,
1480 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001481 */
1482 environ = env;
1483
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001484#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001485 /*
1486 * At this point, we check to see if AFS is active and if we have
1487 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1488 * if we can (and need to) extend the ticket into an AFS token. If
1489 * we don't do this, we run into potential problems if the user's
1490 * home directory is in AFS and it's not world-readable.
1491 */
1492
1493 if (options.kerberos_get_afs_token && k_hasafs() &&
1494 (s->authctxt->krb5_ctx != NULL)) {
1495 char cell[64];
1496
1497 debug("Getting AFS token");
1498
1499 k_setpag();
1500
1501 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1502 krb5_afslog(s->authctxt->krb5_ctx,
1503 s->authctxt->krb5_fwd_ccache, cell, NULL);
1504
1505 krb5_afslog_home(s->authctxt->krb5_ctx,
1506 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1507 }
1508#endif
1509
Damien Miller139d4cd2001-10-10 15:07:44 +10001510 /* Change current directory to the user\'s home directory. */
1511 if (chdir(pw->pw_dir) < 0) {
1512 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1513 pw->pw_dir, strerror(errno));
1514#ifdef HAVE_LOGIN_CAP
1515 if (login_getcapbool(lc, "requirehome", 0))
1516 exit(1);
1517#endif
1518 }
1519
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001520 if (!options.use_login)
1521 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001522
1523 /* restore SIGPIPE for child */
1524 signal(SIGPIPE, SIG_DFL);
1525
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001526 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001527 launch_login(pw, hostname);
1528 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001529 }
1530
1531 /* Get the last component of the shell name. */
1532 if ((shell0 = strrchr(shell, '/')) != NULL)
1533 shell0++;
1534 else
1535 shell0 = shell;
1536
Damien Millerb38eff82000-04-01 11:09:21 +10001537 /*
1538 * If we have no command, execute the shell. In this case, the shell
1539 * name to be passed in argv[0] is preceded by '-' to indicate that
1540 * this is a login shell.
1541 */
1542 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001543 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001544
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001545 /* Start the shell. Set initial character to '-'. */
1546 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001547
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001548 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1549 >= sizeof(argv0) - 1) {
1550 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001551 perror(shell);
1552 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001553 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001554
1555 /* Execute the shell. */
1556 argv[0] = argv0;
1557 argv[1] = NULL;
1558 execve(shell, argv, env);
1559
1560 /* Executing the shell failed. */
1561 perror(shell);
1562 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001563 }
1564 /*
1565 * Execute the command using the user's shell. This uses the -c
1566 * option to execute the command.
1567 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001568 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001569 argv[1] = "-c";
1570 argv[2] = (char *) command;
1571 argv[3] = NULL;
1572 execve(shell, argv, env);
1573 perror(shell);
1574 exit(1);
1575}
1576
1577Session *
1578session_new(void)
1579{
1580 int i;
1581 static int did_init = 0;
1582 if (!did_init) {
1583 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001584 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001585 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001586 }
1587 did_init = 1;
1588 }
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];
1591 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001592 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001593 s->chanid = -1;
1594 s->ptyfd = -1;
1595 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001596 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001597 s->self = i;
Damien Miller15b29522000-10-14 12:33:48 +11001598 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001599 return s;
1600 }
1601 }
1602 return NULL;
1603}
1604
Ben Lindstrombba81212001-06-25 05:01:22 +00001605static void
Damien Millerb38eff82000-04-01 11:09:21 +10001606session_dump(void)
1607{
1608 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001609 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001610 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001611 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001612 s->used,
1613 s->self,
1614 s,
1615 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001616 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001617 }
1618}
1619
Damien Millerefb4afe2000-04-12 18:45:05 +10001620int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001621session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001622{
1623 Session *s = session_new();
1624 debug("session_open: channel %d", chanid);
1625 if (s == NULL) {
1626 error("no more sessions");
1627 return 0;
1628 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001629 s->authctxt = authctxt;
1630 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001631 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001632 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001633 debug("session_open: session %d: link with channel %d", s->self, chanid);
1634 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001635 return 1;
1636}
1637
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001638Session *
1639session_by_tty(char *tty)
1640{
1641 int i;
1642 for (i = 0; i < MAX_SESSIONS; i++) {
1643 Session *s = &sessions[i];
1644 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1645 debug("session_by_tty: session %d tty %s", i, tty);
1646 return s;
1647 }
1648 }
1649 debug("session_by_tty: unknown tty %.100s", tty);
1650 session_dump();
1651 return NULL;
1652}
1653
Ben Lindstrombba81212001-06-25 05:01:22 +00001654static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001655session_by_channel(int id)
1656{
1657 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001658 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001659 Session *s = &sessions[i];
1660 if (s->used && s->chanid == id) {
1661 debug("session_by_channel: session %d channel %d", i, id);
1662 return s;
1663 }
1664 }
1665 debug("session_by_channel: unknown channel %d", id);
1666 session_dump();
1667 return NULL;
1668}
1669
Ben Lindstrombba81212001-06-25 05:01:22 +00001670static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001671session_by_pid(pid_t pid)
1672{
1673 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001674 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001675 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001676 Session *s = &sessions[i];
1677 if (s->used && s->pid == pid)
1678 return s;
1679 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001680 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001681 session_dump();
1682 return NULL;
1683}
1684
Ben Lindstrombba81212001-06-25 05:01:22 +00001685static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001686session_window_change_req(Session *s)
1687{
1688 s->col = packet_get_int();
1689 s->row = packet_get_int();
1690 s->xpixel = packet_get_int();
1691 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001692 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001693 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1694 return 1;
1695}
1696
Ben Lindstrombba81212001-06-25 05:01:22 +00001697static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001698session_pty_req(Session *s)
1699{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001700 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001701 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001702
Ben Lindstrom49c12602001-06-13 04:37:36 +00001703 if (no_pty_flag) {
1704 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001705 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001706 }
1707 if (s->ttyfd != -1) {
1708 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001709 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001710 }
1711
Damien Millerefb4afe2000-04-12 18:45:05 +10001712 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001713
1714 if (compat20) {
1715 s->col = packet_get_int();
1716 s->row = packet_get_int();
1717 } else {
1718 s->row = packet_get_int();
1719 s->col = packet_get_int();
1720 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001721 s->xpixel = packet_get_int();
1722 s->ypixel = packet_get_int();
1723
1724 if (strcmp(s->term, "") == 0) {
1725 xfree(s->term);
1726 s->term = NULL;
1727 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001728
Damien Millerefb4afe2000-04-12 18:45:05 +10001729 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001730 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001731 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001732 if (s->term)
1733 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001734 s->term = NULL;
1735 s->ptyfd = -1;
1736 s->ttyfd = -1;
1737 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001738 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001739 }
1740 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001741
1742 /* for SSH1 the tty modes length is not given */
1743 if (!compat20)
1744 n_bytes = packet_remaining();
1745 tty_parse_modes(s->ttyfd, &n_bytes);
1746
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001747 if (!use_privsep)
1748 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001749
1750 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001751 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1752
Damien Miller48b03fc2002-01-22 23:11:40 +11001753 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001754 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001755 return 1;
1756}
1757
Ben Lindstrombba81212001-06-25 05:01:22 +00001758static int
Damien Millerbd483e72000-04-30 10:00:53 +10001759session_subsystem_req(Session *s)
1760{
Damien Millerae452462001-10-10 15:08:06 +10001761 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001762 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001763 int success = 0;
Damien Millerae452462001-10-10 15:08:06 +10001764 char *cmd, *subsys = packet_get_string(&len);
Damien Millerf6d9e222000-06-18 14:50:44 +10001765 int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001766
Damien Miller48b03fc2002-01-22 23:11:40 +11001767 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10001768 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001769
Damien Millerf6d9e222000-06-18 14:50:44 +10001770 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001771 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1772 cmd = options.subsystem_command[i];
1773 if (stat(cmd, &st) < 0) {
1774 error("subsystem: cannot stat %s: %s", cmd,
1775 strerror(errno));
1776 break;
1777 }
1778 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001779 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001780 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001781 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001782 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001783 }
1784 }
1785
1786 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10001787 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001788 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001789
Damien Millerbd483e72000-04-30 10:00:53 +10001790 xfree(subsys);
1791 return success;
1792}
1793
Ben Lindstrombba81212001-06-25 05:01:22 +00001794static int
Damien Millerbd483e72000-04-30 10:00:53 +10001795session_x11_req(Session *s)
1796{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001797 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001798
1799 s->single_connection = packet_get_char();
1800 s->auth_proto = packet_get_string(NULL);
1801 s->auth_data = packet_get_string(NULL);
1802 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001803 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001804
Ben Lindstrom768176b2001-06-09 01:29:12 +00001805 success = session_setup_x11fwd(s);
1806 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001807 xfree(s->auth_proto);
1808 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001809 s->auth_proto = NULL;
1810 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001811 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001812 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001813}
1814
Ben Lindstrombba81212001-06-25 05:01:22 +00001815static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001816session_shell_req(Session *s)
1817{
Damien Miller48b03fc2002-01-22 23:11:40 +11001818 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001819 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001820 return 1;
1821}
1822
Ben Lindstrombba81212001-06-25 05:01:22 +00001823static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001824session_exec_req(Session *s)
1825{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001826 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001827 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001828 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001829 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001830 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001831 return 1;
1832}
1833
Ben Lindstrombba81212001-06-25 05:01:22 +00001834static int
Damien Miller54c45982003-05-15 10:20:13 +10001835session_break_req(Session *s)
1836{
Damien Miller54c45982003-05-15 10:20:13 +10001837
Darren Tucker1f8311c2004-05-13 16:39:33 +10001838 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10001839 packet_check_eom();
1840
Darren Tucker3bdbd842003-08-13 20:31:05 +10001841 if (s->ttyfd == -1 ||
1842 tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10001843 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10001844 return 1;
1845}
1846
1847static int
Darren Tucker46bc0752004-05-02 22:11:30 +10001848session_env_req(Session *s)
1849{
1850 char *name, *val;
1851 u_int name_len, val_len, i;
1852
1853 name = packet_get_string(&name_len);
1854 val = packet_get_string(&val_len);
1855 packet_check_eom();
1856
1857 /* Don't set too many environment variables */
1858 if (s->num_env > 128) {
1859 debug2("Ignoring env request %s: too many env vars", name);
1860 goto fail;
1861 }
1862
1863 for (i = 0; i < options.num_accept_env; i++) {
1864 if (match_pattern(name, options.accept_env[i])) {
1865 debug2("Setting env %d: %s=%s", s->num_env, name, val);
1866 s->env = xrealloc(s->env, sizeof(*s->env) *
1867 (s->num_env + 1));
1868 s->env[s->num_env].name = name;
1869 s->env[s->num_env].val = val;
1870 s->num_env++;
1871 return (1);
1872 }
1873 }
1874 debug2("Ignoring env request %s: disallowed name", name);
1875
1876 fail:
1877 xfree(name);
1878 xfree(val);
1879 return (0);
1880}
1881
1882static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001883session_auth_agent_req(Session *s)
1884{
1885 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001886 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001887 if (no_agent_forwarding_flag) {
1888 debug("session_auth_agent_req: no_agent_forwarding_flag");
1889 return 0;
1890 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001891 if (called) {
1892 return 0;
1893 } else {
1894 called = 1;
1895 return auth_input_request_forwarding(s->pw);
1896 }
1897}
1898
Damien Millerc7ef63d2002-02-05 12:21:42 +11001899int
1900session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10001901{
Damien Millerefb4afe2000-04-12 18:45:05 +10001902 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001903 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10001904
Damien Millerc7ef63d2002-02-05 12:21:42 +11001905 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10001906 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11001907 c->self, rtype);
1908 return 0;
1909 }
1910 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001911
1912 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001913 * a session is in LARVAL state until a shell, a command
1914 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001915 */
1916 if (c->type == SSH_CHANNEL_LARVAL) {
1917 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001918 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001919 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001920 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001921 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10001922 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001923 } else if (strcmp(rtype, "x11-req") == 0) {
1924 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001925 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1926 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001927 } else if (strcmp(rtype, "subsystem") == 0) {
1928 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10001929 } else if (strcmp(rtype, "env") == 0) {
1930 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001931 }
1932 }
1933 if (strcmp(rtype, "window-change") == 0) {
1934 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10001935 } else if (strcmp(rtype, "break") == 0) {
1936 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001937 }
Damien Millera6b1d162004-06-30 22:41:07 +10001938
Damien Millerc7ef63d2002-02-05 12:21:42 +11001939 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10001940}
1941
1942void
1943session_set_fds(Session *s, int fdin, int fdout, int fderr)
1944{
1945 if (!compat20)
1946 fatal("session_set_fds: called for proto != 2.0");
1947 /*
1948 * now that have a child and a pipe to the child,
1949 * we can activate our channel and register the fd's
1950 */
1951 if (s->chanid == -1)
1952 fatal("no channel for session %d", s->self);
1953 channel_set_fds(s->chanid,
1954 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11001955 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11001956 1,
1957 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10001958}
1959
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001960/*
1961 * Function to perform pty cleanup. Also called if we get aborted abnormally
1962 * (e.g., due to a dropped connection).
1963 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001964void
Darren Tucker3e33cec2003-10-02 16:12:36 +10001965session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10001966{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001967 if (s == NULL) {
1968 error("session_pty_cleanup: no session");
1969 return;
1970 }
1971 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10001972 return;
1973
Kevin Steves43cdef32001-02-11 14:12:08 +00001974 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001975
Damien Millerb38eff82000-04-01 11:09:21 +10001976 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001977 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08001978 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001979
1980 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001981 if (getuid() == 0)
1982 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10001983
1984 /*
1985 * Close the server side of the socket pairs. We must do this after
1986 * the pty cleanup, so that another process doesn't get this pty
1987 * while we're still cleaning up.
1988 */
1989 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001990 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10001991
1992 /* unlink pty from session */
1993 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001994}
Damien Millerefb4afe2000-04-12 18:45:05 +10001995
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001996void
Darren Tucker3e33cec2003-10-02 16:12:36 +10001997session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001998{
Darren Tucker3e33cec2003-10-02 16:12:36 +10001999 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002000}
2001
Damien Miller5a80bba2002-09-04 16:39:02 +10002002static char *
2003sig2name(int sig)
2004{
2005#define SSH_SIG(x) if (sig == SIG ## x) return #x
2006 SSH_SIG(ABRT);
2007 SSH_SIG(ALRM);
2008 SSH_SIG(FPE);
2009 SSH_SIG(HUP);
2010 SSH_SIG(ILL);
2011 SSH_SIG(INT);
2012 SSH_SIG(KILL);
2013 SSH_SIG(PIPE);
2014 SSH_SIG(QUIT);
2015 SSH_SIG(SEGV);
2016 SSH_SIG(TERM);
2017 SSH_SIG(USR1);
2018 SSH_SIG(USR2);
2019#undef SSH_SIG
2020 return "SIG@openssh.com";
2021}
2022
Ben Lindstrombba81212001-06-25 05:01:22 +00002023static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002024session_exit_message(Session *s, int status)
2025{
2026 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002027
2028 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002029 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002030 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002031 debug("session_exit_message: session %d channel %d pid %ld",
2032 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002033
2034 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002035 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002036 packet_put_int(WEXITSTATUS(status));
2037 packet_send();
2038 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002039 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002040 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002041#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10002042 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002043#else /* WCOREDUMP */
2044 packet_put_char(0);
2045#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002046 packet_put_cstring("");
2047 packet_put_cstring("");
2048 packet_send();
2049 } else {
2050 /* Some weird exit cause. Just exit. */
2051 packet_disconnect("wait returned status %04x.", status);
2052 }
2053
2054 /* disconnect channel */
2055 debug("session_exit_message: release channel %d", s->chanid);
2056 channel_cancel_cleanup(s->chanid);
Damien Miller166fca82000-04-20 07:42:21 +10002057 /*
2058 * emulate a write failure with 'chan_write_failed', nobody will be
2059 * interested in data we write.
2060 * Note that we must not call 'chan_read_failed', since there could
2061 * be some more data waiting in the pipe.
2062 */
Damien Millerbd483e72000-04-30 10:00:53 +10002063 if (c->ostate != CHAN_OUTPUT_CLOSED)
2064 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002065 s->chanid = -1;
2066}
2067
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002068void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002069session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002070{
Darren Tucker46bc0752004-05-02 22:11:30 +10002071 int i;
2072
Ben Lindstromce0f6342002-06-11 16:42:49 +00002073 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002074 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002075 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002076 if (s->term)
2077 xfree(s->term);
2078 if (s->display)
2079 xfree(s->display);
Damien Miller512bccb2002-02-05 12:11:02 +11002080 if (s->auth_display)
2081 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002082 if (s->auth_data)
2083 xfree(s->auth_data);
2084 if (s->auth_proto)
2085 xfree(s->auth_proto);
2086 s->used = 0;
Darren Tucker46bc0752004-05-02 22:11:30 +10002087 for (i = 0; i < s->num_env; i++) {
2088 xfree(s->env[i].name);
2089 xfree(s->env[i].val);
2090 }
2091 if (s->env != NULL)
2092 xfree(s->env);
Damien Millere247cc42000-05-07 12:03:14 +10002093 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002094}
2095
2096void
2097session_close_by_pid(pid_t pid, int status)
2098{
2099 Session *s = session_by_pid(pid);
2100 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002101 debug("session_close_by_pid: no session for pid %ld",
2102 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002103 return;
2104 }
2105 if (s->chanid != -1)
2106 session_exit_message(s, status);
2107 session_close(s);
2108}
2109
2110/*
2111 * this is called when a channel dies before
2112 * the session 'child' itself dies
2113 */
2114void
2115session_close_by_channel(int id, void *arg)
2116{
2117 Session *s = session_by_channel(id);
2118 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002119 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002120 return;
2121 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002122 debug("session_close_by_channel: channel %d child %ld",
2123 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002124 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002125 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002126 /*
2127 * delay detach of session, but release pty, since
2128 * the fd's to the child are already closed
2129 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002130 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002131 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002132 return;
2133 }
2134 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002135 channel_cancel_cleanup(s->chanid);
2136 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002137 session_close(s);
2138}
2139
2140void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002141session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002142{
2143 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002144 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002145 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002146 if (s->used) {
2147 if (closefunc != NULL)
2148 closefunc(s);
2149 else
2150 session_close(s);
2151 }
Damien Miller52b77be2001-10-10 15:14:37 +10002152 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002153}
2154
Ben Lindstrombba81212001-06-25 05:01:22 +00002155static char *
Damien Millere247cc42000-05-07 12:03:14 +10002156session_tty_list(void)
2157{
2158 static char buf[1024];
2159 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002160 char *cp;
2161
Damien Millere247cc42000-05-07 12:03:14 +10002162 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002163 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002164 Session *s = &sessions[i];
2165 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002166
Damien Millera8ed44b2003-01-10 09:53:12 +11002167 if (strncmp(s->tty, "/dev/", 5) != 0) {
2168 cp = strrchr(s->tty, '/');
2169 cp = (cp == NULL) ? s->tty : cp + 1;
2170 } else
2171 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002172
Damien Millere247cc42000-05-07 12:03:14 +10002173 if (buf[0] != '\0')
2174 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002175 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002176 }
2177 }
2178 if (buf[0] == '\0')
2179 strlcpy(buf, "notty", sizeof buf);
2180 return buf;
2181}
2182
2183void
2184session_proctitle(Session *s)
2185{
2186 if (s->pw == NULL)
2187 error("no user for session %d", s->self);
2188 else
2189 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2190}
2191
Ben Lindstrom768176b2001-06-09 01:29:12 +00002192int
2193session_setup_x11fwd(Session *s)
2194{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002195 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002196 char display[512], auth_display[512];
2197 char hostname[MAXHOSTNAMELEN];
Ben Lindstrom768176b2001-06-09 01:29:12 +00002198
2199 if (no_x11_forwarding_flag) {
2200 packet_send_debug("X11 forwarding disabled in user configuration file.");
2201 return 0;
2202 }
2203 if (!options.x11_forwarding) {
2204 debug("X11 forwarding disabled in server configuration file.");
2205 return 0;
2206 }
2207 if (!options.xauth_location ||
2208 (stat(options.xauth_location, &st) == -1)) {
2209 packet_send_debug("No xauth program; cannot forward with spoofing.");
2210 return 0;
2211 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002212 if (options.use_login) {
2213 packet_send_debug("X11 forwarding disabled; "
2214 "not compatible with UseLogin=yes.");
2215 return 0;
2216 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002217 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002218 debug("X11 display already set.");
2219 return 0;
2220 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002221 if (x11_create_display_inet(options.x11_display_offset,
2222 options.x11_use_localhost, s->single_connection,
2223 &s->display_number) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002224 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002225 return 0;
2226 }
Kevin Steves366298c2001-12-19 17:58:01 +00002227
2228 /* Set up a suitable value for the DISPLAY variable. */
2229 if (gethostname(hostname, sizeof(hostname)) < 0)
2230 fatal("gethostname: %.100s", strerror(errno));
2231 /*
2232 * auth_display must be used as the displayname when the
2233 * authorization entry is added with xauth(1). This will be
2234 * different than the DISPLAY string for localhost displays.
2235 */
Damien Miller95c249f2002-02-05 12:11:34 +11002236 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002237 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002238 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002239 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002240 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002241 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002242 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002243 } else {
2244#ifdef IPADDR_IN_DISPLAY
2245 struct hostent *he;
2246 struct in_addr my_addr;
2247
2248 he = gethostbyname(hostname);
2249 if (he == NULL) {
2250 error("Can't get IP address for X11 DISPLAY.");
2251 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2252 return 0;
2253 }
2254 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002255 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002256 s->display_number, s->screen);
2257#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002258 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002259 s->display_number, s->screen);
2260#endif
2261 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002262 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002263 }
2264
Ben Lindstrom768176b2001-06-09 01:29:12 +00002265 return 1;
2266}
2267
Ben Lindstrombba81212001-06-25 05:01:22 +00002268static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002269do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002270{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002271 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002272}
2273
2274void
2275do_cleanup(Authctxt *authctxt)
2276{
2277 static int called = 0;
2278
2279 debug("do_cleanup");
2280
2281 /* no cleanup if we're in the child for login shell */
2282 if (is_child)
2283 return;
2284
2285 /* avoid double cleanup */
2286 if (called)
2287 return;
2288 called = 1;
2289
2290 if (authctxt == NULL)
2291 return;
2292#ifdef KRB5
2293 if (options.kerberos_ticket_cleanup &&
2294 authctxt->krb5_ctx)
2295 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002296#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002297
2298#ifdef GSSAPI
2299 if (compat20 && options.gss_cleanup_creds)
2300 ssh_gssapi_cleanup_creds();
2301#endif
2302
Darren Tucker8846a072003-10-07 11:30:15 +10002303#ifdef USE_PAM
2304 if (options.use_pam) {
2305 sshpam_cleanup();
2306 sshpam_thread_cleanup();
2307 }
2308#endif
2309
Darren Tucker3e33cec2003-10-02 16:12:36 +10002310 /* remove agent socket */
2311 auth_sock_cleanup_proc(authctxt->pw);
2312
2313 /*
2314 * Cleanup ptys/utmp only if privsep is disabled,
2315 * or if running in monitor.
2316 */
2317 if (!use_privsep || mm_is_monitor())
2318 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002319}