blob: 1896e141feb837e58c5c955e90acc8d70db53e86 [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 Tucker172a5e82005-01-20 10:55:46 +110036RCSID("$OpenBSD: session.c,v 1.181 2004/12/23 17:35:48 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();
Darren Tucker172a5e82005-01-20 10:55:46 +1100248 if (s == NULL) {
249 error("no more sessions");
250 return;
251 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000252 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000253 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000254
Damien Millerb38eff82000-04-01 11:09:21 +1000255 /*
256 * We stay in this loop until the client requests to execute a shell
257 * or a command.
258 */
259 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000260 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000261
262 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100263 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000264
265 /* Process the packet. */
266 switch (type) {
267 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000268 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100269 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000270 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000271 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100272 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000273 break;
274 }
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000275 if (!options.compression) {
276 debug2("compression disabled");
277 break;
278 }
Damien Millerb38eff82000-04-01 11:09:21 +1000279 /* Enable compression after we have responded with SUCCESS. */
280 enable_compression_after_reply = 1;
281 success = 1;
282 break;
283
284 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000285 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000286 break;
287
288 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000289 s->auth_proto = packet_get_string(&proto_len);
290 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000291
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000292 screen_flag = packet_get_protocol_flags() &
293 SSH_PROTOFLAG_SCREEN_NUMBER;
294 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
295
296 if (packet_remaining() == 4) {
297 if (!screen_flag)
298 debug2("Buggy client: "
299 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000300 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000301 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000302 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000303 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100304 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000305 success = session_setup_x11fwd(s);
306 if (!success) {
307 xfree(s->auth_proto);
308 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000309 s->auth_proto = NULL;
310 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000311 }
Damien Millerb38eff82000-04-01 11:09:21 +1000312 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000313
314 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
315 if (no_agent_forwarding_flag || compat13) {
316 debug("Authentication agent forwarding not permitted for this authentication.");
317 break;
318 }
319 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000320 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000321 break;
322
323 case SSH_CMSG_PORT_FORWARD_REQUEST:
324 if (no_port_forwarding_flag) {
325 debug("Port forwarding not permitted for this authentication.");
326 break;
327 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100328 if (!options.allow_tcp_forwarding) {
329 debug("Port forwarding not permitted.");
330 break;
331 }
Damien Millerb38eff82000-04-01 11:09:21 +1000332 debug("Received TCP/IP port forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000333 channel_input_port_forward_request(s->pw->pw_uid == 0, options.gateway_ports);
Damien Millerb38eff82000-04-01 11:09:21 +1000334 success = 1;
335 break;
336
337 case SSH_CMSG_MAX_PACKET_SIZE:
338 if (packet_set_maxsize(packet_get_int()) > 0)
339 success = 1;
340 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100341
Damien Millerb38eff82000-04-01 11:09:21 +1000342 case SSH_CMSG_EXEC_SHELL:
343 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000344 if (type == SSH_CMSG_EXEC_CMD) {
345 command = packet_get_string(&dlen);
346 debug("Exec command '%.500s'", command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000347 do_exec(s, command);
348 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000349 } else {
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000350 do_exec(s, NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000351 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100352 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000353 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000354 return;
355
356 default:
357 /*
358 * Any unknown messages in this phase are ignored,
359 * and a failure message is returned.
360 */
Damien Miller996acd22003-04-09 20:59:48 +1000361 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000362 }
363 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
364 packet_send();
365 packet_write_wait();
366
367 /* Enable compression now that we have replied if appropriate. */
368 if (enable_compression_after_reply) {
369 enable_compression_after_reply = 0;
370 packet_start_compression(compression_level);
371 }
372 }
373}
374
375/*
376 * This is called to fork and execute a command when we have no tty. This
377 * will call do_child from the child, and server_loop from the parent after
378 * setting up file descriptors and such.
379 */
Damien Miller4af51302000-04-16 11:18:38 +1000380void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000381do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000382{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000383 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000384
385#ifdef USE_PIPES
386 int pin[2], pout[2], perr[2];
387 /* Allocate pipes for communicating with the program. */
388 if (pipe(pin) < 0 || pipe(pout) < 0 || pipe(perr) < 0)
389 packet_disconnect("Could not create pipes: %.100s",
390 strerror(errno));
391#else /* USE_PIPES */
392 int inout[2], err[2];
393 /* Uses socket pairs to communicate with the program. */
394 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0 ||
395 socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0)
396 packet_disconnect("Could not create socket pairs: %.100s",
397 strerror(errno));
398#endif /* USE_PIPES */
399 if (s == NULL)
400 fatal("do_exec_no_pty: no session");
401
Damien Millere247cc42000-05-07 12:03:14 +1000402 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000403
Damien Millerc5946332001-02-28 11:46:11 +1100404#if defined(USE_PAM)
Darren Tucker1825f262004-02-24 00:01:27 +1100405 if (options.use_pam && !use_privsep)
Damien Miller4e448a32003-05-14 15:11:48 +1000406 do_pam_setcred(1);
Kevin Stevesff793a22001-02-21 16:36:51 +0000407#endif /* USE_PAM */
408
Damien Millerb38eff82000-04-01 11:09:21 +1000409 /* Fork the child. */
410 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000411 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000412
Damien Millerb38eff82000-04-01 11:09:21 +1000413 /* Child. Reinitialize the log since the pid has changed. */
414 log_init(__progname, options.log_level, options.log_facility, log_stderr);
415
416 /*
417 * Create a new session and process group since the 4.4BSD
418 * setlogin() affects the entire process group.
419 */
420 if (setsid() < 0)
421 error("setsid failed: %.100s", strerror(errno));
422
423#ifdef USE_PIPES
424 /*
425 * Redirect stdin. We close the parent side of the socket
426 * pair, and make the child side the standard input.
427 */
428 close(pin[1]);
429 if (dup2(pin[0], 0) < 0)
430 perror("dup2 stdin");
431 close(pin[0]);
432
433 /* Redirect stdout. */
434 close(pout[0]);
435 if (dup2(pout[1], 1) < 0)
436 perror("dup2 stdout");
437 close(pout[1]);
438
439 /* Redirect stderr. */
440 close(perr[0]);
441 if (dup2(perr[1], 2) < 0)
442 perror("dup2 stderr");
443 close(perr[1]);
444#else /* USE_PIPES */
445 /*
446 * Redirect stdin, stdout, and stderr. Stdin and stdout will
447 * use the same socket, as some programs (particularly rdist)
448 * seem to depend on it.
449 */
450 close(inout[1]);
451 close(err[1]);
452 if (dup2(inout[0], 0) < 0) /* stdin */
453 perror("dup2 stdin");
454 if (dup2(inout[0], 1) < 0) /* stdout. Note: same socket as stdin. */
455 perror("dup2 stdout");
456 if (dup2(err[0], 2) < 0) /* stderr */
457 perror("dup2 stderr");
458#endif /* USE_PIPES */
459
Tim Rice81ed5182002-09-25 17:38:46 -0700460#ifdef _UNICOS
461 cray_init_job(s->pw); /* set up cray jid and tmpdir */
462#endif
463
Damien Millerb38eff82000-04-01 11:09:21 +1000464 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000465 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000466 /* NOTREACHED */
467 }
Tim Rice81ed5182002-09-25 17:38:46 -0700468#ifdef _UNICOS
469 signal(WJSIGNAL, cray_job_termination_handler);
470#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100471#ifdef HAVE_CYGWIN
472 if (is_winnt)
473 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
474#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000475 if (pid < 0)
476 packet_disconnect("fork failed: %.100s", strerror(errno));
477 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000478 /* Set interactive/non-interactive mode. */
479 packet_set_interactive(s->display != NULL);
Damien Millerb38eff82000-04-01 11:09:21 +1000480#ifdef USE_PIPES
481 /* We are the parent. Close the child sides of the pipes. */
482 close(pin[0]);
483 close(pout[1]);
484 close(perr[1]);
485
Damien Millerefb4afe2000-04-12 18:45:05 +1000486 if (compat20) {
Darren Tucker723e9452004-06-22 12:57:08 +1000487 if (s->is_subsystem) {
488 close(perr[0]);
489 perr[0] = -1;
490 }
491 session_set_fds(s, pin[1], pout[0], perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000492 } else {
493 /* Enter the interactive session. */
494 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000495 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000496 }
Damien Millerb38eff82000-04-01 11:09:21 +1000497#else /* USE_PIPES */
498 /* We are the parent. Close the child sides of the socket pairs. */
499 close(inout[0]);
500 close(err[0]);
501
502 /*
Darren Tuckerb3850592004-03-27 16:44:21 +1100503 * Clear loginmsg, since it's the child's responsibility to display
504 * it to the user, otherwise multiple sessions may accumulate
505 * multiple copies of the login messages.
506 */
507 buffer_clear(&loginmsg);
508
509 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000510 * Enter the interactive session. Note: server_loop must be able to
511 * handle the case that fdin and fdout are the same.
512 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000513 if (compat20) {
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000514 session_set_fds(s, inout[1], inout[1], s->is_subsystem ? -1 : err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000515 } else {
516 server_loop(pid, inout[1], inout[1], err[1]);
517 /* server_loop has closed inout[1] and err[1]. */
518 }
Damien Millerb38eff82000-04-01 11:09:21 +1000519#endif /* USE_PIPES */
520}
521
522/*
523 * This is called to fork and execute a command when we have a tty. This
524 * will call do_child from the child, and server_loop from the parent after
525 * setting up file descriptors, controlling tty, updating wtmp, utmp,
526 * lastlog, and other such operations.
527 */
Damien Miller4af51302000-04-16 11:18:38 +1000528void
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000529do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000530{
Damien Millerb38eff82000-04-01 11:09:21 +1000531 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000532 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000533
534 if (s == NULL)
535 fatal("do_exec_pty: no session");
536 ptyfd = s->ptyfd;
537 ttyfd = s->ttyfd;
538
Damien Millerc5946332001-02-28 11:46:11 +1100539#if defined(USE_PAM)
Damien Miller4e448a32003-05-14 15:11:48 +1000540 if (options.use_pam) {
Damien Miller341c6e62003-09-02 23:18:52 +1000541 do_pam_set_tty(s->tty);
Darren Tuckeref3a4a22004-02-06 15:30:50 +1100542 if (!use_privsep)
543 do_pam_setcred(1);
Damien Miller4e448a32003-05-14 15:11:48 +1000544 }
Damien Miller5a761312001-02-27 09:28:23 +1100545#endif
Kevin Stevesff793a22001-02-21 16:36:51 +0000546
Damien Millerb38eff82000-04-01 11:09:21 +1000547 /* Fork the child. */
548 if ((pid = fork()) == 0) {
Darren Tucker3e33cec2003-10-02 16:12:36 +1000549 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000550
Damien Miller942da032000-08-18 13:59:06 +1000551 /* Child. Reinitialize the log because the pid has changed. */
Damien Millerb38eff82000-04-01 11:09:21 +1000552 log_init(__progname, options.log_level, options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000553 /* Close the master side of the pseudo tty. */
554 close(ptyfd);
555
556 /* Make the pseudo tty our controlling tty. */
557 pty_make_controlling_tty(&ttyfd, s->tty);
558
Damien Miller9c751422001-10-10 15:02:46 +1000559 /* Redirect stdin/stdout/stderr from the pseudo tty. */
560 if (dup2(ttyfd, 0) < 0)
561 error("dup2 stdin: %s", strerror(errno));
562 if (dup2(ttyfd, 1) < 0)
563 error("dup2 stdout: %s", strerror(errno));
564 if (dup2(ttyfd, 2) < 0)
565 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000566
567 /* Close the extra descriptor for the pseudo tty. */
568 close(ttyfd);
569
Damien Miller942da032000-08-18 13:59:06 +1000570 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000571#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700572 if (!(options.use_login && command == NULL)) {
573#ifdef _UNICOS
574 cray_init_job(s->pw); /* set up cray jid and tmpdir */
575#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100576 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700577 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000578# ifdef LOGIN_NEEDS_UTMPX
579 else
580 do_pre_login(s);
581# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000582#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000583
Damien Millerb38eff82000-04-01 11:09:21 +1000584 /* Do common processing for the child, such as execing the command. */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000585 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000586 /* NOTREACHED */
587 }
Tim Rice81ed5182002-09-25 17:38:46 -0700588#ifdef _UNICOS
589 signal(WJSIGNAL, cray_job_termination_handler);
590#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100591#ifdef HAVE_CYGWIN
592 if (is_winnt)
593 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
594#endif
Damien Millerb38eff82000-04-01 11:09:21 +1000595 if (pid < 0)
596 packet_disconnect("fork failed: %.100s", strerror(errno));
597 s->pid = pid;
598
599 /* Parent. Close the slave side of the pseudo tty. */
600 close(ttyfd);
601
602 /*
603 * Create another descriptor of the pty master side for use as the
604 * standard input. We could use the original descriptor, but this
605 * simplifies code in server_loop. The descriptor is bidirectional.
606 */
607 fdout = dup(ptyfd);
608 if (fdout < 0)
609 packet_disconnect("dup #1 failed: %.100s", strerror(errno));
610
611 /* we keep a reference to the pty master */
612 ptymaster = dup(ptyfd);
613 if (ptymaster < 0)
614 packet_disconnect("dup #2 failed: %.100s", strerror(errno));
615 s->ptymaster = ptymaster;
616
617 /* Enter interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000618 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000619 if (compat20) {
620 session_set_fds(s, ptyfd, fdout, -1);
621 } else {
622 server_loop(pid, ptyfd, fdout, -1);
623 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000624 }
Damien Millerb38eff82000-04-01 11:09:21 +1000625}
626
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000627#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000628static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000629do_pre_login(Session *s)
630{
631 socklen_t fromlen;
632 struct sockaddr_storage from;
633 pid_t pid = getpid();
634
635 /*
636 * Get IP address of client. If the connection is not a socket, let
637 * the address be 0.0.0.0.
638 */
639 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000640 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000641 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000642 if (getpeername(packet_get_connection_in(),
Damien Miller9f0f5c62001-12-21 14:45:46 +1100643 (struct sockaddr *) & from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000644 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000645 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000646 }
647 }
648
649 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000650 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000651 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000652}
653#endif
654
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000655/*
656 * This is called to fork and execute a command. If another command is
657 * to be forced, execute that instead.
658 */
659void
660do_exec(Session *s, const char *command)
661{
662 if (forced_command) {
663 original_command = command;
664 command = forced_command;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000665 debug("Forced command '%.900s'", command);
666 }
667
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100668#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100669 if (command != NULL)
670 PRIVSEP(audit_run_command(command));
671 else if (s->ttyfd == -1) {
672 char *shell = s->pw->pw_shell;
673
674 if (shell[0] == '\0') /* empty shell means /bin/sh */
675 shell =_PATH_BSHELL;
676 PRIVSEP(audit_run_command(shell));
677 }
678#endif
679
Damien Miller324948b2003-09-02 22:55:45 +1000680#ifdef GSSAPI
681 if (options.gss_authentication) {
682 temporarily_use_uid(s->pw);
683 ssh_gssapi_storecreds();
684 restore_uid();
685 }
686#endif
687
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000688 if (s->ttyfd != -1)
689 do_exec_pty(s, command);
690 else
691 do_exec_no_pty(s, command);
692
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000693 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000694
Darren Tucker09991742004-07-17 17:05:14 +1000695 /*
696 * Clear loginmsg: it's the child's responsibility to display
697 * it to the user, otherwise multiple sessions may accumulate
698 * multiple copies of the login messages.
699 */
700 buffer_clear(&loginmsg);
701}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000702
Damien Miller942da032000-08-18 13:59:06 +1000703/* administrative, login(1)-like work */
704void
Damien Miller69b69aa2000-10-28 14:19:58 +1100705do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000706{
Damien Miller942da032000-08-18 13:59:06 +1000707 socklen_t fromlen;
708 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000709 struct passwd * pw = s->pw;
710 pid_t pid = getpid();
711
712 /*
713 * Get IP address of client. If the connection is not a socket, let
714 * the address be 0.0.0.0.
715 */
716 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000717 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000718 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000719 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000720 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000721 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000722 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000723 }
724 }
725
726 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000727 if (!use_privsep)
728 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
729 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000730 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000731 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000732
Kevin Steves092f2ef2000-10-14 13:36:13 +0000733#ifdef USE_PAM
734 /*
735 * If password change is needed, do it now.
736 * This needs to occur before the ~/.hushlogin check.
737 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100738 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
739 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000740 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100741 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000742 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000743 }
744#endif
745
Damien Millercf205e82001-04-16 18:29:15 +1000746 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000747 return;
748
Darren Tucker1921ed92004-02-10 13:23:28 +1100749 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000750
Damien Millercf205e82001-04-16 18:29:15 +1000751 do_motd();
752}
753
754/*
755 * Display the message of the day.
756 */
757void
758do_motd(void)
759{
760 FILE *f;
761 char buf[256];
762
Damien Miller942da032000-08-18 13:59:06 +1000763 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000764#ifdef HAVE_LOGIN_CAP
765 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
766 "/etc/motd"), "r");
767#else
Damien Miller942da032000-08-18 13:59:06 +1000768 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000769#endif
Damien Miller942da032000-08-18 13:59:06 +1000770 if (f) {
771 while (fgets(buf, sizeof(buf), f))
772 fputs(buf, stdout);
773 fclose(f);
774 }
775 }
776}
777
Kevin Steves8f63caa2001-07-04 18:23:02 +0000778
779/*
780 * Check for quiet login, either .hushlogin or command given.
781 */
782int
783check_quietlogin(Session *s, const char *command)
784{
785 char buf[256];
786 struct passwd *pw = s->pw;
787 struct stat st;
788
789 /* Return 1 if .hushlogin exists or a command given. */
790 if (command != NULL)
791 return 1;
792 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
793#ifdef HAVE_LOGIN_CAP
794 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
795 return 1;
796#else
797 if (stat(buf, &st) >= 0)
798 return 1;
799#endif
800 return 0;
801}
802
Damien Millerb38eff82000-04-01 11:09:21 +1000803/*
804 * Sets the value of the given variable in the environment. If the variable
805 * already exists, its value is overriden.
806 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000807void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000808child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100809 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000810{
Damien Millerb38eff82000-04-01 11:09:21 +1000811 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000812 u_int envsize;
813 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000814
815 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000816 * If we're passed an uninitialized list, allocate a single null
817 * entry before continuing.
818 */
819 if (*envp == NULL && *envsizep == 0) {
820 *envp = xmalloc(sizeof(char *));
821 *envp[0] = NULL;
822 *envsizep = 1;
823 }
824
825 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000826 * Find the slot where the value should be stored. If the variable
827 * already exists, we reuse the slot; otherwise we append a new slot
828 * at the end of the array, expanding if necessary.
829 */
830 env = *envp;
831 namelen = strlen(name);
832 for (i = 0; env[i]; i++)
833 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
834 break;
835 if (env[i]) {
836 /* Reuse the slot. */
837 xfree(env[i]);
838 } else {
839 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000840 envsize = *envsizep;
841 if (i >= envsize - 1) {
842 if (envsize >= 1000)
843 fatal("child_set_env: too many env vars");
844 envsize += 50;
845 env = (*envp) = xrealloc(env, envsize * sizeof(char *));
846 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000847 }
848 /* Need to set the NULL pointer at end of array beyond the new slot. */
849 env[i + 1] = NULL;
850 }
851
852 /* Allocate space and format the variable in the appropriate slot. */
853 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
854 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
855}
856
857/*
858 * Reads environment variables from the given file and adds/overrides them
859 * into the environment. If the file does not exist, this does nothing.
860 * Otherwise, it must consist of empty lines, comments (line starts with '#')
861 * and assignments of the form name=value. No other forms are allowed.
862 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000863static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000864read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100865 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000866{
867 FILE *f;
868 char buf[4096];
869 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000870 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000871
872 f = fopen(filename, "r");
873 if (!f)
874 return;
875
876 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +1000877 if (++lineno > 1000)
878 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000879 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
880 ;
881 if (!*cp || *cp == '#' || *cp == '\n')
882 continue;
883 if (strchr(cp, '\n'))
884 *strchr(cp, '\n') = '\0';
885 value = strchr(cp, '=');
886 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +1000887 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
888 filename);
Damien Millerb38eff82000-04-01 11:09:21 +1000889 continue;
890 }
Damien Millerb1715dc2000-05-30 13:44:51 +1000891 /*
892 * Replace the equals sign by nul, and advance value to
893 * the value string.
894 */
Damien Millerb38eff82000-04-01 11:09:21 +1000895 *value = '\0';
896 value++;
897 child_set_env(env, envsize, cp, value);
898 }
899 fclose(f);
900}
901
Darren Tuckere1a790d2003-09-16 11:52:19 +1000902#ifdef HAVE_ETC_DEFAULT_LOGIN
903/*
904 * Return named variable from specified environment, or NULL if not present.
905 */
906static char *
907child_get_env(char **env, const char *name)
908{
909 int i;
910 size_t len;
911
912 len = strlen(name);
913 for (i=0; env[i] != NULL; i++)
914 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
915 return(env[i] + len + 1);
916 return NULL;
917}
918
919/*
920 * Read /etc/default/login.
921 * We pick up the PATH (or SUPATH for root) and UMASK.
922 */
923static void
924read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
925{
926 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000927 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +1000928 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000929
930 /*
931 * We don't want to copy the whole file to the child's environment,
932 * so we use a temporary environment and copy the variables we're
933 * interested in.
934 */
935 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
936
Darren Tuckerc11b1e82003-09-19 20:56:51 +1000937 if (tmpenv == NULL)
938 return;
939
Darren Tuckere1a790d2003-09-16 11:52:19 +1000940 if (uid == 0)
941 var = child_get_env(tmpenv, "SUPATH");
942 else
943 var = child_get_env(tmpenv, "PATH");
944 if (var != NULL)
945 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +1100946
Darren Tuckere1a790d2003-09-16 11:52:19 +1000947 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
948 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +1000949 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +1100950
Darren Tuckere1a790d2003-09-16 11:52:19 +1000951 for (i = 0; tmpenv[i] != NULL; i++)
952 xfree(tmpenv[i]);
953 xfree(tmpenv);
954}
955#endif /* HAVE_ETC_DEFAULT_LOGIN */
956
Damien Millerbb9ffc12002-01-08 10:59:32 +1100957void copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +1000958{
Damien Millerbb9ffc12002-01-08 10:59:32 +1100959 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +1000960 int i;
961
Damien Millerbb9ffc12002-01-08 10:59:32 +1100962 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +1000963 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000964
Damien Millerbb9ffc12002-01-08 10:59:32 +1100965 for(i = 0; source[i] != NULL; i++) {
966 var_name = xstrdup(source[i]);
967 if ((var_val = strstr(var_name, "=")) == NULL) {
968 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000969 continue;
Damien Millerb38eff82000-04-01 11:09:21 +1000970 }
Damien Millerbb9ffc12002-01-08 10:59:32 +1100971 *var_val++ = '\0';
972
973 debug3("Copy environment: %s=%s", var_name, var_val);
974 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +1100975
Damien Millerbb9ffc12002-01-08 10:59:32 +1100976 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +1000977 }
978}
Damien Millercb5e44a2000-09-29 12:12:36 +1100979
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000980static char **
981do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +1000982{
Damien Millerb38eff82000-04-01 11:09:21 +1000983 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000984 u_int i, envsize;
Darren Tuckere1a790d2003-09-16 11:52:19 +1000985 char **env, *laddr, *path = NULL;
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000986 struct passwd *pw = s->pw;
Damien Millerb38eff82000-04-01 11:09:21 +1000987
Damien Millerb38eff82000-04-01 11:09:21 +1000988 /* Initialize the environment. */
989 envsize = 100;
990 env = xmalloc(envsize * sizeof(char *));
991 env[0] = NULL;
992
Damien Millerbac2d8a2000-09-05 16:13:06 +1100993#ifdef HAVE_CYGWIN
994 /*
995 * The Windows environment contains some setting which are
996 * important for a running system. They must not be dropped.
997 */
Darren Tucker14c372d2004-08-30 20:42:08 +1000998 {
999 char **p;
1000
1001 p = fetch_windows_environment();
1002 copy_environment(p, &env, &envsize);
1003 free_windows_environment(p);
1004 }
Damien Millerbac2d8a2000-09-05 16:13:06 +11001005#endif
1006
Darren Tucker0efd1552003-08-26 11:49:55 +10001007#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001008 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001009 * the childs environment as they see fit
1010 */
1011 ssh_gssapi_do_child(&env, &envsize);
1012#endif
1013
Damien Millerb38eff82000-04-01 11:09:21 +10001014 if (!options.use_login) {
1015 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001016 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001017 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001018 s->env[i].val);
1019
Damien Millerb38eff82000-04-01 11:09:21 +10001020 child_set_env(&env, &envsize, "USER", pw->pw_name);
1021 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001022#ifdef _AIX
1023 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1024#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001025 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001026#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001027 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1028 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1029 else
1030 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001031#else /* HAVE_LOGIN_CAP */
1032# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001033 /*
1034 * There's no standard path on Windows. The path contains
1035 * important components pointing to the system directories,
1036 * needed for loading shared libraries. So the path better
1037 * remains intact here.
1038 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001039# ifdef HAVE_ETC_DEFAULT_LOGIN
1040 read_etc_default_login(&env, &envsize, pw->pw_uid);
1041 path = child_get_env(env, "PATH");
1042# endif /* HAVE_ETC_DEFAULT_LOGIN */
1043 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001044 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001045 s->pw->pw_uid == 0 ?
1046 SUPERUSER_PATH : _PATH_STDPATH);
1047 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001048# endif /* HAVE_CYGWIN */
1049#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001050
1051 snprintf(buf, sizeof buf, "%.200s/%.50s",
1052 _PATH_MAILDIR, pw->pw_name);
1053 child_set_env(&env, &envsize, "MAIL", buf);
1054
1055 /* Normal systems set SHELL by default. */
1056 child_set_env(&env, &envsize, "SHELL", shell);
1057 }
1058 if (getenv("TZ"))
1059 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1060
1061 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001062 if (!options.use_login) {
1063 while (custom_environment) {
1064 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001065 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001066
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001067 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001068 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001069 if (str[i] == '=') {
1070 str[i] = 0;
1071 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001072 }
1073 custom_environment = ce->next;
1074 xfree(ce->s);
1075 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001076 }
Damien Millerb38eff82000-04-01 11:09:21 +10001077 }
1078
Damien Millerf37e2462002-09-19 11:47:55 +10001079 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001080 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001081 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001082 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1083
Damien Miller00111382003-03-10 11:21:17 +11001084 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001085 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001086 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1087 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001088 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1089
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001090 if (s->ttyfd != -1)
1091 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1092 if (s->term)
1093 child_set_env(&env, &envsize, "TERM", s->term);
1094 if (s->display)
1095 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001096 if (original_command)
1097 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1098 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001099
Tim Rice81ed5182002-09-25 17:38:46 -07001100#ifdef _UNICOS
1101 if (cray_tmpdir[0] != '\0')
1102 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1103#endif /* _UNICOS */
1104
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001105 /*
1106 * Since we clear KRB5CCNAME at startup, if it's set now then it
1107 * must have been set by a native authentication method (eg AIX or
1108 * SIA), so copy it to the child.
1109 */
1110 {
1111 char *cp;
1112
1113 if ((cp = getenv("KRB5CCNAME")) != NULL)
1114 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1115 }
1116
Damien Millerb38eff82000-04-01 11:09:21 +10001117#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001118 {
1119 char *cp;
1120
1121 if ((cp = getenv("AUTHSTATE")) != NULL)
1122 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001123 read_environment_file(&env, &envsize, "/etc/environment");
1124 }
Damien Millerb38eff82000-04-01 11:09:21 +10001125#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001126#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001127 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001128 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001129 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001130#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001131#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001132 /*
1133 * Pull in any environment variables that may have
1134 * been set by PAM.
1135 */
Damien Miller4e448a32003-05-14 15:11:48 +10001136 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001137 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001138
Damien Millerc756e9b2003-11-17 21:41:42 +11001139 p = fetch_pam_child_environment();
1140 copy_environment(p, &env, &envsize);
1141 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001142
Damien Millerc756e9b2003-11-17 21:41:42 +11001143 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001144 copy_environment(p, &env, &envsize);
1145 free_pam_environment(p);
1146 }
Damien Millerb38eff82000-04-01 11:09:21 +10001147#endif /* USE_PAM */
1148
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001149 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001150 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001151 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001152
1153 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001154 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001155 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001156 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001157 read_environment_file(&env, &envsize, buf);
1158 }
1159 if (debug_flag) {
1160 /* dump the environment */
1161 fprintf(stderr, "Environment:\n");
1162 for (i = 0; env[i]; i++)
1163 fprintf(stderr, " %.200s\n", env[i]);
1164 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001165 return env;
1166}
1167
1168/*
1169 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1170 * first in this order).
1171 */
1172static void
1173do_rc_files(Session *s, const char *shell)
1174{
1175 FILE *f = NULL;
1176 char cmd[1024];
1177 int do_xauth;
1178 struct stat st;
1179
1180 do_xauth =
1181 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1182
1183 /* ignore _PATH_SSH_USER_RC for subsystems */
1184 if (!s->is_subsystem && (stat(_PATH_SSH_USER_RC, &st) >= 0)) {
1185 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1186 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1187 if (debug_flag)
1188 fprintf(stderr, "Running %s\n", cmd);
1189 f = popen(cmd, "w");
1190 if (f) {
1191 if (do_xauth)
1192 fprintf(f, "%s %s\n", s->auth_proto,
1193 s->auth_data);
1194 pclose(f);
1195 } else
1196 fprintf(stderr, "Could not run %s\n",
1197 _PATH_SSH_USER_RC);
1198 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1199 if (debug_flag)
1200 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1201 _PATH_SSH_SYSTEM_RC);
1202 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1203 if (f) {
1204 if (do_xauth)
1205 fprintf(f, "%s %s\n", s->auth_proto,
1206 s->auth_data);
1207 pclose(f);
1208 } else
1209 fprintf(stderr, "Could not run %s\n",
1210 _PATH_SSH_SYSTEM_RC);
1211 } else if (do_xauth && options.xauth_location != NULL) {
1212 /* Add authority data to .Xauthority if appropriate. */
1213 if (debug_flag) {
1214 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001215 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001216 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001217 fprintf(stderr,
1218 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001219 options.xauth_location, s->auth_display,
1220 s->auth_proto, s->auth_data);
1221 }
1222 snprintf(cmd, sizeof cmd, "%s -q -",
1223 options.xauth_location);
1224 f = popen(cmd, "w");
1225 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001226 fprintf(f, "remove %s\n",
1227 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001228 fprintf(f, "add %s %s %s\n",
1229 s->auth_display, s->auth_proto,
1230 s->auth_data);
1231 pclose(f);
1232 } else {
1233 fprintf(stderr, "Could not run %s\n",
1234 cmd);
1235 }
1236 }
1237}
1238
1239static void
1240do_nologin(struct passwd *pw)
1241{
1242 FILE *f = NULL;
1243 char buf[1024];
1244
1245#ifdef HAVE_LOGIN_CAP
1246 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1247 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1248 _PATH_NOLOGIN), "r");
1249#else
1250 if (pw->pw_uid)
1251 f = fopen(_PATH_NOLOGIN, "r");
1252#endif
1253 if (f) {
1254 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001255 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001256 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001257 while (fgets(buf, sizeof(buf), f))
1258 fputs(buf, stderr);
1259 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001260 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001261 exit(254);
1262 }
1263}
1264
1265/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001266void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001267do_setusercontext(struct passwd *pw)
1268{
Damien Miller1a3ccb02003-02-24 13:04:01 +11001269#ifndef HAVE_CYGWIN
1270 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001271#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001272 {
1273
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001274#ifdef HAVE_SETPCRED
Darren Tucker793e8172003-07-08 21:01:04 +10001275 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1276 fatal("Failed to set process credentials");
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001277#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001278#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001279# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001280 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001281# endif
Damien Millerd3526362004-01-23 14:16:26 +11001282# ifdef USE_PAM
1283 if (options.use_pam) {
1284 do_pam_session();
1285 do_pam_setcred(0);
1286 }
1287# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001288 if (setusercontext(lc, pw, pw->pw_uid,
1289 (LOGIN_SETALL & ~LOGIN_SETPATH)) < 0) {
1290 perror("unable to set user context");
1291 exit(1);
1292 }
1293#else
1294# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1295 /* Sets login uid for accounting */
1296 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1297 error("setluid: %s", strerror(errno));
1298# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1299
1300 if (setlogin(pw->pw_name) < 0)
1301 error("setlogin failed: %s", strerror(errno));
1302 if (setgid(pw->pw_gid) < 0) {
1303 perror("setgid");
1304 exit(1);
1305 }
1306 /* Initialize the group list. */
1307 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1308 perror("initgroups");
1309 exit(1);
1310 }
1311 endgrent();
1312# ifdef USE_PAM
1313 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001314 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001315 * These will have been wiped by the above initgroups() call.
1316 * Reestablish them here.
1317 */
Damien Miller341c6e62003-09-02 23:18:52 +10001318 if (options.use_pam) {
1319 do_pam_session();
Damien Miller4e448a32003-05-14 15:11:48 +10001320 do_pam_setcred(0);
Damien Miller341c6e62003-09-02 23:18:52 +10001321 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001322# endif /* USE_PAM */
1323# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1324 irix_setusercontext(pw);
1325# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001326# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001327 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001328# endif /* _AIX */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001329 /* Permanently switch to the desired uid. */
1330 permanently_set_uid(pw);
1331#endif
1332 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001333
1334#ifdef HAVE_CYGWIN
1335 if (is_winnt)
1336#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001337 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1338 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
1339}
1340
Ben Lindstrom08105192002-03-22 02:50:06 +00001341static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001342do_pwchange(Session *s)
1343{
Darren Tucker09991742004-07-17 17:05:14 +10001344 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001345 fprintf(stderr, "WARNING: Your password has expired.\n");
1346 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001347 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001348 "You must change your password now and login again!\n");
Darren Tucker33370e02005-02-09 22:17:28 +11001349#ifdef PASSWD_NEEDS_USERNAME
1350 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1351 (char *)NULL);
1352#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001353 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001354#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001355 perror("passwd");
1356 } else {
1357 fprintf(stderr,
1358 "Password change required but no TTY available.\n");
1359 }
1360 exit(1);
1361}
1362
1363static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001364launch_login(struct passwd *pw, const char *hostname)
1365{
1366 /* Launch login(1). */
1367
Ben Lindstrom378a4172002-06-07 14:49:56 +00001368 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001369#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001370 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001371#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001372#ifdef LOGIN_NO_ENDOPT
1373 "-p", "-f", pw->pw_name, (char *)NULL);
1374#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001375 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001376#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001377
1378 /* Login couldn't be executed, die. */
1379
1380 perror("login");
1381 exit(1);
1382}
1383
Darren Tucker23bc8d02004-02-06 16:24:31 +11001384static void
1385child_close_fds(void)
1386{
1387 int i;
1388
1389 if (packet_get_connection_in() == packet_get_connection_out())
1390 close(packet_get_connection_in());
1391 else {
1392 close(packet_get_connection_in());
1393 close(packet_get_connection_out());
1394 }
1395 /*
1396 * Close all descriptors related to channels. They will still remain
1397 * open in the parent.
1398 */
1399 /* XXX better use close-on-exec? -markus */
1400 channel_close_all();
1401
1402 /*
1403 * Close any extra file descriptors. Note that there may still be
1404 * descriptors left by system functions. They will be closed later.
1405 */
1406 endpwent();
1407
1408 /*
1409 * Close any extra open file descriptors so that we don\'t have them
1410 * hanging around in clients. Note that we want to do this after
1411 * initgroups, because at least on Solaris 2.3 it leaves file
1412 * descriptors open.
1413 */
1414 for (i = 3; i < 64; i++)
1415 close(i);
1416}
1417
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001418/*
1419 * Performs common processing for the child, such as setting up the
1420 * environment, closing extra file descriptors, setting the user and group
1421 * ids, and executing the command or shell.
1422 */
1423void
1424do_child(Session *s, const char *command)
1425{
1426 extern char **environ;
1427 char **env;
1428 char *argv[10];
1429 const char *shell, *shell0, *hostname = NULL;
1430 struct passwd *pw = s->pw;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001431
1432 /* remove hostkey from the child's memory */
1433 destroy_sensitive_data();
1434
Darren Tucker23bc8d02004-02-06 16:24:31 +11001435 /* Force a password change */
1436 if (s->authctxt->force_pwchange) {
1437 do_setusercontext(pw);
1438 child_close_fds();
1439 do_pwchange(s);
1440 exit(1);
1441 }
1442
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001443 /* login(1) is only called if we execute the login shell */
1444 if (options.use_login && command != NULL)
1445 options.use_login = 0;
1446
Tim Rice81ed5182002-09-25 17:38:46 -07001447#ifdef _UNICOS
1448 cray_setup(pw->pw_uid, pw->pw_name, command);
1449#endif /* _UNICOS */
1450
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001451 /*
1452 * Login(1) does this as well, and it needs uid 0 for the "-h"
1453 * switch, so we let login(1) to this for us.
1454 */
1455 if (!options.use_login) {
1456#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001457 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001458 if (!check_quietlogin(s, command))
1459 do_motd();
1460#else /* HAVE_OSF_SIA */
1461 do_nologin(pw);
1462 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001463 /*
1464 * PAM session modules in do_setusercontext may have
1465 * generated messages, so if this in an interactive
1466 * login then display them too.
1467 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001468 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001469 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001470#endif /* HAVE_OSF_SIA */
1471 }
1472
Darren Tucker69687f42004-09-11 22:17:26 +10001473#ifdef USE_PAM
1474 if (options.use_pam && !is_pam_session_open()) {
1475 display_loginmsg();
1476 exit(254);
1477 }
1478#endif
1479
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001480 /*
1481 * Get the shell from the password data. An empty shell field is
1482 * legal, and means /bin/sh.
1483 */
1484 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001485
1486 /*
1487 * Make sure $SHELL points to the shell from the password file,
1488 * even if shell is overridden from login.conf
1489 */
1490 env = do_setup_env(s, shell);
1491
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001492#ifdef HAVE_LOGIN_CAP
1493 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1494#endif
1495
Damien Millerad833b32000-08-23 10:46:23 +10001496 /* we have to stash the hostname before we close our socket. */
1497 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001498 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001499 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001500 /*
1501 * Close the connection descriptors; note that this is the child, and
1502 * the server will still have the socket open, and it is important
1503 * that we do not shutdown it. Note that the descriptors cannot be
1504 * closed before building the environment, as we call
1505 * get_remote_ipaddr there.
1506 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001507 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001508
Damien Millerb38eff82000-04-01 11:09:21 +10001509 /*
Damien Miller05eda432002-02-10 18:32:28 +11001510 * Must take new environment into use so that .ssh/rc,
1511 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001512 */
1513 environ = env;
1514
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001515#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001516 /*
1517 * At this point, we check to see if AFS is active and if we have
1518 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1519 * if we can (and need to) extend the ticket into an AFS token. If
1520 * we don't do this, we run into potential problems if the user's
1521 * home directory is in AFS and it's not world-readable.
1522 */
1523
1524 if (options.kerberos_get_afs_token && k_hasafs() &&
1525 (s->authctxt->krb5_ctx != NULL)) {
1526 char cell[64];
1527
1528 debug("Getting AFS token");
1529
1530 k_setpag();
1531
1532 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1533 krb5_afslog(s->authctxt->krb5_ctx,
1534 s->authctxt->krb5_fwd_ccache, cell, NULL);
1535
1536 krb5_afslog_home(s->authctxt->krb5_ctx,
1537 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1538 }
1539#endif
1540
Damien Miller139d4cd2001-10-10 15:07:44 +10001541 /* Change current directory to the user\'s home directory. */
1542 if (chdir(pw->pw_dir) < 0) {
1543 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1544 pw->pw_dir, strerror(errno));
1545#ifdef HAVE_LOGIN_CAP
1546 if (login_getcapbool(lc, "requirehome", 0))
1547 exit(1);
1548#endif
1549 }
1550
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001551 if (!options.use_login)
1552 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001553
1554 /* restore SIGPIPE for child */
1555 signal(SIGPIPE, SIG_DFL);
1556
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001557 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001558 launch_login(pw, hostname);
1559 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001560 }
1561
1562 /* Get the last component of the shell name. */
1563 if ((shell0 = strrchr(shell, '/')) != NULL)
1564 shell0++;
1565 else
1566 shell0 = shell;
1567
Damien Millerb38eff82000-04-01 11:09:21 +10001568 /*
1569 * If we have no command, execute the shell. In this case, the shell
1570 * name to be passed in argv[0] is preceded by '-' to indicate that
1571 * this is a login shell.
1572 */
1573 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001574 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001575
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001576 /* Start the shell. Set initial character to '-'. */
1577 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001578
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001579 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1580 >= sizeof(argv0) - 1) {
1581 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001582 perror(shell);
1583 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001584 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001585
1586 /* Execute the shell. */
1587 argv[0] = argv0;
1588 argv[1] = NULL;
1589 execve(shell, argv, env);
1590
1591 /* Executing the shell failed. */
1592 perror(shell);
1593 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001594 }
1595 /*
1596 * Execute the command using the user's shell. This uses the -c
1597 * option to execute the command.
1598 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001599 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001600 argv[1] = "-c";
1601 argv[2] = (char *) command;
1602 argv[3] = NULL;
1603 execve(shell, argv, env);
1604 perror(shell);
1605 exit(1);
1606}
1607
1608Session *
1609session_new(void)
1610{
1611 int i;
1612 static int did_init = 0;
1613 if (!did_init) {
1614 debug("session_new: init");
Damien Miller9f0f5c62001-12-21 14:45:46 +11001615 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001616 sessions[i].used = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001617 }
1618 did_init = 1;
1619 }
Damien Miller9f0f5c62001-12-21 14:45:46 +11001620 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001621 Session *s = &sessions[i];
1622 if (! s->used) {
Ben Lindstrom60294322001-03-26 05:38:25 +00001623 memset(s, 0, sizeof(*s));
Damien Millerb38eff82000-04-01 11:09:21 +10001624 s->chanid = -1;
1625 s->ptyfd = -1;
1626 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10001627 s->used = 1;
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001628 s->self = i;
Damien Miller15b29522000-10-14 12:33:48 +11001629 debug("session_new: session %d", i);
Damien Millerb38eff82000-04-01 11:09:21 +10001630 return s;
1631 }
1632 }
1633 return NULL;
1634}
1635
Ben Lindstrombba81212001-06-25 05:01:22 +00001636static void
Damien Millerb38eff82000-04-01 11:09:21 +10001637session_dump(void)
1638{
1639 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001640 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001641 Session *s = &sessions[i];
Ben Lindstromce0f6342002-06-11 16:42:49 +00001642 debug("dump: used %d session %d %p channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001643 s->used,
1644 s->self,
1645 s,
1646 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001647 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001648 }
1649}
1650
Damien Millerefb4afe2000-04-12 18:45:05 +10001651int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001652session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001653{
1654 Session *s = session_new();
1655 debug("session_open: channel %d", chanid);
1656 if (s == NULL) {
1657 error("no more sessions");
1658 return 0;
1659 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001660 s->authctxt = authctxt;
1661 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001662 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001663 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001664 debug("session_open: session %d: link with channel %d", s->self, chanid);
1665 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001666 return 1;
1667}
1668
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001669Session *
1670session_by_tty(char *tty)
1671{
1672 int i;
1673 for (i = 0; i < MAX_SESSIONS; i++) {
1674 Session *s = &sessions[i];
1675 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1676 debug("session_by_tty: session %d tty %s", i, tty);
1677 return s;
1678 }
1679 }
1680 debug("session_by_tty: unknown tty %.100s", tty);
1681 session_dump();
1682 return NULL;
1683}
1684
Ben Lindstrombba81212001-06-25 05:01:22 +00001685static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001686session_by_channel(int id)
1687{
1688 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001689 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001690 Session *s = &sessions[i];
1691 if (s->used && s->chanid == id) {
1692 debug("session_by_channel: session %d channel %d", i, id);
1693 return s;
1694 }
1695 }
1696 debug("session_by_channel: unknown channel %d", id);
1697 session_dump();
1698 return NULL;
1699}
1700
Ben Lindstrombba81212001-06-25 05:01:22 +00001701static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001702session_by_pid(pid_t pid)
1703{
1704 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00001705 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001706 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001707 Session *s = &sessions[i];
1708 if (s->used && s->pid == pid)
1709 return s;
1710 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00001711 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10001712 session_dump();
1713 return NULL;
1714}
1715
Ben Lindstrombba81212001-06-25 05:01:22 +00001716static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001717session_window_change_req(Session *s)
1718{
1719 s->col = packet_get_int();
1720 s->row = packet_get_int();
1721 s->xpixel = packet_get_int();
1722 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001723 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10001724 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1725 return 1;
1726}
1727
Ben Lindstrombba81212001-06-25 05:01:22 +00001728static int
Damien Millerefb4afe2000-04-12 18:45:05 +10001729session_pty_req(Session *s)
1730{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001731 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001732 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00001733
Ben Lindstrom49c12602001-06-13 04:37:36 +00001734 if (no_pty_flag) {
1735 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10001736 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001737 }
1738 if (s->ttyfd != -1) {
1739 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10001740 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00001741 }
1742
Damien Millerefb4afe2000-04-12 18:45:05 +10001743 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001744
1745 if (compat20) {
1746 s->col = packet_get_int();
1747 s->row = packet_get_int();
1748 } else {
1749 s->row = packet_get_int();
1750 s->col = packet_get_int();
1751 }
Damien Millerefb4afe2000-04-12 18:45:05 +10001752 s->xpixel = packet_get_int();
1753 s->ypixel = packet_get_int();
1754
1755 if (strcmp(s->term, "") == 0) {
1756 xfree(s->term);
1757 s->term = NULL;
1758 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00001759
Damien Millerefb4afe2000-04-12 18:45:05 +10001760 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00001761 debug("Allocating pty.");
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001762 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty, sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00001763 if (s->term)
1764 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10001765 s->term = NULL;
1766 s->ptyfd = -1;
1767 s->ttyfd = -1;
1768 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10001769 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001770 }
1771 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001772
1773 /* for SSH1 the tty modes length is not given */
1774 if (!compat20)
1775 n_bytes = packet_remaining();
1776 tty_parse_modes(s->ttyfd, &n_bytes);
1777
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001778 if (!use_privsep)
1779 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00001780
1781 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10001782 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1783
Damien Miller48b03fc2002-01-22 23:11:40 +11001784 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10001785 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001786 return 1;
1787}
1788
Ben Lindstrombba81212001-06-25 05:01:22 +00001789static int
Damien Millerbd483e72000-04-30 10:00:53 +10001790session_subsystem_req(Session *s)
1791{
Damien Millerae452462001-10-10 15:08:06 +10001792 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00001793 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10001794 int success = 0;
Damien Millerae452462001-10-10 15:08:06 +10001795 char *cmd, *subsys = packet_get_string(&len);
Damien Millerf6d9e222000-06-18 14:50:44 +10001796 int i;
Damien Millerbd483e72000-04-30 10:00:53 +10001797
Damien Miller48b03fc2002-01-22 23:11:40 +11001798 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10001799 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10001800
Damien Millerf6d9e222000-06-18 14:50:44 +10001801 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10001802 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
1803 cmd = options.subsystem_command[i];
1804 if (stat(cmd, &st) < 0) {
1805 error("subsystem: cannot stat %s: %s", cmd,
1806 strerror(errno));
1807 break;
1808 }
1809 debug("subsystem: exec() %s", cmd);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001810 s->is_subsystem = 1;
Damien Millerae452462001-10-10 15:08:06 +10001811 do_exec(s, cmd);
Damien Millerf6d9e222000-06-18 14:50:44 +10001812 success = 1;
Damien Miller5fab4b92002-02-05 12:15:07 +11001813 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10001814 }
1815 }
1816
1817 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10001818 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10001819 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10001820
Damien Millerbd483e72000-04-30 10:00:53 +10001821 xfree(subsys);
1822 return success;
1823}
1824
Ben Lindstrombba81212001-06-25 05:01:22 +00001825static int
Damien Millerbd483e72000-04-30 10:00:53 +10001826session_x11_req(Session *s)
1827{
Ben Lindstrom768176b2001-06-09 01:29:12 +00001828 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10001829
1830 s->single_connection = packet_get_char();
1831 s->auth_proto = packet_get_string(NULL);
1832 s->auth_data = packet_get_string(NULL);
1833 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11001834 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10001835
Ben Lindstrom768176b2001-06-09 01:29:12 +00001836 success = session_setup_x11fwd(s);
1837 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10001838 xfree(s->auth_proto);
1839 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00001840 s->auth_proto = NULL;
1841 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10001842 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00001843 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10001844}
1845
Ben Lindstrombba81212001-06-25 05:01:22 +00001846static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001847session_shell_req(Session *s)
1848{
Damien Miller48b03fc2002-01-22 23:11:40 +11001849 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001850 do_exec(s, NULL);
Damien Millerf6d9e222000-06-18 14:50:44 +10001851 return 1;
1852}
1853
Ben Lindstrombba81212001-06-25 05:01:22 +00001854static int
Damien Millerf6d9e222000-06-18 14:50:44 +10001855session_exec_req(Session *s)
1856{
Ben Lindstrom46c16222000-12-22 01:43:59 +00001857 u_int len;
Damien Millerf6d9e222000-06-18 14:50:44 +10001858 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11001859 packet_check_eom();
Ben Lindstromc85ab8a2001-06-21 03:13:10 +00001860 do_exec(s, command);
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00001861 xfree(command);
Damien Millerf6d9e222000-06-18 14:50:44 +10001862 return 1;
1863}
1864
Ben Lindstrombba81212001-06-25 05:01:22 +00001865static int
Damien Miller54c45982003-05-15 10:20:13 +10001866session_break_req(Session *s)
1867{
Damien Miller54c45982003-05-15 10:20:13 +10001868
Darren Tucker1f8311c2004-05-13 16:39:33 +10001869 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10001870 packet_check_eom();
1871
Darren Tucker3bdbd842003-08-13 20:31:05 +10001872 if (s->ttyfd == -1 ||
1873 tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10001874 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10001875 return 1;
1876}
1877
1878static int
Darren Tucker46bc0752004-05-02 22:11:30 +10001879session_env_req(Session *s)
1880{
1881 char *name, *val;
1882 u_int name_len, val_len, i;
1883
1884 name = packet_get_string(&name_len);
1885 val = packet_get_string(&val_len);
1886 packet_check_eom();
1887
1888 /* Don't set too many environment variables */
1889 if (s->num_env > 128) {
1890 debug2("Ignoring env request %s: too many env vars", name);
1891 goto fail;
1892 }
1893
1894 for (i = 0; i < options.num_accept_env; i++) {
1895 if (match_pattern(name, options.accept_env[i])) {
1896 debug2("Setting env %d: %s=%s", s->num_env, name, val);
1897 s->env = xrealloc(s->env, sizeof(*s->env) *
1898 (s->num_env + 1));
1899 s->env[s->num_env].name = name;
1900 s->env[s->num_env].val = val;
1901 s->num_env++;
1902 return (1);
1903 }
1904 }
1905 debug2("Ignoring env request %s: disallowed name", name);
1906
1907 fail:
1908 xfree(name);
1909 xfree(val);
1910 return (0);
1911}
1912
1913static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11001914session_auth_agent_req(Session *s)
1915{
1916 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11001917 packet_check_eom();
Ben Lindstrom14920292000-11-21 21:24:55 +00001918 if (no_agent_forwarding_flag) {
1919 debug("session_auth_agent_req: no_agent_forwarding_flag");
1920 return 0;
1921 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001922 if (called) {
1923 return 0;
1924 } else {
1925 called = 1;
1926 return auth_input_request_forwarding(s->pw);
1927 }
1928}
1929
Damien Millerc7ef63d2002-02-05 12:21:42 +11001930int
1931session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10001932{
Damien Millerefb4afe2000-04-12 18:45:05 +10001933 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10001934 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10001935
Damien Millerc7ef63d2002-02-05 12:21:42 +11001936 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10001937 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11001938 c->self, rtype);
1939 return 0;
1940 }
1941 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10001942
1943 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00001944 * a session is in LARVAL state until a shell, a command
1945 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10001946 */
1947 if (c->type == SSH_CHANNEL_LARVAL) {
1948 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001949 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001950 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10001951 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001952 } else if (strcmp(rtype, "pty-req") == 0) {
Damien Miller5f056372000-04-16 12:31:48 +10001953 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001954 } else if (strcmp(rtype, "x11-req") == 0) {
1955 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001956 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
1957 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10001958 } else if (strcmp(rtype, "subsystem") == 0) {
1959 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10001960 } else if (strcmp(rtype, "env") == 0) {
1961 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001962 }
1963 }
1964 if (strcmp(rtype, "window-change") == 0) {
1965 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10001966 } else if (strcmp(rtype, "break") == 0) {
1967 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10001968 }
Damien Millera6b1d162004-06-30 22:41:07 +10001969
Damien Millerc7ef63d2002-02-05 12:21:42 +11001970 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10001971}
1972
1973void
1974session_set_fds(Session *s, int fdin, int fdout, int fderr)
1975{
1976 if (!compat20)
1977 fatal("session_set_fds: called for proto != 2.0");
1978 /*
1979 * now that have a child and a pipe to the child,
1980 * we can activate our channel and register the fd's
1981 */
1982 if (s->chanid == -1)
1983 fatal("no channel for session %d", s->self);
1984 channel_set_fds(s->chanid,
1985 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11001986 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11001987 1,
1988 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10001989}
1990
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001991/*
1992 * Function to perform pty cleanup. Also called if we get aborted abnormally
1993 * (e.g., due to a dropped connection).
1994 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001995void
Darren Tucker3e33cec2003-10-02 16:12:36 +10001996session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10001997{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00001998 if (s == NULL) {
1999 error("session_pty_cleanup: no session");
2000 return;
2001 }
2002 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002003 return;
2004
Kevin Steves43cdef32001-02-11 14:12:08 +00002005 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002006
Damien Millerb38eff82000-04-01 11:09:21 +10002007 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002008 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002009 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002010
2011 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002012 if (getuid() == 0)
2013 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002014
2015 /*
2016 * Close the server side of the socket pairs. We must do this after
2017 * the pty cleanup, so that another process doesn't get this pty
2018 * while we're still cleaning up.
2019 */
2020 if (close(s->ptymaster) < 0)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002021 error("close(s->ptymaster/%d): %s", s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002022
2023 /* unlink pty from session */
2024 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002025}
Damien Millerefb4afe2000-04-12 18:45:05 +10002026
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002027void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002028session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002029{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002030 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002031}
2032
Damien Miller5a80bba2002-09-04 16:39:02 +10002033static char *
2034sig2name(int sig)
2035{
2036#define SSH_SIG(x) if (sig == SIG ## x) return #x
2037 SSH_SIG(ABRT);
2038 SSH_SIG(ALRM);
2039 SSH_SIG(FPE);
2040 SSH_SIG(HUP);
2041 SSH_SIG(ILL);
2042 SSH_SIG(INT);
2043 SSH_SIG(KILL);
2044 SSH_SIG(PIPE);
2045 SSH_SIG(QUIT);
2046 SSH_SIG(SEGV);
2047 SSH_SIG(TERM);
2048 SSH_SIG(USR1);
2049 SSH_SIG(USR2);
2050#undef SSH_SIG
2051 return "SIG@openssh.com";
2052}
2053
Ben Lindstrombba81212001-06-25 05:01:22 +00002054static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002055session_exit_message(Session *s, int status)
2056{
2057 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002058
2059 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002060 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002061 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002062 debug("session_exit_message: session %d channel %d pid %ld",
2063 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002064
2065 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002066 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002067 packet_put_int(WEXITSTATUS(status));
2068 packet_send();
2069 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002070 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002071 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002072#ifdef WCOREDUMP
Damien Millerefb4afe2000-04-12 18:45:05 +10002073 packet_put_char(WCOREDUMP(status));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002074#else /* WCOREDUMP */
2075 packet_put_char(0);
2076#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002077 packet_put_cstring("");
2078 packet_put_cstring("");
2079 packet_send();
2080 } else {
2081 /* Some weird exit cause. Just exit. */
2082 packet_disconnect("wait returned status %04x.", status);
2083 }
2084
2085 /* disconnect channel */
2086 debug("session_exit_message: release channel %d", s->chanid);
2087 channel_cancel_cleanup(s->chanid);
Damien Miller166fca82000-04-20 07:42:21 +10002088 /*
2089 * emulate a write failure with 'chan_write_failed', nobody will be
2090 * interested in data we write.
2091 * Note that we must not call 'chan_read_failed', since there could
2092 * be some more data waiting in the pipe.
2093 */
Damien Millerbd483e72000-04-30 10:00:53 +10002094 if (c->ostate != CHAN_OUTPUT_CLOSED)
2095 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002096 s->chanid = -1;
2097}
2098
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002099void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002100session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002101{
Darren Tucker46bc0752004-05-02 22:11:30 +10002102 int i;
2103
Ben Lindstromce0f6342002-06-11 16:42:49 +00002104 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002105 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002106 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002107 if (s->term)
2108 xfree(s->term);
2109 if (s->display)
2110 xfree(s->display);
Damien Miller512bccb2002-02-05 12:11:02 +11002111 if (s->auth_display)
2112 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002113 if (s->auth_data)
2114 xfree(s->auth_data);
2115 if (s->auth_proto)
2116 xfree(s->auth_proto);
2117 s->used = 0;
Darren Tucker46bc0752004-05-02 22:11:30 +10002118 for (i = 0; i < s->num_env; i++) {
2119 xfree(s->env[i].name);
2120 xfree(s->env[i].val);
2121 }
2122 if (s->env != NULL)
2123 xfree(s->env);
Damien Millere247cc42000-05-07 12:03:14 +10002124 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002125}
2126
2127void
2128session_close_by_pid(pid_t pid, int status)
2129{
2130 Session *s = session_by_pid(pid);
2131 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002132 debug("session_close_by_pid: no session for pid %ld",
2133 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002134 return;
2135 }
2136 if (s->chanid != -1)
2137 session_exit_message(s, status);
2138 session_close(s);
2139}
2140
2141/*
2142 * this is called when a channel dies before
2143 * the session 'child' itself dies
2144 */
2145void
2146session_close_by_channel(int id, void *arg)
2147{
2148 Session *s = session_by_channel(id);
2149 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002150 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002151 return;
2152 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002153 debug("session_close_by_channel: channel %d child %ld",
2154 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002155 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002156 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002157 /*
2158 * delay detach of session, but release pty, since
2159 * the fd's to the child are already closed
2160 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002161 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002162 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002163 return;
2164 }
2165 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002166 channel_cancel_cleanup(s->chanid);
2167 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002168 session_close(s);
2169}
2170
2171void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002172session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002173{
2174 int i;
Damien Miller9f0f5c62001-12-21 14:45:46 +11002175 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002176 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002177 if (s->used) {
2178 if (closefunc != NULL)
2179 closefunc(s);
2180 else
2181 session_close(s);
2182 }
Damien Miller52b77be2001-10-10 15:14:37 +10002183 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002184}
2185
Ben Lindstrombba81212001-06-25 05:01:22 +00002186static char *
Damien Millere247cc42000-05-07 12:03:14 +10002187session_tty_list(void)
2188{
2189 static char buf[1024];
2190 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002191 char *cp;
2192
Damien Millere247cc42000-05-07 12:03:14 +10002193 buf[0] = '\0';
Damien Miller9f0f5c62001-12-21 14:45:46 +11002194 for (i = 0; i < MAX_SESSIONS; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002195 Session *s = &sessions[i];
2196 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002197
Damien Millera8ed44b2003-01-10 09:53:12 +11002198 if (strncmp(s->tty, "/dev/", 5) != 0) {
2199 cp = strrchr(s->tty, '/');
2200 cp = (cp == NULL) ? s->tty : cp + 1;
2201 } else
2202 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002203
Damien Millere247cc42000-05-07 12:03:14 +10002204 if (buf[0] != '\0')
2205 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002206 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002207 }
2208 }
2209 if (buf[0] == '\0')
2210 strlcpy(buf, "notty", sizeof buf);
2211 return buf;
2212}
2213
2214void
2215session_proctitle(Session *s)
2216{
2217 if (s->pw == NULL)
2218 error("no user for session %d", s->self);
2219 else
2220 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2221}
2222
Ben Lindstrom768176b2001-06-09 01:29:12 +00002223int
2224session_setup_x11fwd(Session *s)
2225{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002226 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002227 char display[512], auth_display[512];
2228 char hostname[MAXHOSTNAMELEN];
Ben Lindstrom768176b2001-06-09 01:29:12 +00002229
2230 if (no_x11_forwarding_flag) {
2231 packet_send_debug("X11 forwarding disabled in user configuration file.");
2232 return 0;
2233 }
2234 if (!options.x11_forwarding) {
2235 debug("X11 forwarding disabled in server configuration file.");
2236 return 0;
2237 }
2238 if (!options.xauth_location ||
2239 (stat(options.xauth_location, &st) == -1)) {
2240 packet_send_debug("No xauth program; cannot forward with spoofing.");
2241 return 0;
2242 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002243 if (options.use_login) {
2244 packet_send_debug("X11 forwarding disabled; "
2245 "not compatible with UseLogin=yes.");
2246 return 0;
2247 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002248 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002249 debug("X11 display already set.");
2250 return 0;
2251 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002252 if (x11_create_display_inet(options.x11_display_offset,
2253 options.x11_use_localhost, s->single_connection,
2254 &s->display_number) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002255 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002256 return 0;
2257 }
Kevin Steves366298c2001-12-19 17:58:01 +00002258
2259 /* Set up a suitable value for the DISPLAY variable. */
2260 if (gethostname(hostname, sizeof(hostname)) < 0)
2261 fatal("gethostname: %.100s", strerror(errno));
2262 /*
2263 * auth_display must be used as the displayname when the
2264 * authorization entry is added with xauth(1). This will be
2265 * different than the DISPLAY string for localhost displays.
2266 */
Damien Miller95c249f2002-02-05 12:11:34 +11002267 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002268 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002269 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002270 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002271 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002272 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002273 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002274 } else {
2275#ifdef IPADDR_IN_DISPLAY
2276 struct hostent *he;
2277 struct in_addr my_addr;
2278
2279 he = gethostbyname(hostname);
2280 if (he == NULL) {
2281 error("Can't get IP address for X11 DISPLAY.");
2282 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2283 return 0;
2284 }
2285 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002286 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002287 s->display_number, s->screen);
2288#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002289 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002290 s->display_number, s->screen);
2291#endif
2292 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002293 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002294 }
2295
Ben Lindstrom768176b2001-06-09 01:29:12 +00002296 return 1;
2297}
2298
Ben Lindstrombba81212001-06-25 05:01:22 +00002299static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002300do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002301{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002302 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002303}
2304
2305void
2306do_cleanup(Authctxt *authctxt)
2307{
2308 static int called = 0;
2309
2310 debug("do_cleanup");
2311
2312 /* no cleanup if we're in the child for login shell */
2313 if (is_child)
2314 return;
2315
2316 /* avoid double cleanup */
2317 if (called)
2318 return;
2319 called = 1;
2320
2321 if (authctxt == NULL)
2322 return;
2323#ifdef KRB5
2324 if (options.kerberos_ticket_cleanup &&
2325 authctxt->krb5_ctx)
2326 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002327#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002328
2329#ifdef GSSAPI
2330 if (compat20 && options.gss_cleanup_creds)
2331 ssh_gssapi_cleanup_creds();
2332#endif
2333
Darren Tucker8846a072003-10-07 11:30:15 +10002334#ifdef USE_PAM
2335 if (options.use_pam) {
2336 sshpam_cleanup();
2337 sshpam_thread_cleanup();
2338 }
2339#endif
2340
Darren Tucker2e0cf0d2005-02-08 21:52:47 +11002341#ifdef SSH_AUDIT_EVENTS
2342 PRIVSEP(audit_event(SSH_CONNECTION_CLOSE));
Darren Tucker269a1ea2005-02-03 00:20:53 +11002343#endif
2344
Darren Tucker3e33cec2003-10-02 16:12:36 +10002345 /* remove agent socket */
2346 auth_sock_cleanup_proc(authctxt->pw);
2347
2348 /*
2349 * Cleanup ptys/utmp only if privsep is disabled,
2350 * or if running in monitor.
2351 */
2352 if (!use_privsep || mm_is_monitor())
2353 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002354}