blob: b4afed6fd459c1f49ba77cd83ee66bad96898ed0 [file] [log] [blame]
Damien Miller2ff1ca52008-05-19 16:04:56 +10001/* $OpenBSD: session.c,v 1.238 2008/05/09 16:16:06 markus Exp $ */
Damien Millerb38eff82000-04-01 11:09:21 +10002/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11005 *
6 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
11 *
Damien Millerefb4afe2000-04-12 18:45:05 +100012 * SSH2 support by Markus Friedl.
Ben Lindstrom44697232001-07-04 03:32:30 +000013 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110014 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
25 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Millerefb4afe2000-04-12 18:45:05 +100034 */
Damien Millerb38eff82000-04-01 11:09:21 +100035
36#include "includes.h"
Damien Miller9cf6d072006-03-15 11:29:24 +110037
38#include <sys/types.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100039#include <sys/param.h>
Damien Millerf17883e2006-03-15 11:45:54 +110040#ifdef HAVE_SYS_STAT_H
41# include <sys/stat.h>
42#endif
Damien Millere3b60b52006-07-10 21:08:03 +100043#include <sys/socket.h>
Damien Miller574c41f2006-03-15 11:40:10 +110044#include <sys/un.h>
Damien Miller8dbffe72006-08-05 11:02:17 +100045#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110046
Damien Miller1cdde6f2006-07-24 14:07:35 +100047#include <arpa/inet.h>
48
Darren Tucker39972492006-07-12 22:22:46 +100049#include <errno.h>
Damien Miller427a1d52006-07-10 20:20:33 +100050#include <grp.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110051#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110052#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110053#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100054#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110055#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100056#include <stdarg.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100057#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100058#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100059#include <string.h>
Damien Miller1cdde6f2006-07-24 14:07:35 +100060#include <unistd.h>
Damien Millerb38eff82000-04-01 11:09:21 +100061
Damien Millerb84886b2008-05-19 15:05:07 +100062#include "openbsd-compat/sys-queue.h"
Damien Millerd7834352006-08-05 12:39:39 +100063#include "xmalloc.h"
Damien Millerb38eff82000-04-01 11:09:21 +100064#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000065#include "ssh1.h"
66#include "ssh2.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000067#include "sshpty.h"
Damien Millerb38eff82000-04-01 11:09:21 +100068#include "packet.h"
69#include "buffer.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100070#include "match.h"
Damien Millerb38eff82000-04-01 11:09:21 +100071#include "uidswap.h"
72#include "compat.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000073#include "channels.h"
Damien Millerd7834352006-08-05 12:39:39 +100074#include "key.h"
75#include "cipher.h"
76#ifdef GSSAPI
77#include "ssh-gss.h"
78#endif
79#include "hostfile.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100080#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100081#include "auth-options.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000082#include "pathnames.h"
83#include "log.h"
84#include "servconf.h"
Ben Lindstromd95c09c2001-02-18 19:13:33 +000085#include "sshlogin.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000086#include "serverloop.h"
87#include "canohost.h"
Damien Millerd8cb1f12008-02-10 22:40:12 +110088#include "misc.h"
Ben Lindstrom31ca54a2001-02-09 02:11:24 +000089#include "session.h"
Damien Miller9786e6e2005-07-26 21:54:56 +100090#include "kex.h"
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000091#include "monitor_wrap.h"
Damien Millerdfc24252008-02-10 22:29:40 +110092#include "sftp.h"
Damien Millerefb4afe2000-04-12 18:45:05 +100093
Darren Tucker3c78c5e2004-01-23 22:03:10 +110094#if defined(KRB5) && defined(USE_AFS)
Damien Miller8f341f82004-01-21 11:00:46 +110095#include <kafs.h>
96#endif
97
Damien Millerb38eff82000-04-01 11:09:21 +100098/* func */
99
100Session *session_new(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000101void session_set_fds(Session *, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000102void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000103void session_proctitle(Session *);
104int session_setup_x11fwd(Session *);
Damien Miller7207f642008-05-19 15:34:50 +1000105int do_exec_pty(Session *, const char *);
106int do_exec_no_pty(Session *, const char *);
107int do_exec(Session *, const char *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000108void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +0000109#ifdef LOGIN_NEEDS_UTMPX
110static void do_pre_login(Session *s);
111#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +0000112void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +1000113void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000114int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +1000115
Ben Lindstrombba81212001-06-25 05:01:22 +0000116static void do_authenticated1(Authctxt *);
117static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000118
Ben Lindstrombba81212001-06-25 05:01:22 +0000119static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000120
Damien Millerb38eff82000-04-01 11:09:21 +1000121/* import */
122extern ServerOptions options;
123extern char *__progname;
124extern int log_stderr;
125extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000126extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000127extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000128extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000129extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +1000130
Damien Miller7b28dc52000-09-05 13:34:53 +1100131/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000132const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100133
Damien Millerb38eff82000-04-01 11:09:21 +1000134/* data */
Damien Miller7207f642008-05-19 15:34:50 +1000135static int sessions_first_unused = -1;
136static int sessions_nalloc = 0;
137static Session *sessions = NULL;
Damien Miller15e7d4b2000-09-29 10:57:35 +1100138
Damien Millerdfc24252008-02-10 22:29:40 +1100139#define SUBSYSTEM_NONE 0
140#define SUBSYSTEM_EXT 1
141#define SUBSYSTEM_INT_SFTP 2
142
Damien Millerad833b32000-08-23 10:46:23 +1000143#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000144login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000145#endif
146
Darren Tucker3e33cec2003-10-02 16:12:36 +1000147static int is_child = 0;
148
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000149/* Name and directory of socket for authentication agent forwarding. */
150static char *auth_sock_name = NULL;
151static char *auth_sock_dir = NULL;
152
153/* removes the agent forwarding socket */
154
155static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000156auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000157{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000158 if (auth_sock_name != NULL) {
159 temporarily_use_uid(pw);
160 unlink(auth_sock_name);
161 rmdir(auth_sock_dir);
162 auth_sock_name = NULL;
163 restore_uid();
164 }
165}
166
167static int
168auth_input_request_forwarding(struct passwd * pw)
169{
170 Channel *nc;
Damien Miller7207f642008-05-19 15:34:50 +1000171 int sock = -1;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000172 struct sockaddr_un sunaddr;
173
174 if (auth_sock_name != NULL) {
175 error("authentication forwarding requested twice.");
176 return 0;
177 }
178
179 /* Temporarily drop privileged uid for mkdir/bind. */
180 temporarily_use_uid(pw);
181
182 /* Allocate a buffer for the socket name, and format the name. */
Damien Miller7207f642008-05-19 15:34:50 +1000183 auth_sock_dir = xstrdup("/tmp/ssh-XXXXXXXXXX");
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000184
185 /* Create private directory for socket */
186 if (mkdtemp(auth_sock_dir) == NULL) {
187 packet_send_debug("Agent forwarding disabled: "
188 "mkdtemp() failed: %.100s", strerror(errno));
189 restore_uid();
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000190 xfree(auth_sock_dir);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000191 auth_sock_dir = NULL;
Damien Miller7207f642008-05-19 15:34:50 +1000192 goto authsock_err;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000193 }
Damien Miller7207f642008-05-19 15:34:50 +1000194
195 xasprintf(&auth_sock_name, "%s/agent.%ld",
196 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000197
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000198 /* Create the socket. */
199 sock = socket(AF_UNIX, SOCK_STREAM, 0);
Damien Miller7207f642008-05-19 15:34:50 +1000200 if (sock < 0) {
201 error("socket: %.100s", strerror(errno));
202 restore_uid();
203 goto authsock_err;
204 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000205
206 /* Bind it to the name. */
207 memset(&sunaddr, 0, sizeof(sunaddr));
208 sunaddr.sun_family = AF_UNIX;
209 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
210
Damien Miller7207f642008-05-19 15:34:50 +1000211 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0) {
212 error("bind: %.100s", strerror(errno));
213 restore_uid();
214 goto authsock_err;
215 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000216
217 /* Restore the privileged uid. */
218 restore_uid();
219
220 /* Start listening on the socket. */
Damien Miller7207f642008-05-19 15:34:50 +1000221 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
222 error("listen: %.100s", strerror(errno));
223 goto authsock_err;
224 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000225
226 /* Allocate a channel for the authentication agent socket. */
227 nc = channel_new("auth socket",
228 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
229 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000230 0, "auth socket", 1);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000231 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
232 return 1;
Damien Miller7207f642008-05-19 15:34:50 +1000233
234 authsock_err:
235 if (auth_sock_name != NULL)
236 xfree(auth_sock_name);
237 if (auth_sock_dir != NULL) {
238 rmdir(auth_sock_dir);
239 xfree(auth_sock_dir);
240 }
241 if (sock != -1)
242 close(sock);
243 auth_sock_name = NULL;
244 auth_sock_dir = NULL;
245 return 0;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000246}
247
Darren Tucker1921ed92004-02-10 13:23:28 +1100248static void
249display_loginmsg(void)
250{
Damien Miller46d38de2005-07-17 17:02:09 +1000251 if (buffer_len(&loginmsg) > 0) {
252 buffer_append(&loginmsg, "\0", 1);
253 printf("%s", (char *)buffer_ptr(&loginmsg));
254 buffer_clear(&loginmsg);
255 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100256}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000257
Ben Lindstromb31783d2001-03-22 02:02:12 +0000258void
259do_authenticated(Authctxt *authctxt)
260{
Damien Miller97f39ae2003-02-24 11:57:01 +1100261 setproctitle("%s", authctxt->pw->pw_name);
262
Ben Lindstromb31783d2001-03-22 02:02:12 +0000263 /* setup the channel layer */
264 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
265 channel_permit_all_opens();
266
267 if (compat20)
268 do_authenticated2(authctxt);
269 else
270 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000271
Darren Tucker3e33cec2003-10-02 16:12:36 +1000272 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000273}
274
Damien Millerb38eff82000-04-01 11:09:21 +1000275/*
Damien Millerb38eff82000-04-01 11:09:21 +1000276 * Prepares for an interactive session. This is called after the user has
277 * been successfully authenticated. During this message exchange, pseudo
278 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
279 * are requested, etc.
280 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000281static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000282do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000283{
284 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000285 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100286 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000287 int enable_compression_after_reply = 0;
288 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000289
290 s = session_new();
Darren Tucker172a5e82005-01-20 10:55:46 +1100291 if (s == NULL) {
292 error("no more sessions");
293 return;
294 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000295 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000296 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000297
Damien Millerb38eff82000-04-01 11:09:21 +1000298 /*
299 * We stay in this loop until the client requests to execute a shell
300 * or a command.
301 */
302 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000303 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000304
305 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100306 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000307
308 /* Process the packet. */
309 switch (type) {
310 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000311 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100312 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000313 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000314 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100315 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000316 break;
317 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000318 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000319 debug2("compression disabled");
320 break;
321 }
Damien Millerb38eff82000-04-01 11:09:21 +1000322 /* Enable compression after we have responded with SUCCESS. */
323 enable_compression_after_reply = 1;
324 success = 1;
325 break;
326
327 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000328 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000329 break;
330
331 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000332 s->auth_proto = packet_get_string(&proto_len);
333 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000334
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000335 screen_flag = packet_get_protocol_flags() &
336 SSH_PROTOFLAG_SCREEN_NUMBER;
337 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
338
339 if (packet_remaining() == 4) {
340 if (!screen_flag)
341 debug2("Buggy client: "
342 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000343 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000344 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000345 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000346 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100347 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000348 success = session_setup_x11fwd(s);
349 if (!success) {
350 xfree(s->auth_proto);
351 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000352 s->auth_proto = NULL;
353 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000354 }
Damien Millerb38eff82000-04-01 11:09:21 +1000355 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000356
357 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
Damien Miller4f755cd2008-05-19 14:57:41 +1000358 if (!options.allow_agent_forwarding ||
359 no_agent_forwarding_flag || compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +1000360 debug("Authentication agent forwarding not permitted for this authentication.");
361 break;
362 }
363 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000364 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000365 break;
366
367 case SSH_CMSG_PORT_FORWARD_REQUEST:
368 if (no_port_forwarding_flag) {
369 debug("Port forwarding not permitted for this authentication.");
370 break;
371 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100372 if (!options.allow_tcp_forwarding) {
373 debug("Port forwarding not permitted.");
374 break;
375 }
Damien Millerb38eff82000-04-01 11:09:21 +1000376 debug("Received TCP/IP port forwarding request.");
Darren Tuckere7d4b192006-07-12 22:17:10 +1000377 if (channel_input_port_forward_request(s->pw->pw_uid == 0,
378 options.gateway_ports) < 0) {
379 debug("Port forwarding failed.");
380 break;
381 }
Damien Millerb38eff82000-04-01 11:09:21 +1000382 success = 1;
383 break;
384
385 case SSH_CMSG_MAX_PACKET_SIZE:
386 if (packet_set_maxsize(packet_get_int()) > 0)
387 success = 1;
388 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100389
Damien Millerb38eff82000-04-01 11:09:21 +1000390 case SSH_CMSG_EXEC_SHELL:
391 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000392 if (type == SSH_CMSG_EXEC_CMD) {
393 command = packet_get_string(&dlen);
394 debug("Exec command '%.500s'", command);
Damien Miller7207f642008-05-19 15:34:50 +1000395 if (do_exec(s, command) != 0)
396 packet_disconnect(
397 "command execution failed");
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000398 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000399 } else {
Damien Miller7207f642008-05-19 15:34:50 +1000400 if (do_exec(s, NULL) != 0)
401 packet_disconnect(
402 "shell execution failed");
Damien Millerb38eff82000-04-01 11:09:21 +1000403 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100404 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000405 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000406 return;
407
408 default:
409 /*
410 * Any unknown messages in this phase are ignored,
411 * and a failure message is returned.
412 */
Damien Miller996acd22003-04-09 20:59:48 +1000413 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000414 }
415 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
416 packet_send();
417 packet_write_wait();
418
419 /* Enable compression now that we have replied if appropriate. */
420 if (enable_compression_after_reply) {
421 enable_compression_after_reply = 0;
422 packet_start_compression(compression_level);
423 }
424 }
425}
426
Damien Miller7207f642008-05-19 15:34:50 +1000427#define USE_PIPES
Damien Millerb38eff82000-04-01 11:09:21 +1000428/*
429 * This is called to fork and execute a command when we have no tty. This
430 * will call do_child from the child, and server_loop from the parent after
431 * setting up file descriptors and such.
432 */
Damien Miller7207f642008-05-19 15:34:50 +1000433int
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000434do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000435{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000436 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000437
438#ifdef USE_PIPES
439 int pin[2], pout[2], perr[2];
Damien Miller7207f642008-05-19 15:34:50 +1000440
Damien Millerb38eff82000-04-01 11:09:21 +1000441 /* Allocate pipes for communicating with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000442 if (pipe(pin) < 0) {
443 error("%s: pipe in: %.100s", __func__, strerror(errno));
444 return -1;
445 }
446 if (pipe(pout) < 0) {
447 error("%s: pipe out: %.100s", __func__, strerror(errno));
448 close(pin[0]);
449 close(pin[1]);
450 return -1;
451 }
452 if (pipe(perr) < 0) {
453 error("%s: pipe err: %.100s", __func__, strerror(errno));
454 close(pin[0]);
455 close(pin[1]);
456 close(pout[0]);
457 close(pout[1]);
458 return -1;
459 }
460#else
Damien Millerb38eff82000-04-01 11:09:21 +1000461 int inout[2], err[2];
Damien Miller7207f642008-05-19 15:34:50 +1000462
Damien Millerb38eff82000-04-01 11:09:21 +1000463 /* Uses socket pairs to communicate with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000464 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0) {
465 error("%s: socketpair #1: %.100s", __func__, strerror(errno));
466 return -1;
467 }
468 if (socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0) {
469 error("%s: socketpair #2: %.100s", __func__, strerror(errno));
470 close(inout[0]);
471 close(inout[1]);
472 return -1;
473 }
474#endif
475
Damien Millerb38eff82000-04-01 11:09:21 +1000476 if (s == NULL)
477 fatal("do_exec_no_pty: no session");
478
Damien Millere247cc42000-05-07 12:03:14 +1000479 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000480
Damien Millerb38eff82000-04-01 11:09:21 +1000481 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000482 switch ((pid = fork())) {
483 case -1:
484 error("%s: fork: %.100s", __func__, strerror(errno));
485#ifdef USE_PIPES
486 close(pin[0]);
487 close(pin[1]);
488 close(pout[0]);
489 close(pout[1]);
490 close(perr[0]);
491 close(perr[1]);
492#else
493 close(inout[0]);
494 close(inout[1]);
495 close(err[0]);
496 close(err[1]);
497#endif
498 return -1;
499 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000500 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000501
Damien Millerb38eff82000-04-01 11:09:21 +1000502 /* Child. Reinitialize the log since the pid has changed. */
Damien Miller7207f642008-05-19 15:34:50 +1000503 log_init(__progname, options.log_level,
504 options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000505
506 /*
507 * Create a new session and process group since the 4.4BSD
508 * setlogin() affects the entire process group.
509 */
510 if (setsid() < 0)
511 error("setsid failed: %.100s", strerror(errno));
512
513#ifdef USE_PIPES
514 /*
515 * Redirect stdin. We close the parent side of the socket
516 * pair, and make the child side the standard input.
517 */
518 close(pin[1]);
519 if (dup2(pin[0], 0) < 0)
520 perror("dup2 stdin");
521 close(pin[0]);
522
523 /* Redirect stdout. */
524 close(pout[0]);
525 if (dup2(pout[1], 1) < 0)
526 perror("dup2 stdout");
527 close(pout[1]);
528
529 /* Redirect stderr. */
530 close(perr[0]);
531 if (dup2(perr[1], 2) < 0)
532 perror("dup2 stderr");
533 close(perr[1]);
Damien Miller7207f642008-05-19 15:34:50 +1000534#else
Damien Millerb38eff82000-04-01 11:09:21 +1000535 /*
536 * Redirect stdin, stdout, and stderr. Stdin and stdout will
537 * use the same socket, as some programs (particularly rdist)
538 * seem to depend on it.
539 */
540 close(inout[1]);
541 close(err[1]);
542 if (dup2(inout[0], 0) < 0) /* stdin */
543 perror("dup2 stdin");
Damien Miller7207f642008-05-19 15:34:50 +1000544 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
Damien Millerb38eff82000-04-01 11:09:21 +1000545 perror("dup2 stdout");
Damien Miller7207f642008-05-19 15:34:50 +1000546 close(inout[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000547 if (dup2(err[0], 2) < 0) /* stderr */
548 perror("dup2 stderr");
Damien Miller7207f642008-05-19 15:34:50 +1000549 close(err[0]);
550#endif
551
Damien Millerb38eff82000-04-01 11:09:21 +1000552
Tim Rice81ed5182002-09-25 17:38:46 -0700553#ifdef _UNICOS
554 cray_init_job(s->pw); /* set up cray jid and tmpdir */
555#endif
556
Damien Millerb38eff82000-04-01 11:09:21 +1000557 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000558 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000559 /* NOTREACHED */
Damien Miller7207f642008-05-19 15:34:50 +1000560 default:
561 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000562 }
Damien Miller7207f642008-05-19 15:34:50 +1000563
Tim Rice81ed5182002-09-25 17:38:46 -0700564#ifdef _UNICOS
565 signal(WJSIGNAL, cray_job_termination_handler);
566#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100567#ifdef HAVE_CYGWIN
568 if (is_winnt)
569 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
570#endif
Damien Miller7207f642008-05-19 15:34:50 +1000571
Damien Millerb38eff82000-04-01 11:09:21 +1000572 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000573 /* Set interactive/non-interactive mode. */
574 packet_set_interactive(s->display != NULL);
Damien Miller7207f642008-05-19 15:34:50 +1000575
576 /*
577 * Clear loginmsg, since it's the child's responsibility to display
578 * it to the user, otherwise multiple sessions may accumulate
579 * multiple copies of the login messages.
580 */
581 buffer_clear(&loginmsg);
582
Damien Millerb38eff82000-04-01 11:09:21 +1000583#ifdef USE_PIPES
584 /* We are the parent. Close the child sides of the pipes. */
585 close(pin[0]);
586 close(pout[1]);
587 close(perr[1]);
588
Damien Millerefb4afe2000-04-12 18:45:05 +1000589 if (compat20) {
Darren Tucker723e9452004-06-22 12:57:08 +1000590 if (s->is_subsystem) {
591 close(perr[0]);
592 perr[0] = -1;
593 }
594 session_set_fds(s, pin[1], pout[0], perr[0]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000595 } else {
596 /* Enter the interactive session. */
597 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000598 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000599 }
Damien Miller7207f642008-05-19 15:34:50 +1000600#else
Damien Millerb38eff82000-04-01 11:09:21 +1000601 /* We are the parent. Close the child sides of the socket pairs. */
602 close(inout[0]);
603 close(err[0]);
604
605 /*
606 * Enter the interactive session. Note: server_loop must be able to
607 * handle the case that fdin and fdout are the same.
608 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000609 if (compat20) {
Damien Miller7207f642008-05-19 15:34:50 +1000610 session_set_fds(s, inout[1], inout[1],
611 s->is_subsystem ? -1 : err[1]);
612 if (s->is_subsystem)
613 close(err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000614 } else {
615 server_loop(pid, inout[1], inout[1], err[1]);
616 /* server_loop has closed inout[1] and err[1]. */
617 }
Damien Miller7207f642008-05-19 15:34:50 +1000618#endif
619 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000620}
621
622/*
623 * This is called to fork and execute a command when we have a tty. This
624 * will call do_child from the child, and server_loop from the parent after
625 * setting up file descriptors, controlling tty, updating wtmp, utmp,
626 * lastlog, and other such operations.
627 */
Damien Miller7207f642008-05-19 15:34:50 +1000628int
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000629do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000630{
Damien Millerb38eff82000-04-01 11:09:21 +1000631 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000632 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000633
634 if (s == NULL)
635 fatal("do_exec_pty: no session");
636 ptyfd = s->ptyfd;
637 ttyfd = s->ttyfd;
638
Damien Miller7207f642008-05-19 15:34:50 +1000639 /*
640 * Create another descriptor of the pty master side for use as the
641 * standard input. We could use the original descriptor, but this
642 * simplifies code in server_loop. The descriptor is bidirectional.
643 * Do this before forking (and cleanup in the child) so as to
644 * detect and gracefully fail out-of-fd conditions.
645 */
646 if ((fdout = dup(ptyfd)) < 0) {
647 error("%s: dup #1: %s", __func__, strerror(errno));
648 close(ttyfd);
649 close(ptyfd);
650 return -1;
651 }
652 /* we keep a reference to the pty master */
653 if ((ptymaster = dup(ptyfd)) < 0) {
654 error("%s: dup #2: %s", __func__, strerror(errno));
655 close(ttyfd);
656 close(ptyfd);
657 close(fdout);
658 return -1;
659 }
660
Damien Millerb38eff82000-04-01 11:09:21 +1000661 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000662 switch ((pid = fork())) {
663 case -1:
664 error("%s: fork: %.100s", __func__, strerror(errno));
665 close(fdout);
666 close(ptymaster);
667 close(ttyfd);
668 close(ptyfd);
669 return -1;
670 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000671 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000672
Damien Miller7207f642008-05-19 15:34:50 +1000673 close(fdout);
674 close(ptymaster);
675
Damien Miller942da032000-08-18 13:59:06 +1000676 /* Child. Reinitialize the log because the pid has changed. */
Damien Miller7207f642008-05-19 15:34:50 +1000677 log_init(__progname, options.log_level,
678 options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000679 /* Close the master side of the pseudo tty. */
680 close(ptyfd);
681
682 /* Make the pseudo tty our controlling tty. */
683 pty_make_controlling_tty(&ttyfd, s->tty);
684
Damien Miller9c751422001-10-10 15:02:46 +1000685 /* Redirect stdin/stdout/stderr from the pseudo tty. */
686 if (dup2(ttyfd, 0) < 0)
687 error("dup2 stdin: %s", strerror(errno));
688 if (dup2(ttyfd, 1) < 0)
689 error("dup2 stdout: %s", strerror(errno));
690 if (dup2(ttyfd, 2) < 0)
691 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000692
693 /* Close the extra descriptor for the pseudo tty. */
694 close(ttyfd);
695
Damien Miller942da032000-08-18 13:59:06 +1000696 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000697#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700698 if (!(options.use_login && command == NULL)) {
699#ifdef _UNICOS
700 cray_init_job(s->pw); /* set up cray jid and tmpdir */
701#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100702 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700703 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000704# ifdef LOGIN_NEEDS_UTMPX
705 else
706 do_pre_login(s);
707# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000708#endif
Damien Miller7207f642008-05-19 15:34:50 +1000709 /*
710 * Do common processing for the child, such as execing
711 * the command.
712 */
713 do_child(s, command);
714 /* NOTREACHED */
715 default:
716 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000717 }
Damien Miller7207f642008-05-19 15:34:50 +1000718
Tim Rice81ed5182002-09-25 17:38:46 -0700719#ifdef _UNICOS
720 signal(WJSIGNAL, cray_job_termination_handler);
721#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100722#ifdef HAVE_CYGWIN
723 if (is_winnt)
724 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
725#endif
Damien Miller7207f642008-05-19 15:34:50 +1000726
Damien Millerb38eff82000-04-01 11:09:21 +1000727 s->pid = pid;
728
729 /* Parent. Close the slave side of the pseudo tty. */
730 close(ttyfd);
731
Damien Millerb38eff82000-04-01 11:09:21 +1000732 /* Enter interactive session. */
Damien Miller7207f642008-05-19 15:34:50 +1000733 s->ptymaster = ptymaster;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000734 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000735 if (compat20) {
736 session_set_fds(s, ptyfd, fdout, -1);
737 } else {
738 server_loop(pid, ptyfd, fdout, -1);
739 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000740 }
Damien Miller7207f642008-05-19 15:34:50 +1000741 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000742}
743
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000744#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000745static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000746do_pre_login(Session *s)
747{
748 socklen_t fromlen;
749 struct sockaddr_storage from;
750 pid_t pid = getpid();
751
752 /*
753 * Get IP address of client. If the connection is not a socket, let
754 * the address be 0.0.0.0.
755 */
756 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000757 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000758 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000759 if (getpeername(packet_get_connection_in(),
Damien Miller90967402006-03-26 14:07:26 +1100760 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000761 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000762 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000763 }
764 }
765
766 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000767 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000768 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000769}
770#endif
771
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000772/*
773 * This is called to fork and execute a command. If another command is
774 * to be forced, execute that instead.
775 */
Damien Miller7207f642008-05-19 15:34:50 +1000776int
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000777do_exec(Session *s, const char *command)
778{
Damien Miller7207f642008-05-19 15:34:50 +1000779 int ret;
780
Damien Millere2754432006-07-24 14:06:47 +1000781 if (options.adm_forced_command) {
782 original_command = command;
783 command = options.adm_forced_command;
Damien Millerd8cb1f12008-02-10 22:40:12 +1100784 if (strcmp(INTERNAL_SFTP_NAME, command) == 0)
785 s->is_subsystem = SUBSYSTEM_INT_SFTP;
786 else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100787 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millere2754432006-07-24 14:06:47 +1000788 debug("Forced command (config) '%.900s'", command);
789 } else if (forced_command) {
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000790 original_command = command;
791 command = forced_command;
Damien Millerd8cb1f12008-02-10 22:40:12 +1100792 if (strcmp(INTERNAL_SFTP_NAME, command) == 0)
793 s->is_subsystem = SUBSYSTEM_INT_SFTP;
794 else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100795 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millere2754432006-07-24 14:06:47 +1000796 debug("Forced command (key option) '%.900s'", command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000797 }
798
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100799#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100800 if (command != NULL)
801 PRIVSEP(audit_run_command(command));
802 else if (s->ttyfd == -1) {
803 char *shell = s->pw->pw_shell;
804
805 if (shell[0] == '\0') /* empty shell means /bin/sh */
806 shell =_PATH_BSHELL;
807 PRIVSEP(audit_run_command(shell));
808 }
809#endif
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000810 if (s->ttyfd != -1)
Damien Miller7207f642008-05-19 15:34:50 +1000811 ret = do_exec_pty(s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000812 else
Damien Miller7207f642008-05-19 15:34:50 +1000813 ret = do_exec_no_pty(s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000814
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000815 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000816
Darren Tucker09991742004-07-17 17:05:14 +1000817 /*
818 * Clear loginmsg: it's the child's responsibility to display
819 * it to the user, otherwise multiple sessions may accumulate
820 * multiple copies of the login messages.
821 */
822 buffer_clear(&loginmsg);
Damien Miller7207f642008-05-19 15:34:50 +1000823
824 return ret;
Darren Tucker09991742004-07-17 17:05:14 +1000825}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000826
Damien Miller942da032000-08-18 13:59:06 +1000827/* administrative, login(1)-like work */
828void
Damien Miller69b69aa2000-10-28 14:19:58 +1100829do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000830{
Damien Miller942da032000-08-18 13:59:06 +1000831 socklen_t fromlen;
832 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000833 struct passwd * pw = s->pw;
834 pid_t pid = getpid();
835
836 /*
837 * Get IP address of client. If the connection is not a socket, let
838 * the address be 0.0.0.0.
839 */
840 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000841 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000842 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000843 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000844 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000845 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000846 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000847 }
848 }
849
850 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000851 if (!use_privsep)
852 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
853 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000854 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000855 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000856
Kevin Steves092f2ef2000-10-14 13:36:13 +0000857#ifdef USE_PAM
858 /*
859 * If password change is needed, do it now.
860 * This needs to occur before the ~/.hushlogin check.
861 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100862 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
863 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000864 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100865 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000866 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000867 }
868#endif
869
Damien Millercf205e82001-04-16 18:29:15 +1000870 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000871 return;
872
Darren Tucker1921ed92004-02-10 13:23:28 +1100873 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000874
Damien Millercf205e82001-04-16 18:29:15 +1000875 do_motd();
876}
877
878/*
879 * Display the message of the day.
880 */
881void
882do_motd(void)
883{
884 FILE *f;
885 char buf[256];
886
Damien Miller942da032000-08-18 13:59:06 +1000887 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000888#ifdef HAVE_LOGIN_CAP
889 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
890 "/etc/motd"), "r");
891#else
Damien Miller942da032000-08-18 13:59:06 +1000892 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000893#endif
Damien Miller942da032000-08-18 13:59:06 +1000894 if (f) {
895 while (fgets(buf, sizeof(buf), f))
896 fputs(buf, stdout);
897 fclose(f);
898 }
899 }
900}
901
Kevin Steves8f63caa2001-07-04 18:23:02 +0000902
903/*
904 * Check for quiet login, either .hushlogin or command given.
905 */
906int
907check_quietlogin(Session *s, const char *command)
908{
909 char buf[256];
910 struct passwd *pw = s->pw;
911 struct stat st;
912
913 /* Return 1 if .hushlogin exists or a command given. */
914 if (command != NULL)
915 return 1;
916 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
917#ifdef HAVE_LOGIN_CAP
918 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
919 return 1;
920#else
921 if (stat(buf, &st) >= 0)
922 return 1;
923#endif
924 return 0;
925}
926
Damien Millerb38eff82000-04-01 11:09:21 +1000927/*
928 * Sets the value of the given variable in the environment. If the variable
929 * already exists, its value is overriden.
930 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000931void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000932child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100933 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000934{
Damien Millerb38eff82000-04-01 11:09:21 +1000935 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000936 u_int envsize;
937 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000938
939 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000940 * If we're passed an uninitialized list, allocate a single null
941 * entry before continuing.
942 */
943 if (*envp == NULL && *envsizep == 0) {
944 *envp = xmalloc(sizeof(char *));
945 *envp[0] = NULL;
946 *envsizep = 1;
947 }
948
949 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000950 * Find the slot where the value should be stored. If the variable
951 * already exists, we reuse the slot; otherwise we append a new slot
952 * at the end of the array, expanding if necessary.
953 */
954 env = *envp;
955 namelen = strlen(name);
956 for (i = 0; env[i]; i++)
957 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
958 break;
959 if (env[i]) {
960 /* Reuse the slot. */
961 xfree(env[i]);
962 } else {
963 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000964 envsize = *envsizep;
965 if (i >= envsize - 1) {
966 if (envsize >= 1000)
967 fatal("child_set_env: too many env vars");
968 envsize += 50;
Damien Miller36812092006-03-26 14:22:47 +1100969 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000970 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000971 }
972 /* Need to set the NULL pointer at end of array beyond the new slot. */
973 env[i + 1] = NULL;
974 }
975
976 /* Allocate space and format the variable in the appropriate slot. */
977 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
978 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
979}
980
981/*
982 * Reads environment variables from the given file and adds/overrides them
983 * into the environment. If the file does not exist, this does nothing.
984 * Otherwise, it must consist of empty lines, comments (line starts with '#')
985 * and assignments of the form name=value. No other forms are allowed.
986 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000987static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000988read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100989 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000990{
991 FILE *f;
992 char buf[4096];
993 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +1000994 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000995
996 f = fopen(filename, "r");
997 if (!f)
998 return;
999
1000 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +10001001 if (++lineno > 1000)
1002 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +10001003 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
1004 ;
1005 if (!*cp || *cp == '#' || *cp == '\n')
1006 continue;
Damien Miller14b017d2007-09-17 16:09:15 +10001007
1008 cp[strcspn(cp, "\n")] = '\0';
1009
Damien Millerb38eff82000-04-01 11:09:21 +10001010 value = strchr(cp, '=');
1011 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +10001012 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
1013 filename);
Damien Millerb38eff82000-04-01 11:09:21 +10001014 continue;
1015 }
Damien Millerb1715dc2000-05-30 13:44:51 +10001016 /*
1017 * Replace the equals sign by nul, and advance value to
1018 * the value string.
1019 */
Damien Millerb38eff82000-04-01 11:09:21 +10001020 *value = '\0';
1021 value++;
1022 child_set_env(env, envsize, cp, value);
1023 }
1024 fclose(f);
1025}
1026
Darren Tuckere1a790d2003-09-16 11:52:19 +10001027#ifdef HAVE_ETC_DEFAULT_LOGIN
1028/*
1029 * Return named variable from specified environment, or NULL if not present.
1030 */
1031static char *
1032child_get_env(char **env, const char *name)
1033{
1034 int i;
1035 size_t len;
1036
1037 len = strlen(name);
1038 for (i=0; env[i] != NULL; i++)
1039 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
1040 return(env[i] + len + 1);
1041 return NULL;
1042}
1043
1044/*
1045 * Read /etc/default/login.
1046 * We pick up the PATH (or SUPATH for root) and UMASK.
1047 */
1048static void
1049read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
1050{
1051 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +10001052 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +10001053 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +10001054
1055 /*
1056 * We don't want to copy the whole file to the child's environment,
1057 * so we use a temporary environment and copy the variables we're
1058 * interested in.
1059 */
1060 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
1061
Darren Tuckerc11b1e82003-09-19 20:56:51 +10001062 if (tmpenv == NULL)
1063 return;
1064
Darren Tuckere1a790d2003-09-16 11:52:19 +10001065 if (uid == 0)
1066 var = child_get_env(tmpenv, "SUPATH");
1067 else
1068 var = child_get_env(tmpenv, "PATH");
1069 if (var != NULL)
1070 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +11001071
Darren Tuckere1a790d2003-09-16 11:52:19 +10001072 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
1073 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +10001074 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +11001075
Darren Tuckere1a790d2003-09-16 11:52:19 +10001076 for (i = 0; tmpenv[i] != NULL; i++)
1077 xfree(tmpenv[i]);
1078 xfree(tmpenv);
1079}
1080#endif /* HAVE_ETC_DEFAULT_LOGIN */
1081
Damien Miller7dff8692005-05-26 11:34:51 +10001082void
1083copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +10001084{
Damien Millerbb9ffc12002-01-08 10:59:32 +11001085 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +10001086 int i;
1087
Damien Millerbb9ffc12002-01-08 10:59:32 +11001088 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001089 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001090
Damien Millerbb9ffc12002-01-08 10:59:32 +11001091 for(i = 0; source[i] != NULL; i++) {
1092 var_name = xstrdup(source[i]);
1093 if ((var_val = strstr(var_name, "=")) == NULL) {
1094 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001095 continue;
Damien Millerb38eff82000-04-01 11:09:21 +10001096 }
Damien Millerbb9ffc12002-01-08 10:59:32 +11001097 *var_val++ = '\0';
1098
1099 debug3("Copy environment: %s=%s", var_name, var_val);
1100 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +11001101
Damien Millerbb9ffc12002-01-08 10:59:32 +11001102 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001103 }
1104}
Damien Millercb5e44a2000-09-29 12:12:36 +11001105
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001106static char **
1107do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +10001108{
Damien Millerb38eff82000-04-01 11:09:21 +10001109 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001110 u_int i, envsize;
Damien Millerad5ecbf2006-07-24 15:03:06 +10001111 char **env, *laddr;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001112 struct passwd *pw = s->pw;
Damien Millerad5ecbf2006-07-24 15:03:06 +10001113#ifndef HAVE_LOGIN_CAP
1114 char *path = NULL;
1115#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001116
Damien Millerb38eff82000-04-01 11:09:21 +10001117 /* Initialize the environment. */
1118 envsize = 100;
Darren Tuckerd8093e42006-05-04 16:24:34 +10001119 env = xcalloc(envsize, sizeof(char *));
Damien Millerb38eff82000-04-01 11:09:21 +10001120 env[0] = NULL;
1121
Damien Millerbac2d8a2000-09-05 16:13:06 +11001122#ifdef HAVE_CYGWIN
1123 /*
1124 * The Windows environment contains some setting which are
1125 * important for a running system. They must not be dropped.
1126 */
Darren Tucker14c372d2004-08-30 20:42:08 +10001127 {
1128 char **p;
1129
1130 p = fetch_windows_environment();
1131 copy_environment(p, &env, &envsize);
1132 free_windows_environment(p);
1133 }
Damien Millerbac2d8a2000-09-05 16:13:06 +11001134#endif
1135
Darren Tucker0efd1552003-08-26 11:49:55 +10001136#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001137 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001138 * the childs environment as they see fit
1139 */
1140 ssh_gssapi_do_child(&env, &envsize);
1141#endif
1142
Damien Millerb38eff82000-04-01 11:09:21 +10001143 if (!options.use_login) {
1144 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001145 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001146 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001147 s->env[i].val);
1148
Damien Millerb38eff82000-04-01 11:09:21 +10001149 child_set_env(&env, &envsize, "USER", pw->pw_name);
1150 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001151#ifdef _AIX
1152 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1153#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001154 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001155#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001156 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1157 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1158 else
1159 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001160#else /* HAVE_LOGIN_CAP */
1161# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001162 /*
1163 * There's no standard path on Windows. The path contains
1164 * important components pointing to the system directories,
1165 * needed for loading shared libraries. So the path better
1166 * remains intact here.
1167 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001168# ifdef HAVE_ETC_DEFAULT_LOGIN
1169 read_etc_default_login(&env, &envsize, pw->pw_uid);
1170 path = child_get_env(env, "PATH");
1171# endif /* HAVE_ETC_DEFAULT_LOGIN */
1172 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001173 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001174 s->pw->pw_uid == 0 ?
1175 SUPERUSER_PATH : _PATH_STDPATH);
1176 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001177# endif /* HAVE_CYGWIN */
1178#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001179
1180 snprintf(buf, sizeof buf, "%.200s/%.50s",
1181 _PATH_MAILDIR, pw->pw_name);
1182 child_set_env(&env, &envsize, "MAIL", buf);
1183
1184 /* Normal systems set SHELL by default. */
1185 child_set_env(&env, &envsize, "SHELL", shell);
1186 }
1187 if (getenv("TZ"))
1188 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1189
1190 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001191 if (!options.use_login) {
1192 while (custom_environment) {
1193 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001194 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001195
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001196 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001197 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001198 if (str[i] == '=') {
1199 str[i] = 0;
1200 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001201 }
1202 custom_environment = ce->next;
1203 xfree(ce->s);
1204 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001205 }
Damien Millerb38eff82000-04-01 11:09:21 +10001206 }
1207
Damien Millerf37e2462002-09-19 11:47:55 +10001208 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001209 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001210 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001211 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1212
Damien Miller00111382003-03-10 11:21:17 +11001213 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001214 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001215 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1216 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001217 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1218
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001219 if (s->ttyfd != -1)
1220 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1221 if (s->term)
1222 child_set_env(&env, &envsize, "TERM", s->term);
1223 if (s->display)
1224 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001225 if (original_command)
1226 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1227 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001228
Tim Rice81ed5182002-09-25 17:38:46 -07001229#ifdef _UNICOS
1230 if (cray_tmpdir[0] != '\0')
1231 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1232#endif /* _UNICOS */
1233
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001234 /*
1235 * Since we clear KRB5CCNAME at startup, if it's set now then it
1236 * must have been set by a native authentication method (eg AIX or
1237 * SIA), so copy it to the child.
1238 */
1239 {
1240 char *cp;
1241
1242 if ((cp = getenv("KRB5CCNAME")) != NULL)
1243 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1244 }
1245
Damien Millerb38eff82000-04-01 11:09:21 +10001246#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001247 {
1248 char *cp;
1249
1250 if ((cp = getenv("AUTHSTATE")) != NULL)
1251 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001252 read_environment_file(&env, &envsize, "/etc/environment");
1253 }
Damien Millerb38eff82000-04-01 11:09:21 +10001254#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001255#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001256 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001257 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001258 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001259#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001260#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001261 /*
1262 * Pull in any environment variables that may have
1263 * been set by PAM.
1264 */
Damien Miller4e448a32003-05-14 15:11:48 +10001265 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001266 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001267
Damien Millerc756e9b2003-11-17 21:41:42 +11001268 p = fetch_pam_child_environment();
1269 copy_environment(p, &env, &envsize);
1270 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001271
Damien Millerc756e9b2003-11-17 21:41:42 +11001272 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001273 copy_environment(p, &env, &envsize);
1274 free_pam_environment(p);
1275 }
Damien Millerb38eff82000-04-01 11:09:21 +10001276#endif /* USE_PAM */
1277
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001278 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001279 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001280 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001281
1282 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001283 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001284 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001285 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001286 read_environment_file(&env, &envsize, buf);
1287 }
1288 if (debug_flag) {
1289 /* dump the environment */
1290 fprintf(stderr, "Environment:\n");
1291 for (i = 0; env[i]; i++)
1292 fprintf(stderr, " %.200s\n", env[i]);
1293 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001294 return env;
1295}
1296
1297/*
1298 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1299 * first in this order).
1300 */
1301static void
1302do_rc_files(Session *s, const char *shell)
1303{
1304 FILE *f = NULL;
1305 char cmd[1024];
1306 int do_xauth;
1307 struct stat st;
1308
1309 do_xauth =
1310 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1311
Damien Millera1b48cc2008-03-27 11:02:02 +11001312 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
Damien Miller55360e12008-03-27 11:02:27 +11001313 if (!s->is_subsystem && options.adm_forced_command == NULL &&
Damien Millerff0dd882008-05-19 14:55:02 +10001314 !no_user_rc && stat(_PATH_SSH_USER_RC, &st) >= 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001315 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1316 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1317 if (debug_flag)
1318 fprintf(stderr, "Running %s\n", cmd);
1319 f = popen(cmd, "w");
1320 if (f) {
1321 if (do_xauth)
1322 fprintf(f, "%s %s\n", s->auth_proto,
1323 s->auth_data);
1324 pclose(f);
1325 } else
1326 fprintf(stderr, "Could not run %s\n",
1327 _PATH_SSH_USER_RC);
1328 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1329 if (debug_flag)
1330 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1331 _PATH_SSH_SYSTEM_RC);
1332 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1333 if (f) {
1334 if (do_xauth)
1335 fprintf(f, "%s %s\n", s->auth_proto,
1336 s->auth_data);
1337 pclose(f);
1338 } else
1339 fprintf(stderr, "Could not run %s\n",
1340 _PATH_SSH_SYSTEM_RC);
1341 } else if (do_xauth && options.xauth_location != NULL) {
1342 /* Add authority data to .Xauthority if appropriate. */
1343 if (debug_flag) {
1344 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001345 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001346 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001347 fprintf(stderr,
1348 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001349 options.xauth_location, s->auth_display,
1350 s->auth_proto, s->auth_data);
1351 }
1352 snprintf(cmd, sizeof cmd, "%s -q -",
1353 options.xauth_location);
1354 f = popen(cmd, "w");
1355 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001356 fprintf(f, "remove %s\n",
1357 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001358 fprintf(f, "add %s %s %s\n",
1359 s->auth_display, s->auth_proto,
1360 s->auth_data);
1361 pclose(f);
1362 } else {
1363 fprintf(stderr, "Could not run %s\n",
1364 cmd);
1365 }
1366 }
1367}
1368
1369static void
1370do_nologin(struct passwd *pw)
1371{
1372 FILE *f = NULL;
1373 char buf[1024];
1374
1375#ifdef HAVE_LOGIN_CAP
1376 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1377 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1378 _PATH_NOLOGIN), "r");
1379#else
1380 if (pw->pw_uid)
1381 f = fopen(_PATH_NOLOGIN, "r");
1382#endif
1383 if (f) {
1384 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001385 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001386 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001387 while (fgets(buf, sizeof(buf), f))
1388 fputs(buf, stderr);
1389 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001390 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001391 exit(254);
1392 }
1393}
1394
Damien Millerd8cb1f12008-02-10 22:40:12 +11001395/*
1396 * Chroot into a directory after checking it for safety: all path components
1397 * must be root-owned directories with strict permissions.
1398 */
1399static void
1400safely_chroot(const char *path, uid_t uid)
1401{
1402 const char *cp;
1403 char component[MAXPATHLEN];
1404 struct stat st;
1405
1406 if (*path != '/')
1407 fatal("chroot path does not begin at root");
1408 if (strlen(path) >= sizeof(component))
1409 fatal("chroot path too long");
1410
1411 /*
1412 * Descend the path, checking that each component is a
1413 * root-owned directory with strict permissions.
1414 */
1415 for (cp = path; cp != NULL;) {
1416 if ((cp = strchr(cp, '/')) == NULL)
1417 strlcpy(component, path, sizeof(component));
1418 else {
1419 cp++;
1420 memcpy(component, path, cp - path);
1421 component[cp - path] = '\0';
1422 }
1423
1424 debug3("%s: checking '%s'", __func__, component);
1425
1426 if (stat(component, &st) != 0)
1427 fatal("%s: stat(\"%s\"): %s", __func__,
1428 component, strerror(errno));
1429 if (st.st_uid != 0 || (st.st_mode & 022) != 0)
1430 fatal("bad ownership or modes for chroot "
1431 "directory %s\"%s\"",
1432 cp == NULL ? "" : "component ", component);
1433 if (!S_ISDIR(st.st_mode))
1434 fatal("chroot path %s\"%s\" is not a directory",
1435 cp == NULL ? "" : "component ", component);
1436
1437 }
1438
1439 if (chdir(path) == -1)
1440 fatal("Unable to chdir to chroot path \"%s\": "
1441 "%s", path, strerror(errno));
1442 if (chroot(path) == -1)
1443 fatal("chroot(\"%s\"): %s", path, strerror(errno));
1444 if (chdir("/") == -1)
1445 fatal("%s: chdir(/) after chroot: %s",
1446 __func__, strerror(errno));
1447 verbose("Changed root directory to \"%s\"", path);
1448}
1449
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001450/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001451void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001452do_setusercontext(struct passwd *pw)
1453{
Damien Miller54e37732008-02-10 22:48:55 +11001454 char *chroot_path, *tmp;
1455
Darren Tuckerb8eb5862008-03-27 07:27:20 +11001456#ifdef WITH_SELINUX
1457 /* Cache selinux status for later use */
1458 (void)ssh_selinux_enabled();
1459#endif
1460
Damien Miller1a3ccb02003-02-24 13:04:01 +11001461#ifndef HAVE_CYGWIN
1462 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001463#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001464 {
1465
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001466#ifdef HAVE_SETPCRED
Darren Tucker793e8172003-07-08 21:01:04 +10001467 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1468 fatal("Failed to set process credentials");
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001469#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001470#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001471# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001472 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001473# endif
Damien Millerd3526362004-01-23 14:16:26 +11001474# ifdef USE_PAM
1475 if (options.use_pam) {
Darren Tucker2d963642007-08-13 23:11:56 +10001476 do_pam_setcred(use_privsep);
Damien Millerd3526362004-01-23 14:16:26 +11001477 }
1478# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001479 if (setusercontext(lc, pw, pw->pw_uid,
Damien Millerd8cb1f12008-02-10 22:40:12 +11001480 (LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001481 perror("unable to set user context");
1482 exit(1);
1483 }
1484#else
1485# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1486 /* Sets login uid for accounting */
1487 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1488 error("setluid: %s", strerror(errno));
1489# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1490
1491 if (setlogin(pw->pw_name) < 0)
1492 error("setlogin failed: %s", strerror(errno));
1493 if (setgid(pw->pw_gid) < 0) {
1494 perror("setgid");
1495 exit(1);
1496 }
1497 /* Initialize the group list. */
1498 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1499 perror("initgroups");
1500 exit(1);
1501 }
1502 endgrent();
1503# ifdef USE_PAM
1504 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001505 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001506 * These will have been wiped by the above initgroups() call.
1507 * Reestablish them here.
1508 */
Damien Miller341c6e62003-09-02 23:18:52 +10001509 if (options.use_pam) {
Darren Tucker2d963642007-08-13 23:11:56 +10001510 do_pam_setcred(use_privsep);
Damien Miller341c6e62003-09-02 23:18:52 +10001511 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001512# endif /* USE_PAM */
1513# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1514 irix_setusercontext(pw);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001515# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001516# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001517 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001518# endif /* _AIX */
Damien Millerd8cb1f12008-02-10 22:40:12 +11001519# ifdef USE_LIBIAF
Tim Rice2291c002005-08-26 13:15:19 -07001520 if (set_id(pw->pw_name) != 0) {
1521 exit(1);
1522 }
Damien Millerd8cb1f12008-02-10 22:40:12 +11001523# endif /* USE_LIBIAF */
1524#endif
1525
1526 if (options.chroot_directory != NULL &&
1527 strcasecmp(options.chroot_directory, "none") != 0) {
Damien Miller54e37732008-02-10 22:48:55 +11001528 tmp = tilde_expand_filename(options.chroot_directory,
1529 pw->pw_uid);
1530 chroot_path = percent_expand(tmp, "h", pw->pw_dir,
1531 "u", pw->pw_name, (char *)NULL);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001532 safely_chroot(chroot_path, pw->pw_uid);
Damien Miller54e37732008-02-10 22:48:55 +11001533 free(tmp);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001534 free(chroot_path);
1535 }
1536
1537#ifdef HAVE_LOGIN_CAP
1538 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) {
1539 perror("unable to set user context (setuser)");
1540 exit(1);
1541 }
1542#else
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001543 /* Permanently switch to the desired uid. */
1544 permanently_set_uid(pw);
1545#endif
1546 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001547
1548#ifdef HAVE_CYGWIN
1549 if (is_winnt)
1550#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001551 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1552 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
Damien Miller73b42d22006-04-22 21:26:08 +10001553
1554#ifdef WITH_SELINUX
1555 ssh_selinux_setup_exec_context(pw->pw_name);
1556#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001557}
1558
Ben Lindstrom08105192002-03-22 02:50:06 +00001559static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001560do_pwchange(Session *s)
1561{
Darren Tucker09991742004-07-17 17:05:14 +10001562 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001563 fprintf(stderr, "WARNING: Your password has expired.\n");
1564 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001565 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001566 "You must change your password now and login again!\n");
Darren Tucker33370e02005-02-09 22:17:28 +11001567#ifdef PASSWD_NEEDS_USERNAME
1568 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1569 (char *)NULL);
1570#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001571 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001572#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001573 perror("passwd");
1574 } else {
1575 fprintf(stderr,
1576 "Password change required but no TTY available.\n");
1577 }
1578 exit(1);
1579}
1580
1581static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001582launch_login(struct passwd *pw, const char *hostname)
1583{
1584 /* Launch login(1). */
1585
Ben Lindstrom378a4172002-06-07 14:49:56 +00001586 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001587#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001588 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001589#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001590#ifdef LOGIN_NO_ENDOPT
1591 "-p", "-f", pw->pw_name, (char *)NULL);
1592#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001593 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001594#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001595
1596 /* Login couldn't be executed, die. */
1597
1598 perror("login");
1599 exit(1);
1600}
1601
Darren Tucker23bc8d02004-02-06 16:24:31 +11001602static void
1603child_close_fds(void)
1604{
1605 int i;
1606
1607 if (packet_get_connection_in() == packet_get_connection_out())
1608 close(packet_get_connection_in());
1609 else {
1610 close(packet_get_connection_in());
1611 close(packet_get_connection_out());
1612 }
1613 /*
1614 * Close all descriptors related to channels. They will still remain
1615 * open in the parent.
1616 */
1617 /* XXX better use close-on-exec? -markus */
1618 channel_close_all();
1619
1620 /*
1621 * Close any extra file descriptors. Note that there may still be
1622 * descriptors left by system functions. They will be closed later.
1623 */
1624 endpwent();
1625
1626 /*
Damien Miller788f2122005-11-05 15:14:59 +11001627 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001628 * hanging around in clients. Note that we want to do this after
1629 * initgroups, because at least on Solaris 2.3 it leaves file
1630 * descriptors open.
1631 */
1632 for (i = 3; i < 64; i++)
1633 close(i);
1634}
1635
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001636/*
1637 * Performs common processing for the child, such as setting up the
1638 * environment, closing extra file descriptors, setting the user and group
1639 * ids, and executing the command or shell.
1640 */
Damien Millerdfc24252008-02-10 22:29:40 +11001641#define ARGV_MAX 10
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001642void
1643do_child(Session *s, const char *command)
1644{
1645 extern char **environ;
1646 char **env;
Damien Millerdfc24252008-02-10 22:29:40 +11001647 char *argv[ARGV_MAX];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001648 const char *shell, *shell0, *hostname = NULL;
1649 struct passwd *pw = s->pw;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001650
1651 /* remove hostkey from the child's memory */
1652 destroy_sensitive_data();
1653
Darren Tucker23bc8d02004-02-06 16:24:31 +11001654 /* Force a password change */
1655 if (s->authctxt->force_pwchange) {
1656 do_setusercontext(pw);
1657 child_close_fds();
1658 do_pwchange(s);
1659 exit(1);
1660 }
1661
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001662 /* login(1) is only called if we execute the login shell */
1663 if (options.use_login && command != NULL)
1664 options.use_login = 0;
1665
Tim Rice81ed5182002-09-25 17:38:46 -07001666#ifdef _UNICOS
1667 cray_setup(pw->pw_uid, pw->pw_name, command);
1668#endif /* _UNICOS */
1669
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001670 /*
1671 * Login(1) does this as well, and it needs uid 0 for the "-h"
1672 * switch, so we let login(1) to this for us.
1673 */
1674 if (!options.use_login) {
1675#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001676 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001677 if (!check_quietlogin(s, command))
1678 do_motd();
1679#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001680 /* When PAM is enabled we rely on it to do the nologin check */
1681 if (!options.use_pam)
1682 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001683 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001684 /*
1685 * PAM session modules in do_setusercontext may have
1686 * generated messages, so if this in an interactive
1687 * login then display them too.
1688 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001689 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001690 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001691#endif /* HAVE_OSF_SIA */
1692 }
1693
Darren Tucker69687f42004-09-11 22:17:26 +10001694#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001695 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1696 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001697 display_loginmsg();
1698 exit(254);
1699 }
1700#endif
1701
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001702 /*
1703 * Get the shell from the password data. An empty shell field is
1704 * legal, and means /bin/sh.
1705 */
1706 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001707
1708 /*
1709 * Make sure $SHELL points to the shell from the password file,
1710 * even if shell is overridden from login.conf
1711 */
1712 env = do_setup_env(s, shell);
1713
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001714#ifdef HAVE_LOGIN_CAP
1715 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1716#endif
1717
Damien Millerad833b32000-08-23 10:46:23 +10001718 /* we have to stash the hostname before we close our socket. */
1719 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001720 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001721 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001722 /*
1723 * Close the connection descriptors; note that this is the child, and
1724 * the server will still have the socket open, and it is important
1725 * that we do not shutdown it. Note that the descriptors cannot be
1726 * closed before building the environment, as we call
1727 * get_remote_ipaddr there.
1728 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001729 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001730
Damien Millerb38eff82000-04-01 11:09:21 +10001731 /*
Damien Miller05eda432002-02-10 18:32:28 +11001732 * Must take new environment into use so that .ssh/rc,
1733 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001734 */
1735 environ = env;
1736
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001737#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001738 /*
1739 * At this point, we check to see if AFS is active and if we have
1740 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1741 * if we can (and need to) extend the ticket into an AFS token. If
1742 * we don't do this, we run into potential problems if the user's
1743 * home directory is in AFS and it's not world-readable.
1744 */
1745
1746 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001747 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001748 char cell[64];
1749
1750 debug("Getting AFS token");
1751
1752 k_setpag();
1753
1754 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1755 krb5_afslog(s->authctxt->krb5_ctx,
1756 s->authctxt->krb5_fwd_ccache, cell, NULL);
1757
1758 krb5_afslog_home(s->authctxt->krb5_ctx,
1759 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1760 }
1761#endif
1762
Damien Miller788f2122005-11-05 15:14:59 +11001763 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001764 if (chdir(pw->pw_dir) < 0) {
1765 fprintf(stderr, "Could not chdir to home directory %s: %s\n",
1766 pw->pw_dir, strerror(errno));
1767#ifdef HAVE_LOGIN_CAP
1768 if (login_getcapbool(lc, "requirehome", 0))
1769 exit(1);
1770#endif
1771 }
1772
Damien Millera1939002008-03-15 17:27:58 +11001773 closefrom(STDERR_FILENO + 1);
1774
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001775 if (!options.use_login)
1776 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001777
1778 /* restore SIGPIPE for child */
Damien Miller9ab00b42006-08-05 12:40:11 +10001779 signal(SIGPIPE, SIG_DFL);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001780
Damien Millerdfc24252008-02-10 22:29:40 +11001781 if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
1782 extern int optind, optreset;
1783 int i;
1784 char *p, *args;
1785
1786 setproctitle("%s@internal-sftp-server", s->pw->pw_name);
1787 args = strdup(command ? command : "sftp-server");
1788 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1789 if (i < ARGV_MAX - 1)
1790 argv[i++] = p;
1791 argv[i] = NULL;
1792 optind = optreset = 1;
1793 __progname = argv[0];
Damien Millerd8cb1f12008-02-10 22:40:12 +11001794 exit(sftp_server_main(i, argv, s->pw));
Damien Millerdfc24252008-02-10 22:29:40 +11001795 }
1796
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001797 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001798 launch_login(pw, hostname);
1799 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001800 }
1801
1802 /* Get the last component of the shell name. */
1803 if ((shell0 = strrchr(shell, '/')) != NULL)
1804 shell0++;
1805 else
1806 shell0 = shell;
1807
Damien Millerb38eff82000-04-01 11:09:21 +10001808 /*
1809 * If we have no command, execute the shell. In this case, the shell
1810 * name to be passed in argv[0] is preceded by '-' to indicate that
1811 * this is a login shell.
1812 */
1813 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001814 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001815
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001816 /* Start the shell. Set initial character to '-'. */
1817 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001818
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001819 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1820 >= sizeof(argv0) - 1) {
1821 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001822 perror(shell);
1823 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001824 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001825
1826 /* Execute the shell. */
1827 argv[0] = argv0;
1828 argv[1] = NULL;
1829 execve(shell, argv, env);
1830
1831 /* Executing the shell failed. */
1832 perror(shell);
1833 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001834 }
1835 /*
1836 * Execute the command using the user's shell. This uses the -c
1837 * option to execute the command.
1838 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001839 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001840 argv[1] = "-c";
1841 argv[2] = (char *) command;
1842 argv[3] = NULL;
1843 execve(shell, argv, env);
1844 perror(shell);
1845 exit(1);
1846}
1847
Damien Miller7207f642008-05-19 15:34:50 +10001848void
1849session_unused(int id)
1850{
1851 debug3("%s: session id %d unused", __func__, id);
1852 if (id >= options.max_sessions ||
1853 id >= sessions_nalloc) {
1854 fatal("%s: insane session id %d (max %d nalloc %d)",
1855 __func__, id, options.max_sessions, sessions_nalloc);
1856 }
1857 bzero(&sessions[id], sizeof(*sessions));
1858 sessions[id].self = id;
1859 sessions[id].used = 0;
1860 sessions[id].chanid = -1;
1861 sessions[id].ptyfd = -1;
1862 sessions[id].ttyfd = -1;
1863 sessions[id].ptymaster = -1;
1864 sessions[id].x11_chanids = NULL;
1865 sessions[id].next_unused = sessions_first_unused;
1866 sessions_first_unused = id;
1867}
1868
Damien Millerb38eff82000-04-01 11:09:21 +10001869Session *
1870session_new(void)
1871{
Damien Miller7207f642008-05-19 15:34:50 +10001872 Session *s, *tmp;
1873
1874 if (sessions_first_unused == -1) {
1875 if (sessions_nalloc >= options.max_sessions)
1876 return NULL;
1877 debug2("%s: allocate (allocated %d max %d)",
1878 __func__, sessions_nalloc, options.max_sessions);
1879 tmp = xrealloc(sessions, sessions_nalloc + 1,
1880 sizeof(*sessions));
1881 if (tmp == NULL) {
1882 error("%s: cannot allocate %d sessions",
1883 __func__, sessions_nalloc + 1);
1884 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001885 }
Damien Miller7207f642008-05-19 15:34:50 +10001886 sessions = tmp;
1887 session_unused(sessions_nalloc++);
Damien Millerb38eff82000-04-01 11:09:21 +10001888 }
Damien Miller7207f642008-05-19 15:34:50 +10001889
1890 if (sessions_first_unused >= sessions_nalloc ||
1891 sessions_first_unused < 0) {
1892 fatal("%s: insane first_unused %d max %d nalloc %d",
1893 __func__, sessions_first_unused, options.max_sessions,
1894 sessions_nalloc);
Damien Millerb38eff82000-04-01 11:09:21 +10001895 }
Damien Miller7207f642008-05-19 15:34:50 +10001896
1897 s = &sessions[sessions_first_unused];
1898 if (s->used) {
1899 fatal("%s: session %d already used",
1900 __func__, sessions_first_unused);
1901 }
1902 sessions_first_unused = s->next_unused;
1903 s->used = 1;
1904 s->next_unused = -1;
1905 debug("session_new: session %d", s->self);
1906
1907 return s;
Damien Millerb38eff82000-04-01 11:09:21 +10001908}
1909
Ben Lindstrombba81212001-06-25 05:01:22 +00001910static void
Damien Millerb38eff82000-04-01 11:09:21 +10001911session_dump(void)
1912{
1913 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001914 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001915 Session *s = &sessions[i];
Damien Miller7207f642008-05-19 15:34:50 +10001916
1917 debug("dump: used %d next_unused %d session %d %p "
1918 "channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001919 s->used,
Damien Miller7207f642008-05-19 15:34:50 +10001920 s->next_unused,
Damien Millerb38eff82000-04-01 11:09:21 +10001921 s->self,
1922 s,
1923 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001924 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001925 }
1926}
1927
Damien Millerefb4afe2000-04-12 18:45:05 +10001928int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001929session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001930{
1931 Session *s = session_new();
1932 debug("session_open: channel %d", chanid);
1933 if (s == NULL) {
1934 error("no more sessions");
1935 return 0;
1936 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001937 s->authctxt = authctxt;
1938 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001939 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001940 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001941 debug("session_open: session %d: link with channel %d", s->self, chanid);
1942 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001943 return 1;
1944}
1945
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001946Session *
1947session_by_tty(char *tty)
1948{
1949 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001950 for (i = 0; i < sessions_nalloc; i++) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001951 Session *s = &sessions[i];
1952 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1953 debug("session_by_tty: session %d tty %s", i, tty);
1954 return s;
1955 }
1956 }
1957 debug("session_by_tty: unknown tty %.100s", tty);
1958 session_dump();
1959 return NULL;
1960}
1961
Ben Lindstrombba81212001-06-25 05:01:22 +00001962static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001963session_by_channel(int id)
1964{
1965 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001966 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001967 Session *s = &sessions[i];
1968 if (s->used && s->chanid == id) {
Damien Miller7207f642008-05-19 15:34:50 +10001969 debug("session_by_channel: session %d channel %d",
1970 i, id);
Damien Millerefb4afe2000-04-12 18:45:05 +10001971 return s;
1972 }
1973 }
1974 debug("session_by_channel: unknown channel %d", id);
1975 session_dump();
1976 return NULL;
1977}
1978
Ben Lindstrombba81212001-06-25 05:01:22 +00001979static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10001980session_by_x11_channel(int id)
1981{
1982 int i, j;
1983
Damien Miller7207f642008-05-19 15:34:50 +10001984 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller2b9b0452005-07-17 17:19:24 +10001985 Session *s = &sessions[i];
1986
1987 if (s->x11_chanids == NULL || !s->used)
1988 continue;
1989 for (j = 0; s->x11_chanids[j] != -1; j++) {
1990 if (s->x11_chanids[j] == id) {
1991 debug("session_by_x11_channel: session %d "
1992 "channel %d", s->self, id);
1993 return s;
1994 }
1995 }
1996 }
1997 debug("session_by_x11_channel: unknown channel %d", id);
1998 session_dump();
1999 return NULL;
2000}
2001
2002static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10002003session_by_pid(pid_t pid)
2004{
2005 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00002006 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller7207f642008-05-19 15:34:50 +10002007 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10002008 Session *s = &sessions[i];
2009 if (s->used && s->pid == pid)
2010 return s;
2011 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002012 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002013 session_dump();
2014 return NULL;
2015}
2016
Ben Lindstrombba81212001-06-25 05:01:22 +00002017static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002018session_window_change_req(Session *s)
2019{
2020 s->col = packet_get_int();
2021 s->row = packet_get_int();
2022 s->xpixel = packet_get_int();
2023 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002024 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10002025 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2026 return 1;
2027}
2028
Ben Lindstrombba81212001-06-25 05:01:22 +00002029static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002030session_pty_req(Session *s)
2031{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002032 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00002033 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00002034
Ben Lindstrom49c12602001-06-13 04:37:36 +00002035 if (no_pty_flag) {
2036 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10002037 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002038 }
2039 if (s->ttyfd != -1) {
2040 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10002041 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002042 }
2043
Damien Millerefb4afe2000-04-12 18:45:05 +10002044 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002045
2046 if (compat20) {
2047 s->col = packet_get_int();
2048 s->row = packet_get_int();
2049 } else {
2050 s->row = packet_get_int();
2051 s->col = packet_get_int();
2052 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002053 s->xpixel = packet_get_int();
2054 s->ypixel = packet_get_int();
2055
2056 if (strcmp(s->term, "") == 0) {
2057 xfree(s->term);
2058 s->term = NULL;
2059 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00002060
Damien Millerefb4afe2000-04-12 18:45:05 +10002061 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00002062 debug("Allocating pty.");
Damien Miller7207f642008-05-19 15:34:50 +10002063 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
2064 sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00002065 if (s->term)
2066 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10002067 s->term = NULL;
2068 s->ptyfd = -1;
2069 s->ttyfd = -1;
2070 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10002071 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002072 }
2073 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002074
2075 /* for SSH1 the tty modes length is not given */
2076 if (!compat20)
2077 n_bytes = packet_remaining();
2078 tty_parse_modes(s->ttyfd, &n_bytes);
2079
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002080 if (!use_privsep)
2081 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002082
2083 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10002084 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2085
Damien Miller48b03fc2002-01-22 23:11:40 +11002086 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10002087 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002088 return 1;
2089}
2090
Ben Lindstrombba81212001-06-25 05:01:22 +00002091static int
Damien Millerbd483e72000-04-30 10:00:53 +10002092session_subsystem_req(Session *s)
2093{
Damien Millerae452462001-10-10 15:08:06 +10002094 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002095 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10002096 int success = 0;
Damien Miller917f9b62006-07-10 20:36:47 +10002097 char *prog, *cmd, *subsys = packet_get_string(&len);
Damien Millereccb9de2005-06-17 12:59:34 +10002098 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10002099
Damien Miller48b03fc2002-01-22 23:11:40 +11002100 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10002101 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10002102
Damien Millerf6d9e222000-06-18 14:50:44 +10002103 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10002104 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10002105 prog = options.subsystem_command[i];
2106 cmd = options.subsystem_args[i];
Damien Millerd8cb1f12008-02-10 22:40:12 +11002107 if (!strcmp(INTERNAL_SFTP_NAME, prog)) {
Damien Millerdfc24252008-02-10 22:29:40 +11002108 s->is_subsystem = SUBSYSTEM_INT_SFTP;
2109 } else if (stat(prog, &st) < 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10002110 error("subsystem: cannot stat %s: %s", prog,
Damien Millerae452462001-10-10 15:08:06 +10002111 strerror(errno));
2112 break;
Damien Millerdfc24252008-02-10 22:29:40 +11002113 } else {
2114 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millerae452462001-10-10 15:08:06 +10002115 }
2116 debug("subsystem: exec() %s", cmd);
Damien Miller7207f642008-05-19 15:34:50 +10002117 success = do_exec(s, cmd) == 0;
Damien Miller5fab4b92002-02-05 12:15:07 +11002118 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10002119 }
2120 }
2121
2122 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10002123 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10002124 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10002125
Damien Millerbd483e72000-04-30 10:00:53 +10002126 xfree(subsys);
2127 return success;
2128}
2129
Ben Lindstrombba81212001-06-25 05:01:22 +00002130static int
Damien Millerbd483e72000-04-30 10:00:53 +10002131session_x11_req(Session *s)
2132{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002133 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10002134
Damien Miller2b9b0452005-07-17 17:19:24 +10002135 if (s->auth_proto != NULL || s->auth_data != NULL) {
2136 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11002137 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10002138 return 0;
2139 }
Damien Millerbd483e72000-04-30 10:00:53 +10002140 s->single_connection = packet_get_char();
2141 s->auth_proto = packet_get_string(NULL);
2142 s->auth_data = packet_get_string(NULL);
2143 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002144 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002145
Ben Lindstrom768176b2001-06-09 01:29:12 +00002146 success = session_setup_x11fwd(s);
2147 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10002148 xfree(s->auth_proto);
2149 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00002150 s->auth_proto = NULL;
2151 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10002152 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00002153 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10002154}
2155
Ben Lindstrombba81212001-06-25 05:01:22 +00002156static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002157session_shell_req(Session *s)
2158{
Damien Miller48b03fc2002-01-22 23:11:40 +11002159 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002160 return do_exec(s, NULL) == 0;
Damien Millerf6d9e222000-06-18 14:50:44 +10002161}
2162
Ben Lindstrombba81212001-06-25 05:01:22 +00002163static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002164session_exec_req(Session *s)
2165{
Damien Miller7207f642008-05-19 15:34:50 +10002166 u_int len, success;
2167
Damien Millerf6d9e222000-06-18 14:50:44 +10002168 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002169 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002170 success = do_exec(s, command) == 0;
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00002171 xfree(command);
Damien Miller7207f642008-05-19 15:34:50 +10002172 return success;
Damien Millerf6d9e222000-06-18 14:50:44 +10002173}
2174
Ben Lindstrombba81212001-06-25 05:01:22 +00002175static int
Damien Miller54c45982003-05-15 10:20:13 +10002176session_break_req(Session *s)
2177{
Damien Miller54c45982003-05-15 10:20:13 +10002178
Darren Tucker1f8311c2004-05-13 16:39:33 +10002179 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10002180 packet_check_eom();
2181
Damien Miller7207f642008-05-19 15:34:50 +10002182 if (s->ttyfd == -1 || tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10002183 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10002184 return 1;
2185}
2186
2187static int
Darren Tucker46bc0752004-05-02 22:11:30 +10002188session_env_req(Session *s)
2189{
2190 char *name, *val;
2191 u_int name_len, val_len, i;
2192
2193 name = packet_get_string(&name_len);
2194 val = packet_get_string(&val_len);
2195 packet_check_eom();
2196
2197 /* Don't set too many environment variables */
2198 if (s->num_env > 128) {
2199 debug2("Ignoring env request %s: too many env vars", name);
2200 goto fail;
2201 }
2202
2203 for (i = 0; i < options.num_accept_env; i++) {
2204 if (match_pattern(name, options.accept_env[i])) {
2205 debug2("Setting env %d: %s=%s", s->num_env, name, val);
Damien Miller36812092006-03-26 14:22:47 +11002206 s->env = xrealloc(s->env, s->num_env + 1,
2207 sizeof(*s->env));
Darren Tucker46bc0752004-05-02 22:11:30 +10002208 s->env[s->num_env].name = name;
2209 s->env[s->num_env].val = val;
2210 s->num_env++;
2211 return (1);
2212 }
2213 }
2214 debug2("Ignoring env request %s: disallowed name", name);
2215
2216 fail:
2217 xfree(name);
2218 xfree(val);
2219 return (0);
2220}
2221
2222static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002223session_auth_agent_req(Session *s)
2224{
2225 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11002226 packet_check_eom();
Damien Miller4f755cd2008-05-19 14:57:41 +10002227 if (no_agent_forwarding_flag || !options.allow_agent_forwarding) {
Ben Lindstrom14920292000-11-21 21:24:55 +00002228 debug("session_auth_agent_req: no_agent_forwarding_flag");
2229 return 0;
2230 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002231 if (called) {
2232 return 0;
2233 } else {
2234 called = 1;
2235 return auth_input_request_forwarding(s->pw);
2236 }
2237}
2238
Damien Millerc7ef63d2002-02-05 12:21:42 +11002239int
2240session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10002241{
Damien Millerefb4afe2000-04-12 18:45:05 +10002242 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002243 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10002244
Damien Millerc7ef63d2002-02-05 12:21:42 +11002245 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10002246 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11002247 c->self, rtype);
2248 return 0;
2249 }
2250 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10002251
2252 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00002253 * a session is in LARVAL state until a shell, a command
2254 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10002255 */
2256 if (c->type == SSH_CHANNEL_LARVAL) {
2257 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002258 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002259 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002260 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002261 } else if (strcmp(rtype, "pty-req") == 0) {
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002262 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002263 } else if (strcmp(rtype, "x11-req") == 0) {
2264 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002265 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2266 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002267 } else if (strcmp(rtype, "subsystem") == 0) {
2268 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002269 } else if (strcmp(rtype, "env") == 0) {
2270 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002271 }
2272 }
2273 if (strcmp(rtype, "window-change") == 0) {
2274 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002275 } else if (strcmp(rtype, "break") == 0) {
2276 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002277 }
Damien Millera6b1d162004-06-30 22:41:07 +10002278
Damien Millerc7ef63d2002-02-05 12:21:42 +11002279 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002280}
2281
2282void
2283session_set_fds(Session *s, int fdin, int fdout, int fderr)
2284{
2285 if (!compat20)
2286 fatal("session_set_fds: called for proto != 2.0");
2287 /*
2288 * now that have a child and a pipe to the child,
2289 * we can activate our channel and register the fd's
2290 */
2291 if (s->chanid == -1)
2292 fatal("no channel for session %d", s->self);
2293 channel_set_fds(s->chanid,
2294 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11002295 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Damien Miller19a59452002-02-19 15:20:57 +11002296 1,
2297 CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002298}
2299
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002300/*
2301 * Function to perform pty cleanup. Also called if we get aborted abnormally
2302 * (e.g., due to a dropped connection).
2303 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002304void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002305session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002306{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002307 if (s == NULL) {
2308 error("session_pty_cleanup: no session");
2309 return;
2310 }
2311 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002312 return;
2313
Kevin Steves43cdef32001-02-11 14:12:08 +00002314 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002315
Damien Millerb38eff82000-04-01 11:09:21 +10002316 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002317 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002318 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002319
2320 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002321 if (getuid() == 0)
2322 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002323
2324 /*
2325 * Close the server side of the socket pairs. We must do this after
2326 * the pty cleanup, so that another process doesn't get this pty
2327 * while we're still cleaning up.
2328 */
Damien Miller7207f642008-05-19 15:34:50 +10002329 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2330 error("close(s->ptymaster/%d): %s",
2331 s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002332
2333 /* unlink pty from session */
2334 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002335}
Damien Millerefb4afe2000-04-12 18:45:05 +10002336
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002337void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002338session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002339{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002340 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002341}
2342
Damien Miller5a80bba2002-09-04 16:39:02 +10002343static char *
2344sig2name(int sig)
2345{
2346#define SSH_SIG(x) if (sig == SIG ## x) return #x
2347 SSH_SIG(ABRT);
2348 SSH_SIG(ALRM);
2349 SSH_SIG(FPE);
2350 SSH_SIG(HUP);
2351 SSH_SIG(ILL);
2352 SSH_SIG(INT);
2353 SSH_SIG(KILL);
2354 SSH_SIG(PIPE);
2355 SSH_SIG(QUIT);
2356 SSH_SIG(SEGV);
2357 SSH_SIG(TERM);
2358 SSH_SIG(USR1);
2359 SSH_SIG(USR2);
2360#undef SSH_SIG
2361 return "SIG@openssh.com";
2362}
2363
Ben Lindstrombba81212001-06-25 05:01:22 +00002364static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002365session_close_x11(int id)
2366{
2367 Channel *c;
2368
Damien Millerd47c62a2005-12-13 19:33:57 +11002369 if ((c = channel_by_id(id)) == NULL) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002370 debug("session_close_x11: x11 channel %d missing", id);
2371 } else {
2372 /* Detach X11 listener */
2373 debug("session_close_x11: detach x11 channel %d", id);
2374 channel_cancel_cleanup(id);
2375 if (c->ostate != CHAN_OUTPUT_CLOSED)
2376 chan_mark_dead(c);
2377 }
2378}
2379
2380static void
2381session_close_single_x11(int id, void *arg)
2382{
2383 Session *s;
2384 u_int i;
2385
2386 debug3("session_close_single_x11: channel %d", id);
2387 channel_cancel_cleanup(id);
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002388 if ((s = session_by_x11_channel(id)) == NULL)
Damien Miller2b9b0452005-07-17 17:19:24 +10002389 fatal("session_close_single_x11: no x11 channel %d", id);
2390 for (i = 0; s->x11_chanids[i] != -1; i++) {
2391 debug("session_close_single_x11: session %d: "
2392 "closing channel %d", s->self, s->x11_chanids[i]);
2393 /*
2394 * The channel "id" is already closing, but make sure we
2395 * close all of its siblings.
2396 */
2397 if (s->x11_chanids[i] != id)
2398 session_close_x11(s->x11_chanids[i]);
2399 }
2400 xfree(s->x11_chanids);
2401 s->x11_chanids = NULL;
2402 if (s->display) {
2403 xfree(s->display);
2404 s->display = NULL;
2405 }
2406 if (s->auth_proto) {
2407 xfree(s->auth_proto);
2408 s->auth_proto = NULL;
2409 }
2410 if (s->auth_data) {
2411 xfree(s->auth_data);
2412 s->auth_data = NULL;
2413 }
2414 if (s->auth_display) {
2415 xfree(s->auth_display);
2416 s->auth_display = NULL;
2417 }
2418}
2419
2420static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002421session_exit_message(Session *s, int status)
2422{
2423 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002424
2425 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002426 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002427 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002428 debug("session_exit_message: session %d channel %d pid %ld",
2429 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002430
2431 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002432 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002433 packet_put_int(WEXITSTATUS(status));
2434 packet_send();
2435 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002436 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002437 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002438#ifdef WCOREDUMP
Damien Miller767087b2008-03-07 18:32:42 +11002439 packet_put_char(WCOREDUMP(status)? 1 : 0);
Damien Millerf3c6cf12000-05-17 22:08:29 +10002440#else /* WCOREDUMP */
2441 packet_put_char(0);
2442#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002443 packet_put_cstring("");
2444 packet_put_cstring("");
2445 packet_send();
2446 } else {
2447 /* Some weird exit cause. Just exit. */
2448 packet_disconnect("wait returned status %04x.", status);
2449 }
2450
2451 /* disconnect channel */
2452 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002453
2454 /*
2455 * Adjust cleanup callback attachment to send close messages when
Damien Millerc91e5562006-03-26 13:58:55 +11002456 * the channel gets EOF. The session will be then be closed
Damien Miller39eda6e2005-11-05 14:52:50 +11002457 * by session_close_by_channel when the childs close their fds.
2458 */
2459 channel_register_cleanup(c->self, session_close_by_channel, 1);
2460
Damien Miller166fca82000-04-20 07:42:21 +10002461 /*
2462 * emulate a write failure with 'chan_write_failed', nobody will be
2463 * interested in data we write.
2464 * Note that we must not call 'chan_read_failed', since there could
2465 * be some more data waiting in the pipe.
2466 */
Damien Millerbd483e72000-04-30 10:00:53 +10002467 if (c->ostate != CHAN_OUTPUT_CLOSED)
2468 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002469}
2470
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002471void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002472session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002473{
Damien Millereccb9de2005-06-17 12:59:34 +10002474 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002475
Ben Lindstromce0f6342002-06-11 16:42:49 +00002476 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002477 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002478 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002479 if (s->term)
2480 xfree(s->term);
2481 if (s->display)
2482 xfree(s->display);
Damien Miller2b9b0452005-07-17 17:19:24 +10002483 if (s->x11_chanids)
2484 xfree(s->x11_chanids);
Damien Miller512bccb2002-02-05 12:11:02 +11002485 if (s->auth_display)
2486 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002487 if (s->auth_data)
2488 xfree(s->auth_data);
2489 if (s->auth_proto)
2490 xfree(s->auth_proto);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002491 if (s->env != NULL) {
2492 for (i = 0; i < s->num_env; i++) {
2493 xfree(s->env[i].name);
2494 xfree(s->env[i].val);
2495 }
Darren Tucker46bc0752004-05-02 22:11:30 +10002496 xfree(s->env);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002497 }
Damien Millere247cc42000-05-07 12:03:14 +10002498 session_proctitle(s);
Damien Miller7207f642008-05-19 15:34:50 +10002499 session_unused(s->self);
Damien Millerefb4afe2000-04-12 18:45:05 +10002500}
2501
2502void
2503session_close_by_pid(pid_t pid, int status)
2504{
2505 Session *s = session_by_pid(pid);
2506 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002507 debug("session_close_by_pid: no session for pid %ld",
2508 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002509 return;
2510 }
2511 if (s->chanid != -1)
2512 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002513 if (s->ttyfd != -1)
2514 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002515 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002516}
2517
2518/*
2519 * this is called when a channel dies before
2520 * the session 'child' itself dies
2521 */
2522void
2523session_close_by_channel(int id, void *arg)
2524{
2525 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002526 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002527
Damien Millerefb4afe2000-04-12 18:45:05 +10002528 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002529 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002530 return;
2531 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002532 debug("session_close_by_channel: channel %d child %ld",
2533 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002534 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002535 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002536 /*
2537 * delay detach of session, but release pty, since
2538 * the fd's to the child are already closed
2539 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002540 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002541 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002542 return;
2543 }
2544 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002545 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002546
2547 /* Close any X11 listeners associated with this session */
2548 if (s->x11_chanids != NULL) {
2549 for (i = 0; s->x11_chanids[i] != -1; i++) {
2550 session_close_x11(s->x11_chanids[i]);
2551 s->x11_chanids[i] = -1;
2552 }
2553 }
2554
Damien Millerefb4afe2000-04-12 18:45:05 +10002555 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002556 session_close(s);
2557}
2558
2559void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002560session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002561{
2562 int i;
Damien Miller7207f642008-05-19 15:34:50 +10002563 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002564 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002565 if (s->used) {
2566 if (closefunc != NULL)
2567 closefunc(s);
2568 else
2569 session_close(s);
2570 }
Damien Miller52b77be2001-10-10 15:14:37 +10002571 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002572}
2573
Ben Lindstrombba81212001-06-25 05:01:22 +00002574static char *
Damien Millere247cc42000-05-07 12:03:14 +10002575session_tty_list(void)
2576{
2577 static char buf[1024];
2578 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002579 char *cp;
2580
Damien Millere247cc42000-05-07 12:03:14 +10002581 buf[0] = '\0';
Damien Miller7207f642008-05-19 15:34:50 +10002582 for (i = 0; i < sessions_nalloc; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002583 Session *s = &sessions[i];
2584 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002585
Damien Millera8ed44b2003-01-10 09:53:12 +11002586 if (strncmp(s->tty, "/dev/", 5) != 0) {
2587 cp = strrchr(s->tty, '/');
2588 cp = (cp == NULL) ? s->tty : cp + 1;
2589 } else
2590 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002591
Damien Millere247cc42000-05-07 12:03:14 +10002592 if (buf[0] != '\0')
2593 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002594 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002595 }
2596 }
2597 if (buf[0] == '\0')
2598 strlcpy(buf, "notty", sizeof buf);
2599 return buf;
2600}
2601
2602void
2603session_proctitle(Session *s)
2604{
2605 if (s->pw == NULL)
2606 error("no user for session %d", s->self);
2607 else
2608 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2609}
2610
Ben Lindstrom768176b2001-06-09 01:29:12 +00002611int
2612session_setup_x11fwd(Session *s)
2613{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002614 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002615 char display[512], auth_display[512];
2616 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002617 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002618
2619 if (no_x11_forwarding_flag) {
2620 packet_send_debug("X11 forwarding disabled in user configuration file.");
2621 return 0;
2622 }
2623 if (!options.x11_forwarding) {
2624 debug("X11 forwarding disabled in server configuration file.");
2625 return 0;
2626 }
2627 if (!options.xauth_location ||
2628 (stat(options.xauth_location, &st) == -1)) {
2629 packet_send_debug("No xauth program; cannot forward with spoofing.");
2630 return 0;
2631 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002632 if (options.use_login) {
2633 packet_send_debug("X11 forwarding disabled; "
2634 "not compatible with UseLogin=yes.");
2635 return 0;
2636 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002637 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002638 debug("X11 display already set.");
2639 return 0;
2640 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002641 if (x11_create_display_inet(options.x11_display_offset,
2642 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002643 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002644 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002645 return 0;
2646 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002647 for (i = 0; s->x11_chanids[i] != -1; i++) {
2648 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002649 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002650 }
Kevin Steves366298c2001-12-19 17:58:01 +00002651
2652 /* Set up a suitable value for the DISPLAY variable. */
2653 if (gethostname(hostname, sizeof(hostname)) < 0)
2654 fatal("gethostname: %.100s", strerror(errno));
2655 /*
2656 * auth_display must be used as the displayname when the
2657 * authorization entry is added with xauth(1). This will be
2658 * different than the DISPLAY string for localhost displays.
2659 */
Damien Miller95c249f2002-02-05 12:11:34 +11002660 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002661 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002662 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002663 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002664 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002665 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002666 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002667 } else {
2668#ifdef IPADDR_IN_DISPLAY
2669 struct hostent *he;
2670 struct in_addr my_addr;
2671
2672 he = gethostbyname(hostname);
2673 if (he == NULL) {
2674 error("Can't get IP address for X11 DISPLAY.");
2675 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2676 return 0;
2677 }
2678 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002679 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002680 s->display_number, s->screen);
2681#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002682 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002683 s->display_number, s->screen);
2684#endif
2685 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002686 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002687 }
2688
Ben Lindstrom768176b2001-06-09 01:29:12 +00002689 return 1;
2690}
2691
Ben Lindstrombba81212001-06-25 05:01:22 +00002692static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002693do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002694{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002695 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002696}
2697
2698void
2699do_cleanup(Authctxt *authctxt)
2700{
2701 static int called = 0;
2702
2703 debug("do_cleanup");
2704
2705 /* no cleanup if we're in the child for login shell */
2706 if (is_child)
2707 return;
2708
2709 /* avoid double cleanup */
2710 if (called)
2711 return;
2712 called = 1;
2713
Darren Tucker9142e1c2007-08-16 23:28:04 +10002714 if (authctxt == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +10002715 return;
Darren Tucker9142e1c2007-08-16 23:28:04 +10002716
2717#ifdef USE_PAM
2718 if (options.use_pam) {
2719 sshpam_cleanup();
2720 sshpam_thread_cleanup();
2721 }
2722#endif
2723
2724 if (!authctxt->authenticated)
2725 return;
2726
Darren Tucker3e33cec2003-10-02 16:12:36 +10002727#ifdef KRB5
2728 if (options.kerberos_ticket_cleanup &&
2729 authctxt->krb5_ctx)
2730 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002731#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002732
2733#ifdef GSSAPI
2734 if (compat20 && options.gss_cleanup_creds)
2735 ssh_gssapi_cleanup_creds();
2736#endif
2737
2738 /* remove agent socket */
2739 auth_sock_cleanup_proc(authctxt->pw);
2740
2741 /*
2742 * Cleanup ptys/utmp only if privsep is disabled,
2743 * or if running in monitor.
2744 */
2745 if (!use_privsep || mm_is_monitor())
2746 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002747}