blob: c61aeb711829cb641237740ce013835b6d7b2d81 [file] [log] [blame]
Darren Tucker63917bd2008-11-11 16:33:48 +11001/* $OpenBSD: session.c,v 1.244 2008/11/09 12:34:47 tobias 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 Millerad793d52008-11-03 19:17:57 +110098#define IS_INTERNAL_SFTP(c) \
99 (!strncmp(c, INTERNAL_SFTP_NAME, sizeof(INTERNAL_SFTP_NAME) - 1) && \
100 (c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\0' || \
101 c[sizeof(INTERNAL_SFTP_NAME) - 1] == ' ' || \
102 c[sizeof(INTERNAL_SFTP_NAME) - 1] == '\t'))
103
Damien Millerb38eff82000-04-01 11:09:21 +1000104/* func */
105
106Session *session_new(void);
Damien Millerd310d512008-06-16 07:59:23 +1000107void session_set_fds(Session *, int, int, int, int);
Darren Tucker3e33cec2003-10-02 16:12:36 +1000108void session_pty_cleanup(Session *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000109void session_proctitle(Session *);
110int session_setup_x11fwd(Session *);
Damien Miller7207f642008-05-19 15:34:50 +1000111int do_exec_pty(Session *, const char *);
112int do_exec_no_pty(Session *, const char *);
113int do_exec(Session *, const char *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000114void do_login(Session *, const char *);
Kevin Stevesa0957d62001-09-27 19:50:26 +0000115#ifdef LOGIN_NEEDS_UTMPX
116static void do_pre_login(Session *s);
117#endif
Kevin Steves8f63caa2001-07-04 18:23:02 +0000118void do_child(Session *, const char *);
Damien Millercf205e82001-04-16 18:29:15 +1000119void do_motd(void);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000120int check_quietlogin(Session *, const char *);
Damien Millerb38eff82000-04-01 11:09:21 +1000121
Ben Lindstrombba81212001-06-25 05:01:22 +0000122static void do_authenticated1(Authctxt *);
123static void do_authenticated2(Authctxt *);
Kevin Steves8f63caa2001-07-04 18:23:02 +0000124
Ben Lindstrombba81212001-06-25 05:01:22 +0000125static int session_pty_req(Session *);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000126
Damien Millerb38eff82000-04-01 11:09:21 +1000127/* import */
128extern ServerOptions options;
129extern char *__progname;
130extern int log_stderr;
131extern int debug_flag;
Ben Lindstrom46c16222000-12-22 01:43:59 +0000132extern u_int utmp_len;
Damien Miller37023962000-07-11 17:31:38 +1000133extern int startup_pipe;
Ben Lindstrom005dd222001-04-18 15:29:33 +0000134extern void destroy_sensitive_data(void);
Darren Tuckerb9aa0a02003-07-08 22:59:59 +1000135extern Buffer loginmsg;
Damien Miller37023962000-07-11 17:31:38 +1000136
Damien Miller7b28dc52000-09-05 13:34:53 +1100137/* original command from peer. */
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000138const char *original_command = NULL;
Damien Miller7b28dc52000-09-05 13:34:53 +1100139
Damien Millerb38eff82000-04-01 11:09:21 +1000140/* data */
Damien Miller7207f642008-05-19 15:34:50 +1000141static int sessions_first_unused = -1;
142static int sessions_nalloc = 0;
143static Session *sessions = NULL;
Damien Miller15e7d4b2000-09-29 10:57:35 +1100144
Damien Millerdfc24252008-02-10 22:29:40 +1100145#define SUBSYSTEM_NONE 0
146#define SUBSYSTEM_EXT 1
147#define SUBSYSTEM_INT_SFTP 2
148
Damien Millerad833b32000-08-23 10:46:23 +1000149#ifdef HAVE_LOGIN_CAP
Ben Lindstromb481e132002-03-22 01:35:47 +0000150login_cap_t *lc;
Damien Millerad833b32000-08-23 10:46:23 +1000151#endif
152
Darren Tucker3e33cec2003-10-02 16:12:36 +1000153static int is_child = 0;
154
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000155/* Name and directory of socket for authentication agent forwarding. */
156static char *auth_sock_name = NULL;
157static char *auth_sock_dir = NULL;
158
159/* removes the agent forwarding socket */
160
161static void
Darren Tucker3e33cec2003-10-02 16:12:36 +1000162auth_sock_cleanup_proc(struct passwd *pw)
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000163{
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000164 if (auth_sock_name != NULL) {
165 temporarily_use_uid(pw);
166 unlink(auth_sock_name);
167 rmdir(auth_sock_dir);
168 auth_sock_name = NULL;
169 restore_uid();
170 }
171}
172
173static int
174auth_input_request_forwarding(struct passwd * pw)
175{
176 Channel *nc;
Damien Miller7207f642008-05-19 15:34:50 +1000177 int sock = -1;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000178 struct sockaddr_un sunaddr;
179
180 if (auth_sock_name != NULL) {
181 error("authentication forwarding requested twice.");
182 return 0;
183 }
184
185 /* Temporarily drop privileged uid for mkdir/bind. */
186 temporarily_use_uid(pw);
187
188 /* Allocate a buffer for the socket name, and format the name. */
Damien Miller7207f642008-05-19 15:34:50 +1000189 auth_sock_dir = xstrdup("/tmp/ssh-XXXXXXXXXX");
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000190
191 /* Create private directory for socket */
192 if (mkdtemp(auth_sock_dir) == NULL) {
193 packet_send_debug("Agent forwarding disabled: "
194 "mkdtemp() failed: %.100s", strerror(errno));
195 restore_uid();
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000196 xfree(auth_sock_dir);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000197 auth_sock_dir = NULL;
Damien Miller7207f642008-05-19 15:34:50 +1000198 goto authsock_err;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000199 }
Damien Miller7207f642008-05-19 15:34:50 +1000200
201 xasprintf(&auth_sock_name, "%s/agent.%ld",
202 auth_sock_dir, (long) getpid());
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000203
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000204 /* Create the socket. */
205 sock = socket(AF_UNIX, SOCK_STREAM, 0);
Damien Miller7207f642008-05-19 15:34:50 +1000206 if (sock < 0) {
207 error("socket: %.100s", strerror(errno));
208 restore_uid();
209 goto authsock_err;
210 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000211
212 /* Bind it to the name. */
213 memset(&sunaddr, 0, sizeof(sunaddr));
214 sunaddr.sun_family = AF_UNIX;
215 strlcpy(sunaddr.sun_path, auth_sock_name, sizeof(sunaddr.sun_path));
216
Damien Miller7207f642008-05-19 15:34:50 +1000217 if (bind(sock, (struct sockaddr *)&sunaddr, sizeof(sunaddr)) < 0) {
218 error("bind: %.100s", strerror(errno));
219 restore_uid();
220 goto authsock_err;
221 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000222
223 /* Restore the privileged uid. */
224 restore_uid();
225
226 /* Start listening on the socket. */
Damien Miller7207f642008-05-19 15:34:50 +1000227 if (listen(sock, SSH_LISTEN_BACKLOG) < 0) {
228 error("listen: %.100s", strerror(errno));
229 goto authsock_err;
230 }
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000231
232 /* Allocate a channel for the authentication agent socket. */
233 nc = channel_new("auth socket",
234 SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1,
235 CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT,
Damien Millerb1ca8bb2003-05-14 13:45:42 +1000236 0, "auth socket", 1);
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000237 strlcpy(nc->path, auth_sock_name, sizeof(nc->path));
238 return 1;
Damien Miller7207f642008-05-19 15:34:50 +1000239
240 authsock_err:
241 if (auth_sock_name != NULL)
242 xfree(auth_sock_name);
243 if (auth_sock_dir != NULL) {
244 rmdir(auth_sock_dir);
245 xfree(auth_sock_dir);
246 }
247 if (sock != -1)
248 close(sock);
249 auth_sock_name = NULL;
250 auth_sock_dir = NULL;
251 return 0;
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000252}
253
Darren Tucker1921ed92004-02-10 13:23:28 +1100254static void
255display_loginmsg(void)
256{
Damien Miller46d38de2005-07-17 17:02:09 +1000257 if (buffer_len(&loginmsg) > 0) {
258 buffer_append(&loginmsg, "\0", 1);
259 printf("%s", (char *)buffer_ptr(&loginmsg));
260 buffer_clear(&loginmsg);
261 }
Darren Tucker1921ed92004-02-10 13:23:28 +1100262}
Ben Lindstrom8bb6f362002-06-11 15:59:02 +0000263
Ben Lindstromb31783d2001-03-22 02:02:12 +0000264void
265do_authenticated(Authctxt *authctxt)
266{
Damien Miller97f39ae2003-02-24 11:57:01 +1100267 setproctitle("%s", authctxt->pw->pw_name);
268
Ben Lindstromb31783d2001-03-22 02:02:12 +0000269 /* setup the channel layer */
270 if (!no_port_forwarding_flag && options.allow_tcp_forwarding)
271 channel_permit_all_opens();
272
273 if (compat20)
274 do_authenticated2(authctxt);
275 else
276 do_authenticated1(authctxt);
Ben Lindstrom838394c2001-06-09 01:11:59 +0000277
Darren Tucker3e33cec2003-10-02 16:12:36 +1000278 do_cleanup(authctxt);
Ben Lindstromb31783d2001-03-22 02:02:12 +0000279}
280
Damien Millerb38eff82000-04-01 11:09:21 +1000281/*
Damien Millerb38eff82000-04-01 11:09:21 +1000282 * Prepares for an interactive session. This is called after the user has
283 * been successfully authenticated. During this message exchange, pseudo
284 * terminals are allocated, X11, TCP/IP, and authentication agent forwardings
285 * are requested, etc.
286 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000287static void
Ben Lindstromb31783d2001-03-22 02:02:12 +0000288do_authenticated1(Authctxt *authctxt)
Damien Millerb38eff82000-04-01 11:09:21 +1000289{
290 Session *s;
Damien Millerb38eff82000-04-01 11:09:21 +1000291 char *command;
Damien Millerdff50992002-01-22 23:16:32 +1100292 int success, type, screen_flag;
Ben Lindstrome23f4a32002-06-23 21:40:16 +0000293 int enable_compression_after_reply = 0;
294 u_int proto_len, data_len, dlen, compression_level = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000295
296 s = session_new();
Darren Tucker172a5e82005-01-20 10:55:46 +1100297 if (s == NULL) {
298 error("no more sessions");
299 return;
300 }
Ben Lindstromec95ed92001-07-04 04:21:14 +0000301 s->authctxt = authctxt;
Ben Lindstromb31783d2001-03-22 02:02:12 +0000302 s->pw = authctxt->pw;
Damien Millerad833b32000-08-23 10:46:23 +1000303
Damien Millerb38eff82000-04-01 11:09:21 +1000304 /*
305 * We stay in this loop until the client requests to execute a shell
306 * or a command.
307 */
308 for (;;) {
Ben Lindstromb31783d2001-03-22 02:02:12 +0000309 success = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000310
311 /* Get a packet from the client. */
Damien Millerdff50992002-01-22 23:16:32 +1100312 type = packet_read();
Damien Millerb38eff82000-04-01 11:09:21 +1000313
314 /* Process the packet. */
315 switch (type) {
316 case SSH_CMSG_REQUEST_COMPRESSION:
Damien Millerb38eff82000-04-01 11:09:21 +1000317 compression_level = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +1100318 packet_check_eom();
Damien Millerb38eff82000-04-01 11:09:21 +1000319 if (compression_level < 1 || compression_level > 9) {
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000320 packet_send_debug("Received invalid compression level %d.",
Damien Miller9f0f5c62001-12-21 14:45:46 +1100321 compression_level);
Damien Millerb38eff82000-04-01 11:09:21 +1000322 break;
323 }
Damien Miller9786e6e2005-07-26 21:54:56 +1000324 if (options.compression == COMP_NONE) {
Ben Lindstrom23e0f662002-06-21 01:09:47 +0000325 debug2("compression disabled");
326 break;
327 }
Damien Millerb38eff82000-04-01 11:09:21 +1000328 /* Enable compression after we have responded with SUCCESS. */
329 enable_compression_after_reply = 1;
330 success = 1;
331 break;
332
333 case SSH_CMSG_REQUEST_PTY:
Ben Lindstrom49c12602001-06-13 04:37:36 +0000334 success = session_pty_req(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000335 break;
336
337 case SSH_CMSG_X11_REQUEST_FORWARDING:
Damien Millerb38eff82000-04-01 11:09:21 +1000338 s->auth_proto = packet_get_string(&proto_len);
339 s->auth_data = packet_get_string(&data_len);
Damien Millerb38eff82000-04-01 11:09:21 +1000340
Ben Lindstrom7603b2d2001-02-26 20:13:32 +0000341 screen_flag = packet_get_protocol_flags() &
342 SSH_PROTOFLAG_SCREEN_NUMBER;
343 debug2("SSH_PROTOFLAG_SCREEN_NUMBER: %d", screen_flag);
344
345 if (packet_remaining() == 4) {
346 if (!screen_flag)
347 debug2("Buggy client: "
348 "X11 screen flag missing");
Damien Millerb38eff82000-04-01 11:09:21 +1000349 s->screen = packet_get_int();
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000350 } else {
Damien Millerb38eff82000-04-01 11:09:21 +1000351 s->screen = 0;
Ben Lindstrom8dcdeb82001-02-16 16:02:14 +0000352 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100353 packet_check_eom();
Ben Lindstrom768176b2001-06-09 01:29:12 +0000354 success = session_setup_x11fwd(s);
355 if (!success) {
356 xfree(s->auth_proto);
357 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +0000358 s->auth_proto = NULL;
359 s->auth_data = NULL;
Damien Millerb38eff82000-04-01 11:09:21 +1000360 }
Damien Millerb38eff82000-04-01 11:09:21 +1000361 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000362
363 case SSH_CMSG_AGENT_REQUEST_FORWARDING:
Damien Miller4f755cd2008-05-19 14:57:41 +1000364 if (!options.allow_agent_forwarding ||
365 no_agent_forwarding_flag || compat13) {
Damien Millerb38eff82000-04-01 11:09:21 +1000366 debug("Authentication agent forwarding not permitted for this authentication.");
367 break;
368 }
369 debug("Received authentication agent forwarding request.");
Ben Lindstromb31783d2001-03-22 02:02:12 +0000370 success = auth_input_request_forwarding(s->pw);
Damien Millerb38eff82000-04-01 11:09:21 +1000371 break;
372
373 case SSH_CMSG_PORT_FORWARD_REQUEST:
374 if (no_port_forwarding_flag) {
375 debug("Port forwarding not permitted for this authentication.");
376 break;
377 }
Damien Miller50a41ed2000-10-16 12:14:42 +1100378 if (!options.allow_tcp_forwarding) {
379 debug("Port forwarding not permitted.");
380 break;
381 }
Damien Millerb38eff82000-04-01 11:09:21 +1000382 debug("Received TCP/IP port forwarding request.");
Darren Tuckere7d4b192006-07-12 22:17:10 +1000383 if (channel_input_port_forward_request(s->pw->pw_uid == 0,
384 options.gateway_ports) < 0) {
385 debug("Port forwarding failed.");
386 break;
387 }
Damien Millerb38eff82000-04-01 11:09:21 +1000388 success = 1;
389 break;
390
391 case SSH_CMSG_MAX_PACKET_SIZE:
392 if (packet_set_maxsize(packet_get_int()) > 0)
393 success = 1;
394 break;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100395
Damien Millerb38eff82000-04-01 11:09:21 +1000396 case SSH_CMSG_EXEC_SHELL:
397 case SSH_CMSG_EXEC_CMD:
Damien Millerb38eff82000-04-01 11:09:21 +1000398 if (type == SSH_CMSG_EXEC_CMD) {
399 command = packet_get_string(&dlen);
400 debug("Exec command '%.500s'", command);
Damien Miller7207f642008-05-19 15:34:50 +1000401 if (do_exec(s, command) != 0)
402 packet_disconnect(
403 "command execution failed");
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000404 xfree(command);
Damien Millerb38eff82000-04-01 11:09:21 +1000405 } else {
Damien Miller7207f642008-05-19 15:34:50 +1000406 if (do_exec(s, NULL) != 0)
407 packet_disconnect(
408 "shell execution failed");
Damien Millerb38eff82000-04-01 11:09:21 +1000409 }
Damien Miller48b03fc2002-01-22 23:11:40 +1100410 packet_check_eom();
Ben Lindstromcb3929d2001-06-09 01:34:15 +0000411 session_close(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000412 return;
413
414 default:
415 /*
416 * Any unknown messages in this phase are ignored,
417 * and a failure message is returned.
418 */
Damien Miller996acd22003-04-09 20:59:48 +1000419 logit("Unknown packet type received after authentication: %d", type);
Damien Millerb38eff82000-04-01 11:09:21 +1000420 }
421 packet_start(success ? SSH_SMSG_SUCCESS : SSH_SMSG_FAILURE);
422 packet_send();
423 packet_write_wait();
424
425 /* Enable compression now that we have replied if appropriate. */
426 if (enable_compression_after_reply) {
427 enable_compression_after_reply = 0;
428 packet_start_compression(compression_level);
429 }
430 }
431}
432
Damien Miller7207f642008-05-19 15:34:50 +1000433#define USE_PIPES
Damien Millerb38eff82000-04-01 11:09:21 +1000434/*
435 * This is called to fork and execute a command when we have no tty. This
436 * will call do_child from the child, and server_loop from the parent after
437 * setting up file descriptors and such.
438 */
Damien Miller7207f642008-05-19 15:34:50 +1000439int
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000440do_exec_no_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000441{
Ben Lindstromce0f6342002-06-11 16:42:49 +0000442 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000443
444#ifdef USE_PIPES
445 int pin[2], pout[2], perr[2];
Damien Miller7207f642008-05-19 15:34:50 +1000446
Damien Millerb38eff82000-04-01 11:09:21 +1000447 /* Allocate pipes for communicating with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000448 if (pipe(pin) < 0) {
449 error("%s: pipe in: %.100s", __func__, strerror(errno));
450 return -1;
451 }
452 if (pipe(pout) < 0) {
453 error("%s: pipe out: %.100s", __func__, strerror(errno));
454 close(pin[0]);
455 close(pin[1]);
456 return -1;
457 }
458 if (pipe(perr) < 0) {
459 error("%s: pipe err: %.100s", __func__, strerror(errno));
460 close(pin[0]);
461 close(pin[1]);
462 close(pout[0]);
463 close(pout[1]);
464 return -1;
465 }
466#else
Damien Millerb38eff82000-04-01 11:09:21 +1000467 int inout[2], err[2];
Damien Miller7207f642008-05-19 15:34:50 +1000468
Damien Millerb38eff82000-04-01 11:09:21 +1000469 /* Uses socket pairs to communicate with the program. */
Damien Miller7207f642008-05-19 15:34:50 +1000470 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) < 0) {
471 error("%s: socketpair #1: %.100s", __func__, strerror(errno));
472 return -1;
473 }
474 if (socketpair(AF_UNIX, SOCK_STREAM, 0, err) < 0) {
475 error("%s: socketpair #2: %.100s", __func__, strerror(errno));
476 close(inout[0]);
477 close(inout[1]);
478 return -1;
479 }
480#endif
481
Damien Millerb38eff82000-04-01 11:09:21 +1000482 if (s == NULL)
483 fatal("do_exec_no_pty: no session");
484
Damien Millere247cc42000-05-07 12:03:14 +1000485 session_proctitle(s);
Damien Millerb38eff82000-04-01 11:09:21 +1000486
Damien Millerb38eff82000-04-01 11:09:21 +1000487 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000488 switch ((pid = fork())) {
489 case -1:
490 error("%s: fork: %.100s", __func__, strerror(errno));
491#ifdef USE_PIPES
492 close(pin[0]);
493 close(pin[1]);
494 close(pout[0]);
495 close(pout[1]);
496 close(perr[0]);
497 close(perr[1]);
498#else
499 close(inout[0]);
500 close(inout[1]);
501 close(err[0]);
502 close(err[1]);
503#endif
504 return -1;
505 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000506 is_child = 1;
Ben Lindstrom264ee302002-07-23 21:01:56 +0000507
Damien Millerb38eff82000-04-01 11:09:21 +1000508 /* Child. Reinitialize the log since the pid has changed. */
Damien Miller7207f642008-05-19 15:34:50 +1000509 log_init(__progname, options.log_level,
510 options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000511
512 /*
513 * Create a new session and process group since the 4.4BSD
514 * setlogin() affects the entire process group.
515 */
516 if (setsid() < 0)
517 error("setsid failed: %.100s", strerror(errno));
518
519#ifdef USE_PIPES
520 /*
521 * Redirect stdin. We close the parent side of the socket
522 * pair, and make the child side the standard input.
523 */
524 close(pin[1]);
525 if (dup2(pin[0], 0) < 0)
526 perror("dup2 stdin");
527 close(pin[0]);
528
529 /* Redirect stdout. */
530 close(pout[0]);
531 if (dup2(pout[1], 1) < 0)
532 perror("dup2 stdout");
533 close(pout[1]);
534
535 /* Redirect stderr. */
536 close(perr[0]);
537 if (dup2(perr[1], 2) < 0)
538 perror("dup2 stderr");
539 close(perr[1]);
Damien Miller7207f642008-05-19 15:34:50 +1000540#else
Damien Millerb38eff82000-04-01 11:09:21 +1000541 /*
542 * Redirect stdin, stdout, and stderr. Stdin and stdout will
543 * use the same socket, as some programs (particularly rdist)
544 * seem to depend on it.
545 */
546 close(inout[1]);
547 close(err[1]);
548 if (dup2(inout[0], 0) < 0) /* stdin */
549 perror("dup2 stdin");
Damien Miller7207f642008-05-19 15:34:50 +1000550 if (dup2(inout[0], 1) < 0) /* stdout (same as stdin) */
Damien Millerb38eff82000-04-01 11:09:21 +1000551 perror("dup2 stdout");
Damien Miller7207f642008-05-19 15:34:50 +1000552 close(inout[0]);
Damien Millerb38eff82000-04-01 11:09:21 +1000553 if (dup2(err[0], 2) < 0) /* stderr */
554 perror("dup2 stderr");
Damien Miller7207f642008-05-19 15:34:50 +1000555 close(err[0]);
556#endif
557
Damien Millerb38eff82000-04-01 11:09:21 +1000558
Tim Rice81ed5182002-09-25 17:38:46 -0700559#ifdef _UNICOS
560 cray_init_job(s->pw); /* set up cray jid and tmpdir */
561#endif
562
Damien Millerb38eff82000-04-01 11:09:21 +1000563 /* Do processing for the child (exec command etc). */
Ben Lindstrom86fe8682001-03-17 00:32:57 +0000564 do_child(s, command);
Damien Millerb38eff82000-04-01 11:09:21 +1000565 /* NOTREACHED */
Damien Miller7207f642008-05-19 15:34:50 +1000566 default:
567 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000568 }
Damien Miller7207f642008-05-19 15:34:50 +1000569
Tim Rice81ed5182002-09-25 17:38:46 -0700570#ifdef _UNICOS
571 signal(WJSIGNAL, cray_job_termination_handler);
572#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100573#ifdef HAVE_CYGWIN
574 if (is_winnt)
575 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
576#endif
Damien Miller7207f642008-05-19 15:34:50 +1000577
Damien Millerb38eff82000-04-01 11:09:21 +1000578 s->pid = pid;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000579 /* Set interactive/non-interactive mode. */
580 packet_set_interactive(s->display != NULL);
Damien Miller7207f642008-05-19 15:34:50 +1000581
582 /*
583 * Clear loginmsg, since it's the child's responsibility to display
584 * it to the user, otherwise multiple sessions may accumulate
585 * multiple copies of the login messages.
586 */
587 buffer_clear(&loginmsg);
588
Damien Millerb38eff82000-04-01 11:09:21 +1000589#ifdef USE_PIPES
590 /* We are the parent. Close the child sides of the pipes. */
591 close(pin[0]);
592 close(pout[1]);
593 close(perr[1]);
594
Damien Millerefb4afe2000-04-12 18:45:05 +1000595 if (compat20) {
Darren Tucker723e9452004-06-22 12:57:08 +1000596 if (s->is_subsystem) {
597 close(perr[0]);
598 perr[0] = -1;
599 }
Damien Millerd310d512008-06-16 07:59:23 +1000600 session_set_fds(s, pin[1], pout[0], perr[0], 0);
Damien Millerefb4afe2000-04-12 18:45:05 +1000601 } else {
602 /* Enter the interactive session. */
603 server_loop(pid, pin[1], pout[0], perr[0]);
Ben Lindstromfc9b07d2001-03-22 01:27:23 +0000604 /* server_loop has closed pin[1], pout[0], and perr[0]. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000605 }
Damien Miller7207f642008-05-19 15:34:50 +1000606#else
Damien Millerb38eff82000-04-01 11:09:21 +1000607 /* We are the parent. Close the child sides of the socket pairs. */
608 close(inout[0]);
609 close(err[0]);
610
611 /*
612 * Enter the interactive session. Note: server_loop must be able to
613 * handle the case that fdin and fdout are the same.
614 */
Damien Millerefb4afe2000-04-12 18:45:05 +1000615 if (compat20) {
Damien Miller7207f642008-05-19 15:34:50 +1000616 session_set_fds(s, inout[1], inout[1],
Damien Millerd310d512008-06-16 07:59:23 +1000617 s->is_subsystem ? -1 : err[1], 0);
Damien Miller7207f642008-05-19 15:34:50 +1000618 if (s->is_subsystem)
619 close(err[1]);
Damien Millerefb4afe2000-04-12 18:45:05 +1000620 } else {
621 server_loop(pid, inout[1], inout[1], err[1]);
622 /* server_loop has closed inout[1] and err[1]. */
623 }
Damien Miller7207f642008-05-19 15:34:50 +1000624#endif
625 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000626}
627
628/*
629 * This is called to fork and execute a command when we have a tty. This
630 * will call do_child from the child, and server_loop from the parent after
631 * setting up file descriptors, controlling tty, updating wtmp, utmp,
632 * lastlog, and other such operations.
633 */
Damien Miller7207f642008-05-19 15:34:50 +1000634int
Ben Lindstromb4c961d2001-03-22 01:25:37 +0000635do_exec_pty(Session *s, const char *command)
Damien Millerb38eff82000-04-01 11:09:21 +1000636{
Damien Millerb38eff82000-04-01 11:09:21 +1000637 int fdout, ptyfd, ttyfd, ptymaster;
Damien Millerb38eff82000-04-01 11:09:21 +1000638 pid_t pid;
Damien Millerb38eff82000-04-01 11:09:21 +1000639
640 if (s == NULL)
641 fatal("do_exec_pty: no session");
642 ptyfd = s->ptyfd;
643 ttyfd = s->ttyfd;
644
Damien Miller7207f642008-05-19 15:34:50 +1000645 /*
646 * Create another descriptor of the pty master side for use as the
647 * standard input. We could use the original descriptor, but this
648 * simplifies code in server_loop. The descriptor is bidirectional.
649 * Do this before forking (and cleanup in the child) so as to
650 * detect and gracefully fail out-of-fd conditions.
651 */
652 if ((fdout = dup(ptyfd)) < 0) {
653 error("%s: dup #1: %s", __func__, strerror(errno));
654 close(ttyfd);
655 close(ptyfd);
656 return -1;
657 }
658 /* we keep a reference to the pty master */
659 if ((ptymaster = dup(ptyfd)) < 0) {
660 error("%s: dup #2: %s", __func__, strerror(errno));
661 close(ttyfd);
662 close(ptyfd);
663 close(fdout);
664 return -1;
665 }
666
Damien Millerb38eff82000-04-01 11:09:21 +1000667 /* Fork the child. */
Damien Miller7207f642008-05-19 15:34:50 +1000668 switch ((pid = fork())) {
669 case -1:
670 error("%s: fork: %.100s", __func__, strerror(errno));
671 close(fdout);
672 close(ptymaster);
673 close(ttyfd);
674 close(ptyfd);
675 return -1;
676 case 0:
Darren Tucker3e33cec2003-10-02 16:12:36 +1000677 is_child = 1;
Ben Lindstrombddd5512001-07-04 04:53:53 +0000678
Damien Miller7207f642008-05-19 15:34:50 +1000679 close(fdout);
680 close(ptymaster);
681
Damien Miller942da032000-08-18 13:59:06 +1000682 /* Child. Reinitialize the log because the pid has changed. */
Damien Miller7207f642008-05-19 15:34:50 +1000683 log_init(__progname, options.log_level,
684 options.log_facility, log_stderr);
Damien Millerb38eff82000-04-01 11:09:21 +1000685 /* Close the master side of the pseudo tty. */
686 close(ptyfd);
687
688 /* Make the pseudo tty our controlling tty. */
689 pty_make_controlling_tty(&ttyfd, s->tty);
690
Damien Miller9c751422001-10-10 15:02:46 +1000691 /* Redirect stdin/stdout/stderr from the pseudo tty. */
692 if (dup2(ttyfd, 0) < 0)
693 error("dup2 stdin: %s", strerror(errno));
694 if (dup2(ttyfd, 1) < 0)
695 error("dup2 stdout: %s", strerror(errno));
696 if (dup2(ttyfd, 2) < 0)
697 error("dup2 stderr: %s", strerror(errno));
Damien Millerb38eff82000-04-01 11:09:21 +1000698
699 /* Close the extra descriptor for the pseudo tty. */
700 close(ttyfd);
701
Damien Miller942da032000-08-18 13:59:06 +1000702 /* record login, etc. similar to login(1) */
Damien Miller364a9bd2001-04-16 18:37:05 +1000703#ifndef HAVE_OSF_SIA
Tim Rice81ed5182002-09-25 17:38:46 -0700704 if (!(options.use_login && command == NULL)) {
705#ifdef _UNICOS
706 cray_init_job(s->pw); /* set up cray jid and tmpdir */
707#endif /* _UNICOS */
Damien Miller69b69aa2000-10-28 14:19:58 +1100708 do_login(s, command);
Tim Rice81ed5182002-09-25 17:38:46 -0700709 }
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000710# ifdef LOGIN_NEEDS_UTMPX
711 else
712 do_pre_login(s);
713# endif
Damien Miller364a9bd2001-04-16 18:37:05 +1000714#endif
Damien Miller7207f642008-05-19 15:34:50 +1000715 /*
716 * Do common processing for the child, such as execing
717 * the command.
718 */
719 do_child(s, command);
720 /* NOTREACHED */
721 default:
722 break;
Damien Millerb38eff82000-04-01 11:09:21 +1000723 }
Damien Miller7207f642008-05-19 15:34:50 +1000724
Tim Rice81ed5182002-09-25 17:38:46 -0700725#ifdef _UNICOS
726 signal(WJSIGNAL, cray_job_termination_handler);
727#endif /* _UNICOS */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100728#ifdef HAVE_CYGWIN
729 if (is_winnt)
730 cygwin_set_impersonation_token(INVALID_HANDLE_VALUE);
731#endif
Damien Miller7207f642008-05-19 15:34:50 +1000732
Damien Millerb38eff82000-04-01 11:09:21 +1000733 s->pid = pid;
734
735 /* Parent. Close the slave side of the pseudo tty. */
736 close(ttyfd);
737
Damien Millerb38eff82000-04-01 11:09:21 +1000738 /* Enter interactive session. */
Damien Miller7207f642008-05-19 15:34:50 +1000739 s->ptymaster = ptymaster;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000740 packet_set_interactive(1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000741 if (compat20) {
Damien Millerd310d512008-06-16 07:59:23 +1000742 session_set_fds(s, ptyfd, fdout, -1, 1);
Damien Millerefb4afe2000-04-12 18:45:05 +1000743 } else {
744 server_loop(pid, ptyfd, fdout, -1);
745 /* server_loop _has_ closed ptyfd and fdout. */
Damien Millerefb4afe2000-04-12 18:45:05 +1000746 }
Damien Miller7207f642008-05-19 15:34:50 +1000747 return 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000748}
749
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000750#ifdef LOGIN_NEEDS_UTMPX
Damien Miller599d8eb2001-09-15 12:25:53 +1000751static void
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000752do_pre_login(Session *s)
753{
754 socklen_t fromlen;
755 struct sockaddr_storage from;
756 pid_t pid = getpid();
757
758 /*
759 * Get IP address of client. If the connection is not a socket, let
760 * the address be 0.0.0.0.
761 */
762 memset(&from, 0, sizeof(from));
Damien Millerebc23062002-09-04 16:45:09 +1000763 fromlen = sizeof(from);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000764 if (packet_connection_is_on_socket()) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000765 if (getpeername(packet_get_connection_in(),
Damien Miller90967402006-03-26 14:07:26 +1100766 (struct sockaddr *)&from, &fromlen) < 0) {
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000767 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000768 cleanup_exit(255);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000769 }
770 }
771
772 record_utmp_only(pid, s->tty, s->pw->pw_name,
Damien Miller3a961dc2003-06-03 10:25:48 +1000773 get_remote_name_or_ip(utmp_len, options.use_dns),
Kevin Steves678ee512003-01-01 23:43:55 +0000774 (struct sockaddr *)&from, fromlen);
Ben Lindstrom97c677d2001-05-08 20:33:05 +0000775}
776#endif
777
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000778/*
779 * This is called to fork and execute a command. If another command is
780 * to be forced, execute that instead.
781 */
Damien Miller7207f642008-05-19 15:34:50 +1000782int
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000783do_exec(Session *s, const char *command)
784{
Damien Miller7207f642008-05-19 15:34:50 +1000785 int ret;
786
Damien Millere2754432006-07-24 14:06:47 +1000787 if (options.adm_forced_command) {
788 original_command = command;
789 command = options.adm_forced_command;
Damien Millerad793d52008-11-03 19:17:57 +1100790 if (IS_INTERNAL_SFTP(command))
Damien Millerd8cb1f12008-02-10 22:40:12 +1100791 s->is_subsystem = SUBSYSTEM_INT_SFTP;
792 else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100793 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millere2754432006-07-24 14:06:47 +1000794 debug("Forced command (config) '%.900s'", command);
795 } else if (forced_command) {
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000796 original_command = command;
797 command = forced_command;
Damien Millerad793d52008-11-03 19:17:57 +1100798 if (IS_INTERNAL_SFTP(command))
Damien Millerd8cb1f12008-02-10 22:40:12 +1100799 s->is_subsystem = SUBSYSTEM_INT_SFTP;
800 else if (s->is_subsystem)
Damien Millerdfc24252008-02-10 22:29:40 +1100801 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millere2754432006-07-24 14:06:47 +1000802 debug("Forced command (key option) '%.900s'", command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000803 }
804
Darren Tucker2e0cf0d2005-02-08 21:52:47 +1100805#ifdef SSH_AUDIT_EVENTS
Darren Tucker269a1ea2005-02-03 00:20:53 +1100806 if (command != NULL)
807 PRIVSEP(audit_run_command(command));
808 else if (s->ttyfd == -1) {
809 char *shell = s->pw->pw_shell;
810
811 if (shell[0] == '\0') /* empty shell means /bin/sh */
812 shell =_PATH_BSHELL;
813 PRIVSEP(audit_run_command(shell));
814 }
815#endif
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000816 if (s->ttyfd != -1)
Damien Miller7207f642008-05-19 15:34:50 +1000817 ret = do_exec_pty(s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000818 else
Damien Miller7207f642008-05-19 15:34:50 +1000819 ret = do_exec_no_pty(s, command);
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000820
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +0000821 original_command = NULL;
Ben Lindstromc85ab8a2001-06-21 03:13:10 +0000822
Darren Tucker09991742004-07-17 17:05:14 +1000823 /*
824 * Clear loginmsg: it's the child's responsibility to display
825 * it to the user, otherwise multiple sessions may accumulate
826 * multiple copies of the login messages.
827 */
828 buffer_clear(&loginmsg);
Damien Miller7207f642008-05-19 15:34:50 +1000829
830 return ret;
Darren Tucker09991742004-07-17 17:05:14 +1000831}
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000832
Damien Miller942da032000-08-18 13:59:06 +1000833/* administrative, login(1)-like work */
834void
Damien Miller69b69aa2000-10-28 14:19:58 +1100835do_login(Session *s, const char *command)
Damien Miller942da032000-08-18 13:59:06 +1000836{
Damien Miller942da032000-08-18 13:59:06 +1000837 socklen_t fromlen;
838 struct sockaddr_storage from;
Damien Miller942da032000-08-18 13:59:06 +1000839 struct passwd * pw = s->pw;
840 pid_t pid = getpid();
841
842 /*
843 * Get IP address of client. If the connection is not a socket, let
844 * the address be 0.0.0.0.
845 */
846 memset(&from, 0, sizeof(from));
Kevin Steves678ee512003-01-01 23:43:55 +0000847 fromlen = sizeof(from);
Damien Miller942da032000-08-18 13:59:06 +1000848 if (packet_connection_is_on_socket()) {
Damien Miller942da032000-08-18 13:59:06 +1000849 if (getpeername(packet_get_connection_in(),
Ben Lindstrom4e97e852002-02-19 21:50:43 +0000850 (struct sockaddr *) & from, &fromlen) < 0) {
Damien Miller942da032000-08-18 13:59:06 +1000851 debug("getpeername: %.100s", strerror(errno));
Darren Tucker3e33cec2003-10-02 16:12:36 +1000852 cleanup_exit(255);
Damien Miller942da032000-08-18 13:59:06 +1000853 }
854 }
855
856 /* Record that there was a login on that tty from the remote host. */
Ben Lindstrom2bf56e22002-04-02 20:32:46 +0000857 if (!use_privsep)
858 record_login(pid, s->tty, pw->pw_name, pw->pw_uid,
859 get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +1000860 options.use_dns),
Damien Millerebc23062002-09-04 16:45:09 +1000861 (struct sockaddr *)&from, fromlen);
Damien Miller942da032000-08-18 13:59:06 +1000862
Kevin Steves092f2ef2000-10-14 13:36:13 +0000863#ifdef USE_PAM
864 /*
865 * If password change is needed, do it now.
866 * This needs to occur before the ~/.hushlogin check.
867 */
Darren Tucker1921ed92004-02-10 13:23:28 +1100868 if (options.use_pam && !use_privsep && s->authctxt->force_pwchange) {
869 display_loginmsg();
Kevin Steves092f2ef2000-10-14 13:36:13 +0000870 do_pam_chauthtok();
Darren Tucker1921ed92004-02-10 13:23:28 +1100871 s->authctxt->force_pwchange = 0;
Damien Miller1f499fd2003-08-25 13:08:49 +1000872 /* XXX - signal [net] parent to enable forwardings */
Kevin Steves092f2ef2000-10-14 13:36:13 +0000873 }
874#endif
875
Damien Millercf205e82001-04-16 18:29:15 +1000876 if (check_quietlogin(s, command))
Damien Miller942da032000-08-18 13:59:06 +1000877 return;
878
Darren Tucker1921ed92004-02-10 13:23:28 +1100879 display_loginmsg();
Damien Miller942da032000-08-18 13:59:06 +1000880
Damien Millercf205e82001-04-16 18:29:15 +1000881 do_motd();
882}
883
884/*
885 * Display the message of the day.
886 */
887void
888do_motd(void)
889{
890 FILE *f;
891 char buf[256];
892
Damien Miller942da032000-08-18 13:59:06 +1000893 if (options.print_motd) {
Damien Millerad833b32000-08-23 10:46:23 +1000894#ifdef HAVE_LOGIN_CAP
895 f = fopen(login_getcapstr(lc, "welcome", "/etc/motd",
896 "/etc/motd"), "r");
897#else
Damien Miller942da032000-08-18 13:59:06 +1000898 f = fopen("/etc/motd", "r");
Damien Millerad833b32000-08-23 10:46:23 +1000899#endif
Damien Miller942da032000-08-18 13:59:06 +1000900 if (f) {
901 while (fgets(buf, sizeof(buf), f))
902 fputs(buf, stdout);
903 fclose(f);
904 }
905 }
906}
907
Kevin Steves8f63caa2001-07-04 18:23:02 +0000908
909/*
910 * Check for quiet login, either .hushlogin or command given.
911 */
912int
913check_quietlogin(Session *s, const char *command)
914{
915 char buf[256];
916 struct passwd *pw = s->pw;
917 struct stat st;
918
919 /* Return 1 if .hushlogin exists or a command given. */
920 if (command != NULL)
921 return 1;
922 snprintf(buf, sizeof(buf), "%.200s/.hushlogin", pw->pw_dir);
923#ifdef HAVE_LOGIN_CAP
924 if (login_getcapbool(lc, "hushlogin", 0) || stat(buf, &st) >= 0)
925 return 1;
926#else
927 if (stat(buf, &st) >= 0)
928 return 1;
929#endif
930 return 0;
931}
932
Damien Millerb38eff82000-04-01 11:09:21 +1000933/*
934 * Sets the value of the given variable in the environment. If the variable
Darren Tucker63917bd2008-11-11 16:33:48 +1100935 * already exists, its value is overridden.
Damien Millerb38eff82000-04-01 11:09:21 +1000936 */
Darren Tucker0efd1552003-08-26 11:49:55 +1000937void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000938child_set_env(char ***envp, u_int *envsizep, const char *name,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100939 const char *value)
Damien Millerb38eff82000-04-01 11:09:21 +1000940{
Damien Millerb38eff82000-04-01 11:09:21 +1000941 char **env;
Darren Tuckerfb16b242003-09-22 21:04:23 +1000942 u_int envsize;
943 u_int i, namelen;
Damien Millerb38eff82000-04-01 11:09:21 +1000944
945 /*
Darren Tuckere1a790d2003-09-16 11:52:19 +1000946 * If we're passed an uninitialized list, allocate a single null
947 * entry before continuing.
948 */
949 if (*envp == NULL && *envsizep == 0) {
950 *envp = xmalloc(sizeof(char *));
951 *envp[0] = NULL;
952 *envsizep = 1;
953 }
954
955 /*
Damien Millerb38eff82000-04-01 11:09:21 +1000956 * Find the slot where the value should be stored. If the variable
957 * already exists, we reuse the slot; otherwise we append a new slot
958 * at the end of the array, expanding if necessary.
959 */
960 env = *envp;
961 namelen = strlen(name);
962 for (i = 0; env[i]; i++)
963 if (strncmp(env[i], name, namelen) == 0 && env[i][namelen] == '=')
964 break;
965 if (env[i]) {
966 /* Reuse the slot. */
967 xfree(env[i]);
968 } else {
969 /* New variable. Expand if necessary. */
Darren Tuckerfb16b242003-09-22 21:04:23 +1000970 envsize = *envsizep;
971 if (i >= envsize - 1) {
972 if (envsize >= 1000)
973 fatal("child_set_env: too many env vars");
974 envsize += 50;
Damien Miller36812092006-03-26 14:22:47 +1100975 env = (*envp) = xrealloc(env, envsize, sizeof(char *));
Darren Tuckerfb16b242003-09-22 21:04:23 +1000976 *envsizep = envsize;
Damien Millerb38eff82000-04-01 11:09:21 +1000977 }
978 /* Need to set the NULL pointer at end of array beyond the new slot. */
979 env[i + 1] = NULL;
980 }
981
982 /* Allocate space and format the variable in the appropriate slot. */
983 env[i] = xmalloc(strlen(name) + 1 + strlen(value) + 1);
984 snprintf(env[i], strlen(name) + 1 + strlen(value) + 1, "%s=%s", name, value);
985}
986
987/*
988 * Reads environment variables from the given file and adds/overrides them
989 * into the environment. If the file does not exist, this does nothing.
990 * Otherwise, it must consist of empty lines, comments (line starts with '#')
991 * and assignments of the form name=value. No other forms are allowed.
992 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000993static void
Ben Lindstrom46c16222000-12-22 01:43:59 +0000994read_environment_file(char ***env, u_int *envsize,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100995 const char *filename)
Damien Millerb38eff82000-04-01 11:09:21 +1000996{
997 FILE *f;
998 char buf[4096];
999 char *cp, *value;
Damien Miller990070a2002-06-26 23:51:06 +10001000 u_int lineno = 0;
Damien Millerb38eff82000-04-01 11:09:21 +10001001
1002 f = fopen(filename, "r");
1003 if (!f)
1004 return;
1005
1006 while (fgets(buf, sizeof(buf), f)) {
Damien Miller990070a2002-06-26 23:51:06 +10001007 if (++lineno > 1000)
1008 fatal("Too many lines in environment file %s", filename);
Damien Millerb38eff82000-04-01 11:09:21 +10001009 for (cp = buf; *cp == ' ' || *cp == '\t'; cp++)
1010 ;
1011 if (!*cp || *cp == '#' || *cp == '\n')
1012 continue;
Damien Miller14b017d2007-09-17 16:09:15 +10001013
1014 cp[strcspn(cp, "\n")] = '\0';
1015
Damien Millerb38eff82000-04-01 11:09:21 +10001016 value = strchr(cp, '=');
1017 if (value == NULL) {
Damien Miller990070a2002-06-26 23:51:06 +10001018 fprintf(stderr, "Bad line %u in %.100s\n", lineno,
1019 filename);
Damien Millerb38eff82000-04-01 11:09:21 +10001020 continue;
1021 }
Damien Millerb1715dc2000-05-30 13:44:51 +10001022 /*
1023 * Replace the equals sign by nul, and advance value to
1024 * the value string.
1025 */
Damien Millerb38eff82000-04-01 11:09:21 +10001026 *value = '\0';
1027 value++;
1028 child_set_env(env, envsize, cp, value);
1029 }
1030 fclose(f);
1031}
1032
Darren Tuckere1a790d2003-09-16 11:52:19 +10001033#ifdef HAVE_ETC_DEFAULT_LOGIN
1034/*
1035 * Return named variable from specified environment, or NULL if not present.
1036 */
1037static char *
1038child_get_env(char **env, const char *name)
1039{
1040 int i;
1041 size_t len;
1042
1043 len = strlen(name);
1044 for (i=0; env[i] != NULL; i++)
1045 if (strncmp(name, env[i], len) == 0 && env[i][len] == '=')
1046 return(env[i] + len + 1);
1047 return NULL;
1048}
1049
1050/*
1051 * Read /etc/default/login.
1052 * We pick up the PATH (or SUPATH for root) and UMASK.
1053 */
1054static void
1055read_etc_default_login(char ***env, u_int *envsize, uid_t uid)
1056{
1057 char **tmpenv = NULL, *var;
Darren Tuckerc11b1e82003-09-19 20:56:51 +10001058 u_int i, tmpenvsize = 0;
Darren Tuckerf391ba62003-10-02 20:07:09 +10001059 u_long mask;
Darren Tuckere1a790d2003-09-16 11:52:19 +10001060
1061 /*
1062 * We don't want to copy the whole file to the child's environment,
1063 * so we use a temporary environment and copy the variables we're
1064 * interested in.
1065 */
1066 read_environment_file(&tmpenv, &tmpenvsize, "/etc/default/login");
1067
Darren Tuckerc11b1e82003-09-19 20:56:51 +10001068 if (tmpenv == NULL)
1069 return;
1070
Darren Tuckere1a790d2003-09-16 11:52:19 +10001071 if (uid == 0)
1072 var = child_get_env(tmpenv, "SUPATH");
1073 else
1074 var = child_get_env(tmpenv, "PATH");
1075 if (var != NULL)
1076 child_set_env(env, envsize, "PATH", var);
Damien Miller787b2ec2003-11-21 23:56:47 +11001077
Darren Tuckere1a790d2003-09-16 11:52:19 +10001078 if ((var = child_get_env(tmpenv, "UMASK")) != NULL)
1079 if (sscanf(var, "%5lo", &mask) == 1)
Darren Tuckerf391ba62003-10-02 20:07:09 +10001080 umask((mode_t)mask);
Damien Miller787b2ec2003-11-21 23:56:47 +11001081
Darren Tuckere1a790d2003-09-16 11:52:19 +10001082 for (i = 0; tmpenv[i] != NULL; i++)
1083 xfree(tmpenv[i]);
1084 xfree(tmpenv);
1085}
1086#endif /* HAVE_ETC_DEFAULT_LOGIN */
1087
Damien Miller7dff8692005-05-26 11:34:51 +10001088void
1089copy_environment(char **source, char ***env, u_int *envsize)
Damien Millerb38eff82000-04-01 11:09:21 +10001090{
Damien Millerbb9ffc12002-01-08 10:59:32 +11001091 char *var_name, *var_val;
Damien Millerb38eff82000-04-01 11:09:21 +10001092 int i;
1093
Damien Millerbb9ffc12002-01-08 10:59:32 +11001094 if (source == NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001095 return;
Kevin Stevesef4eea92001-02-05 12:42:17 +00001096
Damien Millerbb9ffc12002-01-08 10:59:32 +11001097 for(i = 0; source[i] != NULL; i++) {
1098 var_name = xstrdup(source[i]);
1099 if ((var_val = strstr(var_name, "=")) == NULL) {
1100 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001101 continue;
Damien Millerb38eff82000-04-01 11:09:21 +10001102 }
Damien Millerbb9ffc12002-01-08 10:59:32 +11001103 *var_val++ = '\0';
1104
1105 debug3("Copy environment: %s=%s", var_name, var_val);
1106 child_set_env(env, envsize, var_name, var_val);
Damien Miller787b2ec2003-11-21 23:56:47 +11001107
Damien Millerbb9ffc12002-01-08 10:59:32 +11001108 xfree(var_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001109 }
1110}
Damien Millercb5e44a2000-09-29 12:12:36 +11001111
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001112static char **
1113do_setup_env(Session *s, const char *shell)
Damien Millerb38eff82000-04-01 11:09:21 +10001114{
Damien Millerb38eff82000-04-01 11:09:21 +10001115 char buf[256];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001116 u_int i, envsize;
Damien Millerad5ecbf2006-07-24 15:03:06 +10001117 char **env, *laddr;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001118 struct passwd *pw = s->pw;
Damien Millerad5ecbf2006-07-24 15:03:06 +10001119#ifndef HAVE_LOGIN_CAP
1120 char *path = NULL;
1121#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001122
Damien Millerb38eff82000-04-01 11:09:21 +10001123 /* Initialize the environment. */
1124 envsize = 100;
Darren Tuckerd8093e42006-05-04 16:24:34 +10001125 env = xcalloc(envsize, sizeof(char *));
Damien Millerb38eff82000-04-01 11:09:21 +10001126 env[0] = NULL;
1127
Damien Millerbac2d8a2000-09-05 16:13:06 +11001128#ifdef HAVE_CYGWIN
1129 /*
1130 * The Windows environment contains some setting which are
1131 * important for a running system. They must not be dropped.
1132 */
Darren Tucker14c372d2004-08-30 20:42:08 +10001133 {
1134 char **p;
1135
1136 p = fetch_windows_environment();
1137 copy_environment(p, &env, &envsize);
1138 free_windows_environment(p);
1139 }
Damien Millerbac2d8a2000-09-05 16:13:06 +11001140#endif
1141
Darren Tucker0efd1552003-08-26 11:49:55 +10001142#ifdef GSSAPI
Damien Millera8e06ce2003-11-21 23:48:55 +11001143 /* Allow any GSSAPI methods that we've used to alter
Darren Tucker0efd1552003-08-26 11:49:55 +10001144 * the childs environment as they see fit
1145 */
1146 ssh_gssapi_do_child(&env, &envsize);
1147#endif
1148
Damien Millerb38eff82000-04-01 11:09:21 +10001149 if (!options.use_login) {
1150 /* Set basic environment. */
Darren Tucker46bc0752004-05-02 22:11:30 +10001151 for (i = 0; i < s->num_env; i++)
Darren Tuckerfc959702004-07-17 16:12:08 +10001152 child_set_env(&env, &envsize, s->env[i].name,
Darren Tucker46bc0752004-05-02 22:11:30 +10001153 s->env[i].val);
1154
Damien Millerb38eff82000-04-01 11:09:21 +10001155 child_set_env(&env, &envsize, "USER", pw->pw_name);
1156 child_set_env(&env, &envsize, "LOGNAME", pw->pw_name);
Damien Millerdfedbf82003-01-03 14:52:53 +11001157#ifdef _AIX
1158 child_set_env(&env, &envsize, "LOGIN", pw->pw_name);
1159#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001160 child_set_env(&env, &envsize, "HOME", pw->pw_dir);
Damien Millerad833b32000-08-23 10:46:23 +10001161#ifdef HAVE_LOGIN_CAP
Ben Lindstromb9051ec2002-07-23 21:11:09 +00001162 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETPATH) < 0)
1163 child_set_env(&env, &envsize, "PATH", _PATH_STDPATH);
1164 else
1165 child_set_env(&env, &envsize, "PATH", getenv("PATH"));
Damien Millercb5e44a2000-09-29 12:12:36 +11001166#else /* HAVE_LOGIN_CAP */
1167# ifndef HAVE_CYGWIN
Damien Millerbac2d8a2000-09-05 16:13:06 +11001168 /*
1169 * There's no standard path on Windows. The path contains
1170 * important components pointing to the system directories,
1171 * needed for loading shared libraries. So the path better
1172 * remains intact here.
1173 */
Darren Tuckere1a790d2003-09-16 11:52:19 +10001174# ifdef HAVE_ETC_DEFAULT_LOGIN
1175 read_etc_default_login(&env, &envsize, pw->pw_uid);
1176 path = child_get_env(env, "PATH");
1177# endif /* HAVE_ETC_DEFAULT_LOGIN */
1178 if (path == NULL || *path == '\0') {
Damien Millera8e06ce2003-11-21 23:48:55 +11001179 child_set_env(&env, &envsize, "PATH",
Darren Tuckere1a790d2003-09-16 11:52:19 +10001180 s->pw->pw_uid == 0 ?
1181 SUPERUSER_PATH : _PATH_STDPATH);
1182 }
Damien Millercb5e44a2000-09-29 12:12:36 +11001183# endif /* HAVE_CYGWIN */
1184#endif /* HAVE_LOGIN_CAP */
Damien Millerb38eff82000-04-01 11:09:21 +10001185
1186 snprintf(buf, sizeof buf, "%.200s/%.50s",
1187 _PATH_MAILDIR, pw->pw_name);
1188 child_set_env(&env, &envsize, "MAIL", buf);
1189
1190 /* Normal systems set SHELL by default. */
1191 child_set_env(&env, &envsize, "SHELL", shell);
1192 }
1193 if (getenv("TZ"))
1194 child_set_env(&env, &envsize, "TZ", getenv("TZ"));
1195
1196 /* Set custom environment options from RSA authentication. */
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001197 if (!options.use_login) {
1198 while (custom_environment) {
1199 struct envstring *ce = custom_environment;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001200 char *str = ce->s;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001201
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001202 for (i = 0; str[i] != '=' && str[i]; i++)
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001203 ;
Ben Lindstrom5a9d0ea2002-07-04 00:12:53 +00001204 if (str[i] == '=') {
1205 str[i] = 0;
1206 child_set_env(&env, &envsize, str, str + i + 1);
Ben Lindstrom38b951c2001-12-06 17:47:47 +00001207 }
1208 custom_environment = ce->next;
1209 xfree(ce->s);
1210 xfree(ce);
Damien Millerb38eff82000-04-01 11:09:21 +10001211 }
Damien Millerb38eff82000-04-01 11:09:21 +10001212 }
1213
Damien Millerf37e2462002-09-19 11:47:55 +10001214 /* SSH_CLIENT deprecated */
Damien Millerb38eff82000-04-01 11:09:21 +10001215 snprintf(buf, sizeof buf, "%.50s %d %d",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001216 get_remote_ipaddr(), get_remote_port(), get_local_port());
Damien Millerb38eff82000-04-01 11:09:21 +10001217 child_set_env(&env, &envsize, "SSH_CLIENT", buf);
1218
Damien Miller00111382003-03-10 11:21:17 +11001219 laddr = get_local_ipaddr(packet_get_connection_in());
Damien Millerf37e2462002-09-19 11:47:55 +10001220 snprintf(buf, sizeof buf, "%.50s %d %.50s %d",
Damien Miller00111382003-03-10 11:21:17 +11001221 get_remote_ipaddr(), get_remote_port(), laddr, get_local_port());
1222 xfree(laddr);
Damien Millerf37e2462002-09-19 11:47:55 +10001223 child_set_env(&env, &envsize, "SSH_CONNECTION", buf);
1224
Ben Lindstrom86fe8682001-03-17 00:32:57 +00001225 if (s->ttyfd != -1)
1226 child_set_env(&env, &envsize, "SSH_TTY", s->tty);
1227 if (s->term)
1228 child_set_env(&env, &envsize, "TERM", s->term);
1229 if (s->display)
1230 child_set_env(&env, &envsize, "DISPLAY", s->display);
Damien Miller7b28dc52000-09-05 13:34:53 +11001231 if (original_command)
1232 child_set_env(&env, &envsize, "SSH_ORIGINAL_COMMAND",
1233 original_command);
Damien Millerb38eff82000-04-01 11:09:21 +10001234
Tim Rice81ed5182002-09-25 17:38:46 -07001235#ifdef _UNICOS
1236 if (cray_tmpdir[0] != '\0')
1237 child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
1238#endif /* _UNICOS */
1239
Darren Tucker9dc6c7d2005-02-02 18:30:33 +11001240 /*
1241 * Since we clear KRB5CCNAME at startup, if it's set now then it
1242 * must have been set by a native authentication method (eg AIX or
1243 * SIA), so copy it to the child.
1244 */
1245 {
1246 char *cp;
1247
1248 if ((cp = getenv("KRB5CCNAME")) != NULL)
1249 child_set_env(&env, &envsize, "KRB5CCNAME", cp);
1250 }
1251
Damien Millerb38eff82000-04-01 11:09:21 +10001252#ifdef _AIX
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001253 {
1254 char *cp;
1255
1256 if ((cp = getenv("AUTHSTATE")) != NULL)
1257 child_set_env(&env, &envsize, "AUTHSTATE", cp);
Ben Lindstrom839ac4f2002-02-24 20:42:46 +00001258 read_environment_file(&env, &envsize, "/etc/environment");
1259 }
Damien Millerb38eff82000-04-01 11:09:21 +10001260#endif
Ben Lindstromec95ed92001-07-04 04:21:14 +00001261#ifdef KRB5
Damien Miller9c870f92004-04-16 22:47:55 +10001262 if (s->authctxt->krb5_ccname)
Ben Lindstromec95ed92001-07-04 04:21:14 +00001263 child_set_env(&env, &envsize, "KRB5CCNAME",
Damien Miller9c870f92004-04-16 22:47:55 +10001264 s->authctxt->krb5_ccname);
Ben Lindstromec95ed92001-07-04 04:21:14 +00001265#endif
Damien Millerb38eff82000-04-01 11:09:21 +10001266#ifdef USE_PAM
Kevin Steves38b050a2002-07-23 00:44:07 +00001267 /*
1268 * Pull in any environment variables that may have
1269 * been set by PAM.
1270 */
Damien Miller4e448a32003-05-14 15:11:48 +10001271 if (options.use_pam) {
Damien Millerc756e9b2003-11-17 21:41:42 +11001272 char **p;
Damien Miller787b2ec2003-11-21 23:56:47 +11001273
Damien Millerc756e9b2003-11-17 21:41:42 +11001274 p = fetch_pam_child_environment();
1275 copy_environment(p, &env, &envsize);
1276 free_pam_environment(p);
Kevin Steves38b050a2002-07-23 00:44:07 +00001277
Damien Millerc756e9b2003-11-17 21:41:42 +11001278 p = fetch_pam_environment();
Kevin Steves38b050a2002-07-23 00:44:07 +00001279 copy_environment(p, &env, &envsize);
1280 free_pam_environment(p);
1281 }
Damien Millerb38eff82000-04-01 11:09:21 +10001282#endif /* USE_PAM */
1283
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001284 if (auth_sock_name != NULL)
Damien Millerb38eff82000-04-01 11:09:21 +10001285 child_set_env(&env, &envsize, SSH_AUTHSOCKET_ENV_NAME,
Ben Lindstrom8bb6f362002-06-11 15:59:02 +00001286 auth_sock_name);
Damien Millerb38eff82000-04-01 11:09:21 +10001287
1288 /* read $HOME/.ssh/environment. */
Ben Lindstrom5d860f02002-08-01 01:28:38 +00001289 if (options.permit_user_env && !options.use_login) {
Damien Millerb1715dc2000-05-30 13:44:51 +10001290 snprintf(buf, sizeof buf, "%.200s/.ssh/environment",
Damien Millere9994cb2002-09-10 21:43:53 +10001291 strcmp(pw->pw_dir, "/") ? pw->pw_dir : "");
Damien Millerb38eff82000-04-01 11:09:21 +10001292 read_environment_file(&env, &envsize, buf);
1293 }
1294 if (debug_flag) {
1295 /* dump the environment */
1296 fprintf(stderr, "Environment:\n");
1297 for (i = 0; env[i]; i++)
1298 fprintf(stderr, " %.200s\n", env[i]);
1299 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001300 return env;
1301}
1302
1303/*
1304 * Run $HOME/.ssh/rc, /etc/ssh/sshrc, or xauth (whichever is found
1305 * first in this order).
1306 */
1307static void
1308do_rc_files(Session *s, const char *shell)
1309{
1310 FILE *f = NULL;
1311 char cmd[1024];
1312 int do_xauth;
1313 struct stat st;
1314
1315 do_xauth =
1316 s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
1317
Damien Millera1b48cc2008-03-27 11:02:02 +11001318 /* ignore _PATH_SSH_USER_RC for subsystems and admin forced commands */
Damien Miller55360e12008-03-27 11:02:27 +11001319 if (!s->is_subsystem && options.adm_forced_command == NULL &&
Damien Millerff0dd882008-05-19 14:55:02 +10001320 !no_user_rc && stat(_PATH_SSH_USER_RC, &st) >= 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001321 snprintf(cmd, sizeof cmd, "%s -c '%s %s'",
1322 shell, _PATH_BSHELL, _PATH_SSH_USER_RC);
1323 if (debug_flag)
1324 fprintf(stderr, "Running %s\n", cmd);
1325 f = popen(cmd, "w");
1326 if (f) {
1327 if (do_xauth)
1328 fprintf(f, "%s %s\n", s->auth_proto,
1329 s->auth_data);
1330 pclose(f);
1331 } else
1332 fprintf(stderr, "Could not run %s\n",
1333 _PATH_SSH_USER_RC);
1334 } else if (stat(_PATH_SSH_SYSTEM_RC, &st) >= 0) {
1335 if (debug_flag)
1336 fprintf(stderr, "Running %s %s\n", _PATH_BSHELL,
1337 _PATH_SSH_SYSTEM_RC);
1338 f = popen(_PATH_BSHELL " " _PATH_SSH_SYSTEM_RC, "w");
1339 if (f) {
1340 if (do_xauth)
1341 fprintf(f, "%s %s\n", s->auth_proto,
1342 s->auth_data);
1343 pclose(f);
1344 } else
1345 fprintf(stderr, "Could not run %s\n",
1346 _PATH_SSH_SYSTEM_RC);
1347 } else if (do_xauth && options.xauth_location != NULL) {
1348 /* Add authority data to .Xauthority if appropriate. */
1349 if (debug_flag) {
1350 fprintf(stderr,
Ben Lindstrom611797e2002-12-23 02:15:57 +00001351 "Running %.500s remove %.100s\n",
Darren Tucker3e33cec2003-10-02 16:12:36 +10001352 options.xauth_location, s->auth_display);
Ben Lindstrom611797e2002-12-23 02:15:57 +00001353 fprintf(stderr,
1354 "%.500s add %.100s %.100s %.100s\n",
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001355 options.xauth_location, s->auth_display,
1356 s->auth_proto, s->auth_data);
1357 }
1358 snprintf(cmd, sizeof cmd, "%s -q -",
1359 options.xauth_location);
1360 f = popen(cmd, "w");
1361 if (f) {
Ben Lindstrom611797e2002-12-23 02:15:57 +00001362 fprintf(f, "remove %s\n",
1363 s->auth_display);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001364 fprintf(f, "add %s %s %s\n",
1365 s->auth_display, s->auth_proto,
1366 s->auth_data);
1367 pclose(f);
1368 } else {
1369 fprintf(stderr, "Could not run %s\n",
1370 cmd);
1371 }
1372 }
1373}
1374
1375static void
1376do_nologin(struct passwd *pw)
1377{
1378 FILE *f = NULL;
1379 char buf[1024];
1380
1381#ifdef HAVE_LOGIN_CAP
1382 if (!login_getcapbool(lc, "ignorenologin", 0) && pw->pw_uid)
1383 f = fopen(login_getcapstr(lc, "nologin", _PATH_NOLOGIN,
1384 _PATH_NOLOGIN), "r");
1385#else
1386 if (pw->pw_uid)
1387 f = fopen(_PATH_NOLOGIN, "r");
1388#endif
1389 if (f) {
1390 /* /etc/nologin exists. Print its contents and exit. */
Damien Miller996acd22003-04-09 20:59:48 +10001391 logit("User %.100s not allowed because %s exists",
Damien Millera6eb2b72002-09-19 11:50:48 +10001392 pw->pw_name, _PATH_NOLOGIN);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001393 while (fgets(buf, sizeof(buf), f))
1394 fputs(buf, stderr);
1395 fclose(f);
Damien Millerf25c18d2003-01-07 17:38:58 +11001396 fflush(NULL);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001397 exit(254);
1398 }
1399}
1400
Damien Millerd8cb1f12008-02-10 22:40:12 +11001401/*
1402 * Chroot into a directory after checking it for safety: all path components
1403 * must be root-owned directories with strict permissions.
1404 */
1405static void
1406safely_chroot(const char *path, uid_t uid)
1407{
1408 const char *cp;
1409 char component[MAXPATHLEN];
1410 struct stat st;
1411
1412 if (*path != '/')
1413 fatal("chroot path does not begin at root");
1414 if (strlen(path) >= sizeof(component))
1415 fatal("chroot path too long");
1416
1417 /*
1418 * Descend the path, checking that each component is a
1419 * root-owned directory with strict permissions.
1420 */
1421 for (cp = path; cp != NULL;) {
1422 if ((cp = strchr(cp, '/')) == NULL)
1423 strlcpy(component, path, sizeof(component));
1424 else {
1425 cp++;
1426 memcpy(component, path, cp - path);
1427 component[cp - path] = '\0';
1428 }
1429
1430 debug3("%s: checking '%s'", __func__, component);
1431
1432 if (stat(component, &st) != 0)
1433 fatal("%s: stat(\"%s\"): %s", __func__,
1434 component, strerror(errno));
1435 if (st.st_uid != 0 || (st.st_mode & 022) != 0)
1436 fatal("bad ownership or modes for chroot "
1437 "directory %s\"%s\"",
1438 cp == NULL ? "" : "component ", component);
1439 if (!S_ISDIR(st.st_mode))
1440 fatal("chroot path %s\"%s\" is not a directory",
1441 cp == NULL ? "" : "component ", component);
1442
1443 }
1444
1445 if (chdir(path) == -1)
1446 fatal("Unable to chdir to chroot path \"%s\": "
1447 "%s", path, strerror(errno));
1448 if (chroot(path) == -1)
1449 fatal("chroot(\"%s\"): %s", path, strerror(errno));
1450 if (chdir("/") == -1)
1451 fatal("%s: chdir(/) after chroot: %s",
1452 __func__, strerror(errno));
1453 verbose("Changed root directory to \"%s\"", path);
1454}
1455
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001456/* Set login name, uid, gid, and groups. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001457void
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001458do_setusercontext(struct passwd *pw)
1459{
Damien Miller54e37732008-02-10 22:48:55 +11001460 char *chroot_path, *tmp;
1461
Darren Tuckerb8eb5862008-03-27 07:27:20 +11001462#ifdef WITH_SELINUX
1463 /* Cache selinux status for later use */
1464 (void)ssh_selinux_enabled();
1465#endif
1466
Damien Miller1a3ccb02003-02-24 13:04:01 +11001467#ifndef HAVE_CYGWIN
1468 if (getuid() == 0 || geteuid() == 0)
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001469#endif /* HAVE_CYGWIN */
Damien Miller1a3ccb02003-02-24 13:04:01 +11001470 {
1471
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001472#ifdef HAVE_SETPCRED
Darren Tucker793e8172003-07-08 21:01:04 +10001473 if (setpcred(pw->pw_name, (char **)NULL) == -1)
1474 fatal("Failed to set process credentials");
Ben Lindstromf0bfa832002-06-21 00:01:18 +00001475#endif /* HAVE_SETPCRED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001476#ifdef HAVE_LOGIN_CAP
Ben Lindstrom938b8282002-07-15 17:58:34 +00001477# ifdef __bsdi__
Damien Millerf18cd162002-06-26 19:12:59 +10001478 setpgid(0, 0);
Ben Lindstrom938b8282002-07-15 17:58:34 +00001479# endif
Damien Millerd3526362004-01-23 14:16:26 +11001480# ifdef USE_PAM
1481 if (options.use_pam) {
Darren Tucker2d963642007-08-13 23:11:56 +10001482 do_pam_setcred(use_privsep);
Damien Millerd3526362004-01-23 14:16:26 +11001483 }
1484# endif /* USE_PAM */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001485 if (setusercontext(lc, pw, pw->pw_uid,
Damien Millerd8cb1f12008-02-10 22:40:12 +11001486 (LOGIN_SETALL & ~(LOGIN_SETPATH|LOGIN_SETUSER))) < 0) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001487 perror("unable to set user context");
1488 exit(1);
1489 }
1490#else
1491# if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
1492 /* Sets login uid for accounting */
1493 if (getluid() == -1 && setluid(pw->pw_uid) == -1)
1494 error("setluid: %s", strerror(errno));
1495# endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
1496
1497 if (setlogin(pw->pw_name) < 0)
1498 error("setlogin failed: %s", strerror(errno));
1499 if (setgid(pw->pw_gid) < 0) {
1500 perror("setgid");
1501 exit(1);
1502 }
1503 /* Initialize the group list. */
1504 if (initgroups(pw->pw_name, pw->pw_gid) < 0) {
1505 perror("initgroups");
1506 exit(1);
1507 }
1508 endgrent();
1509# ifdef USE_PAM
1510 /*
Damien Millera8e06ce2003-11-21 23:48:55 +11001511 * PAM credentials may take the form of supplementary groups.
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001512 * These will have been wiped by the above initgroups() call.
1513 * Reestablish them here.
1514 */
Damien Miller341c6e62003-09-02 23:18:52 +10001515 if (options.use_pam) {
Darren Tucker2d963642007-08-13 23:11:56 +10001516 do_pam_setcred(use_privsep);
Damien Miller341c6e62003-09-02 23:18:52 +10001517 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001518# endif /* USE_PAM */
1519# if defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY)
1520 irix_setusercontext(pw);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001521# endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */
Ben Lindstromb129be62002-06-25 17:12:26 +00001522# ifdef _AIX
Ben Lindstrom51b24882002-07-04 03:08:40 +00001523 aix_usrinfo(pw);
Ben Lindstromb129be62002-06-25 17:12:26 +00001524# endif /* _AIX */
Damien Millerd8cb1f12008-02-10 22:40:12 +11001525# ifdef USE_LIBIAF
Tim Rice2291c002005-08-26 13:15:19 -07001526 if (set_id(pw->pw_name) != 0) {
1527 exit(1);
1528 }
Damien Millerd8cb1f12008-02-10 22:40:12 +11001529# endif /* USE_LIBIAF */
1530#endif
1531
1532 if (options.chroot_directory != NULL &&
1533 strcasecmp(options.chroot_directory, "none") != 0) {
Damien Miller54e37732008-02-10 22:48:55 +11001534 tmp = tilde_expand_filename(options.chroot_directory,
1535 pw->pw_uid);
1536 chroot_path = percent_expand(tmp, "h", pw->pw_dir,
1537 "u", pw->pw_name, (char *)NULL);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001538 safely_chroot(chroot_path, pw->pw_uid);
Damien Miller54e37732008-02-10 22:48:55 +11001539 free(tmp);
Damien Millerd8cb1f12008-02-10 22:40:12 +11001540 free(chroot_path);
1541 }
1542
1543#ifdef HAVE_LOGIN_CAP
1544 if (setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUSER) < 0) {
1545 perror("unable to set user context (setuser)");
1546 exit(1);
1547 }
1548#else
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001549 /* Permanently switch to the desired uid. */
1550 permanently_set_uid(pw);
1551#endif
1552 }
Damien Miller1a3ccb02003-02-24 13:04:01 +11001553
1554#ifdef HAVE_CYGWIN
1555 if (is_winnt)
1556#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001557 if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid)
1558 fatal("Failed to set uids to %u.", (u_int) pw->pw_uid);
Damien Miller73b42d22006-04-22 21:26:08 +10001559
1560#ifdef WITH_SELINUX
1561 ssh_selinux_setup_exec_context(pw->pw_name);
1562#endif
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001563}
1564
Ben Lindstrom08105192002-03-22 02:50:06 +00001565static void
Darren Tucker23bc8d02004-02-06 16:24:31 +11001566do_pwchange(Session *s)
1567{
Darren Tucker09991742004-07-17 17:05:14 +10001568 fflush(NULL);
Darren Tucker23bc8d02004-02-06 16:24:31 +11001569 fprintf(stderr, "WARNING: Your password has expired.\n");
1570 if (s->ttyfd != -1) {
Darren Tuckerfc959702004-07-17 16:12:08 +10001571 fprintf(stderr,
Darren Tucker23bc8d02004-02-06 16:24:31 +11001572 "You must change your password now and login again!\n");
Darren Tucker33370e02005-02-09 22:17:28 +11001573#ifdef PASSWD_NEEDS_USERNAME
1574 execl(_PATH_PASSWD_PROG, "passwd", s->pw->pw_name,
1575 (char *)NULL);
1576#else
Darren Tucker23bc8d02004-02-06 16:24:31 +11001577 execl(_PATH_PASSWD_PROG, "passwd", (char *)NULL);
Darren Tucker33370e02005-02-09 22:17:28 +11001578#endif
Darren Tucker23bc8d02004-02-06 16:24:31 +11001579 perror("passwd");
1580 } else {
1581 fprintf(stderr,
1582 "Password change required but no TTY available.\n");
1583 }
1584 exit(1);
1585}
1586
1587static void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001588launch_login(struct passwd *pw, const char *hostname)
1589{
1590 /* Launch login(1). */
1591
Ben Lindstrom378a4172002-06-07 14:49:56 +00001592 execl(LOGIN_PROGRAM, "login", "-h", hostname,
Kevin Stevesb4799a32002-03-24 23:19:54 +00001593#ifdef xxxLOGIN_NEEDS_TERM
Ben Lindstrom5a6abda2002-06-09 19:41:48 +00001594 (s->term ? s->term : "unknown"),
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001595#endif /* LOGIN_NEEDS_TERM */
Kevin Steves5feaaef2002-04-23 20:45:55 +00001596#ifdef LOGIN_NO_ENDOPT
1597 "-p", "-f", pw->pw_name, (char *)NULL);
1598#else
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001599 "-p", "-f", "--", pw->pw_name, (char *)NULL);
Kevin Steves5feaaef2002-04-23 20:45:55 +00001600#endif
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001601
1602 /* Login couldn't be executed, die. */
1603
1604 perror("login");
1605 exit(1);
1606}
1607
Darren Tucker23bc8d02004-02-06 16:24:31 +11001608static void
1609child_close_fds(void)
1610{
1611 int i;
1612
1613 if (packet_get_connection_in() == packet_get_connection_out())
1614 close(packet_get_connection_in());
1615 else {
1616 close(packet_get_connection_in());
1617 close(packet_get_connection_out());
1618 }
1619 /*
1620 * Close all descriptors related to channels. They will still remain
1621 * open in the parent.
1622 */
1623 /* XXX better use close-on-exec? -markus */
1624 channel_close_all();
1625
1626 /*
1627 * Close any extra file descriptors. Note that there may still be
1628 * descriptors left by system functions. They will be closed later.
1629 */
1630 endpwent();
1631
1632 /*
Damien Miller788f2122005-11-05 15:14:59 +11001633 * Close any extra open file descriptors so that we don't have them
Darren Tucker23bc8d02004-02-06 16:24:31 +11001634 * hanging around in clients. Note that we want to do this after
1635 * initgroups, because at least on Solaris 2.3 it leaves file
1636 * descriptors open.
1637 */
1638 for (i = 3; i < 64; i++)
1639 close(i);
1640}
1641
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001642/*
1643 * Performs common processing for the child, such as setting up the
1644 * environment, closing extra file descriptors, setting the user and group
1645 * ids, and executing the command or shell.
1646 */
Damien Millerdfc24252008-02-10 22:29:40 +11001647#define ARGV_MAX 10
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001648void
1649do_child(Session *s, const char *command)
1650{
1651 extern char **environ;
1652 char **env;
Damien Millerdfc24252008-02-10 22:29:40 +11001653 char *argv[ARGV_MAX];
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001654 const char *shell, *shell0, *hostname = NULL;
1655 struct passwd *pw = s->pw;
Damien Miller6051c942008-06-16 07:53:16 +10001656 int r = 0;
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001657
1658 /* remove hostkey from the child's memory */
1659 destroy_sensitive_data();
1660
Darren Tucker23bc8d02004-02-06 16:24:31 +11001661 /* Force a password change */
1662 if (s->authctxt->force_pwchange) {
1663 do_setusercontext(pw);
1664 child_close_fds();
1665 do_pwchange(s);
1666 exit(1);
1667 }
1668
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001669 /* login(1) is only called if we execute the login shell */
1670 if (options.use_login && command != NULL)
1671 options.use_login = 0;
1672
Tim Rice81ed5182002-09-25 17:38:46 -07001673#ifdef _UNICOS
1674 cray_setup(pw->pw_uid, pw->pw_name, command);
1675#endif /* _UNICOS */
1676
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001677 /*
1678 * Login(1) does this as well, and it needs uid 0 for the "-h"
1679 * switch, so we let login(1) to this for us.
1680 */
1681 if (!options.use_login) {
1682#ifdef HAVE_OSF_SIA
Ben Lindstromc8c548d2003-03-21 01:18:09 +00001683 session_setup_sia(pw, s->ttyfd == -1 ? NULL : s->tty);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001684 if (!check_quietlogin(s, command))
1685 do_motd();
1686#else /* HAVE_OSF_SIA */
Darren Tucker42308a42005-10-30 15:31:55 +11001687 /* When PAM is enabled we rely on it to do the nologin check */
1688 if (!options.use_pam)
1689 do_nologin(pw);
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001690 do_setusercontext(pw);
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001691 /*
1692 * PAM session modules in do_setusercontext may have
1693 * generated messages, so if this in an interactive
1694 * login then display them too.
1695 */
Darren Tuckera2a3ed02004-09-11 23:09:53 +10001696 if (!check_quietlogin(s, command))
Darren Tucker0a44d1e2004-07-01 09:48:29 +10001697 display_loginmsg();
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001698#endif /* HAVE_OSF_SIA */
1699 }
1700
Darren Tucker69687f42004-09-11 22:17:26 +10001701#ifdef USE_PAM
Darren Tucker48554152005-04-21 19:50:55 +10001702 if (options.use_pam && !options.use_login && !is_pam_session_open()) {
1703 debug3("PAM session not opened, exiting");
Darren Tucker69687f42004-09-11 22:17:26 +10001704 display_loginmsg();
1705 exit(254);
1706 }
1707#endif
1708
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001709 /*
1710 * Get the shell from the password data. An empty shell field is
1711 * legal, and means /bin/sh.
1712 */
1713 shell = (pw->pw_shell[0] == '\0') ? _PATH_BSHELL : pw->pw_shell;
Ben Lindstrom46767602002-12-23 02:26:08 +00001714
1715 /*
1716 * Make sure $SHELL points to the shell from the password file,
1717 * even if shell is overridden from login.conf
1718 */
1719 env = do_setup_env(s, shell);
1720
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001721#ifdef HAVE_LOGIN_CAP
1722 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1723#endif
1724
Damien Millerad833b32000-08-23 10:46:23 +10001725 /* we have to stash the hostname before we close our socket. */
1726 if (options.use_login)
Ben Lindstromf15a3862001-04-05 23:32:17 +00001727 hostname = get_remote_name_or_ip(utmp_len,
Damien Miller3a961dc2003-06-03 10:25:48 +10001728 options.use_dns);
Damien Millerb38eff82000-04-01 11:09:21 +10001729 /*
1730 * Close the connection descriptors; note that this is the child, and
1731 * the server will still have the socket open, and it is important
1732 * that we do not shutdown it. Note that the descriptors cannot be
1733 * closed before building the environment, as we call
1734 * get_remote_ipaddr there.
1735 */
Darren Tucker23bc8d02004-02-06 16:24:31 +11001736 child_close_fds();
Damien Millerb38eff82000-04-01 11:09:21 +10001737
Damien Millerb38eff82000-04-01 11:09:21 +10001738 /*
Damien Miller05eda432002-02-10 18:32:28 +11001739 * Must take new environment into use so that .ssh/rc,
1740 * /etc/ssh/sshrc and xauth are run in the proper environment.
Damien Millerb38eff82000-04-01 11:09:21 +10001741 */
1742 environ = env;
1743
Darren Tucker3c78c5e2004-01-23 22:03:10 +11001744#if defined(KRB5) && defined(USE_AFS)
Darren Tucker22ef5082003-12-31 11:37:34 +11001745 /*
1746 * At this point, we check to see if AFS is active and if we have
1747 * a valid Kerberos 5 TGT. If so, it seems like a good idea to see
1748 * if we can (and need to) extend the ticket into an AFS token. If
1749 * we don't do this, we run into potential problems if the user's
1750 * home directory is in AFS and it's not world-readable.
1751 */
1752
1753 if (options.kerberos_get_afs_token && k_hasafs() &&
Damien Miller0dc1bef2005-07-17 17:22:45 +10001754 (s->authctxt->krb5_ctx != NULL)) {
Darren Tucker22ef5082003-12-31 11:37:34 +11001755 char cell[64];
1756
1757 debug("Getting AFS token");
1758
1759 k_setpag();
1760
1761 if (k_afs_cell_of_file(pw->pw_dir, cell, sizeof(cell)) == 0)
1762 krb5_afslog(s->authctxt->krb5_ctx,
1763 s->authctxt->krb5_fwd_ccache, cell, NULL);
1764
1765 krb5_afslog_home(s->authctxt->krb5_ctx,
1766 s->authctxt->krb5_fwd_ccache, NULL, NULL, pw->pw_dir);
1767 }
1768#endif
1769
Damien Miller788f2122005-11-05 15:14:59 +11001770 /* Change current directory to the user's home directory. */
Damien Miller139d4cd2001-10-10 15:07:44 +10001771 if (chdir(pw->pw_dir) < 0) {
Damien Miller6051c942008-06-16 07:53:16 +10001772 /* Suppress missing homedir warning for chroot case */
Damien Miller139d4cd2001-10-10 15:07:44 +10001773#ifdef HAVE_LOGIN_CAP
Damien Miller6051c942008-06-16 07:53:16 +10001774 r = login_getcapbool(lc, "requirehome", 0);
Damien Miller139d4cd2001-10-10 15:07:44 +10001775#endif
Damien Miller6051c942008-06-16 07:53:16 +10001776 if (r || options.chroot_directory == NULL)
1777 fprintf(stderr, "Could not chdir to home "
1778 "directory %s: %s\n", pw->pw_dir,
1779 strerror(errno));
1780 if (r)
1781 exit(1);
Damien Miller139d4cd2001-10-10 15:07:44 +10001782 }
1783
Damien Millera1939002008-03-15 17:27:58 +11001784 closefrom(STDERR_FILENO + 1);
1785
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001786 if (!options.use_login)
1787 do_rc_files(s, shell);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001788
1789 /* restore SIGPIPE for child */
Damien Miller9ab00b42006-08-05 12:40:11 +10001790 signal(SIGPIPE, SIG_DFL);
Ben Lindstromde71cda2001-03-24 00:43:26 +00001791
Damien Millerdfc24252008-02-10 22:29:40 +11001792 if (s->is_subsystem == SUBSYSTEM_INT_SFTP) {
1793 extern int optind, optreset;
1794 int i;
1795 char *p, *args;
1796
1797 setproctitle("%s@internal-sftp-server", s->pw->pw_name);
Damien Millerd58f5602008-11-03 19:20:49 +11001798 args = xstrdup(command ? command : "sftp-server");
Damien Millerdfc24252008-02-10 22:29:40 +11001799 for (i = 0, (p = strtok(args, " ")); p; (p = strtok(NULL, " ")))
1800 if (i < ARGV_MAX - 1)
1801 argv[i++] = p;
1802 argv[i] = NULL;
1803 optind = optreset = 1;
1804 __progname = argv[0];
Damien Millerd8cb1f12008-02-10 22:40:12 +11001805 exit(sftp_server_main(i, argv, s->pw));
Damien Millerdfc24252008-02-10 22:29:40 +11001806 }
1807
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001808 if (options.use_login) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001809 launch_login(pw, hostname);
1810 /* NEVERREACHED */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001811 }
1812
1813 /* Get the last component of the shell name. */
1814 if ((shell0 = strrchr(shell, '/')) != NULL)
1815 shell0++;
1816 else
1817 shell0 = shell;
1818
Damien Millerb38eff82000-04-01 11:09:21 +10001819 /*
1820 * If we have no command, execute the shell. In this case, the shell
1821 * name to be passed in argv[0] is preceded by '-' to indicate that
1822 * this is a login shell.
1823 */
1824 if (!command) {
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001825 char argv0[256];
Damien Millerb38eff82000-04-01 11:09:21 +10001826
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001827 /* Start the shell. Set initial character to '-'. */
1828 argv0[0] = '-';
Damien Millerb38eff82000-04-01 11:09:21 +10001829
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001830 if (strlcpy(argv0 + 1, shell0, sizeof(argv0) - 1)
1831 >= sizeof(argv0) - 1) {
1832 errno = EINVAL;
Damien Millerb38eff82000-04-01 11:09:21 +10001833 perror(shell);
1834 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001835 }
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001836
1837 /* Execute the shell. */
1838 argv[0] = argv0;
1839 argv[1] = NULL;
1840 execve(shell, argv, env);
1841
1842 /* Executing the shell failed. */
1843 perror(shell);
1844 exit(1);
Damien Millerb38eff82000-04-01 11:09:21 +10001845 }
1846 /*
1847 * Execute the command using the user's shell. This uses the -c
1848 * option to execute the command.
1849 */
Ben Lindstrom4e97e852002-02-19 21:50:43 +00001850 argv[0] = (char *) shell0;
Damien Millerb38eff82000-04-01 11:09:21 +10001851 argv[1] = "-c";
1852 argv[2] = (char *) command;
1853 argv[3] = NULL;
1854 execve(shell, argv, env);
1855 perror(shell);
1856 exit(1);
1857}
1858
Damien Miller7207f642008-05-19 15:34:50 +10001859void
1860session_unused(int id)
1861{
1862 debug3("%s: session id %d unused", __func__, id);
1863 if (id >= options.max_sessions ||
1864 id >= sessions_nalloc) {
1865 fatal("%s: insane session id %d (max %d nalloc %d)",
1866 __func__, id, options.max_sessions, sessions_nalloc);
1867 }
1868 bzero(&sessions[id], sizeof(*sessions));
1869 sessions[id].self = id;
1870 sessions[id].used = 0;
1871 sessions[id].chanid = -1;
1872 sessions[id].ptyfd = -1;
1873 sessions[id].ttyfd = -1;
1874 sessions[id].ptymaster = -1;
1875 sessions[id].x11_chanids = NULL;
1876 sessions[id].next_unused = sessions_first_unused;
1877 sessions_first_unused = id;
1878}
1879
Damien Millerb38eff82000-04-01 11:09:21 +10001880Session *
1881session_new(void)
1882{
Damien Miller7207f642008-05-19 15:34:50 +10001883 Session *s, *tmp;
1884
1885 if (sessions_first_unused == -1) {
1886 if (sessions_nalloc >= options.max_sessions)
1887 return NULL;
1888 debug2("%s: allocate (allocated %d max %d)",
1889 __func__, sessions_nalloc, options.max_sessions);
1890 tmp = xrealloc(sessions, sessions_nalloc + 1,
1891 sizeof(*sessions));
1892 if (tmp == NULL) {
1893 error("%s: cannot allocate %d sessions",
1894 __func__, sessions_nalloc + 1);
1895 return NULL;
Damien Millerb38eff82000-04-01 11:09:21 +10001896 }
Damien Miller7207f642008-05-19 15:34:50 +10001897 sessions = tmp;
1898 session_unused(sessions_nalloc++);
Damien Millerb38eff82000-04-01 11:09:21 +10001899 }
Damien Miller7207f642008-05-19 15:34:50 +10001900
1901 if (sessions_first_unused >= sessions_nalloc ||
1902 sessions_first_unused < 0) {
1903 fatal("%s: insane first_unused %d max %d nalloc %d",
1904 __func__, sessions_first_unused, options.max_sessions,
1905 sessions_nalloc);
Damien Millerb38eff82000-04-01 11:09:21 +10001906 }
Damien Miller7207f642008-05-19 15:34:50 +10001907
1908 s = &sessions[sessions_first_unused];
1909 if (s->used) {
1910 fatal("%s: session %d already used",
1911 __func__, sessions_first_unused);
1912 }
1913 sessions_first_unused = s->next_unused;
1914 s->used = 1;
1915 s->next_unused = -1;
1916 debug("session_new: session %d", s->self);
1917
1918 return s;
Damien Millerb38eff82000-04-01 11:09:21 +10001919}
1920
Ben Lindstrombba81212001-06-25 05:01:22 +00001921static void
Damien Millerb38eff82000-04-01 11:09:21 +10001922session_dump(void)
1923{
1924 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001925 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerb38eff82000-04-01 11:09:21 +10001926 Session *s = &sessions[i];
Damien Miller7207f642008-05-19 15:34:50 +10001927
1928 debug("dump: used %d next_unused %d session %d %p "
1929 "channel %d pid %ld",
Damien Millerb38eff82000-04-01 11:09:21 +10001930 s->used,
Damien Miller7207f642008-05-19 15:34:50 +10001931 s->next_unused,
Damien Millerb38eff82000-04-01 11:09:21 +10001932 s->self,
1933 s,
1934 s->chanid,
Ben Lindstromce0f6342002-06-11 16:42:49 +00001935 (long)s->pid);
Damien Millerb38eff82000-04-01 11:09:21 +10001936 }
1937}
1938
Damien Millerefb4afe2000-04-12 18:45:05 +10001939int
Ben Lindstrombddd5512001-07-04 04:53:53 +00001940session_open(Authctxt *authctxt, int chanid)
Damien Millerefb4afe2000-04-12 18:45:05 +10001941{
1942 Session *s = session_new();
1943 debug("session_open: channel %d", chanid);
1944 if (s == NULL) {
1945 error("no more sessions");
1946 return 0;
1947 }
Ben Lindstrombddd5512001-07-04 04:53:53 +00001948 s->authctxt = authctxt;
1949 s->pw = authctxt->pw;
Damien Miller3e3b5142003-11-17 21:13:40 +11001950 if (s->pw == NULL || !authctxt->valid)
Kevin Steves43cdef32001-02-11 14:12:08 +00001951 fatal("no user for session %d", s->self);
Damien Millerbd483e72000-04-30 10:00:53 +10001952 debug("session_open: session %d: link with channel %d", s->self, chanid);
1953 s->chanid = chanid;
Damien Millerefb4afe2000-04-12 18:45:05 +10001954 return 1;
1955}
1956
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001957Session *
1958session_by_tty(char *tty)
1959{
1960 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001961 for (i = 0; i < sessions_nalloc; i++) {
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00001962 Session *s = &sessions[i];
1963 if (s->used && s->ttyfd != -1 && strcmp(s->tty, tty) == 0) {
1964 debug("session_by_tty: session %d tty %s", i, tty);
1965 return s;
1966 }
1967 }
1968 debug("session_by_tty: unknown tty %.100s", tty);
1969 session_dump();
1970 return NULL;
1971}
1972
Ben Lindstrombba81212001-06-25 05:01:22 +00001973static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10001974session_by_channel(int id)
1975{
1976 int i;
Damien Miller7207f642008-05-19 15:34:50 +10001977 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10001978 Session *s = &sessions[i];
1979 if (s->used && s->chanid == id) {
Damien Miller7207f642008-05-19 15:34:50 +10001980 debug("session_by_channel: session %d channel %d",
1981 i, id);
Damien Millerefb4afe2000-04-12 18:45:05 +10001982 return s;
1983 }
1984 }
1985 debug("session_by_channel: unknown channel %d", id);
1986 session_dump();
1987 return NULL;
1988}
1989
Ben Lindstrombba81212001-06-25 05:01:22 +00001990static Session *
Damien Miller2b9b0452005-07-17 17:19:24 +10001991session_by_x11_channel(int id)
1992{
1993 int i, j;
1994
Damien Miller7207f642008-05-19 15:34:50 +10001995 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller2b9b0452005-07-17 17:19:24 +10001996 Session *s = &sessions[i];
1997
1998 if (s->x11_chanids == NULL || !s->used)
1999 continue;
2000 for (j = 0; s->x11_chanids[j] != -1; j++) {
2001 if (s->x11_chanids[j] == id) {
2002 debug("session_by_x11_channel: session %d "
2003 "channel %d", s->self, id);
2004 return s;
2005 }
2006 }
2007 }
2008 debug("session_by_x11_channel: unknown channel %d", id);
2009 session_dump();
2010 return NULL;
2011}
2012
2013static Session *
Damien Millerefb4afe2000-04-12 18:45:05 +10002014session_by_pid(pid_t pid)
2015{
2016 int i;
Ben Lindstromce0f6342002-06-11 16:42:49 +00002017 debug("session_by_pid: pid %ld", (long)pid);
Damien Miller7207f642008-05-19 15:34:50 +10002018 for (i = 0; i < sessions_nalloc; i++) {
Damien Millerefb4afe2000-04-12 18:45:05 +10002019 Session *s = &sessions[i];
2020 if (s->used && s->pid == pid)
2021 return s;
2022 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002023 error("session_by_pid: unknown pid %ld", (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002024 session_dump();
2025 return NULL;
2026}
2027
Ben Lindstrombba81212001-06-25 05:01:22 +00002028static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002029session_window_change_req(Session *s)
2030{
2031 s->col = packet_get_int();
2032 s->row = packet_get_int();
2033 s->xpixel = packet_get_int();
2034 s->ypixel = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002035 packet_check_eom();
Damien Millerefb4afe2000-04-12 18:45:05 +10002036 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2037 return 1;
2038}
2039
Ben Lindstrombba81212001-06-25 05:01:22 +00002040static int
Damien Millerefb4afe2000-04-12 18:45:05 +10002041session_pty_req(Session *s)
2042{
Ben Lindstrom46c16222000-12-22 01:43:59 +00002043 u_int len;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00002044 int n_bytes;
Ben Lindstrom6328ab32002-03-22 02:54:23 +00002045
Ben Lindstrom49c12602001-06-13 04:37:36 +00002046 if (no_pty_flag) {
2047 debug("Allocating a pty not permitted for this authentication.");
Damien Millerf6d9e222000-06-18 14:50:44 +10002048 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002049 }
2050 if (s->ttyfd != -1) {
2051 packet_disconnect("Protocol error: you already have a pty.");
Damien Miller4af51302000-04-16 11:18:38 +10002052 return 0;
Ben Lindstrom49c12602001-06-13 04:37:36 +00002053 }
2054
Damien Millerefb4afe2000-04-12 18:45:05 +10002055 s->term = packet_get_string(&len);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002056
2057 if (compat20) {
2058 s->col = packet_get_int();
2059 s->row = packet_get_int();
2060 } else {
2061 s->row = packet_get_int();
2062 s->col = packet_get_int();
2063 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002064 s->xpixel = packet_get_int();
2065 s->ypixel = packet_get_int();
2066
2067 if (strcmp(s->term, "") == 0) {
2068 xfree(s->term);
2069 s->term = NULL;
2070 }
Ben Lindstrom49c12602001-06-13 04:37:36 +00002071
Damien Millerefb4afe2000-04-12 18:45:05 +10002072 /* Allocate a pty and open it. */
Ben Lindstrom49c12602001-06-13 04:37:36 +00002073 debug("Allocating pty.");
Damien Miller7207f642008-05-19 15:34:50 +10002074 if (!PRIVSEP(pty_allocate(&s->ptyfd, &s->ttyfd, s->tty,
2075 sizeof(s->tty)))) {
Ben Lindstrom49c12602001-06-13 04:37:36 +00002076 if (s->term)
2077 xfree(s->term);
Damien Millerefb4afe2000-04-12 18:45:05 +10002078 s->term = NULL;
2079 s->ptyfd = -1;
2080 s->ttyfd = -1;
2081 error("session_pty_req: session %d alloc failed", s->self);
Damien Miller4af51302000-04-16 11:18:38 +10002082 return 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002083 }
2084 debug("session_pty_req: session %d alloc %s", s->self, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002085
2086 /* for SSH1 the tty modes length is not given */
2087 if (!compat20)
2088 n_bytes = packet_remaining();
2089 tty_parse_modes(s->ttyfd, &n_bytes);
2090
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002091 if (!use_privsep)
2092 pty_setowner(s->pw, s->tty);
Ben Lindstrom49c12602001-06-13 04:37:36 +00002093
2094 /* Set window size from the packet. */
Damien Millerefb4afe2000-04-12 18:45:05 +10002095 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
2096
Damien Miller48b03fc2002-01-22 23:11:40 +11002097 packet_check_eom();
Damien Millere247cc42000-05-07 12:03:14 +10002098 session_proctitle(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002099 return 1;
2100}
2101
Ben Lindstrombba81212001-06-25 05:01:22 +00002102static int
Damien Millerbd483e72000-04-30 10:00:53 +10002103session_subsystem_req(Session *s)
2104{
Damien Millerae452462001-10-10 15:08:06 +10002105 struct stat st;
Ben Lindstrom46c16222000-12-22 01:43:59 +00002106 u_int len;
Damien Millerbd483e72000-04-30 10:00:53 +10002107 int success = 0;
Damien Miller917f9b62006-07-10 20:36:47 +10002108 char *prog, *cmd, *subsys = packet_get_string(&len);
Damien Millereccb9de2005-06-17 12:59:34 +10002109 u_int i;
Damien Millerbd483e72000-04-30 10:00:53 +10002110
Damien Miller48b03fc2002-01-22 23:11:40 +11002111 packet_check_eom();
Damien Miller996acd22003-04-09 20:59:48 +10002112 logit("subsystem request for %.100s", subsys);
Damien Millerbd483e72000-04-30 10:00:53 +10002113
Damien Millerf6d9e222000-06-18 14:50:44 +10002114 for (i = 0; i < options.num_subsystems; i++) {
Damien Millerae452462001-10-10 15:08:06 +10002115 if (strcmp(subsys, options.subsystem_name[i]) == 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10002116 prog = options.subsystem_command[i];
2117 cmd = options.subsystem_args[i];
Damien Millerd8cb1f12008-02-10 22:40:12 +11002118 if (!strcmp(INTERNAL_SFTP_NAME, prog)) {
Damien Millerdfc24252008-02-10 22:29:40 +11002119 s->is_subsystem = SUBSYSTEM_INT_SFTP;
2120 } else if (stat(prog, &st) < 0) {
Damien Miller917f9b62006-07-10 20:36:47 +10002121 error("subsystem: cannot stat %s: %s", prog,
Damien Millerae452462001-10-10 15:08:06 +10002122 strerror(errno));
2123 break;
Damien Millerdfc24252008-02-10 22:29:40 +11002124 } else {
2125 s->is_subsystem = SUBSYSTEM_EXT;
Damien Millerae452462001-10-10 15:08:06 +10002126 }
2127 debug("subsystem: exec() %s", cmd);
Damien Miller7207f642008-05-19 15:34:50 +10002128 success = do_exec(s, cmd) == 0;
Damien Miller5fab4b92002-02-05 12:15:07 +11002129 break;
Damien Millerf6d9e222000-06-18 14:50:44 +10002130 }
2131 }
2132
2133 if (!success)
Damien Miller996acd22003-04-09 20:59:48 +10002134 logit("subsystem request for %.100s failed, subsystem not found",
Damien Millerae452462001-10-10 15:08:06 +10002135 subsys);
Damien Millerf6d9e222000-06-18 14:50:44 +10002136
Damien Millerbd483e72000-04-30 10:00:53 +10002137 xfree(subsys);
2138 return success;
2139}
2140
Ben Lindstrombba81212001-06-25 05:01:22 +00002141static int
Damien Millerbd483e72000-04-30 10:00:53 +10002142session_x11_req(Session *s)
2143{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002144 int success;
Damien Millerbd483e72000-04-30 10:00:53 +10002145
Damien Miller2b9b0452005-07-17 17:19:24 +10002146 if (s->auth_proto != NULL || s->auth_data != NULL) {
2147 error("session_x11_req: session %d: "
Darren Tucker63551872005-12-20 16:14:15 +11002148 "x11 forwarding already active", s->self);
Damien Miller2b9b0452005-07-17 17:19:24 +10002149 return 0;
2150 }
Damien Millerbd483e72000-04-30 10:00:53 +10002151 s->single_connection = packet_get_char();
2152 s->auth_proto = packet_get_string(NULL);
2153 s->auth_data = packet_get_string(NULL);
2154 s->screen = packet_get_int();
Damien Miller48b03fc2002-01-22 23:11:40 +11002155 packet_check_eom();
Damien Millerbd483e72000-04-30 10:00:53 +10002156
Ben Lindstrom768176b2001-06-09 01:29:12 +00002157 success = session_setup_x11fwd(s);
2158 if (!success) {
Damien Millerbd483e72000-04-30 10:00:53 +10002159 xfree(s->auth_proto);
2160 xfree(s->auth_data);
Ben Lindstrom88259fb2001-06-12 00:21:34 +00002161 s->auth_proto = NULL;
2162 s->auth_data = NULL;
Damien Millerbd483e72000-04-30 10:00:53 +10002163 }
Ben Lindstrom768176b2001-06-09 01:29:12 +00002164 return success;
Damien Millerbd483e72000-04-30 10:00:53 +10002165}
2166
Ben Lindstrombba81212001-06-25 05:01:22 +00002167static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002168session_shell_req(Session *s)
2169{
Damien Miller48b03fc2002-01-22 23:11:40 +11002170 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002171 return do_exec(s, NULL) == 0;
Damien Millerf6d9e222000-06-18 14:50:44 +10002172}
2173
Ben Lindstrombba81212001-06-25 05:01:22 +00002174static int
Damien Millerf6d9e222000-06-18 14:50:44 +10002175session_exec_req(Session *s)
2176{
Damien Miller7207f642008-05-19 15:34:50 +10002177 u_int len, success;
2178
Damien Millerf6d9e222000-06-18 14:50:44 +10002179 char *command = packet_get_string(&len);
Damien Miller48b03fc2002-01-22 23:11:40 +11002180 packet_check_eom();
Damien Miller7207f642008-05-19 15:34:50 +10002181 success = do_exec(s, command) == 0;
Ben Lindstrom0a7ca6c2001-06-21 03:17:42 +00002182 xfree(command);
Damien Miller7207f642008-05-19 15:34:50 +10002183 return success;
Damien Millerf6d9e222000-06-18 14:50:44 +10002184}
2185
Ben Lindstrombba81212001-06-25 05:01:22 +00002186static int
Damien Miller54c45982003-05-15 10:20:13 +10002187session_break_req(Session *s)
2188{
Damien Miller54c45982003-05-15 10:20:13 +10002189
Darren Tucker1f8311c2004-05-13 16:39:33 +10002190 packet_get_int(); /* ignored */
Damien Miller54c45982003-05-15 10:20:13 +10002191 packet_check_eom();
2192
Damien Miller7207f642008-05-19 15:34:50 +10002193 if (s->ttyfd == -1 || tcsendbreak(s->ttyfd, 0) < 0)
Damien Miller54c45982003-05-15 10:20:13 +10002194 return 0;
Damien Miller54c45982003-05-15 10:20:13 +10002195 return 1;
2196}
2197
2198static int
Darren Tucker46bc0752004-05-02 22:11:30 +10002199session_env_req(Session *s)
2200{
2201 char *name, *val;
2202 u_int name_len, val_len, i;
2203
2204 name = packet_get_string(&name_len);
2205 val = packet_get_string(&val_len);
2206 packet_check_eom();
2207
2208 /* Don't set too many environment variables */
2209 if (s->num_env > 128) {
2210 debug2("Ignoring env request %s: too many env vars", name);
2211 goto fail;
2212 }
2213
2214 for (i = 0; i < options.num_accept_env; i++) {
2215 if (match_pattern(name, options.accept_env[i])) {
2216 debug2("Setting env %d: %s=%s", s->num_env, name, val);
Damien Miller36812092006-03-26 14:22:47 +11002217 s->env = xrealloc(s->env, s->num_env + 1,
2218 sizeof(*s->env));
Darren Tucker46bc0752004-05-02 22:11:30 +10002219 s->env[s->num_env].name = name;
2220 s->env[s->num_env].val = val;
2221 s->num_env++;
2222 return (1);
2223 }
2224 }
2225 debug2("Ignoring env request %s: disallowed name", name);
2226
2227 fail:
2228 xfree(name);
2229 xfree(val);
2230 return (0);
2231}
2232
2233static int
Damien Miller0bc1bd82000-11-13 22:57:25 +11002234session_auth_agent_req(Session *s)
2235{
2236 static int called = 0;
Damien Miller48b03fc2002-01-22 23:11:40 +11002237 packet_check_eom();
Damien Miller4f755cd2008-05-19 14:57:41 +10002238 if (no_agent_forwarding_flag || !options.allow_agent_forwarding) {
Ben Lindstrom14920292000-11-21 21:24:55 +00002239 debug("session_auth_agent_req: no_agent_forwarding_flag");
2240 return 0;
2241 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11002242 if (called) {
2243 return 0;
2244 } else {
2245 called = 1;
2246 return auth_input_request_forwarding(s->pw);
2247 }
2248}
2249
Damien Millerc7ef63d2002-02-05 12:21:42 +11002250int
2251session_input_channel_req(Channel *c, const char *rtype)
Damien Millerefb4afe2000-04-12 18:45:05 +10002252{
Damien Millerefb4afe2000-04-12 18:45:05 +10002253 int success = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002254 Session *s;
Damien Millerefb4afe2000-04-12 18:45:05 +10002255
Damien Millerc7ef63d2002-02-05 12:21:42 +11002256 if ((s = session_by_channel(c->self)) == NULL) {
Damien Miller996acd22003-04-09 20:59:48 +10002257 logit("session_input_channel_req: no session %d req %.100s",
Damien Millerc7ef63d2002-02-05 12:21:42 +11002258 c->self, rtype);
2259 return 0;
2260 }
2261 debug("session_input_channel_req: session %d req %s", s->self, rtype);
Damien Millerefb4afe2000-04-12 18:45:05 +10002262
2263 /*
Ben Lindstromfc9b07d2001-03-22 01:27:23 +00002264 * a session is in LARVAL state until a shell, a command
2265 * or a subsystem is executed
Damien Millerefb4afe2000-04-12 18:45:05 +10002266 */
2267 if (c->type == SSH_CHANNEL_LARVAL) {
2268 if (strcmp(rtype, "shell") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002269 success = session_shell_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002270 } else if (strcmp(rtype, "exec") == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +10002271 success = session_exec_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002272 } else if (strcmp(rtype, "pty-req") == 0) {
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002273 success = session_pty_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002274 } else if (strcmp(rtype, "x11-req") == 0) {
2275 success = session_x11_req(s);
Damien Miller0bc1bd82000-11-13 22:57:25 +11002276 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) {
2277 success = session_auth_agent_req(s);
Damien Millerbd483e72000-04-30 10:00:53 +10002278 } else if (strcmp(rtype, "subsystem") == 0) {
2279 success = session_subsystem_req(s);
Darren Tucker46bc0752004-05-02 22:11:30 +10002280 } else if (strcmp(rtype, "env") == 0) {
2281 success = session_env_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002282 }
2283 }
2284 if (strcmp(rtype, "window-change") == 0) {
2285 success = session_window_change_req(s);
Damien Millera6b1d162004-06-30 22:41:07 +10002286 } else if (strcmp(rtype, "break") == 0) {
2287 success = session_break_req(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002288 }
Damien Millera6b1d162004-06-30 22:41:07 +10002289
Damien Millerc7ef63d2002-02-05 12:21:42 +11002290 return success;
Damien Millerefb4afe2000-04-12 18:45:05 +10002291}
2292
2293void
Darren Tuckered3cdc02008-06-16 23:29:18 +10002294session_set_fds(Session *s, int fdin, int fdout, int fderr, int is_tty)
Damien Millerefb4afe2000-04-12 18:45:05 +10002295{
2296 if (!compat20)
2297 fatal("session_set_fds: called for proto != 2.0");
2298 /*
2299 * now that have a child and a pipe to the child,
2300 * we can activate our channel and register the fd's
2301 */
2302 if (s->chanid == -1)
2303 fatal("no channel for session %d", s->self);
2304 channel_set_fds(s->chanid,
2305 fdout, fdin, fderr,
Damien Miller69b69aa2000-10-28 14:19:58 +11002306 fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ,
Darren Tuckered3cdc02008-06-16 23:29:18 +10002307 1, is_tty, CHAN_SES_WINDOW_DEFAULT);
Damien Millerefb4afe2000-04-12 18:45:05 +10002308}
2309
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002310/*
2311 * Function to perform pty cleanup. Also called if we get aborted abnormally
2312 * (e.g., due to a dropped connection).
2313 */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002314void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002315session_pty_cleanup2(Session *s)
Damien Millerb38eff82000-04-01 11:09:21 +10002316{
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002317 if (s == NULL) {
2318 error("session_pty_cleanup: no session");
2319 return;
2320 }
2321 if (s->ttyfd == -1)
Damien Millerb38eff82000-04-01 11:09:21 +10002322 return;
2323
Kevin Steves43cdef32001-02-11 14:12:08 +00002324 debug("session_pty_cleanup: session %d release %s", s->self, s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002325
Damien Millerb38eff82000-04-01 11:09:21 +10002326 /* Record that the user has logged out. */
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002327 if (s->pid != 0)
Tim Ricee06ae4a2002-02-24 17:56:46 -08002328 record_logout(s->pid, s->tty, s->pw->pw_name);
Damien Millerb38eff82000-04-01 11:09:21 +10002329
2330 /* Release the pseudo-tty. */
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002331 if (getuid() == 0)
2332 pty_release(s->tty);
Damien Millerb38eff82000-04-01 11:09:21 +10002333
2334 /*
2335 * Close the server side of the socket pairs. We must do this after
2336 * the pty cleanup, so that another process doesn't get this pty
2337 * while we're still cleaning up.
2338 */
Damien Miller7207f642008-05-19 15:34:50 +10002339 if (s->ptymaster != -1 && close(s->ptymaster) < 0)
2340 error("close(s->ptymaster/%d): %s",
2341 s->ptymaster, strerror(errno));
Damien Miller0585d512001-10-12 11:35:50 +10002342
2343 /* unlink pty from session */
2344 s->ttyfd = -1;
Damien Millerb38eff82000-04-01 11:09:21 +10002345}
Damien Millerefb4afe2000-04-12 18:45:05 +10002346
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002347void
Darren Tucker3e33cec2003-10-02 16:12:36 +10002348session_pty_cleanup(Session *s)
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002349{
Darren Tucker3e33cec2003-10-02 16:12:36 +10002350 PRIVSEP(session_pty_cleanup2(s));
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002351}
2352
Damien Miller5a80bba2002-09-04 16:39:02 +10002353static char *
2354sig2name(int sig)
2355{
2356#define SSH_SIG(x) if (sig == SIG ## x) return #x
2357 SSH_SIG(ABRT);
2358 SSH_SIG(ALRM);
2359 SSH_SIG(FPE);
2360 SSH_SIG(HUP);
2361 SSH_SIG(ILL);
2362 SSH_SIG(INT);
2363 SSH_SIG(KILL);
2364 SSH_SIG(PIPE);
2365 SSH_SIG(QUIT);
2366 SSH_SIG(SEGV);
2367 SSH_SIG(TERM);
2368 SSH_SIG(USR1);
2369 SSH_SIG(USR2);
2370#undef SSH_SIG
2371 return "SIG@openssh.com";
2372}
2373
Ben Lindstrombba81212001-06-25 05:01:22 +00002374static void
Damien Miller2b9b0452005-07-17 17:19:24 +10002375session_close_x11(int id)
2376{
2377 Channel *c;
2378
Damien Millerd47c62a2005-12-13 19:33:57 +11002379 if ((c = channel_by_id(id)) == NULL) {
Damien Miller2b9b0452005-07-17 17:19:24 +10002380 debug("session_close_x11: x11 channel %d missing", id);
2381 } else {
2382 /* Detach X11 listener */
2383 debug("session_close_x11: detach x11 channel %d", id);
2384 channel_cancel_cleanup(id);
2385 if (c->ostate != CHAN_OUTPUT_CLOSED)
2386 chan_mark_dead(c);
2387 }
2388}
2389
2390static void
2391session_close_single_x11(int id, void *arg)
2392{
2393 Session *s;
2394 u_int i;
2395
2396 debug3("session_close_single_x11: channel %d", id);
2397 channel_cancel_cleanup(id);
Darren Tucker82a3d2b2007-02-19 22:10:25 +11002398 if ((s = session_by_x11_channel(id)) == NULL)
Damien Miller2b9b0452005-07-17 17:19:24 +10002399 fatal("session_close_single_x11: no x11 channel %d", id);
2400 for (i = 0; s->x11_chanids[i] != -1; i++) {
2401 debug("session_close_single_x11: session %d: "
2402 "closing channel %d", s->self, s->x11_chanids[i]);
2403 /*
2404 * The channel "id" is already closing, but make sure we
2405 * close all of its siblings.
2406 */
2407 if (s->x11_chanids[i] != id)
2408 session_close_x11(s->x11_chanids[i]);
2409 }
2410 xfree(s->x11_chanids);
2411 s->x11_chanids = NULL;
2412 if (s->display) {
2413 xfree(s->display);
2414 s->display = NULL;
2415 }
2416 if (s->auth_proto) {
2417 xfree(s->auth_proto);
2418 s->auth_proto = NULL;
2419 }
2420 if (s->auth_data) {
2421 xfree(s->auth_data);
2422 s->auth_data = NULL;
2423 }
2424 if (s->auth_display) {
2425 xfree(s->auth_display);
2426 s->auth_display = NULL;
2427 }
2428}
2429
2430static void
Damien Millerefb4afe2000-04-12 18:45:05 +10002431session_exit_message(Session *s, int status)
2432{
2433 Channel *c;
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002434
2435 if ((c = channel_lookup(s->chanid)) == NULL)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002436 fatal("session_exit_message: session %d: no channel %d",
Damien Millerefb4afe2000-04-12 18:45:05 +10002437 s->self, s->chanid);
Ben Lindstromce0f6342002-06-11 16:42:49 +00002438 debug("session_exit_message: session %d channel %d pid %ld",
2439 s->self, s->chanid, (long)s->pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002440
2441 if (WIFEXITED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002442 channel_request_start(s->chanid, "exit-status", 0);
Damien Millerefb4afe2000-04-12 18:45:05 +10002443 packet_put_int(WEXITSTATUS(status));
2444 packet_send();
2445 } else if (WIFSIGNALED(status)) {
Damien Millerf3dcf1f2002-02-08 22:06:48 +11002446 channel_request_start(s->chanid, "exit-signal", 0);
Damien Miller5a80bba2002-09-04 16:39:02 +10002447 packet_put_cstring(sig2name(WTERMSIG(status)));
Damien Millerf3c6cf12000-05-17 22:08:29 +10002448#ifdef WCOREDUMP
Damien Miller767087b2008-03-07 18:32:42 +11002449 packet_put_char(WCOREDUMP(status)? 1 : 0);
Damien Millerf3c6cf12000-05-17 22:08:29 +10002450#else /* WCOREDUMP */
2451 packet_put_char(0);
2452#endif /* WCOREDUMP */
Damien Millerefb4afe2000-04-12 18:45:05 +10002453 packet_put_cstring("");
2454 packet_put_cstring("");
2455 packet_send();
2456 } else {
2457 /* Some weird exit cause. Just exit. */
2458 packet_disconnect("wait returned status %04x.", status);
2459 }
2460
2461 /* disconnect channel */
2462 debug("session_exit_message: release channel %d", s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002463
2464 /*
2465 * Adjust cleanup callback attachment to send close messages when
Damien Millerc91e5562006-03-26 13:58:55 +11002466 * the channel gets EOF. The session will be then be closed
Damien Miller39eda6e2005-11-05 14:52:50 +11002467 * by session_close_by_channel when the childs close their fds.
2468 */
2469 channel_register_cleanup(c->self, session_close_by_channel, 1);
2470
Damien Miller166fca82000-04-20 07:42:21 +10002471 /*
2472 * emulate a write failure with 'chan_write_failed', nobody will be
2473 * interested in data we write.
2474 * Note that we must not call 'chan_read_failed', since there could
2475 * be some more data waiting in the pipe.
2476 */
Damien Millerbd483e72000-04-30 10:00:53 +10002477 if (c->ostate != CHAN_OUTPUT_CLOSED)
2478 chan_write_failed(c);
Damien Millerefb4afe2000-04-12 18:45:05 +10002479}
2480
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002481void
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002482session_close(Session *s)
Damien Millerefb4afe2000-04-12 18:45:05 +10002483{
Damien Millereccb9de2005-06-17 12:59:34 +10002484 u_int i;
Darren Tucker46bc0752004-05-02 22:11:30 +10002485
Ben Lindstromce0f6342002-06-11 16:42:49 +00002486 debug("session_close: session %d pid %ld", s->self, (long)s->pid);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002487 if (s->ttyfd != -1)
Ben Lindstrom7eaf8e42001-06-13 04:35:43 +00002488 session_pty_cleanup(s);
Damien Millerefb4afe2000-04-12 18:45:05 +10002489 if (s->term)
2490 xfree(s->term);
2491 if (s->display)
2492 xfree(s->display);
Damien Miller2b9b0452005-07-17 17:19:24 +10002493 if (s->x11_chanids)
2494 xfree(s->x11_chanids);
Damien Miller512bccb2002-02-05 12:11:02 +11002495 if (s->auth_display)
2496 xfree(s->auth_display);
Damien Millerefb4afe2000-04-12 18:45:05 +10002497 if (s->auth_data)
2498 xfree(s->auth_data);
2499 if (s->auth_proto)
2500 xfree(s->auth_proto);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002501 if (s->env != NULL) {
2502 for (i = 0; i < s->num_env; i++) {
2503 xfree(s->env[i].name);
2504 xfree(s->env[i].val);
2505 }
Darren Tucker46bc0752004-05-02 22:11:30 +10002506 xfree(s->env);
Damien Millerd5fe0ba2006-08-30 11:07:39 +10002507 }
Damien Millere247cc42000-05-07 12:03:14 +10002508 session_proctitle(s);
Damien Miller7207f642008-05-19 15:34:50 +10002509 session_unused(s->self);
Damien Millerefb4afe2000-04-12 18:45:05 +10002510}
2511
2512void
2513session_close_by_pid(pid_t pid, int status)
2514{
2515 Session *s = session_by_pid(pid);
2516 if (s == NULL) {
Ben Lindstromce0f6342002-06-11 16:42:49 +00002517 debug("session_close_by_pid: no session for pid %ld",
2518 (long)pid);
Damien Millerefb4afe2000-04-12 18:45:05 +10002519 return;
2520 }
2521 if (s->chanid != -1)
2522 session_exit_message(s, status);
Damien Miller39eda6e2005-11-05 14:52:50 +11002523 if (s->ttyfd != -1)
2524 session_pty_cleanup(s);
Tim Rice83d2f5f2006-02-07 15:17:44 -08002525 s->pid = 0;
Damien Millerefb4afe2000-04-12 18:45:05 +10002526}
2527
2528/*
2529 * this is called when a channel dies before
2530 * the session 'child' itself dies
2531 */
2532void
2533session_close_by_channel(int id, void *arg)
2534{
2535 Session *s = session_by_channel(id);
Damien Miller39eda6e2005-11-05 14:52:50 +11002536 u_int i;
Damien Miller2b9b0452005-07-17 17:19:24 +10002537
Damien Millerefb4afe2000-04-12 18:45:05 +10002538 if (s == NULL) {
Damien Miller3ec27592001-10-12 11:35:04 +10002539 debug("session_close_by_channel: no session for id %d", id);
Damien Millerefb4afe2000-04-12 18:45:05 +10002540 return;
2541 }
Ben Lindstromce0f6342002-06-11 16:42:49 +00002542 debug("session_close_by_channel: channel %d child %ld",
2543 id, (long)s->pid);
Damien Miller3ec27592001-10-12 11:35:04 +10002544 if (s->pid != 0) {
Damien Miller3ec27592001-10-12 11:35:04 +10002545 debug("session_close_by_channel: channel %d: has child", id);
Damien Miller0585d512001-10-12 11:35:50 +10002546 /*
2547 * delay detach of session, but release pty, since
2548 * the fd's to the child are already closed
2549 */
Darren Tucker3e33cec2003-10-02 16:12:36 +10002550 if (s->ttyfd != -1)
Damien Miller0585d512001-10-12 11:35:50 +10002551 session_pty_cleanup(s);
Damien Miller3ec27592001-10-12 11:35:04 +10002552 return;
2553 }
2554 /* detach by removing callback */
Damien Millerefb4afe2000-04-12 18:45:05 +10002555 channel_cancel_cleanup(s->chanid);
Damien Miller39eda6e2005-11-05 14:52:50 +11002556
2557 /* Close any X11 listeners associated with this session */
2558 if (s->x11_chanids != NULL) {
2559 for (i = 0; s->x11_chanids[i] != -1; i++) {
2560 session_close_x11(s->x11_chanids[i]);
2561 s->x11_chanids[i] = -1;
2562 }
2563 }
2564
Damien Millerefb4afe2000-04-12 18:45:05 +10002565 s->chanid = -1;
Damien Miller52b77be2001-10-10 15:14:37 +10002566 session_close(s);
2567}
2568
2569void
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002570session_destroy_all(void (*closefunc)(Session *))
Damien Miller52b77be2001-10-10 15:14:37 +10002571{
2572 int i;
Damien Miller7207f642008-05-19 15:34:50 +10002573 for (i = 0; i < sessions_nalloc; i++) {
Damien Miller52b77be2001-10-10 15:14:37 +10002574 Session *s = &sessions[i];
Ben Lindstrom7a2073c2002-03-22 02:30:41 +00002575 if (s->used) {
2576 if (closefunc != NULL)
2577 closefunc(s);
2578 else
2579 session_close(s);
2580 }
Damien Miller52b77be2001-10-10 15:14:37 +10002581 }
Damien Millerefb4afe2000-04-12 18:45:05 +10002582}
2583
Ben Lindstrombba81212001-06-25 05:01:22 +00002584static char *
Damien Millere247cc42000-05-07 12:03:14 +10002585session_tty_list(void)
2586{
2587 static char buf[1024];
2588 int i;
Damien Millera8ed44b2003-01-10 09:53:12 +11002589 char *cp;
2590
Damien Millere247cc42000-05-07 12:03:14 +10002591 buf[0] = '\0';
Damien Miller7207f642008-05-19 15:34:50 +10002592 for (i = 0; i < sessions_nalloc; i++) {
Damien Millere247cc42000-05-07 12:03:14 +10002593 Session *s = &sessions[i];
2594 if (s->used && s->ttyfd != -1) {
Damien Miller787b2ec2003-11-21 23:56:47 +11002595
Damien Millera8ed44b2003-01-10 09:53:12 +11002596 if (strncmp(s->tty, "/dev/", 5) != 0) {
2597 cp = strrchr(s->tty, '/');
2598 cp = (cp == NULL) ? s->tty : cp + 1;
2599 } else
2600 cp = s->tty + 5;
Damien Miller787b2ec2003-11-21 23:56:47 +11002601
Damien Millere247cc42000-05-07 12:03:14 +10002602 if (buf[0] != '\0')
2603 strlcat(buf, ",", sizeof buf);
Damien Millera8ed44b2003-01-10 09:53:12 +11002604 strlcat(buf, cp, sizeof buf);
Damien Millere247cc42000-05-07 12:03:14 +10002605 }
2606 }
2607 if (buf[0] == '\0')
2608 strlcpy(buf, "notty", sizeof buf);
2609 return buf;
2610}
2611
2612void
2613session_proctitle(Session *s)
2614{
2615 if (s->pw == NULL)
2616 error("no user for session %d", s->self);
2617 else
2618 setproctitle("%s@%s", s->pw->pw_name, session_tty_list());
2619}
2620
Ben Lindstrom768176b2001-06-09 01:29:12 +00002621int
2622session_setup_x11fwd(Session *s)
2623{
Ben Lindstrom768176b2001-06-09 01:29:12 +00002624 struct stat st;
Kevin Steves366298c2001-12-19 17:58:01 +00002625 char display[512], auth_display[512];
2626 char hostname[MAXHOSTNAMELEN];
Damien Miller2b9b0452005-07-17 17:19:24 +10002627 u_int i;
Ben Lindstrom768176b2001-06-09 01:29:12 +00002628
2629 if (no_x11_forwarding_flag) {
2630 packet_send_debug("X11 forwarding disabled in user configuration file.");
2631 return 0;
2632 }
2633 if (!options.x11_forwarding) {
2634 debug("X11 forwarding disabled in server configuration file.");
2635 return 0;
2636 }
2637 if (!options.xauth_location ||
2638 (stat(options.xauth_location, &st) == -1)) {
2639 packet_send_debug("No xauth program; cannot forward with spoofing.");
2640 return 0;
2641 }
Ben Lindstrom699776e2001-06-21 03:14:49 +00002642 if (options.use_login) {
2643 packet_send_debug("X11 forwarding disabled; "
2644 "not compatible with UseLogin=yes.");
2645 return 0;
2646 }
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002647 if (s->display != NULL) {
Ben Lindstrom768176b2001-06-09 01:29:12 +00002648 debug("X11 display already set.");
2649 return 0;
2650 }
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002651 if (x11_create_display_inet(options.x11_display_offset,
2652 options.x11_use_localhost, s->single_connection,
Damien Miller2b9b0452005-07-17 17:19:24 +10002653 &s->display_number, &s->x11_chanids) == -1) {
Ben Lindstrom2bcdf062001-06-13 04:41:41 +00002654 debug("x11_create_display_inet failed.");
Ben Lindstrom768176b2001-06-09 01:29:12 +00002655 return 0;
2656 }
Damien Miller2b9b0452005-07-17 17:19:24 +10002657 for (i = 0; s->x11_chanids[i] != -1; i++) {
2658 channel_register_cleanup(s->x11_chanids[i],
Damien Miller39eda6e2005-11-05 14:52:50 +11002659 session_close_single_x11, 0);
Damien Miller2b9b0452005-07-17 17:19:24 +10002660 }
Kevin Steves366298c2001-12-19 17:58:01 +00002661
2662 /* Set up a suitable value for the DISPLAY variable. */
2663 if (gethostname(hostname, sizeof(hostname)) < 0)
2664 fatal("gethostname: %.100s", strerror(errno));
2665 /*
2666 * auth_display must be used as the displayname when the
2667 * authorization entry is added with xauth(1). This will be
2668 * different than the DISPLAY string for localhost displays.
2669 */
Damien Miller95c249f2002-02-05 12:11:34 +11002670 if (options.x11_use_localhost) {
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002671 snprintf(display, sizeof display, "localhost:%u.%u",
Kevin Steves366298c2001-12-19 17:58:01 +00002672 s->display_number, s->screen);
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002673 snprintf(auth_display, sizeof auth_display, "unix:%u.%u",
Damien Miller512bccb2002-02-05 12:11:02 +11002674 s->display_number, s->screen);
Kevin Steves366298c2001-12-19 17:58:01 +00002675 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002676 s->auth_display = xstrdup(auth_display);
Kevin Steves366298c2001-12-19 17:58:01 +00002677 } else {
2678#ifdef IPADDR_IN_DISPLAY
2679 struct hostent *he;
2680 struct in_addr my_addr;
2681
2682 he = gethostbyname(hostname);
2683 if (he == NULL) {
2684 error("Can't get IP address for X11 DISPLAY.");
2685 packet_send_debug("Can't get IP address for X11 DISPLAY.");
2686 return 0;
2687 }
2688 memcpy(&my_addr, he->h_addr_list[0], sizeof(struct in_addr));
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002689 snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
Kevin Steves366298c2001-12-19 17:58:01 +00002690 s->display_number, s->screen);
2691#else
Ben Lindstroma9d2c892002-06-23 21:48:28 +00002692 snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
Kevin Steves366298c2001-12-19 17:58:01 +00002693 s->display_number, s->screen);
2694#endif
2695 s->display = xstrdup(display);
Damien Miller512bccb2002-02-05 12:11:02 +11002696 s->auth_display = xstrdup(display);
Kevin Steves366298c2001-12-19 17:58:01 +00002697 }
2698
Ben Lindstrom768176b2001-06-09 01:29:12 +00002699 return 1;
2700}
2701
Ben Lindstrombba81212001-06-25 05:01:22 +00002702static void
Ben Lindstromdb65e8f2001-01-19 04:26:52 +00002703do_authenticated2(Authctxt *authctxt)
Damien Millerefb4afe2000-04-12 18:45:05 +10002704{
Ben Lindstrombddd5512001-07-04 04:53:53 +00002705 server_loop2(authctxt);
Darren Tucker3e33cec2003-10-02 16:12:36 +10002706}
2707
2708void
2709do_cleanup(Authctxt *authctxt)
2710{
2711 static int called = 0;
2712
2713 debug("do_cleanup");
2714
2715 /* no cleanup if we're in the child for login shell */
2716 if (is_child)
2717 return;
2718
2719 /* avoid double cleanup */
2720 if (called)
2721 return;
2722 called = 1;
2723
Darren Tucker9142e1c2007-08-16 23:28:04 +10002724 if (authctxt == NULL)
Darren Tucker3e33cec2003-10-02 16:12:36 +10002725 return;
Darren Tucker9142e1c2007-08-16 23:28:04 +10002726
2727#ifdef USE_PAM
2728 if (options.use_pam) {
2729 sshpam_cleanup();
2730 sshpam_thread_cleanup();
2731 }
2732#endif
2733
2734 if (!authctxt->authenticated)
2735 return;
2736
Darren Tucker3e33cec2003-10-02 16:12:36 +10002737#ifdef KRB5
2738 if (options.kerberos_ticket_cleanup &&
2739 authctxt->krb5_ctx)
2740 krb5_cleanup_proc(authctxt);
Darren Tucker0efd1552003-08-26 11:49:55 +10002741#endif
Darren Tucker3e33cec2003-10-02 16:12:36 +10002742
2743#ifdef GSSAPI
2744 if (compat20 && options.gss_cleanup_creds)
2745 ssh_gssapi_cleanup_creds();
2746#endif
2747
2748 /* remove agent socket */
2749 auth_sock_cleanup_proc(authctxt->pw);
2750
2751 /*
2752 * Cleanup ptys/utmp only if privsep is disabled,
2753 * or if running in monitor.
2754 */
2755 if (!use_privsep || mm_is_monitor())
2756 session_destroy_all(session_pty_cleanup2);
Damien Millerefb4afe2000-04-12 18:45:05 +10002757}